From 6785aff8aaa12c8ff539f83b24d2b2dab8bf38b8 Mon Sep 17 00:00:00 2001 From: PocketMiner82 <44708000+PocketMiner82@users.noreply.github.com> Date: Fri, 31 Jul 2020 20:03:15 +0200 Subject: [PATCH 001/394] Update KillCommand.java Check if the entity's name is empty to prevent an this: Killed , , , , , , , , , , , , , , , --- src/main/java/cn/nukkit/command/defaults/KillCommand.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/command/defaults/KillCommand.java b/src/main/java/cn/nukkit/command/defaults/KillCommand.java index 2f35f45dc2d..e4097191fe8 100644 --- a/src/main/java/cn/nukkit/command/defaults/KillCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/KillCommand.java @@ -60,7 +60,8 @@ public boolean execute(CommandSender sender, String commandLabel, String[] args) for (Level level : Server.getInstance().getLevels().values()) { for (Entity entity : level.getEntities()) { if (!(entity instanceof Player)) { - joiner.add(entity.getName()); + if (!entity.getName().isEmpty()) + joiner.add(entity.getName()); entity.close(); } } From 460a1c2d850150897fb2d85848a78b8c8c8fa2d9 Mon Sep 17 00:00:00 2001 From: Khanh Le Date: Sun, 6 Sep 2020 23:02:21 +0700 Subject: [PATCH 002/394] Implement the physique of the minecraft swim --- src/main/java/cn/nukkit/Player.java | 4 ++-- src/main/java/cn/nukkit/entity/Entity.java | 20 +++++++++++++++++++- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 82a3dbef950..ab6b3c4fc53 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -2708,7 +2708,7 @@ public void onCompletion(Server server) { if (ptse.isCancelled()) { this.sendData(this); } else { - this.setSwimming(true); + this.setSwimming(this, true); } break; case PlayerActionPacket.ACTION_STOP_SWIMMING: @@ -2718,7 +2718,7 @@ public void onCompletion(Server server) { if (ptse.isCancelled()) { this.sendData(this); } else { - this.setSwimming(false); + this.setSwimming(this, false); } break; } diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 0db70ed7835..fdae08c5db4 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -709,7 +709,13 @@ public void setSwimming() { this.setSwimming(true); } - public void setSwimming(boolean value) { + public void setSwimming(Player p, boolean value) { + if (value) { + p.setDataProperty(new FloatEntityData(Entity.DATA_BOUNDING_BOX_HEIGHT, p.getWidth())); + } else { + p.setDataProperty(new FloatEntityData(Entity.DATA_BOUNDING_BOX_HEIGHT, (float) (1.8 * p.getScale()))); + } + reCalculateBoundingBox(p); this.setDataFlag(DATA_FLAGS, DATA_FLAG_SWIMMING, value); } @@ -2592,4 +2598,16 @@ public int hashCode() { hash = (int) (29 * hash + this.getId()); return hash; } + + public void reCalculateBoundingBox (Player player) { + float halfWidth = (player.getWidth() / 2); + player.boundingBox.setBounds( + player.x - halfWidth, + player.y, + player.z - halfWidth, + player.x + halfWidth, + player.y + player.getHeight(), + player.z + halfWidth + ); + } } From 84dee66ce1a5fca879288707d2c93e0abd11b8a8 Mon Sep 17 00:00:00 2001 From: Khanh Le Date: Sun, 6 Sep 2020 23:11:43 +0700 Subject: [PATCH 003/394] Fix build --- src/main/java/cn/nukkit/entity/Entity.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index fdae08c5db4..e0bd44e194b 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -705,10 +705,6 @@ public boolean isSwimming() { return this.getDataFlag(DATA_FLAGS, DATA_FLAG_SWIMMING); } - public void setSwimming() { - this.setSwimming(true); - } - public void setSwimming(Player p, boolean value) { if (value) { p.setDataProperty(new FloatEntityData(Entity.DATA_BOUNDING_BOX_HEIGHT, p.getWidth())); From 752d91aaa5a0074e86bc1f4611205da09eb91233 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 17 Aug 2020 18:03:55 -0300 Subject: [PATCH 004/394] Don't take damage while inside the 1 block height hole --- src/main/java/cn/nukkit/Player.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index ab6b3c4fc53..7eca0c57f45 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -4426,6 +4426,8 @@ public boolean attack(EntityDamageEvent source) { return false; } } + } else if (source.getCause() == DamageCause.SUFFOCATION && this.isSwimming()){ + return false; } if (super.attack(source)) { //!source.isCancelled() From 34ec75c18377391efccaec6262f244000ccbf5da Mon Sep 17 00:00:00 2001 From: Braayy Date: Wed, 14 Oct 2020 12:43:52 -0300 Subject: [PATCH 005/394] Arrow being extinguished when in rain --- .../java/cn/nukkit/entity/projectile/EntityArrow.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java index 7f67bab01ad..31c57b85c99 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java @@ -3,6 +3,7 @@ import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import cn.nukkit.block.Block; import cn.nukkit.entity.Entity; import cn.nukkit.level.Sound; import cn.nukkit.level.format.FullChunk; @@ -143,6 +144,13 @@ public boolean onUpdate(int currentTick) { hasUpdate = true; } + if (this.level.isRaining() && this.fireTicks > 0 && this.level.canBlockSeeSky(this)) { + this.fireTicks = 0; + this.setDataFlag(DATA_FLAGS, DATA_FLAG_ONFIRE, false); + + hasUpdate = true; + } + this.timing.stopTiming(); return hasUpdate; From 815bd45b9d93e14f1dca4223eeddf3dca8723fef Mon Sep 17 00:00:00 2001 From: Braayy Date: Wed, 14 Oct 2020 12:47:57 -0300 Subject: [PATCH 006/394] Removed unecessary import --- src/main/java/cn/nukkit/entity/projectile/EntityArrow.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java index 31c57b85c99..fc46b989c71 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java @@ -3,7 +3,6 @@ import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; -import cn.nukkit.block.Block; import cn.nukkit.entity.Entity; import cn.nukkit.level.Sound; import cn.nukkit.level.format.FullChunk; From 39e52e6e0489b7abfea8a8a61b4e0253cb03f156 Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Sun, 22 Nov 2020 18:57:53 +0900 Subject: [PATCH 007/394] Campfire deal the damage even the entity is sneaking --- src/main/java/cn/nukkit/block/BlockCampfire.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index e3762e4056e..42822b3eb48 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -169,7 +169,7 @@ public boolean hasEntityCollision() { @Override public void onEntityCollide(Entity entity) { - if (!isExtinguished() && !entity.isSneaking()) { + if (!isExtinguished()) { entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.FIRE, 1)); } } From a0e7e00b2b4b382848c6304d36bc98cc8433c982 Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Sun, 22 Nov 2020 19:27:47 +0900 Subject: [PATCH 008/394] Soul Campfire deal double the damage that normal campfires deal --- src/main/java/cn/nukkit/block/BlockCampfireSoul.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java index da682cc21e0..0dd4b389ad2 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java +++ b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java @@ -39,4 +39,11 @@ public int getLightLevel() { public Item toItem() { return Item.get(ItemID.SOUL_CAMPFIRE); } + + @Override + public void onEntityCollide(Entity entity) { + if (!isExtinguished()) { + entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.FIRE, 2)); + } + } } From 84e25a656281b11ba44219f6b9b2025849c45bd2 Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Sun, 22 Nov 2020 19:32:00 +0900 Subject: [PATCH 009/394] Fix --- src/main/java/cn/nukkit/block/BlockCampfireSoul.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java index 0dd4b389ad2..9192a8056e0 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java +++ b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java @@ -2,6 +2,7 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import cn.nukkit.entity.Entity; import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; From 1c3d2734fdf0d1a64eb94eb12134ec3938492596 Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Sun, 22 Nov 2020 19:46:19 +0900 Subject: [PATCH 010/394] Add new method getPotionId() --- src/main/java/cn/nukkit/entity/item/EntityPotion.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotion.java b/src/main/java/cn/nukkit/entity/item/EntityPotion.java index 99e5b513698..91527bdfc5a 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotion.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotion.java @@ -162,4 +162,9 @@ public boolean onUpdate(int currentTick) { this.timing.stopTiming(); return hasUpdate; } + + @Since("1.4.0.0-PN") + public int getPotionId() { + return this.potionId; + } } From 84fc1e4c9052f9ca94ef9f923e7807a11c1ebec0 Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Sun, 22 Nov 2020 19:49:14 +0900 Subject: [PATCH 011/394] Fix --- src/main/java/cn/nukkit/entity/item/EntityPotion.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotion.java b/src/main/java/cn/nukkit/entity/item/EntityPotion.java index 91527bdfc5a..4988f097cca 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotion.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotion.java @@ -1,6 +1,7 @@ package cn.nukkit.entity.item; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.projectile.EntityProjectile; import cn.nukkit.event.potion.PotionCollideEvent; From 7ab8664060bbd1b61a519d587ca184d462c2cf9c Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Sun, 22 Nov 2020 19:51:13 +0900 Subject: [PATCH 012/394] =?UTF-8?q?Campfire=20can=20be=20unlit=20by=20thro?= =?UTF-8?q?wing=20a=C2=A0splash=20water=20bottle=C2=A0on=20it?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/cn/nukkit/block/BlockCampfire.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index 42822b3eb48..a14c21f5a0c 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -9,6 +9,7 @@ import cn.nukkit.blockproperty.BooleanBlockProperty; import cn.nukkit.entity.Entity; import cn.nukkit.entity.projectile.EntityArrow; +import cn.nukkit.entity.projectile.EntityPotion; import cn.nukkit.event.entity.EntityDamageByBlockEvent; import cn.nukkit.event.entity.EntityDamageEvent; import cn.nukkit.inventory.CampfireInventory; @@ -241,6 +242,12 @@ public boolean onProjectileHit(@Nonnull Entity projectile, @Nonnull Position pos setExtinguished(false); level.setBlock(this, this, true); return true; + } else if (projectile instanceof EntityPotion && !isExtinguished()) { + if (((EntityPotion) projectile).getPotionId() == 0) { + setExtinguished(true); + level.setBlock(this, this, true); + return true; + } } return false; } From d3dce218fc8d7f0dc347f71fc92826f767cbd2a0 Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Sun, 22 Nov 2020 19:53:03 +0900 Subject: [PATCH 013/394] Fix --- src/main/java/cn/nukkit/block/BlockCampfire.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index a14c21f5a0c..9ef2b37fec2 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -8,8 +8,8 @@ import cn.nukkit.blockproperty.BlockProperties; import cn.nukkit.blockproperty.BooleanBlockProperty; import cn.nukkit.entity.Entity; +import cn.nukkit.entity.item.EntityPotion; import cn.nukkit.entity.projectile.EntityArrow; -import cn.nukkit.entity.projectile.EntityPotion; import cn.nukkit.event.entity.EntityDamageByBlockEvent; import cn.nukkit.event.entity.EntityDamageEvent; import cn.nukkit.inventory.CampfireInventory; From 291f28169d148d0bb89b394816e7904d0791e3e8 Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Sun, 22 Nov 2020 19:54:58 +0900 Subject: [PATCH 014/394] Fix --- src/main/java/cn/nukkit/block/BlockCampfireSoul.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java index 9192a8056e0..6c23d036fdb 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java +++ b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java @@ -3,6 +3,8 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; +import cn.nukkit.event.entity.EntityDamageByBlockEvent; +import cn.nukkit.event.entity.EntityDamageEvent; import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; From 84818e3dcc50b60617c6d80584b35c2b54515182 Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Sun, 22 Nov 2020 20:10:23 +0900 Subject: [PATCH 015/394] =?UTF-8?q?Campfire=20can=20be=20lit=20by=C2=A0usi?= =?UTF-8?q?ng=C2=A0an=20item=20enchanted=20with=C2=A0fire=20aspect?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/nukkit/block/BlockCampfire.java | 35 ++++++++++++------- 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index 9ef2b37fec2..7270279b1f1 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -205,18 +205,29 @@ public boolean onActivate(@Nonnull Item item, @Nullable Player player) { BlockEntityCampfire campfire = getOrCreateBlockEntity(); boolean itemUsed = false; - if (item.isShovel() && !isExtinguished()) { - setExtinguished(true); - this.level.setBlock(this, this, true, true); - this.level.addSound(this, Sound.RANDOM_FIZZ, 0.5f, 2.2f); - itemUsed = true; - } else if (item.getId() == ItemID.FLINT_AND_STEEL) { - item.useOn(this); - setExtinguished(false); - this.level.setBlock(this, this, true, true); - campfire.scheduleUpdate(); - this.level.addSound(this, Sound.FIRE_IGNITE); - itemUsed = true; + if (!isExtinguished()) { + if (item.isShovel()) { + setExtinguished(true); + this.level.setBlock(this, this, true, true); + this.level.addSound(this, Sound.RANDOM_FIZZ, 0.5f, 2.2f); + itemUsed = true; + } + } else { + if (item.getId() == ItemID.FLINT_AND_STEEL) { + item.useOn(this); + setExtinguished(false); + this.level.setBlock(this, this, true, true); + campfire.scheduleUpdate(); + this.level.addSound(this, Sound.FIRE_IGNITE); + itemUsed = true; + } else if (item.getEnchantment(Enchantment.ID_FIRE_ASPECT) != null) { + item.useOn(this); + setExtinguished(false); + this.level.setBlock(this, this, true, true); + campfire.scheduleUpdate(); + this.level.addSound(this, Sound.FIRE_IGNITE); + itemUsed = true; + } } Item cloned = item.clone(); From 5dc0edcf4158dcfdc1700024da118cfb74c6c8a8 Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Sun, 22 Nov 2020 20:33:08 +0900 Subject: [PATCH 016/394] Campfire can be lit by stepping on it while burning --- src/main/java/cn/nukkit/block/BlockCampfire.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index 7270279b1f1..4799bdd2ced 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -16,6 +16,7 @@ import cn.nukkit.inventory.CampfireRecipe; import cn.nukkit.inventory.ContainerInventory; import cn.nukkit.item.*; +import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.level.Level; import cn.nukkit.level.Position; import cn.nukkit.level.Sound; @@ -172,6 +173,11 @@ public boolean hasEntityCollision() { public void onEntityCollide(Entity entity) { if (!isExtinguished()) { entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.FIRE, 1)); + } else { + if (entity.isOnFire()) { + setExtinguished(false); + level.setBlock(this, this, true); + } } } From 3adfae72e433f9c14b1df48bb5304c0cacdbda21 Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Sun, 22 Nov 2020 20:42:53 +0900 Subject: [PATCH 017/394] Soul Campfire drop Soul Soil --- src/main/java/cn/nukkit/block/BlockCampfireSoul.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java index 6c23d036fdb..bac1283d4f2 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java +++ b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java @@ -6,6 +6,7 @@ import cn.nukkit.event.entity.EntityDamageByBlockEvent; import cn.nukkit.event.entity.EntityDamageEvent; import cn.nukkit.item.Item; +import cn.nukkit.item.ItemBlock; import cn.nukkit.item.ItemID; @PowerNukkitOnly @@ -43,6 +44,11 @@ public Item toItem() { return Item.get(ItemID.SOUL_CAMPFIRE); } + @Override + public Item[] getDrops(Item item) { + return new Item[] { new ItemBlock(Block.get(BlockID.SOUL_SOIL)) }; + } + @Override public void onEntityCollide(Entity entity) { if (!isExtinguished()) { From 55d6af031ef1f4284bed5f7639c519d02564909a Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Mon, 23 Nov 2020 15:29:34 +0900 Subject: [PATCH 018/394] Campfire drop two Charcoal --- src/main/java/cn/nukkit/block/BlockCampfire.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index 4799bdd2ced..7e730abe88b 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -33,7 +33,6 @@ import javax.annotation.Nonnull; import javax.annotation.Nullable; import java.util.Map; -import java.util.concurrent.ThreadLocalRandom; import static cn.nukkit.blockproperty.CommonBlockProperties.DIRECTION; @@ -113,7 +112,7 @@ public boolean canHarvestWithHand() { @Override public Item[] getDrops(Item item) { - return new Item[] { new ItemCoal(0, 1 + ThreadLocalRandom.current().nextInt(1)) }; + return new Item[] { new ItemCharcoal(0, 2) }; } @Override From 3d6a3ca4263bf27cdf0650899118d55c3d9f5dd2 Mon Sep 17 00:00:00 2001 From: good777LUCKY <43497313+good777LUCKY@users.noreply.github.com> Date: Wed, 23 Dec 2020 08:42:48 +0900 Subject: [PATCH 019/394] Fix Campfire drops --- src/main/java/cn/nukkit/block/BlockCampfire.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index 7e730abe88b..e464df3cb46 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -112,7 +112,7 @@ public boolean canHarvestWithHand() { @Override public Item[] getDrops(Item item) { - return new Item[] { new ItemCharcoal(0, 2) }; + return new Item[] { new ItemCoal(1, 2) }; } @Override From 17de8a679a148d642c5b279a7421d6512bf794bd Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 14 Feb 2021 15:59:05 +0900 Subject: [PATCH 020/394] Add completeUsingItem(int itemId, int action) --- src/main/java/cn/nukkit/Player.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 77be71b4f43..2d324b6c649 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -5668,4 +5668,13 @@ public void sendAnnouncement(String source, String message) { pk.message = message; this.dataPacket(pk); } + + @PowerNukkitOnly + @Since("1.4.0.0-PN") + public void completeUsingItem(int itemId, int action) { + CompletedUsingItemPacket pk = new CompletedUsingItemPacket(); + pk.itemId = itemId; + pk.action = action; + this.dataPacket(pk); + } } From bdff99fe6276d3428ffbd14410bbfd17892d39ab Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 14 Feb 2021 16:03:32 +0900 Subject: [PATCH 021/394] Add getNetworkId() method --- src/main/java/cn/nukkit/item/Item.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index 5fada37b7c3..9f5b1d3a55c 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -1437,5 +1437,12 @@ public Item clone() { return null; } } - + + @PowerNukkitOnly + @Since("1.4.0.0-PN") + public int getNetworkId() { + return RuntimeItems.getNetworkId( + RuntimeItems.getRuntimeMapping().getNetworkFullId(this) + ); + } } From 00aca0d2b32dcf5383d7f7970c342fe072fb26e4 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 14 Feb 2021 16:33:19 +0900 Subject: [PATCH 022/394] Add eatingTick --- src/main/java/cn/nukkit/item/food/Food.java | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/item/food/Food.java b/src/main/java/cn/nukkit/item/food/Food.java index 29bf6fe1a8b..cfa3c337525 100644 --- a/src/main/java/cn/nukkit/item/food/Food.java +++ b/src/main/java/cn/nukkit/item/food/Food.java @@ -84,7 +84,7 @@ public abstract class Food { .addEffect(Effect.getEffect(Effect.NAUSEA).setAmplifier(1).setDuration(15 * 20)) .addEffect(Effect.getEffect(Effect.POISON).setAmplifier(4).setDuration(60 * 20)) .addRelative(Item.PUFFERFISH)); - public static final Food dried_kelp = registerDefaultFood(new FoodNormal(1, 0.6F).addRelative(Item.DRIED_KELP)); + public static final Food dried_kelp = registerDefaultFood(new FoodNormal(1, 0.6F).addRelative(Item.DRIED_KELP).setEatingTick(17)); public static final Food sweet_berries = registerDefaultFood(new FoodNormal(2, 0.4F).addRelative(Item.SWEET_BERRIES)); @PowerNukkitOnly @@ -214,7 +214,23 @@ public Food setRestoreSaturation(float restoreSaturation) { this.restoreSaturation = restoreSaturation; return this; } - + + @PowerNukkitOnly + @Since("1.4.0.0-PN") + protected int eatingTick = 32; + + @PowerNukkitOnly + @Since("1.4.0.0-PN") + public int getEatingTick() { + return eatingTick; + } + + @PowerNukkitOnly + @Since("1.4.0.0-PN") + public void setEatingTick() { + this.eatingTick = eatingTick; + } + static class NodeIDMeta { final int id; final int meta; @@ -233,5 +249,4 @@ static class NodeIDMetaPlugin extends NodeIDMeta { this.plugin = plugin; } } - } From fbf674113c4e2bf067c429b700d04876ee2c8580 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 14 Feb 2021 16:40:41 +0900 Subject: [PATCH 023/394] Fix food eating problems --- src/main/java/cn/nukkit/item/ItemEdible.java | 22 ++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/src/main/java/cn/nukkit/item/ItemEdible.java b/src/main/java/cn/nukkit/item/ItemEdible.java index e850b55ef76..2a3fa521c57 100644 --- a/src/main/java/cn/nukkit/item/ItemEdible.java +++ b/src/main/java/cn/nukkit/item/ItemEdible.java @@ -36,19 +36,29 @@ public boolean onClickAir(Player player, Vector3 directionVector) { @Override public boolean onUse(Player player, int ticksUsed) { + Food food = Food.getByRelative(this); + + if (food == null || tickUsed < food.getEatingTick()) { + return false; + } + PlayerItemConsumeEvent consumeEvent = new PlayerItemConsumeEvent(player, this); - + player.getServer().getPluginManager().callEvent(consumeEvent); if (consumeEvent.isCancelled()) { player.getInventory().sendContents(player); return false; } - - Food food = Food.getByRelative(this); - if ((player.isAdventure() || player.isSurvival()) && food != null && food.eatenBy(player)) { - --this.count; - player.getInventory().setItemInHand(this); + + if (food.eatenBy(player)) { + player.completeUsingItem(item.getNetworkId(), CompletedUsingItemPacket.ACTION_EAT); + + if (player.isAdventure() || player.isSurvival()) { + --this.count; + player.getInventory().setItemInHand(this); + } } + return true; } } From fab612f6cd51b96859a48198d0de075e41d4ff55 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 14 Feb 2021 16:43:50 +0900 Subject: [PATCH 024/394] fix --- src/main/java/cn/nukkit/item/ItemEdible.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/item/ItemEdible.java b/src/main/java/cn/nukkit/item/ItemEdible.java index 2a3fa521c57..ffde5d9d427 100644 --- a/src/main/java/cn/nukkit/item/ItemEdible.java +++ b/src/main/java/cn/nukkit/item/ItemEdible.java @@ -4,6 +4,7 @@ import cn.nukkit.event.player.PlayerItemConsumeEvent; import cn.nukkit.item.food.Food; import cn.nukkit.math.Vector3; +import cn.nukkit.network.protocol.CompletedUsingItemPacket; /** * @author MagicDroidX (Nukkit Project) @@ -38,7 +39,7 @@ public boolean onClickAir(Player player, Vector3 directionVector) { public boolean onUse(Player player, int ticksUsed) { Food food = Food.getByRelative(this); - if (food == null || tickUsed < food.getEatingTick()) { + if (food == null || ticksUsed < food.getEatingTick()) { return false; } @@ -51,7 +52,7 @@ public boolean onUse(Player player, int ticksUsed) { } if (food.eatenBy(player)) { - player.completeUsingItem(item.getNetworkId(), CompletedUsingItemPacket.ACTION_EAT); + player.completeUsingItem(this.getNetworkId(), CompletedUsingItemPacket.ACTION_EAT); if (player.isAdventure() || player.isSurvival()) { --this.count; From 0fa7acc5af9a8d642d0c472f20702e0fed94d3a4 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 14 Feb 2021 16:46:14 +0900 Subject: [PATCH 025/394] fix --- src/main/java/cn/nukkit/item/food/Food.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/item/food/Food.java b/src/main/java/cn/nukkit/item/food/Food.java index cfa3c337525..47f1b3fcec6 100644 --- a/src/main/java/cn/nukkit/item/food/Food.java +++ b/src/main/java/cn/nukkit/item/food/Food.java @@ -227,7 +227,7 @@ public int getEatingTick() { @PowerNukkitOnly @Since("1.4.0.0-PN") - public void setEatingTick() { + public void setEatingTick(int eatingTick) { this.eatingTick = eatingTick; } From 31450486d539946dab0c756dfd19d758756614af Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 14 Feb 2021 16:49:31 +0900 Subject: [PATCH 026/394] fix --- src/main/java/cn/nukkit/item/food/Food.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/item/food/Food.java b/src/main/java/cn/nukkit/item/food/Food.java index 47f1b3fcec6..23602e1d1ef 100644 --- a/src/main/java/cn/nukkit/item/food/Food.java +++ b/src/main/java/cn/nukkit/item/food/Food.java @@ -227,8 +227,9 @@ public int getEatingTick() { @PowerNukkitOnly @Since("1.4.0.0-PN") - public void setEatingTick(int eatingTick) { + public Food setEatingTick(int eatingTick) { this.eatingTick = eatingTick; + return this; } static class NodeIDMeta { From afcae7503363acfa11736dfc74fa1d17d0825028 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 14 Feb 2021 16:56:44 +0900 Subject: [PATCH 027/394] Cancel eating if the player is spectator --- src/main/java/cn/nukkit/item/ItemEdible.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/cn/nukkit/item/ItemEdible.java b/src/main/java/cn/nukkit/item/ItemEdible.java index ffde5d9d427..a93eafaa44f 100644 --- a/src/main/java/cn/nukkit/item/ItemEdible.java +++ b/src/main/java/cn/nukkit/item/ItemEdible.java @@ -37,6 +37,11 @@ public boolean onClickAir(Player player, Vector3 directionVector) { @Override public boolean onUse(Player player, int ticksUsed) { + if (player.isSpectator()) { + player.getInventory().sendContents(player); + return false; + } + Food food = Food.getByRelative(this); if (food == null || ticksUsed < food.getEatingTick()) { From bf2b620108343a9a3220f8f83042bc0f65a829aa Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 14 Feb 2021 17:54:59 +0900 Subject: [PATCH 028/394] Fix eatingTick --- src/main/java/cn/nukkit/item/food/Food.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/item/food/Food.java b/src/main/java/cn/nukkit/item/food/Food.java index 23602e1d1ef..9eb8c2c60b5 100644 --- a/src/main/java/cn/nukkit/item/food/Food.java +++ b/src/main/java/cn/nukkit/item/food/Food.java @@ -84,7 +84,7 @@ public abstract class Food { .addEffect(Effect.getEffect(Effect.NAUSEA).setAmplifier(1).setDuration(15 * 20)) .addEffect(Effect.getEffect(Effect.POISON).setAmplifier(4).setDuration(60 * 20)) .addRelative(Item.PUFFERFISH)); - public static final Food dried_kelp = registerDefaultFood(new FoodNormal(1, 0.6F).addRelative(Item.DRIED_KELP).setEatingTick(17)); + public static final Food dried_kelp = registerDefaultFood(new FoodNormal(1, 0.6F).addRelative(Item.DRIED_KELP).setEatingTick(16)); public static final Food sweet_berries = registerDefaultFood(new FoodNormal(2, 0.4F).addRelative(Item.SWEET_BERRIES)); @PowerNukkitOnly @@ -217,7 +217,7 @@ public Food setRestoreSaturation(float restoreSaturation) { @PowerNukkitOnly @Since("1.4.0.0-PN") - protected int eatingTick = 32; + protected int eatingTick = 31; @PowerNukkitOnly @Since("1.4.0.0-PN") From d36000c7a586f96ccf16e2e36d2f2bb07eaa8115 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Fri, 19 Feb 2021 11:20:10 +0900 Subject: [PATCH 029/394] Fix Player.sendPosition onGround value --- src/main/java/cn/nukkit/Player.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 40a88b6dc6c..651e6197310 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -4787,7 +4787,8 @@ public void sendPosition(Vector3 pos, double yaw, double pitch, int mode, Player pk.pitch = (float) pitch; pk.yaw = (float) yaw; pk.mode = mode; - + pk.onGround = this.onGround; + if (targets != null) { Server.broadcastPacket(targets, pk); } else { From 0cda5278bb7004c33eacd059eb4339779ab80327 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Wed, 24 Mar 2021 09:33:57 +0900 Subject: [PATCH 030/394] Add burp sound --- src/main/java/cn/nukkit/item/ItemEdible.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/cn/nukkit/item/ItemEdible.java b/src/main/java/cn/nukkit/item/ItemEdible.java index a93eafaa44f..aa69066e53e 100644 --- a/src/main/java/cn/nukkit/item/ItemEdible.java +++ b/src/main/java/cn/nukkit/item/ItemEdible.java @@ -3,6 +3,7 @@ import cn.nukkit.Player; import cn.nukkit.event.player.PlayerItemConsumeEvent; import cn.nukkit.item.food.Food; +import cn.nukkit.level.Sound; import cn.nukkit.math.Vector3; import cn.nukkit.network.protocol.CompletedUsingItemPacket; @@ -10,6 +11,7 @@ * @author MagicDroidX (Nukkit Project) */ public abstract class ItemEdible extends Item { + public ItemEdible(int id, Integer meta, int count, String name) { super(id, meta, count, name); } @@ -63,6 +65,8 @@ public boolean onUse(Player player, int ticksUsed) { --this.count; player.getInventory().setItemInHand(this); } + + player.getLevel().addSound(this, Sound.RANDOM_BURP); } return true; From 61baaf22b8ecc13a715b6977d7f575521eee5a15 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Wed, 24 Mar 2021 09:57:10 +0900 Subject: [PATCH 031/394] fix --- src/main/java/cn/nukkit/item/ItemEdible.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/item/ItemEdible.java b/src/main/java/cn/nukkit/item/ItemEdible.java index aa69066e53e..9ea6bdc1d69 100644 --- a/src/main/java/cn/nukkit/item/ItemEdible.java +++ b/src/main/java/cn/nukkit/item/ItemEdible.java @@ -64,9 +64,9 @@ public boolean onUse(Player player, int ticksUsed) { if (player.isAdventure() || player.isSurvival()) { --this.count; player.getInventory().setItemInHand(this); + + player.getLevel().addSound(player, Sound.RANDOM_BURP); } - - player.getLevel().addSound(this, Sound.RANDOM_BURP); } return true; From d0cdb08798a03d08bfacd4dcac5465df480c32b3 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Wed, 24 Mar 2021 10:08:43 +0900 Subject: [PATCH 032/394] fix bleeding merge issue --- src/main/java/cn/nukkit/item/Item.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index a94a7efcf00..dce8ea2242a 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -1504,12 +1504,4 @@ public Item clone() { return null; } } - - @PowerNukkitOnly - @Since("1.4.0.0-PN") - public int getNetworkId() { - return RuntimeItems.getNetworkId( - RuntimeItems.getRuntimeMapping().getNetworkFullId(this) - ); - } } From a2e17eba89c5ccd11b9f8375caeb70de92c5bbe2 Mon Sep 17 00:00:00 2001 From: Dmitriy Date: Sun, 30 May 2021 10:26:04 +0600 Subject: [PATCH 033/394] Fixed an abrupt change of day and night --- src/main/java/cn/nukkit/level/Level.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index ed4eb252121..95f2b29c340 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -205,6 +205,7 @@ public static void setCanRandomTick(int blockId, boolean newValue) { private final Long2LongMap unloadQueue = Long2LongMaps.synchronize(new Long2LongOpenHashMap()); private float time; + private float fullTime; public boolean stopTime; public float skyLightSubtracted; @@ -831,7 +832,7 @@ public void unregisterChunkLoader(ChunkLoader loader, int chunkX, int chunkZ) { public void checkTime() { if (!this.stopTime && this.gameRules.getBoolean(GameRule.DO_DAYLIGHT_CYCLE)) { - this.time += tickRate; + this.time = (this.time + 1) % TIME_FULL; } } @@ -843,7 +844,9 @@ public void sendTime(Player... players) { } public void sendTime() { - sendTime(this.players.values().toArray(Player.EMPTY_ARRAY)); + if (this.levelCurrentTick % (30 * 20) == 0) { + this.sendTime(this.players.values().toArray(Player.EMPTY_ARRAY)); + } } public GameRules getGameRules() { @@ -857,10 +860,7 @@ public void doTick(int currentTick) { updateBlockLight(lightQueue); this.checkTime(); - - if (currentTick % 1200 == 0) { // Send time to client every 60 seconds to make sure it stay in sync - this.sendTime(); - } + this.sendTime(); // Tick Weather if (this.dimension != DIMENSION_NETHER && this.dimension != DIMENSION_THE_END && gameRules.getBoolean(GameRule.DO_WEATHER_CYCLE)) { From be2e00f80673a9d27ecb5ced78c6b68ca5d54e4f Mon Sep 17 00:00:00 2001 From: Dmitriy Date: Sun, 30 May 2021 10:27:42 +0600 Subject: [PATCH 034/394] Oops --- src/main/java/cn/nukkit/level/Level.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 95f2b29c340..d3eb1fdaa8d 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -205,7 +205,6 @@ public static void setCanRandomTick(int blockId, boolean newValue) { private final Long2LongMap unloadQueue = Long2LongMaps.synchronize(new Long2LongOpenHashMap()); private float time; - private float fullTime; public boolean stopTime; public float skyLightSubtracted; From f028532ee62079a11c1c1f082e8138e174d13559 Mon Sep 17 00:00:00 2001 From: Dmitriy Date: Sun, 30 May 2021 11:11:52 +0600 Subject: [PATCH 035/394] Fix fast sendTime --- src/main/java/cn/nukkit/level/Level.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 672a35827ca..9f606fcb95d 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -843,9 +843,7 @@ public void sendTime(Player... players) { } public void sendTime() { - if (this.levelCurrentTick % (30 * 20) == 0) { - this.sendTime(this.players.values().toArray(Player.EMPTY_ARRAY)); - } + this.sendTime(this.players.values().toArray(Player.EMPTY_ARRAY)); } public GameRules getGameRules() { @@ -859,7 +857,9 @@ public void doTick(int currentTick) { updateBlockLight(lightQueue); this.checkTime(); - this.sendTime(); + if (currentTick % (30 * 20) == 0) { + this.sendTime(); + } // Tick Weather if (this.dimension != DIMENSION_NETHER && this.dimension != DIMENSION_THE_END && gameRules.getBoolean(GameRule.DO_WEATHER_CYCLE)) { From 6c5ad3826dc63993ab3deed95cd2c483c411829b Mon Sep 17 00:00:00 2001 From: Dmitriy Date: Sun, 30 May 2021 22:49:20 +0600 Subject: [PATCH 036/394] Fix enchant command --- src/main/java/cn/nukkit/command/defaults/EnchantCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/command/defaults/EnchantCommand.java b/src/main/java/cn/nukkit/command/defaults/EnchantCommand.java index 82ee3f5f040..eb5ca3c20c9 100644 --- a/src/main/java/cn/nukkit/command/defaults/EnchantCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/EnchantCommand.java @@ -86,7 +86,7 @@ public boolean execute(CommandSender sender, String commandLabel, String[] args) inventory.setItemInHand(clone); player.giveItem(enchanted); } - Command.broadcastCommandMessage(sender, new TranslationContainer("%commands.enchant.success")); + Command.broadcastCommandMessage(sender, new TranslationContainer("%commands.enchant.success", args[1])); return true; } From 40a8d83867961d071420fe3b3318ae398ebc99cd Mon Sep 17 00:00:00 2001 From: S3v3Nice <49648416+S3v3Nice@users.noreply.github.com> Date: Fri, 11 Jun 2021 08:22:51 +0300 Subject: [PATCH 037/394] Fix respawnToAll() in Entity.java (#1852) * Fix respawnToAll() in Entity.java * Update Entity.java * Fix respawnToAll() in Entity.java (with ArrayList) --- src/main/java/cn/nukkit/entity/Entity.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index be6dc5be2f8..9208a53b816 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -2272,10 +2272,12 @@ public long getId() { } public void respawnToAll() { - for (Player player : this.hasSpawned.values()) { + Collection players = new ArrayList<>(this.hasSpawned.values()); + this.hasSpawned.clear(); + + for (Player player : players) { this.spawnTo(player); } - this.hasSpawned.clear(); } public void spawnToAll() { From 803e8d8c5d6961027b142d2410a0cef283dce4d6 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Fri, 11 Jun 2021 16:44:33 +0900 Subject: [PATCH 038/394] Register TickSyncPacket properly --- src/main/java/cn/nukkit/network/Network.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/cn/nukkit/network/Network.java b/src/main/java/cn/nukkit/network/Network.java index d46c1db15de..302a1d250d0 100644 --- a/src/main/java/cn/nukkit/network/Network.java +++ b/src/main/java/cn/nukkit/network/Network.java @@ -472,5 +472,6 @@ private void registerPackets() { this.registerPacket(ProtocolInfo.ADD_VOLUME_ENTITY, AddVolumeEntityPacket.class); this.registerPacket(ProtocolInfo.REMOVE_VOLUME_ENTITY, RemoveVolumeEntityPacket.class); this.registerPacket(ProtocolInfo.SYNC_ENTITY_PROPERTY, SyncEntityPropertyPacket.class); + this.registerPacket(ProtocolInfo.TICK_SYNC_PACKET, TickSyncPacket.class); } } From bc807c06298be00aac36467df900246020958351 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 11 Jun 2021 10:23:08 -0300 Subject: [PATCH 039/394] Change the version to 1.5.0.1-PN-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c0e7ec600e3..ed3945b41af 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.5.0.0-PN-CUSTOM + 1.5.0.1-PN-SNAPSHOT 2020 From 889d273507eee2d8ca19353062f4910952aeff5e Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 11 Jun 2021 10:31:37 -0300 Subject: [PATCH 040/394] Add #1119 to the changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index de074aaa686..a677b00c1d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ Nukkit 1.X and 2.X. ## [Unreleased 1.5.0.1-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/22?closed=1)) Click the link above to see the future. +### Fixes +- [#1119] `TickSyncPacket` was not registered + ## [1.5.0.0-PN] - 2021-06-11 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/26?closed=1)) This was quick! This new version add protocol support for Minecraft `1.17.0` as if it was `1.16.221`. @@ -837,3 +840,4 @@ Fixes several anvil issues. [#959]: https://github.com/PowerNukkit/PowerNukkit/issues/959 [#960]: https://github.com/PowerNukkit/PowerNukkit/issues/960 [#990]: https://github.com/PowerNukkit/PowerNukkit/issues/990 +[#1119]: https://github.com/PowerNukkit/PowerNukkit/issues/1119 From eb3b668777e188d5f50b1edf2aaeebd9f08ed4ed Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sat, 12 Jun 2021 01:50:53 +0900 Subject: [PATCH 041/394] Add missing entity names (#1112) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add getName() * fix * fix * Add getName() * Add getName() * Update EntityExpBottle.java * Add getName() * Add getName() * Add getName() * Add getName() * Add getName() * Add getName() * Add getName() * Add getName() * Add getName() * Add getName() * Add getName() * Add getName() * Fix getName() * Fix getName() * Fix getName() * Fix getName() * Add getName() * Add getName() * Fix getName() * Add getName() * Add getName() * Update EntityLlama.java * Add getName() * Add getName() * Add getName() * Add getName() * Add getName() * Add getName() * Add getName() * Remove Unnecessary annotations Co-authored-by: Lobo Metalรบrgico <43734867+LoboMetalurgico@users.noreply.github.com> --- .../cn/nukkit/entity/item/EntityAreaEffectCloud.java | 8 ++++++++ src/main/java/cn/nukkit/entity/item/EntityBoat.java | 6 ++++++ .../java/cn/nukkit/entity/item/EntityEndCrystal.java | 8 ++++++++ .../java/cn/nukkit/entity/item/EntityExpBottle.java | 8 ++++++++ .../java/cn/nukkit/entity/item/EntityFallingBlock.java | 8 ++++++++ .../java/cn/nukkit/entity/item/EntityFirework.java | 8 ++++++++ .../java/cn/nukkit/entity/item/EntityFishingHook.java | 8 ++++++++ .../java/cn/nukkit/entity/item/EntityPainting.java | 8 ++++++++ src/main/java/cn/nukkit/entity/item/EntityPotion.java | 8 ++++++++ .../cn/nukkit/entity/item/EntityPotionLingering.java | 8 ++++++++ .../java/cn/nukkit/entity/item/EntityPrimedTNT.java | 8 ++++++++ src/main/java/cn/nukkit/entity/item/EntityXPOrb.java | 8 ++++++++ .../java/cn/nukkit/entity/mob/EntityCaveSpider.java | 2 +- .../java/cn/nukkit/entity/mob/EntityEnderDragon.java | 2 +- .../cn/nukkit/entity/mob/EntityWitherSkeleton.java | 2 +- .../java/cn/nukkit/entity/mob/EntityZombiePigman.java | 2 +- src/main/java/cn/nukkit/entity/passive/EntityBat.java | 8 ++++++++ src/main/java/cn/nukkit/entity/passive/EntityBee.java | 7 +++++++ src/main/java/cn/nukkit/entity/passive/EntityCat.java | 8 ++++++++ .../java/cn/nukkit/entity/passive/EntityDonkey.java | 8 ++++++++ .../java/cn/nukkit/entity/passive/EntityHorse.java | 8 ++++++++ .../java/cn/nukkit/entity/passive/EntityLlama.java | 8 ++++++++ src/main/java/cn/nukkit/entity/passive/EntityMule.java | 8 ++++++++ .../java/cn/nukkit/entity/passive/EntityPanda.java | 8 ++++++++ .../java/cn/nukkit/entity/passive/EntityPolarBear.java | 8 ++++++++ .../cn/nukkit/entity/passive/EntitySkeletonHorse.java | 8 ++++++++ .../java/cn/nukkit/entity/passive/EntitySquid.java | 8 ++++++++ .../cn/nukkit/entity/passive/EntityZombieHorse.java | 8 ++++++++ .../java/cn/nukkit/entity/projectile/EntityArrow.java | 7 +++++++ .../java/cn/nukkit/entity/projectile/EntityEgg.java | 9 +++++++++ .../cn/nukkit/entity/projectile/EntityEnderPearl.java | 9 +++++++++ .../cn/nukkit/entity/projectile/EntitySnowball.java | 8 ++++++++ .../java/cn/nukkit/entity/weather/EntityLightning.java | 10 ++++++++-- 33 files changed, 234 insertions(+), 6 deletions(-) diff --git a/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java b/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java index 8b6172f3047..38b5153f02d 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java +++ b/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.EntityLiving; import cn.nukkit.entity.data.FloatEntityData; @@ -20,6 +22,7 @@ import java.util.List; public class EntityAreaEffectCloud extends Entity { + public static final int NETWORK_ID = 95; protected int reapplicationDelay; @@ -407,4 +410,9 @@ protected float getDrag() { public int getNetworkId() { return NETWORK_ID; } + + @Override + public String getName() { + return "Area Effect Cloud"; + } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityBoat.java b/src/main/java/cn/nukkit/entity/item/EntityBoat.java index 9e9ad88b6a9..7bf4befb3a7 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityBoat.java +++ b/src/main/java/cn/nukkit/entity/item/EntityBoat.java @@ -581,4 +581,10 @@ public void setVariant(int variant) { this.woodID = variant; this.dataProperties.putInt(DATA_VARIANT, variant); } + + + @Override + public String getName() { + return "Boat"; + } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java b/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java index ab187e07155..5f22cf3e965 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java +++ b/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.EntityExplosive; import cn.nukkit.event.entity.EntityDamageEvent; @@ -107,4 +109,10 @@ public boolean showBase() { public void setShowBase(boolean value) { this.setDataFlag(DATA_FLAGS, DATA_FLAG_SHOWBASE, value); } + + + @Override + public String getName() { + return "Ender Crystal"; + } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java b/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java index d732c8d797d..14445b55ce6 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java +++ b/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.item; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.projectile.EntityProjectile; import cn.nukkit.level.Sound; @@ -103,4 +105,10 @@ public void dropXp() { protected void addHitEffect() { this.getLevel().addSound(this, Sound.RANDOM_GLASS); } + + + @Override + public String getName() { + return "Bottle o' Enchanting"; + } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java index 52522f83a99..afd6c059836 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.block.BlockLava; import cn.nukkit.block.BlockLiquid; @@ -226,4 +228,10 @@ public void saveNBT() { public boolean canBeMovedByCurrents() { return false; } + + + @Override + public String getName() { + return "Falling Block"; + } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityFirework.java b/src/main/java/cn/nukkit/entity/item/EntityFirework.java index 8390b493a25..5ed5c12becd 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFirework.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFirework.java @@ -2,6 +2,8 @@ import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.entity.Entity; import cn.nukkit.entity.data.ByteEntityData; @@ -183,4 +185,10 @@ public float getWidth() { public float getHeight() { return 0.25f; } + + + @Override + public String getName() { + return "Firework Rocket"; + } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java index 4c1b5b7c050..0036efe7e5c 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java @@ -3,6 +3,8 @@ import cn.nukkit.Player; import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.entity.Entity; import cn.nukkit.entity.data.LongEntityData; @@ -309,4 +311,10 @@ public void onCollideWithEntity(Entity entity) { setDataProperty(new LongEntityData(DATA_TARGET_EID, entity.getId())); } } + + + @Override + public String getName() { + return "Fishing Hook"; + } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPainting.java b/src/main/java/cn/nukkit/entity/item/EntityPainting.java index fd2fb9004ad..f42a86c5505 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPainting.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPainting.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.item; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.blockentity.BlockEntityPistonArm; import cn.nukkit.entity.Entity; import cn.nukkit.entity.EntityHanging; @@ -196,4 +198,10 @@ public enum Motive { this.height = height; } } + + + @Override + public String getName() { + return "Painting"; + } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotion.java b/src/main/java/cn/nukkit/entity/item/EntityPotion.java index 99e5b513698..2c1d8b859b8 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotion.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotion.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.item; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.projectile.EntityProjectile; import cn.nukkit.event.potion.PotionCollideEvent; @@ -162,4 +164,10 @@ public boolean onUpdate(int currentTick) { this.timing.stopTiming(); return hasUpdate; } + + + @Override + public String getName() { + return "Potion"; + } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java b/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java index 12ac555c364..e98b0e0334b 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -53,4 +55,10 @@ protected void splash(Entity collidedWith) { entity.spawnToAll(); } } + + + @Override + public String getName() { + return "Lingering Potion"; + } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java b/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java index 1ad7df10780..f1f621f8a59 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.item; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.EntityExplosive; import cn.nukkit.entity.data.IntEntityData; @@ -178,4 +180,10 @@ public void explode() { public Entity getSource() { return source; } + + + @Override + public String getName() { + return "Block of TNT"; + } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java b/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java index 94bbb987fbd..8b3f5532f09 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java +++ b/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.item; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.event.entity.EntityDamageEvent; import cn.nukkit.event.entity.EntityDamageEvent.DamageCause; @@ -264,4 +266,10 @@ public static List splitIntoOrbSizes(int amount) { return result; } + + + @Override + public String getName() { + return "Experience Orb"; + } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java b/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java index a9e77083bb4..4bc38c815f4 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java @@ -39,7 +39,7 @@ public float getHeight() { @Override public String getName() { - return "CaveSpider"; + return "Cave Spider"; } @Override diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java b/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java index 9bcd0b49e76..362ef07cf0f 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java @@ -54,6 +54,6 @@ public boolean applyNameTag(Item item) { @Override public String getName() { - return "EnderDragon"; + return "Ender Dragon"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java b/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java index d0f64679493..cb687df8ed8 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java @@ -38,7 +38,7 @@ public float getHeight() { @Override public String getName() { - return "WitherSkeleton"; + return "Wither Skeleton"; } @Override diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java b/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java index 0a34f6e67e9..7d4b49dba91 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java @@ -39,7 +39,7 @@ public float getHeight() { @Override public String getName() { - return "ZombiePigman"; + return "Zombified Piglin"; } @Override diff --git a/src/main/java/cn/nukkit/entity/passive/EntityBat.java b/src/main/java/cn/nukkit/entity/passive/EntityBat.java index de801a1efe8..c41e0b2d269 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityBat.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityBat.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -34,4 +36,10 @@ public void initEntity() { super.initEntity(); this.setMaxHealth(6); } + + + @Override + public String getName() { + return "Bat"; + } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityBee.java b/src/main/java/cn/nukkit/entity/passive/EntityBee.java index bd05e784183..07645e5b22e 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityBee.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityBee.java @@ -1,6 +1,7 @@ package cn.nukkit.entity.passive; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.block.BlockBeehive; @@ -120,4 +121,10 @@ public void leftBeehive(BlockEntityBeehive blockEntityBeehive) { public void setAngry(Player player) { } + + + @Override + public String getName() { + return "Bee"; + } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityCat.java b/src/main/java/cn/nukkit/entity/passive/EntityCat.java index 6381ea60561..0065d350b39 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityCat.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityCat.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -37,4 +39,10 @@ public void initEntity() { super.initEntity(); this.setMaxHealth(10); } + + + @Override + public String getName() { + return "Cat"; + } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java b/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java index b27b0c7f68c..f354fa689eb 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -46,4 +48,10 @@ public void initEntity() { public Item[] getDrops() { return new Item[]{Item.get(Item.LEATHER)}; } + + + @Override + public String getName() { + return "Donkey"; + } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityHorse.java b/src/main/java/cn/nukkit/entity/passive/EntityHorse.java index af3461880fc..84b8c461a54 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityHorse.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -46,4 +48,10 @@ public void initEntity() { public Item[] getDrops() { return new Item[]{Item.get(Item.LEATHER)}; } + + + @Override + public String getName() { + return "Horse"; + } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityLlama.java b/src/main/java/cn/nukkit/entity/passive/EntityLlama.java index 6536a79ee0c..8113fea5135 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityLlama.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityLlama.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -48,4 +50,10 @@ public void initEntity() { super.initEntity(); this.setMaxHealth(15); } + + + @Override + public String getName() { + return "Llama"; + } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityMule.java b/src/main/java/cn/nukkit/entity/passive/EntityMule.java index ae138004025..47aceb36787 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityMule.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityMule.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -46,4 +48,10 @@ public void initEntity() { super.initEntity(); this.setMaxHealth(15); } + + + @Override + public String getName() { + return "Mule"; + } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPanda.java b/src/main/java/cn/nukkit/entity/passive/EntityPanda.java index fd34ddd055a..7d0ec5f1bfd 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPanda.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPanda.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -31,4 +33,10 @@ public void initEntity() { super.initEntity(); this.setMaxHealth(20); } + + + @Override + public String getName() { + return "Panda"; + } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java b/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java index 21f29c0458d..f9fc1dd9646 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -46,4 +48,10 @@ public void initEntity() { public Item[] getDrops() { return new Item[]{Item.get(Item.RAW_FISH), Item.get(Item.RAW_SALMON)}; } + + + @Override + public String getName() { + return "Polar Bear"; + } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java b/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java index 0b11656e64c..b24b2734ee4 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; @@ -46,4 +48,10 @@ public Item[] getDrops() { public boolean isUndead() { return true; } + + + @Override + public String getName() { + return "Skeleton Horse"; + } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySquid.java b/src/main/java/cn/nukkit/entity/passive/EntitySquid.java index c1ce19d9bed..b90f33d2e46 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySquid.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySquid.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.item.MinecraftItemID; import cn.nukkit.level.format.FullChunk; @@ -41,4 +43,10 @@ public void initEntity() { public Item[] getDrops() { return new Item[]{MinecraftItemID.INK_SAC.get(1)}; } + + + @Override + public String getName() { + return "Squid"; + } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java b/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java index 40a0183a784..a21db781616 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; @@ -46,4 +48,10 @@ public Item[] getDrops() { public boolean isUndead() { return true; } + + + @Override + public String getName() { + return "Zombie Horse"; + } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java index 7f67bab01ad..283e706abe9 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java @@ -15,6 +15,7 @@ * @author MagicDroidX (Nukkit Project) */ public class EntityArrow extends EntityProjectile { + public static final int NETWORK_ID = 80; public static final int DATA_SOURCE_ID = 17; @@ -190,4 +191,10 @@ public int getPickupMode() { public void setPickupMode(int pickupMode) { this.pickupMode = pickupMode; } + + + @Override + public String getName() { + return "Arrow"; + } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java b/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java index 2e33c328632..dd04a302e88 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.projectile; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.item.ItemEgg; import cn.nukkit.level.format.FullChunk; @@ -12,6 +14,7 @@ * @author MagicDroidX (Nukkit Project) */ public class EntityEgg extends EntityProjectile { + public static final int NETWORK_ID = 82; @Override @@ -76,4 +79,10 @@ protected void addHitEffect() { level.addParticle(new ItemBreakParticle(this, egg)); } } + + + @Override + public String getName() { + return "Egg"; + } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java b/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java index 8d59b5c78f5..90c6e149905 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.projectile; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.entity.Entity; import cn.nukkit.event.entity.EntityDamageByEntityEvent; @@ -13,6 +15,7 @@ import cn.nukkit.network.protocol.LevelEventPacket; public class EntityEnderPearl extends EntityProjectile { + public static final int NETWORK_ID = 87; @Override @@ -106,4 +109,10 @@ private void teleport() { this.level.addLevelEvent(this, LevelEventPacket.EVENT_PARTICLE_ENDERMAN_TELEPORT); this.level.addLevelEvent(this.shootingEntity.add(0.5, 0.5, 0.5), LevelEventPacket.EVENT_SOUND_PORTAL); } + + + @Override + public String getName() { + return "Ender Pearl"; + } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java b/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java index 27efc491eee..947a340ad61 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java @@ -2,6 +2,7 @@ import cn.nukkit.Player; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.mob.EntityBlaze; import cn.nukkit.level.Level; @@ -19,6 +20,7 @@ * @author MagicDroidX (Nukkit Project) */ public class EntitySnowball extends EntityProjectile { + public static final int NETWORK_ID = 81; private static final byte[] particleCounts = new byte[24]; private static int particleIndex = 0; @@ -114,4 +116,10 @@ protected void addHitEffect() { Level level = this.level; level.getServer().batchPackets(level.getChunkPlayers(chunkX, chunkZ).values().toArray(Player.EMPTY_ARRAY), allPackets); } + + + @Override + public String getName() { + return "Snowball"; + } } diff --git a/src/main/java/cn/nukkit/entity/weather/EntityLightning.java b/src/main/java/cn/nukkit/entity/weather/EntityLightning.java index 439c49801d7..9b158f34f41 100644 --- a/src/main/java/cn/nukkit/entity/weather/EntityLightning.java +++ b/src/main/java/cn/nukkit/entity/weather/EntityLightning.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.weather; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.block.BlockFire; import cn.nukkit.block.BlockID; @@ -148,6 +150,10 @@ public boolean onUpdate(int currentTick) { return true; } - - + + + @Override + public String getName() { + return "Lightning Bolt"; + } } From 6479e036b688eb723a28c77d1db4a46916be5929 Mon Sep 17 00:00:00 2001 From: Alemiz <45739737+Alemiz112@users.noreply.github.com> Date: Fri, 11 Jun 2021 20:03:44 +0200 Subject: [PATCH 042/394] Support MCBE 1.17.0 (#1851) * MCBE 1.17 | Protocol * MCBE 1.17 | Block Palette * Item palette improvements * Fix missing stone states in block palette * New creative items loading * MCBE 1.17 | Biome definitions, entity identifiers --- src/main/java/cn/nukkit/Server.java | 2 + src/main/java/cn/nukkit/block/BlockID.java | 2 + src/main/java/cn/nukkit/item/Item.java | 38 +- .../cn/nukkit/item/RuntimeItemMapping.java | 142 +- .../java/cn/nukkit/item/RuntimeItems.java | 147 +- src/main/java/cn/nukkit/level/GameRules.java | 18 +- .../cn/nukkit/level/GlobalBlockPalette.java | 39 +- .../level/particle/ItemBreakParticle.java | 5 +- .../nukkit/network/protocol/ProtocolInfo.java | 6 +- .../network/protocol/StartGamePacket.java | 3 +- .../java/cn/nukkit/utils/BinaryStream.java | 100 +- src/main/resources/biome_definitions.dat | Bin 37626 -> 39466 bytes src/main/resources/creative_items.json | 5135 +++++++++++++++++ src/main/resources/creativeitems.json | 4522 --------------- src/main/resources/entity_identifiers.dat | Bin 7193 -> 7382 bytes src/main/resources/item_mappings.json | 125 + src/main/resources/legacy_item_ids.json | 809 +++ src/main/resources/runtime_block_states.dat | Bin 1214196 -> 430019 bytes src/main/resources/runtime_item_ids.json | 1 - src/main/resources/runtime_item_states.json | 4154 +++++++++++++ 20 files changed, 10544 insertions(+), 4704 deletions(-) create mode 100644 src/main/resources/creative_items.json delete mode 100644 src/main/resources/creativeitems.json create mode 100644 src/main/resources/item_mappings.json create mode 100644 src/main/resources/legacy_item_ids.json delete mode 100644 src/main/resources/runtime_item_ids.json create mode 100644 src/main/resources/runtime_item_states.json diff --git a/src/main/java/cn/nukkit/Server.java b/src/main/java/cn/nukkit/Server.java index a092147e009..39029ddedc2 100644 --- a/src/main/java/cn/nukkit/Server.java +++ b/src/main/java/cn/nukkit/Server.java @@ -23,6 +23,7 @@ import cn.nukkit.inventory.CraftingManager; import cn.nukkit.inventory.Recipe; import cn.nukkit.item.Item; +import cn.nukkit.item.RuntimeItems; import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.lang.BaseLang; import cn.nukkit.lang.TextContainer; @@ -470,6 +471,7 @@ public Level remove(Object key) { Block.init(); Enchantment.init(); + RuntimeItems.init(); Item.init(); EnumBiome.values(); //load class, this also registers biomes Effect.init(); diff --git a/src/main/java/cn/nukkit/block/BlockID.java b/src/main/java/cn/nukkit/block/BlockID.java index 9673b523c7d..44ebfc47307 100644 --- a/src/main/java/cn/nukkit/block/BlockID.java +++ b/src/main/java/cn/nukkit/block/BlockID.java @@ -301,6 +301,8 @@ public interface BlockID { int STONECUTTER = 245; int GLOWING_OBSIDIAN = 246; int NETHER_REACTOR = 247; //Should not be removed + int INFO_UPDATE = 248; + int INFO_UPDATE2 = 249; int PISTON_EXTENSION = 250; diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index a0312e772e3..adc0483e5dd 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -6,6 +6,8 @@ import cn.nukkit.block.BlockID; import cn.nukkit.entity.Entity; import cn.nukkit.inventory.Fuel; +import cn.nukkit.item.RuntimeItemMapping.RuntimeEntry; +import cn.nukkit.item.RuntimeItemMapping.LegacyEntry; import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.level.Level; import cn.nukkit.math.BlockFace; @@ -20,9 +22,16 @@ import cn.nukkit.utils.Config; import cn.nukkit.utils.MainLogger; import cn.nukkit.utils.Utils; +import com.google.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.JsonParser; import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; import java.nio.ByteOrder; +import java.nio.charset.StandardCharsets; import java.util.*; import java.util.regex.Pattern; @@ -337,22 +346,21 @@ public static void init() { private static final ArrayList creative = new ArrayList<>(); - @SuppressWarnings("unchecked") private static void initCreativeItems() { clearCreativeItems(); - Config config = new Config(Config.JSON); - config.load(Server.class.getClassLoader().getResourceAsStream("creativeitems.json")); - List list = config.getMapList("items"); + JsonArray itemsArray; + try (InputStream stream = Server.class.getClassLoader().getResourceAsStream("creative_items.json")) { + itemsArray = JsonParser.parseReader(new InputStreamReader(stream, StandardCharsets.UTF_8)).getAsJsonObject().getAsJsonArray("items"); + } catch (Exception e) { + throw new AssertionError("Error loading required block states!"); + } - for (Map map : list) { - try { - Item item = fromJson(map, true); - if (item != null) { - addCreativeItem(item); - } - } catch (Exception e) { - MainLogger.getLogger().logException(e); + for (JsonElement element : itemsArray) { + Item item = RuntimeItems.parseCreativeItem(element.getAsJsonObject(), true); + if (item != null && !item.getName().equals(UNKNOWN_STR)) { + // Add only implemented items + addCreativeItem(item); } } } @@ -1108,7 +1116,11 @@ public Item clone() { } } + public final RuntimeEntry getRuntimeEntry() { + return RuntimeItems.getMapping().toRuntime(this.getId(), this.getDamage()); + } + public final int getNetworkId() { - return RuntimeItems.getNetworkId(RuntimeItems.getRuntimeMapping().getNetworkFullId(this)); + return this.getRuntimeEntry().getRuntimeId(); } } diff --git a/src/main/java/cn/nukkit/item/RuntimeItemMapping.java b/src/main/java/cn/nukkit/item/RuntimeItemMapping.java index 20ca3fd00fa..6f6409d4e09 100644 --- a/src/main/java/cn/nukkit/item/RuntimeItemMapping.java +++ b/src/main/java/cn/nukkit/item/RuntimeItemMapping.java @@ -1,43 +1,135 @@ package cn.nukkit.item; -import it.unimi.dsi.fastutil.ints.Int2IntMap; +import cn.nukkit.item.RuntimeItems.MappingEntry; +import cn.nukkit.Server; +import cn.nukkit.utils.BinaryStream; +import com.google.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.JsonParser; +import it.unimi.dsi.fastutil.ints.Int2ObjectMap; +import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; +import lombok.Data; +import lombok.extern.log4j.Log4j2; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.HashMap; +import java.util.Map; + +@Log4j2 public class RuntimeItemMapping { - private final Int2IntMap legacyNetworkMap; - private final Int2IntMap networkLegacyMap; - private final byte[] itemDataPalette; + private final Int2ObjectMap runtime2Legacy = new Int2ObjectOpenHashMap<>(); + private final Int2ObjectMap legacy2Runtime = new Int2ObjectOpenHashMap<>(); + private final Map identifier2Legacy = new HashMap<>(); + + private byte[] itemPalette; + + public RuntimeItemMapping(Map mappings) { + InputStream stream = Server.class.getClassLoader().getResourceAsStream("runtime_item_states.json"); + if (stream == null) { + throw new AssertionError("Unable to load runtime_item_states.json"); + } + JsonArray json = JsonParser.parseReader(new InputStreamReader(stream)).getAsJsonArray(); + + for (JsonElement element : json) { + if (!element.isJsonObject()) { + throw new IllegalStateException("Invalid entry"); + } + JsonObject entry = element.getAsJsonObject(); + String identifier = entry.get("name").getAsString(); + int runtimeId = entry.get("id").getAsInt(); + + boolean hasDamage = false; + int damage = 0; + int legacyId; - public RuntimeItemMapping(byte[] itemDataPalette, Int2IntMap legacyNetworkMap, Int2IntMap networkLegacyMap) { - this.itemDataPalette = itemDataPalette; - this.legacyNetworkMap = legacyNetworkMap; - this.networkLegacyMap = networkLegacyMap; - this.legacyNetworkMap.defaultReturnValue(-1); - this.networkLegacyMap.defaultReturnValue(-1); + if (mappings.containsKey(identifier)) { + MappingEntry mapping = mappings.get(identifier); + legacyId = RuntimeItems.getLegacyIdFromLegacyString(mapping.getLegacyName()); + if (legacyId == -1) { + throw new IllegalStateException("Unable to match " + mapping + " with legacyId"); + } + damage = mapping.getDamage(); + hasDamage = true; + } else { + legacyId = RuntimeItems.getLegacyIdFromLegacyString(identifier); + if (legacyId == -1) { + log.trace("Unable to find legacyId for " + identifier); + continue; + } + } + + int fullId = this.getFullId(legacyId, damage); + LegacyEntry legacyEntry = new LegacyEntry(legacyId, hasDamage, damage); + + this.runtime2Legacy.put(runtimeId, legacyEntry); + this.identifier2Legacy.put(identifier, legacyEntry); + this.legacy2Runtime.put(fullId, new RuntimeEntry(identifier, runtimeId, hasDamage)); + } + + this.generatePalette(); } - public int getNetworkFullId(Item item) { - int fullId = RuntimeItems.getFullId(item.getId(), item.hasMeta() ? item.getDamage() : -1); - int networkId = this.legacyNetworkMap.get(fullId); - if (networkId == -1) { - networkId = this.legacyNetworkMap.get(RuntimeItems.getFullId(item.getId(), 0)); + private void generatePalette() { + BinaryStream paletteBuffer = new BinaryStream(); + paletteBuffer.putUnsignedVarInt(this.legacy2Runtime.size()); + for (RuntimeEntry entry : this.legacy2Runtime.values()) { + paletteBuffer.putString(entry.getIdentifier()); + paletteBuffer.putLShort(entry.getRuntimeId()); + paletteBuffer.putBoolean(false); // Component item } - if (networkId == -1) { - throw new IllegalArgumentException("Unknown item mapping " + item); + this.itemPalette = paletteBuffer.getBuffer(); + } + + public LegacyEntry fromRuntime(int runtimeId) { + LegacyEntry legacyEntry = this.runtime2Legacy.get(runtimeId); + if (legacyEntry == null) { + throw new IllegalArgumentException("Unknown runtime2Legacy mapping: " + runtimeId); } + return legacyEntry; + } + + public RuntimeEntry toRuntime(int id, int meta) { + RuntimeEntry runtimeEntry = this.legacy2Runtime.get(this.getFullId(id, meta)); + if (runtimeEntry == null) { + runtimeEntry = this.legacy2Runtime.get(this.getFullId(id, 0)); + } + + if (runtimeEntry == null) { + throw new IllegalArgumentException("Unknown legacy2Runtime mapping: id=" + id + " meta=" + meta); + } + return runtimeEntry; + } - return networkId; + public LegacyEntry fromIdentifier(String identifier) { + return this.identifier2Legacy.get(identifier); } - public int getLegacyFullId(int networkId) { - int fullId = networkLegacyMap.get(networkId); - if (fullId == -1) { - throw new IllegalArgumentException("Unknown network mapping: " + networkId); + public int getFullId(int id, int data) { + return (((short) id) << 16) | ((data & 0x7fff) << 1); + } + + public byte[] getItemPalette() { + return this.itemPalette; + } + + @Data + public static class LegacyEntry { + private final int legacyId; + private final boolean hasDamage; + private final int damage; + + public int getDamage() { + return this.hasDamage ? this.damage : 0; } - return fullId; } - public byte[] getItemDataPalette() { - return this.itemDataPalette; + @Data + public static class RuntimeEntry { + private final String identifier; + private final int runtimeId; + private final boolean hasDamage; } } diff --git a/src/main/java/cn/nukkit/item/RuntimeItems.java b/src/main/java/cn/nukkit/item/RuntimeItems.java index 3aca8e84078..5e09049b3c0 100644 --- a/src/main/java/cn/nukkit/item/RuntimeItems.java +++ b/src/main/java/cn/nukkit/item/RuntimeItems.java @@ -1,91 +1,116 @@ package cn.nukkit.item; +import cn.nukkit.item.RuntimeItemMapping.LegacyEntry; import cn.nukkit.Server; -import cn.nukkit.utils.BinaryStream; -import com.google.gson.Gson; -import com.google.gson.reflect.TypeToken; -import it.unimi.dsi.fastutil.ints.Int2IntMap; -import it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap; -import lombok.RequiredArgsConstructor; -import lombok.ToString; +import cn.nukkit.level.GlobalBlockPalette; +import com.google.gson.JsonObject; +import com.google.gson.JsonParser; +import lombok.Data; import lombok.experimental.UtilityClass; +import lombok.extern.log4j.Log4j2; import java.io.InputStream; import java.io.InputStreamReader; -import java.lang.reflect.Type; -import java.nio.charset.StandardCharsets; -import java.util.ArrayList; -import java.util.Collection; +import java.util.Base64; +import java.util.HashMap; +import java.util.Map; +@Log4j2 @UtilityClass public class RuntimeItems { - private static final Gson GSON = new Gson(); - private static final Type ENTRY_TYPE = new TypeToken>(){}.getType(); + private static final Map legacyString2LegacyInt = new HashMap<>(); + private static RuntimeItemMapping itemPalette; + private static boolean initialized; - private static final RuntimeItemMapping itemPalette; + public static void init() { + if (initialized) { + throw new IllegalStateException("RuntimeItems were already generated!"); + } + initialized = true; + log.info("Loading runtime items..."); - static { - Server.getInstance().getLogger().debug("Loading runtime items..."); - InputStream stream = Server.class.getClassLoader().getResourceAsStream("runtime_item_ids.json"); - if (stream == null) { - throw new AssertionError("Unable to load runtime_item_ids.json"); + InputStream itemIdsStream = Server.class.getClassLoader().getResourceAsStream("legacy_item_ids.json"); + if (itemIdsStream == null) { + throw new AssertionError("Unable to load legacy_item_ids.json"); } - InputStreamReader reader = new InputStreamReader(stream, StandardCharsets.UTF_8); - Collection entries = GSON.fromJson(reader, ENTRY_TYPE); - - BinaryStream paletteBuffer = new BinaryStream(); - paletteBuffer.putUnsignedVarInt(entries.size()); - - Int2IntMap legacyNetworkMap = new Int2IntOpenHashMap(); - Int2IntMap networkLegacyMap = new Int2IntOpenHashMap(); - for (Entry entry : entries) { - paletteBuffer.putString(entry.name); - paletteBuffer.putLShort(entry.id); - paletteBuffer.putBoolean(false); // Component item - if (entry.oldId != null) { - boolean hasData = entry.oldData != null; - int fullId = getFullId(entry.oldId, hasData ? entry.oldData : 0); - legacyNetworkMap.put(fullId, (entry.id << 1) | (hasData ? 1 : 0)); - networkLegacyMap.put(entry.id, fullId | (hasData ? 1 : 0)); - } + JsonObject json = JsonParser.parseReader(new InputStreamReader(itemIdsStream)).getAsJsonObject(); + for (String identifier : json.keySet()) { + legacyString2LegacyInt.put(identifier, json.get(identifier).getAsInt()); } - byte[] itemDataPalette = paletteBuffer.getBuffer(); - itemPalette = new RuntimeItemMapping(itemDataPalette, legacyNetworkMap, networkLegacyMap); + InputStream mappingStream = Server.class.getClassLoader().getResourceAsStream("item_mappings.json"); + if (mappingStream == null) { + throw new AssertionError("Unable to load item_mappings.json"); + } + JsonObject itemMapping = JsonParser.parseReader(new InputStreamReader(mappingStream)).getAsJsonObject(); + + Map mappingEntries = new HashMap<>(); + for (String legacyName : itemMapping.keySet()) { + JsonObject convertData = itemMapping.getAsJsonObject(legacyName); + for (String damageStr : convertData.keySet()) { + String identifier = convertData.get(damageStr).getAsString(); + int damage = Integer.parseInt(damageStr); + mappingEntries.put(identifier, new MappingEntry(legacyName, damage)); + } + } + itemPalette = new RuntimeItemMapping(mappingEntries); } - public static RuntimeItemMapping getRuntimeMapping() { - return itemPalette; - } + public static Item parseCreativeItem(JsonObject json, boolean ignoreUnknown) { + String identifier = json.get("id").getAsString(); + LegacyEntry legacyEntry = itemPalette.fromIdentifier(identifier); + if (legacyEntry == null) { + if (!ignoreUnknown) { + throw new IllegalStateException("Can not find legacyEntry for " + identifier); + } + log.debug("Can not find legacyEntry for " + identifier); + return null; + } - public static int getId(int fullId) { - return (short) (fullId >> 16); - } + byte[] nbtBytes; + if (json.has("nbt_b64")) { + nbtBytes = Base64.getDecoder().decode(json.get("nbt_b64").getAsString()); + } else { + nbtBytes = new byte[0]; + } - public static int getData(int fullId) { - return ((fullId >> 1) & 0x7fff); - } + int legacyId = legacyEntry.getLegacyId(); + int damage = 0; + if (json.has("damage")) { + damage = json.get("damage").getAsInt(); + } else if (legacyEntry.isHasDamage()) { + damage = legacyEntry.getDamage(); + } else if (json.has("blockRuntimeId")) { + int runtimeId = json.get("blockRuntimeId").getAsInt(); + int fullId = GlobalBlockPalette.getLegacyFullId(runtimeId); + if (fullId == -1) { + if (ignoreUnknown) { + return null; + } else { + throw new IllegalStateException("Can not find blockRuntimeId for " + runtimeId); + } + } + + damage = fullId & 0xf; + } - public static int getFullId(int id, int data) { - return (((short) id) << 16) | ((data & 0x7fff) << 1); + int count = json.has("count") ? json.get("count").getAsInt() : 1; + return Item.get(legacyId, damage, count, nbtBytes); } - public static int getNetworkId(int networkFullId) { - return networkFullId >> 1; + public static RuntimeItemMapping getMapping() { + return itemPalette; } - public static boolean hasData(int id) { - return (id & 0x1) != 0; + public static int getLegacyIdFromLegacyString(String identifier) { + return legacyString2LegacyInt.getOrDefault(identifier, -1); } - @ToString - @RequiredArgsConstructor - static class Entry { - String name; - int id; - Integer oldId; - Integer oldData; + @Data + public static class MappingEntry { + private final String legacyName; + private final int damage; } } diff --git a/src/main/java/cn/nukkit/level/GameRules.java b/src/main/java/cn/nukkit/level/GameRules.java index cfce2146dfb..650e7165585 100644 --- a/src/main/java/cn/nukkit/level/GameRules.java +++ b/src/main/java/cn/nukkit/level/GameRules.java @@ -193,6 +193,7 @@ void write(BinaryStream pk, Value value) { public static class Value { private final Type type; private T value; + private boolean canBeChanged; public Value(Type type, T value) { this.type = type; @@ -206,8 +207,16 @@ private void setValue(T value, Type type) { this.value = value; } + public boolean isCanBeChanged() { + return this.canBeChanged; + } + + public void setCanBeChanged(boolean canBeChanged) { + this.canBeChanged = canBeChanged; + } + public Type getType() { - return type; + return this.type; } private boolean getValueAsBoolean() { @@ -231,9 +240,10 @@ private float getValueAsFloat() { return (Float) value; } - public void write(BinaryStream pk) { - pk.putUnsignedVarInt(type.ordinal()); - type.write(pk, this); + public void write(BinaryStream stream) { + stream.putBoolean(this.canBeChanged); + stream.putUnsignedVarInt(type.ordinal()); + type.write(stream, this); } } } diff --git a/src/main/java/cn/nukkit/level/GlobalBlockPalette.java b/src/main/java/cn/nukkit/level/GlobalBlockPalette.java index df6cc99a227..2c2c6fb8a2d 100644 --- a/src/main/java/cn/nukkit/level/GlobalBlockPalette.java +++ b/src/main/java/cn/nukkit/level/GlobalBlockPalette.java @@ -1,6 +1,7 @@ package cn.nukkit.level; import cn.nukkit.Server; +import cn.nukkit.block.BlockID; import cn.nukkit.nbt.NBTIO; import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.nbt.tag.ListTag; @@ -13,15 +14,12 @@ import java.io.IOException; import java.io.InputStream; import java.nio.ByteOrder; -import java.util.List; import java.util.NoSuchElementException; -import java.util.concurrent.atomic.AtomicInteger; @Log4j2 public class GlobalBlockPalette { private static final Int2IntMap legacyToRuntimeId = new Int2IntOpenHashMap(); private static final Int2IntMap runtimeIdToLegacy = new Int2IntOpenHashMap(); - private static final AtomicInteger runtimeIdAllocator = new AtomicInteger(0); static { legacyToRuntimeId.defaultReturnValue(-1); @@ -33,25 +31,18 @@ public class GlobalBlockPalette { throw new AssertionError("Unable to locate block state nbt"); } //noinspection unchecked - tag = (ListTag) NBTIO.readTag(new ByteArrayInputStream(ByteStreams.toByteArray(stream)), ByteOrder.LITTLE_ENDIAN, false); + tag = (ListTag) NBTIO.readTag(new ByteArrayInputStream(ByteStreams.toByteArray(stream)), ByteOrder.BIG_ENDIAN, false); } catch (IOException e) { throw new AssertionError("Unable to load block palette", e); } for (CompoundTag state : tag.getAll()) { - int runtimeId = runtimeIdAllocator.getAndIncrement(); - if (!state.contains("LegacyStates")) continue; - - List legacyStates = state.getList("LegacyStates", CompoundTag.class).getAll(); - - // Resolve to first legacy id - CompoundTag firstState = legacyStates.get(0); - runtimeIdToLegacy.put(runtimeId, firstState.getInt("id") << 6 | firstState.getShort("val")); - - for (CompoundTag legacyState : legacyStates) { - int legacyId = legacyState.getInt("id") << 6 | legacyState.getShort("val"); - legacyToRuntimeId.put(legacyId, runtimeId); - } + int blockId = state.getInt("id"); + int meta = state.getShort("data"); + int runtimeId = state.getInt("runtimeId"); + int legacyId = blockId << 6 | meta; + legacyToRuntimeId.put(legacyId, runtimeId); + runtimeIdToLegacy.put(runtimeId, legacyId); } } @@ -60,11 +51,11 @@ public static int getOrCreateRuntimeId(int id, int meta) { int runtimeId = legacyToRuntimeId.get(legacyId); if (runtimeId == -1) { runtimeId = legacyToRuntimeId.get(id << 6); - if (runtimeId == -1) { - log.info("Creating new runtime ID for unknown block {}", id); - runtimeId = runtimeIdAllocator.getAndIncrement(); - legacyToRuntimeId.put(id << 6, runtimeId); - runtimeIdToLegacy.put(runtimeId, id << 6); + if (runtimeId == -1 && id != BlockID.INFO_UPDATE) { + log.info("Unable to find runtime id for {}", id); + return getOrCreateRuntimeId(BlockID.INFO_UPDATE, 0); + } else if (id == BlockID.INFO_UPDATE){ + throw new IllegalStateException("InfoUpdate state is missing!"); } } return runtimeId; @@ -73,4 +64,8 @@ public static int getOrCreateRuntimeId(int id, int meta) { public static int getOrCreateRuntimeId(int legacyId) throws NoSuchElementException { return getOrCreateRuntimeId(legacyId >> 4, legacyId & 0xf); } + + public static int getLegacyFullId(int runtimeId) { + return runtimeIdToLegacy.get(runtimeId); + } } diff --git a/src/main/java/cn/nukkit/level/particle/ItemBreakParticle.java b/src/main/java/cn/nukkit/level/particle/ItemBreakParticle.java index 458e2debf30..b8722427d86 100644 --- a/src/main/java/cn/nukkit/level/particle/ItemBreakParticle.java +++ b/src/main/java/cn/nukkit/level/particle/ItemBreakParticle.java @@ -1,7 +1,6 @@ package cn.nukkit.level.particle; import cn.nukkit.item.Item; -import cn.nukkit.item.RuntimeItems; import cn.nukkit.math.Vector3; import cn.nukkit.network.protocol.DataPacket; import cn.nukkit.network.protocol.LevelEventPacket; @@ -16,9 +15,7 @@ public class ItemBreakParticle extends Particle { public ItemBreakParticle(Vector3 pos, Item item) { super(pos.x, pos.y, pos.z); - int networkFullId = RuntimeItems.getRuntimeMapping().getNetworkFullId(item); - int networkId = RuntimeItems.getNetworkId(networkFullId); - this.data = (networkId << 16 | item.getDamage()); + this.data = (item.getNetworkId() << 16 | item.getDamage()); } @Override diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index 72dd02dd2ea..0cb78a7304a 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -14,12 +14,12 @@ public interface ProtocolInfo { * Actual Minecraft: PE protocol version */ @SuppressWarnings("UnnecessaryBoxing") - int CURRENT_PROTOCOL = Integer.valueOf("431"); // DO NOT REMOVE BOXING + int CURRENT_PROTOCOL = Integer.valueOf("440"); // DO NOT REMOVE BOXING List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION = "v1.16.220"; - String MINECRAFT_VERSION_NETWORK = "1.16.220"; + String MINECRAFT_VERSION = "v1.17.0"; + String MINECRAFT_VERSION_NETWORK = "1.17.0"; byte LOGIN_PACKET = 0x01; byte PLAY_STATUS_PACKET = 0x02; diff --git a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java index a1bcb233445..1f8ff04ab02 100644 --- a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java @@ -147,8 +147,9 @@ public void encode() { this.putLLong(this.currentTick); this.putVarInt(this.enchantmentSeed); this.putUnsignedVarInt(0); // Custom blocks - this.put(RuntimeItems.getRuntimeMapping().getItemDataPalette()); + this.put(RuntimeItems.getMapping().getItemPalette()); this.putString(this.multiplayerCorrelationId); this.putBoolean(this.isInventoryServerAuthoritative); + this.putString(""); // Server Engine } } diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index d118b4a629d..eb1e620c1eb 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -4,6 +4,8 @@ import cn.nukkit.entity.Attribute; import cn.nukkit.entity.data.Skin; import cn.nukkit.item.*; +import cn.nukkit.item.RuntimeItemMapping.LegacyEntry; +import cn.nukkit.item.RuntimeItemMapping.RuntimeEntry; import cn.nukkit.level.GameRule; import cn.nukkit.level.GameRules; import cn.nukkit.level.GlobalBlockPalette; @@ -374,29 +376,29 @@ public SerializedImage getImage() { } public Item getSlot() { - int id = getVarInt(); - if (id == 0) { + int runtimeId = this.getVarInt(); + if (runtimeId == 0) { return Item.get(0, 0, 0); } - int count = getLShort(); - int damage = (int) getUnsignedVarInt(); + int count = this.getLShort(); + int damage = (int) this.getUnsignedVarInt(); - int fullId = RuntimeItems.getRuntimeMapping().getLegacyFullId(id); - id = RuntimeItems.getId(fullId); + RuntimeItemMapping mapping = RuntimeItems.getMapping(); + LegacyEntry legacyEntry = mapping.fromRuntime(runtimeId); - /*boolean hasData = RuntimeItems.hasData(fullId); // Unnecessary when the damage is read from NBT - if (hasData) { - damage = RuntimeItems.getData(fullId); - }*/ + int id = legacyEntry.getLegacyId(); + if (legacyEntry.isHasDamage()) { + damage = legacyEntry.getDamage(); + } - if (getBoolean()) { // hasNetId - getVarInt(); // netId + if (this.getBoolean()) { // hasNetId + this.getVarInt(); // netId } - getVarInt(); // blockRuntimeId + this.getVarInt(); // blockRuntimeId - byte[] bytes = getByteArray(); + byte[] bytes = this.getByteArray(); ByteBuf buf = AbstractByteBufAllocator.DEFAULT.ioBuffer(bytes.length); buf.writeBytes(bytes); @@ -484,32 +486,28 @@ public void putSlot(Item item) { public void putSlot(Item item, boolean instanceItem) { if (item == null || item.getId() == 0) { - putByte((byte) 0); + this.putByte((byte) 0); return; } - int networkFullId = RuntimeItems.getRuntimeMapping().getNetworkFullId(item); - int networkId = RuntimeItems.getNetworkId(networkFullId); + RuntimeItemMapping mapping = RuntimeItems.getMapping(); + RuntimeEntry runtimeEntry = mapping.toRuntime(item.getId(), item.getDamage()); + int runtimeId = runtimeEntry.getRuntimeId(); + int damage = runtimeEntry.isHasDamage() ? 0 : item.getDamage(); - putVarInt(networkId); - putLShort(item.getCount()); + this.putVarInt(runtimeId); + this.putLShort(item.getCount()); - boolean useLegacyData = false; - if (item.getId() > 256) { // Not a block - if (item instanceof ItemDurable || !RuntimeItems.hasData(networkFullId)) { - useLegacyData = true; - } - } - putUnsignedVarInt(useLegacyData ? item.getDamage() : 0); + this.putUnsignedVarInt(damage); if (!instanceItem) { - putBoolean(true); - putVarInt(0); //TODO + this.putBoolean(true); + this.putVarInt(0); //TODO } Block block = item.getBlockUnsafe(); - int runtimeId = block == null ? 0 : GlobalBlockPalette.getOrCreateRuntimeId(block.getId(), block.getDamage()); - putVarInt(runtimeId); + int blockRuntimeId = block == null ? 0 : GlobalBlockPalette.getOrCreateRuntimeId(block.getId(), block.getDamage()); + this.putVarInt(blockRuntimeId); ByteBuf userDataBuf = ByteBufAllocator.DEFAULT.ioBuffer(); try (LittleEndianByteBufOutputStream stream = new LittleEndianByteBufOutputStream(userDataBuf)) { @@ -563,18 +561,19 @@ public void putSlot(Item item, boolean instanceItem) { } public Item getRecipeIngredient() { - int networkId = this.getVarInt(); - if (networkId == 0) { + int runtimeId = this.getVarInt(); + if (runtimeId == 0) { return Item.get(0, 0, 0); } - int legacyFullId = RuntimeItems.getRuntimeMapping().getLegacyFullId(networkId); - int id = RuntimeItems.getId(legacyFullId); - boolean hasData = RuntimeItems.hasData(legacyFullId); + RuntimeItemMapping mapping = RuntimeItems.getMapping(); + LegacyEntry legacyEntry = mapping.fromRuntime(runtimeId); + int id = legacyEntry.getLegacyId(); int damage = this.getVarInt(); - if (hasData) { - damage = RuntimeItems.getData(legacyFullId); + + if (legacyEntry.isHasDamage()) { + damage = legacyEntry.getDamage(); } else if (damage == 0x7fff) { damage = -1; } @@ -583,22 +582,27 @@ public Item getRecipeIngredient() { return Item.get(id, damage, count); } - public void putRecipeIngredient(Item ingredient) { - if (ingredient == null || ingredient.getId() == 0) { + public void putRecipeIngredient(Item item) { + if (item == null || item.getId() == 0) { this.putVarInt(0); return; } - int networkFullId = RuntimeItems.getRuntimeMapping().getNetworkFullId(ingredient); - int networkId = RuntimeItems.getNetworkId(networkFullId); - int damage = ingredient.hasMeta() ? ingredient.getDamage() : 0x7fff; - if (RuntimeItems.hasData(networkFullId)) { - damage = 0; + RuntimeItemMapping mapping = RuntimeItems.getMapping(); + int runtimeId, damage; + + if (!item.hasMeta()) { + RuntimeEntry runtimeEntry = mapping.toRuntime(item.getId(), 0); + runtimeId = runtimeEntry.getRuntimeId(); + damage = 0x7fff; + } else { + RuntimeEntry runtimeEntry = mapping.toRuntime(item.getId(), item.getDamage()); + runtimeId = runtimeEntry.getRuntimeId(); + damage = runtimeEntry.isHasDamage() ? 0 : item.getDamage(); } - - this.putVarInt(networkId); + this.putVarInt(runtimeId); this.putVarInt(damage); - this.putVarInt(ingredient.getCount()); + this.putVarInt(item.getCount()); } private List extractStringList(Item item, String tagName) { @@ -716,7 +720,7 @@ public void putGameRules(GameRules gameRules) { Map rules = gameRules.getGameRules(); this.putUnsignedVarInt(rules.size()); rules.forEach((gameRule, value) -> { - putString(gameRule.getName().toLowerCase()); + this.putString(gameRule.getName().toLowerCase()); value.write(this); }); } diff --git a/src/main/resources/biome_definitions.dat b/src/main/resources/biome_definitions.dat index 68705c5d4f97c43f712894fcf5f25cb07bcf5892..8fe3b95a585f8fde3f824ee822e55b68a3421fb1 100644 GIT binary patch delta 994 zcmeyhlxfu#rVZ^JqN=%>d8x@oiD@NPxurQJnR)q{#i^4Utb#Vb;;7)qDeb@cki-gZ zoYLkjXV0A3H+f-$$mBy3N+6EyWI=A<$p?}+H}6wvViM!RWv`Ot*)u+Nto$X3Md_&} z@foGLnJJkim6*mol#^AlTJ+_v}wBTs$vG|v-E zlYKJPCil1SOnzS=x7otQniIFnAfdUBLldg`0n_9KE*zVq0_+rUYXV04nY|d{3Qjf) z8_ZZ{&75fmOh4tDc?**mahg&HN@pN-_M6uf1>#QH;KaEXlsMHuHef~>SQHv%;Isiv zx|6Fj6(_H$=GZKbeDvXR@9-`{WZAcc2PYChI$LPL?QBoP5TSWAj?8HYOZa&nx$z{6<1}vH~aP z=Bu{NOfdbM^&Q=qfgH8X{ho`NHlK3uUJ&l~3yBlw@;Bd}94vEcM+TL=(_2gA3O%?!J iwP=z*$ggUX?W@=(pR)iuI8kWxxhaWw44Pawa}59o>zgA0 diff --git a/src/main/resources/creative_items.json b/src/main/resources/creative_items.json new file mode 100644 index 00000000000..2226e8272c2 --- /dev/null +++ b/src/main/resources/creative_items.json @@ -0,0 +1,5135 @@ +{ + "items" : [ + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5640 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5641 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5642 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5643 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5644 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5645 + }, + { + "id" : "minecraft:crimson_planks", + "blockRuntimeId" : 3799 + }, + { + "id" : "minecraft:warped_planks", + "blockRuntimeId" : 7352 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1278 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1279 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1280 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1281 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1282 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1283 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1290 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1285 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1286 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1284 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1287 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1291 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1288 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1289 + }, + { + "id" : "minecraft:blackstone_wall", + "blockRuntimeId" : 497 + }, + { + "id" : "minecraft:polished_blackstone_wall", + "blockRuntimeId" : 5884 + }, + { + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5681 + }, + { + "id" : "minecraft:cobbled_deepslate_wall", + "blockRuntimeId" : 1115 + }, + { + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4247 + }, + { + "id" : "minecraft:polished_deepslate_wall", + "blockRuntimeId" : 6059 + }, + { + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4064 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4723 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4724 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4725 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4726 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4727 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4728 + }, + { + "id" : "minecraft:nether_brick_fence", + "blockRuntimeId" : 5552 + }, + { + "id" : "minecraft:crimson_fence", + "blockRuntimeId" : 3777 + }, + { + "id" : "minecraft:warped_fence", + "blockRuntimeId" : 7330 + }, + { + "id" : "minecraft:fence_gate", + "blockRuntimeId" : 4729 + }, + { + "id" : "minecraft:spruce_fence_gate", + "blockRuntimeId" : 6764 + }, + { + "id" : "minecraft:birch_fence_gate", + "blockRuntimeId" : 400 + }, + { + "id" : "minecraft:jungle_fence_gate", + "blockRuntimeId" : 5158 + }, + { + "id" : "minecraft:acacia_fence_gate", + "blockRuntimeId" : 44 + }, + { + "id" : "minecraft:dark_oak_fence_gate", + "blockRuntimeId" : 3930 + }, + { + "id" : "minecraft:crimson_fence_gate", + "blockRuntimeId" : 3778 + }, + { + "id" : "minecraft:warped_fence_gate", + "blockRuntimeId" : 7331 + }, + { + "id" : "minecraft:normal_stone_stairs", + "blockRuntimeId" : 5571 + }, + { + "id" : "minecraft:stone_stairs", + "blockRuntimeId" : 7035 + }, + { + "id" : "minecraft:mossy_cobblestone_stairs", + "blockRuntimeId" : 5533 + }, + { + "id" : "minecraft:oak_stairs", + "blockRuntimeId" : 5580 + }, + { + "id" : "minecraft:spruce_stairs", + "blockRuntimeId" : 6796 + }, + { + "id" : "minecraft:birch_stairs", + "blockRuntimeId" : 432 + }, + { + "id" : "minecraft:jungle_stairs", + "blockRuntimeId" : 5190 + }, + { + "id" : "minecraft:acacia_stairs", + "blockRuntimeId" : 76 + }, + { + "id" : "minecraft:dark_oak_stairs", + "blockRuntimeId" : 3962 + }, + { + "id" : "minecraft:stone_brick_stairs", + "blockRuntimeId" : 6941 + }, + { + "id" : "minecraft:mossy_stone_brick_stairs", + "blockRuntimeId" : 5541 + }, + { + "id" : "minecraft:sandstone_stairs", + "blockRuntimeId" : 6533 + }, + { + "id" : "minecraft:smooth_sandstone_stairs", + "blockRuntimeId" : 6657 + }, + { + "id" : "minecraft:red_sandstone_stairs", + "blockRuntimeId" : 6460 + }, + { + "id" : "minecraft:smooth_red_sandstone_stairs", + "blockRuntimeId" : 6649 + }, + { + "id" : "minecraft:granite_stairs", + "blockRuntimeId" : 4914 + }, + { + "id" : "minecraft:polished_granite_stairs", + "blockRuntimeId" : 6229 + }, + { + "id" : "minecraft:diorite_stairs", + "blockRuntimeId" : 4425 + }, + { + "id" : "minecraft:polished_diorite_stairs", + "blockRuntimeId" : 6221 + }, + { + "id" : "minecraft:andesite_stairs", + "blockRuntimeId" : 144 + }, + { + "id" : "minecraft:polished_andesite_stairs", + "blockRuntimeId" : 5657 + }, + { + "id" : "minecraft:brick_stairs", + "blockRuntimeId" : 856 + }, + { + "id" : "minecraft:nether_brick_stairs", + "blockRuntimeId" : 5553 + }, + { + "id" : "minecraft:red_nether_brick_stairs", + "blockRuntimeId" : 6448 + }, + { + "id" : "minecraft:end_brick_stairs", + "blockRuntimeId" : 4669 + }, + { + "id" : "minecraft:quartz_stairs", + "blockRuntimeId" : 6392 + }, + { + "id" : "minecraft:smooth_quartz_stairs", + "blockRuntimeId" : 6641 + }, + { + "id" : "minecraft:purpur_stairs", + "blockRuntimeId" : 6370 + }, + { + "id" : "minecraft:prismarine_stairs", + "blockRuntimeId" : 6292 + }, + { + "id" : "minecraft:dark_prismarine_stairs", + "blockRuntimeId" : 3986 + }, + { + "id" : "minecraft:prismarine_bricks_stairs", + "blockRuntimeId" : 6284 + }, + { + "id" : "minecraft:crimson_stairs", + "blockRuntimeId" : 3819 + }, + { + "id" : "minecraft:warped_stairs", + "blockRuntimeId" : 7372 + }, + { + "id" : "minecraft:blackstone_stairs", + "blockRuntimeId" : 489 + }, + { + "id" : "minecraft:polished_blackstone_stairs", + "blockRuntimeId" : 5876 + }, + { + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5673 + }, + { + "id" : "minecraft:cut_copper_stairs", + "blockRuntimeId" : 3872 + }, + { + "id" : "minecraft:exposed_cut_copper_stairs", + "blockRuntimeId" : 4705 + }, + { + "id" : "minecraft:weathered_cut_copper_stairs", + "blockRuntimeId" : 7499 + }, + { + "id" : "minecraft:oxidized_cut_copper_stairs", + "blockRuntimeId" : 5611 + }, + { + "id" : "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId" : 7443 + }, + { + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId" : 7457 + }, + { + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId" : 7485 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7471 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs", + "blockRuntimeId" : 1107 + }, + { + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4239 + }, + { + "id" : "minecraft:polished_deepslate_stairs", + "blockRuntimeId" : 6051 + }, + { + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4056 + }, + { + "id" : "minecraft:wooden_door" + }, + { + "id" : "minecraft:spruce_door" + }, + { + "id" : "minecraft:birch_door" + }, + { + "id" : "minecraft:jungle_door" + }, + { + "id" : "minecraft:acacia_door" + }, + { + "id" : "minecraft:dark_oak_door" + }, + { + "id" : "minecraft:iron_door" + }, + { + "id" : "minecraft:crimson_door" + }, + { + "id" : "minecraft:warped_door" + }, + { + "id" : "minecraft:trapdoor", + "blockRuntimeId" : 7117 + }, + { + "id" : "minecraft:spruce_trapdoor", + "blockRuntimeId" : 6820 + }, + { + "id" : "minecraft:birch_trapdoor", + "blockRuntimeId" : 456 + }, + { + "id" : "minecraft:jungle_trapdoor", + "blockRuntimeId" : 5214 + }, + { + "id" : "minecraft:acacia_trapdoor", + "blockRuntimeId" : 100 + }, + { + "id" : "minecraft:dark_oak_trapdoor", + "blockRuntimeId" : 3970 + }, + { + "id" : "minecraft:iron_trapdoor", + "blockRuntimeId" : 5073 + }, + { + "id" : "minecraft:crimson_trapdoor", + "blockRuntimeId" : 3846 + }, + { + "id" : "minecraft:warped_trapdoor", + "blockRuntimeId" : 7399 + }, + { + "id" : "minecraft:iron_bars", + "blockRuntimeId" : 5038 + }, + { + "id" : "minecraft:glass", + "blockRuntimeId" : 4820 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6842 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6850 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6849 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6857 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6854 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6856 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6843 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6846 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6847 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6855 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6851 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6845 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6853 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6852 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6844 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 6848 + }, + { + "id" : "minecraft:tinted_glass", + "blockRuntimeId" : 7106 + }, + { + "id" : "minecraft:glass_pane", + "blockRuntimeId" : 4821 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6858 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6866 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6865 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6873 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6870 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6872 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6859 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6862 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6863 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6871 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6867 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6861 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6869 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6868 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6860 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 6864 + }, + { + "id" : "minecraft:ladder", + "blockRuntimeId" : 5262 + }, + { + "id" : "minecraft:scaffolding", + "blockRuntimeId" : 6553 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 6977 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7027 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 6980 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 6998 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7647 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7648 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7649 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7650 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7651 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7652 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 6982 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7025 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 6978 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7028 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 6999 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 6993 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7029 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7010 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7015 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7016 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7013 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7014 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7012 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7011 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 6981 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 6984 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7000 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7009 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 6983 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7026 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 6994 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 6995 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 6996 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 6997 + }, + { + "id" : "minecraft:crimson_slab", + "blockRuntimeId" : 3817 + }, + { + "id" : "minecraft:warped_slab", + "blockRuntimeId" : 7370 + }, + { + "id" : "minecraft:blackstone_slab", + "blockRuntimeId" : 487 + }, + { + "id" : "minecraft:polished_blackstone_slab", + "blockRuntimeId" : 5874 + }, + { + "id" : "minecraft:polished_blackstone_brick_slab", + "blockRuntimeId" : 5671 + }, + { + "id" : "minecraft:cut_copper_slab", + "blockRuntimeId" : 3870 + }, + { + "id" : "minecraft:exposed_cut_copper_slab", + "blockRuntimeId" : 4703 + }, + { + "id" : "minecraft:weathered_cut_copper_slab", + "blockRuntimeId" : 7497 + }, + { + "id" : "minecraft:oxidized_cut_copper_slab", + "blockRuntimeId" : 5609 + }, + { + "id" : "minecraft:waxed_cut_copper_slab", + "blockRuntimeId" : 7441 + }, + { + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "blockRuntimeId" : 7455 + }, + { + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "blockRuntimeId" : 7483 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId" : 7469 + }, + { + "id" : "minecraft:cobbled_deepslate_slab", + "blockRuntimeId" : 1105 + }, + { + "id" : "minecraft:polished_deepslate_slab", + "blockRuntimeId" : 6049 + }, + { + "id" : "minecraft:deepslate_tile_slab", + "blockRuntimeId" : 4237 + }, + { + "id" : "minecraft:deepslate_brick_slab", + "blockRuntimeId" : 4054 + }, + { + "id" : "minecraft:brick_block", + "blockRuntimeId" : 855 + }, + { + "id" : "minecraft:chiseled_nether_bricks", + "blockRuntimeId" : 1090 + }, + { + "id" : "minecraft:cracked_nether_bricks", + "blockRuntimeId" : 3728 + }, + { + "id" : "minecraft:quartz_bricks", + "blockRuntimeId" : 6390 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7043 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7044 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7045 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7046 + }, + { + "id" : "minecraft:end_bricks", + "blockRuntimeId" : 4677 + }, + { + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6283 + }, + { + "id" : "minecraft:polished_blackstone_bricks", + "blockRuntimeId" : 5843 + }, + { + "id" : "minecraft:cracked_polished_blackstone_bricks", + "blockRuntimeId" : 3729 + }, + { + "id" : "minecraft:gilded_blackstone", + "blockRuntimeId" : 4819 + }, + { + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1091 + }, + { + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4409 + }, + { + "id" : "minecraft:cracked_deepslate_tiles", + "blockRuntimeId" : 3727 + }, + { + "id" : "minecraft:deepslate_bricks", + "blockRuntimeId" : 4226 + }, + { + "id" : "minecraft:cracked_deepslate_bricks", + "blockRuntimeId" : 3726 + }, + { + "id" : "minecraft:chiseled_deepslate", + "blockRuntimeId" : 1089 + }, + { + "id" : "minecraft:cobblestone", + "blockRuntimeId" : 1277 + }, + { + "id" : "minecraft:mossy_cobblestone", + "blockRuntimeId" : 5532 + }, + { + "id" : "minecraft:cobbled_deepslate", + "blockRuntimeId" : 1102 + }, + { + "id" : "minecraft:smooth_stone", + "blockRuntimeId" : 6665 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6529 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6530 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6531 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6532 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6456 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6457 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6458 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6459 + }, + { + "id" : "minecraft:coal_block", + "blockRuntimeId" : 1100 + }, + { + "id" : "minecraft:dried_kelp_block", + "blockRuntimeId" : 4533 + }, + { + "id" : "minecraft:gold_block", + "blockRuntimeId" : 4900 + }, + { + "id" : "minecraft:iron_block", + "blockRuntimeId" : 5039 + }, + { + "id" : "minecraft:copper_block", + "blockRuntimeId" : 3636 + }, + { + "id" : "minecraft:exposed_copper", + "blockRuntimeId" : 4701 + }, + { + "id" : "minecraft:weathered_copper", + "blockRuntimeId" : 7495 + }, + { + "id" : "minecraft:oxidized_copper", + "blockRuntimeId" : 5607 + }, + { + "id" : "minecraft:waxed_copper", + "blockRuntimeId" : 7439 + }, + { + "id" : "minecraft:waxed_exposed_copper", + "blockRuntimeId" : 7453 + }, + { + "id" : "minecraft:waxed_weathered_copper", + "blockRuntimeId" : 7481 + }, + { + "id" : "minecraft:waxed_oxidized_copper", + "blockRuntimeId" : 7467 + }, + { + "id" : "minecraft:cut_copper", + "blockRuntimeId" : 3869 + }, + { + "id" : "minecraft:exposed_cut_copper", + "blockRuntimeId" : 4702 + }, + { + "id" : "minecraft:weathered_cut_copper", + "blockRuntimeId" : 7496 + }, + { + "id" : "minecraft:oxidized_cut_copper", + "blockRuntimeId" : 5608 + }, + { + "id" : "minecraft:waxed_cut_copper", + "blockRuntimeId" : 7440 + }, + { + "id" : "minecraft:waxed_exposed_cut_copper", + "blockRuntimeId" : 7454 + }, + { + "id" : "minecraft:waxed_weathered_cut_copper", + "blockRuntimeId" : 7482 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId" : 7468 + }, + { + "id" : "minecraft:emerald_block", + "blockRuntimeId" : 4666 + }, + { + "id" : "minecraft:diamond_block", + "blockRuntimeId" : 4423 + }, + { + "id" : "minecraft:lapis_block", + "blockRuntimeId" : 5270 + }, + { + "id" : "minecraft:raw_iron_block", + "blockRuntimeId" : 6412 + }, + { + "id" : "minecraft:raw_copper_block", + "blockRuntimeId" : 6410 + }, + { + "id" : "minecraft:raw_gold_block", + "blockRuntimeId" : 6411 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6378 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6380 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6379 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6381 + }, + { + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6281 + }, + { + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6282 + }, + { + "id" : "minecraft:slime", + "blockRuntimeId" : 6618 + }, + { + "id" : "minecraft:honey_block", + "blockRuntimeId" : 5017 + }, + { + "id" : "minecraft:honeycomb_block", + "blockRuntimeId" : 5018 + }, + { + "id" : "minecraft:hay_block", + "blockRuntimeId" : 4989 + }, + { + "id" : "minecraft:bone_block", + "blockRuntimeId" : 672 + }, + { + "id" : "minecraft:nether_brick", + "blockRuntimeId" : 5551 + }, + { + "id" : "minecraft:red_nether_brick", + "blockRuntimeId" : 6447 + }, + { + "id" : "minecraft:netherite_block", + "blockRuntimeId" : 5568 + }, + { + "id" : "minecraft:lodestone", + "blockRuntimeId" : 5438 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7659 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7667 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7666 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7674 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7671 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7673 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7660 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7663 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7664 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7672 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7668 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7662 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7670 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7669 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7661 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7665 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 923 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 931 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 930 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 938 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 935 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 937 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 924 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 927 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 928 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 936 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 932 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 926 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 934 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 933 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 925 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 929 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3619 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3627 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3626 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3634 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3631 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3633 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3620 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3623 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3624 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3632 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3628 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3622 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3630 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3629 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3621 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3625 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3603 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3611 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3610 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3618 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3615 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3617 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3604 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3607 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3608 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3616 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3612 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3606 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3614 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3613 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3605 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3609 + }, + { + "id" : "minecraft:clay", + "blockRuntimeId" : 1099 + }, + { + "id" : "minecraft:hardened_clay", + "blockRuntimeId" : 4988 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6874 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6882 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6881 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6889 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6886 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6888 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6875 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6878 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6879 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6887 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6883 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6877 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6885 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6884 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6876 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6880 + }, + { + "id" : "minecraft:white_glazed_terracotta", + "blockRuntimeId" : 7544 + }, + { + "id" : "minecraft:silver_glazed_terracotta", + "blockRuntimeId" : 6600 + }, + { + "id" : "minecraft:gray_glazed_terracotta", + "blockRuntimeId" : 4925 + }, + { + "id" : "minecraft:black_glazed_terracotta", + "blockRuntimeId" : 478 + }, + { + "id" : "minecraft:brown_glazed_terracotta", + "blockRuntimeId" : 864 + }, + { + "id" : "minecraft:red_glazed_terracotta", + "blockRuntimeId" : 6424 + }, + { + "id" : "minecraft:orange_glazed_terracotta", + "blockRuntimeId" : 5601 + }, + { + "id" : "minecraft:yellow_glazed_terracotta", + "blockRuntimeId" : 7676 + }, + { + "id" : "minecraft:lime_glazed_terracotta", + "blockRuntimeId" : 5407 + }, + { + "id" : "minecraft:green_glazed_terracotta", + "blockRuntimeId" : 4931 + }, + { + "id" : "minecraft:cyan_glazed_terracotta", + "blockRuntimeId" : 3880 + }, + { + "id" : "minecraft:light_blue_glazed_terracotta", + "blockRuntimeId" : 5379 + }, + { + "id" : "minecraft:blue_glazed_terracotta", + "blockRuntimeId" : 665 + }, + { + "id" : "minecraft:purple_glazed_terracotta", + "blockRuntimeId" : 6352 + }, + { + "id" : "minecraft:magenta_glazed_terracotta", + "blockRuntimeId" : 5461 + }, + { + "id" : "minecraft:pink_glazed_terracotta", + "blockRuntimeId" : 5622 + }, + { + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6358 + }, + { + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6360 + }, + { + "id" : "minecraft:nether_wart_block", + "blockRuntimeId" : 5567 + }, + { + "id" : "minecraft:warped_wart_block", + "blockRuntimeId" : 7421 + }, + { + "id" : "minecraft:shroomlight", + "blockRuntimeId" : 6583 + }, + { + "id" : "minecraft:crimson_nylium", + "blockRuntimeId" : 3798 + }, + { + "id" : "minecraft:warped_nylium", + "blockRuntimeId" : 7351 + }, + { + "id" : "minecraft:basalt", + "blockRuntimeId" : 214 + }, + { + "id" : "minecraft:polished_basalt", + "blockRuntimeId" : 5665 + }, + { + "id" : "minecraft:smooth_basalt", + "blockRuntimeId" : 6640 + }, + { + "id" : "minecraft:soul_soil", + "blockRuntimeId" : 6710 + }, + { + "id" : "minecraft:dirt", + "blockRuntimeId" : 4433 + }, + { + "id" : "minecraft:dirt", + "blockRuntimeId" : 4434 + }, + { + "id" : "minecraft:farmland", + "blockRuntimeId" : 4715 + }, + { + "id" : "minecraft:grass", + "blockRuntimeId" : 4922 + }, + { + "id" : "minecraft:grass_path", + "blockRuntimeId" : 4923 + }, + { + "id" : "minecraft:podzol", + "blockRuntimeId" : 5646 + }, + { + "id" : "minecraft:mycelium", + "blockRuntimeId" : 5550 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 6934 + }, + { + "id" : "minecraft:iron_ore", + "blockRuntimeId" : 5072 + }, + { + "id" : "minecraft:gold_ore", + "blockRuntimeId" : 4901 + }, + { + "id" : "minecraft:diamond_ore", + "blockRuntimeId" : 4424 + }, + { + "id" : "minecraft:lapis_ore", + "blockRuntimeId" : 5271 + }, + { + "id" : "minecraft:redstone_ore", + "blockRuntimeId" : 6470 + }, + { + "id" : "minecraft:coal_ore", + "blockRuntimeId" : 1101 + }, + { + "id" : "minecraft:emerald_ore", + "blockRuntimeId" : 4667 + }, + { + "id" : "minecraft:quartz_ore", + "blockRuntimeId" : 6391 + }, + { + "id" : "minecraft:nether_gold_ore", + "blockRuntimeId" : 5561 + }, + { + "id" : "minecraft:ancient_debris", + "blockRuntimeId" : 143 + }, + { + "id" : "minecraft:copper_ore", + "blockRuntimeId" : 3637 + }, + { + "id" : "minecraft:deepslate_iron_ore", + "blockRuntimeId" : 4232 + }, + { + "id" : "minecraft:deepslate_gold_ore", + "blockRuntimeId" : 4231 + }, + { + "id" : "minecraft:deepslate_diamond_ore", + "blockRuntimeId" : 4229 + }, + { + "id" : "minecraft:deepslate_lapis_ore", + "blockRuntimeId" : 4233 + }, + { + "id" : "minecraft:deepslate_redstone_ore", + "blockRuntimeId" : 4234 + }, + { + "id" : "minecraft:deepslate_emerald_ore", + "blockRuntimeId" : 4230 + }, + { + "id" : "minecraft:deepslate_coal_ore", + "blockRuntimeId" : 4227 + }, + { + "id" : "minecraft:deepslate_copper_ore", + "blockRuntimeId" : 4228 + }, + { + "id" : "minecraft:gravel", + "blockRuntimeId" : 4924 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 6935 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 6937 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 6939 + }, + { + "id" : "minecraft:blackstone", + "blockRuntimeId" : 484 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 6936 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 6938 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 6940 + }, + { + "id" : "minecraft:polished_blackstone", + "blockRuntimeId" : 5668 + }, + { + "id" : "minecraft:deepslate", + "blockRuntimeId" : 4049 + }, + { + "id" : "minecraft:polished_deepslate", + "blockRuntimeId" : 6046 + }, + { + "id" : "minecraft:sand", + "blockRuntimeId" : 6527 + }, + { + "id" : "minecraft:sand", + "blockRuntimeId" : 6528 + }, + { + "id" : "minecraft:cactus", + "blockRuntimeId" : 890 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5439 + }, + { + "id" : "minecraft:stripped_oak_log", + "blockRuntimeId" : 7073 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5440 + }, + { + "id" : "minecraft:stripped_spruce_log", + "blockRuntimeId" : 7076 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5441 + }, + { + "id" : "minecraft:stripped_birch_log", + "blockRuntimeId" : 7058 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5442 + }, + { + "id" : "minecraft:stripped_jungle_log", + "blockRuntimeId" : 7070 + }, + { + "id" : "minecraft:log2", + "blockRuntimeId" : 5451 + }, + { + "id" : "minecraft:stripped_acacia_log", + "blockRuntimeId" : 7055 + }, + { + "id" : "minecraft:log2", + "blockRuntimeId" : 5452 + }, + { + "id" : "minecraft:stripped_dark_oak_log", + "blockRuntimeId" : 7067 + }, + { + "id" : "minecraft:crimson_stem", + "blockRuntimeId" : 3843 + }, + { + "id" : "minecraft:stripped_crimson_stem", + "blockRuntimeId" : 7064 + }, + { + "id" : "minecraft:warped_stem", + "blockRuntimeId" : 7396 + }, + { + "id" : "minecraft:stripped_warped_stem", + "blockRuntimeId" : 7082 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7551 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7557 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7552 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7558 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7553 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7559 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7554 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7560 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7555 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7561 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7556 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7562 + }, + { + "id" : "minecraft:crimson_hyphae", + "blockRuntimeId" : 3795 + }, + { + "id" : "minecraft:stripped_crimson_hyphae", + "blockRuntimeId" : 7061 + }, + { + "id" : "minecraft:warped_hyphae", + "blockRuntimeId" : 7348 + }, + { + "id" : "minecraft:stripped_warped_hyphae", + "blockRuntimeId" : 7079 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5315 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5316 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5317 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5318 + }, + { + "id" : "minecraft:leaves2", + "blockRuntimeId" : 5331 + }, + { + "id" : "minecraft:leaves2", + "blockRuntimeId" : 5332 + }, + { + "id" : "minecraft:azalea_leaves", + "blockRuntimeId" : 169 + }, + { + "id" : "minecraft:azalea_leaves_flowered", + "blockRuntimeId" : 173 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6541 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6542 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6543 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6544 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6545 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6546 + }, + { + "id" : "minecraft:bee_nest", + "blockRuntimeId" : 236 + }, + { + "id" : "minecraft:wheat_seeds" + }, + { + "id" : "minecraft:pumpkin_seeds" + }, + { + "id" : "minecraft:melon_seeds" + }, + { + "id" : "minecraft:beetroot_seeds" + }, + { + "id" : "minecraft:wheat" + }, + { + "id" : "minecraft:beetroot" + }, + { + "id" : "minecraft:potato" + }, + { + "id" : "minecraft:poisonous_potato" + }, + { + "id" : "minecraft:carrot" + }, + { + "id" : "minecraft:golden_carrot" + }, + { + "id" : "minecraft:apple" + }, + { + "id" : "minecraft:golden_apple" + }, + { + "id" : "minecraft:enchanted_golden_apple" + }, + { + "id" : "minecraft:melon_block", + "blockRuntimeId" : 5474 + }, + { + "id" : "minecraft:melon_slice" + }, + { + "id" : "minecraft:glistering_melon_slice" + }, + { + "id" : "minecraft:sweet_berries" + }, + { + "id" : "minecraft:glow_berries" + }, + { + "id" : "minecraft:pumpkin", + "blockRuntimeId" : 6300 + }, + { + "id" : "minecraft:carved_pumpkin", + "blockRuntimeId" : 948 + }, + { + "id" : "minecraft:lit_pumpkin", + "blockRuntimeId" : 5426 + }, + { + "id" : "minecraft:honeycomb" + }, + { + "id" : "minecraft:tallgrass", + "blockRuntimeId" : 7103 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4453 + }, + { + "id" : "minecraft:tallgrass", + "blockRuntimeId" : 7102 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4452 + }, + { + "id" : "minecraft:nether_sprouts" + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3641 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3639 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3640 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3638 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3642 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3646 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3644 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3645 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3643 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3647 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3661 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3659 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3660 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3658 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3662 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3671 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3669 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3670 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3668 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3672 + }, + { + "id" : "minecraft:kelp" + }, + { + "id" : "minecraft:seagrass", + "blockRuntimeId" : 6579 + }, + { + "id" : "minecraft:crimson_roots", + "blockRuntimeId" : 3816 + }, + { + "id" : "minecraft:warped_roots", + "blockRuntimeId" : 7369 + }, + { + "id" : "minecraft:yellow_flower", + "blockRuntimeId" : 7675 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6413 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6414 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6415 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6416 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6417 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6418 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6419 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6420 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6421 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6422 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6423 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4450 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4451 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4454 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4455 + }, + { + "id" : "minecraft:wither_rose", + "blockRuntimeId" : 7550 + }, + { + "id" : "minecraft:white_dye" + }, + { + "id" : "minecraft:light_gray_dye" + }, + { + "id" : "minecraft:gray_dye" + }, + { + "id" : "minecraft:black_dye" + }, + { + "id" : "minecraft:brown_dye" + }, + { + "id" : "minecraft:red_dye" + }, + { + "id" : "minecraft:orange_dye" + }, + { + "id" : "minecraft:yellow_dye" + }, + { + "id" : "minecraft:lime_dye" + }, + { + "id" : "minecraft:green_dye" + }, + { + "id" : "minecraft:cyan_dye" + }, + { + "id" : "minecraft:light_blue_dye" + }, + { + "id" : "minecraft:blue_dye" + }, + { + "id" : "minecraft:purple_dye" + }, + { + "id" : "minecraft:magenta_dye" + }, + { + "id" : "minecraft:pink_dye" + }, + { + "id" : "minecraft:ink_sac" + }, + { + "id" : "minecraft:glow_ink_sac" + }, + { + "id" : "minecraft:cocoa_beans" + }, + { + "id" : "minecraft:lapis_lazuli" + }, + { + "id" : "minecraft:bone_meal" + }, + { + "id" : "minecraft:vine", + "blockRuntimeId" : 7256 + }, + { + "id" : "minecraft:weeping_vines", + "blockRuntimeId" : 7510 + }, + { + "id" : "minecraft:twisting_vines", + "blockRuntimeId" : 7184 + }, + { + "id" : "minecraft:waterlily", + "blockRuntimeId" : 7438 + }, + { + "id" : "minecraft:deadbush", + "blockRuntimeId" : 4048 + }, + { + "id" : "minecraft:bamboo", + "blockRuntimeId" : 177 + }, + { + "id" : "minecraft:snow", + "blockRuntimeId" : 6666 + }, + { + "id" : "minecraft:ice", + "blockRuntimeId" : 5031 + }, + { + "id" : "minecraft:packed_ice", + "blockRuntimeId" : 5621 + }, + { + "id" : "minecraft:blue_ice", + "blockRuntimeId" : 671 + }, + { + "id" : "minecraft:snow_layer", + "blockRuntimeId" : 6667 + }, + { + "id" : "minecraft:pointed_dripstone", + "blockRuntimeId" : 5652 + }, + { + "id" : "minecraft:dripstone_block", + "blockRuntimeId" : 4534 + }, + { + "id" : "minecraft:moss_carpet", + "blockRuntimeId" : 5531 + }, + { + "id" : "minecraft:moss_block", + "blockRuntimeId" : 5530 + }, + { + "id" : "minecraft:dirt_with_roots", + "blockRuntimeId" : 4435 + }, + { + "id" : "minecraft:hanging_roots", + "blockRuntimeId" : 4953 + }, + { + "id" : "minecraft:big_dripleaf", + "blockRuntimeId" : 328 + }, + { + "id" : "minecraft:small_dripleaf_block", + "blockRuntimeId" : 6632 + }, + { + "id" : "minecraft:spore_blossom", + "blockRuntimeId" : 6719 + }, + { + "id" : "minecraft:azalea", + "blockRuntimeId" : 168 + }, + { + "id" : "minecraft:flowering_azalea", + "blockRuntimeId" : 4764 + }, + { + "id" : "minecraft:glow_lichen", + "blockRuntimeId" : 4897 + }, + { + "id" : "minecraft:amethyst_block", + "blockRuntimeId" : 136 + }, + { + "id" : "minecraft:budding_amethyst", + "blockRuntimeId" : 889 + }, + { + "id" : "minecraft:amethyst_cluster", + "blockRuntimeId" : 137 + }, + { + "id" : "minecraft:large_amethyst_bud", + "blockRuntimeId" : 5272 + }, + { + "id" : "minecraft:medium_amethyst_bud", + "blockRuntimeId" : 5468 + }, + { + "id" : "minecraft:small_amethyst_bud", + "blockRuntimeId" : 6619 + }, + { + "id" : "minecraft:tuff", + "blockRuntimeId" : 7171 + }, + { + "id" : "minecraft:calcite", + "blockRuntimeId" : 913 + }, + { + "id" : "minecraft:chicken" + }, + { + "id" : "minecraft:porkchop" + }, + { + "id" : "minecraft:beef" + }, + { + "id" : "minecraft:mutton" + }, + { + "id" : "minecraft:rabbit" + }, + { + "id" : "minecraft:cod" + }, + { + "id" : "minecraft:salmon" + }, + { + "id" : "minecraft:tropical_fish" + }, + { + "id" : "minecraft:pufferfish" + }, + { + "id" : "minecraft:brown_mushroom", + "blockRuntimeId" : 870 + }, + { + "id" : "minecraft:red_mushroom", + "blockRuntimeId" : 6430 + }, + { + "id" : "minecraft:crimson_fungus", + "blockRuntimeId" : 3794 + }, + { + "id" : "minecraft:warped_fungus", + "blockRuntimeId" : 7347 + }, + { + "id" : "minecraft:brown_mushroom_block", + "blockRuntimeId" : 885 + }, + { + "id" : "minecraft:red_mushroom_block", + "blockRuntimeId" : 6445 + }, + { + "id" : "minecraft:brown_mushroom_block", + "blockRuntimeId" : 886 + }, + { + "id" : "minecraft:brown_mushroom_block", + "blockRuntimeId" : 871 + }, + { + "id" : "minecraft:egg" + }, + { + "id" : "minecraft:sugar_cane" + }, + { + "id" : "minecraft:sugar" + }, + { + "id" : "minecraft:rotten_flesh" + }, + { + "id" : "minecraft:bone" + }, + { + "id" : "minecraft:web", + "blockRuntimeId" : 7509 + }, + { + "id" : "minecraft:spider_eye" + }, + { + "id" : "minecraft:mob_spawner", + "blockRuntimeId" : 5523 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5524 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5525 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5526 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5527 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5528 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5529 + }, + { + "id" : "minecraft:infested_deepslate", + "blockRuntimeId" : 5032 + }, + { + "id" : "minecraft:dragon_egg", + "blockRuntimeId" : 4532 + }, + { + "id" : "minecraft:turtle_egg", + "blockRuntimeId" : 7172 + }, + { + "id" : "minecraft:chicken_spawn_egg" + }, + { + "id" : "minecraft:bee_spawn_egg" + }, + { + "id" : "minecraft:cow_spawn_egg" + }, + { + "id" : "minecraft:pig_spawn_egg" + }, + { + "id" : "minecraft:sheep_spawn_egg" + }, + { + "id" : "minecraft:wolf_spawn_egg" + }, + { + "id" : "minecraft:polar_bear_spawn_egg" + }, + { + "id" : "minecraft:ocelot_spawn_egg" + }, + { + "id" : "minecraft:cat_spawn_egg" + }, + { + "id" : "minecraft:mooshroom_spawn_egg" + }, + { + "id" : "minecraft:bat_spawn_egg" + }, + { + "id" : "minecraft:parrot_spawn_egg" + }, + { + "id" : "minecraft:rabbit_spawn_egg" + }, + { + "id" : "minecraft:llama_spawn_egg" + }, + { + "id" : "minecraft:horse_spawn_egg" + }, + { + "id" : "minecraft:donkey_spawn_egg" + }, + { + "id" : "minecraft:mule_spawn_egg" + }, + { + "id" : "minecraft:skeleton_horse_spawn_egg" + }, + { + "id" : "minecraft:zombie_horse_spawn_egg" + }, + { + "id" : "minecraft:tropical_fish_spawn_egg" + }, + { + "id" : "minecraft:cod_spawn_egg" + }, + { + "id" : "minecraft:pufferfish_spawn_egg" + }, + { + "id" : "minecraft:salmon_spawn_egg" + }, + { + "id" : "minecraft:dolphin_spawn_egg" + }, + { + "id" : "minecraft:turtle_spawn_egg" + }, + { + "id" : "minecraft:panda_spawn_egg" + }, + { + "id" : "minecraft:fox_spawn_egg" + }, + { + "id" : "minecraft:creeper_spawn_egg" + }, + { + "id" : "minecraft:enderman_spawn_egg" + }, + { + "id" : "minecraft:silverfish_spawn_egg" + }, + { + "id" : "minecraft:skeleton_spawn_egg" + }, + { + "id" : "minecraft:wither_skeleton_spawn_egg" + }, + { + "id" : "minecraft:stray_spawn_egg" + }, + { + "id" : "minecraft:slime_spawn_egg" + }, + { + "id" : "minecraft:spider_spawn_egg" + }, + { + "id" : "minecraft:zombie_spawn_egg" + }, + { + "id" : "minecraft:zombie_pigman_spawn_egg" + }, + { + "id" : "minecraft:husk_spawn_egg" + }, + { + "id" : "minecraft:drowned_spawn_egg" + }, + { + "id" : "minecraft:squid_spawn_egg" + }, + { + "id" : "minecraft:glow_squid_spawn_egg" + }, + { + "id" : "minecraft:cave_spider_spawn_egg" + }, + { + "id" : "minecraft:witch_spawn_egg" + }, + { + "id" : "minecraft:guardian_spawn_egg" + }, + { + "id" : "minecraft:elder_guardian_spawn_egg" + }, + { + "id" : "minecraft:endermite_spawn_egg" + }, + { + "id" : "minecraft:magma_cube_spawn_egg" + }, + { + "id" : "minecraft:strider_spawn_egg" + }, + { + "id" : "minecraft:hoglin_spawn_egg" + }, + { + "id" : "minecraft:piglin_spawn_egg" + }, + { + "id" : "minecraft:zoglin_spawn_egg" + }, + { + "id" : "minecraft:piglin_brute_spawn_egg" + }, + { + "id" : "minecraft:goat_spawn_egg" + }, + { + "id" : "minecraft:axolotl_spawn_egg" + }, + { + "id" : "minecraft:ghast_spawn_egg" + }, + { + "id" : "minecraft:blaze_spawn_egg" + }, + { + "id" : "minecraft:shulker_spawn_egg" + }, + { + "id" : "minecraft:vindicator_spawn_egg" + }, + { + "id" : "minecraft:evoker_spawn_egg" + }, + { + "id" : "minecraft:vex_spawn_egg" + }, + { + "id" : "minecraft:villager_spawn_egg" + }, + { + "id" : "minecraft:wandering_trader_spawn_egg" + }, + { + "id" : "minecraft:zombie_villager_spawn_egg" + }, + { + "id" : "minecraft:phantom_spawn_egg" + }, + { + "id" : "minecraft:pillager_spawn_egg" + }, + { + "id" : "minecraft:ravager_spawn_egg" + }, + { + "id" : "minecraft:obsidian", + "blockRuntimeId" : 5600 + }, + { + "id" : "minecraft:crying_obsidian", + "blockRuntimeId" : 3868 + }, + { + "id" : "minecraft:bedrock", + "blockRuntimeId" : 234 + }, + { + "id" : "minecraft:soul_sand", + "blockRuntimeId" : 6709 + }, + { + "id" : "minecraft:netherrack", + "blockRuntimeId" : 5569 + }, + { + "id" : "minecraft:magma", + "blockRuntimeId" : 5467 + }, + { + "id" : "minecraft:nether_wart" + }, + { + "id" : "minecraft:end_stone", + "blockRuntimeId" : 4694 + }, + { + "id" : "minecraft:chorus_flower", + "blockRuntimeId" : 1092 + }, + { + "id" : "minecraft:chorus_plant", + "blockRuntimeId" : 1098 + }, + { + "id" : "minecraft:chorus_fruit" + }, + { + "id" : "minecraft:popped_chorus_fruit" + }, + { + "id" : "minecraft:sponge", + "blockRuntimeId" : 6717 + }, + { + "id" : "minecraft:sponge", + "blockRuntimeId" : 6718 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3648 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3649 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3650 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3651 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3652 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3653 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3654 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3655 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3656 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3657 + }, + { + "id" : "minecraft:leather_helmet" + }, + { + "id" : "minecraft:chainmail_helmet" + }, + { + "id" : "minecraft:iron_helmet" + }, + { + "id" : "minecraft:golden_helmet" + }, + { + "id" : "minecraft:diamond_helmet" + }, + { + "id" : "minecraft:netherite_helmet" + }, + { + "id" : "minecraft:leather_chestplate" + }, + { + "id" : "minecraft:chainmail_chestplate" + }, + { + "id" : "minecraft:iron_chestplate" + }, + { + "id" : "minecraft:golden_chestplate" + }, + { + "id" : "minecraft:diamond_chestplate" + }, + { + "id" : "minecraft:netherite_chestplate" + }, + { + "id" : "minecraft:leather_leggings" + }, + { + "id" : "minecraft:chainmail_leggings" + }, + { + "id" : "minecraft:iron_leggings" + }, + { + "id" : "minecraft:golden_leggings" + }, + { + "id" : "minecraft:diamond_leggings" + }, + { + "id" : "minecraft:netherite_leggings" + }, + { + "id" : "minecraft:leather_boots" + }, + { + "id" : "minecraft:chainmail_boots" + }, + { + "id" : "minecraft:iron_boots" + }, + { + "id" : "minecraft:golden_boots" + }, + { + "id" : "minecraft:diamond_boots" + }, + { + "id" : "minecraft:netherite_boots" + }, + { + "id" : "minecraft:wooden_sword" + }, + { + "id" : "minecraft:stone_sword" + }, + { + "id" : "minecraft:iron_sword" + }, + { + "id" : "minecraft:golden_sword" + }, + { + "id" : "minecraft:diamond_sword" + }, + { + "id" : "minecraft:netherite_sword" + }, + { + "id" : "minecraft:wooden_axe" + }, + { + "id" : "minecraft:stone_axe" + }, + { + "id" : "minecraft:iron_axe" + }, + { + "id" : "minecraft:golden_axe" + }, + { + "id" : "minecraft:diamond_axe" + }, + { + "id" : "minecraft:netherite_axe" + }, + { + "id" : "minecraft:wooden_pickaxe" + }, + { + "id" : "minecraft:stone_pickaxe" + }, + { + "id" : "minecraft:iron_pickaxe" + }, + { + "id" : "minecraft:golden_pickaxe" + }, + { + "id" : "minecraft:diamond_pickaxe" + }, + { + "id" : "minecraft:netherite_pickaxe" + }, + { + "id" : "minecraft:wooden_shovel" + }, + { + "id" : "minecraft:stone_shovel" + }, + { + "id" : "minecraft:iron_shovel" + }, + { + "id" : "minecraft:golden_shovel" + }, + { + "id" : "minecraft:diamond_shovel" + }, + { + "id" : "minecraft:netherite_shovel" + }, + { + "id" : "minecraft:wooden_hoe" + }, + { + "id" : "minecraft:stone_hoe" + }, + { + "id" : "minecraft:iron_hoe" + }, + { + "id" : "minecraft:golden_hoe" + }, + { + "id" : "minecraft:diamond_hoe" + }, + { + "id" : "minecraft:netherite_hoe" + }, + { + "id" : "minecraft:bow" + }, + { + "id" : "minecraft:crossbow" + }, + { + "id" : "minecraft:arrow" + }, + { + "id" : "minecraft:arrow", + "damage" : 6 + }, + { + "id" : "minecraft:arrow", + "damage" : 7 + }, + { + "id" : "minecraft:arrow", + "damage" : 8 + }, + { + "id" : "minecraft:arrow", + "damage" : 9 + }, + { + "id" : "minecraft:arrow", + "damage" : 10 + }, + { + "id" : "minecraft:arrow", + "damage" : 11 + }, + { + "id" : "minecraft:arrow", + "damage" : 12 + }, + { + "id" : "minecraft:arrow", + "damage" : 13 + }, + { + "id" : "minecraft:arrow", + "damage" : 14 + }, + { + "id" : "minecraft:arrow", + "damage" : 15 + }, + { + "id" : "minecraft:arrow", + "damage" : 16 + }, + { + "id" : "minecraft:arrow", + "damage" : 17 + }, + { + "id" : "minecraft:arrow", + "damage" : 18 + }, + { + "id" : "minecraft:arrow", + "damage" : 19 + }, + { + "id" : "minecraft:arrow", + "damage" : 20 + }, + { + "id" : "minecraft:arrow", + "damage" : 21 + }, + { + "id" : "minecraft:arrow", + "damage" : 22 + }, + { + "id" : "minecraft:arrow", + "damage" : 23 + }, + { + "id" : "minecraft:arrow", + "damage" : 24 + }, + { + "id" : "minecraft:arrow", + "damage" : 25 + }, + { + "id" : "minecraft:arrow", + "damage" : 26 + }, + { + "id" : "minecraft:arrow", + "damage" : 27 + }, + { + "id" : "minecraft:arrow", + "damage" : 28 + }, + { + "id" : "minecraft:arrow", + "damage" : 29 + }, + { + "id" : "minecraft:arrow", + "damage" : 30 + }, + { + "id" : "minecraft:arrow", + "damage" : 31 + }, + { + "id" : "minecraft:arrow", + "damage" : 32 + }, + { + "id" : "minecraft:arrow", + "damage" : 33 + }, + { + "id" : "minecraft:arrow", + "damage" : 34 + }, + { + "id" : "minecraft:arrow", + "damage" : 35 + }, + { + "id" : "minecraft:arrow", + "damage" : 36 + }, + { + "id" : "minecraft:arrow", + "damage" : 37 + }, + { + "id" : "minecraft:arrow", + "damage" : 38 + }, + { + "id" : "minecraft:arrow", + "damage" : 39 + }, + { + "id" : "minecraft:arrow", + "damage" : 40 + }, + { + "id" : "minecraft:arrow", + "damage" : 41 + }, + { + "id" : "minecraft:arrow", + "damage" : 42 + }, + { + "id" : "minecraft:arrow", + "damage" : 43 + }, + { + "id" : "minecraft:shield" + }, + { + "id" : "minecraft:cooked_chicken" + }, + { + "id" : "minecraft:cooked_porkchop" + }, + { + "id" : "minecraft:cooked_beef" + }, + { + "id" : "minecraft:cooked_mutton" + }, + { + "id" : "minecraft:cooked_rabbit" + }, + { + "id" : "minecraft:cooked_cod" + }, + { + "id" : "minecraft:cooked_salmon" + }, + { + "id" : "minecraft:bread" + }, + { + "id" : "minecraft:mushroom_stew" + }, + { + "id" : "minecraft:beetroot_soup" + }, + { + "id" : "minecraft:rabbit_stew" + }, + { + "id" : "minecraft:baked_potato" + }, + { + "id" : "minecraft:cookie" + }, + { + "id" : "minecraft:pumpkin_pie" + }, + { + "id" : "minecraft:cake" + }, + { + "id" : "minecraft:dried_kelp" + }, + { + "id" : "minecraft:fishing_rod" + }, + { + "id" : "minecraft:carrot_on_a_stick" + }, + { + "id" : "minecraft:warped_fungus_on_a_stick" + }, + { + "id" : "minecraft:snowball" + }, + { + "id" : "minecraft:shears" + }, + { + "id" : "minecraft:flint_and_steel" + }, + { + "id" : "minecraft:lead" + }, + { + "id" : "minecraft:clock" + }, + { + "id" : "minecraft:compass" + }, + { + "id" : "minecraft:empty_map" + }, + { + "id" : "minecraft:empty_map", + "damage" : 2 + }, + { + "id" : "minecraft:saddle" + }, + { + "id" : "minecraft:leather_horse_armor" + }, + { + "id" : "minecraft:iron_horse_armor" + }, + { + "id" : "minecraft:golden_horse_armor" + }, + { + "id" : "minecraft:diamond_horse_armor" + }, + { + "id" : "minecraft:trident" + }, + { + "id" : "minecraft:turtle_helmet" + }, + { + "id" : "minecraft:elytra" + }, + { + "id" : "minecraft:totem_of_undying" + }, + { + "id" : "minecraft:glass_bottle" + }, + { + "id" : "minecraft:experience_bottle" + }, + { + "id" : "minecraft:potion" + }, + { + "id" : "minecraft:potion", + "damage" : 1 + }, + { + "id" : "minecraft:potion", + "damage" : 2 + }, + { + "id" : "minecraft:potion", + "damage" : 3 + }, + { + "id" : "minecraft:potion", + "damage" : 4 + }, + { + "id" : "minecraft:potion", + "damage" : 5 + }, + { + "id" : "minecraft:potion", + "damage" : 6 + }, + { + "id" : "minecraft:potion", + "damage" : 7 + }, + { + "id" : "minecraft:potion", + "damage" : 8 + }, + { + "id" : "minecraft:potion", + "damage" : 9 + }, + { + "id" : "minecraft:potion", + "damage" : 10 + }, + { + "id" : "minecraft:potion", + "damage" : 11 + }, + { + "id" : "minecraft:potion", + "damage" : 12 + }, + { + "id" : "minecraft:potion", + "damage" : 13 + }, + { + "id" : "minecraft:potion", + "damage" : 14 + }, + { + "id" : "minecraft:potion", + "damage" : 15 + }, + { + "id" : "minecraft:potion", + "damage" : 16 + }, + { + "id" : "minecraft:potion", + "damage" : 17 + }, + { + "id" : "minecraft:potion", + "damage" : 18 + }, + { + "id" : "minecraft:potion", + "damage" : 19 + }, + { + "id" : "minecraft:potion", + "damage" : 20 + }, + { + "id" : "minecraft:potion", + "damage" : 21 + }, + { + "id" : "minecraft:potion", + "damage" : 22 + }, + { + "id" : "minecraft:potion", + "damage" : 23 + }, + { + "id" : "minecraft:potion", + "damage" : 24 + }, + { + "id" : "minecraft:potion", + "damage" : 25 + }, + { + "id" : "minecraft:potion", + "damage" : 26 + }, + { + "id" : "minecraft:potion", + "damage" : 27 + }, + { + "id" : "minecraft:potion", + "damage" : 28 + }, + { + "id" : "minecraft:potion", + "damage" : 29 + }, + { + "id" : "minecraft:potion", + "damage" : 30 + }, + { + "id" : "minecraft:potion", + "damage" : 31 + }, + { + "id" : "minecraft:potion", + "damage" : 32 + }, + { + "id" : "minecraft:potion", + "damage" : 33 + }, + { + "id" : "minecraft:potion", + "damage" : 34 + }, + { + "id" : "minecraft:potion", + "damage" : 35 + }, + { + "id" : "minecraft:potion", + "damage" : 36 + }, + { + "id" : "minecraft:potion", + "damage" : 37 + }, + { + "id" : "minecraft:potion", + "damage" : 38 + }, + { + "id" : "minecraft:potion", + "damage" : 39 + }, + { + "id" : "minecraft:potion", + "damage" : 40 + }, + { + "id" : "minecraft:potion", + "damage" : 41 + }, + { + "id" : "minecraft:potion", + "damage" : 42 + }, + { + "id" : "minecraft:splash_potion" + }, + { + "id" : "minecraft:splash_potion", + "damage" : 1 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 2 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 3 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 4 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 5 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 6 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 7 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 8 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 9 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 10 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 11 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 12 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 13 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 14 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 15 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 16 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 17 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 18 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 19 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 20 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 21 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 22 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 23 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 24 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 25 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 26 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 27 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 28 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 29 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 30 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 31 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 32 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 33 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 34 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 35 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 36 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 37 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 38 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 39 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 40 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 41 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 42 + }, + { + "id" : "minecraft:lingering_potion" + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 1 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 2 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 3 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 4 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 5 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 6 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 7 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 8 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 9 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 10 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 11 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 12 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 13 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 14 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 15 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 16 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 17 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 18 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 19 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 20 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 21 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 22 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 23 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 24 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 25 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 26 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 27 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 28 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 29 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 30 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 31 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 32 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 33 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 34 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 35 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 36 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 37 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 38 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 39 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 40 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 41 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 42 + }, + { + "id" : "minecraft:spyglass" + }, + { + "id" : "minecraft:stick" + }, + { + "id" : "minecraft:bed" + }, + { + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "id" : "minecraft:torch", + "blockRuntimeId" : 7111 + }, + { + "id" : "minecraft:soul_torch", + "blockRuntimeId" : 6711 + }, + { + "id" : "minecraft:sea_pickle", + "blockRuntimeId" : 6571 + }, + { + "id" : "minecraft:lantern", + "blockRuntimeId" : 5268 + }, + { + "id" : "minecraft:soul_lantern", + "blockRuntimeId" : 6707 + }, + { + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3730 + }, + { + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 947 + }, + { + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4761 + }, + { + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6633 + }, + { + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + }, + { + "id" : "minecraft:campfire" + }, + { + "id" : "minecraft:soul_campfire" + }, + { + "id" : "minecraft:furnace", + "blockRuntimeId" : 4813 + }, + { + "id" : "minecraft:blast_furnace", + "blockRuntimeId" : 659 + }, + { + "id" : "minecraft:smoker", + "blockRuntimeId" : 6634 + }, + { + "id" : "minecraft:respawn_anchor", + "blockRuntimeId" : 6522 + }, + { + "id" : "minecraft:brewing_stand" + }, + { + "id" : "minecraft:anvil", + "blockRuntimeId" : 152 + }, + { + "id" : "minecraft:anvil", + "blockRuntimeId" : 156 + }, + { + "id" : "minecraft:anvil", + "blockRuntimeId" : 160 + }, + { + "id" : "minecraft:grindstone", + "blockRuntimeId" : 4937 + }, + { + "id" : "minecraft:enchanting_table", + "blockRuntimeId" : 4668 + }, + { + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 684 + }, + { + "id" : "minecraft:lectern", + "blockRuntimeId" : 5339 + }, + { + "id" : "minecraft:cauldron" + }, + { + "id" : "minecraft:composter", + "blockRuntimeId" : 3594 + }, + { + "id" : "minecraft:chest", + "blockRuntimeId" : 1083 + }, + { + "id" : "minecraft:trapped_chest", + "blockRuntimeId" : 7133 + }, + { + "id" : "minecraft:ender_chest", + "blockRuntimeId" : 4695 + }, + { + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + }, + { + "id" : "minecraft:undyed_shulker_box", + "blockRuntimeId" : 7216 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6584 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6592 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6591 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6599 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6596 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6598 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6585 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6588 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6589 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6597 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6593 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6587 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6595 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6594 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6586 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6590 + }, + { + "id" : "minecraft:armor_stand" + }, + { + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5579 + }, + { + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5113 + }, + { + "id" : "minecraft:music_disc_13" + }, + { + "id" : "minecraft:music_disc_cat" + }, + { + "id" : "minecraft:music_disc_blocks" + }, + { + "id" : "minecraft:music_disc_chirp" + }, + { + "id" : "minecraft:music_disc_far" + }, + { + "id" : "minecraft:music_disc_mall" + }, + { + "id" : "minecraft:music_disc_mellohi" + }, + { + "id" : "minecraft:music_disc_stal" + }, + { + "id" : "minecraft:music_disc_strad" + }, + { + "id" : "minecraft:music_disc_ward" + }, + { + "id" : "minecraft:music_disc_11" + }, + { + "id" : "minecraft:music_disc_wait" + }, + { + "id" : "minecraft:music_disc_pigstep" + }, + { + "id" : "minecraft:glowstone_dust" + }, + { + "id" : "minecraft:glowstone", + "blockRuntimeId" : 4899 + }, + { + "id" : "minecraft:redstone_lamp", + "blockRuntimeId" : 6469 + }, + { + "id" : "minecraft:sealantern", + "blockRuntimeId" : 6582 + }, + { + "id" : "minecraft:oak_sign" + }, + { + "id" : "minecraft:spruce_sign" + }, + { + "id" : "minecraft:birch_sign" + }, + { + "id" : "minecraft:jungle_sign" + }, + { + "id" : "minecraft:acacia_sign" + }, + { + "id" : "minecraft:dark_oak_sign" + }, + { + "id" : "minecraft:crimson_sign" + }, + { + "id" : "minecraft:warped_sign" + }, + { + "id" : "minecraft:painting" + }, + { + "id" : "minecraft:frame" + }, + { + "id" : "minecraft:honey_bottle" + }, + { + "id" : "minecraft:flower_pot" + }, + { + "id" : "minecraft:bowl" + }, + { + "id" : "minecraft:bucket" + }, + { + "id" : "minecraft:milk_bucket" + }, + { + "id" : "minecraft:water_bucket" + }, + { + "id" : "minecraft:lava_bucket" + }, + { + "id" : "minecraft:cod_bucket" + }, + { + "id" : "minecraft:salmon_bucket" + }, + { + "id" : "minecraft:tropical_fish_bucket" + }, + { + "id" : "minecraft:pufferfish_bucket" + }, + { + "id" : "minecraft:powder_snow_bucket" + }, + { + "id" : "minecraft:axolotl_bucket" + }, + { + "id" : "minecraft:glow_frame" + }, + { + "id" : "minecraft:skull", + "damage" : 3 + }, + { + "id" : "minecraft:skull", + "damage" : 2 + }, + { + "id" : "minecraft:skull", + "damage" : 4 + }, + { + "id" : "minecraft:skull", + "damage" : 5 + }, + { + "id" : "minecraft:skull" + }, + { + "id" : "minecraft:skull", + "damage" : 1 + }, + { + "id" : "minecraft:beacon", + "blockRuntimeId" : 217 + }, + { + "id" : "minecraft:bell", + "blockRuntimeId" : 292 + }, + { + "id" : "minecraft:conduit", + "blockRuntimeId" : 3635 + }, + { + "id" : "minecraft:stonecutter_block", + "blockRuntimeId" : 7049 + }, + { + "id" : "minecraft:end_portal_frame", + "blockRuntimeId" : 4680 + }, + { + "id" : "minecraft:coal" + }, + { + "id" : "minecraft:charcoal" + }, + { + "id" : "minecraft:diamond" + }, + { + "id" : "minecraft:iron_nugget" + }, + { + "id" : "minecraft:raw_iron" + }, + { + "id" : "minecraft:raw_gold" + }, + { + "id" : "minecraft:raw_copper" + }, + { + "id" : "minecraft:copper_ingot" + }, + { + "id" : "minecraft:iron_ingot" + }, + { + "id" : "minecraft:netherite_scrap" + }, + { + "id" : "minecraft:netherite_ingot" + }, + { + "id" : "minecraft:gold_nugget" + }, + { + "id" : "minecraft:gold_ingot" + }, + { + "id" : "minecraft:emerald" + }, + { + "id" : "minecraft:quartz" + }, + { + "id" : "minecraft:clay_ball" + }, + { + "id" : "minecraft:brick" + }, + { + "id" : "minecraft:netherbrick" + }, + { + "id" : "minecraft:prismarine_shard" + }, + { + "id" : "minecraft:amethyst_shard" + }, + { + "id" : "minecraft:prismarine_crystals" + }, + { + "id" : "minecraft:nautilus_shell" + }, + { + "id" : "minecraft:heart_of_the_sea" + }, + { + "id" : "minecraft:scute" + }, + { + "id" : "minecraft:phantom_membrane" + }, + { + "id" : "minecraft:string" + }, + { + "id" : "minecraft:feather" + }, + { + "id" : "minecraft:flint" + }, + { + "id" : "minecraft:gunpowder" + }, + { + "id" : "minecraft:leather" + }, + { + "id" : "minecraft:rabbit_hide" + }, + { + "id" : "minecraft:rabbit_foot" + }, + { + "id" : "minecraft:fire_charge" + }, + { + "id" : "minecraft:blaze_rod" + }, + { + "id" : "minecraft:blaze_powder" + }, + { + "id" : "minecraft:magma_cream" + }, + { + "id" : "minecraft:fermented_spider_eye" + }, + { + "id" : "minecraft:dragon_breath" + }, + { + "id" : "minecraft:shulker_shell" + }, + { + "id" : "minecraft:ghast_tear" + }, + { + "id" : "minecraft:slime_ball" + }, + { + "id" : "minecraft:ender_pearl" + }, + { + "id" : "minecraft:ender_eye" + }, + { + "id" : "minecraft:nether_star" + }, + { + "id" : "minecraft:end_rod", + "blockRuntimeId" : 4688 + }, + { + "id" : "minecraft:lightning_rod", + "blockRuntimeId" : 5401 + }, + { + "id" : "minecraft:end_crystal" + }, + { + "id" : "minecraft:paper" + }, + { + "id" : "minecraft:book" + }, + { + "id" : "minecraft:writable_book" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:oak_boat" + }, + { + "id" : "minecraft:spruce_boat" + }, + { + "id" : "minecraft:birch_boat" + }, + { + "id" : "minecraft:jungle_boat" + }, + { + "id" : "minecraft:acacia_boat" + }, + { + "id" : "minecraft:dark_oak_boat" + }, + { + "id" : "minecraft:rail", + "blockRuntimeId" : 6400 + }, + { + "id" : "minecraft:golden_rail", + "blockRuntimeId" : 4902 + }, + { + "id" : "minecraft:detector_rail", + "blockRuntimeId" : 4411 + }, + { + "id" : "minecraft:activator_rail", + "blockRuntimeId" : 122 + }, + { + "id" : "minecraft:minecart" + }, + { + "id" : "minecraft:chest_minecart" + }, + { + "id" : "minecraft:hopper_minecart" + }, + { + "id" : "minecraft:tnt_minecart" + }, + { + "id" : "minecraft:redstone" + }, + { + "id" : "minecraft:redstone_block", + "blockRuntimeId" : 6468 + }, + { + "id" : "minecraft:redstone_torch", + "blockRuntimeId" : 6471 + }, + { + "id" : "minecraft:lever", + "blockRuntimeId" : 5347 + }, + { + "id" : "minecraft:wooden_button", + "blockRuntimeId" : 7587 + }, + { + "id" : "minecraft:spruce_button", + "blockRuntimeId" : 6720 + }, + { + "id" : "minecraft:birch_button", + "blockRuntimeId" : 356 + }, + { + "id" : "minecraft:jungle_button", + "blockRuntimeId" : 5114 + }, + { + "id" : "minecraft:acacia_button" + }, + { + "id" : "minecraft:dark_oak_button", + "blockRuntimeId" : 3886 + }, + { + "id" : "minecraft:stone_button", + "blockRuntimeId" : 6949 + }, + { + "id" : "minecraft:crimson_button", + "blockRuntimeId" : 3731 + }, + { + "id" : "minecraft:warped_button", + "blockRuntimeId" : 7284 + }, + { + "id" : "minecraft:polished_blackstone_button", + "blockRuntimeId" : 5844 + }, + { + "id" : "minecraft:tripwire_hook", + "blockRuntimeId" : 7155 + }, + { + "id" : "minecraft:wooden_pressure_plate", + "blockRuntimeId" : 7631 + }, + { + "id" : "minecraft:spruce_pressure_plate", + "blockRuntimeId" : 6780 + }, + { + "id" : "minecraft:birch_pressure_plate", + "blockRuntimeId" : 416 + }, + { + "id" : "minecraft:jungle_pressure_plate", + "blockRuntimeId" : 5174 + }, + { + "id" : "minecraft:acacia_pressure_plate", + "blockRuntimeId" : 60 + }, + { + "id" : "minecraft:dark_oak_pressure_plate", + "blockRuntimeId" : 3946 + }, + { + "id" : "minecraft:crimson_pressure_plate", + "blockRuntimeId" : 3800 + }, + { + "id" : "minecraft:warped_pressure_plate", + "blockRuntimeId" : 7353 + }, + { + "id" : "minecraft:stone_pressure_plate", + "blockRuntimeId" : 6961 + }, + { + "id" : "minecraft:light_weighted_pressure_plate", + "blockRuntimeId" : 5385 + }, + { + "id" : "minecraft:heavy_weighted_pressure_plate", + "blockRuntimeId" : 5001 + }, + { + "id" : "minecraft:polished_blackstone_pressure_plate", + "blockRuntimeId" : 5858 + }, + { + "id" : "minecraft:observer", + "blockRuntimeId" : 5588 + }, + { + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4016 + }, + { + "id" : "minecraft:repeater" + }, + { + "id" : "minecraft:comparator" + }, + { + "id" : "minecraft:hopper" + }, + { + "id" : "minecraft:dropper", + "blockRuntimeId" : 4538 + }, + { + "id" : "minecraft:dispenser", + "blockRuntimeId" : 4439 + }, + { + "id" : "minecraft:piston", + "blockRuntimeId" : 5629 + }, + { + "id" : "minecraft:sticky_piston", + "blockRuntimeId" : 6923 + }, + { + "id" : "minecraft:tnt", + "blockRuntimeId" : 7107 + }, + { + "id" : "minecraft:name_tag" + }, + { + "id" : "minecraft:loom", + "blockRuntimeId" : 5457 + }, + { + "id" : "minecraft:banner" + }, + { + "id" : "minecraft:banner", + "damage" : 8 + }, + { + "id" : "minecraft:banner", + "damage" : 7 + }, + { + "id" : "minecraft:banner", + "damage" : 15 + }, + { + "id" : "minecraft:banner", + "damage" : 12 + }, + { + "id" : "minecraft:banner", + "damage" : 14 + }, + { + "id" : "minecraft:banner", + "damage" : 1 + }, + { + "id" : "minecraft:banner", + "damage" : 4 + }, + { + "id" : "minecraft:banner", + "damage" : 5 + }, + { + "id" : "minecraft:banner", + "damage" : 13 + }, + { + "id" : "minecraft:banner", + "damage" : 9 + }, + { + "id" : "minecraft:banner", + "damage" : 3 + }, + { + "id" : "minecraft:banner", + "damage" : 11 + }, + { + "id" : "minecraft:banner", + "damage" : 10 + }, + { + "id" : "minecraft:banner", + "damage" : 2 + }, + { + "id" : "minecraft:banner", + "damage" : 6 + }, + { + "id" : "minecraft:banner", + "damage" : 15, + "nbt_b64" : "CgAAAwQAVHlwZQEAAAAA" + }, + { + "id" : "minecraft:creeper_banner_pattern" + }, + { + "id" : "minecraft:skull_banner_pattern" + }, + { + "id" : "minecraft:flower_banner_pattern" + }, + { + "id" : "minecraft:mojang_banner_pattern" + }, + { + "id" : "minecraft:field_masoned_banner_pattern" + }, + { + "id" : "minecraft:bordure_indented_banner_pattern" + }, + { + "id" : "minecraft:piglin_banner_pattern" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_star", + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 8, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 7, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 15, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 12, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 14, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 1, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 4, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 5, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 13, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 9, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 3, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 11, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 10, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 2, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 6, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" + }, + { + "id" : "minecraft:chain" + }, + { + "id" : "minecraft:target", + "blockRuntimeId" : 7105 + }, + { + "id" : "minecraft:lodestone_compass" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/creativeitems.json b/src/main/resources/creativeitems.json deleted file mode 100644 index 66333799077..00000000000 --- a/src/main/resources/creativeitems.json +++ /dev/null @@ -1,4522 +0,0 @@ -{ - "items" : [ - { - "id": 5 - }, - { - "id": 5, - "damage": 1 - }, - { - "id": 5, - "damage": 2 - }, - { - "id": 5, - "damage": 3 - }, - { - "id": 5, - "damage": 4 - }, - { - "id": 5, - "damage": 5 - }, - { - "id": -242 - }, - { - "id": -243 - }, - { - "id": 139 - }, - { - "id": 139, - "damage": 1 - }, - { - "id": 139, - "damage": 2 - }, - { - "id": 139, - "damage": 3 - }, - { - "id": 139, - "damage": 4 - }, - { - "id": 139, - "damage": 5 - }, - { - "id": 139, - "damage": 12 - }, - { - "id": 139, - "damage": 7 - }, - { - "id": 139, - "damage": 8 - }, - { - "id": 139, - "damage": 6 - }, - { - "id": 139, - "damage": 9 - }, - { - "id": 139, - "damage": 13 - }, - { - "id": 139, - "damage": 10 - }, - { - "id": 139, - "damage": 11 - }, - { - "id": -277 - }, - { - "id": -297 - }, - { - "id": -278 - }, - { - "id": 85 - }, - { - "id": 85, - "damage": 1 - }, - { - "id": 85, - "damage": 2 - }, - { - "id": 85, - "damage": 3 - }, - { - "id": 85, - "damage": 4 - }, - { - "id": 85, - "damage": 5 - }, - { - "id": 113 - }, - { - "id": -256 - }, - { - "id": -257 - }, - { - "id": 107 - }, - { - "id": 183 - }, - { - "id": 184 - }, - { - "id": 185 - }, - { - "id": 187 - }, - { - "id": 186 - }, - { - "id": -258 - }, - { - "id": -259 - }, - { - "id": -180 - }, - { - "id": 67 - }, - { - "id": -179 - }, - { - "id": 53 - }, - { - "id": 134 - }, - { - "id": 135 - }, - { - "id": 136 - }, - { - "id": 163 - }, - { - "id": 164 - }, - { - "id": 109 - }, - { - "id": -175 - }, - { - "id": 128 - }, - { - "id": -177 - }, - { - "id": 180 - }, - { - "id": -176 - }, - { - "id": -169 - }, - { - "id": -172 - }, - { - "id": -170 - }, - { - "id": -173 - }, - { - "id": -171 - }, - { - "id": -174 - }, - { - "id": 108 - }, - { - "id": 114 - }, - { - "id": -184 - }, - { - "id": -178 - }, - { - "id": 156 - }, - { - "id": -185 - }, - { - "id": 203 - }, - { - "id": -2 - }, - { - "id": -3 - }, - { - "id": -4 - }, - { - "id": -254 - }, - { - "id": -255 - }, - { - "id": -276 - }, - { - "id": -292 - }, - { - "id": -275 - }, - { - "id": 324 - }, - { - "id": 427 - }, - { - "id": 428 - }, - { - "id": 429 - }, - { - "id": 430 - }, - { - "id": 431 - }, - { - "id": 330 - }, - { - "id": 755 - }, - { - "id": 756 - }, - { - "id": 96 - }, - { - "id": -149 - }, - { - "id": -146 - }, - { - "id": -148 - }, - { - "id": -145 - }, - { - "id": -147 - }, - { - "id": 167 - }, - { - "id": -246 - }, - { - "id": -247 - }, - { - "id": 101 - }, - { - "id": 758 - }, - { - "id": 20 - }, - { - "id": 241 - }, - { - "id": 241, - "damage": 8 - }, - { - "id": 241, - "damage": 7 - }, - { - "id": 241, - "damage": 15 - }, - { - "id": 241, - "damage": 12 - }, - { - "id": 241, - "damage": 14 - }, - { - "id": 241, - "damage": 1 - }, - { - "id": 241, - "damage": 4 - }, - { - "id": 241, - "damage": 5 - }, - { - "id": 241, - "damage": 13 - }, - { - "id": 241, - "damage": 9 - }, - { - "id": 241, - "damage": 3 - }, - { - "id": 241, - "damage": 11 - }, - { - "id": 241, - "damage": 10 - }, - { - "id": 241, - "damage": 2 - }, - { - "id": 241, - "damage": 6 - }, - { - "id": 102 - }, - { - "id": 160 - }, - { - "id": 160, - "damage": 8 - }, - { - "id": 160, - "damage": 7 - }, - { - "id": 160, - "damage": 15 - }, - { - "id": 160, - "damage": 12 - }, - { - "id": 160, - "damage": 14 - }, - { - "id": 160, - "damage": 1 - }, - { - "id": 160, - "damage": 4 - }, - { - "id": 160, - "damage": 5 - }, - { - "id": 160, - "damage": 13 - }, - { - "id": 160, - "damage": 9 - }, - { - "id": 160, - "damage": 3 - }, - { - "id": 160, - "damage": 11 - }, - { - "id": 160, - "damage": 10 - }, - { - "id": 160, - "damage": 2 - }, - { - "id": 160, - "damage": 6 - }, - { - "id": 65 - }, - { - "id": -165 - }, - { - "id": 44 - }, - { - "id": -166, - "damage": 2 - }, - { - "id": 44, - "damage": 3 - }, - { - "id": 182, - "damage": 5 - }, - { - "id": 158 - }, - { - "id": 158, - "damage": 1 - }, - { - "id": 158, - "damage": 2 - }, - { - "id": 158, - "damage": 3 - }, - { - "id": 158, - "damage": 4 - }, - { - "id": 158, - "damage": 5 - }, - { - "id": 44, - "damage": 5 - }, - { - "id": -166 - }, - { - "id": 44, - "damage": 1 - }, - { - "id": -166, - "damage": 3 - }, - { - "id": 182, - "damage": 6 - }, - { - "id": 182 - }, - { - "id": -166, - "damage": 4 - }, - { - "id": -162, - "damage": 1 - }, - { - "id": -162, - "damage": 6 - }, - { - "id": -162, - "damage": 7 - }, - { - "id": -162, - "damage": 4 - }, - { - "id": -162, - "damage": 5 - }, - { - "id": -162, - "damage": 3 - }, - { - "id": -162, - "damage": 2 - }, - { - "id": 44, - "damage": 4 - }, - { - "id": 44, - "damage": 7 - }, - { - "id": 182, - "damage": 7 - }, - { - "id": -162 - }, - { - "id": 44, - "damage": 6 - }, - { - "id": -166, - "damage": 1 - }, - { - "id": 182, - "damage": 1 - }, - { - "id": 182, - "damage": 2 - }, - { - "id": 182, - "damage": 3 - }, - { - "id": 182, - "damage": 4 - }, - { - "id": -264 - }, - { - "id": -265 - }, - { - "id": -282 - }, - { - "id": -293 - }, - { - "id": -284 - }, - { - "id": 45 - }, - { - "id": -302 - }, - { - "id": -303 - }, - { - "id": -304 - }, - { - "id": 98 - }, - { - "id": 98, - "damage": 1 - }, - { - "id": 98, - "damage": 2 - }, - { - "id": 98, - "damage": 3 - }, - { - "id": 206 - }, - { - "id": 168, - "damage": 2 - }, - { - "id": -274 - }, - { - "id": -280 - }, - { - "id": -281 - }, - { - "id": -279 - }, - { - "id": 4 - }, - { - "id": 48 - }, - { - "id": -183 - }, - { - "id": 24 - }, - { - "id": 24, - "damage": 1 - }, - { - "id": 24, - "damage": 2 - }, - { - "id": 24, - "damage": 3 - }, - { - "id": 179 - }, - { - "id": 179, - "damage": 1 - }, - { - "id": 179, - "damage": 2 - }, - { - "id": 179, - "damage": 3 - }, - { - "id": 173 - }, - { - "id": -139 - }, - { - "id": 41 - }, - { - "id": 42 - }, - { - "id": 133 - }, - { - "id": 57 - }, - { - "id": 22 - }, - { - "id": 155 - }, - { - "id": 155, - "damage": 2 - }, - { - "id": 155, - "damage": 1 - }, - { - "id": 155, - "damage": 3 - }, - { - "id": 168 - }, - { - "id": 168, - "damage": 1 - }, - { - "id": 165 - }, - { - "id": -220 - }, - { - "id": -221 - }, - { - "id": 170 - }, - { - "id": -239 - }, - { - "id": 216 - }, - { - "id": 214 - }, - { - "id": -227 - }, - { - "id": 112 - }, - { - "id": 215 - }, - { - "id": -225 - }, - { - "id": -226 - }, - { - "id": -240 - }, - { - "id": -241 - }, - { - "id": -299 - }, - { - "id": -298 - }, - { - "id": -300 - }, - { - "id": -301 - }, - { - "id": -230 - }, - { - "id": -232 - }, - { - "id": -233 - }, - { - "id": -234 - }, - { - "id": -235 - }, - { - "id": -236 - }, - { - "id": -270 - }, - { - "id": -222 - }, - { - "id": 35 - }, - { - "id": 35, - "damage": 8 - }, - { - "id": 35, - "damage": 7 - }, - { - "id": 35, - "damage": 15 - }, - { - "id": 35, - "damage": 12 - }, - { - "id": 35, - "damage": 14 - }, - { - "id": 35, - "damage": 1 - }, - { - "id": 35, - "damage": 4 - }, - { - "id": 35, - "damage": 5 - }, - { - "id": 35, - "damage": 13 - }, - { - "id": 35, - "damage": 9 - }, - { - "id": 35, - "damage": 3 - }, - { - "id": 35, - "damage": 11 - }, - { - "id": 35, - "damage": 10 - }, - { - "id": 35, - "damage": 2 - }, - { - "id": 35, - "damage": 6 - }, - { - "id": 171 - }, - { - "id": 171, - "damage": 8 - }, - { - "id": 171, - "damage": 7 - }, - { - "id": 171, - "damage": 15 - }, - { - "id": 171, - "damage": 12 - }, - { - "id": 171, - "damage": 14 - }, - { - "id": 171, - "damage": 1 - }, - { - "id": 171, - "damage": 4 - }, - { - "id": 171, - "damage": 5 - }, - { - "id": 171, - "damage": 13 - }, - { - "id": 171, - "damage": 9 - }, - { - "id": 171, - "damage": 3 - }, - { - "id": 171, - "damage": 11 - }, - { - "id": 171, - "damage": 10 - }, - { - "id": 171, - "damage": 2 - }, - { - "id": 171, - "damage": 6 - }, - { - "id": 237 - }, - { - "id": 237, - "damage": 8 - }, - { - "id": 237, - "damage": 7 - }, - { - "id": 237, - "damage": 15 - }, - { - "id": 237, - "damage": 12 - }, - { - "id": 237, - "damage": 14 - }, - { - "id": 237, - "damage": 1 - }, - { - "id": 237, - "damage": 4 - }, - { - "id": 237, - "damage": 5 - }, - { - "id": 237, - "damage": 13 - }, - { - "id": 237, - "damage": 9 - }, - { - "id": 237, - "damage": 3 - }, - { - "id": 237, - "damage": 11 - }, - { - "id": 237, - "damage": 10 - }, - { - "id": 237, - "damage": 2 - }, - { - "id": 237, - "damage": 6 - }, - { - "id": 236 - }, - { - "id": 236, - "damage": 8 - }, - { - "id": 236, - "damage": 7 - }, - { - "id": 236, - "damage": 15 - }, - { - "id": 236, - "damage": 12 - }, - { - "id": 236, - "damage": 14 - }, - { - "id": 236, - "damage": 1 - }, - { - "id": 236, - "damage": 4 - }, - { - "id": 236, - "damage": 5 - }, - { - "id": 236, - "damage": 13 - }, - { - "id" : 236, - "damage" : 9 - }, - { - "id": 236, - "damage": 3 - }, - { - "id": 236, - "damage": 11 - }, - { - "id": 236, - "damage": 10 - }, - { - "id": 236, - "damage": 2 - }, - { - "id": 236, - "damage": 6 - }, - { - "id": 82 - }, - { - "id": 172 - }, - { - "id": 159 - }, - { - "id": 159, - "damage": 8 - }, - { - "id": 159, - "damage": 7 - }, - { - "id": 159, - "damage": 15 - }, - { - "id": 159, - "damage": 12 - }, - { - "id": 159, - "damage": 14 - }, - { - "id": 159, - "damage": 1 - }, - { - "id": 159, - "damage": 4 - }, - { - "id": 159, - "damage": 5 - }, - { - "id": 159, - "damage": 13 - }, - { - "id": 159, - "damage": 9 - }, - { - "id": 159, - "damage": 3 - }, - { - "id": 159, - "damage": 11 - }, - { - "id": 159, - "damage": 10 - }, - { - "id": 159, - "damage": 2 - }, - { - "id": 159, - "damage": 6 - }, - { - "id": 220 - }, - { - "id": 228 - }, - { - "id": 227 - }, - { - "id": 235 - }, - { - "id": 232 - }, - { - "id": 234 - }, - { - "id": 221 - }, - { - "id": 224 - }, - { - "id": 225 - }, - { - "id": 233 - }, - { - "id": 229 - }, - { - "id": 223 - }, - { - "id": 231 - }, - { - "id": 219 - }, - { - "id": 222 - }, - { - "id": 226 - }, - { - "id": 201 - }, - { - "id": 201, - "damage": 2 - }, - { - "id": 3 - }, - { - "id": 3, - "damage": 1 - }, - { - "id": 2 - }, - { - "id": 198 - }, - { - "id": 243 - }, - { - "id": 110 - }, - { - "id": 1 - }, - { - "id": 15 - }, - { - "id": 14 - }, - { - "id": 56 - }, - { - "id": 21 - }, - { - "id": 73 - }, - { - "id": 16 - }, - { - "id": 129 - }, - { - "id": 153 - }, - { - "id": -288 - }, - { - "id": -271 - }, - { - "id": 13 - }, - { - "id": 1, - "damage": 1 - }, - { - "id": 1, - "damage": 3 - }, - { - "id": 1, - "damage": 5 - }, - { - "id": -273 - }, - { - "id": 1, - "damage": 2 - }, - { - "id": 1, - "damage": 4 - }, - { - "id": 1, - "damage": 6 - }, - { - "id": -291 - }, - { - "id": 12 - }, - { - "id": 12, - "damage": 1 - }, - { - "id": 81 - }, - { - "id": 17 - }, - { - "id": -10 - }, - { - "id": 17, - "damage": 1 - }, - { - "id": -5 - }, - { - "id": 17, - "damage": 2 - }, - { - "id": -6 - }, - { - "id": 17, - "damage": 3 - }, - { - "id": -7 - }, - { - "id": 162 - }, - { - "id": -8 - }, - { - "id": 162, - "damage": 1 - }, - { - "id": -9 - }, - { - "id": -212 - }, - { - "id": -212, - "damage": 8 - }, - { - "id": -212, - "damage": 1 - }, - { - "id": -212, - "damage": 9 - }, - { - "id": -212, - "damage": 2 - }, - { - "id": -212, - "damage": 10 - }, - { - "id": -212, - "damage": 3 - }, - { - "id": -212, - "damage": 11 - }, - { - "id": -212, - "damage": 4 - }, - { - "id": -212, - "damage": 12 - }, - { - "id": -212, - "damage": 5 - }, - { - "id": -212, - "damage": 13 - }, - { - "id": 18 - }, - { - "id": 18, - "damage": 1 - }, - { - "id": 18, - "damage": 2 - }, - { - "id": 18, - "damage": 3 - }, - { - "id": 161 - }, - { - "id": 161, - "damage": 1 - }, - { - "id": 6 - }, - { - "id": 6, - "damage": 1 - }, - { - "id": 6, - "damage": 2 - }, - { - "id": 6, - "damage": 3 - }, - { - "id": 6, - "damage": 4 - }, - { - "id": 6, - "damage": 5 - }, - { - "id": -218 - }, - { - "id": 295 - }, - { - "id": 361 - }, - { - "id": 362 - }, - { - "id": 458 - }, - { - "id": 296 - }, - { - "id": 457 - }, - { - "id": 392 - }, - { - "id": 394 - }, - { - "id": 391 - }, - { - "id": 396 - }, - { - "id": 260 - }, - { - "id": 322 - }, - { - "id": 466 - }, - { - "id": 103 - }, - { - "id": 360 - }, - { - "id": 382 - }, - { - "id": 477 - }, - { - "id": 86 - }, - { - "id": -155 - }, - { - "id": 91 - }, - { - "id": 736 - }, - { - "id": 31, - "damage": 2 - }, - { - "id": 175, - "damage": 3 - }, - { - "id": 31, - "damage": 1 - }, - { - "id": 175, - "damage": 2 - }, - { - "id": 760 - }, - { - "id": -131, - "damage": 3 - }, - { - "id": -131, - "damage": 1 - }, - { - "id": -131, - "damage": 2 - }, - { - "id": -131 - }, - { - "id": -131, - "damage": 4 - }, - { - "id": -131, - "damage": 11 - }, - { - "id": -131, - "damage": 9 - }, - { - "id": -131, - "damage": 10 - }, - { - "id": -131, - "damage": 8 - }, - { - "id": -131, - "damage": 12 - }, - { - "id": -133, - "damage": 3 - }, - { - "id": -133, - "damage": 1 - }, - { - "id": -133, - "damage": 2 - }, - { - "id": -133 - }, - { - "id": -133, - "damage": 4 - }, - { - "id": -134, - "damage": 3 - }, - { - "id": -134, - "damage": 1 - }, - { - "id": -134, - "damage": 2 - }, - { - "id": -134 - }, - { - "id": -134, - "damage": 4 - }, - { - "id": 335 - }, - { - "id": -130 - }, - { - "id": -223 - }, - { - "id": -224 - }, - { - "id": 37 - }, - { - "id": 38 - }, - { - "id": 38, - "damage": 1 - }, - { - "id": 38, - "damage": 2 - }, - { - "id": 38, - "damage": 3 - }, - { - "id": 38, - "damage": 4 - }, - { - "id": 38, - "damage": 5 - }, - { - "id": 38, - "damage": 6 - }, - { - "id": 38, - "damage": 7 - }, - { - "id": 38, - "damage": 8 - }, - { - "id": 38, - "damage": 9 - }, - { - "id": 38, - "damage": 10 - }, - { - "id": 175 - }, - { - "id": 175, - "damage": 1 - }, - { - "id": 175, - "damage": 4 - }, - { - "id": 175, - "damage": 5 - }, - { - "id": -216 - }, - { - "id": 351, - "damage": 19 - }, - { - "id": 351, - "damage": 7 - }, - { - "id": 351, - "damage": 8 - }, - { - "id": 351, - "damage": 16 - }, - { - "id": 351, - "damage": 17 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 14 - }, - { - "id": 351, - "damage": 11 - }, - { - "id": 351, - "damage": 10 - }, - { - "id": 351, - "damage": 2 - }, - { - "id": 351, - "damage": 6 - }, - { - "id": 351, - "damage": 12 - }, - { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 5 - }, - { - "id": 351, - "damage": 13 - }, - { - "id": 351, - "damage": 9 - }, - { - "id": 351 - }, - { - "id": 351, - "damage": 3 - }, - { - "id": 351, - "damage": 4 - }, - { - "id": 351, - "damage": 15 - }, - { - "id": 106 - }, - { - "id": -231 - }, - { - "id": -287 - }, - { - "id": 111 - }, - { - "id": 32 - }, - { - "id": -163 - }, - { - "id": 80 - }, - { - "id": 79 - }, - { - "id": 174 - }, - { - "id": -11 - }, - { - "id": 78 - }, - { - "id": 365 - }, - { - "id": 319 - }, - { - "id": 363 - }, - { - "id": 423 - }, - { - "id": 411 - }, - { - "id": 349 - }, - { - "id": 460 - }, - { - "id": 461 - }, - { - "id": 462 - }, - { - "id": 39 - }, - { - "id": 40 - }, - { - "id": -228 - }, - { - "id": -229 - }, - { - "id": 99, - "damage": 14 - }, - { - "id": 100, - "damage": 14 - }, - { - "id": 99, - "damage": 15 - }, - { - "id": 99 - }, - { - "id": 344 - }, - { - "id": 338 - }, - { - "id": 353 - }, - { - "id": 367 - }, - { - "id": 352 - }, - { - "id": 30 - }, - { - "id": 375 - }, - { - "id": 52 - }, - { - "id": 97 - }, - { - "id": 97, - "damage": 1 - }, - { - "id": 97, - "damage": 2 - }, - { - "id": 97, - "damage": 3 - }, - { - "id": 97, - "damage": 4 - }, - { - "id": 97, - "damage": 5 - }, - { - "id": 122 - }, - { - "id": -159 - }, - { - "id": 383, - "damage": 10 - }, - { - "id": 383, - "damage": 122 - }, - { - "id": 383, - "damage": 11 - }, - { - "id": 383, - "damage": 12 - }, - { - "id": 383, - "damage": 13 - }, - { - "id": 383, - "damage": 14 - }, - { - "id": 383, - "damage": 28 - }, - { - "id": 383, - "damage": 22 - }, - { - "id": 383, - "damage": 75 - }, - { - "id": 383, - "damage": 16 - }, - { - "id": 383, - "damage": 19 - }, - { - "id": 383, - "damage": 30 - }, - { - "id": 383, - "damage": 18 - }, - { - "id": 383, - "damage": 29 - }, - { - "id": 383, - "damage": 23 - }, - { - "id": 383, - "damage": 24 - }, - { - "id": 383, - "damage": 25 - }, - { - "id": 383, - "damage": 26 - }, - { - "id": 383, - "damage": 27 - }, - { - "id": 383, - "damage": 111 - }, - { - "id": 383, - "damage": 112 - }, - { - "id": 383, - "damage": 108 - }, - { - "id": 383, - "damage": 109 - }, - { - "id": 383, - "damage": 31 - }, - { - "id": 383, - "damage": 74 - }, - { - "id": 383, - "damage": 113 - }, - { - "id": 383, - "damage": 121 - }, - { - "id": 383, - "damage": 33 - }, - { - "id": 383, - "damage": 38 - }, - { - "id": 383, - "damage": 39 - }, - { - "id": 383, - "damage": 34 - }, - { - "id": 383, - "damage": 48 - }, - { - "id": 383, - "damage": 46 - }, - { - "id": 383, - "damage": 37 - }, - { - "id": 383, - "damage": 35 - }, - { - "id": 383, - "damage": 32 - }, - { - "id": 383, - "damage": 36 - }, - { - "id": 383, - "damage": 47 - }, - { - "id": 383, - "damage": 110 - }, - { - "id": 383, - "damage": 17 - }, - { - "id": 383, - "damage": 40 - }, - { - "id": 383, - "damage": 45 - }, - { - "id": 383, - "damage": 49 - }, - { - "id": 383, - "damage": 50 - }, - { - "id": 383, - "damage": 55 - }, - { - "id": 383, - "damage": 42 - }, - { - "id": 383, - "damage": 125 - }, - { - "id": 383, - "damage": 124 - }, - { - "id": 383, - "damage": 123 - }, - { - "id": 383, - "damage": 126 - }, - { - "id": 383, - "damage": 127 - }, - { - "id": 383, - "damage": 41 - }, - { - "id": 383, - "damage": 43 - }, - { - "id": 383, - "damage": 54 - }, - { - "id": 383, - "damage": 57 - }, - { - "id": 383, - "damage": 104 - }, - { - "id": 383, - "damage": 105 - }, - { - "id": 383, - "damage": 115 - }, - { - "id": 383, - "damage": 118 - }, - { - "id": 383, - "damage": 116 - }, - { - "id": 383, - "damage": 58 - }, - { - "id": 383, - "damage": 114 - }, - { - "id": 383, - "damage": 59 - }, - { - "id": 49 - }, - { - "id": -289 - }, - { - "id": 7 - }, - { - "id": 88 - }, - { - "id": 87 - }, - { - "id": 213 - }, - { - "id": 372 - }, - { - "id": 121 - }, - { - "id": 200 - }, - { - "id": 240 - }, - { - "id": 432 - }, - { - "id": 433 - }, - { - "id": 19 - }, - { - "id": 19, - "damage": 1 - }, - { - "id": -132 - }, - { - "id": -132, - "damage": 1 - }, - { - "id": -132, - "damage": 2 - }, - { - "id": -132, - "damage": 3 - }, - { - "id": -132, - "damage": 4 - }, - { - "id": -132, - "damage": 8 - }, - { - "id": -132, - "damage": 9 - }, - { - "id": -132, - "damage": 10 - }, - { - "id": -132, - "damage": 11 - }, - { - "id": -132, - "damage": 12 - }, - { - "id": 298 - }, - { - "id": 302 - }, - { - "id": 306 - }, - { - "id": 314 - }, - { - "id": 310 - }, - { - "id": 748 - }, - { - "id": 299 - }, - { - "id": 303 - }, - { - "id": 307 - }, - { - "id": 315 - }, - { - "id": 311 - }, - { - "id": 749 - }, - { - "id": 300 - }, - { - "id": 304 - }, - { - "id": 308 - }, - { - "id": 316 - }, - { - "id": 312 - }, - { - "id": 750 - }, - { - "id": 301 - }, - { - "id": 305 - }, - { - "id": 309 - }, - { - "id": 317 - }, - { - "id": 313 - }, - { - "id": 751 - }, - { - "id": 268 - }, - { - "id": 272 - }, - { - "id": 267 - }, - { - "id": 283 - }, - { - "id": 276 - }, - { - "id": 743 - }, - { - "id": 271 - }, - { - "id": 275 - }, - { - "id": 258 - }, - { - "id": 286 - }, - { - "id": 279 - }, - { - "id": 746 - }, - { - "id": 270 - }, - { - "id": 274 - }, - { - "id": 257 - }, - { - "id": 285 - }, - { - "id": 278 - }, - { - "id": 745 - }, - { - "id": 269 - }, - { - "id": 273 - }, - { - "id": 256 - }, - { - "id": 284 - }, - { - "id": 277 - }, - { - "id": 744 - }, - { - "id": 290 - }, - { - "id": 291 - }, - { - "id": 292 - }, - { - "id": 294 - }, - { - "id": 293 - }, - { - "id": 747 - }, - { - "id": 261 - }, - { - "id": 471 - }, - { - "id": 262 - }, - { - "id": 262, - "damage": 6 - }, - { - "id": 262, - "damage": 7 - }, - { - "id": 262, - "damage": 8 - }, - { - "id": 262, - "damage": 9 - }, - { - "id": 262, - "damage": 10 - }, - { - "id": 262, - "damage": 11 - }, - { - "id": 262, - "damage": 12 - }, - { - "id": 262, - "damage": 13 - }, - { - "id": 262, - "damage": 14 - }, - { - "id": 262, - "damage": 15 - }, - { - "id": 262, - "damage": 16 - }, - { - "id": 262, - "damage": 17 - }, - { - "id": 262, - "damage": 18 - }, - { - "id": 262, - "damage": 19 - }, - { - "id": 262, - "damage": 20 - }, - { - "id": 262, - "damage": 21 - }, - { - "id": 262, - "damage": 22 - }, - { - "id": 262, - "damage": 23 - }, - { - "id": 262, - "damage": 24 - }, - { - "id": 262, - "damage": 25 - }, - { - "id": 262, - "damage": 26 - }, - { - "id": 262, - "damage": 27 - }, - { - "id": 262, - "damage": 28 - }, - { - "id": 262, - "damage": 29 - }, - { - "id": 262, - "damage": 30 - }, - { - "id": 262, - "damage": 31 - }, - { - "id": 262, - "damage": 32 - }, - { - "id": 262, - "damage": 33 - }, - { - "id": 262, - "damage": 34 - }, - { - "id": 262, - "damage": 35 - }, - { - "id": 262, - "damage": 36 - }, - { - "id": 262, - "damage": 37 - }, - { - "id": 262, - "damage": 38 - }, - { - "id": 262, - "damage": 39 - }, - { - "id": 262, - "damage": 40 - }, - { - "id": 262, - "damage": 41 - }, - { - "id": 262, - "damage": 42 - }, - { - "id": 262, - "damage": 43 - }, - { - "id": 513 - }, - { - "id": 366 - }, - { - "id": 320 - }, - { - "id": 364 - }, - { - "id": 424 - }, - { - "id": 412 - }, - { - "id": 350 - }, - { - "id": 463 - }, - { - "id": 297 - }, - { - "id": 282 - }, - { - "id": 459 - }, - { - "id": 413 - }, - { - "id": 393 - }, - { - "id": 357 - }, - { - "id": 400 - }, - { - "id": 354 - }, - { - "id": 464 - }, - { - "id": 346 - }, - { - "id": 398 - }, - { - "id": 757 - }, - { - "id": 332 - }, - { - "id": 359 - }, - { - "id": 259 - }, - { - "id": 420 - }, - { - "id": 347 - }, - { - "id": 345 - }, - { - "id": 395 - }, - { - "id": 395, - "damage": 2 - }, - { - "id": 329 - }, - { - "id": 416 - }, - { - "id": 417 - }, - { - "id": 418 - }, - { - "id": 419 - }, - { - "id": 455 - }, - { - "id": 469 - }, - { - "id": 444 - }, - { - "id": 450 - }, - { - "id": 374 - }, - { - "id": 384 - }, - { - "id": 373 - }, - { - "id": 373, - "damage": 1 - }, - { - "id": 373, - "damage": 2 - }, - { - "id": 373, - "damage": 3 - }, - { - "id": 373, - "damage": 4 - }, - { - "id": 373, - "damage": 5 - }, - { - "id": 373, - "damage": 6 - }, - { - "id": 373, - "damage": 7 - }, - { - "id": 373, - "damage": 8 - }, - { - "id": 373, - "damage": 9 - }, - { - "id": 373, - "damage": 10 - }, - { - "id": 373, - "damage": 11 - }, - { - "id": 373, - "damage": 12 - }, - { - "id": 373, - "damage": 13 - }, - { - "id": 373, - "damage": 14 - }, - { - "id": 373, - "damage": 15 - }, - { - "id": 373, - "damage": 16 - }, - { - "id": 373, - "damage": 17 - }, - { - "id": 373, - "damage": 18 - }, - { - "id": 373, - "damage": 19 - }, - { - "id": 373, - "damage": 20 - }, - { - "id": 373, - "damage": 21 - }, - { - "id": 373, - "damage": 22 - }, - { - "id": 373, - "damage": 23 - }, - { - "id": 373, - "damage": 24 - }, - { - "id": 373, - "damage": 25 - }, - { - "id": 373, - "damage": 26 - }, - { - "id": 373, - "damage": 27 - }, - { - "id": 373, - "damage": 28 - }, - { - "id": 373, - "damage": 29 - }, - { - "id": 373, - "damage": 30 - }, - { - "id": 373, - "damage": 31 - }, - { - "id": 373, - "damage": 32 - }, - { - "id": 373, - "damage": 33 - }, - { - "id": 373, - "damage": 34 - }, - { - "id": 373, - "damage": 35 - }, - { - "id": 373, - "damage": 36 - }, - { - "id": 373, - "damage": 37 - }, - { - "id": 373, - "damage": 38 - }, - { - "id": 373, - "damage": 39 - }, - { - "id": 373, - "damage": 40 - }, - { - "id": 373, - "damage": 41 - }, - { - "id": 373, - "damage": 42 - }, - { - "id": 438 - }, - { - "id": 438, - "damage": 1 - }, - { - "id": 438, - "damage": 2 - }, - { - "id": 438, - "damage": 3 - }, - { - "id": 438, - "damage": 4 - }, - { - "id": 438, - "damage": 5 - }, - { - "id": 438, - "damage": 6 - }, - { - "id": 438, - "damage": 7 - }, - { - "id": 438, - "damage": 8 - }, - { - "id": 438, - "damage": 9 - }, - { - "id": 438, - "damage": 10 - }, - { - "id": 438, - "damage": 11 - }, - { - "id": 438, - "damage": 12 - }, - { - "id": 438, - "damage": 13 - }, - { - "id": 438, - "damage": 14 - }, - { - "id": 438, - "damage": 15 - }, - { - "id": 438, - "damage": 16 - }, - { - "id": 438, - "damage": 17 - }, - { - "id": 438, - "damage": 18 - }, - { - "id": 438, - "damage": 19 - }, - { - "id": 438, - "damage": 20 - }, - { - "id": 438, - "damage": 21 - }, - { - "id": 438, - "damage": 22 - }, - { - "id": 438, - "damage": 23 - }, - { - "id": 438, - "damage": 24 - }, - { - "id": 438, - "damage": 25 - }, - { - "id": 438, - "damage": 26 - }, - { - "id": 438, - "damage": 27 - }, - { - "id": 438, - "damage": 28 - }, - { - "id": 438, - "damage": 29 - }, - { - "id": 438, - "damage": 30 - }, - { - "id": 438, - "damage": 31 - }, - { - "id": 438, - "damage": 32 - }, - { - "id": 438, - "damage": 33 - }, - { - "id": 438, - "damage": 34 - }, - { - "id": 438, - "damage": 35 - }, - { - "id": 438, - "damage": 36 - }, - { - "id": 438, - "damage": 37 - }, - { - "id": 438, - "damage": 38 - }, - { - "id": 438, - "damage": 39 - }, - { - "id": 438, - "damage": 40 - }, - { - "id": 438, - "damage": 41 - }, - { - "id": 438, - "damage": 42 - }, - { - "id": 441 - }, - { - "id": 441, - "damage": 1 - }, - { - "id": 441, - "damage": 2 - }, - { - "id": 441, - "damage": 3 - }, - { - "id": 441, - "damage": 4 - }, - { - "id": 441, - "damage": 5 - }, - { - "id": 441, - "damage": 6 - }, - { - "id": 441, - "damage": 7 - }, - { - "id": 441, - "damage": 8 - }, - { - "id": 441, - "damage": 9 - }, - { - "id": 441, - "damage": 10 - }, - { - "id": 441, - "damage": 11 - }, - { - "id": 441, - "damage": 12 - }, - { - "id": 441, - "damage": 13 - }, - { - "id": 441, - "damage": 14 - }, - { - "id": 441, - "damage": 15 - }, - { - "id": 441, - "damage": 16 - }, - { - "id": 441, - "damage": 17 - }, - { - "id": 441, - "damage": 18 - }, - { - "id": 441, - "damage": 19 - }, - { - "id": 441, - "damage": 20 - }, - { - "id": 441, - "damage": 21 - }, - { - "id": 441, - "damage": 22 - }, - { - "id": 441, - "damage": 23 - }, - { - "id": 441, - "damage": 24 - }, - { - "id": 441, - "damage": 25 - }, - { - "id": 441, - "damage": 26 - }, - { - "id": 441, - "damage": 27 - }, - { - "id": 441, - "damage": 28 - }, - { - "id": 441, - "damage": 29 - }, - { - "id": 441, - "damage": 30 - }, - { - "id": 441, - "damage": 31 - }, - { - "id": 441, - "damage": 32 - }, - { - "id": 441, - "damage": 33 - }, - { - "id": 441, - "damage": 34 - }, - { - "id": 441, - "damage": 35 - }, - { - "id": 441, - "damage": 36 - }, - { - "id": 441, - "damage": 37 - }, - { - "id": 441, - "damage": 38 - }, - { - "id": 441, - "damage": 39 - }, - { - "id": 441, - "damage": 40 - }, - { - "id": 441, - "damage": 41 - }, - { - "id": 441, - "damage": 42 - }, - { - "id": 280 - }, - { - "id": 355 - }, - { - "id": 355, - "damage": 8 - }, - { - "id": 355, - "damage": 7 - }, - { - "id": 355, - "damage": 15 - }, - { - "id": 355, - "damage": 12 - }, - { - "id": 355, - "damage": 14 - }, - { - "id": 355, - "damage": 1 - }, - { - "id": 355, - "damage": 4 - }, - { - "id": 355, - "damage": 5 - }, - { - "id": 355, - "damage": 13 - }, - { - "id": 355, - "damage": 9 - }, - { - "id": 355, - "damage": 3 - }, - { - "id": 355, - "damage": 11 - }, - { - "id": 355, - "damage": 10 - }, - { - "id": 355, - "damage": 2 - }, - { - "id": 355, - "damage": 6 - }, - { - "id": 50 - }, - { - "id": -268 - }, - { - "id": -156 - }, - { - "id": -208 - }, - { - "id": -269 - }, - { - "id": 58 - }, - { - "id": -200 - }, - { - "id": -201 - }, - { - "id": -202 - }, - { - "id": -219 - }, - { - "id": 720 - }, - { - "id": 801 - }, - { - "id": 61 - }, - { - "id": -196 - }, - { - "id": -198 - }, - { - "id": -272 - }, - { - "id": 379 - }, - { - "id": 145 - }, - { - "id": 145, - "damage": 4 - }, - { - "id": 145, - "damage": 8 - }, - { - "id": -195 - }, - { - "id": 116 - }, - { - "id": 47 - }, - { - "id": -194 - }, - { - "id": 380 - }, - { - "id": -213 - }, - { - "id": 54 - }, - { - "id": 146 - }, - { - "id": 130 - }, - { - "id": -203 - }, - { - "id": 205 - }, - { - "id": 218 - }, - { - "id": 218, - "damage": 8 - }, - { - "id": 218, - "damage": 7 - }, - { - "id": 218, - "damage": 15 - }, - { - "id": 218, - "damage": 12 - }, - { - "id": 218, - "damage": 14 - }, - { - "id": 218, - "damage": 1 - }, - { - "id": 218, - "damage": 4 - }, - { - "id": 218, - "damage": 5 - }, - { - "id": 218, - "damage": 13 - }, - { - "id": 218, - "damage": 9 - }, - { - "id": 218, - "damage": 3 - }, - { - "id": 218, - "damage": 11 - }, - { - "id": 218, - "damage": 10 - }, - { - "id": 218, - "damage": 2 - }, - { - "id": 218, - "damage": 6 - }, - { - "id": 425 - }, - { - "id": 25 - }, - { - "id": 84 - }, - { - "id": 500 - }, - { - "id": 501 - }, - { - "id": 502 - }, - { - "id": 503 - }, - { - "id": 504 - }, - { - "id": 505 - }, - { - "id": 506 - }, - { - "id": 507 - }, - { - "id": 508 - }, - { - "id": 509 - }, - { - "id": 510 - }, - { - "id": 511 - }, - { - "id": 759 - }, - { - "id": 348 - }, - { - "id": 89 - }, - { - "id": 123 - }, - { - "id": 169 - }, - { - "id": 323 - }, - { - "id": 472 - }, - { - "id": 473 - }, - { - "id": 474 - }, - { - "id": 475 - }, - { - "id": 476 - }, - { - "id": 753 - }, - { - "id": 754 - }, - { - "id": 321 - }, - { - "id": 389 - }, - { - "id": 737 - }, - { - "id": 390 - }, - { - "id": 281 - }, - { - "id": 325 - }, - { - "id": 325, - "damage": 1 - }, - { - "id": 325, - "damage": 8 - }, - { - "id": 325, - "damage": 10 - }, - { - "id": 325, - "damage": 2 - }, - { - "id": 325, - "damage": 3 - }, - { - "id": 325, - "damage": 4 - }, - { - "id": 325, - "damage": 5 - }, - { - "id": 397, - "damage": 3 - }, - { - "id": 397, - "damage": 2 - }, - { - "id": 397, - "damage": 4 - }, - { - "id": 397, - "damage": 5 - }, - { - "id": 397 - }, - { - "id": 397, - "damage": 1 - }, - { - "id": 138 - }, - { - "id": -206 - }, - { - "id": -157 - }, - { - "id": -197 - }, - { - "id": 120 - }, - { - "id": 263 - }, - { - "id": 263, - "damage": 1 - }, - { - "id": 264 - }, - { - "id": 452 - }, - { - "id": 265 - }, - { - "id": 752 - }, - { - "id": 742 - }, - { - "id": 371 - }, - { - "id": 266 - }, - { - "id": 388 - }, - { - "id": 406 - }, - { - "id": 337 - }, - { - "id": 336 - }, - { - "id": 405 - }, - { - "id": 409 - }, - { - "id": 422 - }, - { - "id": 465 - }, - { - "id": 467 - }, - { - "id": 468 - }, - { - "id": 470 - }, - { - "id": 287 - }, - { - "id": 288 - }, - { - "id": 318 - }, - { - "id": 289 - }, - { - "id": 334 - }, - { - "id": 415 - }, - { - "id": 414 - }, - { - "id": 385 - }, - { - "id": 369 - }, - { - "id": 377 - }, - { - "id": 378 - }, - { - "id": 376 - }, - { - "id": 437 - }, - { - "id": 445 - }, - { - "id": 370 - }, - { - "id": 341 - }, - { - "id": 368 - }, - { - "id": 381 - }, - { - "id": 399 - }, - { - "id": 208 - }, - { - "id": 426 - }, - { - "id": 339 - }, - { - "id": 340 - }, - { - "id": 386 - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAAAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZAAAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZAAAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBAACAgBpZAAAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAEAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZAEAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZAEAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBAACAgBpZAEAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAIAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZAIAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZAIAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBAACAgBpZAIAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAMAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZAMAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZAMAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBAACAgBpZAMAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAQAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZAQAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZAQAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBAACAgBpZAQAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAUAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZAUAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZAUAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAYAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZAYAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZAYAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAcAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZAcAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZAcAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAgAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAkAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZAkAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZAkAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBAACAgBpZAkAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBQACAgBpZAkAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAoAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZAoAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZAoAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBAACAgBpZAoAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBQACAgBpZAoAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAsAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZAsAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZAsAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBAACAgBpZAsAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBQACAgBpZAsAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZAwAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZAwAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZA0AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZA0AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZA4AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZA4AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZA4AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZA8AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZA8AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZA8AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBAACAgBpZA8AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBQACAgBpZA8AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBAAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBEAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZBEAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZBEAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBIAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZBIAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZBIAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBMAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZBMAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZBMAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBAACAgBpZBMAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBQACAgBpZBMAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBQAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZBQAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBUAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBYAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBcAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZBcAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZBcAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBgAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZBgAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZBgAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBkAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZBkAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBoAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBsAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZBwAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZB0AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZB0AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZB0AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBAACAgBpZB0AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBQACAgBpZB0AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZB4AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZB4AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZB4AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZB8AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZB8AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZB8AAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZCAAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZCEAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZCIAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZCIAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZCIAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsBAACAgBpZCIAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZCMAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZCMAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZCMAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAQACAgBpZCQAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAgACAgBpZCQAAAA=" - }, - { - "id": 403, - "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgMAbHZsAwACAgBpZCQAAAA=" - }, - { - "id": 333 - }, - { - "id": 333, - "damage": 1 - }, - { - "id": 333, - "damage": 2 - }, - { - "id": 333, - "damage": 3 - }, - { - "id": 333, - "damage": 4 - }, - { - "id": 333, - "damage": 5 - }, - { - "id": 66 - }, - { - "id": 27 - }, - { - "id": 28 - }, - { - "id": 126 - }, - { - "id": 328 - }, - { - "id": 342 - }, - { - "id": 408 - }, - { - "id": 407 - }, - { - "id": 331 - }, - { - "id": 152 - }, - { - "id": 76 - }, - { - "id": 69 - }, - { - "id": 143 - }, - { - "id": -144 - }, - { - "id": -141 - }, - { - "id": -143 - }, - { - "id": -140 - }, - { - "id": -142 - }, - { - "id": 77 - }, - { - "id": -260 - }, - { - "id": -261 - }, - { - "id": -296 - }, - { - "id": 131 - }, - { - "id": 72 - }, - { - "id": -154 - }, - { - "id": -151 - }, - { - "id": -153 - }, - { - "id": -150 - }, - { - "id": -152 - }, - { - "id": -262 - }, - { - "id": -263 - }, - { - "id": 70 - }, - { - "id": 147 - }, - { - "id": 148 - }, - { - "id": -295 - }, - { - "id": 251 - }, - { - "id": 151 - }, - { - "id": 356 - }, - { - "id": 404 - }, - { - "id": 410 - }, - { - "id": 125, - "damage": 3 - }, - { - "id": 23, - "damage": 3 - }, - { - "id": 33, - "damage": 1 - }, - { - "id": 29, - "damage": 1 - }, - { - "id": 46 - }, - { - "id": 421 - }, - { - "id": -204 - }, - { - "id": 446 - }, - { - "id": 446, - "damage": 8 - }, - { - "id": 446, - "damage": 7 - }, - { - "id": 446, - "damage": 15 - }, - { - "id": 446, - "damage": 12 - }, - { - "id": 446, - "damage": 14 - }, - { - "id": 446, - "damage": 1 - }, - { - "id": 446, - "damage": 4 - }, - { - "id": 446, - "damage": 5 - }, - { - "id": 446, - "damage": 13 - }, - { - "id": 446, - "damage": 9 - }, - { - "id": 446, - "damage": 3 - }, - { - "id": 446, - "damage": 11 - }, - { - "id": 446, - "damage": 10 - }, - { - "id": 446, - "damage": 2 - }, - { - "id": 446, - "damage": 6 - }, - { - "id": 446, - "damage": 15, - "nbt_b64": "CgAAAwQAVHlwZQEAAAAA" - }, - { - "id": 434 - }, - { - "id": 434, - "damage": 1 - }, - { - "id": 434, - "damage": 2 - }, - { - "id": 434, - "damage": 3 - }, - { - "id": 434, - "damage": 4 - }, - { - "id": 434, - "damage": 5 - }, - { - "id": 434, - "damage": 6 - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMAAAAAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAACAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAACQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAACwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAACgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 401, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - }, - { - "id": 402, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3IhHR3/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 8, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3JST0f/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 7, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3KXnZ3/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 15, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3Lw8PD/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 12, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3Laszr/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 14, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3IdgPn/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 1, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3ImLrD/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 4, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3KqRDz/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 5, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3K4Mon/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 13, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3K9Tsf/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 9, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3Kqi/P/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 3, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3IyVIP/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 11, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3I92P7/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 10, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3Ifx4D/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 2, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3IWfF7/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - }, - { - "id": 402, - "damage": 6, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3KcnBb/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ] -} \ No newline at end of file diff --git a/src/main/resources/entity_identifiers.dat b/src/main/resources/entity_identifiers.dat index 24e14e8ffcc7e4e709c250adaa5cf1aeb28ac8bb..b9da310f5006930506c26435b7f1bf8960006021 100644 GIT binary patch delta 128 zcmbPfam|vKi-D6ZGbJapxPCCyUzK(N0CA-%?EnA( delta 51 zcmV-30L=f^Ihi;O3IGWPX=H3^b94&c0h2)i7_lWy2cz%@5|i);3zPI4Gqdm+`2mwB J94wQP97MQ35#s;= diff --git a/src/main/resources/item_mappings.json b/src/main/resources/item_mappings.json new file mode 100644 index 00000000000..050bb0eaa5f --- /dev/null +++ b/src/main/resources/item_mappings.json @@ -0,0 +1,125 @@ +{ + "minecraft:banner_pattern": { + "0": "minecraft:creeper_banner_pattern", + "1": "minecraft:skull_banner_pattern", + "2": "minecraft:flower_banner_pattern", + "3": "minecraft:mojang_banner_pattern", + "4": "minecraft:field_masoned_banner_pattern", + "5": "minecraft:bordure_indented_banner_pattern", + "6": "minecraft:piglin_banner_pattern" + }, + "minecraft:boat": { + "0": "minecraft:oak_boat", + "1": "minecraft:spruce_boat", + "2": "minecraft:birch_boat", + "3": "minecraft:jungle_boat", + "4": "minecraft:acacia_boat", + "5": "minecraft:dark_oak_boat" + }, + "minecraft:bucket": { + "0": "minecraft:bucket", + "1": "minecraft:milk_bucket", + "2": "minecraft:cod_bucket", + "3": "minecraft:salmon_bucket", + "4": "minecraft:tropical_fish_bucket", + "5": "minecraft:pufferfish_bucket", + "8": "minecraft:water_bucket", + "10": "minecraft:lava_bucket" + }, + "minecraft:coal": { + "1": "minecraft:charcoal" + }, + "minecraft:dye": { + "0": "minecraft:ink_sac", + "1": "minecraft:red_dye", + "2": "minecraft:green_dye", + "3": "minecraft:cocoa_beans", + "4": "minecraft:lapis_lazuli", + "5": "minecraft:purple_dye", + "6": "minecraft:cyan_dye", + "7": "minecraft:light_gray_dye", + "8": "minecraft:gray_dye", + "9": "minecraft:pink_dye", + "10": "minecraft:lime_dye", + "11": "minecraft:yellow_dye", + "12": "minecraft:light_blue_dye", + "13": "minecraft:magenta_dye", + "14": "minecraft:orange_dye", + "15": "minecraft:bone_meal", + "16": "minecraft:black_dye", + "17": "minecraft:brown_dye", + "18": "minecraft:blue_dye", + "19": "minecraft:white_dye" + }, + "minecraft:spawn_egg": { + "0": "", + "10": "minecraft:chicken_spawn_egg", + "11": "minecraft:cow_spawn_egg", + "12": "minecraft:pig_spawn_egg", + "13": "minecraft:sheep_spawn_egg", + "14": "minecraft:wolf_spawn_egg", + "15": "minecraft:villager_spawn_egg", + "16": "minecraft:mooshroom_spawn_egg", + "17": "minecraft:squid_spawn_egg", + "18": "minecraft:rabbit_spawn_egg", + "19": "minecraft:bat_spawn_egg", + "22": "minecraft:ocelot_spawn_egg", + "23": "minecraft:horse_spawn_egg", + "24": "minecraft:donkey_spawn_egg", + "25": "minecraft:mule_spawn_egg", + "26": "minecraft:skeleton_horse_spawn_egg", + "27": "minecraft:zombie_horse_spawn_egg", + "28": "minecraft:polar_bear_spawn_egg", + "29": "minecraft:llama_spawn_egg", + "30": "minecraft:parrot_spawn_egg", + "31": "minecraft:dolphin_spawn_egg", + "32": "minecraft:zombie_spawn_egg", + "33": "minecraft:creeper_spawn_egg", + "34": "minecraft:skeleton_spawn_egg", + "35": "minecraft:spider_spawn_egg", + "36": "minecraft:zombie_pigman_spawn_egg", + "37": "minecraft:slime_spawn_egg", + "38": "minecraft:enderman_spawn_egg", + "39": "minecraft:silverfish_spawn_egg", + "40": "minecraft:cave_spider_spawn_egg", + "41": "minecraft:ghast_spawn_egg", + "42": "minecraft:magma_cube_spawn_egg", + "43": "minecraft:blaze_spawn_egg", + "44": "minecraft:zombie_villager_spawn_egg", + "45": "minecraft:witch_spawn_egg", + "46": "minecraft:stray_spawn_egg", + "47": "minecraft:husk_spawn_egg", + "48": "minecraft:wither_skeleton_spawn_egg", + "49": "minecraft:guardian_spawn_egg", + "50": "minecraft:elder_guardian_spawn_egg", + "51": "minecraft:npc_spawn_egg", + "54": "minecraft:shulker_spawn_egg", + "55": "minecraft:endermite_spawn_egg", + "56": "minecraft:agent_spawn_egg", + "57": "minecraft:vindicator_spawn_egg", + "58": "minecraft:phantom_spawn_egg", + "59": "minecraft:ravager_spawn_egg", + "74": "minecraft:turtle_spawn_egg", + "75": "minecraft:cat_spawn_egg", + "104": "minecraft:evoker_spawn_egg", + "105": "minecraft:vex_spawn_egg", + "108": "minecraft:pufferfish_spawn_egg", + "109": "minecraft:salmon_spawn_egg", + "110": "minecraft:drowned_spawn_egg", + "111": "minecraft:tropical_fish_spawn_egg", + "112": "minecraft:cod_spawn_egg", + "113": "minecraft:panda_spawn_egg", + "114": "minecraft:pillager_spawn_egg", + "115": "minecraft:villager_spawn_egg", + "116": "minecraft:zombie_villager_spawn_egg", + "118": "minecraft:wandering_trader_spawn_egg", + "121": "minecraft:fox_spawn_egg", + "122": "minecraft:bee_spawn_egg", + "123": "minecraft:piglin_spawn_egg", + "124": "minecraft:hoglin_spawn_egg", + "125": "minecraft:strider_spawn_egg", + "126": "minecraft:zoglin_spawn_egg", + "127": "minecraft:piglin_brute_spawn_egg", + "128": "minecraft:goat_spawn_egg" + } +} \ No newline at end of file diff --git a/src/main/resources/legacy_item_ids.json b/src/main/resources/legacy_item_ids.json new file mode 100644 index 00000000000..bd3a556c24d --- /dev/null +++ b/src/main/resources/legacy_item_ids.json @@ -0,0 +1,809 @@ +{ + "minecraft:quartz_bricks": -304, + "minecraft:cracked_nether_bricks": -303, + "minecraft:chiseled_nether_bricks": -302, + "minecraft:stripped_warped_hyphae": -301, + "minecraft:stripped_crimson_hyphae": -300, + "minecraft:crimson_hyphae": -299, + "minecraft:warped_hyphae": -298, + "minecraft:polished_blackstone_wall": -297, + "minecraft:polished_blackstone_button": -296, + "minecraft:polished_blackstone_pressure_plate": -295, + "minecraft:polished_blackstone_double_slab": -294, + "minecraft:polished_blackstone_slab": -293, + "minecraft:polished_blackstone_stairs": -292, + "minecraft:polished_blackstone": -291, + "minecraft:item.soul_campfire": -290, + "minecraft:crying_obsidian": -289, + "minecraft:nether_gold_ore": -288, + "minecraft:twisting_vines": -287, + "minecraft:item.chain": -286, + "minecraft:polished_blackstone_brick_double_slab": -285, + "minecraft:polished_blackstone_brick_slab": -284, + "minecraft:blackstone_double_slab": -283, + "minecraft:blackstone_slab": -282, + "minecraft:gilded_blackstone": -281, + "minecraft:cracked_polished_blackstone_bricks": -280, + "minecraft:chiseled_polished_blackstone": -279, + "minecraft:polished_blackstone_brick_wall": -278, + "minecraft:blackstone_wall": -277, + "minecraft:blackstone_stairs": -276, + "minecraft:polished_blackstone_brick_stairs": -275, + "minecraft:polished_blackstone_bricks": -274, + "minecraft:blackstone": -273, + "minecraft:respawn_anchor": -272, + "minecraft:ancient_debris": -271, + "minecraft:netherite_block": -270, + "minecraft:soul_lantern": -269, + "minecraft:soul_torch": -268, + "minecraft:warped_double_slab": -267, + "minecraft:crimson_double_slab": -266, + "minecraft:warped_slab": -265, + "minecraft:crimson_slab": -264, + "minecraft:warped_pressure_plate": -263, + "minecraft:crimson_pressure_plate": -262, + "minecraft:warped_button": -261, + "minecraft:crimson_button": -260, + "minecraft:warped_fence_gate": -259, + "minecraft:crimson_fence_gate": -258, + "minecraft:warped_fence": -257, + "minecraft:crimson_fence": -256, + "minecraft:warped_stairs": -255, + "minecraft:crimson_stairs": -254, + "minecraft:warped_wall_sign": -253, + "minecraft:crimson_wall_sign": -252, + "minecraft:warped_standing_sign": -251, + "minecraft:crimson_standing_sign": -250, + "minecraft:warped_trapdoor": -247, + "minecraft:crimson_trapdoor": -246, + "minecraft:item.warped_door": -245, + "minecraft:item.crimson_door": -244, + "minecraft:warped_planks": -243, + "minecraft:crimson_planks": -242, + "minecraft:stripped_warped_stem": -241, + "minecraft:stripped_crimson_stem": -240, + "minecraft:target": -239, + "minecraft:item.nether_sprouts": -238, + "minecraft:soul_fire": -237, + "minecraft:soul_soil": -236, + "minecraft:polished_basalt": -235, + "minecraft:basalt": -234, + "minecraft:warped_nylium": -233, + "minecraft:crimson_nylium": -232, + "minecraft:weeping_vines": -231, + "minecraft:shroomlight": -230, + "minecraft:warped_fungus": -229, + "minecraft:crimson_fungus": -228, + "minecraft:warped_wart_block": -227, + "minecraft:warped_stem": -226, + "minecraft:crimson_stem": -225, + "minecraft:warped_roots": -224, + "minecraft:crimson_roots": -223, + "minecraft:lodestone": -222, + "minecraft:honeycomb_block": -221, + "minecraft:honey_block": -220, + "minecraft:beehive": -219, + "minecraft:bee_nest": -218, + "minecraft:stickypistonarmcollision": -217, + "minecraft:wither_rose": -216, + "minecraft:light_block": -215, + "minecraft:lit_blast_furnace": -214, + "minecraft:composter": -213, + "minecraft:wood": -212, + "minecraft:jigsaw": -211, + "minecraft:lava_cauldron": -210, + "minecraft:item.campfire": -209, + "minecraft:lantern": -208, + "minecraft:sweet_berry_bush": -207, + "minecraft:bell": -206, + "minecraft:loom": -204, + "minecraft:barrel": -203, + "minecraft:smithing_table": -202, + "minecraft:fletching_table": -201, + "minecraft:cartography_table": -200, + "minecraft:lit_smoker": -199, + "minecraft:smoker": -198, + "minecraft:stonecutter_block": -197, + "minecraft:blast_furnace": -196, + "minecraft:grindstone": -195, + "minecraft:lectern": -194, + "minecraft:darkoak_wall_sign": -193, + "minecraft:darkoak_standing_sign": -192, + "minecraft:acacia_wall_sign": -191, + "minecraft:acacia_standing_sign": -190, + "minecraft:jungle_wall_sign": -189, + "minecraft:jungle_standing_sign": -188, + "minecraft:birch_wall_sign": -187, + "minecraft:birch_standing_sign": -186, + "minecraft:smooth_quartz_stairs": -185, + "minecraft:red_nether_brick_stairs": -184, + "minecraft:smooth_stone": -183, + "minecraft:spruce_wall_sign": -182, + "minecraft:spruce_standing_sign": -181, + "minecraft:normal_stone_stairs": -180, + "minecraft:mossy_cobblestone_stairs": -179, + "minecraft:end_brick_stairs": -178, + "minecraft:smooth_sandstone_stairs": -177, + "minecraft:smooth_red_sandstone_stairs": -176, + "minecraft:mossy_stone_brick_stairs": -175, + "minecraft:polished_andesite_stairs": -174, + "minecraft:polished_diorite_stairs": -173, + "minecraft:polished_granite_stairs": -172, + "minecraft:andesite_stairs": -171, + "minecraft:diorite_stairs": -170, + "minecraft:granite_stairs": -169, + "minecraft:real_double_stone_slab4": -168, + "minecraft:real_double_stone_slab3": -167, + "minecraft:double_stone_slab4": -166, + "minecraft:scaffolding": -165, + "minecraft:bamboo_sapling": -164, + "minecraft:bamboo": -163, + "minecraft:double_stone_slab3": -162, + "minecraft:barrier": -161, + "minecraft:bubble_column": -160, + "minecraft:turtle_egg": -159, + "minecraft:air": -158, + "minecraft:conduit": -157, + "minecraft:sea_pickle": -156, + "minecraft:carved_pumpkin": -155, + "minecraft:spruce_pressure_plate": -154, + "minecraft:jungle_pressure_plate": -153, + "minecraft:dark_oak_pressure_plate": -152, + "minecraft:birch_pressure_plate": -151, + "minecraft:acacia_pressure_plate": -150, + "minecraft:spruce_trapdoor": -149, + "minecraft:jungle_trapdoor": -148, + "minecraft:dark_oak_trapdoor": -147, + "minecraft:birch_trapdoor": -146, + "minecraft:acacia_trapdoor": -145, + "minecraft:spruce_button": -144, + "minecraft:jungle_button": -143, + "minecraft:dark_oak_button": -142, + "minecraft:birch_button": -141, + "minecraft:acacia_button": -140, + "minecraft:dried_kelp_block": -139, + "minecraft:item.kelp": -138, + "minecraft:coral_fan_hang3": -137, + "minecraft:coral_fan_hang2": -136, + "minecraft:coral_fan_hang": -135, + "minecraft:coral_fan_dead": -134, + "minecraft:coral_fan": -133, + "minecraft:coral_block": -132, + "minecraft:coral": -131, + "minecraft:seagrass": -130, + "minecraft:element_118": -129, + "minecraft:element_117": -128, + "minecraft:element_116": -127, + "minecraft:element_115": -126, + "minecraft:element_114": -125, + "minecraft:element_113": -124, + "minecraft:element_112": -123, + "minecraft:element_111": -122, + "minecraft:element_110": -121, + "minecraft:element_109": -120, + "minecraft:element_108": -119, + "minecraft:element_107": -118, + "minecraft:element_106": -117, + "minecraft:element_105": -116, + "minecraft:element_104": -115, + "minecraft:element_103": -114, + "minecraft:element_102": -113, + "minecraft:element_101": -112, + "minecraft:element_100": -111, + "minecraft:element_99": -110, + "minecraft:element_98": -109, + "minecraft:element_97": -108, + "minecraft:element_96": -107, + "minecraft:element_95": -106, + "minecraft:element_94": -105, + "minecraft:element_93": -104, + "minecraft:element_92": -103, + "minecraft:element_91": -102, + "minecraft:element_90": -101, + "minecraft:element_89": -100, + "minecraft:element_88": -99, + "minecraft:element_87": -98, + "minecraft:element_86": -97, + "minecraft:element_85": -96, + "minecraft:element_84": -95, + "minecraft:element_83": -94, + "minecraft:element_82": -93, + "minecraft:element_81": -92, + "minecraft:element_80": -91, + "minecraft:element_79": -90, + "minecraft:element_78": -89, + "minecraft:element_77": -88, + "minecraft:element_76": -87, + "minecraft:element_75": -86, + "minecraft:element_74": -85, + "minecraft:element_73": -84, + "minecraft:element_72": -83, + "minecraft:element_71": -82, + "minecraft:element_70": -81, + "minecraft:element_69": -80, + "minecraft:element_68": -79, + "minecraft:element_67": -78, + "minecraft:element_66": -77, + "minecraft:element_65": -76, + "minecraft:element_64": -75, + "minecraft:element_63": -74, + "minecraft:element_62": -73, + "minecraft:element_61": -72, + "minecraft:element_60": -71, + "minecraft:element_59": -70, + "minecraft:element_58": -69, + "minecraft:element_57": -68, + "minecraft:element_56": -67, + "minecraft:element_55": -66, + "minecraft:element_54": -65, + "minecraft:element_53": -64, + "minecraft:element_52": -63, + "minecraft:element_51": -62, + "minecraft:element_50": -61, + "minecraft:element_49": -60, + "minecraft:element_48": -59, + "minecraft:element_47": -58, + "minecraft:element_46": -57, + "minecraft:element_45": -56, + "minecraft:element_44": -55, + "minecraft:element_43": -54, + "minecraft:element_42": -53, + "minecraft:element_41": -52, + "minecraft:element_40": -51, + "minecraft:element_39": -50, + "minecraft:element_38": -49, + "minecraft:element_37": -48, + "minecraft:element_36": -47, + "minecraft:element_35": -46, + "minecraft:element_34": -45, + "minecraft:element_33": -44, + "minecraft:element_32": -43, + "minecraft:element_31": -42, + "minecraft:element_30": -41, + "minecraft:element_29": -40, + "minecraft:element_28": -39, + "minecraft:element_27": -38, + "minecraft:element_26": -37, + "minecraft:element_25": -36, + "minecraft:element_24": -35, + "minecraft:element_23": -34, + "minecraft:element_22": -33, + "minecraft:element_21": -32, + "minecraft:element_20": -31, + "minecraft:element_19": -30, + "minecraft:element_18": -29, + "minecraft:element_17": -28, + "minecraft:element_16": -27, + "minecraft:element_15": -26, + "minecraft:element_14": -25, + "minecraft:element_13": -24, + "minecraft:element_12": -23, + "minecraft:element_11": -22, + "minecraft:element_10": -21, + "minecraft:element_9": -20, + "minecraft:element_8": -19, + "minecraft:element_7": -18, + "minecraft:element_6": -17, + "minecraft:element_5": -16, + "minecraft:element_4": -15, + "minecraft:element_3": -14, + "minecraft:element_2": -13, + "minecraft:element_1": -12, + "minecraft:blue_ice": -11, + "minecraft:stripped_oak_log": -10, + "minecraft:stripped_dark_oak_log": -9, + "minecraft:stripped_acacia_log": -8, + "minecraft:stripped_jungle_log": -7, + "minecraft:stripped_birch_log": -6, + "minecraft:stripped_spruce_log": -5, + "minecraft:prismarine_bricks_stairs": -4, + "minecraft:dark_prismarine_stairs": -3, + "minecraft:prismarine_stairs": -2, + "minecraft:stone": 1, + "minecraft:grass": 2, + "minecraft:dirt": 3, + "minecraft:cobblestone": 4, + "minecraft:planks": 5, + "minecraft:sapling": 6, + "minecraft:bedrock": 7, + "minecraft:flowing_water": 8, + "minecraft:water": 9, + "minecraft:flowing_lava": 10, + "minecraft:lava": 11, + "minecraft:sand": 12, + "minecraft:gravel": 13, + "minecraft:gold_ore": 14, + "minecraft:iron_ore": 15, + "minecraft:coal_ore": 16, + "minecraft:log": 17, + "minecraft:leaves": 18, + "minecraft:sponge": 19, + "minecraft:glass": 20, + "minecraft:lapis_ore": 21, + "minecraft:lapis_block": 22, + "minecraft:dispenser": 23, + "minecraft:sandstone": 24, + "minecraft:noteblock": 25, + "minecraft:item.bed": 26, + "minecraft:golden_rail": 27, + "minecraft:detector_rail": 28, + "minecraft:sticky_piston": 29, + "minecraft:web": 30, + "minecraft:tallgrass": 31, + "minecraft:deadbush": 32, + "minecraft:piston": 33, + "minecraft:pistonarmcollision": 34, + "minecraft:wool": 35, + "minecraft:element_0": 36, + "minecraft:yellow_flower": 37, + "minecraft:red_flower": 38, + "minecraft:brown_mushroom": 39, + "minecraft:red_mushroom": 40, + "minecraft:gold_block": 41, + "minecraft:iron_block": 42, + "minecraft:real_double_stone_slab": 43, + "minecraft:double_stone_slab": 44, + "minecraft:brick_block": 45, + "minecraft:tnt": 46, + "minecraft:bookshelf": 47, + "minecraft:mossy_cobblestone": 48, + "minecraft:obsidian": 49, + "minecraft:torch": 50, + "minecraft:fire": 51, + "minecraft:mob_spawner": 52, + "minecraft:oak_stairs": 53, + "minecraft:chest": 54, + "minecraft:redstone_wire": 55, + "minecraft:diamond_ore": 56, + "minecraft:diamond_block": 57, + "minecraft:crafting_table": 58, + "minecraft:item.wheat": 59, + "minecraft:farmland": 60, + "minecraft:furnace": 61, + "minecraft:lit_furnace": 62, + "minecraft:standing_sign": 63, + "minecraft:item.wooden_door": 64, + "minecraft:ladder": 65, + "minecraft:rail": 66, + "minecraft:stone_stairs": 67, + "minecraft:wall_sign": 68, + "minecraft:lever": 69, + "minecraft:stone_pressure_plate": 70, + "minecraft:item.iron_door": 71, + "minecraft:wooden_pressure_plate": 72, + "minecraft:redstone_ore": 73, + "minecraft:lit_redstone_ore": 74, + "minecraft:unlit_redstone_torch": 75, + "minecraft:redstone_torch": 76, + "minecraft:stone_button": 77, + "minecraft:snow_layer": 78, + "minecraft:ice": 79, + "minecraft:snow": 80, + "minecraft:cactus": 81, + "minecraft:clay": 82, + "minecraft:item.reeds": 83, + "minecraft:jukebox": 84, + "minecraft:fence": 85, + "minecraft:pumpkin": 86, + "minecraft:netherrack": 87, + "minecraft:soul_sand": 88, + "minecraft:glowstone": 89, + "minecraft:portal": 90, + "minecraft:lit_pumpkin": 91, + "minecraft:item.cake": 92, + "minecraft:unpowered_repeater": 93, + "minecraft:powered_repeater": 94, + "minecraft:invisiblebedrock": 95, + "minecraft:trapdoor": 96, + "minecraft:monster_egg": 97, + "minecraft:stonebrick": 98, + "minecraft:brown_mushroom_block": 99, + "minecraft:red_mushroom_block": 100, + "minecraft:iron_bars": 101, + "minecraft:glass_pane": 102, + "minecraft:melon_block": 103, + "minecraft:pumpkin_stem": 104, + "minecraft:melon_stem": 105, + "minecraft:vine": 106, + "minecraft:fence_gate": 107, + "minecraft:brick_stairs": 108, + "minecraft:stone_brick_stairs": 109, + "minecraft:mycelium": 110, + "minecraft:waterlily": 111, + "minecraft:nether_brick": 112, + "minecraft:nether_brick_fence": 113, + "minecraft:nether_brick_stairs": 114, + "minecraft:item.nether_wart": 115, + "minecraft:enchanting_table": 116, + "minecraft:brewingstandblock": 117, + "minecraft:item.cauldron": 118, + "minecraft:end_portal": 119, + "minecraft:end_portal_frame": 120, + "minecraft:end_stone": 121, + "minecraft:dragon_egg": 122, + "minecraft:redstone_lamp": 123, + "minecraft:lit_redstone_lamp": 124, + "minecraft:dropper": 125, + "minecraft:activator_rail": 126, + "minecraft:cocoa": 127, + "minecraft:sandstone_stairs": 128, + "minecraft:emerald_ore": 129, + "minecraft:ender_chest": 130, + "minecraft:tripwire_hook": 131, + "minecraft:tripwire": 132, + "minecraft:emerald_block": 133, + "minecraft:spruce_stairs": 134, + "minecraft:birch_stairs": 135, + "minecraft:jungle_stairs": 136, + "minecraft:command_block": 137, + "minecraft:beacon": 138, + "minecraft:cobblestone_wall": 139, + "minecraft:item.flower_pot": 140, + "minecraft:carrots": 141, + "minecraft:potatoes": 142, + "minecraft:wooden_button": 143, + "minecraft:item.skull": 144, + "minecraft:anvil": 145, + "minecraft:trapped_chest": 146, + "minecraft:light_weighted_pressure_plate": 147, + "minecraft:heavy_weighted_pressure_plate": 148, + "minecraft:unpowered_comparator": 149, + "minecraft:powered_comparator": 150, + "minecraft:daylight_detector": 151, + "minecraft:redstone_block": 152, + "minecraft:quartz_ore": 153, + "minecraft:item.hopper": 154, + "minecraft:quartz_block": 155, + "minecraft:quartz_stairs": 156, + "minecraft:double_wooden_slab": 157, + "minecraft:wooden_slab": 158, + "minecraft:stained_hardened_clay": 159, + "minecraft:stained_glass_pane": 160, + "minecraft:leaves2": 161, + "minecraft:log2": 162, + "minecraft:acacia_stairs": 163, + "minecraft:dark_oak_stairs": 164, + "minecraft:slime": 165, + "minecraft:glow_stick": 166, + "minecraft:iron_trapdoor": 167, + "minecraft:prismarine": 168, + "minecraft:sealantern": 169, + "minecraft:hay_block": 170, + "minecraft:carpet": 171, + "minecraft:hardened_clay": 172, + "minecraft:coal_block": 173, + "minecraft:packed_ice": 174, + "minecraft:double_plant": 175, + "minecraft:standing_banner": 176, + "minecraft:wall_banner": 177, + "minecraft:daylight_detector_inverted": 178, + "minecraft:red_sandstone": 179, + "minecraft:red_sandstone_stairs": 180, + "minecraft:real_double_stone_slab2": 181, + "minecraft:double_stone_slab2": 182, + "minecraft:spruce_fence_gate": 183, + "minecraft:birch_fence_gate": 184, + "minecraft:jungle_fence_gate": 185, + "minecraft:dark_oak_fence_gate": 186, + "minecraft:acacia_fence_gate": 187, + "minecraft:repeating_command_block": 188, + "minecraft:chain_command_block": 189, + "minecraft:hard_glass_pane": 190, + "minecraft:hard_stained_glass_pane": 191, + "minecraft:chemical_heat": 192, + "minecraft:item.spruce_door": 193, + "minecraft:item.birch_door": 194, + "minecraft:item.jungle_door": 195, + "minecraft:item.acacia_door": 196, + "minecraft:item.dark_oak_door": 197, + "minecraft:grass_path": 198, + "minecraft:item.frame": 199, + "minecraft:chorus_flower": 200, + "minecraft:purpur_block": 201, + "minecraft:colored_torch_rg": 202, + "minecraft:purpur_stairs": 203, + "minecraft:colored_torch_bp": 204, + "minecraft:undyed_shulker_box": 205, + "minecraft:end_bricks": 206, + "minecraft:frosted_ice": 207, + "minecraft:end_rod": 208, + "minecraft:end_gateway": 209, + "minecraft:allow": 210, + "minecraft:deny": 211, + "minecraft:border_block": 212, + "minecraft:magma": 213, + "minecraft:nether_wart_block": 214, + "minecraft:red_nether_brick": 215, + "minecraft:bone_block": 216, + "minecraft:structure_void": 217, + "minecraft:shulker_box": 218, + "minecraft:purple_glazed_terracotta": 219, + "minecraft:white_glazed_terracotta": 220, + "minecraft:orange_glazed_terracotta": 221, + "minecraft:magenta_glazed_terracotta": 222, + "minecraft:light_blue_glazed_terracotta": 223, + "minecraft:yellow_glazed_terracotta": 224, + "minecraft:lime_glazed_terracotta": 225, + "minecraft:pink_glazed_terracotta": 226, + "minecraft:gray_glazed_terracotta": 227, + "minecraft:silver_glazed_terracotta": 228, + "minecraft:cyan_glazed_terracotta": 229, + "minecraft:blue_glazed_terracotta": 231, + "minecraft:brown_glazed_terracotta": 232, + "minecraft:green_glazed_terracotta": 233, + "minecraft:red_glazed_terracotta": 234, + "minecraft:black_glazed_terracotta": 235, + "minecraft:concrete": 236, + "minecraft:concrete_powder": 237, + "minecraft:chemistry_table": 238, + "minecraft:underwater_torch": 239, + "minecraft:chorus_plant": 240, + "minecraft:stained_glass": 241, + "minecraft:item.camera": 242, + "minecraft:podzol": 243, + "minecraft:item.beetroot": 244, + "minecraft:stonecutter": 245, + "minecraft:glowingobsidian": 246, + "minecraft:netherreactor": 247, + "minecraft:info_update": 248, + "minecraft:info_update2": 249, + "minecraft:movingblock": 250, + "minecraft:observer": 251, + "minecraft:structure_block": 252, + "minecraft:hard_glass": 253, + "minecraft:hard_stained_glass": 254, + "minecraft:reserved6": 255, + "minecraft:iron_shovel": 256, + "minecraft:iron_pickaxe": 257, + "minecraft:iron_axe": 258, + "minecraft:flint_and_steel": 259, + "minecraft:apple": 260, + "minecraft:bow": 261, + "minecraft:arrow": 262, + "minecraft:coal": 263, + "minecraft:diamond": 264, + "minecraft:iron_ingot": 265, + "minecraft:gold_ingot": 266, + "minecraft:iron_sword": 267, + "minecraft:wooden_sword": 268, + "minecraft:wooden_shovel": 269, + "minecraft:wooden_pickaxe": 270, + "minecraft:wooden_axe": 271, + "minecraft:stone_sword": 272, + "minecraft:stone_shovel": 273, + "minecraft:stone_pickaxe": 274, + "minecraft:stone_axe": 275, + "minecraft:diamond_sword": 276, + "minecraft:diamond_shovel": 277, + "minecraft:diamond_pickaxe": 278, + "minecraft:diamond_axe": 279, + "minecraft:stick": 280, + "minecraft:bowl": 281, + "minecraft:mushroom_stew": 282, + "minecraft:golden_sword": 283, + "minecraft:golden_shovel": 284, + "minecraft:golden_pickaxe": 285, + "minecraft:golden_axe": 286, + "minecraft:string": 287, + "minecraft:feather": 288, + "minecraft:gunpowder": 289, + "minecraft:wooden_hoe": 290, + "minecraft:stone_hoe": 291, + "minecraft:iron_hoe": 292, + "minecraft:diamond_hoe": 293, + "minecraft:golden_hoe": 294, + "minecraft:wheat_seeds": 295, + "minecraft:wheat": 296, + "minecraft:bread": 297, + "minecraft:leather_helmet": 298, + "minecraft:leather_chestplate": 299, + "minecraft:leather_leggings": 300, + "minecraft:leather_boots": 301, + "minecraft:chainmail_helmet": 302, + "minecraft:chainmail_chestplate": 303, + "minecraft:chainmail_leggings": 304, + "minecraft:chainmail_boots": 305, + "minecraft:iron_helmet": 306, + "minecraft:iron_chestplate": 307, + "minecraft:iron_leggings": 308, + "minecraft:iron_boots": 309, + "minecraft:diamond_helmet": 310, + "minecraft:diamond_chestplate": 311, + "minecraft:diamond_leggings": 312, + "minecraft:diamond_boots": 313, + "minecraft:golden_helmet": 314, + "minecraft:golden_chestplate": 315, + "minecraft:golden_leggings": 316, + "minecraft:golden_boots": 317, + "minecraft:flint": 318, + "minecraft:porkchop": 319, + "minecraft:cooked_porkchop": 320, + "minecraft:painting": 321, + "minecraft:golden_apple": 322, + "minecraft:wooden_door": 324, + "minecraft:bucket": 325, + "minecraft:minecart": 328, + "minecraft:saddle": 329, + "minecraft:iron_door": 330, + "minecraft:redstone": 331, + "minecraft:snowball": 332, + "minecraft:boat": 333, + "minecraft:leather": 334, + "minecraft:kelp": 335, + "minecraft:brick": 336, + "minecraft:clay_ball": 337, + "minecraft:paper": 339, + "minecraft:book": 340, + "minecraft:slime_ball": 341, + "minecraft:chest_minecart": 342, + "minecraft:egg": 344, + "minecraft:compass": 345, + "minecraft:fishing_rod": 346, + "minecraft:clock": 347, + "minecraft:glowstone_dust": 348, + "minecraft:dye": 351, + "minecraft:bone": 352, + "minecraft:sugar": 353, + "minecraft:cake": 354, + "minecraft:bed": 355, + "minecraft:repeater": 356, + "minecraft:cookie": 357, + "minecraft:shears": 359, + "minecraft:pumpkin_seeds": 361, + "minecraft:melon_seeds": 362, + "minecraft:beef": 363, + "minecraft:cooked_beef": 364, + "minecraft:chicken": 365, + "minecraft:cooked_chicken": 366, + "minecraft:rotten_flesh": 367, + "minecraft:ender_pearl": 368, + "minecraft:blaze_rod": 369, + "minecraft:ghast_tear": 370, + "minecraft:gold_nugget": 371, + "minecraft:nether_wart": 372, + "minecraft:potion": 373, + "minecraft:glass_bottle": 374, + "minecraft:spider_eye": 375, + "minecraft:fermented_spider_eye": 376, + "minecraft:blaze_powder": 377, + "minecraft:magma_cream": 378, + "minecraft:brewing_stand": 379, + "minecraft:cauldron": 380, + "minecraft:ender_eye": 381, + "minecraft:spawn_egg": 383, + "minecraft:experience_bottle": 384, + "minecraft:writable_book": 386, + "minecraft:written_book": 387, + "minecraft:emerald": 388, + "minecraft:frame": 389, + "minecraft:flower_pot": 390, + "minecraft:carrot": 391, + "minecraft:potato": 392, + "minecraft:baked_potato": 393, + "minecraft:poisonous_potato": 394, + "minecraft:golden_carrot": 396, + "minecraft:skull": 397, + "minecraft:pumpkin_pie": 400, + "minecraft:enchanted_book": 403, + "minecraft:comparator": 404, + "minecraft:netherbrick": 405, + "minecraft:quartz": 406, + "minecraft:tnt_minecart": 407, + "minecraft:hopper_minecart": 408, + "minecraft:prismarine_shard": 409, + "minecraft:hopper": 410, + "minecraft:rabbit": 411, + "minecraft:cooked_rabbit": 412, + "minecraft:rabbit_stew": 413, + "minecraft:rabbit_foot": 414, + "minecraft:rabbit_hide": 415, + "minecraft:lead": 420, + "minecraft:name_tag": 421, + "minecraft:prismarine_crystals": 422, + "minecraft:armor_stand": 425, + "minecraft:end_crystal": 426, + "minecraft:spruce_door": 427, + "minecraft:birch_door": 428, + "minecraft:jungle_door": 429, + "minecraft:acacia_door": 430, + "minecraft:dark_oak_door": 431, + "minecraft:chorus_fruit": 432, + "minecraft:banner_pattern": 434, + "minecraft:dragon_breath": 437, + "minecraft:splash_potion": 438, + "minecraft:lingering_potion": 441, + "minecraft:sparkler": 442, + "minecraft:command_block_minecart": 443, + "minecraft:elytra": 444, + "minecraft:shulker_shell": 445, + "minecraft:banner": 446, + "minecraft:medicine": 447, + "minecraft:balloon": 448, + "minecraft:rapid_fertilizer": 449, + "minecraft:bleach": 451, + "minecraft:iron_nugget": 452, + "minecraft:ice_bomb": 453, + "minecraft:trident": 455, + "minecraft:beetroot": 457, + "minecraft:beetroot_seeds": 458, + "minecraft:beetroot_soup": 459, + "minecraft:salmon": 460, + "minecraft:pufferfish": 462, + "minecraft:cooked_salmon": 463, + "minecraft:dried_kelp": 464, + "minecraft:nautilus_shell": 465, + "minecraft:heart_of_the_sea": 467, + "minecraft:turtle_helmet": 469, + "minecraft:phantom_membrane": 470, + "minecraft:crossbow": 471, + "minecraft:spruce_sign": 472, + "minecraft:birch_sign": 473, + "minecraft:jungle_sign": 474, + "minecraft:acacia_sign": 475, + "minecraft:sweet_berries": 477, + "minecraft:camera": 498, + "minecraft:compound": 499, + "minecraft:shield": 513, + "minecraft:campfire": 720, + "minecraft:suspicious_stew": 734, + "minecraft:honeycomb": 736, + "minecraft:honey_bottle": 737, + "minecraft:netherite_ingot": 742, + "minecraft:netherite_sword": 743, + "minecraft:netherite_shovel": 744, + "minecraft:netherite_pickaxe": 745, + "minecraft:netherite_axe": 746, + "minecraft:netherite_hoe": 747, + "minecraft:netherite_helmet": 748, + "minecraft:netherite_chestplate": 749, + "minecraft:netherite_leggings": 750, + "minecraft:netherite_boots": 751, + "minecraft:netherite_scrap": 752, + "minecraft:crimson_sign": 753, + "minecraft:warped_sign": 754, + "minecraft:crimson_door": 755, + "minecraft:warped_door": 756, + "minecraft:warped_fungus_on_a_stick": 757, + "minecraft:chain": 758, + "minecraft:nether_sprouts": 760, + "minecraft:soul_campfire": 801, + "minecraft:enchanted_golden_apple": 466, + "minecraft:carrot_on_a_stick": 398, + "minecraft:popped_chorus_fruit": 433, + "minecraft:tropical_fish": 461, + "minecraft:cooked_cod": 350, + "minecraft:dark_oak_sign": 476, + "minecraft:empty_map": 395, + "minecraft:fire_charge": 385, + "minecraft:firework_rocket": 401, + "minecraft:firework_star": 402, + "minecraft:cod": 349, + "minecraft:diamond_horse_armor": 419, + "minecraft:golden_horse_armor": 418, + "minecraft:iron_horse_armor": 417, + "minecraft:leather_horse_armor": 416, + "minecraft:lodestone_compass": 741, + "minecraft:filled_map": 358, + "minecraft:melon_slice": 360, + "minecraft:cooked_mutton": 424, + "minecraft:mutton": 423, + "minecraft:nether_star": 399, + "minecraft:music_disc_11": 510, + "minecraft:music_disc_13": 500, + "minecraft:music_disc_blocks": 502, + "minecraft:music_disc_cat": 501, + "minecraft:music_disc_chirp": 503, + "minecraft:music_disc_far": 504, + "minecraft:music_disc_mall": 505, + "minecraft:music_disc_mellohi": 506, + "minecraft:music_disc_pigstep": 759, + "minecraft:music_disc_stal": 507, + "minecraft:music_disc_strad": 508, + "minecraft:music_disc_wait": 511, + "minecraft:music_disc_ward": 509, + "minecraft:sugar_cane": 338, + "minecraft:oak_sign": 323, + "minecraft:glistering_melon_slice": 382, + "minecraft:totem_of_undying": 450, + "minecraft:scute": 468 +} \ No newline at end of file diff --git a/src/main/resources/runtime_block_states.dat b/src/main/resources/runtime_block_states.dat index 5d14c13ad533215d6b37cf64cd41008661d1ede9..f7f56415e6dc7978bc32311506a37def2389621a 100644 GIT binary patch literal 430019 zcmdqKcYtGiSvP*pWM+4^OtNXqWHLiXKvD1BegUPaG%40sMGTotb|!Z-Np8x{-D?9u zdat5LM^x;nh>8_au_1Q!wZ8WHzK9Bl{Jtld^E}^t@_dt%bDp#J-XH$}yV>vad3yPl zbIS8hd)~&=*S*zF{jllf4qKgOqhG%`eCW|Zvp&ptCoebqgI2fWpZjp;w0B}KtPh)m zjCW$c-#r>0c%FCC%XllTJ@daFw&Jbs)rWQOWX3zyA9aSU!{+17U+f%t3D!R`yZ#AS z|8kP`*JjsWgY`#A)?b}ne-+jrCRsl-yM6}NA0%0SWp@1)SihfSeSda+AJ)H()~~XC z9(D(VE44;cb%-q~TdXMWKg)^=M%f8ERRzo`wc^qSu4QMbEC^dA!PcY2z?>J!tVf5wvjEQ~V% zn>MSsXdQ@zk_%tT_Oj1prS<3&5F)zdB%S0E{PVz%Xk>jS>*VtB*;G z{`@EbxvKgFX~9?!C5)lkNum0vv~bLe5|H?+k4_7OGfF^dRefw)2o^*MC?TtlOACi9 zNX{|{QX%r#25?u83CE?W4T z!r}w`DE|kvaGn?LjShR4S{=ut#uN8i{bplm+78oJaE0}i4kDXe!Nn!QRVWbwXWabG z#GG&`O++9HZ@w`x5$*?w2*lXUHxZE{>m*e6^$x9&4P_l#$p05DYt^|I+ub8m4D`CL zUefnYk9wwUY>unkkc#)>kP4`w@EysiutgCSFx$en6O{^!=+;qZzul}2`}N*lx7&9J z%J(AsO(_PR%tpM)IyuL?Pa%Aj;96)avPEKn?!ZcPPCCK48? z97~6(U|ETT1*+*%o3L26AG*|y3w`Pdq3+QRi?nVMI}BE}LuxcTgxphVq=F@y9YQ)T z?WTeynjJ!IQfd+wD|e1-|Hf!IY`Wq^==k2p9LldgpBC0sel!DzLa?-_f+Yy%3k;Eh zGY3Ryo=f|wU=a*azyi~R(#2G;2!<$NfeA~gl?oQYUIZ*KbSfPX79k+sa*ZQ*hCbo% zIeemU4Xvx`6GA`~c!W}lWWdXz$Hv_v-yiwO+q9IIQ>0_KcZx z)?0nE2jke9Id{}-_4m591#y--9)Bf70|`I(x|Gle7A~NHl%IQTN@xTd7tlb`&%Hh+ zG=h~2XdpZ1zAYs*bK@e}4aCLVt5QNE*bPT%LIaU8_sW#e2zDc&f!LUPO-g74yAjYp zbj-b)&}?$NY4lr%gKnqRYu7uMTycgn_5Tf{2gp6klb>_e+V#e8SyE;^unPiI z=f+=sV|H~Ib!46wfA#F_>d>TTxSv|uW^%Ku!#E=I0>Uo%QjDBEH`;wF^b3Q_-nYp9 zBcZVB<6gJj8XPqDYP6+=txr0r=FSt#eq~JZ#w|wAC@Wr%J&`tfDD^|c&Y$+PE7zHapXTQRRClIECHy$^i*I( z8_5PB0p)pvFrg8O00bL=9F^zI!88B}HUMcX&pXBm0f=tM`xs<|P)p@MKUE{-gIfdu zT9W)DQU$;#(+B``X!%E`3P5l}XgsdI8$#B#-0&fs3(N_|#wC;PIPbO1A6UmRToq`T z@mB8P2>sbtXh~djd%@_Tyvy?eiG*G!0uYQID!@GNgr@;OFnTBw^SlS11^~h6p^mg{ zZs|IbSEtU#*qmL#W$qvgTY7cQ8nn96^3>{IAAfaD3A8$t1(|P%zdD;ftq$=%^NsOW zXS=4=A(&^rDgNqgw6r=z>dZICU!6}t)9Mh0GtZ2_I-lRB)uGnPJd0M}<`{cW@9&LA zksT9g_uKV>E2ge{YmIKZ+xJ%6=0JEDVZHweBP>X&$kStMJ1scrYWCFQZM&P^jL#WNdaGV=O0nH-TpITRgzS+avh&lvv-4w0a_F@>d@z#a06H!57N?dR%rp<= zFq!Wyl0zBf@O~vZ?Dy-`W3oMf^%Z&BSxXK^`yhvC_D}*jyjw>OCkCyyxn)82M-~As zN0Ikn<4PjPHTJ%MnPGw?qFF={B=HMMlIZs9#zSW%0a>j0bfTvviAXVm^DD)OEs(@} z30b08dGgRqLObRzO?bJ6i~>?_kvIOdL=h=W2%@NfD1Jpp6sOy*{R49cqCFA}14@J< zZ^>#&BT}#sq_GLoc#n=WPF!iW&5^oUyMS`0$Qz$=B@sBCMzFXCNa6z|2`yxCo%f!A z?0xFU;`-7KAp3Q7WO40!8<71JAxjkS){YKZL&3p=jAh*=EPgGKi)%c=ic6cd;NaD1 zWIG=uWcTGN+1j=r-vb%M*}b1sCsW5psgLwCVYLd9+I%tLi7TmC0YH${y+BgGNyxM% zHFr;zBn3%h^JRobOHz>n66w&RY65xytK-m?lweb&IkqWCDw{7?msF$xDM$*s#vSfS zv?VpEh!=SuRH&OTQI}MtfGtQ0bhyJ^i?*bU)#LGY!oxNN1?=Wa6H6*qL?>kIeGnIR zxU12Yln|!`?}JWwlh4(}jZ-M8NO6jgv7}%tXotHVEo716f`ANm$#%F2(bl057YGkq zJH)9?-apWiRHV2-$XJIkUD)9UMO#urTp&CwDad`Bd~PeQq+-=CLRP#f;tb?gl4`<=Uvok8Ef!**tE zk566&(H=f{Z*UDC_%5&t2%*+uk0TJEqs@<#$Eko2$`}CznDFK&bU_H6g8%|Lnaxk? zf|xfvV4Hx(bMwD-K?pX%v5ss4>+etLf)H#%0D-0L|LB4cY(fA5RqW=c350M%@45?) zBeW*kj9+{6AM9}b{J+w==XnkqJOdD%^ljHK*BvWoytD1rZKKv+ZLirIKP|`C08WR* zplK<*LyZ`pgCJrcvBKNci18%>A_gsW;hk#4_`U-XgD$!7U24Sm3IP#=g1hiNYQ*?9 z1QCN8y71j<#Q1^%5rg)tz}NQ#m%3@;>nvXtS~;Zj!hO}4;5!(^1axYJ?^PqlmnMi9 zl%9p}BVxA1I_9QA@Oqf*NKqJsyx(+5j1MU$4MLn{czMCwtDTRdB$nj-4C8e3hq^fF#O*LJrN>` z&+j;B*edbOwhDZgxFe0lw|Rdx7T*xM{ReowLmOrFtC#NByjAh2KD_+ z5FD%YG2+nr4nyOh?tCcN`C!G$PS|#U6j!T6%JrL**Z#+ET-1Zn4YkbPt3v?LG8bQ$Dgc^DFaVfH6#1#BG$cSNjR8PP zEAlC}GyqU3!2qC?DDtC6u_6fO5wQd2Kt>%fTsH6@ovJ0!P>V|c1~gq@89-}a;s2tX_u zKum}v1Gq-&e;z?dBOXv8%rbyNxX2f&V#xsFf!O^DApssA@E@A07-*2pVt^q)k#Drb z5(9*UsA7Q2qyEEE6$9-fuoz$pQRM3?vBY5D+fgB^7~tsv|7H?HEEM3EQBlA{5dJO6 zP=II1y|~~Sa2naakzk||A*eTJn}Dve$WK4U(gwIjWI4bq4E{~2%7GNYa)6;o@r48+ zmK@B#wtXYA9N?t2e|<6-;2e=*z)^JnhGa0%JH)<%jFWd-VdCIln+ygTXH*z4ckr(x z7}iOjUGv?}$rC)zG0SOl8qjYY;B$SOD7E%VDS9oLJ z`p{CNd)Vs^+}{PscqRHt?V@>*wHBTXA`kR`H{=yOFnflitU{5^izq_u%bwPyNc9-= z2=!QYLzf~|!AudV;Otplid1DVMW`~eIbDiW-Z4ce@3L84iqvN_Md-7$d0mP$;b4j| z;mDpNidG~DztVKWO^z63EPit2`7xo_fe#ee>#R30dclX!f&**D-|PLld79XoJkkU^GAwi+R&DV&650Cd3t__@(WO%TWrpuoqYSal&N>+jcX!5>vbRI!B)$23!B>4nHsOIa?h+ zk7Tz3zp&|6{AJ=-2UjG!6>z~WSn)@daYeFQ0T=9x6@Muqu2^wVzy%v+#UD||71zFC zFBZrQ**g#1$(p3Pl-I?N$-06DK0smw*d8sJl$D2%|Hr zSk#eMB>NKN1x?Ofrmlm**WQmB5h|;zKoM%pt3VN|?W;f$`VNbt{d9Hs(Q9+f zw>dB$7m4%wrKzahPuhQfILCqbaDI!tRU6M_9_siQ0pWo-dcHz@lg@2~R)CPM}__ zreU#yod`&vhOcsF(UXZ_Cjt`atEwE?H~1Z!R-@^dJyGHEl+YPr!6KJTdaMbCCxitE z)m45`%0jaI*XGyu`^{#D7^m+iLwqiZM~jyymoZm8W{JU|q9~p*U7pz5ZoA$PJ|Pd2 zn4);rc6oBEjVpCQl2Cybn^Nprp4y4tsBa#WofRh3oyChf^j76BOG9l}+}EMDw%hL> z3BrT|s(3);?!yk=Z}yt?VelOVGx|L=bFBq;C(m81H-cZ=XP|<3)99L)?}n{zr{11= zuGjl%M|i04Id^3^LFup<4y1$%-_lWr6Xb=(a3C*K_->9eoYhEhpopmOtuJLbK|o(D z9jGKKeAlbWrhHWI_sr!u^IyTI-QADmhhf0~ONVK0^Anj?lM`O*yRh(5U)8a0{?C$o z;HA2uW2<5p*ZlBSnBCmtILGm`vw%shUZFla~0wr(~qKb|tQ$@3YJ+87aC( z&0IlaSK_w@laUg*GInc!nBL+_(Mk=Gh~WZ+oL<5fe3+#}P6LXl@Xf+xilEE-taGRh zN-rm;iLD5S)P*QA8@*s6tQIb~b0WurGNkmftno)oQ-ByLK*;(_AVQ1)=Z}{Gs=Iy<9 zcW?6f5#KA-+vbaNwUOES?;n}BWBSv5&gX=s4@B`QpG1#A*BC-ny5PFi_mk_!plez> zkuJ-b_=R9u<(mpI=(_k7=t8+s{Q&VR6z$h9yg_q=Lw|YxB7}8UHu&gZtx+Gf_sl&_ zhXt*h&gS?R=Gl$lGlbsS*l;r5X~!cxza4@AWtM)Bm`e);Wn7;?fF+lHAaxK_RWb-r zbLodu2SEh^g8&;Z@hy(D)IpUfgMb34^zPIpLHz`SzTC%eoWCUMGQiafLveV+ovhXL5LAh9G2db zwj6{I0dtNL-&#&d4nl;0GO+aCwB;ZK2pF)Geu^+yuSoXmt+pd|XS{6iw^LJYQn~l& zFiS&PsH_kfp#-`1dIzzv;q&hst_z7b|F^VmN@^5D2*W}Z5t8S!2qC?j>)PQ9OYt>D zL5j(ML@S;G8LmmmAfRlk_zGl5H_Q#Bp2`UYGW5D0lYul_IjKN~0tS% zw8%hBVUe*uQ#Cp5HE7p&U0H73%kz(F!z;aJ?RqbN*c}Y6nDb$DR?PR#4!gbDpxvE* zkkWsLBRN)iYtlL)IT)IAXIGxu3RZqp|L`&0cDpq&yVH&o?3m6{W~QTfkVmTL$RCmm zV{I&k#R7n;qsrTO$uVpU4!hmqLG8AY*+so$F&0R8RUXPG$Fk5kC;_u^K)kB*(C;eX zp}K?dKnk^tH8~#9UIdvyMym4WXL1a4?M1)>fxgN!;^bKJ4fDQj@I3Co9Ak;-OHg}M zd7_^j&qjb}2`o?wS9zSD9Lqvq5^NW$OjX;Bg9i$@tBXglWk~b7v1XAi3wWR&sNSKN zo95cGfCb9a>J>#S3vEZh1C^hyt`-$B0v;%;EIb81inHHs@722frlV*Hs}nElD2<8_ zAgNo;bP$moE3SK|g1;SCXWofUw|{89K^a~|JL{lQ`Q{{4rVhCh2`DQn&m{740cSqMXkq+(A`>4Yn&u3{(!Om}4cxd&K zW8DH9mi2J%sE3qhr}EHjoE##_NR-ER1g>SYrWms<-VDjqhy)e`}s4 z9!zEi>)zJ*56rpZPO}jlN}tRdOhOwTnD_h5uwmV+h(Br82gC3e@*;-wMT;CY!$m?d ztdt#MIM2b-D)Q;5@ine#O1QA!cPyO$Aen>p1+&SwwiP~0&6E6Bg#aK)mc=jJnD1aW z`1IY4F9HJj54d+wz%I1VEb-A1>0N#!x08sIjdG?%!5%RVp0e~8>oJ&;#ynjOgV0u_C zqzZty!w3M3m&^H70p!9g&w&VLPUX#10c2+Zz#yf34+0=mofj5%S0zW9&+{qLdvbX= z>I9!JGb7$fWoSNA(l~Gw66@ai@n6?w?kk=gbuM-63zJWDVA$rqS{uXKq>2njD}(?t z?KT(5>If#q@C*W|;4(muL9xr?-Z2 z0KBmLB#LqID6j9;`<6Vg5rnQPE@Vy>f825Yw{TRriC>DsSEyVv{2 zp(3GdFTOqV_yxMI#d42J!d`GS;r4xu#^4+{pXgt>#%4n4xo zvm?Q9DmOk5=$3Y#6A6ez-tl2TwHQ$z>M)>cHZa0NrdEKVq1%O<9kyd+IQeStGaUgY z|3|cNj;q%Fetj@lu%x%*ShDy~X-V@A&7NyXGn%XKH_eC5xrzR=aB(n;3O^oW;f=I7 zH^{U&7=MMI!C7{3ZhUBQP+^5XM!D?b+|_~R4e>|%(BRNphSy9uBh;1IQM4Pp(uR(w#UJh-a)9?uu(3k16-o?I9*B1JJ8~hI>0+hkJkkuNJ3BtG@K<4OV*=K4Ra2; zYbvPT!Ij#uzT0*M|1j$LzwB_n%)5z4>ocms(^I3C>kR-}^bL+hvpgJ9F(E;Fg5aQE zF7bR~*}TlVjg*(cNh-S}HtX%gM!$79Fx%=Eo1I3pwr?6MM@}{upt`+gXWT`>morV^ zIMeEkH}OD-bvF62Hs_!nLc~`+sQO^ZMS7MPr?A_od~I7 zS^gSTswXBD*DP6VHD0SqHe+V5vox`HdX*~86N6rV)M(C<#eVSBs$^wWvBA}4Ri=p@ zyDrV+PGDBNIE8qfs(7jGnk9_0m2V@$TS7x?EHc=da5%0zJe&$0)c}}kW#6Jmj`l=+ zA_sY)`c_49G)ZQ15O1q*BXYtv^L2|(llk;m5lAin@3d|zN`jnJWhGh1{9EP;p(w}v za}L!PKSWFj!nx74KNecB|2W6G1wP$itvlX&AD_2(+U_~~;AU{s(>uA>yl9?68iq8z z-H;|!N>v`srbiPBsH;K~%4$WLCni@mXGIGYZuNPRnZ#1(dgGuqF!S=gS)yq1&s8IO zve7p$luI-*SbVD*&9(8>o>?w28a_vjqT5ppim8Clo??ft@akinZ*I&T<?bkZy+T#IbNWflZ?7c6R_}0lrO|A+ zMy@dvRW6;d-UcHr{{XFe-tJO^_gKtssIe><%e9Kuw7eclcZG)aW;d&8K#c+#kMJ_tqNScDL_Mf7<7tLvCSynf)B1 zq@hZ|qy=sv)mFceFvR8-J}pG-!jLWdxkO5XUBP<lm@U&e&y$)P&y(j#>%;o-*6QqgrEEj4?-3P0 zgUDOE*Cy?oPkEV7d<|Or9Y?s&c;)?m*F1$k{?Swkz{l$z5poR{RpmznW1H^U(Lrm- zn=52dpv3I`Qs9u!RT75~AgU*cY-|osbo=#=Ima2EF(wuv?q%GE5Am?b{+x)sF{wz^ z7le}{J9#4VhR;akA#!R7U*ul!dk8y4?vN94FOnDh9wKa!qh5ta0mruthUU2GUbowK z6u|%$Qq^Cj<)qlax^_|*};e` zB>AoXNr5ao7LkSIzQtcLwoI$lx!A2uCL@mUMtSqU9P!GUTIh+9J(c)@FuC=K6vW6E z(}*l2sw%(psK+f|6C|>bpsE?-)|xR|+H(!WNPQo7sqgz}Wj%)YIw&y&X{LH21+si; zk;p=Nsjj6!mJj6%G<>$~jHfTaP6^iY!R!+FKUH zWB-8;Ddqo(;99k8!^{uc=Jlga?ZC_tUD3jDy4S3aUpX+lF2%_|3jV?5#mwO5K*oH= za=g}Ft3P>7)7&km^y5D-LALodwTlAE*zgnI0Wh4yzs!<(_HKF94GsLUknDS)zTl3#P0+!P)w+Rp;NdEP7Mi)f-0i)hbhS>lGQ*9mYUT> z0t4NI3K&^Yk>EfZQToVLQxs(Yc5kTiO23y9m|6E0z(8?l9ehjMy#+9ku~opxRuf4! zkg7|+ONz4IeHcHbP>XaV(2OnU`Rd?&o%z0&=W%oL+AtY`7<|5NowiPd7ze$s6>=4Y zKy-Z)0tnxK3khFW2($4+FidEzEtgdk0?}n5Kw<5_`OXvqbX=AY;%h|q&PY0eR;%>; zBpXGY(6FC%0%GvLD-F6d?Pt2cum6rT=+cHJ(}i^9zda4QJW{3r0GY{uTN-p}3y}GR z8q?>ecNFc4_5hhK6qEkjr32|q7fMr~FTq(O z8hXuXlHTJy)W_3xm#zRXqtMIxKS-u~ zFFvprd{`lPNh#scAr6T@8y4UY5_4RD>yzimNaP_h=D76LC(i{Ak%s~&$3>?;d9HJa zJk&Y4H>Ie1E_aALlsmaMrbwQv9wHCPBKMsslIPZw$U_Lvy&*;N-1HH72&}p9NRd3Z zTSOkhUGCdcB+pTg$V1f2aRsRFcw86}c_@r>TnOru=W>O}L%EXUdQhJ{7ZF4riijMy zb^7EvwG(+r?K$r5^vQG6L*$|9$#IjXPo8@pA`iV!PVDt2-)l*l?m6haFHH9k^t`Vm zx3|hU9qJtMi8@4l?|-F7okJc`hmhxed3w}2-V=3*_uf|!b?ejElRMy!jZkw1+}xP1 zncsw0z$Z_y&TMU&iLZ4joUnL>&fR5o)0%z(7hLA}s2X;0Xpv0wx&V(};R( zNr>@rp%}nROTR@x)WyKF1QG*ea__5%dTcScGWoP5giHYqM(H;Ri@GFus6&!~;>!DK zq8?ikkz#}(2xxUmzd=yc1;LFL2?D5l{E3a&f`}F)1W7>GRr>YxB*7goNdgSg zyGG=oT-)N)r3uOPyGI?Jd4}z*~GwBN@5r*ZPPY)ID2#Ts09nd{BqzK|J5$ zGh&J8O}{ir)F5VV@zKFV)bJ4`q6figi%a`N^rjy|B5Du-w)hdgWYngfts-jR<6B%I zC!;p?bQMv9(7MH)Ng`_a&=}E!(sPT;y+rh;9~&cTP~L5EnVpE*%+qv45QafpT)HG8 zD7_O$G+`FD#f77F_u!!3Kh6k_WIz$}Q(^pv8BUSg#zefpD~ZGgklW%UpNJejSxEF? zR<_0El_j?Dy7;xOyUL;1{ChjZmj7$Y(J5X@p}Db7S5m;!3Xf99G4H)&#sTJ8cqHKv zuSk)-V4XfAGmzs5$ZTh4;|qO64-O$^VM+(`WEaCGD_hK2#59J z%iy5j?H-O_zg!TH{J(Z6yz(AeI7NjE3_^k~JVqUdpl|^PB)7t&35WGIa8P3eoxmNY zAs9CM=4(aW;jr$IdB!_;vEB%7;n~kB5NYo(LsfvSmH#s((%cmjX-E_0{~*%VOQpv* zS zy{7BC*7P-lwdof6U189H7COV{fR-n*J2ey_5-=3V@L8W2B--Z7aAAz`hy;u|GJK4G zX%bUo8zKN>n+%`UTAILgS49-SYcqThb7>0LClU>C&kUcoT$;w}ROd?+zzZ{cn09#z zQ=L3f0B6hadD-PDG_KTnh(#1&GLhlqQA<<6SqssCSxbh`KrKyUdU`|@V0x6{BW_Dm zzk(-G@wZ)5>TOJ_#o=iB&3-F(SdR#!>5gxrZY1v zAtF$CWcW<6^|0FbL$uK!zYTO?7q9br7Vn*5YJs3!{BtS>QbocEnvj4m6#s;f$f7S2y#-CW1OL`{!a)$^iJTTT1f!W`{MwXik5&$LM^q$`GJtS}_d@hUAWSy|Wk5Ai{Ig|60KCc)5$q8NtJq@@ zJ(mv-P$(36A52dff@iQy$TJ`n7t=5c!7~ITP_l){D4vVF9T#6ah(xdx0SUAUMc!rALn7FTfCP&1B5%MZish!hu=6dO z1;uhOiwf_sB_h1KkT6(5g*QoIUfS#ShrzR~ee<}iv#KaG&4;y)f7!e;`GOgQQ-CNgw`4nroWEno-;S9sUhGNXFua?4c}gQc#ldnfkl!3V~?6J`{2 zsmZ40tWjG1q^5bDq^Hsf>}QTvruq)+#V-l7J`((EEM|{ zF0L%XOE7CJa-n8{rpHqgi{|p0g`gxb3sqBv^Rh*F31&0Q>{;`%uq(BRP45|ZnVfba zV+Nb@c!*jO2*x`P**KM~32WE$AH<+0YhUP=hjyx1{wsPOlO(8U# zzyGo^34)L8wH)2aO`$E2W76^>g2Sp_r@iIVg*8Jo9x%VVKN# zJdw9(&XaOn^+LTUt9J=zt(0?aFy8oX&+%8F?(zK1Vtd%_Hx3+*vhJN9|FwB+A2xI| z!)`BhBk$VKjX<|m-oLR3F2SyqbRw_|)IFXATGZpQyEZUezz4GoLv>u`<3AS3B^b66 zPXva6y2qnpi+VhUPmVg5I`)xQ(lJD=DqrBVh%Ujhm3~f{&+d-vDIxbj1LX0{+9IpX zD>zVMUM=@skZK|0dAzTbnBCQ*=3qE$%Fydn`G&AXaS6RzzPo@|C}=$1;j$=es}?eT zV%1unyMSHDydH0SCT4f7W14UwOo8)M`BbDuatYm9J{uuSLB#NQ7uKR4Prs|px@61H zx>osygHqoeUqAxRQRMd1I+Ji~YkyEbax_Jb-ag~4_q)UTu+{CDhp&mU|KYGXLT&s7*+nwS zCekgS46(5If0QU2OJ6`4e4)tK7?Sa9>}dgIw79=i;@Q~G0?KG%e-(rB6bXmHg*lHc z3`&lomW7$9It6H!GQ{2D-w@B%wVUH_Q15j|yX|Ie(5~+~JS<#)<+RIp-bL$2x1%W* zBFhv?C`+bU9z9+(-w$-~VoqrX8w6HF@UC-kRd@k$wdC6Lh6=9@v-rYmmXrzI!REE0(JZ_&E^d1IfY*kGy}+;LE{U5S6X3OB?p}Cx zT-@~153dc|7=_owU7HW)lYK)}D7-Z8+VmU^;|9Mhye#h8^uPoBx7 z)IEh4$6cFme$d)b*%V$vYg^x{o4l`nRByLy!6#81h9c)8qUrx+Xg@&H=VP5#mJQQu zu>Unqve!Gvu6z0MCfWE$laJzF@8u7>gTWQ^3}x`I$Dcd%y|ZT4Z+_Gr24_LJu%$Kw z+$GQ33`(LP)v_o+wLTx%x_Y7@Pw`0<;D!0OX zt69WaM2CPVn&({^H7Id%t0^Mw(|=azP|}Lvr$Ey(POD74Y+i?Q6c!n;82l|?{|@Sg zf$4y`{kSzOX`ubs-lK$>kQTSZL1c1`Gt z)X8`x0?4`BUrQoLNQ;sT(}E5E`)4K6qw#DP4Y4NvFAg6DCl|K6mYi~gWkpA<0Ff*YDh!%?g3f%3l z))&Ftnwuc;xBxO-p3jgcWS_t1d=%iC>t8<)ltGw-B%7NXM{Hhphn{8zp1U@|6K_qN7= z(CBtL%|@^*JQ=Y~PH3%m%zSO#tB5}tpJ_V&g}lh*H0s<%#)tgIzX<2h-iyMb8%$x% zQt;059NgW60%e-{a-ynGPFVx1yOH}qL23T4 zs#MNc(dcd!R-ndM{U2Sq9FI@#uF`?>WA)P{9qY-t$%aw%he`sG+Xo@%oeT5n9v3Le z=cC>#vF=oG$@h5g=x*fJP?fB$lY&&Fa=O=V4G!ylGa0*Ec{Ow?Yo|yoigr8i>>k@K z)GasIM?ODIk^lhlvZ380`-|A^>c~=bI-9prC?;W`~E3)a<|v!{lm3e1@NU(@g)l!{<0f>a>w`urA-aK!bd>lfvgFL&gY!adVqQLsUQMHtig z{6!P%mFmI4sC}u~ukChkckswBN{`?=W!N{Z@P+sU28IzpFff5-fa3F` zKk-`kx{c z!Ip$z1%1EI7v&V8L+>=f~2C- z+}v%4^Wa0;!}+_dTp(pya=91Z?>p|Zd;R8MFzPpJy>@-rbkqxBfv|ESbkv|ivtDp4 z^5sRVl{a6R88yt6i_y?ry>Kk;dxgp0*TzVKr_NeKQz=N_+u?}*vJeNDz}6R$Ygnuv z<&$++@NM+;6G3P4J?FeE#c0!q5$DeJc^Zx&i=Qrz8M6HOT^ies$|PBmgUc zHOv{@2`d+g>QM~UJC;uk+{p55(a6!jtW%9>%N}-bx{&PdEfH`E_ z1j;&EyjSmEs&(s^(lE@Igh)Uyx$6mureV^dFxCqsi>+r9VST+AKaHjrkVf{9KwWLU zfQ6)_7do%VdVzXk>sv?!3G`wr@I?LswR!ed0=2YW^?V|nKrf~X ziS93S;E?kRj3cuL1WHLSrXh%?7ieX3HxUv|z0gU2)(a5cdL9wh*Nf~gf?fbrwnd@%EClC%z0dPM|Apv&hw!WDNs|a9Gbx#6-dUorHghNvRTo{l5;CS8EHxXeK0hsYQa9CRnE%QB@LCf4OdUVr#PO)*xG1m*5e6JP`#lQ=S-%qRGmj~0rH!tQr ztmk?KV&(o0s^|Y7QBBaXEH!yyLDQrXM3Lp|t4bZqqL4t77YGTt&rMN0aziJG2S8={ zYO9iX7Da9n4=5`4Ig)tByYRKc(cqxp?H(@jhX*<=GjmZ|d)XQKQkKanlPnX;_bh`_ z61{Ah+|iNfp@7fvSGDvVSGG(+JOC=YPdZZ)k8GKOctBCsC_908jB=t+$QTq^548W; zz4+phYb&`aD1-*bYvP}ZDwAm)q3s^`> zdZG7gSTC^kv-Ls}K?1!j6>SB*K;f6=M_QKFi|iSTNkQGfPOvrlt;2zN$RT`UHNp$#ryK;VLqPGFGP<416cjyMMPe#G%_%|B zkqVCl3AuBtpiPsG3ouQ{l3RIgnlvwFnh=@UqE695FS|!>ai4ZAxc?590R3JtSV1OioiY1s}vcq4U}_1s}wXxUx1)!3SYn zuvH?O*2NO*>bN8GQ+8i<7|QCWXkp7xLIb?8@Kfd$$GUlbzt&ne`sawxIo9?6kA$~p zzH)4en^vQ_NDe>XShxH!TG#rF%5ME|x7&5Bx$d2t{C%z6tY0**+TYRiPIbD$|GV5A z_})qLv6JzsWb^6R;~$y}5N-2X)dC$4#rmkt-xwvr!0slWAG98R3xcPEQDWt(AuF)r)@c&pl+_IC z?V)4Mb?;2C)o$1OwfgO?f#+WdiTHo-AmZ`;qm<76~g9w*~TdcA;WASP=Ian zRBlSD3UR`yYsokP8uxx!)_A(uTyX+C%li=(aA%Emny`v7c6r%B1L6JHodnM%K4_{u zzS5S&?#`NLm&_Mfl8X=A!h5%l_?Cv}5+8&M??+Ye>7;jrrdqk@5_AyMe2SqsnE8722)#m0I_rX_}k0%f@b+ z0%dTbia3Z`mhx$HfTlCC+F8LumaK?lsAVa-1Ph^CN3bqp;P5)c&P<%*=)k=CJS$8{ z>lJZtW?5mLoscvai96<-v*9Ke87q|66>)E7S(l^!~x>6#7<8b?6o>P z)*$wv7^(31(AvXG;cX7yPNcUvAj+1x4^)I=HdJ$?-k`N-KDE?6>P&r|ksri>^it-g zMG=bG`i=kvB6FGh6GbTIkO@NJQ8OtBvQn8l;RGq(6<%PpsS{pY#Gt0Mh@~rJ!3!Wc zmU&c@f{mTnlDRm+NZ~=Fv$HZ)ut)1$@@aYCWMm=*Tyl~oQmbd zCZ@-qNs~>E55y(}@C>&oG1+Xl%%>#6j7)4|Mt)zKY_f+Eo8X}t-q(o7=7}rKw&{sx z8HIRT;Z8Rmq1D~?NRTHMa=%FOj7R1~Z`AL#1wvST|3X4StBosl+7$E1KCtBe`GjOn z3|eh-CTdncSgrkBLPDq8!C5P_7bR&4LS-dss62USb{#uI?gdGH5Unanqtyv0t%(rC zi%QaXu{PZ{5FK#X3OnpQIm=Dou$XKJIx=3yD;$i>-a>dCBm7h+hr~vh;DE&pzvrM! zn!^;42Cg%Fk3g3+r*$F?wwk$>97C5hr&=Nn#+%`X8gxmoQ8*ydke4$2HdLZ2W3^qs zT*q394=GVvf?6)aFMsNC&gXlGb4XN~OQi3s!a1}Gsd3Jy(TH=XEHj-HIcJk2okQP} zc|VcY)j69RaSp|1=8#D1>zqxFIEPVJhKm+m&go@7k2r_=BGXHea}KV=Ih1P|uA+1~ zrziQCb0~N+-4r?J*iM{7{g~mx&N^*>U_KIfrO`dyotwhL=y-Tf* zd8@s7=%jkWP(2zRnCY(xICCF(^A1Al5SljMsX*QMd_?LH9X7v9fx2fj@rZ&#phW&shY!_;8&ZA5*8t6iXA`+~bgAk7 zG!2=F>+?IskJF+#UbN9|bj=jzq!|Pc%y-HCb05x}_D-14J8YWoR7`)4%QS6fwi;ZS zC1T&~;9%n;35gj!yNQ7jZ2WOTV#cK1#K7J+{v;tW6As+OAXaSfB_eynw%a#{m`#E* zEn%EbiU=F@)IRy|4mAqts{BFXTM>%6sP5dLXDE<8%D<8Z6yXGgAQecXt(_CpaO^n#vgmGmh>+nDCWh8NHx1zf{ zX!cF73F7!aor z9xKmQF(R{^@%xf$3B`6C#W;}Y(k^=_>Yo<-X8k(;1A0=Yn z@HRDNGv>XReef=iEj&8=)5c|B%%6c0`_KlKd0$9F`zDkvW*;DU+=-^oK1Oj}_D$Ma z%sv>P7pGcqsC(KdxGyK|!$``?*m1Ov#&4=XV4oq7?*jynr()5yFS8FtgW&rR`pUnT z$oGTQrasI$!#+bG_Q3!>o{S`AAIb=(P1=WCSLVlWG_*hK`-1kNlJR(Qn3R1eEClu; z?3Vu^k@nH}XMJB_AF5W5r?g4ghiXG$AChkQ4~hMxw2j}}m5x9=5SI1bySK=8Ox5;p&?y~$Dim{rDof&YN8mVtHi|3G3*$EgI?z^^@S4>Tam8nyrdBCE%H zde(=2hW&c4XUfLLL37}mBFdqiDZVn4J5&)>E~3(+2%%e>BA*T-9>Ha+oGes$hg-zZvAU45cs$7Fb1?H2W707Rg$^ z%E8Ol4aAFz;>aV|KEWfZJO_xAxPsN}dVIDlU|Hw;C{Ab6Lb%|79Q_W>2l9?4e1{0nw9S)?sZ9XfkULBz*%`Ck=77=B&UOI6YuW{ zf-d)*DT#Y1nyqw|I%%k$Ez;H@$)?$E?{{4(OU}w{U$j>P_Eq?Dl5j#=?8!t6Jh|{? zCJ?8(5d}K5Hlh+T$KFEBfwvUCLQ9Zrn?wt$xWZGlXmRo(T9AASd_E+h3^~pcElBeP zKJlVeB9aGii3lE0;>&wlM9Es1C|FC0uTW_bC9`3o;0{*vm?BXKW-`&;R=;sjyV&fQ zeXxCVBHIxc%tmsz*Brn3g;h*2(=>Nk#*MbwNn_*siLhpeT;jipoW|llIgntsJRb0p*R9|&|TK9`P(fC&A=0wB;l z_*}uO0$FT(u&Lm4Bc%#tv5mlZ-xsF=%X=fLX0eUHCY%3lBp?5^=>P%C6M#VK^A}kNC(Jb8wr$Y?FRZUCm_}t z@S|?G?Wma6y|qTS-R+y3Zqsj|-7kz(5dU`gs_>E&rXO>o^&!yj{CivuR;S)fr1c@L z?EK%@>rXvBN$W!Z-T8lU*T+`^i2}rdoqvr>VRh=cMOq&M-p;?pU4Q1qIU)g$yYtU+ zNk}i~5fzA2JO2`w3cNE%1i;&N{xL2Ad@+wGKw#PVC!!$K{x@FZ@M@|zz9{r!Kwikv zy4E$b`8PODPp(;xFK=XxFLcZc-ZeP&>WB0|;nmG#^iJ-zx_$e_a3TacuU3)~${rJP zG6v3A-AYDp-Rvqg2O?+Smep!9O1Y4dlQoEx)omiUWTelS^ZlU-dSu$r*6w^f?(%En zt0l7ppn>1{M0^6~O$&Z^lsJHPapyl{6WH%Jn*sr7jCcNv2*mQzwXw&NpvY$+7*zR_ z1xqR#AA%)GK^wXAv1E*#JPtRrtU$c1^7kH=WM%s4Tw(+o^PT@7M()e|;fLM9;7ZN< z1ZSMP=%(nz3*c0W`#%!KRp7VGvmtFfrW%ic2jYC0hi2M%Oq&t`52S-Kze{0VO*{VD z!G5>BSL^m&!^F_oR_+xFAN;2L-qei26#mF8O)S|MAQzS2LU=6WZ`3cjILvrw%_y{K zEO*o~=Qzx37Bq?WzBXhU(olwPgK2A6@Bo2nz*Bx}Vy0>4&rE}4GcP3~+Dr>>CNK@D zx%@W56IavxVjO82I++ajlG;oQzAP{ec*<{2gK3bg#dKWB5+`g<5VbS><_c~8%}6nxn2n8yVBwdVf5V{&0W zW@-J%elOyTRbLxolPkq_M?@&|&|ZuDWco4wHuNlcu*@=VUMP`=R*v{avGX2*65*2h zVB)|$5&=b?Pd(|N5R#OD0t_<$6bj7N(eFWUqP$T*>|Jav?mzDn z203tcYtz^o4_)ln51WqY>U#y#?;Y00zo{M8d%>l0Q%p&hOSmHX<&ZuIxWMn9q(GmG zPofW^E%0kRDbVMxkmy5@EASIMDbVLuoalpp7x?wRB=n6{Mbtlpxx&wqX{SJ6&_86^ z!q25iU(i3a9fhAylfIyT@c+Uu5PhrWn|y0b?Rw6iJDh*#zpo~7@ca~sv)GAqaQl0j zQ-zqno?dFi+2M#dIQ-71QzOpVhKPf=@BB|{#3_q=L>ydw=ToT> zr(TMQgP&X0Zq;$^*06SQ)bG?Au52&Ib*A_Ep=$%Z@T=v`ki$S-H0YP{;4(Q%#J@y-K-CWwWH>MU()(QheMY5Z42vGs(F{noOCyjb~=iE z>5z3f7^J%r-?mkv>o71#>m|P5 zu0wZ$gFzN7@m*IP@(Udd(te5WcrOn?N*@c;A{<37@$t*$0Z8r@!NZ|6DDe|T))T;! zYbgo8+C*Px^xqriZ{XkO`G+=f`Y0w7hji-m@IyG6dhNoKsrL+-g61R7wT?DZbmW1V z0-y4KhH|Dhar(3@69-%Jd7P$AoW9Y=#Gy*@-=7-i^ld~Y4yoGbL9#aI^hru44&|uN zQ#7l%4nJLV+4#R1K^X5+C{SZamUJArwFdL{^>h~EGsBfecnaTCQjdnWa3aE`n-i;?GBko-40s~ z^I;?N`tPDEh2GCOgu42fBvfnZqk2DhHg0z`G~Y~e=*uxTGMh(}e^%@Dn}b2HiuEG# z%Blm$_KkEuLC~Gv2KA+E!+Gxo8}tOe(iG0T*q|smp`(9R)cSO`G4aex$~98 ziuL73b2j;M({;Zp^eS(|v1ak%w5By|3&YQaYi@Qh5iac02VXIf{w6J4<)g~M)X*HC zHD2OQ-x|F4PFJRP$r~7m1d^QEA*7*2kJ|h zCZ|jlTCDPe^r_PPl&L~PS$?oSRhptQRcNQm9Ix#ZU3f-vA+aX4gwW7hpS4D8jf zOg_-C*Bmw*!*0LU>X>on(D_t-#><&YJ(EK)!8?`p_W0X};fRrrfq?>ZT!^SsCq;Th z9Tb`4qE?+c1tq2qK`F-_k~(#ASf&mRo8z)pNW0fBtZQ#}*i)YO0M)so9*Mbv;Fsfi zNu4@1+)N!B?i?SuP^V4-f~iA*$Z?mXPMum~rVhz2$7QlQb!upsIy5x7U!#z$PMw-# zrVh<4ppsMB16sl!|%_Z#U^ zr^b}2Lt~ob0$$zbsmx^R&_3jNxG3b0o333@kN98e$R7p1Rc!Y=hs}OH(rrBNS+0d2 zM#{4K!A8GzI57L9ee-c9S3gLt)So(*&hn(&>iZ75<^^`w4zS!qn=cET9(MPG7r*V^ z+57g8FcdJwHxWy zb&2_e!O@ER)>ksZ=Jv{b!cdn$v> z_10eyK^3lpn>vfR2A|5FBoIkejn9}7-_Xi${Uwo9;oDSp5%>nD%B~ZLqndEEvN8hK;MiH-?MuovzCS~JgIjI!(WE8$o@LPZaKuyv6O;`;z@C(E=@m5M z9SYm6|4l}A6?um+qsTixlSh0*@3i%&art&Ac-9oSDy8xS!i-{~o_@TKxQ51U>(6w# z4z9#6j^_|&vTFn)sijXp>PTFJYi<2G5nR&7WnBxoTPQ`LbzY$w!8XLYw>AC)6DT|8Fo+q-)q+QUC%0`(G12Wb*S(7Plkvrn<6p>&Ozu+5U1WS~ zZ2XJRu)W`P81~BdCsXsnIU}hVrb96ddrHmG3B#z*B0TegW$!Co<~b+L_|}VM&k^o z3I0C8u+EV0x7vHb>HoHQl5Bh;bODzun+`4uzeCF}$EC>5q7=(c1u0h7x1+;=5+gPY z*_vgi5+WV6VSYEJQe+siQwcDj4fQ*!Fk}x9U_guJ9}*1V7}SO97MQ+&4~OaJd3t1d z)?RnCYt9B8AG2=PcOA?7-q~TdR~xju;|e~wOw0dfT)cZ`U$@n`M1khBLL4CG{2j!f z)q>t?hByXCv{Ms76=i=d+hlq;HDUh5yk+vuoL}ct)K3pVK-%BtHw4pBllZDBDGQ7-e}zP% zr7Tk&g0g~<*?)NAnS!!R7MfKSTMQ`+ilgnP5Qub?b>g;By+6ET)~P@m`EMW~ zT6!|^3-lDtsUX#r9ze(x^kmw&NP2?mar?;xA{{-QnFK>e1cW$~|9V0bS6M;vW=BBd zLZB?csd%(R5%Apf$J|PM7(_u?CQL_C7S!0=Pa^T8qpY*`4dPkXf`FXAOmMWc6*pf& zqguKbAyd$nn6K!r6=#pXo#OBBM`~8B^80I=F5+Jvpxl~$lp#dw6qjAU4ei~_aS5oS`yQhpd}E` z_LmZfbhLD8U=GZVQ`W4iAjss82uoa5VYwbDS#j}2$qFJ*sX)jSR3#=WK~*50?Jpq^ zTH=Y69fVvCX|z-&WD4RDvjc;m>|lOpe;s!FaRfq3JdwgNBO~j9lCX4E9a*FhBp`zn zR@zC7EYQNz<)PqlPzsf@>d4|6dk|BsuMn5`D|~4gJBx>m9j3C|UrgdjCu}b$g`o4w zew9QNaeWVV-%5N6SwUN3Da39@+JZ^*_7l~`6E^?=vQmYRDTqg`K?L!Dj<%mb zAmUn2th~?2C~||Fl}-~f1@VY^pFxoIK)~64Jb};>Poz-DQHaE|1EG+om|DmpxxIkw zo`8%;c3Q|Hd7OakUVw~;RB@4EsEn)43LxViUkh1WZEgWF?q{`-#nomNkZ}(e7g?;( zCD_?EAmf%r3t1#P<9J3YISLO&kGY!bBeVOE) zrD1Yr$nM&^htfOWCkds4WB%qe^hx>K2#rD`Ahwah{s(l~+y9F|q$3jN7BCF7^1-p{ z$w#6Tq#<^Vf;3H(Fr?njdJ2MC=p=k-%>6_E!*ybVRaXI}<`lo=-WY z1IMug1mlH#FJ-CB+v0#;KF{aRtSm+k;$FDHk!Or#CzoQr(UDN{zb`R4-gjx3=a3iN znvl~Ny+P@}Kcosly804*s`OSMQw3kEzEqzoB}S$SL9hCPt3nkf^cGe7y58}_Ul*Gl z=LgcrWIi1#58N~R^Td#F`tRn2k7z!_v2NkBXkE+glbNER9^l3jlp0m)ve_uWpQ|s_ z=aqH>nJPrI>WlQLQg&ggPy2zY0*MKiNZ2AQ*4_L;6rM=45Ud zSUds(@pTlI5K2R zJ@=U(QUp7JykN=1`UK3-+$1({c@A8UDwz$0;3u{5Zzh-jPVO}?)<{=+t;$4TM2?gcyfTqsm`;Od1}pG$%K`9hpR69jfZ=(@6=*)V_Mryd^!$ zI*bOYKTG5ivOYIN3w%Rkll@u(l92C#>2qiKhKx|<$4(ORy|kZ0$z|F4J-IaEtF4Xh zVXxk=n*orclrcM{JPe$M&Ojp#>+L z;zEOBWcyJB&Dq5F_Z==^PfM3+RX^x3{Eh!2Fjv>`DNeHCLw?x)0$pgchVKX$f=@yS z-+l~1OHGAS10hl$ln)!9A|NX2i|m1d`k<=Y{vv{wnv7<;eUcM^(KhqQ;XsfRsBrrW z)0Y#BTuDk`)*GL^3Q(p;t^@^~f8)Q?hcZ1vBP0;6H$F~CghA1b3-{%p7)D-GgxCkY z3VaYfHUF62G$RfnS8jZQI827bEaTdKaC<7$6dV6f2~4c)2(_0LHd2#}9Oq%ywZT)x z)PT5E1S3E-70t01SHyzmX5(W@)-n%@BVxe_aN|GHhvJA>(ByA?^eP~k+K#8l0zLP} zzY~&#z2~B7B-Ly_O(OwImQMxV2`&V|-*TaZf|)-W6~qF@lI4?uNs-JQjS5IWCe}bw zNVK;sd=5xTwf|yH1|KzB{k^VrNYCsakDt*q zo87@PibvzHNv!$b8^Qov^ z*J;BLY=aUL+Xf^i@8#Ms1ltf`K&1Cxp$$W@4FLw^LhqH@Fa+BWU_b=-UPUmh%L>6J zOmB49yVP<8BrKpPKs_yt450n;wGyGpJBI`FQ0%pi$OkXQnnm*bk0zgaxYpYUPAAVk zLiOVgEY&X|EOw=QeBeIDcLR(+%zK`CCF1~+6{XMoB@)WG(HiwhGb9agi0YS;G?JJA z9WM9C1i;qHH>ePzEX0I>qw;ksgy@hy69OkLUoR0-(%-r8UCEip)ku?&Z>oG`$kL=1 zoWRG##}f$-X(uA3T^te3+LhYb40Z~U)|7WGiR~6SMT!!;besnb*f)ZTG#3X;3Kkc>J?Rvjfzr8i^{41e$yzdCL14`fIqxSmZ zh!8Pg1GUPh>k`Rht!+}nAc8o+B{%sFguXbUL@d~5uYMglk2OB&wSsu(a7g*?Gu=Y= z?h{%91jq9}kxC@`^@&|J_aaCixZUK7cFDMG4bI~DZn$F`9oOxre-X8C)h1+?r3ky%Mo7@kp6J-k`qM*Or z4-rvIsDoa&v)^$TlSMl#+!?fE1~)ZQf$q%LXFA(IBKbGH&{>(X*?sd#rZIB;mu ztTEYLzIUiHT=he=sxSt*dBL)N!Le-N{po-2*}vg&)?c5858 zhS>bw&+&;L2l~6gSH@Q!#12@q3zENh_nW;&0S83bZ(Y3Y{%rT zq(nM9OB%L5a<>y{jqpJP*`riK;B!}vVU?fnwuF}E6?&dq#^ z!+Iu~%M3_F@wksq9+Gc7@-nkCMV26Z2sn9ela~;_On#=`5y(T3>5m+RhK2=cu(7 ze--GoBbuzdiK6KJ=kJe?@3gq?jfWNLO5Q=|{O=H*sqMPU=7TVgZg(4(9DAbS!rmtw z3zxs27Ph7(lXq-u7u($<=PZGiet=`?oliNvyg%$@g zIloR0qDTZdNlN5IyN-E$2*o(PTV@`?6-}h9iO)&u|UCl z{!9vDaj-s)>W;q~8;cNkK#LhZ^bkuda@+xnv_gWO1I0BJK_;NW4DSNQlF5lduRm%C zrUE8;{uG&tH9ZL)@G#dOFFETVxk9B;ga3gr`h%*=4^<>bQe<+#UHKM8a#U_JIk2(v z%@Vory6?@`J4&h0pZ%{3r3UL39!%?6wi_hg;5|C??N;Z_MfqV7S$o8v_p%TNq}3gM zw(jcUfEpq`4w-Y~#=`q6WL_)}n0M}cZ(O~|I7}Fgh66^RJKv*=!^~I&9D;p7(AxPf zT^wfA6b%PNnVom&;xL_eG#pU0?R>W`4l{s=h6BpfopnCs3rlY|v899NtXU|>{uW-=J&v6kgU0f!!TzV%MP0EZBCF&vLDBB%ql=yzVA zDGHi!L;wPt^*b-r1TvW@L_h&2Q+A%GiQ>3}j{pM>1?@av6GqT6N5Ft(rmB-fj~7^V zKR1~u%)eefUO?*A4V@9y0VzZmL-cq7d3xvBn(A04UO;`a^Bheek>dsS9?#N55j|c& zIkWRE1j9P%z~A~ksCV|SbCw$G!HwVJ-KFEtItKq>@?L6iR@PiQoUAqV89q~Aj4uNF z&krjONO9ShsGu@+zl6$=kA?~|UX~NhRg)Eu%1Bla@w1$VQ$Q72R!}HqU!0}}Bij{} z3fUJCD(k6^@$Pe+x69|f$n3R4+Xlza@KNO?`dZ4i1uKG_o#kYCFYYsfBk%j|`W@!K zhRweDI%an`tUIECV^kITy7v#EJj|ciTR@dfRh`Uxo|<(6Q84o~!jMEKX5Jyi8`)ZE zY{*d%5_gvCC=F{h7K4wv)9ipH1KP>(!ITsvBS#m(TA|p^a+RxUtwfov6}-2yMV6wW z6Js$EbYcw1_LvNx)=8ohM+A|rl_bN~3gvc|8z5Dkke{$lKpvF}=_Cbt$Tmu-SRPRC zX77Z`iu{>TL8Qxa*_lLEjz||-R?sG8xg<}5YAK5rGzg7CmOGXdP|30qG-!Tkdw=$u zRIGg|4GO3rE@pW+mx8S1m?WTr$dKj9rAD+C>OHa|&Y)o18NNTGfkCKm1Po9~WcWUd z1_q&$5HLVI%-Rz1TGA3HG`p^TN3~VOigGRK3PI$F1zj zwxhf)zKh&dH7%0yb6NzYTZOeMW!jQq%Ao4Xb~-%M?hI3g^j4{+Ls^hExOrOAru{bN z8H~EJLp%$gnK`)9JE%7oS+DDfGs}9ddq$HpL$zf-g%||psTt7prx4k7-xK-~jD)tn zp18Dj6~i+#7ZyGa=km||pVPY5;qi(4??yR1{@Ed5$kQ3VO|rwWhW6%;W!UcSJ9Oio zyRSMZR(ac8g(5vR>=Q-E`c*#2At>egg$J2#ba0aY6e&f86M8V0Ie|){%11#|DAL1` zOc6qrr7g?w+I927{M^qEgc-*>?+{+;wIn=2DK}l?u(xns|EZ333*7oz>jsZpDu4FR zyCFmXd8PaziL;mpghGm=JRtz3m48bSfly8g2*Bmazp02oD53-e;408sgHxxt!LQ9E{Zwvl+%feEdcD}%B z3w-Q7E_i!BIOya>_V(yy-v*isQv*3sG(L z0m&33OC{(O7DIt3zWNzyKndEW#ZVwZu0AjgC_-EjJP0bX)%&IaMTjc`6sUGq@0Se9 ztR{@7%zp!g;tEuEtM|O~pg@I_6pBLxg0N=eiun_J!_$Id^_gKic;On?@x*Xp|F$r> z!NU1pO(t%cMb=r{A_Ob}3bcKz_f7+f5U>O&&{D15hoIOcUAKGaY}ltZ z8L0jAe=Rftkb9Z0PsgG_JTL_?vNB&%vIeUy9gg}#vqjt7ckiQ| zsHPdm9aNs_~LJ-)OiPHoa4wZf*Q01BxDR4B)`9P7peL_t>>leGD{?Y=1N_qRF8Xl+loH?xDKCz$X-mC#Z zy}Zqj!X(w$NtXf52Lx5~HoqN{6wn+Knhy!8=k2VT(%eQg9}yJM+c`BvPBS`r9F%5F z2+HW~bv-aH6LN!rLVEj@8kjles3ry!#T&?2bWjMDId@Tn0@6_NMr9O&;|Q_< z_bpzhj6$$e0R?zV@p?jGJ*C>~n)agGbazQ7_WRwV@fI`hKD{*TJRpj1?k6O{TYy9Y zg3x9&Aqn2fBog4zn->$3pw8GM65t)1jf5n4Yne!Z>2K~OBthQAT!39~))SJT2A@fQ z(QfW0Btd?`Bp}ysK7&YD@tdZ23lDXaLuY_>^L!@E`a0mQ@urU2)y2OHX@etXn5Xn< zgZo&ttqT|Ccbd6J4Z?M=1V5ZS%(}W)AJ)UB!~1Us*Hu2@qRchNC6YMAr3}ZV zw7CX(r^hu18R8m(Ohybcjrw8l;=C{ZPR&A1Vn5rweP~{n9*sXwO&;riDAY4}R_0aY zvDRGiQnTH2vDfd;O_?W}xA(ez{yIDvF&I+yM~LHHi_ID`E`acsg3}M#0OhlDEhjSs>5ahy)mgDuk3fo0`M5?bL zj^pT&&b+W5VSHWUd#PG_QFs%|+wnwD{q9x)2=-GDfH zq@!M}N7xl9Ju@wlk~&$WpiZkKvRbd@M2cyW6v=54lk@9{<2WLvgKaEQm^hdC5^IXC z0p*V68nI=G=|YetWaZ4aC6XnbsbpEgenN?lmTSq9idIe+z?FA}xQZ=H4B3J#L4%ps z6V*6&Nk>Onmatt^`v02y?l{@9s@zkz`-Yiex^AUwh3*-$WadsDKmN48nj4iWpH;k~t%wA_$6z={@Gzq$0Idab`0Ofb@_6KsH{zJ(C1*U74bg>sH~qX(WI> z3jo=374~d3@RBGo@H8%7a8Dx@EK8&!%c^FxEUAJq@KldhF_TIo0X$wLpz^GW50tv8C_SX|KWbf-;-MG3eVpE>~Eh4f}h zIN>fF?01HceC_s32a$SrZc;`V$C>K4|{G28%G^ zp+AA3@SyqY8k*b6GQ|zCXWt$jw*JWO%Gm6sZDKxqQ$(vVbfv-zBR*XE6U~*j-Q$F= z)jQZ2b+@|hs6J-+@!&HNAFp7WzV|F;xM&l*@%qY$&zAm4ID1zCjokAzZrx(uGc~#o z#@XDLhBV0LTGyncq5GOn4oOgGPy%S(|8qlwa%l_9J6;$*c9_ov zL%$f>DcOIqD_rsmN=h`K8E5N$Lc>}m&StN0M@TQUdvy9!R6>!dxFcK^Q;F)ME-uWU zC5V;KEWf3m<}8r<)|*>MXR z&P9|OM4>^YkfGO3zU-f6Q*|Z$tqT_t!1SIqR2{IinwY%g{<;@$VxU=#f}SWSt&CJ zmq2WcxD=lw^@BARvUjloaG{E~h@E5BT*%%PE;I=!Vn3HP7qUl%3(bp)*cW8Yh3rM) zLMgn6y)9X}OuTNf_(&C25&JW&xsbgmenbUu5&KN7xsbgmTxfn$#8uMPT*zJ&E|k`b zUoG*)+rJ~%IcGSa?7|Db%OK`kcy*X&$YknBV@e0*#@Ke*tqD=XXi!7`9=ad7s)Os#6gu7_!L%k@HP$}87I4#jRk`6gk3+)AaIwucv#H>=tk6P&a*t39A zBI!`7X`wS`Pp8;%7t9^5#tgfg=Vz5eUfn{iWY4BL+8qqWJL{9T$VTq!y8~jgl*qGN zC?)MFmBff0pUy~iDst@>%4~Z+r=n?4?rve`k%fkPN_n9OLmk7`u1TEJS-_bhBMkL) zTm2mAL`N8Ewzmd3vVc+|BMdEvwDyF~Dta>e{jG}=Kit{xop-l9ZwzjWS+@>;FU&F& zGgh(qYHx}05sYS@EiC@nvq>1iXky-at_*-Zr6duInij3|Ir5nk!KjbZ>Isc|!7jBN zk>+Bmxh4PWLsO;-rSaK3DJgX}rlLZLYPbd-(8xhc%Ip}$tx%%W)A+x6YH4o0EtDuJ zH~u?MN{THhTB5q8@n3mTQfx_~M3K7jpF+von&rx|X^Gf#$57*vz}JMH!=L_Q`Sji4 z%)5ip=%QbMntSr=LO$flHC$9}%|}r^+*tUK8`oZ$n|>4@R`}4gqlR6JmnN)$lK3!D zY6iKfNQo)nBSS_L#TqtL=Afdvlte{DsqsIeBJUx%!?VtN!_H_lxiDa_=Pp2uaAfyj zy7>F#Ty(qV4tV2K%lCxtL{(Mr=v;ttG)aJ|b_x(zEG5SIG6AL{DR@jS6627d08?2M zJT@0#9AFV(3Q@r$askHC908_S9Xv7@U>rIUU~;G6QMmx)IF$fXs0+R*7hoLf6=0gL z2Vas4FiwRFFwM+^$K?WyYXtp2> z!e~vNT!BN`LW?g0ntZtem$HSH>K4%C&6O|6N#P1K`LhRYnWY36Mn+|K@Gz0t5*Wpi zSU1gX0w~)O80Q5Am}Yvx!*h`sCm{uxX1&1|3b6HzV($D>%2OJF+E3@kN15Tk6on6& zV(q7Ll z-O!)BwKE*Kr=bd`-@kNuaN^)T{L!i4vI~R3*7W;J?xj`!_(iw&EN>c5)}F;&y<^jp zPlQL3g#*=?YcEX1;l%XaWIGyEajtz`A{xgxy2H&KI~G)auDvJ`i--YFKPFU+uDw`B z)6yX2ZDbfEc|r~KU@BnEQsoV3pi%)`!~7~0YJ_bnz*PR$&?iX+tXrdkOSNweZIV>D z5%#A5Q{`JjnQ#-1L`Ex2@eS8&M>PFQteQqJ4Z1miV zCx`okY@cp9RtXb~3t#>dPKA$V3nbcjD^Y|{Ye?m()E+V33NV!~wTy{eA8!ShYL^;j z@ZJX0&B5fg$KGJ`d_OQSuZ;L^<1O;t)38ss zmh1KwL~xBbGZsP>ej|jUh|~DT{GceRdQjfNeRyd8?AdD~L=zcq3uSOW@x7>oC%?Ug zxO3B^{_a?(J1rCO>Dh;@(UUn9qES*R{N%u;@{9hxjY0gaMN`Avf6-G6wlJ=}H2CEX-joy9K&<=sJd!_5nE0LXAXY7ey+Xg4r6=Id>$VS_T7s%;pF0zVTd6o zT*Xy1rs#e541j`8KDmnfcr4LR?)T64-4i6U(o=w4y`LDeCH|5-4>XHS(RLNL?^t3- z%T9KelkCf#_6QF^h}n@#uRb6b#V=pzXyD}FtM?ah@8-qB9a-aHdv9wnh?>h4f>VRN zPXFMb7aek*yCV1#o1;%sCo^$V!Pg=MA&A(F1E{lpD?RX4O04qeAiM&#SWE7 zL35)3$Gk1MD0ZlDp$UF~S)wHu#SRrNG;0c;D`S)`f-08iM^Nzy)F4znS3h5vWLv_5 z(6WR@P>qiXl&#QIVkknBi&XC|OtJ|rP*}GkC~q;%R%ogqgb7BP<^$FHiqN)9C~GTB zXf{y2k1)xmerd=;{S;&ypEQD!W-Op6)-@1!vq>e5SU}NGHvY*-D(M^oipHw(ae=b6 zn)ulg)mK$?du*9d_>e#bPonCoijJQx6Y^<=3Ds8BvpJ0p`Lx1>Dyu54L&&BRp0|;m zDA9#nzKY(IEfca6g$YH3YCgTu=>8;CJYIj&Rug2WiYACj6=C z;_b3O4Phyqw6N#I2zGhGG*ogRxHKDUVfTq=mhQo|m>s5WIH!NKIp__B!SY6LzvI@i zwmR*tgLSMBxbXF%zy!R49krQ&_qzS_^MOgzD~}Yj$^v|1Z-2Pgi;J#n$qb6ZpALsQyX!9j>D&2T!u#&bqP!P0Nrg zk249J?8*u-tqObg<>kiB_V89$a_sHz?w#-UBT_OgOGp`7ctx0&C`2z|UuzcqCJ>Sq z?(Bq=+807nK3Kw5;hcq}HCsC&rQn8;RA4Nr6;&FmfrX0IP))IMyL%V9u4ddB z49-Uws5@-i9*^6bJI<6Rhi%DVC%vA%!G+G`s$BPLVG>ALMIo_;JNdj#n+8lKeTDf< zC_=VyVWBOPNv~x-6N;HF+~$~#$z;_1RnAHOYd#YSp)K6oWy>VqPAI0X;#jvWlXyF! zz_;q^$zZwP-t7doOycc?qSNXzBPKCkEU^n-O!1`k>71C*=qOAmAGZE2CnhvH3KL3N ztQ@?wPvO>$cQkrR`6JE2)mOTAJwMc(1jiMJD)2DNbCYPNX7 zUK}6oXL>~VcH_eb77e0No&BRB1y z$yUk<-Qj+J+}-UwZYu~1IDBReE>%cDz$tze)N^(h+6PTScP(ZA{3t?Zk?T`oflhL* z<|mgl;UO1!egP+Ntd%Mqd4Q9%7k){c-5MP8A{kN20|lJZva6m(Z5^Y+-VQD zJCh(0degCD1a9MY!BynB`Pw*nzB1ywWo)AIMob>~O?DW9Q-Mp5E0ce@zT*O?dsp7g zhYlW4+MB#vFu4ukNas0_U01cEk+JwBk=c%$OAf@%{lq=)6vwSf+;B}+dTtY&^`|K= zg%Y=9daDq(FE!8`b903TaZ9GRGI4uY4&2h(TZya$(ou{XG0UROsiy4~70n5w!Gb;b3Q1X>I;A>E|KBEwg^6_pHRLhq7DgRYD=X zdN^DqayzM|5UyxeT70%}%dDQm`)}g)L-kzgmBPVJKZ#sl(GT?xis*=E*3aZtqIl&@ zVwhKHmwq+}K@7*#iz*7Wmb<~_bB=y6E3}8IHWfpt_u@|A4NZuJc`&rm03SZ-J>Xn z?6>qfQI2QQ7TDcZmp4U291o zDgi5lOa){K`vWtpK~HiD2ddLb>b-@RB1(aqG?T7ATKs#nvr8Ny6mC}$H_VLexTP%) z)`%M>CU)G?CgxS*hIv7HZd`OG%8JUEwul?bayxE`GLpirN!(Bn+i^>4Zw=yxV$_aX zT6?P#Hxz>Dxp9?|$ljDHvvLZCii0@RZ7c?6!-kDY}r~_WSGp$}w`?+{$TD_pwZxO2(=>q^K z!$g5o@dchFVCBF&MA`3*cif7g+ifsTc1ijlMTCLcJ7f;xi9XqiIdYpf4({8Jh%l#u z;^a>bU%VY(-0QgKS9S*j@A|?wg`i}ojfWb7E^Y4P-aJ7h>uW%Z*~PqKr_&t{wtMbS z)=1*4Ad_u1ZZVYgSSz@{Ri@V9wk%SIz$Q}8W(FfVM`VFhdo!-c;QZ0{w-!&?~B zzv(RZJQrRbIyV`4Rei!SGq7Am4q&qID#{*9iN(ADOy*rhjtQ zX*HsX-kv3}JP-q5T7anH?7AheycGjrT6L(RE2m5ouDvc|>gOzFx-tK5VY(&TDgB)o z?Nzv7;xOH2JQe_{-WH;>RL{u|9cf6=ISpYio4M@BMS{+`=vn#6j)WxWoRF~MVJ?jWeoy!Ak^f#9sb)cYg9r%p=WXGgV(0NjabwYF5F|!kNp4okQezIeFC+IxA z!&;xY?5GU|o$`D2%S3jiZn!13z4+WPbJKUrs5!mWF0a`gQINP8(LOj0Bn}gdLI`r0 z+S`SCItbAYAV`WDj&h}gkdOxm3VF3(&M1Y%H9$~YtKle~cZcD&yBulWs(@3)^i|ep zhx#YwRPLcM4=+GJd(90ILmYm%AOlMuF1=emeB^l9bP*%vYfwiY#(82W6WLS)n@|j) zk30w@&@@U7Tv%fVJ#*Knpp(uUxFN_6{m3g&f=uzR@x&ZPJ6djv{kh0}{OH?XB00H! zyTW^;Jsfs=5y42m z7uIe0z#~@@uYM;C8sxbF;#D?Sw+m(-ESXR6yGGKw_3e4E6e)t=HiC6qOyNuXwI0KnKs^YISzYpFcuvW545e8GDAkln_faWSIby9MWRcczu zN|CAg)`ex&$8y;p?%6m@-NN7l0&6v{GDU!_6b?OaO**c+tjFieN?oGh56oqi85d-w z7~H%=K$FVq3FQ=*&|fJEdl|>u@-w;7c7Hgznx;F9x}U`%UT`~nwgyM8qj720-F4tj ze01EIA$MWL5~nFA z1-~b-Cgbi3js&uk&DXKHB&p5ovitt6$WEy-_AEAcOe1UDd5)sK}cki-Je+q zEM%u1v{$Q`$gcRikbvyuc=f+GlHH%)2rOi$^|s)>0&60>;_pHNvQxmVW3l({SnM5j zd$+nB%GfHkKfHe~MSY`;y{NzN*--ry>sLX-S_3j+fCi|zYM_JS?V8;lcHCt{+3Zdx zX2C~8!Kt{ZV3Ufq-~bn+C-4Tk8peV{=^{8Oy@GQ?)`BC{h~QLKHPA&e7FN(##)jO2P2t^Bdj8l{%jJiS;4X4gaIaut#aM1+ zHNmE=R>5l4B`|bSx@YLh%JNOIP5!5c@tPc{e6`dGXHcXZb^{JBR*Wc2CXWE^bVr@u z^r53u)Bovg@mo)~Il$@4=WmA;NU!xjx1n&n*X?&k3Gm66>VIK_e|XA^30$020Hu!l zpV|-zPeCyQWeCWv>VIa#AkqpHB~Uc2|FI1P-3kuQkFWwI9#gij|7E^bps0YlM|GUMyesO0p1WW^;}jAzDS7*m(qZlH zBD^g$CXfP6NuYK&fxZu<-W&9~qk~6!dhN~g2fMu1H-=qz=k%Pbd+EA5Dd~^3!ZL`$ z{~27HZ7VirG9otR-r8M7Y+GoNIuK}*x`z5QcW835O9@RSXKv7##fZYG+OFL*r?JN5 zO`xgDtYM3zH`WKI*r!f)crW%GuL|?$v8aRil~;>+{>5}Vo!zc`pY`JUxb1G(q$oto;2Wt_{)N~e&94wYBSIIWkJ&QcmW zRB$fiNNiR*k%LtU_rYxr`qLMB-IKN9lvIX|3V`Js%&aJK*pd;W%4qp|Gh*&Ti<>vq zipw{d(TTLDWO|}9dKnw$bF-||yY8l`Vb?vD?C$t*`{oq0qOiYw)=XWIW|e>yWrXEx z%veR*RI)*&8g%(OGh&g}l|WroHY{Ij#ws#so!%Vm?j5}Tv^ngw$6Caq%60jHW~`!3 zE1neH<6(O**+tQl&-%sH+*Q?o3#%z2Q#>JLyrtdg_37&y`{VJTA5q#Bg7WnD>j$@~ z9KNWkZ!MBZOW|8W9#ppkpDP|zU8d)uOYSyRX=)0~CFq07%HWE$(E)CQ}N=^4#;K8I8bkZhxUZvQIId=2)zLw=8A$xl|dOt zw+-+xK@>a+%w-(bHoy}<4g`-RtM8! zx?C57N#j|?ifCF)8c*o~Vm!$gs@R>H7L&$P!6bjEVzDDFCXJ_pNinU8-hNt48czk2 z;#w8!83u7p@DSI?X3Mzj!~joX0r1FP=f|}h&qkzOsVg2E#u)zYX^CrIy|=NyF?l_2 zbI{x0jf!psS8Wd4+Xp8SL|=s;32{hYOSf6zh@OB$@+@5t9B*6>wx7w-nXZq03-tPk@0R{szUz70)^IR+95cc!^lHpG-IeZ1>Fw>#&fjfJT1t(K4 z{h}4PGxAt)vhNZOz-Cmtv+P)KGV0RLi{wfKz4?}iVCO7ndS%>ZgiV*x7V>sHx>uej zH;lL4jyLz>L9aa;t?#w_Q43qAg5xe*x-R1J3p?F$C&Uci5rJ9hi7eSMPYi}__hj=d zC@HYAYY2LB*WG*5AGc>w$!02jL)7K%VH^9rM7vaJS4INq-D>F8rn)XEZmoyCwb8h< z8(}oO!A~#?pNtsM*2@Jmv1_moxbd2M;xv#vOzpA~Zp<+-r|AKj*@30SgUa|)N=%J8 zQ;C;1FSh%$^3uv+Wq)yb^#OHVz@x!W3TTWlH2_P$D&PhqJlTERQvwDp(pGLY1iif1 z-QJnJ8L_VbQzCHYk~5FQ3vzu4)yJFI5yjLM73o`7Cj;mO5J zgEW(UkI1yba?{-c~&>JhG4b@?N)pepYnq)KrE7x!|blqQ`ak z#pJ2OUtJa+iSwAwU}iokdPkI_lwumyk00!NnpHgcc;#zEU=zjbb6AlbHb)yOs<;d) zvEn(8IAIeO5L7Xhj3@H?1X@u7Wt{3U8H`Jy1ad)ZCFrwvMF~`BRNW;c!E(Rt0%l?* z=mS4fXh^dtm%?(BGq=eG180!7_#?alCGaLVDtSf43I!O;Rqv9$0*eQOd zv7;!S;%@03mWn?(2tTWMDzYjU1#>}*j|_H7u_qA^7Eckc@;|~OW2BjBYAK4RSYN_* zy4fSml55=0s-4RE%IzYqiQ4r-Q&Brlb3Uu_NWIl4HsHxtBMNx#Ud1rmdiuBoJjnmk z^GN3oq7QP10CS%O^`Y~Kvk&1x_7PwrV!|V?E*Bn@lY-0A+J~->xYAg7P>6OcQrfA` zBd$6X9u%>Hlft8jtuO~2@`z@tgd|tpFK@M7&)EIsvf+Mz?0N!^+X{j*E(bIj>bROy zM5CJ1+wJF_N}Q~Q?(UCvhJ!&=yI3T=PlSYxt3+ug66(f`peqtmW6cpYH6q=Z6&|!G z5MZ8Xq7U7e6&|!C;w;5fAG+l!JjesQ;O}h$-WyyvSc@Na_S_!zIm`J+HvYOHUkU%k z`c|js7EA)iD?E|&)uD+}9;{=7LS_mMY?cCcUkU~Czxs=0G%{0g1D%KhMYsBk?I<{# zPeg$Nef{h0D5$m|<`~F8P?)Gc-;RQ63yL{X`mevhj)H0n3I(c!>R)R|LA3>i0u_bz z7ur!!Z2?=b#TKYPTK}e;DJXG)O0fD%>?o+_sAz$@1ofBNQBciMp+NKH`Zw57P|Z=H zKy%0XHwp#s5$?lF?ay`k?rQsOm#8A@K$mL=d+vt3$<{L39PRSc72W>yUVQg!IL2GU zY(=S}iN)t^OeO_^e{9B8Rz4HNN?}5Ivx&_H*_g0STy5nuQFKCyqlx8OTPCi$ieW-o zw27tiY)p7`;_Za|wu$auHYPkeWGBk#P!MaP!JCZ<>m=Sz$cvlk0NFB$w-X9!O|$^B zG2zi6J5juN@-Mt8XcHTm=TPXyVYsb`o1A z@peM9s3!LGcze+=3`YXCV!HTBb72 zTLZCmV^hE>QZnQRJ*WT_iI{KOV{+2s&kq+H>+l$E^f{PUc*D zc7Et+Y6&`da_w39p`*7c=w#8gXXb~Flqu-s%e80ZhpyN>d0d`0ub@+T=%IUSkcVf5 z&+YfO_oJR^3*D&@^=QKCn?$YNd$Bw1i|+WtVDo%Le{?Che5>Pb&)IY>RJSS~xT}w@ z*z5Ls?csX+w(ck>;9A>Pg;9iLs-RQu0dKkkV!icq?S2HX!})0$ zm?jz(EK6hno-s5Lk$OL|F@h-lNKdW$3f6z~ zl3t1DR2=GKpSJ;0Y&Rh>*&w?}VxvlN7eI>LN6#d|r8?0gd?uj}jgzM(N>ULAzL(1m&mC4GD@@CM4#1sWKW=nyft4 zz$D_lRG~p>d*x{cH0FD$LV^m@l_wjJi1Si~1{G~9Ptj;BIwMF@v{970bVVD@f%Kwn zQHhh(OO&JZdTCMMB&7;PV!c#Z6nJKgl{qh!Clzej^lGFo|y!S-GNINS`F z{NCzG#P&DfxutG?`CZ1h@UoB#X}S4x!X>R9+=Mrw9%yP@d#+$x>cMS3NT3IDvnCpk zY4zZOTtYoiIIL}p9@1jF$es|JazJe-Gqy`-39%{h)jFB6T@Fu(P1(M7E;F`^F$uA$ z#Hnp&#&*7+5S!|{+LmBv@wtgai^m>{gUwgv!X=siQ!Hw#k27VC$!<#)$0D?iBqmeS ztoa%fy>NbT8;}xkp?OgAwYhLna+RVNnhZ5xmkSrgUKB1gS8k#p%;HBpMvA>CIh-cU z%{Szt7sXx_E>tfz-)O>xxB1h#a7pGz zl!u!?lM5HcUKHDAwd;V>kqS$ zVDC_DLNQD#8Cy8iVB(^RO(-O&hHibpRuhU%C?qIYwcekNL;{;oNKh5j`cqpHicKhn zNo8T{Pi#pjHldK9I=S`7wj>mrP)N|kq4h_$B$VM$Y=XKvExeGE%0<~QmEllGP>Zeg z=eC+qhC?Aib$RR0goM{)3LiGO_U4#AYT@1yB|_vbFy2`owfl#i+R1(J z!>C<>u9tD4(;aRNj%=5kH{gXggmfq-H&5k7XWr0*4n^nY$-L;yGXl_|INdyv7oEBF zwhR_kcFp5?(NSziA{MkmHC}T$FFK0tD0HaWYcAzQN3k7+4%L0`RrBz|A1{=SI&Jr` zz$nVIPX#OPFV+wKWO^R$;6 zn@vOvAvXq!lr+eVJ4_&>wMsVbX;n!BH(Vc=1|AVHTIJm0t`b=kV{;HiIJ~2@H`tDlmzT6`8)+mzyR> z4fJEPU{A7XJT}dV8b2YHlm+`_B5az4G|*Sff_)+pHcdVn=&yPKzdLl>9Oj*<32ivI zUueVRKNYNhc;5}@6E|NI;XdJa3(tx8Zuwp^PNxyMH{F%)!*rF;2mz8l>?9CfJIdD>;qYJ&hkX!B*^C!KQ9-S*Gi!xQk02IOiOGN4ja%M!7DZE02Mxzc7 zxVM)*cDf^%nYPxITaaRM%CR${$P`^dZ+dYmDEWUiZEajO z+V7up@04|hE?MtSUJ;&_Sd(iTMSa2RLoQUPm3BUdT&Q66xOi@aXXrBC>43BSe;q1= zGFc6s!8{1yY6BraX}pF`X&wY5wg*Ch;!6$PzdQ)Q9)$oEt~GQ+^B|yTfRaki8c+yO zGRc_$ZugKOpwM2!>OmeufXhvU0EP4#x_Wm65%&j^_2r(76e*_3cvam>{B+EQmC^t?v*-uhx?nt$Xc_ zh$@oqbrWqK6C{#t1=nGj$cDuSK_ug8eW%D~f~briMG0^GJZ<_lafCK4DrcJhd)2D9 z1wrO|TiwCXy)2(*GCX$<`kK(RId6Tr42FSfPL3|Rsr+_3(UgLEG9{cdGgi#pE`cb9 z)7sN46*F(PB|eJT7I7(U2p413%$+-nYPj5Zs?ag8nFUot_M4w-=Jq#4HCz%r#ZooP z!@;PN$d_o{tb}XMjSWT#GGf04(F(=i`jaiSa&oWT8T7l!f($KYmT;T3v0{`UqbP<_ zVf{&#iaCC;b0v|z(0XGDXIqWcq68R4EmZx~ar2EqfLT7*8TJ!tg;sz|=Vf$^wW7op zMJrUP)p0G6fmRj_yTru{y9QjM%LdU3awFMFX;TKtfJsEeRcKJ)FP*cb5gpNwglsZDgYxIvVbVmn`{#)J3Q`COIrJ#KD@7CMf9k-1} zK#yG&R@LMltEUCjGs^JJ(a8f!5fcvgor8^r$K1<_>KmG?Sh-YoGF*E$=DUTfBfeYu zurOA>dt>a5>o1G=Zu#@%yWTUR?zZLKb_~_v4R*@OYB>L0Fu2d# zLiZtk24{0(;)?7TCZzV@+MJlUc~A@!8lB)eBPPxcj*O10C4DA{JTf}efeNnAi3!<> z!h~8r!3{YvAv;l+&;%&BF()QuCkhjqbOgBS$<~YG?Sz^L!Oc18gqSGtWMbpqdu71` za$-Ujt1zLg9Xv26CS$Sn#w8qjifso2tKq2<;J`l?OQyrl%sF<_-zc(K!W<2N3-P2dOj-p-C7O<_uiv<9T& zR26CQH0>>Yw`DNUS)Gg=H=6mD5PEY{(VWOc8L5OlAGxuKj!aZ0masoNH!=w$6Q!vV zHX7x|EJ;oYw`tzC=lc4C{v(IGUo`0Tx|5rhBT}z^B`K=d zyN5ZJhUg5oI(xdv2#a2>z|s($!3JkLSSe`(fh8ro10~_n^ju*n>Er^7KCnnj0sIWM zFy|^Qh3Z_SMekmurI>sM#}@3QML%C)Df*tlVFm9DT6j9<>@~6HWA;POBwH=v{y(qA z4?lc;?00X8_-;86A5gw~Q&ep)Ma_P_|^Sbmfk-Ic(&(AkJcXW<8fs3qyO zr^^Rbw~IXk-;ZEg`c3(;ciOE#76OAw)SrM>{Xru+QYrcTyN}VRg-giqwaQe zg0H#95B4WB3-?DyF6)xKSNN|8^wmEQbZ^=E;HjsG0dSYFOkaZX9@ljDx@>jYuEo$D z1MZq$54N^~n|#;(AWwmSWb5o0ON z^nq}!+)s|wo>^r$cm-^}5Y!#WVXUOsEr?B0r)1>|Gr9qdm4Zk!`;~_aVhLk)ZhzQs zM{b(YOL_6Q;0wZ0q$;zFf*~UoN=w0_(z1*bGhX;Tys>|4Fc?OdqO*~~UdLU3;!fqx zF8r=c{^k1QO?1~eaY1I@F2{F`YO}UAAJD*3L@A?5i@{8S5;qot23h&MsN$ zEUleYh}n8(ou!Irs8l4LQR~B-f~3_MGfQM=3Nz|EHc`7N9E$HSaw28MO(UsL#BoohMt){FR=F{+)|t2YdE{KaS{IHL!cy%D)mt zOQrgoL|t#!ee=#!{ZVJ5dFQGAsN2xI^HhJ-8Em5Z^A59L*qK~5v)yao?#y}I84lZ< zgYmc>Va$4?9X*)82yL9SvUa;vp2payMg*H|W$j{K*yuwFHsyh}=jVluPOxCpc&~j; zUf75nf=!WQ?KZ(yc1)a&-RWNs?TEfx`V0B4w{&=Lv@ybBPX(7<7z~_gU)<{iC#K6S z5|W=D!jQ?7$C+T32JQ2+7$i!0BpBYR`Dn1;TR+zwb|S=a!%j!g3m*@KAb=)LgQn5d zsjc?#{JJU$l@w(Rb{e1)(*vrr3L{@CUl4_*f|VN|ww7M4a~ItCSOI>rLqBu-4P=bXP1PRd)kS(Im-O_az+0(+6oQ|bZ&FYk5x z?$MQb`$8xht>8eYvA9^ZmOxIvz4ii8bxLtJdi(AMt9jy5-17E07>lcnF1d_1x=P-< zK6Z=LwGpwn^q-tBI1Xkr119<-(LA6`L@FO=Ga}2?TGJ|apu;W z^^7jKYc|$5T%mYzePe&L6Tw=&ZKLq}5m2o=M1*WmQVjx%oT>E|BPc0)0Yzb|^;RP& zsr3LwNvrkqMo?1H0*cab>lcimB=`V|f=}xgjiBUq4nR>@Z@tY3N^a=@6vdd<+Xc#- z?}xjT&&C(W&yVn;(jUr)ug1M6BVaKB;(bQ<_M!c&Z? z;El%&@HFys;3=$Do{-1T@4ClxyL&yw>uAxi@+=E@R(>=*t@Bo}A!+wDH-5t+#@8XHP;GOoH9U@!$m;TqH5)7GTz>V zu)R6%-r63!9o@rrw-=G$3&E9>->z@9$L)hX-%G*D^arkO=sqy$yZb3+b`pGTnBK|V z1GJ`dVIY$hFrZ)`ptq0<1DVT!0R{ZvYx5linc{!}W&7ZT`7%JuL+pSuet@N!Tt-1* zK&74`1D8=}eL-PB6<_dmW}~1okhTQufI?C5qI?-B@qi*y@Zx+KDDi+2QSkNoGEm|H z<)Yvv`7%)A0hJ-aOY>!*_yScTdHaIGfGR;l25zpGC?3$%*DxZf43v04bAbShxBdy^ zi|u~KwR))kBVl1c388o&F~QuSDHC|mUO^VN#%{bZq9T$R{S!lxXgtfcOD7URdm`Ct z6E-9RNj6lxZ%$GpkP0*vRz<8G*h-BED$rC>6>&kQEi_W7KvPLwykAZVNA478s-=tf z7ie!cLFhTx#yQSiA{?jmxAIx)yPjZA{ z0jHo*`(SR8E8rA_FD*DFpB%vvIz;UhI%S^gOW*m@KHe`A6n_<* zV2y&p)_6sBl)H!p2nuzR)-KPEa>XnPbRn zje^2RP^d6kJC+>aqRzE8!URTb|{zs$ry>@KL9YjtJ)ctCk?gY|#I$9TdC)9(&q(#(MzC);c zd+iRN;hWscACVyGT7J>dv8cUTtG^>a-n~|vJA>i=X#HGoaA8g^K0MI@H+)wp4LSQV zc4QfXP~7rBywR3UQfv?Qo*{V}iqc0#L*5?Wtzp-V_4!V3FVQm$g>R1f`W^E1w5owq zi~h-}mmiZE1o25gC_XJeHZur9t$qR6&ydjX4E|gAX`a;e+hxe zshjT<0a61^&aF7*Pv?08L?NpAE7^fI-742C5S5C}U&{=1V$|*3+8NG5QN7sw)yz-_ zw|&k6Q7Pa2jm$uY$EjwasGe{BdS)p1FmR`%3>3|^n!lADX=6CJpditFtNELmkxopP zHfGgF0ipS}%uvS1DuJL}M(;aRN zj$G;OZdKw}!I0R0B2+7-s{lJdJ+-DM;V!mGK!TEUfW4q5B&IiVPL4XPZ@IX6aC5K> zhiHNfH^6xd6B6!Pqy(BEM-6cD!i0ok6R0Rf6BL#L9KbLkq1c2%g5q$1a~LKh6q`^; zP|yi*8pDKyViO7pO0@wFWt_pOw!AYB-<(+Id)c#A% z5bk_Pfn2|gji+9J;@ogB8oLQVcg}_9d<{hKo)ChhEJI4~8HK}V^A0cGP7!VugOYGt z`1z0v1)0XbNz6CWxbyHBjZ?%gW5abijf<4fI9Y5Ny&y}C&x<3_IK`31r?YB&Vov@I z(9Vf{jYAz`<1|w%zgQ?(szZtG!UgJ}(Qo{_a7k%^tPbY~G3ub%WEnfXE!CmKRz)3@ zZyTSnRtH5up%935(44pY5^D++5)=wF7cOJpx#fr`{wiExpp+0A|B+Q4lVG%%ztV)g z{0%}OU4%p5l*;26Mj>4(TR6kv%#aZU8b5^sYXP^q8Bw6nrBLAU#R)pgxS>>5!Ub`I z)X_kHz(^ewMuh?*IXg9uETp8sP91NTl+VgvD;{S#B1)+t>cEJQIvW2fT#VEa?;})h zmvO+-QXNXEp{RpGM&nb~>L7oW+zJDw&Q|%GtSOL>C={saRsKeyV7dPeYjIx^CJpk8 zwLi!O7#masm@4iyb&)^wjzjFf5n!sM)^IJBrK+*LNPwxpU;E=+RE^zJ0!$OFwLi%P z7@NZcmsWTUkkGX z#mZyfojW3>1#3jffRK?g;IWt6$|&OqL>k9q-)D;`CJRI|*<;^pizwa+MDosK-(!m? zfe45ch>pF?7Exj@5Gm$*w(7MC4i^cNz1%tZqTiHprTik#=>2-=xAcr&P!(NxbBu!< zh~3g(ZcmDe$^yANj@~CLjD=WQmGNZImHVW!={)4fTby7fDxuX##9fOX*vwQVVn(rOGnKcTpL|_rkY`m3a?9Z?=cS=nYr?o&V_1 zerq^)p`OFi&k2Inpez`aWKbw51x;aQG$;!alR=>{Ucj=emC62)Hy)u1E_dyri`g{Jwz ziZC-8lm&^&pipC^aH|kYH7Hm;6;Giy`O+H&!D>(v1y*HHsF4t?2{WTXS&*0v3bkGe z*w~e7P-G4oad-3l#r3`J!zVxSC)F+7RbqmOG$V-AbZK27GN#g^tW98?Xl-KYwSr(G6A(ovLTq6Mlu9OO zO)P`7w)7fXnUEJmCdvyf-1}qX=nJ->#L=%lYO-Ft#fVsMZwPY*H7%NW%+L}TmxBo~P0XABVH^A~Q<30D zGnE!fPfJm8Lz#$56Y3@os+i<1R5cX)jgtGXiWPs#5GwRqYi! zmZD<6nutpK)tWf}mY1m1W%EQmjUcf%7>?V$h!XNtaK-fZ>+RdRqu}Iz|9s!Se&IP` zSfE0o{#7!LDWP0{E4*JsK&Zm1uV)64$NmBVp(3mP)mcHJl}2^9r!>zZ4o|o4T-@7f zcjgRJx7TYAr^8f`OJI)OHyj|sT79#K<()@y%d6){JDuLS2pk!b2S&b>je>q_fMV0AZd9p0J0_{~<1BVVN?jE>zSA{?JVact=^=v;{5(ik-!ARd#} zaCwjtHH<|i*t1B9B0$znZ@5mlB!){pj_i9D*_jvAi5M=$w*q#ZTbc>FK4K=Mk;eVa z%_LFBS1}XHuHJU{^ky;>-%f3{hv(M^ZMlFCyOF6$6yRdKl*-3nch0(TtI;ET|Z<6{-}ya|V{S zf;9rM6O^JroPii&IRl!4_~p^qkGMSZl! zeKL;~hq^>*Q5h?a!8qPvsS(DB*d>F4Ajd z#zv#GLNoH^N=EqXN!5JzY;% zyfYE$2W-~Eq6Uog68xIAhb^cU889kPy%QNLSRC2xwJ*l4H9s|?-d=u!i0Uo*h8@=R z6xZ3iV8UxGC~$u=q(LrH#AO;rG@Qm0&>;O5Uudlj=cx&3ko^_$mVx(B!}J!76eHsD zaWsc-3`c~Dl7hO$?ckZ(Ubh!(Z-el&liJ_Aa$*gU*g~|qqb#D)C>QRKQMTZq3^4+n zaG;D-z?p6DLfOd{p;5aZJ_^400;j?S&iCeUOvv0Ck22MV5&#r^P)SvIlW?%qhr&hC z2L+?X7YP?HErz#^pS|Xmm|$DD5GtCCzw{pYa88B?;l%K0unTW7Vijyl=M8U6!hb8Wd`J=YEZfmf= z(d(?wdDz{J_rYq)v3o^WR^`>!s-GK7MD-L*iny}MOFq*k|73pK-*VR>9vt3`DC?Gj z$P=ET@q&aha)ai}Lrqu7nYhKi&jF3~bCKcyf<`ANEHey@y-IXdh@ieD-e znt0N}99@ovLU!_zCY~uVN0;Il=rrz4JXvCnF6SD7PO-E33K@5AR=+iDZ@Yd$XL~zh zs^cQ%!JIC*J)+JjVO7XnDmmT^sVL4gzh9&>N0$x7K&M>Y{6RtYbQ*R_uD>Bhr-hrM zboyEOuDMil<`+^?UTgkH zK2$(+qvnr@3e3^vyb;i;fz$kPLC@U8fTpE^LmAR*;F!cc#p#u}$H5n`#hEKy&KE=B z)Fx>DSgr~uS*;bWgcwEPH0sUovJ+VM8yq>P>j#B?u!UB#`ck#9MsF>ObDrL*!YXsFRN1wOf z9*%Ec9}GJ&`a;BF?xJUUR@@dcQ!dc)=XJg#1 z@RX?Uw&c5Hij%7j){`%$ako?HFTycoF^wJL#W}H2QkcSqg9EPCP;`Dv>>h>PD4pLT zQhMJVb=vM`_|5aZs1RBRPHlDC&W^fcr?x9Md;6ntXSlxUZUG*~SMpk)|ssxu(RRamqP+lZv!KK99Kp04g>lBz|d@1}i5cJdyq}Rp;iMIYc%X{7Jow3`Cv@Zu@f{%wtG%hPR0G|Ts#KlgpH@G132nvnD%IAqZ-s$RaV~czE zVY5fov_Y;5jdkNcs zQV71>>+UMbrHs3R*FV!>>~;Hcu?_~1YKfJGs5S-0@e4cMu_6d5Yo(F}yy5~~+?h%mCxx^SL1g_Ks#=sceQ8dLEPfv`o-x=??WVA7K8BAD-J<{x~ zgm#l*fK(C@*=PfsuMKgPL_~Jmz=rGGMxnGj7>zEvYGA`{pgV{dv%^4*m=f0A4b`FK zN1BK|8- zOf%UPC#1w3ssCES9)tYG!y^?DB&ac7!XA~}Se@A0AG-f$HAL$aCG0fFjmv3IL+)jd z?VVXxw18B?PL&iEyR6qtWE(42SsJYSR=Na25u}9O4Jjl)zA^NlLl9pj16;vz``iXS zu8^a(;1c%Vq>+1j*y;4etVC`~3oCccf5?+$D@xua%*Ip5zT}FOS;;8{tlTYs$rB_d zsvb(%Sd>EWC zW2{9uFSbWyKbl3B&Haa2cQF@9go=?c1EN9VP}1>*N*IsECoe5KRJ0EtljgwgU9Y2(IhzY zx1t+=!S0}8ksenjWx-=YTpIb-wRzx5Hx#%o{QFIj*4aF8W%dJHifXOv^T3r!C~(Qj zTG!=)dt8#Lj4$Qw){S}K%3=)Ur3l)(ArD;H*#=xnrLCLuz?Hq1z@;*wbyFU=vWE+} zlto%tnetAwZw|Y=Be&_(Em7=7w4EoCydkdaOav~a$<{;j(6j6e0xr!wS`W_ySN7lmmu7k`^>F^Q z?VdjM$u1S(Qa7lj9>mXzD_h=xOY@u-4wrk4zi=`6Y}C?380rgWBK))TXEJ`?cc-o4 zp?g3hA`pb%4W1eC-P${~?}mJDh+T;N;)w5-uaxh4Mdx_f-Fs#?awm&hplOfC?ahN{ zLEHjOVe;DIh0df2K3T7EzuxMO+QVJ>|0_rPqrFal>+lC6?Mot9wLWCd$}N8{%!_X|t0b&AC4M|RD+jxfU7^qxyW#@jqvotwS8ha)j-bMd%cXxb zXT^3k!wQoF(G?eue{aqzR#yruE~Wn=J1eJ*tail{i;tMIiq(~3S3J%7J7MLOr7|&2 zuv77I5%Ib482NJQtP$hg?$@z?#5w(6%vtd$Bw@uB&Zo>-v3Jj~Qv8VPy-%96iq)0E zimTs$&dw^vyJvKz_z}+q{>hwGtgaMRJTv-)u)5#;mf1nOHO+;hPL+IprHtXRazt!6 ygBK3Gol@s|o$=<*tE-yFd9!GOU~WLM{O*PZIB zzE#=NXExXdgE9CaVI;7GKp>2G3Rxf_fsu`MdDyaem@Pi=9U(wG#0SJTBqFjqE2^?q zWv&&m)>Qsut`MG6yQ|{=U$G+A`ekHReNYrn|Kzva|L^_ce7>B%I(t+s%IoSI#r14a zO;_d1`tx#HPG{xh{I;%_i>Hr^bzRog`sCB%{*}qis#>qBi^=({E>52pFWp}+E+-eW zRW+?=%SGY;@AOIWx>~K>|2+Nj`APA?N5v1T%X0eWN6lwFJ@tR`UNO7)!zV@Y-f8i= zobSK#c<*nXxIeNJ?xYL~_kYt7?q9MK^_ojE zC(6G~N7RYl3O(CP{ZIB@d1fj+a)o|iDk^e?J~b5;xk5iQ6&1NcKQa{+xk5kQ7xlIM z8hWu@t~M3)^n+rjNS=IB`2Rk+a^RT%U0?Rdj#{d!vD26K)hJSB32IaloG+)2bf*Y+kM za^Fmg++faegr`JqFy}Y|7&+(qkj`p-kruhZoZ|>jiQHh$5lJ7DbFMGxMD9CjksHi8 zj_{Po4dxt203+vGZV0ROdufpy%sGzml*o}ecOvZPQUs8>BNf1yIyX)y>A#XTb!5&- zg{MT0%pIu!M&#T$oydJPEpmf7Mjwm~+Hp+3V+0A~%?G9082Txob+D$bC00a)UX?5uOsc!JOj=U_{PccJ4&( z`}>jm_Wt#`m(^lgO)lN}*5Rvk9~QI4=dYcT1PmpIb4qh_fv1 z+=`LquC=8{t3S75WD!T)@@Vbn)(+1^>|5^oT6(nhb1PLAak3|m*8aYgDvLPVlgrxA ztyEdW>7HCxe{RL3JaN7!m(`zJF|vpgKDn&^+=`LquAQZ?#QxlhkwqN*e}BK*w5}i9IJxYoS-&;heAX<_X6~2{- zP(gGcDJp#D5TSx-I8s#jMj=84(O(evEW2BkXRGz*T26Cs!FqO4O)i#q_qSEK+ad3& z+3I2`yJ6Xv^yX5|pK$*;*lTDh67?NH5z%*ODH8P{K@rh|XesiI1v`&|BLB8dKN6$J z-&U)XM?`O;r6@9wh(1M2QDhzwJ&Ts2$UGwYm+$TKj@yqG7yju8Pc@ru>GW&GsdLhL!oQbZsWq!61;vJ?>w z1u4WXlPpDqL_rF%y(CK!aZ!+Bv9E~WC`cjTC^;%3LJCp{LQ0k*!lWRDz@%g;B324g z2v$m#A_Ar$g#e~xDI#hLQV42FmLfu@Aca7uWGNzk3Q`Du`qqBGQm@LJ{%2OYPpItD z6}ut-=lZ%AsW9Jl?A>aaER5)7q{4g;qA!f-Y^1_`N1`u`=yRmPoUQ?3{KJWmV?@^@ z6*in>F~W!*NGfbN$6|yL9g$SnaE`?YBl;t$uuhKM--499T@c-pR9Gj+l!OtzlT=tI z$CQK-os?8qC&!e85q*_Z*l>=;BtOw*NresPSd1{D=aLE=&aoI_L@0|`76k=Fr}WL8^-|AXm$iGEepSxqn=7p+9~b_A zPcF*ZeW8v2zM4-SUWod(n&0atVt4U`SK7rBULh8bie%AB3UY{*q#{SOtb!b3S*geo zt+617SYs-3L<=s+Ar_p99MS3va&%VTiPq|Ky>?Tmfw zw<)OI&+oo-Crpd!tXkBQi|Twe3pZs9eZ)?GzPPB?v)bJiYJOwKzv~wE!GP##5^Wzr z6H&bNG>P_*poys9dYVKVNzg=;@iG80PY{i?AhwlcDUsPh>?X-lB9nyJM3SXM z=1Sb&@sa=HT+KWo4kj28IV>YGM+g8)k`b971o$M$h|CQFco;Gs7w4*Pt{3P*Dh^Xz$X{~ssws(k5g zBK^X39E+v@U$3k6+1K0u>Y!=R?w^aH2E<3Rxs>v+yNTTZQRfw6 zmo=6CzL!3I6`|dk=x8Uly3hFYog=K z)XEGsu~87sPl8z6je_WtthL4mmguRrFUUSL4eRn|?w&~@I}11W_y2WLzqzSSi)A@j zbp5v9teijLrh2zw2(P#>cK(Lg8AMu7&UCao(H&(jik(-8oj|0u=xBAnsdBTromNBr z%x3L`KoT8+NJ=+s2~vo9FOt%Yiu*;H*=l+f5fq}DilX(Q=EV>__GPH;N)sg}53blCmF_Xeq=M5s{Q`RL@ct6||4x1gH35MCkjdbc?k(&;Bc zqH{BGL4$v(7ZHav_==LKfhbC{IQaM{Y9OkSOoJ~Xi5iGHB-7x_N1_Iz0?9Nu3ELV5 zZ*C>lPRoHIOWXT%!Yf2iCDYkiJA*ojwL|Q{G7X)z6QhCHcx4(oYbQoS@_yS{J24st zL2GCq>#Us^4Fo@ZW#@|QYBj4OZnpW?T<&eisDHO!m-BizK&-z02SyegR`d!KHTMr(H{~@<89Sq|3{ZQxC#U_H?lM?p>OjlKTF}ayl z?u&o@9l<9b70c=L*1d55i^fViog&zOGotA(TpJp?&&_lEb96im(W}$~@ z6*ziaRQ>N~_2&c{WL-VbOPd)1HM zkG<;0@5f&CHBfl{Pg{}`|<4JuKDTvao7Cx{kUs>`hMIwl{o$-5_o3g_S3c_9J>}qe z;Q!R)1s{Fa(Z>`zN+J_Xn(Mvdnxtg zX;CjP-HoWtnK@h2f8&A~v1`Nh-M%y*E87{8#j6?0bRI=z>dU{k+$luW$wQujwmrDM8J5~>~ zSBlA@@91h$$)oS;YEsFi@9An%$*1q{Yx?^3btV7w_T>DwuD2fVIQg`=e`RvBa^FGp z@Q}rUM>dD9D|r{qBba~0&HLuMQs)&1y`5JG=G4>eGjK?^|C^2`|59hK(9`5IFhY}m zo0%p*cM+QW+srhHu2+YgBQ8Ga&7J6)cF;szeTviMzdZG2IrTqUdlB^`2|-i)7-)E< zeGD|bLhzTK?#Q)CT!Ycm6uCBu>o9tnBG)EyEk;jMz#pr2@T${wTn9ug=X8+GF zep2}VK5^gQ_wXHn+fRu%KXZRmttRJlci%tjgvMuKQ;~kv{bRS1hF6H|5CYwP@wrD2 z(sXzCe!=+OV)FRi(?lX}?xjv7iR%&q-F`79>rRN98@_-1`(Ig0&NsKfJ8>f}R0!fW zm~R~232__DH_rHsd~5sLUv=|zzjBF77lODA<{L+MLfi)Pt=Qk+2Fa6Hr)@V9;znH0 z5X5aT-#EGx;x?FXobeg?<~ongIwh`i2;w%FZyenTaU0AxBHv^3&2=K3xDnSr1aTY8 zH;(RvxDDnTXM9G!wTuwfDRC`C5Vyg6!u~B`d@^sO<1^;Xjnm0@;><`e zZ)CnnbtlA)%p2+WjJUaRI&mY;kOXlX%r_$6orEX;cL&z9<>K_q=WZ%H*IWeS59S+Z zd`8?HjCJBhoGJ-)59S+3cS76-^Nlk;BW~_$XeVyOIg=o6gZXA$&j<63Gd?43?y68H zZp8VMAZ~;C#?ft=Z=CTNadTIRI&mY;r37&s%r|14?DcO6aU0Ax&iIVDxvNHk%L{k%$5MV!}(RrTjpOtupzc4Afi zc@?9III|P0>d&hfRm2_CVpaWl6{Ctc!~fpi`DSzb&+V$3+{|}+tY^ilx>&nghTM-l z&n_3`+-Dejd-@mM%pYv05=8ifiV)%7*69cmMELxP5aHjZC&H&ogb4pOJrSat0YXj? ztx&>rh)(~52%_^z5aBzPi0L32odglSL5UDS^fd`0d_NK)f@otBMELe2LIlyZB#7|c zMuZ5WNl6gln~Mk$L{E|+!uJvpB8V0wL4$9S#qEuMLUeMmyt}_9<8EZUt7fZ=uwmeMdr{G zw*ho|*zfLfP5TsRLob`{==5v;D{XEU7tPC&8_<8^X7=C)l&VCOH9-ln^Q0;frAtsk zY&oe)M0paF5PMCk5)tqOCB!C^szgLRK?$+Dq$&}iPf$W^E2&ES#=!1tf)a!ML5phybLU7W~Z+14%W7ezkrvKTJtz+!wPU~HYV()W*tgl-U>hfL2-W`(3x`^II zsLS^p`nrftMyShoAo{w9zDB6a$r{kbKW_;6MRYkrUBmemql@Tygt~_FD@GU50SR>t z=U0p_q8}3K>g3n`9Zbpl1koJ{b#?MfNf*&833YYyOGy{eISF-j@=Hk<(MJh&4d+)( z-VETOL9{EE>(@i4WNSDL4C@ z%RhOx&>N~Fxn{1>=pLFbQFi7%m>s&>P6yUQfLV$mpjsTxV5d!?%bOeYl3xz2l z8m7o85M2!l0*KD&C$?A0ymZg4U(U-f-1o!O)oSH_A=rH>vD%9H-`xc4u9)yjyJEsC z#EMB2D_S{02(fY!g@{&A5JIe=L?NP;6oe2fDN%@MMFke$@89h1VhWYCc0sQnC+ItJLr$O#*0_TeE(f-CTf35ff zS7(~#*ZvLU1h(Q$431$285>L+1IP)q^k+VQZR8JRAGiH%KW2Or*eW}g!BNcMKoCa0 zi4Le|BYgWg;v^l#99nKO<`~h2zJC=CLVWu%mNkL=HU1v31#$#)=!N4|+3 z+u#^xus;U)6KLu0EzF+=%RhubTp-LVVE-Ki+yW76Zw#}?**|0bjbZvM{f%M%7`qGd z^cmVSpS^+9v)*0ISKpESjbi==V$gIiqg{Uk;@JovYj6}ZXt=|SWCaca{AlN|e{SG6 z(Bs-OUwsUF13S>Tx6dQ{8^iqdhX8*14DG#z+0!BS=2Lpe{b31bdjtIee`AFoUcO26zH3{h80-K=$$5&#_M6u?>!51_y%h(8C~4p{c`B%%SBrg9GuAIch$G z{j-C=jUL(G80OD(i!on;j0rR~IEESQkHN^RV88f>9folkbi6xgqwK&vF5Dfo&Eafe zKHlJ4Sb>8x*s4D;%gqvO{|0jkTlF>$$1sQe8&L*RXll@W1_u%_gN^j)4o5ME15p_J zIvkMSr0KxlBw8HBESl~$=1?&(LENUa{TO-0H=o1)`N?22J+{Fy%wU^;Ha(m9Dr8Kd zt-~?QVSf-3OT`$b(A3~tn886d?7vUFnZbt`$m_&gn82g@8^io@_8901G&MMe8DwlR z&=Y9s&wTy{vX9$}j&}l&ZEzGbI1q%9SHS`GY^aY;(oxKz(~CUxhULZe?LwaZQsJ|HJkc@`&_tt zXPdyeqI` z1ezKg!wmMvAgxA>VFE4vy@mPHVEKm-hzrD9n7(7$8^i2zwio2-v-CHH`D5%Z$kS(N z&wTa~9qFHxPrSdx4%nOM|1BLBk!!ynPv%94^4eCaC%R_0J9b26|k3 zW0<{x1RnSH$(TM%e`A=x{t&=VpP{|M+51LuJzG@MRr#|1{Cr-n>&eU8)uNnMPahZS zx~!}9>GR@cIh`#oCl|9-HLYjMMdAPN^hxo$TCLsxJpJnNnNd0 z<#busrP?z2U)<=s%Ot$gE|c&Iu}spmiq=ceL9CZF9ioL3bPx+CO^0X&1s%i+O4A`) zNP0ztf^1CYihPtY}lLDQ%zaKr*e7Yi{NmFP=02w*>{*&H_wGGmKOV|4KmQ#W#Hvoss2CZ@@+U@y ztBNV>i^`T58Bfw=xOea6#upK}ah4{7+HGQFe2^xC%8eKqPt#;jxe+7d!+jZF-KkB> zSL>^4{&G{A*c1Po+$SHbe_!7jV|7ujIu-Ejz!_=f0I>h7%lKErh99}{f6={d-0gY0 zT-jaXz}^O7+}a!OIuYo^S(-cg%&{&Jfli#EH`{p|$T;k+^2p|nKXU^Cc)033#x*yf zyvfUfze#d;{JAsSQfwQPfoXZzQdAz=qq;BKnd_ew?CtWn-i|(R19_XYo!G88#>82g zJNnG^`^TO*LvPme*7Owzo;Kj_lx^M~fc?9wg?&T_k2ZJonQN6FnB8W{wSR**b**v} zcSoN)#*Wek0B`Cn&DqXe8}kE62fkq*+uiZ!ZXg0<-ZBTIH>o-BH)-~cKYNz@iY*)r zOw7Z+GKk~t$B0XU?cDXx3;3paWOGNKxi;qxl*F_>#dg&(rq0ye(dVu|0N_(+Y0i4) zG^qT+zql4yueoD-JNmqF_7m8Nvov?~nPY4xuoGwK&34`fGLG9?j&tIUZ0`6oHxPiP zKf#?kOLxbgJHsu-wm}(~7A}g%=B4e-_0J0Sc6nTHN1wNWydCjo$(T4xb4Q=Ke*f4L zXXwp(-gG#%`IH_8f5>dalktZe_~qt~K6AY71a<06-5q`ISUU>p)LELdowSqJVl;qI4h>dML0det4*o%O04bk|PIf%$EgUHdnHlh;bO zv3K;@>)(0MC(qQK?c5FI9s0I;bbH62y@3#ndhHEpZ?bdXZxa0-fBsB27u%*~U~0Gx zXZtbovTi$j{WF8UbspQ@(dVvBJDZlwcI7c9&(_}2XRkj3iB;j~lV|GAdhP~Uum9`c znz?%jfV?DFPu)??9ew6Fn+opKnYugr+%fhP+^MrPXFGEPNylw7M>=)Kc6a=_8;HP| ztKEQfHl9c4=J99Ga$m7+RXCGp>CSfU`jvxknnyNw^qCt--7#;OjHxqqcl5dI4*>Yo zS(>w+IUR6qKBb4s?<17wE$y_oqt6>}KLMRMOLIq`Io5UpI&p^HZ0BttBDSS9b@WD-5q`I`U8+w4vs!`mgcNyPJ_xH z{EKUW^~4?1+tKHZv!B3DoTa&=&m3brft@%*Z?^L`ka67Ba-0))WOK)#xq$#Q{R!^W zS-Ly^+!<~uwhhX_v~W>8HZN^wu76grx69*tJNmp0$+TAJbhfa|F^EzC*Le~{=;NFU)Gayaz3jI`oEp` z{I_ZI--^>G#p`Odo-G%rUp_x6KKQ8kVRczf-~6Z<^65$8>eqY4?Bdq_uz*ltK-&59pKwpzH2mV{M_ETl;eQ`hV z-x}?EtB{fJkCe3^i0$B7jnV$Tvi1Y99n6^+?T?kU_r?9de~ZqUC;QsJwzI#_rmrT= z4!YUh**o!Xbf0~2C;s~0D6V$QR_o0$C(nx8oAvCXnp`aJ7EKK}eO}yEv(?3Naxq&~ z)7sSnH^d&d99$~CB3KLZ8#g;bK@hRuD@Dlf#u0*uO5Q{S{9-_4wbP#JZO^07&5%c2T)&b`<9io*P;z6v;G##Ra z8FUZ}Gfjst>Jjro^a5!*e0hw}K~&W=9cOVm{M%IX^n*AZ{%xu{p2q3$Z&TIrVVn;C zHdP%T#p&>GQ`PZtoDTmsRUMzi>F{q;)$uG&hksi~$IeCN+w=2zHJL8wx7UkJpL6m- zaj_~LHaNcEZ(9GVtL+Dy9@(J$%UWSjqO*9u)oD%3X?+_m*PNaf7+0c}C=5lkM1!tGT~8Q_=z0c+5;ZnqD59|$97@!?grSJuWpF4_dlH5s z+LOVdL>)*Nis(QFhY~dzVJM=>7#vE}M}(n>K4NevQL7M!B3gyPp+wz47>eiy28R+A z{4f+z@CSzy)$}kFQPT&95|!;R6j8PZhZ0rhFceXlKiR2Quc}Q!KK-b0?CSbJe)o3S>byd%ZLS7UJqsF$dd3}5RMx_XL|NmGD5`E@M54NJM-&ygFd|Xp zxFd>cT^Nz5b=(m}B`=IPSn{r`Rk-%u?drNs@TWUV?fT}WJE059&Go}Ex{@1O5l@9 z$OU4xvLz6?5F>$DzHA9ZF2qP6)-ziIkqa>ri1N2v?N>Kdz1bDc-Y*;{FIVpucUP_$ zcXybB$N2xA%bJ6m0Aswz#d1|H9ISG0DGLJ{lj7R3@uDsxMkH1^W5lP$e0F(N zyYr9R7@NeJW(@kccvH>i%ex4d#0q8%_{h1uj`2sVR@QJgv&E|jcf`tM4R^UJ-$V=- zw+h|Oo3pvQ!!lyPLChqV{i9;~rd&h}H;9_#aF2_d+ttlHCS3-BlN|7oyYn<^^$kKN zIh?!Eb>%NF$~Uz^@;or!<*KS;#v8;>a=g=G(oUb=#MbM)oXVL+0E_s&8t~B1v>3eFni#CNpWD&x(@>r>t5(sv;%~Ji5);V zuxKv`0~33}E>7LfFILMiyJydeX?g$JWIp?q+u4QV8uv8J>hx*xayFk&=GE(J?sJ$W31Vz=MpRvb7^1o;L`GD5f*7LqD2U-y zCZ8b9Rr(;ty{+>KQ9Ok59E+B(OO3To&{VpX$fZu8R=SqRl}=Dtx|Ya=P9R#kmdJHZ z;9I(u$YoBTUAmUYRqnvAv&soHd$!#oUX@$j+S!N2jVs&bYEu4qwmvELuEcatK=>c^ z<8B8K|50BIebjfm2HlzG^|gCiw{vf_d)#WeTwKijLsjLxecUSPafd&>-M%za5ngGx z;P48u1?y@TZGk}-(e3E!5^aY;7t#3W>Jn{@K^M^j>FN?~lR+2J4(aL=ZJ9wA(HX_- z@{hMEty$NGbk=OUp$6^5hN`PQa?KKLi>|K7HA}QGy1F9QEYZ&B>WW;mL~Em~D{{>e zZO-=nxYMiZdNy@c^r|Yuac8$uA3Wduv)gsE+Zudpr=GiU*7d4;MeFRdqLC2()1-cL zQ$2ST{`$t<@pLhnuAH*vD*B4l|8*3JqTL`!Br3RB6h#|DkVq7BGl`--B1k0adXmIz ze{F2$7KuC7xt+SpWU*IAgG8dln@Nn!MWWi9NsP=zk6WE59Lyv}<|4rg2@=0rRP*ZE z-JjvmXyNwE+o{ghNL!5h7~1A7}mcnWmwVthhhEOQic^_Ss0e+vqV7_QCAq2=$(GBLqoH*E94iG zMO9x_tI7GweRoy3(WZ-E-N5}C>Z5L!^X3k9cd^vn4YaP8i^KN~bU$#H2$!qd_2i|y zJF;4B?mXZ>GwCO~S#p2g{bO?^+2Ni%?*?E9~F}j{kc*iMz{Y=c$)@ z`DU|P*dPBp`ab@%?Pb37CmsIlLFI$|`+bA#oO$^{mRk?Quzfu58)Exg`ld_&(0Tvv zbZ|0!Zf$my?qs~!iPmP6$z3_0Z(`=|eDVMLK9bFqrVrhfrp+Ip9r&q~s$AC(Ki_)b zM~?VkoIU(=+5RuOKLYFa)c!A(-E6ymcsoeVwi{k?4PxgNqAiOIq`P5mxn93+;3atl}5y&L}ZLU z_K)CAGHn5f^O49fJ#WI4@4iHw)7Du^mOL2xvq}RD`m=HmLVs5Fap=z~0#Nj46$DNCdsNi!fzz`CkBzRE zxAoP-lcfiqJ-u^J%ijOR;4`74J^BL-f)@KhTGv58KvEo2WVaq`2gMP5+7gy)PWB$1|Ym=g}ZGH)I01m%mJ$)0Pvoj_0jX5 zm30K(v+@qXdsgO0&wEzJL3q!~ep~DGPWb?99SZMRB>@EQS((S+JuCMxyk`{vB;K=% z0h{**?%;UqU;28S1HMe7z#_hEy)%$6Q|~%C{;bjfgZ`}CgV3LqeH{9;iU1V-Sp`9r{ssy~ z4o~+DSZt0!2mWT1VNl~gO!GS0+Kk5a^>IViaIl&~Jg%f;!J&rgamKNAS|)u(DC2$%s+3MCK(^sdK&faVo35YW961p+!(g+M_61`G%o z1ziLL41gj50=m}(KtTJ-{0A5Tef$Fq0t)?E(QjJ{6%PUpv%o3}2=r&?ef;!i%hNxT`SLW+ zMZP@U3y3ez0LXwZ&lrI4o)zx4HIRAOcibGX3IYJ{*;yYw?^#(#;5{qv5WHt)e)PO& zWgLX}tn9b7j(N(LXRSlwJ*y;u;5{qz7`$iY9)|a<0)WJORx!}zJz3U(!qIWgsLo}}keTeRLs1MP(CiWrv*XKUOD5!!TVgU5W57E6M`XSoaWk19S zsKXy(5K!pPihkQtsCV3FnFUr+K%hT6@8hRGEAJ5WXJsCP{;b@OpZ=_zqtKs~|F-1m zo%$h`JQ(`3N&^h~vvLnYe^&N!=+7zwQ1oXN1Wo$uKNuV3&)l_@P!Ik9gP_HJkk)n3 z574?A`2l*@13y6XI@||nTod~M?YFf~kNNEKEME|10P@v zKzPpzciS2W!FyIg0N_14>!asAE9(fnXXPD&_pHp1p7*SbgYce}{kGOY@Sar=P-m{8bk9e>EbWWfFUtr>;V;V|pwOQc{kEl$ecX4{EU=0K z0{z)}A3yzBd554sEAtriXXSqU^k?N9h5oGkwX&87gP}jGG{B%gEB7GuXJsFU z{;VPZMSoU7(4@ciVDG^BVDoTa`!^XM{OM!T`a7 zcIE+C(8@dp3tG7cVL>bV04!)_9fk$10?<}Iy%Rym%7?>(R*3+@f>!oXSkTHp5DQv` z0E-2!qM*rwjIY3Ht3}4gf{0PjB0)^=Iv|MXU5x_~&Ff(xqI(?*M0BnRfr$R~84xiF zstAY}06hXkbgu}2i1u~)4>1Dj_=gw-6#BEG-?kL$9RyltfmIX`=+Dmk`03BeI|Th% zna7|%EBE84KP%@b^k?P2EqQt;fQTgzhW@P50E7Ol+=I}cm3#@q0|0Y1&m+KG-7^s|SNjYG%+)#@0&@+3kOFfJ10Mr(jR2Da zbG6R}!Cd_dNHEtB$WSoXD8R6w6%4l(k$Dt&>^!gv0|X1&nFnA&EAtpEXyqP+1+DA@ zu%MN77#6e&KwJ5kCxW?FJ{%UbN(2xVw6c%Ff>!>4SkNj2SS)B21yvRtC>L3LS?GYr z=6rPEZ^ju1H5vqUuY`k;?)7*O(!L@PLi$%CLP+nbNC+7L115xwgDw<8hCq=DA^mG& zA!GoQxezi2`d|nd1{^Z9V&k?jDjpM>W`b25Fv!r(Jpvh8xd$ObEBh#9XyqS)46VH5 zkfBus+5)I}S_oMHfymG*6;Q~~%0CPlS_J@!46R}SMut{lP$fglC(4WB^hxo$TCHcx z#p##NPm1EHYiQ=n>8rCx#iG2fUKH1}MKxWOFYC{@C~tCC&gV}b7wfvLtM%El!vF6{ z^TtX2=B8@v;?`Tv4t&dLRj%uSn)mQXW$nf|JMh$H<|l@TIq;-V!a_vzdQ^z$UJ(ir z?JF@MqIFdyL<~S%`4ou|F$}suh!_Dy9z?XSiGzs#m1z($1o|+D7zG#>w1VNbB7(4> zRT$LH2rU!Q9SkTHo01H}Khhagh0JN14gaxg_fWv}T5ddL9EBh!c zXyqS>1+7AW#e!B*V6$LWG#b~BcV3A<9-Wed6sdpX+W@?^^ftk8zP++Fc*$|ki ze<1^A8U;QAW*Pt{0cPr+3xJv07w})E5s=|ura?fVKP&oeOCj?h@W@$U6$J$Pv-3WF z`m^#5L4Q`}G3d|A{rKt6$~g-CS@~~E9`gh+(~<{6e^zOLL4Q{6LFmuQJ`Vj^MF5Ka ztb(9Pe*@3Ujq_o+wifE)A7mJ`_z%>)4gf-$S0g}3_j(8jXNf5dabG z>+&CB1k~{lF$gI1XGOnlDbza%w9EplC?L?Eo%iw6pOtqA`m-{RL4Q{6$4`G&&Qa*k z%70t(^iBW~OCAjUS)~C6{aLvOp+778IP_-~0Vw*j3W9+C7RyC-=*RE4-v|0oCl34& z-(9t?-H-mcaZWzI|2@B(<+`4n&+3udSG~5qQsP+97z)%KYeg&&oIm?^)SzYaRQPFUMUEh4-wI0D||d%wzDL zm3tW8vkCwb?^(q_llM4Zbd&!9A7T`=h!4}d4)P&-S7Saz^Lo&S=w65V5S?pcAEJMK z?n8`%D)=D=K#%+o-7BIWqJ3TVLyUkr{2>Mbh5oGQw=IQw$90R};f{UELDpdX-hHSz=Wt_OaA=5@Fa(6}b{0ovE6KENQTLLZ=iJ>~;6 zuZVnr?sbU|FaYYn2N(ko-m}8pwg&1Q_8I1YRS*Dp&(8YjdC$r^0`FOQhu}Rc^P}fI zE8`%%XJx;wb$X|KfVB>V_pFitg7>Vlau!%c0fGMPypNy$th__epOtwG`m=IBe)_X=jzWJ{{@aqr zJoU@8pOt$M`m?f+Lw{BgfTBOEAgI#cK%rPKZ|kdv`$JHFxo^N?a|Al@ zH=_)L8vkLMR{}sp^Lhk`=w1;45$!86Afk0u2t*8k0R5YfLf z2_l9-9|aMk0K^liiFr$@^3gFaw?xN+1a6U5^6+ z%`0LcpnD|>1az(nfq?$olBdXkfKkvzK)?Vf5+I;^O#lS6ugrgd5zxm!z#yQ|pB4SK zr4WPutfHWH4rsUn?7WYk{;a%1(4Uog4EnQjKYseNa*jfOR{qdGqd2issw^2UT))qlM;6sdp7V%+v*Fio+?`q74XkHKc5Z&ugAEI+j>_hb5 zmOMS~LyUqd_#p;BkNgnbE21BweO>lLjDR})AqD}3{;cS?Erl5LXB7nm`m^&se)_ZW z4ncob<}v8c%KiB1&&oLp{aN{MOCAROSw#Vc{;UFkL4Q{6LFmuQJ`Vj^MF5Katb(9P zfBkodydy_{fI-k=KS=93=m%(Bjr;(;>wzDjc^&QpG_Hw#fcEvN4=@O-&>~o8`KmoX_f!{BEE7jldkEz$Cs*y|a)nOYdCf%hEg>`m%J- zqP{Gh3$QOs|6=aTG71v#%Q66L^2^daAN{hlFJiweBOrypEQ5eTe^&I{mO}P%-%+!` zDhdenXXkzV^k?NAg8r<`W6+dK`Z+JENEpNh6Swx&{jUZ6G6zzhr@zai2%ZaR`yX?(8@m$3tEK$iv_Ks zpvi))N5Zo|7DSAK771c{*8xF9?`j-~XkHHk5#8%hAfj_k2t@R+&wz+gP(?t*0O%1Q zqI*REM6|EVe~1xK$3Mg%pwOQc{kEl0?;y}J3#_7mK!0}L$4`G&-XZAE$~*@BS-BrS z{aHCjp+77CZOPL+0Yof$F!X1Y1{m~b zk9i`PYvsdXL90XnVL>bVC@g5@ABY95LV(4BR#8x8!GUtIUf$MM55Ker`(>d69-H&g zfxj7N9MotK)V&f8Lb})EK}h?GKnUqyi3lORt0Ey}1PquEG7h>>2pIxJDunc}iG`2> zQ079&80do`WEgPB(29-Q!l-ymXqpLDaljx$JNF1=XyqP+46W>=kfD`-1TwVpjzfl4 z5oimb;%Omd0R$pLt5iTCLo5F#$0T>xtg+Y}JEuSbaiqj{>>uR;0Ef=R> zK0hgnr>>!yFQ>20+%aT%UA-u-XNzjODqq&0Z&BXluAI-GJ}%aESy$_`XNCXYlje<+ z`pr$%*2S&2oE5(>i3t&{t0Ey{0NTo@NQ8)C&;>%o2q^L(qJ2#qMD(vrgNPx}he50t)?E(QjJ{nFoPK&H}3_ zAkd$k_wm!8m3IjGvoeoCe^&0tPk&aMnI1PA?+)IAf$g?5`+waItoHY0fq&wV7RS_AS`GV1_&0kGY`Om zR^~BS(8@gs3tHI+U_mSEFf3>lfVT31u%J~Ka9GeP0w64CWgmqFt^5PApj8O4SkNj8 znk?9V|H!*?EQlBdEfU1^t^$~_4ES=q;-KdT5p(VtZi1oXF9E~-O6e#iYj z(Dq*01HZ&~S8aZY@8skApV_-vuItJ9tRBhl1iIfO%rXp2{>#-o3jp&p&n3V--Lnxe zPx~we%+tC60`m-jm;&<*g9HQfi~ySh^R&+g!94woNHEV3NKr7)D8R6w6%4l(k$n_+ z+&r)f0|X1&nFnA&EAtpEXyqP+1+DA@u%MN77#6e&KwJ6PCxUraJ{%UbN(2xVw6c%F zf>!>4SkNj2SS)B21x*%g5B*-;pXg1Oi$yi9XUoN;esfbznuh}0zsdPvu=R))2Q3;z zb+3binC{hh5YxUM5Muh*Awo>=nn;Kl0evRKjDso^VunDE3NigFVj*S#bh!{S2I^pl z83r6Ov|{77FzOu>+Gc`P95Bex&OHJdTDb=yLo53zWN76dfefv@IuNdLMt2pIx(7=(-h3=3Mpa9a`e z4hc>3z$y$7ENEvQfCa70W3Zr=dk_}1vJb$5R@Pxy&?*3J<0c2KF$18)hnVJ7 z0TD9<284(i2wg>GSACar&fqU9Hyc2NF-ee11|CPhDp-Urt}0Jt`LEb@igSp1B`TT$L~D z&$pOwa#zmhPahZSx~!}9*|Yl}TWsFg{LW%q9=G0dcHpa1t8!frl)i^&F>5#G*@4G3 zb3aXl%z`I{5+p*p*JDIT`-+GN>0gNuA-$^tB4h;G0;tG`ka5t(L&y*)(jlaOO*n)M zfHE6G#y}qpA;W+}hE{Cc7Df~@w2Fh;`Jw4Luyc<J;= z6@j(@qL86g9DvBsDg-EGXyqS<46OoyM21!|03$=IFtEw6zu$jnzP2>iFtE5VU-Jws z%+)-P3UhVOgu-0yGng<}>ue;py}z$y$7ENEvQfCa70W3Zr=dk_}1vJb$5R@Pxy&?*3J=34o1 zSkNjFKv>YqJ_-w3`3GV_s}NwZpj8w!S#aPnyOBOa*Oo**7{rW&77e1h*TF$d_i8+d zX2}wDOKahE@@13m^&^TEzi~46Q0g%yAw!@JgOE{xVL>YxZY!eRA)#p=ScL(C1?|iO zu%MNB3>LI<55j_0_5oPX$~p`SS_Po3e0ryYkd+UI1+5YRgaxhaqp+Zre;^jL3IP@i zT17#?f{W#%I`mt6-0v8Ds1^r)_wTOS{O;e$$M?SFfmxboV_=r0iu%Sw=yEfLR8BO@LXt=L2At_C@@cWdx-7 zmt_!8=+BCN+fv9r2s~;QSVaMW{_MPupZ=`8L(rd@gJyp9RP$huSS57 z?)4B5(!LG@LR!~^K*#{-Qy^p*R51`T0(u+>XV!)-;> zI|?+-1FJAVu%MlJ02Z_|kHLag?m<}4%02)KT3Lr-L8}0?l~3&u%J~UfUuyI zeH0e7@(;vdR zKmA#GhoC2Kg3k9Xw@L30fQi~sU9&j7$&&GQH_SNBW=%+)@F0duv^hQM3{Af&)t!@$SD zTqD5bz+CNfK`>YU0uszM1TqxNH3~2+Xa&PbV04!)_9fk$10?<}I=80ggl@Esntr7u*1+DC(u%MNHAQrR=0Tv5dMM0GX2g=2I zd0SsS+(82SOMwF(oAc3uzZqv7)MyaYy%G*Wy4T}DNc)OF2YxZYv@P3tELi?TpZJ5!jgrU_mSM7%XVz9)tz0>;tf%m30^v zv!X6u~+ zf|+{fabTwAnHZRYNRMnfezpV5U*vBVeWhU=m=a?zsS%seJ+eWf}n){$&~j z6#BEG-?kJo4+4*z1y)f&pg%kB?-2B7Wgdh6tlW>E{;Zs%(4Uq6w&XES05dIl zF!X1Y1{m~bim3t5tw6YJtf>zdHSkNi}ZRG=DL8~y}u%J~0Kv>Yq zJ_-w3`3GV_s}NwZpj8w!S+M{9k$2@-5HSi`B#7x<2Lutlt8pNrc|8n7bgx5!h|V=3 z5YfLr10qI26#)?gphtj+?iB$L(Y`MKAx1zQ{}6+KLVs5D+m=GTgFwqHu!;f#{n>dR zKmA#GhoCibMgP_HJkk)n3574?A`2l*@13y6XI@||n zTod~M?dww?U=UQH5756J^8uPyL_R?Gy2J+<0CnI4i~$JmS>bM51N9F340FIL2mrii zXMOa%XJs9M_pH1_@Sc_V(es{_aS-0KvftJ^y;DBGT8F}WR!IQCdsgN#c+bi`4DVS5 z0EzdkV!-CTfjc$~_4ES=q;-KdT5p(VtZiROxS^ zP^_1?_0_{q-=Ti7=YYlL2z20YMi~Y*{=+n{1b~R<^#~Bry&?i4+E-#gMC+;$h!_9^ z3PcQpE(Rh-K#>Cx?Q4P{qJL!)L=1sG3L-`Uh6Sx)xUGnaM}d}kU=;=k7PK=Dz=Brh zF<8*bJqQb0*#}@jE9)>UXcd6A@+qDOB33>e7PLwP5EitukHUgh{()G~Dg;<8XcYxj z7BqY&yeLke6tAn*dbV7ge);^QD4x1LX1<)hI&&wD<#qL8gBLf4;?ale=<0 zfBLvs*JWL;&z=?je@~h>PU<%|Ra+3Z-g0)}%(5!i^+2(EcrvnfW1PLXA8NW>I9aum z-HbQM`&1Ax1D+I0APDGPj{^bCD`Fs^dnF14bgl}4fd1Q(r^tYSQP4#|zyK%`AfS6q z00gwJ%zuCp(8oW(AfV8n75%oQ5QF}#qM&vTXt)CGypNy$th__epOtwG`m=IBe)_X= zjzWJ{{@ap=L4Q_JfT2ID0ASFcm3t8Sv$Bsve^wEIqCcx3u<5VAuYX6r4m8gou-GqG z>kRbE(>jm*^7PIGzdX$|xGzuRZ0yU^zL5Iz3<4ke^7PMSzC6uykuOj80^-Xv05agq zGX@~MXN9|M4P+kn9XAK8f&jpKcGgGFdsfyFc+bi^1n*gyA3g6`83*A#EBkG&W1jNm zS?f@E&ngKZc+bi_2Jcz9hv7Y|03h+6RSYzFZ{WeVQ9jky7C}AWLyUqJ@nL$`K|Vz9 zYRrddUJv>Z-Rn>vqH|5`L-gO4JU#A1jDjloAqGH?{1DwMq93AtUG_tafI9pk1_6cs ztmwBbg&6c_6$J$Pv-3WF`m^#5L4Q`}G3d|A{rKt6$~g-CS@~~E9tQncMFEEXtO9^R ze^%~6=+DYN4*gk00E+&sf}lx%{db4FBS(LLLC|79Nb5T22WVZ5`~bb{fghlG9qt1( zu8Dns_VuX`FbJy92k2jq`2fu;A|If8UE%`_fI9F2#sGx(tZ=ujfqI91hB;sr1OVQ% zvp#y>v$BrBdsf~dc+blG=y}h|I0)}q*>7u|-YFkotwZ5Gt0aKnJuCAVyl3SehWD%j zfW&)NF%a-d(k>?~BOE$M-*bce7mAlk-_UlHcufzY&;Y z6qv-9sdpCgW$B&Ed|8@jLtmEeS=5)Ma{=~c>0iu!Sw=wuepv>9O@3Lr=c8Yi_C@TM zWdx+~mt_!8=+BCN+fv9r?mKE0SVaMW{_MPupZ=`8L(rdXV!)-;>I|?+-1FJAVu%MlJ02Z_|kHLag?m<}4 z%02)KT3Lr-L8}0?l~3&u%J~UfUuyIeH0e7@(;vk9i`P zYvsdXL90XnVL>bVC@g5@ABY95LV(4BR#8x8!GUs-#g~N+cx=u`2mWT9aZsZ{Q1?nW z2E;1rUe~ ztx^Gn46XdbkfBuokjT&~24G}p6$Vu@w0xqxC{CXgudCJC{a)eem(Nd%;;CzB=F91; zvq#0Eyslmp*E9EfhO6>r{rMK*Cg1&JKLb zX;rT4ftvU5NM-HDJUj5zW#%V_h&k}2P{Kk)^LkW>=w1;D5$!86A)<9vBt#5ATlo}; z5HSq8K!_LtMIJ=7uZe?*{*`GEF$DTBh!_PJ7PNxlwjzSCpj8;u&Im0Rft`5(7PK;t z!Gc!qL0HhrJ^%|^S%+aks{pi>4}=A+!hpkqRuKSUK`Z+xENJB)hy|@efW?AVQDC!R ze~an5lOj2WD!XiGi8AXHa0K&e;%{sed5@W*P-P0%jTjCIM#Z zo(q7P+86L&rV)_gU#3Aop+777ZA&5ZAn?dpU=;-f`m^&se)_ZW4ncob<}v8c%KiB1 z&&oLp{aN{MOCIwCFw>F;Lw{CjfI)v&?m_6!%03SLSw#Sf{;YzaNq+;+%Z>A4xV9GR z;U8oewD=Fyybb_DnpY!0NcVaO2x(u30U@nxLLg)S+RCR#fskQP#X!gi=y4#VeMJz2 z^sh^TkReb0*f|%ZQKoHTp z8V4ep*TX1TR^k+rC zZ7I|{2(-)st0*AQpPl#d)1Q@h2>P=!k3oM{?#EAmR?boA&&q#W^7Kvs5lbEn{aK{} z2K`yN2cbVJ`#AJx6#*#vvkHQM{uawcb?C?MxZel*P$v%j5Z_(3uJ8Zi&f}79?7o+x?d#BFbGWc%hNgw{c^O?9UU5)t=&FeuQqI(_cLv*f*eTe?`xeqZ4s^Eth06p?Ubgzhhi1u~a z4>1Dj@P`-#6#BEG-?kL$9rsygfmIX`=+Dmk`03BeI|Th%na7|%EBE84KP%@b^k?P2 zEqQvUeuyOxhW@P50E7Ol+=I}cm3zyPQNA7BhXc+U!V z+Zw2M*k_mnRzU#ZJv-~8=RGUy2)t+I9fJ3)%#WV;tc-*3o|XN!*6E${0oFPc-m^*q z2;Q?YkHLFZ?qPV(Dga2lXB7iB?+x6+@s50XXQokL5ns068OWEZcOLU)YMu#wnYw3C zU#8C4*q5n)A@^k(1wQy?8UQBwW$K=bewo@AuwSMTkilQ3K|rBDEBb9qA@jKJ$XQ?& z1qAxD^FDt1v+@o>e^%x(=+Dai`03BeISTz*`EN@e^VBcXk_SV7R%w7ie^%~6=+DYN z4*gk00E+&sf}l!&1BGI}ysfVu?hirz<-P%n%@OFp-;6R0YW#<3UI_pZ&Fc{$qI*RI zM6|EOfQZ&rArLVD1{8=G23-t9jDR8sBHGskK}7$`B#0OSeH28D0t^dU!Ejp<6^{Zf z^S~+$5G-hC9)Ja{%ww>im3t5tw6YJtf>zdHSkNi}ZRJxu5k#zfI4o$D2p}wIWgmqF zt^5PApj8O4SkNj8sw`;uOn6b8J}F*TtMzQTIQ{bZNl`p?eaw70eRcMzSd`b*i{g5= zsHUs(W&QaU*G=xq`TXhQVqKSYwLW`R`2Rg=-Z-h>+*EBr+0RaP`NPvLuH31ONzB2y-MnE6`0E2)+e^&I{mO>2rvxYPy0gZ%QFak=*!bTllk&A z&qcmG-3y2>&j84PFV7f&@SYX!wl$D>*mv9f1a=;D;ChJ@P|zuZVt# z_I240F#_uFhZqDD`m>_nwiIH}pH&nP=+Dmk`03BeI|Th%na7|%EBE84KP%@b^k?P2 zEqNI9XB7n)`m+iE2K`yN2cbVJ`#AJx6#*#vvkHPH{q^4+@{Sz+0R};f{UELDpdX-h zHSz=Wt_OaA=5@Fa(6}b{0ovE6KENQTLLZ=iJ>~;6uZVnr?sbU|FaYYn2N(ko-m}8p zwg&1Q_8I1YRS*Dp&(8YjdC$r^0`FOQhu}Rc^P}fIE8`%%XJx;wb$X|KfVB>V_pFit zg7>VP}CK^0F%2|DAr|exq!4|0{C-e|LWi z?}LwuA6A#;^v#c&U%7kgejTqkeXp2Z{66=O_fCt~<=nrk^NV@Xk^QGejO^c*IP!aO zBm1`{j(i$7vVWU!e)`Cf^ZYn{%O;Od=+{Y84i>Nq?x=!7ixrtCkR3ovf6O$F| zcJ9vl{ABNyX9`Q>u=?l~OKkm$L48z2u2`ZjD9Vaou^Lt5@GQD#(w4XNRm9r($TYiR zSM0|URjW($8v7TVp4}Q7UTJG=ctuoW#p;DCHpmjy*a%so6&qxUYOGk6bj1c;q8b~a zOSWQzE>VpY>yoY5ph{F@52!l4zsbAepscO2;gz<=hF3&2R;)gH#foZdgsjLF`&40f zK0Md)D^^rv#o?0H*pOYK8Y|WnyJCqN`;DFJkJs1b;$m_>Urt|z0{hHC?BZfp&z6gF z-k|L1^P&r}EC=o&~+ zM3hx6MWSmXK@m|=wG{bT8=6@kkcMi4BBGXRDe~noLJ?6#wG{bM7@>%$pfQS0^wwir zIm0}*l{36TR8B3`k?ZjT7yZtqBrQde>yfCJT8bjqBT*@}6h*E_qDE>did>IGef;Wf zeY{z&>uR;Bji;Zv+IW5c;^gIQKA+61*VWwb21DC{zk=Uvng4@J`rTp}UU7-t`5Tv5 zombq%c3yFT?Y!cQbzW(gbr_3S)=}m~Yd8$=-_}{fQNxQCY#5#>pi#q%R%aNVsFqQ~ ziWV$$|KY~j>~m2gJ}#E4a^dcY7~qV}6o(;+-GycH zNpbCN!dTR0#F)gE!W#2wF`r#t)eggMW2_Qe32WHL#hYqAU*1JHCAJUNkdK_x>lly3 zhQS>0X0~`0;gHxOm;+v}$~O@M5}N{Rz{kaUHg^ynF=XsU@Ti!+DF+X)iA71Y?M#n1 zx2v0ZOyUrIIcvyAMdWHE+HTf>{_bwZEdfMSUH2EYyS`ssuBs|#9*MS@hJlHCDHvE@HN(h6)f9{z zRXfArMC}v|F0PsEZCMv67 zU}1d?!xHsXFzn+(SY^Y&M3of`EUdL*SfbVnhLu*_FfLJXMdQlqZW#CD{W>TZS5|$) zs6_P@jOwB+s=;Agq6WK1p=OI}x+-7RpZhba+gZKARCZtSFS}ZIkV|)Ol3$hc&F7!_ zN3PuqljaW3`k zz3DfDYNA!(j^A!Ei3*68fvccd1c}2FO#^rMwqrv7I)-L0e46nH6 zsq;#EBo_XLXgQ?XJ88YQ%~Y7$>n5V5;U1htDmRTHt(OElf@^RyzL6KtRgsnqWJ;gxpR z53jVlet3o0^<_Q|FA0thVo4AcK%%IBNknQQs)0mP&yt7~L{tWep#CKhsfnl(yVpt{ zs>H-!Hn1)gf54g8TPZVB{%EI2(#>3FO@vx#V}@;T`Op;a65)E3fZmcz%2U}XOoA6 zw*a&x5Up@KhB0}_?hT?9rtXLACLvnkb_`?kklip0DD?ZPO&)4>4u=(P$1o-jU3;yv z+ZMti4NlBN6HTJF#O)}?NF=&MZHcM5NVJLC61Srm zlZ!;37$;G?Q4Gt4XcV<2ZbvaD7l}?$TViT160M@P#O)}?KEfAZby-yi$S8OU+j~p-7f}-qJA+>;&v2ca#7ST#z{=gMNz*PCviK9F}Wz} z7yBe?_lqGHMg3x&#O)}?4&5bWZ{%dW?XLGw5D^k#4=1~w>w0!8|ZmFqjAC3dlV0_VLK1Z6%6Kqxq`twFjp{`2Sg^mh5leW56l$|=7G6_!90jj z@Llry!L7T{J6X@m^UZbWlaKt5OS;#V?z@(WZ|v$)K;-8RX3frz9z0wxepxN1hp$U_ zm3@bB++p87mmjMzVq79;l0qs55(^SE6K20Kxed9)sJe;%zz+@DA55&P%SB6Ifl z)oqU!Blgdu#fbg$I5;A8Li+M{ad{hidVGH9e{Jzm^25R!^NZl{2hy?A@cVd znhxOa7Bn5e-|J^OfWK4EbO3*!o#_DnE;-Wy{5@`_1Nb}COb77ymkkX-Ve@Latob#a zx_p~-g+Tg&QH{&GE@!J?vN_gX&n~LTh5Nmj2ISp+WOvnUb+O$2qL-n7QmsSOV4Pa0 zHW;Tastv}ekx_&Bdu86*oKb_B%^5YA*_=^>apr9I=GFV|-le|#)oXW;sP7;*jqd5! z+|MK}Z{4qC`;k2abqj37t^iep?Y5FLf4mEugPMexO3a3{k8^gK^*H6UPj>Mlhc;!g^iG$aT zUJzGo>Q#Bue>3maDHPG$4mGjjF?~thyB%n^pH?5!7udHwrZ2Z|drUXvz?g#sWH6ul zV-C-!{+Pq_sXu0CKJO3bjn_(NeZG}3JM;Ng#_Y`JTN!hBKJ{~Gcs}*V9G*}8F^A`K zaLjKL^|QHKW0y#u7ca}H2i2Xg^&Ki&(I3uX(C82MGi9dSPl?%wb3ijXEF8Yv`A(VD z8=nx%bGJFqwtj?W$oqHK!abc@S1b2O@3OATa3O@3cHKv4{Twu3;Qv3n ze{3G1?Y!bZxAO||MGR?LsVwel^?%dR;a}=}nO&L=D&ZMA{M%G@P-}ys!@o^c2ephC zI{e#IbxlV$0iLR5Snyen(7#Qvzu*4-r*UTK$Dc!gMEs?tR( zF32KQoT@C*0t~W<1*j@Zv>t;jVm+$L5-rali&&njvP7#j$kJS`{^)_zhcQ;GyEfXC zogma*$?Cj9d;>>xL@DW!t99V3enk5pB`b2Z4t%{&vaHC}I`EY~$+99>>%iCeB+H6i zt;ARNY~KU0k=1{BG4(0+?)vo^*{sd~(*0w%+J;x2@3#dq>3%u(KHg3|FynMRDPC8r z^=!E~{qni{h)!oBli-aeOJGFLjnj$er>W8N%QIPeTJ)TPehK#%eEPqqf)PEp_@?)pFmlgbkLpD4yQ$F|%sr0uwCD}y9!CNrdhP;tCwkxCkKXoIZfvga>3*|C zSE}E+8exCR{bO@IuN%`CVa=X+@T(f!sJo3PLzw@>&NaOlVNKSl3iF?+AgswnRbl=U z6@+Uon)}LcB!u-<^3RBsiV==;rgY=lG+|RKc z@`>0k{4*B{5!=tPRAI!aVNAsKb1YRDac&qRY(K|Rg%Kx*F~a(DEGGGhv%?r+{W%sR zj5s}v5!Rn$F~a;)DhjKzKgVK(5w{rp#MT|Dn|>_mOE?ae#y{>-;9&cero$%}d;1JJ z{M$Mcm8QezQiKlwHdP%ybs}{5x2ft7-L4Skg=n49=Eb)>5%C~8r8FJB!->#AG)8GU zd_xnVgXn|ObWqQXGWHLm?Mc%?JypukL3BB3I;iJP89IojCQS$RWGX`k(Zi(apq^c2 z=pb5_G#%8_tqdJRhmxj)dj6H6gJ?+7bWl&oGIS9A2YHKQ)OVElEsedW{TuFY5B4H@ znnZm`&_whldYVK%O3*~~D0-Si{Yub8^eb_isBamG%%?~0eVrakPg7(*5q*rFrpSCE zdKx`Vk@-aQH`@<*ZTLw0k@tgJ=RfZz{NOevm*&$)_{2Cv8nIi+rTHwF$7-__YCYLsxYcbL+_O<&%!~U-d zU~C=)%E_bF$u%Wu1l`G{b#hHf8UcKAX`NhCl14C~Tv}&eBc#PF0|E=>(uQ*_MjAni za%sc479)*-N4d1&T#J!L@Z|Qh+fBcAvzo21%hhb*ek(-ldo~a5Ywx-2IM}bLOY^D7 zCf*>;zpXe75FMo9B-vzF#lF+!Suo2Im60f6ao5uN7+ zEd=qUYZ0C41uX>PrE3wL>jfo$UoJ1jMCl5uNV^Ed;ftYZ0CC1uX=orE3wL z^93ygmvxcR_b<`keAjJTeEn^3{v}8t`j==4qP8VSAljB_38HQ#NFchET?y_7x-PHk$wgIH(|WlIU);y~ajfp5 z@u}A=h(GTBaqyx=tOC(`2nq(*13w0$(P{_^23G@LfoL%V1%r!$uRydG zf&#_0AnMnH0-|4!T??WvJt!C~PyAUB_2xkV(VNG{K-7^31w=<4t3cF;2L(hQ9;-mq zeFp_Z_Z_Q1)N=;~M9&?oK-6gm1w^MEt3cFW2L(ib9jidpRR;w`SN)Sackg%hgUM{+ zzALP*F0>kj|FEx7NR}e%7=jd{V@Q@FY8`?UqIF1?BI+T66rzVnmLh5c z_0^_3VIO4tpsx@4WM_!Qn}Z+UJk5jAu1iCWsPPJFh{j7p zji~nuYKY!TLyf5Y3TlYGdJ_#bk?W3VPc+m-t~;Vb*-8nk>V;AIK+OA~X zy85;4g8VSfa#hJk`Nh6bwtu7hVzyk(>bG&f=fC5Y@uq}#jjKr#?G-^1QKQu)i8hQN zi73=+l0>^kkVI7LC`r^!lP+OhJz;(cSdc`NY&A)dxkS`$HA#`VL|j2plN6atM326M zBePY#+4jypDBQ36)syBCfYiTL0 ztd^F-D+Dcx^-^nXP%p982v!nnq1IZA7J`(-TBx-aqlMrku@-8r#b_ZYNvwrhYcW~~ zM*8}8U0dFs&#TGJyj*Nm@vjsYTdz0O{DWeByLdTY-c_sS=k8^{0JK?nf6^`6O^t8L zNO+|!a^V%C$VG{NQmo&&hvhEI2#pSA8uXRKbg)d6fqvBl%^-eO<64$Go_p&YGRbE-gP>-fe`DoEs!Do+X5M0dFEDir_qTL z-?L5!r4#FvsFhK&4zAM}QAE*<5_M>u#%LmnXQU>2oyKS)ifELko^=`{i>RkNcTC;a z&2_!>k7m!y^MJuz*UM#n%Q7>=YdzLke8#np>>$gj4cNxZN zbK6L{xX=OUn#_ksGG5( zK73dSTGEKx87u8^@hi9Gs{TSDV8o@oSXCbti>kh=Ruip=5sh`cww_&#zr%)IjJRDY zR@>oSEJhg7PQ(f$cd-~vL^lzusc#pHkw!EXvC`;WEJhU3Rm6(w+r?s}DRveIcCi>$ zuG!b>DSCIY7;OZ0d}sgKM(DbJIy7Tn={94NpLX{_xl8uxZO?zy*N-LWdtBVyuH63@ zU7CV0q902T_Pp5oI-=F`_VP+WBGH~DNPM;}(SOs3fUxGxUlS`85_ZgLjE=VLAx&(>+TOog|4*H0uEA*SV1mZM ztuRI+(GDg_9M}qDBucx&pXuugf96?HxmyVDdq^r52k-CLT&Mdt-M=SNt?lbWn011lPGNl`y~$Tfc!l=EL&+i z*sqYa1IEadHi!K(hj+jjjneM0U*o|YFh-iRE$o+eXa|f@ChZ3Mm2E9zdIyY=C~XG& zB_7%VW0XmIzUvz@Mrsaz@Kfq{e&*im)z!dr+;g^3+%k&ieBfH_Livd zF6rLh@9g8YcT7C>3i_l?W52%l?=RCv_dG$Dv{CHW^>H!1tre~n2Yu3Rv0vX;8htuI z5Hw2r#vzUOmlF@Ks=<{{tg7~QrJ&kvq@7jO-oO<8Mt8sHUsZ#y{1WOYmNp{&k*8Nx zj4o;O(XXq2RmJF&b|C%whF4XLMqV%C?|P{gySEf|w?+5#jsLUe=AzTWeHrP{b1;6> zX)^6!**>%CywcX7@He~~Bvt&lSl_H}r~HR^f*@YekqUCB&a>6@YAA@CEuF9A7=NGHxjeD48W9C%* zxzgXWZMv!L;gz!F5Vf<5qK?zaRg-U!G)=)x}bDId4bzG>#7hVk| zL;)8n@%2_i2~oF&N}P~AC4-&(rgsh*+t%#xN?WtTD@4r}s-@P~pj!W?&e|u6wNMGQ zzG9RRWm>3&T3<0ri25v4LanbDB}8EsDxua_j1r7{@lU#> zJXj;CF@8!u#)mHR500_jSF}EUD#FNTeS>U&RZtitVw8n^l!$;W<)eiAYS~kNBOfIk zBd|yL75OOP3J`mgm3)++lPB_8KFZI_N2%qb{DORxTlpxzC?Dmue3W03k8;;H3c0~V zEXuF-4MJ`(G27UW<)cJ+c_SYsVuSfYK1##}^N-3$iP&KNG5IJF8_e&Kj}o!L{9gGe z5gW|!laCUy!TjTWqmWBKB9Xr?9wZ`hmL($wz%-P;2q0BRcT!i3f?OkKY#$5)rN+hzE(-RenM|NW`x4 zmxu?6*j4^g@gNbq%1??1iP%;CGVvf0yUMQ-4-&Df{Mx=js9hx@gFo&YgW6SoCSq6l z%f*94>?*%bJV?Z@@>hrliI|gLFCHXfSNRR%K_YgQ-zXj=VpsVq#e+obD!)lQNW`x4 zo5h1f>?%LiHwd+>L?qWIePd9&%FjmZDnBhABw|ZRC>|tYSNSFJAQ8LD=i)&kc9p-XZxCu%iJ13iePd9&%FjjYD!)ZM zNW`x4Tg8J!>?(h?c#w!)<*yMB60xiNwco$kc9q{L9wcH{`Fq8KM68p)PdrG(uJZSb z2Z`8KeplZh)UFa?_ zK_YgQiFlBRUF9DU4-&Dfl;S}m7UQ{ikceGn+BXQbt3-_P)xI&PUFDY|c9je9AQ8Jt zB_1SVS9vKOBw|;&6b}-yt6Yf(iP%+U;z1&Im0uPQ60xhi5)TrwtIWlNM6CGhzCpHs zVbCp&p^4~Nt)E9`#A&oy|C`r z4iDdKzdMu*n*U(}_sx3cY_;AD)%?cKdUjDwE|zzT``@E~Uffl))x~n+ep-_Mi}Y>| z@1J=25Bg?PQIsE$eb0Ch<=@u%?Hol>{t=xBQN$B(ilY3}IuW9Xhuwf1VR{Krlo4jU^ z@y6-lHY4tL#->;9$LuzvM6Mn`f6aFe{Qm91JFm3gKob6jSlXR#i6c<7%EI8pDvKE0 zFB$gKgu(sWIw%-1xM;P7!HLxtF}P^Og~5px7csbK)rG-{Rrl%E7xcU=SJ&?6vA2qe z`>)H{y1re_zVP2>f4#h2_$wd$DgQ0*Zx60U`Piad4`UO#E+5rj_I&0F+Ub+x zb+ua0mW$Ib-EE*Bd{q3fx-6$}epI`QRqLldo0>F#wVn9gU0tBZf8dF#9wOlddVKEc z>LFHxK#$LBT|LA~5$JJpdi3zAKI9LviUfN4^Cw16+WP9xpBOzv6&1v%KYwEM5JgO& zXFq>V689hCXJrI>_VXuI5AhXy0zLcrld6aKqCJ70{rpMQLwwzyKu>@E#N;#arF#NB z{rMB4hxqC}fu8>SiP7V}&N89C_vcTH9^%V1KiTf=-TeZg^EoZb%gW~ryRrEh_qUsl zzH5A7AfF5o1NpagxOiY7Kg$sV`M1di^3xYFkbj$OAQ4)JIU<^efzbK#9^r`S3I+xe zL340Kl>32!M1&j$BI@|SK)%vOgpMfC0|WUI8Zi)2c?SmawJ~BKqNENCogV;mBPE_kY9%LS;yPeGfwt)$r>(@m${dXwJ*mWvKHX z74zAz+|Dj07u8LDwn93xsLu!^6McqsWKrW0MkX2$>Byo^B#caSBGQrl zhehmR{%xJkTRO6+R|%epUPU^xsCfw^6U~csWKlO0Mkcx$>Byq?CX7t9H`0+s{Z1H} z=y$dsk9g_25MQ6~T-UKuDbRiyA1u(~p+yxs3{6yM@zA0Y9fl@Kw0LMyjSfQ-HCjBh zs7QyQi6Si?T2!UO&_tCM4=pOwVQ8XEi-#7~=`b`=r^Q42Ph%IYFtqEp{y`)?sL(Sc``iRqHS`QLV*8i^_Evnkd)ep+)sN z3{BMQox2ovAK5tYLv)`Ov%0#zf4*aKUAkY$BW@PxX0vD*Utrzy7}mr1V#*ul;H?jT z&V9svKSGp8k!SyYH8Dh+AQIyXu9_I4T@s1$C0I?2`>dqY^zSFd>|NeU8s^{%&>iOB z3fLQlu>y#uK{U??S3ryyqInXDIk*C1#1KuSNX)?%5F>_Yrnhgkez{t%Yj;=kZ0nxL zQ~A;9f9KZ8K~Uq3=hpzcl?vk#+YN6#zZfFMBlcR}cs}1F#v=;N_QNSJZ&!|}?4%XV2eS>TtG+y3ccw3&kZ_=2Ri_N9CZXgbh^#AsawEak$ zAE`gs2gmqbePir|Y#IL*E5EL9knJZBF8v@;->>3%?%>pKmjXY8ySI8(&cY-3?gx3SpA8gZdB zT}$LzBd&a=Yl&QI#HG-5Es<-DxHg)uC33A17fZjn-FU6ag}YYw7QV{s-*yRqu+*wa z60NEriKt*|l0=IuNFoZEnk3O03zCR>79}b9E4+dvqO7S&ip(XVx~WNu%q8NAnwq4@ zTq63{?dxint0~M+ye1~%Nl^n4CtG+>=?{2QItH29vg7bU!K^H&R9pKHx zQK|nb19zLos+=zCdh2$|#Op`@)3%PLCkn5$L=s*hW;9K!X#E8p#9p4JL$v6E4q^jO z({bvigPlV`hksk=d^$~ss4EIOh^;zJho~b8I*9%GCwA6UX*E~@Yf zv8WQoidIz+LaeGpA);j!gb>RrQHWn4>~$4{5bG*Yh-hI2A;iK;6e3z#K?t$3c5Ciz zaj|>B@$6|)x{5Wux~>-WS>e7=cyZzGI_!SqBzty#)urjd%9*Z3w043PV(p}B5iOsf zg;+l6T0|=-XdzaRM9Y)HedYC~PP!0lC|OEmwj{11GAfbDLU2QJR3dYQD1;Izj|%_A zq2kI4iDi=k@Gnu8||e^}lp2k$FN~ z|4Y{rnJdKIlj&L_^M$ykzpdq}T)8jyjyq5O|J>3%*o15!^@c$r50(E+-$>utf|_O| z|8orsccoz0*8gALo5skpW&2%GU1z8}o_lW(uc!CguZ;&Ri=q7h=^?=zn0bIDBaA?h zj>^hYm3^`@vNN-8-E-lC5eUH-8)1WNj10E0n2a&l*dQz+%YbBAOpOc@Gl)-oK?os6 z0c%B8=8D+)&)93Ny?0ig>i%?YbY-mHUi03uW5>nwYTV44<@4(PhE{^rt=9jWQTB_f zp>=3F;X!+Bl?VsDm2u!Nt6Mr;V!o~&(m^+6l>R=w@p^r;rmYWmp5cQQ$_VhHdOMlX zP5{T~LDOUu{)|R{>lrs_lFXtP)A<|6s6kU?7EQ~WZylmR6J!)kClF3&bTXVnIOu$g z!k<;+xAoj18ZMJni#X}>m{wF zIb?&T#VGr{T28JUl0l1NluR1uU2G27pe5<9YVIMh zmvlh@CEbJIs_Q}l>bi%*T-=2K6n77SvBHadP~m;@O=Vu>gEH@vZ>seoAJlq}d~?AU z0#NWh1jec_@f(cHF`doo<*5E*x;m?(^BXR-?WTf%sY?-D0S;*3;&vhj7u_e|0)A=W;-Tl@ zqWc6~z+nws+;!yOqWc6~z>f`Fgtf=@g}TEQ{{lUYfdYAxhXQmq1`6am9tzOk7$}gZ zcql-ZW1v8O@ukBrK&NA%Kz`w&0R4`E0{Ml90`xov3gj0a3efrdy6$@Rr2hQvh(0Y$ zOQ%%*s1B`Gcgx9WF{5%MHR=_w0<=30Myu)dyq>YcsQu%2)88Ik$In5-j^m)=p9PN~ zbI`B@IcWH21!&lj95np10yJDW95kTbQD|E zE-VfjP>*uZaDj2qfVz}}h6{~@2Gpk*o4;raPLN%X2$3{HN$2yWT3eLX{!70lv^enDgPp%0DYH@f?K6z3ea!a zDA)$c6rj(tQE+RNOab~U8wIyS$rPZkvQZF3pCWoT5Qrn{83KQ$j2B!1S;t1Y7e`T2 z5J#Y&uu<&Ak%t2G5jKjwIPy?{{=r7E7e^in&^Op9_TtDx0s4iHI&=Q+sa9bfJ9tpZ z-$tRet21H6>{i_A{B<+hd}Lv_exR1}e+)_Kp6A?=@&mh=|8q#px4WvEe?DDJFK3fq znp`crtM=* z{J7%(f5cw_*|a;|Pu`uqqHlCi!?fwR;K7=qmvSC!GxT5Ig$%BILjPZ|qM^rb^K~k= zUwoUWQ^hN^MsfnJeU_rNHnXQ<`?W^s)!C5vvpl{=r6bT9pM+J;*EHCE@ljvXh*$X9 zc6K5$`;8Q>MSV?!?blk=*Q$MAi`I6K*S6iMXziORTJz+!J#4?$qP~_%Yt*9#5&G>E ztwnuJgYDN^)YpKk?-@-Iq14R=TKjH_)}p?q!S-t{>T4SD3axEtixQzflcKe#uW7LT zT7$mU`{eC@UL&{Ze>L4N9{P+`yuxTCCvf#oQ;Y_E&5G^U8uS^fc!kzTPN21~rf4nd zYrxfy>1!JC3a!x`KhWCOQ?wTKH4Sz_U(<+JXzk^m)_y8QYf)b-Tf#kg%~Qf@i7@cB zZ>4B0>T6}S=E-XwtA}h86cM4;D3nS$%7h!+X9(NvS`1 zRrnUzW@gh?;9Hrn!1G}nR^VHiu)qUj8&=?3nXteUWE)nHw*Z#M<-sFm8&=%6JXqiv zvkfcmTOKU1In9O@_bm@rWWUG{r`N0ce)k;v9Pbc2zo?eYx?WG4IlEdcPw`0F{_4l% z0lT&@xUzi+BYy)@YNqB+Tgn+ zVQ}}8t_{#b*^I*7PC5qYnQRzD(ZyhehtZU#?$(52_51*P z0s=2$lN9x$`~m_m$}b@BqWl5^FUl_<@S^+z0xx2X74@S00$3-Vq@G_u;6?cb1YVS1 zK;T6h0o~6D{_yV2Ub_W#yEDsca7U*?7rroupE7unk#nHFh z&E(2iBdcDCP|gSiYhK+q zA0D8FpP3D9M+Ohiqlu(#zPPIX8A>1hsw!8&)^`gyhv48oY7Kap+bjS)$Yg-9SOLw^ zrM6Ot=D_xM3pj^lGI)ySNd7RuW|i9cx`pV8!aUF%*aC0ST-4_@;3=Am`kV$p;d9%L zS9A%s!CN#J^*IfAisqs|2hv4!Q5{6L}sLyEt6h61z4lkMm z+u<#mi~5`fJVkR+p94S4S+&(+YR%gIj~{gqPeKgfneF|=TbBm z^*IfILUY?q^P)MhY2Ko_sLyG@Q#9wvb9<&!Xl}c4UNi?b&VQ$Kn8(BV-0R7FJQ-d0 z&NmGYsQ93o&PVt4Y_{3l-q|A^*3uA^{iaR7|JE*vurCJ-`*y6>AG2cd9h0$IZ_A3s zcTC1=eK0E)-!U1B?opi`#EJ$1@GbBpE4OcXu)wn{JJzsod9c8)c01OvZ+Wo5BW^p^ zzHjyBGmg9kcD38F_VZRM7I?B}$J+O;R4njp&yKb4Td7#!>7E^H*ta|`51#MYv4(xi zg9V=O*|COw%Yy}WwcD|VeanLd9{hiAzuzizru^?A1^+A~g=q_cSOm02DHbv984wE438heQ2jj2^XnayAxM6WnfIcUM zg8LH(1!!whD7YPQP=GEbg@U^e2L)(aQYg6Da8Q6AC53`}3kL;gNm3}dm2gmi4kU$w zI|l~^XgE?RxKVIWfc^q(Eab1TcTP# z-yuYx@5n`D>Oq7E^dPy2O#O%ufquk8#2Y~~`4Q+%auGTG2=pnrh@5@|dX`*7PCo+u z%g^l3cPJmtuXyh@e<^GCD#iKNtLtTRH@|8xI}_2rO~yT#h>}rEo+BtA10|!FTt-kp z>Pbd1`HG-`oRf@Vng|IBNH)nRrrD67fGm@YVww^O3P>->D5iOlpp?if7nYVwQ21xT z)IC`%rWul;fEiLUifNi8C}5hDjAEKA2@04iC8L-oOo9R?OvxywS(BiESyM8KY3d{> zVCs~NVwyh*3Yb52zisvKJp5?qy#21B?!^kmUB~btVfq=TfPr4d3dTK1elXD4Si!g> z$qxql94i=cMZokAC&ZMX>#>5xear&}dLS!U+{Zj%pd+$^#eK{J2Kpl_Sm0xuJy6bb z-^9m2w`2tid@K_f=$))!fsbVZ1D%u=Eby^RV4$zEg2jEz$E$hKZec0BdE zzcBI7f=Q^CfIZAXz(31Gz^>#V;Gbn8FfAL26+i>!wSsB2NC-fu^l@js_043qkoDDz zivN35Ur$)!YK{M+-Pi~0MpENB}iZsxYYsO|;hZJcb^J}D;mKsGGXr49FOsk0^4RpjBX{H53kp|jajWpAm zphyF~t45k>*-xZ_hEyZXw6Z7CK$oeJW?H-xX`pq~NHeX^i8Rm;YNYXLE@6H1R4#sr zH^+VWjFcSr;a6jG+=ovd$#EZk;WWp6_&kps_u)8_3zq>ZYDw)AkU(GyO+r9Y+tHNheId zS|P$nYACGx9_p-KOjnz4bnhl%>iFQ4xQpFTO82YW8!4`@9dY_TD5G0vXZ7dxZV2Ze zR6GzVBp9Q^*){dsRr;IT&_Z%9dY5pk^BlFK8iKaQINQ}%uha{Tjp&}8? zL%Ta|S>kA1-_5R;owLC&URB#`qfNzpUft873d{5NtJhOHIbk;Wd@^IlQhU~aGSukg zA~MxiAp-R^7m=y{3K6Kkxrj{lS%^S=&P8OZ-$DfHcP=7ReHS87-*XXZ>OVV8`@Bzx zwsU2<0_wAe@ma;0BS$&_Fo(agA3_$VE1mw>wQ|RAQO-?6@boToc7}hT+k*vHsL2Sf zfa-3czo@S2<(pB?9#Z&0t7c(SYBp+fpjqlZ0zGag=t2+bnuT7i*(g7&F`xxaiiPc< zW{uezXqM`3z)FQBxB@b|g?>P@Mt-1KP@XMpO3g-X4m3*@C(z?|E-5~nn9J0fjq(G{ zg2L3-?6~(3|9t){Nim)`8AHt=bE;FNgongBx+e ze%EtfZV!ba>zJbsWwi?Yh)|O#j%-skUpWas_m1o;=8DI^+rS;IHk@ zB_Hzk9es*wR)0xLN3_JWtjEoI-FX=y@fE56b~kQ@98g9g2_N)Fmruz?x4E8q`}WXu#@E4jR;vD`>zn zP!1Z@$17;SdQc7;)cq@Hz$JIMli*XAb|LBBbY)*5J2d-5lm4d2q0?uD`)xR<*y?5+ii|$ z<3+A)<3+B3cyR!lB1MFQNO1@^#fS(8G2#$ziVhJDqQfEF6c-{K#Dzn+DI!F;A|e)d zw~IGZIS?q^OQ`N{{_bulggH4J@{m-Me~VOwe-BADIkreuIQEcKlShkG;L%~SrOltK zbu*ugX7#O{N~^Z!-#=u{?yH6!bYixhu6DuK!EsBLTumV z%0U4lNlDSZ7#Jda;qVC%P)dYDKH;GNp{1la;1eDQsxI#E*u4Lq!yurdDOCY|;!B55 zfF}e>ghM{zp#V<@P9N86&w6-uMQ6_C=jsPg`n8J25G00PR47UYo5qDckljPh#$wryfXiy-8+ zsE2hHg#|hTX;=$#NM})Z2Rftt6X=Y>Fu0Ns5{Gpbg#|hTX{xWY=62WExo7f!jszd< z;Z)+7TwMx89RDm>%vFh_#NZLfKl6xVCvuDqB&%QD>B(>DOEL3xU2yl^e?!K>>b|jAHT`K>{j-(s-yVNcS9#k8r{Xs+sUk%2d_V8?C%q|gy&ootU+!p>h**URSKcyRc% zAc!dk2nfgli5f9w0099RAQ8kA{{jNyKM}+f{Q?4_KM}+f`vL-DKM{my>FV$m5HPt< z1mSAz00BkZ4#J@~m`B2dm?#2eh|D5T>}M8%qB^q(6t9^@ph(Ot0>xNn5h!}nMX(bU zj*Fg%GI7xpQ6?^WBFe-?Pehrx=!qy37d;VW;-V*_OkA*q3&%xIM47ngiD0dT%racX_ngBFG;{ptFQ{ zJ5h|HEtC9SK;5NiA125Z(s*!%6%;&bag%;fjhoBM*=GAwjF)3QVBt&oST-8GTu#St z94wqCa+n7&qxZ>FosEE$RuKmgU< zgS)Xs$5VIDWz}x-mym>mf&TsOqr=wj9a*IBdb*S^p`5*(r7X^h(n&_0G^#_dfsE zP}lfbw`+Vmp3J6qvV}w~g5R+^*!$50b2^_;_kftu z>&d+HLcDrRKN=GD(}#qW@3WW3<1(cI;R2;6uf9wfK)68F$;)L5e>I$Iq2qYlI8b zn!H?2{{m$uFPGE5K!wT6<@7I5T)wrRzpnYys6+4ThO>lk?%#txTuNUukY$E2*@n01 z*0_h#a9=OiyUK8WUeP9KN_hI2{%R;a>g1W+QsjZOr;}%LH<1U@nNFU`jYJ+uQ{DBg zj{UsbUH`Ko+wHsTl)unB*b{~R*4>A;;pOGXox6qZdT>$Xw+?}JzmfbPWKxgUjeM9z zE$4q9lGDpA&GNRMJ*=vh??L_;`TD_rFE5uV7=;T2V_q&(&?VBrPUjJp z2mi9-I3|x39FP&SXvgHJf&&s^795j*3J%DBW*n4W$Q$&%tKfjNmj%b^J0RO-!EyQy zNODoO^7A-H)s&EQqZ4Xvo16T`S0bWO+cq@g-J}{mAlwfa4mhAp4Q!0Rg9&TS4|C z%L4)qFb_bcSJPTffmAP9{H5f4yJ{4=VfWd6v#jUWB~JqXue&5|tjd*bU6d=JE~e6Q zXsY!lB%m;+l9>7|Apw;!m4xHjp%YLVQ%N|W9VDPOrjl?(J4irr>~_J6%|^?q=h^2U zA)tdn+&ut&F`d6DctFYj(B)`DSgveCSgwE&PGdC%uyB9?PUHBB#X*FFe-`usX&k2D z6%G)*X&k1|6%G)(X&k1&6%G)%pLCw3EvCE+W%p3xz-%#=Fj(nr#Qf}D49S&k49OJ` zLpC;c{umqoO~A&N0$;VsWoLKD<)02n|*6o7O39M!?h z(TdFK^f^$HySwIgdG4}a)ic>;89nbh9I@x7dj~@2xar=B$>B}AdzfVSGg=yJ-}E?G zRKolG#ohV&wp`E`_a5%Ed7**crM;uq&_}CTeYv~y*@xA-SZ|uNqU*VA4fINAVkUqsaC8bEw3E;!*lMqIi@bk0>6cz(V3t2Ih_=7OI(SkHjC* z_DK8@ZI8rjY_Cf#_w`I>4j135_`gTvW=`*;@u$JsN%CkyA5MK%&FQd{i*Mt3 z?QKrpyj#%68t*CEH=>hwD?LXBqh8S1-pB0Gr)c4l8SB^+qpe|vBRIOGvAxa7+jrP@ zPcA_}@^FtGy^7&(J@tUYzgy|~vB!IY_8nHqlQVD0;U3?*IaW3vG-9qq$F97?n@zNp z$UE8-w5=vHdxv|1#w|JA6SS@(Q9U8!798!dZ5#2^(uwNWk^9KQJw@wARMPfT?@H`O z#-d)(@Q(Ks?OQNeoo4h#mowfK>keD)sio$}9qq9rS25a1GJB^I^CJ)U1g$%)k*8+d zf}=gYZS$;Sw09X;$9M?;pOjZk4h;7Mt*gt+PshAP$9sbIRpqLuW8RX(J+^ftuBvaD z-x2dZ_IOXxz7d@~bXHHuz(ogqiWV-JvEJDw4W~mN+rGoLdvXc-k%xPN)-9T?jvc)U z^A;WN3EFp9CGS@C9UjX=vQjKJzcabH1wF8LN}HRv4*!#~wBaA`@uN3t-|b)y_&^)J z+rN1d2Hp;)%z#hO!oxZ3=^41_c#m!0h_^ny6#eJ}K1B;hl=66agG%fL>Gbv5bgDVewEcu&y2ifr|i%v*A}$F^?7 zRkiK&J7eC*9`7mIH=>hwtNKO;qh8{0d-N$<)ZW#BGhkJ_Fji}_Ir+PZ(Ejiv(v~R&=_0BG5_`Lbp z)*ZIoQ%lW{JK7VpZOKG+?8sFZx8!h7(7MAKd8exG@K7G|REF14Hgdw5{qb$vR*wVw zr?gpl>+L@w3mNX=o}hKNV>#dfZRl?Q<|&wWJC-8jJwf{pr?V$#-jc&Twsj+}`s9-H zV~_U~?Hkd_yA{8Y!L$w?`J1!>pQ43JW~^gRj3UOnak}6EbeW(H`5j5kJ+o%wlhv`Cs)*^d z%Nbs8KDKp-E%($?^W%>81Z^Af_ID~VD~wxmxF=}cVU0XB;}#rk)V6;?bvvC;#>@Kk z`sWwTY`VIcT#YVg_4v(d-OMMW%jJ~*`TmP)wXWBbRdxQd`h2onO`G}ok3Tu9s`sB) zm$PR4=7NsKsBb6H+ug0{w!7P%eO6tzS4NBFWVK?^({*+JN%guOPv_U8tLbtwUX!qj z|My6;X_Sv9`zwzq`}`4QKYK*k&yOVg>=FGO$v&2!BiYCDb0qs%evV`x%g>Q)ji3L8 zk@9fW++EHlqt&dwl%)P)wQd%4ty#C}JeIdJ$cUD?-xwK3TYm1AlhI;EWo|c=^H^%NpKqs!_mk=Js>wS&bP3i}=prN5RO=#wHI+MAFt@9ZVq+xuC^kldk78paSYzW@ zlDMyDvt1v3abQczq+YFu&s5bfQ=L#fI&+R^rS4R zTEcz;1}!+w)QtwG43bZMT~cSalt*%ld|Y`6bG!{hUoTh-ffd^M^R*?CuLJbHrguV-8N~- zfgaDITU#7(%qNt1AA6*yWz&c@-j&oF8Aj{Ak-teB>S13f8=ZvFB=$xX{g$BR;hNsEs3q-;8@j3;E$k^?=aMRTk+Jm|t) zUyd20k2%hhvZp2&Jqd%B9Oy||RFR6Fgh30A^LX}*c%`=0J$-{d@<30^q7h}ZebLh} zX~~hEmQ4$$qvJJ35p!vm7`(oFJc|xn>*=K3#~tTM*)!tX??}>B7_{U-Ps*ahx_CMU zEjZ3&+B46byS>Z6+QNhPzw0|09$qT35A>ugs!K&r!K6h;dQvu3WuvEH(vkx`o<$>$ zsc&^p-lUH`($lhOL>mv?(UUN0(V?D}RZHficW{}(>AuIa>9DS#{WAPbmdI_DE04rd!u6(-s~tQWZumJJgf1>aaEv zE6qt6wdhEXY18Ojb@Q$Ju=txh>ro+m3LMAOa&|_LO&m_FP%fM>GMq5w+)e1b$ld`8S7d-)k zmK^9wSyYvZo`69Mj`Mi-jCiHK)jf5CKJq|M%c2owJoH6R!K5WedRjIun2z4TB?h1G z9?zn~)_OW=_i@L0QuZvFijEhd3WJs$=t)_0SQqa|6&)VLLnewI#v6ale5 zZB00^pGcc=x4!-47Z=QBM{&UFZHR9F=G`{wb`(WMdQvtWPFPRKq$LM>Jc~vg z^9d#1#~$fv*)*b!cO_0E!)V<%@;7NiJuR!2%t^20A zsZZC~^>Oj>fJr)ATE>F9Wk zQN&!@B?hnW9?zn~)_OW=_i@L0Qud7a_B)bv6$ULi(37(0ur8jCK?{yEYR{joZm09f zcv-(*|NNqvO;MaWOeqcx?8NKSCi3Ib3Y$lPS@4> zC)NFAy1Z)WH_OR*J#FR{|L^=|_4#DEqW?Vq@h4~1dmmQ6GP$nDZ+}aBqxaAFPrg!3 zul_Lo>nrEg=k<(#_5Snfa@LIBT+qgi`gW3^jpaJn_-Do0zT#u!pA~02_p$NMva+4! z^S5WmU~~H0^JB0%{q4mu*qr|MQpt9`tmntcZ~wA6za_Dm{7u-j`7Mdf*Y((B)rv?X@eu3dakEgHTu zs=t`7URHPWH*@OSV*L;6t?kYJF8ar=Hw&%+&sUS2RbRvy*slVKAV(P_e(8`1GS6o{ zZBsAXOr$+Ne^Fg8oBQ<*!Rx!s-$8%7({k7?>ExNBP~-uP>g1UsOXRurX^Iw+2YggF zK2Du#e-U{g`ejDS53*3wP4@HU0ZLEwe3*sO z;+G!EkFro&{L(}DaTZF8UwSBC?Nfdm^q0%YVnR2D8ql4c(Ezg#?guOL&KdDzo(@$kJ;dDy3N@$kJ;dFU4VJgj*2Oho(#bbMxeLH}{` zfZoo`1O3Oz1G+df5A+`=59rs-JkWnwX%7DZotc>j`j3+b^k8Nl=s!*#&~2G{p#L~| zKwo9%f&Rmg4*vlil$i(mkCO-VN@gDDKTaOd6`6UU|2TO-|MRtO|FfK~ZtErO4%w}% zU3|S-?5>X5ts0~C+r{K%bv1ci-_2-0$nd_8R-L@><6j^T+jTwdO21s;;RJQn$@Q$d zs+VtKP_57Pq4-iBgcsH2ayovqazL=M0*LQJ`;0asj<8+loD{P&+Y#W{4r<@76%wsKNA z{R-r(PrLc*?soBJI^Q+T;lpTkKl67`?{l!((n>V>gGdBjv^7{ zhi~lLk-F;1tr+u@>UBMy&aeCX-F;hsZiWn;jAF99pa9D!qnKPmP=HG$qnLa}P)hg; zR|0i15EM{AlC{F=-+=rgp`Vto)G?z62aILQYub*LQ2I+Pe`daVGR|Jlb(=Lanch~Do%Pr zO2tV}NU1pK3E}@J5sW<{rQ)O~L=z{yhh}%n#cVRVp4DH{TS&A)l-?q0*6TX9Rv2n4 ze3zpwa=abkza-7>)_>bQ5^{w!5?o>Yq1^%wS`=>~E&okG!k03WprBNc@Xs=npvYB_ z@Xs=npzv0Z@Xs=npd6qe;hzO0{UxmB;%>RwWweVadZ&4OGhIz){e4ILs`GRvKkuF>Tc(}Id=Ly2I?ZV|sqzhLN9;kL6 zylodQc#$q#fp@6>dHA+nxbQ`~a0TDNUP|BE2@XhO-F88NbJ*WJJRpe~c@B7&2L|LX zBg`RR^3W8_UHaBeJSWnHCwY#CC(?y0cn)}u2PV>mD_{D7YVY7B80dRE{6z zV>al&`y1tBIgkak{r@j@Gfr@YN=a~q(s^)&W(~m=>e7QN)EEa>Kr5;rpULlJd?0`6 zWtu!oWb)5~#Z0(3<=a3FEp-K9O)kbIeGy#0@ z0C0apUv6;7e?egtlsuFC_aEdhrgQy?BI5QSTbjf_ubM9=Z#@GCInyNh{c7AS=bMD) z(0gk7{ERjz%-)Wg*Q52#WJDhdnoXj)bk_-p{=xFY_qv@cW$|)5x&EiUlrC4uFWa;) zSAeS|p|UpAh7$~ssFN@_`#LZ{(oVuKb+4igkiC;IObxAIfHa-0pu1Zmu!cizd zIHu^r6pcawqA`WS6pTUvf-!~Sna?lyXF*4iLSYI;(FF*_6bf#W95KQ_%cu*}lvH#9 zDrbr=Op{ch01a0Pg=yL<6rk@)p?Kft7yPq~e!-7z9Nr0@_N3^7cO*C{z($4?3f^_# zpa7c{QYd(HfrA3+J(+f0(T2MYEl0=VI6E`x}P@< zMIGTR$3ICO#Sz&|ZI7^lwkN;dOwEw6fo3Q_o2f+-Hqauav7skz9Chkg5VmLZtDq?4 zXLI@+Xs7bCIsFYZS^3$V{svmF?z2kHZ>xHK#jB^XBjVy!#TO~r(bfJNJ!-f5W8_Q+ z)0hY0gX)I9Xx&`T-Y#zR$My;a$XFhX^J;t-Jx`fswW~)W9wa4?`0ZvJhaEub`I%s; zZRZL{sB?dO$U!oLnUaox0hh@PX397M2AnA~m?_-|SY97Xu5AJaYFmQF5SY`)Kw--a z=JYX8)iQ%QeGHVeZ}#)prf#+8;M?a0zh@{f1u1(YXjb1Y>~j9TAvwXS?M9Ak)8gMa zBnIk@zSudw*^TGo8&!K@6rQiC{%|pyxh;mj(nSfbkhcX_v}RV~KCA90D}CV>R!{^| z)b^~J)GiK?^HVsUS9AIZ^^LlZ5QTsop9Zp`kHC6BKu%8qIVVS7IP?KBI7}1w)6S;j z^H=n7vQ67PT1~I#^^Af;KWY0bx}g+K+C0)t)k~y<;P6N{l_-%8Lc$~6REI=5hy#yw z_F}cyiFDxn9_j474(XYEo_h?3bkLf3#?BSSAsrMZk95;h46!?Sis6xNdU_$!!P5(m zbkkD{kq(|(c%+-2R)}=)w8A6(L!a02&w|A{k95=12^l+hI^mISdMY8(!BYv3bkoxa zkq(|lyz0$2sE+U2<@58ZrhRx88~+yiq)Y+IMQ%w~~pr*zond+xV0`)T{$y6&v5~!6iNv66el0aRI zNix+ykpyaBOp>YIi6l_(VvXS$U^{M~( ziNBN0pGFxsx3~OQr@t_E_KG$V&#$KIX+yJ6-jG+FQ=Pi3gwyL z3djff`Av0F_(7e_&t|Hu!Uig9el}Ar7B*0e^Rt<%x3GcgouAEA?}ZK2`!qIwQW37) za&zj4WvZq@!;DzkD}$jKw7TeH(B8AN}LtjIqB2zFO4x^HDt?-!$?fH#hMTdmjqqxm@dlY&ZZ;zrUryTx~B`Xg*a`t3swkr4`|zk_ED2^4UVj8G_PDxiS#WQ0PgRsogIr_lZ$ z@{(xR%(iMP^lztsY;r1?Z8$ZBpqxGhrWqNboIV9sATvTaeF`j2bU%N)suy%l`}M9s zoxSAc|8^1O;zO#*?f={EpgpgeI{Jb-L$?0Iy4cm^;L3IdMgArmBqj94@@}kuon06} zn(`^?d38CZ4M^&CLJ&Yw@*%vaet0*(o_W*&a*&sy9@7_%^(R`09ze?RFunU+*j&tj6{0*UjvzTX*PV_H>fs<#aY(zopVq(W3tDziDzm8Nbo@F8>?_ z^RD)U^D_$wCxtv9ptx8-xG>}a0VT!)!qp)U2&gj_5H1mUKtQpvfN+(_0|M%e1%zut z9uU4$u&QAJ;btxm2xto}AjAPc&eV;W3-U5R2hzA6eS_=ryBOVY?a4jG>k9a^p z)wO`&JmLWXrPl(2^N0r|vHIdX;sF6W2rL@GdBg((n&j?DWvfX&TF`6wGkJmZ{G)0- zqa*p~4gGO*H($4@gnFV$O}h_hgMm7S{Jx=H#0b%*ku(UuNc2z)~CnBo(l_b@^PKH-4?eTNYu@CgqD=sAoKflqiKK)>->ciu9oub1^o_R3y- zTygGbFWTNRXN|S1V*fxlKLl5Ri`sDBudbTAOZt|q<-H&w0?EQD|FY4)xF+)BdE!^< zIi=|NZuL@~mj6Z4zix`yo;5d{Uf-+_N*QdHZ|-Jq_?(yKi{0-pp3{c4S+jgz+0GpO zFZ9rdh4Klzrju4hD)5J1Js%kA%j%YvmFMePZ6Og0+(0Y#eLCZlEJqs#@APY-A{hjr zR`QGL?PNx$H#^1)ih@?^GaB!$XQZG8=w+Htt`+Tql&_abIahyLtH=ZyUMrIpNT;*U zCrgJ#W7EfhzXYS}DQ3nFZWHg5hg`p2&G4z6rtOa2DLmWh-j z!br+L3AjL9nJ73K(kVbpnJCx<=@cNIOcWdi=@cNAOcWde=@j|nD7tC^;%K`~K%!>5 zO+c=IifYo=ejG(fK^%de)I_l#M;;2$qnar8gg#ejIryKpShK*pDL*1?X#g z6g;Wjt)8gs-5;VD-&LBh@^;?>Slv$7H~fAfZ9wQe15gY4v*hXr1%1+OTyGm%3)+n& z_06V#uPe7LS#o7tO63YDr8YJWXthp6F8?fOdu(z!>K$@HxwOgUICsbe1=1#$BikVt zlti0cj%9~jPz1Zj?5%E_W_>f#ehHLc-Myz{Qm?4Dq~oT>{8BG-sloouZcv1dml@0y z5dsDxA~TpNWCRR^OlB}sObHl>sRS^z58dfwAm}oKIejc|R3eQzeGIJnX4aU~$3T7j zHT~Mnd8~Kd^by|e`B#V1Ss6Z)#|a; zGJH<|0~xOjpVR+9;w!`F^godQx^JRC^l`_0uknu#<-YuECchIlkoWSlnS4&zK+en0 zX7V>-1NknEEjiZ-8_0F}*_{3c@?3s4r@w(5m!Hk)Zy>*Q4=LZ~x88R|)U(b%F_fx$ zM-a@L``rSN`u4w>YWBeurrtg|y8UQYzwN9t(K7eAp?wSVp_KM$tQY(l6514FY6Je( z0stoe7XXlNofI5)(vH*b0=>*_Br*=XC0O`>Qz{$)30CJ!cfHRf@03sIP(B_u-iRZn!Zdi8;$AnF0XsvZg{WiEv}z^SWUj*6E^Rrs~b89 zDa=RV5N#4TzRODB04^(mBebjp5)ew*dz6~p4w)qYJ7kss>=2dEI~0oJp&tte&pQvb zt+@}XWuE(>lH|D$sw|%SpaS8!56bhN`=E5~xev;^p8Ie&6w8_#|KX-4$9=dr$#EZU zF>>68JB1wg;ewyzK3unR+=t6=>^{9!2F^dT;H@P(bLoa&$)Wn2^IrD6*gKIi9M!?& z%l=N%z`?bNJ)d7SQ`uS?$_OK`*GjSGl%GmF_+__T0`Rxk^4%SMVJ+9)4}3Q*-|gYo z&~n`#e&Z~>d2ip#qM2XI?y-vx=!7u7@^Gfv)l&Z&(N~8&-5~RRqJJAwWP)|CULW3` zdp5efThj{WZiVsevubl?w4eiXSKBo}yrnw~$1vo%nP|6}{Z3-pg?w;@DsylJELCI# zM;%uP&VLg?mDMI{-xN^%vtTxvQB$ZFR6z01%0Z#VQUS$3D+h(TR0R}Rm2{eqA7v#S zdM^>W-5oAhsP_qiA-0I1Pb~=C8KGc(FQYb{5enA)GD0~c6s!YggmOkGSR2d;<&03U zUf6s6cjM?+P4}qzaINfPI#i)qj(EfP=A6{Ci>g^n=IzrpI``^svEcXpXU+JH>dh$j z#5NxPH2tGrRprVj`}xiS&LMb~3LYk03jhx?86Zr-Ky!2{(B)@on&Xg622ar($sYzd z%j0tt=7HwEmZrI=&uPF@G#B+b4S>SuwjHlT>o?Lg7xg&}c#7ttKF7!E1$l07xj~`1 zZEqr)(8WVF6wg{@D$BKpF1=5b14AOcdP&k(~+FO=|4>~ z9rQUXc#7tr?^pp8nj<-Z=6FRep+rS}4mdqAysT&o--=#_JOA+~WX%MCsLyEt6q=(c zTA;bFr)e(ga~kjz%|(4q1EA0xEtm$H`>8a|MSZSxagX|(20)=XS~ChX_pLO|MSV^K zUexC_01C~~8d9LS@1$ui>T@7i_WHRL%|(4q1EA0xttkbX`{^{zMSV^Ko}xKVp4&5> zLUXk29BA%)`dR(YaJ67wDS+V$zK_g(tYP~Hh7T+-$tM$RGSbWE1EV>7u8+5?8qCo(B z3p~lP8*$jTJXqjamK|%@w>((9?Q6-h9T9x4<5KJJ!B$rDB06 zdv>gS-%7;-&-UzC`@WTm1)lENv4(xi((j37;Kn*ta}b;5`95*067R zu)u@=@9pxviwjZX>% zH!Kdn0DVph1==;Q&;@8~QYg@#dj$pPVp1s3j(r6MXj)Pz(0+df1?W*yD7d$9cqeE{ zQYg^71`1t(4kU#Fy{Vv}01Zb91$xgxK>_*;unCMl^f_J1S9RLG1*_@RWOPMm^KT9< zNIVqqA0~e~*lXk>GW8uo1p1C#M5Z1@h(HgLi^$ZE2odNz-A{Rs3a zxrm&8^n#);=pu6wIsFLqFTKMDH|xukkLLVw;&xWEdzIq+>(%v=z6E&IUUr^N`p3z* z2NO{;ipg^X1!SOP6qCyc3P?T4C?;PK6p(Y0QA`sdK>^7o8O1ak5)_bSl2JHMsM|e3 z0qG?f#WXJxloENxG&vF!FgZ%rifM)zu51AUGajJP6T`iB$ZW1#D?g2jEz0|t5^ zD_GpeJYb+BvVz5Z%mW7cBP&?oW1Brt$$1QPOIEPJ$1;I|-pL9U_*f<|&`DXr0w2o+ z2Kp*1Slq`v&JVgQD_GpeJYb;bvVz5Z%mW5GFe_Nx$2?%5AN%%xKh|zL#V;Gbn8FfAL2 z6+i>!wSsB2NC-fu)LQ|j2S0NujKj9#dA8ade$tTSNAv5wf-yA{|hO67bKzT z^x~;D#^L4HEH5oAQcD>;D>7(&<9ylFYaOW8`@N>QF7uDOz zY}VX6#tgh$FZUUZ`PMVqB#(YpEv9q*2eHMzps}}%^?F(BPq`AQppNLJzNl91XSyAh z1x>kL?z3wAw$^`KT}BH!ZoSkO)#7fsn0Y)3G}L;z&*&TLuBZjwvR*2E*?mcm<{hR5 zy|6{>^>Q-thy|UlUhFw? zuTi$S`igK+eT~BHC0L|`5^R+2s>1>R>aY>OT#Q9HD8@$N#)>SWK}9x;HkD-&4a%}v zw5c|WXi%GtqRj3+Gg3d z$}O@%Hy>*FO})ID@C15HpM2UaHhIhVKT{3NpY7t! zm0aY5N^X~LFXjROin$%YRnLV1)N?z7xulDHP}1%4ja6NwgR1V4ZYt~|9TawtbW?2? z>7cgTrJKvU$Oq-!F5g(;MLMYPcIoCKFY-Z=x63!yd65q4yj{Ar)Qfmf>OJCZ)n3Gd zYHt^BEBGQD6nwjIYt0w&pyu};dTlo)U)J+^=ktzPwk7}3q0*m1!IfOSbRra>0Z5_X za_*o2T|f#27jy>&=mSzHxU4%UKsS&=!R6gS0lI<|3NG^w3eX*-P;j|-P=GEWg@TK| zg97vlDHL4%9TcEvNTJ{sz(D~zhZG8K1soKhgGiy^j=(_y8i^DNZVVh0pr1&g;10n- z0UC=G3T_k}6rjHd9!HdV>FKW~UhRW<1B0oz5C+g&`1N4wEQA4c7Jdd(Um*;jukbUN zx(ZLNru=pw$~+jYa@e{&lgzqq{pClXNZrR2yQu$xO4tk~3kGE1stJ|ho-^7%_k^&`wY^oIgl8&NomcAi_B&w83 zUw7L`^$!`OP^IvTicUOH7gb>FA6LW&2FsZv#Uf~AkMR5IeiP{fvi|g-^!UF zkP)4}1xoTa!p7h@UjzSJx=E|8qH<+BN0Tc>xlNuYOdzY})1}GngbAdyd`u>v6DE+) z@-d3pb1kb2?Qu}2@s~(5eQJ%5+F>$A`qaEB|w;>Lm)uqN`QDl4j(I3?1gO^5(xfT zz7XYx(*Xhc)C5hKo`;Gi!1K@q2-5>mfdCaa0mAe|R3JdfO@J^x5)}wgV-p}u&qM_R z6x9R>E{Bfj$Xi8CPenx&;HhYWCQOe-1p@TUU)!69uV(e7tkS=FSf%HyBVMZiu-YtB z(+VT4HlBT0t((PYHEZZhj_F!&p5I8OJlJ2Dq28-jw5Xel2s9gJqG#28(_Cdx4`@2f zFdxt%HJ6vONiGF}9>mPV?|slhbp{QAX2eYM!GoLUVgkL1ndwFKqq};!{xXA#UQo0J zU5Xj!!)iWR-%OU92MigYK-c1c8puZaQ`00HfiA`jbvPS&h(JqYCW6_>0|QzcGt5vn z@-Tr;$IOJYk%tDfJZ74qY~*1A9gvynKsNH=fL_RqGnkD$P@p&ZI_!;pAkERIVRJP4 z!AE=m&nUec`4dC^kq2z^mg(Know$Vv^hX||PpZXoy1K2GbgtfrzE*O5lYtGiOCGjY zUAC)w>F-lSZJ=xNp!L+2)~^T~=%GAppH{ccYV~%MqumrZ&`f#YKH1G&lIIG-20AMr z8>fvd4VJKh2Ft@XoYM5UR=_}$q^RR*T%*Pf|!* zPTj}F;5N%`heIYB&md%|{0HGc2{E`r`6#%ODGLmTOmsLL9|4%UTNu_g4jB)SxX?AIqR#qC@O>{Jq zn!K*>X6u;G?8@^c`PXipv8`}&W!urpm2F2WSF&I~-#p%nLGOyNhzGgJqqXspzB6O^ zz>NTWh4dHO0TngdMK!*et|l`V0Z2Y}70^l9wnG9$10dJztxr=EzV4jYt2Xri*7eR% z&)*5RQEa5pH{6=>n_ZNop1$+%l8f~NM6PVZL9T#saATTMtssDqa3ipHtBoZHASm1j zrgSO@AS&Dl?BNbAfWUAgaQ$>3fU^73y{K7E7YlykGOowddNgaUcX4y^0ez@%HmjGT z`itr6tcrd-kB#0Ike7QABUgY~yg*;5^&#RxY9_Gl^UQCh-F44I<)!LA>Ji<`D6~9KDZhuOE^| zzVLW&&lYk8*uq7lH-yLrhH%N&TR~(4D?le$EtYrVTtV?{&k%A27{Uvrw}prYw(yGA zn?u9{bNnjQVBFVBZoyOgi-ddcDK{+B3HRR9TzK#P+o}(V;z1{A&4v5UQGK}Y9Mwku zn+O!A>$@c#z1LgOxS$O%>)!v>uKhi$uIhCio0V`(wzIVVhyKxD*N`jQbq%=!)-{q) zSM}%m?}Q5m2fzmc?Zf?KLhr**mdm$vtljEnhkyQp4ts6x>5y0c-}%ex^U0ErRzCmnCuh~ce)>No z_3ctXnp`%7LoWX;SUtCmmm|?37X+|PE(e}NE{Io~T+>pd*cU{nO|EJEQRISPw8`bi zbPhf9&yxI#>zzX`D3f39B%gIXo6-Kb)oK^G7q2S5IBKuj9^vhB-}eahU>IA)KWll^ zLl@Z~ll#>3{$B_DJX zj`5%K2~Q5=gP!8EZq{7Zi>szt?tGM@}w^&UndtOnn z*iz_k>qbnN$JIpa%K3>vfT)SsyYmx)m{Ak4zvm|cQKTj!pa_vZ_y0D!*QR{~aiu1T z`;mtzCD!78}tu$NM1qQv!Sg+SLMa$J@ z#_%D{CRX+GcKhG753ISL@QZxB0CPs~ncb~udU5q|L2aOah|IE!pwK}5l#+yamIDz) zP)5W(E$Y*tXc0tNM#McWdJsV*S`g33H%t2>h}MjVds@`zGcj~xL|e7!F?4j&G91wn z#62x~5J5?{7`h64k(Xn0=f&u>W>||6#62x~d@(xDNkYt$7o!uOB*Z-}dVDcD6BB*Z-}dVDcDo0=}}sb3u3G>yD-7B-E0OVIt~ zsO}N}!J!_p-$h%oxT6blwgU_Fg=tvrq&-<%pchQT;?6ByTcH0lW1Z#qEzt9&Vde2H z(C4LLl70Fv3EYOpsVde2H(1)dAf)11en5xE-_6%AEB=-}{XW*+u$J3(MX9R)vP$^m%X@DQ zno{@X)}YkAxr-`wZ!QC+?#+q3)V(6LN&OZRLT`F2T21qz78ZL-0KB9+EPhOZw3hocZOL> ztS<=(3OACOQEcxE2?|(#NVAXa)gb`^s}0=~=P1VB(zdo4bQ)!(Xm! z6M|d;2_YTYm=uHtB!wI_ro9CbRl2yR5p?{CntccdJ2R#5jo94|5Umy@D8a5V6PQBI0|c6R~gQBI0|c6VXlf ziCFy(KLQ=0!)nlvoJ64aa}Ys4auR_q&p`zJ$VmkHIR_E+BUYTlk3i?Owe2y{&jBIrj>BG4aw z+*w!WeMiy}eYN8MmV@zl4Q|EWqIQ=b(%&9zgN%Yr8CV4K&w@&B6l@Av5zIeJ6Kt}v z2_s^*`ig%cNVhmAqaH;x$X=~Ac~ly;+FwBbu37*uehV6+=dAs7^D zqhKzq4jY4d-2MLNJs)pNzNjge->1JvuINkh-eT6-4{$B zKJj!(UxscZ63#xWHdjWAoDEq@pq765ie+WYi)0PLQR3cwEgr~o8?7+`Z;^&|Q~X@IB?lm>|UKxu%e z4^-_z^F1Hf+p2KvJdhP2>I0=U5cPr508t+RPMFmM(OOU%AnF690ir%o8UXsh*<<$u z#{_^ra7+N`1IGl2`T%gky=CC+wV#|++ETkd8=7{xqHMwM-tQL_UKxJ zUpNahyzjPAhxtZlr_KZI>&bj9J9c8L5#Kp*gV8l@h2D*J?>)Q^=+ow-&7(;EN=N4t zfcXWs$?li}TgN`8z}AtEDX>jm2L(pG&h9kBHY^};*oFlJ4%@JRz}wH-XCqW&3S*cpEkTd zm=77ft4&oW1(ar8q*{TIf_j*on`V!H0@=w5KWJnEJV|2CJWJYo5?~nEoZV2P2ZU; zMALjG3(<6-$wD-3XtEGZFPbbw(~zS6Z#|JE5%XG*^@h=vAnOgI>pBrzf~I>X6t%j_cKw#+UvZp-W<16yt$ zrmv<~bo@heKUeK_PqgJRLZ_NbLdvCT&U(ik zept<>Kf0S<(cy-R^$lw>ROP{Q6L_MvJ3%0HLbXWbbqbOEv*4v%wMgWQ3X%LXuSn#h z3X%LXuSn#&3X%LXuSn$43X%LXuSm2wq7cbH^NK`EB?^(?$N;s+qJcJ+!+<9Ja* zzjCM{QwT#n(!t(RgvC}u@W@cxq!1Qc1Hr;jC#4V;Tm8VoP;;da7F+kg!cf1Z5EfhU zz`{@qrVtie>%hWLSEdjKRylsQJJY$Dt|z1GS^Xs)OGgtc`gmWnUe^+NiKm+WSKSzF z&oGrMq=(>2eppis3mS;wM6H?PTR=d3CxVz_UqC?YCxV#rf`EX$kO*SR83F=wMsFL( zbbUi-k}aE+ymS=n=(>j+-#5+GE)4f}sL-p=tMziaSUj92dGTJwKNzjwE+*$yQ@;sC zg{gwo*hU|Bnwv!tnl-dn{!{Y)-7-mVWgD~dHy~#74C6($S}gCzlh{Z&M1qmfEG6Iu z0iB2Pd38Bmj&B^0G~o##L9pk6d{O<7-k+O!R7sPkfD&YaT$J^=9#89-E_bf`2lrf8 zu57g{SN2B&Qc0eXTvS)}^36yQhHUayzrwliydcxKInT_Qg6$o+0IlN$SGMYwyuh>W zV0}Cfv^Fnr$On|*VMrb(WflNP;9*G~ByG$CCh#;R7n3f+0TX!Kl7~qjtAGkTkx^59 zVXooscp4OSD4xnlI}j;lgdK{3Qqr(@myveZZ?nmZ*NQTtihE>lV5L2>C#<+f2GR<9 zWKUWFkNom@IdV``c8?sCmfIr-g=P21h_uWeIVkN29@&ckIP-Sr$Z%*qQN=y7C#|$c z_JkGp$Us_QkL*d)dt~o93oY$TXt#gH?}~)$LAzPr@1$u{fAvSMY*&Be3RwNg2+kdM zY&Brll?xPK3Z|YJp?J#ffa0H(gJSbJpuk#AMosbhiUSHP%VdNyt@esffi)N>6u%Y! zn%24KW%jG-axz{|n>i~grYR7i+jSVh+^)mOl~;7HaVlrye8KGb)CL@$H zLcv;0Mkr^5g2kAOP|gSiYcaj&F`F7X{0405XI{dp%AVM+LH+{$qhD3!3hyEcBGdxT zAz1e7ED_D|Ad>+Unj<-ZE_p9gg623RlfhE}Nd7Ru=7qi9H%+2-0{9$-d7wGoQI(*% zsLyG@QvjkqrvXs-+_vNW1=80hetBP4g65(=rvXm^ApBvU(;V8a(A>5+`2~`<(H!qC zOVC`@=QQ9c08yXQ04Ov^eMk_k-%it9)aNwdDVihvVV?s|zxT?nLUY?448K6~Ha_=V z`d3Mx(}1S{M14*JpwQfQ-XNOe*I5!Y7xg&}cnSdF@B3W$pk?6nd$lzM0Ol(zfWmYn zCrB5(r6<93(C4h+DFD!StN;qlk(@wtyoEhMb5WlIPJdjV(*P(mM^m&wbG(s0L32@` z(}1S{M14*JpwJvGmv!_I#6k5GLn6f7aOa1SW>Qjob)DA=nU z6#TP{6zp0K3jSF}3e%Fd_yu_AlwuLn8n#e?r%Wjnw0h;S2>&djMfe%9!!N+22yE1$ZKsLc!0n9Nq~Yfu&IJ!z%{` zc;=NtL90L>3jSHf7~v<@4qbo;-QY3W;D;pq??(K7Lf$lp%>I>XdL>u3&k*DaNNp*o zhxURU3??A~jYtZ~fqh~M5YUUHfE?OGrXT_RNE!*=U#1`dJxL15;k{=H7SNd(S$g~6 z;7-X9gDnxn5|!iN%68>id^$Z5^iUI`3zY2?rTL=^RPGdzgy;g*JB`F0U7&)ekR(MH zsN=zVL^F98_<1#MX3g?>bCnsy`9Wv&AnrUpfE(mJ);rcdd3Dazd{(Da2I_C zeYY?ot_h}|3SrmFdhh$4VKD*1KpPenM%7?C`+Tx=SPe`iqvD=bQ!za|b;2?|V9+_TCVZJ>rkg;DLK6NEgP1a(3o?Rq(xc%*qM!8w0L)!`#x-liDY z<*XiiLL0PY-A$vLWH@?F8F8}Q6+88)e$7yI`+n!dn+G}Nj=cHrx+HD0Dp$5sLAe5Q zP%15lr&@19!aoaU@u?)Hb!j011w5663$#NgpsuHqnAWF7C!pk~l5k;n=!Adv{{!c{ BF3bP` diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json deleted file mode 100644 index ccacb0ffa37..00000000000 --- a/src/main/resources/runtime_item_ids.json +++ /dev/null @@ -1 +0,0 @@ -[{"oldData":4,"name":"minecraft:acacia_boat","id":377,"oldId":333},{"name":"minecraft:acacia_button","id":-140,"oldId":-140},{"name":"minecraft:acacia_door","id":546,"oldId":430},{"name":"minecraft:acacia_fence_gate","id":187,"oldId":187},{"name":"minecraft:acacia_pressure_plate","id":-150,"oldId":-150},{"name":"minecraft:acacia_sign","id":569,"oldId":475},{"name":"minecraft:acacia_stairs","id":163,"oldId":163},{"name":"minecraft:acacia_standing_sign","id":-190,"oldId":-190},{"name":"minecraft:acacia_trapdoor","id":-145,"oldId":-145},{"name":"minecraft:acacia_wall_sign","id":-191,"oldId":-191},{"name":"minecraft:activator_rail","id":126,"oldId":126},{"name":"minecraft:agent_spawn_egg","id":485,"oldId":383,"oldData":56},{"name":"minecraft:air","id":-158,"oldId":-158},{"name":"minecraft:allow","id":210,"oldId":210},{"name":"minecraft:ancient_debris","id":-271,"oldId":-271},{"name":"minecraft:andesite_stairs","id":-171,"oldId":-171},{"name":"minecraft:anvil","id":145,"oldId":145},{"name":"minecraft:apple","id":257,"oldId":260},{"name":"minecraft:armor_stand","id":542,"oldId":425},{"name":"minecraft:arrow","id":301,"oldId":262},{"name":"minecraft:baked_potato","id":281,"oldId":393},{"name":"minecraft:balloon","id":588,"oldId":448},{"name":"minecraft:bamboo","id":-163,"oldId":-163},{"name":"minecraft:bamboo_sapling","id":-164,"oldId":-164},{"name":"minecraft:banner","id":557,"oldId":446},{"name":"minecraft:banner_pattern","id":614,"oldId":434},{"name":"minecraft:barrel","id":-203,"oldId":-203},{"name":"minecraft:barrier","id":-161,"oldId":-161},{"name":"minecraft:basalt","id":-234,"oldId":-234},{"name":"minecraft:bat_spawn_egg","id":451,"oldId":383,"oldData":19},{"name":"minecraft:beacon","id":138,"oldId":138},{"name":"minecraft:bed","id":416,"oldId":355},{"name":"minecraft:bedrock","id":7,"oldId":7},{"name":"minecraft:bee_nest","id":-218,"oldId":-218},{"name":"minecraft:bee_spawn_egg","id":492,"oldId":383,"oldData":122},{"name":"minecraft:beef","id":273,"oldId":363},{"name":"minecraft:beehive","id":-219,"oldId":-219},{"name":"minecraft:beetroot","id":285,"oldId":457},{"name":"minecraft:beetroot_seeds","id":295,"oldId":458},{"name":"minecraft:beetroot_soup","id":286,"oldId":459},{"name":"minecraft:bell","id":-206,"oldId":-206},{"oldData":2,"name":"minecraft:birch_boat","id":374,"oldId":333},{"name":"minecraft:birch_button","id":-141,"oldId":-141},{"name":"minecraft:birch_door","id":544,"oldId":428},{"name":"minecraft:birch_fence_gate","id":184,"oldId":184},{"name":"minecraft:birch_pressure_plate","id":-151,"oldId":-151},{"name":"minecraft:birch_sign","id":567,"oldId":473},{"name":"minecraft:birch_stairs","id":135,"oldId":135},{"name":"minecraft:birch_standing_sign","id":-186,"oldId":-186},{"name":"minecraft:birch_trapdoor","id":-146,"oldId":-146},{"name":"minecraft:birch_wall_sign","id":-187,"oldId":-187},{"oldData":16,"name":"minecraft:black_dye","id":393,"oldId":351},{"name":"minecraft:black_glazed_terracotta","id":235,"oldId":235},{"name":"minecraft:blackstone","id":-273,"oldId":-273},{"name":"minecraft:blackstone_double_slab","id":-283,"oldId":-283},{"name":"minecraft:blackstone_slab","id":-282,"oldId":-282},{"name":"minecraft:blackstone_stairs","id":-276,"oldId":-276},{"name":"minecraft:blackstone_wall","id":-277,"oldId":-277},{"name":"minecraft:blast_furnace","id":-196,"oldId":-196},{"name":"minecraft:blaze_powder","id":427,"oldId":377},{"name":"minecraft:blaze_rod","id":421,"oldId":369},{"name":"minecraft:blaze_spawn_egg","id":454,"oldId":383,"oldData":43},{"name":"minecraft:bleach","id":586,"oldId":451},{"oldData":18,"name":"minecraft:blue_dye","id":397,"oldId":351},{"name":"minecraft:blue_glazed_terracotta","id":231,"oldId":231},{"name":"minecraft:blue_ice","id":-11,"oldId":-11},{"name":"minecraft:boat","id":612,"oldId":333},{"name":"minecraft:bone","id":413,"oldId":352},{"name":"minecraft:bone_block","id":216,"oldId":216},{"oldData":15,"name":"minecraft:bone_meal","id":409,"oldId":351},{"name":"minecraft:book","id":385,"oldId":340},{"name":"minecraft:bookshelf","id":47,"oldId":47},{"name":"minecraft:border_block","id":212,"oldId":212},{"oldData":5,"name":"minecraft:bordure_indented_banner_pattern","id":576,"oldId":434},{"name":"minecraft:bow","id":300,"oldId":261},{"name":"minecraft:bowl","id":321,"oldId":281},{"name":"minecraft:bread","id":261,"oldId":297},{"name":"minecraft:brewing_stand","id":429,"oldId":379},{"name":"minecraft:brewingstandblock","id":117,"oldId":117},{"name":"minecraft:brick","id":381,"oldId":336},{"name":"minecraft:brick_block","id":45,"oldId":45},{"name":"minecraft:brick_stairs","id":108,"oldId":108},{"oldData":17,"name":"minecraft:brown_dye","id":396,"oldId":351},{"name":"minecraft:brown_glazed_terracotta","id":232,"oldId":232},{"name":"minecraft:brown_mushroom","id":39,"oldId":39},{"name":"minecraft:brown_mushroom_block","id":99,"oldId":99},{"name":"minecraft:bubble_column","id":-160,"oldId":-160},{"oldData":0,"name":"minecraft:bucket","id":360,"oldId":325},{"name":"minecraft:cactus","id":81,"oldId":81},{"name":"minecraft:cake","id":415,"oldId":354},{"name":"minecraft:camera","id":583,"oldId":498},{"name":"minecraft:campfire","id":578,"oldId":720},{"name":"minecraft:carpet","id":171,"oldId":171},{"name":"minecraft:carrot","id":279,"oldId":391},{"name":"minecraft:carrot_on_a_stick","id":507,"oldId":398},{"name":"minecraft:carrots","id":141,"oldId":141},{"name":"minecraft:cartography_table","id":-200,"oldId":-200},{"name":"minecraft:carved_pumpkin","id":-155,"oldId":-155},{"name":"minecraft:cat_spawn_egg","id":486,"oldId":383,"oldData":75},{"name":"minecraft:cauldron","id":430,"oldId":380},{"name":"minecraft:cave_spider_spawn_egg","id":455,"oldId":383,"oldData":40},{"name":"minecraft:chain","id":608,"oldId":758},{"name":"minecraft:chain_command_block","id":189,"oldId":189},{"name":"minecraft:chainmail_boots","id":342,"oldId":305},{"name":"minecraft:chainmail_chestplate","id":340,"oldId":303},{"name":"minecraft:chainmail_helmet","id":339,"oldId":302},{"name":"minecraft:chainmail_leggings","id":341,"oldId":304},{"oldData":1,"name":"minecraft:charcoal","id":303,"oldId":263},{"name":"minecraft:chemical_heat","id":192,"oldId":192},{"name":"minecraft:chemistry_table","id":238,"oldId":238},{"name":"minecraft:chest","id":54,"oldId":54},{"name":"minecraft:chest_minecart","id":387,"oldId":342},{"name":"minecraft:chicken","id":275,"oldId":365},{"name":"minecraft:chicken_spawn_egg","id":433,"oldId":383,"oldData":10},{"name":"minecraft:chiseled_nether_bricks","id":-302,"oldId":-302},{"name":"minecraft:chiseled_polished_blackstone","id":-279,"oldId":-279},{"name":"minecraft:chorus_flower","id":200,"oldId":200},{"name":"minecraft:chorus_fruit","id":548,"oldId":432},{"name":"minecraft:chorus_plant","id":240,"oldId":240},{"name":"minecraft:clay","id":82,"oldId":82},{"name":"minecraft:clay_ball","id":382,"oldId":337},{"name":"minecraft:clock","id":391,"oldId":347},{"oldData":0,"name":"minecraft:coal","id":302,"oldId":263},{"name":"minecraft:coal_block","id":173,"oldId":173},{"name":"minecraft:coal_ore","id":16,"oldId":16},{"name":"minecraft:cobblestone","id":4,"oldId":4},{"name":"minecraft:cobblestone_wall","id":139,"oldId":139},{"name":"minecraft:cocoa","id":127,"oldId":127},{"oldData":3,"name":"minecraft:cocoa_beans","id":410,"oldId":351},{"name":"minecraft:cod","id":264,"oldId":349},{"oldData":2,"name":"minecraft:cod_bucket","id":364,"oldId":325},{"name":"minecraft:cod_spawn_egg","id":478,"oldId":383,"oldData":112},{"name":"minecraft:colored_torch_bp","id":204,"oldId":204},{"name":"minecraft:colored_torch_rg","id":202,"oldId":202},{"name":"minecraft:command_block","id":137,"oldId":137},{"name":"minecraft:command_block_minecart","id":553,"oldId":443},{"name":"minecraft:comparator","id":512,"oldId":404},{"name":"minecraft:compass","id":389,"oldId":345},{"name":"minecraft:composter","id":-213,"oldId":-213},{"name":"minecraft:compound","id":584,"oldId":499},{"name":"minecraft:concrete","id":236,"oldId":236},{"name":"minecraft:concrete_powder","id":237,"oldId":237},{"name":"minecraft:conduit","id":-157,"oldId":-157},{"name":"minecraft:cooked_beef","id":274,"oldId":364},{"name":"minecraft:cooked_chicken","id":276,"oldId":366},{"name":"minecraft:cooked_cod","id":268,"oldId":350},{"name":"minecraft:cooked_mutton","id":541,"oldId":424},{"name":"minecraft:cooked_porkchop","id":263,"oldId":320},{"name":"minecraft:cooked_rabbit","id":289,"oldId":412},{"name":"minecraft:cooked_salmon","id":269,"oldId":463},{"name":"minecraft:cookie","id":271,"oldId":357},{"name":"minecraft:coral","id":-131,"oldId":-131},{"name":"minecraft:coral_block","id":-132,"oldId":-132},{"name":"minecraft:coral_fan","id":-133,"oldId":-133},{"name":"minecraft:coral_fan_dead","id":-134,"oldId":-134},{"name":"minecraft:coral_fan_hang","id":-135,"oldId":-135},{"name":"minecraft:coral_fan_hang2","id":-136,"oldId":-136},{"name":"minecraft:coral_fan_hang3","id":-137,"oldId":-137},{"name":"minecraft:cow_spawn_egg","id":434,"oldId":383,"oldData":11},{"name":"minecraft:cracked_nether_bricks","id":-303,"oldId":-303},{"name":"minecraft:cracked_polished_blackstone_bricks","id":-280,"oldId":-280},{"name":"minecraft:crafting_table","id":58,"oldId":58},{"oldData":0,"name":"minecraft:creeper_banner_pattern","id":572,"oldId":434},{"name":"minecraft:creeper_spawn_egg","id":439,"oldId":383,"oldData":33},{"name":"minecraft:crimson_button","id":-260,"oldId":-260},{"name":"minecraft:crimson_door","id":605,"oldId":755},{"name":"minecraft:crimson_double_slab","id":-266,"oldId":-266},{"name":"minecraft:crimson_fence","id":-256,"oldId":-256},{"name":"minecraft:crimson_fence_gate","id":-258,"oldId":-258},{"name":"minecraft:crimson_fungus","id":-228,"oldId":-228},{"name":"minecraft:crimson_hyphae","id":-299,"oldId":-299},{"name":"minecraft:crimson_nylium","id":-232,"oldId":-232},{"name":"minecraft:crimson_planks","id":-242,"oldId":-242},{"name":"minecraft:crimson_pressure_plate","id":-262,"oldId":-262},{"name":"minecraft:crimson_roots","id":-223,"oldId":-223},{"name":"minecraft:crimson_sign","id":603,"oldId":753},{"name":"minecraft:crimson_slab","id":-264,"oldId":-264},{"name":"minecraft:crimson_stairs","id":-254,"oldId":-254},{"name":"minecraft:crimson_standing_sign","id":-250,"oldId":-250},{"name":"minecraft:crimson_stem","id":-225,"oldId":-225},{"name":"minecraft:crimson_trapdoor","id":-246,"oldId":-246},{"name":"minecraft:crimson_wall_sign","id":-252,"oldId":-252},{"name":"minecraft:crossbow","id":565,"oldId":471},{"name":"minecraft:crying_obsidian","id":-289,"oldId":-289},{"oldData":6,"name":"minecraft:cyan_dye","id":399,"oldId":351},{"name":"minecraft:cyan_glazed_terracotta","id":229,"oldId":229},{"oldData":5,"name":"minecraft:dark_oak_boat","id":378,"oldId":333},{"name":"minecraft:dark_oak_button","id":-142,"oldId":-142},{"name":"minecraft:dark_oak_door","id":547,"oldId":431},{"name":"minecraft:dark_oak_fence_gate","id":186,"oldId":186},{"name":"minecraft:dark_oak_pressure_plate","id":-152,"oldId":-152},{"name":"minecraft:dark_oak_sign","id":570,"oldId":476},{"name":"minecraft:dark_oak_stairs","id":164,"oldId":164},{"name":"minecraft:dark_oak_trapdoor","id":-147,"oldId":-147},{"name":"minecraft:dark_prismarine_stairs","id":-3,"oldId":-3},{"name":"minecraft:darkoak_standing_sign","id":-192,"oldId":-192},{"name":"minecraft:darkoak_wall_sign","id":-193,"oldId":-193},{"name":"minecraft:daylight_detector","id":151,"oldId":151},{"name":"minecraft:daylight_detector_inverted","id":178,"oldId":178},{"name":"minecraft:deadbush","id":32,"oldId":32},{"name":"minecraft:debug_stick","id":580},{"name":"minecraft:deny","id":211,"oldId":211},{"name":"minecraft:detector_rail","id":28,"oldId":28},{"name":"minecraft:diamond","id":304,"oldId":264},{"name":"minecraft:diamond_axe","id":319,"oldId":279},{"name":"minecraft:diamond_block","id":57,"oldId":57},{"name":"minecraft:diamond_boots","id":350,"oldId":313},{"name":"minecraft:diamond_chestplate","id":348,"oldId":311},{"name":"minecraft:diamond_helmet","id":347,"oldId":310},{"name":"minecraft:diamond_hoe","id":332,"oldId":293},{"name":"minecraft:diamond_horse_armor","id":523,"oldId":419},{"name":"minecraft:diamond_leggings","id":349,"oldId":312},{"name":"minecraft:diamond_ore","id":56,"oldId":56},{"name":"minecraft:diamond_pickaxe","id":318,"oldId":278},{"name":"minecraft:diamond_shovel","id":317,"oldId":277},{"name":"minecraft:diamond_sword","id":316,"oldId":276},{"name":"minecraft:diorite_stairs","id":-170,"oldId":-170},{"name":"minecraft:dirt","id":3,"oldId":3},{"name":"minecraft:dispenser","id":23,"oldId":23},{"name":"minecraft:dolphin_spawn_egg","id":482,"oldId":383,"oldData":31},{"name":"minecraft:donkey_spawn_egg","id":463,"oldId":383,"oldData":24},{"name":"minecraft:double_plant","id":175,"oldId":175},{"name":"minecraft:double_stone_slab","id":44,"oldId":44},{"name":"minecraft:double_stone_slab2","id":182,"oldId":182},{"name":"minecraft:double_stone_slab3","id":-162,"oldId":-162},{"name":"minecraft:double_stone_slab4","id":-166,"oldId":-166},{"name":"minecraft:double_wooden_slab","id":157,"oldId":157},{"name":"minecraft:dragon_breath","id":550,"oldId":437},{"name":"minecraft:dragon_egg","id":122,"oldId":122},{"name":"minecraft:dried_kelp","id":270,"oldId":464},{"name":"minecraft:dried_kelp_block","id":-139,"oldId":-139},{"name":"minecraft:dropper","id":125,"oldId":125},{"name":"minecraft:drowned_spawn_egg","id":481,"oldId":383,"oldData":110},{"name":"minecraft:dye","id":613,"oldId":351},{"name":"minecraft:egg","id":388,"oldId":344},{"name":"minecraft:elder_guardian_spawn_egg","id":469,"oldId":383,"oldData":50},{"name":"minecraft:element_0","id":36,"oldId":36},{"name":"minecraft:element_1","id":-12,"oldId":-12},{"name":"minecraft:element_10","id":-21,"oldId":-21},{"name":"minecraft:element_100","id":-111,"oldId":-111},{"name":"minecraft:element_101","id":-112,"oldId":-112},{"name":"minecraft:element_102","id":-113,"oldId":-113},{"name":"minecraft:element_103","id":-114,"oldId":-114},{"name":"minecraft:element_104","id":-115,"oldId":-115},{"name":"minecraft:element_105","id":-116,"oldId":-116},{"name":"minecraft:element_106","id":-117,"oldId":-117},{"name":"minecraft:element_107","id":-118,"oldId":-118},{"name":"minecraft:element_108","id":-119,"oldId":-119},{"name":"minecraft:element_109","id":-120,"oldId":-120},{"name":"minecraft:element_11","id":-22,"oldId":-22},{"name":"minecraft:element_110","id":-121,"oldId":-121},{"name":"minecraft:element_111","id":-122,"oldId":-122},{"name":"minecraft:element_112","id":-123,"oldId":-123},{"name":"minecraft:element_113","id":-124,"oldId":-124},{"name":"minecraft:element_114","id":-125,"oldId":-125},{"name":"minecraft:element_115","id":-126,"oldId":-126},{"name":"minecraft:element_116","id":-127,"oldId":-127},{"name":"minecraft:element_117","id":-128,"oldId":-128},{"name":"minecraft:element_118","id":-129,"oldId":-129},{"name":"minecraft:element_12","id":-23,"oldId":-23},{"name":"minecraft:element_13","id":-24,"oldId":-24},{"name":"minecraft:element_14","id":-25,"oldId":-25},{"name":"minecraft:element_15","id":-26,"oldId":-26},{"name":"minecraft:element_16","id":-27,"oldId":-27},{"name":"minecraft:element_17","id":-28,"oldId":-28},{"name":"minecraft:element_18","id":-29,"oldId":-29},{"name":"minecraft:element_19","id":-30,"oldId":-30},{"name":"minecraft:element_2","id":-13,"oldId":-13},{"name":"minecraft:element_20","id":-31,"oldId":-31},{"name":"minecraft:element_21","id":-32,"oldId":-32},{"name":"minecraft:element_22","id":-33,"oldId":-33},{"name":"minecraft:element_23","id":-34,"oldId":-34},{"name":"minecraft:element_24","id":-35,"oldId":-35},{"name":"minecraft:element_25","id":-36,"oldId":-36},{"name":"minecraft:element_26","id":-37,"oldId":-37},{"name":"minecraft:element_27","id":-38,"oldId":-38},{"name":"minecraft:element_28","id":-39,"oldId":-39},{"name":"minecraft:element_29","id":-40,"oldId":-40},{"name":"minecraft:element_3","id":-14,"oldId":-14},{"name":"minecraft:element_30","id":-41,"oldId":-41},{"name":"minecraft:element_31","id":-42,"oldId":-42},{"name":"minecraft:element_32","id":-43,"oldId":-43},{"name":"minecraft:element_33","id":-44,"oldId":-44},{"name":"minecraft:element_34","id":-45,"oldId":-45},{"name":"minecraft:element_35","id":-46,"oldId":-46},{"name":"minecraft:element_36","id":-47,"oldId":-47},{"name":"minecraft:element_37","id":-48,"oldId":-48},{"name":"minecraft:element_38","id":-49,"oldId":-49},{"name":"minecraft:element_39","id":-50,"oldId":-50},{"name":"minecraft:element_4","id":-15,"oldId":-15},{"name":"minecraft:element_40","id":-51,"oldId":-51},{"name":"minecraft:element_41","id":-52,"oldId":-52},{"name":"minecraft:element_42","id":-53,"oldId":-53},{"name":"minecraft:element_43","id":-54,"oldId":-54},{"name":"minecraft:element_44","id":-55,"oldId":-55},{"name":"minecraft:element_45","id":-56,"oldId":-56},{"name":"minecraft:element_46","id":-57,"oldId":-57},{"name":"minecraft:element_47","id":-58,"oldId":-58},{"name":"minecraft:element_48","id":-59,"oldId":-59},{"name":"minecraft:element_49","id":-60,"oldId":-60},{"name":"minecraft:element_5","id":-16,"oldId":-16},{"name":"minecraft:element_50","id":-61,"oldId":-61},{"name":"minecraft:element_51","id":-62,"oldId":-62},{"name":"minecraft:element_52","id":-63,"oldId":-63},{"name":"minecraft:element_53","id":-64,"oldId":-64},{"name":"minecraft:element_54","id":-65,"oldId":-65},{"name":"minecraft:element_55","id":-66,"oldId":-66},{"name":"minecraft:element_56","id":-67,"oldId":-67},{"name":"minecraft:element_57","id":-68,"oldId":-68},{"name":"minecraft:element_58","id":-69,"oldId":-69},{"name":"minecraft:element_59","id":-70,"oldId":-70},{"name":"minecraft:element_6","id":-17,"oldId":-17},{"name":"minecraft:element_60","id":-71,"oldId":-71},{"name":"minecraft:element_61","id":-72,"oldId":-72},{"name":"minecraft:element_62","id":-73,"oldId":-73},{"name":"minecraft:element_63","id":-74,"oldId":-74},{"name":"minecraft:element_64","id":-75,"oldId":-75},{"name":"minecraft:element_65","id":-76,"oldId":-76},{"name":"minecraft:element_66","id":-77,"oldId":-77},{"name":"minecraft:element_67","id":-78,"oldId":-78},{"name":"minecraft:element_68","id":-79,"oldId":-79},{"name":"minecraft:element_69","id":-80,"oldId":-80},{"name":"minecraft:element_7","id":-18,"oldId":-18},{"name":"minecraft:element_70","id":-81,"oldId":-81},{"name":"minecraft:element_71","id":-82,"oldId":-82},{"name":"minecraft:element_72","id":-83,"oldId":-83},{"name":"minecraft:element_73","id":-84,"oldId":-84},{"name":"minecraft:element_74","id":-85,"oldId":-85},{"name":"minecraft:element_75","id":-86,"oldId":-86},{"name":"minecraft:element_76","id":-87,"oldId":-87},{"name":"minecraft:element_77","id":-88,"oldId":-88},{"name":"minecraft:element_78","id":-89,"oldId":-89},{"name":"minecraft:element_79","id":-90,"oldId":-90},{"name":"minecraft:element_8","id":-19,"oldId":-19},{"name":"minecraft:element_80","id":-91,"oldId":-91},{"name":"minecraft:element_81","id":-92,"oldId":-92},{"name":"minecraft:element_82","id":-93,"oldId":-93},{"name":"minecraft:element_83","id":-94,"oldId":-94},{"name":"minecraft:element_84","id":-95,"oldId":-95},{"name":"minecraft:element_85","id":-96,"oldId":-96},{"name":"minecraft:element_86","id":-97,"oldId":-97},{"name":"minecraft:element_87","id":-98,"oldId":-98},{"name":"minecraft:element_88","id":-99,"oldId":-99},{"name":"minecraft:element_89","id":-100,"oldId":-100},{"name":"minecraft:element_9","id":-20,"oldId":-20},{"name":"minecraft:element_90","id":-101,"oldId":-101},{"name":"minecraft:element_91","id":-102,"oldId":-102},{"name":"minecraft:element_92","id":-103,"oldId":-103},{"name":"minecraft:element_93","id":-104,"oldId":-104},{"name":"minecraft:element_94","id":-105,"oldId":-105},{"name":"minecraft:element_95","id":-106,"oldId":-106},{"name":"minecraft:element_96","id":-107,"oldId":-107},{"name":"minecraft:element_97","id":-108,"oldId":-108},{"name":"minecraft:element_98","id":-109,"oldId":-109},{"name":"minecraft:element_99","id":-110,"oldId":-110},{"name":"minecraft:elytra","id":554,"oldId":444},{"name":"minecraft:emerald","id":502,"oldId":388},{"name":"minecraft:emerald_block","id":133,"oldId":133},{"name":"minecraft:emerald_ore","id":129,"oldId":129},{"name":"minecraft:empty_map","id":505,"oldId":395},{"name":"minecraft:enchanted_book","id":511,"oldId":403},{"name":"minecraft:enchanted_golden_apple","id":259,"oldId":466},{"name":"minecraft:enchanting_table","id":116,"oldId":116},{"name":"minecraft:end_brick_stairs","id":-178,"oldId":-178},{"name":"minecraft:end_bricks","id":206,"oldId":206},{"name":"minecraft:end_crystal","id":616,"oldId":426},{"name":"minecraft:end_gateway","id":209,"oldId":209},{"name":"minecraft:end_portal","id":119,"oldId":119},{"name":"minecraft:end_portal_frame","id":120,"oldId":120},{"name":"minecraft:end_rod","id":208,"oldId":208},{"name":"minecraft:end_stone","id":121,"oldId":121},{"name":"minecraft:ender_chest","id":130,"oldId":130},{"name":"minecraft:ender_eye","id":431,"oldId":381},{"name":"minecraft:ender_pearl","id":420,"oldId":368},{"name":"minecraft:enderman_spawn_egg","id":440,"oldId":383,"oldData":38},{"name":"minecraft:endermite_spawn_egg","id":458,"oldId":383,"oldData":55},{"name":"minecraft:evoker_spawn_egg","id":473,"oldId":383,"oldData":104},{"name":"minecraft:experience_bottle","id":498,"oldId":384},{"name":"minecraft:farmland","id":60,"oldId":60},{"name":"minecraft:feather","id":327,"oldId":288},{"name":"minecraft:fence","id":85,"oldId":85},{"name":"minecraft:fence_gate","id":107,"oldId":107},{"name":"minecraft:fermented_spider_eye","id":426,"oldId":376},{"oldData":4,"name":"minecraft:field_masoned_banner_pattern","id":575,"oldId":434},{"name":"minecraft:filled_map","id":418,"oldId":358},{"name":"minecraft:fire","id":51,"oldId":51},{"name":"minecraft:fire_charge","id":499,"oldId":385},{"name":"minecraft:firework_rocket","id":509,"oldId":401},{"name":"minecraft:firework_star","id":510,"oldId":402},{"name":"minecraft:fishing_rod","id":390,"oldId":346},{"name":"minecraft:fletching_table","id":-201,"oldId":-201},{"name":"minecraft:flint","id":356,"oldId":318},{"name":"minecraft:flint_and_steel","id":299,"oldId":259},{"oldData":2,"name":"minecraft:flower_banner_pattern","id":571,"oldId":434},{"name":"minecraft:flower_pot","id":504,"oldId":390},{"name":"minecraft:flowing_lava","id":10,"oldId":10},{"name":"minecraft:flowing_water","id":8,"oldId":8},{"name":"minecraft:fox_spawn_egg","id":488,"oldId":383,"oldData":121},{"name":"minecraft:frame","id":503,"oldId":389},{"name":"minecraft:frosted_ice","id":207,"oldId":207},{"name":"minecraft:furnace","id":61,"oldId":61},{"name":"minecraft:ghast_spawn_egg","id":452,"oldId":383,"oldData":41},{"name":"minecraft:ghast_tear","id":422,"oldId":370},{"name":"minecraft:gilded_blackstone","id":-281,"oldId":-281},{"name":"minecraft:glass","id":20,"oldId":20},{"name":"minecraft:glass_bottle","id":425,"oldId":374},{"name":"minecraft:glass_pane","id":102,"oldId":102},{"name":"minecraft:glistering_melon_slice","id":432,"oldId":382},{"name":"minecraft:glow_stick","id":166,"oldId":166},{"name":"minecraft:glowingobsidian","id":246,"oldId":246},{"name":"minecraft:glowstone","id":89,"oldId":89},{"name":"minecraft:glowstone_dust","id":392,"oldId":348},{"name":"minecraft:gold_block","id":41,"oldId":41},{"name":"minecraft:gold_ingot","id":306,"oldId":266},{"name":"minecraft:gold_nugget","id":423,"oldId":371},{"name":"minecraft:gold_ore","id":14,"oldId":14},{"name":"minecraft:golden_apple","id":258,"oldId":322},{"name":"minecraft:golden_axe","id":325,"oldId":286},{"name":"minecraft:golden_boots","id":354,"oldId":317},{"name":"minecraft:golden_carrot","id":283,"oldId":396},{"name":"minecraft:golden_chestplate","id":352,"oldId":315},{"name":"minecraft:golden_helmet","id":351,"oldId":314},{"name":"minecraft:golden_hoe","id":333,"oldId":294},{"name":"minecraft:golden_horse_armor","id":522,"oldId":418},{"name":"minecraft:golden_leggings","id":353,"oldId":316},{"name":"minecraft:golden_pickaxe","id":324,"oldId":285},{"name":"minecraft:golden_rail","id":27,"oldId":27},{"name":"minecraft:golden_shovel","id":323,"oldId":284},{"name":"minecraft:golden_sword","id":322,"oldId":283},{"name":"minecraft:granite_stairs","id":-169,"oldId":-169},{"name":"minecraft:grass","id":2,"oldId":2},{"name":"minecraft:grass_path","id":198,"oldId":198},{"name":"minecraft:gravel","id":13,"oldId":13},{"oldData":8,"name":"minecraft:gray_dye","id":401,"oldId":351},{"name":"minecraft:gray_glazed_terracotta","id":227,"oldId":227},{"oldData":2,"name":"minecraft:green_dye","id":395,"oldId":351},{"name":"minecraft:green_glazed_terracotta","id":233,"oldId":233},{"name":"minecraft:grindstone","id":-195,"oldId":-195},{"name":"minecraft:guardian_spawn_egg","id":459,"oldId":383,"oldData":49},{"name":"minecraft:gunpowder","id":328,"oldId":289},{"name":"minecraft:hard_glass","id":253,"oldId":253},{"name":"minecraft:hard_glass_pane","id":190,"oldId":190},{"name":"minecraft:hard_stained_glass","id":254,"oldId":254},{"name":"minecraft:hard_stained_glass_pane","id":191,"oldId":191},{"name":"minecraft:hardened_clay","id":172,"oldId":172},{"name":"minecraft:hay_block","id":170,"oldId":170},{"name":"minecraft:heart_of_the_sea","id":561,"oldId":467},{"name":"minecraft:heavy_weighted_pressure_plate","id":148,"oldId":148},{"name":"minecraft:hoglin_spawn_egg","id":494,"oldId":383,"oldData":124},{"name":"minecraft:honey_block","id":-220,"oldId":-220},{"name":"minecraft:honey_bottle","id":582,"oldId":737},{"name":"minecraft:honeycomb","id":581,"oldId":736},{"name":"minecraft:honeycomb_block","id":-221,"oldId":-221},{"name":"minecraft:hopper","id":517,"oldId":410},{"name":"minecraft:hopper_minecart","id":516,"oldId":408},{"name":"minecraft:horse_spawn_egg","id":456,"oldId":383,"oldData":23},{"name":"minecraft:husk_spawn_egg","id":461,"oldId":383,"oldData":47},{"name":"minecraft:ice","id":79,"oldId":79},{"name":"minecraft:ice_bomb","id":585,"oldId":453},{"name":"minecraft:info_update","id":248,"oldId":248},{"name":"minecraft:info_update2","id":249,"oldId":249},{"oldData":0,"name":"minecraft:ink_sac","id":411,"oldId":351},{"name":"minecraft:invisiblebedrock","id":95,"oldId":95},{"name":"minecraft:iron_axe","id":298,"oldId":258},{"name":"minecraft:iron_bars","id":101,"oldId":101},{"name":"minecraft:iron_block","id":42,"oldId":42},{"name":"minecraft:iron_boots","id":346,"oldId":309},{"name":"minecraft:iron_chestplate","id":344,"oldId":307},{"name":"minecraft:iron_door","id":370,"oldId":330},{"name":"minecraft:iron_helmet","id":343,"oldId":306},{"name":"minecraft:iron_hoe","id":331,"oldId":292},{"name":"minecraft:iron_horse_armor","id":521,"oldId":417},{"name":"minecraft:iron_ingot","id":305,"oldId":265},{"name":"minecraft:iron_leggings","id":345,"oldId":308},{"name":"minecraft:iron_nugget","id":559,"oldId":452},{"name":"minecraft:iron_ore","id":15,"oldId":15},{"name":"minecraft:iron_pickaxe","id":297,"oldId":257},{"name":"minecraft:iron_shovel","id":296,"oldId":256},{"name":"minecraft:iron_sword","id":307,"oldId":267},{"name":"minecraft:iron_trapdoor","id":167,"oldId":167},{"name":"minecraft:item.acacia_door","id":196,"oldId":196},{"name":"minecraft:item.bed","id":26,"oldId":26},{"name":"minecraft:item.beetroot","id":244,"oldId":244},{"name":"minecraft:item.birch_door","id":194,"oldId":194},{"name":"minecraft:item.cake","id":92,"oldId":92},{"name":"minecraft:item.camera","id":242,"oldId":242},{"name":"minecraft:item.campfire","id":-209,"oldId":-209},{"name":"minecraft:item.cauldron","id":118,"oldId":118},{"name":"minecraft:item.chain","id":-286,"oldId":-286},{"name":"minecraft:item.crimson_door","id":-244,"oldId":-244},{"name":"minecraft:item.dark_oak_door","id":197,"oldId":197},{"name":"minecraft:item.flower_pot","id":140,"oldId":140},{"name":"minecraft:item.frame","id":199,"oldId":199},{"name":"minecraft:item.hopper","id":154,"oldId":154},{"name":"minecraft:item.iron_door","id":71,"oldId":71},{"name":"minecraft:item.jungle_door","id":195,"oldId":195},{"name":"minecraft:item.kelp","id":-138,"oldId":-138},{"name":"minecraft:item.nether_sprouts","id":-238,"oldId":-238},{"name":"minecraft:item.nether_wart","id":115,"oldId":115},{"name":"minecraft:item.reeds","id":83,"oldId":83},{"name":"minecraft:item.skull","id":144,"oldId":144},{"name":"minecraft:item.soul_campfire","id":-290,"oldId":-290},{"name":"minecraft:item.spruce_door","id":193,"oldId":193},{"name":"minecraft:item.warped_door","id":-245,"oldId":-245},{"name":"minecraft:item.wheat","id":59,"oldId":59},{"name":"minecraft:item.wooden_door","id":64,"oldId":64},{"name":"minecraft:jigsaw","id":-211,"oldId":-211},{"name":"minecraft:jukebox","id":84,"oldId":84},{"oldData":3,"name":"minecraft:jungle_boat","id":375,"oldId":333},{"name":"minecraft:jungle_button","id":-143,"oldId":-143},{"name":"minecraft:jungle_door","id":545,"oldId":429},{"name":"minecraft:jungle_fence_gate","id":185,"oldId":185},{"name":"minecraft:jungle_pressure_plate","id":-153,"oldId":-153},{"name":"minecraft:jungle_sign","id":568,"oldId":474},{"name":"minecraft:jungle_stairs","id":136,"oldId":136},{"name":"minecraft:jungle_standing_sign","id":-188,"oldId":-188},{"name":"minecraft:jungle_trapdoor","id":-148,"oldId":-148},{"name":"minecraft:jungle_wall_sign","id":-189,"oldId":-189},{"name":"minecraft:kelp","id":380,"oldId":335},{"name":"minecraft:ladder","id":65,"oldId":65},{"name":"minecraft:lantern","id":-208,"oldId":-208},{"name":"minecraft:lapis_block","id":22,"oldId":22},{"oldData":4,"name":"minecraft:lapis_lazuli","id":412,"oldId":351},{"name":"minecraft:lapis_ore","id":21,"oldId":21},{"name":"minecraft:lava","id":11,"oldId":11},{"oldData":10,"name":"minecraft:lava_bucket","id":363,"oldId":325},{"name":"minecraft:lava_cauldron","id":-210,"oldId":-210},{"name":"minecraft:lead","id":537,"oldId":420},{"name":"minecraft:leather","id":379,"oldId":334},{"name":"minecraft:leather_boots","id":338,"oldId":301},{"name":"minecraft:leather_chestplate","id":336,"oldId":299},{"name":"minecraft:leather_helmet","id":335,"oldId":298},{"name":"minecraft:leather_horse_armor","id":520,"oldId":416},{"name":"minecraft:leather_leggings","id":337,"oldId":300},{"name":"minecraft:leaves","id":18,"oldId":18},{"name":"minecraft:leaves2","id":161,"oldId":161},{"name":"minecraft:lectern","id":-194,"oldId":-194},{"name":"minecraft:lever","id":69,"oldId":69},{"name":"minecraft:light_block","id":-215,"oldId":-215},{"oldData":12,"name":"minecraft:light_blue_dye","id":405,"oldId":351},{"name":"minecraft:light_blue_glazed_terracotta","id":223,"oldId":223},{"oldData":7,"name":"minecraft:light_gray_dye","id":400,"oldId":351},{"name":"minecraft:light_weighted_pressure_plate","id":147,"oldId":147},{"oldData":10,"name":"minecraft:lime_dye","id":403,"oldId":351},{"name":"minecraft:lime_glazed_terracotta","id":225,"oldId":225},{"name":"minecraft:lingering_potion","id":552,"oldId":441},{"name":"minecraft:lit_blast_furnace","id":-214,"oldId":-214},{"name":"minecraft:lit_furnace","id":62,"oldId":62},{"name":"minecraft:lit_pumpkin","id":91,"oldId":91},{"name":"minecraft:lit_redstone_lamp","id":124,"oldId":124},{"name":"minecraft:lit_redstone_ore","id":74,"oldId":74},{"name":"minecraft:lit_smoker","id":-199,"oldId":-199},{"name":"minecraft:llama_spawn_egg","id":471,"oldId":383,"oldData":29},{"name":"minecraft:lodestone","id":-222,"oldId":-222},{"name":"minecraft:lodestone_compass","id":591,"oldId":741},{"name":"minecraft:log","id":17,"oldId":17},{"name":"minecraft:log2","id":162,"oldId":162},{"name":"minecraft:loom","id":-204,"oldId":-204},{"oldData":13,"name":"minecraft:magenta_dye","id":406,"oldId":351},{"name":"minecraft:magenta_glazed_terracotta","id":222,"oldId":222},{"name":"minecraft:magma","id":213,"oldId":213},{"name":"minecraft:magma_cream","id":428,"oldId":378},{"name":"minecraft:magma_cube_spawn_egg","id":453,"oldId":383,"oldData":42},{"name":"minecraft:medicine","id":589,"oldId":447},{"name":"minecraft:melon_block","id":103,"oldId":103},{"name":"minecraft:melon_seeds","id":293,"oldId":362},{"name":"minecraft:melon_slice","id":272,"oldId":360},{"name":"minecraft:melon_stem","id":105,"oldId":105},{"oldData":1,"name":"minecraft:milk_bucket","id":361,"oldId":325},{"name":"minecraft:minecart","id":368,"oldId":328},{"name":"minecraft:mob_spawner","id":52,"oldId":52},{"oldData":3,"name":"minecraft:mojang_banner_pattern","id":574,"oldId":434},{"name":"minecraft:monster_egg","id":97,"oldId":97},{"name":"minecraft:mooshroom_spawn_egg","id":438,"oldId":383,"oldData":16},{"name":"minecraft:mossy_cobblestone","id":48,"oldId":48},{"name":"minecraft:mossy_cobblestone_stairs","id":-179,"oldId":-179},{"name":"minecraft:mossy_stone_brick_stairs","id":-175,"oldId":-175},{"name":"minecraft:movingblock","id":250,"oldId":250},{"name":"minecraft:mule_spawn_egg","id":464,"oldId":383,"oldData":25},{"name":"minecraft:mushroom_stew","id":260,"oldId":282},{"name":"minecraft:music_disc_11","id":534,"oldId":510},{"name":"minecraft:music_disc_13","id":524,"oldId":500},{"name":"minecraft:music_disc_blocks","id":526,"oldId":502},{"name":"minecraft:music_disc_cat","id":525,"oldId":501},{"name":"minecraft:music_disc_chirp","id":527,"oldId":503},{"name":"minecraft:music_disc_far","id":528,"oldId":504},{"name":"minecraft:music_disc_mall","id":529,"oldId":505},{"name":"minecraft:music_disc_mellohi","id":530,"oldId":506},{"name":"minecraft:music_disc_pigstep","id":609,"oldId":759},{"name":"minecraft:music_disc_stal","id":531,"oldId":507},{"name":"minecraft:music_disc_strad","id":532,"oldId":508},{"name":"minecraft:music_disc_wait","id":535,"oldId":511},{"name":"minecraft:music_disc_ward","id":533,"oldId":509},{"name":"minecraft:mutton","id":540,"oldId":423},{"name":"minecraft:mycelium","id":110,"oldId":110},{"name":"minecraft:name_tag","id":538,"oldId":421},{"name":"minecraft:nautilus_shell","id":560,"oldId":465},{"name":"minecraft:nether_brick","id":112,"oldId":112},{"name":"minecraft:nether_brick_fence","id":113,"oldId":113},{"name":"minecraft:nether_brick_stairs","id":114,"oldId":114},{"name":"minecraft:nether_gold_ore","id":-288,"oldId":-288},{"name":"minecraft:nether_sprouts","id":610,"oldId":760},{"name":"minecraft:nether_star","id":508,"oldId":399},{"name":"minecraft:nether_wart","id":294,"oldId":372},{"name":"minecraft:nether_wart_block","id":214,"oldId":214},{"name":"minecraft:netherbrick","id":513,"oldId":405},{"name":"minecraft:netherite_axe","id":596,"oldId":746},{"name":"minecraft:netherite_block","id":-270,"oldId":-270},{"name":"minecraft:netherite_boots","id":601,"oldId":751},{"name":"minecraft:netherite_chestplate","id":599,"oldId":749},{"name":"minecraft:netherite_helmet","id":598,"oldId":748},{"name":"minecraft:netherite_hoe","id":597,"oldId":747},{"name":"minecraft:netherite_ingot","id":592,"oldId":742},{"name":"minecraft:netherite_leggings","id":600,"oldId":750},{"name":"minecraft:netherite_pickaxe","id":595,"oldId":745},{"name":"minecraft:netherite_scrap","id":602,"oldId":752},{"name":"minecraft:netherite_shovel","id":594,"oldId":744},{"name":"minecraft:netherite_sword","id":593,"oldId":743},{"name":"minecraft:netherrack","id":87,"oldId":87},{"name":"minecraft:netherreactor","id":247,"oldId":247},{"name":"minecraft:normal_stone_stairs","id":-180,"oldId":-180},{"name":"minecraft:noteblock","id":25,"oldId":25},{"name":"minecraft:npc_spawn_egg","id":468,"oldId":383,"oldData":51},{"oldData":0,"name":"minecraft:oak_boat","id":373,"oldId":333},{"name":"minecraft:oak_sign","id":358,"oldId":323},{"name":"minecraft:oak_stairs","id":53,"oldId":53},{"name":"minecraft:observer","id":251,"oldId":251},{"name":"minecraft:obsidian","id":49,"oldId":49},{"name":"minecraft:ocelot_spawn_egg","id":449,"oldId":383,"oldData":22},{"oldData":14,"name":"minecraft:orange_dye","id":407,"oldId":351},{"name":"minecraft:orange_glazed_terracotta","id":221,"oldId":221},{"name":"minecraft:packed_ice","id":174,"oldId":174},{"name":"minecraft:painting","id":357,"oldId":321},{"name":"minecraft:panda_spawn_egg","id":487,"oldId":383,"oldData":113},{"name":"minecraft:paper","id":384,"oldId":339},{"name":"minecraft:parrot_spawn_egg","id":476,"oldId":383,"oldData":30},{"name":"minecraft:phantom_membrane","id":564,"oldId":470},{"name":"minecraft:phantom_spawn_egg","id":484,"oldId":383,"oldData":58},{"name":"minecraft:pig_spawn_egg","id":435,"oldId":383,"oldData":12},{"oldData":6,"name":"minecraft:piglin_banner_pattern","id":577,"oldId":434},{"name":"minecraft:piglin_brute_spawn_egg","id":497,"oldId":383,"oldData":127},{"name":"minecraft:piglin_spawn_egg","id":495,"oldId":383,"oldData":123},{"name":"minecraft:pillager_spawn_egg","id":489,"oldId":383,"oldData":114},{"oldData":9,"name":"minecraft:pink_dye","id":402,"oldId":351},{"name":"minecraft:pink_glazed_terracotta","id":226,"oldId":226},{"name":"minecraft:piston","id":33,"oldId":33},{"name":"minecraft:pistonarmcollision","id":34,"oldId":34},{"name":"minecraft:planks","id":5,"oldId":5},{"name":"minecraft:podzol","id":243,"oldId":243},{"name":"minecraft:poisonous_potato","id":282,"oldId":394},{"name":"minecraft:polar_bear_spawn_egg","id":470,"oldId":383,"oldData":28},{"name":"minecraft:polished_andesite_stairs","id":-174,"oldId":-174},{"name":"minecraft:polished_basalt","id":-235,"oldId":-235},{"name":"minecraft:polished_blackstone","id":-291,"oldId":-291},{"name":"minecraft:polished_blackstone_brick_double_slab","id":-285,"oldId":-285},{"name":"minecraft:polished_blackstone_brick_slab","id":-284,"oldId":-284},{"name":"minecraft:polished_blackstone_brick_stairs","id":-275,"oldId":-275},{"name":"minecraft:polished_blackstone_brick_wall","id":-278,"oldId":-278},{"name":"minecraft:polished_blackstone_bricks","id":-274,"oldId":-274},{"name":"minecraft:polished_blackstone_button","id":-296,"oldId":-296},{"name":"minecraft:polished_blackstone_double_slab","id":-294,"oldId":-294},{"name":"minecraft:polished_blackstone_pressure_plate","id":-295,"oldId":-295},{"name":"minecraft:polished_blackstone_slab","id":-293,"oldId":-293},{"name":"minecraft:polished_blackstone_stairs","id":-292,"oldId":-292},{"name":"minecraft:polished_blackstone_wall","id":-297,"oldId":-297},{"name":"minecraft:polished_diorite_stairs","id":-173,"oldId":-173},{"name":"minecraft:polished_granite_stairs","id":-172,"oldId":-172},{"name":"minecraft:popped_chorus_fruit","id":549,"oldId":433},{"name":"minecraft:porkchop","id":262,"oldId":319},{"name":"minecraft:portal","id":90,"oldId":90},{"name":"minecraft:potato","id":280,"oldId":392},{"name":"minecraft:potatoes","id":142,"oldId":142},{"name":"minecraft:potion","id":424,"oldId":373},{"name":"minecraft:powered_comparator","id":150,"oldId":150},{"name":"minecraft:powered_repeater","id":94,"oldId":94},{"name":"minecraft:prismarine","id":168,"oldId":168},{"name":"minecraft:prismarine_bricks_stairs","id":-4,"oldId":-4},{"name":"minecraft:prismarine_crystals","id":539,"oldId":422},{"name":"minecraft:prismarine_shard","id":555,"oldId":409},{"name":"minecraft:prismarine_stairs","id":-2,"oldId":-2},{"name":"minecraft:pufferfish","id":267,"oldId":462},{"oldData":5,"name":"minecraft:pufferfish_bucket","id":367,"oldId":325},{"name":"minecraft:pufferfish_spawn_egg","id":479,"oldId":383,"oldData":108},{"name":"minecraft:pumpkin","id":86,"oldId":86},{"name":"minecraft:pumpkin_pie","id":284,"oldId":400},{"name":"minecraft:pumpkin_seeds","id":292,"oldId":361},{"name":"minecraft:pumpkin_stem","id":104,"oldId":104},{"oldData":5,"name":"minecraft:purple_dye","id":398,"oldId":351},{"name":"minecraft:purple_glazed_terracotta","id":219,"oldId":219},{"name":"minecraft:purpur_block","id":201,"oldId":201},{"name":"minecraft:purpur_stairs","id":203,"oldId":203},{"name":"minecraft:quartz","id":514,"oldId":406},{"name":"minecraft:quartz_block","id":155,"oldId":155},{"name":"minecraft:quartz_bricks","id":-304,"oldId":-304},{"name":"minecraft:quartz_ore","id":153,"oldId":153},{"name":"minecraft:quartz_stairs","id":156,"oldId":156},{"name":"minecraft:rabbit","id":288,"oldId":411},{"name":"minecraft:rabbit_foot","id":518,"oldId":414},{"name":"minecraft:rabbit_hide","id":519,"oldId":415},{"name":"minecraft:rabbit_spawn_egg","id":457,"oldId":383,"oldData":18},{"name":"minecraft:rabbit_stew","id":290,"oldId":413},{"name":"minecraft:rail","id":66,"oldId":66},{"name":"minecraft:rapid_fertilizer","id":587,"oldId":449},{"name":"minecraft:ravager_spawn_egg","id":491,"oldId":383,"oldData":59},{"name":"minecraft:real_double_stone_slab","id":43,"oldId":43},{"name":"minecraft:real_double_stone_slab2","id":181,"oldId":181},{"name":"minecraft:real_double_stone_slab3","id":-167,"oldId":-167},{"name":"minecraft:real_double_stone_slab4","id":-168,"oldId":-168},{"oldData":1,"name":"minecraft:red_dye","id":394,"oldId":351},{"name":"minecraft:red_flower","id":38,"oldId":38},{"name":"minecraft:red_glazed_terracotta","id":234,"oldId":234},{"name":"minecraft:red_mushroom","id":40,"oldId":40},{"name":"minecraft:red_mushroom_block","id":100,"oldId":100},{"name":"minecraft:red_nether_brick","id":215,"oldId":215},{"name":"minecraft:red_nether_brick_stairs","id":-184,"oldId":-184},{"name":"minecraft:red_sandstone","id":179,"oldId":179},{"name":"minecraft:red_sandstone_stairs","id":180,"oldId":180},{"name":"minecraft:redstone","id":371,"oldId":331},{"name":"minecraft:redstone_block","id":152,"oldId":152},{"name":"minecraft:redstone_lamp","id":123,"oldId":123},{"name":"minecraft:redstone_ore","id":73,"oldId":73},{"name":"minecraft:redstone_torch","id":76,"oldId":76},{"name":"minecraft:redstone_wire","id":55,"oldId":55},{"name":"minecraft:repeater","id":417,"oldId":356},{"name":"minecraft:repeating_command_block","id":188,"oldId":188},{"name":"minecraft:reserved6","id":255,"oldId":255},{"name":"minecraft:respawn_anchor","id":-272,"oldId":-272},{"name":"minecraft:rotten_flesh","id":277,"oldId":367},{"name":"minecraft:saddle","id":369,"oldId":329},{"name":"minecraft:salmon","id":265,"oldId":460},{"oldData":3,"name":"minecraft:salmon_bucket","id":365,"oldId":325},{"name":"minecraft:salmon_spawn_egg","id":480,"oldId":383,"oldData":109},{"name":"minecraft:sand","id":12,"oldId":12},{"name":"minecraft:sandstone","id":24,"oldId":24},{"name":"minecraft:sandstone_stairs","id":128,"oldId":128},{"name":"minecraft:sapling","id":6,"oldId":6},{"name":"minecraft:scaffolding","id":-165,"oldId":-165},{"name":"minecraft:scute","id":562,"oldId":468},{"name":"minecraft:sea_pickle","id":-156,"oldId":-156},{"name":"minecraft:seagrass","id":-130,"oldId":-130},{"name":"minecraft:sealantern","id":169,"oldId":169},{"name":"minecraft:shears","id":419,"oldId":359},{"name":"minecraft:sheep_spawn_egg","id":436,"oldId":383,"oldData":13},{"name":"minecraft:shield","id":355,"oldId":513},{"name":"minecraft:shroomlight","id":-230,"oldId":-230},{"name":"minecraft:shulker_box","id":218,"oldId":218},{"name":"minecraft:shulker_shell","id":556,"oldId":445},{"name":"minecraft:shulker_spawn_egg","id":467,"oldId":383,"oldData":54},{"name":"minecraft:silver_glazed_terracotta","id":228,"oldId":228},{"name":"minecraft:silverfish_spawn_egg","id":441,"oldId":383,"oldData":39},{"name":"minecraft:skeleton_horse_spawn_egg","id":465,"oldId":383,"oldData":26},{"name":"minecraft:skeleton_spawn_egg","id":442,"oldId":383,"oldData":34},{"name":"minecraft:skull","id":506,"oldId":397},{"oldData":1,"name":"minecraft:skull_banner_pattern","id":573,"oldId":434},{"name":"minecraft:slime","id":165,"oldId":165},{"name":"minecraft:slime_ball","id":386,"oldId":341},{"name":"minecraft:slime_spawn_egg","id":443,"oldId":383,"oldData":37},{"name":"minecraft:smithing_table","id":-202,"oldId":-202},{"name":"minecraft:smoker","id":-198,"oldId":-198},{"name":"minecraft:smooth_quartz_stairs","id":-185,"oldId":-185},{"name":"minecraft:smooth_red_sandstone_stairs","id":-176,"oldId":-176},{"name":"minecraft:smooth_sandstone_stairs","id":-177,"oldId":-177},{"name":"minecraft:smooth_stone","id":-183,"oldId":-183},{"name":"minecraft:snow","id":80,"oldId":80},{"name":"minecraft:snow_layer","id":78,"oldId":78},{"name":"minecraft:snowball","id":372,"oldId":332},{"name":"minecraft:soul_campfire","id":611,"oldId":801},{"name":"minecraft:soul_fire","id":-237,"oldId":-237},{"name":"minecraft:soul_lantern","id":-269,"oldId":-269},{"name":"minecraft:soul_sand","id":88,"oldId":88},{"name":"minecraft:soul_soil","id":-236,"oldId":-236},{"name":"minecraft:soul_torch","id":-268,"oldId":-268},{"name":"minecraft:sparkler","id":590,"oldId":442},{"name":"minecraft:spawn_egg","id":615,"oldId":383},{"name":"minecraft:spider_eye","id":278,"oldId":375},{"name":"minecraft:spider_spawn_egg","id":444,"oldId":383,"oldData":35},{"name":"minecraft:splash_potion","id":551,"oldId":438},{"name":"minecraft:sponge","id":19,"oldId":19},{"oldData":1,"name":"minecraft:spruce_boat","id":376,"oldId":333},{"name":"minecraft:spruce_button","id":-144,"oldId":-144},{"name":"minecraft:spruce_door","id":543,"oldId":427},{"name":"minecraft:spruce_fence_gate","id":183,"oldId":183},{"name":"minecraft:spruce_pressure_plate","id":-154,"oldId":-154},{"name":"minecraft:spruce_sign","id":566,"oldId":472},{"name":"minecraft:spruce_stairs","id":134,"oldId":134},{"name":"minecraft:spruce_standing_sign","id":-181,"oldId":-181},{"name":"minecraft:spruce_trapdoor","id":-149,"oldId":-149},{"name":"minecraft:spruce_wall_sign","id":-182,"oldId":-182},{"name":"minecraft:squid_spawn_egg","id":448,"oldId":383,"oldData":17},{"name":"minecraft:stained_glass","id":241,"oldId":241},{"name":"minecraft:stained_glass_pane","id":160,"oldId":160},{"name":"minecraft:stained_hardened_clay","id":159,"oldId":159},{"name":"minecraft:standing_banner","id":176,"oldId":176},{"name":"minecraft:standing_sign","id":63,"oldId":63},{"name":"minecraft:stick","id":320,"oldId":280},{"name":"minecraft:sticky_piston","id":29,"oldId":29},{"name":"minecraft:stickypistonarmcollision","id":-217,"oldId":-217},{"name":"minecraft:stone","id":1,"oldId":1},{"name":"minecraft:stone_axe","id":315,"oldId":275},{"name":"minecraft:stone_brick_stairs","id":109,"oldId":109},{"name":"minecraft:stone_button","id":77,"oldId":77},{"name":"minecraft:stone_hoe","id":330,"oldId":291},{"name":"minecraft:stone_pickaxe","id":314,"oldId":274},{"name":"minecraft:stone_pressure_plate","id":70,"oldId":70},{"name":"minecraft:stone_shovel","id":313,"oldId":273},{"name":"minecraft:stone_stairs","id":67,"oldId":67},{"name":"minecraft:stone_sword","id":312,"oldId":272},{"name":"minecraft:stonebrick","id":98,"oldId":98},{"name":"minecraft:stonecutter","id":245,"oldId":245},{"name":"minecraft:stonecutter_block","id":-197,"oldId":-197},{"name":"minecraft:stray_spawn_egg","id":460,"oldId":383,"oldData":46},{"name":"minecraft:strider_spawn_egg","id":493,"oldId":383,"oldData":125},{"name":"minecraft:string","id":326,"oldId":287},{"name":"minecraft:stripped_acacia_log","id":-8,"oldId":-8},{"name":"minecraft:stripped_birch_log","id":-6,"oldId":-6},{"name":"minecraft:stripped_crimson_hyphae","id":-300,"oldId":-300},{"name":"minecraft:stripped_crimson_stem","id":-240,"oldId":-240},{"name":"minecraft:stripped_dark_oak_log","id":-9,"oldId":-9},{"name":"minecraft:stripped_jungle_log","id":-7,"oldId":-7},{"name":"minecraft:stripped_oak_log","id":-10,"oldId":-10},{"name":"minecraft:stripped_spruce_log","id":-5,"oldId":-5},{"name":"minecraft:stripped_warped_hyphae","id":-301,"oldId":-301},{"name":"minecraft:stripped_warped_stem","id":-241,"oldId":-241},{"name":"minecraft:structure_block","id":252,"oldId":252},{"name":"minecraft:structure_void","id":217,"oldId":217},{"name":"minecraft:sugar","id":414,"oldId":353},{"name":"minecraft:sugar_cane","id":383,"oldId":338},{"name":"minecraft:suspicious_stew","id":579,"oldId":734},{"name":"minecraft:sweet_berries","id":287,"oldId":477},{"name":"minecraft:sweet_berry_bush","id":-207,"oldId":-207},{"name":"minecraft:tallgrass","id":31,"oldId":31},{"name":"minecraft:target","id":-239,"oldId":-239},{"name":"minecraft:tnt","id":46,"oldId":46},{"name":"minecraft:tnt_minecart","id":515,"oldId":407},{"name":"minecraft:torch","id":50,"oldId":50},{"name":"minecraft:totem_of_undying","id":558,"oldId":450},{"name":"minecraft:trapdoor","id":96,"oldId":96},{"name":"minecraft:trapped_chest","id":146,"oldId":146},{"name":"minecraft:trident","id":536,"oldId":455},{"name":"minecraft:tripwire","id":132,"oldId":132},{"name":"minecraft:tripwire_hook","id":131,"oldId":131},{"name":"minecraft:tropical_fish","id":266,"oldId":461},{"oldData":4,"name":"minecraft:tropical_fish_bucket","id":366,"oldId":325},{"name":"minecraft:tropical_fish_spawn_egg","id":477,"oldId":383,"oldData":111},{"name":"minecraft:turtle_egg","id":-159,"oldId":-159},{"name":"minecraft:turtle_helmet","id":563,"oldId":469},{"name":"minecraft:turtle_spawn_egg","id":483,"oldId":383,"oldData":74},{"name":"minecraft:twisting_vines","id":-287,"oldId":-287},{"name":"minecraft:underwater_torch","id":239,"oldId":239},{"name":"minecraft:undyed_shulker_box","id":205,"oldId":205},{"name":"minecraft:unknown","id":-305},{"name":"minecraft:unlit_redstone_torch","id":75,"oldId":75},{"name":"minecraft:unpowered_comparator","id":149,"oldId":149},{"name":"minecraft:unpowered_repeater","id":93,"oldId":93},{"name":"minecraft:vex_spawn_egg","id":474,"oldId":383,"oldData":105},{"name":"minecraft:villager_spawn_egg","id":447,"oldId":383,"oldData":15},{"name":"minecraft:vindicator_spawn_egg","id":472,"oldId":383,"oldData":57},{"name":"minecraft:vine","id":106,"oldId":106},{"name":"minecraft:wall_banner","id":177,"oldId":177},{"name":"minecraft:wall_sign","id":68,"oldId":68},{"name":"minecraft:wandering_trader_spawn_egg","id":490,"oldId":383,"oldData":118},{"name":"minecraft:warped_button","id":-261,"oldId":-261},{"name":"minecraft:warped_door","id":606,"oldId":756},{"name":"minecraft:warped_double_slab","id":-267,"oldId":-267},{"name":"minecraft:warped_fence","id":-257,"oldId":-257},{"name":"minecraft:warped_fence_gate","id":-259,"oldId":-259},{"name":"minecraft:warped_fungus","id":-229,"oldId":-229},{"name":"minecraft:warped_fungus_on_a_stick","id":607,"oldId":757},{"name":"minecraft:warped_hyphae","id":-298,"oldId":-298},{"name":"minecraft:warped_nylium","id":-233,"oldId":-233},{"name":"minecraft:warped_planks","id":-243,"oldId":-243},{"name":"minecraft:warped_pressure_plate","id":-263,"oldId":-263},{"name":"minecraft:warped_roots","id":-224,"oldId":-224},{"name":"minecraft:warped_sign","id":604,"oldId":754},{"name":"minecraft:warped_slab","id":-265,"oldId":-265},{"name":"minecraft:warped_stairs","id":-255,"oldId":-255},{"name":"minecraft:warped_standing_sign","id":-251,"oldId":-251},{"name":"minecraft:warped_stem","id":-226,"oldId":-226},{"name":"minecraft:warped_trapdoor","id":-247,"oldId":-247},{"name":"minecraft:warped_wall_sign","id":-253,"oldId":-253},{"name":"minecraft:warped_wart_block","id":-227,"oldId":-227},{"name":"minecraft:water","id":9,"oldId":9},{"oldData":8,"name":"minecraft:water_bucket","id":362,"oldId":325},{"name":"minecraft:waterlily","id":111,"oldId":111},{"name":"minecraft:web","id":30,"oldId":30},{"name":"minecraft:weeping_vines","id":-231,"oldId":-231},{"name":"minecraft:wheat","id":334,"oldId":296},{"name":"minecraft:wheat_seeds","id":291,"oldId":295},{"oldData":19,"name":"minecraft:white_dye","id":408,"oldId":351},{"name":"minecraft:white_glazed_terracotta","id":220,"oldId":220},{"name":"minecraft:witch_spawn_egg","id":450,"oldId":383,"oldData":45},{"name":"minecraft:wither_rose","id":-216,"oldId":-216},{"name":"minecraft:wither_skeleton_spawn_egg","id":462,"oldId":383,"oldData":48},{"name":"minecraft:wolf_spawn_egg","id":437,"oldId":383,"oldData":14},{"name":"minecraft:wood","id":-212,"oldId":-212},{"name":"minecraft:wooden_axe","id":311,"oldId":271},{"name":"minecraft:wooden_button","id":143,"oldId":143},{"name":"minecraft:wooden_door","id":359,"oldId":324},{"name":"minecraft:wooden_hoe","id":329,"oldId":290},{"name":"minecraft:wooden_pickaxe","id":310,"oldId":270},{"name":"minecraft:wooden_pressure_plate","id":72,"oldId":72},{"name":"minecraft:wooden_shovel","id":309,"oldId":269},{"name":"minecraft:wooden_slab","id":158,"oldId":158},{"name":"minecraft:wooden_sword","id":308,"oldId":268},{"name":"minecraft:wool","id":35,"oldId":35},{"name":"minecraft:writable_book","id":500,"oldId":386},{"name":"minecraft:written_book","id":501,"oldId":387},{"oldData":11,"name":"minecraft:yellow_dye","id":404,"oldId":351},{"name":"minecraft:yellow_flower","id":37,"oldId":37},{"name":"minecraft:yellow_glazed_terracotta","id":224,"oldId":224},{"name":"minecraft:zoglin_spawn_egg","id":496,"oldId":383,"oldData":126},{"name":"minecraft:zombie_horse_spawn_egg","id":466,"oldId":383,"oldData":27},{"name":"minecraft:zombie_pigman_spawn_egg","id":446,"oldId":383,"oldData":36},{"name":"minecraft:zombie_spawn_egg","id":445,"oldId":383,"oldData":32},{"name":"minecraft:zombie_villager_spawn_egg","id":475,"oldId":383,"oldData":44}] diff --git a/src/main/resources/runtime_item_states.json b/src/main/resources/runtime_item_states.json new file mode 100644 index 00000000000..d52495ed454 --- /dev/null +++ b/src/main/resources/runtime_item_states.json @@ -0,0 +1,4154 @@ +[ + { + "name" : "minecraft:acacia_boat", + "id" : 379 + }, + { + "name" : "minecraft:acacia_button", + "id" : -140 + }, + { + "name" : "minecraft:acacia_door", + "id" : 556 + }, + { + "name" : "minecraft:acacia_fence_gate", + "id" : 187 + }, + { + "name" : "minecraft:acacia_pressure_plate", + "id" : -150 + }, + { + "name" : "minecraft:acacia_sign", + "id" : 579 + }, + { + "name" : "minecraft:acacia_stairs", + "id" : 163 + }, + { + "name" : "minecraft:acacia_standing_sign", + "id" : -190 + }, + { + "name" : "minecraft:acacia_trapdoor", + "id" : -145 + }, + { + "name" : "minecraft:acacia_wall_sign", + "id" : -191 + }, + { + "name" : "minecraft:activator_rail", + "id" : 126 + }, + { + "name" : "minecraft:agent_spawn_egg", + "id" : 487 + }, + { + "name" : "minecraft:air", + "id" : -158 + }, + { + "name" : "minecraft:allow", + "id" : 210 + }, + { + "name" : "minecraft:amethyst_block", + "id" : -327 + }, + { + "name" : "minecraft:amethyst_cluster", + "id" : -329 + }, + { + "name" : "minecraft:amethyst_shard", + "id" : 623 + }, + { + "name" : "minecraft:ancient_debris", + "id" : -271 + }, + { + "name" : "minecraft:andesite_stairs", + "id" : -171 + }, + { + "name" : "minecraft:anvil", + "id" : 145 + }, + { + "name" : "minecraft:apple", + "id" : 257 + }, + { + "name" : "minecraft:armor_stand", + "id" : 552 + }, + { + "name" : "minecraft:arrow", + "id" : 301 + }, + { + "name" : "minecraft:axolotl_bucket", + "id" : 369 + }, + { + "name" : "minecraft:axolotl_spawn_egg", + "id" : 500 + }, + { + "name" : "minecraft:azalea", + "id" : -337 + }, + { + "name" : "minecraft:azalea_leaves", + "id" : -324 + }, + { + "name" : "minecraft:azalea_leaves_flowered", + "id" : -325 + }, + { + "name" : "minecraft:baked_potato", + "id" : 281 + }, + { + "name" : "minecraft:balloon", + "id" : 597 + }, + { + "name" : "minecraft:bamboo", + "id" : -163 + }, + { + "name" : "minecraft:bamboo_sapling", + "id" : -164 + }, + { + "name" : "minecraft:banner", + "id" : 567 + }, + { + "name" : "minecraft:banner_pattern", + "id" : 627 + }, + { + "name" : "minecraft:barrel", + "id" : -203 + }, + { + "name" : "minecraft:barrier", + "id" : -161 + }, + { + "name" : "minecraft:basalt", + "id" : -234 + }, + { + "name" : "minecraft:bat_spawn_egg", + "id" : 453 + }, + { + "name" : "minecraft:beacon", + "id" : 138 + }, + { + "name" : "minecraft:bed", + "id" : 418 + }, + { + "name" : "minecraft:bedrock", + "id" : 7 + }, + { + "name" : "minecraft:bee_nest", + "id" : -218 + }, + { + "name" : "minecraft:bee_spawn_egg", + "id" : 494 + }, + { + "name" : "minecraft:beef", + "id" : 273 + }, + { + "name" : "minecraft:beehive", + "id" : -219 + }, + { + "name" : "minecraft:beetroot", + "id" : 285 + }, + { + "name" : "minecraft:beetroot_seeds", + "id" : 295 + }, + { + "name" : "minecraft:beetroot_soup", + "id" : 286 + }, + { + "name" : "minecraft:bell", + "id" : -206 + }, + { + "name" : "minecraft:big_dripleaf", + "id" : -323 + }, + { + "name" : "minecraft:birch_boat", + "id" : 376 + }, + { + "name" : "minecraft:birch_button", + "id" : -141 + }, + { + "name" : "minecraft:birch_door", + "id" : 554 + }, + { + "name" : "minecraft:birch_fence_gate", + "id" : 184 + }, + { + "name" : "minecraft:birch_pressure_plate", + "id" : -151 + }, + { + "name" : "minecraft:birch_sign", + "id" : 577 + }, + { + "name" : "minecraft:birch_stairs", + "id" : 135 + }, + { + "name" : "minecraft:birch_standing_sign", + "id" : -186 + }, + { + "name" : "minecraft:birch_trapdoor", + "id" : -146 + }, + { + "name" : "minecraft:birch_wall_sign", + "id" : -187 + }, + { + "name" : "minecraft:black_dye", + "id" : 395 + }, + { + "name" : "minecraft:black_glazed_terracotta", + "id" : 235 + }, + { + "name" : "minecraft:blackstone", + "id" : -273 + }, + { + "name" : "minecraft:blackstone_double_slab", + "id" : -283 + }, + { + "name" : "minecraft:blackstone_slab", + "id" : -282 + }, + { + "name" : "minecraft:blackstone_stairs", + "id" : -276 + }, + { + "name" : "minecraft:blackstone_wall", + "id" : -277 + }, + { + "name" : "minecraft:blast_furnace", + "id" : -196 + }, + { + "name" : "minecraft:blaze_powder", + "id" : 429 + }, + { + "name" : "minecraft:blaze_rod", + "id" : 423 + }, + { + "name" : "minecraft:blaze_spawn_egg", + "id" : 456 + }, + { + "name" : "minecraft:bleach", + "id" : 595 + }, + { + "name" : "minecraft:blue_dye", + "id" : 399 + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "id" : 231 + }, + { + "name" : "minecraft:blue_ice", + "id" : -11 + }, + { + "name" : "minecraft:boat", + "id" : 625 + }, + { + "name" : "minecraft:bone", + "id" : 415 + }, + { + "name" : "minecraft:bone_block", + "id" : 216 + }, + { + "name" : "minecraft:bone_meal", + "id" : 411 + }, + { + "name" : "minecraft:book", + "id" : 387 + }, + { + "name" : "minecraft:bookshelf", + "id" : 47 + }, + { + "name" : "minecraft:border_block", + "id" : 212 + }, + { + "name" : "minecraft:bordure_indented_banner_pattern", + "id" : 586 + }, + { + "name" : "minecraft:bow", + "id" : 300 + }, + { + "name" : "minecraft:bowl", + "id" : 321 + }, + { + "name" : "minecraft:bread", + "id" : 261 + }, + { + "name" : "minecraft:brewing_stand", + "id" : 431 + }, + { + "name" : "minecraft:brewingstandblock", + "id" : 117 + }, + { + "name" : "minecraft:brick", + "id" : 383 + }, + { + "name" : "minecraft:brick_block", + "id" : 45 + }, + { + "name" : "minecraft:brick_stairs", + "id" : 108 + }, + { + "name" : "minecraft:brown_dye", + "id" : 398 + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "id" : 232 + }, + { + "name" : "minecraft:brown_mushroom", + "id" : 39 + }, + { + "name" : "minecraft:brown_mushroom_block", + "id" : 99 + }, + { + "name" : "minecraft:bubble_column", + "id" : -160 + }, + { + "name" : "minecraft:bucket", + "id" : 360 + }, + { + "name" : "minecraft:budding_amethyst", + "id" : -328 + }, + { + "name" : "minecraft:cactus", + "id" : 81 + }, + { + "name" : "minecraft:cake", + "id" : 417 + }, + { + "name" : "minecraft:calcite", + "id" : -326 + }, + { + "name" : "minecraft:camera", + "id" : 592 + }, + { + "name" : "minecraft:campfire", + "id" : 588 + }, + { + "name" : "minecraft:carpet", + "id" : 171 + }, + { + "name" : "minecraft:carrot", + "id" : 279 + }, + { + "name" : "minecraft:carrot_on_a_stick", + "id" : 517 + }, + { + "name" : "minecraft:carrots", + "id" : 141 + }, + { + "name" : "minecraft:cartography_table", + "id" : -200 + }, + { + "name" : "minecraft:carved_pumpkin", + "id" : -155 + }, + { + "name" : "minecraft:cat_spawn_egg", + "id" : 488 + }, + { + "name" : "minecraft:cauldron", + "id" : 432 + }, + { + "name" : "minecraft:cave_spider_spawn_egg", + "id" : 457 + }, + { + "name" : "minecraft:cave_vines", + "id" : -322 + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "id" : -375 + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "id" : -376 + }, + { + "name" : "minecraft:chain", + "id" : 617 + }, + { + "name" : "minecraft:chain_command_block", + "id" : 189 + }, + { + "name" : "minecraft:chainmail_boots", + "id" : 342 + }, + { + "name" : "minecraft:chainmail_chestplate", + "id" : 340 + }, + { + "name" : "minecraft:chainmail_helmet", + "id" : 339 + }, + { + "name" : "minecraft:chainmail_leggings", + "id" : 341 + }, + { + "name" : "minecraft:charcoal", + "id" : 303 + }, + { + "name" : "minecraft:chemical_heat", + "id" : 192 + }, + { + "name" : "minecraft:chemistry_table", + "id" : 238 + }, + { + "name" : "minecraft:chest", + "id" : 54 + }, + { + "name" : "minecraft:chest_minecart", + "id" : 389 + }, + { + "name" : "minecraft:chicken", + "id" : 275 + }, + { + "name" : "minecraft:chicken_spawn_egg", + "id" : 435 + }, + { + "name" : "minecraft:chiseled_deepslate", + "id" : -395 + }, + { + "name" : "minecraft:chiseled_nether_bricks", + "id" : -302 + }, + { + "name" : "minecraft:chiseled_polished_blackstone", + "id" : -279 + }, + { + "name" : "minecraft:chorus_flower", + "id" : 200 + }, + { + "name" : "minecraft:chorus_fruit", + "id" : 558 + }, + { + "name" : "minecraft:chorus_plant", + "id" : 240 + }, + { + "name" : "minecraft:clay", + "id" : 82 + }, + { + "name" : "minecraft:clay_ball", + "id" : 384 + }, + { + "name" : "minecraft:clock", + "id" : 393 + }, + { + "name" : "minecraft:coal", + "id" : 302 + }, + { + "name" : "minecraft:coal_block", + "id" : 173 + }, + { + "name" : "minecraft:coal_ore", + "id" : 16 + }, + { + "name" : "minecraft:cobbled_deepslate", + "id" : -379 + }, + { + "name" : "minecraft:cobbled_deepslate_double_slab", + "id" : -396 + }, + { + "name" : "minecraft:cobbled_deepslate_slab", + "id" : -380 + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "id" : -381 + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "id" : -382 + }, + { + "name" : "minecraft:cobblestone", + "id" : 4 + }, + { + "name" : "minecraft:cobblestone_wall", + "id" : 139 + }, + { + "name" : "minecraft:cocoa", + "id" : 127 + }, + { + "name" : "minecraft:cocoa_beans", + "id" : 412 + }, + { + "name" : "minecraft:cod", + "id" : 264 + }, + { + "name" : "minecraft:cod_bucket", + "id" : 364 + }, + { + "name" : "minecraft:cod_spawn_egg", + "id" : 480 + }, + { + "name" : "minecraft:colored_torch_bp", + "id" : 204 + }, + { + "name" : "minecraft:colored_torch_rg", + "id" : 202 + }, + { + "name" : "minecraft:command_block", + "id" : 137 + }, + { + "name" : "minecraft:command_block_minecart", + "id" : 563 + }, + { + "name" : "minecraft:comparator", + "id" : 522 + }, + { + "name" : "minecraft:compass", + "id" : 391 + }, + { + "name" : "minecraft:composter", + "id" : -213 + }, + { + "name" : "minecraft:compound", + "id" : 593 + }, + { + "name" : "minecraft:concrete", + "id" : 236 + }, + { + "name" : "minecraft:concrete_powder", + "id" : 237 + }, + { + "name" : "minecraft:conduit", + "id" : -157 + }, + { + "name" : "minecraft:cooked_beef", + "id" : 274 + }, + { + "name" : "minecraft:cooked_chicken", + "id" : 276 + }, + { + "name" : "minecraft:cooked_cod", + "id" : 268 + }, + { + "name" : "minecraft:cooked_mutton", + "id" : 551 + }, + { + "name" : "minecraft:cooked_porkchop", + "id" : 263 + }, + { + "name" : "minecraft:cooked_rabbit", + "id" : 289 + }, + { + "name" : "minecraft:cooked_salmon", + "id" : 269 + }, + { + "name" : "minecraft:cookie", + "id" : 271 + }, + { + "name" : "minecraft:copper_block", + "id" : -340 + }, + { + "name" : "minecraft:copper_ingot", + "id" : 504 + }, + { + "name" : "minecraft:copper_ore", + "id" : -311 + }, + { + "name" : "minecraft:coral", + "id" : -131 + }, + { + "name" : "minecraft:coral_block", + "id" : -132 + }, + { + "name" : "minecraft:coral_fan", + "id" : -133 + }, + { + "name" : "minecraft:coral_fan_dead", + "id" : -134 + }, + { + "name" : "minecraft:coral_fan_hang", + "id" : -135 + }, + { + "name" : "minecraft:coral_fan_hang2", + "id" : -136 + }, + { + "name" : "minecraft:coral_fan_hang3", + "id" : -137 + }, + { + "name" : "minecraft:cow_spawn_egg", + "id" : 436 + }, + { + "name" : "minecraft:cracked_deepslate_bricks", + "id" : -410 + }, + { + "name" : "minecraft:cracked_deepslate_tiles", + "id" : -409 + }, + { + "name" : "minecraft:cracked_nether_bricks", + "id" : -303 + }, + { + "name" : "minecraft:cracked_polished_blackstone_bricks", + "id" : -280 + }, + { + "name" : "minecraft:crafting_table", + "id" : 58 + }, + { + "name" : "minecraft:creeper_banner_pattern", + "id" : 582 + }, + { + "name" : "minecraft:creeper_spawn_egg", + "id" : 441 + }, + { + "name" : "minecraft:crimson_button", + "id" : -260 + }, + { + "name" : "minecraft:crimson_door", + "id" : 614 + }, + { + "name" : "minecraft:crimson_double_slab", + "id" : -266 + }, + { + "name" : "minecraft:crimson_fence", + "id" : -256 + }, + { + "name" : "minecraft:crimson_fence_gate", + "id" : -258 + }, + { + "name" : "minecraft:crimson_fungus", + "id" : -228 + }, + { + "name" : "minecraft:crimson_hyphae", + "id" : -299 + }, + { + "name" : "minecraft:crimson_nylium", + "id" : -232 + }, + { + "name" : "minecraft:crimson_planks", + "id" : -242 + }, + { + "name" : "minecraft:crimson_pressure_plate", + "id" : -262 + }, + { + "name" : "minecraft:crimson_roots", + "id" : -223 + }, + { + "name" : "minecraft:crimson_sign", + "id" : 612 + }, + { + "name" : "minecraft:crimson_slab", + "id" : -264 + }, + { + "name" : "minecraft:crimson_stairs", + "id" : -254 + }, + { + "name" : "minecraft:crimson_standing_sign", + "id" : -250 + }, + { + "name" : "minecraft:crimson_stem", + "id" : -225 + }, + { + "name" : "minecraft:crimson_trapdoor", + "id" : -246 + }, + { + "name" : "minecraft:crimson_wall_sign", + "id" : -252 + }, + { + "name" : "minecraft:crossbow", + "id" : 575 + }, + { + "name" : "minecraft:crying_obsidian", + "id" : -289 + }, + { + "name" : "minecraft:cut_copper", + "id" : -347 + }, + { + "name" : "minecraft:cut_copper_slab", + "id" : -361 + }, + { + "name" : "minecraft:cut_copper_stairs", + "id" : -354 + }, + { + "name" : "minecraft:cyan_dye", + "id" : 401 + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "id" : 229 + }, + { + "name" : "minecraft:dark_oak_boat", + "id" : 380 + }, + { + "name" : "minecraft:dark_oak_button", + "id" : -142 + }, + { + "name" : "minecraft:dark_oak_door", + "id" : 557 + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "id" : 186 + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "id" : -152 + }, + { + "name" : "minecraft:dark_oak_sign", + "id" : 580 + }, + { + "name" : "minecraft:dark_oak_stairs", + "id" : 164 + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "id" : -147 + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "id" : -3 + }, + { + "name" : "minecraft:darkoak_standing_sign", + "id" : -192 + }, + { + "name" : "minecraft:darkoak_wall_sign", + "id" : -193 + }, + { + "name" : "minecraft:daylight_detector", + "id" : 151 + }, + { + "name" : "minecraft:daylight_detector_inverted", + "id" : 178 + }, + { + "name" : "minecraft:deadbush", + "id" : 32 + }, + { + "name" : "minecraft:deepslate", + "id" : -378 + }, + { + "name" : "minecraft:deepslate_brick_double_slab", + "id" : -399 + }, + { + "name" : "minecraft:deepslate_brick_slab", + "id" : -392 + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "id" : -393 + }, + { + "name" : "minecraft:deepslate_brick_wall", + "id" : -394 + }, + { + "name" : "minecraft:deepslate_bricks", + "id" : -391 + }, + { + "name" : "minecraft:deepslate_coal_ore", + "id" : -406 + }, + { + "name" : "minecraft:deepslate_copper_ore", + "id" : -408 + }, + { + "name" : "minecraft:deepslate_diamond_ore", + "id" : -405 + }, + { + "name" : "minecraft:deepslate_emerald_ore", + "id" : -407 + }, + { + "name" : "minecraft:deepslate_gold_ore", + "id" : -402 + }, + { + "name" : "minecraft:deepslate_iron_ore", + "id" : -401 + }, + { + "name" : "minecraft:deepslate_lapis_ore", + "id" : -400 + }, + { + "name" : "minecraft:deepslate_redstone_ore", + "id" : -403 + }, + { + "name" : "minecraft:deepslate_tile_double_slab", + "id" : -398 + }, + { + "name" : "minecraft:deepslate_tile_slab", + "id" : -388 + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "id" : -389 + }, + { + "name" : "minecraft:deepslate_tile_wall", + "id" : -390 + }, + { + "name" : "minecraft:deepslate_tiles", + "id" : -387 + }, + { + "name" : "minecraft:deny", + "id" : 211 + }, + { + "name" : "minecraft:detector_rail", + "id" : 28 + }, + { + "name" : "minecraft:diamond", + "id" : 304 + }, + { + "name" : "minecraft:diamond_axe", + "id" : 319 + }, + { + "name" : "minecraft:diamond_block", + "id" : 57 + }, + { + "name" : "minecraft:diamond_boots", + "id" : 350 + }, + { + "name" : "minecraft:diamond_chestplate", + "id" : 348 + }, + { + "name" : "minecraft:diamond_helmet", + "id" : 347 + }, + { + "name" : "minecraft:diamond_hoe", + "id" : 332 + }, + { + "name" : "minecraft:diamond_horse_armor", + "id" : 533 + }, + { + "name" : "minecraft:diamond_leggings", + "id" : 349 + }, + { + "name" : "minecraft:diamond_ore", + "id" : 56 + }, + { + "name" : "minecraft:diamond_pickaxe", + "id" : 318 + }, + { + "name" : "minecraft:diamond_shovel", + "id" : 317 + }, + { + "name" : "minecraft:diamond_sword", + "id" : 316 + }, + { + "name" : "minecraft:diorite_stairs", + "id" : -170 + }, + { + "name" : "minecraft:dirt", + "id" : 3 + }, + { + "name" : "minecraft:dirt_with_roots", + "id" : -318 + }, + { + "name" : "minecraft:dispenser", + "id" : 23 + }, + { + "name" : "minecraft:dolphin_spawn_egg", + "id" : 484 + }, + { + "name" : "minecraft:donkey_spawn_egg", + "id" : 465 + }, + { + "name" : "minecraft:double_cut_copper_slab", + "id" : -368 + }, + { + "name" : "minecraft:double_plant", + "id" : 175 + }, + { + "name" : "minecraft:double_stone_slab", + "id" : 44 + }, + { + "name" : "minecraft:double_stone_slab2", + "id" : 182 + }, + { + "name" : "minecraft:double_stone_slab3", + "id" : -162 + }, + { + "name" : "minecraft:double_stone_slab4", + "id" : -166 + }, + { + "name" : "minecraft:double_wooden_slab", + "id" : 157 + }, + { + "name" : "minecraft:dragon_breath", + "id" : 560 + }, + { + "name" : "minecraft:dragon_egg", + "id" : 122 + }, + { + "name" : "minecraft:dried_kelp", + "id" : 270 + }, + { + "name" : "minecraft:dried_kelp_block", + "id" : -139 + }, + { + "name" : "minecraft:dripstone_block", + "id" : -317 + }, + { + "name" : "minecraft:dropper", + "id" : 125 + }, + { + "name" : "minecraft:drowned_spawn_egg", + "id" : 483 + }, + { + "name" : "minecraft:dye", + "id" : 626 + }, + { + "name" : "minecraft:egg", + "id" : 390 + }, + { + "name" : "minecraft:elder_guardian_spawn_egg", + "id" : 471 + }, + { + "name" : "minecraft:element_0", + "id" : 36 + }, + { + "name" : "minecraft:element_1", + "id" : -12 + }, + { + "name" : "minecraft:element_10", + "id" : -21 + }, + { + "name" : "minecraft:element_100", + "id" : -111 + }, + { + "name" : "minecraft:element_101", + "id" : -112 + }, + { + "name" : "minecraft:element_102", + "id" : -113 + }, + { + "name" : "minecraft:element_103", + "id" : -114 + }, + { + "name" : "minecraft:element_104", + "id" : -115 + }, + { + "name" : "minecraft:element_105", + "id" : -116 + }, + { + "name" : "minecraft:element_106", + "id" : -117 + }, + { + "name" : "minecraft:element_107", + "id" : -118 + }, + { + "name" : "minecraft:element_108", + "id" : -119 + }, + { + "name" : "minecraft:element_109", + "id" : -120 + }, + { + "name" : "minecraft:element_11", + "id" : -22 + }, + { + "name" : "minecraft:element_110", + "id" : -121 + }, + { + "name" : "minecraft:element_111", + "id" : -122 + }, + { + "name" : "minecraft:element_112", + "id" : -123 + }, + { + "name" : "minecraft:element_113", + "id" : -124 + }, + { + "name" : "minecraft:element_114", + "id" : -125 + }, + { + "name" : "minecraft:element_115", + "id" : -126 + }, + { + "name" : "minecraft:element_116", + "id" : -127 + }, + { + "name" : "minecraft:element_117", + "id" : -128 + }, + { + "name" : "minecraft:element_118", + "id" : -129 + }, + { + "name" : "minecraft:element_12", + "id" : -23 + }, + { + "name" : "minecraft:element_13", + "id" : -24 + }, + { + "name" : "minecraft:element_14", + "id" : -25 + }, + { + "name" : "minecraft:element_15", + "id" : -26 + }, + { + "name" : "minecraft:element_16", + "id" : -27 + }, + { + "name" : "minecraft:element_17", + "id" : -28 + }, + { + "name" : "minecraft:element_18", + "id" : -29 + }, + { + "name" : "minecraft:element_19", + "id" : -30 + }, + { + "name" : "minecraft:element_2", + "id" : -13 + }, + { + "name" : "minecraft:element_20", + "id" : -31 + }, + { + "name" : "minecraft:element_21", + "id" : -32 + }, + { + "name" : "minecraft:element_22", + "id" : -33 + }, + { + "name" : "minecraft:element_23", + "id" : -34 + }, + { + "name" : "minecraft:element_24", + "id" : -35 + }, + { + "name" : "minecraft:element_25", + "id" : -36 + }, + { + "name" : "minecraft:element_26", + "id" : -37 + }, + { + "name" : "minecraft:element_27", + "id" : -38 + }, + { + "name" : "minecraft:element_28", + "id" : -39 + }, + { + "name" : "minecraft:element_29", + "id" : -40 + }, + { + "name" : "minecraft:element_3", + "id" : -14 + }, + { + "name" : "minecraft:element_30", + "id" : -41 + }, + { + "name" : "minecraft:element_31", + "id" : -42 + }, + { + "name" : "minecraft:element_32", + "id" : -43 + }, + { + "name" : "minecraft:element_33", + "id" : -44 + }, + { + "name" : "minecraft:element_34", + "id" : -45 + }, + { + "name" : "minecraft:element_35", + "id" : -46 + }, + { + "name" : "minecraft:element_36", + "id" : -47 + }, + { + "name" : "minecraft:element_37", + "id" : -48 + }, + { + "name" : "minecraft:element_38", + "id" : -49 + }, + { + "name" : "minecraft:element_39", + "id" : -50 + }, + { + "name" : "minecraft:element_4", + "id" : -15 + }, + { + "name" : "minecraft:element_40", + "id" : -51 + }, + { + "name" : "minecraft:element_41", + "id" : -52 + }, + { + "name" : "minecraft:element_42", + "id" : -53 + }, + { + "name" : "minecraft:element_43", + "id" : -54 + }, + { + "name" : "minecraft:element_44", + "id" : -55 + }, + { + "name" : "minecraft:element_45", + "id" : -56 + }, + { + "name" : "minecraft:element_46", + "id" : -57 + }, + { + "name" : "minecraft:element_47", + "id" : -58 + }, + { + "name" : "minecraft:element_48", + "id" : -59 + }, + { + "name" : "minecraft:element_49", + "id" : -60 + }, + { + "name" : "minecraft:element_5", + "id" : -16 + }, + { + "name" : "minecraft:element_50", + "id" : -61 + }, + { + "name" : "minecraft:element_51", + "id" : -62 + }, + { + "name" : "minecraft:element_52", + "id" : -63 + }, + { + "name" : "minecraft:element_53", + "id" : -64 + }, + { + "name" : "minecraft:element_54", + "id" : -65 + }, + { + "name" : "minecraft:element_55", + "id" : -66 + }, + { + "name" : "minecraft:element_56", + "id" : -67 + }, + { + "name" : "minecraft:element_57", + "id" : -68 + }, + { + "name" : "minecraft:element_58", + "id" : -69 + }, + { + "name" : "minecraft:element_59", + "id" : -70 + }, + { + "name" : "minecraft:element_6", + "id" : -17 + }, + { + "name" : "minecraft:element_60", + "id" : -71 + }, + { + "name" : "minecraft:element_61", + "id" : -72 + }, + { + "name" : "minecraft:element_62", + "id" : -73 + }, + { + "name" : "minecraft:element_63", + "id" : -74 + }, + { + "name" : "minecraft:element_64", + "id" : -75 + }, + { + "name" : "minecraft:element_65", + "id" : -76 + }, + { + "name" : "minecraft:element_66", + "id" : -77 + }, + { + "name" : "minecraft:element_67", + "id" : -78 + }, + { + "name" : "minecraft:element_68", + "id" : -79 + }, + { + "name" : "minecraft:element_69", + "id" : -80 + }, + { + "name" : "minecraft:element_7", + "id" : -18 + }, + { + "name" : "minecraft:element_70", + "id" : -81 + }, + { + "name" : "minecraft:element_71", + "id" : -82 + }, + { + "name" : "minecraft:element_72", + "id" : -83 + }, + { + "name" : "minecraft:element_73", + "id" : -84 + }, + { + "name" : "minecraft:element_74", + "id" : -85 + }, + { + "name" : "minecraft:element_75", + "id" : -86 + }, + { + "name" : "minecraft:element_76", + "id" : -87 + }, + { + "name" : "minecraft:element_77", + "id" : -88 + }, + { + "name" : "minecraft:element_78", + "id" : -89 + }, + { + "name" : "minecraft:element_79", + "id" : -90 + }, + { + "name" : "minecraft:element_8", + "id" : -19 + }, + { + "name" : "minecraft:element_80", + "id" : -91 + }, + { + "name" : "minecraft:element_81", + "id" : -92 + }, + { + "name" : "minecraft:element_82", + "id" : -93 + }, + { + "name" : "minecraft:element_83", + "id" : -94 + }, + { + "name" : "minecraft:element_84", + "id" : -95 + }, + { + "name" : "minecraft:element_85", + "id" : -96 + }, + { + "name" : "minecraft:element_86", + "id" : -97 + }, + { + "name" : "minecraft:element_87", + "id" : -98 + }, + { + "name" : "minecraft:element_88", + "id" : -99 + }, + { + "name" : "minecraft:element_89", + "id" : -100 + }, + { + "name" : "minecraft:element_9", + "id" : -20 + }, + { + "name" : "minecraft:element_90", + "id" : -101 + }, + { + "name" : "minecraft:element_91", + "id" : -102 + }, + { + "name" : "minecraft:element_92", + "id" : -103 + }, + { + "name" : "minecraft:element_93", + "id" : -104 + }, + { + "name" : "minecraft:element_94", + "id" : -105 + }, + { + "name" : "minecraft:element_95", + "id" : -106 + }, + { + "name" : "minecraft:element_96", + "id" : -107 + }, + { + "name" : "minecraft:element_97", + "id" : -108 + }, + { + "name" : "minecraft:element_98", + "id" : -109 + }, + { + "name" : "minecraft:element_99", + "id" : -110 + }, + { + "name" : "minecraft:elytra", + "id" : 564 + }, + { + "name" : "minecraft:emerald", + "id" : 512 + }, + { + "name" : "minecraft:emerald_block", + "id" : 133 + }, + { + "name" : "minecraft:emerald_ore", + "id" : 129 + }, + { + "name" : "minecraft:empty_map", + "id" : 515 + }, + { + "name" : "minecraft:enchanted_book", + "id" : 521 + }, + { + "name" : "minecraft:enchanted_golden_apple", + "id" : 259 + }, + { + "name" : "minecraft:enchanting_table", + "id" : 116 + }, + { + "name" : "minecraft:end_brick_stairs", + "id" : -178 + }, + { + "name" : "minecraft:end_bricks", + "id" : 206 + }, + { + "name" : "minecraft:end_crystal", + "id" : 629 + }, + { + "name" : "minecraft:end_gateway", + "id" : 209 + }, + { + "name" : "minecraft:end_portal", + "id" : 119 + }, + { + "name" : "minecraft:end_portal_frame", + "id" : 120 + }, + { + "name" : "minecraft:end_rod", + "id" : 208 + }, + { + "name" : "minecraft:end_stone", + "id" : 121 + }, + { + "name" : "minecraft:ender_chest", + "id" : 130 + }, + { + "name" : "minecraft:ender_eye", + "id" : 433 + }, + { + "name" : "minecraft:ender_pearl", + "id" : 422 + }, + { + "name" : "minecraft:enderman_spawn_egg", + "id" : 442 + }, + { + "name" : "minecraft:endermite_spawn_egg", + "id" : 460 + }, + { + "name" : "minecraft:evoker_spawn_egg", + "id" : 475 + }, + { + "name" : "minecraft:experience_bottle", + "id" : 508 + }, + { + "name" : "minecraft:exposed_copper", + "id" : -341 + }, + { + "name" : "minecraft:exposed_cut_copper", + "id" : -348 + }, + { + "name" : "minecraft:exposed_cut_copper_slab", + "id" : -362 + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "id" : -355 + }, + { + "name" : "minecraft:exposed_double_cut_copper_slab", + "id" : -369 + }, + { + "name" : "minecraft:farmland", + "id" : 60 + }, + { + "name" : "minecraft:feather", + "id" : 327 + }, + { + "name" : "minecraft:fence", + "id" : 85 + }, + { + "name" : "minecraft:fence_gate", + "id" : 107 + }, + { + "name" : "minecraft:fermented_spider_eye", + "id" : 428 + }, + { + "name" : "minecraft:field_masoned_banner_pattern", + "id" : 585 + }, + { + "name" : "minecraft:filled_map", + "id" : 420 + }, + { + "name" : "minecraft:fire", + "id" : 51 + }, + { + "name" : "minecraft:fire_charge", + "id" : 509 + }, + { + "name" : "minecraft:firework_rocket", + "id" : 519 + }, + { + "name" : "minecraft:firework_star", + "id" : 520 + }, + { + "name" : "minecraft:fishing_rod", + "id" : 392 + }, + { + "name" : "minecraft:fletching_table", + "id" : -201 + }, + { + "name" : "minecraft:flint", + "id" : 356 + }, + { + "name" : "minecraft:flint_and_steel", + "id" : 299 + }, + { + "name" : "minecraft:flower_banner_pattern", + "id" : 581 + }, + { + "name" : "minecraft:flower_pot", + "id" : 514 + }, + { + "name" : "minecraft:flowering_azalea", + "id" : -338 + }, + { + "name" : "minecraft:flowing_lava", + "id" : 10 + }, + { + "name" : "minecraft:flowing_water", + "id" : 8 + }, + { + "name" : "minecraft:fox_spawn_egg", + "id" : 490 + }, + { + "name" : "minecraft:frame", + "id" : 513 + }, + { + "name" : "minecraft:frosted_ice", + "id" : 207 + }, + { + "name" : "minecraft:furnace", + "id" : 61 + }, + { + "name" : "minecraft:ghast_spawn_egg", + "id" : 454 + }, + { + "name" : "minecraft:ghast_tear", + "id" : 424 + }, + { + "name" : "minecraft:gilded_blackstone", + "id" : -281 + }, + { + "name" : "minecraft:glass", + "id" : 20 + }, + { + "name" : "minecraft:glass_bottle", + "id" : 427 + }, + { + "name" : "minecraft:glass_pane", + "id" : 102 + }, + { + "name" : "minecraft:glistering_melon_slice", + "id" : 434 + }, + { + "name" : "minecraft:glow_berries", + "id" : 630 + }, + { + "name" : "minecraft:glow_frame", + "id" : 621 + }, + { + "name" : "minecraft:glow_ink_sac", + "id" : 503 + }, + { + "name" : "minecraft:glow_lichen", + "id" : -411 + }, + { + "name" : "minecraft:glow_squid_spawn_egg", + "id" : 502 + }, + { + "name" : "minecraft:glow_stick", + "id" : 166 + }, + { + "name" : "minecraft:glowingobsidian", + "id" : 246 + }, + { + "name" : "minecraft:glowstone", + "id" : 89 + }, + { + "name" : "minecraft:glowstone_dust", + "id" : 394 + }, + { + "name" : "minecraft:goat_horn", + "id" : 622 + }, + { + "name" : "minecraft:goat_spawn_egg", + "id" : 501 + }, + { + "name" : "minecraft:gold_block", + "id" : 41 + }, + { + "name" : "minecraft:gold_ingot", + "id" : 306 + }, + { + "name" : "minecraft:gold_nugget", + "id" : 425 + }, + { + "name" : "minecraft:gold_ore", + "id" : 14 + }, + { + "name" : "minecraft:golden_apple", + "id" : 258 + }, + { + "name" : "minecraft:golden_axe", + "id" : 325 + }, + { + "name" : "minecraft:golden_boots", + "id" : 354 + }, + { + "name" : "minecraft:golden_carrot", + "id" : 283 + }, + { + "name" : "minecraft:golden_chestplate", + "id" : 352 + }, + { + "name" : "minecraft:golden_helmet", + "id" : 351 + }, + { + "name" : "minecraft:golden_hoe", + "id" : 333 + }, + { + "name" : "minecraft:golden_horse_armor", + "id" : 532 + }, + { + "name" : "minecraft:golden_leggings", + "id" : 353 + }, + { + "name" : "minecraft:golden_pickaxe", + "id" : 324 + }, + { + "name" : "minecraft:golden_rail", + "id" : 27 + }, + { + "name" : "minecraft:golden_shovel", + "id" : 323 + }, + { + "name" : "minecraft:golden_sword", + "id" : 322 + }, + { + "name" : "minecraft:granite_stairs", + "id" : -169 + }, + { + "name" : "minecraft:grass", + "id" : 2 + }, + { + "name" : "minecraft:grass_path", + "id" : 198 + }, + { + "name" : "minecraft:gravel", + "id" : 13 + }, + { + "name" : "minecraft:gray_dye", + "id" : 403 + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "id" : 227 + }, + { + "name" : "minecraft:green_dye", + "id" : 397 + }, + { + "name" : "minecraft:green_glazed_terracotta", + "id" : 233 + }, + { + "name" : "minecraft:grindstone", + "id" : -195 + }, + { + "name" : "minecraft:guardian_spawn_egg", + "id" : 461 + }, + { + "name" : "minecraft:gunpowder", + "id" : 328 + }, + { + "name" : "minecraft:hanging_roots", + "id" : -319 + }, + { + "name" : "minecraft:hard_glass", + "id" : 253 + }, + { + "name" : "minecraft:hard_glass_pane", + "id" : 190 + }, + { + "name" : "minecraft:hard_stained_glass", + "id" : 254 + }, + { + "name" : "minecraft:hard_stained_glass_pane", + "id" : 191 + }, + { + "name" : "minecraft:hardened_clay", + "id" : 172 + }, + { + "name" : "minecraft:hay_block", + "id" : 170 + }, + { + "name" : "minecraft:heart_of_the_sea", + "id" : 571 + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "id" : 148 + }, + { + "name" : "minecraft:hoglin_spawn_egg", + "id" : 496 + }, + { + "name" : "minecraft:honey_block", + "id" : -220 + }, + { + "name" : "minecraft:honey_bottle", + "id" : 591 + }, + { + "name" : "minecraft:honeycomb", + "id" : 590 + }, + { + "name" : "minecraft:honeycomb_block", + "id" : -221 + }, + { + "name" : "minecraft:hopper", + "id" : 527 + }, + { + "name" : "minecraft:hopper_minecart", + "id" : 526 + }, + { + "name" : "minecraft:horse_spawn_egg", + "id" : 458 + }, + { + "name" : "minecraft:husk_spawn_egg", + "id" : 463 + }, + { + "name" : "minecraft:ice", + "id" : 79 + }, + { + "name" : "minecraft:ice_bomb", + "id" : 594 + }, + { + "name" : "minecraft:infested_deepslate", + "id" : -454 + }, + { + "name" : "minecraft:info_update", + "id" : 248 + }, + { + "name" : "minecraft:info_update2", + "id" : 249 + }, + { + "name" : "minecraft:ink_sac", + "id" : 413 + }, + { + "name" : "minecraft:invisiblebedrock", + "id" : 95 + }, + { + "name" : "minecraft:iron_axe", + "id" : 298 + }, + { + "name" : "minecraft:iron_bars", + "id" : 101 + }, + { + "name" : "minecraft:iron_block", + "id" : 42 + }, + { + "name" : "minecraft:iron_boots", + "id" : 346 + }, + { + "name" : "minecraft:iron_chestplate", + "id" : 344 + }, + { + "name" : "minecraft:iron_door", + "id" : 372 + }, + { + "name" : "minecraft:iron_helmet", + "id" : 343 + }, + { + "name" : "minecraft:iron_hoe", + "id" : 331 + }, + { + "name" : "minecraft:iron_horse_armor", + "id" : 531 + }, + { + "name" : "minecraft:iron_ingot", + "id" : 305 + }, + { + "name" : "minecraft:iron_leggings", + "id" : 345 + }, + { + "name" : "minecraft:iron_nugget", + "id" : 569 + }, + { + "name" : "minecraft:iron_ore", + "id" : 15 + }, + { + "name" : "minecraft:iron_pickaxe", + "id" : 297 + }, + { + "name" : "minecraft:iron_shovel", + "id" : 296 + }, + { + "name" : "minecraft:iron_sword", + "id" : 307 + }, + { + "name" : "minecraft:iron_trapdoor", + "id" : 167 + }, + { + "name" : "minecraft:item.acacia_door", + "id" : 196 + }, + { + "name" : "minecraft:item.bed", + "id" : 26 + }, + { + "name" : "minecraft:item.beetroot", + "id" : 244 + }, + { + "name" : "minecraft:item.birch_door", + "id" : 194 + }, + { + "name" : "minecraft:item.cake", + "id" : 92 + }, + { + "name" : "minecraft:item.camera", + "id" : 242 + }, + { + "name" : "minecraft:item.campfire", + "id" : -209 + }, + { + "name" : "minecraft:item.cauldron", + "id" : 118 + }, + { + "name" : "minecraft:item.chain", + "id" : -286 + }, + { + "name" : "minecraft:item.crimson_door", + "id" : -244 + }, + { + "name" : "minecraft:item.dark_oak_door", + "id" : 197 + }, + { + "name" : "minecraft:item.flower_pot", + "id" : 140 + }, + { + "name" : "minecraft:item.frame", + "id" : 199 + }, + { + "name" : "minecraft:item.glow_frame", + "id" : -339 + }, + { + "name" : "minecraft:item.hopper", + "id" : 154 + }, + { + "name" : "minecraft:item.iron_door", + "id" : 71 + }, + { + "name" : "minecraft:item.jungle_door", + "id" : 195 + }, + { + "name" : "minecraft:item.kelp", + "id" : -138 + }, + { + "name" : "minecraft:item.nether_sprouts", + "id" : -238 + }, + { + "name" : "minecraft:item.nether_wart", + "id" : 115 + }, + { + "name" : "minecraft:item.reeds", + "id" : 83 + }, + { + "name" : "minecraft:item.skull", + "id" : 144 + }, + { + "name" : "minecraft:item.soul_campfire", + "id" : -290 + }, + { + "name" : "minecraft:item.spruce_door", + "id" : 193 + }, + { + "name" : "minecraft:item.warped_door", + "id" : -245 + }, + { + "name" : "minecraft:item.wheat", + "id" : 59 + }, + { + "name" : "minecraft:item.wooden_door", + "id" : 64 + }, + { + "name" : "minecraft:jigsaw", + "id" : -211 + }, + { + "name" : "minecraft:jukebox", + "id" : 84 + }, + { + "name" : "minecraft:jungle_boat", + "id" : 377 + }, + { + "name" : "minecraft:jungle_button", + "id" : -143 + }, + { + "name" : "minecraft:jungle_door", + "id" : 555 + }, + { + "name" : "minecraft:jungle_fence_gate", + "id" : 185 + }, + { + "name" : "minecraft:jungle_pressure_plate", + "id" : -153 + }, + { + "name" : "minecraft:jungle_sign", + "id" : 578 + }, + { + "name" : "minecraft:jungle_stairs", + "id" : 136 + }, + { + "name" : "minecraft:jungle_standing_sign", + "id" : -188 + }, + { + "name" : "minecraft:jungle_trapdoor", + "id" : -148 + }, + { + "name" : "minecraft:jungle_wall_sign", + "id" : -189 + }, + { + "name" : "minecraft:kelp", + "id" : 382 + }, + { + "name" : "minecraft:ladder", + "id" : 65 + }, + { + "name" : "minecraft:lantern", + "id" : -208 + }, + { + "name" : "minecraft:lapis_block", + "id" : 22 + }, + { + "name" : "minecraft:lapis_lazuli", + "id" : 414 + }, + { + "name" : "minecraft:lapis_ore", + "id" : 21 + }, + { + "name" : "minecraft:large_amethyst_bud", + "id" : -330 + }, + { + "name" : "minecraft:lava", + "id" : 11 + }, + { + "name" : "minecraft:lava_bucket", + "id" : 363 + }, + { + "name" : "minecraft:lava_cauldron", + "id" : -210 + }, + { + "name" : "minecraft:lead", + "id" : 547 + }, + { + "name" : "minecraft:leather", + "id" : 381 + }, + { + "name" : "minecraft:leather_boots", + "id" : 338 + }, + { + "name" : "minecraft:leather_chestplate", + "id" : 336 + }, + { + "name" : "minecraft:leather_helmet", + "id" : 335 + }, + { + "name" : "minecraft:leather_horse_armor", + "id" : 530 + }, + { + "name" : "minecraft:leather_leggings", + "id" : 337 + }, + { + "name" : "minecraft:leaves", + "id" : 18 + }, + { + "name" : "minecraft:leaves2", + "id" : 161 + }, + { + "name" : "minecraft:lectern", + "id" : -194 + }, + { + "name" : "minecraft:lever", + "id" : 69 + }, + { + "name" : "minecraft:light_block", + "id" : -215 + }, + { + "name" : "minecraft:light_blue_dye", + "id" : 407 + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "id" : 223 + }, + { + "name" : "minecraft:light_gray_dye", + "id" : 402 + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "id" : 147 + }, + { + "name" : "minecraft:lightning_rod", + "id" : -312 + }, + { + "name" : "minecraft:lime_dye", + "id" : 405 + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "id" : 225 + }, + { + "name" : "minecraft:lingering_potion", + "id" : 562 + }, + { + "name" : "minecraft:lit_blast_furnace", + "id" : -214 + }, + { + "name" : "minecraft:lit_deepslate_redstone_ore", + "id" : -404 + }, + { + "name" : "minecraft:lit_furnace", + "id" : 62 + }, + { + "name" : "minecraft:lit_pumpkin", + "id" : 91 + }, + { + "name" : "minecraft:lit_redstone_lamp", + "id" : 124 + }, + { + "name" : "minecraft:lit_redstone_ore", + "id" : 74 + }, + { + "name" : "minecraft:lit_smoker", + "id" : -199 + }, + { + "name" : "minecraft:llama_spawn_egg", + "id" : 473 + }, + { + "name" : "minecraft:lodestone", + "id" : -222 + }, + { + "name" : "minecraft:lodestone_compass", + "id" : 600 + }, + { + "name" : "minecraft:log", + "id" : 17 + }, + { + "name" : "minecraft:log2", + "id" : 162 + }, + { + "name" : "minecraft:loom", + "id" : -204 + }, + { + "name" : "minecraft:magenta_dye", + "id" : 408 + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "id" : 222 + }, + { + "name" : "minecraft:magma", + "id" : 213 + }, + { + "name" : "minecraft:magma_cream", + "id" : 430 + }, + { + "name" : "minecraft:magma_cube_spawn_egg", + "id" : 455 + }, + { + "name" : "minecraft:medicine", + "id" : 598 + }, + { + "name" : "minecraft:medium_amethyst_bud", + "id" : -331 + }, + { + "name" : "minecraft:melon_block", + "id" : 103 + }, + { + "name" : "minecraft:melon_seeds", + "id" : 293 + }, + { + "name" : "minecraft:melon_slice", + "id" : 272 + }, + { + "name" : "minecraft:melon_stem", + "id" : 105 + }, + { + "name" : "minecraft:milk_bucket", + "id" : 361 + }, + { + "name" : "minecraft:minecart", + "id" : 370 + }, + { + "name" : "minecraft:mob_spawner", + "id" : 52 + }, + { + "name" : "minecraft:mojang_banner_pattern", + "id" : 584 + }, + { + "name" : "minecraft:monster_egg", + "id" : 97 + }, + { + "name" : "minecraft:mooshroom_spawn_egg", + "id" : 440 + }, + { + "name" : "minecraft:moss_block", + "id" : -320 + }, + { + "name" : "minecraft:moss_carpet", + "id" : -335 + }, + { + "name" : "minecraft:mossy_cobblestone", + "id" : 48 + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "id" : -179 + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "id" : -175 + }, + { + "name" : "minecraft:movingblock", + "id" : 250 + }, + { + "name" : "minecraft:mule_spawn_egg", + "id" : 466 + }, + { + "name" : "minecraft:mushroom_stew", + "id" : 260 + }, + { + "name" : "minecraft:music_disc_11", + "id" : 544 + }, + { + "name" : "minecraft:music_disc_13", + "id" : 534 + }, + { + "name" : "minecraft:music_disc_blocks", + "id" : 536 + }, + { + "name" : "minecraft:music_disc_cat", + "id" : 535 + }, + { + "name" : "minecraft:music_disc_chirp", + "id" : 537 + }, + { + "name" : "minecraft:music_disc_far", + "id" : 538 + }, + { + "name" : "minecraft:music_disc_mall", + "id" : 539 + }, + { + "name" : "minecraft:music_disc_mellohi", + "id" : 540 + }, + { + "name" : "minecraft:music_disc_pigstep", + "id" : 618 + }, + { + "name" : "minecraft:music_disc_stal", + "id" : 541 + }, + { + "name" : "minecraft:music_disc_strad", + "id" : 542 + }, + { + "name" : "minecraft:music_disc_wait", + "id" : 545 + }, + { + "name" : "minecraft:music_disc_ward", + "id" : 543 + }, + { + "name" : "minecraft:mutton", + "id" : 550 + }, + { + "name" : "minecraft:mycelium", + "id" : 110 + }, + { + "name" : "minecraft:name_tag", + "id" : 548 + }, + { + "name" : "minecraft:nautilus_shell", + "id" : 570 + }, + { + "name" : "minecraft:nether_brick", + "id" : 112 + }, + { + "name" : "minecraft:nether_brick_fence", + "id" : 113 + }, + { + "name" : "minecraft:nether_brick_stairs", + "id" : 114 + }, + { + "name" : "minecraft:nether_gold_ore", + "id" : -288 + }, + { + "name" : "minecraft:nether_sprouts", + "id" : 619 + }, + { + "name" : "minecraft:nether_star", + "id" : 518 + }, + { + "name" : "minecraft:nether_wart", + "id" : 294 + }, + { + "name" : "minecraft:nether_wart_block", + "id" : 214 + }, + { + "name" : "minecraft:netherbrick", + "id" : 523 + }, + { + "name" : "minecraft:netherite_axe", + "id" : 605 + }, + { + "name" : "minecraft:netherite_block", + "id" : -270 + }, + { + "name" : "minecraft:netherite_boots", + "id" : 610 + }, + { + "name" : "minecraft:netherite_chestplate", + "id" : 608 + }, + { + "name" : "minecraft:netherite_helmet", + "id" : 607 + }, + { + "name" : "minecraft:netherite_hoe", + "id" : 606 + }, + { + "name" : "minecraft:netherite_ingot", + "id" : 601 + }, + { + "name" : "minecraft:netherite_leggings", + "id" : 609 + }, + { + "name" : "minecraft:netherite_pickaxe", + "id" : 604 + }, + { + "name" : "minecraft:netherite_scrap", + "id" : 611 + }, + { + "name" : "minecraft:netherite_shovel", + "id" : 603 + }, + { + "name" : "minecraft:netherite_sword", + "id" : 602 + }, + { + "name" : "minecraft:netherrack", + "id" : 87 + }, + { + "name" : "minecraft:netherreactor", + "id" : 247 + }, + { + "name" : "minecraft:normal_stone_stairs", + "id" : -180 + }, + { + "name" : "minecraft:noteblock", + "id" : 25 + }, + { + "name" : "minecraft:npc_spawn_egg", + "id" : 470 + }, + { + "name" : "minecraft:oak_boat", + "id" : 375 + }, + { + "name" : "minecraft:oak_sign", + "id" : 358 + }, + { + "name" : "minecraft:oak_stairs", + "id" : 53 + }, + { + "name" : "minecraft:observer", + "id" : 251 + }, + { + "name" : "minecraft:obsidian", + "id" : 49 + }, + { + "name" : "minecraft:ocelot_spawn_egg", + "id" : 451 + }, + { + "name" : "minecraft:orange_dye", + "id" : 409 + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "id" : 221 + }, + { + "name" : "minecraft:oxidized_copper", + "id" : -343 + }, + { + "name" : "minecraft:oxidized_cut_copper", + "id" : -350 + }, + { + "name" : "minecraft:oxidized_cut_copper_slab", + "id" : -364 + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "id" : -357 + }, + { + "name" : "minecraft:oxidized_double_cut_copper_slab", + "id" : -371 + }, + { + "name" : "minecraft:packed_ice", + "id" : 174 + }, + { + "name" : "minecraft:painting", + "id" : 357 + }, + { + "name" : "minecraft:panda_spawn_egg", + "id" : 489 + }, + { + "name" : "minecraft:paper", + "id" : 386 + }, + { + "name" : "minecraft:parrot_spawn_egg", + "id" : 478 + }, + { + "name" : "minecraft:phantom_membrane", + "id" : 574 + }, + { + "name" : "minecraft:phantom_spawn_egg", + "id" : 486 + }, + { + "name" : "minecraft:pig_spawn_egg", + "id" : 437 + }, + { + "name" : "minecraft:piglin_banner_pattern", + "id" : 587 + }, + { + "name" : "minecraft:piglin_brute_spawn_egg", + "id" : 499 + }, + { + "name" : "minecraft:piglin_spawn_egg", + "id" : 497 + }, + { + "name" : "minecraft:pillager_spawn_egg", + "id" : 491 + }, + { + "name" : "minecraft:pink_dye", + "id" : 404 + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "id" : 226 + }, + { + "name" : "minecraft:piston", + "id" : 33 + }, + { + "name" : "minecraft:pistonarmcollision", + "id" : 34 + }, + { + "name" : "minecraft:planks", + "id" : 5 + }, + { + "name" : "minecraft:podzol", + "id" : 243 + }, + { + "name" : "minecraft:pointed_dripstone", + "id" : -308 + }, + { + "name" : "minecraft:poisonous_potato", + "id" : 282 + }, + { + "name" : "minecraft:polar_bear_spawn_egg", + "id" : 472 + }, + { + "name" : "minecraft:polished_andesite_stairs", + "id" : -174 + }, + { + "name" : "minecraft:polished_basalt", + "id" : -235 + }, + { + "name" : "minecraft:polished_blackstone", + "id" : -291 + }, + { + "name" : "minecraft:polished_blackstone_brick_double_slab", + "id" : -285 + }, + { + "name" : "minecraft:polished_blackstone_brick_slab", + "id" : -284 + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "id" : -275 + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "id" : -278 + }, + { + "name" : "minecraft:polished_blackstone_bricks", + "id" : -274 + }, + { + "name" : "minecraft:polished_blackstone_button", + "id" : -296 + }, + { + "name" : "minecraft:polished_blackstone_double_slab", + "id" : -294 + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "id" : -295 + }, + { + "name" : "minecraft:polished_blackstone_slab", + "id" : -293 + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "id" : -292 + }, + { + "name" : "minecraft:polished_blackstone_wall", + "id" : -297 + }, + { + "name" : "minecraft:polished_deepslate", + "id" : -383 + }, + { + "name" : "minecraft:polished_deepslate_double_slab", + "id" : -397 + }, + { + "name" : "minecraft:polished_deepslate_slab", + "id" : -384 + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "id" : -385 + }, + { + "name" : "minecraft:polished_deepslate_wall", + "id" : -386 + }, + { + "name" : "minecraft:polished_diorite_stairs", + "id" : -173 + }, + { + "name" : "minecraft:polished_granite_stairs", + "id" : -172 + }, + { + "name" : "minecraft:popped_chorus_fruit", + "id" : 559 + }, + { + "name" : "minecraft:porkchop", + "id" : 262 + }, + { + "name" : "minecraft:portal", + "id" : 90 + }, + { + "name" : "minecraft:potato", + "id" : 280 + }, + { + "name" : "minecraft:potatoes", + "id" : 142 + }, + { + "name" : "minecraft:potion", + "id" : 426 + }, + { + "name" : "minecraft:powder_snow", + "id" : -306 + }, + { + "name" : "minecraft:powder_snow_bucket", + "id" : 368 + }, + { + "name" : "minecraft:powered_comparator", + "id" : 150 + }, + { + "name" : "minecraft:powered_repeater", + "id" : 94 + }, + { + "name" : "minecraft:prismarine", + "id" : 168 + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "id" : -4 + }, + { + "name" : "minecraft:prismarine_crystals", + "id" : 549 + }, + { + "name" : "minecraft:prismarine_shard", + "id" : 565 + }, + { + "name" : "minecraft:prismarine_stairs", + "id" : -2 + }, + { + "name" : "minecraft:pufferfish", + "id" : 267 + }, + { + "name" : "minecraft:pufferfish_bucket", + "id" : 367 + }, + { + "name" : "minecraft:pufferfish_spawn_egg", + "id" : 481 + }, + { + "name" : "minecraft:pumpkin", + "id" : 86 + }, + { + "name" : "minecraft:pumpkin_pie", + "id" : 284 + }, + { + "name" : "minecraft:pumpkin_seeds", + "id" : 292 + }, + { + "name" : "minecraft:pumpkin_stem", + "id" : 104 + }, + { + "name" : "minecraft:purple_dye", + "id" : 400 + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "id" : 219 + }, + { + "name" : "minecraft:purpur_block", + "id" : 201 + }, + { + "name" : "minecraft:purpur_stairs", + "id" : 203 + }, + { + "name" : "minecraft:quartz", + "id" : 524 + }, + { + "name" : "minecraft:quartz_block", + "id" : 155 + }, + { + "name" : "minecraft:quartz_bricks", + "id" : -304 + }, + { + "name" : "minecraft:quartz_ore", + "id" : 153 + }, + { + "name" : "minecraft:quartz_stairs", + "id" : 156 + }, + { + "name" : "minecraft:rabbit", + "id" : 288 + }, + { + "name" : "minecraft:rabbit_foot", + "id" : 528 + }, + { + "name" : "minecraft:rabbit_hide", + "id" : 529 + }, + { + "name" : "minecraft:rabbit_spawn_egg", + "id" : 459 + }, + { + "name" : "minecraft:rabbit_stew", + "id" : 290 + }, + { + "name" : "minecraft:rail", + "id" : 66 + }, + { + "name" : "minecraft:rapid_fertilizer", + "id" : 596 + }, + { + "name" : "minecraft:ravager_spawn_egg", + "id" : 493 + }, + { + "name" : "minecraft:raw_copper", + "id" : 507 + }, + { + "name" : "minecraft:raw_copper_block", + "id" : -452 + }, + { + "name" : "minecraft:raw_gold", + "id" : 506 + }, + { + "name" : "minecraft:raw_gold_block", + "id" : -453 + }, + { + "name" : "minecraft:raw_iron", + "id" : 505 + }, + { + "name" : "minecraft:raw_iron_block", + "id" : -451 + }, + { + "name" : "minecraft:real_double_stone_slab", + "id" : 43 + }, + { + "name" : "minecraft:real_double_stone_slab2", + "id" : 181 + }, + { + "name" : "minecraft:real_double_stone_slab3", + "id" : -167 + }, + { + "name" : "minecraft:real_double_stone_slab4", + "id" : -168 + }, + { + "name" : "minecraft:red_dye", + "id" : 396 + }, + { + "name" : "minecraft:red_flower", + "id" : 38 + }, + { + "name" : "minecraft:red_glazed_terracotta", + "id" : 234 + }, + { + "name" : "minecraft:red_mushroom", + "id" : 40 + }, + { + "name" : "minecraft:red_mushroom_block", + "id" : 100 + }, + { + "name" : "minecraft:red_nether_brick", + "id" : 215 + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "id" : -184 + }, + { + "name" : "minecraft:red_sandstone", + "id" : 179 + }, + { + "name" : "minecraft:red_sandstone_stairs", + "id" : 180 + }, + { + "name" : "minecraft:redstone", + "id" : 373 + }, + { + "name" : "minecraft:redstone_block", + "id" : 152 + }, + { + "name" : "minecraft:redstone_lamp", + "id" : 123 + }, + { + "name" : "minecraft:redstone_ore", + "id" : 73 + }, + { + "name" : "minecraft:redstone_torch", + "id" : 76 + }, + { + "name" : "minecraft:redstone_wire", + "id" : 55 + }, + { + "name" : "minecraft:repeater", + "id" : 419 + }, + { + "name" : "minecraft:repeating_command_block", + "id" : 188 + }, + { + "name" : "minecraft:reserved6", + "id" : 255 + }, + { + "name" : "minecraft:respawn_anchor", + "id" : -272 + }, + { + "name" : "minecraft:rotten_flesh", + "id" : 277 + }, + { + "name" : "minecraft:saddle", + "id" : 371 + }, + { + "name" : "minecraft:salmon", + "id" : 265 + }, + { + "name" : "minecraft:salmon_bucket", + "id" : 365 + }, + { + "name" : "minecraft:salmon_spawn_egg", + "id" : 482 + }, + { + "name" : "minecraft:sand", + "id" : 12 + }, + { + "name" : "minecraft:sandstone", + "id" : 24 + }, + { + "name" : "minecraft:sandstone_stairs", + "id" : 128 + }, + { + "name" : "minecraft:sapling", + "id" : 6 + }, + { + "name" : "minecraft:scaffolding", + "id" : -165 + }, + { + "name" : "minecraft:sculk_sensor", + "id" : -307 + }, + { + "name" : "minecraft:scute", + "id" : 572 + }, + { + "name" : "minecraft:sea_pickle", + "id" : -156 + }, + { + "name" : "minecraft:seagrass", + "id" : -130 + }, + { + "name" : "minecraft:sealantern", + "id" : 169 + }, + { + "name" : "minecraft:shears", + "id" : 421 + }, + { + "name" : "minecraft:sheep_spawn_egg", + "id" : 438 + }, + { + "name" : "minecraft:shield", + "id" : 355 + }, + { + "name" : "minecraft:shroomlight", + "id" : -230 + }, + { + "name" : "minecraft:shulker_box", + "id" : 218 + }, + { + "name" : "minecraft:shulker_shell", + "id" : 566 + }, + { + "name" : "minecraft:shulker_spawn_egg", + "id" : 469 + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "id" : 228 + }, + { + "name" : "minecraft:silverfish_spawn_egg", + "id" : 443 + }, + { + "name" : "minecraft:skeleton_horse_spawn_egg", + "id" : 467 + }, + { + "name" : "minecraft:skeleton_spawn_egg", + "id" : 444 + }, + { + "name" : "minecraft:skull", + "id" : 516 + }, + { + "name" : "minecraft:skull_banner_pattern", + "id" : 583 + }, + { + "name" : "minecraft:slime", + "id" : 165 + }, + { + "name" : "minecraft:slime_ball", + "id" : 388 + }, + { + "name" : "minecraft:slime_spawn_egg", + "id" : 445 + }, + { + "name" : "minecraft:small_amethyst_bud", + "id" : -332 + }, + { + "name" : "minecraft:small_dripleaf_block", + "id" : -336 + }, + { + "name" : "minecraft:smithing_table", + "id" : -202 + }, + { + "name" : "minecraft:smoker", + "id" : -198 + }, + { + "name" : "minecraft:smooth_basalt", + "id" : -377 + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "id" : -185 + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "id" : -176 + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "id" : -177 + }, + { + "name" : "minecraft:smooth_stone", + "id" : -183 + }, + { + "name" : "minecraft:snow", + "id" : 80 + }, + { + "name" : "minecraft:snow_layer", + "id" : 78 + }, + { + "name" : "minecraft:snowball", + "id" : 374 + }, + { + "name" : "minecraft:soul_campfire", + "id" : 620 + }, + { + "name" : "minecraft:soul_fire", + "id" : -237 + }, + { + "name" : "minecraft:soul_lantern", + "id" : -269 + }, + { + "name" : "minecraft:soul_sand", + "id" : 88 + }, + { + "name" : "minecraft:soul_soil", + "id" : -236 + }, + { + "name" : "minecraft:soul_torch", + "id" : -268 + }, + { + "name" : "minecraft:sparkler", + "id" : 599 + }, + { + "name" : "minecraft:spawn_egg", + "id" : 628 + }, + { + "name" : "minecraft:spider_eye", + "id" : 278 + }, + { + "name" : "minecraft:spider_spawn_egg", + "id" : 446 + }, + { + "name" : "minecraft:splash_potion", + "id" : 561 + }, + { + "name" : "minecraft:sponge", + "id" : 19 + }, + { + "name" : "minecraft:spore_blossom", + "id" : -321 + }, + { + "name" : "minecraft:spruce_boat", + "id" : 378 + }, + { + "name" : "minecraft:spruce_button", + "id" : -144 + }, + { + "name" : "minecraft:spruce_door", + "id" : 553 + }, + { + "name" : "minecraft:spruce_fence_gate", + "id" : 183 + }, + { + "name" : "minecraft:spruce_pressure_plate", + "id" : -154 + }, + { + "name" : "minecraft:spruce_sign", + "id" : 576 + }, + { + "name" : "minecraft:spruce_stairs", + "id" : 134 + }, + { + "name" : "minecraft:spruce_standing_sign", + "id" : -181 + }, + { + "name" : "minecraft:spruce_trapdoor", + "id" : -149 + }, + { + "name" : "minecraft:spruce_wall_sign", + "id" : -182 + }, + { + "name" : "minecraft:spyglass", + "id" : 624 + }, + { + "name" : "minecraft:squid_spawn_egg", + "id" : 450 + }, + { + "name" : "minecraft:stained_glass", + "id" : 241 + }, + { + "name" : "minecraft:stained_glass_pane", + "id" : 160 + }, + { + "name" : "minecraft:stained_hardened_clay", + "id" : 159 + }, + { + "name" : "minecraft:standing_banner", + "id" : 176 + }, + { + "name" : "minecraft:standing_sign", + "id" : 63 + }, + { + "name" : "minecraft:stick", + "id" : 320 + }, + { + "name" : "minecraft:sticky_piston", + "id" : 29 + }, + { + "name" : "minecraft:stickypistonarmcollision", + "id" : -217 + }, + { + "name" : "minecraft:stone", + "id" : 1 + }, + { + "name" : "minecraft:stone_axe", + "id" : 315 + }, + { + "name" : "minecraft:stone_brick_stairs", + "id" : 109 + }, + { + "name" : "minecraft:stone_button", + "id" : 77 + }, + { + "name" : "minecraft:stone_hoe", + "id" : 330 + }, + { + "name" : "minecraft:stone_pickaxe", + "id" : 314 + }, + { + "name" : "minecraft:stone_pressure_plate", + "id" : 70 + }, + { + "name" : "minecraft:stone_shovel", + "id" : 313 + }, + { + "name" : "minecraft:stone_stairs", + "id" : 67 + }, + { + "name" : "minecraft:stone_sword", + "id" : 312 + }, + { + "name" : "minecraft:stonebrick", + "id" : 98 + }, + { + "name" : "minecraft:stonecutter", + "id" : 245 + }, + { + "name" : "minecraft:stonecutter_block", + "id" : -197 + }, + { + "name" : "minecraft:stray_spawn_egg", + "id" : 462 + }, + { + "name" : "minecraft:strider_spawn_egg", + "id" : 495 + }, + { + "name" : "minecraft:string", + "id" : 326 + }, + { + "name" : "minecraft:stripped_acacia_log", + "id" : -8 + }, + { + "name" : "minecraft:stripped_birch_log", + "id" : -6 + }, + { + "name" : "minecraft:stripped_crimson_hyphae", + "id" : -300 + }, + { + "name" : "minecraft:stripped_crimson_stem", + "id" : -240 + }, + { + "name" : "minecraft:stripped_dark_oak_log", + "id" : -9 + }, + { + "name" : "minecraft:stripped_jungle_log", + "id" : -7 + }, + { + "name" : "minecraft:stripped_oak_log", + "id" : -10 + }, + { + "name" : "minecraft:stripped_spruce_log", + "id" : -5 + }, + { + "name" : "minecraft:stripped_warped_hyphae", + "id" : -301 + }, + { + "name" : "minecraft:stripped_warped_stem", + "id" : -241 + }, + { + "name" : "minecraft:structure_block", + "id" : 252 + }, + { + "name" : "minecraft:structure_void", + "id" : 217 + }, + { + "name" : "minecraft:sugar", + "id" : 416 + }, + { + "name" : "minecraft:sugar_cane", + "id" : 385 + }, + { + "name" : "minecraft:suspicious_stew", + "id" : 589 + }, + { + "name" : "minecraft:sweet_berries", + "id" : 287 + }, + { + "name" : "minecraft:sweet_berry_bush", + "id" : -207 + }, + { + "name" : "minecraft:tallgrass", + "id" : 31 + }, + { + "name" : "minecraft:target", + "id" : -239 + }, + { + "name" : "minecraft:tinted_glass", + "id" : -334 + }, + { + "name" : "minecraft:tnt", + "id" : 46 + }, + { + "name" : "minecraft:tnt_minecart", + "id" : 525 + }, + { + "name" : "minecraft:torch", + "id" : 50 + }, + { + "name" : "minecraft:totem_of_undying", + "id" : 568 + }, + { + "name" : "minecraft:trapdoor", + "id" : 96 + }, + { + "name" : "minecraft:trapped_chest", + "id" : 146 + }, + { + "name" : "minecraft:trident", + "id" : 546 + }, + { + "name" : "minecraft:tripwire", + "id" : 132 + }, + { + "name" : "minecraft:tripwire_hook", + "id" : 131 + }, + { + "name" : "minecraft:tropical_fish", + "id" : 266 + }, + { + "name" : "minecraft:tropical_fish_bucket", + "id" : 366 + }, + { + "name" : "minecraft:tropical_fish_spawn_egg", + "id" : 479 + }, + { + "name" : "minecraft:tuff", + "id" : -333 + }, + { + "name" : "minecraft:turtle_egg", + "id" : -159 + }, + { + "name" : "minecraft:turtle_helmet", + "id" : 573 + }, + { + "name" : "minecraft:turtle_spawn_egg", + "id" : 485 + }, + { + "name" : "minecraft:twisting_vines", + "id" : -287 + }, + { + "name" : "minecraft:underwater_torch", + "id" : 239 + }, + { + "name" : "minecraft:undyed_shulker_box", + "id" : 205 + }, + { + "name" : "minecraft:unknown", + "id" : -305 + }, + { + "name" : "minecraft:unlit_redstone_torch", + "id" : 75 + }, + { + "name" : "minecraft:unpowered_comparator", + "id" : 149 + }, + { + "name" : "minecraft:unpowered_repeater", + "id" : 93 + }, + { + "name" : "minecraft:vex_spawn_egg", + "id" : 476 + }, + { + "name" : "minecraft:villager_spawn_egg", + "id" : 449 + }, + { + "name" : "minecraft:vindicator_spawn_egg", + "id" : 474 + }, + { + "name" : "minecraft:vine", + "id" : 106 + }, + { + "name" : "minecraft:wall_banner", + "id" : 177 + }, + { + "name" : "minecraft:wall_sign", + "id" : 68 + }, + { + "name" : "minecraft:wandering_trader_spawn_egg", + "id" : 492 + }, + { + "name" : "minecraft:warped_button", + "id" : -261 + }, + { + "name" : "minecraft:warped_door", + "id" : 615 + }, + { + "name" : "minecraft:warped_double_slab", + "id" : -267 + }, + { + "name" : "minecraft:warped_fence", + "id" : -257 + }, + { + "name" : "minecraft:warped_fence_gate", + "id" : -259 + }, + { + "name" : "minecraft:warped_fungus", + "id" : -229 + }, + { + "name" : "minecraft:warped_fungus_on_a_stick", + "id" : 616 + }, + { + "name" : "minecraft:warped_hyphae", + "id" : -298 + }, + { + "name" : "minecraft:warped_nylium", + "id" : -233 + }, + { + "name" : "minecraft:warped_planks", + "id" : -243 + }, + { + "name" : "minecraft:warped_pressure_plate", + "id" : -263 + }, + { + "name" : "minecraft:warped_roots", + "id" : -224 + }, + { + "name" : "minecraft:warped_sign", + "id" : 613 + }, + { + "name" : "minecraft:warped_slab", + "id" : -265 + }, + { + "name" : "minecraft:warped_stairs", + "id" : -255 + }, + { + "name" : "minecraft:warped_standing_sign", + "id" : -251 + }, + { + "name" : "minecraft:warped_stem", + "id" : -226 + }, + { + "name" : "minecraft:warped_trapdoor", + "id" : -247 + }, + { + "name" : "minecraft:warped_wall_sign", + "id" : -253 + }, + { + "name" : "minecraft:warped_wart_block", + "id" : -227 + }, + { + "name" : "minecraft:water", + "id" : 9 + }, + { + "name" : "minecraft:water_bucket", + "id" : 362 + }, + { + "name" : "minecraft:waterlily", + "id" : 111 + }, + { + "name" : "minecraft:waxed_copper", + "id" : -344 + }, + { + "name" : "minecraft:waxed_cut_copper", + "id" : -351 + }, + { + "name" : "minecraft:waxed_cut_copper_slab", + "id" : -365 + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "id" : -358 + }, + { + "name" : "minecraft:waxed_double_cut_copper_slab", + "id" : -372 + }, + { + "name" : "minecraft:waxed_exposed_copper", + "id" : -345 + }, + { + "name" : "minecraft:waxed_exposed_cut_copper", + "id" : -352 + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_slab", + "id" : -366 + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "id" : -359 + }, + { + "name" : "minecraft:waxed_exposed_double_cut_copper_slab", + "id" : -373 + }, + { + "name" : "minecraft:waxed_oxidized_copper", + "id" : -446 + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper", + "id" : -447 + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_slab", + "id" : -449 + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "id" : -448 + }, + { + "name" : "minecraft:waxed_oxidized_double_cut_copper_slab", + "id" : -450 + }, + { + "name" : "minecraft:waxed_weathered_copper", + "id" : -346 + }, + { + "name" : "minecraft:waxed_weathered_cut_copper", + "id" : -353 + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_slab", + "id" : -367 + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "id" : -360 + }, + { + "name" : "minecraft:waxed_weathered_double_cut_copper_slab", + "id" : -374 + }, + { + "name" : "minecraft:weathered_copper", + "id" : -342 + }, + { + "name" : "minecraft:weathered_cut_copper", + "id" : -349 + }, + { + "name" : "minecraft:weathered_cut_copper_slab", + "id" : -363 + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "id" : -356 + }, + { + "name" : "minecraft:weathered_double_cut_copper_slab", + "id" : -370 + }, + { + "name" : "minecraft:web", + "id" : 30 + }, + { + "name" : "minecraft:weeping_vines", + "id" : -231 + }, + { + "name" : "minecraft:wheat", + "id" : 334 + }, + { + "name" : "minecraft:wheat_seeds", + "id" : 291 + }, + { + "name" : "minecraft:white_dye", + "id" : 410 + }, + { + "name" : "minecraft:white_glazed_terracotta", + "id" : 220 + }, + { + "name" : "minecraft:witch_spawn_egg", + "id" : 452 + }, + { + "name" : "minecraft:wither_rose", + "id" : -216 + }, + { + "name" : "minecraft:wither_skeleton_spawn_egg", + "id" : 464 + }, + { + "name" : "minecraft:wolf_spawn_egg", + "id" : 439 + }, + { + "name" : "minecraft:wood", + "id" : -212 + }, + { + "name" : "minecraft:wooden_axe", + "id" : 311 + }, + { + "name" : "minecraft:wooden_button", + "id" : 143 + }, + { + "name" : "minecraft:wooden_door", + "id" : 359 + }, + { + "name" : "minecraft:wooden_hoe", + "id" : 329 + }, + { + "name" : "minecraft:wooden_pickaxe", + "id" : 310 + }, + { + "name" : "minecraft:wooden_pressure_plate", + "id" : 72 + }, + { + "name" : "minecraft:wooden_shovel", + "id" : 309 + }, + { + "name" : "minecraft:wooden_slab", + "id" : 158 + }, + { + "name" : "minecraft:wooden_sword", + "id" : 308 + }, + { + "name" : "minecraft:wool", + "id" : 35 + }, + { + "name" : "minecraft:writable_book", + "id" : 510 + }, + { + "name" : "minecraft:written_book", + "id" : 511 + }, + { + "name" : "minecraft:yellow_dye", + "id" : 406 + }, + { + "name" : "minecraft:yellow_flower", + "id" : 37 + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "id" : 224 + }, + { + "name" : "minecraft:zoglin_spawn_egg", + "id" : 498 + }, + { + "name" : "minecraft:zombie_horse_spawn_egg", + "id" : 468 + }, + { + "name" : "minecraft:zombie_pigman_spawn_egg", + "id" : 448 + }, + { + "name" : "minecraft:zombie_spawn_egg", + "id" : 447 + }, + { + "name" : "minecraft:zombie_villager_spawn_egg", + "id" : 477 + } +] \ No newline at end of file From 9be1d119d75a21d586d0d5f3cb0bfca1d2e44750 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 11 Jun 2021 17:32:38 -0300 Subject: [PATCH 043/394] Fix #1122 backward compatibility with plugins setting full bark logs with 17:13 --- src/main/java/cn/nukkit/block/Block.java | 8 ++++++ src/main/java/cn/nukkit/block/BlockWood.java | 28 ++++++++++++++++++- .../java/cn/nukkit/block/BlockWoodBark.java | 2 +- .../cn/nukkit/block/BlockWoodStripped.java | 2 +- .../nukkit/blockstate/BlockStateRegistry.java | 18 +++++++++++- .../cn/nukkit/blockstate/IBlockState.java | 6 ++-- .../nukkit/blockstate/IMutableBlockState.java | 22 +++++++++++++++ .../cn/nukkit/blockstate/IBlockStateTest.java | 11 ++++++++ 8 files changed, 89 insertions(+), 8 deletions(-) diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index 3ba81b20460..7d26d32774f 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -1939,6 +1939,14 @@ public void setState(@Nonnull IBlockState state) throws InvalidBlockStateExcepti getMutableState().setState(state); } + @Since("FUTURE") + @PowerNukkitOnly + @Override + @Nonnull + public Block forState(@Nonnull IBlockState state) throws InvalidBlockStateException { + return (Block) IMutableBlockState.super.forState(state); + } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override diff --git a/src/main/java/cn/nukkit/block/BlockWood.java b/src/main/java/cn/nukkit/block/BlockWood.java index d61a5460d02..38d029abf4c 100644 --- a/src/main/java/cn/nukkit/block/BlockWood.java +++ b/src/main/java/cn/nukkit/block/BlockWood.java @@ -8,6 +8,8 @@ import cn.nukkit.blockproperty.BlockProperty; import cn.nukkit.blockproperty.value.WoodType; import cn.nukkit.blockstate.BlockState; +import cn.nukkit.blockstate.IBlockState; +import cn.nukkit.blockstate.exception.InvalidBlockStateException; import cn.nukkit.utils.BlockColor; import javax.annotation.Nonnull; @@ -80,7 +82,31 @@ public void setWoodType(WoodType woodType) { @Override public String getName() { - return getWoodType().getEnglishName() + " Wood"; + return getWoodType().getEnglishName() + " Log"; + } + + @Since("FUTURE") + @PowerNukkitOnly + @Nonnull + @Override + public Block forState(@Nonnull IBlockState state) throws InvalidBlockStateException { + int id = getId(); + if (id != LOG && id != LOG2) { + return super.forState(state); + } + + id = state.getBlockId(); + if (id != LOG && id != LOG2 || state.getBitSize() != 4) { + return super.forState(state); + } + + int exactInt = state.getExactIntStorage(); + if ((exactInt & 0b1100) == 0b1100) { + int increment = state.getBlockId() == BlockID.LOG? 0b000 : 0b100; + return BlockState.of(BlockID.WOOD_BARK, (exactInt & 0b11) + increment).getBlock(this, layer); + } + + return super.forState(state); } @Override diff --git a/src/main/java/cn/nukkit/block/BlockWoodBark.java b/src/main/java/cn/nukkit/block/BlockWoodBark.java index 60535238234..4eae3073d07 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodBark.java +++ b/src/main/java/cn/nukkit/block/BlockWoodBark.java @@ -51,7 +51,7 @@ public BlockProperties getProperties() { @Override public String getName() { - return (isStripped()? "Stripped ": "") + super.getName(); + return (isStripped()? "Stripped ": "") + getWoodType().getEnglishName() + " Wood"; } @Override diff --git a/src/main/java/cn/nukkit/block/BlockWoodStripped.java b/src/main/java/cn/nukkit/block/BlockWoodStripped.java index f6c660b2b92..dc9f3745bb1 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodStripped.java +++ b/src/main/java/cn/nukkit/block/BlockWoodStripped.java @@ -41,7 +41,7 @@ protected BlockState getStrippedState() { @Override public String getName() { - return "Stripped " + getWoodType() + " Log"; + return "Stripped " + super.getName(); } @Override diff --git a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java index 0a555fd04c6..6583359ce46 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java +++ b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java @@ -216,7 +216,23 @@ private BlockState buildStateFromCompound(CompoundTag block) { @PowerNukkitOnly @Since("1.4.0.0-PN") public int getRuntimeId(BlockState state) { - return getRegistration(state).runtimeId; + return getRegistration(convertToNewState(state)).runtimeId; + } + + private BlockState convertToNewState(BlockState oldState) { + int exactInt; + switch (oldState.getBlockId()) { + // Check OldWoodBarkUpdater.java and https://minecraft.fandom.com/wiki/Log#Metadata + // The Only bark variant is replaced in the client side to minecraft:wood with the same wood type + case BlockID.LOG: + case BlockID.LOG2: + if (oldState.getBitSize() == 4 && ((exactInt = oldState.getExactIntStorage()) & 0b1100) == 0b1100) { + int increment = oldState.getBlockId() == BlockID.LOG? 0b000 : 0b100; + return BlockState.of(BlockID.WOOD_BARK, (exactInt & 0b11) + increment); + } + break; + } + return oldState; } private Registration getRegistration(BlockState state) { diff --git a/src/main/java/cn/nukkit/blockstate/IBlockState.java b/src/main/java/cn/nukkit/blockstate/IBlockState.java index 0b321c58faa..2c7d3e1d88c 100644 --- a/src/main/java/cn/nukkit/blockstate/IBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/IBlockState.java @@ -225,8 +225,7 @@ default String getLegacyStateId() { @Nonnull default Block getBlock() { Block block = Block.get(getBlockId()); - block.setState(this); - return block; + return block.forState(this); } /** @@ -275,8 +274,7 @@ default Block getBlock(@Nullable Level level, int x, int y, int z, int layer, bo BlockState currentState = getCurrentState(); try { if (currentState.isCachedValidationValid()) { - block.setState(currentState); - return block; + return block.forState(currentState); } } catch (Exception e) { logIBlockState.error("Unexpected error while trying to set the cached valid state to the block. State: {}, Block: {}", currentState, block, e); diff --git a/src/main/java/cn/nukkit/blockstate/IMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/IMutableBlockState.java index c785f4d41d8..9728c2718af 100644 --- a/src/main/java/cn/nukkit/blockstate/IMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/IMutableBlockState.java @@ -44,6 +44,28 @@ default void setState(IBlockState state) throws InvalidBlockStateException { throw new UnsupportedOperationException(); } } + + /** + * Replace all matching states of this block state with the same states of the given block state. + * But giving opportunity to return a new instance of this mutable state if needed. + * + *

States that doesn't exists in the other state are ignored. + *

Only properties that matches each other will be copied, for example, if this state have an age property + * going from 0 to 7 and the other have an age from 0 to 15, the age property won't change. + *

If the implementation recognizes that the given state does not match the current set of properties + * and needs an update, it may update and return a new state with a different block id and different set + * of properties that represent the expected visual state. The this change can be detected with an {@code ==} operation. + * @throws UnsupportedOperationException If the state is from a different block id and property copying isn't supported by the implementation + * @throws InvalidBlockStateException If the given storage has invalid data properties + * @param state The states that will have the properties copied. + */ + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + default IMutableBlockState forState(@Nonnull IBlockState state) throws InvalidBlockStateException { + setState(state); + return this; + } /** * @throws InvalidBlockStateException If the given storage has invalid data properties diff --git a/src/test/java/cn/nukkit/blockstate/IBlockStateTest.java b/src/test/java/cn/nukkit/blockstate/IBlockStateTest.java index 63267c0cb4c..0c03056ed99 100644 --- a/src/test/java/cn/nukkit/blockstate/IBlockStateTest.java +++ b/src/test/java/cn/nukkit/blockstate/IBlockStateTest.java @@ -1,6 +1,7 @@ package cn.nukkit.blockstate; import cn.nukkit.block.*; +import cn.nukkit.blockproperty.value.WoodType; import cn.nukkit.blockstate.exception.InvalidBlockStateException; import cn.nukkit.math.BlockFace; import cn.nukkit.test.LogLevelAdjuster; @@ -35,6 +36,16 @@ static void afterAll() { logLevelAdjuster.restoreLevels(); } + @Test + void githubIssue1122() { + BlockState state = BlockState.of(17, 13); + assertEquals(BlockState.of(WOOD_BARK).withProperty(WoodType.PROPERTY, WoodType.SPRUCE).getRuntimeId(), + state.getRuntimeId()); + + Block bark = state.getBlock(); + assertEquals(BlockWoodBark.class, bark.getClass()); + } + @Test void getBlock() { Block block = BlockState.of(PLANKS).getBlock(); From 6bba7c5057c0ece1e79fe9198512b9ea3e464c19 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 11 Jun 2021 17:41:53 -0300 Subject: [PATCH 044/394] Bump the version to 1.5.1.0-PN-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ed3945b41af..d327a8f61cd 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.5.0.1-PN-SNAPSHOT + 1.5.1.0-PN-SNAPSHOT 2020 From 369db0ea7db988dcc1f3501dd5b5232faa27f3aa Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 11 Jun 2021 17:57:59 -0300 Subject: [PATCH 045/394] Dismount entities before teleporting --- src/main/java/cn/nukkit/entity/Entity.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 7a2f0b4b5d8..aa4d4219295 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -2495,6 +2495,11 @@ public boolean teleport(Location location, PlayerTeleportEvent.TeleportCause cau to = ev.getTo(); } + Entity riding = getRiding(); + if (riding != null && !riding.dismountEntity(this)) { + return false; + } + this.ySize = 0; this.setMotion(this.temporalVector.setComponents(0, 0, 0)); From 0b6a366eac39f421847abeea65328e406a5e8b3a Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 11 Jun 2021 18:11:32 -0300 Subject: [PATCH 046/394] Add #1120 #1122 #1132 to the changelog --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a677b00c1d2..9938118563c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 with an added upstream's major version number in front of the major version, so we have a better distinction from Nukkit 1.X and 2.X. -## [Unreleased 1.5.0.1-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/22?closed=1)) +## [Unreleased 1.5.1.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/22?closed=1)) Click the link above to see the future. ### Fixes - [#1119] `TickSyncPacket` was not registered +- [#1120] Entities sometimes gets invisible for some players +- [#1122] Backward compatibility with plugins setting full bark logs with 17:13 +- [#1132] You don't dismount the vehicle when you teleport, causing you to glitch ## [1.5.0.0-PN] - 2021-06-11 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/26?closed=1)) This was quick! This new version add protocol support for Minecraft `1.17.0` as if it was `1.16.221`. @@ -841,3 +844,5 @@ Fixes several anvil issues. [#960]: https://github.com/PowerNukkit/PowerNukkit/issues/960 [#990]: https://github.com/PowerNukkit/PowerNukkit/issues/990 [#1119]: https://github.com/PowerNukkit/PowerNukkit/issues/1119 +[#1120]: https://github.com/PowerNukkit/PowerNukkit/issues/1120 +[#1122]: https://github.com/PowerNukkit/PowerNukkit/issues/1122 From 72849b53546bbabf106fd5c566033b3d79cc50c2 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 11 Jun 2021 18:12:05 -0300 Subject: [PATCH 047/394] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9938118563c..64f2220d4bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -846,3 +846,4 @@ Fixes several anvil issues. [#1119]: https://github.com/PowerNukkit/PowerNukkit/issues/1119 [#1120]: https://github.com/PowerNukkit/PowerNukkit/issues/1120 [#1122]: https://github.com/PowerNukkit/PowerNukkit/issues/1122 +[#1132]: https://github.com/PowerNukkit/PowerNukkit/issues/1132 From 2b07d9b8d7f25ca9fc3c8773ac0db33b301be3fc Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 31 May 2021 19:25:37 -0300 Subject: [PATCH 048/394] Update guava to 30.1.1 and SnakeYAML to 1.28 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d327a8f61cd..c077d19d2bd 100644 --- a/pom.xml +++ b/pom.xml @@ -130,7 +130,7 @@ com.google.guava guava - 29.0-jre + 30.1.1-jre compile @@ -148,7 +148,7 @@ org.yaml snakeyaml - 1.26 + 1.28 compile From ea50a8f4312ffa4c0f24aeb4181c6799a9402bc1 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 11 Jun 2021 19:48:21 -0300 Subject: [PATCH 049/394] Add #1107 to the changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64f2220d4bf..f89f460d3fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ Nukkit 1.X and 2.X. ## [Unreleased 1.5.1.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/22?closed=1)) Click the link above to see the future. +### Changed +- [#1107] Guava version from `29.0` to `30.1.1` +- [#1107] SnakeYAML version from `1.26` to `1.28` + ### Fixes - [#1119] `TickSyncPacket` was not registered - [#1120] Entities sometimes gets invisible for some players @@ -843,6 +847,7 @@ Fixes several anvil issues. [#959]: https://github.com/PowerNukkit/PowerNukkit/issues/959 [#960]: https://github.com/PowerNukkit/PowerNukkit/issues/960 [#990]: https://github.com/PowerNukkit/PowerNukkit/issues/990 +[#1107]: https://github.com/PowerNukkit/PowerNukkit/issues/1107 [#1119]: https://github.com/PowerNukkit/PowerNukkit/issues/1119 [#1120]: https://github.com/PowerNukkit/PowerNukkit/issues/1120 [#1122]: https://github.com/PowerNukkit/PowerNukkit/issues/1122 From 4bc2b154b6681558e91a5b4e7da0088b35be5398 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 11 Jun 2021 20:01:46 -0300 Subject: [PATCH 050/394] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f89f460d3fa..d9c35f83de1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ Click the link above to see the future. - [#1120] Entities sometimes gets invisible for some players - [#1122] Backward compatibility with plugins setting full bark logs with 17:13 - [#1132] You don't dismount the vehicle when you teleport, causing you to glitch +- [#1103] The output message of the `/enchant` command ## [1.5.0.0-PN] - 2021-06-11 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/26?closed=1)) This was quick! This new version add protocol support for Minecraft `1.17.0` as if it was `1.16.221`. @@ -847,6 +848,7 @@ Fixes several anvil issues. [#959]: https://github.com/PowerNukkit/PowerNukkit/issues/959 [#960]: https://github.com/PowerNukkit/PowerNukkit/issues/960 [#990]: https://github.com/PowerNukkit/PowerNukkit/issues/990 +[#1103]: https://github.com/PowerNukkit/PowerNukkit/issues/1103 [#1107]: https://github.com/PowerNukkit/PowerNukkit/issues/1107 [#1119]: https://github.com/PowerNukkit/PowerNukkit/issues/1119 [#1120]: https://github.com/PowerNukkit/PowerNukkit/issues/1120 From f09dbde339a75d6d69a72b4b3dba62bd1c737fa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lobo=20Metal=C3=BArgico?= <43734867+LoboMetalurgico@users.noreply.github.com> Date: Fri, 11 Jun 2021 20:32:39 -0300 Subject: [PATCH 051/394] Add #1100 in changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9c35f83de1..d613781a6d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ Click the link above to see the future. - [#1122] Backward compatibility with plugins setting full bark logs with 17:13 - [#1132] You don't dismount the vehicle when you teleport, causing you to glitch - [#1103] The output message of the `/enchant` command +- [#1100] Abrupt Time Change ## [1.5.0.0-PN] - 2021-06-11 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/26?closed=1)) This was quick! This new version add protocol support for Minecraft `1.17.0` as if it was `1.16.221`. @@ -848,6 +849,7 @@ Fixes several anvil issues. [#959]: https://github.com/PowerNukkit/PowerNukkit/issues/959 [#960]: https://github.com/PowerNukkit/PowerNukkit/issues/960 [#990]: https://github.com/PowerNukkit/PowerNukkit/issues/990 +[#1100]: https://github.com/PowerNukkit/PowerNukkit/issues/1100 [#1103]: https://github.com/PowerNukkit/PowerNukkit/issues/1103 [#1107]: https://github.com/PowerNukkit/PowerNukkit/issues/1107 [#1119]: https://github.com/PowerNukkit/PowerNukkit/issues/1119 From 9d2474808e21d9b7fece289985c54b2a3928922a Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 11 Jun 2021 20:51:22 -0300 Subject: [PATCH 052/394] Fix #1130 soul_campfire and end_crystal rendering in inventory. Update translations. --- src/main/resources/lang | 2 +- src/main/resources/runtime_item_ids.json | 74 ++++++++++++------------ 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/src/main/resources/lang b/src/main/resources/lang index feb3be3d1b1..395535c064d 160000 --- a/src/main/resources/lang +++ b/src/main/resources/lang @@ -1 +1 @@ -Subproject commit feb3be3d1b17b23171c1d28d977aedbbdccef326 +Subproject commit 395535c064da0cfab0b2adf85a7273c60e42a25a diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index 484db1f21ed..fd552dabe10 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -3691,7 +3691,7 @@ }, { "name": "minecraft:spawn_egg", - "id": 629, + "id": 628, "oldId": 383 }, { @@ -4503,180 +4503,180 @@ }, { "name": "minecraft:honeycomb", - "id": 591, + "id": 590, "oldId": 736 }, { "name": "minecraft:honey_bottle", - "id": 592, + "id": 591, "oldId": 737 }, { "name": "minecraft:camera", - "id": 593, + "id": 592, "oldId": 498 }, { "name": "minecraft:compound", - "id": 594, + "id": 593, "oldId": 499 }, { "name": "minecraft:ice_bomb", - "id": 595, + "id": 594, "oldId": 453 }, { "name": "minecraft:bleach", - "id": 596, + "id": 595, "oldId": 451 }, { "name": "minecraft:rapid_fertilizer", - "id": 597, + "id": 596, "oldId": 449 }, { "name": "minecraft:balloon", - "id": 598, + "id": 597, "oldId": 448 }, { "name": "minecraft:medicine", - "id": 599, + "id": 598, "oldId": 447 }, { "name": "minecraft:sparkler", - "id": 600, + "id": 599, "oldId": 442 }, { "name": "minecraft:lodestone_compass", - "id": 601, + "id": 600, "oldId": 741 }, { "name": "minecraft:netherite_ingot", - "id": 602, + "id": 601, "oldId": 742 }, { "name": "minecraft:netherite_sword", - "id": 603, + "id": 602, "oldId": 743 }, { "name": "minecraft:netherite_shovel", - "id": 604, + "id": 603, "oldId": 744 }, { "name": "minecraft:netherite_pickaxe", - "id": 605, + "id": 604, "oldId": 745 }, { "name": "minecraft:netherite_axe", - "id": 606, + "id": 605, "oldId": 746 }, { "name": "minecraft:netherite_hoe", - "id": 607, + "id": 606, "oldId": 747 }, { "name": "minecraft:netherite_helmet", - "id": 608, + "id": 607, "oldId": 748 }, { "name": "minecraft:netherite_chestplate", - "id": 609, + "id": 608, "oldId": 749 }, { "name": "minecraft:netherite_leggings", - "id": 610, + "id": 609, "oldId": 750 }, { "name": "minecraft:netherite_boots", - "id": 611, + "id": 610, "oldId": 751 }, { "name": "minecraft:netherite_scrap", - "id": 612, + "id": 611, "oldId": 752 }, { "name": "minecraft:crimson_sign", - "id": 613, + "id": 612, "oldId": 753 }, { "name": "minecraft:warped_sign", - "id": 614, + "id": 613, "oldId": 754 }, { "name": "minecraft:crimson_door", - "id": 615, + "id": 614, "oldId": 755 }, { "name": "minecraft:warped_door", - "id": 616, + "id": 615, "oldId": 756 }, { "name": "minecraft:warped_fungus_on_a_stick", - "id": 617, + "id": 616, "oldId": 757 }, { "name": "minecraft:chain", - "id": 618, + "id": 617, "oldId": 758 }, { "name": "minecraft:music_disc_pigstep", - "id": 619, + "id": 618, "oldId": 759 }, { "name": "minecraft:nether_sprouts", - "id": 620, + "id": 619, "oldId": 760 }, { "name": "minecraft:soul_campfire", - "id": 621, + "id": 620, "oldId": 801 }, { "name": "minecraft:boat", - "id": 626, + "id": 625, "oldId": 333, "deprecated": true }, { "name": "minecraft:dye", - "id": 627, + "id": 626, "oldId": 351, "deprecated": true }, { "name": "minecraft:banner_pattern", - "id": 628, + "id": 627, "oldId": 434, "deprecated": true }, { "name": "minecraft:end_crystal", - "id": 630, + "id": 629, "oldId": 426 } -] +] \ No newline at end of file From 795a1aacde3d8ba8fb2ab13586f7ac555b58d751 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 11 Jun 2021 20:59:06 -0300 Subject: [PATCH 053/394] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d613781a6d3..96216f7a887 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ Click the link above to see the future. ### Changed - [#1107] Guava version from `29.0` to `30.1.1` - [#1107] SnakeYAML version from `1.26` to `1.28` +- [#1134] Update the Chinese, Russian, and Turkish translations. Thank you for your contributions! ### Fixes - [#1119] `TickSyncPacket` was not registered @@ -20,6 +21,7 @@ Click the link above to see the future. - [#1132] You don't dismount the vehicle when you teleport, causing you to glitch - [#1103] The output message of the `/enchant` command - [#1100] Abrupt Time Change +- [#1130] Soul Campfire and End Crystal were rendering as other items in the inventory ## [1.5.0.0-PN] - 2021-06-11 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/26?closed=1)) This was quick! This new version add protocol support for Minecraft `1.17.0` as if it was `1.16.221`. @@ -855,4 +857,6 @@ Fixes several anvil issues. [#1119]: https://github.com/PowerNukkit/PowerNukkit/issues/1119 [#1120]: https://github.com/PowerNukkit/PowerNukkit/issues/1120 [#1122]: https://github.com/PowerNukkit/PowerNukkit/issues/1122 +[#1130]: https://github.com/PowerNukkit/PowerNukkit/issues/1130 [#1132]: https://github.com/PowerNukkit/PowerNukkit/issues/1132 +[#1134]: https://github.com/PowerNukkit/PowerNukkit/issues/1134 From 5d849cd63e4309efe992a359f474468d9aec4cf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lobo=20Metal=C3=BArgico?= <43734867+LoboMetalurgico@users.noreply.github.com> Date: Fri, 11 Jun 2021 21:36:13 -0300 Subject: [PATCH 054/394] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96216f7a887..68a6811393a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ Click the link above to see the future. - [#1103] The output message of the `/enchant` command - [#1100] Abrupt Time Change - [#1130] Soul Campfire and End Crystal were rendering as other items in the inventory +- [#702] Burning arrow and rain will make a lot of particles ## [1.5.0.0-PN] - 2021-06-11 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/26?closed=1)) This was quick! This new version add protocol support for Minecraft `1.17.0` as if it was `1.16.221`. @@ -838,6 +839,7 @@ Fixes several anvil issues. [#469]: https://github.com/PowerNukkit/PowerNukkit/issues/469 [#475]: https://github.com/PowerNukkit/PowerNukkit/issues/475 [#544]: https://github.com/PowerNukkit/PowerNukkit/issues/544 +[#702]: https://github.com/PowerNukkit/PowerNukkit/issues/702 [#765]: https://github.com/PowerNukkit/PowerNukkit/issues/765 [#766]: https://github.com/PowerNukkit/PowerNukkit/issues/766 [#770]: https://github.com/PowerNukkit/PowerNukkit/issues/770 From 815c00034947ec92fe629a143b261bfd9f98b588 Mon Sep 17 00:00:00 2001 From: Iware Date: Sat, 12 Jun 2021 09:37:44 +0500 Subject: [PATCH 055/394] Fix burning mobs and setOnFire() method --- src/main/java/cn/nukkit/Player.java | 9 ++++----- src/main/java/cn/nukkit/entity/Entity.java | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index cb6a8735038..8695c6f8f8c 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -3836,10 +3836,13 @@ public void onCompletion(Server server) { entityDamageByEntityEvent.setCancelled(); } - if (target instanceof EntityLiving) { ((EntityLiving) target).preAttack(this); } + + for (Enchantment enchantment : item.getEnchantments()) { + enchantment.doPostAttack(this, target); + } try { if (!target.attack(entityDamageByEntityEvent)) { @@ -3854,10 +3857,6 @@ public void onCompletion(Server server) { } } - for (Enchantment enchantment : item.getEnchantments()) { - enchantment.doPostAttack(this, target); - } - if (item.isTool() && this.isSurvival()) { if (item.useOn(target) && item.getDamage() >= item.getMaxDurability()) { level.addSound(this, Sound.RANDOM_BREAK); diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index aa4d4219295..d0e5117918c 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -1739,7 +1739,7 @@ public final void scheduleUpdate() { } public boolean isOnFire() { - return this.fireTicks > 0; + return !this.fireProof && this.fireTicks > 0; } public void setOnFire(int seconds) { From 5fae8fdb633214b2541a261a15681a3d3324aacb Mon Sep 17 00:00:00 2001 From: Iware Date: Sat, 12 Jun 2021 11:05:09 +0500 Subject: [PATCH 056/394] Update --- src/main/java/cn/nukkit/Player.java | 6 +++++- src/main/java/cn/nukkit/item/enchantment/Enchantment.java | 4 ++++ .../cn/nukkit/item/enchantment/EnchantmentFireAspect.java | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 8695c6f8f8c..e2d18ca6597 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -3841,7 +3841,7 @@ public void onCompletion(Server server) { } for (Enchantment enchantment : item.getEnchantments()) { - enchantment.doPostAttack(this, target); + enchantment.doPreAttack(this, target); } try { @@ -3856,6 +3856,10 @@ public void onCompletion(Server server) { ((EntityLiving) target).postAttack(this); } } + + for (Enchantment enchantment : item.getEnchantments()) { + enchantment.doPostAttack(this, target); + } if (item.isTool() && this.isSurvival()) { if (item.useOn(target) && item.getDamage() >= item.getMaxDurability()) { diff --git a/src/main/java/cn/nukkit/item/enchantment/Enchantment.java b/src/main/java/cn/nukkit/item/enchantment/Enchantment.java index ade48707aaa..ed5f86d827f 100644 --- a/src/main/java/cn/nukkit/item/enchantment/Enchantment.java +++ b/src/main/java/cn/nukkit/item/enchantment/Enchantment.java @@ -363,6 +363,10 @@ public float getProtectionFactor(EntityDamageEvent event) { public double getDamageBonus(Entity entity) { return 0; } + + public void doPreAttack(Entity attacker, Entity entity) { + + } public void doPostAttack(Entity attacker, Entity entity) { diff --git a/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java b/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java index 2ffa06f89fc..cf1985468b3 100644 --- a/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java +++ b/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java @@ -28,7 +28,7 @@ public int getMaxLevel() { } @Override - public void doPostAttack(Entity attacker, Entity entity) { + public void doPreAttack(Entity attacker, Entity entity) { int duration = Math.max(entity.fireTicks / 20, getLevel() * 4); EntityCombustByEntityEvent ev = new EntityCombustByEntityEvent(attacker, entity, duration); From d67b5c9a36103843c502d0630f1a0eb76af93483 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 12 Jun 2021 18:51:24 -0300 Subject: [PATCH 057/394] #1135 Add enchantment side effect API. Fix #625 --- src/main/java/cn/nukkit/Player.java | 13 ++-- src/main/java/cn/nukkit/entity/Entity.java | 8 ++- .../event/entity/EntityDamageEvent.java | 61 ++++++++++++++++++- src/main/java/cn/nukkit/item/Item.java | 13 ++++ .../nukkit/item/enchantment/Enchantment.java | 12 ++-- .../enchantment/EnchantmentFireAspect.java | 28 ++++++--- .../enchantment/sideeffect/SideEffect.java | 32 ++++++++++ .../sideeffect/SideEffectCombust.java | 55 +++++++++++++++++ 8 files changed, 199 insertions(+), 23 deletions(-) create mode 100644 src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java create mode 100644 src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index e2d18ca6597..5ed954cf68b 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -43,6 +43,7 @@ import cn.nukkit.inventory.transaction.data.UseItemOnEntityData; import cn.nukkit.item.*; import cn.nukkit.item.enchantment.Enchantment; +import cn.nukkit.item.enchantment.sideeffect.SideEffect; import cn.nukkit.lang.TextContainer; import cn.nukkit.lang.TranslationContainer; import cn.nukkit.level.*; @@ -3831,18 +3832,16 @@ public void onCompletion(Server server) { } EntityDamageByEntityEvent entityDamageByEntityEvent = new EntityDamageByEntityEvent(this, target, DamageCause.ENTITY_ATTACK, damage); + entityDamageByEntityEvent.setSideEffects(item.getAttackSideEffects(this, target)); if (this.isSpectator()) entityDamageByEntityEvent.setCancelled(); if ((target instanceof Player) && !this.level.getGameRules().getBoolean(GameRule.PVP)) { entityDamageByEntityEvent.setCancelled(); } + if (target instanceof EntityLiving) { ((EntityLiving) target).preAttack(this); } - - for (Enchantment enchantment : item.getEnchantments()) { - enchantment.doPreAttack(this, target); - } try { if (!target.attack(entityDamageByEntityEvent)) { @@ -3856,7 +3855,11 @@ public void onCompletion(Server server) { ((EntityLiving) target).postAttack(this); } } - + + for (SideEffect sideEffect : entityDamageByEntityEvent.getSideEffects()) { + sideEffect.doPostAttack(this, entityDamageByEntityEvent, target); + } + for (Enchantment enchantment : item.getEnchantments()) { enchantment.doPostAttack(this, target); } diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index d0e5117918c..638f053b7fa 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -20,6 +20,7 @@ import cn.nukkit.event.player.PlayerTeleportEvent; import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; +import cn.nukkit.item.enchantment.sideeffect.SideEffect; import cn.nukkit.level.*; import cn.nukkit.level.format.FullChunk; import cn.nukkit.math.*; @@ -1221,7 +1222,10 @@ public boolean attack(EntityDamageEvent source) { } } } - + Entity attacker = source instanceof EntityDamageByEntityEvent? ((EntityDamageByEntityEvent) source).getDamager() : null; + for (SideEffect sideEffect : source.getSideEffects()) { + sideEffect.doPreHealthChange(this, source, attacker); + } setHealth(newHealth); return true; } @@ -1739,7 +1743,7 @@ public final void scheduleUpdate() { } public boolean isOnFire() { - return !this.fireProof && this.fireTicks > 0; + return this.fireTicks > 0; } public void setOnFire(int seconds) { diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java index 755555c8f32..31c76b4b997 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java @@ -1,14 +1,19 @@ package cn.nukkit.event.entity; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; +import cn.nukkit.item.enchantment.sideeffect.SideEffect; import cn.nukkit.potion.Effect; import cn.nukkit.utils.EventException; import com.google.common.collect.ImmutableMap; -import java.util.EnumMap; -import java.util.Map; +import javax.annotation.Nonnull; +import java.util.*; +import java.util.function.Function; +import java.util.stream.Stream; /** * @author MagicDroidX (Nukkit Project) @@ -26,6 +31,8 @@ public static HandlerList getHandlers() { private final Map modifiers; private final Map originals; + private SideEffect[] sideEffects = SideEffect.EMPTY_ARRAY; + public EntityDamageEvent(Entity entity, DamageCause cause, float damage) { this(entity, cause, new EnumMap(DamageModifier.class) { { @@ -109,6 +116,56 @@ public void setAttackCooldown(int attackCooldown) { this.attackCooldown = attackCooldown; } + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public SideEffect[] getSideEffects() { + SideEffect[] sideEffects = this.sideEffects; + if (sideEffects.length == 0) { + return sideEffects; + } + return Arrays.stream(sideEffects) + .map(SideEffect::clone) + .toArray(SideEffect[]::new) + ; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setSideEffects(@Nonnull SideEffect... sideEffects) { + this.sideEffects = Arrays.stream(sideEffects) + .filter(Objects::nonNull) + .map(SideEffect::clone) + .toArray(SideEffect[]::new) + ; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setSideEffects(@Nonnull Collection sideEffects) { + this.setSideEffects(sideEffects.toArray(SideEffect.EMPTY_ARRAY)); + } + + @PowerNukkitOnly + @Since("FUTURE") + public void addSideEffects(@Nonnull SideEffect... sideEffects) { + this.sideEffects = Stream + .of( + Arrays.stream(this.sideEffects), + Arrays.stream(sideEffects) + .filter(Objects::nonNull) + .map(SideEffect::clone) + ) + .flatMap(Function.identity()) + .toArray(SideEffect[]::new); + } + + @PowerNukkitOnly + @Since("FUTURE") + public void addSideEffects(@Nonnull Collection sideEffects) { + this.addSideEffects(sideEffects.toArray(SideEffect.EMPTY_ARRAY)); + } + public boolean canBeReducedByArmor() { switch (this.cause) { case FIRE_TICK: diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index e1e97f434e7..fd368782300 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -14,6 +14,7 @@ import cn.nukkit.entity.Entity; import cn.nukkit.inventory.Fuel; import cn.nukkit.item.enchantment.Enchantment; +import cn.nukkit.item.enchantment.sideeffect.SideEffect; import cn.nukkit.level.Level; import cn.nukkit.math.BlockFace; import cn.nukkit.math.Vector3; @@ -28,6 +29,7 @@ import lombok.SneakyThrows; import lombok.extern.log4j.Log4j2; +import javax.annotation.Nonnull; import java.io.IOException; import java.io.InputStream; import java.io.UncheckedIOException; @@ -990,6 +992,17 @@ public Enchantment[] getEnchantments() { return enchantments.toArray(Enchantment.EMPTY_ARRAY); } + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public SideEffect[] getAttackSideEffects(@Nonnull Entity attacker, @Nonnull Entity entity) { + return Arrays.stream(getEnchantments()) + .flatMap(enchantment -> Arrays.stream(enchantment.getAttackSideEffects(attacker, entity))) + .filter(Objects::nonNull) + .toArray(SideEffect[]::new) + ; + } + @Since("1.4.0.0-PN") public int getRepairCost() { if (this.hasCompoundTag()) { diff --git a/src/main/java/cn/nukkit/item/enchantment/Enchantment.java b/src/main/java/cn/nukkit/item/enchantment/Enchantment.java index ed5f86d827f..1c3ba56e748 100644 --- a/src/main/java/cn/nukkit/item/enchantment/Enchantment.java +++ b/src/main/java/cn/nukkit/item/enchantment/Enchantment.java @@ -21,6 +21,7 @@ import cn.nukkit.item.enchantment.loot.EnchantmentLootFishing; import cn.nukkit.item.enchantment.loot.EnchantmentLootWeapon; import cn.nukkit.item.enchantment.protection.*; +import cn.nukkit.item.enchantment.sideeffect.SideEffect; import cn.nukkit.item.enchantment.trident.EnchantmentTridentChanneling; import cn.nukkit.item.enchantment.trident.EnchantmentTridentImpaling; import cn.nukkit.item.enchantment.trident.EnchantmentTridentLoyalty; @@ -363,10 +364,6 @@ public float getProtectionFactor(EntityDamageEvent event) { public double getDamageBonus(Entity entity) { return 0; } - - public void doPreAttack(Entity attacker, Entity entity) { - - } public void doPostAttack(Entity attacker, Entity entity) { @@ -422,6 +419,13 @@ public boolean isMajor() { return false; } + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public SideEffect[] getAttackSideEffects(@Nonnull Entity attacker, @Nonnull Entity entity) { + return SideEffect.EMPTY_ARRAY; + } + @Override protected Enchantment clone() { try { diff --git a/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java b/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java index cf1985468b3..95fee4e1f01 100644 --- a/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java +++ b/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java @@ -1,8 +1,13 @@ package cn.nukkit.item.enchantment; -import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; -import cn.nukkit.event.entity.EntityCombustByEntityEvent; +import cn.nukkit.item.enchantment.sideeffect.SideEffect; +import cn.nukkit.item.enchantment.sideeffect.SideEffectCombust; + +import javax.annotation.Nonnull; /** * @author MagicDroidX (Nukkit Project) @@ -27,15 +32,18 @@ public int getMaxLevel() { return 2; } + @PowerNukkitDifference(since = "FUTURE", info = "The entity combustion code was moved to SideEffectCombust, obtained by getAttackSideEffects(Entity, Entity)") @Override - public void doPreAttack(Entity attacker, Entity entity) { - int duration = Math.max(entity.fireTicks / 20, getLevel() * 4); - - EntityCombustByEntityEvent ev = new EntityCombustByEntityEvent(attacker, entity, duration); - Server.getInstance().getPluginManager().callEvent(ev); + public void doPostAttack(Entity attacker, Entity entity) { + super.doPostAttack(attacker, entity); + } - if (!ev.isCancelled()) { - entity.setOnFire(ev.getDuration()); - } + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public SideEffect[] getAttackSideEffects(@Nonnull Entity attacker, @Nonnull Entity entity) { + return new SideEffect[]{ + new SideEffectCombust(Math.max(entity.fireTicks / 20, getLevel() * 4)) + }; } } diff --git a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java new file mode 100644 index 00000000000..0ee3f825d3e --- /dev/null +++ b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java @@ -0,0 +1,32 @@ +package cn.nukkit.item.enchantment.sideeffect; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.entity.Entity; +import cn.nukkit.event.entity.EntityDamageEvent; + +import javax.annotation.Nonnull; +import javax.annotation.Nullable; + +@PowerNukkitOnly +@Since("FUTURE") +public interface SideEffect extends Cloneable { + SideEffect[] EMPTY_ARRAY = new SideEffect[0]; + + @PowerNukkitOnly + @Since("FUTURE") + default void doPreHealthChange(@Nonnull Entity entity, @Nonnull EntityDamageEvent source, @Nullable Entity attacker) { + // Does nothing + } + + @PowerNukkitOnly + @Since("FUTURE") + default void doPostAttack(@Nonnull Entity entity, @Nonnull EntityDamageEvent source, @Nullable Entity attacker) { + // Does nothing + } + + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + SideEffect clone(); +} diff --git a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java new file mode 100644 index 00000000000..62cb07dc050 --- /dev/null +++ b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java @@ -0,0 +1,55 @@ +package cn.nukkit.item.enchantment.sideeffect; + +import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.entity.Entity; +import cn.nukkit.event.entity.EntityCombustByEntityEvent; +import cn.nukkit.event.entity.EntityDamageEvent; +import lombok.SneakyThrows; + +import javax.annotation.Nonnull; +import javax.annotation.Nullable; + +@PowerNukkitOnly +@Since("FUTURE") +public class SideEffectCombust implements SideEffect { + private int duration; + + @PowerNukkitOnly + @Since("FUTURE") + public SideEffectCombust(int duration) { + this.duration = duration; + } + + @Since("FUTURE") + @PowerNukkitOnly + @Override + public void doPreHealthChange(@Nonnull Entity entity, @Nonnull EntityDamageEvent event, @Nullable Entity attacker) { + EntityCombustByEntityEvent ev = new EntityCombustByEntityEvent(attacker, entity, duration); + Server.getInstance().getPluginManager().callEvent(ev); + + if (!ev.isCancelled()) { + entity.setOnFire(ev.getDuration()); + } + } + + @Since("FUTURE") + @PowerNukkitOnly + public int getDuration() { + return duration; + } + + @Since("FUTURE") + @PowerNukkitOnly + public void setDuration(int duration) { + this.duration = duration; + } + + @SneakyThrows + @Override + @Nonnull + public SideEffect clone() { + return (SideEffect) super.clone(); + } +} From 8f0bffa0edfc6c0aa2dc19a45bb651fc7b6f6662 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 12 Jun 2021 20:15:33 -0300 Subject: [PATCH 058/394] #1138 Fixes backward compatibility with generators. Some generators were setting blocks outside the chunk range, Nukkit truncate the bits in that situation, PowerNukkit were throwing exceptions. --- .../level/format/anvil/util/BlockStorage.java | 11 ++++++ .../level/format/generic/BaseChunk.java | 4 +- .../level/format/generic/BaseChunkTest.java | 38 ++++++++++++++++++- 3 files changed, 50 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java b/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java index 853988b3b94..a4dc870e396 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java +++ b/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java @@ -79,11 +79,22 @@ public BlockStorage() { } private static int getIndex(int x, int y, int z) { + checkArg(x, "x"); + checkArg(x, "y"); + checkArg(x, "z"); int index = (x << 8) + (z << 4) + y; // XZY = Bedrock format Preconditions.checkArgument(index >= 0 && index < SECTION_SIZE, "Invalid index"); return index; } + private static void checkArg(int pos, String arg) { + try { + Preconditions.checkElementIndex(pos, 16, arg); + } catch (IndexOutOfBoundsException e) { + throw new IllegalArgumentException(e); + } + } + @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") @Nonnegative diff --git a/src/main/java/cn/nukkit/level/format/generic/BaseChunk.java b/src/main/java/cn/nukkit/level/format/generic/BaseChunk.java index a9814bccf86..8b4821235d3 100644 --- a/src/main/java/cn/nukkit/level/format/generic/BaseChunk.java +++ b/src/main/java/cn/nukkit/level/format/generic/BaseChunk.java @@ -395,12 +395,12 @@ public LevelProvider getProvider() { @Since("1.4.0.0-PN") @Override public boolean setBlockStateAt(int x, int y, int z, int layer, BlockState state) { - return setBlockStateAtLayer(x, y, z, layer, state); + return setBlockStateAtLayer(x & 0xF, y, z & 0XF, layer, state); } @Override public BlockState getBlockStateAt(int x, int y, int z, int layer) { - return getBlockState(x, y, z, layer); + return getBlockState(x & 0xF, y, z & 0xF, layer); } @Override diff --git a/src/test/java/cn/nukkit/level/format/generic/BaseChunkTest.java b/src/test/java/cn/nukkit/level/format/generic/BaseChunkTest.java index 80cd680b13d..6a9b0bfe79f 100644 --- a/src/test/java/cn/nukkit/level/format/generic/BaseChunkTest.java +++ b/src/test/java/cn/nukkit/level/format/generic/BaseChunkTest.java @@ -36,7 +36,43 @@ void setup() { chunk.setProvider(anvil); chunk.providerClass = Anvil.class; } - + + /** + * Cloudburst Nukkit don't validate xyz, instead, it uses only the 4 least significant bits. We must do the same. + */ + @Test + void github1138() { + chunk.setBlockAt(0x10, 0, 0, BlockID.BEDROCK); + assertEquals(BlockID.BEDROCK, chunk.getBlockId(0, 0, 0)); + chunk.setBlockAt(0, 0, 0, BlockID.AIR); + assertEquals(BlockID.AIR, chunk.getBlockId(0, 0, 0)); + + chunk.setBlockAt(0, 0x10, 0, BlockID.BEDROCK); + assertEquals(BlockID.BEDROCK, chunk.getBlockId(0, 0x10, 0)); + chunk.setBlockAt(0, 0x10, 0, BlockID.AIR); + assertEquals(BlockID.AIR, chunk.getBlockId(0, 0x10, 0)); + + chunk.setBlockAt(0, 0, 0x10, BlockID.BEDROCK); + assertEquals(BlockID.BEDROCK, chunk.getBlockId(0, 0, 0)); + chunk.setBlockAt(0, 0, 0, BlockID.AIR); + assertEquals(BlockID.AIR, chunk.getBlockId(0, 0, 0)); + + chunk.setBlockAt(0x13, 0, 0, BlockID.BEDROCK); + assertEquals(BlockID.BEDROCK, chunk.getBlockId(3, 0, 0)); + chunk.setBlockAt(3, 0, 0, BlockID.AIR); + assertEquals(BlockID.AIR, chunk.getBlockId(3, 0, 0)); + + chunk.setBlockAt(0, 0x13, 0, BlockID.BEDROCK); + assertEquals(BlockID.BEDROCK, chunk.getBlockId(0, 0x13, 0)); + chunk.setBlockAt(0, 0x13, 0, BlockID.AIR); + assertEquals(BlockID.AIR, chunk.getBlockId(0, 0x13, 0)); + + chunk.setBlockAt(0, 0, 0x13, BlockID.BEDROCK); + assertEquals(BlockID.BEDROCK, chunk.getBlockId(0, 0, 3)); + chunk.setBlockAt(0, 0, 3, BlockID.AIR); + assertEquals(BlockID.AIR, chunk.getBlockId(0, 0, 3)); + } + @Test void isBlockChangeAllowed() { BlockState allow = BlockState.of(BlockID.ALLOW); From 635479aa6fe44400180b53a4b136ff9cf94d9ca1 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 12 Jun 2021 20:39:27 -0300 Subject: [PATCH 059/394] #1135 Improves addSideEffects() --- .../nukkit/event/entity/EntityDamageEvent.java | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java index 31c76b4b997..8467520fafd 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java @@ -9,10 +9,10 @@ import cn.nukkit.potion.Effect; import cn.nukkit.utils.EventException; import com.google.common.collect.ImmutableMap; +import lombok.var; import javax.annotation.Nonnull; import java.util.*; -import java.util.function.Function; import java.util.stream.Stream; /** @@ -149,15 +149,11 @@ public void setSideEffects(@Nonnull Collection sideEffects) { @PowerNukkitOnly @Since("FUTURE") public void addSideEffects(@Nonnull SideEffect... sideEffects) { - this.sideEffects = Stream - .of( - Arrays.stream(this.sideEffects), - Arrays.stream(sideEffects) - .filter(Objects::nonNull) - .map(SideEffect::clone) - ) - .flatMap(Function.identity()) - .toArray(SideEffect[]::new); + var safeStream = Arrays.stream(sideEffects) + .filter(Objects::nonNull) + .map(SideEffect::clone); + + this.sideEffects = Stream.concat(Arrays.stream(this.sideEffects), safeStream).toArray(SideEffect[]::new); } @PowerNukkitOnly From 30de330e8cc64e84a7304418bf18e46f4970f8c1 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 12 Jun 2021 20:48:20 -0300 Subject: [PATCH 060/394] Add #625 and #1139 to the changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68a6811393a..9e6cc5ce3d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,7 +22,9 @@ Click the link above to see the future. - [#1103] The output message of the `/enchant` command - [#1100] Abrupt Time Change - [#1130] Soul Campfire and End Crystal were rendering as other items in the inventory +- [#1139] Backward compatibility with some custom world generators - [#702] Burning arrow and rain will make a lot of particles +- [#625] If you instant kill a mob with fire aspect enchant tool, it will not give fire aspect drops ## [1.5.0.0-PN] - 2021-06-11 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/26?closed=1)) This was quick! This new version add protocol support for Minecraft `1.17.0` as if it was `1.16.221`. @@ -839,6 +841,7 @@ Fixes several anvil issues. [#469]: https://github.com/PowerNukkit/PowerNukkit/issues/469 [#475]: https://github.com/PowerNukkit/PowerNukkit/issues/475 [#544]: https://github.com/PowerNukkit/PowerNukkit/issues/544 +[#625]: https://github.com/PowerNukkit/PowerNukkit/issues/625 [#702]: https://github.com/PowerNukkit/PowerNukkit/issues/702 [#765]: https://github.com/PowerNukkit/PowerNukkit/issues/765 [#766]: https://github.com/PowerNukkit/PowerNukkit/issues/766 @@ -862,3 +865,4 @@ Fixes several anvil issues. [#1130]: https://github.com/PowerNukkit/PowerNukkit/issues/1130 [#1132]: https://github.com/PowerNukkit/PowerNukkit/issues/1132 [#1134]: https://github.com/PowerNukkit/PowerNukkit/issues/1134 +[#1139]: https://github.com/PowerNukkit/PowerNukkit/issues/1139 From 818612eef6096d97df5daaf14882f0c63127a4e3 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Sun, 13 Jun 2021 20:50:16 +0300 Subject: [PATCH 061/394] 1.17 stuff (#1854) --- src/main/java/cn/nukkit/Nukkit.java | 2 +- src/main/java/cn/nukkit/Player.java | 2 +- src/main/java/cn/nukkit/item/ItemRedstone.java | 2 +- src/main/java/cn/nukkit/level/GameRule.java | 10 +++++++++- src/main/java/cn/nukkit/level/GameRules.java | 9 ++++++++- .../cn/nukkit/network/protocol/AddEntityPacket.java | 7 +++++-- src/main/resources/item_mappings.json | 4 +++- 7 files changed, 28 insertions(+), 8 deletions(-) diff --git a/src/main/java/cn/nukkit/Nukkit.java b/src/main/java/cn/nukkit/Nukkit.java index 259f6aa3453..aeb5681db1d 100644 --- a/src/main/java/cn/nukkit/Nukkit.java +++ b/src/main/java/cn/nukkit/Nukkit.java @@ -42,7 +42,7 @@ public class Nukkit { public final static Properties GIT_INFO = getGitInfo(); public final static String VERSION = getVersion(); - public final static String API_VERSION = "1.0.12"; + public final static String API_VERSION = "1.0.13"; public final static String CODENAME = ""; @Deprecated public final static String MINECRAFT_VERSION = ProtocolInfo.MINECRAFT_VERSION; diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 5bd1b662524..fa43cdc50a9 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -3797,7 +3797,7 @@ public void kill() { return; } - boolean showMessages = this.level.getGameRules().getBoolean(GameRule.SHOW_DEATH_MESSAGE); + boolean showMessages = this.level.getGameRules().getBoolean(GameRule.SHOW_DEATH_MESSAGES); String message = ""; List params = new ArrayList<>(); EntityDamageEvent cause = this.getLastDamageCause(); diff --git a/src/main/java/cn/nukkit/item/ItemRedstone.java b/src/main/java/cn/nukkit/item/ItemRedstone.java index 16bd3f99bf1..50269f92933 100644 --- a/src/main/java/cn/nukkit/item/ItemRedstone.java +++ b/src/main/java/cn/nukkit/item/ItemRedstone.java @@ -18,7 +18,7 @@ public ItemRedstone(Integer meta) { } public ItemRedstone(Integer meta, int count) { - super(REDSTONE, meta, count, "Redstone"); + super(REDSTONE, meta, count, "Redstone Dust"); this.block = Block.get(BlockID.REDSTONE_WIRE); } diff --git a/src/main/java/cn/nukkit/level/GameRule.java b/src/main/java/cn/nukkit/level/GameRule.java index fda473b7396..f1623b885ea 100644 --- a/src/main/java/cn/nukkit/level/GameRule.java +++ b/src/main/java/cn/nukkit/level/GameRule.java @@ -3,10 +3,13 @@ import java.util.Optional; public enum GameRule { + + COMMAND_BLOCKS_ENABLED("commandBlocksEnabled"), COMMAND_BLOCK_OUTPUT("commandBlockOutput"), DO_DAYLIGHT_CYCLE("doDaylightCycle"), DO_ENTITY_DROPS("doEntityDrops"), DO_FIRE_TICK("doFireTick"), + DO_INSOMNIA("doInsomnia"), DO_IMMEDIATE_RESPAWN("doImmediateRespawn"), DO_MOB_LOOT("doMobLoot"), DO_MOB_SPAWNING("doMobSpawning"), @@ -15,15 +18,20 @@ public enum GameRule { DROWNING_DAMAGE("drowningDamage"), FALL_DAMAGE("fallDamage"), FIRE_DAMAGE("fireDamage"), + FREEZE_DAMAGE("freezeDamage"), + FUNCTION_COMMAND_LIMIT("functionCommandLimit"), KEEP_INVENTORY("keepInventory"), + MAX_COMMAND_CHAIN_LENGTH("maxCommandChainLength"), MOB_GRIEFING("mobGriefing"), NATURAL_REGENERATION("naturalRegeneration"), PVP("pvp"), RANDOM_TICK_SPEED("randomTickSpeed"), SEND_COMMAND_FEEDBACK("sendCommandFeedback"), SHOW_COORDINATES("showCoordinates"), + SHOW_DEATH_MESSAGES("showDeathMessages"), + SPAWN_RADIUS("spawnRadius"), TNT_EXPLODES("tntExplodes"), - SHOW_DEATH_MESSAGE("showDeathMessage"); + SHOW_TAGS("showTags"); private final String name; diff --git a/src/main/java/cn/nukkit/level/GameRules.java b/src/main/java/cn/nukkit/level/GameRules.java index 650e7165585..3e09c11bea8 100644 --- a/src/main/java/cn/nukkit/level/GameRules.java +++ b/src/main/java/cn/nukkit/level/GameRules.java @@ -24,10 +24,12 @@ private GameRules() { public static GameRules getDefault() { GameRules gameRules = new GameRules(); + gameRules.gameRules.put(COMMAND_BLOCKS_ENABLED, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(COMMAND_BLOCK_OUTPUT, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_DAYLIGHT_CYCLE, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_ENTITY_DROPS, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_FIRE_TICK, new Value(Type.BOOLEAN, true)); + gameRules.gameRules.put(DO_INSOMNIA, new Value(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_IMMEDIATE_RESPAWN, new Value(Type.BOOLEAN, false)); gameRules.gameRules.put(DO_MOB_LOOT, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_MOB_SPAWNING, new Value<>(Type.BOOLEAN, true)); @@ -36,15 +38,20 @@ public static GameRules getDefault() { gameRules.gameRules.put(DROWNING_DAMAGE, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(FALL_DAMAGE, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(FIRE_DAMAGE, new Value<>(Type.BOOLEAN, true)); + gameRules.gameRules.put(FREEZE_DAMAGE, new Value<>(Type.BOOLEAN, true)); + gameRules.gameRules.put(FUNCTION_COMMAND_LIMIT, new Value<>(Type.INTEGER, 10000)); gameRules.gameRules.put(KEEP_INVENTORY, new Value<>(Type.BOOLEAN, false)); + gameRules.gameRules.put(MAX_COMMAND_CHAIN_LENGTH, new Value<>(Type.INTEGER, 65536)); gameRules.gameRules.put(MOB_GRIEFING, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(NATURAL_REGENERATION, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(PVP, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(RANDOM_TICK_SPEED, new Value<>(Type.INTEGER, 3)); gameRules.gameRules.put(SEND_COMMAND_FEEDBACK, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(SHOW_COORDINATES, new Value<>(Type.BOOLEAN, false)); + gameRules.gameRules.put(SHOW_DEATH_MESSAGES, new Value<>(Type.BOOLEAN, true)); + gameRules.gameRules.put(SPAWN_RADIUS, new Value<>(Type.INTEGER, 5)); gameRules.gameRules.put(TNT_EXPLODES, new Value<>(Type.BOOLEAN, true)); - gameRules.gameRules.put(SHOW_DEATH_MESSAGE, new Value<>(Type.BOOLEAN, true)); + gameRules.gameRules.put(SHOW_TAGS, new Value<>(Type.BOOLEAN, true)); return gameRules; } diff --git a/src/main/java/cn/nukkit/network/protocol/AddEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AddEntityPacket.java index 179b17275b8..0401548192c 100644 --- a/src/main/java/cn/nukkit/network/protocol/AddEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AddEntityPacket.java @@ -124,13 +124,16 @@ public class AddEntityPacket extends DataPacket { .put(EntityRavager.NETWORK_ID, "minecraft:ravager") .put(EntityVillager.NETWORK_ID, "minecraft:villager_v2") .put(EntityZombieVillager.NETWORK_ID, "minecraft:zombie_villager_v2") - .put(121, "minecraft:fox") - .put(122, "minecraft:bee") + .put(EntityFox.NETWORK_ID, "minecraft:fox") + .put(EntityBee.NETWORK_ID, "minecraft:bee") .put(EntityPiglin.NETWORK_ID, "minecraft:piglin") .put(EntityHoglin.NETWORK_ID, "minecraft:hoglin") .put(EntityStrider.NETWORK_ID, "minecraft:strider") .put(EntityZoglin.NETWORK_ID, "minecraft:zoglin") .put(127, "minecraft:piglin_brute") + .put(128, "minecraft:goat") + .put(129, "minecraft:glow_squid") + .put(130, "minecraft:axolotl") .build(); @Override diff --git a/src/main/resources/item_mappings.json b/src/main/resources/item_mappings.json index 050bb0eaa5f..614aa3b589b 100644 --- a/src/main/resources/item_mappings.json +++ b/src/main/resources/item_mappings.json @@ -120,6 +120,8 @@ "125": "minecraft:strider_spawn_egg", "126": "minecraft:zoglin_spawn_egg", "127": "minecraft:piglin_brute_spawn_egg", - "128": "minecraft:goat_spawn_egg" + "128": "minecraft:goat_spawn_egg", + "129": "minecraft:glow_squid_spawn_egg", + "130": "minecraft:axolotl_spawn_egg" } } \ No newline at end of file From 31887fe1d1accc79200a298b22351650b4d5e490 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 21 Jun 2021 12:43:54 -0300 Subject: [PATCH 062/394] Add #979 to the changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e6cc5ce3d1..e56af52c6c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ Click the link above to see the future. - [#1139] Backward compatibility with some custom world generators - [#702] Burning arrow and rain will make a lot of particles - [#625] If you instant kill a mob with fire aspect enchant tool, it will not give fire aspect drops +- [#979] Fixes an issue where the players could not hear each other walking ## [1.5.0.0-PN] - 2021-06-11 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/26?closed=1)) This was quick! This new version add protocol support for Minecraft `1.17.0` as if it was `1.16.221`. @@ -855,6 +856,7 @@ Fixes several anvil issues. [#917]: https://github.com/PowerNukkit/PowerNukkit/issues/917 [#959]: https://github.com/PowerNukkit/PowerNukkit/issues/959 [#960]: https://github.com/PowerNukkit/PowerNukkit/issues/960 +[#979]: https://github.com/PowerNukkit/PowerNukkit/issues/979 [#990]: https://github.com/PowerNukkit/PowerNukkit/issues/990 [#1100]: https://github.com/PowerNukkit/PowerNukkit/issues/1100 [#1103]: https://github.com/PowerNukkit/PowerNukkit/issues/1103 From b492d29894582c8e1f48b0aee203cd7519dd486d Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 21 Jun 2021 13:58:19 -0300 Subject: [PATCH 063/394] Improves /setworldspawn auto-completion, updates translations --- .../java/cn/nukkit/command/defaults/SetWorldSpawnCommand.java | 3 ++- src/main/resources/lang | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/command/defaults/SetWorldSpawnCommand.java b/src/main/java/cn/nukkit/command/defaults/SetWorldSpawnCommand.java index 713e92d85a7..a113047aa8b 100644 --- a/src/main/java/cn/nukkit/command/defaults/SetWorldSpawnCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/SetWorldSpawnCommand.java @@ -20,7 +20,8 @@ public SetWorldSpawnCommand(String name) { super(name, "%nukkit.command.setworldspawn.description", "%commands.setworldspawn.usage"); this.setPermission("nukkit.command.setworldspawn"); this.commandParameters.clear(); - this.commandParameters.put("default", new CommandParameter[]{ + this.commandParameters.put("default", CommandParameter.EMPTY_ARRAY); + this.commandParameters.put("spawnPoint", new CommandParameter[]{ CommandParameter.newType("spawnPoint", true, CommandParamType.POSITION) }); } diff --git a/src/main/resources/lang b/src/main/resources/lang index 395535c064d..662809805f8 160000 --- a/src/main/resources/lang +++ b/src/main/resources/lang @@ -1 +1 @@ -Subproject commit 395535c064da0cfab0b2adf85a7273c60e42a25a +Subproject commit 662809805f8fcf9c2343a30452d3299187bc2ba9 From c1f21c34c5527a754c90d228c07c2bd6797e8b0b Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 21 Jun 2021 18:33:20 -0300 Subject: [PATCH 064/394] #576 Improves the swimming in 1 block hole solution --- src/main/java/cn/nukkit/Player.java | 18 ++++-- src/main/java/cn/nukkit/entity/Entity.java | 63 ++++++++++++------- .../java/cn/nukkit/entity/EntityHuman.java | 13 +++- 3 files changed, 62 insertions(+), 32 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index c7d7038c3d8..d75e3266803 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -1625,7 +1625,15 @@ protected void processMovement(int tickDiff) { this.y = newPos.y; this.z = newPos.z; double radius = this.getWidth() / 2; - this.boundingBox.setBounds(this.x - radius, this.y, this.z - radius, this.x + radius, this.y + this.getHeight(), this.z + radius); + this.boundingBox.setBounds( + this.x - radius, + this.y, + this.z - radius, + + this.x + radius, + this.y + this.getCurrentHeight(), + this.z + radius + ); } } @@ -2590,7 +2598,7 @@ public void onCompletion(Server server) { } MovePlayerPacket movePlayerPacket = (MovePlayerPacket) packet; - Vector3 newPos = new Vector3(movePlayerPacket.x, movePlayerPacket.y - this.getEyeHeight(), movePlayerPacket.z); + Vector3 newPos = new Vector3(movePlayerPacket.x, movePlayerPacket.y - this.getBaseOffset(), movePlayerPacket.z); if (newPos.distanceSquared(this) < 0.01 && movePlayerPacket.yaw % 360 == this.yaw && movePlayerPacket.pitch % 360 == this.pitch) { break; @@ -2839,7 +2847,7 @@ public void onCompletion(Server server) { if (ptse.isCancelled()) { this.sendData(this); } else { - this.setSwimming(this, true); + this.setSwimming(true); } break; case PlayerActionPacket.ACTION_STOP_SWIMMING: @@ -2849,7 +2857,7 @@ public void onCompletion(Server server) { if (ptse.isCancelled()) { this.sendData(this); } else { - this.setSwimming(this, false); + this.setSwimming(false); } break; case PlayerActionPacket.ACTION_START_SPIN_ATTACK: @@ -4934,8 +4942,6 @@ public boolean attack(EntityDamageEvent source) { return false; } } - } else if (source.getCause() == DamageCause.SUFFOCATION && this.isSwimming()){ - return false; } if (super.attack(source)) { //!source.isCancelled() diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index c520a7315c2..25fe0d79f77 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -447,8 +447,18 @@ public float getHeight() { return 0; } + @PowerNukkitOnly + @Since("FUTURE") + public float getCurrentHeight() { + if (isSwimming()) { + return getSwimmingHeight(); + } else { + return getHeight(); + } + } + public float getEyeHeight() { - return this.getHeight() / 2 + 0.1f; + return getCurrentHeight() / 2 + 0.1f; } public float getWidth() { @@ -680,15 +690,25 @@ public void setSneaking(boolean value) { public boolean isSwimming() { return this.getDataFlag(DATA_FLAGS, DATA_FLAG_SWIMMING); } + + @PowerNukkitOnly + @Since("FUTURE") + public float getSwimmingHeight() { + return getHeight(); + } - public void setSwimming(Player p, boolean value) { - if (value) { - p.setDataProperty(new FloatEntityData(Entity.DATA_BOUNDING_BOX_HEIGHT, p.getWidth())); - } else { - p.setDataProperty(new FloatEntityData(Entity.DATA_BOUNDING_BOX_HEIGHT, (float) (1.8 * p.getScale()))); + public void setSwimming() { + this.setSwimming(true); + } + + public void setSwimming(boolean value) { + if (isSwimming() == value) { + return; } - reCalculateBoundingBox(p); this.setDataFlag(DATA_FLAGS, DATA_FLAG_SWIMMING, value); + if (Float.compare(getSwimmingHeight(), getHeight()) != 0) { + recalculateBoundingBox(true); + } } public boolean isSprinting() { @@ -835,11 +855,20 @@ public void recalculateBoundingBox() { } public void recalculateBoundingBox(boolean send) { - float height = this.getHeight() * this.scale; + float entityHeight = getCurrentHeight(); + float height = entityHeight * this.scale; double radius = (this.getWidth() * this.scale) / 2d; - this.boundingBox.setBounds(x - radius, y, z - radius, x + radius, y + height, z + radius); + this.boundingBox.setBounds( + x - radius, + y, + z - radius, + + x + radius, + y + height, + z + radius + ); - FloatEntityData bbH = new FloatEntityData(DATA_BOUNDING_BOX_HEIGHT, this.getHeight()); + FloatEntityData bbH = new FloatEntityData(DATA_BOUNDING_BOX_HEIGHT, entityHeight); FloatEntityData bbW = new FloatEntityData(DATA_BOUNDING_BOX_WIDTH, this.getWidth()); this.dataProperties.put(bbH); this.dataProperties.put(bbW); @@ -2790,18 +2819,4 @@ public void setNoClip(boolean noClip) { this.noClip = noClip; this.setDataFlag(DATA_FLAGS, DATA_FLAG_HAS_COLLISION, noClip); } - - @PowerNukkitOnly - @Since("1.4.0.0-PN") - public void reCalculateBoundingBox (Player player) { - float halfWidth = (player.getWidth() / 2); - player.boundingBox.setBounds( - player.x - halfWidth, - player.y, - player.z - halfWidth, - player.x + halfWidth, - player.y + player.getHeight(), - player.z + halfWidth - ); - } } diff --git a/src/main/java/cn/nukkit/entity/EntityHuman.java b/src/main/java/cn/nukkit/entity/EntityHuman.java index 240314f7a29..be3aef46de8 100644 --- a/src/main/java/cn/nukkit/entity/EntityHuman.java +++ b/src/main/java/cn/nukkit/entity/EntityHuman.java @@ -1,6 +1,8 @@ package cn.nukkit.entity; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.data.IntPositionEntityData; import cn.nukkit.entity.data.Skin; import cn.nukkit.item.Item; @@ -50,14 +52,21 @@ public float getHeight() { return 1.8f; } + @Since("FUTURE") + @PowerNukkitOnly + @Override + public float getSwimmingHeight() { + return getWidth(); + } + @Override public float getEyeHeight() { - return 1.62f; + return (float)(boundingBox.getMaxY() - boundingBox.getMinY() - 0.18); } @Override protected float getBaseOffset() { - return this.getEyeHeight(); + return 1.62f; } protected Skin skin; From e6130b8252d9ce6babd9adfe2cf828002cf13a3e Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 21 Jun 2021 19:35:46 -0300 Subject: [PATCH 065/394] Add #576 to the changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e56af52c6c1..41a5724ba85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ Click the link above to see the future. - [#702] Burning arrow and rain will make a lot of particles - [#625] If you instant kill a mob with fire aspect enchant tool, it will not give fire aspect drops - [#979] Fixes an issue where the players could not hear each other walking +- [#576] Swmming in a 1x1 tunnel of water was causing suffocation damage by the block above the player ## [1.5.0.0-PN] - 2021-06-11 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/26?closed=1)) This was quick! This new version add protocol support for Minecraft `1.17.0` as if it was `1.16.221`. @@ -842,6 +843,7 @@ Fixes several anvil issues. [#469]: https://github.com/PowerNukkit/PowerNukkit/issues/469 [#475]: https://github.com/PowerNukkit/PowerNukkit/issues/475 [#544]: https://github.com/PowerNukkit/PowerNukkit/issues/544 +[#576]: https://github.com/PowerNukkit/PowerNukkit/issues/576 [#625]: https://github.com/PowerNukkit/PowerNukkit/issues/625 [#702]: https://github.com/PowerNukkit/PowerNukkit/issues/702 [#765]: https://github.com/PowerNukkit/PowerNukkit/issues/765 From c5a30071fac8452be496947130320953e4b5bcca Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 21 Jun 2021 20:14:06 -0300 Subject: [PATCH 066/394] #783 Code update and cleanup --- .../java/cn/nukkit/block/BlockCampfire.java | 35 +++++++------------ .../cn/nukkit/block/BlockCampfireSoul.java | 4 +-- .../cn/nukkit/entity/item/EntityPotion.java | 7 ---- 3 files changed, 14 insertions(+), 32 deletions(-) diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index c50d4a2da0d..b3021e9c994 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -113,7 +113,7 @@ public boolean canHarvestWithHand() { @Override public Item[] getDrops(Item item) { - return new Item[] { new ItemCoal(1, 2) }; + return new Item[] { MinecraftItemID.CHARCOAL.get(2) }; } @Override @@ -173,11 +173,9 @@ public boolean hasEntityCollision() { public void onEntityCollide(Entity entity) { if (!isExtinguished()) { entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.FIRE, 1)); - } else { - if (entity.isOnFire()) { - setExtinguished(false); - level.setBlock(this, this, true); - } + } else if (entity.isOnFire()) { + setExtinguished(false); + level.setBlock(this, this, true); } } @@ -218,22 +216,13 @@ public boolean onActivate(@Nonnull Item item, @Nullable Player player) { this.level.addSound(this, Sound.RANDOM_FIZZ, 0.5f, 2.2f); itemUsed = true; } - } else { - if (item.getId() == ItemID.FLINT_AND_STEEL) { - item.useOn(this); - setExtinguished(false); - this.level.setBlock(this, this, true, true); - campfire.scheduleUpdate(); - this.level.addSound(this, Sound.FIRE_IGNITE); - itemUsed = true; - } else if (item.getEnchantment(Enchantment.ID_FIRE_ASPECT) != null) { - item.useOn(this); - setExtinguished(false); - this.level.setBlock(this, this, true, true); - campfire.scheduleUpdate(); - this.level.addSound(this, Sound.FIRE_IGNITE); - itemUsed = true; - } + } else if (item.getId() == ItemID.FLINT_AND_STEEL || item.getEnchantment(Enchantment.ID_FIRE_ASPECT) != null) { + item.useOn(this); + setExtinguished(false); + this.level.setBlock(this, this, true, true); + campfire.scheduleUpdate(); + this.level.addSound(this, Sound.FIRE_IGNITE); + itemUsed = true; } Item cloned = item.clone(); @@ -260,7 +249,7 @@ public boolean onProjectileHit(@Nonnull Entity projectile, @Nonnull Position pos level.setBlock(this, this, true); return true; } else if (projectile instanceof EntityPotion && !isExtinguished()) { - if (((EntityPotion) projectile).getPotionId() == 0) { + if (((EntityPotion) projectile).potionId == 0) { setExtinguished(true); level.setBlock(this, this, true); return true; diff --git a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java index bac1283d4f2..fc2e97d8037 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java +++ b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java @@ -6,8 +6,8 @@ import cn.nukkit.event.entity.EntityDamageByBlockEvent; import cn.nukkit.event.entity.EntityDamageEvent; import cn.nukkit.item.Item; -import cn.nukkit.item.ItemBlock; import cn.nukkit.item.ItemID; +import cn.nukkit.item.MinecraftItemID; @PowerNukkitOnly @Since("1.4.0.0-PN") @@ -46,7 +46,7 @@ public Item toItem() { @Override public Item[] getDrops(Item item) { - return new Item[] { new ItemBlock(Block.get(BlockID.SOUL_SOIL)) }; + return new Item[] { MinecraftItemID.SOUL_SOIL.get(1) }; } @Override diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotion.java b/src/main/java/cn/nukkit/entity/item/EntityPotion.java index 41ad4adeeb3..c0b5b4e8966 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotion.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotion.java @@ -1,8 +1,6 @@ package cn.nukkit.entity.item; import cn.nukkit.api.PowerNukkitDifference; -import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.projectile.EntityProjectile; import cn.nukkit.event.potion.PotionCollideEvent; @@ -170,9 +168,4 @@ public boolean onUpdate(int currentTick) { public String getName() { return "Potion"; } - - @Since("1.4.0.0-PN") - public int getPotionId() { - return this.potionId; - } } From cf7e16293c00016aa428e7eff3bfd6fca9bd3b87 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 21 Jun 2021 21:25:22 -0300 Subject: [PATCH 067/394] #783 Campfires break when pushed by pistons Unable to make it drop only one item when broken by pistons for now, the effort is not worth it --- src/main/java/cn/nukkit/block/BlockCampfire.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index b3021e9c994..c6d11e4dc38 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -337,6 +337,6 @@ public boolean canBePulled() { @Override public boolean canBePushed() { - return false; + return true; } } From 2242bd6dd5e89a31a96b6b0c65dcd9763f333535 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 21 Jun 2021 21:56:24 -0300 Subject: [PATCH 068/394] #783 Campfire combust like fire, don't affect projectiles and fire resistant entities Also apply the same properties to soul campfire --- .../java/cn/nukkit/block/BlockCampfire.java | 34 ++++++++++++++++--- .../cn/nukkit/block/BlockCampfireSoul.java | 8 ++--- 2 files changed, 33 insertions(+), 9 deletions(-) diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index c6d11e4dc38..faf0ed937d0 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.Player; +import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.blockentity.BlockEntity; @@ -10,6 +11,8 @@ import cn.nukkit.entity.Entity; import cn.nukkit.entity.item.EntityPotion; import cn.nukkit.entity.projectile.EntityArrow; +import cn.nukkit.entity.projectile.EntityProjectile; +import cn.nukkit.event.entity.EntityCombustByBlockEvent; import cn.nukkit.event.entity.EntityDamageByBlockEvent; import cn.nukkit.event.entity.EntityDamageEvent; import cn.nukkit.inventory.CampfireInventory; @@ -26,6 +29,7 @@ import cn.nukkit.math.Vector3; import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.nbt.tag.Tag; +import cn.nukkit.potion.Effect; import cn.nukkit.utils.BlockColor; import cn.nukkit.utils.Faceable; import lombok.extern.log4j.Log4j2; @@ -171,13 +175,33 @@ public boolean hasEntityCollision() { @Override public void onEntityCollide(Entity entity) { - if (!isExtinguished()) { - entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.FIRE, 1)); - } else if (entity.isOnFire()) { - setExtinguished(false); - level.setBlock(this, this, true); + if (isExtinguished()) { + if (entity.isOnFire()) { + setExtinguished(false); + level.setBlock(this, this, true); + } + return; + } + + if(entity.hasEffect(Effect.FIRE_RESISTANCE) + || entity instanceof EntityProjectile + || !entity.attack(getDamageEvent(entity)) + || !entity.isAlive()) { + return; + } + + EntityCombustByBlockEvent ev = new EntityCombustByBlockEvent(this, entity, 8); + Server.getInstance().getPluginManager().callEvent(ev); + if (!ev.isCancelled() && entity.isAlive()) { + entity.setOnFire(ev.getDuration()); } } + + @PowerNukkitOnly + @Since("FUTURE") + protected EntityDamageEvent getDamageEvent(Entity entity) { + return new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.FIRE, 1); + } @Override public boolean canBeActivated() { diff --git a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java index fc2e97d8037..858b45fb6ed 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java +++ b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java @@ -49,10 +49,10 @@ public Item[] getDrops(Item item) { return new Item[] { MinecraftItemID.SOUL_SOIL.get(1) }; } + @Since("FUTURE") + @PowerNukkitOnly @Override - public void onEntityCollide(Entity entity) { - if (!isExtinguished()) { - entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.FIRE, 2)); - } + protected EntityDamageEvent getDamageEvent(Entity entity) { + return new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.FIRE, 2); } } From 691af3302488b97e97621683065c3825fd7fc2b6 Mon Sep 17 00:00:00 2001 From: IWareQ Date: Wed, 23 Jun 2021 15:41:02 +0500 Subject: [PATCH 069/394] Implements AnimateEntityPacket --- src/main/java/cn/nukkit/network/Network.java | 1 + .../network/protocol/AnimateEntityPacket.java | 50 +++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java diff --git a/src/main/java/cn/nukkit/network/Network.java b/src/main/java/cn/nukkit/network/Network.java index 302a1d250d0..44e7a0255b1 100644 --- a/src/main/java/cn/nukkit/network/Network.java +++ b/src/main/java/cn/nukkit/network/Network.java @@ -473,5 +473,6 @@ private void registerPackets() { this.registerPacket(ProtocolInfo.REMOVE_VOLUME_ENTITY, RemoveVolumeEntityPacket.class); this.registerPacket(ProtocolInfo.SYNC_ENTITY_PROPERTY, SyncEntityPropertyPacket.class); this.registerPacket(ProtocolInfo.TICK_SYNC_PACKET, TickSyncPacket.class); + this.registerPacket(ProtocolInfo.ANIMATE_ENTITY_PACKET, AnimateEntityPacket.class); } } diff --git a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java new file mode 100644 index 00000000000..95ac064a053 --- /dev/null +++ b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java @@ -0,0 +1,50 @@ +package cn.nukkit.network.protocol; + +import java.util.ArrayList; +import java.util.List; + +/** + * @author IWareQ + */ +public class AnimateEntityPacket extends DataPacket { + + public static final byte NETWORK_ID = ProtocolInfo.ANIMATE_ENTITY_PACKET; + + public String animation; + public String nextState; + public String stopExpression; + public String controller; + public String blendOutTime; + public List entityRuntimeIds = new ArrayList<>(); + + @Override + public void decode() { + this.animation = this.getString(); + this.nextState = this.getString(); + this.stopExpression = this.getString(); + this.controller = this.getString(); + this.blendOutTime = this.getLFloat(); + for (int i = 0, len = this.getUnsignedVarInt(); i < len; i++) { + this.entityRuntimeIds(this.getEntityRuntimeId()); + } + } + + @Override + public void encode() { + this.reset(); + this.putString(this.animation); + this.putString(this.nextState); + this.putString(this.stopExpression); + this.putString(this.controller); + this.putLFloat(this.blendOutTime); + this.putUnsignedVarInt(this.entityRuntimeIds.size()); + for (int entityRuntimeId : this.entityRuntimeIds){ + this.putEntityRuntimeId(entityRuntimeId); + } + } + + @Override + public byte pid() { + return NETWORK_ID; + } +} From 909854dca4150da2a83f442d7d01e4187584c5bb Mon Sep 17 00:00:00 2001 From: IWareQ Date: Wed, 23 Jun 2021 15:44:51 +0500 Subject: [PATCH 070/394] Oops --- .../java/cn/nukkit/network/protocol/AnimateEntityPacket.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java index 95ac064a053..06126b43742 100644 --- a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java @@ -14,7 +14,7 @@ public class AnimateEntityPacket extends DataPacket { public String nextState; public String stopExpression; public String controller; - public String blendOutTime; + public float blendOutTime; public List entityRuntimeIds = new ArrayList<>(); @Override From 4b811808dc280f4e5138375a8ffe8ebaa76bb7c2 Mon Sep 17 00:00:00 2001 From: IWareQ Date: Wed, 23 Jun 2021 15:51:25 +0500 Subject: [PATCH 071/394] Oops #2 --- .../cn/nukkit/network/protocol/AnimateEntityPacket.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java index 06126b43742..d84f24cbd15 100644 --- a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java @@ -15,7 +15,7 @@ public class AnimateEntityPacket extends DataPacket { public String stopExpression; public String controller; public float blendOutTime; - public List entityRuntimeIds = new ArrayList<>(); + public List entityRuntimeIds = new ArrayList<>(); @Override public void decode() { @@ -24,8 +24,8 @@ public void decode() { this.stopExpression = this.getString(); this.controller = this.getString(); this.blendOutTime = this.getLFloat(); - for (int i = 0, len = this.getUnsignedVarInt(); i < len; i++) { - this.entityRuntimeIds(this.getEntityRuntimeId()); + for (int i = 0, len = (int) this.getUnsignedVarInt(); i < len; i++) { + this.entityRuntimeIds.add(this.getEntityRuntimeId()); } } @@ -38,7 +38,7 @@ public void encode() { this.putString(this.controller); this.putLFloat(this.blendOutTime); this.putUnsignedVarInt(this.entityRuntimeIds.size()); - for (int entityRuntimeId : this.entityRuntimeIds){ + for (long entityRuntimeId : this.entityRuntimeIds){ this.putEntityRuntimeId(entityRuntimeId); } } From f011d4e336938393978c68b094ee5b8e1f3b93b2 Mon Sep 17 00:00:00 2001 From: IWareQ Date: Wed, 23 Jun 2021 19:56:54 +0500 Subject: [PATCH 072/394] Update --- .../network/protocol/AnimateEntityPacket.java | 91 +++++++++++++++++-- 1 file changed, 85 insertions(+), 6 deletions(-) diff --git a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java index d84f24cbd15..50d537b898c 100644 --- a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java @@ -1,21 +1,28 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; + import java.util.ArrayList; import java.util.List; /** * @author IWareQ */ + @PowerNukkitOnly +@Since("FUTURE") public class AnimateEntityPacket extends DataPacket { + @PowerNukkitOnly + @Since("FUTURE") public static final byte NETWORK_ID = ProtocolInfo.ANIMATE_ENTITY_PACKET; - public String animation; - public String nextState; - public String stopExpression; - public String controller; - public float blendOutTime; - public List entityRuntimeIds = new ArrayList<>(); + private String animation; + private String nextState; + private String stopExpression; + private String controller; + private float blendOutTime; + private List entityRuntimeIds = new ArrayList<>(); @Override public void decode() { @@ -47,4 +54,76 @@ public void encode() { public byte pid() { return NETWORK_ID; } + + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public void setAnimation(String animation) { + this.animation = animation; + } + + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public String getAnimation() { + return this.animation; + } + + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public void setNextState(String nextState) { + this.nextState = nextState; + } + + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public String getNextState() { + return this.nextState; + } + + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public void setStopExpression(String stopExpression) { + this.stopExpression = stopExpression; + } + + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public String getStopExpression() { + return this.stopExpression; + } + + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public void setController(String controller) { + this.controller = controller; + } + + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public String getController() { + return this.controller; + } + + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public void setBlendOutTime(String blendOutTime) { + this.blendOutTime = blendOutTime; + } + + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public String getBlendOutTime() { + return this.blendOutTime; + } + + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public void setEntityRuntimeIds(List entityRuntimeIds) { + this.entityRuntimeIds = entityRuntimeIds; + } + + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public String getEntityRuntimeIds() { + return this.entityRuntimeIds; + } } From 2a90481d0fcff6f3d9e995f5db93ad4a574e6cf5 Mon Sep 17 00:00:00 2001 From: IWareQ Date: Wed, 23 Jun 2021 20:00:43 +0500 Subject: [PATCH 073/394] Oops --- .../cn/nukkit/network/protocol/AnimateEntityPacket.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java index 50d537b898c..777596b178f 100644 --- a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java @@ -105,13 +105,13 @@ public String getController() { @PowerNukkitOnly @Since("1.5.0.0-PN") - public void setBlendOutTime(String blendOutTime) { + public void setBlendOutTime(float blendOutTime) { this.blendOutTime = blendOutTime; } @PowerNukkitOnly @Since("1.5.0.0-PN") - public String getBlendOutTime() { + public float getBlendOutTime() { return this.blendOutTime; } @@ -123,7 +123,7 @@ public void setEntityRuntimeIds(List entityRuntimeIds) { @PowerNukkitOnly @Since("1.5.0.0-PN") - public String getEntityRuntimeIds() { + public List getEntityRuntimeIds() { return this.entityRuntimeIds; } } From a3911147ee513bd6601728cae0c9c61a0bf3fbb3 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 23 Jun 2021 12:16:45 -0300 Subject: [PATCH 074/394] Add #1146 to the changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41a5724ba85..9f31d48d405 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,9 @@ Click the link above to see the future. - [#1107] SnakeYAML version from `1.26` to `1.28` - [#1134] Update the Chinese, Russian, and Turkish translations. Thank you for your contributions! +### Added +- [#1146] Added implementation for `AnimateEntityPacket` + ### Fixes - [#1119] `TickSyncPacket` was not registered - [#1120] Entities sometimes gets invisible for some players @@ -870,3 +873,4 @@ Fixes several anvil issues. [#1132]: https://github.com/PowerNukkit/PowerNukkit/issues/1132 [#1134]: https://github.com/PowerNukkit/PowerNukkit/issues/1134 [#1139]: https://github.com/PowerNukkit/PowerNukkit/issues/1139 +[#1146]: https://github.com/PowerNukkit/PowerNukkit/issues/1146 From ea4b6a164e5c8fcd49a96db9172a317bc1664554 Mon Sep 17 00:00:00 2001 From: lapis256 Date: Thu, 24 Jun 2021 18:13:24 +0900 Subject: [PATCH 075/394] Change calculation --- .../cn/nukkit/item/enchantment/damage/EnchantmentDamageAll.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAll.java b/src/main/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAll.java index 653ec457dbb..aa12aa3fb78 100644 --- a/src/main/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAll.java +++ b/src/main/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAll.java @@ -32,6 +32,6 @@ public double getDamageBonus(Entity entity) { return 0; } - return 0.5 + getLevel() * 0.5; + return getLevel() * 1.25; } } From 0644f700a894c686c6bacb089616885965f80d2d Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 10:26:02 -0300 Subject: [PATCH 076/394] Add #1147 to the changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f31d48d405..2d81edb4a47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ Click the link above to see the future. - [#1100] Abrupt Time Change - [#1130] Soul Campfire and End Crystal were rendering as other items in the inventory - [#1139] Backward compatibility with some custom world generators +- [#1147] Sharpness damage calculation - [#702] Burning arrow and rain will make a lot of particles - [#625] If you instant kill a mob with fire aspect enchant tool, it will not give fire aspect drops - [#979] Fixes an issue where the players could not hear each other walking @@ -874,3 +875,4 @@ Fixes several anvil issues. [#1134]: https://github.com/PowerNukkit/PowerNukkit/issues/1134 [#1139]: https://github.com/PowerNukkit/PowerNukkit/issues/1139 [#1146]: https://github.com/PowerNukkit/PowerNukkit/issues/1146 +[#1147]: https://github.com/PowerNukkit/PowerNukkit/issues/1147 From 3089118e97cd82f56f514e4f33c842abb6f4a8cc Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 12:37:09 -0300 Subject: [PATCH 077/394] #1113 Improves message when a missing dependency is found --- src/main/java/cn/nukkit/plugin/PluginManager.java | 6 ++++-- src/main/resources/lang | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/plugin/PluginManager.java b/src/main/java/cn/nukkit/plugin/PluginManager.java index 6df7836eddb..521cdea79cd 100644 --- a/src/main/java/cn/nukkit/plugin/PluginManager.java +++ b/src/main/java/cn/nukkit/plugin/PluginManager.java @@ -7,6 +7,7 @@ import cn.nukkit.command.PluginCommand; import cn.nukkit.command.SimpleCommandMap; import cn.nukkit.event.*; +import cn.nukkit.lang.BaseLang; import cn.nukkit.permission.Permissible; import cn.nukkit.permission.Permission; import cn.nukkit.utils.PluginException; @@ -266,8 +267,9 @@ public Map loadPlugins(File dictionary, List newLoaders, if (loadedPlugins.containsKey(dependency) || this.getPlugin(dependency) != null) { dependencies.get(name).remove(dependency); } else if (!plugins.containsKey(dependency)) { - log.fatal(this.server.getLanguage().translateString("nukkit" + - ".plugin.loadError", name, "%nukkit.plugin.unknownDependency", dependency)); + BaseLang language = this.server.getLanguage(); + String cause = language.translateString("nukkit.plugin.missingDependency", dependency); + log.fatal(language.translateString("nukkit.plugin.loadError", new String[]{name, cause})); break; } } diff --git a/src/main/resources/lang b/src/main/resources/lang index 395535c064d..9a7e6edf489 160000 --- a/src/main/resources/lang +++ b/src/main/resources/lang @@ -1 +1 @@ -Subproject commit 395535c064da0cfab0b2adf85a7273c60e42a25a +Subproject commit 9a7e6edf489ded2a6ea040c60babe5dd9ae67a70 From cfa683e10d19ff40ca564f873a04cafc00652a95 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 12:41:01 -0300 Subject: [PATCH 078/394] Delete auto-assign-project-to-issues-and-pr.yml --- .../auto-assign-project-to-issues-and-pr.yml | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/auto-assign-project-to-issues-and-pr.yml diff --git a/.github/workflows/auto-assign-project-to-issues-and-pr.yml b/.github/workflows/auto-assign-project-to-issues-and-pr.yml deleted file mode 100644 index 21da67aa3cb..00000000000 --- a/.github/workflows/auto-assign-project-to-issues-and-pr.yml +++ /dev/null @@ -1,21 +0,0 @@ -# https://github.com/srggrs/assign-one-project-github-action -name: Auto Assign to Project(s) - -on: - issues: - types: [opened] - pull_request: - types: [opened] -env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - -jobs: - assign_one_project: - runs-on: ubuntu-latest - name: Assign to Triage project - steps: - - name: Assign NEW issues and NEW pull requests to Triage - uses: srggrs/assign-one-project-github-action@1.2.1 - if: github.event.action == 'opened' - with: - project: 'https://github.com/PowerNukkit/PowerNukkit/projects/3' From ba95ff1e0bcb8c9264a6f9b6388b81f7322ebd91 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 12:46:21 -0300 Subject: [PATCH 079/394] [#1113] Update the translations --- src/main/resources/lang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/lang b/src/main/resources/lang index 9a7e6edf489..14c127f4827 160000 --- a/src/main/resources/lang +++ b/src/main/resources/lang @@ -1 +1 @@ -Subproject commit 9a7e6edf489ded2a6ea040c60babe5dd9ae67a70 +Subproject commit 14c127f482736fdd4f19fb1277cf0a478b390a99 From 6b47fcec84012e4565f03a0cccaf4eb850a595ca Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 12:52:50 -0300 Subject: [PATCH 080/394] Add #1149 to the changelo --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d81edb4a47..e43d2e8ff06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ Click the link above to see the future. - [#1107] Guava version from `29.0` to `30.1.1` - [#1107] SnakeYAML version from `1.26` to `1.28` - [#1134] Update the Chinese, Russian, and Turkish translations. Thank you for your contributions! +- [#1149] Update the Spanish, and Russian translations. Also improved the message whena plugin is not found. Thank you for your contributions! ### Added - [#1146] Added implementation for `AnimateEntityPacket` @@ -876,3 +877,4 @@ Fixes several anvil issues. [#1139]: https://github.com/PowerNukkit/PowerNukkit/issues/1139 [#1146]: https://github.com/PowerNukkit/PowerNukkit/issues/1146 [#1147]: https://github.com/PowerNukkit/PowerNukkit/issues/1147 +[#1149]: https://github.com/PowerNukkit/PowerNukkit/issues/1149 From 6571f1c265b1dc64dc11162af981a0a649514066 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 16:11:43 -0300 Subject: [PATCH 081/394] Add #783 to the changelog --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e43d2e8ff06..9f72068db94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,9 +14,17 @@ Click the link above to see the future. - [#1107] SnakeYAML version from `1.26` to `1.28` - [#1134] Update the Chinese, Russian, and Turkish translations. Thank you for your contributions! - [#1149] Update the Spanish, and Russian translations. Also improved the message whena plugin is not found. Thank you for your contributions! +- [#783]: Campfire now drop 2 charcoal always +- [#783]: Soul campfire now drops 1 soul sand +- [#783]: Soul campfire now deal double the damage that normal campfires deals +- [#783]: Campfire and Soul campfire now deal damage even the entity is sneaking +- [#783]: Campfire and Soul campfire now breaks when pushed by piston ### Added - [#1146] Added implementation for `AnimateEntityPacket` +- [#783]: Campfire and Soul Campfire can now be lit by burning entities stepping on it +- [#783]: Campfire and Soul Campfire can now be unlit by throwing a splash water bottle on it +- [#783]: Campfire and Soul Campfire can now lit by using an item enchanted with fire aspect ### Fixes - [#1119] `TickSyncPacket` was not registered @@ -857,6 +865,7 @@ Fixes several anvil issues. [#776]: https://github.com/PowerNukkit/PowerNukkit/issues/776 [#777]: https://github.com/PowerNukkit/PowerNukkit/issues/777 [#778]: https://github.com/PowerNukkit/PowerNukkit/issues/778 +[#783]: https://github.com/PowerNukkit/PowerNukkit/issues/783 [#857]: https://github.com/PowerNukkit/PowerNukkit/issues/857 [#882]: https://github.com/PowerNukkit/PowerNukkit/issues/882 [#902]: https://github.com/PowerNukkit/PowerNukkit/issues/902 From 07e8c74d5196a927d3c1cb558fbae6cbb38906d6 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 16:13:27 -0300 Subject: [PATCH 082/394] Fixes a link --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f72068db94..4bef9d309a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -713,7 +713,7 @@ Fixes several anvil issues. [updated changelog]:https://github.com/PowerNukkit/PowerNukkit/blob/bleeding/CHANGELOG.md [discord guild]: https://powernukkit.org/discord -[Unreleased 1.5.0.1-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.0.0-PN...bleeding +[Unreleased 1.5.1.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.0.0-PN...bleeding [1.5.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.4.0.0-PN...v1.5.0.0-PN [1.4.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.3.1.5-PN...v1.4.0.0-PN [1.3.1.5-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.3.1.4-PN...v1.3.1.5-PN From bb2b96a72fb1805d916f81cf50a88f633d18b746 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Sun, 13 Jun 2021 20:50:16 +0300 Subject: [PATCH 083/394] Update gamerules (CloudburstMC#1854) (cherry picked from commit 818612eef6096d97df5daaf14882f0c63127a4e3) --- src/main/java/cn/nukkit/Nukkit.java | 2 +- src/main/java/cn/nukkit/Player.java | 2 +- .../java/cn/nukkit/item/ItemRedstone.java | 2 +- src/main/java/cn/nukkit/level/GameRule.java | 20 +++++++++++++------ src/main/java/cn/nukkit/level/GameRules.java | 18 ++++++++--------- .../network/protocol/AddEntityPacket.java | 5 ++++- 6 files changed, 30 insertions(+), 19 deletions(-) diff --git a/src/main/java/cn/nukkit/Nukkit.java b/src/main/java/cn/nukkit/Nukkit.java index 5778930b928..aff1e8c5972 100644 --- a/src/main/java/cn/nukkit/Nukkit.java +++ b/src/main/java/cn/nukkit/Nukkit.java @@ -54,7 +54,7 @@ public class Nukkit { public final static Properties GIT_INFO = getGitInfo(); public final static String VERSION = getVersion(); public final static String GIT_COMMIT = getGitCommit(); - public final static String API_VERSION = dynamic("1.0.12"); + public final static String API_VERSION = dynamic("1.0.13"); public final static String CODENAME = dynamic("PowerNukkit"); @Deprecated public final static String MINECRAFT_VERSION = ProtocolInfo.MINECRAFT_VERSION; diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index d75e3266803..0f759b19036 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -4477,7 +4477,7 @@ public void kill() { return; } - boolean showMessages = this.level.getGameRules().getBoolean(GameRule.SHOW_DEATH_MESSAGE); + boolean showMessages = this.level.getGameRules().getBoolean(GameRule.SHOW_DEATH_MESSAGES); String message = ""; List params = new ArrayList<>(); EntityDamageEvent cause = this.getLastDamageCause(); diff --git a/src/main/java/cn/nukkit/item/ItemRedstone.java b/src/main/java/cn/nukkit/item/ItemRedstone.java index df9d7130a63..b35824d1cf1 100644 --- a/src/main/java/cn/nukkit/item/ItemRedstone.java +++ b/src/main/java/cn/nukkit/item/ItemRedstone.java @@ -17,7 +17,7 @@ public ItemRedstone(Integer meta) { } public ItemRedstone(Integer meta, int count) { - super(REDSTONE, meta, count, "Redstone"); + super(REDSTONE, meta, count, "Redstone Dust"); this.block = Block.get(BlockID.REDSTONE_WIRE); } diff --git a/src/main/java/cn/nukkit/level/GameRule.java b/src/main/java/cn/nukkit/level/GameRule.java index c4a4c23d67e..d28f4a3862c 100644 --- a/src/main/java/cn/nukkit/level/GameRule.java +++ b/src/main/java/cn/nukkit/level/GameRule.java @@ -1,15 +1,19 @@ package cn.nukkit.level; +import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import java.util.Optional; public enum GameRule { + + COMMAND_BLOCKS_ENABLED("commandBlocksEnabled"), COMMAND_BLOCK_OUTPUT("commandBlockOutput"), DO_DAYLIGHT_CYCLE("doDaylightCycle"), DO_ENTITY_DROPS("doEntityDrops"), DO_FIRE_TICK("doFireTick"), + DO_INSOMNIA("doInsomnia"), DO_IMMEDIATE_RESPAWN("doImmediateRespawn"), DO_MOB_LOOT("doMobLoot"), DO_MOB_SPAWNING("doMobSpawning"), @@ -18,21 +22,25 @@ public enum GameRule { DROWNING_DAMAGE("drowningDamage"), FALL_DAMAGE("fallDamage"), FIRE_DAMAGE("fireDamage"), + @Since("FUTURE") FREEZE_DAMAGE("freezeDamage"), + FUNCTION_COMMAND_LIMIT("functionCommandLimit"), KEEP_INVENTORY("keepInventory"), + MAX_COMMAND_CHAIN_LENGTH("maxCommandChainLength"), MOB_GRIEFING("mobGriefing"), NATURAL_REGENERATION("naturalRegeneration"), PVP("pvp"), RANDOM_TICK_SPEED("randomTickSpeed"), SEND_COMMAND_FEEDBACK("sendCommandFeedback"), SHOW_COORDINATES("showCoordinates"), + @Since("FUTURE") SHOW_DEATH_MESSAGES("showDeathMessages"), + @PowerNukkitOnly @Deprecated + @DeprecationDetails(since = "FUTURE", + reason = "Added by upstream with a different name", + replaceWith = "SHOW_DEATH_MESSAGES") + SHOW_DEATH_MESSAGE(SHOW_DEATH_MESSAGES.name), + SPAWN_RADIUS("spawnRadius"), TNT_EXPLODES("tntExplodes"), - SHOW_DEATH_MESSAGE("showDeathMessages"), EXPERIMENTAL_GAMEPLAY("experimentalGameplay"), - MAX_COMMAND_CHAIN_LENGTH("maxCommandChainLength"), - DO_INSOMNIA("doInsomnia"), - COMMAND_BLOCKS_ENABLED("commandBlocksEnabled"), - FUNCTION_COMMAND_LIMIT("functionCommandLimit"), - SPAWN_RADIUS("spawnRadius"), SHOW_TAGS("showTags"); private final String name; diff --git a/src/main/java/cn/nukkit/level/GameRules.java b/src/main/java/cn/nukkit/level/GameRules.java index e4566e35729..a4cf93fa2c2 100644 --- a/src/main/java/cn/nukkit/level/GameRules.java +++ b/src/main/java/cn/nukkit/level/GameRules.java @@ -25,11 +25,13 @@ private GameRules() { public static GameRules getDefault() { GameRules gameRules = new GameRules(); + gameRules.gameRules.put(COMMAND_BLOCKS_ENABLED, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(COMMAND_BLOCK_OUTPUT, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_DAYLIGHT_CYCLE, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_ENTITY_DROPS, new Value<>(Type.BOOLEAN, true)); - gameRules.gameRules.put(DO_FIRE_TICK, new Value<>(Type.BOOLEAN, true)); - gameRules.gameRules.put(DO_IMMEDIATE_RESPAWN, new Value<>(Type.BOOLEAN, false)); + gameRules.gameRules.put(DO_FIRE_TICK, new Value(Type.BOOLEAN, true)); + gameRules.gameRules.put(DO_INSOMNIA, new Value(Type.BOOLEAN, true)); + gameRules.gameRules.put(DO_IMMEDIATE_RESPAWN, new Value(Type.BOOLEAN, false)); gameRules.gameRules.put(DO_MOB_LOOT, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_MOB_SPAWNING, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_TILE_DROPS, new Value<>(Type.BOOLEAN, true)); @@ -37,21 +39,19 @@ public static GameRules getDefault() { gameRules.gameRules.put(DROWNING_DAMAGE, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(FALL_DAMAGE, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(FIRE_DAMAGE, new Value<>(Type.BOOLEAN, true)); + gameRules.gameRules.put(FREEZE_DAMAGE, new Value<>(Type.BOOLEAN, true)); + gameRules.gameRules.put(FUNCTION_COMMAND_LIMIT, new Value<>(Type.INTEGER, 10000)); gameRules.gameRules.put(KEEP_INVENTORY, new Value<>(Type.BOOLEAN, false)); + gameRules.gameRules.put(MAX_COMMAND_CHAIN_LENGTH, new Value<>(Type.INTEGER, 65536)); gameRules.gameRules.put(MOB_GRIEFING, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(NATURAL_REGENERATION, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(PVP, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(RANDOM_TICK_SPEED, new Value<>(Type.INTEGER, 3)); gameRules.gameRules.put(SEND_COMMAND_FEEDBACK, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(SHOW_COORDINATES, new Value<>(Type.BOOLEAN, false)); - gameRules.gameRules.put(TNT_EXPLODES, new Value<>(Type.BOOLEAN, true)); - gameRules.gameRules.put(SHOW_DEATH_MESSAGE, new Value<>(Type.BOOLEAN, true)); - gameRules.gameRules.put(EXPERIMENTAL_GAMEPLAY, new Value<>(Type.BOOLEAN, false)); - gameRules.gameRules.put(MAX_COMMAND_CHAIN_LENGTH, new Value<>(Type.INTEGER, 131070)); - gameRules.gameRules.put(DO_INSOMNIA, new Value<>(Type.BOOLEAN, true)); - gameRules.gameRules.put(COMMAND_BLOCKS_ENABLED, new Value<>(Type.BOOLEAN, true)); - gameRules.gameRules.put(FUNCTION_COMMAND_LIMIT, new Value<>(Type.INTEGER, 20000)); + gameRules.gameRules.put(SHOW_DEATH_MESSAGES, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(SPAWN_RADIUS, new Value<>(Type.INTEGER, 5)); + gameRules.gameRules.put(TNT_EXPLODES, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(SHOW_TAGS, new Value<>(Type.BOOLEAN, true)); return gameRules; diff --git a/src/main/java/cn/nukkit/network/protocol/AddEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AddEntityPacket.java index aca438392ea..c18a41bd022 100644 --- a/src/main/java/cn/nukkit/network/protocol/AddEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AddEntityPacket.java @@ -123,13 +123,16 @@ public class AddEntityPacket extends DataPacket { .put(EntityRavager.NETWORK_ID, "minecraft:ravager") .put(EntityVillager.NETWORK_ID, "minecraft:villager_v2") .put(EntityZombieVillager.NETWORK_ID, "minecraft:zombie_villager_v2") - .put(121, "minecraft:fox") + .put(EntityFox.NETWORK_ID, "minecraft:fox") .put(EntityBee.NETWORK_ID, "minecraft:bee") .put(EntityPiglin.NETWORK_ID, "minecraft:piglin") .put(EntityHoglin.NETWORK_ID, "minecraft:hoglin") .put(EntityStrider.NETWORK_ID, "minecraft:strider") .put(EntityZoglin.NETWORK_ID, "minecraft:zoglin") .put(EntityPiglinBrute.NETWORK_ID, "minecraft:piglin_brute") + .put(128, "minecraft:goat") + .put(129, "minecraft:glow_squid") + .put(130, "minecraft:axolotl") .build(); @Override From e08ef9a0a04ec321098a174c9cb0321eabe4c2ae Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 16:46:02 -0300 Subject: [PATCH 084/394] #1150 Fixes backward compatibility and experimental_gameplay gamerule. --- .../java/cn/nukkit/command/defaults/GameruleCommand.java | 4 ++++ src/main/java/cn/nukkit/level/GameRules.java | 6 ++++++ src/main/java/cn/nukkit/utils/BinaryStream.java | 6 +++++- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/command/defaults/GameruleCommand.java b/src/main/java/cn/nukkit/command/defaults/GameruleCommand.java index 1015a4cc662..4e287142805 100644 --- a/src/main/java/cn/nukkit/command/defaults/GameruleCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/GameruleCommand.java @@ -29,6 +29,10 @@ public GameruleCommand(String name) { List unknownGameRules = new ArrayList<>(); rules.getGameRules().forEach((rule, value) -> { + //noinspection deprecation + if (rule == GameRule.SHOW_DEATH_MESSAGE) { + return; + } switch (value.getType()) { case BOOLEAN: boolGameRules.add(rule.getName().toLowerCase()); diff --git a/src/main/java/cn/nukkit/level/GameRules.java b/src/main/java/cn/nukkit/level/GameRules.java index a4cf93fa2c2..7063ef9dbfa 100644 --- a/src/main/java/cn/nukkit/level/GameRules.java +++ b/src/main/java/cn/nukkit/level/GameRules.java @@ -50,9 +50,15 @@ public static GameRules getDefault() { gameRules.gameRules.put(SEND_COMMAND_FEEDBACK, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(SHOW_COORDINATES, new Value<>(Type.BOOLEAN, false)); gameRules.gameRules.put(SHOW_DEATH_MESSAGES, new Value<>(Type.BOOLEAN, true)); + + // PN: Backward compatibility + //noinspection deprecation + gameRules.gameRules.put(SHOW_DEATH_MESSAGE, gameRules.gameRules.get(SHOW_DEATH_MESSAGES)); + gameRules.gameRules.put(SPAWN_RADIUS, new Value<>(Type.INTEGER, 5)); gameRules.gameRules.put(TNT_EXPLODES, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(SHOW_TAGS, new Value<>(Type.BOOLEAN, true)); + gameRules.gameRules.put(EXPERIMENTAL_GAMEPLAY, new Value<>(Type.BOOLEAN, false)); return gameRules; } diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index a0437fcdbb2..efc898ba892 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -726,8 +726,12 @@ public void putVector3f(float x, float y, float z) { public void putGameRules(GameRules gameRules) { Map rules = gameRules.getGameRules(); - this.putUnsignedVarInt(rules.size()); + this.putUnsignedVarInt(rules.size() - 1); rules.forEach((gameRule, value) -> { + //noinspection deprecation + if (gameRule == GameRule.SHOW_DEATH_MESSAGE) { + return; + } this.putString(gameRule.getName().toLowerCase()); value.write(this); }); From f548ba4da9f397e672ec261d9c756215ca1ad640 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 16:51:12 -0300 Subject: [PATCH 085/394] #1150 Register goat, glow squid, and axolotl spawn eggs --- src/main/resources/runtime_item_ids.json | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index fd552dabe10..6bd3ab60d61 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -4084,6 +4084,24 @@ "oldId": 383, "oldData": 127 }, + { + "name": "minecraft:goat_spawn_egg", + "id": 499, + "oldId": 383, + "oldData": 128 + }, + { + "name": "minecraft:glow_squid_spawn_egg", + "id": 499, + "oldId": 383, + "oldData": 129 + }, + { + "name": "minecraft:axolotl_spawn_egg", + "id": 499, + "oldId": 383, + "oldData": 130 + }, { "name": "minecraft:experience_bottle", "id": 508, @@ -4679,4 +4697,4 @@ "id": 629, "oldId": 426 } -] \ No newline at end of file +] From e3a5bb5820bf73170605f2a65f9e7ab4b09a8de9 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 16:58:21 -0300 Subject: [PATCH 086/394] Add #1150 to the changelog --- CHANGELOG.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bef9d309a8..bb305a2584d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,17 +14,20 @@ Click the link above to see the future. - [#1107] SnakeYAML version from `1.26` to `1.28` - [#1134] Update the Chinese, Russian, and Turkish translations. Thank you for your contributions! - [#1149] Update the Spanish, and Russian translations. Also improved the message whena plugin is not found. Thank you for your contributions! -- [#783]: Campfire now drop 2 charcoal always -- [#783]: Soul campfire now drops 1 soul sand -- [#783]: Soul campfire now deal double the damage that normal campfires deals -- [#783]: Campfire and Soul campfire now deal damage even the entity is sneaking -- [#783]: Campfire and Soul campfire now breaks when pushed by piston +- [#1150] The `show_death_message` gamerule was renamed to `show_death_messages`. A backward compatibility code will keep the old one working, but it's now deprecated. +- [#783] Campfire now drop 2 charcoal always +- [#783] Soul campfire now drops 1 soul sand +- [#783] Soul campfire now deal double the damage that normal campfires deals +- [#783] Campfire and Soul campfire now deal damage even the entity is sneaking +- [#783] Campfire and Soul campfire now breaks when pushed by piston ### Added - [#1146] Added implementation for `AnimateEntityPacket` -- [#783]: Campfire and Soul Campfire can now be lit by burning entities stepping on it -- [#783]: Campfire and Soul Campfire can now be unlit by throwing a splash water bottle on it -- [#783]: Campfire and Soul Campfire can now lit by using an item enchanted with fire aspect +- [#1150] The `freeze_damage` gamerule +- [#1150] Mappings for Goat, Glow Squid, and Axolotl entities and spawn eggs +- [#783] Campfire and Soul Campfire can now be lit by burning entities stepping on it +- [#783] Campfire and Soul Campfire can now be unlit by throwing a splash water bottle on it +- [#783] Campfire and Soul Campfire can now lit by using an item enchanted with fire aspect ### Fixes - [#1119] `TickSyncPacket` was not registered @@ -887,3 +890,4 @@ Fixes several anvil issues. [#1146]: https://github.com/PowerNukkit/PowerNukkit/issues/1146 [#1147]: https://github.com/PowerNukkit/PowerNukkit/issues/1147 [#1149]: https://github.com/PowerNukkit/PowerNukkit/issues/1149 +[#1150]: https://github.com/PowerNukkit/PowerNukkit/issues/1150 From b85361a5bce9cc3f9f4ddfd60a18198b59adbe73 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 17:14:01 -0300 Subject: [PATCH 087/394] #1150 Fixes the runtime item id mapping for the new mob's spawn eggs --- src/main/resources/runtime_item_ids.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index 6bd3ab60d61..31b47e9f9ee 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -4084,24 +4084,24 @@ "oldId": 383, "oldData": 127 }, + { + "name": "minecraft:axolotl_spawn_egg", + "id": 500, + "oldId": 383, + "oldData": 130 + }, { "name": "minecraft:goat_spawn_egg", - "id": 499, + "id": 501, "oldId": 383, "oldData": 128 }, { "name": "minecraft:glow_squid_spawn_egg", - "id": 499, + "id": 502, "oldId": 383, "oldData": 129 }, - { - "name": "minecraft:axolotl_spawn_egg", - "id": 499, - "oldId": 383, - "oldData": 130 - }, { "name": "minecraft:experience_bottle", "id": 508, From 43506dbc79403ca3da5164401860129ba1955de6 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 18:04:00 -0300 Subject: [PATCH 088/394] Add #1151 to the changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb305a2584d..653f7c0973c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ Click the link above to see the future. - [#1134] Update the Chinese, Russian, and Turkish translations. Thank you for your contributions! - [#1149] Update the Spanish, and Russian translations. Also improved the message whena plugin is not found. Thank you for your contributions! - [#1150] The `show_death_message` gamerule was renamed to `show_death_messages`. A backward compatibility code will keep the old one working, but it's now deprecated. +- [#1151] Improved `/setworldspaw` auto completion - [#783] Campfire now drop 2 charcoal always - [#783] Soul campfire now drops 1 soul sand - [#783] Soul campfire now deal double the damage that normal campfires deals @@ -891,3 +892,4 @@ Fixes several anvil issues. [#1147]: https://github.com/PowerNukkit/PowerNukkit/issues/1147 [#1149]: https://github.com/PowerNukkit/PowerNukkit/issues/1149 [#1150]: https://github.com/PowerNukkit/PowerNukkit/issues/1150 +[#1151]: https://github.com/PowerNukkit/PowerNukkit/issues/1151 From aa6868fb026adb4f2cc80585782c085bac61f19c Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 18:40:59 -0300 Subject: [PATCH 089/394] #669 Improves the entity name system and the output of /kill --- src/main/java/cn/nukkit/Player.java | 8 +++++ .../nukkit/command/defaults/KillCommand.java | 3 +- src/main/java/cn/nukkit/entity/Entity.java | 29 ++++++++++++++++++- .../java/cn/nukkit/entity/EntityHuman.java | 7 +++++ .../entity/item/EntityAreaEffectCloud.java | 6 ++-- .../cn/nukkit/entity/item/EntityBoat.java | 8 +++-- .../nukkit/entity/item/EntityEndCrystal.java | 8 +++-- .../nukkit/entity/item/EntityExpBottle.java | 8 +++-- .../entity/item/EntityFallingBlock.java | 8 +++-- .../cn/nukkit/entity/item/EntityFirework.java | 8 +++-- .../nukkit/entity/item/EntityFishingHook.java | 8 +++-- .../cn/nukkit/entity/item/EntityItem.java | 11 ++++++- .../entity/item/EntityMinecartChest.java | 6 +++- .../entity/item/EntityMinecartEmpty.java | 6 +++- .../entity/item/EntityMinecartHopper.java | 6 +++- .../nukkit/entity/item/EntityMinecartTNT.java | 6 +++- .../cn/nukkit/entity/item/EntityPainting.java | 8 +++-- .../cn/nukkit/entity/item/EntityPotion.java | 8 +++-- .../entity/item/EntityPotionLingering.java | 8 +++-- .../nukkit/entity/item/EntityPrimedTNT.java | 8 +++-- .../cn/nukkit/entity/item/EntityXPOrb.java | 8 +++-- .../cn/nukkit/entity/mob/EntityBlaze.java | 6 +++- .../nukkit/entity/mob/EntityCaveSpider.java | 6 +++- .../cn/nukkit/entity/mob/EntityCreeper.java | 6 +++- .../cn/nukkit/entity/mob/EntityDrowned.java | 6 +++- .../entity/mob/EntityElderGuardian.java | 6 +++- .../nukkit/entity/mob/EntityEnderDragon.java | 5 +++- .../cn/nukkit/entity/mob/EntityEnderman.java | 6 +++- .../cn/nukkit/entity/mob/EntityEndermite.java | 6 +++- .../cn/nukkit/entity/mob/EntityEvoker.java | 6 +++- .../cn/nukkit/entity/mob/EntityGhast.java | 6 +++- .../cn/nukkit/entity/mob/EntityGuardian.java | 6 +++- .../cn/nukkit/entity/mob/EntityHoglin.java | 4 ++- .../java/cn/nukkit/entity/mob/EntityHusk.java | 6 +++- .../cn/nukkit/entity/mob/EntityIronGolem.java | 6 ++-- .../cn/nukkit/entity/mob/EntityMagmaCube.java | 6 +++- .../cn/nukkit/entity/mob/EntityPhantom.java | 6 +++- .../cn/nukkit/entity/mob/EntityPiglin.java | 5 +++- .../nukkit/entity/mob/EntityPiglinBrute.java | 4 ++- .../cn/nukkit/entity/mob/EntityPillager.java | 6 +++- .../cn/nukkit/entity/mob/EntityRavager.java | 6 +++- .../cn/nukkit/entity/mob/EntityShulker.java | 6 +++- .../nukkit/entity/mob/EntitySilverfish.java | 6 +++- .../cn/nukkit/entity/mob/EntitySkeleton.java | 6 +++- .../cn/nukkit/entity/mob/EntitySlime.java | 6 +++- .../cn/nukkit/entity/mob/EntitySnowGolem.java | 5 +++- .../cn/nukkit/entity/mob/EntitySpider.java | 6 +++- .../cn/nukkit/entity/mob/EntityStray.java | 6 +++- .../java/cn/nukkit/entity/mob/EntityVex.java | 6 +++- .../nukkit/entity/mob/EntityVindicator.java | 6 +++- .../cn/nukkit/entity/mob/EntityWitch.java | 6 +++- .../cn/nukkit/entity/mob/EntityWither.java | 6 +++- .../entity/mob/EntityWitherSkeleton.java | 6 +++- .../cn/nukkit/entity/mob/EntityZoglin.java | 4 ++- .../cn/nukkit/entity/mob/EntityZombie.java | 6 +++- .../nukkit/entity/mob/EntityZombiePigman.java | 6 +++- .../entity/mob/EntityZombieVillager.java | 6 +++- .../entity/mob/EntityZombieVillagerV1.java | 6 +++- .../cn/nukkit/entity/passive/EntityBat.java | 8 +++-- .../cn/nukkit/entity/passive/EntityBee.java | 8 +++-- .../cn/nukkit/entity/passive/EntityCat.java | 8 +++-- .../nukkit/entity/passive/EntityChicken.java | 6 +++- .../cn/nukkit/entity/passive/EntityCod.java | 7 ++++- .../cn/nukkit/entity/passive/EntityCow.java | 6 +++- .../nukkit/entity/passive/EntityDolphin.java | 7 ++++- .../nukkit/entity/passive/EntityDonkey.java | 8 +++-- .../cn/nukkit/entity/passive/EntityFox.java | 5 +++- .../cn/nukkit/entity/passive/EntityHorse.java | 8 +++-- .../cn/nukkit/entity/passive/EntityLlama.java | 8 +++-- .../entity/passive/EntityMooshroom.java | 6 +++- .../cn/nukkit/entity/passive/EntityMule.java | 8 +++-- .../entity/passive/EntityNPCEntity.java | 4 ++- .../nukkit/entity/passive/EntityOcelot.java | 6 +++- .../cn/nukkit/entity/passive/EntityPanda.java | 8 +++-- .../nukkit/entity/passive/EntityParrot.java | 7 ++++- .../cn/nukkit/entity/passive/EntityPig.java | 6 +++- .../entity/passive/EntityPolarBear.java | 8 +++-- .../entity/passive/EntityPufferfish.java | 7 ++++- .../nukkit/entity/passive/EntityRabbit.java | 6 +++- .../nukkit/entity/passive/EntitySalmon.java | 7 ++++- .../cn/nukkit/entity/passive/EntitySheep.java | 6 +++- .../entity/passive/EntitySkeletonHorse.java | 8 +++-- .../cn/nukkit/entity/passive/EntitySquid.java | 8 +++-- .../nukkit/entity/passive/EntityStrider.java | 5 +++- .../nukkit/entity/passive/EntityTameable.java | 5 ---- .../entity/passive/EntityTropicalFish.java | 7 ++++- .../nukkit/entity/passive/EntityTurtle.java | 7 ++++- .../nukkit/entity/passive/EntityVillager.java | 6 +++- .../entity/passive/EntityVillagerV1.java | 6 +++- .../entity/passive/EntityWanderingTrader.java | 8 +++-- .../cn/nukkit/entity/passive/EntityWolf.java | 8 +++-- .../entity/passive/EntityZombieHorse.java | 7 +++-- .../nukkit/entity/projectile/EntityArrow.java | 7 +++-- .../nukkit/entity/projectile/EntityEgg.java | 7 +++-- .../entity/projectile/EntityEnderPearl.java | 7 +++-- .../entity/projectile/EntitySnowball.java | 7 +++-- .../projectile/EntityThrownTrident.java | 4 ++- .../entity/weather/EntityLightning.java | 8 +++-- 98 files changed, 500 insertions(+), 162 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 0f759b19036..fb6102e8afe 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -4467,6 +4467,14 @@ public void save(boolean async) { } } + @PowerNukkitOnly + @Since("FUTURE") + @Override + public String getStaticName() { + return "Player"; + } + + @Override public String getName() { return this.username; } diff --git a/src/main/java/cn/nukkit/command/defaults/KillCommand.java b/src/main/java/cn/nukkit/command/defaults/KillCommand.java index 2cd104149a4..be0d9b1768c 100644 --- a/src/main/java/cn/nukkit/command/defaults/KillCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/KillCommand.java @@ -60,8 +60,7 @@ public boolean execute(CommandSender sender, String commandLabel, String[] args) for (Level level : Server.getInstance().getLevels().values()) { for (Entity entity : level.getEntities()) { if (!(entity instanceof Player)) { - if (!entity.getName().isEmpty()) - joiner.add(entity.getName()); + joiner.add(entity.getNonBlankName()); entity.close(); } } diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 25fe0d79f77..ffc44b8ee94 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -36,6 +36,7 @@ import cn.nukkit.potion.Effect; import cn.nukkit.scheduler.Task; import cn.nukkit.utils.ChunkException; +import cn.nukkit.utils.TextFormat; import co.aikar.timings.Timing; import co.aikar.timings.Timings; import co.aikar.timings.TimingsHistory; @@ -1086,12 +1087,38 @@ public void saveNBT() { } } + /** + * The name that actually represent this entity, ignoring name tags. + */ + @PowerNukkitOnly + @Since("FUTURE") + public String getStaticName() { + return this.getSaveId(); + } + + /** + * Similar to {@link #getName()}, but if the name is blank or empty it returns the static name instead. + */ + @PowerNukkitOnly + @Since("FUTURE") + public final String getNonBlankName() { + String name = getName(); + if (!TextFormat.clean(name).trim().isEmpty()) { + return name; + } else { + return getStaticName(); + } + } + + /** + * The current name used by this entity in the name tag, or the static name if the entity don't have nametag. + */ @Nonnull public String getName() { if (this.hasCustomName()) { return this.getNameTag(); } else { - return this.getSaveId(); + return this.getStaticName(); } } diff --git a/src/main/java/cn/nukkit/entity/EntityHuman.java b/src/main/java/cn/nukkit/entity/EntityHuman.java index be3aef46de8..1417744d092 100644 --- a/src/main/java/cn/nukkit/entity/EntityHuman.java +++ b/src/main/java/cn/nukkit/entity/EntityHuman.java @@ -219,6 +219,13 @@ protected void initEntity() { super.initEntity(); } + @PowerNukkitOnly + @Since("FUTURE") + @Override + public String getStaticName() { + return "Human"; + } + @Override public String getName() { return this.getNameTag(); diff --git a/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java b/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java index 38b5153f02d..390122d30ba 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java +++ b/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java @@ -410,9 +410,11 @@ protected float getDrag() { public int getNetworkId() { return NETWORK_ID; } - + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Area Effect Cloud"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityBoat.java b/src/main/java/cn/nukkit/entity/item/EntityBoat.java index 7bf4befb3a7..33d83c3e989 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityBoat.java +++ b/src/main/java/cn/nukkit/entity/item/EntityBoat.java @@ -581,10 +581,12 @@ public void setVariant(int variant) { this.woodID = variant; this.dataProperties.putInt(DATA_VARIANT, variant); } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Boat"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java b/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java index 5f22cf3e965..c2da773a1e7 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java +++ b/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java @@ -109,10 +109,12 @@ public boolean showBase() { public void setShowBase(boolean value) { this.setDataFlag(DATA_FLAGS, DATA_FLAG_SHOWBASE, value); } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Ender Crystal"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java b/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java index 14445b55ce6..fb8cd7f1a4e 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java +++ b/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java @@ -105,10 +105,12 @@ public void dropXp() { protected void addHitEffect() { this.getLevel().addSound(this, Sound.RANDOM_GLASS); } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Bottle o' Enchanting"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java index afd6c059836..fc5f8ce372a 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java @@ -228,10 +228,12 @@ public void saveNBT() { public boolean canBeMovedByCurrents() { return false; } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Falling Block"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityFirework.java b/src/main/java/cn/nukkit/entity/item/EntityFirework.java index 5ed5c12becd..1d61b4b6163 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFirework.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFirework.java @@ -185,10 +185,12 @@ public float getWidth() { public float getHeight() { return 0.25f; } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Firework Rocket"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java index 0036efe7e5c..3dab5b26719 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java @@ -311,10 +311,12 @@ public void onCollideWithEntity(Entity entity) { setDataProperty(new LongEntityData(DATA_TARGET_EID, entity.getId())); } } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Fishing Hook"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityItem.java b/src/main/java/cn/nukkit/entity/item/EntityItem.java index b82c62d98a7..464d738cc54 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityItem.java +++ b/src/main/java/cn/nukkit/entity/item/EntityItem.java @@ -2,6 +2,8 @@ import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.block.BlockID; import cn.nukkit.entity.Entity; import cn.nukkit.event.entity.EntityDamageEvent; @@ -288,9 +290,16 @@ public void saveNBT() { } } + @Since("FUTURE") + @PowerNukkitOnly + @Override + public String getStaticName() { + return "Item"; + } + @Override public String getName() { - return this.hasCustomName() ? this.getNameTag() : (this.item.hasCustomName() ? this.item.getCustomName() : this.item.getName()); + return this.hasCustomName() ? this.getNameTag() : item.count+"x "+(this.item.hasCustomName() ? this.item.getCustomName() : this.item.getName()); } public Item getItem() { diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartChest.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartChest.java index e1e7e4d999b..e12587895c9 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartChest.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartChest.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.item; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.entity.Entity; import cn.nukkit.inventory.InventoryHolder; @@ -28,8 +30,10 @@ public EntityMinecartChest(FullChunk chunk, CompoundTag nbt) { setDisplayBlock(Block.get(Block.CHEST), false); } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return getType().getName(); } diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartEmpty.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartEmpty.java index 3b1b5c46556..5779e392545 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartEmpty.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartEmpty.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.item; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.EntityLiving; import cn.nukkit.entity.passive.EntityWaterAnimal; @@ -25,8 +27,10 @@ public EntityMinecartEmpty(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return getType().getName(); } diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java index 6a76cd09aee..66a21f477bf 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.item; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.entity.Entity; import cn.nukkit.inventory.InventoryHolder; @@ -24,8 +26,10 @@ public EntityMinecartHopper(FullChunk chunk, CompoundTag nbt) { setDisplayBlock(Block.get(Block.HOPPER_BLOCK), false); } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return getType().getName(); } diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java index 04aa51112d0..6e2f5ba7c00 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java @@ -2,6 +2,8 @@ import cn.nukkit.Player; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; import cn.nukkit.entity.Entity; @@ -117,8 +119,10 @@ public void dropItem() { level.dropItem(this, new ItemMinecartTNT()); } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return getType().getName(); } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPainting.java b/src/main/java/cn/nukkit/entity/item/EntityPainting.java index f42a86c5505..15b1a339daa 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPainting.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPainting.java @@ -198,10 +198,12 @@ public enum Motive { this.height = height; } } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Painting"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotion.java b/src/main/java/cn/nukkit/entity/item/EntityPotion.java index 2c1d8b859b8..c14add9e714 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotion.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotion.java @@ -164,10 +164,12 @@ public boolean onUpdate(int currentTick) { this.timing.stopTiming(); return hasUpdate; } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Potion"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java b/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java index e98b0e0334b..60bc46faede 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java @@ -55,10 +55,12 @@ protected void splash(Entity collidedWith) { entity.spawnToAll(); } } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Lingering Potion"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java b/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java index f1f621f8a59..04ed0779b27 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java @@ -180,10 +180,12 @@ public void explode() { public Entity getSource() { return source; } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Block of TNT"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java b/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java index 8b3f5532f09..62a326dbb5c 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java +++ b/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java @@ -266,10 +266,12 @@ public static List splitIntoOrbSizes(int amount) { return result; } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Experience Orb"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java b/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java index 0b258344e6e..ec9cccb8a0a 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -36,8 +38,10 @@ public float getHeight() { return 1.8f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Blaze"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java b/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java index 4bc38c815f4..375b9d3f747 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntityArthropod; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -37,8 +39,10 @@ public float getHeight() { return 0.5f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Cave Spider"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java b/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java index 52bf242f46c..f39f23dfcb3 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.data.ByteEntityData; import cn.nukkit.entity.weather.EntityLightningStrike; @@ -81,8 +83,10 @@ protected void initEntity() { this.setMaxHealth(20); } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Creeper"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java b/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java index 50ea237121a..a757bf2b695 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; @@ -38,8 +40,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Drowned"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java b/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java index a34343ecf58..a2b02d4fd81 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -37,8 +39,10 @@ public float getHeight() { return 1.99f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Elder Guardian"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java b/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java index 362ef07cf0f..571c9159948 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java @@ -2,6 +2,7 @@ import cn.nukkit.Player; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -52,8 +53,10 @@ public boolean applyNameTag(Item item) { return false; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Ender Dragon"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java b/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java index c9a449d7266..d0cbe339656 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -36,8 +38,10 @@ public float getHeight() { return 2.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Enderman"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java b/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java index 8b57d709ce1..5c6443bcdaa 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntityArthropod; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -37,8 +39,10 @@ public float getHeight() { return 0.3f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Endermite"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java b/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java index 36785c37c1c..3e2ab28776a 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -36,8 +38,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Evoker"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityGhast.java b/src/main/java/cn/nukkit/entity/mob/EntityGhast.java index e2c159c8f2c..4181ebf26f5 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityGhast.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityGhast.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.mob; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -35,8 +37,10 @@ public float getHeight() { return 4; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Ghast"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java b/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java index e00caa67e67..88f6f34c245 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -26,8 +28,10 @@ public void initEntity() { this.setMaxHealth(30); } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Guardian"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java b/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java index dc4eb16ab36..0b788044ca9 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java @@ -47,8 +47,10 @@ public float getHeight() { return 0.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Hoglin"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityHusk.java b/src/main/java/cn/nukkit/entity/mob/EntityHusk.java index 3c27c89302f..228c671f0c9 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityHusk.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityHusk.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -37,8 +39,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Husk"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityIronGolem.java b/src/main/java/cn/nukkit/entity/mob/EntityIronGolem.java index 92f23d7a7d3..13c1acd178f 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityIronGolem.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityIronGolem.java @@ -26,7 +26,6 @@ import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; -import javax.annotation.Nonnull; import java.util.concurrent.ThreadLocalRandom; /** @@ -51,9 +50,10 @@ public int getNetworkId() { return NETWORK_ID; } - @Nonnull + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Iron Golem"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityMagmaCube.java b/src/main/java/cn/nukkit/entity/mob/EntityMagmaCube.java index 14e85f22c72..aeae8fc7ec4 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityMagmaCube.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityMagmaCube.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.mob; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -35,8 +37,10 @@ public float getHeight() { return 2.04f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Magma Cube"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java b/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java index 820e46f435e..d55f46662a2 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; @@ -38,8 +40,10 @@ public float getHeight() { return 0.5f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Phantom"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java b/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java index 6e2f1e81c3e..870aa13da23 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java @@ -1,6 +1,7 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.EntityAgeable; @@ -40,8 +41,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Piglin"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java b/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java index 0cfa8101738..1ec5dada8b0 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java @@ -50,8 +50,10 @@ public boolean isPreventingSleep(Player player) { return true; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Piglin Brute"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPillager.java b/src/main/java/cn/nukkit/entity/mob/EntityPillager.java index c05402f8203..fc195a8d3ba 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPillager.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPillager.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -33,8 +35,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Pillager"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityRavager.java b/src/main/java/cn/nukkit/entity/mob/EntityRavager.java index 39c14973e5a..0df48994478 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityRavager.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityRavager.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -33,8 +35,10 @@ public float getWidth() { return 1.2f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Ravager"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityShulker.java b/src/main/java/cn/nukkit/entity/mob/EntityShulker.java index 02e176c1d38..2ac93635c77 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityShulker.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityShulker.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.mob; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -35,8 +37,10 @@ public float getHeight() { return 1f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Shulker"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java b/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java index 8713c5949a1..e8181d64322 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntityArthropod; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -21,8 +23,10 @@ public EntitySilverfish(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Silverfish"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java b/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java index 32aaeb241a7..c8cd01737a9 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; @@ -38,8 +40,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Skeleton"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySlime.java b/src/main/java/cn/nukkit/entity/mob/EntitySlime.java index 34ba44764b2..cddbd70a457 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySlime.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySlime.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.mob; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -36,8 +38,10 @@ public float getHeight() { return 2.04f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Slime"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySnowGolem.java b/src/main/java/cn/nukkit/entity/mob/EntitySnowGolem.java index 2512d9f7c20..683348235d3 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySnowGolem.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySnowGolem.java @@ -1,5 +1,6 @@ package cn.nukkit.entity.mob; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -19,8 +20,10 @@ public int getNetworkId() { return NETWORK_ID; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Snow Golem"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySpider.java b/src/main/java/cn/nukkit/entity/mob/EntitySpider.java index 537f8d02239..7b47006a436 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySpider.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySpider.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntityArthropod; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; @@ -38,8 +40,10 @@ public float getHeight() { return 0.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Spider"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityStray.java b/src/main/java/cn/nukkit/entity/mob/EntityStray.java index ff7aecb53f8..938323153c1 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityStray.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityStray.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; @@ -38,8 +40,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Stray"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityVex.java b/src/main/java/cn/nukkit/entity/mob/EntityVex.java index 6d479124e58..b24ca222422 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityVex.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityVex.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -36,8 +38,10 @@ public float getHeight() { return 0.8f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Vex"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java b/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java index 03d9ef0b7a1..e55537095c2 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -37,8 +39,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Vindicator"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWitch.java b/src/main/java/cn/nukkit/entity/mob/EntityWitch.java index de7766d4a9c..6c1b3ec8b8f 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWitch.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWitch.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -36,8 +38,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Witch"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWither.java b/src/main/java/cn/nukkit/entity/mob/EntityWither.java index 398db9985dd..c11991d125a 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWither.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWither.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -37,8 +39,10 @@ protected void initEntity() { this.setMaxHealth(600); } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Wither"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java b/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java index cb687df8ed8..10ddb0604fa 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -36,8 +38,10 @@ public float getHeight() { return 2.01f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Wither Skeleton"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java b/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java index 0541572d860..032606ccde8 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java @@ -48,8 +48,10 @@ public float getHeight() { return 0.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Zoglin"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombie.java b/src/main/java/cn/nukkit/entity/mob/EntityZombie.java index bfc7e4a8d6b..c0150c44220 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombie.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombie.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -38,8 +40,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Zombie"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java b/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java index 7d4b49dba91..578f7d8d79d 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -37,8 +39,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Zombified Piglin"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java index 3382217fe71..4698601cfc7 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.mob; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -34,8 +36,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Zombie Villager"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java index bf06c34da1b..ddfdd36059e 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.mob; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntitySmite; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -36,8 +38,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Zombie Villager"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityBat.java b/src/main/java/cn/nukkit/entity/passive/EntityBat.java index c41e0b2d269..c028c948c17 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityBat.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityBat.java @@ -36,10 +36,12 @@ public void initEntity() { super.initEntity(); this.setMaxHealth(6); } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Bat"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityBee.java b/src/main/java/cn/nukkit/entity/passive/EntityBee.java index 07645e5b22e..02160764be7 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityBee.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityBee.java @@ -121,10 +121,12 @@ public void leftBeehive(BlockEntityBeehive blockEntityBeehive) { public void setAngry(Player player) { } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Bee"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityCat.java b/src/main/java/cn/nukkit/entity/passive/EntityCat.java index 0065d350b39..52860585edf 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityCat.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityCat.java @@ -39,10 +39,12 @@ public void initEntity() { super.initEntity(); this.setMaxHealth(10); } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Cat"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityChicken.java b/src/main/java/cn/nukkit/entity/passive/EntityChicken.java index 3dd62f09871..da151324f2a 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityChicken.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityChicken.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -31,8 +33,10 @@ public float getHeight() { return 0.8f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Chicken"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityCod.java b/src/main/java/cn/nukkit/entity/passive/EntityCod.java index e4a09151d35..f125fd75e38 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityCod.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityCod.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -19,7 +21,10 @@ public int getNetworkId() { return NETWORK_ID; } - public String getName() { + @PowerNukkitOnly + @Since("FUTURE") + @Override + public String getStaticName() { return "Cod"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityCow.java b/src/main/java/cn/nukkit/entity/passive/EntityCow.java index c1a77a9c8d4..e6136194c68 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityCow.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityCow.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -31,8 +33,10 @@ public float getHeight() { return 1.3f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Cow"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityDolphin.java b/src/main/java/cn/nukkit/entity/passive/EntityDolphin.java index 7a9b1269758..97305ff102f 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityDolphin.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityDolphin.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -20,7 +22,10 @@ public int getNetworkId() { return NETWORK_ID; } - public String getName() { + @PowerNukkitOnly + @Since("FUTURE") + @Override + public String getStaticName() { return "Dolphin"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java b/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java index f354fa689eb..d9950cc6922 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java @@ -48,10 +48,12 @@ public void initEntity() { public Item[] getDrops() { return new Item[]{Item.get(Item.LEATHER)}; } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Donkey"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityFox.java b/src/main/java/cn/nukkit/entity/passive/EntityFox.java index 872a1c4b5b9..dea5ab9573d 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityFox.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityFox.java @@ -1,5 +1,6 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -40,8 +41,10 @@ protected void initEntity() { this.setMaxHealth(20); } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Fox"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityHorse.java b/src/main/java/cn/nukkit/entity/passive/EntityHorse.java index 84b8c461a54..5dd4a7f1aa0 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityHorse.java @@ -48,10 +48,12 @@ public void initEntity() { public Item[] getDrops() { return new Item[]{Item.get(Item.LEATHER)}; } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Horse"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityLlama.java b/src/main/java/cn/nukkit/entity/passive/EntityLlama.java index 8113fea5135..c6ad06d3d8c 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityLlama.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityLlama.java @@ -50,10 +50,12 @@ public void initEntity() { super.initEntity(); this.setMaxHealth(15); } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Llama"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityMooshroom.java b/src/main/java/cn/nukkit/entity/passive/EntityMooshroom.java index 4a4b982c401..8cc2c0ebcf5 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityMooshroom.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityMooshroom.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -31,8 +33,10 @@ public float getHeight() { return 1.3f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Mooshroom"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityMule.java b/src/main/java/cn/nukkit/entity/passive/EntityMule.java index 47aceb36787..3cafe3354e5 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityMule.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityMule.java @@ -48,10 +48,12 @@ public void initEntity() { super.initEntity(); this.setMaxHealth(15); } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Mule"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityNPCEntity.java b/src/main/java/cn/nukkit/entity/passive/EntityNPCEntity.java index 55abc3d242c..9332df672ad 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityNPCEntity.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityNPCEntity.java @@ -49,8 +49,10 @@ public String getInteractButtonText() { return "action.interact.edit"; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "NPC"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityOcelot.java b/src/main/java/cn/nukkit/entity/passive/EntityOcelot.java index 04977a6c425..ccae203f2b0 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityOcelot.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityOcelot.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -31,8 +33,10 @@ public float getHeight() { return 0.7f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Ocelot"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPanda.java b/src/main/java/cn/nukkit/entity/passive/EntityPanda.java index 7d0ec5f1bfd..4b086f7b0d9 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPanda.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPanda.java @@ -33,10 +33,12 @@ public void initEntity() { super.initEntity(); this.setMaxHealth(20); } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Panda"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityParrot.java b/src/main/java/cn/nukkit/entity/passive/EntityParrot.java index 955329a59b8..4f7aacf58d0 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityParrot.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityParrot.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -20,7 +22,10 @@ public int getNetworkId() { return NETWORK_ID; } - public String getName() { + @PowerNukkitOnly + @Since("FUTURE") + @Override + public String getStaticName() { return "Parrot"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPig.java b/src/main/java/cn/nukkit/entity/passive/EntityPig.java index 85b6da5b9df..8b813c5e0ec 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPig.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPig.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -37,8 +39,10 @@ public void initEntity() { this.setMaxHealth(10); } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Pig"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java b/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java index f9fc1dd9646..c301fece0dc 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java @@ -48,10 +48,12 @@ public void initEntity() { public Item[] getDrops() { return new Item[]{Item.get(Item.RAW_FISH), Item.get(Item.RAW_SALMON)}; } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Polar Bear"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPufferfish.java b/src/main/java/cn/nukkit/entity/passive/EntityPufferfish.java index 1a30aceec5e..606174d79c7 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPufferfish.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPufferfish.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -19,7 +21,10 @@ public int getNetworkId() { return NETWORK_ID; } - public String getName() { + @PowerNukkitOnly + @Since("FUTURE") + @Override + public String getStaticName() { return "Pufferfish"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityRabbit.java b/src/main/java/cn/nukkit/entity/passive/EntityRabbit.java index 394b34c6b18..51220641e74 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityRabbit.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityRabbit.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -31,8 +33,10 @@ public float getHeight() { return 0.67f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Rabbit"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySalmon.java b/src/main/java/cn/nukkit/entity/passive/EntitySalmon.java index d29dc648e21..83cfe412088 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySalmon.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySalmon.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -19,7 +21,10 @@ public int getNetworkId() { return NETWORK_ID; } - public String getName() { + @PowerNukkitOnly + @Since("FUTURE") + @Override + public String getStaticName() { return "Salmon"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySheep.java b/src/main/java/cn/nukkit/entity/passive/EntitySheep.java index b0ff618e885..f9259365724 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySheep.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySheep.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.passive; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.data.ByteEntityData; import cn.nukkit.event.entity.EntityDamageByEntityEvent; import cn.nukkit.item.Item; @@ -42,8 +44,10 @@ public float getHeight() { return 1.3f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Sheep"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java b/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java index b24b2734ee4..ce88f511055 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java @@ -48,10 +48,12 @@ public Item[] getDrops() { public boolean isUndead() { return true; } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Skeleton Horse"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySquid.java b/src/main/java/cn/nukkit/entity/passive/EntitySquid.java index b90f33d2e46..3d58cbc40b1 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySquid.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySquid.java @@ -43,10 +43,12 @@ public void initEntity() { public Item[] getDrops() { return new Item[]{MinecraftItemID.INK_SAC.get(1)}; } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Squid"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityStrider.java b/src/main/java/cn/nukkit/entity/passive/EntityStrider.java index 001da949c9b..409edf689a0 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityStrider.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityStrider.java @@ -1,5 +1,6 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -37,8 +38,10 @@ public float getHeight() { return 1.7f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Strider"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityTameable.java b/src/main/java/cn/nukkit/entity/passive/EntityTameable.java index 9499c2a220e..3d355d25426 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityTameable.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityTameable.java @@ -74,11 +74,6 @@ public Player getOwner() { return getServer().getPlayer(getOwnerName()); } - @Override - public String getName() { - return getNameTag(); - } - public boolean isTamed() { return (getDataPropertyByte(DATA_TAMED_FLAG) & 4) != 0; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityTropicalFish.java b/src/main/java/cn/nukkit/entity/passive/EntityTropicalFish.java index 8c6aa42b97a..b2060ddd2d7 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityTropicalFish.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityTropicalFish.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -19,7 +21,10 @@ public int getNetworkId() { return NETWORK_ID; } - public String getName() { + @PowerNukkitOnly + @Since("FUTURE") + @Override + public String getStaticName() { return "Tropical Fish"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java b/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java index 880a2eea793..8c9a30814f8 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.format.FullChunk; import cn.nukkit.math.Vector3; import cn.nukkit.nbt.tag.CompoundTag; @@ -20,7 +22,10 @@ public int getNetworkId() { return NETWORK_ID; } - public String getName() { + @PowerNukkitOnly + @Since("FUTURE") + @Override + public String getStaticName() { return "Turtle"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityVillager.java b/src/main/java/cn/nukkit/entity/passive/EntityVillager.java index f07cae39843..21a1b15469a 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityVillager.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityVillager.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntityAgeable; import cn.nukkit.entity.EntityCreature; import cn.nukkit.level.format.FullChunk; @@ -34,8 +36,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Villager"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityVillagerV1.java b/src/main/java/cn/nukkit/entity/passive/EntityVillagerV1.java index 33aca7df386..c69d38b9c1c 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityVillagerV1.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityVillagerV1.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.EntityAgeable; import cn.nukkit.entity.EntityCreature; @@ -40,8 +42,10 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Villager"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityWanderingTrader.java b/src/main/java/cn/nukkit/entity/passive/EntityWanderingTrader.java index 9b00daf6db1..925d4c8c8df 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityWanderingTrader.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityWanderingTrader.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.EntityCreature; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -21,9 +23,11 @@ public float getWidth() { public float getHeight() { return 1.9f; } - + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Wandering Trader"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityWolf.java b/src/main/java/cn/nukkit/entity/passive/EntityWolf.java index 5c2c6fb6763..1ecc83cf225 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityWolf.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityWolf.java @@ -1,5 +1,7 @@ package cn.nukkit.entity.passive; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; @@ -24,9 +26,11 @@ public float getWidth() { public float getHeight() { return 0.8f; } - + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Wolf"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java b/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java index a21db781616..850242410bb 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java @@ -48,10 +48,11 @@ public Item[] getDrops() { public boolean isUndead() { return true; } - - + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Zombie Horse"; } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java index 6387f005fb1..3a96e28e93b 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java @@ -198,10 +198,11 @@ public int getPickupMode() { public void setPickupMode(int pickupMode) { this.pickupMode = pickupMode; } - - + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Arrow"; } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java b/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java index dd04a302e88..dbaa39da805 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java @@ -79,10 +79,11 @@ protected void addHitEffect() { level.addParticle(new ItemBreakParticle(this, egg)); } } - - + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Egg"; } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java b/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java index 90c6e149905..620b2f78b65 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java @@ -109,10 +109,11 @@ private void teleport() { this.level.addLevelEvent(this, LevelEventPacket.EVENT_PARTICLE_ENDERMAN_TELEPORT); this.level.addLevelEvent(this.shootingEntity.add(0.5, 0.5, 0.5), LevelEventPacket.EVENT_SOUND_PORTAL); } - - + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Ender Pearl"; } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java b/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java index 947a340ad61..107967c14d9 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java @@ -116,10 +116,11 @@ protected void addHitEffect() { Level level = this.level; level.getServer().batchPackets(level.getChunkPlayers(chunkX, chunkZ).values().toArray(Player.EMPTY_ARRAY), allPackets); } - - + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Snowball"; } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index 03c20f6b137..a48baef946e 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -137,8 +137,10 @@ public EntityThrownTrident(FullChunk chunk, CompoundTag nbt, Entity shootingEnti super(chunk, nbt, shootingEntity); } + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Trident"; } diff --git a/src/main/java/cn/nukkit/entity/weather/EntityLightning.java b/src/main/java/cn/nukkit/entity/weather/EntityLightning.java index 9b158f34f41..820a8a768af 100644 --- a/src/main/java/cn/nukkit/entity/weather/EntityLightning.java +++ b/src/main/java/cn/nukkit/entity/weather/EntityLightning.java @@ -150,10 +150,12 @@ public boolean onUpdate(int currentTick) { return true; } - - + + + @PowerNukkitOnly + @Since("FUTURE") @Override - public String getName() { + public String getStaticName() { return "Lightning Bolt"; } } From 9416170fa950faaf1e262c4b04dcedb858a1a9a2 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 19:04:41 -0300 Subject: [PATCH 090/394] Setup sonar --- .github/workflows/sonar.yml | 38 +++++++++++++++++++++++++++++++++++++ pom.xml | 3 +++ 2 files changed, 41 insertions(+) create mode 100644 .github/workflows/sonar.yml diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml new file mode 100644 index 00000000000..ee405125005 --- /dev/null +++ b/.github/workflows/sonar.yml @@ -0,0 +1,38 @@ +name: Sonar +on: + push: + branches: + - master + - bleeding + pull_request: + types: [opened, synchronize, reopened] +jobs: + build: + name: Sonar + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: Set up JDK 11 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Cache SonarCloud packages + uses: actions/cache@v1 + with: + path: ~/.sonar/cache + key: ${{ runner.os }}-sonar + restore-keys: ${{ runner.os }}-sonar + - name: Cache Maven packages + uses: actions/cache@v1 + with: + path: ~/.m2 + key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-m2 + - name: Build and analyze + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar + diff --git a/pom.xml b/pom.xml index c0e7ec600e3..86c2f90ff2f 100644 --- a/pom.xml +++ b/pom.xml @@ -77,6 +77,9 @@ UTF-8 3.9.0 true + PowerNukkit_PowerNukkit + powernukkit + https://sonarcloud.io From 8166a66e249833264a306626e3e66fc3a27a2c68 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 19:17:44 -0300 Subject: [PATCH 091/394] Adjust sonar build --- .github/workflows/sonar.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index ee405125005..f1248725b1f 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -34,5 +34,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar + run: mvn -B verify -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=false org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn From c66f35fcdfc72e7527ed79e7024e881ddcd0d480 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 19:34:44 -0300 Subject: [PATCH 092/394] Fixes a flaky test unit --- .../cn/nukkit/level/format/updater/NewLeafUpdaterTest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/java/cn/nukkit/level/format/updater/NewLeafUpdaterTest.java b/src/test/java/cn/nukkit/level/format/updater/NewLeafUpdaterTest.java index e6bbf0ad097..173a581462c 100644 --- a/src/test/java/cn/nukkit/level/format/updater/NewLeafUpdaterTest.java +++ b/src/test/java/cn/nukkit/level/format/updater/NewLeafUpdaterTest.java @@ -4,10 +4,13 @@ import cn.nukkit.level.format.anvil.ChunkSection; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; import static cn.nukkit.block.BlockID.LEAVES2; import static org.junit.jupiter.api.Assertions.assertEquals; +@ExtendWith(PowerNukkitExtension.class) class NewLeafUpdaterTest { final ChunkSection section = new ChunkSection(0); final int x = 5; From bf69c53a1ba8dc5d3bbe694af7808015f95b8635 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 20:23:37 -0300 Subject: [PATCH 093/394] Attemptmto fix sonar build --- .github/workflows/sonar.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index f1248725b1f..de9b45965f6 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -34,5 +34,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: mvn -B verify -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=false org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn + run: mvn -B test -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=false org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn From 2f1b28d1b3aa9868a86264bd007b3092de6a5ffe Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 20:27:27 -0300 Subject: [PATCH 094/394] Disable tests on sonar builds temporarily --- .github/workflows/sonar.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index de9b45965f6..c26e5aeaea9 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -34,5 +34,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: mvn -B test -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=false org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn + run: mvn -B test -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=true org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn From 83bb53a230824148cc947e546185070bd0303171 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 20:30:59 -0300 Subject: [PATCH 095/394] Changing sonar analysis to java 11 --- .github/workflows/sonar.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index c26e5aeaea9..a2d4589ce43 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -17,7 +17,7 @@ jobs: - name: Set up JDK 11 uses: actions/setup-java@v1 with: - java-version: 1.8 + java-version: 11 - name: Cache SonarCloud packages uses: actions/cache@v1 with: @@ -34,5 +34,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: mvn -B test -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=true org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn + run: mvn -B test -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=true -Denforcer.skip=true --no-transfer-progress org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn From 00029e39d8337aa44c249efc587179e9749e1d0e Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 21:04:09 -0300 Subject: [PATCH 096/394] Enable sonar tests --- .github/workflows/sonar.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index a2d4589ce43..716506a5943 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -34,5 +34,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: mvn -B test -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=true -Denforcer.skip=true --no-transfer-progress org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn + run: mvn -B verify -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=false -Denforcer.skip=true --no-transfer-progress org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn From 80d01bfd7c7d8fb3c9ebd40507d1c1cbb0d8329d Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 21:15:26 -0300 Subject: [PATCH 097/394] Checkout with submodules during the sonar scan --- .github/workflows/sonar.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 716506a5943..7bec4974837 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -11,9 +11,9 @@ jobs: name: Sonar runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v1 with: - fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + submodules: true - name: Set up JDK 11 uses: actions/setup-java@v1 with: From cb7ac0897117c186be827b8ba6bb989a2da72911 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 21:28:35 -0300 Subject: [PATCH 098/394] Add -X to the sonar build step --- .github/workflows/sonar.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 7bec4974837..0b7b3d993a9 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -34,5 +34,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: mvn -B verify -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=false -Denforcer.skip=true --no-transfer-progress org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn + run: mvn -B -X verify -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=false -Denforcer.skip=true --no-transfer-progress org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn From 200b9a76c276c0b56f7b7eff99cdd112f7c2c7c3 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 21:35:27 -0300 Subject: [PATCH 099/394] Make surfire log the stacktraces in console --- .github/workflows/sonar.yml | 2 +- pom.xml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 0b7b3d993a9..7bec4974837 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -34,5 +34,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: mvn -B -X verify -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=false -Denforcer.skip=true --no-transfer-progress org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn + run: mvn -B verify -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=false -Denforcer.skip=true --no-transfer-progress org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn diff --git a/pom.xml b/pom.xml index 6aba045c3b0..ca2bb763722 100644 --- a/pom.xml +++ b/pom.xml @@ -343,6 +343,7 @@ ${skipTests} + false From 37689f047d12e4150f7f93c07380ef579d9d8038 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 21:45:21 -0300 Subject: [PATCH 100/394] Change the timeings map --- src/main/java/co/aikar/timings/TimingsManager.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/co/aikar/timings/TimingsManager.java b/src/main/java/co/aikar/timings/TimingsManager.java index 3622b329cd6..edf38a837e1 100644 --- a/src/main/java/co/aikar/timings/TimingsManager.java +++ b/src/main/java/co/aikar/timings/TimingsManager.java @@ -26,9 +26,10 @@ import cn.nukkit.Server; import java.util.*; +import java.util.concurrent.ConcurrentHashMap; public class TimingsManager { - static final Map TIMING_MAP = Collections.synchronizedMap(new HashMap<>(256, 0.5f)); + static final Map TIMING_MAP = new ConcurrentHashMap<>();//Collections.synchronizedMap(new HashMap<>(256, 0.5f)); static final Queue TIMINGS = new ArrayDeque<>(); static final ArrayDeque MINUTE_REPORTS = new ArrayDeque<>(); From 119f75a88315e277c1f86424fb91dab9b49e5ae1 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 21:55:02 -0300 Subject: [PATCH 101/394] Fix issue with LevelTest --- src/test/java/cn/nukkit/level/LevelTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/java/cn/nukkit/level/LevelTest.java b/src/test/java/cn/nukkit/level/LevelTest.java index 1228f45da84..ab268e1f138 100644 --- a/src/test/java/cn/nukkit/level/LevelTest.java +++ b/src/test/java/cn/nukkit/level/LevelTest.java @@ -10,6 +10,7 @@ import cn.nukkit.level.generator.Flat; import cn.nukkit.math.Vector3; import cn.nukkit.test.LogLevelAdjuster; +import co.aikar.timings.Timings; import org.iq80.leveldb.util.FileUtils; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.AfterEach; @@ -56,6 +57,7 @@ void setUp() throws IOException { levelFolder = new File(server.getDataPath(), "worlds/TestLevel"); String path = levelFolder.getAbsolutePath()+File.separator; Anvil.generate(path, "TestLevel", 0, Flat.class); + Timings.isTimingsEnabled(); // Initialize timings to avoid concurrent updates on initialization level = new Level(server, "TestLevel", path, Anvil.class); level.setAutoSave(true); From d04db1275bc822215818ab55fb96cde002af133f Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 23:32:34 -0300 Subject: [PATCH 102/394] Revert "Change the timeings map" This reverts commit 37689f04 --- src/main/java/co/aikar/timings/TimingsManager.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/co/aikar/timings/TimingsManager.java b/src/main/java/co/aikar/timings/TimingsManager.java index edf38a837e1..3622b329cd6 100644 --- a/src/main/java/co/aikar/timings/TimingsManager.java +++ b/src/main/java/co/aikar/timings/TimingsManager.java @@ -26,10 +26,9 @@ import cn.nukkit.Server; import java.util.*; -import java.util.concurrent.ConcurrentHashMap; public class TimingsManager { - static final Map TIMING_MAP = new ConcurrentHashMap<>();//Collections.synchronizedMap(new HashMap<>(256, 0.5f)); + static final Map TIMING_MAP = Collections.synchronizedMap(new HashMap<>(256, 0.5f)); static final Queue TIMINGS = new ArrayDeque<>(); static final ArrayDeque MINUTE_REPORTS = new ArrayDeque<>(); From 69803d1f37a167f12d0da3631d53a5a42d00afc4 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 24 Jun 2021 23:55:16 -0300 Subject: [PATCH 103/394] Make the project rebuild faster and setup jacoco --- pom.xml | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ca2bb763722..e934c4f216a 100644 --- a/pom.xml +++ b/pom.xml @@ -463,7 +463,7 @@ git dd.MM.yyyy '@' HH:mm:ss z ${user.timezone} - true + false true ${project.build.outputDirectory}/git.properties @@ -507,6 +507,55 @@ + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + + false + + + -Xpkginfo:always + + + + + org.jacoco + jacoco-maven-plugin + 0.8.7 + + + + prepare-agent + + + + report + prepare-package + + report + + + + + From 933e485b651904f89fcf565f6d61486b18b72f23 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 25 Jun 2021 00:04:21 -0300 Subject: [PATCH 104/394] Replicate the sonar configurations from the bleeding branch into master --- .github/workflows/sonar.yml | 7 +++-- pom.xml | 52 ++++++++++++++++++++++++++++++++++++- 2 files changed, 54 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index a2d4589ce43..81d40f6fcf0 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -11,9 +11,9 @@ jobs: name: Sonar runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v1 with: - fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + submodules: true - name: Set up JDK 11 uses: actions/setup-java@v1 with: @@ -34,5 +34,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: mvn -B test -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=true -Denforcer.skip=true --no-transfer-progress org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn - + run: mvn -B verify -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=false -Denforcer.skip=true --no-transfer-progress org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn diff --git a/pom.xml b/pom.xml index 86c2f90ff2f..3bc77750bac 100644 --- a/pom.xml +++ b/pom.xml @@ -343,6 +343,7 @@ ${skipTests} + false @@ -462,7 +463,7 @@ git dd.MM.yyyy '@' HH:mm:ss z ${user.timezone} - true + false true ${project.build.outputDirectory}/git.properties @@ -506,6 +507,55 @@ + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + + false + + + -Xpkginfo:always + + + + + org.jacoco + jacoco-maven-plugin + 0.8.7 + + + + prepare-agent + + + + report + prepare-package + + report + + + + + From e51b6f722d76c5da4c7d0debf83a89859618aad4 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 25 Jun 2021 00:36:32 -0300 Subject: [PATCH 105/394] Fix ConcurrentModificationException in LevelTest --- src/test/java/cn/nukkit/level/LevelTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/java/cn/nukkit/level/LevelTest.java b/src/test/java/cn/nukkit/level/LevelTest.java index 1228f45da84..ab268e1f138 100644 --- a/src/test/java/cn/nukkit/level/LevelTest.java +++ b/src/test/java/cn/nukkit/level/LevelTest.java @@ -10,6 +10,7 @@ import cn.nukkit.level.generator.Flat; import cn.nukkit.math.Vector3; import cn.nukkit.test.LogLevelAdjuster; +import co.aikar.timings.Timings; import org.iq80.leveldb.util.FileUtils; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.AfterEach; @@ -56,6 +57,7 @@ void setUp() throws IOException { levelFolder = new File(server.getDataPath(), "worlds/TestLevel"); String path = levelFolder.getAbsolutePath()+File.separator; Anvil.generate(path, "TestLevel", 0, Flat.class); + Timings.isTimingsEnabled(); // Initialize timings to avoid concurrent updates on initialization level = new Level(server, "TestLevel", path, Anvil.class); level.setAutoSave(true); From d9ccdd2fddc621f20d6ca7f2f5270241b77f66d3 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 25 Jun 2021 12:51:49 -0300 Subject: [PATCH 106/394] Flag BlockNetherBrick as deprecated for being dup of BlockBricksNether --- .../cn/nukkit/api/PowerNukkitDifference.java | 5 +- .../cn/nukkit/block/BlockBricksRedNether.java | 3 +- .../cn/nukkit/block/BlockNetherBrick.java | 61 +++++-------------- 3 files changed, 22 insertions(+), 47 deletions(-) diff --git a/src/main/java/cn/nukkit/api/PowerNukkitDifference.java b/src/main/java/cn/nukkit/api/PowerNukkitDifference.java index 0709c8155f5..d2043fd955b 100644 --- a/src/main/java/cn/nukkit/api/PowerNukkitDifference.java +++ b/src/main/java/cn/nukkit/api/PowerNukkitDifference.java @@ -16,8 +16,11 @@ @Documented @Repeatable(PowerNukkitDifference.DifferenceList.class) public @interface PowerNukkitDifference { - String info(); + String info() default ""; String since() default ""; + + Class extendsOnlyInPowerNukkit() default Void.class; + Class insteadOf() default Void.class; @Retention(RetentionPolicy.CLASS) @Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.ANNOTATION_TYPE, ElementType.TYPE, diff --git a/src/main/java/cn/nukkit/block/BlockBricksRedNether.java b/src/main/java/cn/nukkit/block/BlockBricksRedNether.java index 280aef46beb..2dd041547fc 100644 --- a/src/main/java/cn/nukkit/block/BlockBricksRedNether.java +++ b/src/main/java/cn/nukkit/block/BlockBricksRedNether.java @@ -1,12 +1,13 @@ package cn.nukkit.block; -import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@SuppressWarnings("deprecation") public class BlockBricksRedNether extends BlockNetherBrick { public BlockBricksRedNether() { + // Does nothing } @Override diff --git a/src/main/java/cn/nukkit/block/BlockNetherBrick.java b/src/main/java/cn/nukkit/block/BlockNetherBrick.java index cc336ca4b41..1ad82221193 100644 --- a/src/main/java/cn/nukkit/block/BlockNetherBrick.java +++ b/src/main/java/cn/nukkit/block/BlockNetherBrick.java @@ -1,55 +1,26 @@ package cn.nukkit.block; -import cn.nukkit.item.Item; -import cn.nukkit.item.ItemTool; -import cn.nukkit.utils.BlockColor; +import cn.nukkit.api.DeprecationDetails; +import cn.nukkit.api.PowerNukkitDifference; /** * @author xtypr * @since 2015/12/7 */ -public class BlockNetherBrick extends BlockSolid { - +@Deprecated +@DeprecationDetails(since = "FUTURE", by = "PowerNukkit", + reason = "Duplicated of BlockBricksNether and the other one is used instead of this one.", + replaceWith = "BlockBricksNether" +) +@PowerNukkitDifference(since = "FUTURE", extendsOnlyInPowerNukkit = BlockBricksNether.class, insteadOf = BlockSolid.class) +@SuppressWarnings({"DeprecatedIsStillUsed", "java:S1133"}) +public class BlockNetherBrick extends BlockBricksNether { + @Deprecated + @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", + reason = "Duplicated of BlockBricksNether and the other one is used instead of this one.", + replaceWith = "BlockBricksNether" + ) public BlockNetherBrick() { - } - - @Override - public String getName() { - return "Nether Bricks"; - } - - @Override - public int getId() { - return NETHER_BRICKS; - } - - @Override - public int getToolType() { - return ItemTool.TYPE_PICKAXE; - } - - @Override - public double getHardness() { - return 2; - } - - @Override - public double getResistance() { - return 10; - } - - @Override - public int getToolTier() { - return ItemTool.TIER_WOODEN; - } - - @Override - public BlockColor getColor() { - return BlockColor.NETHERRACK_BLOCK_COLOR; - } - - @Override - public boolean canHarvestWithHand() { - return false; + // Does nothing } } From f5f5ea8cd79fd76eed4f1c9b015ca8b98ce6cdd0 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 25 Jun 2021 14:18:06 -0300 Subject: [PATCH 107/394] Fixes Concurrency issues on static initialization --- src/main/java/cn/nukkit/level/Level.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 9f606fcb95d..564c1d09e53 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -54,8 +54,10 @@ import cn.nukkit.scheduler.BlockUpdateScheduler; import cn.nukkit.timings.LevelTimings; import cn.nukkit.utils.*; +import co.aikar.timings.Timing; import co.aikar.timings.Timings; import co.aikar.timings.TimingsHistory; +import co.aikar.timings.TimingsManager; import com.google.common.base.Preconditions; import it.unimi.dsi.fastutil.ints.Int2IntMap; import it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap; @@ -87,6 +89,10 @@ public class Level implements ChunkManager, Metadatable { @PowerNukkitOnly @Since("1.4.0.0-PN") public static final Level[] EMPTY_ARRAY = new Level[0]; + + static { + Timings.isTimingsEnabled(); // Fixes Concurrency issues on static initialization + } private static int levelIdCounter = 1; private static int chunkLoaderCounter = 1; From c25a95e30499607b941d5d2437b30372bee066fe Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 25 Jun 2021 15:08:28 -0300 Subject: [PATCH 108/394] Add spotbugs analysis --- pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pom.xml b/pom.xml index 3bc77750bac..a7dc4d030c4 100644 --- a/pom.xml +++ b/pom.xml @@ -520,6 +520,20 @@ + + com.github.spotbugs + spotbugs-maven-plugin + 4.2.3 + + + spotbugs + prepare-package + + spotbugs + + + + org.jacoco jacoco-maven-plugin From 4ebce39342db17a72df01efb15cc78885896a04a Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 25 Jun 2021 14:18:06 -0300 Subject: [PATCH 109/394] Fixes Concurrency issues on static initialization --- src/main/java/cn/nukkit/level/Level.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 9a8d7b1fa4a..e8b3a56f5de 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -54,8 +54,10 @@ import cn.nukkit.scheduler.BlockUpdateScheduler; import cn.nukkit.timings.LevelTimings; import cn.nukkit.utils.*; +import co.aikar.timings.Timing; import co.aikar.timings.Timings; import co.aikar.timings.TimingsHistory; +import co.aikar.timings.TimingsManager; import com.google.common.base.Preconditions; import it.unimi.dsi.fastutil.ints.Int2IntMap; import it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap; @@ -87,6 +89,10 @@ public class Level implements ChunkManager, Metadatable { @PowerNukkitOnly @Since("1.4.0.0-PN") public static final Level[] EMPTY_ARRAY = new Level[0]; + + static { + Timings.isTimingsEnabled(); // Fixes Concurrency issues on static initialization + } private static int levelIdCounter = 1; private static int chunkLoaderCounter = 1; From 2a9a03b2216ae9a69680596e5ea272f4a8026f72 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 26 Jun 2021 14:04:22 -0300 Subject: [PATCH 110/394] Reorganize the dumps and docker files --- .idea/codeStyles/Project.xml | 2 +- .travis.yml | 7 -- Jenkinsfile | 60 ------------- Makefile | 85 ------------------- Dockerfile.arm64 => docker_arm64.Dockerfile | 2 +- ...docker_pterodactyl-image-java11.Dockerfile | 0 ... docker_pterodactyl-image-java8.Dockerfile | 0 .../block-id-dump-from-items.properties | 0 .../block-properties.ini | 0 block-states.ini => dumps/block-states.ini | 0 .../item-id-dump.properties | 0 .../runtime_block_states.dat.dump.txt | 0 .../simple-blocks-nukkit.txt | 0 pom.xml | 17 ---- .../nukkit.default.yml | 0 release.Dockerfile | 43 ---------- 16 files changed, 2 insertions(+), 214 deletions(-) delete mode 100644 .travis.yml delete mode 100644 Jenkinsfile delete mode 100644 Makefile rename Dockerfile.arm64 => docker_arm64.Dockerfile (94%) rename pterodactyl-image-java11.Dockerfile => docker_pterodactyl-image-java11.Dockerfile (100%) rename pterodactyl-image-java8.Dockerfile => docker_pterodactyl-image-java8.Dockerfile (100%) rename block-id-dump-from-items.properties => dumps/block-id-dump-from-items.properties (100%) rename block-properties.ini => dumps/block-properties.ini (100%) rename block-states.ini => dumps/block-states.ini (100%) rename item-id-dump.properties => dumps/item-id-dump.properties (100%) rename runtime_block_states.dat.dump.txt => dumps/runtime_block_states.dat.dump.txt (100%) rename simple-blocks-nukkit.txt => dumps/simple-blocks-nukkit.txt (100%) rename nukkit.yml.default => release-script/nukkit.default.yml (100%) delete mode 100644 release.Dockerfile diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml index 1b48798caab..a0a77b1b2f8 100644 --- a/.idea/codeStyles/Project.xml +++ b/.idea/codeStyles/Project.xml @@ -35,4 +35,4 @@ diff --git a/nukkit.yml.default b/release-script/nukkit.default.yml similarity index 100% rename from nukkit.yml.default rename to release-script/nukkit.default.yml diff --git a/release.Dockerfile b/release.Dockerfile deleted file mode 100644 index 02a61ce6955..00000000000 --- a/release.Dockerfile +++ /dev/null @@ -1,43 +0,0 @@ -#FROM ubuntu:20.04 AS build -#RUN apt-get update -yq && DEBIAN_FRONTEND=noninteractive apt-get install -yq git gpg python3 maven openjdk-8-jdk -#RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.cloud.google.com/apt cloud-sdk main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list \ -# && curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key --keyring /usr/share/keyrings/cloud.google.gpg add - \ -# && apt-get update -yq && DEBIAN_FRONTEND=noninteractive apt-get install -yq google-cloud-sdk - -FROM google/cloud-sdk:alpine -RUN apk add --no-cache maven git python3 gnupg openjdk8 - -RUN mkdir -p /secrets && mkdir -p ~/.ssh && echo "github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==" >> ~/.ssh/known_hosts -ARG JSON_PATH -ARG GCLOUD_PROJECT -ARG GCLOUD_GPG_PRIV -ARG GCLOUD_GPG_PRIV_VERSION -ARG GCLOUD_SSH_PRIV -ARG GCLOUD_SSH_PRIV_VERSION -ARG GCLOUD_SSH_PUB -ARG GCLOUD_SSH_PUB_VERSION -COPY ${JSON_PATH} /secrets -RUN gcloud auth activate-service-account --key-file=/secrets/secrets.json \ - && rm /secrets/secrets.json \ - && gcloud config set project ${GCLOUD_PROJECT} \ - && gcloud secrets versions access --secret=${GCLOUD_GPG_PRIV} ${GCLOUD_GPG_PRIV_VERSION} | gpg --import \ - && gcloud secrets versions access --secret=${GCLOUD_SSH_PRIV} ${GCLOUD_SSH_PRIV_VERSION} > ~/.ssh/id_rsa && chmod 0600 ~/.ssh/id_rsa \ - && gcloud secrets versions access --secret=${GCLOUD_SSH_PUB} ${GCLOUD_SSH_PUB_VERSION} > ~/.ssh/id_rsa.pub \ - && eval $(ssh-agent -s) && ssh-add ~/.ssh/id_rsa - - -WORKDIR /src -COPY . /src - -RUN if [ ! -z "$(ls -A /src/src/main/resources/lang)" ]; then git submodule deinit -f src/main/resources/lang; fi && \ - git submodule update --init - -RUN git update-index --skip-worktree release-script/release_config_local.py && \ - echo "use_mvn_wrapper = False" >> release-script/release_config_local.py && \ - echo "run_docker_build = False" >> release-script/release_config_local.py && \ - echo "run_docker_push = False" >> release-script/release_config_local.py && \ - PYTHONUNBUFFERED=1 python3 release-script/release.py - - -# Clear intermediary container -FROM google/cloud-sdk:alpine From ea0de0d69515bcde2bc64e7d19a3be597469f4cd Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 26 Jun 2021 14:21:27 -0300 Subject: [PATCH 111/394] Fix duplicated maven-compiler-plugin declaration --- pom.xml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/pom.xml b/pom.xml index 1dde0407ba5..750ae329906 100644 --- a/pom.xml +++ b/pom.xml @@ -325,10 +325,16 @@ maven-compiler-plugin - 3.1 + 3.8.1 ${maven.compiler.source} ${maven.compiler.target} + + false + + + -Xpkginfo:always + @@ -507,19 +513,6 @@ - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - - false - - - -Xpkginfo:always - - - com.github.spotbugs spotbugs-maven-plugin From db09e9cf65567b6b1758a67b82a794bbd00c2686 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 26 Jun 2021 14:33:32 -0300 Subject: [PATCH 112/394] Fix startup error --- src/main/java/cn/nukkit/Server.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/Server.java b/src/main/java/cn/nukkit/Server.java index 09aa880c560..143f0fae6a2 100644 --- a/src/main/java/cn/nukkit/Server.java +++ b/src/main/java/cn/nukkit/Server.java @@ -242,7 +242,7 @@ public Level remove(Object key) { } }; - private Level[] levelArray = Level.EMPTY_ARRAY; + private Level[] levelArray; private final ServiceManager serviceManager = new NKServiceManager(); @@ -279,6 +279,8 @@ public Level remove(Object key) { throw new IOException("Failed to delete " + tempDir); } instance = this; + config = new Config(); + levelArray = Level.EMPTY_ARRAY; launchTime = System.currentTimeMillis(); BatchPacket batchPacket = new BatchPacket(); batchPacket.payload = EmptyArrays.EMPTY_BYTES; @@ -300,7 +302,6 @@ public Level remove(Object key) { console = new NukkitConsole(this); consoleThread = new ConsoleThread(); - config = new Config(); properties = new Config(); banByName = new BanList(dataPath + "banned-players.json"); banByIP = new BanList(dataPath + "banned-ips.json"); @@ -496,6 +497,7 @@ public Level remove(Object key) { log.info("Loading {} ...", TextFormat.GREEN + "nukkit.yml" + TextFormat.WHITE); this.config = new Config(this.dataPath + "nukkit.yml", Config.YAML); + levelArray = Level.EMPTY_ARRAY; Nukkit.DEBUG = NukkitMath.clamp(this.getConfig("debug.level", 1), 1, 3); From 76ec88f92964c51fe8cc6c81c45407eff526e0c9 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 26 Jun 2021 16:20:43 -0300 Subject: [PATCH 113/394] Add new API methods to get entity ids, add tests for entity names --- .../cn/nukkit/block/BlockBricksRedNether.java | 2 +- src/main/java/cn/nukkit/entity/Entity.java | 47 ++++++++ .../nukkit/entity/item/EntityArmorStand.java | 7 -- .../cn/nukkit/entity/item/EntityItem.java | 8 +- .../cn/nukkit/entity/item/EntityPotion.java | 2 + src/main/java/cn/nukkit/utils/Utils.java | 26 ++++ .../java/cn/nukkit/entity/EntityTest.java | 111 ++++++++++++++++++ 7 files changed, 194 insertions(+), 9 deletions(-) create mode 100644 src/test/java/cn/nukkit/entity/EntityTest.java diff --git a/src/main/java/cn/nukkit/block/BlockBricksRedNether.java b/src/main/java/cn/nukkit/block/BlockBricksRedNether.java index 280aef46beb..c454e3020b5 100644 --- a/src/main/java/cn/nukkit/block/BlockBricksRedNether.java +++ b/src/main/java/cn/nukkit/block/BlockBricksRedNether.java @@ -1,12 +1,12 @@ package cn.nukkit.block; -import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; public class BlockBricksRedNether extends BlockNetherBrick { public BlockBricksRedNether() { + // Does nothing } @Override diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index ffc44b8ee94..77b8dda2c11 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -37,10 +37,13 @@ import cn.nukkit.scheduler.Task; import cn.nukkit.utils.ChunkException; import cn.nukkit.utils.TextFormat; +import cn.nukkit.utils.Utils; import co.aikar.timings.Timing; import co.aikar.timings.Timings; import co.aikar.timings.TimingsHistory; import com.google.common.collect.Iterables; +import it.unimi.dsi.fastutil.ints.IntArrayList; +import it.unimi.dsi.fastutil.ints.IntCollection; import lombok.extern.log4j.Log4j2; import javax.annotation.Nonnull; @@ -998,6 +1001,50 @@ public static boolean registerEntity(String name, Class clazz, shortNames.put(clazz.getSimpleName(), name); return true; } + + @Nonnull + @PowerNukkitOnly + @Since("FUTURE") + public static IntCollection getKnownEntityIds() { + return knownEntities.keySet().stream() + .filter(Utils::isNumeric) + .mapToInt(Integer::parseInt) + .collect(IntArrayList::new, IntArrayList::add, IntArrayList::addAll); + } + + @Nonnull + @PowerNukkitOnly + @Since("FUTURE") + public static List getSaveIds() { + return new ArrayList<>(shortNames.values()); + } + + @Nonnull + @PowerNukkitOnly + @Since("FUTURE") + public static OptionalInt getSaveId(String id) { + Class entityClass = knownEntities.get(id); + if (entityClass == null) { + return OptionalInt.empty(); + } + return knownEntities.entrySet().stream() + .filter(entry -> entry.getValue().equals(entityClass)) + .map(Map.Entry::getKey) + .filter(Utils::isNumeric) + .mapToInt(Integer::parseInt) + .findFirst(); + } + + @Nullable + @PowerNukkitOnly + @Since("FUTURE") + public static String getSaveId(int id) { + Class entityClass = knownEntities.get(Integer.toString(id)); + if (entityClass == null) { + return null; + } + return shortNames.get(entityClass.getSimpleName()); + } @Nonnull public static CompoundTag getDefaultNBT(@Nonnull Vector3 pos) { diff --git a/src/main/java/cn/nukkit/entity/item/EntityArmorStand.java b/src/main/java/cn/nukkit/entity/item/EntityArmorStand.java index 8ab3acdd9ad..c890c8e005f 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityArmorStand.java +++ b/src/main/java/cn/nukkit/entity/item/EntityArmorStand.java @@ -29,7 +29,6 @@ import cn.nukkit.network.protocol.SetEntityDataPacket; import cn.nukkit.potion.Effect; -import javax.annotation.Nonnull; import java.util.Collection; @PowerNukkitOnly @@ -438,12 +437,6 @@ public boolean attack(EntityDamageEvent source) { return true; } - @Nonnull - @Override - public String getName() { - return this.hasCustomName() ? this.getNameTag() : "Armor Stand"; - } - @Override public boolean entityBaseTick(int tickDiff) { boolean hasUpdate = super.entityBaseTick(tickDiff); diff --git a/src/main/java/cn/nukkit/entity/item/EntityItem.java b/src/main/java/cn/nukkit/entity/item/EntityItem.java index 464d738cc54..95dd8c96b9f 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityItem.java +++ b/src/main/java/cn/nukkit/entity/item/EntityItem.java @@ -299,7 +299,13 @@ public String getStaticName() { @Override public String getName() { - return this.hasCustomName() ? this.getNameTag() : item.count+"x "+(this.item.hasCustomName() ? this.item.getCustomName() : this.item.getName()); + if (this.hasCustomName()) { + return getNameTag(); + } + if (item == null) { + return getStaticName(); + } + return item.count + "x " + (this.item.hasCustomName() ? this.item.getCustomName() : this.item.getName()); } public Item getItem() { diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotion.java b/src/main/java/cn/nukkit/entity/item/EntityPotion.java index 07720987aac..c14add9e714 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotion.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotion.java @@ -1,6 +1,8 @@ package cn.nukkit.entity.item; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.projectile.EntityProjectile; import cn.nukkit.event.potion.PotionCollideEvent; diff --git a/src/main/java/cn/nukkit/utils/Utils.java b/src/main/java/cn/nukkit/utils/Utils.java index 05695fb399b..9db54956a7c 100644 --- a/src/main/java/cn/nukkit/utils/Utils.java +++ b/src/main/java/cn/nukkit/utils/Utils.java @@ -418,4 +418,30 @@ public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IO }); } } + + @PowerNukkitOnly + @Since("1.4.0.0-PN") + public static boolean isNumeric(String str) { + if (str == null) { + return false; + } + int length = str.length(); + if (length == 0) { + return false; + } + int i = 0; + if (str.charAt(0) == '-') { + if (length == 1) { + return false; + } + i = 1; + } + for (; i < length; i++) { + char c = str.charAt(i); + if (c < '0' || c > '9') { + return false; + } + } + return true; + } } diff --git a/src/test/java/cn/nukkit/entity/EntityTest.java b/src/test/java/cn/nukkit/entity/EntityTest.java new file mode 100644 index 00000000000..037059f37c7 --- /dev/null +++ b/src/test/java/cn/nukkit/entity/EntityTest.java @@ -0,0 +1,111 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.entity; + +import cn.nukkit.level.Level; +import cn.nukkit.level.format.FullChunk; +import cn.nukkit.math.Vector3; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.extension.ExtendWith; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.MethodSource; +import org.mockito.Mock; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import java.util.Arrays; +import java.util.Objects; +import java.util.stream.Stream; + +import static org.junit.jupiter.api.Assertions.*; +import static org.mockito.Mockito.lenient; + +/** + * @author joserobjr + * @since 2021-06-26 + */ +@ExtendWith(PowerNukkitExtension.class) +class EntityTest { + @MockLevel + Level level; + + @Mock + FullChunk chunk; + + Entity entity; + + @BeforeEach + void setUp() { + lenient().when(chunk.getProvider()).thenReturn(level.getProvider()); + } + + @ParameterizedTest + @MethodSource("getEntityIdStream") + void testNames(String id) { + if (id.equals("Human") && Entity.getSaveId(id).orElse(-1) == -1) { + return; + } + entity = createEntity(id); + assertNotNull(entity, ()-> "Entity " + Entity.getSaveId(id)); + assertNotNull(entity.getStaticName(), "Static Name"); + String staticName = entity.getStaticName(); + assertEquals(staticName, entity.getName()); + assertFalse(entity.hasCustomName(), "Should not have custom"); + assertEquals(entity.getName(), entity.getNonBlankName()); + + if (entity instanceof EntityNameable) { + EntityNameable nameable = (EntityNameable) entity; + nameable.setNameTag("Customized"); + assertTrue(entity.hasCustomName(), "Should have custom"); + assertNotNull(entity.getStaticName(), "Static name should not be null"); + assertEquals(staticName, entity.getStaticName(), "Static name should not change"); + assertEquals("Customized", entity.getName()); + assertNotEquals(entity.getName(), entity.getStaticName()); + + nameable.setNameTag(" "); + assertTrue(entity.hasCustomName()); + assertNotNull(entity.getStaticName()); + assertEquals(" ", entity.getName()); + assertNotEquals(entity.getName(), entity.getStaticName()); + assertEquals(entity.getStaticName(), entity.getNonBlankName()); + } + } + + Entity createEntity(String id) { + return Entity.createEntity(id, chunk, Entity.getDefaultNBT(new Vector3(0, 64, 0))); + } + + static Stream getEntityIdStream() { + return Arrays.stream(Entity.getKnownEntityIds().toIntArray()) + .mapToObj(Entity::getSaveId) + .map(Objects::requireNonNull); + } + + @AfterEach + void tearDown() { + try { + if (entity != null) { + entity.close(); + } + } finally { + entity = null; + } + } +} From 341f42b2b6699cccab8894a241c11f6b1c8ce04d Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 27 Jun 2021 10:26:49 +0900 Subject: [PATCH 114/394] clean import --- src/main/java/cn/nukkit/item/ItemFireCharge.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/item/ItemFireCharge.java b/src/main/java/cn/nukkit/item/ItemFireCharge.java index 7970061c530..3644e44c85f 100644 --- a/src/main/java/cn/nukkit/item/ItemFireCharge.java +++ b/src/main/java/cn/nukkit/item/ItemFireCharge.java @@ -7,12 +7,10 @@ import cn.nukkit.event.block.BlockIgniteEvent; import cn.nukkit.level.Level; import cn.nukkit.level.Sound; -import cn.nukkit.Player; import cn.nukkit.math.BlockFace; +import cn.nukkit.network.protocol.LevelEventPacket; import java.util.concurrent.ThreadLocalRandom; -import cn.nukkit.event.block.BlockIgniteEvent; -import cn.nukkit.network.protocol.LevelEventPacket; /** * @author PetteriM1 From b13eeb7c7b13c0f7cecd58b74dd3492468fd575c Mon Sep 17 00:00:00 2001 From: Woder <17339354+wode490390@users.noreply.github.com> Date: Mon, 28 Jun 2021 00:34:37 +0800 Subject: [PATCH 115/394] Update Sound enum and ParticleEffect enum to 1.17.0 (#1861) --- .../java/cn/nukkit/level/ParticleEffect.java | 9 + src/main/java/cn/nukkit/level/Sound.java | 165 ++++++++++++++++++ 2 files changed, 174 insertions(+) diff --git a/src/main/java/cn/nukkit/level/ParticleEffect.java b/src/main/java/cn/nukkit/level/ParticleEffect.java index 0709fba3999..9d98bcf71bd 100644 --- a/src/main/java/cn/nukkit/level/ParticleEffect.java +++ b/src/main/java/cn/nukkit/level/ParticleEffect.java @@ -30,6 +30,7 @@ public enum ParticleEffect { CONDUIT_ATTACK("minecraft:conduit_attack_emitter"), CRITICAL_HIT("minecraft:critical_hit_emitter"), CROP_GROWTH("minecraft:crop_growth_emitter"), + CROP_GROWTH_AREA("minecraft:crop_growth_area_emitter"), DOLPHIN_MOVE("minecraft:dolphin_move_particle"), DRAGON_BREATH_FIRE("minecraft:dragon_breath_fire"), DRAGON_BREATH_LINGERING("minecraft:dragon_breath_lingering"), @@ -37,6 +38,9 @@ public enum ParticleEffect { DRAGON_DEATH_EXPLOSION("minecraft:dragon_death_explosion_emitter"), DRAGON_DESTROY_BLOCK("minecraft:dragon_destroy_block"), DRAGON_DYING_EXPLOSION("minecraft:dragon_dying_explosion"), + DRIPSTONE_LAVA_DRIP("minecraft:stalactite_lava_drip_particle"), + DRIPSTONE_WATER_DRIP("minecraft:stalactite_water_drip_particle"), + ELECTRIC_SPARK("minecraft:electric_spark_particle"), ENCHANTING_TABLE_PARTICLE("minecraft:enchanting_table_particle"), ENDROD("minecraft:endrod"), END_CHEST("minecraft:end_chest"), @@ -62,6 +66,7 @@ public enum ParticleEffect { FALLING_DUST_TOP_SNOW("minecraft:falling_dust_top_snow_particle"), FISH_HOOK("minecraft:fish_hook_particle"), FISH_POS("minecraft:fish_pos_particle"), + GLOW("minecraft:glow_particle"), GUARDIAN_ATTACK("minecraft:guardian_attack_particle"), GUARDIAN_WATER_MOVE("minecraft:guardian_water_move_particle"), HEART("minecraft:heart_particle"), @@ -101,10 +106,13 @@ public enum ParticleEffect { RISING_BORDER_DUST("minecraft:rising_border_dust_particle"), SHULKER_BULLET("minecraft:shulker_bullet"), SILVERFISH_GRIEF("minecraft:silverfish_grief_emitter"), + SNOWFLAKE("minecraft:snowflake_particle"), SOUL("minecraft:soul_particle"), SPARKLER("minecraft:sparkler_emitter"), SPLASHPOTIONSPELL("minecraft:splash_spell_emitter"), SPONGE_ABSORB_BUBBLE("minecraft:sponge_absorb_water_particle"), + SPORE_BLOSSOM_AMBIENT_BLOCK_ACTOR("minecraft:spore_blossom_ambient_particle"), + SPORE_BLOSSOM_SHOWER("minecraft:spore_blossom_shower_particle"), SQUID_FLEE("minecraft:squid_flee_particle"), SQUID_INK_BUBBLE("minecraft:squid_ink_bubble"), SQUID_MOVE("minecraft:squid_move_particle"), @@ -121,6 +129,7 @@ public enum ParticleEffect { WATER_SPASH_MANUAL("minecraft:water_splash_particle_manual"), WATER_SPLASH("minecraft:water_splash_particle"), WATER_WAKE("minecraft:water_wake_particle"), + WAX("minecraft:wax_particle"), WITHER_BOSS_INVULNERABLE("minecraft:wither_boss_invulnerable"); private final String identifier; diff --git a/src/main/java/cn/nukkit/level/Sound.java b/src/main/java/cn/nukkit/level/Sound.java index 6c0c27cc608..2255a9770ab 100644 --- a/src/main/java/cn/nukkit/level/Sound.java +++ b/src/main/java/cn/nukkit/level/Sound.java @@ -90,6 +90,19 @@ public enum Sound { BLOCK_TURTLE_EGG_CRACK("block.turtle_egg.crack"), BLOCK_TURTLE_EGG_DROP("block.turtle_egg.drop"), BOTTLE_DRAGONBREATH("bottle.dragonbreath"), + BREAK_AMETHYST_BLOCK("break.amethyst_block"), + BREAK_AMETHYST_CLUSTER("break.amethyst_cluster"), + BREAK_AZALEA("break.azalea"), + BREAK_BIG_DRIPLEAF("break.big_dripleaf"), + BREAK_CALCITE("break.calcite"), + BREAK_DRIPSTONE_BLOCK("break.dripstone_block"), + BREAK_HANGING_ROOTS("break.hanging_roots"), + BREAK_LARGE_AMETHYST_BUD("break.large_amethyst_bud"), + BREAK_MEDIUM_AMETHYST_BUD("break.medium_amethyst_bud"), + BREAK_POINTED_DRIPSTONE("break.pointed_dripstone"), + BREAK_SMALL_AMETHYST_BUD("break.small_amethyst_bud"), + BREAK_SPORE_BLOSSOM("break.spore_blossom"), + BREAK_TUFF("break.tuff"), BUBBLE_DOWN("bubble.down"), BUBBLE_DOWNINSIDE("bubble.downinside"), BUBBLE_POP("bubble.pop"), @@ -97,9 +110,11 @@ public enum Sound { BUBBLE_UPINSIDE("bubble.upinside"), BUCKET_EMPTY_FISH("bucket.empty_fish"), BUCKET_EMPTY_LAVA("bucket.empty_lava"), + BUCKET_EMPTY_POWDER_SNOW("bucket.empty_powder_snow"), BUCKET_EMPTY_WATER("bucket.empty_water"), BUCKET_FILL_FISH("bucket.fill_fish"), BUCKET_FILL_LAVA("bucket.fill_lava"), + BUCKET_FILL_POWDER_SNOW("bucket.fill_powder_snow"), BUCKET_FILL_WATER("bucket.fill_water"), CAMERA_TAKE_PICTURE("camera.take_picture"), CAULDRON_ADDDYE("cauldron.adddye"), @@ -111,11 +126,17 @@ public enum Sound { CAULDRON_FILLWATER("cauldron.fillwater"), CAULDRON_TAKEPOTION("cauldron.takepotion"), CAULDRON_TAKEWATER("cauldron.takewater"), + CAULDRON_DRIP_LAVA_POINTED_DRIPSTONE("cauldron_drip.lava.pointed_dripstone"), + CAULDRON_DRIP_WATER_POINTED_DRIPSTONE("cauldron_drip.water.pointed_dripstone"), + CHIME_AMETHYST_BLOCK("chime.amethyst_block"), + COMPONENT_JUMP_TO_BLOCK("component.jump_to_block"), CONDUIT_ACTIVATE("conduit.activate"), CONDUIT_AMBIENT("conduit.ambient"), CONDUIT_ATTACK("conduit.attack"), CONDUIT_DEACTIVATE("conduit.deactivate"), CONDUIT_SHORT("conduit.short"), + COPPER_WAX_OFF("copper.wax.off"), + COPPER_WAX_ON("copper.wax.on"), CROSSBOW_LOADING_END("crossbow.loading.end"), CROSSBOW_LOADING_MIDDLE("crossbow.loading.middle"), CROSSBOW_LOADING_START("crossbow.loading.start"), @@ -126,16 +147,22 @@ public enum Sound { DAMAGE_FALLBIG("damage.fallbig"), DAMAGE_FALLSMALL("damage.fallsmall"), DIG_ANCIENT_DEBRIS("dig.ancient_debris"), + DIG_AZALEA_LEAVES("dig.azalea_leaves"), DIG_BASALT("dig.basalt"), DIG_BONE_BLOCK("dig.bone_block"), + DIG_CAVE_VINES("dig.cave_vines"), DIG_CHAIN("dig.chain"), DIG_CLOTH("dig.cloth"), + DIG_COPPER("dig.copper"), DIG_CORAL("dig.coral"), + DIG_DEEPSLATE("dig.deepslate"), + DIG_DEEPSLATE_BRICKS("dig.deepslate_bricks"), DIG_FUNGUS("dig.fungus"), DIG_GRASS("dig.grass"), DIG_GRAVEL("dig.gravel"), DIG_HONEY_BLOCK("dig.honey_block"), DIG_LODESTONE("dig.lodestone"), + DIG_MOSS("dig.moss"), DIG_NETHER_BRICK("dig.nether_brick"), DIG_NETHER_GOLD_ORE("dig.nether_gold_ore"), DIG_NETHER_SPROUTS("dig.nether_sprouts"), @@ -143,6 +170,7 @@ public enum Sound { DIG_NETHERITE("dig.netherite"), DIG_NETHERRACK("dig.netherrack"), DIG_NYLIUM("dig.nylium"), + DIG_POWDER_SNOW("dig.powder_snow"), DIG_ROOTS("dig.roots"), DIG_SAND("dig.sand"), DIG_SHROOMLIGHT("dig.shroomlight"), @@ -153,19 +181,34 @@ public enum Sound { DIG_STONE("dig.stone"), DIG_VINES("dig.vines"), DIG_WOOD("dig.wood"), + DRIP_LAVA_POINTED_DRIPSTONE("drip.lava.pointed_dripstone"), + DRIP_WATER_POINTED_DRIPSTONE("drip.water.pointed_dripstone"), ELYTRA_LOOP("elytra.loop"), ENTITY_ZOMBIE_CONVERTED_TO_DROWNED("entity.zombie.converted_to_drowned"), + FALL_AMETHYST_BLOCK("fall.amethyst_block"), + FALL_AMETHYST_CLUSTER("fall.amethyst_cluster"), FALL_ANCIENT_DEBRIS("fall.ancient_debris"), + FALL_AZALEA("fall.azalea"), + FALL_AZALEA_LEAVES("fall.azalea_leaves"), FALL_BASALT("fall.basalt"), + FALL_BIG_DRIPLEAF("fall.big_dripleaf"), FALL_BONE_BLOCK("fall.bone_block"), + FALL_CALCITE("fall.calcite"), + FALL_CAVE_VINES("fall.cave_vines"), FALL_CHAIN("fall.chain"), FALL_CLOTH("fall.cloth"), + FALL_COPPER("fall.copper"), FALL_CORAL("fall.coral"), + FALL_DEEPSLATE("fall.deepslate"), + FALL_DEEPSLATE_BRICKS("fall.deepslate_bricks"), + FALL_DRIPSTONE_BLOCK("fall.dripstone_block"), FALL_EGG("fall.egg"), FALL_GRASS("fall.grass"), FALL_GRAVEL("fall.gravel"), + FALL_HANGING_ROOTS("fall.hanging_roots"), FALL_HONEY_BLOCK("fall.honey_block"), FALL_LADDER("fall.ladder"), + FALL_MOSS("fall.moss"), FALL_NETHER_BRICK("fall.nether_brick"), FALL_NETHER_GOLD_ORE("fall.nether_gold_ore"), FALL_NETHER_SPROUTS("fall.nether_sprouts"), @@ -173,6 +216,8 @@ public enum Sound { FALL_NETHERITE("fall.netherite"), FALL_NETHERRACK("fall.netherrack"), FALL_NYLIUM("fall.nylium"), + FALL_POINTED_DRIPSTONE("fall.pointed_dripstone"), + FALL_POWDER_SNOW("fall.powder_snow"), FALL_ROOTS("fall.roots"), FALL_SAND("fall.sand"), FALL_SHROOMLIGHT("fall.shroomlight"), @@ -180,8 +225,10 @@ public enum Sound { FALL_SNOW("fall.snow"), FALL_SOUL_SAND("fall.soul_sand"), FALL_SOUL_SOIL("fall.soul_soil"), + FALL_SPORE_BLOSSOM("fall.spore_blossom"), FALL_STEM("fall.stem"), FALL_STONE("fall.stone"), + FALL_TUFF("fall.tuff"), FALL_VINES("fall.vines"), FALL_WOOD("fall.wood"), FIRE_FIRE("fire.fire"), @@ -195,17 +242,30 @@ public enum Sound { GAME_PLAYER_ATTACK_STRONG("game.player.attack.strong"), GAME_PLAYER_DIE("game.player.die"), GAME_PLAYER_HURT("game.player.hurt"), + HIT_AMETHYST_BLOCK("hit.amethyst_block"), + HIT_AMETHYST_CLUSTER("hit.amethyst_cluster"), HIT_ANCIENT_DEBRIS("hit.ancient_debris"), HIT_ANVIL("hit.anvil"), + HIT_AZALEA("hit.azalea"), + HIT_AZALEA_LEAVES("hit.azalea_leaves"), HIT_BASALT("hit.basalt"), + HIT_BIG_DRIPLEAF("hit.big_dripleaf"), HIT_BONE_BLOCK("hit.bone_block"), + HIT_CALCITE("hit.calcite"), + HIT_CAVE_VINES("hit.cave_vines"), HIT_CHAIN("hit.chain"), HIT_CLOTH("hit.cloth"), + HIT_COPPER("hit.copper"), HIT_CORAL("hit.coral"), + HIT_DEEPSLATE("hit.deepslate"), + HIT_DEEPSLATE_BRICKS("hit.deepslate_bricks"), + HIT_DRIPSTONE_BLOCK("hit.dripstone_block"), HIT_GRASS("hit.grass"), HIT_GRAVEL("hit.gravel"), + HIT_HANGING_ROOTS("hit.hanging_roots"), HIT_HONEY_BLOCK("hit.honey_block"), HIT_LADDER("hit.ladder"), + HIT_MOSS("hit.moss"), HIT_NETHER_BRICK("hit.nether_brick"), HIT_NETHER_GOLD_ORE("hit.nether_gold_ore"), HIT_NETHER_SPROUTS("hit.nether_sprouts"), @@ -213,6 +273,8 @@ public enum Sound { HIT_NETHERITE("hit.netherite"), HIT_NETHERRACK("hit.netherrack"), HIT_NYLIUM("hit.nylium"), + HIT_POINTED_DRIPSTONE("hit.pointed_dripstone"), + HIT_POWDER_SNOW("hit.powder_snow"), HIT_ROOTS("hit.roots"), HIT_SAND("hit.sand"), HIT_SHROOMLIGHT("hit.shroomlight"), @@ -220,13 +282,18 @@ public enum Sound { HIT_SNOW("hit.snow"), HIT_SOUL_SAND("hit.soul_sand"), HIT_SOUL_SOIL("hit.soul_soil"), + HIT_SPORE_BLOSSOM("hit.spore_blossom"), HIT_STEM("hit.stem"), HIT_STONE("hit.stone"), + HIT_TUFF("hit.tuff"), HIT_VINES("hit.vines"), HIT_WOOD("hit.wood"), + ITEM_BONE_MEAL_USE("item.bone_meal.use"), ITEM_BOOK_PAGE_TURN("item.book.page_turn"), ITEM_BOOK_PUT("item.book.put"), ITEM_SHIELD_BLOCK("item.shield.block"), + ITEM_SPYGLASS_STOP_USING("item.spyglass.stop_using"), + ITEM_SPYGLASS_USE("item.spyglass.use"), ITEM_TRIDENT_HIT("item.trident.hit"), ITEM_TRIDENT_HIT_GROUND("item.trident.hit_ground"), ITEM_TRIDENT_RETURN("item.trident.return"), @@ -236,14 +303,22 @@ public enum Sound { ITEM_TRIDENT_THROW("item.trident.throw"), ITEM_TRIDENT_THUNDER("item.trident.thunder"), JUMP_ANCIENT_DEBRIS("jump.ancient_debris"), + JUMP_AZALEA("jump.azalea"), JUMP_BASALT("jump.basalt"), + JUMP_BIG_DRIPLEAF("jump.big_dripleaf"), JUMP_BONE_BLOCK("jump.bone_block"), + JUMP_CAVE_VINES("jump.cave_vines"), JUMP_CHAIN("jump.chain"), JUMP_CLOTH("jump.cloth"), JUMP_CORAL("jump.coral"), + JUMP_DEEPSLATE("jump.deepslate"), + JUMP_DEEPSLATE_BRICKS("jump.deepslate_bricks"), + JUMP_DRIPSTONE_BLOCK("jump.dripstone_block"), JUMP_GRASS("jump.grass"), JUMP_GRAVEL("jump.gravel"), + JUMP_HANGING_ROOTS("jump.hanging_roots"), JUMP_HONEY_BLOCK("jump.honey_block"), + JUMP_MOSS("jump.moss"), JUMP_NETHER_BRICK("jump.nether_brick"), JUMP_NETHER_GOLD_ORE("jump.nether_gold_ore"), JUMP_NETHER_SPROUTS("jump.nether_sprouts"), @@ -251,6 +326,7 @@ public enum Sound { JUMP_NETHERITE("jump.netherite"), JUMP_NETHERRACK("jump.netherrack"), JUMP_NYLIUM("jump.nylium"), + JUMP_POINTED_DRIPSTONE("jump.pointed_dripstone"), JUMP_ROOTS("jump.roots"), JUMP_SAND("jump.sand"), JUMP_SHROOMLIGHT("jump.shroomlight"), @@ -258,19 +334,28 @@ public enum Sound { JUMP_SNOW("jump.snow"), JUMP_SOUL_SAND("jump.soul_sand"), JUMP_SOUL_SOIL("jump.soul_soil"), + JUMP_SPORE_BLOSSOM("jump.spore_blossom"), JUMP_STEM("jump.stem"), JUMP_STONE("jump.stone"), JUMP_VINES("jump.vines"), JUMP_WOOD("jump.wood"), LAND_ANCIENT_DEBRIS("land.ancient_debris"), + LAND_AZALEA("land.azalea"), LAND_BASALT("land.basalt"), + LAND_BIG_DRIPLEAF("land.big_dripleaf"), LAND_BONE_BLOCK("land.bone_block"), + LAND_CAVE_VINES("land.cave_vines"), LAND_CHAIN("land.chain"), LAND_CLOTH("land.cloth"), LAND_CORAL("land.coral"), + LAND_DEEPSLATE("land.deepslate"), + LAND_DEEPSLATE_BRICKS("land.deepslate_bricks"), + LAND_DRIPSTONE_BLOCK("land.dripstone_block"), LAND_GRASS("land.grass"), LAND_GRAVEL("land.gravel"), + LAND_HANGING_ROOTS("land.hanging_roots"), LAND_HONEY_BLOCK("land.honey_block"), + LAND_MOSS("land.moss"), LAND_NETHER_BRICK("land.nether_brick"), LAND_NETHER_GOLD_ORE("land.nether_gold_ore"), LAND_NETHER_SPROUTS("land.nether_sprouts"), @@ -278,6 +363,7 @@ public enum Sound { LAND_NETHERITE("land.netherite"), LAND_NETHERRACK("land.netherrack"), LAND_NYLIUM("land.nylium"), + LAND_POINTED_DRIPSTONE("land.pointed_dripstone"), LAND_ROOTS("land.roots"), LAND_SAND("land.sand"), LAND_SHROOMLIGHT("land.shroomlight"), @@ -285,6 +371,7 @@ public enum Sound { LAND_SNOW("land.snow"), LAND_SOUL_SAND("land.soul_sand"), LAND_SOUL_SOIL("land.soul_soil"), + LAND_SPORE_BLOSSOM("land.spore_blossom"), LAND_STEM("land.stem"), LAND_STONE("land.stone"), LAND_VINES("land.vines"), @@ -302,6 +389,13 @@ public enum Sound { MOB_ARMOR_STAND_HIT("mob.armor_stand.hit"), MOB_ARMOR_STAND_LAND("mob.armor_stand.land"), MOB_ARMOR_STAND_PLACE("mob.armor_stand.place"), + MOB_AXOLOTL_ATTACK("mob.axolotl.attack"), + MOB_AXOLOTL_DEATH("mob.axolotl.death"), + MOB_AXOLOTL_HURT("mob.axolotl.hurt"), + MOB_AXOLOTL_IDLE("mob.axolotl.idle"), + MOB_AXOLOTL_IDLE_WATER("mob.axolotl.idle_water"), + MOB_AXOLOTL_SPLASH("mob.axolotl.splash"), + MOB_AXOLOTL_SWIM("mob.axolotl.swim"), MOB_BAT_DEATH("mob.bat.death"), MOB_BAT_HURT("mob.bat.hurt"), MOB_BAT_IDLE("mob.bat.idle"), @@ -400,6 +494,23 @@ public enum Sound { MOB_GHAST_FIREBALL("mob.ghast.fireball"), MOB_GHAST_MOAN("mob.ghast.moan"), MOB_GHAST_SCREAM("mob.ghast.scream"), + MOB_GLOW_SQUID_AMBIENT("mob.glow_squid.ambient"), + MOB_GLOW_SQUID_DEATH("mob.glow_squid.death"), + MOB_GLOW_SQUID_HURT("mob.glow_squid.hurt"), + MOB_GLOW_SQUID_INK_SQUIRT("mob.glow_squid.ink_squirt"), + MOB_GOAT_AMBIENT("mob.goat.ambient"), + MOB_GOAT_AMBIENT_SCREAMER("mob.goat.ambient.screamer"), + MOB_GOAT_DEATH("mob.goat.death"), + MOB_GOAT_DEATH_SCREAMER("mob.goat.death.screamer"), + MOB_GOAT_EAT("mob.goat.eat"), + MOB_GOAT_HURT("mob.goat.hurt"), + MOB_GOAT_HURT_SCREAMER("mob.goat.hurt.screamer"), + MOB_GOAT_MILK_SCREAMER("mob.goat.milk.screamer"), + MOB_GOAT_PREPARE_RAM("mob.goat.prepare_ram"), + MOB_GOAT_PREPARE_RAM_SCREAMER("mob.goat.prepare_ram.screamer"), + MOB_GOAT_RAM_IMPACT("mob.goat.ram_impact"), + MOB_GOAT_RAM_IMPACT_SCREAMER("mob.goat.ram_impact.screamer"), + MOB_GOAT_STEP("mob.goat.step"), MOB_GUARDIAN_AMBIENT("mob.guardian.ambient"), MOB_GUARDIAN_ATTACK_LOOP("mob.guardian.attack_loop"), MOB_GUARDIAN_DEATH("mob.guardian.death"), @@ -511,6 +622,9 @@ public enum Sound { MOB_PILLAGER_DEATH("mob.pillager.death"), MOB_PILLAGER_HURT("mob.pillager.hurt"), MOB_PILLAGER_IDLE("mob.pillager.idle"), + MOB_PLAYER_HURT_DROWN("mob.player.hurt_drown"), + MOB_PLAYER_HURT_FREEZE("mob.player.hurt_freeze"), + MOB_PLAYER_HURT_ON_FIRE("mob.player.hurt_on_fire"), MOB_POLARBEAR_DEATH("mob.polarbear.death"), MOB_POLARBEAR_HURT("mob.polarbear.hurt"), MOB_POLARBEAR_IDLE("mob.polarbear.idle"), @@ -545,6 +659,7 @@ public enum Sound { MOB_SILVERFISH_KILL("mob.silverfish.kill"), MOB_SILVERFISH_SAY("mob.silverfish.say"), MOB_SILVERFISH_STEP("mob.silverfish.step"), + MOB_SKELETON_CONVERT_TO_STRAY("mob.skeleton.convert_to_stray"), MOB_SKELETON_DEATH("mob.skeleton.death"), MOB_SKELETON_HURT("mob.skeleton.hurt"), MOB_SKELETON_SAY("mob.skeleton.say"), @@ -565,6 +680,7 @@ public enum Sound { MOB_SQUID_AMBIENT("mob.squid.ambient"), MOB_SQUID_DEATH("mob.squid.death"), MOB_SQUID_HURT("mob.squid.hurt"), + MOB_SQUID_INK_SQUIRT("mob.squid.ink_squirt"), MOB_STRAY_AMBIENT("mob.stray.ambient"), MOB_STRAY_DEATH("mob.stray.death"), MOB_STRAY_HURT("mob.stray.hurt"), @@ -680,6 +796,26 @@ public enum Sound { NOTE_SNARE("note.snare"), NOTE_XYLOPHONE("note.xylophone"), PARTICLE_SOUL_ESCAPE("particle.soul_escape"), + PICK_BERRIES_CAVE_VINES("pick_berries.cave_vines"), + PLACE_AMETHYST_BLOCK("place.amethyst_block"), + PLACE_AMETHYST_CLUSTER("place.amethyst_cluster"), + PLACE_AZALEA("place.azalea"), + PLACE_AZALEA_LEAVES("place.azalea_leaves"), + PLACE_BIG_DRIPLEAF("place.big_dripleaf"), + PLACE_CALCITE("place.calcite"), + PLACE_COPPER("place.copper"), + PLACE_DEEPSLATE("place.deepslate"), + PLACE_DEEPSLATE_BRICKS("place.deepslate_bricks"), + PLACE_DRIPSTONE_BLOCK("place.dripstone_block"), + PLACE_HANGING_ROOTS("place.hanging_roots"), + PLACE_LARGE_AMETHYST_BUD("place.large_amethyst_bud"), + PLACE_MEDIUM_AMETHYST_BUD("place.medium_amethyst_bud"), + PLACE_MOSS("place.moss"), + PLACE_POINTED_DRIPSTONE("place.pointed_dripstone"), + PLACE_POWDER_SNOW("place.powder_snow"), + PLACE_SMALL_AMETHYST_BUD("place.small_amethyst_bud"), + PLACE_SPORE_BLOSSOM("place.spore_blossom"), + PLACE_TUFF("place.tuff"), PORTAL_PORTAL("portal.portal"), PORTAL_TRAVEL("portal.travel"), PORTAL_TRIGGER("portal.trigger"), @@ -735,19 +871,33 @@ public enum Sound { RESPAWN_ANCHOR_CHARGE("respawn_anchor.charge"), RESPAWN_ANCHOR_DEPLETE("respawn_anchor.deplete"), RESPAWN_ANCHOR_SET_SPAWN("respawn_anchor.set_spawn"), + SCRAPE("scrape"), SIGN_DYE_USE("sign.dye.use"), SIGN_INK_SAC_USE("sign.ink_sac.use"), SMITHING_TABLE_USE("smithing_table.use"), + STEP_AMETHYST_BLOCK("step.amethyst_block"), + STEP_AMETHYST_CLUSTER("step.amethyst_cluster"), STEP_ANCIENT_DEBRIS("step.ancient_debris"), + STEP_AZALEA("step.azalea"), + STEP_AZALEA_LEAVES("step.azalea_leaves"), STEP_BASALT("step.basalt"), + STEP_BIG_DRIPLEAF("step.big_dripleaf"), STEP_BONE_BLOCK("step.bone_block"), + STEP_CALCITE("step.calcite"), + STEP_CAVE_VINES("step.cave_vines"), STEP_CHAIN("step.chain"), STEP_CLOTH("step.cloth"), + STEP_COPPER("step.copper"), STEP_CORAL("step.coral"), + STEP_DEEPSLATE("step.deepslate"), + STEP_DEEPSLATE_BRICKS("step.deepslate_bricks"), + STEP_DRIPSTONE_BLOCK("step.dripstone_block"), STEP_GRASS("step.grass"), STEP_GRAVEL("step.gravel"), + STEP_HANGING_ROOTS("step.hanging_roots"), STEP_HONEY_BLOCK("step.honey_block"), STEP_LADDER("step.ladder"), + STEP_MOSS("step.moss"), STEP_NETHER_BRICK("step.nether_brick"), STEP_NETHER_GOLD_ORE("step.nether_gold_ore"), STEP_NETHER_SPROUTS("step.nether_sprouts"), @@ -755,6 +905,8 @@ public enum Sound { STEP_NETHERITE("step.netherite"), STEP_NETHERRACK("step.netherrack"), STEP_NYLIUM("step.nylium"), + STEP_POINTED_DRIPSTONE("step.pointed_dripstone"), + STEP_POWDER_SNOW("step.powder_snow"), STEP_ROOTS("step.roots"), STEP_SAND("step.sand"), STEP_SHROOMLIGHT("step.shroomlight"), @@ -762,12 +914,16 @@ public enum Sound { STEP_SNOW("step.snow"), STEP_SOUL_SAND("step.soul_sand"), STEP_SOUL_SOIL("step.soul_soil"), + STEP_SPORE_BLOSSOM("step.spore_blossom"), STEP_STEM("step.stem"), STEP_STONE("step.stone"), + STEP_TUFF("step.tuff"), STEP_VINES("step.vines"), STEP_WOOD("step.wood"), TILE_PISTON_IN("tile.piston.in"), TILE_PISTON_OUT("tile.piston.out"), + TILT_DOWN_BIG_DRIPLEAF("tilt_down.big_dripleaf"), + TILT_UP_BIG_DRIPLEAF("tilt_up.big_dripleaf"), UI_CARTOGRAPHY_TABLE_TAKE_RESULT("ui.cartography_table.take_result"), UI_LOOM_SELECT_PATTERN("ui.loom.select_pattern"), UI_LOOM_TAKE_RESULT("ui.loom.take_result"), @@ -775,13 +931,20 @@ public enum Sound { USE_ANCIENT_DEBRIS("use.ancient_debris"), USE_BASALT("use.basalt"), USE_BONE_BLOCK("use.bone_block"), + USE_CAVE_VINES("use.cave_vines"), USE_CHAIN("use.chain"), USE_CLOTH("use.cloth"), + USE_COPPER("use.copper"), USE_CORAL("use.coral"), + USE_DEEPSLATE("use.deepslate"), + USE_DEEPSLATE_BRICKS("use.deepslate_bricks"), + USE_DRIPSTONE_BLOCK("use.dripstone_block"), USE_GRASS("use.grass"), USE_GRAVEL("use.gravel"), + USE_HANGING_ROOTS("use.hanging_roots"), USE_HONEY_BLOCK("use.honey_block"), USE_LADDER("use.ladder"), + USE_MOSS("use.moss"), USE_NETHER_BRICK("use.nether_brick"), USE_NETHER_GOLD_ORE("use.nether_gold_ore"), USE_NETHER_SPROUTS("use.nether_sprouts"), @@ -789,6 +952,7 @@ public enum Sound { USE_NETHERITE("use.netherite"), USE_NETHERRACK("use.netherrack"), USE_NYLIUM("use.nylium"), + USE_POINTED_DRIPSTONE("use.pointed_dripstone"), USE_ROOTS("use.roots"), USE_SAND("use.sand"), USE_SHROOMLIGHT("use.shroomlight"), @@ -796,6 +960,7 @@ public enum Sound { USE_SNOW("use.snow"), USE_SOUL_SAND("use.soul_sand"), USE_SOUL_SOIL("use.soul_soil"), + USE_SPORE_BLOSSOM("use.spore_blossom"), USE_STEM("use.stem"), USE_STONE("use.stone"), USE_VINES("use.vines"), From 1a0cff5df608e5dc727e2e62b5e226d69d3b662b Mon Sep 17 00:00:00 2001 From: Braayy Date: Tue, 29 Jun 2021 12:05:47 -0300 Subject: [PATCH 116/394] fix: cobwebs are now breakable by using shears --- src/main/java/cn/nukkit/block/Block.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index 7d26d32774f..a7ba428d7d2 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -1268,7 +1268,7 @@ private static int toolType0(Item item, int blockId) { return ItemTool.TYPE_NONE; } - @PowerNukkitDifference(info = "Special condition for the leaves", since = "1.4.0.0-PN") + @PowerNukkitDifference(info = "Special condition for the leaves and cobweb", since = "1.4.0.0-PN") private static boolean correctTool0(int blockToolType, Item item, int blockId) { if((blockId == LEAVES && item.isHoe()) || (blockId == LEAVES2 && item.isHoe())){ @@ -1281,7 +1281,8 @@ private static boolean correctTool0(int blockToolType, Item item, int blockId) { (blockToolType == ItemTool.TYPE_AXE && item.isAxe()) || (blockToolType == ItemTool.TYPE_HOE && item.isHoe()) || (blockToolType == ItemTool.TYPE_SHEARS && item.isShears()) || - blockToolType == ItemTool.TYPE_NONE; + blockToolType == ItemTool.TYPE_NONE || + (blockId == COBWEB && item.isShears()); } //http://minecraft.gamepedia.com/Breaking From 94c859e4ca96250a554fa37d49b84f999cbf9502 Mon Sep 17 00:00:00 2001 From: blohnungde <35181949+belohnung@users.noreply.github.com> Date: Tue, 29 Jun 2021 22:07:15 +0200 Subject: [PATCH 117/394] Add setters to Vector3, Vector3f, BlockVector3 and updated Documentation (#1858) --- .../java/cn/nukkit/math/BlockVector3.java | 15 +++++ src/main/java/cn/nukkit/math/Vector3.java | 43 +++++++++++++ src/main/java/cn/nukkit/math/Vector3f.java | 60 ++++++++++++++++++- 3 files changed, 115 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/math/BlockVector3.java b/src/main/java/cn/nukkit/math/BlockVector3.java index 77a58320f46..696419bcf8f 100644 --- a/src/main/java/cn/nukkit/math/BlockVector3.java +++ b/src/main/java/cn/nukkit/math/BlockVector3.java @@ -33,6 +33,21 @@ public int getZ() { return this.z; } + public BlockVector3 setX(int x) { + this.x = x; + return this; + } + + public BlockVector3 setY(int y) { + this.y = y; + return this; + } + + public BlockVector3 setZ(int z) { + this.z = z; + return this; + } + public Vector3 add(double x) { return this.add(x, 0, 0); } diff --git a/src/main/java/cn/nukkit/math/Vector3.java b/src/main/java/cn/nukkit/math/Vector3.java index 1b551e3e232..7c6eb3978e7 100644 --- a/src/main/java/cn/nukkit/math/Vector3.java +++ b/src/main/java/cn/nukkit/math/Vector3.java @@ -40,6 +40,22 @@ public double getZ() { return this.z; } + public Vector3 setX(double x) { + this.x = x; + return this; + } + + public Vector3 setY(double y) { + this.y = y; + return this; + } + + public Vector3 setZ(double z) { + this.z = z; + return this; + } + + public int getFloorX() { return (int) Math.floor(this.x); } @@ -224,6 +240,11 @@ public double maxPlainDistance(Vector3 x) { return this.maxPlainDistance(x.x, x.z); } + /** + * Calculates the Length of this Vector + * + * @return The Length of this Vector. + */ public double length() { return Math.sqrt(this.lengthSquared()); } @@ -240,10 +261,22 @@ public Vector3 normalize() { return new Vector3(0, 0, 0); } + /** + * Scalar Product of this Vector and the Vector supplied. + * + * @param v Vector to calculate the scalar product to. + * @return Scalar Product + */ public double dot(Vector3 v) { return this.x * v.x + this.y * v.y + this.z * v.z; } + /** + * Calculates the cross product of this Vector and the given Vector + * + * @param v the vector to calculate the cross product with. + * @return a Vector at right angle to this and other + */ public Vector3 cross(Vector3 v) { return new Vector3( this.y * v.z - this.z * v.y, @@ -252,6 +285,16 @@ public Vector3 cross(Vector3 v) { ); } + /** + * Calculates the angle between this and the supplied Vector. + * + * @param v the Vector to calculate the angle to. + * @return the Angle between the two Vectors. + */ + public Angle angleBetween(Vector3 v) { + return Angle.fromRadian(Math.acos(Math.min(Math.max(this.normalize().dot(v.normalize()), -1.0d), 1.0d))); + } + /** * Returns a new vector with x value equal to the second parameter, along the line between this vector and the * passed in vector, or null if not possible. diff --git a/src/main/java/cn/nukkit/math/Vector3f.java b/src/main/java/cn/nukkit/math/Vector3f.java index 106f0044ed2..ce466ce673a 100644 --- a/src/main/java/cn/nukkit/math/Vector3f.java +++ b/src/main/java/cn/nukkit/math/Vector3f.java @@ -42,6 +42,21 @@ public float getZ() { return this.z; } + public Vector3f setX(float x) { + this.x = x; + return this; + } + + public Vector3f setY(float y) { + this.y = y; + return this; + } + + public Vector3f setZ(float z) { + this.z = z; + return this; + } + public int getFloorX() { return NukkitMath.floorFloat(this.x); } @@ -204,6 +219,11 @@ public float maxPlainDistance(Vector3f x) { return this.maxPlainDistance(x.x, x.z); } + /** + * Calculates the Length of this Vector + * + * @return The Length of this Vector. + */ public double length() { return Math.sqrt(this.lengthSquared()); } @@ -220,10 +240,22 @@ public Vector3f normalize() { return new Vector3f(0, 0, 0); } + /** + * Scalar Product of this Vector and the Vector supplied. + * + * @param v Vector to calculate the scalar product to. + * @return Scalar Product + */ public float dot(Vector3f v) { return this.x * v.x + this.y * v.y + this.z * v.z; } + /** + * Calculates the cross product of this Vector and the given Vector + * + * @param v the vector to calculate the cross product with. + * @return a Vector at right angle to this and other + */ public Vector3f cross(Vector3f v) { return new Vector3f( this.y * v.z - this.z * v.y, @@ -232,9 +264,23 @@ public Vector3f cross(Vector3f v) { ); } - /* + /** + * Calculates the angle between this and the supplied Vector. + * + * @param v the Vector to calculate the angle to. + * @return the Angle between the two Vectors. + */ + public Angle angleBetween(Vector3f v) { + return Angle.fromRadian(Math.acos(Math.min(Math.max(this.normalize().dot(v.normalize()), -1.0f), 1.0f))); + } + + /** * Returns a new vector with x value equal to the second parameter, along the line between this vector and the * passed in vector, or null if not possible. + * + * @param v vector + * @param x x value + * @return intermediate vector */ public Vector3f getIntermediateWithXValue(Vector3f v, float x) { float xDiff = v.x - this.x; @@ -251,9 +297,13 @@ public Vector3f getIntermediateWithXValue(Vector3f v, float x) { } } - /* + /** * Returns a new vector with y value equal to the second parameter, along the line between this vector and the * passed in vector, or null if not possible. + * + * @param v vector + * @param y y value + * @return intermediate vector */ public Vector3f getIntermediateWithYValue(Vector3f v, float y) { float xDiff = v.x - this.x; @@ -270,9 +320,13 @@ public Vector3f getIntermediateWithYValue(Vector3f v, float y) { } } - /* + /** * Returns a new vector with z value equal to the second parameter, along the line between this vector and the * passed in vector, or null if not possible. + * + * @param v vector + * @param z z value + * @return intermediate vector */ public Vector3f getIntermediateWithZValue(Vector3f v, float z) { float xDiff = v.x - this.x; From eebcb71e6d2c96b61dfe9fc11c7fe9ffb2fdfed8 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 29 Jun 2021 17:09:06 -0300 Subject: [PATCH 118/394] Add #1170 to the changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 653f7c0973c..07354b1f087 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ Click the link above to see the future. - [#1130] Soul Campfire and End Crystal were rendering as other items in the inventory - [#1139] Backward compatibility with some custom world generators - [#1147] Sharpness damage calculation +- [#1170] Cobwebs are now breakable by using shears - [#702] Burning arrow and rain will make a lot of particles - [#625] If you instant kill a mob with fire aspect enchant tool, it will not give fire aspect drops - [#979] Fixes an issue where the players could not hear each other walking @@ -893,3 +894,4 @@ Fixes several anvil issues. [#1149]: https://github.com/PowerNukkit/PowerNukkit/issues/1149 [#1150]: https://github.com/PowerNukkit/PowerNukkit/issues/1150 [#1151]: https://github.com/PowerNukkit/PowerNukkit/issues/1151 +[#1170]: https://github.com/PowerNukkit/PowerNukkit/issues/1170 From cf7a94296f55d4fef1257d093d98320a09abd873 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 29 Jun 2021 19:48:25 -0300 Subject: [PATCH 119/394] Setup the maven-site plugin --- CHANGELOG.md | 2 +- README.md | 25 +++-- docker-compose.yml | 2 +- pom.xml | 100 ++++++++++++++++++- release-script/jdiff-javadoc.bat | 64 ++++++++++++ release-script/release.py | 6 +- release-script/setup-secrets.sh | 21 ---- src/site/apt/LICENSE.apt.vm | 3 + src/site/resources/css/site.css | 22 ++++ src/site/resources/img/powernukkit-small.png | Bin 0 -> 7578 bytes src/site/resources/js/redirect.js | 19 ++++ src/site/site.xml | 81 +++++++++++++++ src/site/xhtml/index.xhtml | 30 ++++++ 13 files changed, 338 insertions(+), 37 deletions(-) create mode 100644 release-script/jdiff-javadoc.bat delete mode 100644 release-script/setup-secrets.sh create mode 100644 src/site/apt/LICENSE.apt.vm create mode 100644 src/site/resources/css/site.css create mode 100644 src/site/resources/img/powernukkit-small.png create mode 100644 src/site/resources/js/redirect.js create mode 100644 src/site/site.xml create mode 100644 src/site/xhtml/index.xhtml diff --git a/CHANGELOG.md b/CHANGELOG.md index de074aaa686..f29c5e81e3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -570,7 +570,7 @@ Fixes several anvil issues. ### Changed - Make BlockLectern implements Faceable -- The versioning convention now follows this pattern:
`upstream.major.minor.patch-PN`
[Click here for details.](https://github.com/PowerNukkit/PowerNukkit/blob/7912aa4be68e94a52762361c2d5189b7bbc58d2a/pom.xml#L8-L14) +- The versioning convention now follows this pattern:
`upstream.major.minor.patch-PN`
[Click here for details.](https://github.com/PowerNukkit/PowerNukkit/blob/7912aa4be68e94a52762361c2d5189b7bbc58d2a/pom.xml#L8-L14) ## [1.1.1.0-PN] - 2020-01-21 ### Fixes diff --git a/README.md b/README.md index 49ef8d665ea..3f1c32afa2e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ -![nukkit](https://raw.githubusercontent.com/PowerNukkit/PowerNukkit/master/.github/images/banner.png) +[PowerNukkit](https://powernukkit.org) [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](LICENSE) -[![PowerNukkit v1.X](https://github.com/PowerNukkit/PowerNukkit/workflows/PowerNukkit%20v1.X/badge.svg?branch=master)](https://github.com/PowerNukkit/PowerNukkit/actions?query=branch%3Amaster) +[![PowerNukkit v1.X](https://github.com/PowerNukkit/PowerNukkit/workflows/PowerNukkit%20v1.X/badge.svg?branch=master)](https://builds.powernukkit.org/buildConfiguration/PowerNukkit_Releases#all-projects) +[![TeamCity Build Status](https://builds.powernukkit.org/app/rest/builds/buildType:(id:PowerNukkit_Snapshots)/statusIcon)](https://builds.powernukkit.org/buildConfiguration/PowerNukkit_Snapshots) +[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=PowerNukkit_PowerNukkit&metric=coverage)](https://sonarcloud.io/dashboard?id=PowerNukkit_PowerNukkit) [![Discord](https://img.shields.io/discord/728280425255927879)](https://powernukkit.org/discord) Introduction @@ -26,12 +28,16 @@ Most Cloudburst Nukkit plugins are supported but they may not understand the new Links -------------------- -* __[PowerNukkit Website](https://powernukkit.org/)__ -* __[PowerNukkit Forum and Guides](https://discuss.powernukkit.org/)__ -* __[Download PowerNukkit Releases](https://powernukkit.org/releases)__ -* __[Download PowerNukkit Snapshots](https://powernukkit.org/snapshots)__ -* __[PowerNukkit Discord](https://powernukkit.org/discord)__ -* __[Cloudburst Nukkit Plugins](https://cloudburstmc.org/resources/categories/nukkit-plugins.1/)__ +- __[๐ŸŒ PowerNukkit Website](https://powernukkit.org/)__ +- __[๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป PowerNukkit Website for Plugin Developers](https://devs.powernukkit.org/)__ +- __[๐Ÿ’ฌ PowerNukkit Forum and Guides](https://discuss.powernukkit.org/)__ +- __[๐Ÿ’ฌ PowerNukkit Discord](https://powernukkit.org/discord)__ +- __[๐Ÿ’พ Download PowerNukkit Recommended Build](https://powernukkit.org/recommended)__ +- __[๐Ÿ’พ Download PowerNukkit Releases](https://powernukkit.org/releases)__ +- __[๐Ÿ’พ Download PowerNukkit Snapshots](https://powernukkit.org/snapshots)__ +- __[๐Ÿ”Œ Cloudburst Nukkit Plugins](https://cloudburstmc.org/resources/categories/nukkit-plugins.1/)__ +- __[๐Ÿ”Œ PowerNukkit Plugins](https://discuss.powernukkit.org/c/plugins/powernukkit-plugins/14/)__ +- __[๐Ÿงฉ PowerNukkit Plugin Requests](https://discuss.powernukkit.org/c/plugins/plugin-requests/13)__ Creating Plugins ---------------- @@ -189,6 +195,9 @@ Contributing ------------ Please read the [CONTRIBUTING](.github/CONTRIBUTING.md) guide before submitting any issue. Issues with insufficient information or in the wrong format will be closed and will not be reviewed. +--------- +[![SonarCloud](https://sonarcloud.io/images/project_badges/sonarcloud-white.svg)](https://sonarcloud.io/dashboard?id=PowerNukkit_PowerNukkit) + --------- ![](https://www.yourkit.com/images/yklogo.png) diff --git a/docker-compose.yml b/docker-compose.yml index b8dd8824df0..9e82266656f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -54,7 +54,7 @@ services: # # You may change the version as you desire # The version list: https://hub.docker.com/r/powernukkit/powernukkit/tags - image: powernukkit/powernukkit:1.3 + image: powernukkit/powernukkit:1.5 # # If you want to use an other port, change only the number before ":", keep the :19132 and :19132/udp at the end diff --git a/pom.xml b/pom.xml index 610ead164ac..d501db172a7 100644 --- a/pom.xml +++ b/pom.xml @@ -24,19 +24,19 @@ GitHub - https://github.com/PowerNukkit/PowerNukkit-Natives/issues + https://github.com/PowerNukkit/PowerNukkit/issues scm:git:https://github.com/PowerNukkit/PowerNukkit.git - scm:git:ssh://github.com:PowerNukkit/PowerNukkit.git + scm:git:ssh://git@github.com:PowerNukkit/PowerNukkit.git https://github.com/PowerNukkit/PowerNukkit GNU General Public License, Version 3 - http://www.gnu.org/licenses/gpl-3.0.html + https://www.gnu.org/licenses/gpl-3.0.txt repo @@ -75,8 +75,10 @@ 1.1.0 2.13.3 UTF-8 + UTF-8 3.9.0 true + true PowerNukkit_PowerNukkit powernukkit https://sonarcloud.io @@ -290,6 +292,10 @@ 3.0.2
+ + + https://builds.powernukkit.org/buildConfiguration/PowerNukkit_Snapshots + @@ -352,6 +358,31 @@ false + + org.apache.maven.plugins + maven-site-plugin + 3.9.1 + + + org.apache.maven.doxia + doxia-module-markdown + 1.9.1 + + + org.apache.maven.doxia + doxia-module-xhtml + 1.9.1 + + + + true + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.1.2 + org.apache.maven.plugins maven-enforcer-plugin @@ -512,6 +543,9 @@ + + ${skipGpg} + com.github.spotbugs @@ -546,6 +580,66 @@ + + org.apache.maven.plugins + maven-resources-plugin + + UTF-8 + + + + + copy-readme + pre-site + + copy-resources + + + ${project.build.directory}/generated-site/markdown + + + ${basedir} + + README.md + CHANGELOG.md + + + + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + 8 + none + true + + + + html + + javadoc + + + + + + diff --git a/release-script/jdiff-javadoc.bat b/release-script/jdiff-javadoc.bat new file mode 100644 index 00000000000..8be289ad25e --- /dev/null +++ b/release-script/jdiff-javadoc.bat @@ -0,0 +1,64 @@ +#!/bin/sh +@REM 2> /dev/null; # START_OF_SHELL_SCRIPT +@REM 2> /dev/null; # +@REM 2> /dev/null; if true; then # +@REM 2> /dev/null; echo "ola" # +@REM 2> /dev/null; exit 1; # +@REM 2> /dev/null; fi # +@REM 2> /dev/null; # +@REM 2> /dev/null; # +@REM 2> /dev/null; cat > /dev/null << END_OF_BATCH +@REM END_OF_SHELL_SCRIPT + +@REM START_OF_BATCH +@ECHO OFF + +SETLOCAL + +if defined JAVA_HOME ( + GOTO execution +) + +::- Get the Java Version +set KEY="HKLM\SOFTWARE\JavaSoft\Java Development Kit" +set VALUE=CurrentVersion +reg query %KEY% /v %VALUE% >nul 2>nul || ( + echo JDK not installed + exit /b 1 +) +set JDK_VERSION= +for /f "tokens=2,*" %%a in ('reg query %KEY% /v %VALUE% ^| findstr %VALUE%') do ( + set JDK_VERSION=%%b +) + +REM echo JDK VERSION: %JDK_VERSION% + +::- Get the JavaHome +set KEY="HKLM\SOFTWARE\JavaSoft\Java Development Kit\%JDK_VERSION%" +set VALUE=JavaHome +reg query %KEY% /v %VALUE% >nul 2>nul || ( + echo JavaHome not installed + exit /b 1 +) + +set JAVA_HOME= +for /f "tokens=2,*" %%a in ('reg query %KEY% /v %VALUE% ^| findstr %VALUE%') do ( + set JAVA_HOME=%%b +) + +:execution +set EXTRA_ARGS=-locale en_US -encoding UTF-8 -quiet -source 8 +echo. +echo. +echo. +echo Java Home: %JAVA_HOME% +echo All args: %* +echo Extra args: %EXTRA_ARGS% +echo. +echo. +echo. +"%JAVA_HOME%/bin/javadoc.exe" %EXTRA_ARGS% %* +ENDLOCAL & EXIT /B %ERRORLEVEL% + +EXIT /B 123 +END_OF_BATCH diff --git a/release-script/release.py b/release-script/release.py index 75c6104aae9..c6ed45b3ce5 100644 --- a/release-script/release.py +++ b/release-script/release.py @@ -183,11 +183,11 @@ def add_tag(from_tag, to_tag): if run_maven_deploy: start_progress("Executing Maven Deploy") log('-> Executing a maven deploy with', mvn, 'clean deploy') - args = [mvn, ntp, 'clean', 'deploy'] + args = [mvn, ntp, 'clean', 'deploy', '-DskipGpg=false'] if run_test_build or not run_tests: - args += ['-DDskipTests=true'] + args += ['-DskipTests=true'] else: - args += ['-DDskipTests=false'] + args += ['-DskipTests=false'] status_code = subprocess.call(args) check(status_code == 0, "Could not execute the maven deploy! Maven returned status code " + str(status_code)) finish_progress() diff --git a/release-script/setup-secrets.sh b/release-script/setup-secrets.sh deleted file mode 100644 index 699e77d76c1..00000000000 --- a/release-script/setup-secrets.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env sh -# -# https://PowerNukkit.org - The Nukkit you know but Powerful! -# Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -# - -auth activate-service-account --key-file=/setup/secrets.json && rm /setup/secrets.json -gcloud secrets versions access --secret=gpg-priv-github-bot latest > /secrets/gpg-github-bot.priv diff --git a/src/site/apt/LICENSE.apt.vm b/src/site/apt/LICENSE.apt.vm new file mode 100644 index 00000000000..f77ea7855df --- /dev/null +++ b/src/site/apt/LICENSE.apt.vm @@ -0,0 +1,3 @@ + diff --git a/src/site/resources/css/site.css b/src/site/resources/css/site.css new file mode 100644 index 00000000000..2228fc6f9eb --- /dev/null +++ b/src/site/resources/css/site.css @@ -0,0 +1,22 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +a.externalLink[href^=https], a.externalLink[href^=http], a.externalLink { + background: inherit !important; + padding-right: inherit !important; +} diff --git a/src/site/resources/img/powernukkit-small.png b/src/site/resources/img/powernukkit-small.png new file mode 100644 index 0000000000000000000000000000000000000000..743d5eb04f9b85f6788bd56032bc218f4e55e2b1 GIT binary patch literal 7578 zcmZ`;RaDg9_x;Sk&?y2+BaJlDHA6^;ba!_*Ln)!s(kYFIfOMl0QUlT;9n#$}3_re) z|A+s&>)gH0zUQp-vd@0Gu^MXf_&5|e007`CD#&U+V)+eC=1i}pFhYAs$r53S(fTL%=9{RI_lIj zRBTJuKt%N);#BffF-{{<8T|^vQ$FIq@G<31+ z=E4ttzi0N)n!rPo1^ncllHl3}4kmpP+oQ!NBI2NA_P}8#*@pBRo+wesHU5e~SU{_O9Udx3WcX87fXR=>SI-7!SWj>4YhrBR3$P98?c!mci6&758CE<}aS^HGNG< z&u(pb%l_$O{APKFLYWDu;8ksIP5lkkg%5aZ%?cWzjY_Ylp>4j(jm?%%v!Z&%6-E)} znr_%1qr z;vzxp%R)-vcVOM#m~lmkEc1VSKQpNr23T>t9b}FS(}nU*0c9X-SY6_SSUt%*;rW~yYUm}`V{ z*Cz}lE2#yaE&Yz{|D?P+m|NGm5b#V==4UYZZ}}gc&;32!p#iq`UjZMAWe2p#GMF)X zp+`WMs<^t|DpyNdVvdhzOdJrcMZXcEJ>Uc9VO1ue3$SnTzC*X>v|q_DsaECD|Imz> zkI@3D6)u%X(1zrqElyw4(8cic(;b0aK})-dgpuw>>p{UmyK-B)H;}>;Lk)c9VK(D} zde4lC!ARMO8O>!l`Oc_Wk6*oVst`S#D;FHY=Tf@W8Id7cncjt=wUh>tCn%8n9`nNG zxfymaJ8>VV4HTzzt+}!{nDG$foY7FQhBx7LMe<4=`h!tjmYCye%hr`Mq>9GI5k)Dh zHKVcYp;yW^5XvDlu1rbz+1?@p?C)}l0^CTit=#1|S?I9%;bCbQq=(uh)cMT5*&$`6 zpI)wswa(nIw;-Mqu#nljEcb_$SrM*L*#H!HgD(b$unHn#w<_ItZzN1fEJR<@1e=8Y zvsM{$`B{v@gTnS-h)SyRLLn+H=pil~lj$Pq&;{qy5B$gA zyiUD_3k8`gN8r8^)b3&8Lur|=s?l+Ub8YVGn#;r$@G>nUpm%m?<>#E+Xh=aO&YL&Bpvq*XH8xrfb44Zu*2gk*gKr6UOG?-13$aLZiRO z){Z+14r|q@VO3F#QH~7xgi$W?0fH}R+}CrM?SWW!o5`1!4Wy01`Oa6m={wNCmg2!L z4n=dW=%Ish;<$g|zL>w&oYllmnMwDGZR6e5aGrIc1+1gbI_+pMn*cWem3TaO*7xIP z%pXK?jTkX{+m}`uTe|cXyOhUfpfz66u5FUYO$o}jXXyy}Rt)pz72b{{6yIL=0UR5c z)Pfb>nAi7~%=@u*33FRrF;F~Pd!y~wK}EWpbw>OyvsXT|g8G=-Q#a(GkpF_&nJ1R5 zGLOo_E>pFvOVMf-E2B>%u2xn8D$jsxiWq-D&`rOzxgt3u0Ixm<=uUcd2!m&7bt{bn_4pyR1_GU%e z>^CG!7}UaA!}M;OC<4%W;x?saJr3ui$?-U30MT{d!Q`98T(NXV_K# zOJK3ZXmRJzgYP7VKmQ778H`0zd~K1v;$JZ(3?^&hldd+?r|5!k{u*m#s5RYLt#kUJ zWPnTNCrY*WKy)&W{Vm`Eha})QDf4p>EicOlES0Y95#xqCvcbRASNz)>aR0?B;n1#fLMeBpkmtYKnejY{F#HGpS2LL72Myfj zf3V2h-AGut^~;(u;E)CKq>9}~`gmkch+sL1Jf_bLh8y+ON3r{DGB$rNlZFVcqtZ2Y zlqO9u69z}Q#1JDkrsE90%26k1i>~oJQsu8NPs6&8FeWo$t3a>@8{uHhv{nVjB;yqAine>Orio@4PF2#!dpwY0oV@&2l(UqSu6+)p)R zYHL>ihPSH1g~Kh#^&3~sXNf%y6zP;y?~TKA;WM?w>?r@KC&#Ytp$ClmA#xY$0qzrj zN6o?+#(Fb*%bp&hM;NBYP4(jj$UfChpl9Aq6=JG!*!%QB=8~Be?c~=djvoaab5Xd5 zEe%7qwiAnce3_)u9`O}@S}NSMX9`L>M1lysD(((Vo5ow=7eV?Q2O~gzQ=)rXCy}Mu zZ0{&&NhH{KaFJjEKUgs)YNN&7`;G0%#?!-J%xF&OVVLDFAuXp%qBg)hL_r9{z>((xlq<2bSCQlG26!EA@Fz@Qw)@7{v(soMLbTn?X%Gry&L&~?V|O<2pVT|# z7&5x7sX2@K8Sgj9Em)k7&(XiOUciM;{=1vV?EG+VX9#nzgs5O=;oXZTcJ8vzHr}nR zc|9*W!npEWarz~X%Y_#gn*3>K{TN42!?ehugw7523x>NZsKS3!8v530(mmaTH={g> zVy)Lekb~NMeIY?VuOni5@}J6Fr_PlGC&E&BK2*Va53f+rh>XCBouxd>_aXN^2kZMm zM0UALON8??U@eF_6OO8kfnU?*cHKyI(sbl?N*f#8t%|$BW(<@BQBpRQFIuZa6NkSoKR?gaEfWA8^%DgQ-#Z;bO{}OH1VX*~p@~>tI!H4B8(uX zQS{T6!ir~()d=Xi68wG{eMxFxA_YBX6G+$BFcaMIpW(Jc>x$Tv&JE-~xk7ubT=X>m zd^|;lbkFIef<@$HZn@06pE9$3j~W%ycIp>>4Q{PGJvyG|=L&D1`O$c`jTiwx0Q*g_ zVUyJ5O_WQQ2h9||ycGg7Rr;L~L@*ve0P1A5;Oy}1+yZCTNV0Qh#yKC?G6*@V^NP(N zpbe{hQxtd(s6oHlOnu@J8VrL7)c%B^s`ps#5)|6=#c`klv%`kLwVfZqPMm!PDy(x2 zw5dJXxLcmQ2yD7024siN!sN3J>}rcE@#((a<=ztq_k`baO7=7_p=DXP!`kZ5oUBZA z(94%)4!4!nXh#-Aff&ss*Oo+0%tAT|g`y0uHvoH;4Q(13-B|N?+g6hwx)4Q7j)qdy z@yy(nJgs`#cS~loOUK5;4$?oORxsr^B-p*9!)^P5w(Enu5sGNO==2S?6_U$;_r#~l zd5k0oJRGs`!Mb~P_F#+p!GF6+A5~c8w8dWkvbGEL8x6%HLg&Xmm3*`)x*t!DITO2p z7V?@EQ`|%9ZkKbd`tA3xi5Od^J9b2RpBj8gjf8(K?hw>PEm`t#l;4%?VdoR+Nkxe zrjl2oXX1@onP0VWNY)}tXXH4n`YYWmYoS4AQAcx_GW4@*c4gj@e2W)YXuMP;&O~_F z)3YOBhqWy})DCJ^_VTU*NQsm4&A;YS+Ury)w9gU!5xjs1h$`J%Z-26p_vxa(8}^nv zGMMH%oWZ`d`1Y&0B;i7w*HKSDbYcYs*}Hy~!NS$on8>T1jI7COWLK*g9t+Yg_z zgpFFvAD||vBXZX(xbI2(yH2HM&o2EuZVvpUanRM+e)lrv0^v$)sf(YD?KwG4iq!9E za!ce?DyO)YQ~$6{Y(Z2EsS2HHA$kOToi<$Dl+9bI3K;vxJz~=w{mB_nI$B$I2YwkGm#N+JaM}GRo)G^5!7#25dViVw z&pB{Y2Dz-D$qc0p{7CN36_+Y9;i&q|ux?uR9Up%1t7L$F>RZfDHu?5er3HK0YqTd^ zGFUlk$niH%2v2GE=FX=~e$6;!KFJ#%HVu}JS=YhRi$uy}hGGYkpR)t0qgR8=P51dW zJ*`2g^-g#aSu-XbimcoSeF^7qL>P`eyj4T>Z0?96sm~RL?IReeu%|+>VW1d%De<`v zzs2Ue(8(cY|AWMFU3c~$N8!v*E7Eb>a1;|ezlbOV>9ukN^Ce<+^N^pTD%SpI<-CZ3x{)+d>$(Bb_PGxrK% zQIx0N@=>bJ-aga$=^q1A>4<&XV*8Tm3x50>;F%qMZmLaJH_uw9)x=>NcIi~H7HhWO zgbUT53Y~k*)Z~gf%^`i)iI2c$*bzvdlnznmxY)K{gr{r*ba@^&fimo?z*OM-SjH-w zdPxyXihkZFU?lmyKTCBi(sXa9gjuHsOg0xdS$kTodfoS zGq{~x>Sc&tvjfSG$w}zkClz2j7F#J>Xe(K~yN@?l31WA!TD&wGJ1sW!x6vk?pHZ%X z;^Ygh&#yUyh|C}B0V+kXGDGUur3~E%-2+}b%@&HPZ&mi^70$-MuAj<#MaG&rwsC5x zIJx_G)VS?~I`IBtmCv$fIp<1BINlLR#rq^Rqs;y2i{oExr1Bf?a z5^(`VgYcMs_iA&XB}sa!-S`bVY=6IzWsg*Jy2j5|jD%f5%1*?!w(Ic5Pu1DlEdExZ|(f;t)?+h2>pX2SC5mC5h>|`>5nyrQ!kf*8KJ*CXt zwROn9GRrGTHg4@g7$m{RyXl?*IAMlwk2v!;nh2NV_o=R&yOPYBow=EH)F=9o)8W

S4Eg#-TMP zfBCU+F2L(s$ggO^rGBfI>UDMP;mZqWID*^bV_NyYDI`6&;cyKxfyS8o5fnY zq0dKP5Sv|K=Sjg+`$1SDNTJ|vH5-auVk|K&s+~+mL3SKnp_sz8;x|qIBIf#1`SW3j zLY`U4^%T%G>pD!L)EXw$@S1k}$7Ltpc^;JbRY!X2!ceZSt9>jm;vsXWjL^hgrCQ6Z7 zr50YgbcKK-fCy-^f8Ep4V@1DAwYPM=Qe3wWXa%2@*1`rP%KSHNf|>&Z(}K1L&2AlHJX?dnEfO%N?TT1)r34N+;pEz6 zFOaNYOU?w>(0lyqBSFB!89cr*c1}=YlLgD0Gf}$C_RkkgjnD)BWlysDPc(&fz=2V> zr3l*F-)w62gFR|vg~Fuifth}bms6rhkDs(m$bK;kw~aB#LG&P#m`dBx`nGKs#^4R% ziy1Y0dLC0{-ThfTG_HWKz#*pc2=Ni3-sP4+Lb{BccOz&jm?pSsYvk`3lc=P6Dz!5d ziHkY(XCl7&F?I?_FS5>0qkVPVmZOYX_0ugEddj(eqo;+9`VzL>(`W~C$`uU_xuzc! z?GYZrZFF6Y+N&P1evNZ{T_F>EcK*EHKUXJfs`hf3iEzxcKZmITwyCS#pae{J98RSy z5CzJJn~;D0l*P!FN?mw{l;cBppGd>n3w~Qb{MR(+jRRt^Iy_rY{uzrs@r(8KrXi@Go0(2!Zq}Q>H0sHTMLWC&w!> zmD!PM@yJFq$@!6#u5h~BCZ|%Yp|JtiqB7!)T^$)z$z-gvnkjjZiQRo9V5GcwTGPPA z7Dm|0>hZNzrX3_nNCo5(wwpRJSt#0oPrfwygRXt9juMLx(W3kQgrEJOiBMeu#z3S4w4JF1>N@h$rZ%Qx!acWhfOk2kYM`(h{u#Dvn&u&ixJSX~Ka=h0vFc{AY@01P*EV0rwkGkKqPg5ks>=D^Yvi zrD!~DZk{~#guNLps;xJWgHp}{-3XkJ_l9}|PdWT3w2e45#Q4ZG*yIZCQgRBfV&Y23 z1j=7g7Bt!wVzI}rzc0S2JHXt-KN&FW)HTVyR$Qo)+=i4Ic8nmA?97m_zbOiT-@e76 zvc$*zfUi4r&z}G;Dd%bmT+QB`B1^r|u@o~t^)Gm;JTyYH;&>sLdJ~v$RzTVtyxYIL zd90aA`R(s-pM#P65=|x!E}_7gi@ud0?~kh!>f*yBXQbb{T+=9vs-B|;HGkQOUz}_7 z7tg!B=FKg?X6@A#v;C$?dkmu-`4EJ6{pcTMYFsDBR|!|5YD6#W48AqE3#$pFWg2RK z6`w9HzO|!qc(ZSoaRk~wu9c%nTSrqabV?%YO<_Y>u~dp9?(*8c3I z&9!t06sSvk=vgx+)L_Z~cJlj5{rra5Q1G9IO%i{c4o%3KgCl<&-b0bHT}(1*EJHte z0Hd&Ex0w;Aq?`HY`IV%Q{uI(ic*f2!viE+Z_|b06Q@k?xCd`6=R&6E_Aj4cX6;T%> z+^g>g&OciU`hARpkSDnF$iy#iUQ@5EZDfR;bmb%_P5gtael7@c+7=;35S$vNq}U~f zj$C;lq}2OMaz6U<^g;?AmlE;0=6NqW$D)~~V^+pgbEFr>kHS_-W6wmFQX0ExNw|Dc zPQs_e6{4AH+V4A#YtFCL=>24^i9<_+K~g)nm^Y+OWkVMms#R#po)4DeOoSRtl5xYy zd;60*LQ@h zB!fztq97d3eReCW0--Xlx(NQsZ~;Tb3rrRg)HaBJ7w*@(Ff6^7VM7%`kVy@B%LX(C zqQ7cir#-lbl#rtWznHF5ib%*#YnrSNS1Pp)M4qwmr!a!l1ZPAM7X}omlCo<8Y)Ro# zitXKpW**OXB+M%FE>KacQp=azM4=xalF-A;x|^vBS@GO@jqn(>)cbE{462g*5)@eAC$B5bNEx>6s*i5!f~s3>ES02 zG$RjaEpF)Xzk12T mBg(_Wgq8n)8(iG19c%;s{|0RxmY~N8fTEn5>^Euii2nf?41$IL literal 0 HcmV?d00001 diff --git a/src/site/resources/js/redirect.js b/src/site/resources/js/redirect.js new file mode 100644 index 00000000000..80eebaafa86 --- /dev/null +++ b/src/site/resources/js/redirect.js @@ -0,0 +1,19 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +window.location.href='README.html'; diff --git a/src/site/site.xml b/src/site/site.xml new file mode 100644 index 00000000000..094c1b35ab7 --- /dev/null +++ b/src/site/site.xml @@ -0,0 +1,81 @@ + + + + + + + + + PowerNukkit + img/powernukkit-small.png + http://www.powernukkit.org + + + + + + + + +

+ + + + + + + + + + + + + + + + + + + + org.apache.maven.skins + maven-fluido-skin + 1.9 + + + + false + true + width: 90%; + + + + diff --git a/src/site/xhtml/index.xhtml b/src/site/xhtml/index.xhtml new file mode 100644 index 00000000000..330e5dc7a99 --- /dev/null +++ b/src/site/xhtml/index.xhtml @@ -0,0 +1,30 @@ + + + + + + + PowerNukkit + + + + + From daf92e728be0d8d0f8e6d7bb1c9be4853cc20ac6 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 29 Jun 2021 23:48:23 -0300 Subject: [PATCH 120/394] Improve the new method names, add tests --- pom.xml | 33 +++--- src/main/java/cn/nukkit/Player.java | 2 +- .../nukkit/command/defaults/KillCommand.java | 2 +- src/main/java/cn/nukkit/entity/Entity.java | 10 +- .../java/cn/nukkit/entity/EntityHuman.java | 2 +- .../entity/item/EntityAreaEffectCloud.java | 2 +- .../cn/nukkit/entity/item/EntityBoat.java | 2 +- .../nukkit/entity/item/EntityEndCrystal.java | 2 +- .../nukkit/entity/item/EntityExpBottle.java | 2 +- .../entity/item/EntityFallingBlock.java | 2 +- .../cn/nukkit/entity/item/EntityFirework.java | 2 +- .../nukkit/entity/item/EntityFishingHook.java | 2 +- .../cn/nukkit/entity/item/EntityItem.java | 4 +- .../entity/item/EntityMinecartChest.java | 2 +- .../entity/item/EntityMinecartEmpty.java | 2 +- .../entity/item/EntityMinecartHopper.java | 2 +- .../nukkit/entity/item/EntityMinecartTNT.java | 2 +- .../cn/nukkit/entity/item/EntityPainting.java | 2 +- .../cn/nukkit/entity/item/EntityPotion.java | 2 +- .../entity/item/EntityPotionLingering.java | 2 +- .../nukkit/entity/item/EntityPrimedTNT.java | 2 +- .../cn/nukkit/entity/item/EntityXPOrb.java | 2 +- .../cn/nukkit/entity/mob/EntityBlaze.java | 2 +- .../nukkit/entity/mob/EntityCaveSpider.java | 2 +- .../cn/nukkit/entity/mob/EntityCreeper.java | 2 +- .../cn/nukkit/entity/mob/EntityDrowned.java | 2 +- .../entity/mob/EntityElderGuardian.java | 2 +- .../nukkit/entity/mob/EntityEnderDragon.java | 2 +- .../cn/nukkit/entity/mob/EntityEnderman.java | 2 +- .../cn/nukkit/entity/mob/EntityEndermite.java | 2 +- .../cn/nukkit/entity/mob/EntityEvoker.java | 2 +- .../cn/nukkit/entity/mob/EntityGhast.java | 2 +- .../cn/nukkit/entity/mob/EntityGuardian.java | 2 +- .../cn/nukkit/entity/mob/EntityHoglin.java | 2 +- .../java/cn/nukkit/entity/mob/EntityHusk.java | 2 +- .../cn/nukkit/entity/mob/EntityIronGolem.java | 2 +- .../cn/nukkit/entity/mob/EntityMagmaCube.java | 2 +- .../cn/nukkit/entity/mob/EntityPhantom.java | 2 +- .../cn/nukkit/entity/mob/EntityPiglin.java | 2 +- .../nukkit/entity/mob/EntityPiglinBrute.java | 2 +- .../cn/nukkit/entity/mob/EntityPillager.java | 2 +- .../cn/nukkit/entity/mob/EntityRavager.java | 2 +- .../cn/nukkit/entity/mob/EntityShulker.java | 2 +- .../nukkit/entity/mob/EntitySilverfish.java | 2 +- .../cn/nukkit/entity/mob/EntitySkeleton.java | 2 +- .../cn/nukkit/entity/mob/EntitySlime.java | 2 +- .../cn/nukkit/entity/mob/EntitySnowGolem.java | 2 +- .../cn/nukkit/entity/mob/EntitySpider.java | 2 +- .../cn/nukkit/entity/mob/EntityStray.java | 2 +- .../java/cn/nukkit/entity/mob/EntityVex.java | 2 +- .../nukkit/entity/mob/EntityVindicator.java | 2 +- .../cn/nukkit/entity/mob/EntityWitch.java | 2 +- .../cn/nukkit/entity/mob/EntityWither.java | 2 +- .../entity/mob/EntityWitherSkeleton.java | 2 +- .../cn/nukkit/entity/mob/EntityZoglin.java | 2 +- .../cn/nukkit/entity/mob/EntityZombie.java | 2 +- .../nukkit/entity/mob/EntityZombiePigman.java | 2 +- .../entity/mob/EntityZombieVillager.java | 2 +- .../entity/mob/EntityZombieVillagerV1.java | 2 +- .../cn/nukkit/entity/passive/EntityBat.java | 2 +- .../cn/nukkit/entity/passive/EntityBee.java | 2 +- .../cn/nukkit/entity/passive/EntityCat.java | 2 +- .../nukkit/entity/passive/EntityChicken.java | 2 +- .../cn/nukkit/entity/passive/EntityCod.java | 2 +- .../cn/nukkit/entity/passive/EntityCow.java | 2 +- .../nukkit/entity/passive/EntityDolphin.java | 2 +- .../nukkit/entity/passive/EntityDonkey.java | 2 +- .../cn/nukkit/entity/passive/EntityFox.java | 2 +- .../cn/nukkit/entity/passive/EntityHorse.java | 2 +- .../cn/nukkit/entity/passive/EntityLlama.java | 2 +- .../entity/passive/EntityMooshroom.java | 2 +- .../cn/nukkit/entity/passive/EntityMule.java | 2 +- .../entity/passive/EntityNPCEntity.java | 2 +- .../nukkit/entity/passive/EntityOcelot.java | 2 +- .../cn/nukkit/entity/passive/EntityPanda.java | 2 +- .../nukkit/entity/passive/EntityParrot.java | 2 +- .../cn/nukkit/entity/passive/EntityPig.java | 2 +- .../entity/passive/EntityPolarBear.java | 2 +- .../entity/passive/EntityPufferfish.java | 2 +- .../nukkit/entity/passive/EntityRabbit.java | 2 +- .../nukkit/entity/passive/EntitySalmon.java | 2 +- .../cn/nukkit/entity/passive/EntitySheep.java | 2 +- .../entity/passive/EntitySkeletonHorse.java | 2 +- .../cn/nukkit/entity/passive/EntitySquid.java | 2 +- .../nukkit/entity/passive/EntityStrider.java | 2 +- .../entity/passive/EntityTropicalFish.java | 2 +- .../nukkit/entity/passive/EntityTurtle.java | 2 +- .../nukkit/entity/passive/EntityVillager.java | 2 +- .../entity/passive/EntityVillagerV1.java | 2 +- .../entity/passive/EntityWanderingTrader.java | 2 +- .../cn/nukkit/entity/passive/EntityWolf.java | 2 +- .../entity/passive/EntityZombieHorse.java | 2 +- .../nukkit/entity/projectile/EntityArrow.java | 2 +- .../nukkit/entity/projectile/EntityEgg.java | 2 +- .../entity/projectile/EntityEnderPearl.java | 2 +- .../entity/projectile/EntitySnowball.java | 2 +- .../projectile/EntityThrownTrident.java | 2 +- .../entity/weather/EntityLightning.java | 2 +- .../command/defaults/KillCommandTest.java | 107 ++++++++++++++++++ .../cn/nukkit/entity/EntityHumanTest.java | 63 +++++++++++ .../cn/nukkit/entity/EntityPlayerTest.java | 59 ++++++++++ .../java/cn/nukkit/entity/EntityTest.java | 18 +-- .../cn/nukkit/entity/item/EntityItemTest.java | 76 +++++++++++++ src/test/java/cn/nukkit/utils/UtilsTest.java | 41 +++++++ 104 files changed, 473 insertions(+), 128 deletions(-) create mode 100644 src/test/java/cn/nukkit/command/defaults/KillCommandTest.java create mode 100644 src/test/java/cn/nukkit/entity/EntityHumanTest.java create mode 100644 src/test/java/cn/nukkit/entity/EntityPlayerTest.java create mode 100644 src/test/java/cn/nukkit/entity/item/EntityItemTest.java create mode 100644 src/test/java/cn/nukkit/utils/UtilsTest.java diff --git a/pom.xml b/pom.xml index d501db172a7..7458e0e3fa3 100644 --- a/pom.xml +++ b/pom.xml @@ -71,8 +71,8 @@ 1.8 1.8 - 5.4.2 - 1.1.0 + 5.7.2 + 3.11.2 2.13.3 UTF-8 UTF-8 @@ -120,12 +120,6 @@ 0.1.0 test - - org.junit.jupiter - junit-jupiter-params - ${junit.jupiter.version} - test - org.powernukkit.fastutil fastutil-lite @@ -202,10 +196,22 @@ ${junit.jupiter.version} test + + org.junit.jupiter + junit-jupiter-params + ${junit.jupiter.version} + test + org.mockito mockito-junit-jupiter - 3.3.3 + ${mockito.version} + test + + + org.mockito + mockito-inline + ${mockito.version} test @@ -345,14 +351,7 @@ maven-surefire-plugin - 2.19 - - - org.junit.platform - junit-platform-surefire-provider - ${junit.platform.version} - - + 2.22.2 ${skipTests} false diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index fb6102e8afe..4ed29b7f890 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -4470,7 +4470,7 @@ public void save(boolean async) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Player"; } diff --git a/src/main/java/cn/nukkit/command/defaults/KillCommand.java b/src/main/java/cn/nukkit/command/defaults/KillCommand.java index be0d9b1768c..dc2328b9c1e 100644 --- a/src/main/java/cn/nukkit/command/defaults/KillCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/KillCommand.java @@ -60,7 +60,7 @@ public boolean execute(CommandSender sender, String commandLabel, String[] args) for (Level level : Server.getInstance().getLevels().values()) { for (Entity entity : level.getEntities()) { if (!(entity instanceof Player)) { - joiner.add(entity.getNonBlankName()); + joiner.add(entity.getVisibleName()); entity.close(); } } diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 77b8dda2c11..17e45933a59 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -1135,11 +1135,11 @@ public void saveNBT() { } /** - * The name that actually represent this entity, ignoring name tags. + * The name that English name of the type of this entity. */ @PowerNukkitOnly @Since("FUTURE") - public String getStaticName() { + public String getOriginalName() { return this.getSaveId(); } @@ -1148,12 +1148,12 @@ public String getStaticName() { */ @PowerNukkitOnly @Since("FUTURE") - public final String getNonBlankName() { + public final String getVisibleName() { String name = getName(); if (!TextFormat.clean(name).trim().isEmpty()) { return name; } else { - return getStaticName(); + return getOriginalName(); } } @@ -1165,7 +1165,7 @@ public String getName() { if (this.hasCustomName()) { return this.getNameTag(); } else { - return this.getStaticName(); + return this.getOriginalName(); } } diff --git a/src/main/java/cn/nukkit/entity/EntityHuman.java b/src/main/java/cn/nukkit/entity/EntityHuman.java index 1417744d092..f020f67bca8 100644 --- a/src/main/java/cn/nukkit/entity/EntityHuman.java +++ b/src/main/java/cn/nukkit/entity/EntityHuman.java @@ -222,7 +222,7 @@ protected void initEntity() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Human"; } diff --git a/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java b/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java index 390122d30ba..e518e34875c 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java +++ b/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java @@ -414,7 +414,7 @@ public int getNetworkId() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Area Effect Cloud"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityBoat.java b/src/main/java/cn/nukkit/entity/item/EntityBoat.java index 33d83c3e989..58eb20a0a4a 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityBoat.java +++ b/src/main/java/cn/nukkit/entity/item/EntityBoat.java @@ -586,7 +586,7 @@ public void setVariant(int variant) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Boat"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java b/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java index c2da773a1e7..b1790e90637 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java +++ b/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java @@ -114,7 +114,7 @@ public void setShowBase(boolean value) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Ender Crystal"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java b/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java index fb8cd7f1a4e..1be5136f107 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java +++ b/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java @@ -110,7 +110,7 @@ protected void addHitEffect() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Bottle o' Enchanting"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java index fc5f8ce372a..5887ef5f7de 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java @@ -233,7 +233,7 @@ public boolean canBeMovedByCurrents() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Falling Block"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityFirework.java b/src/main/java/cn/nukkit/entity/item/EntityFirework.java index 1d61b4b6163..d30d72de843 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFirework.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFirework.java @@ -190,7 +190,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Firework Rocket"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java index 3dab5b26719..0c7f889490f 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java @@ -316,7 +316,7 @@ public void onCollideWithEntity(Entity entity) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Fishing Hook"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityItem.java b/src/main/java/cn/nukkit/entity/item/EntityItem.java index 95dd8c96b9f..0daeaf57f20 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityItem.java +++ b/src/main/java/cn/nukkit/entity/item/EntityItem.java @@ -293,7 +293,7 @@ public void saveNBT() { @Since("FUTURE") @PowerNukkitOnly @Override - public String getStaticName() { + public String getOriginalName() { return "Item"; } @@ -303,7 +303,7 @@ public String getName() { return getNameTag(); } if (item == null) { - return getStaticName(); + return getOriginalName(); } return item.count + "x " + (this.item.hasCustomName() ? this.item.getCustomName() : this.item.getName()); } diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartChest.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartChest.java index e12587895c9..d9883a8a121 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartChest.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartChest.java @@ -33,7 +33,7 @@ public EntityMinecartChest(FullChunk chunk, CompoundTag nbt) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return getType().getName(); } diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartEmpty.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartEmpty.java index 5779e392545..a3acab88246 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartEmpty.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartEmpty.java @@ -30,7 +30,7 @@ public EntityMinecartEmpty(FullChunk chunk, CompoundTag nbt) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return getType().getName(); } diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java index 66a21f477bf..e2f8bf70c97 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java @@ -29,7 +29,7 @@ public EntityMinecartHopper(FullChunk chunk, CompoundTag nbt) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return getType().getName(); } diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java index 6e2f5ba7c00..842cce0c27e 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java @@ -122,7 +122,7 @@ public void dropItem() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return getType().getName(); } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPainting.java b/src/main/java/cn/nukkit/entity/item/EntityPainting.java index 15b1a339daa..77c4faeff22 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPainting.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPainting.java @@ -203,7 +203,7 @@ public enum Motive { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Painting"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotion.java b/src/main/java/cn/nukkit/entity/item/EntityPotion.java index c14add9e714..88b1a0cdec3 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotion.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotion.java @@ -169,7 +169,7 @@ public boolean onUpdate(int currentTick) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Potion"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java b/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java index 60bc46faede..563333e55cf 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java @@ -60,7 +60,7 @@ protected void splash(Entity collidedWith) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Lingering Potion"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java b/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java index 04ed0779b27..3c2108f4587 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java @@ -185,7 +185,7 @@ public Entity getSource() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Block of TNT"; } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java b/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java index 62a326dbb5c..39294cdc7ee 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java +++ b/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java @@ -271,7 +271,7 @@ public static List splitIntoOrbSizes(int amount) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Experience Orb"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java b/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java index ec9cccb8a0a..e580c604825 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java @@ -41,7 +41,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Blaze"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java b/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java index 375b9d3f747..6cacd13ba6a 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java @@ -42,7 +42,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Cave Spider"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java b/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java index f39f23dfcb3..f77425f6ac9 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java @@ -86,7 +86,7 @@ protected void initEntity() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Creeper"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java b/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java index a757bf2b695..31914cffbfa 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java @@ -43,7 +43,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Drowned"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java b/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java index a2b02d4fd81..41bd30c947e 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java @@ -42,7 +42,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Elder Guardian"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java b/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java index 571c9159948..a3839911c96 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java @@ -56,7 +56,7 @@ public boolean applyNameTag(Item item) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Ender Dragon"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java b/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java index d0cbe339656..8b8d7a5e6f2 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java @@ -41,7 +41,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Enderman"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java b/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java index 5c6443bcdaa..b3f13ad998d 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java @@ -42,7 +42,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Endermite"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java b/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java index 3e2ab28776a..62fe5689bdf 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java @@ -41,7 +41,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Evoker"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityGhast.java b/src/main/java/cn/nukkit/entity/mob/EntityGhast.java index 4181ebf26f5..ae32ff985bc 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityGhast.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityGhast.java @@ -40,7 +40,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Ghast"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java b/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java index 88f6f34c245..8a1d2bb7b8d 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java @@ -31,7 +31,7 @@ public void initEntity() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Guardian"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java b/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java index 0b788044ca9..dc0d5c11221 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java @@ -50,7 +50,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Hoglin"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityHusk.java b/src/main/java/cn/nukkit/entity/mob/EntityHusk.java index 228c671f0c9..2c067591744 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityHusk.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityHusk.java @@ -42,7 +42,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Husk"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityIronGolem.java b/src/main/java/cn/nukkit/entity/mob/EntityIronGolem.java index 13c1acd178f..dcdea98c698 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityIronGolem.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityIronGolem.java @@ -53,7 +53,7 @@ public int getNetworkId() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Iron Golem"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityMagmaCube.java b/src/main/java/cn/nukkit/entity/mob/EntityMagmaCube.java index aeae8fc7ec4..0be93c392a2 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityMagmaCube.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityMagmaCube.java @@ -40,7 +40,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Magma Cube"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java b/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java index d55f46662a2..283b2cb29d9 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java @@ -43,7 +43,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Phantom"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java b/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java index 870aa13da23..95b0d9cbf59 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java @@ -44,7 +44,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Piglin"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java b/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java index 1ec5dada8b0..59ac101b78b 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java @@ -53,7 +53,7 @@ public boolean isPreventingSleep(Player player) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Piglin Brute"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPillager.java b/src/main/java/cn/nukkit/entity/mob/EntityPillager.java index fc195a8d3ba..008e6430c00 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPillager.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPillager.java @@ -38,7 +38,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Pillager"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityRavager.java b/src/main/java/cn/nukkit/entity/mob/EntityRavager.java index 0df48994478..d78a9de8e45 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityRavager.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityRavager.java @@ -38,7 +38,7 @@ public float getWidth() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Ravager"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityShulker.java b/src/main/java/cn/nukkit/entity/mob/EntityShulker.java index 2ac93635c77..c634107c382 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityShulker.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityShulker.java @@ -40,7 +40,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Shulker"; } } diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java b/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java index e8181d64322..34d75f9023a 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java @@ -26,7 +26,7 @@ public EntitySilverfish(FullChunk chunk, CompoundTag nbt) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Silverfish"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java b/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java index c8cd01737a9..7e60f15397c 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java @@ -43,7 +43,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Skeleton"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySlime.java b/src/main/java/cn/nukkit/entity/mob/EntitySlime.java index cddbd70a457..b5b2b77789b 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySlime.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySlime.java @@ -41,7 +41,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Slime"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySnowGolem.java b/src/main/java/cn/nukkit/entity/mob/EntitySnowGolem.java index 683348235d3..f9ffaa46f1d 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySnowGolem.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySnowGolem.java @@ -23,7 +23,7 @@ public int getNetworkId() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Snow Golem"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySpider.java b/src/main/java/cn/nukkit/entity/mob/EntitySpider.java index 7b47006a436..d796a11698c 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySpider.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySpider.java @@ -43,7 +43,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Spider"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityStray.java b/src/main/java/cn/nukkit/entity/mob/EntityStray.java index 938323153c1..4afe1bbaf6c 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityStray.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityStray.java @@ -43,7 +43,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Stray"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityVex.java b/src/main/java/cn/nukkit/entity/mob/EntityVex.java index b24ca222422..543fb3ae18b 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityVex.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityVex.java @@ -41,7 +41,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Vex"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java b/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java index e55537095c2..14fcd2f3433 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java @@ -42,7 +42,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Vindicator"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWitch.java b/src/main/java/cn/nukkit/entity/mob/EntityWitch.java index 6c1b3ec8b8f..45fed1e1776 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWitch.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWitch.java @@ -41,7 +41,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Witch"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWither.java b/src/main/java/cn/nukkit/entity/mob/EntityWither.java index c11991d125a..ab52deea6dc 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWither.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWither.java @@ -42,7 +42,7 @@ protected void initEntity() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Wither"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java b/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java index 10ddb0604fa..da27eaffa43 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java @@ -41,7 +41,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Wither Skeleton"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java b/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java index 032606ccde8..705b4313475 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java @@ -51,7 +51,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Zoglin"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombie.java b/src/main/java/cn/nukkit/entity/mob/EntityZombie.java index c0150c44220..dfa35ffac79 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombie.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombie.java @@ -43,7 +43,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Zombie"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java b/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java index 578f7d8d79d..e5d284c4d2f 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java @@ -42,7 +42,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Zombified Piglin"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java index 4698601cfc7..3d53d68f7ef 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java @@ -39,7 +39,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Zombie Villager"; } diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java index ddfdd36059e..6542d2840c0 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java @@ -41,7 +41,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Zombie Villager"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityBat.java b/src/main/java/cn/nukkit/entity/passive/EntityBat.java index c028c948c17..cbdc163f11f 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityBat.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityBat.java @@ -41,7 +41,7 @@ public void initEntity() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Bat"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityBee.java b/src/main/java/cn/nukkit/entity/passive/EntityBee.java index 02160764be7..8ef5d5658e0 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityBee.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityBee.java @@ -126,7 +126,7 @@ public void setAngry(Player player) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Bee"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityCat.java b/src/main/java/cn/nukkit/entity/passive/EntityCat.java index 52860585edf..d385807003b 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityCat.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityCat.java @@ -44,7 +44,7 @@ public void initEntity() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Cat"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityChicken.java b/src/main/java/cn/nukkit/entity/passive/EntityChicken.java index da151324f2a..ef80b409b76 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityChicken.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityChicken.java @@ -36,7 +36,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Chicken"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityCod.java b/src/main/java/cn/nukkit/entity/passive/EntityCod.java index f125fd75e38..21302a6dfd5 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityCod.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityCod.java @@ -24,7 +24,7 @@ public int getNetworkId() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Cod"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityCow.java b/src/main/java/cn/nukkit/entity/passive/EntityCow.java index e6136194c68..055f4b273b9 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityCow.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityCow.java @@ -36,7 +36,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Cow"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityDolphin.java b/src/main/java/cn/nukkit/entity/passive/EntityDolphin.java index 97305ff102f..b96a7d5b709 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityDolphin.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityDolphin.java @@ -25,7 +25,7 @@ public int getNetworkId() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Dolphin"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java b/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java index d9950cc6922..fc582c66e0c 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java @@ -53,7 +53,7 @@ public Item[] getDrops() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Donkey"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityFox.java b/src/main/java/cn/nukkit/entity/passive/EntityFox.java index dea5ab9573d..226ba8fc048 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityFox.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityFox.java @@ -44,7 +44,7 @@ protected void initEntity() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Fox"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityHorse.java b/src/main/java/cn/nukkit/entity/passive/EntityHorse.java index 5dd4a7f1aa0..5ad91f04e72 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityHorse.java @@ -53,7 +53,7 @@ public Item[] getDrops() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Horse"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityLlama.java b/src/main/java/cn/nukkit/entity/passive/EntityLlama.java index c6ad06d3d8c..d24b5fa4e0d 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityLlama.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityLlama.java @@ -55,7 +55,7 @@ public void initEntity() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Llama"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityMooshroom.java b/src/main/java/cn/nukkit/entity/passive/EntityMooshroom.java index 8cc2c0ebcf5..d5cec4702cf 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityMooshroom.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityMooshroom.java @@ -36,7 +36,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Mooshroom"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityMule.java b/src/main/java/cn/nukkit/entity/passive/EntityMule.java index 3cafe3354e5..14e0cb71c82 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityMule.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityMule.java @@ -53,7 +53,7 @@ public void initEntity() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Mule"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityNPCEntity.java b/src/main/java/cn/nukkit/entity/passive/EntityNPCEntity.java index 9332df672ad..c32d9cf6e5a 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityNPCEntity.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityNPCEntity.java @@ -52,7 +52,7 @@ public String getInteractButtonText() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "NPC"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityOcelot.java b/src/main/java/cn/nukkit/entity/passive/EntityOcelot.java index ccae203f2b0..7d3cba11044 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityOcelot.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityOcelot.java @@ -36,7 +36,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Ocelot"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPanda.java b/src/main/java/cn/nukkit/entity/passive/EntityPanda.java index 4b086f7b0d9..5577ecd62a9 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPanda.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPanda.java @@ -38,7 +38,7 @@ public void initEntity() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Panda"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityParrot.java b/src/main/java/cn/nukkit/entity/passive/EntityParrot.java index 4f7aacf58d0..0b78255afeb 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityParrot.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityParrot.java @@ -25,7 +25,7 @@ public int getNetworkId() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Parrot"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPig.java b/src/main/java/cn/nukkit/entity/passive/EntityPig.java index 8b813c5e0ec..ac5e2f8fb18 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPig.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPig.java @@ -42,7 +42,7 @@ public void initEntity() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Pig"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java b/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java index c301fece0dc..c210470eb69 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java @@ -53,7 +53,7 @@ public Item[] getDrops() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Polar Bear"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPufferfish.java b/src/main/java/cn/nukkit/entity/passive/EntityPufferfish.java index 606174d79c7..c981a3869c0 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPufferfish.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPufferfish.java @@ -24,7 +24,7 @@ public int getNetworkId() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Pufferfish"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityRabbit.java b/src/main/java/cn/nukkit/entity/passive/EntityRabbit.java index 51220641e74..ee39f36f883 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityRabbit.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityRabbit.java @@ -36,7 +36,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Rabbit"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySalmon.java b/src/main/java/cn/nukkit/entity/passive/EntitySalmon.java index 83cfe412088..8db4ba1d36f 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySalmon.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySalmon.java @@ -24,7 +24,7 @@ public int getNetworkId() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Salmon"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySheep.java b/src/main/java/cn/nukkit/entity/passive/EntitySheep.java index f9259365724..d66db68b7d9 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySheep.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySheep.java @@ -47,7 +47,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Sheep"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java b/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java index ce88f511055..f6953da091f 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java @@ -53,7 +53,7 @@ public boolean isUndead() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Skeleton Horse"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySquid.java b/src/main/java/cn/nukkit/entity/passive/EntitySquid.java index 3d58cbc40b1..45a16ce7d45 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySquid.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySquid.java @@ -48,7 +48,7 @@ public Item[] getDrops() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Squid"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityStrider.java b/src/main/java/cn/nukkit/entity/passive/EntityStrider.java index 409edf689a0..f7b6137f045 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityStrider.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityStrider.java @@ -41,7 +41,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Strider"; } } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityTropicalFish.java b/src/main/java/cn/nukkit/entity/passive/EntityTropicalFish.java index b2060ddd2d7..59ae182f213 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityTropicalFish.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityTropicalFish.java @@ -24,7 +24,7 @@ public int getNetworkId() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Tropical Fish"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java b/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java index 8c9a30814f8..66c8784842e 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java @@ -25,7 +25,7 @@ public int getNetworkId() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Turtle"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityVillager.java b/src/main/java/cn/nukkit/entity/passive/EntityVillager.java index 21a1b15469a..580e92993c2 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityVillager.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityVillager.java @@ -39,7 +39,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Villager"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityVillagerV1.java b/src/main/java/cn/nukkit/entity/passive/EntityVillagerV1.java index c69d38b9c1c..e9c555e6f6a 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityVillagerV1.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityVillagerV1.java @@ -45,7 +45,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Villager"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityWanderingTrader.java b/src/main/java/cn/nukkit/entity/passive/EntityWanderingTrader.java index 925d4c8c8df..7f940ea9b86 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityWanderingTrader.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityWanderingTrader.java @@ -27,7 +27,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Wandering Trader"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityWolf.java b/src/main/java/cn/nukkit/entity/passive/EntityWolf.java index 1ecc83cf225..a359c3360cd 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityWolf.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityWolf.java @@ -30,7 +30,7 @@ public float getHeight() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Wolf"; } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java b/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java index 850242410bb..c369068ed57 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java @@ -52,7 +52,7 @@ public boolean isUndead() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Zombie Horse"; } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java index 3a96e28e93b..95f73082a83 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java @@ -202,7 +202,7 @@ public void setPickupMode(int pickupMode) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Arrow"; } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java b/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java index dbaa39da805..75aadb7ba8d 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java @@ -83,7 +83,7 @@ protected void addHitEffect() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Egg"; } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java b/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java index 620b2f78b65..65c598d76b9 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java @@ -113,7 +113,7 @@ private void teleport() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Ender Pearl"; } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java b/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java index 107967c14d9..62475b3a1ef 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java @@ -120,7 +120,7 @@ protected void addHitEffect() { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Snowball"; } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index a48baef946e..4e294daca0b 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -140,7 +140,7 @@ public EntityThrownTrident(FullChunk chunk, CompoundTag nbt, Entity shootingEnti @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Trident"; } diff --git a/src/main/java/cn/nukkit/entity/weather/EntityLightning.java b/src/main/java/cn/nukkit/entity/weather/EntityLightning.java index 820a8a768af..bbf92d97e54 100644 --- a/src/main/java/cn/nukkit/entity/weather/EntityLightning.java +++ b/src/main/java/cn/nukkit/entity/weather/EntityLightning.java @@ -155,7 +155,7 @@ public boolean onUpdate(int currentTick) { @PowerNukkitOnly @Since("FUTURE") @Override - public String getStaticName() { + public String getOriginalName() { return "Lightning Bolt"; } } diff --git a/src/test/java/cn/nukkit/command/defaults/KillCommandTest.java b/src/test/java/cn/nukkit/command/defaults/KillCommandTest.java new file mode 100644 index 00000000000..be8400ad534 --- /dev/null +++ b/src/test/java/cn/nukkit/command/defaults/KillCommandTest.java @@ -0,0 +1,107 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.command.defaults; + +import cn.nukkit.Server; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.command.CommandSender; +import cn.nukkit.entity.Entity; +import cn.nukkit.entity.mob.EntityCreeper; +import cn.nukkit.entity.passive.EntityRabbit; +import cn.nukkit.entity.passive.EntitySkeletonHorse; +import cn.nukkit.lang.TranslationContainer; +import cn.nukkit.level.Level; +import cn.nukkit.level.format.generic.BaseFullChunk; +import cn.nukkit.math.Vector3; +import cn.nukkit.nbt.tag.CompoundTag; +import cn.nukkit.utils.TextFormat; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.ArgumentCaptor; +import org.mockito.Captor; +import org.mockito.Mock; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import java.util.Arrays; +import java.util.HashSet; +import java.util.Set; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.mockito.ArgumentMatchers.anyString; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +/** + * @author joserobjr + * @since 2021-06-29 + */ +@ExtendWith(PowerNukkitExtension.class) +class KillCommandTest { + @MockLevel(name = "world") + Level level; + Server server; + + EntityCreeper creeper; + EntitySkeletonHorse skeleton; + EntityRabbit rabbit; + + @Mock + CommandSender sender; + + @Captor + ArgumentCaptor messageCaptor; + + KillCommand command; + + @BeforeEach + void setUp() { + server = level.getServer(); + CompoundTag defaultNBT = Entity.getDefaultNBT(new Vector3(0, 64, 0)); + level.setBlockStateAt(0, 63, 0, BlockState.of(BlockID.STONE)); + BaseFullChunk chunk = level.getChunk(0, 0); + creeper = new EntityCreeper(chunk, defaultNBT); + skeleton = new EntitySkeletonHorse(chunk, defaultNBT); + rabbit = new EntityRabbit(chunk, defaultNBT); + + creeper.setNameTag(" "); + skeleton.setNameTag(TextFormat.RED+" "); + rabbit.setNameTag(TextFormat.BOLD+""+TextFormat.RED); + command = new KillCommand("kill"); + } + + @Test + void execute() { + when(sender.getServer()).thenReturn(server); + when(sender.hasPermission(anyString())).thenReturn(true); + command.execute(sender, "kill", new String[]{"@e"}); + verify(sender).sendMessage(messageCaptor.capture()); + TranslationContainer translationContainer = messageCaptor.getValue(); + assertEquals("commands.kill.successful", translationContainer.getText()); + assertEquals(1, translationContainer.getParameters().length); + + Set entities = new HashSet<>(Arrays.asList(translationContainer.getParameter(0).split(", "))); + assertTrue(entities.contains("Creeper")); + assertTrue(entities.contains("Skeleton Horse")); + assertTrue(entities.contains("Rabbit")); + } +} diff --git a/src/test/java/cn/nukkit/entity/EntityHumanTest.java b/src/test/java/cn/nukkit/entity/EntityHumanTest.java new file mode 100644 index 00000000000..9dd2eeb4a4a --- /dev/null +++ b/src/test/java/cn/nukkit/entity/EntityHumanTest.java @@ -0,0 +1,63 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.entity; + +import cn.nukkit.Player; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.level.Level; +import cn.nukkit.math.Vector3; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-06-29 + */ +@ExtendWith(PowerNukkitExtension.class) +class EntityHumanTest { + @MockPlayer + Player player; + + @MockLevel + Level level; + + EntityHuman human; + + @BeforeEach + void setUp() { + level.setBlockStateAt(0, 63, 0, BlockState.of(BlockID.STONE)); + human = new EntityHuman(level.getChunk(0,0), + Entity.getDefaultNBT(new Vector3(0, 64, 0)) + .putString("NameTag", "A Random Human") + .putCompound("Skin", player.namedTag.getCompound("Skin").copy()) + ); + } + + @Test + void getOriginalName() { + assertEquals("Human", human.getOriginalName()); + } +} diff --git a/src/test/java/cn/nukkit/entity/EntityPlayerTest.java b/src/test/java/cn/nukkit/entity/EntityPlayerTest.java new file mode 100644 index 00000000000..b08ff040a57 --- /dev/null +++ b/src/test/java/cn/nukkit/entity/EntityPlayerTest.java @@ -0,0 +1,59 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.entity; + +import cn.nukkit.Player; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.level.Level; +import cn.nukkit.network.SourceInterface; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.Mock; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author joserobjr + * @since 2021-06-29 + */ +@ExtendWith(PowerNukkitExtension.class) +class EntityPlayerTest { + @Mock + SourceInterface sourceInterface; + + @MockLevel + Level level; + + Player testedPlayer; + + @BeforeEach + void setUp() { + level.setBlockStateAt(0, 63, 0, BlockState.of(BlockID.STONE)); + testedPlayer = new Player(sourceInterface, 1L, "127.0.0.1", 19130); + } + + @Test + void getOriginalName() { + assertEquals("Player", testedPlayer.getOriginalName()); + } +} diff --git a/src/test/java/cn/nukkit/entity/EntityTest.java b/src/test/java/cn/nukkit/entity/EntityTest.java index 037059f37c7..f6cebd44d50 100644 --- a/src/test/java/cn/nukkit/entity/EntityTest.java +++ b/src/test/java/cn/nukkit/entity/EntityTest.java @@ -64,27 +64,27 @@ void testNames(String id) { } entity = createEntity(id); assertNotNull(entity, ()-> "Entity " + Entity.getSaveId(id)); - assertNotNull(entity.getStaticName(), "Static Name"); - String staticName = entity.getStaticName(); + assertNotNull(entity.getOriginalName(), "Static Name"); + String staticName = entity.getOriginalName(); assertEquals(staticName, entity.getName()); assertFalse(entity.hasCustomName(), "Should not have custom"); - assertEquals(entity.getName(), entity.getNonBlankName()); + assertEquals(entity.getName(), entity.getVisibleName()); if (entity instanceof EntityNameable) { EntityNameable nameable = (EntityNameable) entity; nameable.setNameTag("Customized"); assertTrue(entity.hasCustomName(), "Should have custom"); - assertNotNull(entity.getStaticName(), "Static name should not be null"); - assertEquals(staticName, entity.getStaticName(), "Static name should not change"); + assertNotNull(entity.getOriginalName(), "Static name should not be null"); + assertEquals(staticName, entity.getOriginalName(), "Static name should not change"); assertEquals("Customized", entity.getName()); - assertNotEquals(entity.getName(), entity.getStaticName()); + assertNotEquals(entity.getName(), entity.getOriginalName()); nameable.setNameTag(" "); assertTrue(entity.hasCustomName()); - assertNotNull(entity.getStaticName()); + assertNotNull(entity.getOriginalName()); assertEquals(" ", entity.getName()); - assertNotEquals(entity.getName(), entity.getStaticName()); - assertEquals(entity.getStaticName(), entity.getNonBlankName()); + assertNotEquals(entity.getName(), entity.getOriginalName()); + assertEquals(entity.getOriginalName(), entity.getVisibleName()); } } diff --git a/src/test/java/cn/nukkit/entity/item/EntityItemTest.java b/src/test/java/cn/nukkit/entity/item/EntityItemTest.java new file mode 100644 index 00000000000..245415c5ab3 --- /dev/null +++ b/src/test/java/cn/nukkit/entity/item/EntityItemTest.java @@ -0,0 +1,76 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.entity.item; + +import cn.nukkit.block.BlockID; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.entity.Entity; +import cn.nukkit.item.Item; +import cn.nukkit.item.ItemID; +import cn.nukkit.level.Level; +import cn.nukkit.math.Vector3; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-06-29 + */ +@ExtendWith(PowerNukkitExtension.class) +class EntityItemTest { + @MockLevel + Level level; + EntityItem entityItem; + + @BeforeEach + void setUp() { + level.setBlockStateAt(0, 63, 0, BlockState.of(BlockID.STONE)); + entityItem = new EntityItem(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0))); + } + + @Test + void getNameWithCustomName() { + entityItem.setNameTag(" "); + assertEquals(" ", entityItem.getName()); + } + + @Test + void getNameWithNullItem() { + entityItem.item = null; + assertEquals("Item", entityItem.getName()); + } + + @Test + void getNameWithItemWithCustomName() { + entityItem.item = Item.get(ItemID.GOLD_SWORD); + entityItem.item.setCustomName("God's Sword"); + assertEquals("1x God's Sword", entityItem.getName()); + } + + @Test + void getNameWithItem() { + entityItem.item = Item.get(ItemID.GOLD_SWORD); + assertEquals("1x Gold Sword", entityItem.getName()); + } +} diff --git a/src/test/java/cn/nukkit/utils/UtilsTest.java b/src/test/java/cn/nukkit/utils/UtilsTest.java new file mode 100644 index 00000000000..faa2266f2ce --- /dev/null +++ b/src/test/java/cn/nukkit/utils/UtilsTest.java @@ -0,0 +1,41 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.utils; + +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-06-29 + */ +class UtilsTest { + + @Test + void isNumeric() { + assertFalse(Utils.isNumeric(null)); + assertFalse(Utils.isNumeric("")); + assertFalse(Utils.isNumeric("-")); + assertTrue(Utils.isNumeric("-3")); + assertFalse(Utils.isNumeric("-3a")); + assertTrue(Utils.isNumeric("5")); + assertFalse(Utils.isNumeric("!")); + } +} From f3b379dbdbb12f68dd6e00974d9c4424acd67473 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 29 Jun 2021 23:57:53 -0300 Subject: [PATCH 121/394] Fixes a test failure --- src/test/java/cn/nukkit/entity/EntityTest.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/java/cn/nukkit/entity/EntityTest.java b/src/test/java/cn/nukkit/entity/EntityTest.java index f6cebd44d50..f823621916b 100644 --- a/src/test/java/cn/nukkit/entity/EntityTest.java +++ b/src/test/java/cn/nukkit/entity/EntityTest.java @@ -20,6 +20,7 @@ import cn.nukkit.level.Level; import cn.nukkit.level.format.FullChunk; +import cn.nukkit.level.format.LevelProvider; import cn.nukkit.math.Vector3; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; @@ -53,7 +54,8 @@ class EntityTest { @BeforeEach void setUp() { - lenient().when(chunk.getProvider()).thenReturn(level.getProvider()); + LevelProvider provider = level.getProvider(); + lenient().when(chunk.getProvider()).thenReturn(provider); } @ParameterizedTest From e6aeb5200034cca2b491e218a7fe4d7f75218e57 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 30 Jun 2021 00:13:04 -0300 Subject: [PATCH 122/394] Fixes a dependency issue --- pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pom.xml b/pom.xml index 7458e0e3fa3..97d959416cc 100644 --- a/pom.xml +++ b/pom.xml @@ -119,6 +119,16 @@ powernukkit-tests-junit5 0.1.0 test + + + org.junit.jupiter + junit-jupiter-engine + + + org.mockito + mockito-junit-jupiter + + org.powernukkit.fastutil From a1cdabfb1871609c35e1537bf2d2c65cf63fb12a Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 30 Jun 2021 00:32:41 -0300 Subject: [PATCH 123/394] Add #669 to the changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07354b1f087..8d19cab8387 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ Click the link above to see the future. - [#783] Soul campfire now deal double the damage that normal campfires deals - [#783] Campfire and Soul campfire now deal damage even the entity is sneaking - [#783] Campfire and Soul campfire now breaks when pushed by piston +- [#669] Improved the output of the `/kill @e` command ### Added - [#1146] Added implementation for `AnimateEntityPacket` @@ -29,6 +30,7 @@ Click the link above to see the future. - [#783] Campfire and Soul Campfire can now be lit by burning entities stepping on it - [#783] Campfire and Soul Campfire can now be unlit by throwing a splash water bottle on it - [#783] Campfire and Soul Campfire can now lit by using an item enchanted with fire aspect +- [#669] New API methods to get the name of the entity for display ### Fixes - [#1119] `TickSyncPacket` was not registered @@ -863,6 +865,7 @@ Fixes several anvil issues. [#544]: https://github.com/PowerNukkit/PowerNukkit/issues/544 [#576]: https://github.com/PowerNukkit/PowerNukkit/issues/576 [#625]: https://github.com/PowerNukkit/PowerNukkit/issues/625 +[#669]: https://github.com/PowerNukkit/PowerNukkit/issues/669 [#702]: https://github.com/PowerNukkit/PowerNukkit/issues/702 [#765]: https://github.com/PowerNukkit/PowerNukkit/issues/765 [#766]: https://github.com/PowerNukkit/PowerNukkit/issues/766 From 2799aa55edd65b3e129d16a98a49bcb29e94a96c Mon Sep 17 00:00:00 2001 From: Gabriel Henrique <31969146+Gabriel8579@users.noreply.github.com> Date: Wed, 30 Jun 2021 10:31:24 -0300 Subject: [PATCH 124/394] Update Player.java Bumps PowerNukkit since version --- src/main/java/cn/nukkit/Player.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 60bcb0b151b..f05887d256d 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -6004,7 +6004,7 @@ public void sendAnnouncement(String source, String message) { } @PowerNukkitOnly - @Since("1.4.0.0-PN") + @Since("1.5.1.0-PN") public void completeUsingItem(int itemId, int action) { CompletedUsingItemPacket pk = new CompletedUsingItemPacket(); pk.itemId = itemId; From 10f0fe6bb1d6f24b02f29dcf03d8551bab7064f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lobo=20Metal=C3=BArgico?= <43734867+LoboMetalurgico@users.noreply.github.com> Date: Wed, 30 Jun 2021 23:42:02 -0300 Subject: [PATCH 125/394] Fix Annotations --- src/main/java/cn/nukkit/Player.java | 2 +- src/main/java/cn/nukkit/item/food/Food.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 6f88c7a784a..94933f58924 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -6070,7 +6070,7 @@ public void sendAnnouncement(String source, String message) { } @PowerNukkitOnly - @Since("1.5.1.0-PN") + @Since("FUTURE") public void completeUsingItem(int itemId, int action) { CompletedUsingItemPacket pk = new CompletedUsingItemPacket(); pk.itemId = itemId; diff --git a/src/main/java/cn/nukkit/item/food/Food.java b/src/main/java/cn/nukkit/item/food/Food.java index dfa1517a146..28ab241bb3e 100644 --- a/src/main/java/cn/nukkit/item/food/Food.java +++ b/src/main/java/cn/nukkit/item/food/Food.java @@ -216,17 +216,17 @@ public Food setRestoreSaturation(float restoreSaturation) { } @PowerNukkitOnly - @Since("1.4.0.0-PN") + @Since("FUTURE") protected int eatingTick = 31; @PowerNukkitOnly - @Since("1.4.0.0-PN") + @Since("FUTURE") public int getEatingTick() { return eatingTick; } @PowerNukkitOnly - @Since("1.4.0.0-PN") + @Since("FUTURE") public Food setEatingTick(int eatingTick) { this.eatingTick = eatingTick; return this; From 04d9a7d5fe9fd0c1109be9f71b63797502ab05a5 Mon Sep 17 00:00:00 2001 From: Gabriel Henrique <31969146+Gabriel8579@users.noreply.github.com> Date: Thu, 1 Jul 2021 12:24:09 -0300 Subject: [PATCH 126/394] Fixes typo --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d19cab8387..addb35ad366 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ Click the link above to see the future. - [#1107] Guava version from `29.0` to `30.1.1` - [#1107] SnakeYAML version from `1.26` to `1.28` - [#1134] Update the Chinese, Russian, and Turkish translations. Thank you for your contributions! -- [#1149] Update the Spanish, and Russian translations. Also improved the message whena plugin is not found. Thank you for your contributions! +- [#1149] Update the Spanish, and Russian translations. Also improved the message when a plugin is not found. Thank you for your contributions! - [#1150] The `show_death_message` gamerule was renamed to `show_death_messages`. A backward compatibility code will keep the old one working, but it's now deprecated. - [#1151] Improved `/setworldspaw` auto completion - [#783] Campfire now drop 2 charcoal always From c9c60da06a4976b25df53e2df250cb1ed1912149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lobo=20Metal=C3=BArgico?= <43734867+LoboMetalurgico@users.noreply.github.com> Date: Sat, 3 Jul 2021 18:25:49 -0300 Subject: [PATCH 127/394] Add #1153 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index addb35ad366..46bef17f221 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ Click the link above to see the future. - [#1149] Update the Spanish, and Russian translations. Also improved the message when a plugin is not found. Thank you for your contributions! - [#1150] The `show_death_message` gamerule was renamed to `show_death_messages`. A backward compatibility code will keep the old one working, but it's now deprecated. - [#1151] Improved `/setworldspaw` auto completion +- [#1153] Deprecate BlockNetherBrick in favor of BlockBricksNether - [#783] Campfire now drop 2 charcoal always - [#783] Soul campfire now drops 1 soul sand - [#783] Soul campfire now deal double the damage that normal campfires deals @@ -42,6 +43,7 @@ Click the link above to see the future. - [#1130] Soul Campfire and End Crystal were rendering as other items in the inventory - [#1139] Backward compatibility with some custom world generators - [#1147] Sharpness damage calculation +- [#1153] Some Sonar Reports - [#1170] Cobwebs are now breakable by using shears - [#702] Burning arrow and rain will make a lot of particles - [#625] If you instant kill a mob with fire aspect enchant tool, it will not give fire aspect drops From 51c8c6395f377745b946a199af91d0d06f14fea4 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 3 Jul 2021 18:57:38 -0300 Subject: [PATCH 128/394] Update the translations --- src/main/resources/lang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/lang b/src/main/resources/lang index 14c127f4827..de9520cbe45 160000 --- a/src/main/resources/lang +++ b/src/main/resources/lang @@ -1 +1 @@ -Subproject commit 14c127f482736fdd4f19fb1277cf0a478b390a99 +Subproject commit de9520cbe455af545faa1cd784924357da443b6e From 0322e98d3715c05abedc066cd56a3619516cb9e4 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 3 Jul 2021 19:01:04 -0300 Subject: [PATCH 129/394] Improves Timings static initialization --- src/main/java/cn/nukkit/level/Level.java | 4 +--- src/main/java/co/aikar/timings/Timings.java | 11 +++++++++++ src/test/java/cn/nukkit/level/LevelTest.java | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 564c1d09e53..8c69af8cabb 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -54,10 +54,8 @@ import cn.nukkit.scheduler.BlockUpdateScheduler; import cn.nukkit.timings.LevelTimings; import cn.nukkit.utils.*; -import co.aikar.timings.Timing; import co.aikar.timings.Timings; import co.aikar.timings.TimingsHistory; -import co.aikar.timings.TimingsManager; import com.google.common.base.Preconditions; import it.unimi.dsi.fastutil.ints.Int2IntMap; import it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap; @@ -91,7 +89,7 @@ public class Level implements ChunkManager, Metadatable { public static final Level[] EMPTY_ARRAY = new Level[0]; static { - Timings.isTimingsEnabled(); // Fixes Concurrency issues on static initialization + Timings.init(); } private static int levelIdCounter = 1; diff --git a/src/main/java/co/aikar/timings/Timings.java b/src/main/java/co/aikar/timings/Timings.java index db545cae49d..303d3b42082 100644 --- a/src/main/java/co/aikar/timings/Timings.java +++ b/src/main/java/co/aikar/timings/Timings.java @@ -24,6 +24,8 @@ package co.aikar.timings; import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.blockentity.BlockEntity; import cn.nukkit.command.Command; import cn.nukkit.entity.Entity; @@ -133,6 +135,15 @@ public final class Timings { permissionDefaultTimer = TimingsManager.getTiming("Default Permission Calculation"); } + /** + * Initialize the static fields. + */ + @PowerNukkitOnly + @Since("FUTURE") + public static void init() { + // code is already executed on + } + public static boolean isTimingsEnabled() { return timingsEnabled; } diff --git a/src/test/java/cn/nukkit/level/LevelTest.java b/src/test/java/cn/nukkit/level/LevelTest.java index ab268e1f138..b91eb1961b4 100644 --- a/src/test/java/cn/nukkit/level/LevelTest.java +++ b/src/test/java/cn/nukkit/level/LevelTest.java @@ -57,7 +57,7 @@ void setUp() throws IOException { levelFolder = new File(server.getDataPath(), "worlds/TestLevel"); String path = levelFolder.getAbsolutePath()+File.separator; Anvil.generate(path, "TestLevel", 0, Flat.class); - Timings.isTimingsEnabled(); // Initialize timings to avoid concurrent updates on initialization + Timings.init(); level = new Level(server, "TestLevel", path, Anvil.class); level.setAutoSave(true); From c3c9a32e3ebe9d7a5eadba89f9df0f24461ef18b Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 3 Jul 2021 19:06:32 -0300 Subject: [PATCH 130/394] Fixes a bug reported by sonar. https://sonarcloud.io/project/issues?branch=bleeding&id=PowerNukkit_PowerNukkit&issues=AXpJajwVSTOs3RiOz6Rv&open=AXpJajwVSTOs3RiOz6Rv --- src/main/java/cn/nukkit/utils/BinaryStream.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index efc898ba892..f23719bc9d3 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -26,6 +26,7 @@ import io.netty.buffer.ByteBufAllocator; import io.netty.util.internal.EmptyArrays; import lombok.SneakyThrows; +import lombok.val; import java.io.ByteArrayInputStream; import java.io.IOException; @@ -725,8 +726,8 @@ public void putVector3f(float x, float y, float z) { } public void putGameRules(GameRules gameRules) { - Map rules = gameRules.getGameRules(); - this.putUnsignedVarInt(rules.size() - 1); + val rules = gameRules.getGameRules(); + this.putUnsignedVarInt(rules.size() - 1L); rules.forEach((gameRule, value) -> { //noinspection deprecation if (gameRule == GameRule.SHOW_DEATH_MESSAGE) { From 31b150c46b047db8f07a6965b8c7ecb4dfad20cd Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 15:24:47 -0300 Subject: [PATCH 131/394] Update the translations --- src/main/resources/lang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/lang b/src/main/resources/lang index de9520cbe45..64678407b27 160000 --- a/src/main/resources/lang +++ b/src/main/resources/lang @@ -1 +1 @@ -Subproject commit de9520cbe455af545faa1cd784924357da443b6e +Subproject commit 64678407b2746028d7b46591fe4d398f09a5ef09 From 20618a5762a9d24a3681a33f3fdcd5b483dff173 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 15:50:08 -0300 Subject: [PATCH 132/394] Add #1177 to the changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46bef17f221..17822374c90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ Click the link above to see the future. - [#1107] SnakeYAML version from `1.26` to `1.28` - [#1134] Update the Chinese, Russian, and Turkish translations. Thank you for your contributions! - [#1149] Update the Spanish, and Russian translations. Also improved the message when a plugin is not found. Thank you for your contributions! +- [#1177] Update the Portuguese, Chinese, and Polish translations. Also added the key `language.locale` to allow plugin devs to build a `Locale` object - [#1150] The `show_death_message` gamerule was renamed to `show_death_messages`. A backward compatibility code will keep the old one working, but it's now deprecated. - [#1151] Improved `/setworldspaw` auto completion - [#1153] Deprecate BlockNetherBrick in favor of BlockBricksNether @@ -900,3 +901,4 @@ Fixes several anvil issues. [#1150]: https://github.com/PowerNukkit/PowerNukkit/issues/1150 [#1151]: https://github.com/PowerNukkit/PowerNukkit/issues/1151 [#1170]: https://github.com/PowerNukkit/PowerNukkit/issues/1170 +[#1177]: https://github.com/PowerNukkit/PowerNukkit/issues/1177 From 0fb6c6e518ce6ba2d606f716dca55613b51d83f7 Mon Sep 17 00:00:00 2001 From: Gabriel Henrique <31969146+Gabriel8579@users.noreply.github.com> Date: Mon, 5 Jul 2021 16:44:53 -0300 Subject: [PATCH 133/394] Update Utils.java Changes SINCE to FUTURE --- src/main/java/cn/nukkit/utils/Utils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/utils/Utils.java b/src/main/java/cn/nukkit/utils/Utils.java index 9db54956a7c..d9bcee415c4 100644 --- a/src/main/java/cn/nukkit/utils/Utils.java +++ b/src/main/java/cn/nukkit/utils/Utils.java @@ -420,7 +420,7 @@ public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IO } @PowerNukkitOnly - @Since("1.4.0.0-PN") + @Since("FUTURE") public static boolean isNumeric(String str) { if (str == null) { return false; From 5022bd414c61acd683331f8f56fac25537426f49 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 17:16:12 -0300 Subject: [PATCH 134/394] Improves how the deprecated GameRule is handled --- .../command/defaults/GameruleCommand.java | 3 +-- src/main/java/cn/nukkit/level/GameRule.java | 21 +++++++++++++++++-- src/main/java/cn/nukkit/level/GameRules.java | 5 ++--- .../java/cn/nukkit/utils/BinaryStream.java | 11 +++++----- 4 files changed, 27 insertions(+), 13 deletions(-) diff --git a/src/main/java/cn/nukkit/command/defaults/GameruleCommand.java b/src/main/java/cn/nukkit/command/defaults/GameruleCommand.java index 4e287142805..c00cc5d0d39 100644 --- a/src/main/java/cn/nukkit/command/defaults/GameruleCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/GameruleCommand.java @@ -29,8 +29,7 @@ public GameruleCommand(String name) { List unknownGameRules = new ArrayList<>(); rules.getGameRules().forEach((rule, value) -> { - //noinspection deprecation - if (rule == GameRule.SHOW_DEATH_MESSAGE) { + if (rule.isDeprecated()) { return; } switch (value.getType()) { diff --git a/src/main/java/cn/nukkit/level/GameRule.java b/src/main/java/cn/nukkit/level/GameRule.java index d28f4a3862c..81aa5b1c52a 100644 --- a/src/main/java/cn/nukkit/level/GameRule.java +++ b/src/main/java/cn/nukkit/level/GameRule.java @@ -33,17 +33,22 @@ public enum GameRule { SEND_COMMAND_FEEDBACK("sendCommandFeedback"), SHOW_COORDINATES("showCoordinates"), @Since("FUTURE") SHOW_DEATH_MESSAGES("showDeathMessages"), - @PowerNukkitOnly @Deprecated + + @Deprecated + @PowerNukkitOnly("Renamed to SHOW_DEATH_MESSAGE by NukkitX") @DeprecationDetails(since = "FUTURE", reason = "Added by upstream with a different name", replaceWith = "SHOW_DEATH_MESSAGES") - SHOW_DEATH_MESSAGE(SHOW_DEATH_MESSAGES.name), + @SuppressWarnings("DeprecatedIsStillUsed") + SHOW_DEATH_MESSAGE(SHOW_DEATH_MESSAGES.name, true), + SPAWN_RADIUS("spawnRadius"), TNT_EXPLODES("tntExplodes"), EXPERIMENTAL_GAMEPLAY("experimentalGameplay"), SHOW_TAGS("showTags"); private final String name; + private final boolean deprecated; @PowerNukkitOnly @Since("1.4.0.0-PN") @@ -51,6 +56,12 @@ public enum GameRule { GameRule(String name) { this.name = name; + this.deprecated = false; + } + + GameRule(String name, boolean deprecated) { + this.name = name; + this.deprecated = deprecated; } public static Optional parseString(String gameRuleString) { @@ -79,4 +90,10 @@ public static String[] getNames() { public String getName() { return name; } + + @PowerNukkitOnly + @Since("FUTURE") + public boolean isDeprecated() { + return deprecated; + } } diff --git a/src/main/java/cn/nukkit/level/GameRules.java b/src/main/java/cn/nukkit/level/GameRules.java index 7063ef9dbfa..a0086aee691 100644 --- a/src/main/java/cn/nukkit/level/GameRules.java +++ b/src/main/java/cn/nukkit/level/GameRules.java @@ -51,9 +51,8 @@ public static GameRules getDefault() { gameRules.gameRules.put(SHOW_COORDINATES, new Value<>(Type.BOOLEAN, false)); gameRules.gameRules.put(SHOW_DEATH_MESSAGES, new Value<>(Type.BOOLEAN, true)); - // PN: Backward compatibility - //noinspection deprecation - gameRules.gameRules.put(SHOW_DEATH_MESSAGE, gameRules.gameRules.get(SHOW_DEATH_MESSAGES)); + @SuppressWarnings("deprecation") GameRule deprecated = SHOW_DEATH_MESSAGE; + gameRules.gameRules.put(deprecated, gameRules.gameRules.get(SHOW_DEATH_MESSAGES)); gameRules.gameRules.put(SPAWN_RADIUS, new Value<>(Type.INTEGER, 5)); gameRules.gameRules.put(TNT_EXPLODES, new Value<>(Type.BOOLEAN, true)); diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index f23719bc9d3..ced7a07cfd5 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -726,13 +726,12 @@ public void putVector3f(float x, float y, float z) { } public void putGameRules(GameRules gameRules) { - val rules = gameRules.getGameRules(); - this.putUnsignedVarInt(rules.size() - 1L); + // LinkedHashMap gives mutability and is faster in iteration + val rules = new LinkedHashMap<>(gameRules.getGameRules()); + rules.keySet().removeIf(GameRule::isDeprecated); + + this.putUnsignedVarInt(rules.size()); rules.forEach((gameRule, value) -> { - //noinspection deprecation - if (gameRule == GameRule.SHOW_DEATH_MESSAGE) { - return; - } this.putString(gameRule.getName().toLowerCase()); value.write(this); }); From f7aad3b512edb31d43b01be982de914fbec9447d Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 18:07:04 -0300 Subject: [PATCH 135/394] Improves #1100 solution, server tick update, armor stand name. The #1100 solution was resetting the level's day-night cycle in a way that could reset the calendar to day 0, it was also not taking in consideration the level's tick-rate. --- src/main/java/cn/nukkit/Server.java | 11 ++--------- .../java/cn/nukkit/entity/item/EntityArmorStand.java | 7 +++++++ .../enchantment/sideeffect/SideEffectCombust.java | 2 ++ src/main/java/cn/nukkit/level/Level.java | 6 ++++-- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/src/main/java/cn/nukkit/Server.java b/src/main/java/cn/nukkit/Server.java index 143f0fae6a2..f4d923f218f 100644 --- a/src/main/java/cn/nukkit/Server.java +++ b/src/main/java/cn/nukkit/Server.java @@ -1272,15 +1272,8 @@ public void sendRecipeList(Player player) { } private void checkTickUpdates(int currentTick, long tickTime) { - for (Player p : new ArrayList<>(this.players.values())) { - /*if (!p.loggedIn && (tickTime - p.creationTime) >= 10000 && p.kick(PlayerKickEvent.Reason.LOGIN_TIMEOUT, "Login timeout")) { - continue; - } - - client freezes when applying resource packs - todo: fix*/ - - if (this.alwaysTickPlayers) { + if (this.alwaysTickPlayers) { + for (Player p : new ArrayList<>(this.players.values())) { p.onUpdate(currentTick); } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityArmorStand.java b/src/main/java/cn/nukkit/entity/item/EntityArmorStand.java index c890c8e005f..b6eac496cfc 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityArmorStand.java +++ b/src/main/java/cn/nukkit/entity/item/EntityArmorStand.java @@ -437,6 +437,13 @@ public boolean attack(EntityDamageEvent source) { return true; } + @Since("FUTURE") + @PowerNukkitOnly + @Override + public String getOriginalName() { + return "Armor Stand"; + } + @Override public boolean entityBaseTick(int tickDiff) { boolean hasUpdate = super.entityBaseTick(tickDiff); diff --git a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java index 62cb07dc050..c5176972af5 100644 --- a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java +++ b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java @@ -46,6 +46,8 @@ public void setDuration(int duration) { this.duration = duration; } + @Since("FUTURE") + @PowerNukkitOnly @SneakyThrows @Override @Nonnull diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 8c69af8cabb..7a729d568d5 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -210,6 +210,7 @@ public static void setCanRandomTick(int blockId, boolean newValue) { private float time; public boolean stopTime; + private int nextTimeSendTick; public float skyLightSubtracted; @@ -835,7 +836,7 @@ public void unregisterChunkLoader(ChunkLoader loader, int chunkX, int chunkZ) { public void checkTime() { if (!this.stopTime && this.gameRules.getBoolean(GameRule.DO_DAYLIGHT_CYCLE)) { - this.time = (this.time + 1) % TIME_FULL; + this.time += tickRate; } } @@ -861,8 +862,9 @@ public void doTick(int currentTick) { updateBlockLight(lightQueue); this.checkTime(); - if (currentTick % (30 * 20) == 0) { + if (currentTick >= nextTimeSendTick) { // Send time to client every 30 seconds to make sure it this.sendTime(); + nextTimeSendTick = currentTick + 30 * 20; } // Tick Weather From 1207e8863880913b2589a576baf13f16d83a82a5 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 19:42:12 -0300 Subject: [PATCH 136/394] Rename Utils.isNumeric to isInteger, and a small optimization --- src/main/java/cn/nukkit/entity/Entity.java | 4 +-- src/main/java/cn/nukkit/level/Level.java | 2 +- .../network/protocol/AnimateEntityPacket.java | 26 +++++++++---------- src/main/java/cn/nukkit/utils/Utils.java | 2 +- src/test/java/cn/nukkit/utils/UtilsTest.java | 14 +++++----- 5 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 17e45933a59..9d242c2b037 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -1007,7 +1007,7 @@ public static boolean registerEntity(String name, Class clazz, @Since("FUTURE") public static IntCollection getKnownEntityIds() { return knownEntities.keySet().stream() - .filter(Utils::isNumeric) + .filter(Utils::isInteger) .mapToInt(Integer::parseInt) .collect(IntArrayList::new, IntArrayList::add, IntArrayList::addAll); } @@ -1030,7 +1030,7 @@ public static OptionalInt getSaveId(String id) { return knownEntities.entrySet().stream() .filter(entry -> entry.getValue().equals(entityClass)) .map(Map.Entry::getKey) - .filter(Utils::isNumeric) + .filter(Utils::isInteger) .mapToInt(Integer::parseInt) .findFirst(); } diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 7a729d568d5..73982798783 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -731,7 +731,7 @@ public boolean unload(boolean force) { TextFormat.GREEN + this.getName() + TextFormat.WHITE)); Level defaultLevel = this.server.getDefaultLevel(); - for (Player player : new ArrayList<>(this.getPlayers().values())) { + for (Player player : this.getPlayers().values().toArray(Player.EMPTY_ARRAY)) { if (this == defaultLevel || defaultLevel == null) { player.close(player.getLeaveMessage(), "Forced default level unload"); } else { diff --git a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java index 777596b178f..16d8cf9e14e 100644 --- a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java @@ -13,7 +13,7 @@ @Since("FUTURE") public class AnimateEntityPacket extends DataPacket { - @PowerNukkitOnly + @PowerNukkitOnly @Since("FUTURE") public static final byte NETWORK_ID = ProtocolInfo.ANIMATE_ENTITY_PACKET; @@ -56,73 +56,73 @@ public byte pid() { } @PowerNukkitOnly - @Since("1.5.0.0-PN") + @Since("FUTURE") public void setAnimation(String animation) { this.animation = animation; } @PowerNukkitOnly - @Since("1.5.0.0-PN") + @Since("FUTURE") public String getAnimation() { return this.animation; } @PowerNukkitOnly - @Since("1.5.0.0-PN") + @Since("FUTURE") public void setNextState(String nextState) { this.nextState = nextState; } @PowerNukkitOnly - @Since("1.5.0.0-PN") + @Since("FUTURE") public String getNextState() { return this.nextState; } @PowerNukkitOnly - @Since("1.5.0.0-PN") + @Since("FUTURE") public void setStopExpression(String stopExpression) { this.stopExpression = stopExpression; } @PowerNukkitOnly - @Since("1.5.0.0-PN") + @Since("FUTURE") public String getStopExpression() { return this.stopExpression; } @PowerNukkitOnly - @Since("1.5.0.0-PN") + @Since("FUTURE") public void setController(String controller) { this.controller = controller; } @PowerNukkitOnly - @Since("1.5.0.0-PN") + @Since("FUTURE") public String getController() { return this.controller; } @PowerNukkitOnly - @Since("1.5.0.0-PN") + @Since("FUTURE") public void setBlendOutTime(float blendOutTime) { this.blendOutTime = blendOutTime; } @PowerNukkitOnly - @Since("1.5.0.0-PN") + @Since("FUTURE") public float getBlendOutTime() { return this.blendOutTime; } @PowerNukkitOnly - @Since("1.5.0.0-PN") + @Since("FUTURE") public void setEntityRuntimeIds(List entityRuntimeIds) { this.entityRuntimeIds = entityRuntimeIds; } @PowerNukkitOnly - @Since("1.5.0.0-PN") + @Since("FUTURE") public List getEntityRuntimeIds() { return this.entityRuntimeIds; } diff --git a/src/main/java/cn/nukkit/utils/Utils.java b/src/main/java/cn/nukkit/utils/Utils.java index d9bcee415c4..8aa2d2b4e3f 100644 --- a/src/main/java/cn/nukkit/utils/Utils.java +++ b/src/main/java/cn/nukkit/utils/Utils.java @@ -421,7 +421,7 @@ public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IO @PowerNukkitOnly @Since("FUTURE") - public static boolean isNumeric(String str) { + public static boolean isInteger(String str) { if (str == null) { return false; } diff --git a/src/test/java/cn/nukkit/utils/UtilsTest.java b/src/test/java/cn/nukkit/utils/UtilsTest.java index faa2266f2ce..3df19fe06b3 100644 --- a/src/test/java/cn/nukkit/utils/UtilsTest.java +++ b/src/test/java/cn/nukkit/utils/UtilsTest.java @@ -30,12 +30,12 @@ class UtilsTest { @Test void isNumeric() { - assertFalse(Utils.isNumeric(null)); - assertFalse(Utils.isNumeric("")); - assertFalse(Utils.isNumeric("-")); - assertTrue(Utils.isNumeric("-3")); - assertFalse(Utils.isNumeric("-3a")); - assertTrue(Utils.isNumeric("5")); - assertFalse(Utils.isNumeric("!")); + assertFalse(Utils.isInteger(null)); + assertFalse(Utils.isInteger("")); + assertFalse(Utils.isInteger("-")); + assertTrue(Utils.isInteger("-3")); + assertFalse(Utils.isInteger("-3a")); + assertTrue(Utils.isInteger("5")); + assertFalse(Utils.isInteger("!")); } } From 7e9520fff205ff1fbb5777a33d26ff76731e911a Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 19:49:55 -0300 Subject: [PATCH 137/394] Optimize Entity.respawnToAll() --- src/main/java/cn/nukkit/entity/Entity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 9d242c2b037..28b16a37825 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -2630,7 +2630,7 @@ public long getId() { } public void respawnToAll() { - Collection players = new ArrayList<>(this.hasSpawned.values()); + Player[] players = this.hasSpawned.values().toArray(Player.EMPTY_ARRAY); this.hasSpawned.clear(); for (Player player : players) { From 632d47c9f2c75c17439755a7d95cccb143d8330f Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 20:04:27 -0300 Subject: [PATCH 138/394] Add some annotations, make use of Entity.extinguish() --- .../java/cn/nukkit/api/PowerNukkitDifference.java | 12 +++++++++++- .../cn/nukkit/entity/projectile/EntityArrow.java | 3 +-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/api/PowerNukkitDifference.java b/src/main/java/cn/nukkit/api/PowerNukkitDifference.java index d2043fd955b..d140605e5a0 100644 --- a/src/main/java/cn/nukkit/api/PowerNukkitDifference.java +++ b/src/main/java/cn/nukkit/api/PowerNukkitDifference.java @@ -16,10 +16,20 @@ @Documented @Repeatable(PowerNukkitDifference.DifferenceList.class) public @interface PowerNukkitDifference { + @PowerNukkitOnly + @Since("1.3.0.0-PN") String info() default ""; + + @PowerNukkitOnly + @Since("1.3.0.0-PN") String since() default ""; - + + @PowerNukkitOnly + @Since("FUTURE") Class extendsOnlyInPowerNukkit() default Void.class; + + @PowerNukkitOnly + @Since("FUTURE") Class insteadOf() default Void.class; @Retention(RetentionPolicy.CLASS) diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java index 95f73082a83..5d9af494c95 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java @@ -145,8 +145,7 @@ public boolean onUpdate(int currentTick) { } if (this.level.isRaining() && this.fireTicks > 0 && this.level.canBlockSeeSky(this)) { - this.fireTicks = 0; - this.setDataFlag(DATA_FLAGS, DATA_FLAG_ONFIRE, false); + extinguish(); hasUpdate = true; } From c9094670ca5232f8587c2df20a9b9dd377ec4a62 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 20:09:11 -0300 Subject: [PATCH 139/394] Replace all "FUTURE" with "1.5.1.0-PN" --- src/main/java/cn/nukkit/Player.java | 4 +-- .../cn/nukkit/api/PowerNukkitDifference.java | 4 +-- src/main/java/cn/nukkit/block/Block.java | 2 +- .../java/cn/nukkit/block/BlockCampfire.java | 2 +- .../cn/nukkit/block/BlockCampfireSoul.java | 2 +- .../cn/nukkit/block/BlockNetherBrick.java | 6 ++-- src/main/java/cn/nukkit/block/BlockWood.java | 2 +- .../nukkit/blockstate/IMutableBlockState.java | 2 +- src/main/java/cn/nukkit/entity/Entity.java | 16 +++++------ .../java/cn/nukkit/entity/EntityHuman.java | 4 +-- .../entity/item/EntityAreaEffectCloud.java | 2 +- .../nukkit/entity/item/EntityArmorStand.java | 2 +- .../cn/nukkit/entity/item/EntityBoat.java | 2 +- .../nukkit/entity/item/EntityEndCrystal.java | 2 +- .../nukkit/entity/item/EntityExpBottle.java | 2 +- .../entity/item/EntityFallingBlock.java | 2 +- .../cn/nukkit/entity/item/EntityFirework.java | 2 +- .../nukkit/entity/item/EntityFishingHook.java | 2 +- .../cn/nukkit/entity/item/EntityItem.java | 2 +- .../entity/item/EntityMinecartChest.java | 2 +- .../entity/item/EntityMinecartEmpty.java | 2 +- .../entity/item/EntityMinecartHopper.java | 2 +- .../nukkit/entity/item/EntityMinecartTNT.java | 2 +- .../cn/nukkit/entity/item/EntityPainting.java | 2 +- .../cn/nukkit/entity/item/EntityPotion.java | 2 +- .../entity/item/EntityPotionLingering.java | 2 +- .../nukkit/entity/item/EntityPrimedTNT.java | 2 +- .../cn/nukkit/entity/item/EntityXPOrb.java | 2 +- .../cn/nukkit/entity/mob/EntityBlaze.java | 2 +- .../nukkit/entity/mob/EntityCaveSpider.java | 2 +- .../cn/nukkit/entity/mob/EntityCreeper.java | 2 +- .../cn/nukkit/entity/mob/EntityDrowned.java | 2 +- .../entity/mob/EntityElderGuardian.java | 2 +- .../nukkit/entity/mob/EntityEnderDragon.java | 2 +- .../cn/nukkit/entity/mob/EntityEnderman.java | 2 +- .../cn/nukkit/entity/mob/EntityEndermite.java | 2 +- .../cn/nukkit/entity/mob/EntityEvoker.java | 2 +- .../cn/nukkit/entity/mob/EntityGhast.java | 2 +- .../cn/nukkit/entity/mob/EntityGuardian.java | 2 +- .../cn/nukkit/entity/mob/EntityHoglin.java | 2 +- .../java/cn/nukkit/entity/mob/EntityHusk.java | 2 +- .../cn/nukkit/entity/mob/EntityIronGolem.java | 2 +- .../cn/nukkit/entity/mob/EntityMagmaCube.java | 2 +- .../cn/nukkit/entity/mob/EntityPhantom.java | 2 +- .../cn/nukkit/entity/mob/EntityPiglin.java | 2 +- .../nukkit/entity/mob/EntityPiglinBrute.java | 2 +- .../cn/nukkit/entity/mob/EntityPillager.java | 2 +- .../cn/nukkit/entity/mob/EntityRavager.java | 2 +- .../cn/nukkit/entity/mob/EntityShulker.java | 2 +- .../nukkit/entity/mob/EntitySilverfish.java | 2 +- .../cn/nukkit/entity/mob/EntitySkeleton.java | 2 +- .../cn/nukkit/entity/mob/EntitySlime.java | 2 +- .../cn/nukkit/entity/mob/EntitySnowGolem.java | 2 +- .../cn/nukkit/entity/mob/EntitySpider.java | 2 +- .../cn/nukkit/entity/mob/EntityStray.java | 2 +- .../java/cn/nukkit/entity/mob/EntityVex.java | 2 +- .../nukkit/entity/mob/EntityVindicator.java | 2 +- .../cn/nukkit/entity/mob/EntityWitch.java | 2 +- .../cn/nukkit/entity/mob/EntityWither.java | 2 +- .../entity/mob/EntityWitherSkeleton.java | 2 +- .../cn/nukkit/entity/mob/EntityZoglin.java | 2 +- .../cn/nukkit/entity/mob/EntityZombie.java | 2 +- .../nukkit/entity/mob/EntityZombiePigman.java | 2 +- .../entity/mob/EntityZombieVillager.java | 2 +- .../entity/mob/EntityZombieVillagerV1.java | 2 +- .../cn/nukkit/entity/passive/EntityBat.java | 2 +- .../cn/nukkit/entity/passive/EntityBee.java | 2 +- .../cn/nukkit/entity/passive/EntityCat.java | 2 +- .../nukkit/entity/passive/EntityChicken.java | 2 +- .../cn/nukkit/entity/passive/EntityCod.java | 2 +- .../cn/nukkit/entity/passive/EntityCow.java | 2 +- .../nukkit/entity/passive/EntityDolphin.java | 2 +- .../nukkit/entity/passive/EntityDonkey.java | 2 +- .../cn/nukkit/entity/passive/EntityFox.java | 2 +- .../cn/nukkit/entity/passive/EntityHorse.java | 2 +- .../cn/nukkit/entity/passive/EntityLlama.java | 2 +- .../entity/passive/EntityMooshroom.java | 2 +- .../cn/nukkit/entity/passive/EntityMule.java | 2 +- .../entity/passive/EntityNPCEntity.java | 2 +- .../nukkit/entity/passive/EntityOcelot.java | 2 +- .../cn/nukkit/entity/passive/EntityPanda.java | 2 +- .../nukkit/entity/passive/EntityParrot.java | 2 +- .../cn/nukkit/entity/passive/EntityPig.java | 2 +- .../entity/passive/EntityPolarBear.java | 2 +- .../entity/passive/EntityPufferfish.java | 2 +- .../nukkit/entity/passive/EntityRabbit.java | 2 +- .../nukkit/entity/passive/EntitySalmon.java | 2 +- .../cn/nukkit/entity/passive/EntitySheep.java | 2 +- .../entity/passive/EntitySkeletonHorse.java | 2 +- .../cn/nukkit/entity/passive/EntitySquid.java | 2 +- .../nukkit/entity/passive/EntityStrider.java | 2 +- .../entity/passive/EntityTropicalFish.java | 2 +- .../nukkit/entity/passive/EntityTurtle.java | 2 +- .../nukkit/entity/passive/EntityVillager.java | 2 +- .../entity/passive/EntityVillagerV1.java | 2 +- .../entity/passive/EntityWanderingTrader.java | 2 +- .../cn/nukkit/entity/passive/EntityWolf.java | 2 +- .../entity/passive/EntityZombieHorse.java | 2 +- .../nukkit/entity/projectile/EntityArrow.java | 2 +- .../nukkit/entity/projectile/EntityEgg.java | 2 +- .../entity/projectile/EntityEnderPearl.java | 2 +- .../entity/projectile/EntitySnowball.java | 2 +- .../projectile/EntityThrownTrident.java | 2 +- .../entity/weather/EntityLightning.java | 2 +- .../event/entity/EntityDamageEvent.java | 10 +++---- src/main/java/cn/nukkit/item/Item.java | 2 +- .../nukkit/item/enchantment/Enchantment.java | 2 +- .../enchantment/EnchantmentFireAspect.java | 4 +-- .../enchantment/sideeffect/SideEffect.java | 8 +++--- .../sideeffect/SideEffectCombust.java | 12 ++++---- src/main/java/cn/nukkit/item/food/Food.java | 6 ++-- src/main/java/cn/nukkit/level/GameRule.java | 8 +++--- .../network/protocol/AnimateEntityPacket.java | 28 +++++++++---------- src/main/java/cn/nukkit/utils/Utils.java | 2 +- src/main/java/co/aikar/timings/Timings.java | 2 +- 115 files changed, 158 insertions(+), 158 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 94933f58924..7dd4fcd489f 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -4468,7 +4468,7 @@ public void save(boolean async) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Player"; @@ -6070,7 +6070,7 @@ public void sendAnnouncement(String source, String message) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public void completeUsingItem(int itemId, int action) { CompletedUsingItemPacket pk = new CompletedUsingItemPacket(); pk.itemId = itemId; diff --git a/src/main/java/cn/nukkit/api/PowerNukkitDifference.java b/src/main/java/cn/nukkit/api/PowerNukkitDifference.java index d140605e5a0..a1c0b91fa52 100644 --- a/src/main/java/cn/nukkit/api/PowerNukkitDifference.java +++ b/src/main/java/cn/nukkit/api/PowerNukkitDifference.java @@ -25,11 +25,11 @@ String since() default ""; @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") Class extendsOnlyInPowerNukkit() default Void.class; @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") Class insteadOf() default Void.class; @Retention(RetentionPolicy.CLASS) diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index a7ba428d7d2..5ee8d440d1f 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -1940,7 +1940,7 @@ public void setState(@Nonnull IBlockState state) throws InvalidBlockStateExcepti getMutableState().setState(state); } - @Since("FUTURE") + @Since("1.5.1.0-PN") @PowerNukkitOnly @Override @Nonnull diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index faf0ed937d0..718a82c09cf 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -198,7 +198,7 @@ public void onEntityCollide(Entity entity) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") protected EntityDamageEvent getDamageEvent(Entity entity) { return new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.FIRE, 1); } diff --git a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java index 858b45fb6ed..e5cceb42e6b 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfireSoul.java +++ b/src/main/java/cn/nukkit/block/BlockCampfireSoul.java @@ -49,7 +49,7 @@ public Item[] getDrops(Item item) { return new Item[] { MinecraftItemID.SOUL_SOIL.get(1) }; } - @Since("FUTURE") + @Since("1.5.1.0-PN") @PowerNukkitOnly @Override protected EntityDamageEvent getDamageEvent(Entity entity) { diff --git a/src/main/java/cn/nukkit/block/BlockNetherBrick.java b/src/main/java/cn/nukkit/block/BlockNetherBrick.java index 1ad82221193..ddd1b6efaef 100644 --- a/src/main/java/cn/nukkit/block/BlockNetherBrick.java +++ b/src/main/java/cn/nukkit/block/BlockNetherBrick.java @@ -8,15 +8,15 @@ * @since 2015/12/7 */ @Deprecated -@DeprecationDetails(since = "FUTURE", by = "PowerNukkit", +@DeprecationDetails(since = "1.5.1.0-PN", by = "PowerNukkit", reason = "Duplicated of BlockBricksNether and the other one is used instead of this one.", replaceWith = "BlockBricksNether" ) -@PowerNukkitDifference(since = "FUTURE", extendsOnlyInPowerNukkit = BlockBricksNether.class, insteadOf = BlockSolid.class) +@PowerNukkitDifference(since = "1.5.1.0-PN", extendsOnlyInPowerNukkit = BlockBricksNether.class, insteadOf = BlockSolid.class) @SuppressWarnings({"DeprecatedIsStillUsed", "java:S1133"}) public class BlockNetherBrick extends BlockBricksNether { @Deprecated - @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", + @DeprecationDetails(since = "1.5.1.0-PN", by = "PowerNukkit", reason = "Duplicated of BlockBricksNether and the other one is used instead of this one.", replaceWith = "BlockBricksNether" ) diff --git a/src/main/java/cn/nukkit/block/BlockWood.java b/src/main/java/cn/nukkit/block/BlockWood.java index 38d029abf4c..2daba6bd972 100644 --- a/src/main/java/cn/nukkit/block/BlockWood.java +++ b/src/main/java/cn/nukkit/block/BlockWood.java @@ -85,7 +85,7 @@ public String getName() { return getWoodType().getEnglishName() + " Log"; } - @Since("FUTURE") + @Since("1.5.1.0-PN") @PowerNukkitOnly @Nonnull @Override diff --git a/src/main/java/cn/nukkit/blockstate/IMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/IMutableBlockState.java index 9728c2718af..c60fbb3637d 100644 --- a/src/main/java/cn/nukkit/blockstate/IMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/IMutableBlockState.java @@ -60,7 +60,7 @@ default void setState(IBlockState state) throws InvalidBlockStateException { * @param state The states that will have the properties copied. */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Nonnull default IMutableBlockState forState(@Nonnull IBlockState state) throws InvalidBlockStateException { setState(state); diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 28b16a37825..d19d49ac84f 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -452,7 +452,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public float getCurrentHeight() { if (isSwimming()) { return getSwimmingHeight(); @@ -696,7 +696,7 @@ public boolean isSwimming() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public float getSwimmingHeight() { return getHeight(); } @@ -1004,7 +1004,7 @@ public static boolean registerEntity(String name, Class clazz, @Nonnull @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public static IntCollection getKnownEntityIds() { return knownEntities.keySet().stream() .filter(Utils::isInteger) @@ -1014,14 +1014,14 @@ public static IntCollection getKnownEntityIds() { @Nonnull @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public static List getSaveIds() { return new ArrayList<>(shortNames.values()); } @Nonnull @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public static OptionalInt getSaveId(String id) { Class entityClass = knownEntities.get(id); if (entityClass == null) { @@ -1037,7 +1037,7 @@ public static OptionalInt getSaveId(String id) { @Nullable @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public static String getSaveId(int id) { Class entityClass = knownEntities.get(Integer.toString(id)); if (entityClass == null) { @@ -1138,7 +1138,7 @@ public void saveNBT() { * The name that English name of the type of this entity. */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public String getOriginalName() { return this.getSaveId(); } @@ -1147,7 +1147,7 @@ public String getOriginalName() { * Similar to {@link #getName()}, but if the name is blank or empty it returns the static name instead. */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public final String getVisibleName() { String name = getName(); if (!TextFormat.clean(name).trim().isEmpty()) { diff --git a/src/main/java/cn/nukkit/entity/EntityHuman.java b/src/main/java/cn/nukkit/entity/EntityHuman.java index f020f67bca8..03321d30e90 100644 --- a/src/main/java/cn/nukkit/entity/EntityHuman.java +++ b/src/main/java/cn/nukkit/entity/EntityHuman.java @@ -52,7 +52,7 @@ public float getHeight() { return 1.8f; } - @Since("FUTURE") + @Since("1.5.1.0-PN") @PowerNukkitOnly @Override public float getSwimmingHeight() { @@ -220,7 +220,7 @@ protected void initEntity() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Human"; diff --git a/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java b/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java index e518e34875c..8ba5dbb9920 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java +++ b/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java @@ -412,7 +412,7 @@ public int getNetworkId() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Area Effect Cloud"; diff --git a/src/main/java/cn/nukkit/entity/item/EntityArmorStand.java b/src/main/java/cn/nukkit/entity/item/EntityArmorStand.java index b6eac496cfc..fbc56d80280 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityArmorStand.java +++ b/src/main/java/cn/nukkit/entity/item/EntityArmorStand.java @@ -437,7 +437,7 @@ public boolean attack(EntityDamageEvent source) { return true; } - @Since("FUTURE") + @Since("1.5.1.0-PN") @PowerNukkitOnly @Override public String getOriginalName() { diff --git a/src/main/java/cn/nukkit/entity/item/EntityBoat.java b/src/main/java/cn/nukkit/entity/item/EntityBoat.java index 58eb20a0a4a..67c80e8102d 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityBoat.java +++ b/src/main/java/cn/nukkit/entity/item/EntityBoat.java @@ -584,7 +584,7 @@ public void setVariant(int variant) { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Boat"; diff --git a/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java b/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java index b1790e90637..65d7faaaa94 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java +++ b/src/main/java/cn/nukkit/entity/item/EntityEndCrystal.java @@ -112,7 +112,7 @@ public void setShowBase(boolean value) { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Ender Crystal"; diff --git a/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java b/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java index 1be5136f107..593275862bb 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java +++ b/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java @@ -108,7 +108,7 @@ protected void addHitEffect() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Bottle o' Enchanting"; diff --git a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java index 5887ef5f7de..a46a37b8fcc 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java @@ -231,7 +231,7 @@ public boolean canBeMovedByCurrents() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Falling Block"; diff --git a/src/main/java/cn/nukkit/entity/item/EntityFirework.java b/src/main/java/cn/nukkit/entity/item/EntityFirework.java index d30d72de843..a5505ce87c3 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFirework.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFirework.java @@ -188,7 +188,7 @@ public float getHeight() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Firework Rocket"; diff --git a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java index 0c7f889490f..b88d018c332 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java @@ -314,7 +314,7 @@ public void onCollideWithEntity(Entity entity) { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Fishing Hook"; diff --git a/src/main/java/cn/nukkit/entity/item/EntityItem.java b/src/main/java/cn/nukkit/entity/item/EntityItem.java index 0daeaf57f20..8dacbcd55f7 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityItem.java +++ b/src/main/java/cn/nukkit/entity/item/EntityItem.java @@ -290,7 +290,7 @@ public void saveNBT() { } } - @Since("FUTURE") + @Since("1.5.1.0-PN") @PowerNukkitOnly @Override public String getOriginalName() { diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartChest.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartChest.java index d9883a8a121..71bffa1142c 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartChest.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartChest.java @@ -31,7 +31,7 @@ public EntityMinecartChest(FullChunk chunk, CompoundTag nbt) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return getType().getName(); diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartEmpty.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartEmpty.java index a3acab88246..57c012fb4fb 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartEmpty.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartEmpty.java @@ -28,7 +28,7 @@ public EntityMinecartEmpty(FullChunk chunk, CompoundTag nbt) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return getType().getName(); diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java index e2f8bf70c97..b2ab7955545 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java @@ -27,7 +27,7 @@ public EntityMinecartHopper(FullChunk chunk, CompoundTag nbt) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return getType().getName(); diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java index 842cce0c27e..81fc4cb2f90 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java @@ -120,7 +120,7 @@ public void dropItem() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return getType().getName(); diff --git a/src/main/java/cn/nukkit/entity/item/EntityPainting.java b/src/main/java/cn/nukkit/entity/item/EntityPainting.java index 77c4faeff22..334a05bb992 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPainting.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPainting.java @@ -201,7 +201,7 @@ public enum Motive { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Painting"; diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotion.java b/src/main/java/cn/nukkit/entity/item/EntityPotion.java index 88b1a0cdec3..b35d214c2f8 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotion.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotion.java @@ -167,7 +167,7 @@ public boolean onUpdate(int currentTick) { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Potion"; diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java b/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java index 563333e55cf..5f265028d0d 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java @@ -58,7 +58,7 @@ protected void splash(Entity collidedWith) { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Lingering Potion"; diff --git a/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java b/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java index 3c2108f4587..69fc35a67d8 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java @@ -183,7 +183,7 @@ public Entity getSource() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Block of TNT"; diff --git a/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java b/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java index 39294cdc7ee..fc8b5ba4e05 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java +++ b/src/main/java/cn/nukkit/entity/item/EntityXPOrb.java @@ -269,7 +269,7 @@ public static List splitIntoOrbSizes(int amount) { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Experience Orb"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java b/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java index e580c604825..34fd0135e31 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java @@ -39,7 +39,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Blaze"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java b/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java index 6cacd13ba6a..55d0ffd2f0d 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java @@ -40,7 +40,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Cave Spider"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java b/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java index f77425f6ac9..ca125dc20c6 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java @@ -84,7 +84,7 @@ protected void initEntity() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Creeper"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java b/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java index 31914cffbfa..a73b4896907 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java @@ -41,7 +41,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Drowned"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java b/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java index 41bd30c947e..a716734af0b 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java @@ -40,7 +40,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Elder Guardian"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java b/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java index a3839911c96..cf02386d963 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEnderDragon.java @@ -54,7 +54,7 @@ public boolean applyNameTag(Item item) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Ender Dragon"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java b/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java index 8b8d7a5e6f2..843c0db6f56 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java @@ -39,7 +39,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Enderman"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java b/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java index b3f13ad998d..e4ab5830a43 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java @@ -40,7 +40,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Endermite"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java b/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java index 62fe5689bdf..2f061a4cd27 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java @@ -39,7 +39,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Evoker"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityGhast.java b/src/main/java/cn/nukkit/entity/mob/EntityGhast.java index ae32ff985bc..b7cd44009d5 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityGhast.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityGhast.java @@ -38,7 +38,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Ghast"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java b/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java index 8a1d2bb7b8d..ea3885ff7b6 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java @@ -29,7 +29,7 @@ public void initEntity() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Guardian"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java b/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java index dc0d5c11221..a998e3c5593 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java @@ -48,7 +48,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Hoglin"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityHusk.java b/src/main/java/cn/nukkit/entity/mob/EntityHusk.java index 2c067591744..25dd5ecd9da 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityHusk.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityHusk.java @@ -40,7 +40,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Husk"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityIronGolem.java b/src/main/java/cn/nukkit/entity/mob/EntityIronGolem.java index dcdea98c698..a18081cb63c 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityIronGolem.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityIronGolem.java @@ -51,7 +51,7 @@ public int getNetworkId() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Iron Golem"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityMagmaCube.java b/src/main/java/cn/nukkit/entity/mob/EntityMagmaCube.java index 0be93c392a2..522a383117d 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityMagmaCube.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityMagmaCube.java @@ -38,7 +38,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Magma Cube"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java b/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java index 283b2cb29d9..6bc7afdf3ae 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java @@ -41,7 +41,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Phantom"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java b/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java index 95b0d9cbf59..a9918d07830 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java @@ -42,7 +42,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Piglin"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java b/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java index 59ac101b78b..9cd797a9631 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java @@ -51,7 +51,7 @@ public boolean isPreventingSleep(Player player) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Piglin Brute"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPillager.java b/src/main/java/cn/nukkit/entity/mob/EntityPillager.java index 008e6430c00..b4a81e649d0 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPillager.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPillager.java @@ -36,7 +36,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Pillager"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityRavager.java b/src/main/java/cn/nukkit/entity/mob/EntityRavager.java index d78a9de8e45..56198e00694 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityRavager.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityRavager.java @@ -36,7 +36,7 @@ public float getWidth() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Ravager"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityShulker.java b/src/main/java/cn/nukkit/entity/mob/EntityShulker.java index c634107c382..e1ae3596206 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityShulker.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityShulker.java @@ -38,7 +38,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Shulker"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java b/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java index 34d75f9023a..4815af3eaa8 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java @@ -24,7 +24,7 @@ public EntitySilverfish(FullChunk chunk, CompoundTag nbt) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Silverfish"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java b/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java index 7e60f15397c..9fdd01943ea 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java @@ -41,7 +41,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Skeleton"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySlime.java b/src/main/java/cn/nukkit/entity/mob/EntitySlime.java index b5b2b77789b..9539c34cc7f 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySlime.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySlime.java @@ -39,7 +39,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Slime"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySnowGolem.java b/src/main/java/cn/nukkit/entity/mob/EntitySnowGolem.java index f9ffaa46f1d..33e921e91b2 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySnowGolem.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySnowGolem.java @@ -21,7 +21,7 @@ public int getNetworkId() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Snow Golem"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySpider.java b/src/main/java/cn/nukkit/entity/mob/EntitySpider.java index d796a11698c..7509e5a85f5 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySpider.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySpider.java @@ -41,7 +41,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Spider"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityStray.java b/src/main/java/cn/nukkit/entity/mob/EntityStray.java index 4afe1bbaf6c..5bfe2cf1de0 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityStray.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityStray.java @@ -41,7 +41,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Stray"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityVex.java b/src/main/java/cn/nukkit/entity/mob/EntityVex.java index 543fb3ae18b..4e18ec5df2e 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityVex.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityVex.java @@ -39,7 +39,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Vex"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java b/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java index 14fcd2f3433..d58d513ae72 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java @@ -40,7 +40,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Vindicator"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWitch.java b/src/main/java/cn/nukkit/entity/mob/EntityWitch.java index 45fed1e1776..a111651a5da 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWitch.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWitch.java @@ -39,7 +39,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Witch"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWither.java b/src/main/java/cn/nukkit/entity/mob/EntityWither.java index ab52deea6dc..14d6e8762b0 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWither.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWither.java @@ -40,7 +40,7 @@ protected void initEntity() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Wither"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java b/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java index da27eaffa43..d0557735dbb 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java @@ -39,7 +39,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Wither Skeleton"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java b/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java index 705b4313475..a3ea1a6d437 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java @@ -49,7 +49,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Zoglin"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombie.java b/src/main/java/cn/nukkit/entity/mob/EntityZombie.java index dfa35ffac79..1de9f5204c5 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombie.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombie.java @@ -41,7 +41,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Zombie"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java b/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java index e5d284c4d2f..cf852e6c98f 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java @@ -40,7 +40,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Zombified Piglin"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java index 3d53d68f7ef..fdac8a533ad 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java @@ -37,7 +37,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Zombie Villager"; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java index 6542d2840c0..b6ceb668dc4 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java @@ -39,7 +39,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Zombie Villager"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityBat.java b/src/main/java/cn/nukkit/entity/passive/EntityBat.java index cbdc163f11f..2618bc8bf24 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityBat.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityBat.java @@ -39,7 +39,7 @@ public void initEntity() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Bat"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityBee.java b/src/main/java/cn/nukkit/entity/passive/EntityBee.java index 8ef5d5658e0..077df04c5f2 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityBee.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityBee.java @@ -124,7 +124,7 @@ public void setAngry(Player player) { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Bee"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityCat.java b/src/main/java/cn/nukkit/entity/passive/EntityCat.java index d385807003b..aa9eadd0295 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityCat.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityCat.java @@ -42,7 +42,7 @@ public void initEntity() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Cat"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityChicken.java b/src/main/java/cn/nukkit/entity/passive/EntityChicken.java index ef80b409b76..44b7ff949dc 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityChicken.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityChicken.java @@ -34,7 +34,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Chicken"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityCod.java b/src/main/java/cn/nukkit/entity/passive/EntityCod.java index 21302a6dfd5..a73ad5c72ff 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityCod.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityCod.java @@ -22,7 +22,7 @@ public int getNetworkId() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Cod"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityCow.java b/src/main/java/cn/nukkit/entity/passive/EntityCow.java index 055f4b273b9..9a4d8c1ac7f 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityCow.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityCow.java @@ -34,7 +34,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Cow"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityDolphin.java b/src/main/java/cn/nukkit/entity/passive/EntityDolphin.java index b96a7d5b709..54f41179c9b 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityDolphin.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityDolphin.java @@ -23,7 +23,7 @@ public int getNetworkId() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Dolphin"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java b/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java index fc582c66e0c..612391f7cf9 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityDonkey.java @@ -51,7 +51,7 @@ public Item[] getDrops() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Donkey"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityFox.java b/src/main/java/cn/nukkit/entity/passive/EntityFox.java index 226ba8fc048..2956d891b89 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityFox.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityFox.java @@ -42,7 +42,7 @@ protected void initEntity() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Fox"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityHorse.java b/src/main/java/cn/nukkit/entity/passive/EntityHorse.java index 5ad91f04e72..3279cc6f8e3 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityHorse.java @@ -51,7 +51,7 @@ public Item[] getDrops() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Horse"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityLlama.java b/src/main/java/cn/nukkit/entity/passive/EntityLlama.java index d24b5fa4e0d..71ea229972d 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityLlama.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityLlama.java @@ -53,7 +53,7 @@ public void initEntity() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Llama"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityMooshroom.java b/src/main/java/cn/nukkit/entity/passive/EntityMooshroom.java index d5cec4702cf..ced896fefa7 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityMooshroom.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityMooshroom.java @@ -34,7 +34,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Mooshroom"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityMule.java b/src/main/java/cn/nukkit/entity/passive/EntityMule.java index 14e0cb71c82..dd1cca7cb55 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityMule.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityMule.java @@ -51,7 +51,7 @@ public void initEntity() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Mule"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityNPCEntity.java b/src/main/java/cn/nukkit/entity/passive/EntityNPCEntity.java index c32d9cf6e5a..5c5236c9641 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityNPCEntity.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityNPCEntity.java @@ -50,7 +50,7 @@ public String getInteractButtonText() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "NPC"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityOcelot.java b/src/main/java/cn/nukkit/entity/passive/EntityOcelot.java index 7d3cba11044..8a01c864f0e 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityOcelot.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityOcelot.java @@ -34,7 +34,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Ocelot"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPanda.java b/src/main/java/cn/nukkit/entity/passive/EntityPanda.java index 5577ecd62a9..ecd747c3bb3 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPanda.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPanda.java @@ -36,7 +36,7 @@ public void initEntity() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Panda"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityParrot.java b/src/main/java/cn/nukkit/entity/passive/EntityParrot.java index 0b78255afeb..1bfd2a3d610 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityParrot.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityParrot.java @@ -23,7 +23,7 @@ public int getNetworkId() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Parrot"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPig.java b/src/main/java/cn/nukkit/entity/passive/EntityPig.java index ac5e2f8fb18..11c6d01c9bb 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPig.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPig.java @@ -40,7 +40,7 @@ public void initEntity() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Pig"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java b/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java index c210470eb69..fb91711f944 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPolarBear.java @@ -51,7 +51,7 @@ public Item[] getDrops() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Polar Bear"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityPufferfish.java b/src/main/java/cn/nukkit/entity/passive/EntityPufferfish.java index c981a3869c0..e9423f6279a 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityPufferfish.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityPufferfish.java @@ -22,7 +22,7 @@ public int getNetworkId() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Pufferfish"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityRabbit.java b/src/main/java/cn/nukkit/entity/passive/EntityRabbit.java index ee39f36f883..210c0d40b9e 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityRabbit.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityRabbit.java @@ -34,7 +34,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Rabbit"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySalmon.java b/src/main/java/cn/nukkit/entity/passive/EntitySalmon.java index 8db4ba1d36f..8926d7a7fbd 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySalmon.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySalmon.java @@ -22,7 +22,7 @@ public int getNetworkId() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Salmon"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySheep.java b/src/main/java/cn/nukkit/entity/passive/EntitySheep.java index d66db68b7d9..a9e79eaec3b 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySheep.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySheep.java @@ -45,7 +45,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Sheep"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java b/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java index f6953da091f..36b51aa390b 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java @@ -51,7 +51,7 @@ public boolean isUndead() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Skeleton Horse"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySquid.java b/src/main/java/cn/nukkit/entity/passive/EntitySquid.java index 45a16ce7d45..6dab217e4f1 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySquid.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySquid.java @@ -46,7 +46,7 @@ public Item[] getDrops() { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Squid"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityStrider.java b/src/main/java/cn/nukkit/entity/passive/EntityStrider.java index f7b6137f045..88ce05a70a7 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityStrider.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityStrider.java @@ -39,7 +39,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Strider"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityTropicalFish.java b/src/main/java/cn/nukkit/entity/passive/EntityTropicalFish.java index 59ae182f213..79aca0eb7e2 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityTropicalFish.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityTropicalFish.java @@ -22,7 +22,7 @@ public int getNetworkId() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Tropical Fish"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java b/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java index 66c8784842e..3b53118e95b 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java @@ -23,7 +23,7 @@ public int getNetworkId() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Turtle"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityVillager.java b/src/main/java/cn/nukkit/entity/passive/EntityVillager.java index 580e92993c2..8f074780f80 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityVillager.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityVillager.java @@ -37,7 +37,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Villager"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityVillagerV1.java b/src/main/java/cn/nukkit/entity/passive/EntityVillagerV1.java index e9c555e6f6a..707d64a843c 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityVillagerV1.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityVillagerV1.java @@ -43,7 +43,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Villager"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityWanderingTrader.java b/src/main/java/cn/nukkit/entity/passive/EntityWanderingTrader.java index 7f940ea9b86..c4042c112d8 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityWanderingTrader.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityWanderingTrader.java @@ -25,7 +25,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Wandering Trader"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityWolf.java b/src/main/java/cn/nukkit/entity/passive/EntityWolf.java index a359c3360cd..a5e88685290 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityWolf.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityWolf.java @@ -28,7 +28,7 @@ public float getHeight() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Wolf"; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java b/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java index c369068ed57..c533dfdb36a 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java @@ -50,7 +50,7 @@ public boolean isUndead() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Zombie Horse"; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java index 5d9af494c95..26578958bd0 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java @@ -199,7 +199,7 @@ public void setPickupMode(int pickupMode) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Arrow"; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java b/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java index 75aadb7ba8d..70ca3d07aa4 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java @@ -81,7 +81,7 @@ protected void addHitEffect() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Egg"; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java b/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java index 65c598d76b9..78f3b5d5d97 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityEnderPearl.java @@ -111,7 +111,7 @@ private void teleport() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Ender Pearl"; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java b/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java index 62475b3a1ef..3b2bd96575b 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java @@ -118,7 +118,7 @@ protected void addHitEffect() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Snowball"; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index 4e294daca0b..69f19bbdb6d 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -138,7 +138,7 @@ public EntityThrownTrident(FullChunk chunk, CompoundTag nbt, Entity shootingEnti } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Trident"; diff --git a/src/main/java/cn/nukkit/entity/weather/EntityLightning.java b/src/main/java/cn/nukkit/entity/weather/EntityLightning.java index bbf92d97e54..fff53222acb 100644 --- a/src/main/java/cn/nukkit/entity/weather/EntityLightning.java +++ b/src/main/java/cn/nukkit/entity/weather/EntityLightning.java @@ -153,7 +153,7 @@ public boolean onUpdate(int currentTick) { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Override public String getOriginalName() { return "Lightning Bolt"; diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java index 8467520fafd..082dc1794f2 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java @@ -117,7 +117,7 @@ public void setAttackCooldown(int attackCooldown) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Nonnull public SideEffect[] getSideEffects() { SideEffect[] sideEffects = this.sideEffects; @@ -131,7 +131,7 @@ public SideEffect[] getSideEffects() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public void setSideEffects(@Nonnull SideEffect... sideEffects) { this.sideEffects = Arrays.stream(sideEffects) .filter(Objects::nonNull) @@ -141,13 +141,13 @@ public void setSideEffects(@Nonnull SideEffect... sideEffects) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public void setSideEffects(@Nonnull Collection sideEffects) { this.setSideEffects(sideEffects.toArray(SideEffect.EMPTY_ARRAY)); } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public void addSideEffects(@Nonnull SideEffect... sideEffects) { var safeStream = Arrays.stream(sideEffects) .filter(Objects::nonNull) @@ -157,7 +157,7 @@ public void addSideEffects(@Nonnull SideEffect... sideEffects) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public void addSideEffects(@Nonnull Collection sideEffects) { this.addSideEffects(sideEffects.toArray(SideEffect.EMPTY_ARRAY)); } diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index 711d965a0a7..ca349e9edb3 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -993,7 +993,7 @@ public Enchantment[] getEnchantments() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Nonnull public SideEffect[] getAttackSideEffects(@Nonnull Entity attacker, @Nonnull Entity entity) { return Arrays.stream(getEnchantments()) diff --git a/src/main/java/cn/nukkit/item/enchantment/Enchantment.java b/src/main/java/cn/nukkit/item/enchantment/Enchantment.java index 1c3ba56e748..64b88fc5df5 100644 --- a/src/main/java/cn/nukkit/item/enchantment/Enchantment.java +++ b/src/main/java/cn/nukkit/item/enchantment/Enchantment.java @@ -420,7 +420,7 @@ public boolean isMajor() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Nonnull public SideEffect[] getAttackSideEffects(@Nonnull Entity attacker, @Nonnull Entity entity) { return SideEffect.EMPTY_ARRAY; diff --git a/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java b/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java index 95fee4e1f01..8c4c999d820 100644 --- a/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java +++ b/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java @@ -32,14 +32,14 @@ public int getMaxLevel() { return 2; } - @PowerNukkitDifference(since = "FUTURE", info = "The entity combustion code was moved to SideEffectCombust, obtained by getAttackSideEffects(Entity, Entity)") + @PowerNukkitDifference(since = "1.5.1.0-PN", info = "The entity combustion code was moved to SideEffectCombust, obtained by getAttackSideEffects(Entity, Entity)") @Override public void doPostAttack(Entity attacker, Entity entity) { super.doPostAttack(attacker, entity); } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Nonnull public SideEffect[] getAttackSideEffects(@Nonnull Entity attacker, @Nonnull Entity entity) { return new SideEffect[]{ diff --git a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java index 0ee3f825d3e..3c4c85479ad 100644 --- a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java +++ b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java @@ -9,24 +9,24 @@ import javax.annotation.Nullable; @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.1.0-PN") public interface SideEffect extends Cloneable { SideEffect[] EMPTY_ARRAY = new SideEffect[0]; @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") default void doPreHealthChange(@Nonnull Entity entity, @Nonnull EntityDamageEvent source, @Nullable Entity attacker) { // Does nothing } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") default void doPostAttack(@Nonnull Entity entity, @Nonnull EntityDamageEvent source, @Nullable Entity attacker) { // Does nothing } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") @Nonnull SideEffect clone(); } diff --git a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java index c5176972af5..caf57547a14 100644 --- a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java +++ b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java @@ -12,17 +12,17 @@ import javax.annotation.Nullable; @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.1.0-PN") public class SideEffectCombust implements SideEffect { private int duration; @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public SideEffectCombust(int duration) { this.duration = duration; } - @Since("FUTURE") + @Since("1.5.1.0-PN") @PowerNukkitOnly @Override public void doPreHealthChange(@Nonnull Entity entity, @Nonnull EntityDamageEvent event, @Nullable Entity attacker) { @@ -34,19 +34,19 @@ public void doPreHealthChange(@Nonnull Entity entity, @Nonnull EntityDamageEvent } } - @Since("FUTURE") + @Since("1.5.1.0-PN") @PowerNukkitOnly public int getDuration() { return duration; } - @Since("FUTURE") + @Since("1.5.1.0-PN") @PowerNukkitOnly public void setDuration(int duration) { this.duration = duration; } - @Since("FUTURE") + @Since("1.5.1.0-PN") @PowerNukkitOnly @SneakyThrows @Override diff --git a/src/main/java/cn/nukkit/item/food/Food.java b/src/main/java/cn/nukkit/item/food/Food.java index 28ab241bb3e..1c2e83932ca 100644 --- a/src/main/java/cn/nukkit/item/food/Food.java +++ b/src/main/java/cn/nukkit/item/food/Food.java @@ -216,17 +216,17 @@ public Food setRestoreSaturation(float restoreSaturation) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") protected int eatingTick = 31; @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public int getEatingTick() { return eatingTick; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public Food setEatingTick(int eatingTick) { this.eatingTick = eatingTick; return this; diff --git a/src/main/java/cn/nukkit/level/GameRule.java b/src/main/java/cn/nukkit/level/GameRule.java index 81aa5b1c52a..48d23b069c0 100644 --- a/src/main/java/cn/nukkit/level/GameRule.java +++ b/src/main/java/cn/nukkit/level/GameRule.java @@ -22,7 +22,7 @@ public enum GameRule { DROWNING_DAMAGE("drowningDamage"), FALL_DAMAGE("fallDamage"), FIRE_DAMAGE("fireDamage"), - @Since("FUTURE") FREEZE_DAMAGE("freezeDamage"), + @Since("1.5.1.0-PN") FREEZE_DAMAGE("freezeDamage"), FUNCTION_COMMAND_LIMIT("functionCommandLimit"), KEEP_INVENTORY("keepInventory"), MAX_COMMAND_CHAIN_LENGTH("maxCommandChainLength"), @@ -32,11 +32,11 @@ public enum GameRule { RANDOM_TICK_SPEED("randomTickSpeed"), SEND_COMMAND_FEEDBACK("sendCommandFeedback"), SHOW_COORDINATES("showCoordinates"), - @Since("FUTURE") SHOW_DEATH_MESSAGES("showDeathMessages"), + @Since("1.5.1.0-PN") SHOW_DEATH_MESSAGES("showDeathMessages"), @Deprecated @PowerNukkitOnly("Renamed to SHOW_DEATH_MESSAGE by NukkitX") - @DeprecationDetails(since = "FUTURE", + @DeprecationDetails(since = "1.5.1.0-PN", reason = "Added by upstream with a different name", replaceWith = "SHOW_DEATH_MESSAGES") @SuppressWarnings("DeprecatedIsStillUsed") @@ -92,7 +92,7 @@ public String getName() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public boolean isDeprecated() { return deprecated; } diff --git a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java index 16d8cf9e14e..d9a66f558f9 100644 --- a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java @@ -10,11 +10,11 @@ * @author IWareQ */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.1.0-PN") public class AnimateEntityPacket extends DataPacket { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public static final byte NETWORK_ID = ProtocolInfo.ANIMATE_ENTITY_PACKET; private String animation; @@ -56,73 +56,73 @@ public byte pid() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public void setAnimation(String animation) { this.animation = animation; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public String getAnimation() { return this.animation; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public void setNextState(String nextState) { this.nextState = nextState; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public String getNextState() { return this.nextState; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public void setStopExpression(String stopExpression) { this.stopExpression = stopExpression; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public String getStopExpression() { return this.stopExpression; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public void setController(String controller) { this.controller = controller; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public String getController() { return this.controller; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public void setBlendOutTime(float blendOutTime) { this.blendOutTime = blendOutTime; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public float getBlendOutTime() { return this.blendOutTime; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public void setEntityRuntimeIds(List entityRuntimeIds) { this.entityRuntimeIds = entityRuntimeIds; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public List getEntityRuntimeIds() { return this.entityRuntimeIds; } diff --git a/src/main/java/cn/nukkit/utils/Utils.java b/src/main/java/cn/nukkit/utils/Utils.java index 8aa2d2b4e3f..8d8d20770b6 100644 --- a/src/main/java/cn/nukkit/utils/Utils.java +++ b/src/main/java/cn/nukkit/utils/Utils.java @@ -420,7 +420,7 @@ public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IO } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public static boolean isInteger(String str) { if (str == null) { return false; diff --git a/src/main/java/co/aikar/timings/Timings.java b/src/main/java/co/aikar/timings/Timings.java index 303d3b42082..d61d963a7f8 100644 --- a/src/main/java/co/aikar/timings/Timings.java +++ b/src/main/java/co/aikar/timings/Timings.java @@ -139,7 +139,7 @@ public final class Timings { * Initialize the static fields. */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.1.0-PN") public static void init() { // code is already executed on } From 4b6b2ac07f6f8378e6bbb6975e16b186427b9965 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 20:38:33 -0300 Subject: [PATCH 140/394] Update the documents --- CHANGELOG.md | 17 ++++++++++++++--- README.md | 7 ++++--- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36cf95a8ba3..a3b96c954f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 with an added upstream's major version number in front of the major version, so we have a better distinction from Nukkit 1.X and 2.X. -## [Unreleased 1.5.1.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/22?closed=1)) +## [Unreleased 1.5.2.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/28?closed=1)) Click the link above to see the future. +## [1.5.1.0-PN] - 2021-07-05 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/22?closed=1)) +Our goal on this version was to fix bugs, and we did it, we fixed a lot of them! + +Thank you for the translations! +Help us to translate PowerNukkit at https://translate.powernukkit.org + +Want to talk? +Talk to us at https://discuss.powernukkit.org and/or https://powernukkit.org/discord + ### Changed - [#1107] Guava version from `29.0` to `30.1.1` - [#1107] SnakeYAML version from `1.26` to `1.28` @@ -44,7 +53,7 @@ Click the link above to see the future. - [#1130] Soul Campfire and End Crystal were rendering as other items in the inventory - [#1139] Backward compatibility with some custom world generators - [#1147] Sharpness damage calculation -- [#1153] Some Sonar Reports +- [#1153] Some code quality issues reported by sonar - [#1170] Cobwebs are now breakable by using shears - [#702] Burning arrow and rain will make a lot of particles - [#625] If you instant kill a mob with fire aspect enchant tool, it will not give fire aspect drops @@ -723,7 +732,8 @@ Fixes several anvil issues. [updated changelog]:https://github.com/PowerNukkit/PowerNukkit/blob/bleeding/CHANGELOG.md [discord guild]: https://powernukkit.org/discord -[Unreleased 1.5.1.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.0.0-PN...bleeding +[Unreleased 1.5.2.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.1.0-PN...bleeding +[1.5.1.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.0.0-PN...v1.5.1.0-PN [1.5.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.4.0.0-PN...v1.5.0.0-PN [1.4.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.3.1.5-PN...v1.4.0.0-PN [1.3.1.5-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.3.1.4-PN...v1.3.1.5-PN @@ -900,5 +910,6 @@ Fixes several anvil issues. [#1149]: https://github.com/PowerNukkit/PowerNukkit/issues/1149 [#1150]: https://github.com/PowerNukkit/PowerNukkit/issues/1150 [#1151]: https://github.com/PowerNukkit/PowerNukkit/issues/1151 +[#1153]: https://github.com/PowerNukkit/PowerNukkit/issues/1153 [#1170]: https://github.com/PowerNukkit/PowerNukkit/issues/1170 [#1177]: https://github.com/PowerNukkit/PowerNukkit/issues/1177 diff --git a/README.md b/README.md index 3f1c32afa2e..fa0d26716bf 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ repositories { } dependencies { - compile group: 'org.powernukkit', name: 'powernukkit', version: '1.5.0.0-PN' + compile group: 'org.powernukkit', name: 'powernukkit', version: '1.5.1.0-PN' } ``` @@ -60,7 +60,7 @@ dependencies { org.powernukkit powernukkit - 1.5.0.0-PN + 1.5.1.0-PN ``` @@ -133,7 +133,8 @@ Check the [docker-compose.yml](docker-compose.yml) file for more details. ### Supported tags * _bleeding_ (โš ๏ธ **use with care, may contains unstable code!** โš ๏ธ) -* 1.5.0.0, 1.5.0, 1.5, 1, latest +* 1.5.1.0, 1.5.1, 1.5, 1, latest +* 1.5.0.0, 1.5.0 * 1.4.0.0, 1.4.0, 1.4 * 1.3.1.5, 1.3.1, 1.3 * 1.3.1.4 From 33617b73c5000a9d19a389f2cfde10097532d117 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 21:02:10 -0300 Subject: [PATCH 141/394] Fixes code smells reported by sonar --- pom.xml | 19 -------------- .../java/cn/nukkit/block/BlockCampfire.java | 11 ++++---- .../nukkit/blockstate/BlockStateRegistry.java | 19 ++++++-------- src/main/java/cn/nukkit/entity/Entity.java | 4 +-- .../event/entity/EntityDamageEvent.java | 26 ++++++++++--------- .../enchantment/EnchantmentFireAspect.java | 1 + src/main/java/cn/nukkit/level/GameRules.java | 6 ++--- .../java/cn/nukkit/plugin/PluginManager.java | 2 +- 8 files changed, 34 insertions(+), 54 deletions(-) diff --git a/pom.xml b/pom.xml index 97d959416cc..02a7dbd910d 100644 --- a/pom.xml +++ b/pom.xml @@ -97,16 +97,6 @@ - - org.powernukkit.bedrock.network @@ -622,15 +612,6 @@ - org.apache.maven.plugins maven-javadoc-plugin diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index 718a82c09cf..58b34bc9c49 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -272,12 +272,11 @@ public boolean onProjectileHit(@Nonnull Entity projectile, @Nonnull Position pos setExtinguished(false); level.setBlock(this, this, true); return true; - } else if (projectile instanceof EntityPotion && !isExtinguished()) { - if (((EntityPotion) projectile).potionId == 0) { - setExtinguished(true); - level.setBlock(this, this, true); - return true; - } + } else if (projectile instanceof EntityPotion && !isExtinguished() + && ((EntityPotion) projectile).potionId == 0) { + setExtinguished(true); + level.setBlock(this, this, true); + return true; } return false; } diff --git a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java index 6583359ce46..5d3809b669a 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java +++ b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java @@ -220,17 +220,14 @@ public int getRuntimeId(BlockState state) { } private BlockState convertToNewState(BlockState oldState) { - int exactInt; - switch (oldState.getBlockId()) { - // Check OldWoodBarkUpdater.java and https://minecraft.fandom.com/wiki/Log#Metadata - // The Only bark variant is replaced in the client side to minecraft:wood with the same wood type - case BlockID.LOG: - case BlockID.LOG2: - if (oldState.getBitSize() == 4 && ((exactInt = oldState.getExactIntStorage()) & 0b1100) == 0b1100) { - int increment = oldState.getBlockId() == BlockID.LOG? 0b000 : 0b100; - return BlockState.of(BlockID.WOOD_BARK, (exactInt & 0b11) + increment); - } - break; + // Check OldWoodBarkUpdater.java and https://minecraft.fandom.com/wiki/Log#Metadata + // The Only bark variant is replaced in the client side to minecraft:wood with the same wood type + if (oldState.getBitSize() == 4 && (oldState.getBlockId() == BlockID.LOG || oldState.getBlockId() == BlockID.LOG2)) { + int exactInt = oldState.getExactIntStorage(); + if ((exactInt & 0b1100) == 0b1100) { + int increment = oldState.getBlockId() == BlockID.LOG ? 0b000 : 0b100; + return BlockState.of(BlockID.WOOD_BARK, (exactInt & 0b11) + increment); + } } return oldState; } diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index d19d49ac84f..b735c427a1e 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -2604,8 +2604,8 @@ public boolean teleport(Location location, PlayerTeleportEvent.TeleportCause cau to = ev.getTo(); } - Entity riding = getRiding(); - if (riding != null && !riding.dismountEntity(this)) { + Entity currentRide = getRiding(); + if (currentRide != null && !currentRide.dismountEntity(this)) { return false; } diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java index 082dc1794f2..b9965f9e41c 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java @@ -32,13 +32,15 @@ public static HandlerList getHandlers() { private final Map originals; private SideEffect[] sideEffects = SideEffect.EMPTY_ARRAY; - + + private static Map createDamageModifierMap(float baseDamage) { + Map modifiers = new EnumMap<>(DamageModifier.class); + modifiers.put(DamageModifier.BASE, baseDamage); + return modifiers; + } + public EntityDamageEvent(Entity entity, DamageCause cause, float damage) { - this(entity, cause, new EnumMap(DamageModifier.class) { - { - put(DamageModifier.BASE, damage); - } - }); + this(entity, cause, createDamageModifierMap(damage)); } public EntityDamageEvent(Entity entity, DamageCause cause, Map modifiers) { @@ -52,8 +54,8 @@ public EntityDamageEvent(Entity entity, DamageCause cause, Map(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_DAYLIGHT_CYCLE, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_ENTITY_DROPS, new Value<>(Type.BOOLEAN, true)); - gameRules.gameRules.put(DO_FIRE_TICK, new Value(Type.BOOLEAN, true)); - gameRules.gameRules.put(DO_INSOMNIA, new Value(Type.BOOLEAN, true)); - gameRules.gameRules.put(DO_IMMEDIATE_RESPAWN, new Value(Type.BOOLEAN, false)); + gameRules.gameRules.put(DO_FIRE_TICK, new Value<>(Type.BOOLEAN, true)); + gameRules.gameRules.put(DO_INSOMNIA, new Value<>(Type.BOOLEAN, true)); + gameRules.gameRules.put(DO_IMMEDIATE_RESPAWN, new Value<>(Type.BOOLEAN, false)); gameRules.gameRules.put(DO_MOB_LOOT, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_MOB_SPAWNING, new Value<>(Type.BOOLEAN, true)); gameRules.gameRules.put(DO_TILE_DROPS, new Value<>(Type.BOOLEAN, true)); diff --git a/src/main/java/cn/nukkit/plugin/PluginManager.java b/src/main/java/cn/nukkit/plugin/PluginManager.java index 521cdea79cd..345ed3ca801 100644 --- a/src/main/java/cn/nukkit/plugin/PluginManager.java +++ b/src/main/java/cn/nukkit/plugin/PluginManager.java @@ -269,7 +269,7 @@ public Map loadPlugins(File dictionary, List newLoaders, } else if (!plugins.containsKey(dependency)) { BaseLang language = this.server.getLanguage(); String cause = language.translateString("nukkit.plugin.missingDependency", dependency); - log.fatal(language.translateString("nukkit.plugin.loadError", new String[]{name, cause})); + log.fatal(language.translateString("nukkit.plugin.loadError", new String[]{name, cause}, null)); break; } } From 5ec00917f836c5d80c92d6aaca80c580179f650a Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 21:15:37 -0300 Subject: [PATCH 142/394] Release 1.5.1.0-PN --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 02a7dbd910d..92aed933200 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.5.1.0-PN-SNAPSHOT + 1.5.1.0-PN 2020 From 365cca66be193532b140c31b1c23ca0d08d4375d Mon Sep 17 00:00:00 2001 From: PowerNukkitBot Date: Mon, 5 Jul 2021 20:20:05 -0400 Subject: [PATCH 143/394] Releasing PowerNukkit v1.5.1.0-PN From a9a7cdbf2a767d10970b18f07f446c7742fe5766 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 21:38:45 -0300 Subject: [PATCH 144/394] Fixes release script for Pterodactyl builds --- release-script/release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-script/release.py b/release-script/release.py index c6ed45b3ce5..dedcb87dffc 100644 --- a/release-script/release.py +++ b/release-script/release.py @@ -147,7 +147,7 @@ def build_pterodactyl(java): base = docker_tag if is_snapshot: base = "bleeding" - build_docker(pterodactyl_tag_name(base, java), './pterodactyl-image-java'+java+'.Dockerfile') + build_docker(pterodactyl_tag_name(base, java), './docker_pterodactyl-image-java'+java+'.Dockerfile') if run_docker_build_pterodactyl: start_progress("Building pterodactyl images") From 5a59eff2d892e61e2f2f922fa6ec18d7319573c3 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 23:19:46 -0300 Subject: [PATCH 145/394] Add custom suffix to the version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 92aed933200..8538cd1d193 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.5.1.0-PN + 1.5.1.0-PN-CUSTOM 2020 From 2f7fec4731b4435e733fe6585032462fb77644f8 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 5 Jul 2021 23:21:05 -0300 Subject: [PATCH 146/394] Change the version to 1.5.2.0-PN-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8538cd1d193..4fdb8c8c845 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.5.1.0-PN-CUSTOM + 1.5.2.0-PN-SNAPSHOT 2020 From ef6866fb2175a778da9ba59c80bd67503fd8c7a8 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 6 Jul 2021 19:07:37 -0300 Subject: [PATCH 147/394] Change the protocol version to 448 1.17.10, add new packets --- src/main/java/cn/nukkit/network/Network.java | 8 +- .../protocol/AddVolumeEntityPacket.java | 2 +- .../network/protocol/NPCDialoguePacket.java | 155 ++++++++++++++++++ .../nukkit/network/protocol/ProtocolInfo.java | 18 +- .../protocol/RemoveVolumeEntityPacket.java | 2 +- .../protocol/SimulationTypePacket.java | 80 +++++++++ .../protocol/SyncEntityPropertyPacket.java | 2 +- 7 files changed, 255 insertions(+), 12 deletions(-) create mode 100644 src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java create mode 100644 src/main/java/cn/nukkit/network/protocol/SimulationTypePacket.java diff --git a/src/main/java/cn/nukkit/network/Network.java b/src/main/java/cn/nukkit/network/Network.java index 44e7a0255b1..9d29427aa87 100644 --- a/src/main/java/cn/nukkit/network/Network.java +++ b/src/main/java/cn/nukkit/network/Network.java @@ -469,10 +469,12 @@ private void registerPackets() { this.registerPacket(ProtocolInfo.UPDATE_PLAYER_GAME_TYPE_PACKET, UpdatePlayerGameTypePacket.class); this.registerPacket(ProtocolInfo.FILTER_TEXT_PACKET, FilterTextPacket.class); this.registerPacket(ProtocolInfo.ITEM_COMPONENT_PACKET, ItemComponentPacket.class); - this.registerPacket(ProtocolInfo.ADD_VOLUME_ENTITY, AddVolumeEntityPacket.class); - this.registerPacket(ProtocolInfo.REMOVE_VOLUME_ENTITY, RemoveVolumeEntityPacket.class); - this.registerPacket(ProtocolInfo.SYNC_ENTITY_PROPERTY, SyncEntityPropertyPacket.class); + this.registerPacket(ProtocolInfo.ADD_VOLUME_ENTITY_PACKET, AddVolumeEntityPacket.class); + this.registerPacket(ProtocolInfo.REMOVE_VOLUME_ENTITY_PACKET, RemoveVolumeEntityPacket.class); + this.registerPacket(ProtocolInfo.SYNC_ENTITY_PROPERTY_PACKET, SyncEntityPropertyPacket.class); this.registerPacket(ProtocolInfo.TICK_SYNC_PACKET, TickSyncPacket.class); this.registerPacket(ProtocolInfo.ANIMATE_ENTITY_PACKET, AnimateEntityPacket.class); + this.registerPacket(ProtocolInfo.NPC_DIALOGUE_PACKET, NPCDialoguePacket.class); + this.registerPacket(ProtocolInfo.SIMULATION_TYPE_PACKET, SimulationTypePacket.class); } } diff --git a/src/main/java/cn/nukkit/network/protocol/AddVolumeEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AddVolumeEntityPacket.java index fb2b4e38ec3..7ed2f5c01c4 100644 --- a/src/main/java/cn/nukkit/network/protocol/AddVolumeEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AddVolumeEntityPacket.java @@ -9,7 +9,7 @@ public class AddVolumeEntityPacket extends DataPacket { @PowerNukkitOnly @Since("1.5.0.0-PN") - public static final byte NETWORK_ID = ProtocolInfo.ADD_VOLUME_ENTITY; + public static final byte NETWORK_ID = ProtocolInfo.ADD_VOLUME_ENTITY_PACKET; private long id; private CompoundTag data; diff --git a/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java b/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java new file mode 100644 index 00000000000..2bb19992094 --- /dev/null +++ b/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java @@ -0,0 +1,155 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.network.protocol; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; + +/** + * @author joserobjr + * @since 2021-07-06 + */ +@PowerNukkitOnly +@Since("FUTURE") +public class NPCDialoguePacket extends DataPacket { + @PowerNukkitOnly + @Since("FUTURE") + public static final byte NETWORK_ID = ProtocolInfo.NPC_DIALOGUE_PACKET; + + private static final Action[] ACTIONS = Action.values(); + + private long runtimeEntityId; + private Action action; + private String dialogue; + private String sceneName; + private String npcName; + private String actionJson; + + @PowerNukkitOnly + @Since("FUTURE") + public NPCDialoguePacket() { + // Indicates when this public constructor were accessible + } + + @Override + public byte pid() { + return NETWORK_ID; + } + + @Override + public void decode() { + runtimeEntityId = getUnsignedVarLong(); + action = ACTIONS[getVarInt()]; + dialogue = getString(); + sceneName = getString(); + npcName = getString(); + actionJson = getString(); + } + + @Override + public void encode() { + reset(); + putUnsignedVarLong(runtimeEntityId); + putVarInt(action.ordinal()); + putString(actionJson); + putString(dialogue); + putString(sceneName); + putString(npcName); + putString(actionJson); + } + + @PowerNukkitOnly + @Since("FUTURE") + public long getRuntimeEntityId() { + return runtimeEntityId; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setRuntimeEntityId(long runtimeEntityId) { + this.runtimeEntityId = runtimeEntityId; + } + + @PowerNukkitOnly + @Since("FUTURE") + public Action getAction() { + return action; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setAction(Action action) { + this.action = action; + } + + @PowerNukkitOnly + @Since("FUTURE") + public String getDialogue() { + return dialogue; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setDialogue(String dialogue) { + this.dialogue = dialogue; + } + + @PowerNukkitOnly + @Since("FUTURE") + public String getSceneName() { + return sceneName; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setSceneName(String sceneName) { + this.sceneName = sceneName; + } + + @PowerNukkitOnly + @Since("FUTURE") + public String getNpcName() { + return npcName; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setNpcName(String npcName) { + this.npcName = npcName; + } + + @PowerNukkitOnly + @Since("FUTURE") + public String getActionJson() { + return actionJson; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setActionJson(String actionJson) { + this.actionJson = actionJson; + } + + @PowerNukkitOnly + @Since("FUTURE") + public enum Action { + @PowerNukkitOnly @Since("FUTURE") OPEN, + @PowerNukkitOnly @Since("FUTURE") CLOSE + } +} diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index fc1104ce4a3..f2b52d19ecd 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -1,5 +1,6 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import com.google.common.primitives.Ints; @@ -16,12 +17,12 @@ public interface ProtocolInfo { /** * Actual Minecraft: PE protocol version */ - int CURRENT_PROTOCOL = dynamic(440); + int CURRENT_PROTOCOL = dynamic(448); List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION = dynamic("v1.17.0"); - String MINECRAFT_VERSION_NETWORK = dynamic("1.17.0"); + String MINECRAFT_VERSION = dynamic("v1.17.10"); + String MINECRAFT_VERSION_NETWORK = dynamic("1.17.10"); byte LOGIN_PACKET = 0x01; byte PLAY_STATUS_PACKET = 0x02; @@ -181,9 +182,14 @@ public interface ProtocolInfo { @Since("1.4.0.0-PN") byte ITEM_COMPONENT_PACKET = (byte) 0xa2; @Since("1.4.0.0-PN") byte FILTER_TEXT_PACKET = (byte) 0xa3; @Since("1.4.0.0-PN") byte CLIENTBOUND_DEBUG_RENDERER_PACKET = (byte) 0xa4; - @Since("1.5.0.0-PN") @PowerNukkitOnly byte SYNC_ENTITY_PROPERTY = (byte) 0xa5; - @Since("1.5.0.0-PN") @PowerNukkitOnly byte ADD_VOLUME_ENTITY = (byte) 0xa6; - @Since("1.5.0.0-PN") @PowerNukkitOnly byte REMOVE_VOLUME_ENTITY = (byte) 0xa7; + @Since("FUTURE") @PowerNukkitOnly byte SYNC_ENTITY_PROPERTY_PACKET = (byte) 0xa5; + @Since("FUTURE") @PowerNukkitOnly byte ADD_VOLUME_ENTITY_PACKET = (byte) 0xa6; + @Since("FUTURE") @PowerNukkitOnly byte REMOVE_VOLUME_ENTITY_PACKET = (byte) 0xa7; + @Since("1.5.0.0-PN") @PowerNukkitOnly @Deprecated @DeprecationDetails(since = "FUTURE", reason = "Incorrect naming convention", by = "PowerNukkit", replaceWith = "SYNC_ENTITY_PROPERTY_PACKET") byte SYNC_ENTITY_PROPERTY = SYNC_ENTITY_PROPERTY_PACKET; + @Since("1.5.0.0-PN") @PowerNukkitOnly @Deprecated @DeprecationDetails(since = "FUTURE", reason = "Incorrect naming convention", by = "PowerNukkit", replaceWith = "ADD_VOLUME_ENTITY_PACKET") byte ADD_VOLUME_ENTITY = ADD_VOLUME_ENTITY_PACKET; + @Since("1.5.0.0-PN") @PowerNukkitOnly @Deprecated @DeprecationDetails(since = "FUTURE", reason = "Incorrect naming convention", by = "PowerNukkit", replaceWith = "REMOVE_VOLUME_ENTITY_PACKET") byte REMOVE_VOLUME_ENTITY = REMOVE_VOLUME_ENTITY_PACKET; + @Since("FUTURE") @PowerNukkitOnly byte SIMULATION_TYPE_PACKET = (byte) 0xa8; + @Since("FUTURE") @PowerNukkitOnly byte NPC_DIALOGUE_PACKET = (byte) 0xa9; byte BATCH_PACKET = (byte) 0xff; } diff --git a/src/main/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacket.java index 1f18fd3ddd1..74f1a45aa40 100644 --- a/src/main/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacket.java @@ -8,7 +8,7 @@ public class RemoveVolumeEntityPacket extends DataPacket { @PowerNukkitOnly @Since("1.5.0.0-PN") - public static final byte NETWORK_ID = ProtocolInfo.REMOVE_VOLUME_ENTITY; + public static final byte NETWORK_ID = ProtocolInfo.REMOVE_VOLUME_ENTITY_PACKET; private long id; diff --git a/src/main/java/cn/nukkit/network/protocol/SimulationTypePacket.java b/src/main/java/cn/nukkit/network/protocol/SimulationTypePacket.java new file mode 100644 index 00000000000..3dbb4be5ec9 --- /dev/null +++ b/src/main/java/cn/nukkit/network/protocol/SimulationTypePacket.java @@ -0,0 +1,80 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.network.protocol; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; + +/** + * @author joserobjr + * @since 2021-07-06 + */ +@PowerNukkitOnly +@Since("FUTURE") +public class SimulationTypePacket extends DataPacket { + @PowerNukkitOnly + @Since("FUTURE") + public static final byte NETWORK_ID = ProtocolInfo.NPC_DIALOGUE_PACKET; + + private static final SimulationType[] TYPES = SimulationType.values(); + + private SimulationType type; + + @PowerNukkitOnly + @Since("FUTURE") + public SimulationTypePacket() { + type = SimulationType.GAME; + } + + @Override + public byte pid() { + return NETWORK_ID; + } + + @Override + public void decode() { + type = TYPES[getByte()]; + } + + @Override + public void encode() { + reset(); + putByte((byte) type.ordinal()); + } + + @PowerNukkitOnly + @Since("FUTURE") + public SimulationType getSimulationType() { + return type; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setSimulationType(SimulationType type) { + this.type = type; + } + + @PowerNukkitOnly + @Since("FUTURE") + public enum SimulationType { + @PowerNukkitOnly @Since("FUTURE") GAME, + @PowerNukkitOnly @Since("FUTURE") EDITOR, + @PowerNukkitOnly @Since("FUTURE") TEST + } +} diff --git a/src/main/java/cn/nukkit/network/protocol/SyncEntityPropertyPacket.java b/src/main/java/cn/nukkit/network/protocol/SyncEntityPropertyPacket.java index 3fd59c438ad..b7ac2aff5a4 100644 --- a/src/main/java/cn/nukkit/network/protocol/SyncEntityPropertyPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SyncEntityPropertyPacket.java @@ -9,7 +9,7 @@ public class SyncEntityPropertyPacket extends DataPacket { @PowerNukkitOnly @Since("1.5.0.0-PN") - public static final byte NETWORK_ID = ProtocolInfo.SYNC_ENTITY_PROPERTY; + public static final byte NETWORK_ID = ProtocolInfo.SYNC_ENTITY_PROPERTY_PACKET; private CompoundTag data; From 25a195b4689c83d20bda87f5ac5ea54c38307dc3 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 6 Jul 2021 19:36:45 -0300 Subject: [PATCH 148/394] Update the particle magic ids --- src/main/java/cn/nukkit/entity/Entity.java | 2 +- .../nukkit/level/particle/DustParticle.java | 2 +- .../cn/nukkit/level/particle/Particle.java | 160 ++++++++++-------- .../nukkit/level/particle/SplashParticle.java | 2 +- 4 files changed, 91 insertions(+), 75 deletions(-) diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index b735c427a1e..d7247f3473e 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -220,7 +220,7 @@ public abstract class Entity extends Location implements Metadatable { @Since("1.3.0.0-PN") public static final int DATA_HITBOX = dynamic(118); //NBT @Since("1.3.0.0-PN") public static final int DATA_IS_BUOYANT = dynamic(119); //byte @Since("1.5.0.0-PN") @PowerNukkitOnly public static final int DATA_BASE_RUNTIME_ID = dynamic(120); // ??? - @Since("1.4.0.0-PN") public static final int DATA_FREEZING_EFFECT_STRENGTH = dynamic(121); + @Since("1.4.0.0-PN") public static final int DATA_FREEZING_EFFECT_STRENGTH = dynamic(121); // ??? @Since("1.3.0.0-PN") public static final int DATA_BUOYANCY_DATA = dynamic(122); //string @Since("1.4.0.0-PN") public static final int DATA_GOAT_HORN_COUNT = dynamic(123); // ??? @Since("1.5.0.0-PN") @PowerNukkitOnly public static final int DATA_UPDATE_PROPERTIES = dynamic(124); // ??? diff --git a/src/main/java/cn/nukkit/level/particle/DustParticle.java b/src/main/java/cn/nukkit/level/particle/DustParticle.java index c0faa971776..f5682317250 100644 --- a/src/main/java/cn/nukkit/level/particle/DustParticle.java +++ b/src/main/java/cn/nukkit/level/particle/DustParticle.java @@ -18,6 +18,6 @@ public DustParticle(Vector3 pos, int r, int g, int b) { } public DustParticle(Vector3 pos, int r, int g, int b, int a) { - super(pos, Particle.TYPE_DUST, ((a & 0xff) << 24) | ((r & 0xff) << 16) | ((g & 0xff) << 8) | (b & 0xff)); + super(pos, Particle.TYPE_FALLING_DUST, ((a & 0xff) << 24) | ((r & 0xff) << 16) | ((g & 0xff) << 8) | (b & 0xff)); } } diff --git a/src/main/java/cn/nukkit/level/particle/Particle.java b/src/main/java/cn/nukkit/level/particle/Particle.java index e5d94c8944a..171d1944c11 100644 --- a/src/main/java/cn/nukkit/level/particle/Particle.java +++ b/src/main/java/cn/nukkit/level/particle/Particle.java @@ -23,83 +23,99 @@ public abstract class Particle extends Vector3 { public static final int TYPE_EXPLODE = dynamic(6); public static final int TYPE_EVAPORATION = dynamic(7); public static final int TYPE_FLAME = dynamic(8); - public static final int TYPE_LAVA = dynamic(9); - public static final int TYPE_LARGE_SMOKE = dynamic(10); - public static final int TYPE_REDSTONE = dynamic(11); - public static final int TYPE_RISING_RED_DUST = dynamic(12); - public static final int TYPE_ITEM_BREAK = dynamic(13); - public static final int TYPE_SNOWBALL_POOF = dynamic(14); - public static final int TYPE_HUGE_EXPLODE = dynamic(15); - public static final int TYPE_HUGE_EXPLODE_SEED = dynamic(16); - public static final int TYPE_MOB_FLAME = dynamic(17); - public static final int TYPE_HEART = dynamic(18); - public static final int TYPE_TERRAIN = dynamic(19); - public static final int TYPE_SUSPENDED_TOWN = dynamic(20), TYPE_TOWN_AURA = TYPE_SUSPENDED_TOWN; - public static final int TYPE_PORTAL = dynamic(21); - // 22 same as 21 - public static final int TYPE_SPLASH = dynamic(23), TYPE_WATER_SPLASH = TYPE_SPLASH; - @Since("1.4.0.0-PN") public static final int TYPE_WATER_SPLASH_MANUAL = dynamic(24); - public static final int TYPE_WATER_WAKE = dynamic(25); - public static final int TYPE_DRIP_WATER = dynamic(26); - public static final int TYPE_DRIP_LAVA = dynamic(27); - public static final int TYPE_DRIP_HONEY = dynamic(28); - @Since("1.4.0.0-PN") public static final int TYPE_STALACTITE_DRIP_WATER = dynamic(29); - @Since("1.4.0.0-PN") public static final int TYPE_STALACTITE_DRIP_LAVA = dynamic(30); - public static final int TYPE_FALLING_DUST = dynamic(31), TYPE_DUST = TYPE_FALLING_DUST; - public static final int TYPE_MOB_SPELL = dynamic(32); - public static final int TYPE_MOB_SPELL_AMBIENT = dynamic(33); - public static final int TYPE_MOB_SPELL_INSTANTANEOUS = dynamic(34); - public static final int TYPE_INK = dynamic(35); - public static final int TYPE_SLIME = dynamic(36); - public static final int TYPE_RAIN_SPLASH = dynamic(37); - public static final int TYPE_VILLAGER_ANGRY = dynamic(38); - public static final int TYPE_VILLAGER_HAPPY = dynamic(39); - public static final int TYPE_ENCHANTMENT_TABLE = dynamic(40); - public static final int TYPE_TRACKING_EMITTER = dynamic(41); - public static final int TYPE_NOTE = dynamic(42); + @PowerNukkitOnly @Since("FUTURE") public static final int TYPE_CANDLE_FLAME = dynamic(9); + public static final int TYPE_LAVA = dynamic(10); + public static final int TYPE_LARGE_SMOKE = dynamic(11); + public static final int TYPE_REDSTONE = dynamic(12); + public static final int TYPE_RISING_RED_DUST = dynamic(13); + public static final int TYPE_ITEM_BREAK = dynamic(14); + public static final int TYPE_SNOWBALL_POOF = dynamic(15); + public static final int TYPE_HUGE_EXPLODE = dynamic(16); + public static final int TYPE_HUGE_EXPLODE_SEED = dynamic(17); + public static final int TYPE_MOB_FLAME = dynamic(18); + public static final int TYPE_HEART = dynamic(19); + public static final int TYPE_TERRAIN = dynamic(20); + public static final int TYPE_TOWN_AURA = dynamic(21); + + @Deprecated @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Same as TYPE_TOWN_AURA", + replaceWith = "TYPE_TOWN_AURA") + public static final int TYPE_SUSPENDED_TOWN = TYPE_TOWN_AURA; + + public static final int TYPE_PORTAL = dynamic(22); + @PowerNukkitOnly @Since("FUTURE") public static final int TYPE_MOB_PORTAL = dynamic(23); + public static final int TYPE_SPLASH = dynamic(24); + + @Deprecated @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Same as TYPE_SPLASH", + replaceWith = "TYPE_SPLASH") + public static final int TYPE_WATER_SPLASH = TYPE_SPLASH; + + @Since("1.4.0.0-PN") public static final int TYPE_WATER_SPLASH_MANUAL = dynamic(25); + public static final int TYPE_WATER_WAKE = dynamic(26); + public static final int TYPE_DRIP_WATER = dynamic(27); + public static final int TYPE_DRIP_LAVA = dynamic(28); + public static final int TYPE_DRIP_HONEY = dynamic(29); + @Since("1.4.0.0-PN") public static final int TYPE_STALACTITE_DRIP_WATER = dynamic(30); + @Since("1.4.0.0-PN") public static final int TYPE_STALACTITE_DRIP_LAVA = dynamic(31); + public static final int TYPE_FALLING_DUST = dynamic(32); + + @Deprecated @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Same as TYPE_FALLING_DUST", + replaceWith = "TYPE_FALLING_DUST") + public static final int TYPE_DUST = TYPE_FALLING_DUST; + + public static final int TYPE_MOB_SPELL = dynamic(33); + public static final int TYPE_MOB_SPELL_AMBIENT = dynamic(34); + public static final int TYPE_MOB_SPELL_INSTANTANEOUS = dynamic(35); + public static final int TYPE_INK = dynamic(36); + public static final int TYPE_SLIME = dynamic(37); + public static final int TYPE_RAIN_SPLASH = dynamic(38); + public static final int TYPE_VILLAGER_ANGRY = dynamic(39); + public static final int TYPE_VILLAGER_HAPPY = dynamic(40); + public static final int TYPE_ENCHANTMENT_TABLE = dynamic(41); + public static final int TYPE_TRACKING_EMITTER = dynamic(42); + public static final int TYPE_NOTE = dynamic(43); @PowerNukkitOnly("Backward compatibility") @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", by = "NukkitX", reason = "Removed from Nukkit") public static final int TYPE_NOTE_AND_DUST = TYPE_NOTE; - public static final int TYPE_WITCH_SPELL = dynamic(43); - public static final int TYPE_CARROT = dynamic(44); - @Since("1.4.0.0-PN") public static final int TYPE_MOB_APPEARANCE = dynamic(45); - public static final int TYPE_END_ROD = dynamic(46); - public static final int TYPE_RISING_DRAGONS_BREATH = dynamic(47); - public static final int TYPE_SPIT = dynamic(48); - public static final int TYPE_TOTEM = dynamic(49); - public static final int TYPE_FOOD = dynamic(50); - public static final int TYPE_FIREWORKS_STARTER = dynamic(51); - public static final int TYPE_FIREWORKS_SPARK = dynamic(52); - public static final int TYPE_FIREWORKS_OVERLAY = dynamic(53); - public static final int TYPE_BALLOON_GAS = dynamic(54); - public static final int TYPE_COLORED_FLAME = dynamic(55); - public static final int TYPE_SPARKLER = dynamic(56); - public static final int TYPE_CONDUIT = dynamic(57); - public static final int TYPE_BUBBLE_COLUMN_UP = dynamic(58); - public static final int TYPE_BUBBLE_COLUMN_DOWN = dynamic(59); - public static final int TYPE_SNEEZE = dynamic(60); - @Since("1.4.0.0-PN") public static final int TYPE_SHULKER_BULLET = dynamic(61); - @Since("1.4.0.0-PN") public static final int TYPE_BLEACH = dynamic(62); - public static final int TYPE_LARGE_EXPLOSION = dynamic(63); - @Since("1.4.0.0-PN") public static final int TYPE_MYCELIUM_DUST = dynamic(64); - public static final int TYPE_FALLING_RED_DUST = dynamic(65); - public static final int TYPE_CAMPFIRE_SMOKE = dynamic(66); - @Since("1.4.0.0-PN") public static final int TYPE_TALL_CAMPFIRE_SMOKE = dynamic(67); - public static final int TYPE_FALLING_DRAGONS_BREATH = dynamic(68); - public static final int TYPE_DRAGONS_BREATH = dynamic(69); - @Since("1.4.0.0-PN") public static final int TYPE_BLUE_FLAME = dynamic(70); - @Since("1.4.0.0-PN") public static final int TYPE_SOUL = dynamic(71); - @Since("1.4.0.0-PN") public static final int TYPE_OBSIDIAN_TEAR = dynamic(72); - @Since("1.4.0.0-PN") public static final int TYPE_PORTAL_REVERSE = dynamic(73); - @Since("1.4.0.0-PN") public static final int TYPE_SNOWFLAKE = dynamic(74); - @Since("1.4.0.0-PN") public static final int TYPE_VIBRATION_SIGNAL = dynamic(75); - @Since("1.4.0.0-PN") public static final int TYPE_SCULK_SENSOR_REDSTONE = dynamic(76); - @Since("1.4.0.0-PN") public static final int TYPE_SPORE_BLOSSOM_SHOWER = dynamic(77); - @Since("1.4.0.0-PN") public static final int TYPE_SPORE_BLOSSOM_AMBIENT = dynamic(78); - @Since("1.4.0.0-PN") public static final int TYPE_WAX = dynamic(79); - @Since("1.4.0.0-PN") public static final int TYPE_ELECTRIC_SPARK = dynamic(80); + public static final int TYPE_WITCH_SPELL = dynamic(44); + public static final int TYPE_CARROT = dynamic(45); + @Since("1.4.0.0-PN") public static final int TYPE_MOB_APPEARANCE = dynamic(46); + public static final int TYPE_END_ROD = dynamic(47); + public static final int TYPE_RISING_DRAGONS_BREATH = dynamic(48); + public static final int TYPE_SPIT = dynamic(49); + public static final int TYPE_TOTEM = dynamic(50); + public static final int TYPE_FOOD = dynamic(51); + public static final int TYPE_FIREWORKS_STARTER = dynamic(52); + public static final int TYPE_FIREWORKS_SPARK = dynamic(53); + public static final int TYPE_FIREWORKS_OVERLAY = dynamic(54); + public static final int TYPE_BALLOON_GAS = dynamic(55); + public static final int TYPE_COLORED_FLAME = dynamic(56); + public static final int TYPE_SPARKLER = dynamic(57); + public static final int TYPE_CONDUIT = dynamic(58); + public static final int TYPE_BUBBLE_COLUMN_UP = dynamic(59); + public static final int TYPE_BUBBLE_COLUMN_DOWN = dynamic(60); + public static final int TYPE_SNEEZE = dynamic(61); + @Since("1.4.0.0-PN") public static final int TYPE_SHULKER_BULLET = dynamic(62); + @Since("1.4.0.0-PN") public static final int TYPE_BLEACH = dynamic(63); + public static final int TYPE_LARGE_EXPLOSION = dynamic(64); + @Since("1.4.0.0-PN") public static final int TYPE_MYCELIUM_DUST = dynamic(65); + public static final int TYPE_FALLING_RED_DUST = dynamic(66); + public static final int TYPE_CAMPFIRE_SMOKE = dynamic(67); + @Since("1.4.0.0-PN") public static final int TYPE_TALL_CAMPFIRE_SMOKE = dynamic(68); + public static final int TYPE_FALLING_DRAGONS_BREATH = dynamic(69); + public static final int TYPE_DRAGONS_BREATH = dynamic(70); + @Since("1.4.0.0-PN") public static final int TYPE_BLUE_FLAME = dynamic(71); + @Since("1.4.0.0-PN") public static final int TYPE_SOUL = dynamic(72); + @Since("1.4.0.0-PN") public static final int TYPE_OBSIDIAN_TEAR = dynamic(73); + @Since("1.4.0.0-PN") public static final int TYPE_PORTAL_REVERSE = dynamic(74); + @Since("1.4.0.0-PN") public static final int TYPE_SNOWFLAKE = dynamic(75); + @Since("1.4.0.0-PN") public static final int TYPE_VIBRATION_SIGNAL = dynamic(76); + @Since("1.4.0.0-PN") public static final int TYPE_SCULK_SENSOR_REDSTONE = dynamic(77); + @Since("1.4.0.0-PN") public static final int TYPE_SPORE_BLOSSOM_SHOWER = dynamic(78); + @Since("1.4.0.0-PN") public static final int TYPE_SPORE_BLOSSOM_AMBIENT = dynamic(79); + @Since("1.4.0.0-PN") public static final int TYPE_WAX = dynamic(80); + @Since("1.4.0.0-PN") public static final int TYPE_ELECTRIC_SPARK = dynamic(81); @Since("1.4.0.0-PN") public static Integer getParticleIdByName(String name) { diff --git a/src/main/java/cn/nukkit/level/particle/SplashParticle.java b/src/main/java/cn/nukkit/level/particle/SplashParticle.java index 0193cc38b85..3aa3fe6627c 100644 --- a/src/main/java/cn/nukkit/level/particle/SplashParticle.java +++ b/src/main/java/cn/nukkit/level/particle/SplashParticle.java @@ -8,6 +8,6 @@ */ public class SplashParticle extends GenericParticle { public SplashParticle(Vector3 pos) { - super(pos, Particle.TYPE_WATER_SPLASH); + super(pos, Particle.TYPE_SPLASH); } } From d16c9b2ea29d52762f6b6f7dea13d028b1d8830a Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 6 Jul 2021 20:30:45 -0300 Subject: [PATCH 149/394] Update the packet structures --- .../protocol/AddVolumeEntityPacket.java | 5 + .../protocol/AvailableCommandsPacket.java | 2 +- .../network/protocol/NPCDialoguePacket.java | 33 +++-- .../network/protocol/NPCRequestPacket.java | 76 +++++++++++- .../protocol/RemoveVolumeEntityPacket.java | 5 + .../protocol/ResourcePacksInfoPacket.java | 64 ++++++++++ .../network/protocol/SetTitlePacket.java | 114 ++++++++++++++++++ .../protocol/SimulationTypePacket.java | 5 +- .../protocol/SyncEntityPropertyPacket.java | 6 + 9 files changed, 291 insertions(+), 19 deletions(-) diff --git a/src/main/java/cn/nukkit/network/protocol/AddVolumeEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AddVolumeEntityPacket.java index 7ed2f5c01c4..ee35584a028 100644 --- a/src/main/java/cn/nukkit/network/protocol/AddVolumeEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AddVolumeEntityPacket.java @@ -14,6 +14,11 @@ public class AddVolumeEntityPacket extends DataPacket { private long id; private CompoundTag data; + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public AddVolumeEntityPacket() { + // Does nothing + } @Override public byte pid() { diff --git a/src/main/java/cn/nukkit/network/protocol/AvailableCommandsPacket.java b/src/main/java/cn/nukkit/network/protocol/AvailableCommandsPacket.java index 9b8bcc3a291..5eba556ee1a 100644 --- a/src/main/java/cn/nukkit/network/protocol/AvailableCommandsPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AvailableCommandsPacket.java @@ -136,7 +136,7 @@ public void encode() { putString(name); putString(data.description); - putByte((byte) data.flags); + putLShort(data.flags); putByte((byte) data.permission); putLInt(data.aliases == null ? -1 : enums.indexOf(data.aliases)); diff --git a/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java b/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java index 2bb19992094..83fb7157c77 100644 --- a/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java @@ -21,6 +21,8 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import javax.annotation.Nonnull; + /** * @author joserobjr * @since 2021-07-06 @@ -32,14 +34,14 @@ public class NPCDialoguePacket extends DataPacket { @Since("FUTURE") public static final byte NETWORK_ID = ProtocolInfo.NPC_DIALOGUE_PACKET; - private static final Action[] ACTIONS = Action.values(); + private static final NPCDialogAction[] ACTIONS = NPCDialogAction.values(); private long runtimeEntityId; - private Action action; - private String dialogue; - private String sceneName; - private String npcName; - private String actionJson; + private NPCDialogAction action = NPCDialogAction.OPEN; + private String dialogue = ""; + private String sceneName = ""; + private String npcName = ""; + private String actionJson = ""; @PowerNukkitOnly @Since("FUTURE") @@ -88,67 +90,72 @@ public void setRuntimeEntityId(long runtimeEntityId) { @PowerNukkitOnly @Since("FUTURE") - public Action getAction() { + @Nonnull + public NPCDialogAction getAction() { return action; } @PowerNukkitOnly @Since("FUTURE") - public void setAction(Action action) { + public void setAction(@Nonnull NPCDialogAction action) { this.action = action; } @PowerNukkitOnly @Since("FUTURE") + @Nonnull public String getDialogue() { return dialogue; } @PowerNukkitOnly @Since("FUTURE") - public void setDialogue(String dialogue) { + public void setDialogue(@Nonnull String dialogue) { this.dialogue = dialogue; } @PowerNukkitOnly @Since("FUTURE") + @Nonnull public String getSceneName() { return sceneName; } @PowerNukkitOnly @Since("FUTURE") - public void setSceneName(String sceneName) { + public void setSceneName(@Nonnull String sceneName) { this.sceneName = sceneName; } @PowerNukkitOnly @Since("FUTURE") + @Nonnull public String getNpcName() { return npcName; } @PowerNukkitOnly @Since("FUTURE") - public void setNpcName(String npcName) { + public void setNpcName(@Nonnull String npcName) { this.npcName = npcName; } @PowerNukkitOnly @Since("FUTURE") + @Nonnull public String getActionJson() { return actionJson; } @PowerNukkitOnly @Since("FUTURE") - public void setActionJson(String actionJson) { + public void setActionJson(@Nonnull String actionJson) { this.actionJson = actionJson; } @PowerNukkitOnly @Since("FUTURE") - public enum Action { + public enum NPCDialogAction { @PowerNukkitOnly @Since("FUTURE") OPEN, @PowerNukkitOnly @Since("FUTURE") CLOSE } diff --git a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java index 1e8f891e741..a0866321301 100644 --- a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java @@ -1,18 +1,86 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import lombok.ToString; @ToString public class NPCRequestPacket extends DataPacket { - @Since("1.4.0.0-PN") public long entityRuntimeId; + @Since("1.4.0.0-PN") + public long entityRuntimeId; - @Since("1.4.0.0-PN") public RequestType requestType; + @Since("1.4.0.0-PN") + public RequestType requestType; - @Since("1.4.0.0-PN") public String commandString; + @Since("1.4.0.0-PN") + public String commandString; - @Since("1.4.0.0-PN") public int actionType; + @Since("1.4.0.0-PN") + public int actionType; + + private String sceneName; + + @Override + @PowerNukkitOnly + @Since("FUTURE") + public long getEntityRuntimeId() { + return entityRuntimeId; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setEntityRuntimeId(long entityRuntimeId) { + this.entityRuntimeId = entityRuntimeId; + } + + @PowerNukkitOnly + @Since("FUTURE") + public RequestType getRequestType() { + return requestType; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setRequestType(RequestType requestType) { + this.requestType = requestType; + } + + @PowerNukkitOnly + @Since("FUTURE") + public String getCommandString() { + return commandString; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setCommandString(String commandString) { + this.commandString = commandString; + } + + @PowerNukkitOnly + @Since("FUTURE") + public int getActionType() { + return actionType; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setActionType(int actionType) { + this.actionType = actionType; + } + + @PowerNukkitOnly + @Since("FUTURE") + public String getSceneName() { + return sceneName; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setSceneName(String sceneName) { + this.sceneName = sceneName; + } @Since("1.4.0.0-PN") public enum RequestType { diff --git a/src/main/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacket.java index 74f1a45aa40..c3311130c3b 100644 --- a/src/main/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacket.java @@ -12,6 +12,11 @@ public class RemoveVolumeEntityPacket extends DataPacket { private long id; + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public RemoveVolumeEntityPacket() { + // Does nothing + } @Override public byte pid() { diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java index 30f521fedde..be62970ffe8 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java @@ -1,5 +1,7 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.resourcepacks.ResourcePack; import lombok.ToString; @@ -12,6 +14,7 @@ public class ResourcePacksInfoPacket extends DataPacket { public boolean scripting; public ResourcePack[] behaviourPackEntries = ResourcePack.EMPTY_ARRAY; public ResourcePack[] resourcePackEntries = ResourcePack.EMPTY_ARRAY; + private boolean forcingServerPacksEnabled; @Override public void decode() { @@ -23,6 +26,7 @@ public void encode() { this.reset(); this.putBoolean(this.mustAccept); this.putBoolean(this.scripting); + this.putBoolean(this.forcingServerPacksEnabled); encodePacks(this.behaviourPackEntries); encodePacks(this.resourcePackEntries); @@ -46,4 +50,64 @@ private void encodePacks(ResourcePack[] packs) { public byte pid() { return NETWORK_ID; } + + @PowerNukkitOnly + @Since("FUTURE") + public boolean isForcedToAccept() { + return mustAccept; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setForcedToAccept(boolean mustAccept) { + this.mustAccept = mustAccept; + } + + @PowerNukkitOnly + @Since("FUTURE") + public boolean isScriptingEnabled() { + return scripting; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setScriptingEnabled(boolean scripting) { + this.scripting = scripting; + } + + @PowerNukkitOnly + @Since("FUTURE") + public ResourcePack[] getBehaviourPackEntries() { + return behaviourPackEntries; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setBehaviourPackEntries(ResourcePack[] behaviourPackEntries) { + this.behaviourPackEntries = behaviourPackEntries; + } + + @PowerNukkitOnly + @Since("FUTURE") + public ResourcePack[] getResourcePackEntries() { + return resourcePackEntries; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setResourcePackEntries(ResourcePack[] resourcePackEntries) { + this.resourcePackEntries = resourcePackEntries; + } + + @PowerNukkitOnly + @Since("FUTURE") + public boolean isForcingServerPacksEnabled() { + return forcingServerPacksEnabled; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setForcingServerPacksEnabled(boolean forcingServerPacksEnabled) { + this.forcingServerPacksEnabled = forcingServerPacksEnabled; + } } diff --git a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java index c2242c6917d..f9c1f1029e5 100644 --- a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java @@ -1,13 +1,19 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import lombok.ToString; +import javax.annotation.Nonnull; + /** * @author Tee7even */ @ToString public class SetTitlePacket extends DataPacket { public static final byte NETWORK_ID = ProtocolInfo.SET_TITLE_PACKET; + + private static final Type[] TYPES = Type.values(); public static final int TYPE_CLEAR = 0; public static final int TYPE_RESET = 1; @@ -21,6 +27,9 @@ public class SetTitlePacket extends DataPacket { public int fadeInTime = 0; public int stayTime = 0; public int fadeOutTime = 0; + + private String xuid = ""; + private String platformOnlineId = ""; @Override public byte pid() { @@ -34,6 +43,8 @@ public void decode() { this.fadeInTime = this.getVarInt(); this.stayTime = this.getVarInt(); this.fadeOutTime = this.getVarInt(); + this.xuid = this.getString(); + this.platformOnlineId = this.getString(); } @Override @@ -44,5 +55,108 @@ public void encode() { this.putVarInt(fadeInTime); this.putVarInt(stayTime); this.putVarInt(fadeOutTime); + this.putString(xuid); + this.putString(platformOnlineId); + } + + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public Type getType() { + int currentType = this.type; + if (currentType > 0 && currentType < TYPES.length) { + return TYPES[currentType]; + } + throw new UnsupportedOperationException("Bad type: "+currentType); + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setType(@Nonnull Type type) { + this.type = type.ordinal(); + } + + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public String getText() { + return text; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setText(@Nonnull String text) { + this.text = text; + } + + @PowerNukkitOnly + @Since("FUTURE") + public int getFadeInTime() { + return fadeInTime; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setFadeInTime(int fadeInTime) { + this.fadeInTime = fadeInTime; + } + + @PowerNukkitOnly + @Since("FUTURE") + public int getStayTime() { + return stayTime; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setStayTime(int stayTime) { + this.stayTime = stayTime; + } + + @PowerNukkitOnly + @Since("FUTURE") + public int getFadeOutTime() { + return fadeOutTime; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setFadeOutTime(int fadeOutTime) { + this.fadeOutTime = fadeOutTime; + } + + @PowerNukkitOnly + @Since("FUTURE") + public String getXuid() { + return xuid; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setXuid(String xuid) { + this.xuid = xuid; + } + + @PowerNukkitOnly + @Since("FUTURE") + public String getPlatformOnlineId() { + return platformOnlineId; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setPlatformOnlineId(String platformOnlineId) { + this.platformOnlineId = platformOnlineId; + } + + @PowerNukkitOnly + @Since("FUTURE") + public enum Type { + CLEAR, + RESET, + TITLE, + SUBTITLE, + ACTION_BAR, + ANIMATION_TIMES } } diff --git a/src/main/java/cn/nukkit/network/protocol/SimulationTypePacket.java b/src/main/java/cn/nukkit/network/protocol/SimulationTypePacket.java index 3dbb4be5ec9..813e9a93071 100644 --- a/src/main/java/cn/nukkit/network/protocol/SimulationTypePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SimulationTypePacket.java @@ -21,6 +21,8 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import javax.annotation.Nonnull; + /** * @author joserobjr * @since 2021-07-06 @@ -60,13 +62,14 @@ public void encode() { @PowerNukkitOnly @Since("FUTURE") + @Nonnull public SimulationType getSimulationType() { return type; } @PowerNukkitOnly @Since("FUTURE") - public void setSimulationType(SimulationType type) { + public void setSimulationType(@Nonnull SimulationType type) { this.type = type; } diff --git a/src/main/java/cn/nukkit/network/protocol/SyncEntityPropertyPacket.java b/src/main/java/cn/nukkit/network/protocol/SyncEntityPropertyPacket.java index b7ac2aff5a4..9e67533023b 100644 --- a/src/main/java/cn/nukkit/network/protocol/SyncEntityPropertyPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SyncEntityPropertyPacket.java @@ -13,6 +13,12 @@ public class SyncEntityPropertyPacket extends DataPacket { private CompoundTag data; + @PowerNukkitOnly + @Since("1.5.0.0-PN") + public SyncEntityPropertyPacket() { + // Does nothing + } + @Override public byte pid() { return NETWORK_ID; From d363653c743caa2ae0ceca50381da3bc391c531e Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 6 Jul 2021 20:49:48 -0300 Subject: [PATCH 150/394] Add json actions to SetTitlePacket --- .../network/protocol/SetTitlePacket.java | 27 ++++++++++--------- 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java index f9c1f1029e5..c6505c5a1a0 100644 --- a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java @@ -13,7 +13,7 @@ public class SetTitlePacket extends DataPacket { public static final byte NETWORK_ID = ProtocolInfo.SET_TITLE_PACKET; - private static final Type[] TYPES = Type.values(); + private static final TitleAction[] TITLE_ACTIONS = TitleAction.values(); public static final int TYPE_CLEAR = 0; public static final int TYPE_RESET = 1; @@ -62,17 +62,17 @@ public void encode() { @PowerNukkitOnly @Since("FUTURE") @Nonnull - public Type getType() { + public TitleAction getTitleAction() { int currentType = this.type; - if (currentType > 0 && currentType < TYPES.length) { - return TYPES[currentType]; + if (currentType > 0 && currentType < TITLE_ACTIONS.length) { + return TITLE_ACTIONS[currentType]; } throw new UnsupportedOperationException("Bad type: "+currentType); } @PowerNukkitOnly @Since("FUTURE") - public void setType(@Nonnull Type type) { + public void setTitleAction(@Nonnull TitleAction type) { this.type = type.ordinal(); } @@ -151,12 +151,15 @@ public void setPlatformOnlineId(String platformOnlineId) { @PowerNukkitOnly @Since("FUTURE") - public enum Type { - CLEAR, - RESET, - TITLE, - SUBTITLE, - ACTION_BAR, - ANIMATION_TIMES + public enum TitleAction { + @PowerNukkitOnly @Since("FUTURE") CLEAR, + @PowerNukkitOnly @Since("FUTURE") RESET, + @PowerNukkitOnly @Since("FUTURE") SET_TITLE_MESSAGE, + @PowerNukkitOnly @Since("FUTURE") SET_SUBTITLE_MESSAGE, + @PowerNukkitOnly @Since("FUTURE") SET_ACTION_BAR_MESSAGE, + @PowerNukkitOnly @Since("FUTURE") SET_ANIMATION_TIMES, + @PowerNukkitOnly @Since("FUTURE") SET_TITLE_JSON, + @PowerNukkitOnly @Since("FUTURE") SET_SUBTITLE_JSON, + @PowerNukkitOnly @Since("FUTURE") SET_ACTIONBAR_JSON, } } From 5f486a0f98606641837818d863ecc0abeefd36cc Mon Sep 17 00:00:00 2001 From: Gabriel8579 Date: Wed, 7 Jul 2021 18:39:25 -0300 Subject: [PATCH 151/394] Fixes powered rails do not update in a row --- src/main/java/cn/nukkit/block/BlockRailPowered.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/cn/nukkit/block/BlockRailPowered.java b/src/main/java/cn/nukkit/block/BlockRailPowered.java index 295b788d2f4..fab0240d79f 100644 --- a/src/main/java/cn/nukkit/block/BlockRailPowered.java +++ b/src/main/java/cn/nukkit/block/BlockRailPowered.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitDifference; -import cn.nukkit.item.Item; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.blockproperty.BlockProperties; @@ -70,9 +69,9 @@ public int onUpdate(int type) { // Avoid Block mistake if (wasPowered != isPowered) { setActive(isPowered); - level.updateAround(down()); + RedstoneComponent.updateAroundRedstone(down()); if (getOrientation().isAscending()) { - level.updateAround(up()); + RedstoneComponent.updateAroundRedstone(up()); } } return type; @@ -174,7 +173,7 @@ private boolean checkSurrounding(Vector3 pos, boolean relative, int power) { } // Next check the if rail is on power state return canPowered(new Vector3(dx, dy, dz), base, power, relative) - || onStraight && canPowered(new Vector3(dx, dy - 1., dz), base, power, relative); + || onStraight && canPowered(new Vector3(dx, dy - 1, dz), base, power, relative); } @PowerNukkitDifference(info = "Using new method for checking if powered", since = "1.4.0.0-PN") @@ -189,7 +188,7 @@ protected boolean canPowered(Vector3 pos, Rail.Orientation state, int power, boo Rail.Orientation base = ((BlockRailPowered) block).getOrientation(); // Possible way how to know when the rail is activated is rail were directly powered - // OR recheck the surrounding... Which will returns here =w= + // OR recheck the surrounding... Which will returns here =w= return (state != Rail.Orientation.STRAIGHT_EAST_WEST || base != Rail.Orientation.STRAIGHT_NORTH_SOUTH && base != Rail.Orientation.ASCENDING_NORTH @@ -198,7 +197,8 @@ protected boolean canPowered(Vector3 pos, Rail.Orientation state, int power, boo || base != Rail.Orientation.STRAIGHT_EAST_WEST && base != Rail.Orientation.ASCENDING_EAST && base != Rail.Orientation.ASCENDING_WEST) - && (this.isGettingPower() || checkSurrounding(pos, relative, power + 1)); + && (block.isGettingPower() || checkSurrounding(pos, relative, power + 1)); + } @Override From b8307376620280fb432fa03914d65415939d8419 Mon Sep 17 00:00:00 2001 From: Gabriel8579 Date: Wed, 7 Jul 2021 19:02:08 -0300 Subject: [PATCH 152/394] Fixes sonar bug report --- src/main/java/cn/nukkit/block/BlockRailPowered.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/block/BlockRailPowered.java b/src/main/java/cn/nukkit/block/BlockRailPowered.java index fab0240d79f..6bb3f019ef3 100644 --- a/src/main/java/cn/nukkit/block/BlockRailPowered.java +++ b/src/main/java/cn/nukkit/block/BlockRailPowered.java @@ -173,7 +173,7 @@ private boolean checkSurrounding(Vector3 pos, boolean relative, int power) { } // Next check the if rail is on power state return canPowered(new Vector3(dx, dy, dz), base, power, relative) - || onStraight && canPowered(new Vector3(dx, dy - 1, dz), base, power, relative); + || onStraight && canPowered(new Vector3(dx, dy - 1.0D, dz), base, power, relative); } @PowerNukkitDifference(info = "Using new method for checking if powered", since = "1.4.0.0-PN") From 0e76078fa458de537454b1f2c3a74de74f595e9d Mon Sep 17 00:00:00 2001 From: Flaming Knight Date: Wed, 7 Jul 2021 17:52:03 -0700 Subject: [PATCH 153/394] Added tree generation please work --- .../cn/nukkit/block/BlockFungusCrimson.java | 14 ++- .../cn/nukkit/block/BlockFungusWarped.java | 14 ++- .../object/tree/ObjectCrimsonTree.java | 19 ++++ .../object/tree/ObjectNetherTree.java | 107 ++++++++++++++++++ .../object/tree/ObjectWarpedTree.java | 18 +++ 5 files changed, 168 insertions(+), 4 deletions(-) create mode 100644 src/main/java/cn/nukkit/level/generator/object/tree/ObjectCrimsonTree.java create mode 100644 src/main/java/cn/nukkit/level/generator/object/tree/ObjectNetherTree.java create mode 100644 src/main/java/cn/nukkit/level/generator/object/tree/ObjectWarpedTree.java diff --git a/src/main/java/cn/nukkit/block/BlockFungusCrimson.java b/src/main/java/cn/nukkit/block/BlockFungusCrimson.java index 046f2c5511e..a8a0229040b 100644 --- a/src/main/java/cn/nukkit/block/BlockFungusCrimson.java +++ b/src/main/java/cn/nukkit/block/BlockFungusCrimson.java @@ -3,6 +3,10 @@ import cn.nukkit.Player; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import cn.nukkit.event.level.StructureGrowEvent; +import cn.nukkit.level.ListChunkManager; +import cn.nukkit.level.generator.object.tree.ObjectCrimsonTree; +import cn.nukkit.math.NukkitRandom; import cn.nukkit.utils.BlockColor; import javax.annotation.Nullable; @@ -34,8 +38,14 @@ protected boolean canGrowOn(Block support) { @Override public boolean grow(@Nullable Player cause) { - // TODO Make it grow - return false; + ObjectCrimsonTree crimsonTree = new ObjectCrimsonTree(); + StructureGrowEvent event = new StructureGrowEvent(this, new ListChunkManager(level).getBlocks()); + level.getServer().getPluginManager().callEvent(event); + if(event.isCancelled()) { + return false; + } + crimsonTree.placeObject(level, getFloorX(), getFloorY(), getFloorZ(), new NukkitRandom()); + return true; } @Override diff --git a/src/main/java/cn/nukkit/block/BlockFungusWarped.java b/src/main/java/cn/nukkit/block/BlockFungusWarped.java index f1d83f605cb..1e83c866a4e 100644 --- a/src/main/java/cn/nukkit/block/BlockFungusWarped.java +++ b/src/main/java/cn/nukkit/block/BlockFungusWarped.java @@ -3,6 +3,10 @@ import cn.nukkit.Player; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import cn.nukkit.event.level.StructureGrowEvent; +import cn.nukkit.level.ListChunkManager; +import cn.nukkit.level.generator.object.tree.ObjectWarpedTree; +import cn.nukkit.math.NukkitRandom; import cn.nukkit.utils.BlockColor; import javax.annotation.Nullable; @@ -34,8 +38,14 @@ protected boolean canGrowOn(Block support) { @Override public boolean grow(@Nullable Player cause) { - // TODO Make it grow - return false; + ObjectWarpedTree warpedTree = new ObjectWarpedTree(); + StructureGrowEvent event = new StructureGrowEvent(this, new ListChunkManager(level).getBlocks()); + level.getServer().getPluginManager().callEvent(event); + if(event.isCancelled()) { + return false; + } + warpedTree.placeObject(level, getFloorX(), getFloorY(), getFloorZ(), new NukkitRandom()); + return true; } @Override diff --git a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectCrimsonTree.java b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectCrimsonTree.java new file mode 100644 index 00000000000..52751ace47f --- /dev/null +++ b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectCrimsonTree.java @@ -0,0 +1,19 @@ +package cn.nukkit.level.generator.object.tree; + +import cn.nukkit.block.Block; + +/** + * @author MagicDroidX (Nukkit Project) + */ +public class ObjectCrimsonTree extends ObjectNetherTree { + @Override + public int getTrunkBlock() { + return Block.CRIMSON_STEM; + } + + @Override + public int getLeafBlock() { + return Block.BLOCK_NETHER_WART_BLOCK; + } + +} \ No newline at end of file diff --git a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectNetherTree.java b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectNetherTree.java new file mode 100644 index 00000000000..e18ed7014c9 --- /dev/null +++ b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectNetherTree.java @@ -0,0 +1,107 @@ +package cn.nukkit.level.generator.object.tree; + +import cn.nukkit.block.Block; +import cn.nukkit.level.ChunkManager; +import cn.nukkit.math.NukkitRandom; + +public abstract class ObjectNetherTree extends ObjectTree { + protected int treeHeight; + + public ObjectNetherTree() { + this(new NukkitRandom().nextBoundedInt(9)+4); + } + + public ObjectNetherTree(int treeHeight) { + this.treeHeight = treeHeight; + } + + @Override + public int getType() { + return 0; + } + + @Override + public int getTreeHeight() { + return treeHeight; + } + + @Override + public void placeObject(ChunkManager level, int x, int y, int z, NukkitRandom random) { + this.placeTrunk(level, x, y, z, random, this.getTreeHeight()); + + double blankArea = -3; + int mid = (int) (1 - blankArea / 2); + for (int yy = y - 3 + treeHeight; yy <= y + this.treeHeight-1; ++yy) { + for (int xx = x - mid; xx <= x + mid; xx++) { + int xOff = Math.abs(xx - x); + for (int zz = z - mid; zz <= z + mid; zz += mid*2) { + int zOff = Math.abs(zz - z); + if (xOff == mid && zOff == mid && random.nextBoundedInt(2) == 0) { + continue; + } + if (!Block.solid[level.getBlockIdAt(xx, yy, zz)]) { + if(random.nextBoundedInt(20) == 0) level.setBlockAt(xx, yy, zz, Block.SHROOMLIGHT); + else level.setBlockAt(xx, yy, zz, this.getLeafBlock()); + } + } + } + + for (int zz = z - mid; zz <= z + mid; zz++) { + int zOff = Math.abs(zz - z); + for (int xx = x - mid; xx <= x + mid; xx+=mid*2) { + int xOff = Math.abs(xx - x); + if (xOff == mid && zOff == mid && (random.nextBoundedInt(2) == 0)) { + continue; + } + if (!Block.solid[level.getBlockIdAt(xx, yy, zz)]) { + if(random.nextBoundedInt(20) == 0) level.setBlockAt(xx, yy, zz, Block.SHROOMLIGHT); + else level.setBlockAt(xx, yy, zz, this.getLeafBlock()); + } + } + } + } + + for (int yy = y - 4 + treeHeight; yy <= y + this.treeHeight-3; ++yy) { + for (int xx = x - mid; xx <= x + mid; xx++) { + for (int zz = z - mid; zz <= z + mid; zz += mid*2) { + if (!Block.solid[level.getBlockIdAt(xx, yy, zz)]) { + if(random.nextBoundedInt(3) == 0) { + for(int i = 0; i < random.nextBoundedInt(5); i++) { + if (!Block.solid[level.getBlockIdAt(xx, yy-i, zz)]) level.setBlockAt(xx, yy-i, zz, getLeafBlock()); + } + } + } + } + } + + for (int zz = z - mid; zz <= z + mid; zz++) { + for (int xx = x - mid; xx <= x + mid; xx+=mid*2) { + if (!Block.solid[level.getBlockIdAt(xx, yy, zz)]) { + if(random.nextBoundedInt(3) == 0) { + for(int i = 0; i < random.nextBoundedInt(4); i++) { + if (!Block.solid[level.getBlockIdAt(xx, yy-i, zz)]) level.setBlockAt(xx, yy-i, zz, getLeafBlock()); + } + } + } + } + } + } + + for(int xCanopy = x-mid+1; xCanopy <= x+mid-1; xCanopy++) { + for(int zCanopy = z-mid+1; zCanopy <= z+mid-1; zCanopy++) { + if (!Block.solid[level.getBlockIdAt(xCanopy, y+treeHeight, zCanopy)]) level.setBlockAt(xCanopy, y+treeHeight, zCanopy, getLeafBlock()); + } + } + } + + @Override + protected void placeTrunk(ChunkManager level, int x, int y, int z, NukkitRandom random, int trunkHeight) { + level.setBlockAt(x, y, z, getTrunkBlock()); + for (int yy = 0; yy < trunkHeight; ++yy) { + int blockId = level.getBlockIdAt(x, y + yy, z); + if (this.overridable(blockId)) { + level.setBlockAt(x, y + yy, z, this.getTrunkBlock()); + } + } + } +} \ No newline at end of file diff --git a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectWarpedTree.java b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectWarpedTree.java new file mode 100644 index 00000000000..d4c3913614f --- /dev/null +++ b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectWarpedTree.java @@ -0,0 +1,18 @@ +package cn.nukkit.level.generator.object.tree; + +import cn.nukkit.block.Block; + +/** + * @author MagicDroidX (Nukkit Project) + */ +public class ObjectWarpedTree extends ObjectNetherTree { + @Override + public int getTrunkBlock() { + return Block.WARPED_STEM; + } + + @Override + public int getLeafBlock() { + return Block.WARPED_WART_BLOCK; + } +} \ No newline at end of file From 4351bdeaf82a61231c47c066d4520ab959ab34b2 Mon Sep 17 00:00:00 2001 From: Gabriel8579 Date: Thu, 8 Jul 2021 13:28:56 -0300 Subject: [PATCH 154/394] Fixes rails inherit powered state while pointing to another face Fixes breaking a rail with ascending orientation will not power off the rails that are on the block above --- .../cn/nukkit/block/BlockRailPowered.java | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/src/main/java/cn/nukkit/block/BlockRailPowered.java b/src/main/java/cn/nukkit/block/BlockRailPowered.java index 6bb3f019ef3..619b3a073ae 100644 --- a/src/main/java/cn/nukkit/block/BlockRailPowered.java +++ b/src/main/java/cn/nukkit/block/BlockRailPowered.java @@ -79,6 +79,17 @@ public int onUpdate(int type) { return 0; } + @Since("FUTURE") + @PowerNukkitOnly + @Override + public void afterRemoval(Block newBlock, boolean update) { + RedstoneComponent.updateAroundRedstone(down()); + if (getOrientation().isAscending()) { + RedstoneComponent.updateAroundRedstone(up()); + } + super.afterRemoval(newBlock, update); + } + /** * Check the surrounding of the rail * @@ -108,10 +119,10 @@ private boolean checkSurrounding(Vector3 pos, boolean relative, int power) { } // Used to check if the next ascending rail should be what - Rail.Orientation base = null; + Rail.Orientation base = block.getOrientation(); boolean onStraight = true; // Third: Recalculate the base position - switch (block.getOrientation()) { + switch (base) { case STRAIGHT_NORTH_SOUTH: if (relative) { dz++; @@ -134,7 +145,6 @@ private boolean checkSurrounding(Vector3 pos, boolean relative, int power) { dy++; onStraight = false; } - base = Rail.Orientation.STRAIGHT_EAST_WEST; break; case ASCENDING_WEST: if (relative) { @@ -144,7 +154,6 @@ private boolean checkSurrounding(Vector3 pos, boolean relative, int power) { } else { dx++; } - base = Rail.Orientation.STRAIGHT_EAST_WEST; break; case ASCENDING_NORTH: if (relative) { @@ -154,7 +163,6 @@ private boolean checkSurrounding(Vector3 pos, boolean relative, int power) { dy++; onStraight = false; } - base = Rail.Orientation.STRAIGHT_NORTH_SOUTH; break; case ASCENDING_SOUTH: if (relative) { @@ -164,7 +172,6 @@ private boolean checkSurrounding(Vector3 pos, boolean relative, int power) { } else { dz--; } - base = Rail.Orientation.STRAIGHT_NORTH_SOUTH; break; default: // Unable to determinate the rail orientation From 551ca9aa81110bf08d3165dee6bcb2e654cc0097 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 9 Jul 2021 23:06:52 -0300 Subject: [PATCH 155/394] Fixes: SimpleChunkManager.setBlockAtLayer ignoring the layer --- src/main/java/cn/nukkit/level/generator/SimpleChunkManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/level/generator/SimpleChunkManager.java b/src/main/java/cn/nukkit/level/generator/SimpleChunkManager.java index 8160c302ef7..597dab73cea 100644 --- a/src/main/java/cn/nukkit/level/generator/SimpleChunkManager.java +++ b/src/main/java/cn/nukkit/level/generator/SimpleChunkManager.java @@ -67,7 +67,7 @@ public void setBlockAt(int x, int y, int z, int id, int data) { public boolean setBlockAtLayer(int x, int y, int z, int layer, int id, int data) { FullChunk chunk = this.getChunk(x >> 4, z >> 4); if (chunk != null) { - return chunk.setBlock(x & 0xf, y & 0xff, z & 0xf, id, data); + return chunk.setBlockAtLayer(x & 0xf, y & 0xff, z & 0xf, layer, id, data); } return false; } From 3dfddfd29871751cc2225f2f975888ace2d13dd3 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 11 Jul 2021 15:41:42 +0900 Subject: [PATCH 156/394] Add missing damage causes --- .../event/entity/EntityDamageEvent.java | 80 ++++++++++++++++++- 1 file changed, 76 insertions(+), 4 deletions(-) diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java index b9965f9e41c..ff35168dc49 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java @@ -211,6 +211,16 @@ public enum DamageModifier { } public enum DamageCause { + /** + * Plugins + */ + CUSTOM, + /** + * Damage caused by /kill command + */ + @PowerNukkitOnly + @Since("FUTURE") + OVERRIDE, /** * Damage caused by contact with a block such as a Cactus */ @@ -268,16 +278,78 @@ public enum DamageCause { */ MAGIC, /** - * Plugins + * Damage caused by Wither */ - CUSTOM, + @PowerNukkitOnly + @Since("FUTURE") + WITHER, + /** + * Damage caused by hunger + */ + HUNGER, + /** + * Damage caused by anvil + */ + @PowerNukkitOnly + @Since("FUTURE") + ANVIL, + /** + * Damage caused by thorns + */ + @PowerNukkitOnly + @Since("FUTURE") + THORNS, + /** + * Damage caused by falling block + */ + @PowerNukkitOnly + @Since("FUTURE") + FALLING_BLOCK, + /** + * Damage caused by piston + */ + @PowerNukkitOnly + @Since("FUTURE") + PISTON, + /** + * Damage caused by flying into wall + */ + @PowerNukkitOnly + @Since("FUTURE") + FLYING_INTO_WALL, + /** + * Damage caused by magma + */ + @PowerNukkitOnly + @Since("FUTURE") + MAGMA, + /** + * Damage caused by fireworks + */ + @PowerNukkitOnly + @Since("FUTURE") + FIREWORKS, /** * Damage caused by being struck by lightning */ LIGHTNING, /** - * Damage caused by hunger + * Damage caused by charging + */ + @PowerNukkitOnly + @Since("FUTURE") + CHARGING, + /** + * Damage caused by temperature + */ + @PowerNukkitOnly + @Since("FUTURE") + TEMPERATURE, + /** + * Damage caused by all */ - HUNGER + @PowerNukkitOnly + @Since("FUTURE") + ALL } } From ddb5d9a5e163bda636396e06a9d50441446f57a4 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 11 Jul 2021 15:50:12 +0900 Subject: [PATCH 157/394] Use MAGMA DamageCause for Magma block --- src/main/java/cn/nukkit/block/BlockMagma.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/block/BlockMagma.java b/src/main/java/cn/nukkit/block/BlockMagma.java index de00aa9d6e9..2c555db39ef 100644 --- a/src/main/java/cn/nukkit/block/BlockMagma.java +++ b/src/main/java/cn/nukkit/block/BlockMagma.java @@ -68,7 +68,7 @@ public void onEntityCollide(Entity entity) { return; } if (!p.isCreative() && !p.isSpectator() && !p.isSneaking()) { - entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.LAVA, 1)); + entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.MAGMA, 1)); } } else { entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.LAVA, 1)); From 94c1d8fa77a6006bc59a5b7892a3a6ebea9c5821 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Sun, 11 Jul 2021 15:52:05 +0900 Subject: [PATCH 158/394] Improve magma death message --- src/main/java/cn/nukkit/Player.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 7dd4fcd489f..087c4226520 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -4543,12 +4543,8 @@ public void kill() { break; case LAVA: - Block block = this.level.getBlock(new Vector3(this.x, this.y - 1, this.z)); - if (block.getId() == Block.MAGMA) { - message = "death.attack.magma"; - } else { - message = "death.attack.lava"; - } + message = "death.attack.lava"; + if (killer instanceof EntityProjectile) { Entity shooter = ((EntityProjectile) killer).shootingEntity; if (shooter != null) { @@ -4609,6 +4605,9 @@ public void kill() { case HUNGER: message = "death.attack.starve"; break; + case MAGMA: + message = "death.attack.magma"; + break; default: message = "death.attack.generic"; break; From 795c62bbcb8fb02adf1b0e23f0e726dfc1b10389 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Mon, 12 Jul 2021 15:54:24 +0900 Subject: [PATCH 159/394] Implement isIgnoringMobEquipmentPacket for signing book and fix BookEditPacket handler --- src/main/java/cn/nukkit/Player.java | 49 ++++++++++++++++++++++------- 1 file changed, 38 insertions(+), 11 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 7dd4fcd489f..659a44b845e 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -296,7 +296,11 @@ public class Player extends EntityHuman implements CommandSender, InventoryHolde private float soulSpeedMultiplier = 1; private boolean wasInSoulSandCompatible; - + + @PowerNukkitOnly + @Since("FUTURE") + private boolean isIgnoringMobEquipmentPacket; + @PowerNukkitOnly @Since("1.4.0.0-PN") public float getSoulSpeedMultiplier() { @@ -2663,13 +2667,18 @@ public void onCompletion(Server server) { } Item item = inv.getItem(mobEquipmentPacket.hotbarSlot); - - if (!item.equals(mobEquipmentPacket.item)) { - log.debug("Tried to equip {} but have {} in target slot", mobEquipmentPacket.item, item); - inv.sendContents(this); - return; + + if (!this.isIgnoringMobEquipmentPacket()) { + if (!item.equals(mobEquipmentPacket.item)) { + log.debug("Tried to equip {} but have {} in target slot", mobEquipmentPacket.item, item); + inv.sendContents(this); + return; + } + } else { + log.debug("MobEquipmentPacket ignored"); + this.setIgnoringMobEquipmentPacket(false); } - + if (inv instanceof PlayerInventory) { ((PlayerInventory) inv).equipItem(mobEquipmentPacket.hotbarSlot); } @@ -3968,17 +3977,19 @@ public void onCompletion(Server server) { return; } - if (bookEditPacket.text == null || bookEditPacket.text.length() > 256) { - return; - } - Item newBook = oldBook.clone(); boolean success; switch (bookEditPacket.action) { case REPLACE_PAGE: + if (bookEditPacket.text == null || bookEditPacket.text.length() > 256) { + return; + } success = ((ItemBookAndQuill) newBook).setPageText(bookEditPacket.pageNumber, bookEditPacket.text); break; case ADD_PAGE: + if (bookEditPacket.text == null || bookEditPacket.text.length() > 256) { + return; + } success = ((ItemBookAndQuill) newBook).insertPage(bookEditPacket.pageNumber, bookEditPacket.text); break; case DELETE_PAGE: @@ -3999,6 +4010,10 @@ public void onCompletion(Server server) { PlayerEditBookEvent editBookEvent = new PlayerEditBookEvent(this, oldBook, newBook, bookEditPacket.action); this.server.getPluginManager().callEvent(editBookEvent); if (!editBookEvent.isCancelled()) { + // HACK: When the client is survival, it sends MobEquipmentPacket when it edit a book. Then, when the server handle MobEquipmentPacket, the item does not same as before so it reverts. Ignore it to solve it. + if (!this.isCreative() && bookEditPacket.action == BookEditPacket.Action.SIGN_BOOK) { + this.setIgnoringMobEquipmentPacket(true); + } this.inventory.setItem(bookEditPacket.inventorySlot, editBookEvent.getNewBook()); } } @@ -6101,4 +6116,16 @@ public boolean dataPacketImmediately(DataPacket packet) { return true; } + + @PowerNukkitOnly + @Since("FUTURE") + public boolean isIgnoringMobEquipmentPacket() { + return this.isIgnoringMobEquipmentPacket; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setIgnoringMobEquipmentPacket(boolean isIgnoringMobEquipmentPacket) { + this.isIgnoringMobEquipmentPacket = isIgnoringMobEquipmentPacket; + } } From 6e14079cd71d3219711fab20ce111d4d87cd5537 Mon Sep 17 00:00:00 2001 From: LT_Name <45508179+lt-name@users.noreply.github.com> Date: Mon, 12 Jul 2021 03:58:53 -0500 Subject: [PATCH 160/394] Fix adventure mode does not consume weapon durability (#1866) --- src/main/java/cn/nukkit/Player.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index fa43cdc50a9..9043610c7ce 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -3248,7 +3248,7 @@ public void onCompletion(Server server) { enchantment.doPostAttack(this, target); } - if (item.isTool() && this.isSurvival()) { + if (item.isTool() && (this.isSurvival() || this.isAdventure())) { if (item.useOn(target) && item.getDamage() >= item.getMaxDurability()) { this.inventory.setItemInHand(new ItemBlock(Block.get(BlockID.AIR))); } else { From 98114f8b8ccc985dd71f090b06a0cdec27ed66f4 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 13 Jul 2021 17:52:48 -0300 Subject: [PATCH 161/394] Update the resources for MC-1.17.10 --- dumps/block-properties.ini | 2 + dumps/block-states.ini | 119 + dumps/runtime_block_states.dat.dump.txt | 15096 ++++++++-------- dumps/simple-blocks-nukkit.txt | 34 + .../cn/nukkit/plugin/PowerNukkitPlugin.java | 28 - src/main/resources/canonical_block_states.nbt | Bin 1154321 -> 1166071 bytes src/main/resources/runtime_item_ids.json | 74 +- .../powernukkit/HumanStringComparator.java | 41 - .../org/powernukkit/dumps/ItemIdDumper.java | 2 +- .../RuntimeBlockStateDumper.java | 12 +- .../powernukkit/tools/BlockStateReader.java | 104 - .../org/powernukkit/tools/BlockStates.java | 187 - .../powernukkit/tools/OverridesUpdater.java | 188 - .../tools/RuntimeItemIdUpdater.java | 18 + .../powernukkit/tools/SimpleBlocksReader.java | 104 - src/test/resources/required_item_list.json | 136 + 16 files changed, 8241 insertions(+), 7904 deletions(-) delete mode 100644 src/test/java/org/powernukkit/HumanStringComparator.java rename src/test/java/org/powernukkit/{tools => dumps}/RuntimeBlockStateDumper.java (92%) delete mode 100644 src/test/java/org/powernukkit/tools/BlockStateReader.java delete mode 100644 src/test/java/org/powernukkit/tools/BlockStates.java delete mode 100644 src/test/java/org/powernukkit/tools/OverridesUpdater.java delete mode 100644 src/test/java/org/powernukkit/tools/SimpleBlocksReader.java diff --git a/dumps/block-properties.ini b/dumps/block-properties.ini index 2fc95e01538..7ebd3e6732d 100644 --- a/dumps/block-properties.ini +++ b/dumps/block-properties.ini @@ -19,6 +19,7 @@ brewing_stand_slot_a_bit=0,1 brewing_stand_slot_b_bit=0,1 brewing_stand_slot_c_bit=0,1 button_pressed_bit=0,1 +candles=0,1,2,3 cauldron_liquid=lava,powder_snow,water chemistry_table_type=compound_creator,element_constructor,lab_table,material_reducer chisel_type=chiseled,default,lines,smooth @@ -63,6 +64,7 @@ item_frame_map_bit=0,1 kelp_age=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 lever_direction=down_east_west,down_north_south,east,north,south,up_east_west,up_north_south,west liquid_depth=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 +lit=0,1 moisturized_amount=0,1,2,3,4,5,6,7 monster_egg_stone_type=chiseled_stone_brick,cobblestone,cracked_stone_brick,mossy_stone_brick,stone,stone_brick multi_face_direction_bits=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63 diff --git a/dumps/block-states.ini b/dumps/block-states.ini index 8fbd4f021be..00207d99441 100644 --- a/dumps/block-states.ini +++ b/dumps/block-states.ini @@ -148,6 +148,13 @@ upside_down_bit=0,1 [minecraft:birch_wall_sign] facing_direction=0,1,2,3,4,5 +[minecraft:black_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:black_candle_cake] +lit=0,1 + [minecraft:black_glazed_terracotta] facing_direction=0,1,2,3,4,5 @@ -173,6 +180,13 @@ wall_post_bit=0,1 [minecraft:blast_furnace] facing_direction=0,1,2,3,4,5 +[minecraft:blue_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:blue_candle_cake] +lit=0,1 + [minecraft:blue_glazed_terracotta] facing_direction=0,1,2,3,4,5 @@ -202,6 +216,13 @@ brewing_stand_slot_c_bit=0,1 upside_down_bit=0,1 weirdo_direction=0,1,2,3 +[minecraft:brown_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:brown_candle_cake] +lit=0,1 + [minecraft:brown_glazed_terracotta] facing_direction=0,1,2,3,4,5 @@ -229,6 +250,13 @@ bite_counter=0,1,2,3,4,5,6 direction=0,1,2,3 extinguished=0,1 +[minecraft:candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:candle_cake] +lit=0,1 + [minecraft:carpet] color=black,blue,brown,cyan,gray,green,light_blue,lime,magenta,orange,pink,purple,red,silver,white,yellow @@ -453,6 +481,13 @@ top_slot_bit=0,1 upside_down_bit=0,1 weirdo_direction=0,1,2,3 +[minecraft:cyan_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:cyan_candle_cake] +lit=0,1 + [minecraft:cyan_glazed_terracotta] facing_direction=0,1,2,3,4,5 @@ -970,9 +1005,23 @@ weirdo_direction=0,1,2,3 [minecraft:gravel] +[minecraft:gray_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:gray_candle_cake] +lit=0,1 + [minecraft:gray_glazed_terracotta] facing_direction=0,1,2,3,4,5 +[minecraft:green_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:green_candle_cake] +lit=0,1 + [minecraft:green_glazed_terracotta] facing_direction=0,1,2,3,4,5 @@ -1120,15 +1169,36 @@ open_bit=0,1 [minecraft:light_block] block_light_level=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 +[minecraft:light_blue_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:light_blue_candle_cake] +lit=0,1 + [minecraft:light_blue_glazed_terracotta] facing_direction=0,1,2,3,4,5 +[minecraft:light_gray_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:light_gray_candle_cake] +lit=0,1 + [minecraft:light_weighted_pressure_plate] redstone_signal=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 [minecraft:lightning_rod] facing_direction=0,1,2,3,4,5 +[minecraft:lime_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:lime_candle_cake] +lit=0,1 + [minecraft:lime_glazed_terracotta] facing_direction=0,1,2,3,4,5 @@ -1163,6 +1233,13 @@ pillar_axis=x,y,z [minecraft:loom] direction=0,1,2,3 +[minecraft:magenta_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:magenta_candle_cake] +lit=0,1 + [minecraft:magenta_glazed_terracotta] facing_direction=0,1,2,3,4,5 @@ -1239,6 +1316,13 @@ powered_bit=0,1 [minecraft:obsidian] +[minecraft:orange_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:orange_candle_cake] +lit=0,1 + [minecraft:orange_glazed_terracotta] facing_direction=0,1,2,3,4,5 @@ -1258,6 +1342,13 @@ top_slot_bit=0,1 [minecraft:packed_ice] +[minecraft:pink_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:pink_candle_cake] +lit=0,1 + [minecraft:pink_glazed_terracotta] facing_direction=0,1,2,3,4,5 @@ -1390,6 +1481,13 @@ direction=0,1,2,3 facing_direction=0,1,2,3,4,5 growth=0,1,2,3,4,5,6,7 +[minecraft:purple_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:purple_candle_cake] +lit=0,1 + [minecraft:purple_glazed_terracotta] facing_direction=0,1,2,3,4,5 @@ -1422,6 +1520,13 @@ rail_direction=0,1,2,3,4,5,6,7,8,9 [minecraft:raw_iron_block] +[minecraft:red_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:red_candle_cake] +lit=0,1 + [minecraft:red_flower] flower_type=allium,cornflower,houstonia,lily_of_the_valley,orchid,oxeye,poppy,tulip_orange,tulip_pink,tulip_red,tulip_white @@ -1915,6 +2020,13 @@ weeping_vines_age=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23, [minecraft:wheat] growth=0,1,2,3,4,5,6,7 +[minecraft:white_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:white_candle_cake] +lit=0,1 + [minecraft:white_glazed_terracotta] facing_direction=0,1,2,3,4,5 @@ -1945,6 +2057,13 @@ wood_type=acacia,birch,dark_oak,jungle,oak,spruce [minecraft:wool] color=black,blue,brown,cyan,gray,green,light_blue,lime,magenta,orange,pink,purple,red,silver,white,yellow +[minecraft:yellow_candle] +candles=0,1,2,3 +lit=0,1 + +[minecraft:yellow_candle_cake] +lit=0,1 + [minecraft:yellow_flower] [minecraft:yellow_glazed_terracotta] diff --git a/dumps/runtime_block_states.dat.dump.txt b/dumps/runtime_block_states.dat.dump.txt index d3fedaea1e1..e4786c390bc 100644 --- a/dumps/runtime_block_states.dat.dump.txt +++ b/dumps/runtime_block_states.dat.dump.txt @@ -1912,28819 +1912,29499 @@ minecraft:birch_wall_sign;facing_direction=5 blockId=442 runtimeId=477 +minecraft:black_candle;lit=0;candles=0 +blockId=-1 +runtimeId=478 + +minecraft:black_candle;lit=0;candles=1 +blockId=-1 +runtimeId=479 + +minecraft:black_candle;lit=0;candles=2 +blockId=-1 +runtimeId=480 + +minecraft:black_candle;lit=0;candles=3 +blockId=-1 +runtimeId=481 + +minecraft:black_candle;lit=1;candles=0 +blockId=-1 +runtimeId=482 + +minecraft:black_candle;lit=1;candles=1 +blockId=-1 +runtimeId=483 + +minecraft:black_candle;lit=1;candles=2 +blockId=-1 +runtimeId=484 + +minecraft:black_candle;lit=1;candles=3 +blockId=-1 +runtimeId=485 + +minecraft:black_candle_cake;lit=0 +blockId=-1 +runtimeId=486 + +minecraft:black_candle_cake;lit=1 +blockId=-1 +runtimeId=487 + minecraft:black_glazed_terracotta;facing_direction=0 blockId=235 -runtimeId=478 +runtimeId=488 minecraft:black_glazed_terracotta;facing_direction=1 blockId=235 -runtimeId=479 +runtimeId=489 minecraft:black_glazed_terracotta;facing_direction=2 blockId=235 -runtimeId=480 +runtimeId=490 minecraft:black_glazed_terracotta;facing_direction=3 blockId=235 -runtimeId=481 +runtimeId=491 minecraft:black_glazed_terracotta;facing_direction=4 blockId=235 -runtimeId=482 +runtimeId=492 minecraft:black_glazed_terracotta;facing_direction=5 blockId=235 -runtimeId=483 +runtimeId=493 minecraft:blackstone blockId=528 -runtimeId=484 +runtimeId=494 minecraft:blackstone_double_slab;top_slot_bit=0 blockId=538 -runtimeId=485 +runtimeId=495 minecraft:blackstone_double_slab;top_slot_bit=1 blockId=538 -runtimeId=486 +runtimeId=496 minecraft:blackstone_slab;top_slot_bit=0 blockId=537 -runtimeId=487 +runtimeId=497 minecraft:blackstone_slab;top_slot_bit=1 blockId=537 -runtimeId=488 +runtimeId=498 minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=531 -runtimeId=489 +runtimeId=499 minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=531 -runtimeId=490 +runtimeId=500 minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=531 -runtimeId=491 +runtimeId=501 minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=531 -runtimeId=492 +runtimeId=502 minecraft:blackstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=531 -runtimeId=493 +runtimeId=503 minecraft:blackstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=531 -runtimeId=494 +runtimeId=504 minecraft:blackstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=531 -runtimeId=495 +runtimeId=505 minecraft:blackstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=531 -runtimeId=496 +runtimeId=506 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=497 +runtimeId=507 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=499 +runtimeId=509 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=501 +runtimeId=511 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=551 +runtimeId=561 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=553 +runtimeId=563 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=555 +runtimeId=565 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=605 +runtimeId=615 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=607 +runtimeId=617 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=609 +runtimeId=619 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=515 +runtimeId=525 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=517 +runtimeId=527 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=519 +runtimeId=529 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=569 +runtimeId=579 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=571 +runtimeId=581 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=573 +runtimeId=583 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=623 +runtimeId=633 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=625 +runtimeId=635 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=627 +runtimeId=637 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=533 +runtimeId=543 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=535 +runtimeId=545 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=537 +runtimeId=547 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=587 +runtimeId=597 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=589 +runtimeId=599 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=591 +runtimeId=601 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=641 +runtimeId=651 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=643 +runtimeId=653 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=645 +runtimeId=655 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=498 +runtimeId=508 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=500 +runtimeId=510 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=502 +runtimeId=512 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=552 +runtimeId=562 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=554 +runtimeId=564 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=556 +runtimeId=566 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=606 +runtimeId=616 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=608 +runtimeId=618 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=610 +runtimeId=620 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=516 +runtimeId=526 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=518 +runtimeId=528 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=520 +runtimeId=530 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=570 +runtimeId=580 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=572 +runtimeId=582 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=574 +runtimeId=584 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=624 +runtimeId=634 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=626 +runtimeId=636 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=628 +runtimeId=638 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=534 +runtimeId=544 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=536 +runtimeId=546 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=538 +runtimeId=548 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=588 +runtimeId=598 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=590 +runtimeId=600 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=592 +runtimeId=602 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=642 +runtimeId=652 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=644 +runtimeId=654 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=646 +runtimeId=656 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=503 +runtimeId=513 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=505 +runtimeId=515 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=507 +runtimeId=517 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=557 +runtimeId=567 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=559 +runtimeId=569 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=561 +runtimeId=571 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=611 +runtimeId=621 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=613 +runtimeId=623 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=615 +runtimeId=625 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=521 +runtimeId=531 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=523 +runtimeId=533 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=525 +runtimeId=535 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=575 +runtimeId=585 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=577 +runtimeId=587 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=579 +runtimeId=589 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=629 +runtimeId=639 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=631 +runtimeId=641 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=633 +runtimeId=643 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=539 +runtimeId=549 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=541 +runtimeId=551 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=543 +runtimeId=553 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=593 +runtimeId=603 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=595 +runtimeId=605 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=597 +runtimeId=607 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=647 +runtimeId=657 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=649 +runtimeId=659 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=651 +runtimeId=661 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=504 +runtimeId=514 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=506 +runtimeId=516 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=508 +runtimeId=518 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=558 +runtimeId=568 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=560 +runtimeId=570 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=562 +runtimeId=572 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=612 +runtimeId=622 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=614 +runtimeId=624 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=616 +runtimeId=626 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=522 +runtimeId=532 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=524 +runtimeId=534 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=526 +runtimeId=536 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=576 +runtimeId=586 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=578 +runtimeId=588 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=580 +runtimeId=590 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=630 +runtimeId=640 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=632 +runtimeId=642 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=634 +runtimeId=644 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=540 +runtimeId=550 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=542 +runtimeId=552 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=544 +runtimeId=554 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=594 +runtimeId=604 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=596 +runtimeId=606 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=598 +runtimeId=608 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=648 +runtimeId=658 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=650 +runtimeId=660 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=652 +runtimeId=662 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=509 +runtimeId=519 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=511 +runtimeId=521 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=513 +runtimeId=523 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=563 +runtimeId=573 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=565 +runtimeId=575 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=567 +runtimeId=577 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=617 +runtimeId=627 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=619 +runtimeId=629 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=621 +runtimeId=631 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=527 +runtimeId=537 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=529 +runtimeId=539 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=531 +runtimeId=541 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=581 +runtimeId=591 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=583 +runtimeId=593 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=585 +runtimeId=595 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=635 +runtimeId=645 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=637 +runtimeId=647 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=639 +runtimeId=649 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=545 +runtimeId=555 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=547 +runtimeId=557 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=549 +runtimeId=559 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=599 +runtimeId=609 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=601 +runtimeId=611 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=603 +runtimeId=613 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=653 +runtimeId=663 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=655 +runtimeId=665 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=657 +runtimeId=667 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=510 +runtimeId=520 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=512 +runtimeId=522 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=514 +runtimeId=524 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=564 +runtimeId=574 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=566 +runtimeId=576 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=568 +runtimeId=578 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=618 +runtimeId=628 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=620 +runtimeId=630 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=622 +runtimeId=632 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=528 +runtimeId=538 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=530 +runtimeId=540 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=532 +runtimeId=542 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=582 +runtimeId=592 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=584 +runtimeId=594 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=586 +runtimeId=596 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=636 +runtimeId=646 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=638 +runtimeId=648 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=640 +runtimeId=650 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=546 +runtimeId=556 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=548 +runtimeId=558 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=550 +runtimeId=560 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=600 +runtimeId=610 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=602 +runtimeId=612 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=604 +runtimeId=614 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=654 +runtimeId=664 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=656 +runtimeId=666 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=658 +runtimeId=668 minecraft:blast_furnace;facing_direction=0 blockId=451 -runtimeId=659 +runtimeId=669 minecraft:blast_furnace;facing_direction=1 blockId=451 -runtimeId=660 +runtimeId=670 minecraft:blast_furnace;facing_direction=2 blockId=451 -runtimeId=661 +runtimeId=671 minecraft:blast_furnace;facing_direction=3 blockId=451 -runtimeId=662 +runtimeId=672 minecraft:blast_furnace;facing_direction=4 blockId=451 -runtimeId=663 +runtimeId=673 minecraft:blast_furnace;facing_direction=5 blockId=451 -runtimeId=664 +runtimeId=674 + +minecraft:blue_candle;lit=0;candles=0 +blockId=-1 +runtimeId=675 + +minecraft:blue_candle;lit=0;candles=1 +blockId=-1 +runtimeId=676 + +minecraft:blue_candle;lit=0;candles=2 +blockId=-1 +runtimeId=677 + +minecraft:blue_candle;lit=0;candles=3 +blockId=-1 +runtimeId=678 + +minecraft:blue_candle;lit=1;candles=0 +blockId=-1 +runtimeId=679 + +minecraft:blue_candle;lit=1;candles=1 +blockId=-1 +runtimeId=680 + +minecraft:blue_candle;lit=1;candles=2 +blockId=-1 +runtimeId=681 + +minecraft:blue_candle;lit=1;candles=3 +blockId=-1 +runtimeId=682 + +minecraft:blue_candle_cake;lit=0 +blockId=-1 +runtimeId=683 + +minecraft:blue_candle_cake;lit=1 +blockId=-1 +runtimeId=684 minecraft:blue_glazed_terracotta;facing_direction=0 blockId=231 -runtimeId=665 +runtimeId=685 minecraft:blue_glazed_terracotta;facing_direction=1 blockId=231 -runtimeId=666 +runtimeId=686 minecraft:blue_glazed_terracotta;facing_direction=2 blockId=231 -runtimeId=667 +runtimeId=687 minecraft:blue_glazed_terracotta;facing_direction=3 blockId=231 -runtimeId=668 +runtimeId=688 minecraft:blue_glazed_terracotta;facing_direction=4 blockId=231 -runtimeId=669 +runtimeId=689 minecraft:blue_glazed_terracotta;facing_direction=5 blockId=231 -runtimeId=670 +runtimeId=690 minecraft:blue_ice blockId=266 -runtimeId=671 +runtimeId=691 minecraft:bone_block;deprecated=0;pillar_axis=x blockId=216 -runtimeId=676 +runtimeId=696 minecraft:bone_block;deprecated=0;pillar_axis=y blockId=216 -runtimeId=672 +runtimeId=692 minecraft:bone_block;deprecated=0;pillar_axis=z blockId=216 -runtimeId=680 +runtimeId=700 minecraft:bone_block;deprecated=1;pillar_axis=x blockId=216 -runtimeId=677 +runtimeId=697 minecraft:bone_block;deprecated=1;pillar_axis=y blockId=216 -runtimeId=673 +runtimeId=693 minecraft:bone_block;deprecated=1;pillar_axis=z blockId=216 -runtimeId=681 +runtimeId=701 minecraft:bone_block;deprecated=2;pillar_axis=x blockId=216 -runtimeId=678 +runtimeId=698 minecraft:bone_block;deprecated=2;pillar_axis=y blockId=216 -runtimeId=674 +runtimeId=694 minecraft:bone_block;deprecated=2;pillar_axis=z blockId=216 -runtimeId=682 +runtimeId=702 minecraft:bone_block;deprecated=3;pillar_axis=x blockId=216 -runtimeId=679 +runtimeId=699 minecraft:bone_block;deprecated=3;pillar_axis=y blockId=216 -runtimeId=675 +runtimeId=695 minecraft:bone_block;deprecated=3;pillar_axis=z blockId=216 -runtimeId=683 +runtimeId=703 minecraft:bookshelf blockId=47 -runtimeId=684 +runtimeId=704 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=685 +runtimeId=705 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=687 +runtimeId=707 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=689 +runtimeId=709 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=739 +runtimeId=759 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=741 +runtimeId=761 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=743 +runtimeId=763 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=793 +runtimeId=813 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=795 +runtimeId=815 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=797 +runtimeId=817 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=703 +runtimeId=723 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=705 +runtimeId=725 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=707 +runtimeId=727 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=757 +runtimeId=777 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=759 +runtimeId=779 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=761 +runtimeId=781 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=811 +runtimeId=831 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=813 +runtimeId=833 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=815 +runtimeId=835 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=721 +runtimeId=741 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=723 +runtimeId=743 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=725 +runtimeId=745 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=775 +runtimeId=795 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=777 +runtimeId=797 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=779 +runtimeId=799 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=829 +runtimeId=849 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=831 +runtimeId=851 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=833 +runtimeId=853 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=686 +runtimeId=706 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=688 +runtimeId=708 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=690 +runtimeId=710 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=740 +runtimeId=760 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=742 +runtimeId=762 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=744 +runtimeId=764 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=794 +runtimeId=814 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=796 +runtimeId=816 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=798 +runtimeId=818 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=704 +runtimeId=724 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=706 +runtimeId=726 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=708 +runtimeId=728 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=758 +runtimeId=778 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=760 +runtimeId=780 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=762 +runtimeId=782 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=812 +runtimeId=832 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=814 +runtimeId=834 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=816 +runtimeId=836 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=722 +runtimeId=742 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=724 +runtimeId=744 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=726 +runtimeId=746 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=776 +runtimeId=796 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=778 +runtimeId=798 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=780 +runtimeId=800 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=830 +runtimeId=850 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=832 +runtimeId=852 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=834 +runtimeId=854 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=691 +runtimeId=711 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=693 +runtimeId=713 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=695 +runtimeId=715 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=745 +runtimeId=765 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=747 +runtimeId=767 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=749 +runtimeId=769 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=799 +runtimeId=819 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=801 +runtimeId=821 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=803 +runtimeId=823 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=709 +runtimeId=729 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=711 +runtimeId=731 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=713 +runtimeId=733 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=763 +runtimeId=783 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=765 +runtimeId=785 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=767 +runtimeId=787 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=817 +runtimeId=837 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=819 +runtimeId=839 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=821 +runtimeId=841 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=727 +runtimeId=747 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=729 +runtimeId=749 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=731 +runtimeId=751 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=781 +runtimeId=801 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=783 +runtimeId=803 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=785 +runtimeId=805 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=835 +runtimeId=855 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=837 +runtimeId=857 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=839 +runtimeId=859 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=692 +runtimeId=712 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=694 +runtimeId=714 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=696 +runtimeId=716 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=746 +runtimeId=766 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=748 +runtimeId=768 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=750 +runtimeId=770 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=800 +runtimeId=820 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=802 +runtimeId=822 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=804 +runtimeId=824 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=710 +runtimeId=730 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=712 +runtimeId=732 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=714 +runtimeId=734 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=764 +runtimeId=784 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=766 +runtimeId=786 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=768 +runtimeId=788 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=818 +runtimeId=838 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=820 +runtimeId=840 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=822 +runtimeId=842 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=728 +runtimeId=748 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=730 +runtimeId=750 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=732 +runtimeId=752 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=782 +runtimeId=802 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=784 +runtimeId=804 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=786 +runtimeId=806 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=836 +runtimeId=856 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=838 +runtimeId=858 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=840 +runtimeId=860 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=697 +runtimeId=717 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=699 +runtimeId=719 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=701 +runtimeId=721 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=751 +runtimeId=771 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=753 +runtimeId=773 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=755 +runtimeId=775 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=805 +runtimeId=825 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=807 +runtimeId=827 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=809 +runtimeId=829 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=715 +runtimeId=735 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=717 +runtimeId=737 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=719 +runtimeId=739 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=769 +runtimeId=789 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=771 +runtimeId=791 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=773 +runtimeId=793 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=823 +runtimeId=843 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=825 +runtimeId=845 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=827 +runtimeId=847 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=733 +runtimeId=753 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=735 +runtimeId=755 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=737 +runtimeId=757 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=787 +runtimeId=807 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=789 +runtimeId=809 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=791 +runtimeId=811 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=841 +runtimeId=861 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=843 +runtimeId=863 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=845 +runtimeId=865 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=698 +runtimeId=718 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=700 +runtimeId=720 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=702 +runtimeId=722 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=752 +runtimeId=772 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=754 +runtimeId=774 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=756 +runtimeId=776 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=806 +runtimeId=826 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=808 +runtimeId=828 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=810 +runtimeId=830 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=716 +runtimeId=736 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=718 +runtimeId=738 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=720 +runtimeId=740 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=770 +runtimeId=790 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=772 +runtimeId=792 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=774 +runtimeId=794 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=824 +runtimeId=844 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=826 +runtimeId=846 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=828 +runtimeId=848 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=734 +runtimeId=754 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=736 +runtimeId=756 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=738 +runtimeId=758 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=788 +runtimeId=808 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=790 +runtimeId=810 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=792 +runtimeId=812 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=842 +runtimeId=862 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=844 +runtimeId=864 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=846 +runtimeId=866 minecraft:brewing_stand;brewing_stand_slot_c_bit=0;brewing_stand_slot_a_bit=0;brewing_stand_slot_b_bit=0 blockId=117 -runtimeId=847 +runtimeId=867 minecraft:brewing_stand;brewing_stand_slot_c_bit=0;brewing_stand_slot_a_bit=0;brewing_stand_slot_b_bit=1 blockId=117 -runtimeId=849 +runtimeId=869 minecraft:brewing_stand;brewing_stand_slot_c_bit=0;brewing_stand_slot_a_bit=1;brewing_stand_slot_b_bit=0 blockId=117 -runtimeId=848 +runtimeId=868 minecraft:brewing_stand;brewing_stand_slot_c_bit=0;brewing_stand_slot_a_bit=1;brewing_stand_slot_b_bit=1 blockId=117 -runtimeId=850 +runtimeId=870 minecraft:brewing_stand;brewing_stand_slot_c_bit=1;brewing_stand_slot_a_bit=0;brewing_stand_slot_b_bit=0 blockId=117 -runtimeId=851 +runtimeId=871 minecraft:brewing_stand;brewing_stand_slot_c_bit=1;brewing_stand_slot_a_bit=0;brewing_stand_slot_b_bit=1 blockId=117 -runtimeId=853 +runtimeId=873 minecraft:brewing_stand;brewing_stand_slot_c_bit=1;brewing_stand_slot_a_bit=1;brewing_stand_slot_b_bit=0 blockId=117 -runtimeId=852 +runtimeId=872 minecraft:brewing_stand;brewing_stand_slot_c_bit=1;brewing_stand_slot_a_bit=1;brewing_stand_slot_b_bit=1 blockId=117 -runtimeId=854 +runtimeId=874 minecraft:brick_block blockId=45 -runtimeId=855 +runtimeId=875 minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=108 -runtimeId=856 +runtimeId=876 minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=108 -runtimeId=857 +runtimeId=877 minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=108 -runtimeId=858 +runtimeId=878 minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=108 -runtimeId=859 +runtimeId=879 minecraft:brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=108 -runtimeId=860 +runtimeId=880 minecraft:brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=108 -runtimeId=861 +runtimeId=881 minecraft:brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=108 -runtimeId=862 +runtimeId=882 minecraft:brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=108 -runtimeId=863 +runtimeId=883 + +minecraft:brown_candle;lit=0;candles=0 +blockId=-1 +runtimeId=884 + +minecraft:brown_candle;lit=0;candles=1 +blockId=-1 +runtimeId=885 + +minecraft:brown_candle;lit=0;candles=2 +blockId=-1 +runtimeId=886 + +minecraft:brown_candle;lit=0;candles=3 +blockId=-1 +runtimeId=887 + +minecraft:brown_candle;lit=1;candles=0 +blockId=-1 +runtimeId=888 + +minecraft:brown_candle;lit=1;candles=1 +blockId=-1 +runtimeId=889 + +minecraft:brown_candle;lit=1;candles=2 +blockId=-1 +runtimeId=890 + +minecraft:brown_candle;lit=1;candles=3 +blockId=-1 +runtimeId=891 + +minecraft:brown_candle_cake;lit=0 +blockId=-1 +runtimeId=892 + +minecraft:brown_candle_cake;lit=1 +blockId=-1 +runtimeId=893 minecraft:brown_glazed_terracotta;facing_direction=0 blockId=232 -runtimeId=864 +runtimeId=894 minecraft:brown_glazed_terracotta;facing_direction=1 blockId=232 -runtimeId=865 +runtimeId=895 minecraft:brown_glazed_terracotta;facing_direction=2 blockId=232 -runtimeId=866 +runtimeId=896 minecraft:brown_glazed_terracotta;facing_direction=3 blockId=232 -runtimeId=867 +runtimeId=897 minecraft:brown_glazed_terracotta;facing_direction=4 blockId=232 -runtimeId=868 +runtimeId=898 minecraft:brown_glazed_terracotta;facing_direction=5 blockId=232 -runtimeId=869 +runtimeId=899 minecraft:brown_mushroom blockId=39 -runtimeId=870 +runtimeId=900 minecraft:brown_mushroom_block;huge_mushroom_bits=0 blockId=99 -runtimeId=871 +runtimeId=901 minecraft:brown_mushroom_block;huge_mushroom_bits=1 blockId=99 -runtimeId=872 +runtimeId=902 minecraft:brown_mushroom_block;huge_mushroom_bits=2 blockId=99 -runtimeId=873 +runtimeId=903 minecraft:brown_mushroom_block;huge_mushroom_bits=3 blockId=99 -runtimeId=874 +runtimeId=904 minecraft:brown_mushroom_block;huge_mushroom_bits=4 blockId=99 -runtimeId=875 +runtimeId=905 minecraft:brown_mushroom_block;huge_mushroom_bits=5 blockId=99 -runtimeId=876 +runtimeId=906 minecraft:brown_mushroom_block;huge_mushroom_bits=6 blockId=99 -runtimeId=877 +runtimeId=907 minecraft:brown_mushroom_block;huge_mushroom_bits=7 blockId=99 -runtimeId=878 +runtimeId=908 minecraft:brown_mushroom_block;huge_mushroom_bits=8 blockId=99 -runtimeId=879 +runtimeId=909 minecraft:brown_mushroom_block;huge_mushroom_bits=9 blockId=99 -runtimeId=880 +runtimeId=910 minecraft:brown_mushroom_block;huge_mushroom_bits=10 blockId=99 -runtimeId=881 +runtimeId=911 minecraft:brown_mushroom_block;huge_mushroom_bits=11 blockId=99 -runtimeId=882 +runtimeId=912 minecraft:brown_mushroom_block;huge_mushroom_bits=12 blockId=99 -runtimeId=883 +runtimeId=913 minecraft:brown_mushroom_block;huge_mushroom_bits=13 blockId=99 -runtimeId=884 +runtimeId=914 minecraft:brown_mushroom_block;huge_mushroom_bits=14 blockId=99 -runtimeId=885 +runtimeId=915 minecraft:brown_mushroom_block;huge_mushroom_bits=15 blockId=99 -runtimeId=886 +runtimeId=916 minecraft:bubble_column;drag_down=0 blockId=415 -runtimeId=887 +runtimeId=917 minecraft:bubble_column;drag_down=1 blockId=415 -runtimeId=888 +runtimeId=918 minecraft:budding_amethyst blockId=583 -runtimeId=889 +runtimeId=919 minecraft:cactus;age=0 blockId=81 -runtimeId=890 +runtimeId=920 minecraft:cactus;age=1 blockId=81 -runtimeId=891 +runtimeId=921 minecraft:cactus;age=2 blockId=81 -runtimeId=892 +runtimeId=922 minecraft:cactus;age=3 blockId=81 -runtimeId=893 +runtimeId=923 minecraft:cactus;age=4 blockId=81 -runtimeId=894 +runtimeId=924 minecraft:cactus;age=5 blockId=81 -runtimeId=895 +runtimeId=925 minecraft:cactus;age=6 blockId=81 -runtimeId=896 +runtimeId=926 minecraft:cactus;age=7 blockId=81 -runtimeId=897 +runtimeId=927 minecraft:cactus;age=8 blockId=81 -runtimeId=898 +runtimeId=928 minecraft:cactus;age=9 blockId=81 -runtimeId=899 +runtimeId=929 minecraft:cactus;age=10 blockId=81 -runtimeId=900 +runtimeId=930 minecraft:cactus;age=11 blockId=81 -runtimeId=901 +runtimeId=931 minecraft:cactus;age=12 blockId=81 -runtimeId=902 +runtimeId=932 minecraft:cactus;age=13 blockId=81 -runtimeId=903 +runtimeId=933 minecraft:cactus;age=14 blockId=81 -runtimeId=904 +runtimeId=934 minecraft:cactus;age=15 blockId=81 -runtimeId=905 +runtimeId=935 minecraft:cake;bite_counter=0 blockId=92 -runtimeId=906 +runtimeId=936 minecraft:cake;bite_counter=1 blockId=92 -runtimeId=907 +runtimeId=937 minecraft:cake;bite_counter=2 blockId=92 -runtimeId=908 +runtimeId=938 minecraft:cake;bite_counter=3 blockId=92 -runtimeId=909 +runtimeId=939 minecraft:cake;bite_counter=4 blockId=92 -runtimeId=910 +runtimeId=940 minecraft:cake;bite_counter=5 blockId=92 -runtimeId=911 +runtimeId=941 minecraft:cake;bite_counter=6 blockId=92 -runtimeId=912 +runtimeId=942 minecraft:calcite blockId=581 -runtimeId=913 +runtimeId=943 minecraft:camera blockId=242 -runtimeId=914 +runtimeId=944 minecraft:campfire;extinguished=0;direction=0 blockId=464 -runtimeId=915 +runtimeId=945 minecraft:campfire;extinguished=0;direction=1 blockId=464 -runtimeId=916 +runtimeId=946 minecraft:campfire;extinguished=0;direction=2 blockId=464 -runtimeId=917 +runtimeId=947 minecraft:campfire;extinguished=0;direction=3 blockId=464 -runtimeId=918 +runtimeId=948 minecraft:campfire;extinguished=1;direction=0 blockId=464 -runtimeId=919 +runtimeId=949 minecraft:campfire;extinguished=1;direction=1 blockId=464 -runtimeId=920 +runtimeId=950 minecraft:campfire;extinguished=1;direction=2 blockId=464 -runtimeId=921 +runtimeId=951 minecraft:campfire;extinguished=1;direction=3 blockId=464 -runtimeId=922 +runtimeId=952 + +minecraft:candle;lit=0;candles=0 +blockId=-1 +runtimeId=953 + +minecraft:candle;lit=0;candles=1 +blockId=-1 +runtimeId=954 + +minecraft:candle;lit=0;candles=2 +blockId=-1 +runtimeId=955 + +minecraft:candle;lit=0;candles=3 +blockId=-1 +runtimeId=956 + +minecraft:candle;lit=1;candles=0 +blockId=-1 +runtimeId=957 + +minecraft:candle;lit=1;candles=1 +blockId=-1 +runtimeId=958 + +minecraft:candle;lit=1;candles=2 +blockId=-1 +runtimeId=959 + +minecraft:candle;lit=1;candles=3 +blockId=-1 +runtimeId=960 + +minecraft:candle_cake;lit=0 +blockId=-1 +runtimeId=961 + +minecraft:candle_cake;lit=1 +blockId=-1 +runtimeId=962 minecraft:carpet;color=black blockId=171 -runtimeId=938 +runtimeId=978 minecraft:carpet;color=blue blockId=171 -runtimeId=934 +runtimeId=974 minecraft:carpet;color=brown blockId=171 -runtimeId=935 +runtimeId=975 minecraft:carpet;color=cyan blockId=171 -runtimeId=932 +runtimeId=972 minecraft:carpet;color=gray blockId=171 -runtimeId=930 +runtimeId=970 minecraft:carpet;color=green blockId=171 -runtimeId=936 +runtimeId=976 minecraft:carpet;color=light_blue blockId=171 -runtimeId=926 +runtimeId=966 minecraft:carpet;color=lime blockId=171 -runtimeId=928 +runtimeId=968 minecraft:carpet;color=magenta blockId=171 -runtimeId=925 +runtimeId=965 minecraft:carpet;color=orange blockId=171 -runtimeId=924 +runtimeId=964 minecraft:carpet;color=pink blockId=171 -runtimeId=929 +runtimeId=969 minecraft:carpet;color=purple blockId=171 -runtimeId=933 +runtimeId=973 minecraft:carpet;color=red blockId=171 -runtimeId=937 +runtimeId=977 minecraft:carpet;color=silver blockId=171 -runtimeId=931 +runtimeId=971 minecraft:carpet;color=white blockId=171 -runtimeId=923 +runtimeId=963 minecraft:carpet;color=yellow blockId=171 -runtimeId=927 +runtimeId=967 minecraft:carrots;growth=0 blockId=141 -runtimeId=939 +runtimeId=979 minecraft:carrots;growth=1 blockId=141 -runtimeId=940 +runtimeId=980 minecraft:carrots;growth=2 blockId=141 -runtimeId=941 +runtimeId=981 minecraft:carrots;growth=3 blockId=141 -runtimeId=942 +runtimeId=982 minecraft:carrots;growth=4 blockId=141 -runtimeId=943 +runtimeId=983 minecraft:carrots;growth=5 blockId=141 -runtimeId=944 +runtimeId=984 minecraft:carrots;growth=6 blockId=141 -runtimeId=945 +runtimeId=985 minecraft:carrots;growth=7 blockId=141 -runtimeId=946 +runtimeId=986 minecraft:cartography_table blockId=455 -runtimeId=947 +runtimeId=987 minecraft:carved_pumpkin;direction=0 blockId=410 -runtimeId=948 +runtimeId=988 minecraft:carved_pumpkin;direction=1 blockId=410 -runtimeId=949 +runtimeId=989 minecraft:carved_pumpkin;direction=2 blockId=410 -runtimeId=950 +runtimeId=990 minecraft:carved_pumpkin;direction=3 blockId=410 -runtimeId=951 +runtimeId=991 minecraft:cauldron;fill_level=0;cauldron_liquid=lava blockId=118 -runtimeId=959 +runtimeId=999 minecraft:cauldron;fill_level=0;cauldron_liquid=powder_snow blockId=118 -runtimeId=966 +runtimeId=1006 minecraft:cauldron;fill_level=0;cauldron_liquid=water blockId=118 -runtimeId=952 +runtimeId=992 minecraft:cauldron;fill_level=1;cauldron_liquid=lava blockId=118 -runtimeId=960 +runtimeId=1000 minecraft:cauldron;fill_level=1;cauldron_liquid=powder_snow blockId=118 -runtimeId=967 +runtimeId=1007 minecraft:cauldron;fill_level=1;cauldron_liquid=water blockId=118 -runtimeId=953 +runtimeId=993 minecraft:cauldron;fill_level=2;cauldron_liquid=lava blockId=118 -runtimeId=961 +runtimeId=1001 minecraft:cauldron;fill_level=2;cauldron_liquid=powder_snow blockId=118 -runtimeId=968 +runtimeId=1008 minecraft:cauldron;fill_level=2;cauldron_liquid=water blockId=118 -runtimeId=954 +runtimeId=994 minecraft:cauldron;fill_level=3;cauldron_liquid=lava blockId=118 -runtimeId=962 +runtimeId=1002 minecraft:cauldron;fill_level=3;cauldron_liquid=powder_snow blockId=118 -runtimeId=969 +runtimeId=1009 minecraft:cauldron;fill_level=3;cauldron_liquid=water blockId=118 -runtimeId=955 +runtimeId=995 minecraft:cauldron;fill_level=4;cauldron_liquid=lava blockId=118 -runtimeId=963 +runtimeId=1003 minecraft:cauldron;fill_level=4;cauldron_liquid=powder_snow blockId=118 -runtimeId=970 +runtimeId=1010 minecraft:cauldron;fill_level=4;cauldron_liquid=water blockId=118 -runtimeId=956 +runtimeId=996 minecraft:cauldron;fill_level=5;cauldron_liquid=lava blockId=118 -runtimeId=964 +runtimeId=1004 minecraft:cauldron;fill_level=5;cauldron_liquid=powder_snow blockId=118 -runtimeId=971 +runtimeId=1011 minecraft:cauldron;fill_level=5;cauldron_liquid=water blockId=118 -runtimeId=957 +runtimeId=997 minecraft:cauldron;fill_level=6;cauldron_liquid=lava blockId=118 -runtimeId=965 +runtimeId=1005 minecraft:cauldron;fill_level=6;cauldron_liquid=powder_snow blockId=118 -runtimeId=972 +runtimeId=1012 minecraft:cauldron;fill_level=6;cauldron_liquid=water blockId=118 -runtimeId=958 +runtimeId=998 minecraft:cave_vines;growing_plant_age=0 blockId=577 -runtimeId=973 +runtimeId=1013 minecraft:cave_vines;growing_plant_age=1 blockId=577 -runtimeId=974 +runtimeId=1014 minecraft:cave_vines;growing_plant_age=2 blockId=577 -runtimeId=975 +runtimeId=1015 minecraft:cave_vines;growing_plant_age=3 blockId=577 -runtimeId=976 +runtimeId=1016 minecraft:cave_vines;growing_plant_age=4 blockId=577 -runtimeId=977 +runtimeId=1017 minecraft:cave_vines;growing_plant_age=5 blockId=577 -runtimeId=978 +runtimeId=1018 minecraft:cave_vines;growing_plant_age=6 blockId=577 -runtimeId=979 +runtimeId=1019 minecraft:cave_vines;growing_plant_age=7 blockId=577 -runtimeId=980 +runtimeId=1020 minecraft:cave_vines;growing_plant_age=8 blockId=577 -runtimeId=981 +runtimeId=1021 minecraft:cave_vines;growing_plant_age=9 blockId=577 -runtimeId=982 +runtimeId=1022 minecraft:cave_vines;growing_plant_age=10 blockId=577 -runtimeId=983 +runtimeId=1023 minecraft:cave_vines;growing_plant_age=11 blockId=577 -runtimeId=984 +runtimeId=1024 minecraft:cave_vines;growing_plant_age=12 blockId=577 -runtimeId=985 +runtimeId=1025 minecraft:cave_vines;growing_plant_age=13 blockId=577 -runtimeId=986 +runtimeId=1026 minecraft:cave_vines;growing_plant_age=14 blockId=577 -runtimeId=987 +runtimeId=1027 minecraft:cave_vines;growing_plant_age=15 blockId=577 -runtimeId=988 +runtimeId=1028 minecraft:cave_vines;growing_plant_age=16 blockId=577 -runtimeId=989 +runtimeId=1029 minecraft:cave_vines;growing_plant_age=17 blockId=577 -runtimeId=990 +runtimeId=1030 minecraft:cave_vines;growing_plant_age=18 blockId=577 -runtimeId=991 +runtimeId=1031 minecraft:cave_vines;growing_plant_age=19 blockId=577 -runtimeId=992 +runtimeId=1032 minecraft:cave_vines;growing_plant_age=20 blockId=577 -runtimeId=993 +runtimeId=1033 minecraft:cave_vines;growing_plant_age=21 blockId=577 -runtimeId=994 +runtimeId=1034 minecraft:cave_vines;growing_plant_age=22 blockId=577 -runtimeId=995 +runtimeId=1035 minecraft:cave_vines;growing_plant_age=23 blockId=577 -runtimeId=996 +runtimeId=1036 minecraft:cave_vines;growing_plant_age=24 blockId=577 -runtimeId=997 +runtimeId=1037 minecraft:cave_vines;growing_plant_age=25 blockId=577 -runtimeId=998 +runtimeId=1038 minecraft:cave_vines_body_with_berries;growing_plant_age=0 blockId=630 -runtimeId=999 +runtimeId=1039 minecraft:cave_vines_body_with_berries;growing_plant_age=1 blockId=630 -runtimeId=1000 +runtimeId=1040 minecraft:cave_vines_body_with_berries;growing_plant_age=2 blockId=630 -runtimeId=1001 +runtimeId=1041 minecraft:cave_vines_body_with_berries;growing_plant_age=3 blockId=630 -runtimeId=1002 +runtimeId=1042 minecraft:cave_vines_body_with_berries;growing_plant_age=4 blockId=630 -runtimeId=1003 +runtimeId=1043 minecraft:cave_vines_body_with_berries;growing_plant_age=5 blockId=630 -runtimeId=1004 +runtimeId=1044 minecraft:cave_vines_body_with_berries;growing_plant_age=6 blockId=630 -runtimeId=1005 +runtimeId=1045 minecraft:cave_vines_body_with_berries;growing_plant_age=7 blockId=630 -runtimeId=1006 +runtimeId=1046 minecraft:cave_vines_body_with_berries;growing_plant_age=8 blockId=630 -runtimeId=1007 +runtimeId=1047 minecraft:cave_vines_body_with_berries;growing_plant_age=9 blockId=630 -runtimeId=1008 +runtimeId=1048 minecraft:cave_vines_body_with_berries;growing_plant_age=10 blockId=630 -runtimeId=1009 +runtimeId=1049 minecraft:cave_vines_body_with_berries;growing_plant_age=11 blockId=630 -runtimeId=1010 +runtimeId=1050 minecraft:cave_vines_body_with_berries;growing_plant_age=12 blockId=630 -runtimeId=1011 +runtimeId=1051 minecraft:cave_vines_body_with_berries;growing_plant_age=13 blockId=630 -runtimeId=1012 +runtimeId=1052 minecraft:cave_vines_body_with_berries;growing_plant_age=14 blockId=630 -runtimeId=1013 +runtimeId=1053 minecraft:cave_vines_body_with_berries;growing_plant_age=15 blockId=630 -runtimeId=1014 +runtimeId=1054 minecraft:cave_vines_body_with_berries;growing_plant_age=16 blockId=630 -runtimeId=1015 +runtimeId=1055 minecraft:cave_vines_body_with_berries;growing_plant_age=17 blockId=630 -runtimeId=1016 +runtimeId=1056 minecraft:cave_vines_body_with_berries;growing_plant_age=18 blockId=630 -runtimeId=1017 +runtimeId=1057 minecraft:cave_vines_body_with_berries;growing_plant_age=19 blockId=630 -runtimeId=1018 +runtimeId=1058 minecraft:cave_vines_body_with_berries;growing_plant_age=20 blockId=630 -runtimeId=1019 +runtimeId=1059 minecraft:cave_vines_body_with_berries;growing_plant_age=21 blockId=630 -runtimeId=1020 +runtimeId=1060 minecraft:cave_vines_body_with_berries;growing_plant_age=22 blockId=630 -runtimeId=1021 +runtimeId=1061 minecraft:cave_vines_body_with_berries;growing_plant_age=23 blockId=630 -runtimeId=1022 +runtimeId=1062 minecraft:cave_vines_body_with_berries;growing_plant_age=24 blockId=630 -runtimeId=1023 +runtimeId=1063 minecraft:cave_vines_body_with_berries;growing_plant_age=25 blockId=630 -runtimeId=1024 +runtimeId=1064 minecraft:cave_vines_head_with_berries;growing_plant_age=0 blockId=631 -runtimeId=1025 +runtimeId=1065 minecraft:cave_vines_head_with_berries;growing_plant_age=1 blockId=631 -runtimeId=1026 +runtimeId=1066 minecraft:cave_vines_head_with_berries;growing_plant_age=2 blockId=631 -runtimeId=1027 +runtimeId=1067 minecraft:cave_vines_head_with_berries;growing_plant_age=3 blockId=631 -runtimeId=1028 +runtimeId=1068 minecraft:cave_vines_head_with_berries;growing_plant_age=4 blockId=631 -runtimeId=1029 +runtimeId=1069 minecraft:cave_vines_head_with_berries;growing_plant_age=5 blockId=631 -runtimeId=1030 +runtimeId=1070 minecraft:cave_vines_head_with_berries;growing_plant_age=6 blockId=631 -runtimeId=1031 +runtimeId=1071 minecraft:cave_vines_head_with_berries;growing_plant_age=7 blockId=631 -runtimeId=1032 +runtimeId=1072 minecraft:cave_vines_head_with_berries;growing_plant_age=8 blockId=631 -runtimeId=1033 +runtimeId=1073 minecraft:cave_vines_head_with_berries;growing_plant_age=9 blockId=631 -runtimeId=1034 +runtimeId=1074 minecraft:cave_vines_head_with_berries;growing_plant_age=10 blockId=631 -runtimeId=1035 +runtimeId=1075 minecraft:cave_vines_head_with_berries;growing_plant_age=11 blockId=631 -runtimeId=1036 +runtimeId=1076 minecraft:cave_vines_head_with_berries;growing_plant_age=12 blockId=631 -runtimeId=1037 +runtimeId=1077 minecraft:cave_vines_head_with_berries;growing_plant_age=13 blockId=631 -runtimeId=1038 +runtimeId=1078 minecraft:cave_vines_head_with_berries;growing_plant_age=14 blockId=631 -runtimeId=1039 +runtimeId=1079 minecraft:cave_vines_head_with_berries;growing_plant_age=15 blockId=631 -runtimeId=1040 +runtimeId=1080 minecraft:cave_vines_head_with_berries;growing_plant_age=16 blockId=631 -runtimeId=1041 +runtimeId=1081 minecraft:cave_vines_head_with_berries;growing_plant_age=17 blockId=631 -runtimeId=1042 +runtimeId=1082 minecraft:cave_vines_head_with_berries;growing_plant_age=18 blockId=631 -runtimeId=1043 +runtimeId=1083 minecraft:cave_vines_head_with_berries;growing_plant_age=19 blockId=631 -runtimeId=1044 +runtimeId=1084 minecraft:cave_vines_head_with_berries;growing_plant_age=20 blockId=631 -runtimeId=1045 +runtimeId=1085 minecraft:cave_vines_head_with_berries;growing_plant_age=21 blockId=631 -runtimeId=1046 +runtimeId=1086 minecraft:cave_vines_head_with_berries;growing_plant_age=22 blockId=631 -runtimeId=1047 +runtimeId=1087 minecraft:cave_vines_head_with_berries;growing_plant_age=23 blockId=631 -runtimeId=1048 +runtimeId=1088 minecraft:cave_vines_head_with_berries;growing_plant_age=24 blockId=631 -runtimeId=1049 +runtimeId=1089 minecraft:cave_vines_head_with_berries;growing_plant_age=25 blockId=631 -runtimeId=1050 +runtimeId=1090 minecraft:chain;pillar_axis=x blockId=541 -runtimeId=1052 +runtimeId=1092 minecraft:chain;pillar_axis=y blockId=541 -runtimeId=1051 +runtimeId=1091 minecraft:chain;pillar_axis=z blockId=541 -runtimeId=1053 +runtimeId=1093 minecraft:chain_command_block;conditional_bit=0;facing_direction=0 blockId=189 -runtimeId=1054 +runtimeId=1094 minecraft:chain_command_block;conditional_bit=0;facing_direction=1 blockId=189 -runtimeId=1055 +runtimeId=1095 minecraft:chain_command_block;conditional_bit=0;facing_direction=2 blockId=189 -runtimeId=1056 +runtimeId=1096 minecraft:chain_command_block;conditional_bit=0;facing_direction=3 blockId=189 -runtimeId=1057 +runtimeId=1097 minecraft:chain_command_block;conditional_bit=0;facing_direction=4 blockId=189 -runtimeId=1058 +runtimeId=1098 minecraft:chain_command_block;conditional_bit=0;facing_direction=5 blockId=189 -runtimeId=1059 +runtimeId=1099 minecraft:chain_command_block;conditional_bit=1;facing_direction=0 blockId=189 -runtimeId=1060 +runtimeId=1100 minecraft:chain_command_block;conditional_bit=1;facing_direction=1 blockId=189 -runtimeId=1061 +runtimeId=1101 minecraft:chain_command_block;conditional_bit=1;facing_direction=2 blockId=189 -runtimeId=1062 +runtimeId=1102 minecraft:chain_command_block;conditional_bit=1;facing_direction=3 blockId=189 -runtimeId=1063 +runtimeId=1103 minecraft:chain_command_block;conditional_bit=1;facing_direction=4 blockId=189 -runtimeId=1064 +runtimeId=1104 minecraft:chain_command_block;conditional_bit=1;facing_direction=5 blockId=189 -runtimeId=1065 +runtimeId=1105 minecraft:chemical_heat blockId=192 -runtimeId=1066 +runtimeId=1106 minecraft:chemistry_table;chemistry_table_type=compound_creator;direction=0 blockId=238 -runtimeId=1067 +runtimeId=1107 minecraft:chemistry_table;chemistry_table_type=compound_creator;direction=1 blockId=238 -runtimeId=1068 +runtimeId=1108 minecraft:chemistry_table;chemistry_table_type=compound_creator;direction=2 blockId=238 -runtimeId=1069 +runtimeId=1109 minecraft:chemistry_table;chemistry_table_type=compound_creator;direction=3 blockId=238 -runtimeId=1070 +runtimeId=1110 minecraft:chemistry_table;chemistry_table_type=element_constructor;direction=0 blockId=238 -runtimeId=1075 +runtimeId=1115 minecraft:chemistry_table;chemistry_table_type=element_constructor;direction=1 blockId=238 -runtimeId=1076 +runtimeId=1116 minecraft:chemistry_table;chemistry_table_type=element_constructor;direction=2 blockId=238 -runtimeId=1077 +runtimeId=1117 minecraft:chemistry_table;chemistry_table_type=element_constructor;direction=3 blockId=238 -runtimeId=1078 +runtimeId=1118 minecraft:chemistry_table;chemistry_table_type=lab_table;direction=0 blockId=238 -runtimeId=1079 +runtimeId=1119 minecraft:chemistry_table;chemistry_table_type=lab_table;direction=1 blockId=238 -runtimeId=1080 +runtimeId=1120 minecraft:chemistry_table;chemistry_table_type=lab_table;direction=2 blockId=238 -runtimeId=1081 +runtimeId=1121 minecraft:chemistry_table;chemistry_table_type=lab_table;direction=3 blockId=238 -runtimeId=1082 +runtimeId=1122 minecraft:chemistry_table;chemistry_table_type=material_reducer;direction=0 blockId=238 -runtimeId=1071 +runtimeId=1111 minecraft:chemistry_table;chemistry_table_type=material_reducer;direction=1 blockId=238 -runtimeId=1072 +runtimeId=1112 minecraft:chemistry_table;chemistry_table_type=material_reducer;direction=2 blockId=238 -runtimeId=1073 +runtimeId=1113 minecraft:chemistry_table;chemistry_table_type=material_reducer;direction=3 blockId=238 -runtimeId=1074 +runtimeId=1114 minecraft:chest;facing_direction=0 blockId=54 -runtimeId=1083 +runtimeId=1123 minecraft:chest;facing_direction=1 blockId=54 -runtimeId=1084 +runtimeId=1124 minecraft:chest;facing_direction=2 blockId=54 -runtimeId=1085 +runtimeId=1125 minecraft:chest;facing_direction=3 blockId=54 -runtimeId=1086 +runtimeId=1126 minecraft:chest;facing_direction=4 blockId=54 -runtimeId=1087 +runtimeId=1127 minecraft:chest;facing_direction=5 blockId=54 -runtimeId=1088 +runtimeId=1128 minecraft:chiseled_deepslate blockId=650 -runtimeId=1089 +runtimeId=1129 minecraft:chiseled_nether_bricks blockId=557 -runtimeId=1090 +runtimeId=1130 minecraft:chiseled_polished_blackstone blockId=534 -runtimeId=1091 +runtimeId=1131 minecraft:chorus_flower;age=0 blockId=200 -runtimeId=1092 +runtimeId=1132 minecraft:chorus_flower;age=1 blockId=200 -runtimeId=1093 +runtimeId=1133 minecraft:chorus_flower;age=2 blockId=200 -runtimeId=1094 +runtimeId=1134 minecraft:chorus_flower;age=3 blockId=200 -runtimeId=1095 +runtimeId=1135 minecraft:chorus_flower;age=4 blockId=200 -runtimeId=1096 +runtimeId=1136 minecraft:chorus_flower;age=5 blockId=200 -runtimeId=1097 +runtimeId=1137 minecraft:chorus_plant blockId=240 -runtimeId=1098 +runtimeId=1138 minecraft:clay blockId=82 -runtimeId=1099 +runtimeId=1139 minecraft:coal_block blockId=173 -runtimeId=1100 +runtimeId=1140 minecraft:coal_ore blockId=16 -runtimeId=1101 +runtimeId=1141 minecraft:cobbled_deepslate blockId=634 -runtimeId=1102 +runtimeId=1142 minecraft:cobbled_deepslate_double_slab;top_slot_bit=0 blockId=651 -runtimeId=1103 +runtimeId=1143 minecraft:cobbled_deepslate_double_slab;top_slot_bit=1 blockId=651 -runtimeId=1104 +runtimeId=1144 minecraft:cobbled_deepslate_slab;top_slot_bit=0 blockId=635 -runtimeId=1105 +runtimeId=1145 minecraft:cobbled_deepslate_slab;top_slot_bit=1 blockId=635 -runtimeId=1106 +runtimeId=1146 minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=0 blockId=636 -runtimeId=1107 +runtimeId=1147 minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=1 blockId=636 -runtimeId=1108 +runtimeId=1148 minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=2 blockId=636 -runtimeId=1109 +runtimeId=1149 minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=3 blockId=636 -runtimeId=1110 +runtimeId=1150 minecraft:cobbled_deepslate_stairs;upside_down_bit=1;weirdo_direction=0 blockId=636 -runtimeId=1111 +runtimeId=1151 minecraft:cobbled_deepslate_stairs;upside_down_bit=1;weirdo_direction=1 blockId=636 -runtimeId=1112 +runtimeId=1152 minecraft:cobbled_deepslate_stairs;upside_down_bit=1;weirdo_direction=2 blockId=636 -runtimeId=1113 +runtimeId=1153 minecraft:cobbled_deepslate_stairs;upside_down_bit=1;weirdo_direction=3 blockId=636 -runtimeId=1114 +runtimeId=1154 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1115 +runtimeId=1155 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1117 +runtimeId=1157 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1119 +runtimeId=1159 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1169 +runtimeId=1209 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1171 +runtimeId=1211 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1173 +runtimeId=1213 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1223 +runtimeId=1263 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1225 +runtimeId=1265 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1227 +runtimeId=1267 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1133 +runtimeId=1173 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1135 +runtimeId=1175 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1137 +runtimeId=1177 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1187 +runtimeId=1227 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1189 +runtimeId=1229 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1191 +runtimeId=1231 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1241 +runtimeId=1281 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1243 +runtimeId=1283 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1245 +runtimeId=1285 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1151 +runtimeId=1191 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1153 +runtimeId=1193 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1155 +runtimeId=1195 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1205 +runtimeId=1245 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1207 +runtimeId=1247 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1209 +runtimeId=1249 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1259 +runtimeId=1299 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1261 +runtimeId=1301 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1263 +runtimeId=1303 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1116 +runtimeId=1156 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1118 +runtimeId=1158 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1120 +runtimeId=1160 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1170 +runtimeId=1210 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1172 +runtimeId=1212 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1174 +runtimeId=1214 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1224 +runtimeId=1264 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1226 +runtimeId=1266 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1228 +runtimeId=1268 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1134 +runtimeId=1174 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1136 +runtimeId=1176 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1138 +runtimeId=1178 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1188 +runtimeId=1228 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1190 +runtimeId=1230 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1192 +runtimeId=1232 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1242 +runtimeId=1282 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1244 +runtimeId=1284 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1246 +runtimeId=1286 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1152 +runtimeId=1192 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1154 +runtimeId=1194 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1156 +runtimeId=1196 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1206 +runtimeId=1246 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1208 +runtimeId=1248 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1210 +runtimeId=1250 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1260 +runtimeId=1300 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1262 +runtimeId=1302 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1264 +runtimeId=1304 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1121 +runtimeId=1161 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1123 +runtimeId=1163 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1125 +runtimeId=1165 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1175 +runtimeId=1215 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1177 +runtimeId=1217 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1179 +runtimeId=1219 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1229 +runtimeId=1269 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1231 +runtimeId=1271 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1233 +runtimeId=1273 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1139 +runtimeId=1179 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1141 +runtimeId=1181 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1143 +runtimeId=1183 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1193 +runtimeId=1233 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1195 +runtimeId=1235 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1197 +runtimeId=1237 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1247 +runtimeId=1287 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1249 +runtimeId=1289 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1251 +runtimeId=1291 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1157 +runtimeId=1197 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1159 +runtimeId=1199 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1161 +runtimeId=1201 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1211 +runtimeId=1251 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1213 +runtimeId=1253 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1215 +runtimeId=1255 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1265 +runtimeId=1305 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1267 +runtimeId=1307 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1269 +runtimeId=1309 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1122 +runtimeId=1162 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1124 +runtimeId=1164 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1126 +runtimeId=1166 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1176 +runtimeId=1216 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1178 +runtimeId=1218 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1180 +runtimeId=1220 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1230 +runtimeId=1270 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1232 +runtimeId=1272 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1234 +runtimeId=1274 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1140 +runtimeId=1180 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1142 +runtimeId=1182 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1144 +runtimeId=1184 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1194 +runtimeId=1234 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1196 +runtimeId=1236 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1198 +runtimeId=1238 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1248 +runtimeId=1288 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1250 +runtimeId=1290 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1252 +runtimeId=1292 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1158 +runtimeId=1198 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1160 +runtimeId=1200 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1162 +runtimeId=1202 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1212 +runtimeId=1252 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1214 +runtimeId=1254 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1216 +runtimeId=1256 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1266 +runtimeId=1306 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1268 +runtimeId=1308 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1270 +runtimeId=1310 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1127 +runtimeId=1167 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1129 +runtimeId=1169 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1131 +runtimeId=1171 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1181 +runtimeId=1221 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1183 +runtimeId=1223 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1185 +runtimeId=1225 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1235 +runtimeId=1275 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1237 +runtimeId=1277 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1239 +runtimeId=1279 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1145 +runtimeId=1185 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1147 +runtimeId=1187 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1149 +runtimeId=1189 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1199 +runtimeId=1239 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1201 +runtimeId=1241 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1203 +runtimeId=1243 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1253 +runtimeId=1293 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1255 +runtimeId=1295 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1257 +runtimeId=1297 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1163 +runtimeId=1203 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1165 +runtimeId=1205 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1167 +runtimeId=1207 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1217 +runtimeId=1257 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1219 +runtimeId=1259 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1221 +runtimeId=1261 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1271 +runtimeId=1311 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1273 +runtimeId=1313 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1275 +runtimeId=1315 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1128 +runtimeId=1168 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1130 +runtimeId=1170 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1132 +runtimeId=1172 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1182 +runtimeId=1222 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1184 +runtimeId=1224 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1186 +runtimeId=1226 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1236 +runtimeId=1276 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1238 +runtimeId=1278 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1240 +runtimeId=1280 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1146 +runtimeId=1186 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1148 +runtimeId=1188 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1150 +runtimeId=1190 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1200 +runtimeId=1240 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1202 +runtimeId=1242 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1204 +runtimeId=1244 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1254 +runtimeId=1294 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1256 +runtimeId=1296 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1258 +runtimeId=1298 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1164 +runtimeId=1204 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1166 +runtimeId=1206 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1168 +runtimeId=1208 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1218 +runtimeId=1258 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1220 +runtimeId=1260 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1222 +runtimeId=1262 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1272 +runtimeId=1312 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1274 +runtimeId=1314 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1276 +runtimeId=1316 minecraft:cobblestone blockId=4 -runtimeId=1277 +runtimeId=1317 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1282 +runtimeId=1322 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1284 +runtimeId=1324 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1278 +runtimeId=1318 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1281 +runtimeId=1321 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1288 +runtimeId=1328 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1280 +runtimeId=1320 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1279 +runtimeId=1319 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1286 +runtimeId=1326 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1287 +runtimeId=1327 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1289 +runtimeId=1329 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1291 +runtimeId=1331 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1290 +runtimeId=1330 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1283 +runtimeId=1323 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1285 +runtimeId=1325 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1310 +runtimeId=1350 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1312 +runtimeId=1352 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1306 +runtimeId=1346 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1309 +runtimeId=1349 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1316 +runtimeId=1356 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1308 +runtimeId=1348 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1307 +runtimeId=1347 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1314 +runtimeId=1354 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1315 +runtimeId=1355 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1317 +runtimeId=1357 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1319 +runtimeId=1359 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1318 +runtimeId=1358 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1311 +runtimeId=1351 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1313 +runtimeId=1353 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1338 +runtimeId=1378 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1340 +runtimeId=1380 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1334 +runtimeId=1374 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1337 +runtimeId=1377 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1344 +runtimeId=1384 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1336 +runtimeId=1376 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1335 +runtimeId=1375 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1342 +runtimeId=1382 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1343 +runtimeId=1383 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1345 +runtimeId=1385 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1347 +runtimeId=1387 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1346 +runtimeId=1386 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1339 +runtimeId=1379 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1341 +runtimeId=1381 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2038 +runtimeId=2078 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2040 +runtimeId=2080 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2034 +runtimeId=2074 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2037 +runtimeId=2077 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2044 +runtimeId=2084 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2036 +runtimeId=2076 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2035 +runtimeId=2075 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2042 +runtimeId=2082 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2043 +runtimeId=2083 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2045 +runtimeId=2085 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2047 +runtimeId=2087 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2046 +runtimeId=2086 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2039 +runtimeId=2079 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2041 +runtimeId=2081 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2066 +runtimeId=2106 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2068 +runtimeId=2108 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2062 +runtimeId=2102 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2065 +runtimeId=2105 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2072 +runtimeId=2112 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2064 +runtimeId=2104 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2063 +runtimeId=2103 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2070 +runtimeId=2110 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2071 +runtimeId=2111 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2073 +runtimeId=2113 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2075 +runtimeId=2115 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2074 +runtimeId=2114 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2067 +runtimeId=2107 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2069 +runtimeId=2109 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2094 +runtimeId=2134 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2096 +runtimeId=2136 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2090 +runtimeId=2130 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2093 +runtimeId=2133 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2100 +runtimeId=2140 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2092 +runtimeId=2132 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2091 +runtimeId=2131 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2098 +runtimeId=2138 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2099 +runtimeId=2139 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2101 +runtimeId=2141 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2103 +runtimeId=2143 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2102 +runtimeId=2142 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2095 +runtimeId=2135 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2097 +runtimeId=2137 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2794 +runtimeId=2834 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2796 +runtimeId=2836 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2790 +runtimeId=2830 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2793 +runtimeId=2833 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2800 +runtimeId=2840 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2792 +runtimeId=2832 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2791 +runtimeId=2831 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2798 +runtimeId=2838 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2799 +runtimeId=2839 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2801 +runtimeId=2841 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2803 +runtimeId=2843 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2802 +runtimeId=2842 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2795 +runtimeId=2835 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2797 +runtimeId=2837 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2822 +runtimeId=2862 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2824 +runtimeId=2864 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2818 +runtimeId=2858 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2821 +runtimeId=2861 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2828 +runtimeId=2868 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2820 +runtimeId=2860 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2819 +runtimeId=2859 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2826 +runtimeId=2866 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2827 +runtimeId=2867 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2829 +runtimeId=2869 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2831 +runtimeId=2871 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2830 +runtimeId=2870 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2823 +runtimeId=2863 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2825 +runtimeId=2865 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2850 +runtimeId=2890 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2852 +runtimeId=2892 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2846 +runtimeId=2886 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2849 +runtimeId=2889 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2856 +runtimeId=2896 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2848 +runtimeId=2888 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2847 +runtimeId=2887 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2854 +runtimeId=2894 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2855 +runtimeId=2895 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2857 +runtimeId=2897 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2859 +runtimeId=2899 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2858 +runtimeId=2898 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2851 +runtimeId=2891 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2853 +runtimeId=2893 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1534 +runtimeId=1574 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1536 +runtimeId=1576 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1530 +runtimeId=1570 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1533 +runtimeId=1573 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1540 +runtimeId=1580 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1532 +runtimeId=1572 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1531 +runtimeId=1571 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1538 +runtimeId=1578 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1539 +runtimeId=1579 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1541 +runtimeId=1581 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1543 +runtimeId=1583 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1542 +runtimeId=1582 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1535 +runtimeId=1575 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1537 +runtimeId=1577 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1562 +runtimeId=1602 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1564 +runtimeId=1604 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1558 +runtimeId=1598 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1561 +runtimeId=1601 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1568 +runtimeId=1608 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1560 +runtimeId=1600 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1559 +runtimeId=1599 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1566 +runtimeId=1606 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1567 +runtimeId=1607 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1569 +runtimeId=1609 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1571 +runtimeId=1611 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1570 +runtimeId=1610 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1563 +runtimeId=1603 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1565 +runtimeId=1605 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1590 +runtimeId=1630 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1592 +runtimeId=1632 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1586 +runtimeId=1626 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1589 +runtimeId=1629 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1596 +runtimeId=1636 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1588 +runtimeId=1628 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1587 +runtimeId=1627 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1594 +runtimeId=1634 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1595 +runtimeId=1635 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1597 +runtimeId=1637 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1599 +runtimeId=1639 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1598 +runtimeId=1638 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1591 +runtimeId=1631 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1593 +runtimeId=1633 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2290 +runtimeId=2330 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2292 +runtimeId=2332 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2286 +runtimeId=2326 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2289 +runtimeId=2329 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2296 +runtimeId=2336 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2288 +runtimeId=2328 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2287 +runtimeId=2327 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2294 +runtimeId=2334 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2295 +runtimeId=2335 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2297 +runtimeId=2337 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2299 +runtimeId=2339 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2298 +runtimeId=2338 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2291 +runtimeId=2331 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2293 +runtimeId=2333 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2318 +runtimeId=2358 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2320 +runtimeId=2360 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2314 +runtimeId=2354 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2317 +runtimeId=2357 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2324 +runtimeId=2364 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2316 +runtimeId=2356 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2315 +runtimeId=2355 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2322 +runtimeId=2362 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2323 +runtimeId=2363 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2325 +runtimeId=2365 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2327 +runtimeId=2367 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2326 +runtimeId=2366 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2319 +runtimeId=2359 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2321 +runtimeId=2361 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2346 +runtimeId=2386 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2348 +runtimeId=2388 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2342 +runtimeId=2382 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2345 +runtimeId=2385 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2352 +runtimeId=2392 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2344 +runtimeId=2384 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2343 +runtimeId=2383 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2350 +runtimeId=2390 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2351 +runtimeId=2391 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2353 +runtimeId=2393 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2355 +runtimeId=2395 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2354 +runtimeId=2394 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2347 +runtimeId=2387 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2349 +runtimeId=2389 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3046 +runtimeId=3086 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3048 +runtimeId=3088 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3042 +runtimeId=3082 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3045 +runtimeId=3085 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3052 +runtimeId=3092 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3044 +runtimeId=3084 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3043 +runtimeId=3083 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3050 +runtimeId=3090 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3051 +runtimeId=3091 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3053 +runtimeId=3093 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3055 +runtimeId=3095 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3054 +runtimeId=3094 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3047 +runtimeId=3087 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3049 +runtimeId=3089 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3074 +runtimeId=3114 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3076 +runtimeId=3116 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3070 +runtimeId=3110 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3073 +runtimeId=3113 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3080 +runtimeId=3120 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3072 +runtimeId=3112 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3071 +runtimeId=3111 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3078 +runtimeId=3118 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3079 +runtimeId=3119 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3081 +runtimeId=3121 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3083 +runtimeId=3123 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3082 +runtimeId=3122 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3075 +runtimeId=3115 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3077 +runtimeId=3117 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3102 +runtimeId=3142 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3104 +runtimeId=3144 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3098 +runtimeId=3138 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3101 +runtimeId=3141 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3108 +runtimeId=3148 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3100 +runtimeId=3140 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3099 +runtimeId=3139 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3106 +runtimeId=3146 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3107 +runtimeId=3147 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3109 +runtimeId=3149 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3111 +runtimeId=3151 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3110 +runtimeId=3150 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3103 +runtimeId=3143 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3105 +runtimeId=3145 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1786 +runtimeId=1826 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1788 +runtimeId=1828 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1782 +runtimeId=1822 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1785 +runtimeId=1825 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1792 +runtimeId=1832 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1784 +runtimeId=1824 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1783 +runtimeId=1823 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1790 +runtimeId=1830 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1791 +runtimeId=1831 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1793 +runtimeId=1833 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1795 +runtimeId=1835 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1794 +runtimeId=1834 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1787 +runtimeId=1827 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1789 +runtimeId=1829 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1814 +runtimeId=1854 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1816 +runtimeId=1856 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1810 +runtimeId=1850 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1813 +runtimeId=1853 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1820 +runtimeId=1860 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1812 +runtimeId=1852 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1811 +runtimeId=1851 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1818 +runtimeId=1858 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1819 +runtimeId=1859 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1821 +runtimeId=1861 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1823 +runtimeId=1863 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1822 +runtimeId=1862 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1815 +runtimeId=1855 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1817 +runtimeId=1857 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1842 +runtimeId=1882 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1844 +runtimeId=1884 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1838 +runtimeId=1878 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1841 +runtimeId=1881 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1848 +runtimeId=1888 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1840 +runtimeId=1880 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1839 +runtimeId=1879 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1846 +runtimeId=1886 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1847 +runtimeId=1887 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1849 +runtimeId=1889 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1851 +runtimeId=1891 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1850 +runtimeId=1890 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1843 +runtimeId=1883 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1845 +runtimeId=1885 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2542 +runtimeId=2582 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2544 +runtimeId=2584 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2538 +runtimeId=2578 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2541 +runtimeId=2581 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2548 +runtimeId=2588 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2540 +runtimeId=2580 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2539 +runtimeId=2579 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2546 +runtimeId=2586 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2547 +runtimeId=2587 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2549 +runtimeId=2589 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2551 +runtimeId=2591 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2550 +runtimeId=2590 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2543 +runtimeId=2583 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2545 +runtimeId=2585 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2570 +runtimeId=2610 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2572 +runtimeId=2612 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2566 +runtimeId=2606 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2569 +runtimeId=2609 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2576 +runtimeId=2616 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2568 +runtimeId=2608 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2567 +runtimeId=2607 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2574 +runtimeId=2614 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2575 +runtimeId=2615 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2577 +runtimeId=2617 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2579 +runtimeId=2619 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2578 +runtimeId=2618 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2571 +runtimeId=2611 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2573 +runtimeId=2613 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2598 +runtimeId=2638 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2600 +runtimeId=2640 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2594 +runtimeId=2634 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2597 +runtimeId=2637 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2604 +runtimeId=2644 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2596 +runtimeId=2636 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2595 +runtimeId=2635 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2602 +runtimeId=2642 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2603 +runtimeId=2643 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2605 +runtimeId=2645 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2607 +runtimeId=2647 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2606 +runtimeId=2646 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2599 +runtimeId=2639 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2601 +runtimeId=2641 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3298 +runtimeId=3338 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3300 +runtimeId=3340 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3294 +runtimeId=3334 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3297 +runtimeId=3337 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3304 +runtimeId=3344 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3296 +runtimeId=3336 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3295 +runtimeId=3335 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3302 +runtimeId=3342 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3303 +runtimeId=3343 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3305 +runtimeId=3345 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3307 +runtimeId=3347 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3306 +runtimeId=3346 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3299 +runtimeId=3339 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3301 +runtimeId=3341 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3326 +runtimeId=3366 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3328 +runtimeId=3368 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3322 +runtimeId=3362 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3325 +runtimeId=3365 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3332 +runtimeId=3372 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3324 +runtimeId=3364 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3323 +runtimeId=3363 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3330 +runtimeId=3370 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3331 +runtimeId=3371 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3333 +runtimeId=3373 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3335 +runtimeId=3375 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3334 +runtimeId=3374 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3327 +runtimeId=3367 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3329 +runtimeId=3369 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3354 +runtimeId=3394 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3356 +runtimeId=3396 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3350 +runtimeId=3390 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3353 +runtimeId=3393 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3360 +runtimeId=3400 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3352 +runtimeId=3392 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3351 +runtimeId=3391 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3358 +runtimeId=3398 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3359 +runtimeId=3399 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3361 +runtimeId=3401 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3363 +runtimeId=3403 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3362 +runtimeId=3402 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3355 +runtimeId=3395 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3357 +runtimeId=3397 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1296 +runtimeId=1336 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1298 +runtimeId=1338 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1292 +runtimeId=1332 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1295 +runtimeId=1335 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1302 +runtimeId=1342 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1294 +runtimeId=1334 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1293 +runtimeId=1333 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1300 +runtimeId=1340 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1301 +runtimeId=1341 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1303 +runtimeId=1343 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1305 +runtimeId=1345 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1304 +runtimeId=1344 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1297 +runtimeId=1337 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1299 +runtimeId=1339 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1324 +runtimeId=1364 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1326 +runtimeId=1366 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1320 +runtimeId=1360 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1323 +runtimeId=1363 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1330 +runtimeId=1370 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1322 +runtimeId=1362 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1321 +runtimeId=1361 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1328 +runtimeId=1368 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1329 +runtimeId=1369 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1331 +runtimeId=1371 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1333 +runtimeId=1373 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1332 +runtimeId=1372 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1325 +runtimeId=1365 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1327 +runtimeId=1367 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1352 +runtimeId=1392 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1354 +runtimeId=1394 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1348 +runtimeId=1388 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1351 +runtimeId=1391 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1358 +runtimeId=1398 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1350 +runtimeId=1390 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1349 +runtimeId=1389 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1356 +runtimeId=1396 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1357 +runtimeId=1397 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1359 +runtimeId=1399 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1361 +runtimeId=1401 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1360 +runtimeId=1400 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1353 +runtimeId=1393 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1355 +runtimeId=1395 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2052 +runtimeId=2092 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2054 +runtimeId=2094 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2048 +runtimeId=2088 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2051 +runtimeId=2091 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2058 +runtimeId=2098 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2050 +runtimeId=2090 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2049 +runtimeId=2089 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2056 +runtimeId=2096 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2057 +runtimeId=2097 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2059 +runtimeId=2099 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2061 +runtimeId=2101 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2060 +runtimeId=2100 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2053 +runtimeId=2093 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2055 +runtimeId=2095 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2080 +runtimeId=2120 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2082 +runtimeId=2122 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2076 +runtimeId=2116 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2079 +runtimeId=2119 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2086 +runtimeId=2126 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2078 +runtimeId=2118 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2077 +runtimeId=2117 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2084 +runtimeId=2124 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2085 +runtimeId=2125 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2087 +runtimeId=2127 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2089 +runtimeId=2129 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2088 +runtimeId=2128 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2081 +runtimeId=2121 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2083 +runtimeId=2123 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2108 +runtimeId=2148 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2110 +runtimeId=2150 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2104 +runtimeId=2144 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2107 +runtimeId=2147 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2114 +runtimeId=2154 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2106 +runtimeId=2146 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2105 +runtimeId=2145 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2112 +runtimeId=2152 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2113 +runtimeId=2153 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2115 +runtimeId=2155 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2117 +runtimeId=2157 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2116 +runtimeId=2156 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2109 +runtimeId=2149 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2111 +runtimeId=2151 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2808 +runtimeId=2848 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2810 +runtimeId=2850 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2804 +runtimeId=2844 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2807 +runtimeId=2847 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2814 +runtimeId=2854 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2806 +runtimeId=2846 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2805 +runtimeId=2845 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2812 +runtimeId=2852 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2813 +runtimeId=2853 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2815 +runtimeId=2855 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2817 +runtimeId=2857 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2816 +runtimeId=2856 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2809 +runtimeId=2849 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2811 +runtimeId=2851 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2836 +runtimeId=2876 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2838 +runtimeId=2878 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2832 +runtimeId=2872 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2835 +runtimeId=2875 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2842 +runtimeId=2882 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2834 +runtimeId=2874 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2833 +runtimeId=2873 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2840 +runtimeId=2880 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2841 +runtimeId=2881 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2843 +runtimeId=2883 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2845 +runtimeId=2885 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2844 +runtimeId=2884 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2837 +runtimeId=2877 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2839 +runtimeId=2879 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2864 +runtimeId=2904 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2866 +runtimeId=2906 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2860 +runtimeId=2900 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2863 +runtimeId=2903 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2870 +runtimeId=2910 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2862 +runtimeId=2902 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2861 +runtimeId=2901 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2868 +runtimeId=2908 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2869 +runtimeId=2909 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2871 +runtimeId=2911 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2873 +runtimeId=2913 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2872 +runtimeId=2912 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2865 +runtimeId=2905 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2867 +runtimeId=2907 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1548 +runtimeId=1588 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1550 +runtimeId=1590 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1544 +runtimeId=1584 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1547 +runtimeId=1587 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1554 +runtimeId=1594 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1546 +runtimeId=1586 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1545 +runtimeId=1585 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1552 +runtimeId=1592 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1553 +runtimeId=1593 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1555 +runtimeId=1595 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1557 +runtimeId=1597 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1556 +runtimeId=1596 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1549 +runtimeId=1589 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1551 +runtimeId=1591 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1576 +runtimeId=1616 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1578 +runtimeId=1618 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1572 +runtimeId=1612 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1575 +runtimeId=1615 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1582 +runtimeId=1622 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1574 +runtimeId=1614 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1573 +runtimeId=1613 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1580 +runtimeId=1620 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1581 +runtimeId=1621 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1583 +runtimeId=1623 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1585 +runtimeId=1625 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1584 +runtimeId=1624 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1577 +runtimeId=1617 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1579 +runtimeId=1619 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1604 +runtimeId=1644 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1606 +runtimeId=1646 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1600 +runtimeId=1640 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1603 +runtimeId=1643 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1610 +runtimeId=1650 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1602 +runtimeId=1642 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1601 +runtimeId=1641 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1608 +runtimeId=1648 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1609 +runtimeId=1649 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1611 +runtimeId=1651 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1613 +runtimeId=1653 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1612 +runtimeId=1652 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1605 +runtimeId=1645 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1607 +runtimeId=1647 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2304 +runtimeId=2344 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2306 +runtimeId=2346 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2300 +runtimeId=2340 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2303 +runtimeId=2343 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2310 +runtimeId=2350 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2302 +runtimeId=2342 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2301 +runtimeId=2341 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2308 +runtimeId=2348 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2309 +runtimeId=2349 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2311 +runtimeId=2351 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2313 +runtimeId=2353 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2312 +runtimeId=2352 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2305 +runtimeId=2345 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2307 +runtimeId=2347 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2332 +runtimeId=2372 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2334 +runtimeId=2374 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2328 +runtimeId=2368 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2331 +runtimeId=2371 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2338 +runtimeId=2378 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2330 +runtimeId=2370 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2329 +runtimeId=2369 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2336 +runtimeId=2376 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2337 +runtimeId=2377 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2339 +runtimeId=2379 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2341 +runtimeId=2381 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2340 +runtimeId=2380 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2333 +runtimeId=2373 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2335 +runtimeId=2375 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2360 +runtimeId=2400 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2362 +runtimeId=2402 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2356 +runtimeId=2396 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2359 +runtimeId=2399 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2366 +runtimeId=2406 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2358 +runtimeId=2398 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2357 +runtimeId=2397 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2364 +runtimeId=2404 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2365 +runtimeId=2405 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2367 +runtimeId=2407 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2369 +runtimeId=2409 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2368 +runtimeId=2408 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2361 +runtimeId=2401 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2363 +runtimeId=2403 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3060 +runtimeId=3100 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3062 +runtimeId=3102 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3056 +runtimeId=3096 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3059 +runtimeId=3099 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3066 +runtimeId=3106 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3058 +runtimeId=3098 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3057 +runtimeId=3097 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3064 +runtimeId=3104 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3065 +runtimeId=3105 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3067 +runtimeId=3107 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3069 +runtimeId=3109 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3068 +runtimeId=3108 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3061 +runtimeId=3101 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3063 +runtimeId=3103 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3088 +runtimeId=3128 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3090 +runtimeId=3130 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3084 +runtimeId=3124 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3087 +runtimeId=3127 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3094 +runtimeId=3134 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3086 +runtimeId=3126 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3085 +runtimeId=3125 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3092 +runtimeId=3132 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3093 +runtimeId=3133 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3095 +runtimeId=3135 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3097 +runtimeId=3137 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3096 +runtimeId=3136 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3089 +runtimeId=3129 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3091 +runtimeId=3131 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3116 +runtimeId=3156 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3118 +runtimeId=3158 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3112 +runtimeId=3152 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3115 +runtimeId=3155 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3122 +runtimeId=3162 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3114 +runtimeId=3154 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3113 +runtimeId=3153 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3120 +runtimeId=3160 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3121 +runtimeId=3161 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3123 +runtimeId=3163 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3125 +runtimeId=3165 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3124 +runtimeId=3164 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3117 +runtimeId=3157 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3119 +runtimeId=3159 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1800 +runtimeId=1840 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1802 +runtimeId=1842 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1796 +runtimeId=1836 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1799 +runtimeId=1839 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1806 +runtimeId=1846 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1798 +runtimeId=1838 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1797 +runtimeId=1837 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1804 +runtimeId=1844 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1805 +runtimeId=1845 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1807 +runtimeId=1847 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1809 +runtimeId=1849 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1808 +runtimeId=1848 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1801 +runtimeId=1841 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1803 +runtimeId=1843 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1828 +runtimeId=1868 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1830 +runtimeId=1870 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1824 +runtimeId=1864 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1827 +runtimeId=1867 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1834 +runtimeId=1874 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1826 +runtimeId=1866 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1825 +runtimeId=1865 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1832 +runtimeId=1872 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1833 +runtimeId=1873 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1835 +runtimeId=1875 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1837 +runtimeId=1877 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1836 +runtimeId=1876 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1829 +runtimeId=1869 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1831 +runtimeId=1871 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1856 +runtimeId=1896 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1858 +runtimeId=1898 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1852 +runtimeId=1892 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1855 +runtimeId=1895 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1862 +runtimeId=1902 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1854 +runtimeId=1894 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1853 +runtimeId=1893 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1860 +runtimeId=1900 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1861 +runtimeId=1901 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1863 +runtimeId=1903 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1865 +runtimeId=1905 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1864 +runtimeId=1904 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1857 +runtimeId=1897 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1859 +runtimeId=1899 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2556 +runtimeId=2596 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2558 +runtimeId=2598 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2552 +runtimeId=2592 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2555 +runtimeId=2595 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2562 +runtimeId=2602 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2554 +runtimeId=2594 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2553 +runtimeId=2593 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2560 +runtimeId=2600 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2561 +runtimeId=2601 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2563 +runtimeId=2603 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2565 +runtimeId=2605 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2564 +runtimeId=2604 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2557 +runtimeId=2597 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2559 +runtimeId=2599 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2584 +runtimeId=2624 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2586 +runtimeId=2626 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2580 +runtimeId=2620 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2583 +runtimeId=2623 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2590 +runtimeId=2630 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2582 +runtimeId=2622 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2581 +runtimeId=2621 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2588 +runtimeId=2628 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2589 +runtimeId=2629 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2591 +runtimeId=2631 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2593 +runtimeId=2633 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2592 +runtimeId=2632 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2585 +runtimeId=2625 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2587 +runtimeId=2627 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2612 +runtimeId=2652 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2614 +runtimeId=2654 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2608 +runtimeId=2648 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2611 +runtimeId=2651 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2618 +runtimeId=2658 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2610 +runtimeId=2650 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2609 +runtimeId=2649 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2616 +runtimeId=2656 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2617 +runtimeId=2657 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2619 +runtimeId=2659 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2621 +runtimeId=2661 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2620 +runtimeId=2660 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2613 +runtimeId=2653 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2615 +runtimeId=2655 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3312 +runtimeId=3352 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3314 +runtimeId=3354 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3308 +runtimeId=3348 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3311 +runtimeId=3351 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3318 +runtimeId=3358 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3310 +runtimeId=3350 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3309 +runtimeId=3349 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3316 +runtimeId=3356 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3317 +runtimeId=3357 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3319 +runtimeId=3359 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3321 +runtimeId=3361 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3320 +runtimeId=3360 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3313 +runtimeId=3353 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3315 +runtimeId=3355 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3340 +runtimeId=3380 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3342 +runtimeId=3382 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3336 +runtimeId=3376 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3339 +runtimeId=3379 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3346 +runtimeId=3386 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3338 +runtimeId=3378 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3337 +runtimeId=3377 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3344 +runtimeId=3384 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3345 +runtimeId=3385 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3347 +runtimeId=3387 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3349 +runtimeId=3389 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3348 +runtimeId=3388 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3341 +runtimeId=3381 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3343 +runtimeId=3383 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3368 +runtimeId=3408 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3370 +runtimeId=3410 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3364 +runtimeId=3404 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3367 +runtimeId=3407 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3374 +runtimeId=3414 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3366 +runtimeId=3406 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3365 +runtimeId=3405 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3372 +runtimeId=3412 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3373 +runtimeId=3413 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3375 +runtimeId=3415 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3377 +runtimeId=3417 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3376 +runtimeId=3416 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3369 +runtimeId=3409 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3371 +runtimeId=3411 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1366 +runtimeId=1406 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1368 +runtimeId=1408 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1362 +runtimeId=1402 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1365 +runtimeId=1405 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1372 +runtimeId=1412 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1364 +runtimeId=1404 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1363 +runtimeId=1403 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1370 +runtimeId=1410 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1371 +runtimeId=1411 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1373 +runtimeId=1413 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1375 +runtimeId=1415 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1374 +runtimeId=1414 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1367 +runtimeId=1407 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1369 +runtimeId=1409 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1394 +runtimeId=1434 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1396 +runtimeId=1436 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1390 +runtimeId=1430 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1393 +runtimeId=1433 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1400 +runtimeId=1440 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1392 +runtimeId=1432 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1391 +runtimeId=1431 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1398 +runtimeId=1438 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1399 +runtimeId=1439 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1401 +runtimeId=1441 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1403 +runtimeId=1443 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1402 +runtimeId=1442 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1395 +runtimeId=1435 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1397 +runtimeId=1437 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1422 +runtimeId=1462 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1424 +runtimeId=1464 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1418 +runtimeId=1458 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1421 +runtimeId=1461 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1428 +runtimeId=1468 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1420 +runtimeId=1460 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1419 +runtimeId=1459 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1426 +runtimeId=1466 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1427 +runtimeId=1467 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1429 +runtimeId=1469 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1431 +runtimeId=1471 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1430 +runtimeId=1470 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1423 +runtimeId=1463 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1425 +runtimeId=1465 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2122 +runtimeId=2162 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2124 +runtimeId=2164 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2118 +runtimeId=2158 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2121 +runtimeId=2161 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2128 +runtimeId=2168 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2120 +runtimeId=2160 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2119 +runtimeId=2159 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2126 +runtimeId=2166 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2127 +runtimeId=2167 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2129 +runtimeId=2169 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2131 +runtimeId=2171 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2130 +runtimeId=2170 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2123 +runtimeId=2163 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2125 +runtimeId=2165 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2150 +runtimeId=2190 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2152 +runtimeId=2192 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2146 +runtimeId=2186 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2149 +runtimeId=2189 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2156 +runtimeId=2196 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2148 +runtimeId=2188 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2147 +runtimeId=2187 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2154 +runtimeId=2194 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2155 +runtimeId=2195 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2157 +runtimeId=2197 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2159 +runtimeId=2199 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2158 +runtimeId=2198 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2151 +runtimeId=2191 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2153 +runtimeId=2193 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2178 +runtimeId=2218 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2180 +runtimeId=2220 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2174 +runtimeId=2214 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2177 +runtimeId=2217 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2184 +runtimeId=2224 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2176 +runtimeId=2216 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2175 +runtimeId=2215 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2182 +runtimeId=2222 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2183 +runtimeId=2223 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2185 +runtimeId=2225 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2187 +runtimeId=2227 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2186 +runtimeId=2226 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2179 +runtimeId=2219 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2181 +runtimeId=2221 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2878 +runtimeId=2918 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2880 +runtimeId=2920 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2874 +runtimeId=2914 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2877 +runtimeId=2917 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2884 +runtimeId=2924 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2876 +runtimeId=2916 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2875 +runtimeId=2915 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2882 +runtimeId=2922 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2883 +runtimeId=2923 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2885 +runtimeId=2925 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2887 +runtimeId=2927 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2886 +runtimeId=2926 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2879 +runtimeId=2919 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2881 +runtimeId=2921 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2906 +runtimeId=2946 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2908 +runtimeId=2948 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2902 +runtimeId=2942 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2905 +runtimeId=2945 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2912 +runtimeId=2952 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2904 +runtimeId=2944 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2903 +runtimeId=2943 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2910 +runtimeId=2950 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2911 +runtimeId=2951 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2913 +runtimeId=2953 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2915 +runtimeId=2955 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2914 +runtimeId=2954 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2907 +runtimeId=2947 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2909 +runtimeId=2949 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2934 +runtimeId=2974 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2936 +runtimeId=2976 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2930 +runtimeId=2970 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2933 +runtimeId=2973 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2940 +runtimeId=2980 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2932 +runtimeId=2972 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2931 +runtimeId=2971 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2938 +runtimeId=2978 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2939 +runtimeId=2979 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2941 +runtimeId=2981 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2943 +runtimeId=2983 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2942 +runtimeId=2982 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2935 +runtimeId=2975 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2937 +runtimeId=2977 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1618 +runtimeId=1658 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1620 +runtimeId=1660 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1614 +runtimeId=1654 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1617 +runtimeId=1657 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1624 +runtimeId=1664 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1616 +runtimeId=1656 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1615 +runtimeId=1655 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1622 +runtimeId=1662 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1623 +runtimeId=1663 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1625 +runtimeId=1665 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1627 +runtimeId=1667 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1626 +runtimeId=1666 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1619 +runtimeId=1659 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1621 +runtimeId=1661 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1646 +runtimeId=1686 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1648 +runtimeId=1688 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1642 +runtimeId=1682 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1645 +runtimeId=1685 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1652 +runtimeId=1692 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1644 +runtimeId=1684 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1643 +runtimeId=1683 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1650 +runtimeId=1690 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1651 +runtimeId=1691 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1653 +runtimeId=1693 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1655 +runtimeId=1695 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1654 +runtimeId=1694 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1647 +runtimeId=1687 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1649 +runtimeId=1689 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1674 +runtimeId=1714 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1676 +runtimeId=1716 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1670 +runtimeId=1710 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1673 +runtimeId=1713 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1680 +runtimeId=1720 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1672 +runtimeId=1712 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1671 +runtimeId=1711 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1678 +runtimeId=1718 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1679 +runtimeId=1719 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1681 +runtimeId=1721 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1683 +runtimeId=1723 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1682 +runtimeId=1722 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1675 +runtimeId=1715 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1677 +runtimeId=1717 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2374 +runtimeId=2414 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2376 +runtimeId=2416 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2370 +runtimeId=2410 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2373 +runtimeId=2413 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2380 +runtimeId=2420 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2372 +runtimeId=2412 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2371 +runtimeId=2411 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2378 +runtimeId=2418 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2379 +runtimeId=2419 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2381 +runtimeId=2421 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2383 +runtimeId=2423 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2382 +runtimeId=2422 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2375 +runtimeId=2415 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2377 +runtimeId=2417 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2402 +runtimeId=2442 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2404 +runtimeId=2444 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2398 +runtimeId=2438 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2401 +runtimeId=2441 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2408 +runtimeId=2448 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2400 +runtimeId=2440 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2399 +runtimeId=2439 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2406 +runtimeId=2446 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2407 +runtimeId=2447 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2409 +runtimeId=2449 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2411 +runtimeId=2451 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2410 +runtimeId=2450 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2403 +runtimeId=2443 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2405 +runtimeId=2445 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2430 +runtimeId=2470 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2432 +runtimeId=2472 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2426 +runtimeId=2466 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2429 +runtimeId=2469 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2436 +runtimeId=2476 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2428 +runtimeId=2468 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2427 +runtimeId=2467 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2434 +runtimeId=2474 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2435 +runtimeId=2475 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2437 +runtimeId=2477 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2439 +runtimeId=2479 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2438 +runtimeId=2478 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2431 +runtimeId=2471 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2433 +runtimeId=2473 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3130 +runtimeId=3170 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3132 +runtimeId=3172 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3126 +runtimeId=3166 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3129 +runtimeId=3169 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3136 +runtimeId=3176 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3128 +runtimeId=3168 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3127 +runtimeId=3167 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3134 +runtimeId=3174 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3135 +runtimeId=3175 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3137 +runtimeId=3177 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3139 +runtimeId=3179 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3138 +runtimeId=3178 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3131 +runtimeId=3171 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3133 +runtimeId=3173 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3158 +runtimeId=3198 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3160 +runtimeId=3200 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3154 +runtimeId=3194 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3157 +runtimeId=3197 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3164 +runtimeId=3204 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3156 +runtimeId=3196 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3155 +runtimeId=3195 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3162 +runtimeId=3202 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3163 +runtimeId=3203 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3165 +runtimeId=3205 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3167 +runtimeId=3207 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3166 +runtimeId=3206 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3159 +runtimeId=3199 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3161 +runtimeId=3201 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3186 +runtimeId=3226 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3188 +runtimeId=3228 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3182 +runtimeId=3222 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3185 +runtimeId=3225 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3192 +runtimeId=3232 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3184 +runtimeId=3224 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3183 +runtimeId=3223 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3190 +runtimeId=3230 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3191 +runtimeId=3231 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3193 +runtimeId=3233 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3195 +runtimeId=3235 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3194 +runtimeId=3234 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3187 +runtimeId=3227 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3189 +runtimeId=3229 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1870 +runtimeId=1910 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1872 +runtimeId=1912 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1866 +runtimeId=1906 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1869 +runtimeId=1909 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1876 +runtimeId=1916 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1868 +runtimeId=1908 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1867 +runtimeId=1907 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1874 +runtimeId=1914 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1875 +runtimeId=1915 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1877 +runtimeId=1917 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1879 +runtimeId=1919 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1878 +runtimeId=1918 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1871 +runtimeId=1911 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1873 +runtimeId=1913 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1898 +runtimeId=1938 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1900 +runtimeId=1940 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1894 +runtimeId=1934 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1897 +runtimeId=1937 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1904 +runtimeId=1944 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1896 +runtimeId=1936 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1895 +runtimeId=1935 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1902 +runtimeId=1942 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1903 +runtimeId=1943 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1905 +runtimeId=1945 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1907 +runtimeId=1947 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1906 +runtimeId=1946 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1899 +runtimeId=1939 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1901 +runtimeId=1941 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1926 +runtimeId=1966 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1928 +runtimeId=1968 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1922 +runtimeId=1962 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1925 +runtimeId=1965 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1932 +runtimeId=1972 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1924 +runtimeId=1964 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1923 +runtimeId=1963 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1930 +runtimeId=1970 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1931 +runtimeId=1971 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1933 +runtimeId=1973 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1935 +runtimeId=1975 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1934 +runtimeId=1974 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1927 +runtimeId=1967 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1929 +runtimeId=1969 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2626 +runtimeId=2666 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2628 +runtimeId=2668 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2622 +runtimeId=2662 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2625 +runtimeId=2665 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2632 +runtimeId=2672 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2624 +runtimeId=2664 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2623 +runtimeId=2663 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2630 +runtimeId=2670 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2631 +runtimeId=2671 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2633 +runtimeId=2673 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2635 +runtimeId=2675 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2634 +runtimeId=2674 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2627 +runtimeId=2667 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2629 +runtimeId=2669 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2654 +runtimeId=2694 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2656 +runtimeId=2696 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2650 +runtimeId=2690 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2653 +runtimeId=2693 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2660 +runtimeId=2700 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2652 +runtimeId=2692 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2651 +runtimeId=2691 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2658 +runtimeId=2698 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2659 +runtimeId=2699 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2661 +runtimeId=2701 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2663 +runtimeId=2703 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2662 +runtimeId=2702 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2655 +runtimeId=2695 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2657 +runtimeId=2697 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2682 +runtimeId=2722 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2684 +runtimeId=2724 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2678 +runtimeId=2718 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2681 +runtimeId=2721 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2688 +runtimeId=2728 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2680 +runtimeId=2720 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2679 +runtimeId=2719 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2686 +runtimeId=2726 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2687 +runtimeId=2727 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2689 +runtimeId=2729 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2691 +runtimeId=2731 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2690 +runtimeId=2730 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2683 +runtimeId=2723 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2685 +runtimeId=2725 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3382 +runtimeId=3422 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3384 +runtimeId=3424 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3378 +runtimeId=3418 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3381 +runtimeId=3421 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3388 +runtimeId=3428 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3380 +runtimeId=3420 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3379 +runtimeId=3419 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3386 +runtimeId=3426 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3387 +runtimeId=3427 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3389 +runtimeId=3429 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3391 +runtimeId=3431 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3390 +runtimeId=3430 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3383 +runtimeId=3423 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3385 +runtimeId=3425 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3410 +runtimeId=3450 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3412 +runtimeId=3452 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3406 +runtimeId=3446 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3409 +runtimeId=3449 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3416 +runtimeId=3456 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3408 +runtimeId=3448 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3407 +runtimeId=3447 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3414 +runtimeId=3454 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3415 +runtimeId=3455 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3417 +runtimeId=3457 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3419 +runtimeId=3459 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3418 +runtimeId=3458 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3411 +runtimeId=3451 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3413 +runtimeId=3453 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3438 +runtimeId=3478 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3440 +runtimeId=3480 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3434 +runtimeId=3474 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3437 +runtimeId=3477 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3444 +runtimeId=3484 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3436 +runtimeId=3476 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3435 +runtimeId=3475 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3442 +runtimeId=3482 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3443 +runtimeId=3483 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3445 +runtimeId=3485 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3447 +runtimeId=3487 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3446 +runtimeId=3486 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3439 +runtimeId=3479 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3441 +runtimeId=3481 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1380 +runtimeId=1420 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1382 +runtimeId=1422 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1376 +runtimeId=1416 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1379 +runtimeId=1419 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1386 +runtimeId=1426 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1378 +runtimeId=1418 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1377 +runtimeId=1417 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1384 +runtimeId=1424 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1385 +runtimeId=1425 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1387 +runtimeId=1427 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1389 +runtimeId=1429 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1388 +runtimeId=1428 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1381 +runtimeId=1421 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1383 +runtimeId=1423 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1408 +runtimeId=1448 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1410 +runtimeId=1450 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1404 +runtimeId=1444 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1407 +runtimeId=1447 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1414 +runtimeId=1454 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1406 +runtimeId=1446 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1405 +runtimeId=1445 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1412 +runtimeId=1452 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1413 +runtimeId=1453 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1415 +runtimeId=1455 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1417 +runtimeId=1457 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1416 +runtimeId=1456 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1409 +runtimeId=1449 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1411 +runtimeId=1451 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1436 +runtimeId=1476 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1438 +runtimeId=1478 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1432 +runtimeId=1472 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1435 +runtimeId=1475 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1442 +runtimeId=1482 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1434 +runtimeId=1474 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1433 +runtimeId=1473 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1440 +runtimeId=1480 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1441 +runtimeId=1481 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1443 +runtimeId=1483 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1445 +runtimeId=1485 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1444 +runtimeId=1484 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1437 +runtimeId=1477 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1439 +runtimeId=1479 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2136 +runtimeId=2176 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2138 +runtimeId=2178 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2132 +runtimeId=2172 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2135 +runtimeId=2175 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2142 +runtimeId=2182 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2134 +runtimeId=2174 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2133 +runtimeId=2173 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2140 +runtimeId=2180 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2141 +runtimeId=2181 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2143 +runtimeId=2183 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2145 +runtimeId=2185 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2144 +runtimeId=2184 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2137 +runtimeId=2177 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2139 +runtimeId=2179 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2164 +runtimeId=2204 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2166 +runtimeId=2206 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2160 +runtimeId=2200 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2163 +runtimeId=2203 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2170 +runtimeId=2210 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2162 +runtimeId=2202 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2161 +runtimeId=2201 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2168 +runtimeId=2208 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2169 +runtimeId=2209 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2171 +runtimeId=2211 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2173 +runtimeId=2213 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2172 +runtimeId=2212 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2165 +runtimeId=2205 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2167 +runtimeId=2207 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2192 +runtimeId=2232 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2194 +runtimeId=2234 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2188 +runtimeId=2228 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2191 +runtimeId=2231 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2198 +runtimeId=2238 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2190 +runtimeId=2230 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2189 +runtimeId=2229 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2196 +runtimeId=2236 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2197 +runtimeId=2237 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2199 +runtimeId=2239 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2201 +runtimeId=2241 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2200 +runtimeId=2240 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2193 +runtimeId=2233 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2195 +runtimeId=2235 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2892 +runtimeId=2932 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2894 +runtimeId=2934 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2888 +runtimeId=2928 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2891 +runtimeId=2931 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2898 +runtimeId=2938 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2890 +runtimeId=2930 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2889 +runtimeId=2929 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2896 +runtimeId=2936 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2897 +runtimeId=2937 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2899 +runtimeId=2939 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2901 +runtimeId=2941 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2900 +runtimeId=2940 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2893 +runtimeId=2933 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2895 +runtimeId=2935 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2920 +runtimeId=2960 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2922 +runtimeId=2962 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2916 +runtimeId=2956 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2919 +runtimeId=2959 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2926 +runtimeId=2966 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2918 +runtimeId=2958 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2917 +runtimeId=2957 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2924 +runtimeId=2964 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2925 +runtimeId=2965 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2927 +runtimeId=2967 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2929 +runtimeId=2969 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2928 +runtimeId=2968 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2921 +runtimeId=2961 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2923 +runtimeId=2963 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2948 +runtimeId=2988 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2950 +runtimeId=2990 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2944 +runtimeId=2984 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2947 +runtimeId=2987 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2954 +runtimeId=2994 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2946 +runtimeId=2986 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2945 +runtimeId=2985 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2952 +runtimeId=2992 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2953 +runtimeId=2993 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2955 +runtimeId=2995 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2957 +runtimeId=2997 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2956 +runtimeId=2996 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2949 +runtimeId=2989 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2951 +runtimeId=2991 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1632 +runtimeId=1672 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1634 +runtimeId=1674 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1628 +runtimeId=1668 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1631 +runtimeId=1671 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1638 +runtimeId=1678 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1630 +runtimeId=1670 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1629 +runtimeId=1669 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1636 +runtimeId=1676 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1637 +runtimeId=1677 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1639 +runtimeId=1679 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1641 +runtimeId=1681 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1640 +runtimeId=1680 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1633 +runtimeId=1673 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1635 +runtimeId=1675 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1660 +runtimeId=1700 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1662 +runtimeId=1702 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1656 +runtimeId=1696 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1659 +runtimeId=1699 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1666 +runtimeId=1706 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1658 +runtimeId=1698 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1657 +runtimeId=1697 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1664 +runtimeId=1704 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1665 +runtimeId=1705 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1667 +runtimeId=1707 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1669 +runtimeId=1709 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1668 +runtimeId=1708 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1661 +runtimeId=1701 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1663 +runtimeId=1703 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1688 +runtimeId=1728 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1690 +runtimeId=1730 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1684 +runtimeId=1724 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1687 +runtimeId=1727 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1694 +runtimeId=1734 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1686 +runtimeId=1726 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1685 +runtimeId=1725 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1692 +runtimeId=1732 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1693 +runtimeId=1733 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1695 +runtimeId=1735 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1697 +runtimeId=1737 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1696 +runtimeId=1736 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1689 +runtimeId=1729 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1691 +runtimeId=1731 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2388 +runtimeId=2428 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2390 +runtimeId=2430 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2384 +runtimeId=2424 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2387 +runtimeId=2427 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2394 +runtimeId=2434 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2386 +runtimeId=2426 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2385 +runtimeId=2425 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2392 +runtimeId=2432 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2393 +runtimeId=2433 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2395 +runtimeId=2435 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2397 +runtimeId=2437 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2396 +runtimeId=2436 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2389 +runtimeId=2429 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2391 +runtimeId=2431 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2416 +runtimeId=2456 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2418 +runtimeId=2458 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2412 +runtimeId=2452 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2415 +runtimeId=2455 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2422 +runtimeId=2462 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2414 +runtimeId=2454 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2413 +runtimeId=2453 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2420 +runtimeId=2460 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2421 +runtimeId=2461 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2423 +runtimeId=2463 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2425 +runtimeId=2465 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2424 +runtimeId=2464 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2417 +runtimeId=2457 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2419 +runtimeId=2459 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2444 +runtimeId=2484 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2446 +runtimeId=2486 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2440 +runtimeId=2480 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2443 +runtimeId=2483 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2450 +runtimeId=2490 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2442 +runtimeId=2482 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2441 +runtimeId=2481 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2448 +runtimeId=2488 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2449 +runtimeId=2489 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2451 +runtimeId=2491 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2453 +runtimeId=2493 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2452 +runtimeId=2492 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2445 +runtimeId=2485 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2447 +runtimeId=2487 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3144 +runtimeId=3184 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3146 +runtimeId=3186 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3140 +runtimeId=3180 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3143 +runtimeId=3183 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3150 +runtimeId=3190 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3142 +runtimeId=3182 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3141 +runtimeId=3181 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3148 +runtimeId=3188 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3149 +runtimeId=3189 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3151 +runtimeId=3191 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3153 +runtimeId=3193 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3152 +runtimeId=3192 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3145 +runtimeId=3185 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3147 +runtimeId=3187 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3172 +runtimeId=3212 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3174 +runtimeId=3214 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3168 +runtimeId=3208 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3171 +runtimeId=3211 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3178 +runtimeId=3218 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3170 +runtimeId=3210 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3169 +runtimeId=3209 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3176 +runtimeId=3216 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3177 +runtimeId=3217 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3179 +runtimeId=3219 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3181 +runtimeId=3221 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3180 +runtimeId=3220 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3173 +runtimeId=3213 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3175 +runtimeId=3215 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3200 +runtimeId=3240 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3202 +runtimeId=3242 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3196 +runtimeId=3236 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3199 +runtimeId=3239 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3206 +runtimeId=3246 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3198 +runtimeId=3238 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3197 +runtimeId=3237 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3204 +runtimeId=3244 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3205 +runtimeId=3245 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3207 +runtimeId=3247 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3209 +runtimeId=3249 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3208 +runtimeId=3248 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3201 +runtimeId=3241 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3203 +runtimeId=3243 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1884 +runtimeId=1924 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1886 +runtimeId=1926 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1880 +runtimeId=1920 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1883 +runtimeId=1923 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1890 +runtimeId=1930 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1882 +runtimeId=1922 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1881 +runtimeId=1921 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1888 +runtimeId=1928 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1889 +runtimeId=1929 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1891 +runtimeId=1931 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1893 +runtimeId=1933 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1892 +runtimeId=1932 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1885 +runtimeId=1925 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1887 +runtimeId=1927 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1912 +runtimeId=1952 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1914 +runtimeId=1954 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1908 +runtimeId=1948 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1911 +runtimeId=1951 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1918 +runtimeId=1958 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1910 +runtimeId=1950 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1909 +runtimeId=1949 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1916 +runtimeId=1956 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1917 +runtimeId=1957 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1919 +runtimeId=1959 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1921 +runtimeId=1961 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1920 +runtimeId=1960 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1913 +runtimeId=1953 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1915 +runtimeId=1955 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1940 +runtimeId=1980 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1942 +runtimeId=1982 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1936 +runtimeId=1976 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1939 +runtimeId=1979 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1946 +runtimeId=1986 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1938 +runtimeId=1978 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1937 +runtimeId=1977 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1944 +runtimeId=1984 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1945 +runtimeId=1985 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1947 +runtimeId=1987 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1949 +runtimeId=1989 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1948 +runtimeId=1988 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1941 +runtimeId=1981 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1943 +runtimeId=1983 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2640 +runtimeId=2680 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2642 +runtimeId=2682 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2636 +runtimeId=2676 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2639 +runtimeId=2679 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2646 +runtimeId=2686 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2638 +runtimeId=2678 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2637 +runtimeId=2677 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2644 +runtimeId=2684 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2645 +runtimeId=2685 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2647 +runtimeId=2687 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2649 +runtimeId=2689 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2648 +runtimeId=2688 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2641 +runtimeId=2681 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2643 +runtimeId=2683 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2668 +runtimeId=2708 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2670 +runtimeId=2710 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2664 +runtimeId=2704 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2667 +runtimeId=2707 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2674 +runtimeId=2714 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2666 +runtimeId=2706 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2665 +runtimeId=2705 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2672 +runtimeId=2712 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2673 +runtimeId=2713 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2675 +runtimeId=2715 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2677 +runtimeId=2717 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2676 +runtimeId=2716 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2669 +runtimeId=2709 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2671 +runtimeId=2711 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2696 +runtimeId=2736 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2698 +runtimeId=2738 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2692 +runtimeId=2732 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2695 +runtimeId=2735 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2702 +runtimeId=2742 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2694 +runtimeId=2734 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2693 +runtimeId=2733 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2700 +runtimeId=2740 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2701 +runtimeId=2741 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2703 +runtimeId=2743 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2705 +runtimeId=2745 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2704 +runtimeId=2744 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2697 +runtimeId=2737 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2699 +runtimeId=2739 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3396 +runtimeId=3436 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3398 +runtimeId=3438 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3392 +runtimeId=3432 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3395 +runtimeId=3435 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3402 +runtimeId=3442 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3394 +runtimeId=3434 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3393 +runtimeId=3433 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3400 +runtimeId=3440 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3401 +runtimeId=3441 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3403 +runtimeId=3443 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3405 +runtimeId=3445 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3404 +runtimeId=3444 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3397 +runtimeId=3437 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3399 +runtimeId=3439 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3424 +runtimeId=3464 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3426 +runtimeId=3466 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3420 +runtimeId=3460 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3423 +runtimeId=3463 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3430 +runtimeId=3470 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3422 +runtimeId=3462 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3421 +runtimeId=3461 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3428 +runtimeId=3468 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3429 +runtimeId=3469 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3431 +runtimeId=3471 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3433 +runtimeId=3473 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3432 +runtimeId=3472 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3425 +runtimeId=3465 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3427 +runtimeId=3467 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3452 +runtimeId=3492 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3454 +runtimeId=3494 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3448 +runtimeId=3488 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3451 +runtimeId=3491 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3458 +runtimeId=3498 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3450 +runtimeId=3490 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3449 +runtimeId=3489 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3456 +runtimeId=3496 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3457 +runtimeId=3497 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3459 +runtimeId=3499 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3461 +runtimeId=3501 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3460 +runtimeId=3500 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3453 +runtimeId=3493 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3455 +runtimeId=3495 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1450 +runtimeId=1490 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1452 +runtimeId=1492 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1446 +runtimeId=1486 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1449 +runtimeId=1489 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1456 +runtimeId=1496 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1448 +runtimeId=1488 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1447 +runtimeId=1487 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1454 +runtimeId=1494 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1455 +runtimeId=1495 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1457 +runtimeId=1497 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1459 +runtimeId=1499 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1458 +runtimeId=1498 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1451 +runtimeId=1491 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1453 +runtimeId=1493 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1478 +runtimeId=1518 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1480 +runtimeId=1520 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1474 +runtimeId=1514 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1477 +runtimeId=1517 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1484 +runtimeId=1524 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1476 +runtimeId=1516 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1475 +runtimeId=1515 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1482 +runtimeId=1522 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1483 +runtimeId=1523 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1485 +runtimeId=1525 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1487 +runtimeId=1527 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1486 +runtimeId=1526 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1479 +runtimeId=1519 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1481 +runtimeId=1521 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1506 +runtimeId=1546 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1508 +runtimeId=1548 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1502 +runtimeId=1542 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1505 +runtimeId=1545 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1512 +runtimeId=1552 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1504 +runtimeId=1544 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1503 +runtimeId=1543 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1510 +runtimeId=1550 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1511 +runtimeId=1551 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1513 +runtimeId=1553 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1515 +runtimeId=1555 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1514 +runtimeId=1554 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1507 +runtimeId=1547 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1509 +runtimeId=1549 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2206 +runtimeId=2246 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2208 +runtimeId=2248 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2202 +runtimeId=2242 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2205 +runtimeId=2245 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2212 +runtimeId=2252 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2204 +runtimeId=2244 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2203 +runtimeId=2243 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2210 +runtimeId=2250 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2211 +runtimeId=2251 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2213 +runtimeId=2253 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2215 +runtimeId=2255 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2214 +runtimeId=2254 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2207 +runtimeId=2247 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2209 +runtimeId=2249 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2234 +runtimeId=2274 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2236 +runtimeId=2276 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2230 +runtimeId=2270 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2233 +runtimeId=2273 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2240 +runtimeId=2280 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2232 +runtimeId=2272 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2231 +runtimeId=2271 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2238 +runtimeId=2278 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2239 +runtimeId=2279 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2241 +runtimeId=2281 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2243 +runtimeId=2283 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2242 +runtimeId=2282 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2235 +runtimeId=2275 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2237 +runtimeId=2277 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2262 +runtimeId=2302 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2264 +runtimeId=2304 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2258 +runtimeId=2298 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2261 +runtimeId=2301 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2268 +runtimeId=2308 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2260 +runtimeId=2300 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2259 +runtimeId=2299 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2266 +runtimeId=2306 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2267 +runtimeId=2307 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2269 +runtimeId=2309 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2271 +runtimeId=2311 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2270 +runtimeId=2310 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2263 +runtimeId=2303 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2265 +runtimeId=2305 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2962 +runtimeId=3002 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2964 +runtimeId=3004 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2958 +runtimeId=2998 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2961 +runtimeId=3001 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2968 +runtimeId=3008 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2960 +runtimeId=3000 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2959 +runtimeId=2999 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2966 +runtimeId=3006 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2967 +runtimeId=3007 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2969 +runtimeId=3009 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2971 +runtimeId=3011 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2970 +runtimeId=3010 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2963 +runtimeId=3003 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2965 +runtimeId=3005 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2990 +runtimeId=3030 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2992 +runtimeId=3032 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2986 +runtimeId=3026 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2989 +runtimeId=3029 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2996 +runtimeId=3036 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2988 +runtimeId=3028 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2987 +runtimeId=3027 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2994 +runtimeId=3034 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2995 +runtimeId=3035 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2997 +runtimeId=3037 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2999 +runtimeId=3039 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2998 +runtimeId=3038 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2991 +runtimeId=3031 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2993 +runtimeId=3033 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3018 +runtimeId=3058 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3020 +runtimeId=3060 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3014 +runtimeId=3054 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3017 +runtimeId=3057 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3024 +runtimeId=3064 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3016 +runtimeId=3056 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3015 +runtimeId=3055 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3022 +runtimeId=3062 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3023 +runtimeId=3063 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3025 +runtimeId=3065 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3027 +runtimeId=3067 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3026 +runtimeId=3066 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3019 +runtimeId=3059 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3021 +runtimeId=3061 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1702 +runtimeId=1742 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1704 +runtimeId=1744 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1698 +runtimeId=1738 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1701 +runtimeId=1741 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1708 +runtimeId=1748 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1700 +runtimeId=1740 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1699 +runtimeId=1739 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1706 +runtimeId=1746 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1707 +runtimeId=1747 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1709 +runtimeId=1749 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1711 +runtimeId=1751 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1710 +runtimeId=1750 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1703 +runtimeId=1743 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1705 +runtimeId=1745 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1730 +runtimeId=1770 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1732 +runtimeId=1772 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1726 +runtimeId=1766 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1729 +runtimeId=1769 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1736 +runtimeId=1776 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1728 +runtimeId=1768 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1727 +runtimeId=1767 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1734 +runtimeId=1774 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1735 +runtimeId=1775 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1737 +runtimeId=1777 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1739 +runtimeId=1779 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1738 +runtimeId=1778 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1731 +runtimeId=1771 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1733 +runtimeId=1773 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1758 +runtimeId=1798 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1760 +runtimeId=1800 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1754 +runtimeId=1794 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1757 +runtimeId=1797 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1764 +runtimeId=1804 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1756 +runtimeId=1796 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1755 +runtimeId=1795 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1762 +runtimeId=1802 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1763 +runtimeId=1803 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1765 +runtimeId=1805 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1767 +runtimeId=1807 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1766 +runtimeId=1806 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1759 +runtimeId=1799 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1761 +runtimeId=1801 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2458 +runtimeId=2498 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2460 +runtimeId=2500 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2454 +runtimeId=2494 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2457 +runtimeId=2497 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2464 +runtimeId=2504 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2456 +runtimeId=2496 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2455 +runtimeId=2495 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2462 +runtimeId=2502 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2463 +runtimeId=2503 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2465 +runtimeId=2505 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2467 +runtimeId=2507 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2466 +runtimeId=2506 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2459 +runtimeId=2499 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2461 +runtimeId=2501 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2486 +runtimeId=2526 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2488 +runtimeId=2528 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2482 +runtimeId=2522 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2485 +runtimeId=2525 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2492 +runtimeId=2532 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2484 +runtimeId=2524 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2483 +runtimeId=2523 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2490 +runtimeId=2530 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2491 +runtimeId=2531 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2493 +runtimeId=2533 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2495 +runtimeId=2535 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2494 +runtimeId=2534 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2487 +runtimeId=2527 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2489 +runtimeId=2529 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2514 +runtimeId=2554 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2516 +runtimeId=2556 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2510 +runtimeId=2550 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2513 +runtimeId=2553 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2520 +runtimeId=2560 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2512 +runtimeId=2552 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2511 +runtimeId=2551 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2518 +runtimeId=2558 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2519 +runtimeId=2559 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2521 +runtimeId=2561 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2523 +runtimeId=2563 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2522 +runtimeId=2562 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2515 +runtimeId=2555 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2517 +runtimeId=2557 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3214 +runtimeId=3254 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3216 +runtimeId=3256 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3210 +runtimeId=3250 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3213 +runtimeId=3253 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3220 +runtimeId=3260 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3212 +runtimeId=3252 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3211 +runtimeId=3251 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3218 +runtimeId=3258 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3219 +runtimeId=3259 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3221 +runtimeId=3261 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3223 +runtimeId=3263 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3222 +runtimeId=3262 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3215 +runtimeId=3255 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3217 +runtimeId=3257 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3242 +runtimeId=3282 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3244 +runtimeId=3284 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3238 +runtimeId=3278 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3241 +runtimeId=3281 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3248 +runtimeId=3288 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3240 +runtimeId=3280 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3239 +runtimeId=3279 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3246 +runtimeId=3286 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3247 +runtimeId=3287 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3249 +runtimeId=3289 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3251 +runtimeId=3291 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3250 +runtimeId=3290 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3243 +runtimeId=3283 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3245 +runtimeId=3285 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3270 +runtimeId=3310 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3272 +runtimeId=3312 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3266 +runtimeId=3306 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3269 +runtimeId=3309 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3276 +runtimeId=3316 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3268 +runtimeId=3308 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3267 +runtimeId=3307 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3274 +runtimeId=3314 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3275 +runtimeId=3315 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3277 +runtimeId=3317 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3279 +runtimeId=3319 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3278 +runtimeId=3318 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3271 +runtimeId=3311 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3273 +runtimeId=3313 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1954 +runtimeId=1994 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1956 +runtimeId=1996 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1950 +runtimeId=1990 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1953 +runtimeId=1993 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1960 +runtimeId=2000 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1952 +runtimeId=1992 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1951 +runtimeId=1991 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1958 +runtimeId=1998 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1959 +runtimeId=1999 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1961 +runtimeId=2001 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1963 +runtimeId=2003 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1962 +runtimeId=2002 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1955 +runtimeId=1995 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1957 +runtimeId=1997 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1982 +runtimeId=2022 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1984 +runtimeId=2024 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1978 +runtimeId=2018 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1981 +runtimeId=2021 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1988 +runtimeId=2028 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1980 +runtimeId=2020 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1979 +runtimeId=2019 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1986 +runtimeId=2026 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1987 +runtimeId=2027 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1989 +runtimeId=2029 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1991 +runtimeId=2031 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1990 +runtimeId=2030 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1983 +runtimeId=2023 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1985 +runtimeId=2025 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2010 +runtimeId=2050 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2012 +runtimeId=2052 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2006 +runtimeId=2046 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2009 +runtimeId=2049 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2016 +runtimeId=2056 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2008 +runtimeId=2048 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2007 +runtimeId=2047 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2014 +runtimeId=2054 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2015 +runtimeId=2055 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2017 +runtimeId=2057 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2019 +runtimeId=2059 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2018 +runtimeId=2058 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2011 +runtimeId=2051 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2013 +runtimeId=2053 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2710 +runtimeId=2750 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2712 +runtimeId=2752 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2706 +runtimeId=2746 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2709 +runtimeId=2749 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2716 +runtimeId=2756 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2708 +runtimeId=2748 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2707 +runtimeId=2747 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2714 +runtimeId=2754 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2715 +runtimeId=2755 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2717 +runtimeId=2757 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2719 +runtimeId=2759 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2718 +runtimeId=2758 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2711 +runtimeId=2751 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2713 +runtimeId=2753 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2738 +runtimeId=2778 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2740 +runtimeId=2780 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2734 +runtimeId=2774 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2737 +runtimeId=2777 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2744 +runtimeId=2784 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2736 +runtimeId=2776 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2735 +runtimeId=2775 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2742 +runtimeId=2782 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2743 +runtimeId=2783 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2745 +runtimeId=2785 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2747 +runtimeId=2787 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2746 +runtimeId=2786 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2739 +runtimeId=2779 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2741 +runtimeId=2781 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2766 +runtimeId=2806 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2768 +runtimeId=2808 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2762 +runtimeId=2802 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2765 +runtimeId=2805 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2772 +runtimeId=2812 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2764 +runtimeId=2804 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2763 +runtimeId=2803 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2770 +runtimeId=2810 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2771 +runtimeId=2811 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2773 +runtimeId=2813 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2775 +runtimeId=2815 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2774 +runtimeId=2814 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2767 +runtimeId=2807 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2769 +runtimeId=2809 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3466 +runtimeId=3506 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3468 +runtimeId=3508 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3462 +runtimeId=3502 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3465 +runtimeId=3505 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3472 +runtimeId=3512 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3464 +runtimeId=3504 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3463 +runtimeId=3503 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3470 +runtimeId=3510 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3471 +runtimeId=3511 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3473 +runtimeId=3513 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3475 +runtimeId=3515 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3474 +runtimeId=3514 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3467 +runtimeId=3507 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3469 +runtimeId=3509 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3494 +runtimeId=3534 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3496 +runtimeId=3536 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3490 +runtimeId=3530 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3493 +runtimeId=3533 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3500 +runtimeId=3540 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3492 +runtimeId=3532 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3491 +runtimeId=3531 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3498 +runtimeId=3538 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3499 +runtimeId=3539 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3501 +runtimeId=3541 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3503 +runtimeId=3543 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3502 +runtimeId=3542 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3495 +runtimeId=3535 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3497 +runtimeId=3537 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3522 +runtimeId=3562 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3524 +runtimeId=3564 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3518 +runtimeId=3558 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3521 +runtimeId=3561 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3528 +runtimeId=3568 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3520 +runtimeId=3560 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3519 +runtimeId=3559 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3526 +runtimeId=3566 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3527 +runtimeId=3567 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3529 +runtimeId=3569 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3531 +runtimeId=3571 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3530 +runtimeId=3570 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3523 +runtimeId=3563 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3525 +runtimeId=3565 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1464 +runtimeId=1504 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1466 +runtimeId=1506 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1460 +runtimeId=1500 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1463 +runtimeId=1503 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1470 +runtimeId=1510 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1462 +runtimeId=1502 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1461 +runtimeId=1501 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1468 +runtimeId=1508 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1469 +runtimeId=1509 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1471 +runtimeId=1511 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1473 +runtimeId=1513 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1472 +runtimeId=1512 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1465 +runtimeId=1505 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1467 +runtimeId=1507 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1492 +runtimeId=1532 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1494 +runtimeId=1534 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1488 +runtimeId=1528 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1491 +runtimeId=1531 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1498 +runtimeId=1538 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1490 +runtimeId=1530 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1489 +runtimeId=1529 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1496 +runtimeId=1536 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1497 +runtimeId=1537 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1499 +runtimeId=1539 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1501 +runtimeId=1541 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1500 +runtimeId=1540 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1493 +runtimeId=1533 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1495 +runtimeId=1535 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1520 +runtimeId=1560 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1522 +runtimeId=1562 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1516 +runtimeId=1556 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1519 +runtimeId=1559 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1526 +runtimeId=1566 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1518 +runtimeId=1558 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1517 +runtimeId=1557 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1524 +runtimeId=1564 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1525 +runtimeId=1565 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1527 +runtimeId=1567 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1529 +runtimeId=1569 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1528 +runtimeId=1568 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1521 +runtimeId=1561 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1523 +runtimeId=1563 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2220 +runtimeId=2260 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2222 +runtimeId=2262 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2216 +runtimeId=2256 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2219 +runtimeId=2259 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2226 +runtimeId=2266 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2218 +runtimeId=2258 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2217 +runtimeId=2257 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2224 +runtimeId=2264 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2225 +runtimeId=2265 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2227 +runtimeId=2267 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2229 +runtimeId=2269 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2228 +runtimeId=2268 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2221 +runtimeId=2261 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2223 +runtimeId=2263 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2248 +runtimeId=2288 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2250 +runtimeId=2290 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2244 +runtimeId=2284 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2247 +runtimeId=2287 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2254 +runtimeId=2294 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2246 +runtimeId=2286 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2245 +runtimeId=2285 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2252 +runtimeId=2292 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2253 +runtimeId=2293 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2255 +runtimeId=2295 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2257 +runtimeId=2297 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2256 +runtimeId=2296 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2249 +runtimeId=2289 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2251 +runtimeId=2291 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2276 +runtimeId=2316 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2278 +runtimeId=2318 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2272 +runtimeId=2312 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2275 +runtimeId=2315 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2282 +runtimeId=2322 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2274 +runtimeId=2314 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2273 +runtimeId=2313 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2280 +runtimeId=2320 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2281 +runtimeId=2321 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2283 +runtimeId=2323 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2285 +runtimeId=2325 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2284 +runtimeId=2324 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2277 +runtimeId=2317 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2279 +runtimeId=2319 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2976 +runtimeId=3016 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2978 +runtimeId=3018 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2972 +runtimeId=3012 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2975 +runtimeId=3015 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2982 +runtimeId=3022 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2974 +runtimeId=3014 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2973 +runtimeId=3013 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2980 +runtimeId=3020 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2981 +runtimeId=3021 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2983 +runtimeId=3023 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2985 +runtimeId=3025 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2984 +runtimeId=3024 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2977 +runtimeId=3017 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2979 +runtimeId=3019 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3004 +runtimeId=3044 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3006 +runtimeId=3046 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3000 +runtimeId=3040 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3003 +runtimeId=3043 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3010 +runtimeId=3050 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3002 +runtimeId=3042 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3001 +runtimeId=3041 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3008 +runtimeId=3048 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3009 +runtimeId=3049 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3011 +runtimeId=3051 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3013 +runtimeId=3053 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3012 +runtimeId=3052 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3005 +runtimeId=3045 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3007 +runtimeId=3047 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3032 +runtimeId=3072 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3034 +runtimeId=3074 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3028 +runtimeId=3068 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3031 +runtimeId=3071 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3038 +runtimeId=3078 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3030 +runtimeId=3070 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3029 +runtimeId=3069 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3036 +runtimeId=3076 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3037 +runtimeId=3077 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3039 +runtimeId=3079 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3041 +runtimeId=3081 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3040 +runtimeId=3080 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3033 +runtimeId=3073 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3035 +runtimeId=3075 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1716 +runtimeId=1756 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1718 +runtimeId=1758 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1712 +runtimeId=1752 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1715 +runtimeId=1755 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1722 +runtimeId=1762 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1714 +runtimeId=1754 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1713 +runtimeId=1753 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1720 +runtimeId=1760 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1721 +runtimeId=1761 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1723 +runtimeId=1763 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1725 +runtimeId=1765 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1724 +runtimeId=1764 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1717 +runtimeId=1757 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1719 +runtimeId=1759 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1744 +runtimeId=1784 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1746 +runtimeId=1786 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1740 +runtimeId=1780 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1743 +runtimeId=1783 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1750 +runtimeId=1790 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1742 +runtimeId=1782 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1741 +runtimeId=1781 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1748 +runtimeId=1788 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1749 +runtimeId=1789 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1751 +runtimeId=1791 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1753 +runtimeId=1793 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1752 +runtimeId=1792 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1745 +runtimeId=1785 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1747 +runtimeId=1787 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1772 +runtimeId=1812 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1774 +runtimeId=1814 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1768 +runtimeId=1808 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1771 +runtimeId=1811 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1778 +runtimeId=1818 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1770 +runtimeId=1810 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1769 +runtimeId=1809 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1776 +runtimeId=1816 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1777 +runtimeId=1817 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1779 +runtimeId=1819 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1781 +runtimeId=1821 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1780 +runtimeId=1820 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1773 +runtimeId=1813 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1775 +runtimeId=1815 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2472 +runtimeId=2512 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2474 +runtimeId=2514 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2468 +runtimeId=2508 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2471 +runtimeId=2511 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2478 +runtimeId=2518 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2470 +runtimeId=2510 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2469 +runtimeId=2509 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2476 +runtimeId=2516 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2477 +runtimeId=2517 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2479 +runtimeId=2519 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2481 +runtimeId=2521 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2480 +runtimeId=2520 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2473 +runtimeId=2513 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2475 +runtimeId=2515 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2500 +runtimeId=2540 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2502 +runtimeId=2542 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2496 +runtimeId=2536 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2499 +runtimeId=2539 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2506 +runtimeId=2546 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2498 +runtimeId=2538 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2497 +runtimeId=2537 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2504 +runtimeId=2544 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2505 +runtimeId=2545 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2507 +runtimeId=2547 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2509 +runtimeId=2549 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2508 +runtimeId=2548 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2501 +runtimeId=2541 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2503 +runtimeId=2543 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2528 +runtimeId=2568 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2530 +runtimeId=2570 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2524 +runtimeId=2564 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2527 +runtimeId=2567 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2534 +runtimeId=2574 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2526 +runtimeId=2566 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2525 +runtimeId=2565 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2532 +runtimeId=2572 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2533 +runtimeId=2573 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2535 +runtimeId=2575 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2537 +runtimeId=2577 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2536 +runtimeId=2576 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2529 +runtimeId=2569 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2531 +runtimeId=2571 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3228 +runtimeId=3268 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3230 +runtimeId=3270 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3224 +runtimeId=3264 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3227 +runtimeId=3267 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3234 +runtimeId=3274 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3226 +runtimeId=3266 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3225 +runtimeId=3265 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3232 +runtimeId=3272 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3233 +runtimeId=3273 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3235 +runtimeId=3275 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3237 +runtimeId=3277 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3236 +runtimeId=3276 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3229 +runtimeId=3269 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3231 +runtimeId=3271 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3256 +runtimeId=3296 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3258 +runtimeId=3298 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3252 +runtimeId=3292 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3255 +runtimeId=3295 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3262 +runtimeId=3302 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3254 +runtimeId=3294 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3253 +runtimeId=3293 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3260 +runtimeId=3300 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3261 +runtimeId=3301 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3263 +runtimeId=3303 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3265 +runtimeId=3305 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3264 +runtimeId=3304 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3257 +runtimeId=3297 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3259 +runtimeId=3299 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3284 +runtimeId=3324 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3286 +runtimeId=3326 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3280 +runtimeId=3320 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3283 +runtimeId=3323 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3290 +runtimeId=3330 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3282 +runtimeId=3322 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3281 +runtimeId=3321 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3288 +runtimeId=3328 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3289 +runtimeId=3329 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3291 +runtimeId=3331 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3293 +runtimeId=3333 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3292 +runtimeId=3332 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3285 +runtimeId=3325 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3287 +runtimeId=3327 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1968 +runtimeId=2008 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1970 +runtimeId=2010 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1964 +runtimeId=2004 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1967 +runtimeId=2007 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1974 +runtimeId=2014 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1966 +runtimeId=2006 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1965 +runtimeId=2005 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1972 +runtimeId=2012 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1973 +runtimeId=2013 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1975 +runtimeId=2015 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1977 +runtimeId=2017 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1976 +runtimeId=2016 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1969 +runtimeId=2009 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1971 +runtimeId=2011 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1996 +runtimeId=2036 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1998 +runtimeId=2038 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1992 +runtimeId=2032 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1995 +runtimeId=2035 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2002 +runtimeId=2042 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1994 +runtimeId=2034 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1993 +runtimeId=2033 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2000 +runtimeId=2040 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2001 +runtimeId=2041 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2003 +runtimeId=2043 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2005 +runtimeId=2045 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2004 +runtimeId=2044 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1997 +runtimeId=2037 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1999 +runtimeId=2039 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2024 +runtimeId=2064 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2026 +runtimeId=2066 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2020 +runtimeId=2060 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2023 +runtimeId=2063 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2030 +runtimeId=2070 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2022 +runtimeId=2062 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2021 +runtimeId=2061 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2028 +runtimeId=2068 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2029 +runtimeId=2069 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2031 +runtimeId=2071 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2033 +runtimeId=2073 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2032 +runtimeId=2072 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2025 +runtimeId=2065 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2027 +runtimeId=2067 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2724 +runtimeId=2764 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2726 +runtimeId=2766 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2720 +runtimeId=2760 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2723 +runtimeId=2763 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2730 +runtimeId=2770 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2722 +runtimeId=2762 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2721 +runtimeId=2761 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2728 +runtimeId=2768 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2729 +runtimeId=2769 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2731 +runtimeId=2771 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2733 +runtimeId=2773 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2732 +runtimeId=2772 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2725 +runtimeId=2765 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2727 +runtimeId=2767 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2752 +runtimeId=2792 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2754 +runtimeId=2794 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2748 +runtimeId=2788 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2751 +runtimeId=2791 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2758 +runtimeId=2798 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2750 +runtimeId=2790 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2749 +runtimeId=2789 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2756 +runtimeId=2796 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2757 +runtimeId=2797 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2759 +runtimeId=2799 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2761 +runtimeId=2801 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2760 +runtimeId=2800 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2753 +runtimeId=2793 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2755 +runtimeId=2795 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2780 +runtimeId=2820 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2782 +runtimeId=2822 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2776 +runtimeId=2816 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2779 +runtimeId=2819 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2786 +runtimeId=2826 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2778 +runtimeId=2818 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2777 +runtimeId=2817 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2784 +runtimeId=2824 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2785 +runtimeId=2825 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2787 +runtimeId=2827 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2789 +runtimeId=2829 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2788 +runtimeId=2828 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2781 +runtimeId=2821 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2783 +runtimeId=2823 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3480 +runtimeId=3520 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3482 +runtimeId=3522 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3476 +runtimeId=3516 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3479 +runtimeId=3519 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3486 +runtimeId=3526 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3478 +runtimeId=3518 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3477 +runtimeId=3517 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3484 +runtimeId=3524 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3485 +runtimeId=3525 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3487 +runtimeId=3527 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3489 +runtimeId=3529 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3488 +runtimeId=3528 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3481 +runtimeId=3521 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3483 +runtimeId=3523 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3508 +runtimeId=3548 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3510 +runtimeId=3550 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3504 +runtimeId=3544 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3507 +runtimeId=3547 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3514 +runtimeId=3554 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3506 +runtimeId=3546 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3505 +runtimeId=3545 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3512 +runtimeId=3552 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3513 +runtimeId=3553 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3515 +runtimeId=3555 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3517 +runtimeId=3557 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3516 +runtimeId=3556 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3509 +runtimeId=3549 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3511 +runtimeId=3551 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3536 +runtimeId=3576 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3538 +runtimeId=3578 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3532 +runtimeId=3572 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3535 +runtimeId=3575 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3542 +runtimeId=3582 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3534 +runtimeId=3574 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3533 +runtimeId=3573 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3540 +runtimeId=3580 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3541 +runtimeId=3581 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3543 +runtimeId=3583 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3545 +runtimeId=3585 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3544 +runtimeId=3584 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3537 +runtimeId=3577 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3539 +runtimeId=3579 minecraft:cocoa;age=0;direction=0 blockId=127 -runtimeId=3546 +runtimeId=3586 minecraft:cocoa;age=0;direction=1 blockId=127 -runtimeId=3547 +runtimeId=3587 minecraft:cocoa;age=0;direction=2 blockId=127 -runtimeId=3548 +runtimeId=3588 minecraft:cocoa;age=0;direction=3 blockId=127 -runtimeId=3549 +runtimeId=3589 minecraft:cocoa;age=1;direction=0 blockId=127 -runtimeId=3550 +runtimeId=3590 minecraft:cocoa;age=1;direction=1 blockId=127 -runtimeId=3551 +runtimeId=3591 minecraft:cocoa;age=1;direction=2 blockId=127 -runtimeId=3552 +runtimeId=3592 minecraft:cocoa;age=1;direction=3 blockId=127 -runtimeId=3553 +runtimeId=3593 minecraft:cocoa;age=2;direction=0 blockId=127 -runtimeId=3554 +runtimeId=3594 minecraft:cocoa;age=2;direction=1 blockId=127 -runtimeId=3555 +runtimeId=3595 minecraft:cocoa;age=2;direction=2 blockId=127 -runtimeId=3556 +runtimeId=3596 minecraft:cocoa;age=2;direction=3 blockId=127 -runtimeId=3557 +runtimeId=3597 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=east blockId=204 -runtimeId=3560 +runtimeId=3600 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=north blockId=204 -runtimeId=3561 +runtimeId=3601 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=south blockId=204 -runtimeId=3562 +runtimeId=3602 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=top blockId=204 -runtimeId=3563 +runtimeId=3603 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=unknown blockId=204 -runtimeId=3558 +runtimeId=3598 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=west blockId=204 -runtimeId=3559 +runtimeId=3599 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=east blockId=204 -runtimeId=3566 +runtimeId=3606 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=north blockId=204 -runtimeId=3567 +runtimeId=3607 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=south blockId=204 -runtimeId=3568 +runtimeId=3608 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=top blockId=204 -runtimeId=3569 +runtimeId=3609 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=unknown blockId=204 -runtimeId=3564 +runtimeId=3604 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=west blockId=204 -runtimeId=3565 +runtimeId=3605 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=east blockId=202 -runtimeId=3572 +runtimeId=3612 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=north blockId=202 -runtimeId=3573 +runtimeId=3613 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=south blockId=202 -runtimeId=3574 +runtimeId=3614 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=top blockId=202 -runtimeId=3575 +runtimeId=3615 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=unknown blockId=202 -runtimeId=3570 +runtimeId=3610 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=west blockId=202 -runtimeId=3571 +runtimeId=3611 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=east blockId=202 -runtimeId=3578 +runtimeId=3618 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=north blockId=202 -runtimeId=3579 +runtimeId=3619 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=south blockId=202 -runtimeId=3580 +runtimeId=3620 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=top blockId=202 -runtimeId=3581 +runtimeId=3621 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=unknown blockId=202 -runtimeId=3576 +runtimeId=3616 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=west blockId=202 -runtimeId=3577 +runtimeId=3617 minecraft:command_block;conditional_bit=0;facing_direction=0 blockId=137 -runtimeId=3582 +runtimeId=3622 minecraft:command_block;conditional_bit=0;facing_direction=1 blockId=137 -runtimeId=3583 +runtimeId=3623 minecraft:command_block;conditional_bit=0;facing_direction=2 blockId=137 -runtimeId=3584 +runtimeId=3624 minecraft:command_block;conditional_bit=0;facing_direction=3 blockId=137 -runtimeId=3585 +runtimeId=3625 minecraft:command_block;conditional_bit=0;facing_direction=4 blockId=137 -runtimeId=3586 +runtimeId=3626 minecraft:command_block;conditional_bit=0;facing_direction=5 blockId=137 -runtimeId=3587 +runtimeId=3627 minecraft:command_block;conditional_bit=1;facing_direction=0 blockId=137 -runtimeId=3588 +runtimeId=3628 minecraft:command_block;conditional_bit=1;facing_direction=1 blockId=137 -runtimeId=3589 +runtimeId=3629 minecraft:command_block;conditional_bit=1;facing_direction=2 blockId=137 -runtimeId=3590 +runtimeId=3630 minecraft:command_block;conditional_bit=1;facing_direction=3 blockId=137 -runtimeId=3591 +runtimeId=3631 minecraft:command_block;conditional_bit=1;facing_direction=4 blockId=137 -runtimeId=3592 +runtimeId=3632 minecraft:command_block;conditional_bit=1;facing_direction=5 blockId=137 -runtimeId=3593 +runtimeId=3633 minecraft:composter;composter_fill_level=0 blockId=468 -runtimeId=3594 +runtimeId=3634 minecraft:composter;composter_fill_level=1 blockId=468 -runtimeId=3595 +runtimeId=3635 minecraft:composter;composter_fill_level=2 blockId=468 -runtimeId=3596 +runtimeId=3636 minecraft:composter;composter_fill_level=3 blockId=468 -runtimeId=3597 +runtimeId=3637 minecraft:composter;composter_fill_level=4 blockId=468 -runtimeId=3598 +runtimeId=3638 minecraft:composter;composter_fill_level=5 blockId=468 -runtimeId=3599 +runtimeId=3639 minecraft:composter;composter_fill_level=6 blockId=468 -runtimeId=3600 +runtimeId=3640 minecraft:composter;composter_fill_level=7 blockId=468 -runtimeId=3601 +runtimeId=3641 minecraft:composter;composter_fill_level=8 blockId=468 -runtimeId=3602 +runtimeId=3642 minecraft:concrete;color=black blockId=236 -runtimeId=3618 +runtimeId=3658 minecraft:concrete;color=blue blockId=236 -runtimeId=3614 +runtimeId=3654 minecraft:concrete;color=brown blockId=236 -runtimeId=3615 +runtimeId=3655 minecraft:concrete;color=cyan blockId=236 -runtimeId=3612 +runtimeId=3652 minecraft:concrete;color=gray blockId=236 -runtimeId=3610 +runtimeId=3650 minecraft:concrete;color=green blockId=236 -runtimeId=3616 +runtimeId=3656 minecraft:concrete;color=light_blue blockId=236 -runtimeId=3606 +runtimeId=3646 minecraft:concrete;color=lime blockId=236 -runtimeId=3608 +runtimeId=3648 minecraft:concrete;color=magenta blockId=236 -runtimeId=3605 +runtimeId=3645 minecraft:concrete;color=orange blockId=236 -runtimeId=3604 +runtimeId=3644 minecraft:concrete;color=pink blockId=236 -runtimeId=3609 +runtimeId=3649 minecraft:concrete;color=purple blockId=236 -runtimeId=3613 +runtimeId=3653 minecraft:concrete;color=red blockId=236 -runtimeId=3617 +runtimeId=3657 minecraft:concrete;color=silver blockId=236 -runtimeId=3611 +runtimeId=3651 minecraft:concrete;color=white blockId=236 -runtimeId=3603 +runtimeId=3643 minecraft:concrete;color=yellow blockId=236 -runtimeId=3607 +runtimeId=3647 minecraft:concretePowder;color=black blockId=237 -runtimeId=3634 +runtimeId=3674 minecraft:concretePowder;color=blue blockId=237 -runtimeId=3630 +runtimeId=3670 minecraft:concretePowder;color=brown blockId=237 -runtimeId=3631 +runtimeId=3671 minecraft:concretePowder;color=cyan blockId=237 -runtimeId=3628 +runtimeId=3668 minecraft:concretePowder;color=gray blockId=237 -runtimeId=3626 +runtimeId=3666 minecraft:concretePowder;color=green blockId=237 -runtimeId=3632 +runtimeId=3672 minecraft:concretePowder;color=light_blue blockId=237 -runtimeId=3622 +runtimeId=3662 minecraft:concretePowder;color=lime blockId=237 -runtimeId=3624 +runtimeId=3664 minecraft:concretePowder;color=magenta blockId=237 -runtimeId=3621 +runtimeId=3661 minecraft:concretePowder;color=orange blockId=237 -runtimeId=3620 +runtimeId=3660 minecraft:concretePowder;color=pink blockId=237 -runtimeId=3625 +runtimeId=3665 minecraft:concretePowder;color=purple blockId=237 -runtimeId=3629 +runtimeId=3669 minecraft:concretePowder;color=red blockId=237 -runtimeId=3633 +runtimeId=3673 minecraft:concretePowder;color=silver blockId=237 -runtimeId=3627 +runtimeId=3667 minecraft:concretePowder;color=white blockId=237 -runtimeId=3619 +runtimeId=3659 minecraft:concretePowder;color=yellow blockId=237 -runtimeId=3623 +runtimeId=3663 minecraft:conduit blockId=412 -runtimeId=3635 +runtimeId=3675 minecraft:copper_block blockId=595 -runtimeId=3636 +runtimeId=3676 minecraft:copper_ore blockId=566 -runtimeId=3637 +runtimeId=3677 minecraft:coral;coral_color=blue;dead_bit=0 blockId=386 -runtimeId=3638 +runtimeId=3678 minecraft:coral;coral_color=blue;dead_bit=1 blockId=386 -runtimeId=3643 +runtimeId=3683 minecraft:coral;coral_color=pink;dead_bit=0 blockId=386 -runtimeId=3639 +runtimeId=3679 minecraft:coral;coral_color=pink;dead_bit=1 blockId=386 -runtimeId=3644 +runtimeId=3684 minecraft:coral;coral_color=purple;dead_bit=0 blockId=386 -runtimeId=3640 +runtimeId=3680 minecraft:coral;coral_color=purple;dead_bit=1 blockId=386 -runtimeId=3645 +runtimeId=3685 minecraft:coral;coral_color=red;dead_bit=0 blockId=386 -runtimeId=3641 +runtimeId=3681 minecraft:coral;coral_color=red;dead_bit=1 blockId=386 -runtimeId=3646 +runtimeId=3686 minecraft:coral;coral_color=yellow;dead_bit=0 blockId=386 -runtimeId=3642 +runtimeId=3682 minecraft:coral;coral_color=yellow;dead_bit=1 blockId=386 -runtimeId=3647 +runtimeId=3687 minecraft:coral_block;coral_color=blue;dead_bit=0 blockId=387 -runtimeId=3648 +runtimeId=3688 minecraft:coral_block;coral_color=blue;dead_bit=1 blockId=387 -runtimeId=3653 +runtimeId=3693 minecraft:coral_block;coral_color=pink;dead_bit=0 blockId=387 -runtimeId=3649 +runtimeId=3689 minecraft:coral_block;coral_color=pink;dead_bit=1 blockId=387 -runtimeId=3654 +runtimeId=3694 minecraft:coral_block;coral_color=purple;dead_bit=0 blockId=387 -runtimeId=3650 +runtimeId=3690 minecraft:coral_block;coral_color=purple;dead_bit=1 blockId=387 -runtimeId=3655 +runtimeId=3695 minecraft:coral_block;coral_color=red;dead_bit=0 blockId=387 -runtimeId=3651 +runtimeId=3691 minecraft:coral_block;coral_color=red;dead_bit=1 blockId=387 -runtimeId=3656 +runtimeId=3696 minecraft:coral_block;coral_color=yellow;dead_bit=0 blockId=387 -runtimeId=3652 +runtimeId=3692 minecraft:coral_block;coral_color=yellow;dead_bit=1 blockId=387 -runtimeId=3657 +runtimeId=3697 minecraft:coral_fan;coral_fan_direction=0;coral_color=blue blockId=388 -runtimeId=3658 +runtimeId=3698 minecraft:coral_fan;coral_fan_direction=0;coral_color=pink blockId=388 -runtimeId=3659 +runtimeId=3699 minecraft:coral_fan;coral_fan_direction=0;coral_color=purple blockId=388 -runtimeId=3660 +runtimeId=3700 minecraft:coral_fan;coral_fan_direction=0;coral_color=red blockId=388 -runtimeId=3661 +runtimeId=3701 minecraft:coral_fan;coral_fan_direction=0;coral_color=yellow blockId=388 -runtimeId=3662 +runtimeId=3702 minecraft:coral_fan;coral_fan_direction=1;coral_color=blue blockId=388 -runtimeId=3663 +runtimeId=3703 minecraft:coral_fan;coral_fan_direction=1;coral_color=pink blockId=388 -runtimeId=3664 +runtimeId=3704 minecraft:coral_fan;coral_fan_direction=1;coral_color=purple blockId=388 -runtimeId=3665 +runtimeId=3705 minecraft:coral_fan;coral_fan_direction=1;coral_color=red blockId=388 -runtimeId=3666 +runtimeId=3706 minecraft:coral_fan;coral_fan_direction=1;coral_color=yellow blockId=388 -runtimeId=3667 +runtimeId=3707 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=blue blockId=389 -runtimeId=3668 +runtimeId=3708 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=pink blockId=389 -runtimeId=3669 +runtimeId=3709 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=purple blockId=389 -runtimeId=3670 +runtimeId=3710 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=red blockId=389 -runtimeId=3671 +runtimeId=3711 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=yellow blockId=389 -runtimeId=3672 +runtimeId=3712 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=blue blockId=389 -runtimeId=3673 +runtimeId=3713 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=pink blockId=389 -runtimeId=3674 +runtimeId=3714 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=purple blockId=389 -runtimeId=3675 +runtimeId=3715 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=red blockId=389 -runtimeId=3676 +runtimeId=3716 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=yellow blockId=389 -runtimeId=3677 +runtimeId=3717 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=0;dead_bit=0 blockId=390 -runtimeId=3678 +runtimeId=3718 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=0;dead_bit=1 blockId=390 -runtimeId=3680 +runtimeId=3720 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=1;dead_bit=0 blockId=390 -runtimeId=3682 +runtimeId=3722 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=1;dead_bit=1 blockId=390 -runtimeId=3684 +runtimeId=3724 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=2;dead_bit=0 blockId=390 -runtimeId=3686 +runtimeId=3726 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=2;dead_bit=1 blockId=390 -runtimeId=3688 +runtimeId=3728 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=3;dead_bit=0 blockId=390 -runtimeId=3690 +runtimeId=3730 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=3;dead_bit=1 blockId=390 -runtimeId=3692 +runtimeId=3732 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=0;dead_bit=0 blockId=390 -runtimeId=3679 +runtimeId=3719 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=0;dead_bit=1 blockId=390 -runtimeId=3681 +runtimeId=3721 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=1;dead_bit=0 blockId=390 -runtimeId=3683 +runtimeId=3723 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=1;dead_bit=1 blockId=390 -runtimeId=3685 +runtimeId=3725 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=2;dead_bit=0 blockId=390 -runtimeId=3687 +runtimeId=3727 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=2;dead_bit=1 blockId=390 -runtimeId=3689 +runtimeId=3729 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=3;dead_bit=0 blockId=390 -runtimeId=3691 +runtimeId=3731 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=3;dead_bit=1 blockId=390 -runtimeId=3693 +runtimeId=3733 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=0;dead_bit=0 blockId=391 -runtimeId=3694 +runtimeId=3734 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=0;dead_bit=1 blockId=391 -runtimeId=3696 +runtimeId=3736 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=1;dead_bit=0 blockId=391 -runtimeId=3698 +runtimeId=3738 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=1;dead_bit=1 blockId=391 -runtimeId=3700 +runtimeId=3740 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=2;dead_bit=0 blockId=391 -runtimeId=3702 +runtimeId=3742 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=2;dead_bit=1 blockId=391 -runtimeId=3704 +runtimeId=3744 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=3;dead_bit=0 blockId=391 -runtimeId=3706 +runtimeId=3746 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=3;dead_bit=1 blockId=391 -runtimeId=3708 +runtimeId=3748 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=0;dead_bit=0 blockId=391 -runtimeId=3695 +runtimeId=3735 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=0;dead_bit=1 blockId=391 -runtimeId=3697 +runtimeId=3737 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=1;dead_bit=0 blockId=391 -runtimeId=3699 +runtimeId=3739 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=1;dead_bit=1 blockId=391 -runtimeId=3701 +runtimeId=3741 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=2;dead_bit=0 blockId=391 -runtimeId=3703 +runtimeId=3743 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=2;dead_bit=1 blockId=391 -runtimeId=3705 +runtimeId=3745 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=3;dead_bit=0 blockId=391 -runtimeId=3707 +runtimeId=3747 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=3;dead_bit=1 blockId=391 -runtimeId=3709 +runtimeId=3749 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=0;dead_bit=0 blockId=392 -runtimeId=3710 +runtimeId=3750 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=0;dead_bit=1 blockId=392 -runtimeId=3712 +runtimeId=3752 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=1;dead_bit=0 blockId=392 -runtimeId=3714 +runtimeId=3754 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=1;dead_bit=1 blockId=392 -runtimeId=3716 +runtimeId=3756 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=2;dead_bit=0 blockId=392 -runtimeId=3718 +runtimeId=3758 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=2;dead_bit=1 blockId=392 -runtimeId=3720 +runtimeId=3760 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=3;dead_bit=0 blockId=392 -runtimeId=3722 +runtimeId=3762 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=3;dead_bit=1 blockId=392 -runtimeId=3724 +runtimeId=3764 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=0;dead_bit=0 blockId=392 -runtimeId=3711 +runtimeId=3751 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=0;dead_bit=1 blockId=392 -runtimeId=3713 +runtimeId=3753 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=1;dead_bit=0 blockId=392 -runtimeId=3715 +runtimeId=3755 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=1;dead_bit=1 blockId=392 -runtimeId=3717 +runtimeId=3757 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=2;dead_bit=0 blockId=392 -runtimeId=3719 +runtimeId=3759 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=2;dead_bit=1 blockId=392 -runtimeId=3721 +runtimeId=3761 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=3;dead_bit=0 blockId=392 -runtimeId=3723 +runtimeId=3763 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=3;dead_bit=1 blockId=392 -runtimeId=3725 +runtimeId=3765 minecraft:cracked_deepslate_bricks blockId=665 -runtimeId=3726 +runtimeId=3766 minecraft:cracked_deepslate_tiles blockId=664 -runtimeId=3727 +runtimeId=3767 minecraft:cracked_nether_bricks blockId=558 -runtimeId=3728 +runtimeId=3768 minecraft:cracked_polished_blackstone_bricks blockId=535 -runtimeId=3729 +runtimeId=3769 minecraft:crafting_table blockId=58 -runtimeId=3730 +runtimeId=3770 minecraft:crimson_button;button_pressed_bit=0;facing_direction=0 blockId=515 -runtimeId=3731 +runtimeId=3771 minecraft:crimson_button;button_pressed_bit=0;facing_direction=1 blockId=515 -runtimeId=3732 +runtimeId=3772 minecraft:crimson_button;button_pressed_bit=0;facing_direction=2 blockId=515 -runtimeId=3733 +runtimeId=3773 minecraft:crimson_button;button_pressed_bit=0;facing_direction=3 blockId=515 -runtimeId=3734 +runtimeId=3774 minecraft:crimson_button;button_pressed_bit=0;facing_direction=4 blockId=515 -runtimeId=3735 +runtimeId=3775 minecraft:crimson_button;button_pressed_bit=0;facing_direction=5 blockId=515 -runtimeId=3736 +runtimeId=3776 minecraft:crimson_button;button_pressed_bit=1;facing_direction=0 blockId=515 -runtimeId=3737 +runtimeId=3777 minecraft:crimson_button;button_pressed_bit=1;facing_direction=1 blockId=515 -runtimeId=3738 +runtimeId=3778 minecraft:crimson_button;button_pressed_bit=1;facing_direction=2 blockId=515 -runtimeId=3739 +runtimeId=3779 minecraft:crimson_button;button_pressed_bit=1;facing_direction=3 blockId=515 -runtimeId=3740 +runtimeId=3780 minecraft:crimson_button;button_pressed_bit=1;facing_direction=4 blockId=515 -runtimeId=3741 +runtimeId=3781 minecraft:crimson_button;button_pressed_bit=1;facing_direction=5 blockId=515 -runtimeId=3742 +runtimeId=3782 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=499 -runtimeId=3743 +runtimeId=3783 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=499 -runtimeId=3744 +runtimeId=3784 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=499 -runtimeId=3745 +runtimeId=3785 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=499 -runtimeId=3746 +runtimeId=3786 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=499 -runtimeId=3759 +runtimeId=3799 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=499 -runtimeId=3760 +runtimeId=3800 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=499 -runtimeId=3761 +runtimeId=3801 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=499 -runtimeId=3762 +runtimeId=3802 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=499 -runtimeId=3751 +runtimeId=3791 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=499 -runtimeId=3752 +runtimeId=3792 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=499 -runtimeId=3753 +runtimeId=3793 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=499 -runtimeId=3754 +runtimeId=3794 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=499 -runtimeId=3767 +runtimeId=3807 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=499 -runtimeId=3768 +runtimeId=3808 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=499 -runtimeId=3769 +runtimeId=3809 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=499 -runtimeId=3770 +runtimeId=3810 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=499 -runtimeId=3747 +runtimeId=3787 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=499 -runtimeId=3748 +runtimeId=3788 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=499 -runtimeId=3749 +runtimeId=3789 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=499 -runtimeId=3750 +runtimeId=3790 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=499 -runtimeId=3763 +runtimeId=3803 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=499 -runtimeId=3764 +runtimeId=3804 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=499 -runtimeId=3765 +runtimeId=3805 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=499 -runtimeId=3766 +runtimeId=3806 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=499 -runtimeId=3755 +runtimeId=3795 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=499 -runtimeId=3756 +runtimeId=3796 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=499 -runtimeId=3757 +runtimeId=3797 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=499 -runtimeId=3758 +runtimeId=3798 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=499 -runtimeId=3771 +runtimeId=3811 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=499 -runtimeId=3772 +runtimeId=3812 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=499 -runtimeId=3773 +runtimeId=3813 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=499 -runtimeId=3774 +runtimeId=3814 minecraft:crimson_double_slab;top_slot_bit=0 blockId=521 -runtimeId=3775 +runtimeId=3815 minecraft:crimson_double_slab;top_slot_bit=1 blockId=521 -runtimeId=3776 +runtimeId=3816 minecraft:crimson_fence blockId=511 -runtimeId=3777 +runtimeId=3817 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=513 -runtimeId=3778 +runtimeId=3818 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=513 -runtimeId=3779 +runtimeId=3819 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=513 -runtimeId=3780 +runtimeId=3820 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=513 -runtimeId=3781 +runtimeId=3821 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=513 -runtimeId=3782 +runtimeId=3822 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=513 -runtimeId=3783 +runtimeId=3823 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=513 -runtimeId=3784 +runtimeId=3824 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=513 -runtimeId=3785 +runtimeId=3825 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=513 -runtimeId=3786 +runtimeId=3826 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=513 -runtimeId=3787 +runtimeId=3827 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=513 -runtimeId=3788 +runtimeId=3828 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=513 -runtimeId=3789 +runtimeId=3829 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=513 -runtimeId=3790 +runtimeId=3830 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=513 -runtimeId=3791 +runtimeId=3831 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=513 -runtimeId=3792 +runtimeId=3832 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=513 -runtimeId=3793 +runtimeId=3833 minecraft:crimson_fungus blockId=483 -runtimeId=3794 +runtimeId=3834 minecraft:crimson_hyphae;pillar_axis=x blockId=554 -runtimeId=3796 +runtimeId=3836 minecraft:crimson_hyphae;pillar_axis=y blockId=554 -runtimeId=3795 +runtimeId=3835 minecraft:crimson_hyphae;pillar_axis=z blockId=554 -runtimeId=3797 +runtimeId=3837 minecraft:crimson_nylium blockId=487 -runtimeId=3798 +runtimeId=3838 minecraft:crimson_planks blockId=497 -runtimeId=3799 +runtimeId=3839 minecraft:crimson_pressure_plate;redstone_signal=0 blockId=517 -runtimeId=3800 +runtimeId=3840 minecraft:crimson_pressure_plate;redstone_signal=1 blockId=517 -runtimeId=3801 +runtimeId=3841 minecraft:crimson_pressure_plate;redstone_signal=2 blockId=517 -runtimeId=3802 +runtimeId=3842 minecraft:crimson_pressure_plate;redstone_signal=3 blockId=517 -runtimeId=3803 +runtimeId=3843 minecraft:crimson_pressure_plate;redstone_signal=4 blockId=517 -runtimeId=3804 +runtimeId=3844 minecraft:crimson_pressure_plate;redstone_signal=5 blockId=517 -runtimeId=3805 +runtimeId=3845 minecraft:crimson_pressure_plate;redstone_signal=6 blockId=517 -runtimeId=3806 +runtimeId=3846 minecraft:crimson_pressure_plate;redstone_signal=7 blockId=517 -runtimeId=3807 +runtimeId=3847 minecraft:crimson_pressure_plate;redstone_signal=8 blockId=517 -runtimeId=3808 +runtimeId=3848 minecraft:crimson_pressure_plate;redstone_signal=9 blockId=517 -runtimeId=3809 +runtimeId=3849 minecraft:crimson_pressure_plate;redstone_signal=10 blockId=517 -runtimeId=3810 +runtimeId=3850 minecraft:crimson_pressure_plate;redstone_signal=11 blockId=517 -runtimeId=3811 +runtimeId=3851 minecraft:crimson_pressure_plate;redstone_signal=12 blockId=517 -runtimeId=3812 +runtimeId=3852 minecraft:crimson_pressure_plate;redstone_signal=13 blockId=517 -runtimeId=3813 +runtimeId=3853 minecraft:crimson_pressure_plate;redstone_signal=14 blockId=517 -runtimeId=3814 +runtimeId=3854 minecraft:crimson_pressure_plate;redstone_signal=15 blockId=517 -runtimeId=3815 +runtimeId=3855 minecraft:crimson_roots blockId=478 -runtimeId=3816 +runtimeId=3856 minecraft:crimson_slab;top_slot_bit=0 blockId=519 -runtimeId=3817 +runtimeId=3857 minecraft:crimson_slab;top_slot_bit=1 blockId=519 -runtimeId=3818 +runtimeId=3858 minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=0 blockId=509 -runtimeId=3819 +runtimeId=3859 minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=1 blockId=509 -runtimeId=3820 +runtimeId=3860 minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=2 blockId=509 -runtimeId=3821 +runtimeId=3861 minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=3 blockId=509 -runtimeId=3822 +runtimeId=3862 minecraft:crimson_stairs;upside_down_bit=1;weirdo_direction=0 blockId=509 -runtimeId=3823 +runtimeId=3863 minecraft:crimson_stairs;upside_down_bit=1;weirdo_direction=1 blockId=509 -runtimeId=3824 +runtimeId=3864 minecraft:crimson_stairs;upside_down_bit=1;weirdo_direction=2 blockId=509 -runtimeId=3825 +runtimeId=3865 minecraft:crimson_stairs;upside_down_bit=1;weirdo_direction=3 blockId=509 -runtimeId=3826 +runtimeId=3866 minecraft:crimson_standing_sign;ground_sign_direction=0 blockId=505 -runtimeId=3827 +runtimeId=3867 minecraft:crimson_standing_sign;ground_sign_direction=1 blockId=505 -runtimeId=3828 +runtimeId=3868 minecraft:crimson_standing_sign;ground_sign_direction=2 blockId=505 -runtimeId=3829 +runtimeId=3869 minecraft:crimson_standing_sign;ground_sign_direction=3 blockId=505 -runtimeId=3830 +runtimeId=3870 minecraft:crimson_standing_sign;ground_sign_direction=4 blockId=505 -runtimeId=3831 +runtimeId=3871 minecraft:crimson_standing_sign;ground_sign_direction=5 blockId=505 -runtimeId=3832 +runtimeId=3872 minecraft:crimson_standing_sign;ground_sign_direction=6 blockId=505 -runtimeId=3833 +runtimeId=3873 minecraft:crimson_standing_sign;ground_sign_direction=7 blockId=505 -runtimeId=3834 +runtimeId=3874 minecraft:crimson_standing_sign;ground_sign_direction=8 blockId=505 -runtimeId=3835 +runtimeId=3875 minecraft:crimson_standing_sign;ground_sign_direction=9 blockId=505 -runtimeId=3836 +runtimeId=3876 minecraft:crimson_standing_sign;ground_sign_direction=10 blockId=505 -runtimeId=3837 +runtimeId=3877 minecraft:crimson_standing_sign;ground_sign_direction=11 blockId=505 -runtimeId=3838 +runtimeId=3878 minecraft:crimson_standing_sign;ground_sign_direction=12 blockId=505 -runtimeId=3839 +runtimeId=3879 minecraft:crimson_standing_sign;ground_sign_direction=13 blockId=505 -runtimeId=3840 +runtimeId=3880 minecraft:crimson_standing_sign;ground_sign_direction=14 blockId=505 -runtimeId=3841 +runtimeId=3881 minecraft:crimson_standing_sign;ground_sign_direction=15 blockId=505 -runtimeId=3842 +runtimeId=3882 minecraft:crimson_stem;pillar_axis=x blockId=480 -runtimeId=3844 +runtimeId=3884 minecraft:crimson_stem;pillar_axis=y blockId=480 -runtimeId=3843 +runtimeId=3883 minecraft:crimson_stem;pillar_axis=z blockId=480 -runtimeId=3845 +runtimeId=3885 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=501 -runtimeId=3846 +runtimeId=3886 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=501 -runtimeId=3847 +runtimeId=3887 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=501 -runtimeId=3848 +runtimeId=3888 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=501 -runtimeId=3849 +runtimeId=3889 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=501 -runtimeId=3850 +runtimeId=3890 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=501 -runtimeId=3851 +runtimeId=3891 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=501 -runtimeId=3852 +runtimeId=3892 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=501 -runtimeId=3853 +runtimeId=3893 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=501 -runtimeId=3854 +runtimeId=3894 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=501 -runtimeId=3855 +runtimeId=3895 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=501 -runtimeId=3856 +runtimeId=3896 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=501 -runtimeId=3857 +runtimeId=3897 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=501 -runtimeId=3858 +runtimeId=3898 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=501 -runtimeId=3859 +runtimeId=3899 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=501 -runtimeId=3860 +runtimeId=3900 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=501 -runtimeId=3861 +runtimeId=3901 minecraft:crimson_wall_sign;facing_direction=0 blockId=507 -runtimeId=3862 +runtimeId=3902 minecraft:crimson_wall_sign;facing_direction=1 blockId=507 -runtimeId=3863 +runtimeId=3903 minecraft:crimson_wall_sign;facing_direction=2 blockId=507 -runtimeId=3864 +runtimeId=3904 minecraft:crimson_wall_sign;facing_direction=3 blockId=507 -runtimeId=3865 +runtimeId=3905 minecraft:crimson_wall_sign;facing_direction=4 blockId=507 -runtimeId=3866 +runtimeId=3906 minecraft:crimson_wall_sign;facing_direction=5 blockId=507 -runtimeId=3867 +runtimeId=3907 minecraft:crying_obsidian blockId=544 -runtimeId=3868 +runtimeId=3908 minecraft:cut_copper blockId=602 -runtimeId=3869 +runtimeId=3909 minecraft:cut_copper_slab;top_slot_bit=0 blockId=616 -runtimeId=3870 +runtimeId=3910 minecraft:cut_copper_slab;top_slot_bit=1 blockId=616 -runtimeId=3871 +runtimeId=3911 minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=609 -runtimeId=3872 +runtimeId=3912 minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=609 -runtimeId=3873 +runtimeId=3913 minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=609 -runtimeId=3874 +runtimeId=3914 minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=609 -runtimeId=3875 +runtimeId=3915 minecraft:cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=609 -runtimeId=3876 +runtimeId=3916 minecraft:cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=609 -runtimeId=3877 +runtimeId=3917 minecraft:cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=609 -runtimeId=3878 +runtimeId=3918 minecraft:cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=609 -runtimeId=3879 +runtimeId=3919 + +minecraft:cyan_candle;lit=0;candles=0 +blockId=-1 +runtimeId=3920 + +minecraft:cyan_candle;lit=0;candles=1 +blockId=-1 +runtimeId=3921 + +minecraft:cyan_candle;lit=0;candles=2 +blockId=-1 +runtimeId=3922 + +minecraft:cyan_candle;lit=0;candles=3 +blockId=-1 +runtimeId=3923 + +minecraft:cyan_candle;lit=1;candles=0 +blockId=-1 +runtimeId=3924 + +minecraft:cyan_candle;lit=1;candles=1 +blockId=-1 +runtimeId=3925 + +minecraft:cyan_candle;lit=1;candles=2 +blockId=-1 +runtimeId=3926 + +minecraft:cyan_candle;lit=1;candles=3 +blockId=-1 +runtimeId=3927 + +minecraft:cyan_candle_cake;lit=0 +blockId=-1 +runtimeId=3928 + +minecraft:cyan_candle_cake;lit=1 +blockId=-1 +runtimeId=3929 minecraft:cyan_glazed_terracotta;facing_direction=0 blockId=229 -runtimeId=3880 +runtimeId=3930 minecraft:cyan_glazed_terracotta;facing_direction=1 blockId=229 -runtimeId=3881 +runtimeId=3931 minecraft:cyan_glazed_terracotta;facing_direction=2 blockId=229 -runtimeId=3882 +runtimeId=3932 minecraft:cyan_glazed_terracotta;facing_direction=3 blockId=229 -runtimeId=3883 +runtimeId=3933 minecraft:cyan_glazed_terracotta;facing_direction=4 blockId=229 -runtimeId=3884 +runtimeId=3934 minecraft:cyan_glazed_terracotta;facing_direction=5 blockId=229 -runtimeId=3885 +runtimeId=3935 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=0 blockId=397 -runtimeId=3886 +runtimeId=3936 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=1 blockId=397 -runtimeId=3887 +runtimeId=3937 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=2 blockId=397 -runtimeId=3888 +runtimeId=3938 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=3 blockId=397 -runtimeId=3889 +runtimeId=3939 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=4 blockId=397 -runtimeId=3890 +runtimeId=3940 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=5 blockId=397 -runtimeId=3891 +runtimeId=3941 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=0 blockId=397 -runtimeId=3892 +runtimeId=3942 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=1 blockId=397 -runtimeId=3893 +runtimeId=3943 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=2 blockId=397 -runtimeId=3894 +runtimeId=3944 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=3 blockId=397 -runtimeId=3895 +runtimeId=3945 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=4 blockId=397 -runtimeId=3896 +runtimeId=3946 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=5 blockId=397 -runtimeId=3897 +runtimeId=3947 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=197 -runtimeId=3898 +runtimeId=3948 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=197 -runtimeId=3899 +runtimeId=3949 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=197 -runtimeId=3900 +runtimeId=3950 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=197 -runtimeId=3901 +runtimeId=3951 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=197 -runtimeId=3914 +runtimeId=3964 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=197 -runtimeId=3915 +runtimeId=3965 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=197 -runtimeId=3916 +runtimeId=3966 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=197 -runtimeId=3917 +runtimeId=3967 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=197 -runtimeId=3906 +runtimeId=3956 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=197 -runtimeId=3907 +runtimeId=3957 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=197 -runtimeId=3908 +runtimeId=3958 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=197 -runtimeId=3909 +runtimeId=3959 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=197 -runtimeId=3922 +runtimeId=3972 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=197 -runtimeId=3923 +runtimeId=3973 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=197 -runtimeId=3924 +runtimeId=3974 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=197 -runtimeId=3925 +runtimeId=3975 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=197 -runtimeId=3902 +runtimeId=3952 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=197 -runtimeId=3903 +runtimeId=3953 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=197 -runtimeId=3904 +runtimeId=3954 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=197 -runtimeId=3905 +runtimeId=3955 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=197 -runtimeId=3918 +runtimeId=3968 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=197 -runtimeId=3919 +runtimeId=3969 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=197 -runtimeId=3920 +runtimeId=3970 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=197 -runtimeId=3921 +runtimeId=3971 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=197 -runtimeId=3910 +runtimeId=3960 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=197 -runtimeId=3911 +runtimeId=3961 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=197 -runtimeId=3912 +runtimeId=3962 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=197 -runtimeId=3913 +runtimeId=3963 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=197 -runtimeId=3926 +runtimeId=3976 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=197 -runtimeId=3927 +runtimeId=3977 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=197 -runtimeId=3928 +runtimeId=3978 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=197 -runtimeId=3929 +runtimeId=3979 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=186 -runtimeId=3930 +runtimeId=3980 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=186 -runtimeId=3931 +runtimeId=3981 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=186 -runtimeId=3932 +runtimeId=3982 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=186 -runtimeId=3933 +runtimeId=3983 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=186 -runtimeId=3934 +runtimeId=3984 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=186 -runtimeId=3935 +runtimeId=3985 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=186 -runtimeId=3936 +runtimeId=3986 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=186 -runtimeId=3937 +runtimeId=3987 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=186 -runtimeId=3938 +runtimeId=3988 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=186 -runtimeId=3939 +runtimeId=3989 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=186 -runtimeId=3940 +runtimeId=3990 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=186 -runtimeId=3941 +runtimeId=3991 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=186 -runtimeId=3942 +runtimeId=3992 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=186 -runtimeId=3943 +runtimeId=3993 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=186 -runtimeId=3944 +runtimeId=3994 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=186 -runtimeId=3945 +runtimeId=3995 minecraft:dark_oak_pressure_plate;redstone_signal=0 blockId=407 -runtimeId=3946 +runtimeId=3996 minecraft:dark_oak_pressure_plate;redstone_signal=1 blockId=407 -runtimeId=3947 +runtimeId=3997 minecraft:dark_oak_pressure_plate;redstone_signal=2 blockId=407 -runtimeId=3948 +runtimeId=3998 minecraft:dark_oak_pressure_plate;redstone_signal=3 blockId=407 -runtimeId=3949 +runtimeId=3999 minecraft:dark_oak_pressure_plate;redstone_signal=4 blockId=407 -runtimeId=3950 +runtimeId=4000 minecraft:dark_oak_pressure_plate;redstone_signal=5 blockId=407 -runtimeId=3951 +runtimeId=4001 minecraft:dark_oak_pressure_plate;redstone_signal=6 blockId=407 -runtimeId=3952 +runtimeId=4002 minecraft:dark_oak_pressure_plate;redstone_signal=7 blockId=407 -runtimeId=3953 +runtimeId=4003 minecraft:dark_oak_pressure_plate;redstone_signal=8 blockId=407 -runtimeId=3954 +runtimeId=4004 minecraft:dark_oak_pressure_plate;redstone_signal=9 blockId=407 -runtimeId=3955 +runtimeId=4005 minecraft:dark_oak_pressure_plate;redstone_signal=10 blockId=407 -runtimeId=3956 +runtimeId=4006 minecraft:dark_oak_pressure_plate;redstone_signal=11 blockId=407 -runtimeId=3957 +runtimeId=4007 minecraft:dark_oak_pressure_plate;redstone_signal=12 blockId=407 -runtimeId=3958 +runtimeId=4008 minecraft:dark_oak_pressure_plate;redstone_signal=13 blockId=407 -runtimeId=3959 +runtimeId=4009 minecraft:dark_oak_pressure_plate;redstone_signal=14 blockId=407 -runtimeId=3960 +runtimeId=4010 minecraft:dark_oak_pressure_plate;redstone_signal=15 blockId=407 -runtimeId=3961 +runtimeId=4011 minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=0 blockId=164 -runtimeId=3962 +runtimeId=4012 minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=1 blockId=164 -runtimeId=3963 +runtimeId=4013 minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=2 blockId=164 -runtimeId=3964 +runtimeId=4014 minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=3 blockId=164 -runtimeId=3965 +runtimeId=4015 minecraft:dark_oak_stairs;upside_down_bit=1;weirdo_direction=0 blockId=164 -runtimeId=3966 +runtimeId=4016 minecraft:dark_oak_stairs;upside_down_bit=1;weirdo_direction=1 blockId=164 -runtimeId=3967 +runtimeId=4017 minecraft:dark_oak_stairs;upside_down_bit=1;weirdo_direction=2 blockId=164 -runtimeId=3968 +runtimeId=4018 minecraft:dark_oak_stairs;upside_down_bit=1;weirdo_direction=3 blockId=164 -runtimeId=3969 +runtimeId=4019 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=402 -runtimeId=3970 +runtimeId=4020 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=402 -runtimeId=3971 +runtimeId=4021 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=402 -runtimeId=3972 +runtimeId=4022 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=402 -runtimeId=3973 +runtimeId=4023 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=402 -runtimeId=3974 +runtimeId=4024 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=402 -runtimeId=3975 +runtimeId=4025 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=402 -runtimeId=3976 +runtimeId=4026 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=402 -runtimeId=3977 +runtimeId=4027 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=402 -runtimeId=3978 +runtimeId=4028 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=402 -runtimeId=3979 +runtimeId=4029 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=402 -runtimeId=3980 +runtimeId=4030 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=402 -runtimeId=3981 +runtimeId=4031 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=402 -runtimeId=3982 +runtimeId=4032 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=402 -runtimeId=3983 +runtimeId=4033 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=402 -runtimeId=3984 +runtimeId=4034 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=402 -runtimeId=3985 +runtimeId=4035 minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=0 blockId=258 -runtimeId=3986 +runtimeId=4036 minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=1 blockId=258 -runtimeId=3987 +runtimeId=4037 minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=2 blockId=258 -runtimeId=3988 +runtimeId=4038 minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=3 blockId=258 -runtimeId=3989 +runtimeId=4039 minecraft:dark_prismarine_stairs;upside_down_bit=1;weirdo_direction=0 blockId=258 -runtimeId=3990 +runtimeId=4040 minecraft:dark_prismarine_stairs;upside_down_bit=1;weirdo_direction=1 blockId=258 -runtimeId=3991 +runtimeId=4041 minecraft:dark_prismarine_stairs;upside_down_bit=1;weirdo_direction=2 blockId=258 -runtimeId=3992 +runtimeId=4042 minecraft:dark_prismarine_stairs;upside_down_bit=1;weirdo_direction=3 blockId=258 -runtimeId=3993 +runtimeId=4043 minecraft:darkoak_standing_sign;ground_sign_direction=0 blockId=447 -runtimeId=3994 +runtimeId=4044 minecraft:darkoak_standing_sign;ground_sign_direction=1 blockId=447 -runtimeId=3995 +runtimeId=4045 minecraft:darkoak_standing_sign;ground_sign_direction=2 blockId=447 -runtimeId=3996 +runtimeId=4046 minecraft:darkoak_standing_sign;ground_sign_direction=3 blockId=447 -runtimeId=3997 +runtimeId=4047 minecraft:darkoak_standing_sign;ground_sign_direction=4 blockId=447 -runtimeId=3998 +runtimeId=4048 minecraft:darkoak_standing_sign;ground_sign_direction=5 blockId=447 -runtimeId=3999 +runtimeId=4049 minecraft:darkoak_standing_sign;ground_sign_direction=6 blockId=447 -runtimeId=4000 +runtimeId=4050 minecraft:darkoak_standing_sign;ground_sign_direction=7 blockId=447 -runtimeId=4001 +runtimeId=4051 minecraft:darkoak_standing_sign;ground_sign_direction=8 blockId=447 -runtimeId=4002 +runtimeId=4052 minecraft:darkoak_standing_sign;ground_sign_direction=9 blockId=447 -runtimeId=4003 +runtimeId=4053 minecraft:darkoak_standing_sign;ground_sign_direction=10 blockId=447 -runtimeId=4004 +runtimeId=4054 minecraft:darkoak_standing_sign;ground_sign_direction=11 blockId=447 -runtimeId=4005 +runtimeId=4055 minecraft:darkoak_standing_sign;ground_sign_direction=12 blockId=447 -runtimeId=4006 +runtimeId=4056 minecraft:darkoak_standing_sign;ground_sign_direction=13 blockId=447 -runtimeId=4007 +runtimeId=4057 minecraft:darkoak_standing_sign;ground_sign_direction=14 blockId=447 -runtimeId=4008 +runtimeId=4058 minecraft:darkoak_standing_sign;ground_sign_direction=15 blockId=447 -runtimeId=4009 +runtimeId=4059 minecraft:darkoak_wall_sign;facing_direction=0 blockId=448 -runtimeId=4010 +runtimeId=4060 minecraft:darkoak_wall_sign;facing_direction=1 blockId=448 -runtimeId=4011 +runtimeId=4061 minecraft:darkoak_wall_sign;facing_direction=2 blockId=448 -runtimeId=4012 +runtimeId=4062 minecraft:darkoak_wall_sign;facing_direction=3 blockId=448 -runtimeId=4013 +runtimeId=4063 minecraft:darkoak_wall_sign;facing_direction=4 blockId=448 -runtimeId=4014 +runtimeId=4064 minecraft:darkoak_wall_sign;facing_direction=5 blockId=448 -runtimeId=4015 +runtimeId=4065 minecraft:daylight_detector;redstone_signal=0 blockId=151 -runtimeId=4016 +runtimeId=4066 minecraft:daylight_detector;redstone_signal=1 blockId=151 -runtimeId=4017 +runtimeId=4067 minecraft:daylight_detector;redstone_signal=2 blockId=151 -runtimeId=4018 +runtimeId=4068 minecraft:daylight_detector;redstone_signal=3 blockId=151 -runtimeId=4019 +runtimeId=4069 minecraft:daylight_detector;redstone_signal=4 blockId=151 -runtimeId=4020 +runtimeId=4070 minecraft:daylight_detector;redstone_signal=5 blockId=151 -runtimeId=4021 +runtimeId=4071 minecraft:daylight_detector;redstone_signal=6 blockId=151 -runtimeId=4022 +runtimeId=4072 minecraft:daylight_detector;redstone_signal=7 blockId=151 -runtimeId=4023 +runtimeId=4073 minecraft:daylight_detector;redstone_signal=8 blockId=151 -runtimeId=4024 +runtimeId=4074 minecraft:daylight_detector;redstone_signal=9 blockId=151 -runtimeId=4025 +runtimeId=4075 minecraft:daylight_detector;redstone_signal=10 blockId=151 -runtimeId=4026 +runtimeId=4076 minecraft:daylight_detector;redstone_signal=11 blockId=151 -runtimeId=4027 +runtimeId=4077 minecraft:daylight_detector;redstone_signal=12 blockId=151 -runtimeId=4028 +runtimeId=4078 minecraft:daylight_detector;redstone_signal=13 blockId=151 -runtimeId=4029 +runtimeId=4079 minecraft:daylight_detector;redstone_signal=14 blockId=151 -runtimeId=4030 +runtimeId=4080 minecraft:daylight_detector;redstone_signal=15 blockId=151 -runtimeId=4031 +runtimeId=4081 minecraft:daylight_detector_inverted;redstone_signal=0 blockId=178 -runtimeId=4032 +runtimeId=4082 minecraft:daylight_detector_inverted;redstone_signal=1 blockId=178 -runtimeId=4033 +runtimeId=4083 minecraft:daylight_detector_inverted;redstone_signal=2 blockId=178 -runtimeId=4034 +runtimeId=4084 minecraft:daylight_detector_inverted;redstone_signal=3 blockId=178 -runtimeId=4035 +runtimeId=4085 minecraft:daylight_detector_inverted;redstone_signal=4 blockId=178 -runtimeId=4036 +runtimeId=4086 minecraft:daylight_detector_inverted;redstone_signal=5 blockId=178 -runtimeId=4037 +runtimeId=4087 minecraft:daylight_detector_inverted;redstone_signal=6 blockId=178 -runtimeId=4038 +runtimeId=4088 minecraft:daylight_detector_inverted;redstone_signal=7 blockId=178 -runtimeId=4039 +runtimeId=4089 minecraft:daylight_detector_inverted;redstone_signal=8 blockId=178 -runtimeId=4040 +runtimeId=4090 minecraft:daylight_detector_inverted;redstone_signal=9 blockId=178 -runtimeId=4041 +runtimeId=4091 minecraft:daylight_detector_inverted;redstone_signal=10 blockId=178 -runtimeId=4042 +runtimeId=4092 minecraft:daylight_detector_inverted;redstone_signal=11 blockId=178 -runtimeId=4043 +runtimeId=4093 minecraft:daylight_detector_inverted;redstone_signal=12 blockId=178 -runtimeId=4044 +runtimeId=4094 minecraft:daylight_detector_inverted;redstone_signal=13 blockId=178 -runtimeId=4045 +runtimeId=4095 minecraft:daylight_detector_inverted;redstone_signal=14 blockId=178 -runtimeId=4046 +runtimeId=4096 minecraft:daylight_detector_inverted;redstone_signal=15 blockId=178 -runtimeId=4047 +runtimeId=4097 minecraft:deadbush blockId=32 -runtimeId=4048 +runtimeId=4098 minecraft:deepslate;pillar_axis=x blockId=633 -runtimeId=4050 +runtimeId=4100 minecraft:deepslate;pillar_axis=y blockId=633 -runtimeId=4049 +runtimeId=4099 minecraft:deepslate;pillar_axis=z blockId=633 -runtimeId=4051 +runtimeId=4101 minecraft:deepslate_brick_double_slab;top_slot_bit=0 blockId=654 -runtimeId=4052 +runtimeId=4102 minecraft:deepslate_brick_double_slab;top_slot_bit=1 blockId=654 -runtimeId=4053 +runtimeId=4103 minecraft:deepslate_brick_slab;top_slot_bit=0 blockId=647 -runtimeId=4054 +runtimeId=4104 minecraft:deepslate_brick_slab;top_slot_bit=1 blockId=647 -runtimeId=4055 +runtimeId=4105 minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=648 -runtimeId=4056 +runtimeId=4106 minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=648 -runtimeId=4057 +runtimeId=4107 minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=648 -runtimeId=4058 +runtimeId=4108 minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=648 -runtimeId=4059 +runtimeId=4109 minecraft:deepslate_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=648 -runtimeId=4060 +runtimeId=4110 minecraft:deepslate_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=648 -runtimeId=4061 +runtimeId=4111 minecraft:deepslate_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=648 -runtimeId=4062 +runtimeId=4112 minecraft:deepslate_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=648 -runtimeId=4063 +runtimeId=4113 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4064 +runtimeId=4114 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4066 +runtimeId=4116 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4068 +runtimeId=4118 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4118 +runtimeId=4168 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4120 +runtimeId=4170 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4122 +runtimeId=4172 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4172 +runtimeId=4222 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4174 +runtimeId=4224 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4176 +runtimeId=4226 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4082 +runtimeId=4132 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4084 +runtimeId=4134 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4086 +runtimeId=4136 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4136 +runtimeId=4186 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4138 +runtimeId=4188 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4140 +runtimeId=4190 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4190 +runtimeId=4240 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4192 +runtimeId=4242 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4194 +runtimeId=4244 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4100 +runtimeId=4150 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4102 +runtimeId=4152 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4104 +runtimeId=4154 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4154 +runtimeId=4204 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4156 +runtimeId=4206 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4158 +runtimeId=4208 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4208 +runtimeId=4258 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4210 +runtimeId=4260 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4212 +runtimeId=4262 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4065 +runtimeId=4115 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4067 +runtimeId=4117 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4069 +runtimeId=4119 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4119 +runtimeId=4169 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4121 +runtimeId=4171 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4123 +runtimeId=4173 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4173 +runtimeId=4223 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4175 +runtimeId=4225 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4177 +runtimeId=4227 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4083 +runtimeId=4133 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4085 +runtimeId=4135 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4087 +runtimeId=4137 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4137 +runtimeId=4187 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4139 +runtimeId=4189 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4141 +runtimeId=4191 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4191 +runtimeId=4241 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4193 +runtimeId=4243 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4195 +runtimeId=4245 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4101 +runtimeId=4151 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4103 +runtimeId=4153 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4105 +runtimeId=4155 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4155 +runtimeId=4205 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4157 +runtimeId=4207 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4159 +runtimeId=4209 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4209 +runtimeId=4259 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4211 +runtimeId=4261 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4213 +runtimeId=4263 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4070 +runtimeId=4120 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4072 +runtimeId=4122 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4074 +runtimeId=4124 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4124 +runtimeId=4174 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4126 +runtimeId=4176 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4128 +runtimeId=4178 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4178 +runtimeId=4228 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4180 +runtimeId=4230 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4182 +runtimeId=4232 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4088 +runtimeId=4138 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4090 +runtimeId=4140 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4092 +runtimeId=4142 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4142 +runtimeId=4192 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4144 +runtimeId=4194 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4146 +runtimeId=4196 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4196 +runtimeId=4246 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4198 +runtimeId=4248 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4200 +runtimeId=4250 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4106 +runtimeId=4156 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4108 +runtimeId=4158 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4110 +runtimeId=4160 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4160 +runtimeId=4210 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4162 +runtimeId=4212 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4164 +runtimeId=4214 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4214 +runtimeId=4264 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4216 +runtimeId=4266 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4218 +runtimeId=4268 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4071 +runtimeId=4121 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4073 +runtimeId=4123 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4075 +runtimeId=4125 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4125 +runtimeId=4175 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4127 +runtimeId=4177 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4129 +runtimeId=4179 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4179 +runtimeId=4229 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4181 +runtimeId=4231 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4183 +runtimeId=4233 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4089 +runtimeId=4139 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4091 +runtimeId=4141 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4093 +runtimeId=4143 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4143 +runtimeId=4193 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4145 +runtimeId=4195 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4147 +runtimeId=4197 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4197 +runtimeId=4247 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4199 +runtimeId=4249 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4201 +runtimeId=4251 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4107 +runtimeId=4157 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4109 +runtimeId=4159 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4111 +runtimeId=4161 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4161 +runtimeId=4211 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4163 +runtimeId=4213 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4165 +runtimeId=4215 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4215 +runtimeId=4265 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4217 +runtimeId=4267 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4219 +runtimeId=4269 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4076 +runtimeId=4126 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4078 +runtimeId=4128 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4080 +runtimeId=4130 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4130 +runtimeId=4180 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4132 +runtimeId=4182 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4134 +runtimeId=4184 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4184 +runtimeId=4234 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4186 +runtimeId=4236 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4188 +runtimeId=4238 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4094 +runtimeId=4144 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4096 +runtimeId=4146 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4098 +runtimeId=4148 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4148 +runtimeId=4198 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4150 +runtimeId=4200 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4152 +runtimeId=4202 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4202 +runtimeId=4252 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4204 +runtimeId=4254 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4206 +runtimeId=4256 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4112 +runtimeId=4162 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4114 +runtimeId=4164 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4116 +runtimeId=4166 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4166 +runtimeId=4216 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4168 +runtimeId=4218 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4170 +runtimeId=4220 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4220 +runtimeId=4270 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4222 +runtimeId=4272 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4224 +runtimeId=4274 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4077 +runtimeId=4127 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4079 +runtimeId=4129 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4081 +runtimeId=4131 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4131 +runtimeId=4181 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4133 +runtimeId=4183 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4135 +runtimeId=4185 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4185 +runtimeId=4235 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4187 +runtimeId=4237 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4189 +runtimeId=4239 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4095 +runtimeId=4145 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4097 +runtimeId=4147 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4099 +runtimeId=4149 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4149 +runtimeId=4199 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4151 +runtimeId=4201 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4153 +runtimeId=4203 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4203 +runtimeId=4253 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4205 +runtimeId=4255 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4207 +runtimeId=4257 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4113 +runtimeId=4163 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4115 +runtimeId=4165 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4117 +runtimeId=4167 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4167 +runtimeId=4217 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4169 +runtimeId=4219 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4171 +runtimeId=4221 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4221 +runtimeId=4271 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4223 +runtimeId=4273 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4225 +runtimeId=4275 minecraft:deepslate_bricks blockId=646 -runtimeId=4226 +runtimeId=4276 minecraft:deepslate_coal_ore blockId=661 -runtimeId=4227 +runtimeId=4277 minecraft:deepslate_copper_ore blockId=663 -runtimeId=4228 +runtimeId=4278 minecraft:deepslate_diamond_ore blockId=660 -runtimeId=4229 +runtimeId=4279 minecraft:deepslate_emerald_ore blockId=662 -runtimeId=4230 +runtimeId=4280 minecraft:deepslate_gold_ore blockId=657 -runtimeId=4231 +runtimeId=4281 minecraft:deepslate_iron_ore blockId=656 -runtimeId=4232 +runtimeId=4282 minecraft:deepslate_lapis_ore blockId=655 -runtimeId=4233 +runtimeId=4283 minecraft:deepslate_redstone_ore blockId=658 -runtimeId=4234 +runtimeId=4284 minecraft:deepslate_tile_double_slab;top_slot_bit=0 blockId=653 -runtimeId=4235 +runtimeId=4285 minecraft:deepslate_tile_double_slab;top_slot_bit=1 blockId=653 -runtimeId=4236 +runtimeId=4286 minecraft:deepslate_tile_slab;top_slot_bit=0 blockId=643 -runtimeId=4237 +runtimeId=4287 minecraft:deepslate_tile_slab;top_slot_bit=1 blockId=643 -runtimeId=4238 +runtimeId=4288 minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=0 blockId=644 -runtimeId=4239 +runtimeId=4289 minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=1 blockId=644 -runtimeId=4240 +runtimeId=4290 minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=2 blockId=644 -runtimeId=4241 +runtimeId=4291 minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=3 blockId=644 -runtimeId=4242 +runtimeId=4292 minecraft:deepslate_tile_stairs;upside_down_bit=1;weirdo_direction=0 blockId=644 -runtimeId=4243 +runtimeId=4293 minecraft:deepslate_tile_stairs;upside_down_bit=1;weirdo_direction=1 blockId=644 -runtimeId=4244 +runtimeId=4294 minecraft:deepslate_tile_stairs;upside_down_bit=1;weirdo_direction=2 blockId=644 -runtimeId=4245 +runtimeId=4295 minecraft:deepslate_tile_stairs;upside_down_bit=1;weirdo_direction=3 blockId=644 -runtimeId=4246 +runtimeId=4296 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4247 +runtimeId=4297 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4249 +runtimeId=4299 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4251 +runtimeId=4301 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4301 +runtimeId=4351 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4303 +runtimeId=4353 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4305 +runtimeId=4355 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4355 +runtimeId=4405 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4357 +runtimeId=4407 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4359 +runtimeId=4409 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4265 +runtimeId=4315 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4267 +runtimeId=4317 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4269 +runtimeId=4319 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4319 +runtimeId=4369 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4321 +runtimeId=4371 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4323 +runtimeId=4373 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4373 +runtimeId=4423 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4375 +runtimeId=4425 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4377 +runtimeId=4427 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4283 +runtimeId=4333 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4285 +runtimeId=4335 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4287 +runtimeId=4337 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4337 +runtimeId=4387 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4339 +runtimeId=4389 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4341 +runtimeId=4391 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4391 +runtimeId=4441 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4393 +runtimeId=4443 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4395 +runtimeId=4445 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4248 +runtimeId=4298 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4250 +runtimeId=4300 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4252 +runtimeId=4302 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4302 +runtimeId=4352 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4304 +runtimeId=4354 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4306 +runtimeId=4356 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4356 +runtimeId=4406 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4358 +runtimeId=4408 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4360 +runtimeId=4410 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4266 +runtimeId=4316 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4268 +runtimeId=4318 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4270 +runtimeId=4320 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4320 +runtimeId=4370 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4322 +runtimeId=4372 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4324 +runtimeId=4374 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4374 +runtimeId=4424 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4376 +runtimeId=4426 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4378 +runtimeId=4428 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4284 +runtimeId=4334 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4286 +runtimeId=4336 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4288 +runtimeId=4338 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4338 +runtimeId=4388 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4340 +runtimeId=4390 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4342 +runtimeId=4392 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4392 +runtimeId=4442 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4394 +runtimeId=4444 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4396 +runtimeId=4446 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4253 +runtimeId=4303 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4255 +runtimeId=4305 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4257 +runtimeId=4307 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4307 +runtimeId=4357 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4309 +runtimeId=4359 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4311 +runtimeId=4361 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4361 +runtimeId=4411 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4363 +runtimeId=4413 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4365 +runtimeId=4415 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4271 +runtimeId=4321 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4273 +runtimeId=4323 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4275 +runtimeId=4325 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4325 +runtimeId=4375 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4327 +runtimeId=4377 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4329 +runtimeId=4379 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4379 +runtimeId=4429 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4381 +runtimeId=4431 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4383 +runtimeId=4433 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4289 +runtimeId=4339 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4291 +runtimeId=4341 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4293 +runtimeId=4343 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4343 +runtimeId=4393 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4345 +runtimeId=4395 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4347 +runtimeId=4397 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4397 +runtimeId=4447 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4399 +runtimeId=4449 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4401 +runtimeId=4451 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4254 +runtimeId=4304 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4256 +runtimeId=4306 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4258 +runtimeId=4308 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4308 +runtimeId=4358 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4310 +runtimeId=4360 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4312 +runtimeId=4362 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4362 +runtimeId=4412 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4364 +runtimeId=4414 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4366 +runtimeId=4416 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4272 +runtimeId=4322 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4274 +runtimeId=4324 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4276 +runtimeId=4326 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4326 +runtimeId=4376 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4328 +runtimeId=4378 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4330 +runtimeId=4380 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4380 +runtimeId=4430 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4382 +runtimeId=4432 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4384 +runtimeId=4434 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4290 +runtimeId=4340 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4292 +runtimeId=4342 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4294 +runtimeId=4344 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4344 +runtimeId=4394 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4346 +runtimeId=4396 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4348 +runtimeId=4398 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4398 +runtimeId=4448 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4400 +runtimeId=4450 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4402 +runtimeId=4452 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4259 +runtimeId=4309 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4261 +runtimeId=4311 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4263 +runtimeId=4313 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4313 +runtimeId=4363 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4315 +runtimeId=4365 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4317 +runtimeId=4367 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4367 +runtimeId=4417 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4369 +runtimeId=4419 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4371 +runtimeId=4421 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4277 +runtimeId=4327 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4279 +runtimeId=4329 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4281 +runtimeId=4331 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4331 +runtimeId=4381 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4333 +runtimeId=4383 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4335 +runtimeId=4385 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4385 +runtimeId=4435 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4387 +runtimeId=4437 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4389 +runtimeId=4439 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4295 +runtimeId=4345 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4297 +runtimeId=4347 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4299 +runtimeId=4349 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4349 +runtimeId=4399 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4351 +runtimeId=4401 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4353 +runtimeId=4403 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4403 +runtimeId=4453 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4405 +runtimeId=4455 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4407 +runtimeId=4457 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4260 +runtimeId=4310 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4262 +runtimeId=4312 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4264 +runtimeId=4314 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4314 +runtimeId=4364 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4316 +runtimeId=4366 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4318 +runtimeId=4368 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4368 +runtimeId=4418 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4370 +runtimeId=4420 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4372 +runtimeId=4422 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4278 +runtimeId=4328 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4280 +runtimeId=4330 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4282 +runtimeId=4332 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4332 +runtimeId=4382 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4334 +runtimeId=4384 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4336 +runtimeId=4386 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4386 +runtimeId=4436 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4388 +runtimeId=4438 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4390 +runtimeId=4440 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4296 +runtimeId=4346 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4298 +runtimeId=4348 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4300 +runtimeId=4350 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4350 +runtimeId=4400 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4352 +runtimeId=4402 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4354 +runtimeId=4404 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4404 +runtimeId=4454 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4406 +runtimeId=4456 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4408 +runtimeId=4458 minecraft:deepslate_tiles blockId=642 -runtimeId=4409 +runtimeId=4459 minecraft:deny blockId=211 -runtimeId=4410 +runtimeId=4460 minecraft:detector_rail;rail_direction=0;rail_data_bit=0 blockId=28 -runtimeId=4411 +runtimeId=4461 minecraft:detector_rail;rail_direction=0;rail_data_bit=1 blockId=28 -runtimeId=4417 +runtimeId=4467 minecraft:detector_rail;rail_direction=1;rail_data_bit=0 blockId=28 -runtimeId=4412 +runtimeId=4462 minecraft:detector_rail;rail_direction=1;rail_data_bit=1 blockId=28 -runtimeId=4418 +runtimeId=4468 minecraft:detector_rail;rail_direction=2;rail_data_bit=0 blockId=28 -runtimeId=4413 +runtimeId=4463 minecraft:detector_rail;rail_direction=2;rail_data_bit=1 blockId=28 -runtimeId=4419 +runtimeId=4469 minecraft:detector_rail;rail_direction=3;rail_data_bit=0 blockId=28 -runtimeId=4414 +runtimeId=4464 minecraft:detector_rail;rail_direction=3;rail_data_bit=1 blockId=28 -runtimeId=4420 +runtimeId=4470 minecraft:detector_rail;rail_direction=4;rail_data_bit=0 blockId=28 -runtimeId=4415 +runtimeId=4465 minecraft:detector_rail;rail_direction=4;rail_data_bit=1 blockId=28 -runtimeId=4421 +runtimeId=4471 minecraft:detector_rail;rail_direction=5;rail_data_bit=0 blockId=28 -runtimeId=4416 +runtimeId=4466 minecraft:detector_rail;rail_direction=5;rail_data_bit=1 blockId=28 -runtimeId=4422 +runtimeId=4472 minecraft:diamond_block blockId=57 -runtimeId=4423 +runtimeId=4473 minecraft:diamond_ore blockId=56 -runtimeId=4424 +runtimeId=4474 minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=425 -runtimeId=4425 +runtimeId=4475 minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=425 -runtimeId=4426 +runtimeId=4476 minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=425 -runtimeId=4427 +runtimeId=4477 minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=425 -runtimeId=4428 +runtimeId=4478 minecraft:diorite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=425 -runtimeId=4429 +runtimeId=4479 minecraft:diorite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=425 -runtimeId=4430 +runtimeId=4480 minecraft:diorite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=425 -runtimeId=4431 +runtimeId=4481 minecraft:diorite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=425 -runtimeId=4432 +runtimeId=4482 minecraft:dirt;dirt_type=coarse blockId=3 -runtimeId=4434 +runtimeId=4484 minecraft:dirt;dirt_type=normal blockId=3 -runtimeId=4433 +runtimeId=4483 minecraft:dirt_with_roots blockId=573 -runtimeId=4435 +runtimeId=4485 minecraft:dispenser;facing_direction=0;triggered_bit=0 blockId=23 -runtimeId=4436 +runtimeId=4486 minecraft:dispenser;facing_direction=0;triggered_bit=1 blockId=23 -runtimeId=4442 +runtimeId=4492 minecraft:dispenser;facing_direction=1;triggered_bit=0 blockId=23 -runtimeId=4437 +runtimeId=4487 minecraft:dispenser;facing_direction=1;triggered_bit=1 blockId=23 -runtimeId=4443 +runtimeId=4493 minecraft:dispenser;facing_direction=2;triggered_bit=0 blockId=23 -runtimeId=4438 +runtimeId=4488 minecraft:dispenser;facing_direction=2;triggered_bit=1 blockId=23 -runtimeId=4444 +runtimeId=4494 minecraft:dispenser;facing_direction=3;triggered_bit=0 blockId=23 -runtimeId=4439 +runtimeId=4489 minecraft:dispenser;facing_direction=3;triggered_bit=1 blockId=23 -runtimeId=4445 +runtimeId=4495 minecraft:dispenser;facing_direction=4;triggered_bit=0 blockId=23 -runtimeId=4440 +runtimeId=4490 minecraft:dispenser;facing_direction=4;triggered_bit=1 blockId=23 -runtimeId=4446 +runtimeId=4496 minecraft:dispenser;facing_direction=5;triggered_bit=0 blockId=23 -runtimeId=4441 +runtimeId=4491 minecraft:dispenser;facing_direction=5;triggered_bit=1 blockId=23 -runtimeId=4447 +runtimeId=4497 minecraft:double_cut_copper_slab;top_slot_bit=0 blockId=623 -runtimeId=4448 +runtimeId=4498 minecraft:double_cut_copper_slab;top_slot_bit=1 blockId=623 -runtimeId=4449 +runtimeId=4499 minecraft:double_plant;upper_block_bit=0;double_plant_type=fern blockId=175 -runtimeId=4453 +runtimeId=4503 minecraft:double_plant;upper_block_bit=0;double_plant_type=grass blockId=175 -runtimeId=4452 +runtimeId=4502 minecraft:double_plant;upper_block_bit=0;double_plant_type=paeonia blockId=175 -runtimeId=4455 +runtimeId=4505 minecraft:double_plant;upper_block_bit=0;double_plant_type=rose blockId=175 -runtimeId=4454 +runtimeId=4504 minecraft:double_plant;upper_block_bit=0;double_plant_type=sunflower blockId=175 -runtimeId=4450 +runtimeId=4500 minecraft:double_plant;upper_block_bit=0;double_plant_type=syringa blockId=175 -runtimeId=4451 +runtimeId=4501 minecraft:double_plant;upper_block_bit=1;double_plant_type=fern blockId=175 -runtimeId=4459 +runtimeId=4509 minecraft:double_plant;upper_block_bit=1;double_plant_type=grass blockId=175 -runtimeId=4458 +runtimeId=4508 minecraft:double_plant;upper_block_bit=1;double_plant_type=paeonia blockId=175 -runtimeId=4461 +runtimeId=4511 minecraft:double_plant;upper_block_bit=1;double_plant_type=rose blockId=175 -runtimeId=4460 +runtimeId=4510 minecraft:double_plant;upper_block_bit=1;double_plant_type=sunflower blockId=175 -runtimeId=4456 +runtimeId=4506 minecraft:double_plant;upper_block_bit=1;double_plant_type=syringa blockId=175 -runtimeId=4457 +runtimeId=4507 minecraft:double_stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0 blockId=181 -runtimeId=4483 +runtimeId=4533 minecraft:double_stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=1 blockId=181 -runtimeId=4491 +runtimeId=4541 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0 blockId=181 -runtimeId=4482 +runtimeId=4532 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=1 blockId=181 -runtimeId=4490 +runtimeId=4540 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0 blockId=181 -runtimeId=4481 +runtimeId=4531 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=1 blockId=181 -runtimeId=4489 +runtimeId=4539 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0 blockId=181 -runtimeId=4480 +runtimeId=4530 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=1 blockId=181 -runtimeId=4488 +runtimeId=4538 minecraft:double_stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0 blockId=181 -runtimeId=4479 +runtimeId=4529 minecraft:double_stone_slab2;stone_slab_type_2=purpur;top_slot_bit=1 blockId=181 -runtimeId=4487 +runtimeId=4537 minecraft:double_stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0 blockId=181 -runtimeId=4485 +runtimeId=4535 minecraft:double_stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=1 blockId=181 -runtimeId=4493 +runtimeId=4543 minecraft:double_stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0 blockId=181 -runtimeId=4478 +runtimeId=4528 minecraft:double_stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=1 blockId=181 -runtimeId=4486 +runtimeId=4536 minecraft:double_stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0 blockId=181 -runtimeId=4484 +runtimeId=4534 minecraft:double_stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=1 blockId=181 -runtimeId=4492 +runtimeId=4542 minecraft:double_stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0 blockId=422 -runtimeId=4497 +runtimeId=4547 minecraft:double_stone_slab3;stone_slab_type_3=andesite;top_slot_bit=1 blockId=422 -runtimeId=4505 +runtimeId=4555 minecraft:double_stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0 blockId=422 -runtimeId=4498 +runtimeId=4548 minecraft:double_stone_slab3;stone_slab_type_3=diorite;top_slot_bit=1 blockId=422 -runtimeId=4506 +runtimeId=4556 minecraft:double_stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0 blockId=422 -runtimeId=4494 +runtimeId=4544 minecraft:double_stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=1 blockId=422 -runtimeId=4502 +runtimeId=4552 minecraft:double_stone_slab3;stone_slab_type_3=granite;top_slot_bit=0 blockId=422 -runtimeId=4500 +runtimeId=4550 minecraft:double_stone_slab3;stone_slab_type_3=granite;top_slot_bit=1 blockId=422 -runtimeId=4508 +runtimeId=4558 minecraft:double_stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0 blockId=422 -runtimeId=4496 +runtimeId=4546 minecraft:double_stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=1 blockId=422 -runtimeId=4504 +runtimeId=4554 minecraft:double_stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0 blockId=422 -runtimeId=4499 +runtimeId=4549 minecraft:double_stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=1 blockId=422 -runtimeId=4507 +runtimeId=4557 minecraft:double_stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0 blockId=422 -runtimeId=4501 +runtimeId=4551 minecraft:double_stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=1 blockId=422 -runtimeId=4509 +runtimeId=4559 minecraft:double_stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0 blockId=422 -runtimeId=4495 +runtimeId=4545 minecraft:double_stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=1 blockId=422 -runtimeId=4503 +runtimeId=4553 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_red_sandstone blockId=423 -runtimeId=4514 +runtimeId=4564 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_sandstone blockId=423 -runtimeId=4513 +runtimeId=4563 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=mossy_stone_brick blockId=423 -runtimeId=4510 +runtimeId=4560 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=smooth_quartz blockId=423 -runtimeId=4511 +runtimeId=4561 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=stone blockId=423 -runtimeId=4512 +runtimeId=4562 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_red_sandstone blockId=423 -runtimeId=4519 +runtimeId=4569 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_sandstone blockId=423 -runtimeId=4518 +runtimeId=4568 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=mossy_stone_brick blockId=423 -runtimeId=4515 +runtimeId=4565 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=smooth_quartz blockId=423 -runtimeId=4516 +runtimeId=4566 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=stone blockId=423 -runtimeId=4517 +runtimeId=4567 minecraft:double_stone_slab;stone_slab_type=brick;top_slot_bit=0 blockId=43 -runtimeId=4466 +runtimeId=4516 minecraft:double_stone_slab;stone_slab_type=brick;top_slot_bit=1 blockId=43 -runtimeId=4474 +runtimeId=4524 minecraft:double_stone_slab;stone_slab_type=cobblestone;top_slot_bit=0 blockId=43 -runtimeId=4465 +runtimeId=4515 minecraft:double_stone_slab;stone_slab_type=cobblestone;top_slot_bit=1 blockId=43 -runtimeId=4473 +runtimeId=4523 minecraft:double_stone_slab;stone_slab_type=nether_brick;top_slot_bit=0 blockId=43 -runtimeId=4469 +runtimeId=4519 minecraft:double_stone_slab;stone_slab_type=nether_brick;top_slot_bit=1 blockId=43 -runtimeId=4477 +runtimeId=4527 minecraft:double_stone_slab;stone_slab_type=quartz;top_slot_bit=0 blockId=43 -runtimeId=4468 +runtimeId=4518 minecraft:double_stone_slab;stone_slab_type=quartz;top_slot_bit=1 blockId=43 -runtimeId=4476 +runtimeId=4526 minecraft:double_stone_slab;stone_slab_type=sandstone;top_slot_bit=0 blockId=43 -runtimeId=4463 +runtimeId=4513 minecraft:double_stone_slab;stone_slab_type=sandstone;top_slot_bit=1 blockId=43 -runtimeId=4471 +runtimeId=4521 minecraft:double_stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0 blockId=43 -runtimeId=4462 +runtimeId=4512 minecraft:double_stone_slab;stone_slab_type=smooth_stone;top_slot_bit=1 blockId=43 -runtimeId=4470 +runtimeId=4520 minecraft:double_stone_slab;stone_slab_type=stone_brick;top_slot_bit=0 blockId=43 -runtimeId=4467 +runtimeId=4517 minecraft:double_stone_slab;stone_slab_type=stone_brick;top_slot_bit=1 blockId=43 -runtimeId=4475 +runtimeId=4525 minecraft:double_stone_slab;stone_slab_type=wood;top_slot_bit=0 blockId=43 -runtimeId=4464 +runtimeId=4514 minecraft:double_stone_slab;stone_slab_type=wood;top_slot_bit=1 blockId=43 -runtimeId=4472 +runtimeId=4522 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=acacia blockId=157 -runtimeId=4524 +runtimeId=4574 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=birch blockId=157 -runtimeId=4522 +runtimeId=4572 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=dark_oak blockId=157 -runtimeId=4525 +runtimeId=4575 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=jungle blockId=157 -runtimeId=4523 +runtimeId=4573 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=oak blockId=157 -runtimeId=4520 +runtimeId=4570 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=spruce blockId=157 -runtimeId=4521 +runtimeId=4571 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=acacia blockId=157 -runtimeId=4530 +runtimeId=4580 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=birch blockId=157 -runtimeId=4528 +runtimeId=4578 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=dark_oak blockId=157 -runtimeId=4531 +runtimeId=4581 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=jungle blockId=157 -runtimeId=4529 +runtimeId=4579 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=oak blockId=157 -runtimeId=4526 +runtimeId=4576 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=spruce blockId=157 -runtimeId=4527 +runtimeId=4577 minecraft:dragon_egg blockId=122 -runtimeId=4532 +runtimeId=4582 minecraft:dried_kelp_block blockId=394 -runtimeId=4533 +runtimeId=4583 minecraft:dripstone_block blockId=572 -runtimeId=4534 +runtimeId=4584 minecraft:dropper;facing_direction=0;triggered_bit=0 blockId=125 -runtimeId=4535 +runtimeId=4585 minecraft:dropper;facing_direction=0;triggered_bit=1 blockId=125 -runtimeId=4541 +runtimeId=4591 minecraft:dropper;facing_direction=1;triggered_bit=0 blockId=125 -runtimeId=4536 +runtimeId=4586 minecraft:dropper;facing_direction=1;triggered_bit=1 blockId=125 -runtimeId=4542 +runtimeId=4592 minecraft:dropper;facing_direction=2;triggered_bit=0 blockId=125 -runtimeId=4537 +runtimeId=4587 minecraft:dropper;facing_direction=2;triggered_bit=1 blockId=125 -runtimeId=4543 +runtimeId=4593 minecraft:dropper;facing_direction=3;triggered_bit=0 blockId=125 -runtimeId=4538 +runtimeId=4588 minecraft:dropper;facing_direction=3;triggered_bit=1 blockId=125 -runtimeId=4544 +runtimeId=4594 minecraft:dropper;facing_direction=4;triggered_bit=0 blockId=125 -runtimeId=4539 +runtimeId=4589 minecraft:dropper;facing_direction=4;triggered_bit=1 blockId=125 -runtimeId=4545 +runtimeId=4595 minecraft:dropper;facing_direction=5;triggered_bit=0 blockId=125 -runtimeId=4540 +runtimeId=4590 minecraft:dropper;facing_direction=5;triggered_bit=1 blockId=125 -runtimeId=4546 +runtimeId=4596 minecraft:element_0 blockId=36 -runtimeId=4547 +runtimeId=4597 minecraft:element_1 blockId=267 -runtimeId=4548 +runtimeId=4598 minecraft:element_2 blockId=268 -runtimeId=4578 +runtimeId=4628 minecraft:element_3 blockId=269 -runtimeId=4589 +runtimeId=4639 minecraft:element_4 blockId=270 -runtimeId=4600 +runtimeId=4650 minecraft:element_5 blockId=271 -runtimeId=4611 +runtimeId=4661 minecraft:element_6 blockId=272 -runtimeId=4622 +runtimeId=4672 minecraft:element_7 blockId=273 -runtimeId=4633 +runtimeId=4683 minecraft:element_8 blockId=274 -runtimeId=4644 +runtimeId=4694 minecraft:element_9 blockId=275 -runtimeId=4655 +runtimeId=4705 minecraft:element_10 blockId=276 -runtimeId=4549 +runtimeId=4599 minecraft:element_11 blockId=277 -runtimeId=4560 +runtimeId=4610 minecraft:element_12 blockId=278 -runtimeId=4570 +runtimeId=4620 minecraft:element_13 blockId=279 -runtimeId=4571 +runtimeId=4621 minecraft:element_14 blockId=280 -runtimeId=4572 +runtimeId=4622 minecraft:element_15 blockId=281 -runtimeId=4573 +runtimeId=4623 minecraft:element_16 blockId=282 -runtimeId=4574 +runtimeId=4624 minecraft:element_17 blockId=283 -runtimeId=4575 +runtimeId=4625 minecraft:element_18 blockId=284 -runtimeId=4576 +runtimeId=4626 minecraft:element_19 blockId=285 -runtimeId=4577 +runtimeId=4627 minecraft:element_20 blockId=286 -runtimeId=4579 +runtimeId=4629 minecraft:element_21 blockId=287 -runtimeId=4580 +runtimeId=4630 minecraft:element_22 blockId=288 -runtimeId=4581 +runtimeId=4631 minecraft:element_23 blockId=289 -runtimeId=4582 +runtimeId=4632 minecraft:element_24 blockId=290 -runtimeId=4583 +runtimeId=4633 minecraft:element_25 blockId=291 -runtimeId=4584 +runtimeId=4634 minecraft:element_26 blockId=292 -runtimeId=4585 +runtimeId=4635 minecraft:element_27 blockId=293 -runtimeId=4586 +runtimeId=4636 minecraft:element_28 blockId=294 -runtimeId=4587 +runtimeId=4637 minecraft:element_29 blockId=295 -runtimeId=4588 +runtimeId=4638 minecraft:element_30 blockId=296 -runtimeId=4590 +runtimeId=4640 minecraft:element_31 blockId=297 -runtimeId=4591 +runtimeId=4641 minecraft:element_32 blockId=298 -runtimeId=4592 +runtimeId=4642 minecraft:element_33 blockId=299 -runtimeId=4593 +runtimeId=4643 minecraft:element_34 blockId=300 -runtimeId=4594 +runtimeId=4644 minecraft:element_35 blockId=301 -runtimeId=4595 +runtimeId=4645 minecraft:element_36 blockId=302 -runtimeId=4596 +runtimeId=4646 minecraft:element_37 blockId=303 -runtimeId=4597 +runtimeId=4647 minecraft:element_38 blockId=304 -runtimeId=4598 +runtimeId=4648 minecraft:element_39 blockId=305 -runtimeId=4599 +runtimeId=4649 minecraft:element_40 blockId=306 -runtimeId=4601 +runtimeId=4651 minecraft:element_41 blockId=307 -runtimeId=4602 +runtimeId=4652 minecraft:element_42 blockId=308 -runtimeId=4603 +runtimeId=4653 minecraft:element_43 blockId=309 -runtimeId=4604 +runtimeId=4654 minecraft:element_44 blockId=310 -runtimeId=4605 +runtimeId=4655 minecraft:element_45 blockId=311 -runtimeId=4606 +runtimeId=4656 minecraft:element_46 blockId=312 -runtimeId=4607 +runtimeId=4657 minecraft:element_47 blockId=313 -runtimeId=4608 +runtimeId=4658 minecraft:element_48 blockId=314 -runtimeId=4609 +runtimeId=4659 minecraft:element_49 blockId=315 -runtimeId=4610 +runtimeId=4660 minecraft:element_50 blockId=316 -runtimeId=4612 +runtimeId=4662 minecraft:element_51 blockId=317 -runtimeId=4613 +runtimeId=4663 minecraft:element_52 blockId=318 -runtimeId=4614 +runtimeId=4664 minecraft:element_53 blockId=319 -runtimeId=4615 +runtimeId=4665 minecraft:element_54 blockId=320 -runtimeId=4616 +runtimeId=4666 minecraft:element_55 blockId=321 -runtimeId=4617 +runtimeId=4667 minecraft:element_56 blockId=322 -runtimeId=4618 +runtimeId=4668 minecraft:element_57 blockId=323 -runtimeId=4619 +runtimeId=4669 minecraft:element_58 blockId=324 -runtimeId=4620 +runtimeId=4670 minecraft:element_59 blockId=325 -runtimeId=4621 +runtimeId=4671 minecraft:element_60 blockId=326 -runtimeId=4623 +runtimeId=4673 minecraft:element_61 blockId=327 -runtimeId=4624 +runtimeId=4674 minecraft:element_62 blockId=328 -runtimeId=4625 +runtimeId=4675 minecraft:element_63 blockId=329 -runtimeId=4626 +runtimeId=4676 minecraft:element_64 blockId=330 -runtimeId=4627 +runtimeId=4677 minecraft:element_65 blockId=331 -runtimeId=4628 +runtimeId=4678 minecraft:element_66 blockId=332 -runtimeId=4629 +runtimeId=4679 minecraft:element_67 blockId=333 -runtimeId=4630 +runtimeId=4680 minecraft:element_68 blockId=334 -runtimeId=4631 +runtimeId=4681 minecraft:element_69 blockId=335 -runtimeId=4632 +runtimeId=4682 minecraft:element_70 blockId=336 -runtimeId=4634 +runtimeId=4684 minecraft:element_71 blockId=337 -runtimeId=4635 +runtimeId=4685 minecraft:element_72 blockId=338 -runtimeId=4636 +runtimeId=4686 minecraft:element_73 blockId=339 -runtimeId=4637 +runtimeId=4687 minecraft:element_74 blockId=340 -runtimeId=4638 +runtimeId=4688 minecraft:element_75 blockId=341 -runtimeId=4639 +runtimeId=4689 minecraft:element_76 blockId=342 -runtimeId=4640 +runtimeId=4690 minecraft:element_77 blockId=343 -runtimeId=4641 +runtimeId=4691 minecraft:element_78 blockId=344 -runtimeId=4642 +runtimeId=4692 minecraft:element_79 blockId=345 -runtimeId=4643 +runtimeId=4693 minecraft:element_80 blockId=346 -runtimeId=4645 +runtimeId=4695 minecraft:element_81 blockId=347 -runtimeId=4646 +runtimeId=4696 minecraft:element_82 blockId=348 -runtimeId=4647 +runtimeId=4697 minecraft:element_83 blockId=349 -runtimeId=4648 +runtimeId=4698 minecraft:element_84 blockId=350 -runtimeId=4649 +runtimeId=4699 minecraft:element_85 blockId=351 -runtimeId=4650 +runtimeId=4700 minecraft:element_86 blockId=352 -runtimeId=4651 +runtimeId=4701 minecraft:element_87 blockId=353 -runtimeId=4652 +runtimeId=4702 minecraft:element_88 blockId=354 -runtimeId=4653 +runtimeId=4703 minecraft:element_89 blockId=355 -runtimeId=4654 +runtimeId=4704 minecraft:element_90 blockId=356 -runtimeId=4656 +runtimeId=4706 minecraft:element_91 blockId=357 -runtimeId=4657 +runtimeId=4707 minecraft:element_92 blockId=358 -runtimeId=4658 +runtimeId=4708 minecraft:element_93 blockId=359 -runtimeId=4659 +runtimeId=4709 minecraft:element_94 blockId=360 -runtimeId=4660 +runtimeId=4710 minecraft:element_95 blockId=361 -runtimeId=4661 +runtimeId=4711 minecraft:element_96 blockId=362 -runtimeId=4662 +runtimeId=4712 minecraft:element_97 blockId=363 -runtimeId=4663 +runtimeId=4713 minecraft:element_98 blockId=364 -runtimeId=4664 +runtimeId=4714 minecraft:element_99 blockId=365 -runtimeId=4665 +runtimeId=4715 minecraft:element_100 blockId=366 -runtimeId=4550 +runtimeId=4600 minecraft:element_101 blockId=367 -runtimeId=4551 +runtimeId=4601 minecraft:element_102 blockId=368 -runtimeId=4552 +runtimeId=4602 minecraft:element_103 blockId=369 -runtimeId=4553 +runtimeId=4603 minecraft:element_104 blockId=370 -runtimeId=4554 +runtimeId=4604 minecraft:element_105 blockId=371 -runtimeId=4555 +runtimeId=4605 minecraft:element_106 blockId=372 -runtimeId=4556 +runtimeId=4606 minecraft:element_107 blockId=373 -runtimeId=4557 +runtimeId=4607 minecraft:element_108 blockId=374 -runtimeId=4558 +runtimeId=4608 minecraft:element_109 blockId=375 -runtimeId=4559 +runtimeId=4609 minecraft:element_110 blockId=376 -runtimeId=4561 +runtimeId=4611 minecraft:element_111 blockId=377 -runtimeId=4562 +runtimeId=4612 minecraft:element_112 blockId=378 -runtimeId=4563 +runtimeId=4613 minecraft:element_113 blockId=379 -runtimeId=4564 +runtimeId=4614 minecraft:element_114 blockId=380 -runtimeId=4565 +runtimeId=4615 minecraft:element_115 blockId=381 -runtimeId=4566 +runtimeId=4616 minecraft:element_116 blockId=382 -runtimeId=4567 +runtimeId=4617 minecraft:element_117 blockId=383 -runtimeId=4568 +runtimeId=4618 minecraft:element_118 blockId=384 -runtimeId=4569 +runtimeId=4619 minecraft:emerald_block blockId=133 -runtimeId=4666 +runtimeId=4716 minecraft:emerald_ore blockId=129 -runtimeId=4667 +runtimeId=4717 minecraft:enchanting_table blockId=116 -runtimeId=4668 +runtimeId=4718 minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=433 -runtimeId=4669 +runtimeId=4719 minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=433 -runtimeId=4670 +runtimeId=4720 minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=433 -runtimeId=4671 +runtimeId=4721 minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=433 -runtimeId=4672 +runtimeId=4722 minecraft:end_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=433 -runtimeId=4673 +runtimeId=4723 minecraft:end_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=433 -runtimeId=4674 +runtimeId=4724 minecraft:end_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=433 -runtimeId=4675 +runtimeId=4725 minecraft:end_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=433 -runtimeId=4676 +runtimeId=4726 minecraft:end_bricks blockId=206 -runtimeId=4677 +runtimeId=4727 minecraft:end_gateway blockId=209 -runtimeId=4678 +runtimeId=4728 minecraft:end_portal blockId=119 -runtimeId=4679 +runtimeId=4729 minecraft:end_portal_frame;end_portal_eye_bit=0;direction=0 blockId=120 -runtimeId=4680 +runtimeId=4730 minecraft:end_portal_frame;end_portal_eye_bit=0;direction=1 blockId=120 -runtimeId=4681 +runtimeId=4731 minecraft:end_portal_frame;end_portal_eye_bit=0;direction=2 blockId=120 -runtimeId=4682 +runtimeId=4732 minecraft:end_portal_frame;end_portal_eye_bit=0;direction=3 blockId=120 -runtimeId=4683 +runtimeId=4733 minecraft:end_portal_frame;end_portal_eye_bit=1;direction=0 blockId=120 -runtimeId=4684 +runtimeId=4734 minecraft:end_portal_frame;end_portal_eye_bit=1;direction=1 blockId=120 -runtimeId=4685 +runtimeId=4735 minecraft:end_portal_frame;end_portal_eye_bit=1;direction=2 blockId=120 -runtimeId=4686 +runtimeId=4736 minecraft:end_portal_frame;end_portal_eye_bit=1;direction=3 blockId=120 -runtimeId=4687 +runtimeId=4737 minecraft:end_rod;facing_direction=0 blockId=208 -runtimeId=4688 +runtimeId=4738 minecraft:end_rod;facing_direction=1 blockId=208 -runtimeId=4689 +runtimeId=4739 minecraft:end_rod;facing_direction=2 blockId=208 -runtimeId=4690 +runtimeId=4740 minecraft:end_rod;facing_direction=3 blockId=208 -runtimeId=4691 +runtimeId=4741 minecraft:end_rod;facing_direction=4 blockId=208 -runtimeId=4692 +runtimeId=4742 minecraft:end_rod;facing_direction=5 blockId=208 -runtimeId=4693 +runtimeId=4743 minecraft:end_stone blockId=121 -runtimeId=4694 +runtimeId=4744 minecraft:ender_chest;facing_direction=0 blockId=130 -runtimeId=4695 +runtimeId=4745 minecraft:ender_chest;facing_direction=1 blockId=130 -runtimeId=4696 +runtimeId=4746 minecraft:ender_chest;facing_direction=2 blockId=130 -runtimeId=4697 +runtimeId=4747 minecraft:ender_chest;facing_direction=3 blockId=130 -runtimeId=4698 +runtimeId=4748 minecraft:ender_chest;facing_direction=4 blockId=130 -runtimeId=4699 +runtimeId=4749 minecraft:ender_chest;facing_direction=5 blockId=130 -runtimeId=4700 +runtimeId=4750 minecraft:exposed_copper blockId=596 -runtimeId=4701 +runtimeId=4751 minecraft:exposed_cut_copper blockId=603 -runtimeId=4702 +runtimeId=4752 minecraft:exposed_cut_copper_slab;top_slot_bit=0 blockId=617 -runtimeId=4703 +runtimeId=4753 minecraft:exposed_cut_copper_slab;top_slot_bit=1 blockId=617 -runtimeId=4704 +runtimeId=4754 minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=610 -runtimeId=4705 +runtimeId=4755 minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=610 -runtimeId=4706 +runtimeId=4756 minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=610 -runtimeId=4707 +runtimeId=4757 minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=610 -runtimeId=4708 +runtimeId=4758 minecraft:exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=610 -runtimeId=4709 +runtimeId=4759 minecraft:exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=610 -runtimeId=4710 +runtimeId=4760 minecraft:exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=610 -runtimeId=4711 +runtimeId=4761 minecraft:exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=610 -runtimeId=4712 +runtimeId=4762 minecraft:exposed_double_cut_copper_slab;top_slot_bit=0 blockId=624 -runtimeId=4713 +runtimeId=4763 minecraft:exposed_double_cut_copper_slab;top_slot_bit=1 blockId=624 -runtimeId=4714 +runtimeId=4764 minecraft:farmland;moisturized_amount=0 blockId=60 -runtimeId=4715 +runtimeId=4765 minecraft:farmland;moisturized_amount=1 blockId=60 -runtimeId=4716 +runtimeId=4766 minecraft:farmland;moisturized_amount=2 blockId=60 -runtimeId=4717 +runtimeId=4767 minecraft:farmland;moisturized_amount=3 blockId=60 -runtimeId=4718 +runtimeId=4768 minecraft:farmland;moisturized_amount=4 blockId=60 -runtimeId=4719 +runtimeId=4769 minecraft:farmland;moisturized_amount=5 blockId=60 -runtimeId=4720 +runtimeId=4770 minecraft:farmland;moisturized_amount=6 blockId=60 -runtimeId=4721 +runtimeId=4771 minecraft:farmland;moisturized_amount=7 blockId=60 -runtimeId=4722 +runtimeId=4772 minecraft:fence;wood_type=acacia blockId=85 -runtimeId=4727 +runtimeId=4777 minecraft:fence;wood_type=birch blockId=85 -runtimeId=4725 +runtimeId=4775 minecraft:fence;wood_type=dark_oak blockId=85 -runtimeId=4728 +runtimeId=4778 minecraft:fence;wood_type=jungle blockId=85 -runtimeId=4726 +runtimeId=4776 minecraft:fence;wood_type=oak blockId=85 -runtimeId=4723 +runtimeId=4773 minecraft:fence;wood_type=spruce blockId=85 -runtimeId=4724 +runtimeId=4774 minecraft:fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=107 -runtimeId=4729 +runtimeId=4779 minecraft:fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=107 -runtimeId=4730 +runtimeId=4780 minecraft:fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=107 -runtimeId=4731 +runtimeId=4781 minecraft:fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=107 -runtimeId=4732 +runtimeId=4782 minecraft:fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=107 -runtimeId=4733 +runtimeId=4783 minecraft:fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=107 -runtimeId=4734 +runtimeId=4784 minecraft:fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=107 -runtimeId=4735 +runtimeId=4785 minecraft:fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=107 -runtimeId=4736 +runtimeId=4786 minecraft:fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=107 -runtimeId=4737 +runtimeId=4787 minecraft:fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=107 -runtimeId=4738 +runtimeId=4788 minecraft:fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=107 -runtimeId=4739 +runtimeId=4789 minecraft:fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=107 -runtimeId=4740 +runtimeId=4790 minecraft:fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=107 -runtimeId=4741 +runtimeId=4791 minecraft:fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=107 -runtimeId=4742 +runtimeId=4792 minecraft:fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=107 -runtimeId=4743 +runtimeId=4793 minecraft:fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=107 -runtimeId=4744 +runtimeId=4794 minecraft:fire;age=0 blockId=51 -runtimeId=4745 +runtimeId=4795 minecraft:fire;age=1 blockId=51 -runtimeId=4746 +runtimeId=4796 minecraft:fire;age=2 blockId=51 -runtimeId=4747 +runtimeId=4797 minecraft:fire;age=3 blockId=51 -runtimeId=4748 +runtimeId=4798 minecraft:fire;age=4 blockId=51 -runtimeId=4749 +runtimeId=4799 minecraft:fire;age=5 blockId=51 -runtimeId=4750 +runtimeId=4800 minecraft:fire;age=6 blockId=51 -runtimeId=4751 +runtimeId=4801 minecraft:fire;age=7 blockId=51 -runtimeId=4752 +runtimeId=4802 minecraft:fire;age=8 blockId=51 -runtimeId=4753 +runtimeId=4803 minecraft:fire;age=9 blockId=51 -runtimeId=4754 +runtimeId=4804 minecraft:fire;age=10 blockId=51 -runtimeId=4755 +runtimeId=4805 minecraft:fire;age=11 blockId=51 -runtimeId=4756 +runtimeId=4806 minecraft:fire;age=12 blockId=51 -runtimeId=4757 +runtimeId=4807 minecraft:fire;age=13 blockId=51 -runtimeId=4758 +runtimeId=4808 minecraft:fire;age=14 blockId=51 -runtimeId=4759 +runtimeId=4809 minecraft:fire;age=15 blockId=51 -runtimeId=4760 +runtimeId=4810 minecraft:fletching_table blockId=456 -runtimeId=4761 +runtimeId=4811 minecraft:flower_pot;update_bit=0 blockId=140 -runtimeId=4762 +runtimeId=4812 minecraft:flower_pot;update_bit=1 blockId=140 -runtimeId=4763 +runtimeId=4813 minecraft:flowering_azalea blockId=593 -runtimeId=4764 +runtimeId=4814 minecraft:flowing_lava;liquid_depth=0 blockId=10 -runtimeId=4765 +runtimeId=4815 minecraft:flowing_lava;liquid_depth=1 blockId=10 -runtimeId=4766 +runtimeId=4816 minecraft:flowing_lava;liquid_depth=2 blockId=10 -runtimeId=4767 +runtimeId=4817 minecraft:flowing_lava;liquid_depth=3 blockId=10 -runtimeId=4768 +runtimeId=4818 minecraft:flowing_lava;liquid_depth=4 blockId=10 -runtimeId=4769 +runtimeId=4819 minecraft:flowing_lava;liquid_depth=5 blockId=10 -runtimeId=4770 +runtimeId=4820 minecraft:flowing_lava;liquid_depth=6 blockId=10 -runtimeId=4771 +runtimeId=4821 minecraft:flowing_lava;liquid_depth=7 blockId=10 -runtimeId=4772 +runtimeId=4822 minecraft:flowing_lava;liquid_depth=8 blockId=10 -runtimeId=4773 +runtimeId=4823 minecraft:flowing_lava;liquid_depth=9 blockId=10 -runtimeId=4774 +runtimeId=4824 minecraft:flowing_lava;liquid_depth=10 blockId=10 -runtimeId=4775 +runtimeId=4825 minecraft:flowing_lava;liquid_depth=11 blockId=10 -runtimeId=4776 +runtimeId=4826 minecraft:flowing_lava;liquid_depth=12 blockId=10 -runtimeId=4777 +runtimeId=4827 minecraft:flowing_lava;liquid_depth=13 blockId=10 -runtimeId=4778 +runtimeId=4828 minecraft:flowing_lava;liquid_depth=14 blockId=10 -runtimeId=4779 +runtimeId=4829 minecraft:flowing_lava;liquid_depth=15 blockId=10 -runtimeId=4780 +runtimeId=4830 minecraft:flowing_water;liquid_depth=0 blockId=8 -runtimeId=4781 +runtimeId=4831 minecraft:flowing_water;liquid_depth=1 blockId=8 -runtimeId=4782 +runtimeId=4832 minecraft:flowing_water;liquid_depth=2 blockId=8 -runtimeId=4783 +runtimeId=4833 minecraft:flowing_water;liquid_depth=3 blockId=8 -runtimeId=4784 +runtimeId=4834 minecraft:flowing_water;liquid_depth=4 blockId=8 -runtimeId=4785 +runtimeId=4835 minecraft:flowing_water;liquid_depth=5 blockId=8 -runtimeId=4786 +runtimeId=4836 minecraft:flowing_water;liquid_depth=6 blockId=8 -runtimeId=4787 +runtimeId=4837 minecraft:flowing_water;liquid_depth=7 blockId=8 -runtimeId=4788 +runtimeId=4838 minecraft:flowing_water;liquid_depth=8 blockId=8 -runtimeId=4789 +runtimeId=4839 minecraft:flowing_water;liquid_depth=9 blockId=8 -runtimeId=4790 +runtimeId=4840 minecraft:flowing_water;liquid_depth=10 blockId=8 -runtimeId=4791 +runtimeId=4841 minecraft:flowing_water;liquid_depth=11 blockId=8 -runtimeId=4792 +runtimeId=4842 minecraft:flowing_water;liquid_depth=12 blockId=8 -runtimeId=4793 +runtimeId=4843 minecraft:flowing_water;liquid_depth=13 blockId=8 -runtimeId=4794 +runtimeId=4844 minecraft:flowing_water;liquid_depth=14 blockId=8 -runtimeId=4795 +runtimeId=4845 minecraft:flowing_water;liquid_depth=15 blockId=8 -runtimeId=4796 +runtimeId=4846 minecraft:frame;facing_direction=0;item_frame_map_bit=0 blockId=199 -runtimeId=4797 +runtimeId=4847 minecraft:frame;facing_direction=0;item_frame_map_bit=1 blockId=199 -runtimeId=4803 +runtimeId=4853 minecraft:frame;facing_direction=1;item_frame_map_bit=0 blockId=199 -runtimeId=4798 +runtimeId=4848 minecraft:frame;facing_direction=1;item_frame_map_bit=1 blockId=199 -runtimeId=4804 +runtimeId=4854 minecraft:frame;facing_direction=2;item_frame_map_bit=0 blockId=199 -runtimeId=4799 +runtimeId=4849 minecraft:frame;facing_direction=2;item_frame_map_bit=1 blockId=199 -runtimeId=4805 +runtimeId=4855 minecraft:frame;facing_direction=3;item_frame_map_bit=0 blockId=199 -runtimeId=4800 +runtimeId=4850 minecraft:frame;facing_direction=3;item_frame_map_bit=1 blockId=199 -runtimeId=4806 +runtimeId=4856 minecraft:frame;facing_direction=4;item_frame_map_bit=0 blockId=199 -runtimeId=4801 +runtimeId=4851 minecraft:frame;facing_direction=4;item_frame_map_bit=1 blockId=199 -runtimeId=4807 +runtimeId=4857 minecraft:frame;facing_direction=5;item_frame_map_bit=0 blockId=199 -runtimeId=4802 +runtimeId=4852 minecraft:frame;facing_direction=5;item_frame_map_bit=1 blockId=199 -runtimeId=4808 +runtimeId=4858 minecraft:frosted_ice;age=0 blockId=207 -runtimeId=4809 +runtimeId=4859 minecraft:frosted_ice;age=1 blockId=207 -runtimeId=4810 +runtimeId=4860 minecraft:frosted_ice;age=2 blockId=207 -runtimeId=4811 +runtimeId=4861 minecraft:frosted_ice;age=3 blockId=207 -runtimeId=4812 +runtimeId=4862 minecraft:furnace;facing_direction=0 blockId=61 -runtimeId=4813 +runtimeId=4863 minecraft:furnace;facing_direction=1 blockId=61 -runtimeId=4814 +runtimeId=4864 minecraft:furnace;facing_direction=2 blockId=61 -runtimeId=4815 +runtimeId=4865 minecraft:furnace;facing_direction=3 blockId=61 -runtimeId=4816 +runtimeId=4866 minecraft:furnace;facing_direction=4 blockId=61 -runtimeId=4817 +runtimeId=4867 minecraft:furnace;facing_direction=5 blockId=61 -runtimeId=4818 +runtimeId=4868 minecraft:gilded_blackstone blockId=536 -runtimeId=4819 +runtimeId=4869 minecraft:glass blockId=20 -runtimeId=4820 +runtimeId=4870 minecraft:glass_pane blockId=102 -runtimeId=4821 +runtimeId=4871 minecraft:glow_frame;facing_direction=0;item_frame_map_bit=0 blockId=594 -runtimeId=4822 +runtimeId=4872 minecraft:glow_frame;facing_direction=0;item_frame_map_bit=1 blockId=594 -runtimeId=4828 +runtimeId=4878 minecraft:glow_frame;facing_direction=1;item_frame_map_bit=0 blockId=594 -runtimeId=4823 +runtimeId=4873 minecraft:glow_frame;facing_direction=1;item_frame_map_bit=1 blockId=594 -runtimeId=4829 +runtimeId=4879 minecraft:glow_frame;facing_direction=2;item_frame_map_bit=0 blockId=594 -runtimeId=4824 +runtimeId=4874 minecraft:glow_frame;facing_direction=2;item_frame_map_bit=1 blockId=594 -runtimeId=4830 +runtimeId=4880 minecraft:glow_frame;facing_direction=3;item_frame_map_bit=0 blockId=594 -runtimeId=4825 +runtimeId=4875 minecraft:glow_frame;facing_direction=3;item_frame_map_bit=1 blockId=594 -runtimeId=4831 +runtimeId=4881 minecraft:glow_frame;facing_direction=4;item_frame_map_bit=0 blockId=594 -runtimeId=4826 +runtimeId=4876 minecraft:glow_frame;facing_direction=4;item_frame_map_bit=1 blockId=594 -runtimeId=4832 +runtimeId=4882 minecraft:glow_frame;facing_direction=5;item_frame_map_bit=0 blockId=594 -runtimeId=4827 +runtimeId=4877 minecraft:glow_frame;facing_direction=5;item_frame_map_bit=1 blockId=594 -runtimeId=4833 +runtimeId=4883 minecraft:glow_lichen;multi_face_direction_bits=0 blockId=666 -runtimeId=4834 +runtimeId=4884 minecraft:glow_lichen;multi_face_direction_bits=1 blockId=666 -runtimeId=4835 +runtimeId=4885 minecraft:glow_lichen;multi_face_direction_bits=2 blockId=666 -runtimeId=4836 +runtimeId=4886 minecraft:glow_lichen;multi_face_direction_bits=3 blockId=666 -runtimeId=4837 +runtimeId=4887 minecraft:glow_lichen;multi_face_direction_bits=4 blockId=666 -runtimeId=4838 +runtimeId=4888 minecraft:glow_lichen;multi_face_direction_bits=5 blockId=666 -runtimeId=4839 +runtimeId=4889 minecraft:glow_lichen;multi_face_direction_bits=6 blockId=666 -runtimeId=4840 +runtimeId=4890 minecraft:glow_lichen;multi_face_direction_bits=7 blockId=666 -runtimeId=4841 +runtimeId=4891 minecraft:glow_lichen;multi_face_direction_bits=8 blockId=666 -runtimeId=4842 +runtimeId=4892 minecraft:glow_lichen;multi_face_direction_bits=9 blockId=666 -runtimeId=4843 +runtimeId=4893 minecraft:glow_lichen;multi_face_direction_bits=10 blockId=666 -runtimeId=4844 +runtimeId=4894 minecraft:glow_lichen;multi_face_direction_bits=11 blockId=666 -runtimeId=4845 +runtimeId=4895 minecraft:glow_lichen;multi_face_direction_bits=12 blockId=666 -runtimeId=4846 +runtimeId=4896 minecraft:glow_lichen;multi_face_direction_bits=13 blockId=666 -runtimeId=4847 +runtimeId=4897 minecraft:glow_lichen;multi_face_direction_bits=14 blockId=666 -runtimeId=4848 +runtimeId=4898 minecraft:glow_lichen;multi_face_direction_bits=15 blockId=666 -runtimeId=4849 +runtimeId=4899 minecraft:glow_lichen;multi_face_direction_bits=16 blockId=666 -runtimeId=4850 +runtimeId=4900 minecraft:glow_lichen;multi_face_direction_bits=17 blockId=666 -runtimeId=4851 +runtimeId=4901 minecraft:glow_lichen;multi_face_direction_bits=18 blockId=666 -runtimeId=4852 +runtimeId=4902 minecraft:glow_lichen;multi_face_direction_bits=19 blockId=666 -runtimeId=4853 +runtimeId=4903 minecraft:glow_lichen;multi_face_direction_bits=20 blockId=666 -runtimeId=4854 +runtimeId=4904 minecraft:glow_lichen;multi_face_direction_bits=21 blockId=666 -runtimeId=4855 +runtimeId=4905 minecraft:glow_lichen;multi_face_direction_bits=22 blockId=666 -runtimeId=4856 +runtimeId=4906 minecraft:glow_lichen;multi_face_direction_bits=23 blockId=666 -runtimeId=4857 +runtimeId=4907 minecraft:glow_lichen;multi_face_direction_bits=24 blockId=666 -runtimeId=4858 +runtimeId=4908 minecraft:glow_lichen;multi_face_direction_bits=25 blockId=666 -runtimeId=4859 +runtimeId=4909 minecraft:glow_lichen;multi_face_direction_bits=26 blockId=666 -runtimeId=4860 +runtimeId=4910 minecraft:glow_lichen;multi_face_direction_bits=27 blockId=666 -runtimeId=4861 +runtimeId=4911 minecraft:glow_lichen;multi_face_direction_bits=28 blockId=666 -runtimeId=4862 +runtimeId=4912 minecraft:glow_lichen;multi_face_direction_bits=29 blockId=666 -runtimeId=4863 +runtimeId=4913 minecraft:glow_lichen;multi_face_direction_bits=30 blockId=666 -runtimeId=4864 +runtimeId=4914 minecraft:glow_lichen;multi_face_direction_bits=31 blockId=666 -runtimeId=4865 +runtimeId=4915 minecraft:glow_lichen;multi_face_direction_bits=32 blockId=666 -runtimeId=4866 +runtimeId=4916 minecraft:glow_lichen;multi_face_direction_bits=33 blockId=666 -runtimeId=4867 +runtimeId=4917 minecraft:glow_lichen;multi_face_direction_bits=34 blockId=666 -runtimeId=4868 +runtimeId=4918 minecraft:glow_lichen;multi_face_direction_bits=35 blockId=666 -runtimeId=4869 +runtimeId=4919 minecraft:glow_lichen;multi_face_direction_bits=36 blockId=666 -runtimeId=4870 +runtimeId=4920 minecraft:glow_lichen;multi_face_direction_bits=37 blockId=666 -runtimeId=4871 +runtimeId=4921 minecraft:glow_lichen;multi_face_direction_bits=38 blockId=666 -runtimeId=4872 +runtimeId=4922 minecraft:glow_lichen;multi_face_direction_bits=39 blockId=666 -runtimeId=4873 +runtimeId=4923 minecraft:glow_lichen;multi_face_direction_bits=40 blockId=666 -runtimeId=4874 +runtimeId=4924 minecraft:glow_lichen;multi_face_direction_bits=41 blockId=666 -runtimeId=4875 +runtimeId=4925 minecraft:glow_lichen;multi_face_direction_bits=42 blockId=666 -runtimeId=4876 +runtimeId=4926 minecraft:glow_lichen;multi_face_direction_bits=43 blockId=666 -runtimeId=4877 +runtimeId=4927 minecraft:glow_lichen;multi_face_direction_bits=44 blockId=666 -runtimeId=4878 +runtimeId=4928 minecraft:glow_lichen;multi_face_direction_bits=45 blockId=666 -runtimeId=4879 +runtimeId=4929 minecraft:glow_lichen;multi_face_direction_bits=46 blockId=666 -runtimeId=4880 +runtimeId=4930 minecraft:glow_lichen;multi_face_direction_bits=47 blockId=666 -runtimeId=4881 +runtimeId=4931 minecraft:glow_lichen;multi_face_direction_bits=48 blockId=666 -runtimeId=4882 +runtimeId=4932 minecraft:glow_lichen;multi_face_direction_bits=49 blockId=666 -runtimeId=4883 +runtimeId=4933 minecraft:glow_lichen;multi_face_direction_bits=50 blockId=666 -runtimeId=4884 +runtimeId=4934 minecraft:glow_lichen;multi_face_direction_bits=51 blockId=666 -runtimeId=4885 +runtimeId=4935 minecraft:glow_lichen;multi_face_direction_bits=52 blockId=666 -runtimeId=4886 +runtimeId=4936 minecraft:glow_lichen;multi_face_direction_bits=53 blockId=666 -runtimeId=4887 +runtimeId=4937 minecraft:glow_lichen;multi_face_direction_bits=54 blockId=666 -runtimeId=4888 +runtimeId=4938 minecraft:glow_lichen;multi_face_direction_bits=55 blockId=666 -runtimeId=4889 +runtimeId=4939 minecraft:glow_lichen;multi_face_direction_bits=56 blockId=666 -runtimeId=4890 +runtimeId=4940 minecraft:glow_lichen;multi_face_direction_bits=57 blockId=666 -runtimeId=4891 +runtimeId=4941 minecraft:glow_lichen;multi_face_direction_bits=58 blockId=666 -runtimeId=4892 +runtimeId=4942 minecraft:glow_lichen;multi_face_direction_bits=59 blockId=666 -runtimeId=4893 +runtimeId=4943 minecraft:glow_lichen;multi_face_direction_bits=60 blockId=666 -runtimeId=4894 +runtimeId=4944 minecraft:glow_lichen;multi_face_direction_bits=61 blockId=666 -runtimeId=4895 +runtimeId=4945 minecraft:glow_lichen;multi_face_direction_bits=62 blockId=666 -runtimeId=4896 +runtimeId=4946 minecraft:glow_lichen;multi_face_direction_bits=63 blockId=666 -runtimeId=4897 +runtimeId=4947 minecraft:glowingobsidian blockId=246 -runtimeId=4898 +runtimeId=4948 minecraft:glowstone blockId=89 -runtimeId=4899 +runtimeId=4949 minecraft:gold_block blockId=41 -runtimeId=4900 +runtimeId=4950 minecraft:gold_ore blockId=14 -runtimeId=4901 +runtimeId=4951 minecraft:golden_rail;rail_direction=0;rail_data_bit=0 blockId=27 -runtimeId=4902 +runtimeId=4952 minecraft:golden_rail;rail_direction=0;rail_data_bit=1 blockId=27 -runtimeId=4908 +runtimeId=4958 minecraft:golden_rail;rail_direction=1;rail_data_bit=0 blockId=27 -runtimeId=4903 +runtimeId=4953 minecraft:golden_rail;rail_direction=1;rail_data_bit=1 blockId=27 -runtimeId=4909 +runtimeId=4959 minecraft:golden_rail;rail_direction=2;rail_data_bit=0 blockId=27 -runtimeId=4904 +runtimeId=4954 minecraft:golden_rail;rail_direction=2;rail_data_bit=1 blockId=27 -runtimeId=4910 +runtimeId=4960 minecraft:golden_rail;rail_direction=3;rail_data_bit=0 blockId=27 -runtimeId=4905 +runtimeId=4955 minecraft:golden_rail;rail_direction=3;rail_data_bit=1 blockId=27 -runtimeId=4911 +runtimeId=4961 minecraft:golden_rail;rail_direction=4;rail_data_bit=0 blockId=27 -runtimeId=4906 +runtimeId=4956 minecraft:golden_rail;rail_direction=4;rail_data_bit=1 blockId=27 -runtimeId=4912 +runtimeId=4962 minecraft:golden_rail;rail_direction=5;rail_data_bit=0 blockId=27 -runtimeId=4907 +runtimeId=4957 minecraft:golden_rail;rail_direction=5;rail_data_bit=1 blockId=27 -runtimeId=4913 +runtimeId=4963 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=424 -runtimeId=4914 +runtimeId=4964 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=424 -runtimeId=4915 +runtimeId=4965 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=424 -runtimeId=4916 +runtimeId=4966 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=424 -runtimeId=4917 +runtimeId=4967 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=424 -runtimeId=4918 +runtimeId=4968 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=424 -runtimeId=4919 +runtimeId=4969 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=424 -runtimeId=4920 +runtimeId=4970 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=424 -runtimeId=4921 +runtimeId=4971 minecraft:grass blockId=2 -runtimeId=4922 +runtimeId=4972 minecraft:grass_path blockId=198 -runtimeId=4923 +runtimeId=4973 minecraft:gravel blockId=13 -runtimeId=4924 +runtimeId=4974 + +minecraft:gray_candle;lit=0;candles=0 +blockId=-1 +runtimeId=4975 + +minecraft:gray_candle;lit=0;candles=1 +blockId=-1 +runtimeId=4976 + +minecraft:gray_candle;lit=0;candles=2 +blockId=-1 +runtimeId=4977 + +minecraft:gray_candle;lit=0;candles=3 +blockId=-1 +runtimeId=4978 + +minecraft:gray_candle;lit=1;candles=0 +blockId=-1 +runtimeId=4979 + +minecraft:gray_candle;lit=1;candles=1 +blockId=-1 +runtimeId=4980 + +minecraft:gray_candle;lit=1;candles=2 +blockId=-1 +runtimeId=4981 + +minecraft:gray_candle;lit=1;candles=3 +blockId=-1 +runtimeId=4982 + +minecraft:gray_candle_cake;lit=0 +blockId=-1 +runtimeId=4983 + +minecraft:gray_candle_cake;lit=1 +blockId=-1 +runtimeId=4984 minecraft:gray_glazed_terracotta;facing_direction=0 blockId=227 -runtimeId=4925 +runtimeId=4985 minecraft:gray_glazed_terracotta;facing_direction=1 blockId=227 -runtimeId=4926 +runtimeId=4986 minecraft:gray_glazed_terracotta;facing_direction=2 blockId=227 -runtimeId=4927 +runtimeId=4987 minecraft:gray_glazed_terracotta;facing_direction=3 blockId=227 -runtimeId=4928 +runtimeId=4988 minecraft:gray_glazed_terracotta;facing_direction=4 blockId=227 -runtimeId=4929 +runtimeId=4989 minecraft:gray_glazed_terracotta;facing_direction=5 blockId=227 -runtimeId=4930 +runtimeId=4990 + +minecraft:green_candle;lit=0;candles=0 +blockId=-1 +runtimeId=4991 + +minecraft:green_candle;lit=0;candles=1 +blockId=-1 +runtimeId=4992 + +minecraft:green_candle;lit=0;candles=2 +blockId=-1 +runtimeId=4993 + +minecraft:green_candle;lit=0;candles=3 +blockId=-1 +runtimeId=4994 + +minecraft:green_candle;lit=1;candles=0 +blockId=-1 +runtimeId=4995 + +minecraft:green_candle;lit=1;candles=1 +blockId=-1 +runtimeId=4996 + +minecraft:green_candle;lit=1;candles=2 +blockId=-1 +runtimeId=4997 + +minecraft:green_candle;lit=1;candles=3 +blockId=-1 +runtimeId=4998 + +minecraft:green_candle_cake;lit=0 +blockId=-1 +runtimeId=4999 + +minecraft:green_candle_cake;lit=1 +blockId=-1 +runtimeId=5000 minecraft:green_glazed_terracotta;facing_direction=0 blockId=233 -runtimeId=4931 +runtimeId=5001 minecraft:green_glazed_terracotta;facing_direction=1 blockId=233 -runtimeId=4932 +runtimeId=5002 minecraft:green_glazed_terracotta;facing_direction=2 blockId=233 -runtimeId=4933 +runtimeId=5003 minecraft:green_glazed_terracotta;facing_direction=3 blockId=233 -runtimeId=4934 +runtimeId=5004 minecraft:green_glazed_terracotta;facing_direction=4 blockId=233 -runtimeId=4935 +runtimeId=5005 minecraft:green_glazed_terracotta;facing_direction=5 blockId=233 -runtimeId=4936 +runtimeId=5006 minecraft:grindstone;attachment=hanging;direction=0 blockId=450 -runtimeId=4941 +runtimeId=5011 minecraft:grindstone;attachment=hanging;direction=1 blockId=450 -runtimeId=4942 +runtimeId=5012 minecraft:grindstone;attachment=hanging;direction=2 blockId=450 -runtimeId=4943 +runtimeId=5013 minecraft:grindstone;attachment=hanging;direction=3 blockId=450 -runtimeId=4944 +runtimeId=5014 minecraft:grindstone;attachment=multiple;direction=0 blockId=450 -runtimeId=4949 +runtimeId=5019 minecraft:grindstone;attachment=multiple;direction=1 blockId=450 -runtimeId=4950 +runtimeId=5020 minecraft:grindstone;attachment=multiple;direction=2 blockId=450 -runtimeId=4951 +runtimeId=5021 minecraft:grindstone;attachment=multiple;direction=3 blockId=450 -runtimeId=4952 +runtimeId=5022 minecraft:grindstone;attachment=side;direction=0 blockId=450 -runtimeId=4945 +runtimeId=5015 minecraft:grindstone;attachment=side;direction=1 blockId=450 -runtimeId=4946 +runtimeId=5016 minecraft:grindstone;attachment=side;direction=2 blockId=450 -runtimeId=4947 +runtimeId=5017 minecraft:grindstone;attachment=side;direction=3 blockId=450 -runtimeId=4948 +runtimeId=5018 minecraft:grindstone;attachment=standing;direction=0 blockId=450 -runtimeId=4937 +runtimeId=5007 minecraft:grindstone;attachment=standing;direction=1 blockId=450 -runtimeId=4938 +runtimeId=5008 minecraft:grindstone;attachment=standing;direction=2 blockId=450 -runtimeId=4939 +runtimeId=5009 minecraft:grindstone;attachment=standing;direction=3 blockId=450 -runtimeId=4940 +runtimeId=5010 minecraft:hanging_roots blockId=574 -runtimeId=4953 +runtimeId=5023 minecraft:hard_glass blockId=253 -runtimeId=4954 +runtimeId=5024 minecraft:hard_glass_pane blockId=190 -runtimeId=4955 +runtimeId=5025 minecraft:hard_stained_glass;color=black blockId=254 -runtimeId=4971 +runtimeId=5041 minecraft:hard_stained_glass;color=blue blockId=254 -runtimeId=4967 +runtimeId=5037 minecraft:hard_stained_glass;color=brown blockId=254 -runtimeId=4968 +runtimeId=5038 minecraft:hard_stained_glass;color=cyan blockId=254 -runtimeId=4965 +runtimeId=5035 minecraft:hard_stained_glass;color=gray blockId=254 -runtimeId=4963 +runtimeId=5033 minecraft:hard_stained_glass;color=green blockId=254 -runtimeId=4969 +runtimeId=5039 minecraft:hard_stained_glass;color=light_blue blockId=254 -runtimeId=4959 +runtimeId=5029 minecraft:hard_stained_glass;color=lime blockId=254 -runtimeId=4961 +runtimeId=5031 minecraft:hard_stained_glass;color=magenta blockId=254 -runtimeId=4958 +runtimeId=5028 minecraft:hard_stained_glass;color=orange blockId=254 -runtimeId=4957 +runtimeId=5027 minecraft:hard_stained_glass;color=pink blockId=254 -runtimeId=4962 +runtimeId=5032 minecraft:hard_stained_glass;color=purple blockId=254 -runtimeId=4966 +runtimeId=5036 minecraft:hard_stained_glass;color=red blockId=254 -runtimeId=4970 +runtimeId=5040 minecraft:hard_stained_glass;color=silver blockId=254 -runtimeId=4964 +runtimeId=5034 minecraft:hard_stained_glass;color=white blockId=254 -runtimeId=4956 +runtimeId=5026 minecraft:hard_stained_glass;color=yellow blockId=254 -runtimeId=4960 +runtimeId=5030 minecraft:hard_stained_glass_pane;color=black blockId=191 -runtimeId=4987 +runtimeId=5057 minecraft:hard_stained_glass_pane;color=blue blockId=191 -runtimeId=4983 +runtimeId=5053 minecraft:hard_stained_glass_pane;color=brown blockId=191 -runtimeId=4984 +runtimeId=5054 minecraft:hard_stained_glass_pane;color=cyan blockId=191 -runtimeId=4981 +runtimeId=5051 minecraft:hard_stained_glass_pane;color=gray blockId=191 -runtimeId=4979 +runtimeId=5049 minecraft:hard_stained_glass_pane;color=green blockId=191 -runtimeId=4985 +runtimeId=5055 minecraft:hard_stained_glass_pane;color=light_blue blockId=191 -runtimeId=4975 +runtimeId=5045 minecraft:hard_stained_glass_pane;color=lime blockId=191 -runtimeId=4977 +runtimeId=5047 minecraft:hard_stained_glass_pane;color=magenta blockId=191 -runtimeId=4974 +runtimeId=5044 minecraft:hard_stained_glass_pane;color=orange blockId=191 -runtimeId=4973 +runtimeId=5043 minecraft:hard_stained_glass_pane;color=pink blockId=191 -runtimeId=4978 +runtimeId=5048 minecraft:hard_stained_glass_pane;color=purple blockId=191 -runtimeId=4982 +runtimeId=5052 minecraft:hard_stained_glass_pane;color=red blockId=191 -runtimeId=4986 +runtimeId=5056 minecraft:hard_stained_glass_pane;color=silver blockId=191 -runtimeId=4980 +runtimeId=5050 minecraft:hard_stained_glass_pane;color=white blockId=191 -runtimeId=4972 +runtimeId=5042 minecraft:hard_stained_glass_pane;color=yellow blockId=191 -runtimeId=4976 +runtimeId=5046 minecraft:hardened_clay blockId=172 -runtimeId=4988 +runtimeId=5058 minecraft:hay_block;deprecated=0;pillar_axis=x blockId=170 -runtimeId=4993 +runtimeId=5063 minecraft:hay_block;deprecated=0;pillar_axis=y blockId=170 -runtimeId=4989 +runtimeId=5059 minecraft:hay_block;deprecated=0;pillar_axis=z blockId=170 -runtimeId=4997 +runtimeId=5067 minecraft:hay_block;deprecated=1;pillar_axis=x blockId=170 -runtimeId=4994 +runtimeId=5064 minecraft:hay_block;deprecated=1;pillar_axis=y blockId=170 -runtimeId=4990 +runtimeId=5060 minecraft:hay_block;deprecated=1;pillar_axis=z blockId=170 -runtimeId=4998 +runtimeId=5068 minecraft:hay_block;deprecated=2;pillar_axis=x blockId=170 -runtimeId=4995 +runtimeId=5065 minecraft:hay_block;deprecated=2;pillar_axis=y blockId=170 -runtimeId=4991 +runtimeId=5061 minecraft:hay_block;deprecated=2;pillar_axis=z blockId=170 -runtimeId=4999 +runtimeId=5069 minecraft:hay_block;deprecated=3;pillar_axis=x blockId=170 -runtimeId=4996 +runtimeId=5066 minecraft:hay_block;deprecated=3;pillar_axis=y blockId=170 -runtimeId=4992 +runtimeId=5062 minecraft:hay_block;deprecated=3;pillar_axis=z blockId=170 -runtimeId=5000 +runtimeId=5070 minecraft:heavy_weighted_pressure_plate;redstone_signal=0 blockId=148 -runtimeId=5001 +runtimeId=5071 minecraft:heavy_weighted_pressure_plate;redstone_signal=1 blockId=148 -runtimeId=5002 +runtimeId=5072 minecraft:heavy_weighted_pressure_plate;redstone_signal=2 blockId=148 -runtimeId=5003 +runtimeId=5073 minecraft:heavy_weighted_pressure_plate;redstone_signal=3 blockId=148 -runtimeId=5004 +runtimeId=5074 minecraft:heavy_weighted_pressure_plate;redstone_signal=4 blockId=148 -runtimeId=5005 +runtimeId=5075 minecraft:heavy_weighted_pressure_plate;redstone_signal=5 blockId=148 -runtimeId=5006 +runtimeId=5076 minecraft:heavy_weighted_pressure_plate;redstone_signal=6 blockId=148 -runtimeId=5007 +runtimeId=5077 minecraft:heavy_weighted_pressure_plate;redstone_signal=7 blockId=148 -runtimeId=5008 +runtimeId=5078 minecraft:heavy_weighted_pressure_plate;redstone_signal=8 blockId=148 -runtimeId=5009 +runtimeId=5079 minecraft:heavy_weighted_pressure_plate;redstone_signal=9 blockId=148 -runtimeId=5010 +runtimeId=5080 minecraft:heavy_weighted_pressure_plate;redstone_signal=10 blockId=148 -runtimeId=5011 +runtimeId=5081 minecraft:heavy_weighted_pressure_plate;redstone_signal=11 blockId=148 -runtimeId=5012 +runtimeId=5082 minecraft:heavy_weighted_pressure_plate;redstone_signal=12 blockId=148 -runtimeId=5013 +runtimeId=5083 minecraft:heavy_weighted_pressure_plate;redstone_signal=13 blockId=148 -runtimeId=5014 +runtimeId=5084 minecraft:heavy_weighted_pressure_plate;redstone_signal=14 blockId=148 -runtimeId=5015 +runtimeId=5085 minecraft:heavy_weighted_pressure_plate;redstone_signal=15 blockId=148 -runtimeId=5016 +runtimeId=5086 minecraft:honey_block blockId=475 -runtimeId=5017 +runtimeId=5087 minecraft:honeycomb_block blockId=476 -runtimeId=5018 +runtimeId=5088 minecraft:hopper;facing_direction=0;toggle_bit=0 blockId=154 -runtimeId=5019 +runtimeId=5089 minecraft:hopper;facing_direction=0;toggle_bit=1 blockId=154 -runtimeId=5025 +runtimeId=5095 minecraft:hopper;facing_direction=1;toggle_bit=0 blockId=154 -runtimeId=5020 +runtimeId=5090 minecraft:hopper;facing_direction=1;toggle_bit=1 blockId=154 -runtimeId=5026 +runtimeId=5096 minecraft:hopper;facing_direction=2;toggle_bit=0 blockId=154 -runtimeId=5021 +runtimeId=5091 minecraft:hopper;facing_direction=2;toggle_bit=1 blockId=154 -runtimeId=5027 +runtimeId=5097 minecraft:hopper;facing_direction=3;toggle_bit=0 blockId=154 -runtimeId=5022 +runtimeId=5092 minecraft:hopper;facing_direction=3;toggle_bit=1 blockId=154 -runtimeId=5028 +runtimeId=5098 minecraft:hopper;facing_direction=4;toggle_bit=0 blockId=154 -runtimeId=5023 +runtimeId=5093 minecraft:hopper;facing_direction=4;toggle_bit=1 blockId=154 -runtimeId=5029 +runtimeId=5099 minecraft:hopper;facing_direction=5;toggle_bit=0 blockId=154 -runtimeId=5024 +runtimeId=5094 minecraft:hopper;facing_direction=5;toggle_bit=1 blockId=154 -runtimeId=5030 +runtimeId=5100 minecraft:ice blockId=79 -runtimeId=5031 +runtimeId=5101 minecraft:infested_deepslate;pillar_axis=x blockId=709 -runtimeId=5033 +runtimeId=5103 minecraft:infested_deepslate;pillar_axis=y blockId=709 -runtimeId=5032 +runtimeId=5102 minecraft:infested_deepslate;pillar_axis=z blockId=709 -runtimeId=5034 +runtimeId=5104 minecraft:info_update blockId=248 -runtimeId=5035 +runtimeId=5105 minecraft:info_update2 blockId=249 -runtimeId=5036 +runtimeId=5106 minecraft:invisibleBedrock blockId=95 -runtimeId=5037 +runtimeId=5107 minecraft:iron_bars blockId=101 -runtimeId=5038 +runtimeId=5108 minecraft:iron_block blockId=42 -runtimeId=5039 +runtimeId=5109 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5040 +runtimeId=5110 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5041 +runtimeId=5111 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5042 +runtimeId=5112 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5043 +runtimeId=5113 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5056 +runtimeId=5126 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5057 +runtimeId=5127 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5058 +runtimeId=5128 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5059 +runtimeId=5129 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5048 +runtimeId=5118 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5049 +runtimeId=5119 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5050 +runtimeId=5120 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5051 +runtimeId=5121 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5064 +runtimeId=5134 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5065 +runtimeId=5135 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5066 +runtimeId=5136 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5067 +runtimeId=5137 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5044 +runtimeId=5114 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5045 +runtimeId=5115 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5046 +runtimeId=5116 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5047 +runtimeId=5117 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5060 +runtimeId=5130 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5061 +runtimeId=5131 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5062 +runtimeId=5132 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5063 +runtimeId=5133 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5052 +runtimeId=5122 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5053 +runtimeId=5123 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5054 +runtimeId=5124 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5055 +runtimeId=5125 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5068 +runtimeId=5138 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5069 +runtimeId=5139 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5070 +runtimeId=5140 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5071 +runtimeId=5141 minecraft:iron_ore blockId=15 -runtimeId=5072 +runtimeId=5142 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=167 -runtimeId=5073 +runtimeId=5143 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=167 -runtimeId=5074 +runtimeId=5144 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=167 -runtimeId=5075 +runtimeId=5145 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=167 -runtimeId=5076 +runtimeId=5146 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=167 -runtimeId=5077 +runtimeId=5147 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=167 -runtimeId=5078 +runtimeId=5148 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=167 -runtimeId=5079 +runtimeId=5149 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=167 -runtimeId=5080 +runtimeId=5150 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=167 -runtimeId=5081 +runtimeId=5151 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=167 -runtimeId=5082 +runtimeId=5152 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=167 -runtimeId=5083 +runtimeId=5153 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=167 -runtimeId=5084 +runtimeId=5154 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=167 -runtimeId=5085 +runtimeId=5155 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=167 -runtimeId=5086 +runtimeId=5156 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=167 -runtimeId=5087 +runtimeId=5157 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=167 -runtimeId=5088 +runtimeId=5158 minecraft:jigsaw;facing_direction=0;rotation=0 blockId=466 -runtimeId=5089 +runtimeId=5159 minecraft:jigsaw;facing_direction=0;rotation=1 blockId=466 -runtimeId=5095 +runtimeId=5165 minecraft:jigsaw;facing_direction=0;rotation=2 blockId=466 -runtimeId=5101 +runtimeId=5171 minecraft:jigsaw;facing_direction=0;rotation=3 blockId=466 -runtimeId=5107 +runtimeId=5177 minecraft:jigsaw;facing_direction=1;rotation=0 blockId=466 -runtimeId=5090 +runtimeId=5160 minecraft:jigsaw;facing_direction=1;rotation=1 blockId=466 -runtimeId=5096 +runtimeId=5166 minecraft:jigsaw;facing_direction=1;rotation=2 blockId=466 -runtimeId=5102 +runtimeId=5172 minecraft:jigsaw;facing_direction=1;rotation=3 blockId=466 -runtimeId=5108 +runtimeId=5178 minecraft:jigsaw;facing_direction=2;rotation=0 blockId=466 -runtimeId=5091 +runtimeId=5161 minecraft:jigsaw;facing_direction=2;rotation=1 blockId=466 -runtimeId=5097 +runtimeId=5167 minecraft:jigsaw;facing_direction=2;rotation=2 blockId=466 -runtimeId=5103 +runtimeId=5173 minecraft:jigsaw;facing_direction=2;rotation=3 blockId=466 -runtimeId=5109 +runtimeId=5179 minecraft:jigsaw;facing_direction=3;rotation=0 blockId=466 -runtimeId=5092 +runtimeId=5162 minecraft:jigsaw;facing_direction=3;rotation=1 blockId=466 -runtimeId=5098 +runtimeId=5168 minecraft:jigsaw;facing_direction=3;rotation=2 blockId=466 -runtimeId=5104 +runtimeId=5174 minecraft:jigsaw;facing_direction=3;rotation=3 blockId=466 -runtimeId=5110 +runtimeId=5180 minecraft:jigsaw;facing_direction=4;rotation=0 blockId=466 -runtimeId=5093 +runtimeId=5163 minecraft:jigsaw;facing_direction=4;rotation=1 blockId=466 -runtimeId=5099 +runtimeId=5169 minecraft:jigsaw;facing_direction=4;rotation=2 blockId=466 -runtimeId=5105 +runtimeId=5175 minecraft:jigsaw;facing_direction=4;rotation=3 blockId=466 -runtimeId=5111 +runtimeId=5181 minecraft:jigsaw;facing_direction=5;rotation=0 blockId=466 -runtimeId=5094 +runtimeId=5164 minecraft:jigsaw;facing_direction=5;rotation=1 blockId=466 -runtimeId=5100 +runtimeId=5170 minecraft:jigsaw;facing_direction=5;rotation=2 blockId=466 -runtimeId=5106 +runtimeId=5176 minecraft:jigsaw;facing_direction=5;rotation=3 blockId=466 -runtimeId=5112 +runtimeId=5182 minecraft:jukebox blockId=84 -runtimeId=5113 +runtimeId=5183 minecraft:jungle_button;button_pressed_bit=0;facing_direction=0 blockId=398 -runtimeId=5114 +runtimeId=5184 minecraft:jungle_button;button_pressed_bit=0;facing_direction=1 blockId=398 -runtimeId=5115 +runtimeId=5185 minecraft:jungle_button;button_pressed_bit=0;facing_direction=2 blockId=398 -runtimeId=5116 +runtimeId=5186 minecraft:jungle_button;button_pressed_bit=0;facing_direction=3 blockId=398 -runtimeId=5117 +runtimeId=5187 minecraft:jungle_button;button_pressed_bit=0;facing_direction=4 blockId=398 -runtimeId=5118 +runtimeId=5188 minecraft:jungle_button;button_pressed_bit=0;facing_direction=5 blockId=398 -runtimeId=5119 +runtimeId=5189 minecraft:jungle_button;button_pressed_bit=1;facing_direction=0 blockId=398 -runtimeId=5120 +runtimeId=5190 minecraft:jungle_button;button_pressed_bit=1;facing_direction=1 blockId=398 -runtimeId=5121 +runtimeId=5191 minecraft:jungle_button;button_pressed_bit=1;facing_direction=2 blockId=398 -runtimeId=5122 +runtimeId=5192 minecraft:jungle_button;button_pressed_bit=1;facing_direction=3 blockId=398 -runtimeId=5123 +runtimeId=5193 minecraft:jungle_button;button_pressed_bit=1;facing_direction=4 blockId=398 -runtimeId=5124 +runtimeId=5194 minecraft:jungle_button;button_pressed_bit=1;facing_direction=5 blockId=398 -runtimeId=5125 +runtimeId=5195 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5126 +runtimeId=5196 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5127 +runtimeId=5197 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5128 +runtimeId=5198 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5129 +runtimeId=5199 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5142 +runtimeId=5212 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5143 +runtimeId=5213 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5144 +runtimeId=5214 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5145 +runtimeId=5215 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5134 +runtimeId=5204 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5135 +runtimeId=5205 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5136 +runtimeId=5206 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5137 +runtimeId=5207 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5150 +runtimeId=5220 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5151 +runtimeId=5221 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5152 +runtimeId=5222 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5153 +runtimeId=5223 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5130 +runtimeId=5200 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5131 +runtimeId=5201 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5132 +runtimeId=5202 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5133 +runtimeId=5203 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5146 +runtimeId=5216 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5147 +runtimeId=5217 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5148 +runtimeId=5218 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5149 +runtimeId=5219 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5138 +runtimeId=5208 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5139 +runtimeId=5209 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5140 +runtimeId=5210 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5141 +runtimeId=5211 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5154 +runtimeId=5224 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5155 +runtimeId=5225 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5156 +runtimeId=5226 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5157 +runtimeId=5227 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=185 -runtimeId=5158 +runtimeId=5228 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=185 -runtimeId=5159 +runtimeId=5229 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=185 -runtimeId=5160 +runtimeId=5230 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=185 -runtimeId=5161 +runtimeId=5231 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=185 -runtimeId=5162 +runtimeId=5232 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=185 -runtimeId=5163 +runtimeId=5233 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=185 -runtimeId=5164 +runtimeId=5234 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=185 -runtimeId=5165 +runtimeId=5235 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=185 -runtimeId=5166 +runtimeId=5236 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=185 -runtimeId=5167 +runtimeId=5237 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=185 -runtimeId=5168 +runtimeId=5238 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=185 -runtimeId=5169 +runtimeId=5239 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=185 -runtimeId=5170 +runtimeId=5240 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=185 -runtimeId=5171 +runtimeId=5241 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=185 -runtimeId=5172 +runtimeId=5242 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=185 -runtimeId=5173 +runtimeId=5243 minecraft:jungle_pressure_plate;redstone_signal=0 blockId=408 -runtimeId=5174 +runtimeId=5244 minecraft:jungle_pressure_plate;redstone_signal=1 blockId=408 -runtimeId=5175 +runtimeId=5245 minecraft:jungle_pressure_plate;redstone_signal=2 blockId=408 -runtimeId=5176 +runtimeId=5246 minecraft:jungle_pressure_plate;redstone_signal=3 blockId=408 -runtimeId=5177 +runtimeId=5247 minecraft:jungle_pressure_plate;redstone_signal=4 blockId=408 -runtimeId=5178 +runtimeId=5248 minecraft:jungle_pressure_plate;redstone_signal=5 blockId=408 -runtimeId=5179 +runtimeId=5249 minecraft:jungle_pressure_plate;redstone_signal=6 blockId=408 -runtimeId=5180 +runtimeId=5250 minecraft:jungle_pressure_plate;redstone_signal=7 blockId=408 -runtimeId=5181 +runtimeId=5251 minecraft:jungle_pressure_plate;redstone_signal=8 blockId=408 -runtimeId=5182 +runtimeId=5252 minecraft:jungle_pressure_plate;redstone_signal=9 blockId=408 -runtimeId=5183 +runtimeId=5253 minecraft:jungle_pressure_plate;redstone_signal=10 blockId=408 -runtimeId=5184 +runtimeId=5254 minecraft:jungle_pressure_plate;redstone_signal=11 blockId=408 -runtimeId=5185 +runtimeId=5255 minecraft:jungle_pressure_plate;redstone_signal=12 blockId=408 -runtimeId=5186 +runtimeId=5256 minecraft:jungle_pressure_plate;redstone_signal=13 blockId=408 -runtimeId=5187 +runtimeId=5257 minecraft:jungle_pressure_plate;redstone_signal=14 blockId=408 -runtimeId=5188 +runtimeId=5258 minecraft:jungle_pressure_plate;redstone_signal=15 blockId=408 -runtimeId=5189 +runtimeId=5259 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=0 blockId=136 -runtimeId=5190 +runtimeId=5260 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=1 blockId=136 -runtimeId=5191 +runtimeId=5261 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=2 blockId=136 -runtimeId=5192 +runtimeId=5262 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=3 blockId=136 -runtimeId=5193 +runtimeId=5263 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=0 blockId=136 -runtimeId=5194 +runtimeId=5264 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=1 blockId=136 -runtimeId=5195 +runtimeId=5265 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=2 blockId=136 -runtimeId=5196 +runtimeId=5266 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=3 blockId=136 -runtimeId=5197 +runtimeId=5267 minecraft:jungle_standing_sign;ground_sign_direction=0 blockId=443 -runtimeId=5198 +runtimeId=5268 minecraft:jungle_standing_sign;ground_sign_direction=1 blockId=443 -runtimeId=5199 +runtimeId=5269 minecraft:jungle_standing_sign;ground_sign_direction=2 blockId=443 -runtimeId=5200 +runtimeId=5270 minecraft:jungle_standing_sign;ground_sign_direction=3 blockId=443 -runtimeId=5201 +runtimeId=5271 minecraft:jungle_standing_sign;ground_sign_direction=4 blockId=443 -runtimeId=5202 +runtimeId=5272 minecraft:jungle_standing_sign;ground_sign_direction=5 blockId=443 -runtimeId=5203 +runtimeId=5273 minecraft:jungle_standing_sign;ground_sign_direction=6 blockId=443 -runtimeId=5204 +runtimeId=5274 minecraft:jungle_standing_sign;ground_sign_direction=7 blockId=443 -runtimeId=5205 +runtimeId=5275 minecraft:jungle_standing_sign;ground_sign_direction=8 blockId=443 -runtimeId=5206 +runtimeId=5276 minecraft:jungle_standing_sign;ground_sign_direction=9 blockId=443 -runtimeId=5207 +runtimeId=5277 minecraft:jungle_standing_sign;ground_sign_direction=10 blockId=443 -runtimeId=5208 +runtimeId=5278 minecraft:jungle_standing_sign;ground_sign_direction=11 blockId=443 -runtimeId=5209 +runtimeId=5279 minecraft:jungle_standing_sign;ground_sign_direction=12 blockId=443 -runtimeId=5210 +runtimeId=5280 minecraft:jungle_standing_sign;ground_sign_direction=13 blockId=443 -runtimeId=5211 +runtimeId=5281 minecraft:jungle_standing_sign;ground_sign_direction=14 blockId=443 -runtimeId=5212 +runtimeId=5282 minecraft:jungle_standing_sign;ground_sign_direction=15 blockId=443 -runtimeId=5213 +runtimeId=5283 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=403 -runtimeId=5214 +runtimeId=5284 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=403 -runtimeId=5215 +runtimeId=5285 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=403 -runtimeId=5216 +runtimeId=5286 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=403 -runtimeId=5217 +runtimeId=5287 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=403 -runtimeId=5218 +runtimeId=5288 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=403 -runtimeId=5219 +runtimeId=5289 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=403 -runtimeId=5220 +runtimeId=5290 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=403 -runtimeId=5221 +runtimeId=5291 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=403 -runtimeId=5222 +runtimeId=5292 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=403 -runtimeId=5223 +runtimeId=5293 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=403 -runtimeId=5224 +runtimeId=5294 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=403 -runtimeId=5225 +runtimeId=5295 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=403 -runtimeId=5226 +runtimeId=5296 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=403 -runtimeId=5227 +runtimeId=5297 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=403 -runtimeId=5228 +runtimeId=5298 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=403 -runtimeId=5229 +runtimeId=5299 minecraft:jungle_wall_sign;facing_direction=0 blockId=444 -runtimeId=5230 +runtimeId=5300 minecraft:jungle_wall_sign;facing_direction=1 blockId=444 -runtimeId=5231 +runtimeId=5301 minecraft:jungle_wall_sign;facing_direction=2 blockId=444 -runtimeId=5232 +runtimeId=5302 minecraft:jungle_wall_sign;facing_direction=3 blockId=444 -runtimeId=5233 +runtimeId=5303 minecraft:jungle_wall_sign;facing_direction=4 blockId=444 -runtimeId=5234 +runtimeId=5304 minecraft:jungle_wall_sign;facing_direction=5 blockId=444 -runtimeId=5235 +runtimeId=5305 minecraft:kelp;kelp_age=0 blockId=393 -runtimeId=5236 +runtimeId=5306 minecraft:kelp;kelp_age=1 blockId=393 -runtimeId=5237 +runtimeId=5307 minecraft:kelp;kelp_age=2 blockId=393 -runtimeId=5238 +runtimeId=5308 minecraft:kelp;kelp_age=3 blockId=393 -runtimeId=5239 +runtimeId=5309 minecraft:kelp;kelp_age=4 blockId=393 -runtimeId=5240 +runtimeId=5310 minecraft:kelp;kelp_age=5 blockId=393 -runtimeId=5241 +runtimeId=5311 minecraft:kelp;kelp_age=6 blockId=393 -runtimeId=5242 +runtimeId=5312 minecraft:kelp;kelp_age=7 blockId=393 -runtimeId=5243 +runtimeId=5313 minecraft:kelp;kelp_age=8 blockId=393 -runtimeId=5244 +runtimeId=5314 minecraft:kelp;kelp_age=9 blockId=393 -runtimeId=5245 +runtimeId=5315 minecraft:kelp;kelp_age=10 blockId=393 -runtimeId=5246 +runtimeId=5316 minecraft:kelp;kelp_age=11 blockId=393 -runtimeId=5247 +runtimeId=5317 minecraft:kelp;kelp_age=12 blockId=393 -runtimeId=5248 +runtimeId=5318 minecraft:kelp;kelp_age=13 blockId=393 -runtimeId=5249 +runtimeId=5319 minecraft:kelp;kelp_age=14 blockId=393 -runtimeId=5250 +runtimeId=5320 minecraft:kelp;kelp_age=15 blockId=393 -runtimeId=5251 +runtimeId=5321 minecraft:kelp;kelp_age=16 blockId=393 -runtimeId=5252 +runtimeId=5322 minecraft:kelp;kelp_age=17 blockId=393 -runtimeId=5253 +runtimeId=5323 minecraft:kelp;kelp_age=18 blockId=393 -runtimeId=5254 +runtimeId=5324 minecraft:kelp;kelp_age=19 blockId=393 -runtimeId=5255 +runtimeId=5325 minecraft:kelp;kelp_age=20 blockId=393 -runtimeId=5256 +runtimeId=5326 minecraft:kelp;kelp_age=21 blockId=393 -runtimeId=5257 +runtimeId=5327 minecraft:kelp;kelp_age=22 blockId=393 -runtimeId=5258 +runtimeId=5328 minecraft:kelp;kelp_age=23 blockId=393 -runtimeId=5259 +runtimeId=5329 minecraft:kelp;kelp_age=24 blockId=393 -runtimeId=5260 +runtimeId=5330 minecraft:kelp;kelp_age=25 blockId=393 -runtimeId=5261 +runtimeId=5331 minecraft:ladder;facing_direction=0 blockId=65 -runtimeId=5262 +runtimeId=5332 minecraft:ladder;facing_direction=1 blockId=65 -runtimeId=5263 +runtimeId=5333 minecraft:ladder;facing_direction=2 blockId=65 -runtimeId=5264 +runtimeId=5334 minecraft:ladder;facing_direction=3 blockId=65 -runtimeId=5265 +runtimeId=5335 minecraft:ladder;facing_direction=4 blockId=65 -runtimeId=5266 +runtimeId=5336 minecraft:ladder;facing_direction=5 blockId=65 -runtimeId=5267 +runtimeId=5337 minecraft:lantern;hanging=0 blockId=463 -runtimeId=5268 +runtimeId=5338 minecraft:lantern;hanging=1 blockId=463 -runtimeId=5269 +runtimeId=5339 minecraft:lapis_block blockId=22 -runtimeId=5270 +runtimeId=5340 minecraft:lapis_ore blockId=21 -runtimeId=5271 +runtimeId=5341 minecraft:large_amethyst_bud;facing_direction=0 blockId=585 -runtimeId=5272 +runtimeId=5342 minecraft:large_amethyst_bud;facing_direction=1 blockId=585 -runtimeId=5273 +runtimeId=5343 minecraft:large_amethyst_bud;facing_direction=2 blockId=585 -runtimeId=5274 +runtimeId=5344 minecraft:large_amethyst_bud;facing_direction=3 blockId=585 -runtimeId=5275 +runtimeId=5345 minecraft:large_amethyst_bud;facing_direction=4 blockId=585 -runtimeId=5276 +runtimeId=5346 minecraft:large_amethyst_bud;facing_direction=5 blockId=585 -runtimeId=5277 +runtimeId=5347 minecraft:lava;liquid_depth=0 blockId=11 -runtimeId=5278 +runtimeId=5348 minecraft:lava;liquid_depth=1 blockId=11 -runtimeId=5279 +runtimeId=5349 minecraft:lava;liquid_depth=2 blockId=11 -runtimeId=5280 +runtimeId=5350 minecraft:lava;liquid_depth=3 blockId=11 -runtimeId=5281 +runtimeId=5351 minecraft:lava;liquid_depth=4 blockId=11 -runtimeId=5282 +runtimeId=5352 minecraft:lava;liquid_depth=5 blockId=11 -runtimeId=5283 +runtimeId=5353 minecraft:lava;liquid_depth=6 blockId=11 -runtimeId=5284 +runtimeId=5354 minecraft:lava;liquid_depth=7 blockId=11 -runtimeId=5285 +runtimeId=5355 minecraft:lava;liquid_depth=8 blockId=11 -runtimeId=5286 +runtimeId=5356 minecraft:lava;liquid_depth=9 blockId=11 -runtimeId=5287 +runtimeId=5357 minecraft:lava;liquid_depth=10 blockId=11 -runtimeId=5288 +runtimeId=5358 minecraft:lava;liquid_depth=11 blockId=11 -runtimeId=5289 +runtimeId=5359 minecraft:lava;liquid_depth=12 blockId=11 -runtimeId=5290 +runtimeId=5360 minecraft:lava;liquid_depth=13 blockId=11 -runtimeId=5291 +runtimeId=5361 minecraft:lava;liquid_depth=14 blockId=11 -runtimeId=5292 +runtimeId=5362 minecraft:lava;liquid_depth=15 blockId=11 -runtimeId=5293 +runtimeId=5363 minecraft:lava_cauldron;fill_level=0;cauldron_liquid=lava blockId=465 -runtimeId=5301 +runtimeId=5371 minecraft:lava_cauldron;fill_level=0;cauldron_liquid=powder_snow blockId=465 -runtimeId=5308 +runtimeId=5378 minecraft:lava_cauldron;fill_level=0;cauldron_liquid=water blockId=465 -runtimeId=5294 +runtimeId=5364 minecraft:lava_cauldron;fill_level=1;cauldron_liquid=lava blockId=465 -runtimeId=5302 +runtimeId=5372 minecraft:lava_cauldron;fill_level=1;cauldron_liquid=powder_snow blockId=465 -runtimeId=5309 +runtimeId=5379 minecraft:lava_cauldron;fill_level=1;cauldron_liquid=water blockId=465 -runtimeId=5295 +runtimeId=5365 minecraft:lava_cauldron;fill_level=2;cauldron_liquid=lava blockId=465 -runtimeId=5303 +runtimeId=5373 minecraft:lava_cauldron;fill_level=2;cauldron_liquid=powder_snow blockId=465 -runtimeId=5310 +runtimeId=5380 minecraft:lava_cauldron;fill_level=2;cauldron_liquid=water blockId=465 -runtimeId=5296 +runtimeId=5366 minecraft:lava_cauldron;fill_level=3;cauldron_liquid=lava blockId=465 -runtimeId=5304 +runtimeId=5374 minecraft:lava_cauldron;fill_level=3;cauldron_liquid=powder_snow blockId=465 -runtimeId=5311 +runtimeId=5381 minecraft:lava_cauldron;fill_level=3;cauldron_liquid=water blockId=465 -runtimeId=5297 +runtimeId=5367 minecraft:lava_cauldron;fill_level=4;cauldron_liquid=lava blockId=465 -runtimeId=5305 +runtimeId=5375 minecraft:lava_cauldron;fill_level=4;cauldron_liquid=powder_snow blockId=465 -runtimeId=5312 +runtimeId=5382 minecraft:lava_cauldron;fill_level=4;cauldron_liquid=water blockId=465 -runtimeId=5298 +runtimeId=5368 minecraft:lava_cauldron;fill_level=5;cauldron_liquid=lava blockId=465 -runtimeId=5306 +runtimeId=5376 minecraft:lava_cauldron;fill_level=5;cauldron_liquid=powder_snow blockId=465 -runtimeId=5313 +runtimeId=5383 minecraft:lava_cauldron;fill_level=5;cauldron_liquid=water blockId=465 -runtimeId=5299 +runtimeId=5369 minecraft:lava_cauldron;fill_level=6;cauldron_liquid=lava blockId=465 -runtimeId=5307 +runtimeId=5377 minecraft:lava_cauldron;fill_level=6;cauldron_liquid=powder_snow blockId=465 -runtimeId=5314 +runtimeId=5384 minecraft:lava_cauldron;fill_level=6;cauldron_liquid=water blockId=465 -runtimeId=5300 +runtimeId=5370 minecraft:leaves2;persistent_bit=0;update_bit=0;new_leaf_type=acacia blockId=161 -runtimeId=5331 +runtimeId=5401 minecraft:leaves2;persistent_bit=0;update_bit=0;new_leaf_type=dark_oak blockId=161 -runtimeId=5332 +runtimeId=5402 minecraft:leaves2;persistent_bit=0;update_bit=1;new_leaf_type=acacia blockId=161 -runtimeId=5333 +runtimeId=5403 minecraft:leaves2;persistent_bit=0;update_bit=1;new_leaf_type=dark_oak blockId=161 -runtimeId=5334 +runtimeId=5404 minecraft:leaves2;persistent_bit=1;update_bit=0;new_leaf_type=acacia blockId=161 -runtimeId=5335 +runtimeId=5405 minecraft:leaves2;persistent_bit=1;update_bit=0;new_leaf_type=dark_oak blockId=161 -runtimeId=5336 +runtimeId=5406 minecraft:leaves2;persistent_bit=1;update_bit=1;new_leaf_type=acacia blockId=161 -runtimeId=5337 +runtimeId=5407 minecraft:leaves2;persistent_bit=1;update_bit=1;new_leaf_type=dark_oak blockId=161 -runtimeId=5338 +runtimeId=5408 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=birch blockId=18 -runtimeId=5317 +runtimeId=5387 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=jungle blockId=18 -runtimeId=5318 +runtimeId=5388 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=oak blockId=18 -runtimeId=5315 +runtimeId=5385 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=spruce blockId=18 -runtimeId=5316 +runtimeId=5386 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=birch blockId=18 -runtimeId=5321 +runtimeId=5391 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=jungle blockId=18 -runtimeId=5322 +runtimeId=5392 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=oak blockId=18 -runtimeId=5319 +runtimeId=5389 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=spruce blockId=18 -runtimeId=5320 +runtimeId=5390 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=birch blockId=18 -runtimeId=5325 +runtimeId=5395 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=jungle blockId=18 -runtimeId=5326 +runtimeId=5396 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=oak blockId=18 -runtimeId=5323 +runtimeId=5393 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=spruce blockId=18 -runtimeId=5324 +runtimeId=5394 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=birch blockId=18 -runtimeId=5329 +runtimeId=5399 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=jungle blockId=18 -runtimeId=5330 +runtimeId=5400 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=oak blockId=18 -runtimeId=5327 +runtimeId=5397 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=spruce blockId=18 -runtimeId=5328 +runtimeId=5398 minecraft:lectern;powered_bit=0;direction=0 blockId=449 -runtimeId=5339 +runtimeId=5409 minecraft:lectern;powered_bit=0;direction=1 blockId=449 -runtimeId=5340 +runtimeId=5410 minecraft:lectern;powered_bit=0;direction=2 blockId=449 -runtimeId=5341 +runtimeId=5411 minecraft:lectern;powered_bit=0;direction=3 blockId=449 -runtimeId=5342 +runtimeId=5412 minecraft:lectern;powered_bit=1;direction=0 blockId=449 -runtimeId=5343 +runtimeId=5413 minecraft:lectern;powered_bit=1;direction=1 blockId=449 -runtimeId=5344 +runtimeId=5414 minecraft:lectern;powered_bit=1;direction=2 blockId=449 -runtimeId=5345 +runtimeId=5415 minecraft:lectern;powered_bit=1;direction=3 blockId=449 -runtimeId=5346 +runtimeId=5416 minecraft:lever;open_bit=0;lever_direction=down_east_west blockId=69 -runtimeId=5347 +runtimeId=5417 minecraft:lever;open_bit=0;lever_direction=down_north_south blockId=69 -runtimeId=5354 +runtimeId=5424 minecraft:lever;open_bit=0;lever_direction=east blockId=69 -runtimeId=5348 +runtimeId=5418 minecraft:lever;open_bit=0;lever_direction=north blockId=69 -runtimeId=5351 +runtimeId=5421 minecraft:lever;open_bit=0;lever_direction=south blockId=69 -runtimeId=5350 +runtimeId=5420 minecraft:lever;open_bit=0;lever_direction=up_east_west blockId=69 -runtimeId=5353 +runtimeId=5423 minecraft:lever;open_bit=0;lever_direction=up_north_south blockId=69 -runtimeId=5352 +runtimeId=5422 minecraft:lever;open_bit=0;lever_direction=west blockId=69 -runtimeId=5349 +runtimeId=5419 minecraft:lever;open_bit=1;lever_direction=down_east_west blockId=69 -runtimeId=5355 +runtimeId=5425 minecraft:lever;open_bit=1;lever_direction=down_north_south blockId=69 -runtimeId=5362 +runtimeId=5432 minecraft:lever;open_bit=1;lever_direction=east blockId=69 -runtimeId=5356 +runtimeId=5426 minecraft:lever;open_bit=1;lever_direction=north blockId=69 -runtimeId=5359 +runtimeId=5429 minecraft:lever;open_bit=1;lever_direction=south blockId=69 -runtimeId=5358 +runtimeId=5428 minecraft:lever;open_bit=1;lever_direction=up_east_west blockId=69 -runtimeId=5361 +runtimeId=5431 minecraft:lever;open_bit=1;lever_direction=up_north_south blockId=69 -runtimeId=5360 +runtimeId=5430 minecraft:lever;open_bit=1;lever_direction=west blockId=69 -runtimeId=5357 +runtimeId=5427 minecraft:light_block;block_light_level=0 blockId=470 -runtimeId=5363 +runtimeId=5433 minecraft:light_block;block_light_level=1 blockId=470 -runtimeId=5364 +runtimeId=5434 minecraft:light_block;block_light_level=2 blockId=470 -runtimeId=5365 +runtimeId=5435 minecraft:light_block;block_light_level=3 blockId=470 -runtimeId=5366 +runtimeId=5436 minecraft:light_block;block_light_level=4 blockId=470 -runtimeId=5367 +runtimeId=5437 minecraft:light_block;block_light_level=5 blockId=470 -runtimeId=5368 +runtimeId=5438 minecraft:light_block;block_light_level=6 blockId=470 -runtimeId=5369 +runtimeId=5439 minecraft:light_block;block_light_level=7 blockId=470 -runtimeId=5370 +runtimeId=5440 minecraft:light_block;block_light_level=8 blockId=470 -runtimeId=5371 +runtimeId=5441 minecraft:light_block;block_light_level=9 blockId=470 -runtimeId=5372 +runtimeId=5442 minecraft:light_block;block_light_level=10 blockId=470 -runtimeId=5373 +runtimeId=5443 minecraft:light_block;block_light_level=11 blockId=470 -runtimeId=5374 +runtimeId=5444 minecraft:light_block;block_light_level=12 blockId=470 -runtimeId=5375 +runtimeId=5445 minecraft:light_block;block_light_level=13 blockId=470 -runtimeId=5376 +runtimeId=5446 minecraft:light_block;block_light_level=14 blockId=470 -runtimeId=5377 +runtimeId=5447 minecraft:light_block;block_light_level=15 blockId=470 -runtimeId=5378 +runtimeId=5448 + +minecraft:light_blue_candle;lit=0;candles=0 +blockId=-1 +runtimeId=5449 + +minecraft:light_blue_candle;lit=0;candles=1 +blockId=-1 +runtimeId=5450 + +minecraft:light_blue_candle;lit=0;candles=2 +blockId=-1 +runtimeId=5451 + +minecraft:light_blue_candle;lit=0;candles=3 +blockId=-1 +runtimeId=5452 + +minecraft:light_blue_candle;lit=1;candles=0 +blockId=-1 +runtimeId=5453 + +minecraft:light_blue_candle;lit=1;candles=1 +blockId=-1 +runtimeId=5454 + +minecraft:light_blue_candle;lit=1;candles=2 +blockId=-1 +runtimeId=5455 + +minecraft:light_blue_candle;lit=1;candles=3 +blockId=-1 +runtimeId=5456 + +minecraft:light_blue_candle_cake;lit=0 +blockId=-1 +runtimeId=5457 + +minecraft:light_blue_candle_cake;lit=1 +blockId=-1 +runtimeId=5458 minecraft:light_blue_glazed_terracotta;facing_direction=0 blockId=223 -runtimeId=5379 +runtimeId=5459 minecraft:light_blue_glazed_terracotta;facing_direction=1 blockId=223 -runtimeId=5380 +runtimeId=5460 minecraft:light_blue_glazed_terracotta;facing_direction=2 blockId=223 -runtimeId=5381 +runtimeId=5461 minecraft:light_blue_glazed_terracotta;facing_direction=3 blockId=223 -runtimeId=5382 +runtimeId=5462 minecraft:light_blue_glazed_terracotta;facing_direction=4 blockId=223 -runtimeId=5383 +runtimeId=5463 minecraft:light_blue_glazed_terracotta;facing_direction=5 blockId=223 -runtimeId=5384 +runtimeId=5464 + +minecraft:light_gray_candle;lit=0;candles=0 +blockId=-1 +runtimeId=5465 + +minecraft:light_gray_candle;lit=0;candles=1 +blockId=-1 +runtimeId=5466 + +minecraft:light_gray_candle;lit=0;candles=2 +blockId=-1 +runtimeId=5467 + +minecraft:light_gray_candle;lit=0;candles=3 +blockId=-1 +runtimeId=5468 + +minecraft:light_gray_candle;lit=1;candles=0 +blockId=-1 +runtimeId=5469 + +minecraft:light_gray_candle;lit=1;candles=1 +blockId=-1 +runtimeId=5470 + +minecraft:light_gray_candle;lit=1;candles=2 +blockId=-1 +runtimeId=5471 + +minecraft:light_gray_candle;lit=1;candles=3 +blockId=-1 +runtimeId=5472 + +minecraft:light_gray_candle_cake;lit=0 +blockId=-1 +runtimeId=5473 + +minecraft:light_gray_candle_cake;lit=1 +blockId=-1 +runtimeId=5474 minecraft:light_weighted_pressure_plate;redstone_signal=0 blockId=147 -runtimeId=5385 +runtimeId=5475 minecraft:light_weighted_pressure_plate;redstone_signal=1 blockId=147 -runtimeId=5386 +runtimeId=5476 minecraft:light_weighted_pressure_plate;redstone_signal=2 blockId=147 -runtimeId=5387 +runtimeId=5477 minecraft:light_weighted_pressure_plate;redstone_signal=3 blockId=147 -runtimeId=5388 +runtimeId=5478 minecraft:light_weighted_pressure_plate;redstone_signal=4 blockId=147 -runtimeId=5389 +runtimeId=5479 minecraft:light_weighted_pressure_plate;redstone_signal=5 blockId=147 -runtimeId=5390 +runtimeId=5480 minecraft:light_weighted_pressure_plate;redstone_signal=6 blockId=147 -runtimeId=5391 +runtimeId=5481 minecraft:light_weighted_pressure_plate;redstone_signal=7 blockId=147 -runtimeId=5392 +runtimeId=5482 minecraft:light_weighted_pressure_plate;redstone_signal=8 blockId=147 -runtimeId=5393 +runtimeId=5483 minecraft:light_weighted_pressure_plate;redstone_signal=9 blockId=147 -runtimeId=5394 +runtimeId=5484 minecraft:light_weighted_pressure_plate;redstone_signal=10 blockId=147 -runtimeId=5395 +runtimeId=5485 minecraft:light_weighted_pressure_plate;redstone_signal=11 blockId=147 -runtimeId=5396 +runtimeId=5486 minecraft:light_weighted_pressure_plate;redstone_signal=12 blockId=147 -runtimeId=5397 +runtimeId=5487 minecraft:light_weighted_pressure_plate;redstone_signal=13 blockId=147 -runtimeId=5398 +runtimeId=5488 minecraft:light_weighted_pressure_plate;redstone_signal=14 blockId=147 -runtimeId=5399 +runtimeId=5489 minecraft:light_weighted_pressure_plate;redstone_signal=15 blockId=147 -runtimeId=5400 +runtimeId=5490 minecraft:lightning_rod;facing_direction=0 blockId=567 -runtimeId=5401 +runtimeId=5491 minecraft:lightning_rod;facing_direction=1 blockId=567 -runtimeId=5402 +runtimeId=5492 minecraft:lightning_rod;facing_direction=2 blockId=567 -runtimeId=5403 +runtimeId=5493 minecraft:lightning_rod;facing_direction=3 blockId=567 -runtimeId=5404 +runtimeId=5494 minecraft:lightning_rod;facing_direction=4 blockId=567 -runtimeId=5405 +runtimeId=5495 minecraft:lightning_rod;facing_direction=5 blockId=567 -runtimeId=5406 +runtimeId=5496 + +minecraft:lime_candle;lit=0;candles=0 +blockId=-1 +runtimeId=5497 + +minecraft:lime_candle;lit=0;candles=1 +blockId=-1 +runtimeId=5498 + +minecraft:lime_candle;lit=0;candles=2 +blockId=-1 +runtimeId=5499 + +minecraft:lime_candle;lit=0;candles=3 +blockId=-1 +runtimeId=5500 + +minecraft:lime_candle;lit=1;candles=0 +blockId=-1 +runtimeId=5501 + +minecraft:lime_candle;lit=1;candles=1 +blockId=-1 +runtimeId=5502 + +minecraft:lime_candle;lit=1;candles=2 +blockId=-1 +runtimeId=5503 + +minecraft:lime_candle;lit=1;candles=3 +blockId=-1 +runtimeId=5504 + +minecraft:lime_candle_cake;lit=0 +blockId=-1 +runtimeId=5505 + +minecraft:lime_candle_cake;lit=1 +blockId=-1 +runtimeId=5506 minecraft:lime_glazed_terracotta;facing_direction=0 blockId=225 -runtimeId=5407 +runtimeId=5507 minecraft:lime_glazed_terracotta;facing_direction=1 blockId=225 -runtimeId=5408 +runtimeId=5508 minecraft:lime_glazed_terracotta;facing_direction=2 blockId=225 -runtimeId=5409 +runtimeId=5509 minecraft:lime_glazed_terracotta;facing_direction=3 blockId=225 -runtimeId=5410 +runtimeId=5510 minecraft:lime_glazed_terracotta;facing_direction=4 blockId=225 -runtimeId=5411 +runtimeId=5511 minecraft:lime_glazed_terracotta;facing_direction=5 blockId=225 -runtimeId=5412 +runtimeId=5512 minecraft:lit_blast_furnace;facing_direction=0 blockId=469 -runtimeId=5413 +runtimeId=5513 minecraft:lit_blast_furnace;facing_direction=1 blockId=469 -runtimeId=5414 +runtimeId=5514 minecraft:lit_blast_furnace;facing_direction=2 blockId=469 -runtimeId=5415 +runtimeId=5515 minecraft:lit_blast_furnace;facing_direction=3 blockId=469 -runtimeId=5416 +runtimeId=5516 minecraft:lit_blast_furnace;facing_direction=4 blockId=469 -runtimeId=5417 +runtimeId=5517 minecraft:lit_blast_furnace;facing_direction=5 blockId=469 -runtimeId=5418 +runtimeId=5518 minecraft:lit_deepslate_redstone_ore blockId=659 -runtimeId=5419 +runtimeId=5519 minecraft:lit_furnace;facing_direction=0 blockId=62 -runtimeId=5420 +runtimeId=5520 minecraft:lit_furnace;facing_direction=1 blockId=62 -runtimeId=5421 +runtimeId=5521 minecraft:lit_furnace;facing_direction=2 blockId=62 -runtimeId=5422 +runtimeId=5522 minecraft:lit_furnace;facing_direction=3 blockId=62 -runtimeId=5423 +runtimeId=5523 minecraft:lit_furnace;facing_direction=4 blockId=62 -runtimeId=5424 +runtimeId=5524 minecraft:lit_furnace;facing_direction=5 blockId=62 -runtimeId=5425 +runtimeId=5525 minecraft:lit_pumpkin;direction=0 blockId=91 -runtimeId=5426 +runtimeId=5526 minecraft:lit_pumpkin;direction=1 blockId=91 -runtimeId=5427 +runtimeId=5527 minecraft:lit_pumpkin;direction=2 blockId=91 -runtimeId=5428 +runtimeId=5528 minecraft:lit_pumpkin;direction=3 blockId=91 -runtimeId=5429 +runtimeId=5529 minecraft:lit_redstone_lamp blockId=124 -runtimeId=5430 +runtimeId=5530 minecraft:lit_redstone_ore blockId=74 -runtimeId=5431 +runtimeId=5531 minecraft:lit_smoker;facing_direction=0 blockId=454 -runtimeId=5432 +runtimeId=5532 minecraft:lit_smoker;facing_direction=1 blockId=454 -runtimeId=5433 +runtimeId=5533 minecraft:lit_smoker;facing_direction=2 blockId=454 -runtimeId=5434 +runtimeId=5534 minecraft:lit_smoker;facing_direction=3 blockId=454 -runtimeId=5435 +runtimeId=5535 minecraft:lit_smoker;facing_direction=4 blockId=454 -runtimeId=5436 +runtimeId=5536 minecraft:lit_smoker;facing_direction=5 blockId=454 -runtimeId=5437 +runtimeId=5537 minecraft:lodestone blockId=477 -runtimeId=5438 +runtimeId=5538 minecraft:log2;new_log_type=acacia;pillar_axis=x blockId=162 -runtimeId=5453 +runtimeId=5553 minecraft:log2;new_log_type=acacia;pillar_axis=y blockId=162 -runtimeId=5451 +runtimeId=5551 minecraft:log2;new_log_type=acacia;pillar_axis=z blockId=162 -runtimeId=5455 +runtimeId=5555 minecraft:log2;new_log_type=dark_oak;pillar_axis=x blockId=162 -runtimeId=5454 +runtimeId=5554 minecraft:log2;new_log_type=dark_oak;pillar_axis=y blockId=162 -runtimeId=5452 +runtimeId=5552 minecraft:log2;new_log_type=dark_oak;pillar_axis=z blockId=162 -runtimeId=5456 +runtimeId=5556 minecraft:log;old_log_type=birch;pillar_axis=x blockId=17 -runtimeId=5445 +runtimeId=5545 minecraft:log;old_log_type=birch;pillar_axis=y blockId=17 -runtimeId=5441 +runtimeId=5541 minecraft:log;old_log_type=birch;pillar_axis=z blockId=17 -runtimeId=5449 +runtimeId=5549 minecraft:log;old_log_type=jungle;pillar_axis=x blockId=17 -runtimeId=5446 +runtimeId=5546 minecraft:log;old_log_type=jungle;pillar_axis=y blockId=17 -runtimeId=5442 +runtimeId=5542 minecraft:log;old_log_type=jungle;pillar_axis=z blockId=17 -runtimeId=5450 +runtimeId=5550 minecraft:log;old_log_type=oak;pillar_axis=x blockId=17 -runtimeId=5443 +runtimeId=5543 minecraft:log;old_log_type=oak;pillar_axis=y blockId=17 -runtimeId=5439 +runtimeId=5539 minecraft:log;old_log_type=oak;pillar_axis=z blockId=17 -runtimeId=5447 +runtimeId=5547 minecraft:log;old_log_type=spruce;pillar_axis=x blockId=17 -runtimeId=5444 +runtimeId=5544 minecraft:log;old_log_type=spruce;pillar_axis=y blockId=17 -runtimeId=5440 +runtimeId=5540 minecraft:log;old_log_type=spruce;pillar_axis=z blockId=17 -runtimeId=5448 +runtimeId=5548 minecraft:loom;direction=0 blockId=459 -runtimeId=5457 +runtimeId=5557 minecraft:loom;direction=1 blockId=459 -runtimeId=5458 +runtimeId=5558 minecraft:loom;direction=2 blockId=459 -runtimeId=5459 +runtimeId=5559 minecraft:loom;direction=3 blockId=459 -runtimeId=5460 +runtimeId=5560 + +minecraft:magenta_candle;lit=0;candles=0 +blockId=-1 +runtimeId=5561 + +minecraft:magenta_candle;lit=0;candles=1 +blockId=-1 +runtimeId=5562 + +minecraft:magenta_candle;lit=0;candles=2 +blockId=-1 +runtimeId=5563 + +minecraft:magenta_candle;lit=0;candles=3 +blockId=-1 +runtimeId=5564 + +minecraft:magenta_candle;lit=1;candles=0 +blockId=-1 +runtimeId=5565 + +minecraft:magenta_candle;lit=1;candles=1 +blockId=-1 +runtimeId=5566 + +minecraft:magenta_candle;lit=1;candles=2 +blockId=-1 +runtimeId=5567 + +minecraft:magenta_candle;lit=1;candles=3 +blockId=-1 +runtimeId=5568 + +minecraft:magenta_candle_cake;lit=0 +blockId=-1 +runtimeId=5569 + +minecraft:magenta_candle_cake;lit=1 +blockId=-1 +runtimeId=5570 minecraft:magenta_glazed_terracotta;facing_direction=0 blockId=222 -runtimeId=5461 +runtimeId=5571 minecraft:magenta_glazed_terracotta;facing_direction=1 blockId=222 -runtimeId=5462 +runtimeId=5572 minecraft:magenta_glazed_terracotta;facing_direction=2 blockId=222 -runtimeId=5463 +runtimeId=5573 minecraft:magenta_glazed_terracotta;facing_direction=3 blockId=222 -runtimeId=5464 +runtimeId=5574 minecraft:magenta_glazed_terracotta;facing_direction=4 blockId=222 -runtimeId=5465 +runtimeId=5575 minecraft:magenta_glazed_terracotta;facing_direction=5 blockId=222 -runtimeId=5466 +runtimeId=5576 minecraft:magma blockId=213 -runtimeId=5467 +runtimeId=5577 minecraft:medium_amethyst_bud;facing_direction=0 blockId=586 -runtimeId=5468 +runtimeId=5578 minecraft:medium_amethyst_bud;facing_direction=1 blockId=586 -runtimeId=5469 +runtimeId=5579 minecraft:medium_amethyst_bud;facing_direction=2 blockId=586 -runtimeId=5470 +runtimeId=5580 minecraft:medium_amethyst_bud;facing_direction=3 blockId=586 -runtimeId=5471 +runtimeId=5581 minecraft:medium_amethyst_bud;facing_direction=4 blockId=586 -runtimeId=5472 +runtimeId=5582 minecraft:medium_amethyst_bud;facing_direction=5 blockId=586 -runtimeId=5473 +runtimeId=5583 minecraft:melon_block blockId=103 -runtimeId=5474 +runtimeId=5584 minecraft:melon_stem;facing_direction=0;growth=0 blockId=105 -runtimeId=5475 +runtimeId=5585 minecraft:melon_stem;facing_direction=0;growth=1 blockId=105 -runtimeId=5476 +runtimeId=5586 minecraft:melon_stem;facing_direction=0;growth=2 blockId=105 -runtimeId=5477 +runtimeId=5587 minecraft:melon_stem;facing_direction=0;growth=3 blockId=105 -runtimeId=5478 +runtimeId=5588 minecraft:melon_stem;facing_direction=0;growth=4 blockId=105 -runtimeId=5479 +runtimeId=5589 minecraft:melon_stem;facing_direction=0;growth=5 blockId=105 -runtimeId=5480 +runtimeId=5590 minecraft:melon_stem;facing_direction=0;growth=6 blockId=105 -runtimeId=5481 +runtimeId=5591 minecraft:melon_stem;facing_direction=0;growth=7 blockId=105 -runtimeId=5482 +runtimeId=5592 minecraft:melon_stem;facing_direction=1;growth=0 blockId=105 -runtimeId=5483 +runtimeId=5593 minecraft:melon_stem;facing_direction=1;growth=1 blockId=105 -runtimeId=5484 +runtimeId=5594 minecraft:melon_stem;facing_direction=1;growth=2 blockId=105 -runtimeId=5485 +runtimeId=5595 minecraft:melon_stem;facing_direction=1;growth=3 blockId=105 -runtimeId=5486 +runtimeId=5596 minecraft:melon_stem;facing_direction=1;growth=4 blockId=105 -runtimeId=5487 +runtimeId=5597 minecraft:melon_stem;facing_direction=1;growth=5 blockId=105 -runtimeId=5488 +runtimeId=5598 minecraft:melon_stem;facing_direction=1;growth=6 blockId=105 -runtimeId=5489 +runtimeId=5599 minecraft:melon_stem;facing_direction=1;growth=7 blockId=105 -runtimeId=5490 +runtimeId=5600 minecraft:melon_stem;facing_direction=2;growth=0 blockId=105 -runtimeId=5491 +runtimeId=5601 minecraft:melon_stem;facing_direction=2;growth=1 blockId=105 -runtimeId=5492 +runtimeId=5602 minecraft:melon_stem;facing_direction=2;growth=2 blockId=105 -runtimeId=5493 +runtimeId=5603 minecraft:melon_stem;facing_direction=2;growth=3 blockId=105 -runtimeId=5494 +runtimeId=5604 minecraft:melon_stem;facing_direction=2;growth=4 blockId=105 -runtimeId=5495 +runtimeId=5605 minecraft:melon_stem;facing_direction=2;growth=5 blockId=105 -runtimeId=5496 +runtimeId=5606 minecraft:melon_stem;facing_direction=2;growth=6 blockId=105 -runtimeId=5497 +runtimeId=5607 minecraft:melon_stem;facing_direction=2;growth=7 blockId=105 -runtimeId=5498 +runtimeId=5608 minecraft:melon_stem;facing_direction=3;growth=0 blockId=105 -runtimeId=5499 +runtimeId=5609 minecraft:melon_stem;facing_direction=3;growth=1 blockId=105 -runtimeId=5500 +runtimeId=5610 minecraft:melon_stem;facing_direction=3;growth=2 blockId=105 -runtimeId=5501 +runtimeId=5611 minecraft:melon_stem;facing_direction=3;growth=3 blockId=105 -runtimeId=5502 +runtimeId=5612 minecraft:melon_stem;facing_direction=3;growth=4 blockId=105 -runtimeId=5503 +runtimeId=5613 minecraft:melon_stem;facing_direction=3;growth=5 blockId=105 -runtimeId=5504 +runtimeId=5614 minecraft:melon_stem;facing_direction=3;growth=6 blockId=105 -runtimeId=5505 +runtimeId=5615 minecraft:melon_stem;facing_direction=3;growth=7 blockId=105 -runtimeId=5506 +runtimeId=5616 minecraft:melon_stem;facing_direction=4;growth=0 blockId=105 -runtimeId=5507 +runtimeId=5617 minecraft:melon_stem;facing_direction=4;growth=1 blockId=105 -runtimeId=5508 +runtimeId=5618 minecraft:melon_stem;facing_direction=4;growth=2 blockId=105 -runtimeId=5509 +runtimeId=5619 minecraft:melon_stem;facing_direction=4;growth=3 blockId=105 -runtimeId=5510 +runtimeId=5620 minecraft:melon_stem;facing_direction=4;growth=4 blockId=105 -runtimeId=5511 +runtimeId=5621 minecraft:melon_stem;facing_direction=4;growth=5 blockId=105 -runtimeId=5512 +runtimeId=5622 minecraft:melon_stem;facing_direction=4;growth=6 blockId=105 -runtimeId=5513 +runtimeId=5623 minecraft:melon_stem;facing_direction=4;growth=7 blockId=105 -runtimeId=5514 +runtimeId=5624 minecraft:melon_stem;facing_direction=5;growth=0 blockId=105 -runtimeId=5515 +runtimeId=5625 minecraft:melon_stem;facing_direction=5;growth=1 blockId=105 -runtimeId=5516 +runtimeId=5626 minecraft:melon_stem;facing_direction=5;growth=2 blockId=105 -runtimeId=5517 +runtimeId=5627 minecraft:melon_stem;facing_direction=5;growth=3 blockId=105 -runtimeId=5518 +runtimeId=5628 minecraft:melon_stem;facing_direction=5;growth=4 blockId=105 -runtimeId=5519 +runtimeId=5629 minecraft:melon_stem;facing_direction=5;growth=5 blockId=105 -runtimeId=5520 +runtimeId=5630 minecraft:melon_stem;facing_direction=5;growth=6 blockId=105 -runtimeId=5521 +runtimeId=5631 minecraft:melon_stem;facing_direction=5;growth=7 blockId=105 -runtimeId=5522 +runtimeId=5632 minecraft:mob_spawner blockId=52 -runtimeId=5523 +runtimeId=5633 minecraft:monster_egg;monster_egg_stone_type=chiseled_stone_brick blockId=97 -runtimeId=5529 +runtimeId=5639 minecraft:monster_egg;monster_egg_stone_type=cobblestone blockId=97 -runtimeId=5525 +runtimeId=5635 minecraft:monster_egg;monster_egg_stone_type=cracked_stone_brick blockId=97 -runtimeId=5528 +runtimeId=5638 minecraft:monster_egg;monster_egg_stone_type=mossy_stone_brick blockId=97 -runtimeId=5527 +runtimeId=5637 minecraft:monster_egg;monster_egg_stone_type=stone blockId=97 -runtimeId=5524 +runtimeId=5634 minecraft:monster_egg;monster_egg_stone_type=stone_brick blockId=97 -runtimeId=5526 +runtimeId=5636 minecraft:moss_block blockId=575 -runtimeId=5530 +runtimeId=5640 minecraft:moss_carpet blockId=590 -runtimeId=5531 +runtimeId=5641 minecraft:mossy_cobblestone blockId=48 -runtimeId=5532 +runtimeId=5642 minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=434 -runtimeId=5533 +runtimeId=5643 minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=434 -runtimeId=5534 +runtimeId=5644 minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=434 -runtimeId=5535 +runtimeId=5645 minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=434 -runtimeId=5536 +runtimeId=5646 minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=434 -runtimeId=5537 +runtimeId=5647 minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=434 -runtimeId=5538 +runtimeId=5648 minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=434 -runtimeId=5539 +runtimeId=5649 minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=434 -runtimeId=5540 +runtimeId=5650 minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=430 -runtimeId=5541 +runtimeId=5651 minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=430 -runtimeId=5542 +runtimeId=5652 minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=430 -runtimeId=5543 +runtimeId=5653 minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=430 -runtimeId=5544 +runtimeId=5654 minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=430 -runtimeId=5545 +runtimeId=5655 minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=430 -runtimeId=5546 +runtimeId=5656 minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=430 -runtimeId=5547 +runtimeId=5657 minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=430 -runtimeId=5548 +runtimeId=5658 minecraft:movingBlock blockId=250 -runtimeId=5549 +runtimeId=5659 minecraft:mycelium blockId=110 -runtimeId=5550 +runtimeId=5660 minecraft:nether_brick blockId=112 -runtimeId=5551 +runtimeId=5661 minecraft:nether_brick_fence blockId=113 -runtimeId=5552 +runtimeId=5662 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=114 -runtimeId=5553 +runtimeId=5663 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=114 -runtimeId=5554 +runtimeId=5664 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=114 -runtimeId=5555 +runtimeId=5665 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=114 -runtimeId=5556 +runtimeId=5666 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=114 -runtimeId=5557 +runtimeId=5667 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=114 -runtimeId=5558 +runtimeId=5668 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=114 -runtimeId=5559 +runtimeId=5669 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=114 -runtimeId=5560 +runtimeId=5670 minecraft:nether_gold_ore blockId=543 -runtimeId=5561 +runtimeId=5671 minecraft:nether_sprouts blockId=493 -runtimeId=5562 +runtimeId=5672 minecraft:nether_wart;age=0 blockId=115 -runtimeId=5563 +runtimeId=5673 minecraft:nether_wart;age=1 blockId=115 -runtimeId=5564 +runtimeId=5674 minecraft:nether_wart;age=2 blockId=115 -runtimeId=5565 +runtimeId=5675 minecraft:nether_wart;age=3 blockId=115 -runtimeId=5566 +runtimeId=5676 minecraft:nether_wart_block blockId=214 -runtimeId=5567 +runtimeId=5677 minecraft:netherite_block blockId=525 -runtimeId=5568 +runtimeId=5678 minecraft:netherrack blockId=87 -runtimeId=5569 +runtimeId=5679 minecraft:netherreactor blockId=247 -runtimeId=5570 +runtimeId=5680 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=435 -runtimeId=5571 +runtimeId=5681 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=435 -runtimeId=5572 +runtimeId=5682 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=435 -runtimeId=5573 +runtimeId=5683 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=435 -runtimeId=5574 +runtimeId=5684 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=435 -runtimeId=5575 +runtimeId=5685 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=435 -runtimeId=5576 +runtimeId=5686 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=435 -runtimeId=5577 +runtimeId=5687 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=435 -runtimeId=5578 +runtimeId=5688 minecraft:noteblock blockId=25 -runtimeId=5579 +runtimeId=5689 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=0 blockId=53 -runtimeId=5580 +runtimeId=5690 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=1 blockId=53 -runtimeId=5581 +runtimeId=5691 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=2 blockId=53 -runtimeId=5582 +runtimeId=5692 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=3 blockId=53 -runtimeId=5583 +runtimeId=5693 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=0 blockId=53 -runtimeId=5584 +runtimeId=5694 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=1 blockId=53 -runtimeId=5585 +runtimeId=5695 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=2 blockId=53 -runtimeId=5586 +runtimeId=5696 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=3 blockId=53 -runtimeId=5587 +runtimeId=5697 minecraft:observer;facing_direction=0;powered_bit=0 blockId=251 -runtimeId=5588 +runtimeId=5698 minecraft:observer;facing_direction=0;powered_bit=1 blockId=251 -runtimeId=5594 +runtimeId=5704 minecraft:observer;facing_direction=1;powered_bit=0 blockId=251 -runtimeId=5589 +runtimeId=5699 minecraft:observer;facing_direction=1;powered_bit=1 blockId=251 -runtimeId=5595 +runtimeId=5705 minecraft:observer;facing_direction=2;powered_bit=0 blockId=251 -runtimeId=5590 +runtimeId=5700 minecraft:observer;facing_direction=2;powered_bit=1 blockId=251 -runtimeId=5596 +runtimeId=5706 minecraft:observer;facing_direction=3;powered_bit=0 blockId=251 -runtimeId=5591 +runtimeId=5701 minecraft:observer;facing_direction=3;powered_bit=1 blockId=251 -runtimeId=5597 +runtimeId=5707 minecraft:observer;facing_direction=4;powered_bit=0 blockId=251 -runtimeId=5592 +runtimeId=5702 minecraft:observer;facing_direction=4;powered_bit=1 blockId=251 -runtimeId=5598 +runtimeId=5708 minecraft:observer;facing_direction=5;powered_bit=0 blockId=251 -runtimeId=5593 +runtimeId=5703 minecraft:observer;facing_direction=5;powered_bit=1 blockId=251 -runtimeId=5599 +runtimeId=5709 minecraft:obsidian blockId=49 -runtimeId=5600 +runtimeId=5710 + +minecraft:orange_candle;lit=0;candles=0 +blockId=-1 +runtimeId=5711 + +minecraft:orange_candle;lit=0;candles=1 +blockId=-1 +runtimeId=5712 + +minecraft:orange_candle;lit=0;candles=2 +blockId=-1 +runtimeId=5713 + +minecraft:orange_candle;lit=0;candles=3 +blockId=-1 +runtimeId=5714 + +minecraft:orange_candle;lit=1;candles=0 +blockId=-1 +runtimeId=5715 + +minecraft:orange_candle;lit=1;candles=1 +blockId=-1 +runtimeId=5716 + +minecraft:orange_candle;lit=1;candles=2 +blockId=-1 +runtimeId=5717 + +minecraft:orange_candle;lit=1;candles=3 +blockId=-1 +runtimeId=5718 + +minecraft:orange_candle_cake;lit=0 +blockId=-1 +runtimeId=5719 + +minecraft:orange_candle_cake;lit=1 +blockId=-1 +runtimeId=5720 minecraft:orange_glazed_terracotta;facing_direction=0 blockId=221 -runtimeId=5601 +runtimeId=5721 minecraft:orange_glazed_terracotta;facing_direction=1 blockId=221 -runtimeId=5602 +runtimeId=5722 minecraft:orange_glazed_terracotta;facing_direction=2 blockId=221 -runtimeId=5603 +runtimeId=5723 minecraft:orange_glazed_terracotta;facing_direction=3 blockId=221 -runtimeId=5604 +runtimeId=5724 minecraft:orange_glazed_terracotta;facing_direction=4 blockId=221 -runtimeId=5605 +runtimeId=5725 minecraft:orange_glazed_terracotta;facing_direction=5 blockId=221 -runtimeId=5606 +runtimeId=5726 minecraft:oxidized_copper blockId=598 -runtimeId=5607 +runtimeId=5727 minecraft:oxidized_cut_copper blockId=605 -runtimeId=5608 +runtimeId=5728 minecraft:oxidized_cut_copper_slab;top_slot_bit=0 blockId=619 -runtimeId=5609 +runtimeId=5729 minecraft:oxidized_cut_copper_slab;top_slot_bit=1 blockId=619 -runtimeId=5610 +runtimeId=5730 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=612 -runtimeId=5611 +runtimeId=5731 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=612 -runtimeId=5612 +runtimeId=5732 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=612 -runtimeId=5613 +runtimeId=5733 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=612 -runtimeId=5614 +runtimeId=5734 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=612 -runtimeId=5615 +runtimeId=5735 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=612 -runtimeId=5616 +runtimeId=5736 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=612 -runtimeId=5617 +runtimeId=5737 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=612 -runtimeId=5618 +runtimeId=5738 minecraft:oxidized_double_cut_copper_slab;top_slot_bit=0 blockId=626 -runtimeId=5619 +runtimeId=5739 minecraft:oxidized_double_cut_copper_slab;top_slot_bit=1 blockId=626 -runtimeId=5620 +runtimeId=5740 minecraft:packed_ice blockId=174 -runtimeId=5621 +runtimeId=5741 + +minecraft:pink_candle;lit=0;candles=0 +blockId=-1 +runtimeId=5742 + +minecraft:pink_candle;lit=0;candles=1 +blockId=-1 +runtimeId=5743 + +minecraft:pink_candle;lit=0;candles=2 +blockId=-1 +runtimeId=5744 + +minecraft:pink_candle;lit=0;candles=3 +blockId=-1 +runtimeId=5745 + +minecraft:pink_candle;lit=1;candles=0 +blockId=-1 +runtimeId=5746 + +minecraft:pink_candle;lit=1;candles=1 +blockId=-1 +runtimeId=5747 + +minecraft:pink_candle;lit=1;candles=2 +blockId=-1 +runtimeId=5748 + +minecraft:pink_candle;lit=1;candles=3 +blockId=-1 +runtimeId=5749 + +minecraft:pink_candle_cake;lit=0 +blockId=-1 +runtimeId=5750 + +minecraft:pink_candle_cake;lit=1 +blockId=-1 +runtimeId=5751 minecraft:pink_glazed_terracotta;facing_direction=0 blockId=226 -runtimeId=5622 +runtimeId=5752 minecraft:pink_glazed_terracotta;facing_direction=1 blockId=226 -runtimeId=5623 +runtimeId=5753 minecraft:pink_glazed_terracotta;facing_direction=2 blockId=226 -runtimeId=5624 +runtimeId=5754 minecraft:pink_glazed_terracotta;facing_direction=3 blockId=226 -runtimeId=5625 +runtimeId=5755 minecraft:pink_glazed_terracotta;facing_direction=4 blockId=226 -runtimeId=5626 +runtimeId=5756 minecraft:pink_glazed_terracotta;facing_direction=5 blockId=226 -runtimeId=5627 +runtimeId=5757 minecraft:piston;facing_direction=0 blockId=33 -runtimeId=5628 +runtimeId=5758 minecraft:piston;facing_direction=1 blockId=33 -runtimeId=5629 +runtimeId=5759 minecraft:piston;facing_direction=2 blockId=33 -runtimeId=5630 +runtimeId=5760 minecraft:piston;facing_direction=3 blockId=33 -runtimeId=5631 +runtimeId=5761 minecraft:piston;facing_direction=4 blockId=33 -runtimeId=5632 +runtimeId=5762 minecraft:piston;facing_direction=5 blockId=33 -runtimeId=5633 +runtimeId=5763 minecraft:pistonArmCollision;facing_direction=0 blockId=34 -runtimeId=5634 +runtimeId=5764 minecraft:pistonArmCollision;facing_direction=1 blockId=34 -runtimeId=5635 +runtimeId=5765 minecraft:pistonArmCollision;facing_direction=2 blockId=34 -runtimeId=5636 +runtimeId=5766 minecraft:pistonArmCollision;facing_direction=3 blockId=34 -runtimeId=5637 +runtimeId=5767 minecraft:pistonArmCollision;facing_direction=4 blockId=34 -runtimeId=5638 +runtimeId=5768 minecraft:pistonArmCollision;facing_direction=5 blockId=34 -runtimeId=5639 +runtimeId=5769 minecraft:planks;wood_type=acacia blockId=5 -runtimeId=5644 +runtimeId=5774 minecraft:planks;wood_type=birch blockId=5 -runtimeId=5642 +runtimeId=5772 minecraft:planks;wood_type=dark_oak blockId=5 -runtimeId=5645 +runtimeId=5775 minecraft:planks;wood_type=jungle blockId=5 -runtimeId=5643 +runtimeId=5773 minecraft:planks;wood_type=oak blockId=5 -runtimeId=5640 +runtimeId=5770 minecraft:planks;wood_type=spruce blockId=5 -runtimeId=5641 +runtimeId=5771 minecraft:podzol blockId=243 -runtimeId=5646 +runtimeId=5776 minecraft:pointed_dripstone;dripstone_thickness=base;hanging=0 blockId=563 -runtimeId=5650 +runtimeId=5780 minecraft:pointed_dripstone;dripstone_thickness=base;hanging=1 blockId=563 -runtimeId=5655 +runtimeId=5785 minecraft:pointed_dripstone;dripstone_thickness=frustum;hanging=0 blockId=563 -runtimeId=5648 +runtimeId=5778 minecraft:pointed_dripstone;dripstone_thickness=frustum;hanging=1 blockId=563 -runtimeId=5653 +runtimeId=5783 minecraft:pointed_dripstone;dripstone_thickness=merge;hanging=0 blockId=563 -runtimeId=5651 +runtimeId=5781 minecraft:pointed_dripstone;dripstone_thickness=merge;hanging=1 blockId=563 -runtimeId=5656 +runtimeId=5786 minecraft:pointed_dripstone;dripstone_thickness=middle;hanging=0 blockId=563 -runtimeId=5649 +runtimeId=5779 minecraft:pointed_dripstone;dripstone_thickness=middle;hanging=1 blockId=563 -runtimeId=5654 +runtimeId=5784 minecraft:pointed_dripstone;dripstone_thickness=tip;hanging=0 blockId=563 -runtimeId=5647 +runtimeId=5777 minecraft:pointed_dripstone;dripstone_thickness=tip;hanging=1 blockId=563 -runtimeId=5652 +runtimeId=5782 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=429 -runtimeId=5657 +runtimeId=5787 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=429 -runtimeId=5658 +runtimeId=5788 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=429 -runtimeId=5659 +runtimeId=5789 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=429 -runtimeId=5660 +runtimeId=5790 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=429 -runtimeId=5661 +runtimeId=5791 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=429 -runtimeId=5662 +runtimeId=5792 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=429 -runtimeId=5663 +runtimeId=5793 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=429 -runtimeId=5664 +runtimeId=5794 minecraft:polished_basalt;pillar_axis=x blockId=490 -runtimeId=5666 +runtimeId=5796 minecraft:polished_basalt;pillar_axis=y blockId=490 -runtimeId=5665 +runtimeId=5795 minecraft:polished_basalt;pillar_axis=z blockId=490 -runtimeId=5667 +runtimeId=5797 minecraft:polished_blackstone blockId=546 -runtimeId=5668 +runtimeId=5798 minecraft:polished_blackstone_brick_double_slab;top_slot_bit=0 blockId=540 -runtimeId=5669 +runtimeId=5799 minecraft:polished_blackstone_brick_double_slab;top_slot_bit=1 blockId=540 -runtimeId=5670 +runtimeId=5800 minecraft:polished_blackstone_brick_slab;top_slot_bit=0 blockId=539 -runtimeId=5671 +runtimeId=5801 minecraft:polished_blackstone_brick_slab;top_slot_bit=1 blockId=539 -runtimeId=5672 +runtimeId=5802 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=530 -runtimeId=5673 +runtimeId=5803 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=530 -runtimeId=5674 +runtimeId=5804 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=530 -runtimeId=5675 +runtimeId=5805 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=530 -runtimeId=5676 +runtimeId=5806 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=530 -runtimeId=5677 +runtimeId=5807 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=530 -runtimeId=5678 +runtimeId=5808 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=530 -runtimeId=5679 +runtimeId=5809 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=530 -runtimeId=5680 +runtimeId=5810 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5681 +runtimeId=5811 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5683 +runtimeId=5813 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5685 +runtimeId=5815 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5735 +runtimeId=5865 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5737 +runtimeId=5867 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5739 +runtimeId=5869 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5789 +runtimeId=5919 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5791 +runtimeId=5921 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5793 +runtimeId=5923 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5699 +runtimeId=5829 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5701 +runtimeId=5831 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5703 +runtimeId=5833 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5753 +runtimeId=5883 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5755 +runtimeId=5885 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5757 +runtimeId=5887 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5807 +runtimeId=5937 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5809 +runtimeId=5939 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5811 +runtimeId=5941 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5717 +runtimeId=5847 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5719 +runtimeId=5849 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5721 +runtimeId=5851 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5771 +runtimeId=5901 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5773 +runtimeId=5903 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5775 +runtimeId=5905 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5825 +runtimeId=5955 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5827 +runtimeId=5957 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5829 +runtimeId=5959 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5682 +runtimeId=5812 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5684 +runtimeId=5814 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5686 +runtimeId=5816 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5736 +runtimeId=5866 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5738 +runtimeId=5868 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5740 +runtimeId=5870 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5790 +runtimeId=5920 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5792 +runtimeId=5922 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5794 +runtimeId=5924 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5700 +runtimeId=5830 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5702 +runtimeId=5832 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5704 +runtimeId=5834 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5754 +runtimeId=5884 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5756 +runtimeId=5886 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5758 +runtimeId=5888 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5808 +runtimeId=5938 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5810 +runtimeId=5940 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5812 +runtimeId=5942 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5718 +runtimeId=5848 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5720 +runtimeId=5850 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5722 +runtimeId=5852 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5772 +runtimeId=5902 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5774 +runtimeId=5904 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5776 +runtimeId=5906 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5826 +runtimeId=5956 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5828 +runtimeId=5958 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5830 +runtimeId=5960 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5687 +runtimeId=5817 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5689 +runtimeId=5819 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5691 +runtimeId=5821 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5741 +runtimeId=5871 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5743 +runtimeId=5873 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5745 +runtimeId=5875 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5795 +runtimeId=5925 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5797 +runtimeId=5927 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5799 +runtimeId=5929 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5705 +runtimeId=5835 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5707 +runtimeId=5837 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5709 +runtimeId=5839 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5759 +runtimeId=5889 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5761 +runtimeId=5891 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5763 +runtimeId=5893 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5813 +runtimeId=5943 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5815 +runtimeId=5945 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5817 +runtimeId=5947 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5723 +runtimeId=5853 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5725 +runtimeId=5855 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5727 +runtimeId=5857 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5777 +runtimeId=5907 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5779 +runtimeId=5909 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5781 +runtimeId=5911 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5831 +runtimeId=5961 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5833 +runtimeId=5963 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5835 +runtimeId=5965 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5688 +runtimeId=5818 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5690 +runtimeId=5820 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5692 +runtimeId=5822 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5742 +runtimeId=5872 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5744 +runtimeId=5874 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5746 +runtimeId=5876 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5796 +runtimeId=5926 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5798 +runtimeId=5928 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5800 +runtimeId=5930 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5706 +runtimeId=5836 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5708 +runtimeId=5838 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5710 +runtimeId=5840 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5760 +runtimeId=5890 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5762 +runtimeId=5892 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5764 +runtimeId=5894 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5814 +runtimeId=5944 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5816 +runtimeId=5946 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5818 +runtimeId=5948 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5724 +runtimeId=5854 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5726 +runtimeId=5856 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5728 +runtimeId=5858 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5778 +runtimeId=5908 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5780 +runtimeId=5910 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5782 +runtimeId=5912 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5832 +runtimeId=5962 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5834 +runtimeId=5964 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5836 +runtimeId=5966 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5693 +runtimeId=5823 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5695 +runtimeId=5825 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5697 +runtimeId=5827 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5747 +runtimeId=5877 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5749 +runtimeId=5879 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5751 +runtimeId=5881 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5801 +runtimeId=5931 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5803 +runtimeId=5933 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5805 +runtimeId=5935 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5711 +runtimeId=5841 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5713 +runtimeId=5843 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5715 +runtimeId=5845 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5765 +runtimeId=5895 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5767 +runtimeId=5897 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5769 +runtimeId=5899 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5819 +runtimeId=5949 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5821 +runtimeId=5951 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5823 +runtimeId=5953 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5729 +runtimeId=5859 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5731 +runtimeId=5861 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5733 +runtimeId=5863 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5783 +runtimeId=5913 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5785 +runtimeId=5915 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5787 +runtimeId=5917 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5837 +runtimeId=5967 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5839 +runtimeId=5969 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5841 +runtimeId=5971 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5694 +runtimeId=5824 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5696 +runtimeId=5826 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5698 +runtimeId=5828 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5748 +runtimeId=5878 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5750 +runtimeId=5880 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5752 +runtimeId=5882 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5802 +runtimeId=5932 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5804 +runtimeId=5934 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5806 +runtimeId=5936 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5712 +runtimeId=5842 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5714 +runtimeId=5844 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5716 +runtimeId=5846 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5766 +runtimeId=5896 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5768 +runtimeId=5898 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5770 +runtimeId=5900 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5820 +runtimeId=5950 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5822 +runtimeId=5952 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5824 +runtimeId=5954 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5730 +runtimeId=5860 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5732 +runtimeId=5862 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5734 +runtimeId=5864 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5784 +runtimeId=5914 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5786 +runtimeId=5916 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5788 +runtimeId=5918 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5838 +runtimeId=5968 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5840 +runtimeId=5970 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5842 +runtimeId=5972 minecraft:polished_blackstone_bricks blockId=529 -runtimeId=5843 +runtimeId=5973 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=0 blockId=551 -runtimeId=5844 +runtimeId=5974 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=1 blockId=551 -runtimeId=5845 +runtimeId=5975 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=2 blockId=551 -runtimeId=5846 +runtimeId=5976 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=3 blockId=551 -runtimeId=5847 +runtimeId=5977 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=4 blockId=551 -runtimeId=5848 +runtimeId=5978 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=5 blockId=551 -runtimeId=5849 +runtimeId=5979 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=0 blockId=551 -runtimeId=5850 +runtimeId=5980 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=1 blockId=551 -runtimeId=5851 +runtimeId=5981 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=2 blockId=551 -runtimeId=5852 +runtimeId=5982 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=3 blockId=551 -runtimeId=5853 +runtimeId=5983 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=4 blockId=551 -runtimeId=5854 +runtimeId=5984 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=5 blockId=551 -runtimeId=5855 +runtimeId=5985 minecraft:polished_blackstone_double_slab;top_slot_bit=0 blockId=549 -runtimeId=5856 +runtimeId=5986 minecraft:polished_blackstone_double_slab;top_slot_bit=1 blockId=549 -runtimeId=5857 +runtimeId=5987 minecraft:polished_blackstone_pressure_plate;redstone_signal=0 blockId=550 -runtimeId=5858 +runtimeId=5988 minecraft:polished_blackstone_pressure_plate;redstone_signal=1 blockId=550 -runtimeId=5859 +runtimeId=5989 minecraft:polished_blackstone_pressure_plate;redstone_signal=2 blockId=550 -runtimeId=5860 +runtimeId=5990 minecraft:polished_blackstone_pressure_plate;redstone_signal=3 blockId=550 -runtimeId=5861 +runtimeId=5991 minecraft:polished_blackstone_pressure_plate;redstone_signal=4 blockId=550 -runtimeId=5862 +runtimeId=5992 minecraft:polished_blackstone_pressure_plate;redstone_signal=5 blockId=550 -runtimeId=5863 +runtimeId=5993 minecraft:polished_blackstone_pressure_plate;redstone_signal=6 blockId=550 -runtimeId=5864 +runtimeId=5994 minecraft:polished_blackstone_pressure_plate;redstone_signal=7 blockId=550 -runtimeId=5865 +runtimeId=5995 minecraft:polished_blackstone_pressure_plate;redstone_signal=8 blockId=550 -runtimeId=5866 +runtimeId=5996 minecraft:polished_blackstone_pressure_plate;redstone_signal=9 blockId=550 -runtimeId=5867 +runtimeId=5997 minecraft:polished_blackstone_pressure_plate;redstone_signal=10 blockId=550 -runtimeId=5868 +runtimeId=5998 minecraft:polished_blackstone_pressure_plate;redstone_signal=11 blockId=550 -runtimeId=5869 +runtimeId=5999 minecraft:polished_blackstone_pressure_plate;redstone_signal=12 blockId=550 -runtimeId=5870 +runtimeId=6000 minecraft:polished_blackstone_pressure_plate;redstone_signal=13 blockId=550 -runtimeId=5871 +runtimeId=6001 minecraft:polished_blackstone_pressure_plate;redstone_signal=14 blockId=550 -runtimeId=5872 +runtimeId=6002 minecraft:polished_blackstone_pressure_plate;redstone_signal=15 blockId=550 -runtimeId=5873 +runtimeId=6003 minecraft:polished_blackstone_slab;top_slot_bit=0 blockId=548 -runtimeId=5874 +runtimeId=6004 minecraft:polished_blackstone_slab;top_slot_bit=1 blockId=548 -runtimeId=5875 +runtimeId=6005 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=547 -runtimeId=5876 +runtimeId=6006 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=547 -runtimeId=5877 +runtimeId=6007 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=547 -runtimeId=5878 +runtimeId=6008 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=547 -runtimeId=5879 +runtimeId=6009 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=547 -runtimeId=5880 +runtimeId=6010 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=547 -runtimeId=5881 +runtimeId=6011 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=547 -runtimeId=5882 +runtimeId=6012 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=547 -runtimeId=5883 +runtimeId=6013 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5884 +runtimeId=6014 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5886 +runtimeId=6016 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5888 +runtimeId=6018 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5938 +runtimeId=6068 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5940 +runtimeId=6070 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5942 +runtimeId=6072 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=5992 +runtimeId=6122 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=5994 +runtimeId=6124 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=5996 +runtimeId=6126 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5902 +runtimeId=6032 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5904 +runtimeId=6034 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5906 +runtimeId=6036 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5956 +runtimeId=6086 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5958 +runtimeId=6088 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5960 +runtimeId=6090 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6010 +runtimeId=6140 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6012 +runtimeId=6142 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6014 +runtimeId=6144 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5920 +runtimeId=6050 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5922 +runtimeId=6052 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5924 +runtimeId=6054 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5974 +runtimeId=6104 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5976 +runtimeId=6106 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5978 +runtimeId=6108 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6028 +runtimeId=6158 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6030 +runtimeId=6160 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6032 +runtimeId=6162 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5885 +runtimeId=6015 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5887 +runtimeId=6017 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5889 +runtimeId=6019 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5939 +runtimeId=6069 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5941 +runtimeId=6071 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5943 +runtimeId=6073 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=5993 +runtimeId=6123 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=5995 +runtimeId=6125 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=5997 +runtimeId=6127 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5903 +runtimeId=6033 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5905 +runtimeId=6035 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5907 +runtimeId=6037 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5957 +runtimeId=6087 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5959 +runtimeId=6089 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5961 +runtimeId=6091 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6011 +runtimeId=6141 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6013 +runtimeId=6143 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6015 +runtimeId=6145 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5921 +runtimeId=6051 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5923 +runtimeId=6053 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5925 +runtimeId=6055 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5975 +runtimeId=6105 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5977 +runtimeId=6107 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5979 +runtimeId=6109 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6029 +runtimeId=6159 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6031 +runtimeId=6161 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6033 +runtimeId=6163 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5890 +runtimeId=6020 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5892 +runtimeId=6022 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5894 +runtimeId=6024 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5944 +runtimeId=6074 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5946 +runtimeId=6076 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5948 +runtimeId=6078 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=5998 +runtimeId=6128 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6000 +runtimeId=6130 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6002 +runtimeId=6132 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5908 +runtimeId=6038 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5910 +runtimeId=6040 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5912 +runtimeId=6042 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5962 +runtimeId=6092 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5964 +runtimeId=6094 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5966 +runtimeId=6096 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6016 +runtimeId=6146 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6018 +runtimeId=6148 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6020 +runtimeId=6150 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5926 +runtimeId=6056 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5928 +runtimeId=6058 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5930 +runtimeId=6060 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5980 +runtimeId=6110 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5982 +runtimeId=6112 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5984 +runtimeId=6114 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6034 +runtimeId=6164 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6036 +runtimeId=6166 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6038 +runtimeId=6168 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5891 +runtimeId=6021 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5893 +runtimeId=6023 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5895 +runtimeId=6025 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5945 +runtimeId=6075 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5947 +runtimeId=6077 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5949 +runtimeId=6079 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=5999 +runtimeId=6129 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6001 +runtimeId=6131 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6003 +runtimeId=6133 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5909 +runtimeId=6039 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5911 +runtimeId=6041 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5913 +runtimeId=6043 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5963 +runtimeId=6093 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5965 +runtimeId=6095 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5967 +runtimeId=6097 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6017 +runtimeId=6147 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6019 +runtimeId=6149 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6021 +runtimeId=6151 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5927 +runtimeId=6057 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5929 +runtimeId=6059 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5931 +runtimeId=6061 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5981 +runtimeId=6111 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5983 +runtimeId=6113 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5985 +runtimeId=6115 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6035 +runtimeId=6165 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6037 +runtimeId=6167 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6039 +runtimeId=6169 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5896 +runtimeId=6026 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5898 +runtimeId=6028 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5900 +runtimeId=6030 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5950 +runtimeId=6080 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5952 +runtimeId=6082 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5954 +runtimeId=6084 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6004 +runtimeId=6134 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6006 +runtimeId=6136 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6008 +runtimeId=6138 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5914 +runtimeId=6044 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5916 +runtimeId=6046 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5918 +runtimeId=6048 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5968 +runtimeId=6098 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5970 +runtimeId=6100 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5972 +runtimeId=6102 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6022 +runtimeId=6152 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6024 +runtimeId=6154 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6026 +runtimeId=6156 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5932 +runtimeId=6062 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5934 +runtimeId=6064 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5936 +runtimeId=6066 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5986 +runtimeId=6116 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5988 +runtimeId=6118 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5990 +runtimeId=6120 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6040 +runtimeId=6170 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6042 +runtimeId=6172 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6044 +runtimeId=6174 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5897 +runtimeId=6027 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5899 +runtimeId=6029 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5901 +runtimeId=6031 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5951 +runtimeId=6081 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5953 +runtimeId=6083 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5955 +runtimeId=6085 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6005 +runtimeId=6135 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6007 +runtimeId=6137 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6009 +runtimeId=6139 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5915 +runtimeId=6045 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5917 +runtimeId=6047 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5919 +runtimeId=6049 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5969 +runtimeId=6099 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5971 +runtimeId=6101 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5973 +runtimeId=6103 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6023 +runtimeId=6153 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6025 +runtimeId=6155 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6027 +runtimeId=6157 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=5933 +runtimeId=6063 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=5935 +runtimeId=6065 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=5937 +runtimeId=6067 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=5987 +runtimeId=6117 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=5989 +runtimeId=6119 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=5991 +runtimeId=6121 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6041 +runtimeId=6171 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6043 +runtimeId=6173 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6045 +runtimeId=6175 minecraft:polished_deepslate blockId=638 -runtimeId=6046 +runtimeId=6176 minecraft:polished_deepslate_double_slab;top_slot_bit=0 blockId=652 -runtimeId=6047 +runtimeId=6177 minecraft:polished_deepslate_double_slab;top_slot_bit=1 blockId=652 -runtimeId=6048 +runtimeId=6178 minecraft:polished_deepslate_slab;top_slot_bit=0 blockId=639 -runtimeId=6049 +runtimeId=6179 minecraft:polished_deepslate_slab;top_slot_bit=1 blockId=639 -runtimeId=6050 +runtimeId=6180 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=0 blockId=640 -runtimeId=6051 +runtimeId=6181 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=1 blockId=640 -runtimeId=6052 +runtimeId=6182 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=2 blockId=640 -runtimeId=6053 +runtimeId=6183 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=3 blockId=640 -runtimeId=6054 +runtimeId=6184 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=0 blockId=640 -runtimeId=6055 +runtimeId=6185 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=1 blockId=640 -runtimeId=6056 +runtimeId=6186 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=2 blockId=640 -runtimeId=6057 +runtimeId=6187 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=3 blockId=640 -runtimeId=6058 +runtimeId=6188 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6059 +runtimeId=6189 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6061 +runtimeId=6191 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6063 +runtimeId=6193 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6113 +runtimeId=6243 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6115 +runtimeId=6245 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6117 +runtimeId=6247 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6167 +runtimeId=6297 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6169 +runtimeId=6299 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6171 +runtimeId=6301 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6077 +runtimeId=6207 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6079 +runtimeId=6209 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6081 +runtimeId=6211 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6131 +runtimeId=6261 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6133 +runtimeId=6263 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6135 +runtimeId=6265 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6185 +runtimeId=6315 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6187 +runtimeId=6317 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6189 +runtimeId=6319 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6095 +runtimeId=6225 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6097 +runtimeId=6227 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6099 +runtimeId=6229 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6149 +runtimeId=6279 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6151 +runtimeId=6281 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6153 +runtimeId=6283 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6203 +runtimeId=6333 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6205 +runtimeId=6335 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6207 +runtimeId=6337 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6060 +runtimeId=6190 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6062 +runtimeId=6192 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6064 +runtimeId=6194 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6114 +runtimeId=6244 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6116 +runtimeId=6246 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6118 +runtimeId=6248 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6168 +runtimeId=6298 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6170 +runtimeId=6300 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6172 +runtimeId=6302 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6078 +runtimeId=6208 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6080 +runtimeId=6210 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6082 +runtimeId=6212 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6132 +runtimeId=6262 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6134 +runtimeId=6264 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6136 +runtimeId=6266 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6186 +runtimeId=6316 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6188 +runtimeId=6318 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6190 +runtimeId=6320 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6096 +runtimeId=6226 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6098 +runtimeId=6228 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6100 +runtimeId=6230 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6150 +runtimeId=6280 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6152 +runtimeId=6282 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6154 +runtimeId=6284 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6204 +runtimeId=6334 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6206 +runtimeId=6336 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6208 +runtimeId=6338 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6065 +runtimeId=6195 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6067 +runtimeId=6197 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6069 +runtimeId=6199 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6119 +runtimeId=6249 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6121 +runtimeId=6251 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6123 +runtimeId=6253 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6173 +runtimeId=6303 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6175 +runtimeId=6305 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6177 +runtimeId=6307 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6083 +runtimeId=6213 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6085 +runtimeId=6215 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6087 +runtimeId=6217 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6137 +runtimeId=6267 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6139 +runtimeId=6269 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6141 +runtimeId=6271 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6191 +runtimeId=6321 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6193 +runtimeId=6323 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6195 +runtimeId=6325 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6101 +runtimeId=6231 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6103 +runtimeId=6233 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6105 +runtimeId=6235 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6155 +runtimeId=6285 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6157 +runtimeId=6287 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6159 +runtimeId=6289 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6209 +runtimeId=6339 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6211 +runtimeId=6341 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6213 +runtimeId=6343 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6066 +runtimeId=6196 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6068 +runtimeId=6198 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6070 +runtimeId=6200 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6120 +runtimeId=6250 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6122 +runtimeId=6252 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6124 +runtimeId=6254 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6174 +runtimeId=6304 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6176 +runtimeId=6306 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6178 +runtimeId=6308 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6084 +runtimeId=6214 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6086 +runtimeId=6216 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6088 +runtimeId=6218 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6138 +runtimeId=6268 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6140 +runtimeId=6270 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6142 +runtimeId=6272 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6192 +runtimeId=6322 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6194 +runtimeId=6324 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6196 +runtimeId=6326 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6102 +runtimeId=6232 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6104 +runtimeId=6234 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6106 +runtimeId=6236 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6156 +runtimeId=6286 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6158 +runtimeId=6288 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6160 +runtimeId=6290 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6210 +runtimeId=6340 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6212 +runtimeId=6342 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6214 +runtimeId=6344 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6071 +runtimeId=6201 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6073 +runtimeId=6203 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6075 +runtimeId=6205 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6125 +runtimeId=6255 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6127 +runtimeId=6257 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6129 +runtimeId=6259 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6179 +runtimeId=6309 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6181 +runtimeId=6311 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6183 +runtimeId=6313 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6089 +runtimeId=6219 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6091 +runtimeId=6221 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6093 +runtimeId=6223 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6143 +runtimeId=6273 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6145 +runtimeId=6275 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6147 +runtimeId=6277 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6197 +runtimeId=6327 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6199 +runtimeId=6329 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6201 +runtimeId=6331 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6107 +runtimeId=6237 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6109 +runtimeId=6239 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6111 +runtimeId=6241 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6161 +runtimeId=6291 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6163 +runtimeId=6293 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6165 +runtimeId=6295 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6215 +runtimeId=6345 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6217 +runtimeId=6347 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6219 +runtimeId=6349 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6072 +runtimeId=6202 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6074 +runtimeId=6204 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6076 +runtimeId=6206 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6126 +runtimeId=6256 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6128 +runtimeId=6258 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6130 +runtimeId=6260 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6180 +runtimeId=6310 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6182 +runtimeId=6312 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6184 +runtimeId=6314 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6090 +runtimeId=6220 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6092 +runtimeId=6222 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6094 +runtimeId=6224 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6144 +runtimeId=6274 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6146 +runtimeId=6276 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6148 +runtimeId=6278 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6198 +runtimeId=6328 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6200 +runtimeId=6330 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6202 +runtimeId=6332 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6108 +runtimeId=6238 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6110 +runtimeId=6240 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6112 +runtimeId=6242 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6162 +runtimeId=6292 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6164 +runtimeId=6294 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6166 +runtimeId=6296 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6216 +runtimeId=6346 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6218 +runtimeId=6348 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6220 +runtimeId=6350 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=428 -runtimeId=6221 +runtimeId=6351 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=428 -runtimeId=6222 +runtimeId=6352 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=428 -runtimeId=6223 +runtimeId=6353 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=428 -runtimeId=6224 +runtimeId=6354 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=428 -runtimeId=6225 +runtimeId=6355 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=428 -runtimeId=6226 +runtimeId=6356 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=428 -runtimeId=6227 +runtimeId=6357 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=428 -runtimeId=6228 +runtimeId=6358 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=427 -runtimeId=6229 +runtimeId=6359 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=427 -runtimeId=6230 +runtimeId=6360 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=427 -runtimeId=6231 +runtimeId=6361 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=427 -runtimeId=6232 +runtimeId=6362 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=427 -runtimeId=6233 +runtimeId=6363 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=427 -runtimeId=6234 +runtimeId=6364 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=427 -runtimeId=6235 +runtimeId=6365 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=427 -runtimeId=6236 +runtimeId=6366 minecraft:portal;portal_axis=unknown blockId=90 -runtimeId=6237 +runtimeId=6367 minecraft:portal;portal_axis=x blockId=90 -runtimeId=6238 +runtimeId=6368 minecraft:portal;portal_axis=z blockId=90 -runtimeId=6239 +runtimeId=6369 minecraft:potatoes;growth=0 blockId=142 -runtimeId=6240 +runtimeId=6370 minecraft:potatoes;growth=1 blockId=142 -runtimeId=6241 +runtimeId=6371 minecraft:potatoes;growth=2 blockId=142 -runtimeId=6242 +runtimeId=6372 minecraft:potatoes;growth=3 blockId=142 -runtimeId=6243 +runtimeId=6373 minecraft:potatoes;growth=4 blockId=142 -runtimeId=6244 +runtimeId=6374 minecraft:potatoes;growth=5 blockId=142 -runtimeId=6245 +runtimeId=6375 minecraft:potatoes;growth=6 blockId=142 -runtimeId=6246 +runtimeId=6376 minecraft:potatoes;growth=7 blockId=142 -runtimeId=6247 +runtimeId=6377 minecraft:powder_snow blockId=561 -runtimeId=6248 +runtimeId=6378 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=0 blockId=150 -runtimeId=6249 +runtimeId=6379 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=1 blockId=150 -runtimeId=6250 +runtimeId=6380 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=2 blockId=150 -runtimeId=6251 +runtimeId=6381 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=3 blockId=150 -runtimeId=6252 +runtimeId=6382 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=0 blockId=150 -runtimeId=6257 +runtimeId=6387 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=1 blockId=150 -runtimeId=6258 +runtimeId=6388 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=2 blockId=150 -runtimeId=6259 +runtimeId=6389 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=3 blockId=150 -runtimeId=6260 +runtimeId=6390 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=0 blockId=150 -runtimeId=6253 +runtimeId=6383 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=1 blockId=150 -runtimeId=6254 +runtimeId=6384 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=2 blockId=150 -runtimeId=6255 +runtimeId=6385 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=3 blockId=150 -runtimeId=6256 +runtimeId=6386 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=0 blockId=150 -runtimeId=6261 +runtimeId=6391 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=1 blockId=150 -runtimeId=6262 +runtimeId=6392 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=2 blockId=150 -runtimeId=6263 +runtimeId=6393 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=3 blockId=150 -runtimeId=6264 +runtimeId=6394 minecraft:powered_repeater;repeater_delay=0;direction=0 blockId=94 -runtimeId=6265 +runtimeId=6395 minecraft:powered_repeater;repeater_delay=0;direction=1 blockId=94 -runtimeId=6266 +runtimeId=6396 minecraft:powered_repeater;repeater_delay=0;direction=2 blockId=94 -runtimeId=6267 +runtimeId=6397 minecraft:powered_repeater;repeater_delay=0;direction=3 blockId=94 -runtimeId=6268 +runtimeId=6398 minecraft:powered_repeater;repeater_delay=1;direction=0 blockId=94 -runtimeId=6269 +runtimeId=6399 minecraft:powered_repeater;repeater_delay=1;direction=1 blockId=94 -runtimeId=6270 +runtimeId=6400 minecraft:powered_repeater;repeater_delay=1;direction=2 blockId=94 -runtimeId=6271 +runtimeId=6401 minecraft:powered_repeater;repeater_delay=1;direction=3 blockId=94 -runtimeId=6272 +runtimeId=6402 minecraft:powered_repeater;repeater_delay=2;direction=0 blockId=94 -runtimeId=6273 +runtimeId=6403 minecraft:powered_repeater;repeater_delay=2;direction=1 blockId=94 -runtimeId=6274 +runtimeId=6404 minecraft:powered_repeater;repeater_delay=2;direction=2 blockId=94 -runtimeId=6275 +runtimeId=6405 minecraft:powered_repeater;repeater_delay=2;direction=3 blockId=94 -runtimeId=6276 +runtimeId=6406 minecraft:powered_repeater;repeater_delay=3;direction=0 blockId=94 -runtimeId=6277 +runtimeId=6407 minecraft:powered_repeater;repeater_delay=3;direction=1 blockId=94 -runtimeId=6278 +runtimeId=6408 minecraft:powered_repeater;repeater_delay=3;direction=2 blockId=94 -runtimeId=6279 +runtimeId=6409 minecraft:powered_repeater;repeater_delay=3;direction=3 blockId=94 -runtimeId=6280 +runtimeId=6410 minecraft:prismarine;prismarine_block_type=bricks blockId=168 -runtimeId=6283 +runtimeId=6413 minecraft:prismarine;prismarine_block_type=dark blockId=168 -runtimeId=6282 +runtimeId=6412 minecraft:prismarine;prismarine_block_type=default blockId=168 -runtimeId=6281 +runtimeId=6411 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=0 blockId=259 -runtimeId=6284 +runtimeId=6414 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=1 blockId=259 -runtimeId=6285 +runtimeId=6415 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=2 blockId=259 -runtimeId=6286 +runtimeId=6416 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=3 blockId=259 -runtimeId=6287 +runtimeId=6417 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=0 blockId=259 -runtimeId=6288 +runtimeId=6418 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=1 blockId=259 -runtimeId=6289 +runtimeId=6419 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=2 blockId=259 -runtimeId=6290 +runtimeId=6420 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=3 blockId=259 -runtimeId=6291 +runtimeId=6421 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=0 blockId=257 -runtimeId=6292 +runtimeId=6422 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=1 blockId=257 -runtimeId=6293 +runtimeId=6423 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=2 blockId=257 -runtimeId=6294 +runtimeId=6424 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=3 blockId=257 -runtimeId=6295 +runtimeId=6425 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=0 blockId=257 -runtimeId=6296 +runtimeId=6426 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=1 blockId=257 -runtimeId=6297 +runtimeId=6427 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=2 blockId=257 -runtimeId=6298 +runtimeId=6428 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=3 blockId=257 -runtimeId=6299 +runtimeId=6429 minecraft:pumpkin;direction=0 blockId=86 -runtimeId=6300 +runtimeId=6430 minecraft:pumpkin;direction=1 blockId=86 -runtimeId=6301 +runtimeId=6431 minecraft:pumpkin;direction=2 blockId=86 -runtimeId=6302 +runtimeId=6432 minecraft:pumpkin;direction=3 blockId=86 -runtimeId=6303 +runtimeId=6433 minecraft:pumpkin_stem;facing_direction=0;growth=0 blockId=104 -runtimeId=6304 +runtimeId=6434 minecraft:pumpkin_stem;facing_direction=0;growth=1 blockId=104 -runtimeId=6305 +runtimeId=6435 minecraft:pumpkin_stem;facing_direction=0;growth=2 blockId=104 -runtimeId=6306 +runtimeId=6436 minecraft:pumpkin_stem;facing_direction=0;growth=3 blockId=104 -runtimeId=6307 +runtimeId=6437 minecraft:pumpkin_stem;facing_direction=0;growth=4 blockId=104 -runtimeId=6308 +runtimeId=6438 minecraft:pumpkin_stem;facing_direction=0;growth=5 blockId=104 -runtimeId=6309 +runtimeId=6439 minecraft:pumpkin_stem;facing_direction=0;growth=6 blockId=104 -runtimeId=6310 +runtimeId=6440 minecraft:pumpkin_stem;facing_direction=0;growth=7 blockId=104 -runtimeId=6311 +runtimeId=6441 minecraft:pumpkin_stem;facing_direction=1;growth=0 blockId=104 -runtimeId=6312 +runtimeId=6442 minecraft:pumpkin_stem;facing_direction=1;growth=1 blockId=104 -runtimeId=6313 +runtimeId=6443 minecraft:pumpkin_stem;facing_direction=1;growth=2 blockId=104 -runtimeId=6314 +runtimeId=6444 minecraft:pumpkin_stem;facing_direction=1;growth=3 blockId=104 -runtimeId=6315 +runtimeId=6445 minecraft:pumpkin_stem;facing_direction=1;growth=4 blockId=104 -runtimeId=6316 +runtimeId=6446 minecraft:pumpkin_stem;facing_direction=1;growth=5 blockId=104 -runtimeId=6317 +runtimeId=6447 minecraft:pumpkin_stem;facing_direction=1;growth=6 blockId=104 -runtimeId=6318 +runtimeId=6448 minecraft:pumpkin_stem;facing_direction=1;growth=7 blockId=104 -runtimeId=6319 +runtimeId=6449 minecraft:pumpkin_stem;facing_direction=2;growth=0 blockId=104 -runtimeId=6320 +runtimeId=6450 minecraft:pumpkin_stem;facing_direction=2;growth=1 blockId=104 -runtimeId=6321 +runtimeId=6451 minecraft:pumpkin_stem;facing_direction=2;growth=2 blockId=104 -runtimeId=6322 +runtimeId=6452 minecraft:pumpkin_stem;facing_direction=2;growth=3 blockId=104 -runtimeId=6323 +runtimeId=6453 minecraft:pumpkin_stem;facing_direction=2;growth=4 blockId=104 -runtimeId=6324 +runtimeId=6454 minecraft:pumpkin_stem;facing_direction=2;growth=5 blockId=104 -runtimeId=6325 +runtimeId=6455 minecraft:pumpkin_stem;facing_direction=2;growth=6 blockId=104 -runtimeId=6326 +runtimeId=6456 minecraft:pumpkin_stem;facing_direction=2;growth=7 blockId=104 -runtimeId=6327 +runtimeId=6457 minecraft:pumpkin_stem;facing_direction=3;growth=0 blockId=104 -runtimeId=6328 +runtimeId=6458 minecraft:pumpkin_stem;facing_direction=3;growth=1 blockId=104 -runtimeId=6329 +runtimeId=6459 minecraft:pumpkin_stem;facing_direction=3;growth=2 blockId=104 -runtimeId=6330 +runtimeId=6460 minecraft:pumpkin_stem;facing_direction=3;growth=3 blockId=104 -runtimeId=6331 +runtimeId=6461 minecraft:pumpkin_stem;facing_direction=3;growth=4 blockId=104 -runtimeId=6332 +runtimeId=6462 minecraft:pumpkin_stem;facing_direction=3;growth=5 blockId=104 -runtimeId=6333 +runtimeId=6463 minecraft:pumpkin_stem;facing_direction=3;growth=6 blockId=104 -runtimeId=6334 +runtimeId=6464 minecraft:pumpkin_stem;facing_direction=3;growth=7 blockId=104 -runtimeId=6335 +runtimeId=6465 minecraft:pumpkin_stem;facing_direction=4;growth=0 blockId=104 -runtimeId=6336 +runtimeId=6466 minecraft:pumpkin_stem;facing_direction=4;growth=1 blockId=104 -runtimeId=6337 +runtimeId=6467 minecraft:pumpkin_stem;facing_direction=4;growth=2 blockId=104 -runtimeId=6338 +runtimeId=6468 minecraft:pumpkin_stem;facing_direction=4;growth=3 blockId=104 -runtimeId=6339 +runtimeId=6469 minecraft:pumpkin_stem;facing_direction=4;growth=4 blockId=104 -runtimeId=6340 +runtimeId=6470 minecraft:pumpkin_stem;facing_direction=4;growth=5 blockId=104 -runtimeId=6341 +runtimeId=6471 minecraft:pumpkin_stem;facing_direction=4;growth=6 blockId=104 -runtimeId=6342 +runtimeId=6472 minecraft:pumpkin_stem;facing_direction=4;growth=7 blockId=104 -runtimeId=6343 +runtimeId=6473 minecraft:pumpkin_stem;facing_direction=5;growth=0 blockId=104 -runtimeId=6344 +runtimeId=6474 minecraft:pumpkin_stem;facing_direction=5;growth=1 blockId=104 -runtimeId=6345 +runtimeId=6475 minecraft:pumpkin_stem;facing_direction=5;growth=2 blockId=104 -runtimeId=6346 +runtimeId=6476 minecraft:pumpkin_stem;facing_direction=5;growth=3 blockId=104 -runtimeId=6347 +runtimeId=6477 minecraft:pumpkin_stem;facing_direction=5;growth=4 blockId=104 -runtimeId=6348 +runtimeId=6478 minecraft:pumpkin_stem;facing_direction=5;growth=5 blockId=104 -runtimeId=6349 +runtimeId=6479 + +minecraft:pumpkin_stem;facing_direction=5;growth=6 +blockId=104 +runtimeId=6480 + +minecraft:pumpkin_stem;facing_direction=5;growth=7 +blockId=104 +runtimeId=6481 + +minecraft:purple_candle;lit=0;candles=0 +blockId=-1 +runtimeId=6482 + +minecraft:purple_candle;lit=0;candles=1 +blockId=-1 +runtimeId=6483 + +minecraft:purple_candle;lit=0;candles=2 +blockId=-1 +runtimeId=6484 + +minecraft:purple_candle;lit=0;candles=3 +blockId=-1 +runtimeId=6485 + +minecraft:purple_candle;lit=1;candles=0 +blockId=-1 +runtimeId=6486 + +minecraft:purple_candle;lit=1;candles=1 +blockId=-1 +runtimeId=6487 + +minecraft:purple_candle;lit=1;candles=2 +blockId=-1 +runtimeId=6488 -minecraft:pumpkin_stem;facing_direction=5;growth=6 -blockId=104 -runtimeId=6350 +minecraft:purple_candle;lit=1;candles=3 +blockId=-1 +runtimeId=6489 -minecraft:pumpkin_stem;facing_direction=5;growth=7 -blockId=104 -runtimeId=6351 +minecraft:purple_candle_cake;lit=0 +blockId=-1 +runtimeId=6490 + +minecraft:purple_candle_cake;lit=1 +blockId=-1 +runtimeId=6491 minecraft:purple_glazed_terracotta;facing_direction=0 blockId=219 -runtimeId=6352 +runtimeId=6492 minecraft:purple_glazed_terracotta;facing_direction=1 blockId=219 -runtimeId=6353 +runtimeId=6493 minecraft:purple_glazed_terracotta;facing_direction=2 blockId=219 -runtimeId=6354 +runtimeId=6494 minecraft:purple_glazed_terracotta;facing_direction=3 blockId=219 -runtimeId=6355 +runtimeId=6495 minecraft:purple_glazed_terracotta;facing_direction=4 blockId=219 -runtimeId=6356 +runtimeId=6496 minecraft:purple_glazed_terracotta;facing_direction=5 blockId=219 -runtimeId=6357 +runtimeId=6497 minecraft:purpur_block;chisel_type=chiseled;pillar_axis=x blockId=201 -runtimeId=6363 +runtimeId=6503 minecraft:purpur_block;chisel_type=chiseled;pillar_axis=y blockId=201 -runtimeId=6359 +runtimeId=6499 minecraft:purpur_block;chisel_type=chiseled;pillar_axis=z blockId=201 -runtimeId=6367 +runtimeId=6507 minecraft:purpur_block;chisel_type=default;pillar_axis=x blockId=201 -runtimeId=6362 +runtimeId=6502 minecraft:purpur_block;chisel_type=default;pillar_axis=y blockId=201 -runtimeId=6358 +runtimeId=6498 minecraft:purpur_block;chisel_type=default;pillar_axis=z blockId=201 -runtimeId=6366 +runtimeId=6506 minecraft:purpur_block;chisel_type=lines;pillar_axis=x blockId=201 -runtimeId=6364 +runtimeId=6504 minecraft:purpur_block;chisel_type=lines;pillar_axis=y blockId=201 -runtimeId=6360 +runtimeId=6500 minecraft:purpur_block;chisel_type=lines;pillar_axis=z blockId=201 -runtimeId=6368 +runtimeId=6508 minecraft:purpur_block;chisel_type=smooth;pillar_axis=x blockId=201 -runtimeId=6365 +runtimeId=6505 minecraft:purpur_block;chisel_type=smooth;pillar_axis=y blockId=201 -runtimeId=6361 +runtimeId=6501 minecraft:purpur_block;chisel_type=smooth;pillar_axis=z blockId=201 -runtimeId=6369 +runtimeId=6509 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=0 blockId=203 -runtimeId=6370 +runtimeId=6510 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=1 blockId=203 -runtimeId=6371 +runtimeId=6511 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=2 blockId=203 -runtimeId=6372 +runtimeId=6512 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=3 blockId=203 -runtimeId=6373 +runtimeId=6513 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=0 blockId=203 -runtimeId=6374 +runtimeId=6514 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=1 blockId=203 -runtimeId=6375 +runtimeId=6515 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=2 blockId=203 -runtimeId=6376 +runtimeId=6516 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=3 blockId=203 -runtimeId=6377 +runtimeId=6517 minecraft:quartz_block;chisel_type=chiseled;pillar_axis=x blockId=155 -runtimeId=6383 +runtimeId=6523 minecraft:quartz_block;chisel_type=chiseled;pillar_axis=y blockId=155 -runtimeId=6379 +runtimeId=6519 minecraft:quartz_block;chisel_type=chiseled;pillar_axis=z blockId=155 -runtimeId=6387 +runtimeId=6527 minecraft:quartz_block;chisel_type=default;pillar_axis=x blockId=155 -runtimeId=6382 +runtimeId=6522 minecraft:quartz_block;chisel_type=default;pillar_axis=y blockId=155 -runtimeId=6378 +runtimeId=6518 minecraft:quartz_block;chisel_type=default;pillar_axis=z blockId=155 -runtimeId=6386 +runtimeId=6526 minecraft:quartz_block;chisel_type=lines;pillar_axis=x blockId=155 -runtimeId=6384 +runtimeId=6524 minecraft:quartz_block;chisel_type=lines;pillar_axis=y blockId=155 -runtimeId=6380 +runtimeId=6520 minecraft:quartz_block;chisel_type=lines;pillar_axis=z blockId=155 -runtimeId=6388 +runtimeId=6528 minecraft:quartz_block;chisel_type=smooth;pillar_axis=x blockId=155 -runtimeId=6385 +runtimeId=6525 minecraft:quartz_block;chisel_type=smooth;pillar_axis=y blockId=155 -runtimeId=6381 +runtimeId=6521 minecraft:quartz_block;chisel_type=smooth;pillar_axis=z blockId=155 -runtimeId=6389 +runtimeId=6529 minecraft:quartz_bricks blockId=559 -runtimeId=6390 +runtimeId=6530 minecraft:quartz_ore blockId=153 -runtimeId=6391 +runtimeId=6531 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=0 blockId=156 -runtimeId=6392 +runtimeId=6532 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=1 blockId=156 -runtimeId=6393 +runtimeId=6533 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=2 blockId=156 -runtimeId=6394 +runtimeId=6534 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=3 blockId=156 -runtimeId=6395 +runtimeId=6535 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=0 blockId=156 -runtimeId=6396 +runtimeId=6536 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=1 blockId=156 -runtimeId=6397 +runtimeId=6537 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=2 blockId=156 -runtimeId=6398 +runtimeId=6538 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=3 blockId=156 -runtimeId=6399 +runtimeId=6539 minecraft:rail;rail_direction=0 blockId=66 -runtimeId=6400 +runtimeId=6540 minecraft:rail;rail_direction=1 blockId=66 -runtimeId=6401 +runtimeId=6541 minecraft:rail;rail_direction=2 blockId=66 -runtimeId=6402 +runtimeId=6542 minecraft:rail;rail_direction=3 blockId=66 -runtimeId=6403 +runtimeId=6543 minecraft:rail;rail_direction=4 blockId=66 -runtimeId=6404 +runtimeId=6544 minecraft:rail;rail_direction=5 blockId=66 -runtimeId=6405 +runtimeId=6545 minecraft:rail;rail_direction=6 blockId=66 -runtimeId=6406 +runtimeId=6546 minecraft:rail;rail_direction=7 blockId=66 -runtimeId=6407 +runtimeId=6547 minecraft:rail;rail_direction=8 blockId=66 -runtimeId=6408 +runtimeId=6548 minecraft:rail;rail_direction=9 blockId=66 -runtimeId=6409 +runtimeId=6549 minecraft:raw_copper_block blockId=707 -runtimeId=6410 +runtimeId=6550 minecraft:raw_gold_block blockId=708 -runtimeId=6411 +runtimeId=6551 minecraft:raw_iron_block blockId=706 -runtimeId=6412 +runtimeId=6552 + +minecraft:red_candle;lit=0;candles=0 +blockId=-1 +runtimeId=6553 + +minecraft:red_candle;lit=0;candles=1 +blockId=-1 +runtimeId=6554 + +minecraft:red_candle;lit=0;candles=2 +blockId=-1 +runtimeId=6555 + +minecraft:red_candle;lit=0;candles=3 +blockId=-1 +runtimeId=6556 + +minecraft:red_candle;lit=1;candles=0 +blockId=-1 +runtimeId=6557 + +minecraft:red_candle;lit=1;candles=1 +blockId=-1 +runtimeId=6558 + +minecraft:red_candle;lit=1;candles=2 +blockId=-1 +runtimeId=6559 + +minecraft:red_candle;lit=1;candles=3 +blockId=-1 +runtimeId=6560 + +minecraft:red_candle_cake;lit=0 +blockId=-1 +runtimeId=6561 + +minecraft:red_candle_cake;lit=1 +blockId=-1 +runtimeId=6562 minecraft:red_flower;flower_type=allium blockId=38 -runtimeId=6415 +runtimeId=6565 minecraft:red_flower;flower_type=cornflower blockId=38 -runtimeId=6422 +runtimeId=6572 minecraft:red_flower;flower_type=houstonia blockId=38 -runtimeId=6416 +runtimeId=6566 minecraft:red_flower;flower_type=lily_of_the_valley blockId=38 -runtimeId=6423 +runtimeId=6573 minecraft:red_flower;flower_type=orchid blockId=38 -runtimeId=6414 +runtimeId=6564 minecraft:red_flower;flower_type=oxeye blockId=38 -runtimeId=6421 +runtimeId=6571 minecraft:red_flower;flower_type=poppy blockId=38 -runtimeId=6413 +runtimeId=6563 minecraft:red_flower;flower_type=tulip_orange blockId=38 -runtimeId=6418 +runtimeId=6568 minecraft:red_flower;flower_type=tulip_pink blockId=38 -runtimeId=6420 +runtimeId=6570 minecraft:red_flower;flower_type=tulip_red blockId=38 -runtimeId=6417 +runtimeId=6567 minecraft:red_flower;flower_type=tulip_white blockId=38 -runtimeId=6419 +runtimeId=6569 minecraft:red_glazed_terracotta;facing_direction=0 blockId=234 -runtimeId=6424 +runtimeId=6574 minecraft:red_glazed_terracotta;facing_direction=1 blockId=234 -runtimeId=6425 +runtimeId=6575 minecraft:red_glazed_terracotta;facing_direction=2 blockId=234 -runtimeId=6426 +runtimeId=6576 minecraft:red_glazed_terracotta;facing_direction=3 blockId=234 -runtimeId=6427 +runtimeId=6577 minecraft:red_glazed_terracotta;facing_direction=4 blockId=234 -runtimeId=6428 +runtimeId=6578 minecraft:red_glazed_terracotta;facing_direction=5 blockId=234 -runtimeId=6429 +runtimeId=6579 minecraft:red_mushroom blockId=40 -runtimeId=6430 +runtimeId=6580 minecraft:red_mushroom_block;huge_mushroom_bits=0 blockId=100 -runtimeId=6431 +runtimeId=6581 minecraft:red_mushroom_block;huge_mushroom_bits=1 blockId=100 -runtimeId=6432 +runtimeId=6582 minecraft:red_mushroom_block;huge_mushroom_bits=2 blockId=100 -runtimeId=6433 +runtimeId=6583 minecraft:red_mushroom_block;huge_mushroom_bits=3 blockId=100 -runtimeId=6434 +runtimeId=6584 minecraft:red_mushroom_block;huge_mushroom_bits=4 blockId=100 -runtimeId=6435 +runtimeId=6585 minecraft:red_mushroom_block;huge_mushroom_bits=5 blockId=100 -runtimeId=6436 +runtimeId=6586 minecraft:red_mushroom_block;huge_mushroom_bits=6 blockId=100 -runtimeId=6437 +runtimeId=6587 minecraft:red_mushroom_block;huge_mushroom_bits=7 blockId=100 -runtimeId=6438 +runtimeId=6588 minecraft:red_mushroom_block;huge_mushroom_bits=8 blockId=100 -runtimeId=6439 +runtimeId=6589 minecraft:red_mushroom_block;huge_mushroom_bits=9 blockId=100 -runtimeId=6440 +runtimeId=6590 minecraft:red_mushroom_block;huge_mushroom_bits=10 blockId=100 -runtimeId=6441 +runtimeId=6591 minecraft:red_mushroom_block;huge_mushroom_bits=11 blockId=100 -runtimeId=6442 +runtimeId=6592 minecraft:red_mushroom_block;huge_mushroom_bits=12 blockId=100 -runtimeId=6443 +runtimeId=6593 minecraft:red_mushroom_block;huge_mushroom_bits=13 blockId=100 -runtimeId=6444 +runtimeId=6594 minecraft:red_mushroom_block;huge_mushroom_bits=14 blockId=100 -runtimeId=6445 +runtimeId=6595 minecraft:red_mushroom_block;huge_mushroom_bits=15 blockId=100 -runtimeId=6446 +runtimeId=6596 minecraft:red_nether_brick blockId=215 -runtimeId=6447 +runtimeId=6597 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=439 -runtimeId=6448 +runtimeId=6598 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=439 -runtimeId=6449 +runtimeId=6599 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=439 -runtimeId=6450 +runtimeId=6600 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=439 -runtimeId=6451 +runtimeId=6601 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=439 -runtimeId=6452 +runtimeId=6602 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=439 -runtimeId=6453 +runtimeId=6603 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=439 -runtimeId=6454 +runtimeId=6604 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=439 -runtimeId=6455 +runtimeId=6605 minecraft:red_sandstone;sand_stone_type=cut blockId=179 -runtimeId=6458 +runtimeId=6608 minecraft:red_sandstone;sand_stone_type=default blockId=179 -runtimeId=6456 +runtimeId=6606 minecraft:red_sandstone;sand_stone_type=heiroglyphs blockId=179 -runtimeId=6457 +runtimeId=6607 minecraft:red_sandstone;sand_stone_type=smooth blockId=179 -runtimeId=6459 +runtimeId=6609 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=180 -runtimeId=6460 +runtimeId=6610 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=180 -runtimeId=6461 +runtimeId=6611 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=180 -runtimeId=6462 +runtimeId=6612 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=180 -runtimeId=6463 +runtimeId=6613 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=180 -runtimeId=6464 +runtimeId=6614 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=180 -runtimeId=6465 +runtimeId=6615 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=180 -runtimeId=6466 +runtimeId=6616 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=180 -runtimeId=6467 +runtimeId=6617 minecraft:redstone_block blockId=152 -runtimeId=6468 +runtimeId=6618 minecraft:redstone_lamp blockId=123 -runtimeId=6469 +runtimeId=6619 minecraft:redstone_ore blockId=73 -runtimeId=6470 +runtimeId=6620 minecraft:redstone_torch;torch_facing_direction=east blockId=76 -runtimeId=6473 +runtimeId=6623 minecraft:redstone_torch;torch_facing_direction=north blockId=76 -runtimeId=6474 +runtimeId=6624 minecraft:redstone_torch;torch_facing_direction=south blockId=76 -runtimeId=6475 +runtimeId=6625 minecraft:redstone_torch;torch_facing_direction=top blockId=76 -runtimeId=6476 +runtimeId=6626 minecraft:redstone_torch;torch_facing_direction=unknown blockId=76 -runtimeId=6471 +runtimeId=6621 minecraft:redstone_torch;torch_facing_direction=west blockId=76 -runtimeId=6472 +runtimeId=6622 minecraft:redstone_wire;redstone_signal=0 blockId=55 -runtimeId=6477 +runtimeId=6627 minecraft:redstone_wire;redstone_signal=1 blockId=55 -runtimeId=6478 +runtimeId=6628 minecraft:redstone_wire;redstone_signal=2 blockId=55 -runtimeId=6479 +runtimeId=6629 minecraft:redstone_wire;redstone_signal=3 blockId=55 -runtimeId=6480 +runtimeId=6630 minecraft:redstone_wire;redstone_signal=4 blockId=55 -runtimeId=6481 +runtimeId=6631 minecraft:redstone_wire;redstone_signal=5 blockId=55 -runtimeId=6482 +runtimeId=6632 minecraft:redstone_wire;redstone_signal=6 blockId=55 -runtimeId=6483 +runtimeId=6633 minecraft:redstone_wire;redstone_signal=7 blockId=55 -runtimeId=6484 +runtimeId=6634 minecraft:redstone_wire;redstone_signal=8 blockId=55 -runtimeId=6485 +runtimeId=6635 minecraft:redstone_wire;redstone_signal=9 blockId=55 -runtimeId=6486 +runtimeId=6636 minecraft:redstone_wire;redstone_signal=10 blockId=55 -runtimeId=6487 +runtimeId=6637 minecraft:redstone_wire;redstone_signal=11 blockId=55 -runtimeId=6488 +runtimeId=6638 minecraft:redstone_wire;redstone_signal=12 blockId=55 -runtimeId=6489 +runtimeId=6639 minecraft:redstone_wire;redstone_signal=13 blockId=55 -runtimeId=6490 +runtimeId=6640 minecraft:redstone_wire;redstone_signal=14 blockId=55 -runtimeId=6491 +runtimeId=6641 minecraft:redstone_wire;redstone_signal=15 blockId=55 -runtimeId=6492 +runtimeId=6642 minecraft:reeds;age=0 blockId=83 -runtimeId=6493 +runtimeId=6643 minecraft:reeds;age=1 blockId=83 -runtimeId=6494 +runtimeId=6644 minecraft:reeds;age=2 blockId=83 -runtimeId=6495 +runtimeId=6645 minecraft:reeds;age=3 blockId=83 -runtimeId=6496 +runtimeId=6646 minecraft:reeds;age=4 blockId=83 -runtimeId=6497 +runtimeId=6647 minecraft:reeds;age=5 blockId=83 -runtimeId=6498 +runtimeId=6648 minecraft:reeds;age=6 blockId=83 -runtimeId=6499 +runtimeId=6649 minecraft:reeds;age=7 blockId=83 -runtimeId=6500 +runtimeId=6650 minecraft:reeds;age=8 blockId=83 -runtimeId=6501 +runtimeId=6651 minecraft:reeds;age=9 blockId=83 -runtimeId=6502 +runtimeId=6652 minecraft:reeds;age=10 blockId=83 -runtimeId=6503 +runtimeId=6653 minecraft:reeds;age=11 blockId=83 -runtimeId=6504 +runtimeId=6654 minecraft:reeds;age=12 blockId=83 -runtimeId=6505 +runtimeId=6655 minecraft:reeds;age=13 blockId=83 -runtimeId=6506 +runtimeId=6656 minecraft:reeds;age=14 blockId=83 -runtimeId=6507 +runtimeId=6657 minecraft:reeds;age=15 blockId=83 -runtimeId=6508 +runtimeId=6658 minecraft:repeating_command_block;conditional_bit=0;facing_direction=0 blockId=188 -runtimeId=6509 +runtimeId=6659 minecraft:repeating_command_block;conditional_bit=0;facing_direction=1 blockId=188 -runtimeId=6510 +runtimeId=6660 minecraft:repeating_command_block;conditional_bit=0;facing_direction=2 blockId=188 -runtimeId=6511 +runtimeId=6661 minecraft:repeating_command_block;conditional_bit=0;facing_direction=3 blockId=188 -runtimeId=6512 +runtimeId=6662 minecraft:repeating_command_block;conditional_bit=0;facing_direction=4 blockId=188 -runtimeId=6513 +runtimeId=6663 minecraft:repeating_command_block;conditional_bit=0;facing_direction=5 blockId=188 -runtimeId=6514 +runtimeId=6664 minecraft:repeating_command_block;conditional_bit=1;facing_direction=0 blockId=188 -runtimeId=6515 +runtimeId=6665 minecraft:repeating_command_block;conditional_bit=1;facing_direction=1 blockId=188 -runtimeId=6516 +runtimeId=6666 minecraft:repeating_command_block;conditional_bit=1;facing_direction=2 blockId=188 -runtimeId=6517 +runtimeId=6667 minecraft:repeating_command_block;conditional_bit=1;facing_direction=3 blockId=188 -runtimeId=6518 +runtimeId=6668 minecraft:repeating_command_block;conditional_bit=1;facing_direction=4 blockId=188 -runtimeId=6519 +runtimeId=6669 minecraft:repeating_command_block;conditional_bit=1;facing_direction=5 blockId=188 -runtimeId=6520 +runtimeId=6670 minecraft:reserved6 blockId=255 -runtimeId=6521 +runtimeId=6671 minecraft:respawn_anchor;respawn_anchor_charge=0 blockId=527 -runtimeId=6522 +runtimeId=6672 minecraft:respawn_anchor;respawn_anchor_charge=1 blockId=527 -runtimeId=6523 +runtimeId=6673 minecraft:respawn_anchor;respawn_anchor_charge=2 blockId=527 -runtimeId=6524 +runtimeId=6674 minecraft:respawn_anchor;respawn_anchor_charge=3 blockId=527 -runtimeId=6525 +runtimeId=6675 minecraft:respawn_anchor;respawn_anchor_charge=4 blockId=527 -runtimeId=6526 +runtimeId=6676 minecraft:sand;sand_type=normal blockId=12 -runtimeId=6527 +runtimeId=6677 minecraft:sand;sand_type=red blockId=12 -runtimeId=6528 +runtimeId=6678 minecraft:sandstone;sand_stone_type=cut blockId=24 -runtimeId=6531 +runtimeId=6681 minecraft:sandstone;sand_stone_type=default blockId=24 -runtimeId=6529 +runtimeId=6679 minecraft:sandstone;sand_stone_type=heiroglyphs blockId=24 -runtimeId=6530 +runtimeId=6680 minecraft:sandstone;sand_stone_type=smooth blockId=24 -runtimeId=6532 +runtimeId=6682 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=128 -runtimeId=6533 +runtimeId=6683 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=128 -runtimeId=6534 +runtimeId=6684 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=128 -runtimeId=6535 +runtimeId=6685 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=128 -runtimeId=6536 +runtimeId=6686 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=128 -runtimeId=6537 +runtimeId=6687 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=128 -runtimeId=6538 +runtimeId=6688 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=128 -runtimeId=6539 +runtimeId=6689 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=128 -runtimeId=6540 +runtimeId=6690 minecraft:sapling;sapling_type=acacia;age_bit=0 blockId=6 -runtimeId=6545 +runtimeId=6695 minecraft:sapling;sapling_type=acacia;age_bit=1 blockId=6 -runtimeId=6551 +runtimeId=6701 minecraft:sapling;sapling_type=birch;age_bit=0 blockId=6 -runtimeId=6543 +runtimeId=6693 minecraft:sapling;sapling_type=birch;age_bit=1 blockId=6 -runtimeId=6549 +runtimeId=6699 minecraft:sapling;sapling_type=dark_oak;age_bit=0 blockId=6 -runtimeId=6546 +runtimeId=6696 minecraft:sapling;sapling_type=dark_oak;age_bit=1 blockId=6 -runtimeId=6552 +runtimeId=6702 minecraft:sapling;sapling_type=jungle;age_bit=0 blockId=6 -runtimeId=6544 +runtimeId=6694 minecraft:sapling;sapling_type=jungle;age_bit=1 blockId=6 -runtimeId=6550 +runtimeId=6700 minecraft:sapling;sapling_type=oak;age_bit=0 blockId=6 -runtimeId=6541 +runtimeId=6691 minecraft:sapling;sapling_type=oak;age_bit=1 blockId=6 -runtimeId=6547 +runtimeId=6697 minecraft:sapling;sapling_type=spruce;age_bit=0 blockId=6 -runtimeId=6542 +runtimeId=6692 minecraft:sapling;sapling_type=spruce;age_bit=1 blockId=6 -runtimeId=6548 +runtimeId=6698 minecraft:scaffolding;stability=0;stability_check=0 blockId=420 -runtimeId=6553 +runtimeId=6703 minecraft:scaffolding;stability=0;stability_check=1 blockId=420 -runtimeId=6561 +runtimeId=6711 minecraft:scaffolding;stability=1;stability_check=0 blockId=420 -runtimeId=6554 +runtimeId=6704 minecraft:scaffolding;stability=1;stability_check=1 blockId=420 -runtimeId=6562 +runtimeId=6712 minecraft:scaffolding;stability=2;stability_check=0 blockId=420 -runtimeId=6555 +runtimeId=6705 minecraft:scaffolding;stability=2;stability_check=1 blockId=420 -runtimeId=6563 +runtimeId=6713 minecraft:scaffolding;stability=3;stability_check=0 blockId=420 -runtimeId=6556 +runtimeId=6706 minecraft:scaffolding;stability=3;stability_check=1 blockId=420 -runtimeId=6564 +runtimeId=6714 minecraft:scaffolding;stability=4;stability_check=0 blockId=420 -runtimeId=6557 +runtimeId=6707 minecraft:scaffolding;stability=4;stability_check=1 blockId=420 -runtimeId=6565 +runtimeId=6715 minecraft:scaffolding;stability=5;stability_check=0 blockId=420 -runtimeId=6558 +runtimeId=6708 minecraft:scaffolding;stability=5;stability_check=1 blockId=420 -runtimeId=6566 +runtimeId=6716 minecraft:scaffolding;stability=6;stability_check=0 blockId=420 -runtimeId=6559 +runtimeId=6709 minecraft:scaffolding;stability=6;stability_check=1 blockId=420 -runtimeId=6567 +runtimeId=6717 minecraft:scaffolding;stability=7;stability_check=0 blockId=420 -runtimeId=6560 +runtimeId=6710 minecraft:scaffolding;stability=7;stability_check=1 blockId=420 -runtimeId=6568 +runtimeId=6718 minecraft:sculk_sensor;powered_bit=0 blockId=562 -runtimeId=6569 +runtimeId=6719 minecraft:sculk_sensor;powered_bit=1 blockId=562 -runtimeId=6570 +runtimeId=6720 minecraft:seaLantern blockId=169 -runtimeId=6582 +runtimeId=6732 minecraft:sea_pickle;cluster_count=0;dead_bit=0 blockId=411 -runtimeId=6571 +runtimeId=6721 minecraft:sea_pickle;cluster_count=0;dead_bit=1 blockId=411 -runtimeId=6575 +runtimeId=6725 minecraft:sea_pickle;cluster_count=1;dead_bit=0 blockId=411 -runtimeId=6572 +runtimeId=6722 minecraft:sea_pickle;cluster_count=1;dead_bit=1 blockId=411 -runtimeId=6576 +runtimeId=6726 minecraft:sea_pickle;cluster_count=2;dead_bit=0 blockId=411 -runtimeId=6573 +runtimeId=6723 minecraft:sea_pickle;cluster_count=2;dead_bit=1 blockId=411 -runtimeId=6577 +runtimeId=6727 minecraft:sea_pickle;cluster_count=3;dead_bit=0 blockId=411 -runtimeId=6574 +runtimeId=6724 minecraft:sea_pickle;cluster_count=3;dead_bit=1 blockId=411 -runtimeId=6578 +runtimeId=6728 minecraft:seagrass;sea_grass_type=default blockId=385 -runtimeId=6579 +runtimeId=6729 minecraft:seagrass;sea_grass_type=double_bot blockId=385 -runtimeId=6581 +runtimeId=6731 minecraft:seagrass;sea_grass_type=double_top blockId=385 -runtimeId=6580 +runtimeId=6730 minecraft:shroomlight blockId=485 -runtimeId=6583 +runtimeId=6733 minecraft:shulker_box;color=black blockId=218 -runtimeId=6599 +runtimeId=6749 minecraft:shulker_box;color=blue blockId=218 -runtimeId=6595 +runtimeId=6745 minecraft:shulker_box;color=brown blockId=218 -runtimeId=6596 +runtimeId=6746 minecraft:shulker_box;color=cyan blockId=218 -runtimeId=6593 +runtimeId=6743 minecraft:shulker_box;color=gray blockId=218 -runtimeId=6591 +runtimeId=6741 minecraft:shulker_box;color=green blockId=218 -runtimeId=6597 +runtimeId=6747 minecraft:shulker_box;color=light_blue blockId=218 -runtimeId=6587 +runtimeId=6737 minecraft:shulker_box;color=lime blockId=218 -runtimeId=6589 +runtimeId=6739 minecraft:shulker_box;color=magenta blockId=218 -runtimeId=6586 +runtimeId=6736 minecraft:shulker_box;color=orange blockId=218 -runtimeId=6585 +runtimeId=6735 minecraft:shulker_box;color=pink blockId=218 -runtimeId=6590 +runtimeId=6740 minecraft:shulker_box;color=purple blockId=218 -runtimeId=6594 +runtimeId=6744 minecraft:shulker_box;color=red blockId=218 -runtimeId=6598 +runtimeId=6748 minecraft:shulker_box;color=silver blockId=218 -runtimeId=6592 +runtimeId=6742 minecraft:shulker_box;color=white blockId=218 -runtimeId=6584 +runtimeId=6734 minecraft:shulker_box;color=yellow blockId=218 -runtimeId=6588 +runtimeId=6738 minecraft:silver_glazed_terracotta;facing_direction=0 blockId=228 -runtimeId=6600 +runtimeId=6750 minecraft:silver_glazed_terracotta;facing_direction=1 blockId=228 -runtimeId=6601 +runtimeId=6751 minecraft:silver_glazed_terracotta;facing_direction=2 blockId=228 -runtimeId=6602 +runtimeId=6752 minecraft:silver_glazed_terracotta;facing_direction=3 blockId=228 -runtimeId=6603 +runtimeId=6753 minecraft:silver_glazed_terracotta;facing_direction=4 blockId=228 -runtimeId=6604 +runtimeId=6754 minecraft:silver_glazed_terracotta;facing_direction=5 blockId=228 -runtimeId=6605 +runtimeId=6755 minecraft:skull;facing_direction=0;no_drop_bit=0 blockId=144 -runtimeId=6606 +runtimeId=6756 minecraft:skull;facing_direction=0;no_drop_bit=1 blockId=144 -runtimeId=6612 +runtimeId=6762 minecraft:skull;facing_direction=1;no_drop_bit=0 blockId=144 -runtimeId=6607 +runtimeId=6757 minecraft:skull;facing_direction=1;no_drop_bit=1 blockId=144 -runtimeId=6613 +runtimeId=6763 minecraft:skull;facing_direction=2;no_drop_bit=0 blockId=144 -runtimeId=6608 +runtimeId=6758 minecraft:skull;facing_direction=2;no_drop_bit=1 blockId=144 -runtimeId=6614 +runtimeId=6764 minecraft:skull;facing_direction=3;no_drop_bit=0 blockId=144 -runtimeId=6609 +runtimeId=6759 minecraft:skull;facing_direction=3;no_drop_bit=1 blockId=144 -runtimeId=6615 +runtimeId=6765 minecraft:skull;facing_direction=4;no_drop_bit=0 blockId=144 -runtimeId=6610 +runtimeId=6760 minecraft:skull;facing_direction=4;no_drop_bit=1 blockId=144 -runtimeId=6616 +runtimeId=6766 minecraft:skull;facing_direction=5;no_drop_bit=0 blockId=144 -runtimeId=6611 +runtimeId=6761 minecraft:skull;facing_direction=5;no_drop_bit=1 blockId=144 -runtimeId=6617 +runtimeId=6767 minecraft:slime blockId=165 -runtimeId=6618 +runtimeId=6768 minecraft:small_amethyst_bud;facing_direction=0 blockId=587 -runtimeId=6619 +runtimeId=6769 minecraft:small_amethyst_bud;facing_direction=1 blockId=587 -runtimeId=6620 +runtimeId=6770 minecraft:small_amethyst_bud;facing_direction=2 blockId=587 -runtimeId=6621 +runtimeId=6771 minecraft:small_amethyst_bud;facing_direction=3 blockId=587 -runtimeId=6622 +runtimeId=6772 minecraft:small_amethyst_bud;facing_direction=4 blockId=587 -runtimeId=6623 +runtimeId=6773 minecraft:small_amethyst_bud;facing_direction=5 blockId=587 -runtimeId=6624 +runtimeId=6774 minecraft:small_dripleaf_block;upper_block_bit=0;direction=0 blockId=591 -runtimeId=6625 +runtimeId=6775 minecraft:small_dripleaf_block;upper_block_bit=0;direction=1 blockId=591 -runtimeId=6627 +runtimeId=6777 minecraft:small_dripleaf_block;upper_block_bit=0;direction=2 blockId=591 -runtimeId=6629 +runtimeId=6779 minecraft:small_dripleaf_block;upper_block_bit=0;direction=3 blockId=591 -runtimeId=6631 +runtimeId=6781 minecraft:small_dripleaf_block;upper_block_bit=1;direction=0 blockId=591 -runtimeId=6626 +runtimeId=6776 minecraft:small_dripleaf_block;upper_block_bit=1;direction=1 blockId=591 -runtimeId=6628 +runtimeId=6778 minecraft:small_dripleaf_block;upper_block_bit=1;direction=2 blockId=591 -runtimeId=6630 +runtimeId=6780 minecraft:small_dripleaf_block;upper_block_bit=1;direction=3 blockId=591 -runtimeId=6632 +runtimeId=6782 minecraft:smithing_table blockId=457 -runtimeId=6633 +runtimeId=6783 minecraft:smoker;facing_direction=0 blockId=453 -runtimeId=6634 +runtimeId=6784 minecraft:smoker;facing_direction=1 blockId=453 -runtimeId=6635 +runtimeId=6785 minecraft:smoker;facing_direction=2 blockId=453 -runtimeId=6636 +runtimeId=6786 minecraft:smoker;facing_direction=3 blockId=453 -runtimeId=6637 +runtimeId=6787 minecraft:smoker;facing_direction=4 blockId=453 -runtimeId=6638 +runtimeId=6788 minecraft:smoker;facing_direction=5 blockId=453 -runtimeId=6639 +runtimeId=6789 minecraft:smooth_basalt blockId=632 -runtimeId=6640 +runtimeId=6790 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=0 blockId=440 -runtimeId=6641 +runtimeId=6791 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=1 blockId=440 -runtimeId=6642 +runtimeId=6792 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=2 blockId=440 -runtimeId=6643 +runtimeId=6793 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=3 blockId=440 -runtimeId=6644 +runtimeId=6794 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=0 blockId=440 -runtimeId=6645 +runtimeId=6795 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=1 blockId=440 -runtimeId=6646 +runtimeId=6796 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=2 blockId=440 -runtimeId=6647 +runtimeId=6797 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=3 blockId=440 -runtimeId=6648 +runtimeId=6798 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=431 -runtimeId=6649 +runtimeId=6799 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=431 -runtimeId=6650 +runtimeId=6800 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=431 -runtimeId=6651 +runtimeId=6801 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=431 -runtimeId=6652 +runtimeId=6802 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=431 -runtimeId=6653 +runtimeId=6803 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=431 -runtimeId=6654 +runtimeId=6804 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=431 -runtimeId=6655 +runtimeId=6805 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=431 -runtimeId=6656 +runtimeId=6806 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=432 -runtimeId=6657 +runtimeId=6807 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=432 -runtimeId=6658 +runtimeId=6808 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=432 -runtimeId=6659 +runtimeId=6809 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=432 -runtimeId=6660 +runtimeId=6810 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=432 -runtimeId=6661 +runtimeId=6811 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=432 -runtimeId=6662 +runtimeId=6812 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=432 -runtimeId=6663 +runtimeId=6813 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=432 -runtimeId=6664 +runtimeId=6814 minecraft:smooth_stone blockId=438 -runtimeId=6665 +runtimeId=6815 minecraft:snow blockId=80 -runtimeId=6666 +runtimeId=6816 minecraft:snow_layer;covered_bit=0;height=0 blockId=78 -runtimeId=6667 +runtimeId=6817 minecraft:snow_layer;covered_bit=0;height=1 blockId=78 -runtimeId=6668 +runtimeId=6818 minecraft:snow_layer;covered_bit=0;height=2 blockId=78 -runtimeId=6669 +runtimeId=6819 minecraft:snow_layer;covered_bit=0;height=3 blockId=78 -runtimeId=6670 +runtimeId=6820 minecraft:snow_layer;covered_bit=0;height=4 blockId=78 -runtimeId=6671 +runtimeId=6821 minecraft:snow_layer;covered_bit=0;height=5 blockId=78 -runtimeId=6672 +runtimeId=6822 minecraft:snow_layer;covered_bit=0;height=6 blockId=78 -runtimeId=6673 +runtimeId=6823 minecraft:snow_layer;covered_bit=0;height=7 blockId=78 -runtimeId=6674 +runtimeId=6824 minecraft:snow_layer;covered_bit=1;height=0 blockId=78 -runtimeId=6675 +runtimeId=6825 minecraft:snow_layer;covered_bit=1;height=1 blockId=78 -runtimeId=6676 +runtimeId=6826 minecraft:snow_layer;covered_bit=1;height=2 blockId=78 -runtimeId=6677 +runtimeId=6827 minecraft:snow_layer;covered_bit=1;height=3 blockId=78 -runtimeId=6678 +runtimeId=6828 minecraft:snow_layer;covered_bit=1;height=4 blockId=78 -runtimeId=6679 +runtimeId=6829 minecraft:snow_layer;covered_bit=1;height=5 blockId=78 -runtimeId=6680 +runtimeId=6830 minecraft:snow_layer;covered_bit=1;height=6 blockId=78 -runtimeId=6681 +runtimeId=6831 minecraft:snow_layer;covered_bit=1;height=7 blockId=78 -runtimeId=6682 +runtimeId=6832 minecraft:soul_campfire;extinguished=0;direction=0 blockId=545 -runtimeId=6683 +runtimeId=6833 minecraft:soul_campfire;extinguished=0;direction=1 blockId=545 -runtimeId=6684 +runtimeId=6834 minecraft:soul_campfire;extinguished=0;direction=2 blockId=545 -runtimeId=6685 +runtimeId=6835 minecraft:soul_campfire;extinguished=0;direction=3 blockId=545 -runtimeId=6686 +runtimeId=6836 minecraft:soul_campfire;extinguished=1;direction=0 blockId=545 -runtimeId=6687 +runtimeId=6837 minecraft:soul_campfire;extinguished=1;direction=1 blockId=545 -runtimeId=6688 +runtimeId=6838 minecraft:soul_campfire;extinguished=1;direction=2 blockId=545 -runtimeId=6689 +runtimeId=6839 minecraft:soul_campfire;extinguished=1;direction=3 blockId=545 -runtimeId=6690 +runtimeId=6840 minecraft:soul_fire;age=0 blockId=492 -runtimeId=6691 +runtimeId=6841 minecraft:soul_fire;age=1 blockId=492 -runtimeId=6692 +runtimeId=6842 minecraft:soul_fire;age=2 blockId=492 -runtimeId=6693 +runtimeId=6843 minecraft:soul_fire;age=3 blockId=492 -runtimeId=6694 +runtimeId=6844 minecraft:soul_fire;age=4 blockId=492 -runtimeId=6695 +runtimeId=6845 minecraft:soul_fire;age=5 blockId=492 -runtimeId=6696 +runtimeId=6846 minecraft:soul_fire;age=6 blockId=492 -runtimeId=6697 +runtimeId=6847 minecraft:soul_fire;age=7 blockId=492 -runtimeId=6698 +runtimeId=6848 minecraft:soul_fire;age=8 blockId=492 -runtimeId=6699 +runtimeId=6849 minecraft:soul_fire;age=9 blockId=492 -runtimeId=6700 +runtimeId=6850 minecraft:soul_fire;age=10 blockId=492 -runtimeId=6701 +runtimeId=6851 minecraft:soul_fire;age=11 blockId=492 -runtimeId=6702 +runtimeId=6852 minecraft:soul_fire;age=12 blockId=492 -runtimeId=6703 +runtimeId=6853 minecraft:soul_fire;age=13 blockId=492 -runtimeId=6704 +runtimeId=6854 minecraft:soul_fire;age=14 blockId=492 -runtimeId=6705 +runtimeId=6855 minecraft:soul_fire;age=15 blockId=492 -runtimeId=6706 +runtimeId=6856 minecraft:soul_lantern;hanging=0 blockId=524 -runtimeId=6707 +runtimeId=6857 minecraft:soul_lantern;hanging=1 blockId=524 -runtimeId=6708 +runtimeId=6858 minecraft:soul_sand blockId=88 -runtimeId=6709 +runtimeId=6859 minecraft:soul_soil blockId=491 -runtimeId=6710 +runtimeId=6860 minecraft:soul_torch;torch_facing_direction=east blockId=523 -runtimeId=6713 +runtimeId=6863 minecraft:soul_torch;torch_facing_direction=north blockId=523 -runtimeId=6714 +runtimeId=6864 minecraft:soul_torch;torch_facing_direction=south blockId=523 -runtimeId=6715 +runtimeId=6865 minecraft:soul_torch;torch_facing_direction=top blockId=523 -runtimeId=6716 +runtimeId=6866 minecraft:soul_torch;torch_facing_direction=unknown blockId=523 -runtimeId=6711 +runtimeId=6861 minecraft:soul_torch;torch_facing_direction=west blockId=523 -runtimeId=6712 +runtimeId=6862 minecraft:sponge;sponge_type=dry blockId=19 -runtimeId=6717 +runtimeId=6867 minecraft:sponge;sponge_type=wet blockId=19 -runtimeId=6718 +runtimeId=6868 minecraft:spore_blossom blockId=576 -runtimeId=6719 +runtimeId=6869 minecraft:spruce_button;button_pressed_bit=0;facing_direction=0 blockId=399 -runtimeId=6720 +runtimeId=6870 minecraft:spruce_button;button_pressed_bit=0;facing_direction=1 blockId=399 -runtimeId=6721 +runtimeId=6871 minecraft:spruce_button;button_pressed_bit=0;facing_direction=2 blockId=399 -runtimeId=6722 +runtimeId=6872 minecraft:spruce_button;button_pressed_bit=0;facing_direction=3 blockId=399 -runtimeId=6723 +runtimeId=6873 minecraft:spruce_button;button_pressed_bit=0;facing_direction=4 blockId=399 -runtimeId=6724 +runtimeId=6874 minecraft:spruce_button;button_pressed_bit=0;facing_direction=5 blockId=399 -runtimeId=6725 +runtimeId=6875 minecraft:spruce_button;button_pressed_bit=1;facing_direction=0 blockId=399 -runtimeId=6726 +runtimeId=6876 minecraft:spruce_button;button_pressed_bit=1;facing_direction=1 blockId=399 -runtimeId=6727 +runtimeId=6877 minecraft:spruce_button;button_pressed_bit=1;facing_direction=2 blockId=399 -runtimeId=6728 +runtimeId=6878 minecraft:spruce_button;button_pressed_bit=1;facing_direction=3 blockId=399 -runtimeId=6729 +runtimeId=6879 minecraft:spruce_button;button_pressed_bit=1;facing_direction=4 blockId=399 -runtimeId=6730 +runtimeId=6880 minecraft:spruce_button;button_pressed_bit=1;facing_direction=5 blockId=399 -runtimeId=6731 +runtimeId=6881 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6732 +runtimeId=6882 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6733 +runtimeId=6883 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6734 +runtimeId=6884 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6735 +runtimeId=6885 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=6748 +runtimeId=6898 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=6749 +runtimeId=6899 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=6750 +runtimeId=6900 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=6751 +runtimeId=6901 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6740 +runtimeId=6890 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6741 +runtimeId=6891 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6742 +runtimeId=6892 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6743 +runtimeId=6893 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=6756 +runtimeId=6906 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=6757 +runtimeId=6907 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=6758 +runtimeId=6908 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=6759 +runtimeId=6909 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6736 +runtimeId=6886 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6737 +runtimeId=6887 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6738 +runtimeId=6888 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6739 +runtimeId=6889 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=6752 +runtimeId=6902 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=6753 +runtimeId=6903 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=6754 +runtimeId=6904 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=6755 +runtimeId=6905 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6744 +runtimeId=6894 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6745 +runtimeId=6895 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6746 +runtimeId=6896 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6747 +runtimeId=6897 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=6760 +runtimeId=6910 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=6761 +runtimeId=6911 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=6762 +runtimeId=6912 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=6763 +runtimeId=6913 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=183 -runtimeId=6764 +runtimeId=6914 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=183 -runtimeId=6765 +runtimeId=6915 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=183 -runtimeId=6766 +runtimeId=6916 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=183 -runtimeId=6767 +runtimeId=6917 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=183 -runtimeId=6768 +runtimeId=6918 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=183 -runtimeId=6769 +runtimeId=6919 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=183 -runtimeId=6770 +runtimeId=6920 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=183 -runtimeId=6771 +runtimeId=6921 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=183 -runtimeId=6772 +runtimeId=6922 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=183 -runtimeId=6773 +runtimeId=6923 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=183 -runtimeId=6774 +runtimeId=6924 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=183 -runtimeId=6775 +runtimeId=6925 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=183 -runtimeId=6776 +runtimeId=6926 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=183 -runtimeId=6777 +runtimeId=6927 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=183 -runtimeId=6778 +runtimeId=6928 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=183 -runtimeId=6779 +runtimeId=6929 minecraft:spruce_pressure_plate;redstone_signal=0 blockId=409 -runtimeId=6780 +runtimeId=6930 minecraft:spruce_pressure_plate;redstone_signal=1 blockId=409 -runtimeId=6781 +runtimeId=6931 minecraft:spruce_pressure_plate;redstone_signal=2 blockId=409 -runtimeId=6782 +runtimeId=6932 minecraft:spruce_pressure_plate;redstone_signal=3 blockId=409 -runtimeId=6783 +runtimeId=6933 minecraft:spruce_pressure_plate;redstone_signal=4 blockId=409 -runtimeId=6784 +runtimeId=6934 minecraft:spruce_pressure_plate;redstone_signal=5 blockId=409 -runtimeId=6785 +runtimeId=6935 minecraft:spruce_pressure_plate;redstone_signal=6 blockId=409 -runtimeId=6786 +runtimeId=6936 minecraft:spruce_pressure_plate;redstone_signal=7 blockId=409 -runtimeId=6787 +runtimeId=6937 minecraft:spruce_pressure_plate;redstone_signal=8 blockId=409 -runtimeId=6788 +runtimeId=6938 minecraft:spruce_pressure_plate;redstone_signal=9 blockId=409 -runtimeId=6789 +runtimeId=6939 minecraft:spruce_pressure_plate;redstone_signal=10 blockId=409 -runtimeId=6790 +runtimeId=6940 minecraft:spruce_pressure_plate;redstone_signal=11 blockId=409 -runtimeId=6791 +runtimeId=6941 minecraft:spruce_pressure_plate;redstone_signal=12 blockId=409 -runtimeId=6792 +runtimeId=6942 minecraft:spruce_pressure_plate;redstone_signal=13 blockId=409 -runtimeId=6793 +runtimeId=6943 minecraft:spruce_pressure_plate;redstone_signal=14 blockId=409 -runtimeId=6794 +runtimeId=6944 minecraft:spruce_pressure_plate;redstone_signal=15 blockId=409 -runtimeId=6795 +runtimeId=6945 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=0 blockId=134 -runtimeId=6796 +runtimeId=6946 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=1 blockId=134 -runtimeId=6797 +runtimeId=6947 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=2 blockId=134 -runtimeId=6798 +runtimeId=6948 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=3 blockId=134 -runtimeId=6799 +runtimeId=6949 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=0 blockId=134 -runtimeId=6800 +runtimeId=6950 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=1 blockId=134 -runtimeId=6801 +runtimeId=6951 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=2 blockId=134 -runtimeId=6802 +runtimeId=6952 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=3 blockId=134 -runtimeId=6803 +runtimeId=6953 minecraft:spruce_standing_sign;ground_sign_direction=0 blockId=436 -runtimeId=6804 +runtimeId=6954 minecraft:spruce_standing_sign;ground_sign_direction=1 blockId=436 -runtimeId=6805 +runtimeId=6955 minecraft:spruce_standing_sign;ground_sign_direction=2 blockId=436 -runtimeId=6806 +runtimeId=6956 minecraft:spruce_standing_sign;ground_sign_direction=3 blockId=436 -runtimeId=6807 +runtimeId=6957 minecraft:spruce_standing_sign;ground_sign_direction=4 blockId=436 -runtimeId=6808 +runtimeId=6958 minecraft:spruce_standing_sign;ground_sign_direction=5 blockId=436 -runtimeId=6809 +runtimeId=6959 minecraft:spruce_standing_sign;ground_sign_direction=6 blockId=436 -runtimeId=6810 +runtimeId=6960 minecraft:spruce_standing_sign;ground_sign_direction=7 blockId=436 -runtimeId=6811 +runtimeId=6961 minecraft:spruce_standing_sign;ground_sign_direction=8 blockId=436 -runtimeId=6812 +runtimeId=6962 minecraft:spruce_standing_sign;ground_sign_direction=9 blockId=436 -runtimeId=6813 +runtimeId=6963 minecraft:spruce_standing_sign;ground_sign_direction=10 blockId=436 -runtimeId=6814 +runtimeId=6964 minecraft:spruce_standing_sign;ground_sign_direction=11 blockId=436 -runtimeId=6815 +runtimeId=6965 minecraft:spruce_standing_sign;ground_sign_direction=12 blockId=436 -runtimeId=6816 +runtimeId=6966 minecraft:spruce_standing_sign;ground_sign_direction=13 blockId=436 -runtimeId=6817 +runtimeId=6967 minecraft:spruce_standing_sign;ground_sign_direction=14 blockId=436 -runtimeId=6818 +runtimeId=6968 minecraft:spruce_standing_sign;ground_sign_direction=15 blockId=436 -runtimeId=6819 +runtimeId=6969 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=404 -runtimeId=6820 +runtimeId=6970 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=404 -runtimeId=6821 +runtimeId=6971 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=404 -runtimeId=6822 +runtimeId=6972 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=404 -runtimeId=6823 +runtimeId=6973 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=404 -runtimeId=6824 +runtimeId=6974 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=404 -runtimeId=6825 +runtimeId=6975 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=404 -runtimeId=6826 +runtimeId=6976 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=404 -runtimeId=6827 +runtimeId=6977 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=404 -runtimeId=6828 +runtimeId=6978 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=404 -runtimeId=6829 +runtimeId=6979 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=404 -runtimeId=6830 +runtimeId=6980 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=404 -runtimeId=6831 +runtimeId=6981 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=404 -runtimeId=6832 +runtimeId=6982 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=404 -runtimeId=6833 +runtimeId=6983 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=404 -runtimeId=6834 +runtimeId=6984 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=404 -runtimeId=6835 +runtimeId=6985 minecraft:spruce_wall_sign;facing_direction=0 blockId=437 -runtimeId=6836 +runtimeId=6986 minecraft:spruce_wall_sign;facing_direction=1 blockId=437 -runtimeId=6837 +runtimeId=6987 minecraft:spruce_wall_sign;facing_direction=2 blockId=437 -runtimeId=6838 +runtimeId=6988 minecraft:spruce_wall_sign;facing_direction=3 blockId=437 -runtimeId=6839 +runtimeId=6989 minecraft:spruce_wall_sign;facing_direction=4 blockId=437 -runtimeId=6840 +runtimeId=6990 minecraft:spruce_wall_sign;facing_direction=5 blockId=437 -runtimeId=6841 +runtimeId=6991 minecraft:stained_glass;color=black blockId=241 -runtimeId=6857 +runtimeId=7007 minecraft:stained_glass;color=blue blockId=241 -runtimeId=6853 +runtimeId=7003 minecraft:stained_glass;color=brown blockId=241 -runtimeId=6854 +runtimeId=7004 minecraft:stained_glass;color=cyan blockId=241 -runtimeId=6851 +runtimeId=7001 minecraft:stained_glass;color=gray blockId=241 -runtimeId=6849 +runtimeId=6999 minecraft:stained_glass;color=green blockId=241 -runtimeId=6855 +runtimeId=7005 minecraft:stained_glass;color=light_blue blockId=241 -runtimeId=6845 +runtimeId=6995 minecraft:stained_glass;color=lime blockId=241 -runtimeId=6847 +runtimeId=6997 minecraft:stained_glass;color=magenta blockId=241 -runtimeId=6844 +runtimeId=6994 minecraft:stained_glass;color=orange blockId=241 -runtimeId=6843 +runtimeId=6993 minecraft:stained_glass;color=pink blockId=241 -runtimeId=6848 +runtimeId=6998 minecraft:stained_glass;color=purple blockId=241 -runtimeId=6852 +runtimeId=7002 minecraft:stained_glass;color=red blockId=241 -runtimeId=6856 +runtimeId=7006 minecraft:stained_glass;color=silver blockId=241 -runtimeId=6850 +runtimeId=7000 minecraft:stained_glass;color=white blockId=241 -runtimeId=6842 +runtimeId=6992 minecraft:stained_glass;color=yellow blockId=241 -runtimeId=6846 +runtimeId=6996 minecraft:stained_glass_pane;color=black blockId=160 -runtimeId=6873 +runtimeId=7023 minecraft:stained_glass_pane;color=blue blockId=160 -runtimeId=6869 +runtimeId=7019 minecraft:stained_glass_pane;color=brown blockId=160 -runtimeId=6870 +runtimeId=7020 minecraft:stained_glass_pane;color=cyan blockId=160 -runtimeId=6867 +runtimeId=7017 minecraft:stained_glass_pane;color=gray blockId=160 -runtimeId=6865 +runtimeId=7015 minecraft:stained_glass_pane;color=green blockId=160 -runtimeId=6871 +runtimeId=7021 minecraft:stained_glass_pane;color=light_blue blockId=160 -runtimeId=6861 +runtimeId=7011 minecraft:stained_glass_pane;color=lime blockId=160 -runtimeId=6863 +runtimeId=7013 minecraft:stained_glass_pane;color=magenta blockId=160 -runtimeId=6860 +runtimeId=7010 minecraft:stained_glass_pane;color=orange blockId=160 -runtimeId=6859 +runtimeId=7009 minecraft:stained_glass_pane;color=pink blockId=160 -runtimeId=6864 +runtimeId=7014 minecraft:stained_glass_pane;color=purple blockId=160 -runtimeId=6868 +runtimeId=7018 minecraft:stained_glass_pane;color=red blockId=160 -runtimeId=6872 +runtimeId=7022 minecraft:stained_glass_pane;color=silver blockId=160 -runtimeId=6866 +runtimeId=7016 minecraft:stained_glass_pane;color=white blockId=160 -runtimeId=6858 +runtimeId=7008 minecraft:stained_glass_pane;color=yellow blockId=160 -runtimeId=6862 +runtimeId=7012 minecraft:stained_hardened_clay;color=black blockId=159 -runtimeId=6889 +runtimeId=7039 minecraft:stained_hardened_clay;color=blue blockId=159 -runtimeId=6885 +runtimeId=7035 minecraft:stained_hardened_clay;color=brown blockId=159 -runtimeId=6886 +runtimeId=7036 minecraft:stained_hardened_clay;color=cyan blockId=159 -runtimeId=6883 +runtimeId=7033 minecraft:stained_hardened_clay;color=gray blockId=159 -runtimeId=6881 +runtimeId=7031 minecraft:stained_hardened_clay;color=green blockId=159 -runtimeId=6887 +runtimeId=7037 minecraft:stained_hardened_clay;color=light_blue blockId=159 -runtimeId=6877 +runtimeId=7027 minecraft:stained_hardened_clay;color=lime blockId=159 -runtimeId=6879 +runtimeId=7029 minecraft:stained_hardened_clay;color=magenta blockId=159 -runtimeId=6876 +runtimeId=7026 minecraft:stained_hardened_clay;color=orange blockId=159 -runtimeId=6875 +runtimeId=7025 minecraft:stained_hardened_clay;color=pink blockId=159 -runtimeId=6880 +runtimeId=7030 minecraft:stained_hardened_clay;color=purple blockId=159 -runtimeId=6884 +runtimeId=7034 minecraft:stained_hardened_clay;color=red blockId=159 -runtimeId=6888 +runtimeId=7038 minecraft:stained_hardened_clay;color=silver blockId=159 -runtimeId=6882 +runtimeId=7032 minecraft:stained_hardened_clay;color=white blockId=159 -runtimeId=6874 +runtimeId=7024 minecraft:stained_hardened_clay;color=yellow blockId=159 -runtimeId=6878 +runtimeId=7028 minecraft:standing_banner;ground_sign_direction=0 blockId=176 -runtimeId=6890 +runtimeId=7040 minecraft:standing_banner;ground_sign_direction=1 blockId=176 -runtimeId=6891 +runtimeId=7041 minecraft:standing_banner;ground_sign_direction=2 blockId=176 -runtimeId=6892 +runtimeId=7042 minecraft:standing_banner;ground_sign_direction=3 blockId=176 -runtimeId=6893 +runtimeId=7043 minecraft:standing_banner;ground_sign_direction=4 blockId=176 -runtimeId=6894 +runtimeId=7044 minecraft:standing_banner;ground_sign_direction=5 blockId=176 -runtimeId=6895 +runtimeId=7045 minecraft:standing_banner;ground_sign_direction=6 blockId=176 -runtimeId=6896 +runtimeId=7046 minecraft:standing_banner;ground_sign_direction=7 blockId=176 -runtimeId=6897 +runtimeId=7047 minecraft:standing_banner;ground_sign_direction=8 blockId=176 -runtimeId=6898 +runtimeId=7048 minecraft:standing_banner;ground_sign_direction=9 blockId=176 -runtimeId=6899 +runtimeId=7049 minecraft:standing_banner;ground_sign_direction=10 blockId=176 -runtimeId=6900 +runtimeId=7050 minecraft:standing_banner;ground_sign_direction=11 blockId=176 -runtimeId=6901 +runtimeId=7051 minecraft:standing_banner;ground_sign_direction=12 blockId=176 -runtimeId=6902 +runtimeId=7052 minecraft:standing_banner;ground_sign_direction=13 blockId=176 -runtimeId=6903 +runtimeId=7053 minecraft:standing_banner;ground_sign_direction=14 blockId=176 -runtimeId=6904 +runtimeId=7054 minecraft:standing_banner;ground_sign_direction=15 blockId=176 -runtimeId=6905 +runtimeId=7055 minecraft:standing_sign;ground_sign_direction=0 blockId=63 -runtimeId=6906 +runtimeId=7056 minecraft:standing_sign;ground_sign_direction=1 blockId=63 -runtimeId=6907 +runtimeId=7057 minecraft:standing_sign;ground_sign_direction=2 blockId=63 -runtimeId=6908 +runtimeId=7058 minecraft:standing_sign;ground_sign_direction=3 blockId=63 -runtimeId=6909 +runtimeId=7059 minecraft:standing_sign;ground_sign_direction=4 blockId=63 -runtimeId=6910 +runtimeId=7060 minecraft:standing_sign;ground_sign_direction=5 blockId=63 -runtimeId=6911 +runtimeId=7061 minecraft:standing_sign;ground_sign_direction=6 blockId=63 -runtimeId=6912 +runtimeId=7062 minecraft:standing_sign;ground_sign_direction=7 blockId=63 -runtimeId=6913 +runtimeId=7063 minecraft:standing_sign;ground_sign_direction=8 blockId=63 -runtimeId=6914 +runtimeId=7064 minecraft:standing_sign;ground_sign_direction=9 blockId=63 -runtimeId=6915 +runtimeId=7065 minecraft:standing_sign;ground_sign_direction=10 blockId=63 -runtimeId=6916 +runtimeId=7066 minecraft:standing_sign;ground_sign_direction=11 blockId=63 -runtimeId=6917 +runtimeId=7067 minecraft:standing_sign;ground_sign_direction=12 blockId=63 -runtimeId=6918 +runtimeId=7068 minecraft:standing_sign;ground_sign_direction=13 blockId=63 -runtimeId=6919 +runtimeId=7069 minecraft:standing_sign;ground_sign_direction=14 blockId=63 -runtimeId=6920 +runtimeId=7070 minecraft:standing_sign;ground_sign_direction=15 blockId=63 -runtimeId=6921 +runtimeId=7071 minecraft:stickyPistonArmCollision;facing_direction=0 blockId=472 -runtimeId=6928 +runtimeId=7078 minecraft:stickyPistonArmCollision;facing_direction=1 blockId=472 -runtimeId=6929 +runtimeId=7079 minecraft:stickyPistonArmCollision;facing_direction=2 blockId=472 -runtimeId=6930 +runtimeId=7080 minecraft:stickyPistonArmCollision;facing_direction=3 blockId=472 -runtimeId=6931 +runtimeId=7081 minecraft:stickyPistonArmCollision;facing_direction=4 blockId=472 -runtimeId=6932 +runtimeId=7082 minecraft:stickyPistonArmCollision;facing_direction=5 blockId=472 -runtimeId=6933 +runtimeId=7083 minecraft:sticky_piston;facing_direction=0 blockId=29 -runtimeId=6922 +runtimeId=7072 minecraft:sticky_piston;facing_direction=1 blockId=29 -runtimeId=6923 +runtimeId=7073 minecraft:sticky_piston;facing_direction=2 blockId=29 -runtimeId=6924 +runtimeId=7074 minecraft:sticky_piston;facing_direction=3 blockId=29 -runtimeId=6925 +runtimeId=7075 minecraft:sticky_piston;facing_direction=4 blockId=29 -runtimeId=6926 +runtimeId=7076 minecraft:sticky_piston;facing_direction=5 blockId=29 -runtimeId=6927 +runtimeId=7077 minecraft:stone;stone_type=andesite blockId=1 -runtimeId=6939 +runtimeId=7089 minecraft:stone;stone_type=andesite_smooth blockId=1 -runtimeId=6940 +runtimeId=7090 minecraft:stone;stone_type=diorite blockId=1 -runtimeId=6937 +runtimeId=7087 minecraft:stone;stone_type=diorite_smooth blockId=1 -runtimeId=6938 +runtimeId=7088 minecraft:stone;stone_type=granite blockId=1 -runtimeId=6935 +runtimeId=7085 minecraft:stone;stone_type=granite_smooth blockId=1 -runtimeId=6936 +runtimeId=7086 minecraft:stone;stone_type=stone blockId=1 -runtimeId=6934 +runtimeId=7084 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=109 -runtimeId=6941 +runtimeId=7091 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=109 -runtimeId=6942 +runtimeId=7092 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=109 -runtimeId=6943 +runtimeId=7093 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=109 -runtimeId=6944 +runtimeId=7094 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=109 -runtimeId=6945 +runtimeId=7095 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=109 -runtimeId=6946 +runtimeId=7096 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=109 -runtimeId=6947 +runtimeId=7097 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=109 -runtimeId=6948 +runtimeId=7098 minecraft:stone_button;button_pressed_bit=0;facing_direction=0 blockId=77 -runtimeId=6949 +runtimeId=7099 minecraft:stone_button;button_pressed_bit=0;facing_direction=1 blockId=77 -runtimeId=6950 +runtimeId=7100 minecraft:stone_button;button_pressed_bit=0;facing_direction=2 blockId=77 -runtimeId=6951 +runtimeId=7101 minecraft:stone_button;button_pressed_bit=0;facing_direction=3 blockId=77 -runtimeId=6952 +runtimeId=7102 minecraft:stone_button;button_pressed_bit=0;facing_direction=4 blockId=77 -runtimeId=6953 +runtimeId=7103 minecraft:stone_button;button_pressed_bit=0;facing_direction=5 blockId=77 -runtimeId=6954 +runtimeId=7104 minecraft:stone_button;button_pressed_bit=1;facing_direction=0 blockId=77 -runtimeId=6955 +runtimeId=7105 minecraft:stone_button;button_pressed_bit=1;facing_direction=1 blockId=77 -runtimeId=6956 +runtimeId=7106 minecraft:stone_button;button_pressed_bit=1;facing_direction=2 blockId=77 -runtimeId=6957 +runtimeId=7107 minecraft:stone_button;button_pressed_bit=1;facing_direction=3 blockId=77 -runtimeId=6958 +runtimeId=7108 minecraft:stone_button;button_pressed_bit=1;facing_direction=4 blockId=77 -runtimeId=6959 +runtimeId=7109 minecraft:stone_button;button_pressed_bit=1;facing_direction=5 blockId=77 -runtimeId=6960 +runtimeId=7110 minecraft:stone_pressure_plate;redstone_signal=0 blockId=70 -runtimeId=6961 +runtimeId=7111 minecraft:stone_pressure_plate;redstone_signal=1 blockId=70 -runtimeId=6962 +runtimeId=7112 minecraft:stone_pressure_plate;redstone_signal=2 blockId=70 -runtimeId=6963 +runtimeId=7113 minecraft:stone_pressure_plate;redstone_signal=3 blockId=70 -runtimeId=6964 +runtimeId=7114 minecraft:stone_pressure_plate;redstone_signal=4 blockId=70 -runtimeId=6965 +runtimeId=7115 minecraft:stone_pressure_plate;redstone_signal=5 blockId=70 -runtimeId=6966 +runtimeId=7116 minecraft:stone_pressure_plate;redstone_signal=6 blockId=70 -runtimeId=6967 +runtimeId=7117 minecraft:stone_pressure_plate;redstone_signal=7 blockId=70 -runtimeId=6968 +runtimeId=7118 minecraft:stone_pressure_plate;redstone_signal=8 blockId=70 -runtimeId=6969 +runtimeId=7119 minecraft:stone_pressure_plate;redstone_signal=9 blockId=70 -runtimeId=6970 +runtimeId=7120 minecraft:stone_pressure_plate;redstone_signal=10 blockId=70 -runtimeId=6971 +runtimeId=7121 minecraft:stone_pressure_plate;redstone_signal=11 blockId=70 -runtimeId=6972 +runtimeId=7122 minecraft:stone_pressure_plate;redstone_signal=12 blockId=70 -runtimeId=6973 +runtimeId=7123 minecraft:stone_pressure_plate;redstone_signal=13 blockId=70 -runtimeId=6974 +runtimeId=7124 minecraft:stone_pressure_plate;redstone_signal=14 blockId=70 -runtimeId=6975 +runtimeId=7125 minecraft:stone_pressure_plate;redstone_signal=15 blockId=70 -runtimeId=6976 +runtimeId=7126 minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0 blockId=182 -runtimeId=6998 +runtimeId=7148 minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=1 blockId=182 -runtimeId=7006 +runtimeId=7156 minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0 blockId=182 -runtimeId=6997 +runtimeId=7147 minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=1 blockId=182 -runtimeId=7005 +runtimeId=7155 minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0 blockId=182 -runtimeId=6996 +runtimeId=7146 minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=1 blockId=182 -runtimeId=7004 +runtimeId=7154 minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0 blockId=182 -runtimeId=6995 +runtimeId=7145 minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=1 blockId=182 -runtimeId=7003 +runtimeId=7153 minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0 blockId=182 -runtimeId=6994 +runtimeId=7144 minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=1 blockId=182 -runtimeId=7002 +runtimeId=7152 minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0 blockId=182 -runtimeId=7000 +runtimeId=7150 minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=1 blockId=182 -runtimeId=7008 +runtimeId=7158 minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0 blockId=182 -runtimeId=6993 +runtimeId=7143 minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=1 blockId=182 -runtimeId=7001 +runtimeId=7151 minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0 blockId=182 -runtimeId=6999 +runtimeId=7149 minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=1 blockId=182 -runtimeId=7007 +runtimeId=7157 minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0 blockId=417 -runtimeId=7012 +runtimeId=7162 minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=1 blockId=417 -runtimeId=7020 +runtimeId=7170 minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0 blockId=417 -runtimeId=7013 +runtimeId=7163 minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=1 blockId=417 -runtimeId=7021 +runtimeId=7171 minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0 blockId=417 -runtimeId=7009 +runtimeId=7159 minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=1 blockId=417 -runtimeId=7017 +runtimeId=7167 minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=0 blockId=417 -runtimeId=7015 +runtimeId=7165 minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=1 blockId=417 -runtimeId=7023 +runtimeId=7173 minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0 blockId=417 -runtimeId=7011 +runtimeId=7161 minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=1 blockId=417 -runtimeId=7019 +runtimeId=7169 minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0 blockId=417 -runtimeId=7014 +runtimeId=7164 minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=1 blockId=417 -runtimeId=7022 +runtimeId=7172 minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0 blockId=417 -runtimeId=7016 +runtimeId=7166 minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=1 blockId=417 -runtimeId=7024 +runtimeId=7174 minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0 blockId=417 -runtimeId=7010 +runtimeId=7160 minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=1 blockId=417 -runtimeId=7018 +runtimeId=7168 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_red_sandstone blockId=421 -runtimeId=7029 +runtimeId=7179 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_sandstone blockId=421 -runtimeId=7028 +runtimeId=7178 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=mossy_stone_brick blockId=421 -runtimeId=7025 +runtimeId=7175 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=smooth_quartz blockId=421 -runtimeId=7026 +runtimeId=7176 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=stone blockId=421 -runtimeId=7027 +runtimeId=7177 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_red_sandstone blockId=421 -runtimeId=7034 +runtimeId=7184 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_sandstone blockId=421 -runtimeId=7033 +runtimeId=7183 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=mossy_stone_brick blockId=421 -runtimeId=7030 +runtimeId=7180 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=smooth_quartz blockId=421 -runtimeId=7031 +runtimeId=7181 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=stone blockId=421 -runtimeId=7032 +runtimeId=7182 minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=0 blockId=44 -runtimeId=6981 +runtimeId=7131 minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=1 blockId=44 -runtimeId=6989 +runtimeId=7139 minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=0 blockId=44 -runtimeId=6980 +runtimeId=7130 minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=1 blockId=44 -runtimeId=6988 +runtimeId=7138 minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0 blockId=44 -runtimeId=6984 +runtimeId=7134 minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=1 blockId=44 -runtimeId=6992 +runtimeId=7142 minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0 blockId=44 -runtimeId=6983 +runtimeId=7133 minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=1 blockId=44 -runtimeId=6991 +runtimeId=7141 minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0 blockId=44 -runtimeId=6978 +runtimeId=7128 minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=1 blockId=44 -runtimeId=6986 +runtimeId=7136 minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0 blockId=44 -runtimeId=6977 +runtimeId=7127 minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=1 blockId=44 -runtimeId=6985 +runtimeId=7135 minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0 blockId=44 -runtimeId=6982 +runtimeId=7132 minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=1 blockId=44 -runtimeId=6990 +runtimeId=7140 minecraft:stone_slab;stone_slab_type=wood;top_slot_bit=0 blockId=44 -runtimeId=6979 +runtimeId=7129 minecraft:stone_slab;stone_slab_type=wood;top_slot_bit=1 blockId=44 -runtimeId=6987 +runtimeId=7137 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=67 -runtimeId=7035 +runtimeId=7185 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=67 -runtimeId=7036 +runtimeId=7186 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=67 -runtimeId=7037 +runtimeId=7187 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=67 -runtimeId=7038 +runtimeId=7188 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=67 -runtimeId=7039 +runtimeId=7189 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=67 -runtimeId=7040 +runtimeId=7190 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=67 -runtimeId=7041 +runtimeId=7191 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=67 -runtimeId=7042 +runtimeId=7192 minecraft:stonebrick;stone_brick_type=chiseled blockId=98 -runtimeId=7046 +runtimeId=7196 minecraft:stonebrick;stone_brick_type=cracked blockId=98 -runtimeId=7045 +runtimeId=7195 minecraft:stonebrick;stone_brick_type=default blockId=98 -runtimeId=7043 +runtimeId=7193 minecraft:stonebrick;stone_brick_type=mossy blockId=98 -runtimeId=7044 +runtimeId=7194 minecraft:stonebrick;stone_brick_type=smooth blockId=98 -runtimeId=7047 +runtimeId=7197 minecraft:stonecutter blockId=245 -runtimeId=7048 +runtimeId=7198 minecraft:stonecutter_block;facing_direction=0 blockId=452 -runtimeId=7049 +runtimeId=7199 minecraft:stonecutter_block;facing_direction=1 blockId=452 -runtimeId=7050 +runtimeId=7200 minecraft:stonecutter_block;facing_direction=2 blockId=452 -runtimeId=7051 +runtimeId=7201 minecraft:stonecutter_block;facing_direction=3 blockId=452 -runtimeId=7052 +runtimeId=7202 minecraft:stonecutter_block;facing_direction=4 blockId=452 -runtimeId=7053 +runtimeId=7203 minecraft:stonecutter_block;facing_direction=5 blockId=452 -runtimeId=7054 +runtimeId=7204 minecraft:stripped_acacia_log;pillar_axis=x blockId=263 -runtimeId=7056 +runtimeId=7206 minecraft:stripped_acacia_log;pillar_axis=y blockId=263 -runtimeId=7055 +runtimeId=7205 minecraft:stripped_acacia_log;pillar_axis=z blockId=263 -runtimeId=7057 +runtimeId=7207 minecraft:stripped_birch_log;pillar_axis=x blockId=261 -runtimeId=7059 +runtimeId=7209 minecraft:stripped_birch_log;pillar_axis=y blockId=261 -runtimeId=7058 +runtimeId=7208 minecraft:stripped_birch_log;pillar_axis=z blockId=261 -runtimeId=7060 +runtimeId=7210 minecraft:stripped_crimson_hyphae;pillar_axis=x blockId=555 -runtimeId=7062 +runtimeId=7212 minecraft:stripped_crimson_hyphae;pillar_axis=y blockId=555 -runtimeId=7061 +runtimeId=7211 minecraft:stripped_crimson_hyphae;pillar_axis=z blockId=555 -runtimeId=7063 +runtimeId=7213 minecraft:stripped_crimson_stem;pillar_axis=x blockId=495 -runtimeId=7065 +runtimeId=7215 minecraft:stripped_crimson_stem;pillar_axis=y blockId=495 -runtimeId=7064 +runtimeId=7214 minecraft:stripped_crimson_stem;pillar_axis=z blockId=495 -runtimeId=7066 +runtimeId=7216 minecraft:stripped_dark_oak_log;pillar_axis=x blockId=264 -runtimeId=7068 +runtimeId=7218 minecraft:stripped_dark_oak_log;pillar_axis=y blockId=264 -runtimeId=7067 +runtimeId=7217 minecraft:stripped_dark_oak_log;pillar_axis=z blockId=264 -runtimeId=7069 +runtimeId=7219 minecraft:stripped_jungle_log;pillar_axis=x blockId=262 -runtimeId=7071 +runtimeId=7221 minecraft:stripped_jungle_log;pillar_axis=y blockId=262 -runtimeId=7070 +runtimeId=7220 minecraft:stripped_jungle_log;pillar_axis=z blockId=262 -runtimeId=7072 +runtimeId=7222 minecraft:stripped_oak_log;pillar_axis=x blockId=265 -runtimeId=7074 +runtimeId=7224 minecraft:stripped_oak_log;pillar_axis=y blockId=265 -runtimeId=7073 +runtimeId=7223 minecraft:stripped_oak_log;pillar_axis=z blockId=265 -runtimeId=7075 +runtimeId=7225 minecraft:stripped_spruce_log;pillar_axis=x blockId=260 -runtimeId=7077 +runtimeId=7227 minecraft:stripped_spruce_log;pillar_axis=y blockId=260 -runtimeId=7076 +runtimeId=7226 minecraft:stripped_spruce_log;pillar_axis=z blockId=260 -runtimeId=7078 +runtimeId=7228 minecraft:stripped_warped_hyphae;pillar_axis=x blockId=556 -runtimeId=7080 +runtimeId=7230 minecraft:stripped_warped_hyphae;pillar_axis=y blockId=556 -runtimeId=7079 +runtimeId=7229 minecraft:stripped_warped_hyphae;pillar_axis=z blockId=556 -runtimeId=7081 +runtimeId=7231 minecraft:stripped_warped_stem;pillar_axis=x blockId=496 -runtimeId=7083 +runtimeId=7233 minecraft:stripped_warped_stem;pillar_axis=y blockId=496 -runtimeId=7082 +runtimeId=7232 minecraft:stripped_warped_stem;pillar_axis=z blockId=496 -runtimeId=7084 +runtimeId=7234 minecraft:structure_block;structure_block_type=corner blockId=252 -runtimeId=7088 +runtimeId=7238 minecraft:structure_block;structure_block_type=data blockId=252 -runtimeId=7085 +runtimeId=7235 minecraft:structure_block;structure_block_type=export blockId=252 -runtimeId=7090 +runtimeId=7240 minecraft:structure_block;structure_block_type=invalid blockId=252 -runtimeId=7089 +runtimeId=7239 minecraft:structure_block;structure_block_type=load blockId=252 -runtimeId=7087 +runtimeId=7237 minecraft:structure_block;structure_block_type=save blockId=252 -runtimeId=7086 +runtimeId=7236 minecraft:structure_void;structure_void_type=air blockId=217 -runtimeId=7092 +runtimeId=7242 minecraft:structure_void;structure_void_type=void blockId=217 -runtimeId=7091 +runtimeId=7241 minecraft:sweet_berry_bush;growth=0 blockId=462 -runtimeId=7093 +runtimeId=7243 minecraft:sweet_berry_bush;growth=1 blockId=462 -runtimeId=7094 +runtimeId=7244 minecraft:sweet_berry_bush;growth=2 blockId=462 -runtimeId=7095 +runtimeId=7245 minecraft:sweet_berry_bush;growth=3 blockId=462 -runtimeId=7096 +runtimeId=7246 minecraft:sweet_berry_bush;growth=4 blockId=462 -runtimeId=7097 +runtimeId=7247 minecraft:sweet_berry_bush;growth=5 blockId=462 -runtimeId=7098 +runtimeId=7248 minecraft:sweet_berry_bush;growth=6 blockId=462 -runtimeId=7099 +runtimeId=7249 minecraft:sweet_berry_bush;growth=7 blockId=462 -runtimeId=7100 +runtimeId=7250 minecraft:tallgrass;tall_grass_type=default blockId=31 -runtimeId=7101 +runtimeId=7251 minecraft:tallgrass;tall_grass_type=fern blockId=31 -runtimeId=7103 +runtimeId=7253 minecraft:tallgrass;tall_grass_type=snow blockId=31 -runtimeId=7104 +runtimeId=7254 minecraft:tallgrass;tall_grass_type=tall blockId=31 -runtimeId=7102 +runtimeId=7252 minecraft:target blockId=494 -runtimeId=7105 +runtimeId=7255 minecraft:tinted_glass blockId=589 -runtimeId=7106 +runtimeId=7256 minecraft:tnt;explode_bit=0;allow_underwater_bit=0 blockId=46 -runtimeId=7107 +runtimeId=7257 minecraft:tnt;explode_bit=0;allow_underwater_bit=1 blockId=46 -runtimeId=7109 +runtimeId=7259 minecraft:tnt;explode_bit=1;allow_underwater_bit=0 blockId=46 -runtimeId=7108 +runtimeId=7258 minecraft:tnt;explode_bit=1;allow_underwater_bit=1 blockId=46 -runtimeId=7110 +runtimeId=7260 minecraft:torch;torch_facing_direction=east blockId=50 -runtimeId=7113 +runtimeId=7263 minecraft:torch;torch_facing_direction=north blockId=50 -runtimeId=7114 +runtimeId=7264 minecraft:torch;torch_facing_direction=south blockId=50 -runtimeId=7115 +runtimeId=7265 minecraft:torch;torch_facing_direction=top blockId=50 -runtimeId=7116 +runtimeId=7266 minecraft:torch;torch_facing_direction=unknown blockId=50 -runtimeId=7111 +runtimeId=7261 minecraft:torch;torch_facing_direction=west blockId=50 -runtimeId=7112 +runtimeId=7262 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=96 -runtimeId=7117 +runtimeId=7267 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=96 -runtimeId=7118 +runtimeId=7268 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=96 -runtimeId=7119 +runtimeId=7269 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=96 -runtimeId=7120 +runtimeId=7270 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=96 -runtimeId=7121 +runtimeId=7271 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=96 -runtimeId=7122 +runtimeId=7272 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=96 -runtimeId=7123 +runtimeId=7273 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=96 -runtimeId=7124 +runtimeId=7274 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=96 -runtimeId=7125 +runtimeId=7275 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=96 -runtimeId=7126 +runtimeId=7276 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=96 -runtimeId=7127 +runtimeId=7277 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=96 -runtimeId=7128 +runtimeId=7278 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=96 -runtimeId=7129 +runtimeId=7279 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=96 -runtimeId=7130 +runtimeId=7280 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=96 -runtimeId=7131 +runtimeId=7281 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=96 -runtimeId=7132 +runtimeId=7282 minecraft:trapped_chest;facing_direction=0 blockId=146 -runtimeId=7133 +runtimeId=7283 minecraft:trapped_chest;facing_direction=1 blockId=146 -runtimeId=7134 +runtimeId=7284 minecraft:trapped_chest;facing_direction=2 blockId=146 -runtimeId=7135 +runtimeId=7285 minecraft:trapped_chest;facing_direction=3 blockId=146 -runtimeId=7136 +runtimeId=7286 minecraft:trapped_chest;facing_direction=4 blockId=146 -runtimeId=7137 +runtimeId=7287 minecraft:trapped_chest;facing_direction=5 blockId=146 -runtimeId=7138 +runtimeId=7288 minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7139 +runtimeId=7289 minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7143 +runtimeId=7293 minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7147 +runtimeId=7297 minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7151 +runtimeId=7301 minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7141 +runtimeId=7291 minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7145 +runtimeId=7295 minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7149 +runtimeId=7299 minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7153 +runtimeId=7303 minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7140 +runtimeId=7290 minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7144 +runtimeId=7294 minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7148 +runtimeId=7298 minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7152 +runtimeId=7302 minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7142 +runtimeId=7292 minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7146 +runtimeId=7296 minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7150 +runtimeId=7300 minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7154 +runtimeId=7304 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=0 blockId=131 -runtimeId=7155 +runtimeId=7305 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=1 blockId=131 -runtimeId=7156 +runtimeId=7306 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=2 blockId=131 -runtimeId=7157 +runtimeId=7307 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=3 blockId=131 -runtimeId=7158 +runtimeId=7308 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=0 blockId=131 -runtimeId=7159 +runtimeId=7309 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=1 blockId=131 -runtimeId=7160 +runtimeId=7310 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=2 blockId=131 -runtimeId=7161 +runtimeId=7311 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=3 blockId=131 -runtimeId=7162 +runtimeId=7312 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=0 blockId=131 -runtimeId=7163 +runtimeId=7313 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=1 blockId=131 -runtimeId=7164 +runtimeId=7314 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=2 blockId=131 -runtimeId=7165 +runtimeId=7315 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=3 blockId=131 -runtimeId=7166 +runtimeId=7316 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=0 blockId=131 -runtimeId=7167 +runtimeId=7317 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=1 blockId=131 -runtimeId=7168 +runtimeId=7318 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=2 blockId=131 -runtimeId=7169 +runtimeId=7319 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=3 blockId=131 -runtimeId=7170 +runtimeId=7320 minecraft:tuff blockId=588 -runtimeId=7171 +runtimeId=7321 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=four_egg blockId=414 -runtimeId=7179 +runtimeId=7329 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=one_egg blockId=414 -runtimeId=7176 +runtimeId=7326 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=three_egg blockId=414 -runtimeId=7178 +runtimeId=7328 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=two_egg blockId=414 -runtimeId=7177 +runtimeId=7327 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=four_egg blockId=414 -runtimeId=7183 +runtimeId=7333 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=one_egg blockId=414 -runtimeId=7180 +runtimeId=7330 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=three_egg blockId=414 -runtimeId=7182 +runtimeId=7332 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=two_egg blockId=414 -runtimeId=7181 +runtimeId=7331 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=four_egg blockId=414 -runtimeId=7175 +runtimeId=7325 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=one_egg blockId=414 -runtimeId=7172 +runtimeId=7322 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=three_egg blockId=414 -runtimeId=7174 +runtimeId=7324 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=two_egg blockId=414 -runtimeId=7173 +runtimeId=7323 minecraft:twisting_vines;twisting_vines_age=0 blockId=542 -runtimeId=7184 +runtimeId=7334 minecraft:twisting_vines;twisting_vines_age=1 blockId=542 -runtimeId=7185 +runtimeId=7335 minecraft:twisting_vines;twisting_vines_age=2 blockId=542 -runtimeId=7186 +runtimeId=7336 minecraft:twisting_vines;twisting_vines_age=3 blockId=542 -runtimeId=7187 +runtimeId=7337 minecraft:twisting_vines;twisting_vines_age=4 blockId=542 -runtimeId=7188 +runtimeId=7338 minecraft:twisting_vines;twisting_vines_age=5 blockId=542 -runtimeId=7189 +runtimeId=7339 minecraft:twisting_vines;twisting_vines_age=6 blockId=542 -runtimeId=7190 +runtimeId=7340 minecraft:twisting_vines;twisting_vines_age=7 blockId=542 -runtimeId=7191 +runtimeId=7341 minecraft:twisting_vines;twisting_vines_age=8 blockId=542 -runtimeId=7192 +runtimeId=7342 minecraft:twisting_vines;twisting_vines_age=9 blockId=542 -runtimeId=7193 +runtimeId=7343 minecraft:twisting_vines;twisting_vines_age=10 blockId=542 -runtimeId=7194 +runtimeId=7344 minecraft:twisting_vines;twisting_vines_age=11 blockId=542 -runtimeId=7195 +runtimeId=7345 minecraft:twisting_vines;twisting_vines_age=12 blockId=542 -runtimeId=7196 +runtimeId=7346 minecraft:twisting_vines;twisting_vines_age=13 blockId=542 -runtimeId=7197 +runtimeId=7347 minecraft:twisting_vines;twisting_vines_age=14 blockId=542 -runtimeId=7198 +runtimeId=7348 minecraft:twisting_vines;twisting_vines_age=15 blockId=542 -runtimeId=7199 +runtimeId=7349 minecraft:twisting_vines;twisting_vines_age=16 blockId=542 -runtimeId=7200 +runtimeId=7350 minecraft:twisting_vines;twisting_vines_age=17 blockId=542 -runtimeId=7201 +runtimeId=7351 minecraft:twisting_vines;twisting_vines_age=18 blockId=542 -runtimeId=7202 +runtimeId=7352 minecraft:twisting_vines;twisting_vines_age=19 blockId=542 -runtimeId=7203 +runtimeId=7353 minecraft:twisting_vines;twisting_vines_age=20 blockId=542 -runtimeId=7204 +runtimeId=7354 minecraft:twisting_vines;twisting_vines_age=21 blockId=542 -runtimeId=7205 +runtimeId=7355 minecraft:twisting_vines;twisting_vines_age=22 blockId=542 -runtimeId=7206 +runtimeId=7356 minecraft:twisting_vines;twisting_vines_age=23 blockId=542 -runtimeId=7207 +runtimeId=7357 minecraft:twisting_vines;twisting_vines_age=24 blockId=542 -runtimeId=7208 +runtimeId=7358 minecraft:twisting_vines;twisting_vines_age=25 blockId=542 -runtimeId=7209 +runtimeId=7359 minecraft:underwater_torch;torch_facing_direction=east blockId=239 -runtimeId=7212 +runtimeId=7362 minecraft:underwater_torch;torch_facing_direction=north blockId=239 -runtimeId=7213 +runtimeId=7363 minecraft:underwater_torch;torch_facing_direction=south blockId=239 -runtimeId=7214 +runtimeId=7364 minecraft:underwater_torch;torch_facing_direction=top blockId=239 -runtimeId=7215 +runtimeId=7365 minecraft:underwater_torch;torch_facing_direction=unknown blockId=239 -runtimeId=7210 +runtimeId=7360 minecraft:underwater_torch;torch_facing_direction=west blockId=239 -runtimeId=7211 +runtimeId=7361 minecraft:undyed_shulker_box blockId=205 -runtimeId=7216 +runtimeId=7366 minecraft:unknown blockId=560 -runtimeId=7217 +runtimeId=7367 minecraft:unlit_redstone_torch;torch_facing_direction=east blockId=75 -runtimeId=7220 +runtimeId=7370 minecraft:unlit_redstone_torch;torch_facing_direction=north blockId=75 -runtimeId=7221 +runtimeId=7371 minecraft:unlit_redstone_torch;torch_facing_direction=south blockId=75 -runtimeId=7222 +runtimeId=7372 minecraft:unlit_redstone_torch;torch_facing_direction=top blockId=75 -runtimeId=7223 +runtimeId=7373 minecraft:unlit_redstone_torch;torch_facing_direction=unknown blockId=75 -runtimeId=7218 +runtimeId=7368 minecraft:unlit_redstone_torch;torch_facing_direction=west blockId=75 -runtimeId=7219 +runtimeId=7369 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=0 blockId=149 -runtimeId=7224 +runtimeId=7374 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=1 blockId=149 -runtimeId=7225 +runtimeId=7375 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=2 blockId=149 -runtimeId=7226 +runtimeId=7376 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=3 blockId=149 -runtimeId=7227 +runtimeId=7377 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=0 blockId=149 -runtimeId=7232 +runtimeId=7382 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=1 blockId=149 -runtimeId=7233 +runtimeId=7383 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=2 blockId=149 -runtimeId=7234 +runtimeId=7384 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=3 blockId=149 -runtimeId=7235 +runtimeId=7385 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=0 blockId=149 -runtimeId=7228 +runtimeId=7378 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=1 blockId=149 -runtimeId=7229 +runtimeId=7379 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=2 blockId=149 -runtimeId=7230 +runtimeId=7380 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=3 blockId=149 -runtimeId=7231 +runtimeId=7381 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=0 blockId=149 -runtimeId=7236 +runtimeId=7386 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=1 blockId=149 -runtimeId=7237 +runtimeId=7387 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=2 blockId=149 -runtimeId=7238 +runtimeId=7388 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=3 blockId=149 -runtimeId=7239 +runtimeId=7389 minecraft:unpowered_repeater;repeater_delay=0;direction=0 blockId=93 -runtimeId=7240 +runtimeId=7390 minecraft:unpowered_repeater;repeater_delay=0;direction=1 blockId=93 -runtimeId=7241 +runtimeId=7391 minecraft:unpowered_repeater;repeater_delay=0;direction=2 blockId=93 -runtimeId=7242 +runtimeId=7392 minecraft:unpowered_repeater;repeater_delay=0;direction=3 blockId=93 -runtimeId=7243 +runtimeId=7393 minecraft:unpowered_repeater;repeater_delay=1;direction=0 blockId=93 -runtimeId=7244 +runtimeId=7394 minecraft:unpowered_repeater;repeater_delay=1;direction=1 blockId=93 -runtimeId=7245 +runtimeId=7395 minecraft:unpowered_repeater;repeater_delay=1;direction=2 blockId=93 -runtimeId=7246 +runtimeId=7396 minecraft:unpowered_repeater;repeater_delay=1;direction=3 blockId=93 -runtimeId=7247 +runtimeId=7397 minecraft:unpowered_repeater;repeater_delay=2;direction=0 blockId=93 -runtimeId=7248 +runtimeId=7398 minecraft:unpowered_repeater;repeater_delay=2;direction=1 blockId=93 -runtimeId=7249 +runtimeId=7399 minecraft:unpowered_repeater;repeater_delay=2;direction=2 blockId=93 -runtimeId=7250 +runtimeId=7400 minecraft:unpowered_repeater;repeater_delay=2;direction=3 blockId=93 -runtimeId=7251 +runtimeId=7401 minecraft:unpowered_repeater;repeater_delay=3;direction=0 blockId=93 -runtimeId=7252 +runtimeId=7402 minecraft:unpowered_repeater;repeater_delay=3;direction=1 blockId=93 -runtimeId=7253 +runtimeId=7403 minecraft:unpowered_repeater;repeater_delay=3;direction=2 blockId=93 -runtimeId=7254 +runtimeId=7404 minecraft:unpowered_repeater;repeater_delay=3;direction=3 blockId=93 -runtimeId=7255 +runtimeId=7405 minecraft:vine;vine_direction_bits=0 blockId=106 -runtimeId=7256 +runtimeId=7406 minecraft:vine;vine_direction_bits=1 blockId=106 -runtimeId=7257 +runtimeId=7407 minecraft:vine;vine_direction_bits=2 blockId=106 -runtimeId=7258 +runtimeId=7408 minecraft:vine;vine_direction_bits=3 blockId=106 -runtimeId=7259 +runtimeId=7409 minecraft:vine;vine_direction_bits=4 blockId=106 -runtimeId=7260 +runtimeId=7410 minecraft:vine;vine_direction_bits=5 blockId=106 -runtimeId=7261 +runtimeId=7411 minecraft:vine;vine_direction_bits=6 blockId=106 -runtimeId=7262 +runtimeId=7412 minecraft:vine;vine_direction_bits=7 blockId=106 -runtimeId=7263 +runtimeId=7413 minecraft:vine;vine_direction_bits=8 blockId=106 -runtimeId=7264 +runtimeId=7414 minecraft:vine;vine_direction_bits=9 blockId=106 -runtimeId=7265 +runtimeId=7415 minecraft:vine;vine_direction_bits=10 blockId=106 -runtimeId=7266 +runtimeId=7416 minecraft:vine;vine_direction_bits=11 blockId=106 -runtimeId=7267 +runtimeId=7417 minecraft:vine;vine_direction_bits=12 blockId=106 -runtimeId=7268 +runtimeId=7418 minecraft:vine;vine_direction_bits=13 blockId=106 -runtimeId=7269 +runtimeId=7419 minecraft:vine;vine_direction_bits=14 blockId=106 -runtimeId=7270 +runtimeId=7420 minecraft:vine;vine_direction_bits=15 blockId=106 -runtimeId=7271 +runtimeId=7421 minecraft:wall_banner;facing_direction=0 blockId=177 -runtimeId=7272 +runtimeId=7422 minecraft:wall_banner;facing_direction=1 blockId=177 -runtimeId=7273 +runtimeId=7423 minecraft:wall_banner;facing_direction=2 blockId=177 -runtimeId=7274 +runtimeId=7424 minecraft:wall_banner;facing_direction=3 blockId=177 -runtimeId=7275 +runtimeId=7425 minecraft:wall_banner;facing_direction=4 blockId=177 -runtimeId=7276 +runtimeId=7426 minecraft:wall_banner;facing_direction=5 blockId=177 -runtimeId=7277 +runtimeId=7427 minecraft:wall_sign;facing_direction=0 blockId=68 -runtimeId=7278 +runtimeId=7428 minecraft:wall_sign;facing_direction=1 blockId=68 -runtimeId=7279 +runtimeId=7429 minecraft:wall_sign;facing_direction=2 blockId=68 -runtimeId=7280 +runtimeId=7430 minecraft:wall_sign;facing_direction=3 blockId=68 -runtimeId=7281 +runtimeId=7431 minecraft:wall_sign;facing_direction=4 blockId=68 -runtimeId=7282 +runtimeId=7432 minecraft:wall_sign;facing_direction=5 blockId=68 -runtimeId=7283 +runtimeId=7433 minecraft:warped_button;button_pressed_bit=0;facing_direction=0 blockId=516 -runtimeId=7284 +runtimeId=7434 minecraft:warped_button;button_pressed_bit=0;facing_direction=1 blockId=516 -runtimeId=7285 +runtimeId=7435 minecraft:warped_button;button_pressed_bit=0;facing_direction=2 blockId=516 -runtimeId=7286 +runtimeId=7436 minecraft:warped_button;button_pressed_bit=0;facing_direction=3 blockId=516 -runtimeId=7287 +runtimeId=7437 minecraft:warped_button;button_pressed_bit=0;facing_direction=4 blockId=516 -runtimeId=7288 +runtimeId=7438 minecraft:warped_button;button_pressed_bit=0;facing_direction=5 blockId=516 -runtimeId=7289 +runtimeId=7439 minecraft:warped_button;button_pressed_bit=1;facing_direction=0 blockId=516 -runtimeId=7290 +runtimeId=7440 minecraft:warped_button;button_pressed_bit=1;facing_direction=1 blockId=516 -runtimeId=7291 +runtimeId=7441 minecraft:warped_button;button_pressed_bit=1;facing_direction=2 blockId=516 -runtimeId=7292 +runtimeId=7442 minecraft:warped_button;button_pressed_bit=1;facing_direction=3 blockId=516 -runtimeId=7293 +runtimeId=7443 minecraft:warped_button;button_pressed_bit=1;facing_direction=4 blockId=516 -runtimeId=7294 +runtimeId=7444 minecraft:warped_button;button_pressed_bit=1;facing_direction=5 blockId=516 -runtimeId=7295 +runtimeId=7445 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7296 +runtimeId=7446 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7297 +runtimeId=7447 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7298 +runtimeId=7448 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7299 +runtimeId=7449 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7312 +runtimeId=7462 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7313 +runtimeId=7463 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7314 +runtimeId=7464 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7315 +runtimeId=7465 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7304 +runtimeId=7454 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7305 +runtimeId=7455 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7306 +runtimeId=7456 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7307 +runtimeId=7457 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7320 +runtimeId=7470 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7321 +runtimeId=7471 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7322 +runtimeId=7472 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7323 +runtimeId=7473 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7300 +runtimeId=7450 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7301 +runtimeId=7451 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7302 +runtimeId=7452 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7303 +runtimeId=7453 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7316 +runtimeId=7466 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7317 +runtimeId=7467 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7318 +runtimeId=7468 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7319 +runtimeId=7469 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7308 +runtimeId=7458 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7309 +runtimeId=7459 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7310 +runtimeId=7460 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7311 +runtimeId=7461 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7324 +runtimeId=7474 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7325 +runtimeId=7475 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7326 +runtimeId=7476 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7327 +runtimeId=7477 minecraft:warped_double_slab;top_slot_bit=0 blockId=522 -runtimeId=7328 +runtimeId=7478 minecraft:warped_double_slab;top_slot_bit=1 blockId=522 -runtimeId=7329 +runtimeId=7479 minecraft:warped_fence blockId=512 -runtimeId=7330 +runtimeId=7480 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=514 -runtimeId=7331 +runtimeId=7481 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=514 -runtimeId=7332 +runtimeId=7482 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=514 -runtimeId=7333 +runtimeId=7483 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=514 -runtimeId=7334 +runtimeId=7484 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=514 -runtimeId=7335 +runtimeId=7485 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=514 -runtimeId=7336 +runtimeId=7486 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=514 -runtimeId=7337 +runtimeId=7487 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=514 -runtimeId=7338 +runtimeId=7488 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=514 -runtimeId=7339 +runtimeId=7489 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=514 -runtimeId=7340 +runtimeId=7490 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=514 -runtimeId=7341 +runtimeId=7491 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=514 -runtimeId=7342 +runtimeId=7492 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=514 -runtimeId=7343 +runtimeId=7493 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=514 -runtimeId=7344 +runtimeId=7494 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=514 -runtimeId=7345 +runtimeId=7495 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=514 -runtimeId=7346 +runtimeId=7496 minecraft:warped_fungus blockId=484 -runtimeId=7347 +runtimeId=7497 minecraft:warped_hyphae;pillar_axis=x blockId=553 -runtimeId=7349 +runtimeId=7499 minecraft:warped_hyphae;pillar_axis=y blockId=553 -runtimeId=7348 +runtimeId=7498 minecraft:warped_hyphae;pillar_axis=z blockId=553 -runtimeId=7350 +runtimeId=7500 minecraft:warped_nylium blockId=488 -runtimeId=7351 +runtimeId=7501 minecraft:warped_planks blockId=498 -runtimeId=7352 +runtimeId=7502 minecraft:warped_pressure_plate;redstone_signal=0 blockId=518 -runtimeId=7353 +runtimeId=7503 minecraft:warped_pressure_plate;redstone_signal=1 blockId=518 -runtimeId=7354 +runtimeId=7504 minecraft:warped_pressure_plate;redstone_signal=2 blockId=518 -runtimeId=7355 +runtimeId=7505 minecraft:warped_pressure_plate;redstone_signal=3 blockId=518 -runtimeId=7356 +runtimeId=7506 minecraft:warped_pressure_plate;redstone_signal=4 blockId=518 -runtimeId=7357 +runtimeId=7507 minecraft:warped_pressure_plate;redstone_signal=5 blockId=518 -runtimeId=7358 +runtimeId=7508 minecraft:warped_pressure_plate;redstone_signal=6 blockId=518 -runtimeId=7359 +runtimeId=7509 minecraft:warped_pressure_plate;redstone_signal=7 blockId=518 -runtimeId=7360 +runtimeId=7510 minecraft:warped_pressure_plate;redstone_signal=8 blockId=518 -runtimeId=7361 +runtimeId=7511 minecraft:warped_pressure_plate;redstone_signal=9 blockId=518 -runtimeId=7362 +runtimeId=7512 minecraft:warped_pressure_plate;redstone_signal=10 blockId=518 -runtimeId=7363 +runtimeId=7513 minecraft:warped_pressure_plate;redstone_signal=11 blockId=518 -runtimeId=7364 +runtimeId=7514 minecraft:warped_pressure_plate;redstone_signal=12 blockId=518 -runtimeId=7365 +runtimeId=7515 minecraft:warped_pressure_plate;redstone_signal=13 blockId=518 -runtimeId=7366 +runtimeId=7516 minecraft:warped_pressure_plate;redstone_signal=14 blockId=518 -runtimeId=7367 +runtimeId=7517 minecraft:warped_pressure_plate;redstone_signal=15 blockId=518 -runtimeId=7368 +runtimeId=7518 minecraft:warped_roots blockId=479 -runtimeId=7369 +runtimeId=7519 minecraft:warped_slab;top_slot_bit=0 blockId=520 -runtimeId=7370 +runtimeId=7520 minecraft:warped_slab;top_slot_bit=1 blockId=520 -runtimeId=7371 +runtimeId=7521 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=0 blockId=510 -runtimeId=7372 +runtimeId=7522 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=1 blockId=510 -runtimeId=7373 +runtimeId=7523 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=2 blockId=510 -runtimeId=7374 +runtimeId=7524 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=3 blockId=510 -runtimeId=7375 +runtimeId=7525 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=0 blockId=510 -runtimeId=7376 +runtimeId=7526 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=1 blockId=510 -runtimeId=7377 +runtimeId=7527 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=2 blockId=510 -runtimeId=7378 +runtimeId=7528 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=3 blockId=510 -runtimeId=7379 +runtimeId=7529 minecraft:warped_standing_sign;ground_sign_direction=0 blockId=506 -runtimeId=7380 +runtimeId=7530 minecraft:warped_standing_sign;ground_sign_direction=1 blockId=506 -runtimeId=7381 +runtimeId=7531 minecraft:warped_standing_sign;ground_sign_direction=2 blockId=506 -runtimeId=7382 +runtimeId=7532 minecraft:warped_standing_sign;ground_sign_direction=3 blockId=506 -runtimeId=7383 +runtimeId=7533 minecraft:warped_standing_sign;ground_sign_direction=4 blockId=506 -runtimeId=7384 +runtimeId=7534 minecraft:warped_standing_sign;ground_sign_direction=5 blockId=506 -runtimeId=7385 +runtimeId=7535 minecraft:warped_standing_sign;ground_sign_direction=6 blockId=506 -runtimeId=7386 +runtimeId=7536 minecraft:warped_standing_sign;ground_sign_direction=7 blockId=506 -runtimeId=7387 +runtimeId=7537 minecraft:warped_standing_sign;ground_sign_direction=8 blockId=506 -runtimeId=7388 +runtimeId=7538 minecraft:warped_standing_sign;ground_sign_direction=9 blockId=506 -runtimeId=7389 +runtimeId=7539 minecraft:warped_standing_sign;ground_sign_direction=10 blockId=506 -runtimeId=7390 +runtimeId=7540 minecraft:warped_standing_sign;ground_sign_direction=11 blockId=506 -runtimeId=7391 +runtimeId=7541 minecraft:warped_standing_sign;ground_sign_direction=12 blockId=506 -runtimeId=7392 +runtimeId=7542 minecraft:warped_standing_sign;ground_sign_direction=13 blockId=506 -runtimeId=7393 +runtimeId=7543 minecraft:warped_standing_sign;ground_sign_direction=14 blockId=506 -runtimeId=7394 +runtimeId=7544 minecraft:warped_standing_sign;ground_sign_direction=15 blockId=506 -runtimeId=7395 +runtimeId=7545 minecraft:warped_stem;pillar_axis=x blockId=481 -runtimeId=7397 +runtimeId=7547 minecraft:warped_stem;pillar_axis=y blockId=481 -runtimeId=7396 +runtimeId=7546 minecraft:warped_stem;pillar_axis=z blockId=481 -runtimeId=7398 +runtimeId=7548 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=502 -runtimeId=7399 +runtimeId=7549 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=502 -runtimeId=7400 +runtimeId=7550 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=502 -runtimeId=7401 +runtimeId=7551 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=502 -runtimeId=7402 +runtimeId=7552 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=502 -runtimeId=7403 +runtimeId=7553 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=502 -runtimeId=7404 +runtimeId=7554 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=502 -runtimeId=7405 +runtimeId=7555 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=502 -runtimeId=7406 +runtimeId=7556 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=502 -runtimeId=7407 +runtimeId=7557 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=502 -runtimeId=7408 +runtimeId=7558 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=502 -runtimeId=7409 +runtimeId=7559 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=502 -runtimeId=7410 +runtimeId=7560 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=502 -runtimeId=7411 +runtimeId=7561 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=502 -runtimeId=7412 +runtimeId=7562 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=502 -runtimeId=7413 +runtimeId=7563 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=502 -runtimeId=7414 +runtimeId=7564 minecraft:warped_wall_sign;facing_direction=0 blockId=508 -runtimeId=7415 +runtimeId=7565 minecraft:warped_wall_sign;facing_direction=1 blockId=508 -runtimeId=7416 +runtimeId=7566 minecraft:warped_wall_sign;facing_direction=2 blockId=508 -runtimeId=7417 +runtimeId=7567 minecraft:warped_wall_sign;facing_direction=3 blockId=508 -runtimeId=7418 +runtimeId=7568 minecraft:warped_wall_sign;facing_direction=4 blockId=508 -runtimeId=7419 +runtimeId=7569 minecraft:warped_wall_sign;facing_direction=5 blockId=508 -runtimeId=7420 +runtimeId=7570 minecraft:warped_wart_block blockId=482 -runtimeId=7421 +runtimeId=7571 minecraft:water;liquid_depth=0 blockId=9 -runtimeId=7422 +runtimeId=7572 minecraft:water;liquid_depth=1 blockId=9 -runtimeId=7423 +runtimeId=7573 minecraft:water;liquid_depth=2 blockId=9 -runtimeId=7424 +runtimeId=7574 minecraft:water;liquid_depth=3 blockId=9 -runtimeId=7425 +runtimeId=7575 minecraft:water;liquid_depth=4 blockId=9 -runtimeId=7426 +runtimeId=7576 minecraft:water;liquid_depth=5 blockId=9 -runtimeId=7427 +runtimeId=7577 minecraft:water;liquid_depth=6 blockId=9 -runtimeId=7428 +runtimeId=7578 minecraft:water;liquid_depth=7 blockId=9 -runtimeId=7429 +runtimeId=7579 minecraft:water;liquid_depth=8 blockId=9 -runtimeId=7430 +runtimeId=7580 minecraft:water;liquid_depth=9 blockId=9 -runtimeId=7431 +runtimeId=7581 minecraft:water;liquid_depth=10 blockId=9 -runtimeId=7432 +runtimeId=7582 minecraft:water;liquid_depth=11 blockId=9 -runtimeId=7433 +runtimeId=7583 minecraft:water;liquid_depth=12 blockId=9 -runtimeId=7434 +runtimeId=7584 minecraft:water;liquid_depth=13 blockId=9 -runtimeId=7435 +runtimeId=7585 minecraft:water;liquid_depth=14 blockId=9 -runtimeId=7436 +runtimeId=7586 minecraft:water;liquid_depth=15 blockId=9 -runtimeId=7437 +runtimeId=7587 minecraft:waterlily blockId=111 -runtimeId=7438 +runtimeId=7588 minecraft:waxed_copper blockId=599 -runtimeId=7439 +runtimeId=7589 minecraft:waxed_cut_copper blockId=606 -runtimeId=7440 +runtimeId=7590 minecraft:waxed_cut_copper_slab;top_slot_bit=0 blockId=620 -runtimeId=7441 +runtimeId=7591 minecraft:waxed_cut_copper_slab;top_slot_bit=1 blockId=620 -runtimeId=7442 +runtimeId=7592 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=613 -runtimeId=7443 +runtimeId=7593 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=613 -runtimeId=7444 +runtimeId=7594 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=613 -runtimeId=7445 +runtimeId=7595 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=613 -runtimeId=7446 +runtimeId=7596 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=613 -runtimeId=7447 +runtimeId=7597 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=613 -runtimeId=7448 +runtimeId=7598 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=613 -runtimeId=7449 +runtimeId=7599 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=613 -runtimeId=7450 +runtimeId=7600 minecraft:waxed_double_cut_copper_slab;top_slot_bit=0 blockId=627 -runtimeId=7451 +runtimeId=7601 minecraft:waxed_double_cut_copper_slab;top_slot_bit=1 blockId=627 -runtimeId=7452 +runtimeId=7602 minecraft:waxed_exposed_copper blockId=600 -runtimeId=7453 +runtimeId=7603 minecraft:waxed_exposed_cut_copper blockId=607 -runtimeId=7454 +runtimeId=7604 minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=0 blockId=621 -runtimeId=7455 +runtimeId=7605 minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=1 blockId=621 -runtimeId=7456 +runtimeId=7606 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=614 -runtimeId=7457 +runtimeId=7607 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=614 -runtimeId=7458 +runtimeId=7608 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=614 -runtimeId=7459 +runtimeId=7609 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=614 -runtimeId=7460 +runtimeId=7610 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=614 -runtimeId=7461 +runtimeId=7611 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=614 -runtimeId=7462 +runtimeId=7612 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=614 -runtimeId=7463 +runtimeId=7613 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=614 -runtimeId=7464 +runtimeId=7614 minecraft:waxed_exposed_double_cut_copper_slab;top_slot_bit=0 blockId=628 -runtimeId=7465 +runtimeId=7615 minecraft:waxed_exposed_double_cut_copper_slab;top_slot_bit=1 blockId=628 -runtimeId=7466 +runtimeId=7616 minecraft:waxed_oxidized_copper blockId=701 -runtimeId=7467 +runtimeId=7617 minecraft:waxed_oxidized_cut_copper blockId=702 -runtimeId=7468 +runtimeId=7618 minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=0 blockId=704 -runtimeId=7469 +runtimeId=7619 minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=1 blockId=704 -runtimeId=7470 +runtimeId=7620 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=703 -runtimeId=7471 +runtimeId=7621 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=703 -runtimeId=7472 +runtimeId=7622 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=703 -runtimeId=7473 +runtimeId=7623 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=703 -runtimeId=7474 +runtimeId=7624 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=703 -runtimeId=7475 +runtimeId=7625 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=703 -runtimeId=7476 +runtimeId=7626 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=703 -runtimeId=7477 +runtimeId=7627 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=703 -runtimeId=7478 +runtimeId=7628 minecraft:waxed_oxidized_double_cut_copper_slab;top_slot_bit=0 blockId=705 -runtimeId=7479 +runtimeId=7629 minecraft:waxed_oxidized_double_cut_copper_slab;top_slot_bit=1 blockId=705 -runtimeId=7480 +runtimeId=7630 minecraft:waxed_weathered_copper blockId=601 -runtimeId=7481 +runtimeId=7631 minecraft:waxed_weathered_cut_copper blockId=608 -runtimeId=7482 +runtimeId=7632 minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=0 blockId=622 -runtimeId=7483 +runtimeId=7633 minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=1 blockId=622 -runtimeId=7484 +runtimeId=7634 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=615 -runtimeId=7485 +runtimeId=7635 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=615 -runtimeId=7486 +runtimeId=7636 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=615 -runtimeId=7487 +runtimeId=7637 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=615 -runtimeId=7488 +runtimeId=7638 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=615 -runtimeId=7489 +runtimeId=7639 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=615 -runtimeId=7490 +runtimeId=7640 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=615 -runtimeId=7491 +runtimeId=7641 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=615 -runtimeId=7492 +runtimeId=7642 minecraft:waxed_weathered_double_cut_copper_slab;top_slot_bit=0 blockId=629 -runtimeId=7493 +runtimeId=7643 minecraft:waxed_weathered_double_cut_copper_slab;top_slot_bit=1 blockId=629 -runtimeId=7494 +runtimeId=7644 minecraft:weathered_copper blockId=597 -runtimeId=7495 +runtimeId=7645 minecraft:weathered_cut_copper blockId=604 -runtimeId=7496 +runtimeId=7646 minecraft:weathered_cut_copper_slab;top_slot_bit=0 blockId=618 -runtimeId=7497 +runtimeId=7647 minecraft:weathered_cut_copper_slab;top_slot_bit=1 blockId=618 -runtimeId=7498 +runtimeId=7648 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=611 -runtimeId=7499 +runtimeId=7649 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=611 -runtimeId=7500 +runtimeId=7650 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=611 -runtimeId=7501 +runtimeId=7651 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=611 -runtimeId=7502 +runtimeId=7652 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=611 -runtimeId=7503 +runtimeId=7653 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=611 -runtimeId=7504 +runtimeId=7654 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=611 -runtimeId=7505 +runtimeId=7655 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=611 -runtimeId=7506 +runtimeId=7656 minecraft:weathered_double_cut_copper_slab;top_slot_bit=0 blockId=625 -runtimeId=7507 +runtimeId=7657 minecraft:weathered_double_cut_copper_slab;top_slot_bit=1 blockId=625 -runtimeId=7508 +runtimeId=7658 minecraft:web blockId=30 -runtimeId=7509 +runtimeId=7659 minecraft:weeping_vines;weeping_vines_age=0 blockId=486 -runtimeId=7510 +runtimeId=7660 minecraft:weeping_vines;weeping_vines_age=1 blockId=486 -runtimeId=7511 +runtimeId=7661 minecraft:weeping_vines;weeping_vines_age=2 blockId=486 -runtimeId=7512 +runtimeId=7662 minecraft:weeping_vines;weeping_vines_age=3 blockId=486 -runtimeId=7513 +runtimeId=7663 minecraft:weeping_vines;weeping_vines_age=4 blockId=486 -runtimeId=7514 +runtimeId=7664 minecraft:weeping_vines;weeping_vines_age=5 blockId=486 -runtimeId=7515 +runtimeId=7665 minecraft:weeping_vines;weeping_vines_age=6 blockId=486 -runtimeId=7516 +runtimeId=7666 minecraft:weeping_vines;weeping_vines_age=7 blockId=486 -runtimeId=7517 +runtimeId=7667 minecraft:weeping_vines;weeping_vines_age=8 blockId=486 -runtimeId=7518 +runtimeId=7668 minecraft:weeping_vines;weeping_vines_age=9 blockId=486 -runtimeId=7519 +runtimeId=7669 minecraft:weeping_vines;weeping_vines_age=10 blockId=486 -runtimeId=7520 +runtimeId=7670 minecraft:weeping_vines;weeping_vines_age=11 blockId=486 -runtimeId=7521 +runtimeId=7671 minecraft:weeping_vines;weeping_vines_age=12 blockId=486 -runtimeId=7522 +runtimeId=7672 minecraft:weeping_vines;weeping_vines_age=13 blockId=486 -runtimeId=7523 +runtimeId=7673 minecraft:weeping_vines;weeping_vines_age=14 blockId=486 -runtimeId=7524 +runtimeId=7674 minecraft:weeping_vines;weeping_vines_age=15 blockId=486 -runtimeId=7525 +runtimeId=7675 minecraft:weeping_vines;weeping_vines_age=16 blockId=486 -runtimeId=7526 +runtimeId=7676 minecraft:weeping_vines;weeping_vines_age=17 blockId=486 -runtimeId=7527 +runtimeId=7677 minecraft:weeping_vines;weeping_vines_age=18 blockId=486 -runtimeId=7528 +runtimeId=7678 minecraft:weeping_vines;weeping_vines_age=19 blockId=486 -runtimeId=7529 +runtimeId=7679 minecraft:weeping_vines;weeping_vines_age=20 blockId=486 -runtimeId=7530 +runtimeId=7680 minecraft:weeping_vines;weeping_vines_age=21 blockId=486 -runtimeId=7531 +runtimeId=7681 minecraft:weeping_vines;weeping_vines_age=22 blockId=486 -runtimeId=7532 +runtimeId=7682 minecraft:weeping_vines;weeping_vines_age=23 blockId=486 -runtimeId=7533 +runtimeId=7683 minecraft:weeping_vines;weeping_vines_age=24 blockId=486 -runtimeId=7534 +runtimeId=7684 minecraft:weeping_vines;weeping_vines_age=25 blockId=486 -runtimeId=7535 +runtimeId=7685 minecraft:wheat;growth=0 blockId=59 -runtimeId=7536 +runtimeId=7686 minecraft:wheat;growth=1 blockId=59 -runtimeId=7537 +runtimeId=7687 minecraft:wheat;growth=2 blockId=59 -runtimeId=7538 +runtimeId=7688 minecraft:wheat;growth=3 blockId=59 -runtimeId=7539 +runtimeId=7689 minecraft:wheat;growth=4 blockId=59 -runtimeId=7540 +runtimeId=7690 minecraft:wheat;growth=5 blockId=59 -runtimeId=7541 +runtimeId=7691 minecraft:wheat;growth=6 blockId=59 -runtimeId=7542 +runtimeId=7692 minecraft:wheat;growth=7 blockId=59 -runtimeId=7543 +runtimeId=7693 + +minecraft:white_candle;lit=0;candles=0 +blockId=-1 +runtimeId=7694 + +minecraft:white_candle;lit=0;candles=1 +blockId=-1 +runtimeId=7695 + +minecraft:white_candle;lit=0;candles=2 +blockId=-1 +runtimeId=7696 + +minecraft:white_candle;lit=0;candles=3 +blockId=-1 +runtimeId=7697 + +minecraft:white_candle;lit=1;candles=0 +blockId=-1 +runtimeId=7698 + +minecraft:white_candle;lit=1;candles=1 +blockId=-1 +runtimeId=7699 + +minecraft:white_candle;lit=1;candles=2 +blockId=-1 +runtimeId=7700 + +minecraft:white_candle;lit=1;candles=3 +blockId=-1 +runtimeId=7701 + +minecraft:white_candle_cake;lit=0 +blockId=-1 +runtimeId=7702 + +minecraft:white_candle_cake;lit=1 +blockId=-1 +runtimeId=7703 minecraft:white_glazed_terracotta;facing_direction=0 blockId=220 -runtimeId=7544 +runtimeId=7704 minecraft:white_glazed_terracotta;facing_direction=1 blockId=220 -runtimeId=7545 +runtimeId=7705 minecraft:white_glazed_terracotta;facing_direction=2 blockId=220 -runtimeId=7546 +runtimeId=7706 minecraft:white_glazed_terracotta;facing_direction=3 blockId=220 -runtimeId=7547 +runtimeId=7707 minecraft:white_glazed_terracotta;facing_direction=4 blockId=220 -runtimeId=7548 +runtimeId=7708 minecraft:white_glazed_terracotta;facing_direction=5 blockId=220 -runtimeId=7549 +runtimeId=7709 minecraft:wither_rose blockId=471 -runtimeId=7550 +runtimeId=7710 minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7567 +runtimeId=7727 minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7555 +runtimeId=7715 minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7579 +runtimeId=7739 minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7573 +runtimeId=7733 minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7561 +runtimeId=7721 minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7585 +runtimeId=7745 minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7565 +runtimeId=7725 minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7553 +runtimeId=7713 minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7577 +runtimeId=7737 minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7571 +runtimeId=7731 minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7559 +runtimeId=7719 minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7583 +runtimeId=7743 minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7568 +runtimeId=7728 minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7556 +runtimeId=7716 minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7580 +runtimeId=7740 minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7574 +runtimeId=7734 minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7562 +runtimeId=7722 minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7586 +runtimeId=7746 minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7566 +runtimeId=7726 minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7554 +runtimeId=7714 minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7578 +runtimeId=7738 minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7572 +runtimeId=7732 minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7560 +runtimeId=7720 minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7584 +runtimeId=7744 minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7563 +runtimeId=7723 minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7551 +runtimeId=7711 minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7575 +runtimeId=7735 minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7569 +runtimeId=7729 minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7557 +runtimeId=7717 minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7581 +runtimeId=7741 minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7564 +runtimeId=7724 minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7552 +runtimeId=7712 minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7576 +runtimeId=7736 minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7570 +runtimeId=7730 minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7558 +runtimeId=7718 minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7582 +runtimeId=7742 minecraft:wooden_button;button_pressed_bit=0;facing_direction=0 blockId=143 -runtimeId=7587 +runtimeId=7747 minecraft:wooden_button;button_pressed_bit=0;facing_direction=1 blockId=143 -runtimeId=7588 +runtimeId=7748 minecraft:wooden_button;button_pressed_bit=0;facing_direction=2 blockId=143 -runtimeId=7589 +runtimeId=7749 minecraft:wooden_button;button_pressed_bit=0;facing_direction=3 blockId=143 -runtimeId=7590 +runtimeId=7750 minecraft:wooden_button;button_pressed_bit=0;facing_direction=4 blockId=143 -runtimeId=7591 +runtimeId=7751 minecraft:wooden_button;button_pressed_bit=0;facing_direction=5 blockId=143 -runtimeId=7592 +runtimeId=7752 minecraft:wooden_button;button_pressed_bit=1;facing_direction=0 blockId=143 -runtimeId=7593 +runtimeId=7753 minecraft:wooden_button;button_pressed_bit=1;facing_direction=1 blockId=143 -runtimeId=7594 +runtimeId=7754 minecraft:wooden_button;button_pressed_bit=1;facing_direction=2 blockId=143 -runtimeId=7595 +runtimeId=7755 minecraft:wooden_button;button_pressed_bit=1;facing_direction=3 blockId=143 -runtimeId=7596 +runtimeId=7756 minecraft:wooden_button;button_pressed_bit=1;facing_direction=4 blockId=143 -runtimeId=7597 +runtimeId=7757 minecraft:wooden_button;button_pressed_bit=1;facing_direction=5 blockId=143 -runtimeId=7598 +runtimeId=7758 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7599 +runtimeId=7759 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7600 +runtimeId=7760 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7601 +runtimeId=7761 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7602 +runtimeId=7762 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7615 +runtimeId=7775 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7616 +runtimeId=7776 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7617 +runtimeId=7777 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7618 +runtimeId=7778 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7607 +runtimeId=7767 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7608 +runtimeId=7768 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7609 +runtimeId=7769 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7610 +runtimeId=7770 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7623 +runtimeId=7783 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7624 +runtimeId=7784 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7625 +runtimeId=7785 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7626 +runtimeId=7786 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7603 +runtimeId=7763 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7604 +runtimeId=7764 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7605 +runtimeId=7765 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7606 +runtimeId=7766 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7619 +runtimeId=7779 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7620 +runtimeId=7780 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7621 +runtimeId=7781 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7622 +runtimeId=7782 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7611 +runtimeId=7771 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7612 +runtimeId=7772 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7613 +runtimeId=7773 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7614 +runtimeId=7774 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7627 +runtimeId=7787 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7628 +runtimeId=7788 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7629 +runtimeId=7789 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7630 +runtimeId=7790 minecraft:wooden_pressure_plate;redstone_signal=0 blockId=72 -runtimeId=7631 +runtimeId=7791 minecraft:wooden_pressure_plate;redstone_signal=1 blockId=72 -runtimeId=7632 +runtimeId=7792 minecraft:wooden_pressure_plate;redstone_signal=2 blockId=72 -runtimeId=7633 +runtimeId=7793 minecraft:wooden_pressure_plate;redstone_signal=3 blockId=72 -runtimeId=7634 +runtimeId=7794 minecraft:wooden_pressure_plate;redstone_signal=4 blockId=72 -runtimeId=7635 +runtimeId=7795 minecraft:wooden_pressure_plate;redstone_signal=5 blockId=72 -runtimeId=7636 +runtimeId=7796 minecraft:wooden_pressure_plate;redstone_signal=6 blockId=72 -runtimeId=7637 +runtimeId=7797 minecraft:wooden_pressure_plate;redstone_signal=7 blockId=72 -runtimeId=7638 +runtimeId=7798 minecraft:wooden_pressure_plate;redstone_signal=8 blockId=72 -runtimeId=7639 +runtimeId=7799 minecraft:wooden_pressure_plate;redstone_signal=9 blockId=72 -runtimeId=7640 +runtimeId=7800 minecraft:wooden_pressure_plate;redstone_signal=10 blockId=72 -runtimeId=7641 +runtimeId=7801 minecraft:wooden_pressure_plate;redstone_signal=11 blockId=72 -runtimeId=7642 +runtimeId=7802 minecraft:wooden_pressure_plate;redstone_signal=12 blockId=72 -runtimeId=7643 +runtimeId=7803 minecraft:wooden_pressure_plate;redstone_signal=13 blockId=72 -runtimeId=7644 +runtimeId=7804 minecraft:wooden_pressure_plate;redstone_signal=14 blockId=72 -runtimeId=7645 +runtimeId=7805 minecraft:wooden_pressure_plate;redstone_signal=15 blockId=72 -runtimeId=7646 +runtimeId=7806 minecraft:wooden_slab;top_slot_bit=0;wood_type=acacia blockId=158 -runtimeId=7651 +runtimeId=7811 minecraft:wooden_slab;top_slot_bit=0;wood_type=birch blockId=158 -runtimeId=7649 +runtimeId=7809 minecraft:wooden_slab;top_slot_bit=0;wood_type=dark_oak blockId=158 -runtimeId=7652 +runtimeId=7812 minecraft:wooden_slab;top_slot_bit=0;wood_type=jungle blockId=158 -runtimeId=7650 +runtimeId=7810 minecraft:wooden_slab;top_slot_bit=0;wood_type=oak blockId=158 -runtimeId=7647 +runtimeId=7807 minecraft:wooden_slab;top_slot_bit=0;wood_type=spruce blockId=158 -runtimeId=7648 +runtimeId=7808 minecraft:wooden_slab;top_slot_bit=1;wood_type=acacia blockId=158 -runtimeId=7657 +runtimeId=7817 minecraft:wooden_slab;top_slot_bit=1;wood_type=birch blockId=158 -runtimeId=7655 +runtimeId=7815 minecraft:wooden_slab;top_slot_bit=1;wood_type=dark_oak blockId=158 -runtimeId=7658 +runtimeId=7818 minecraft:wooden_slab;top_slot_bit=1;wood_type=jungle blockId=158 -runtimeId=7656 +runtimeId=7816 minecraft:wooden_slab;top_slot_bit=1;wood_type=oak blockId=158 -runtimeId=7653 +runtimeId=7813 minecraft:wooden_slab;top_slot_bit=1;wood_type=spruce blockId=158 -runtimeId=7654 +runtimeId=7814 minecraft:wool;color=black blockId=35 -runtimeId=7674 +runtimeId=7834 minecraft:wool;color=blue blockId=35 -runtimeId=7670 +runtimeId=7830 minecraft:wool;color=brown blockId=35 -runtimeId=7671 +runtimeId=7831 minecraft:wool;color=cyan blockId=35 -runtimeId=7668 +runtimeId=7828 minecraft:wool;color=gray blockId=35 -runtimeId=7666 +runtimeId=7826 minecraft:wool;color=green blockId=35 -runtimeId=7672 +runtimeId=7832 minecraft:wool;color=light_blue blockId=35 -runtimeId=7662 +runtimeId=7822 minecraft:wool;color=lime blockId=35 -runtimeId=7664 +runtimeId=7824 minecraft:wool;color=magenta blockId=35 -runtimeId=7661 +runtimeId=7821 minecraft:wool;color=orange blockId=35 -runtimeId=7660 +runtimeId=7820 minecraft:wool;color=pink blockId=35 -runtimeId=7665 +runtimeId=7825 minecraft:wool;color=purple blockId=35 -runtimeId=7669 +runtimeId=7829 minecraft:wool;color=red blockId=35 -runtimeId=7673 +runtimeId=7833 minecraft:wool;color=silver blockId=35 -runtimeId=7667 +runtimeId=7827 minecraft:wool;color=white blockId=35 -runtimeId=7659 +runtimeId=7819 minecraft:wool;color=yellow blockId=35 -runtimeId=7663 +runtimeId=7823 + +minecraft:yellow_candle;lit=0;candles=0 +blockId=-1 +runtimeId=7835 + +minecraft:yellow_candle;lit=0;candles=1 +blockId=-1 +runtimeId=7836 + +minecraft:yellow_candle;lit=0;candles=2 +blockId=-1 +runtimeId=7837 + +minecraft:yellow_candle;lit=0;candles=3 +blockId=-1 +runtimeId=7838 + +minecraft:yellow_candle;lit=1;candles=0 +blockId=-1 +runtimeId=7839 + +minecraft:yellow_candle;lit=1;candles=1 +blockId=-1 +runtimeId=7840 + +minecraft:yellow_candle;lit=1;candles=2 +blockId=-1 +runtimeId=7841 + +minecraft:yellow_candle;lit=1;candles=3 +blockId=-1 +runtimeId=7842 + +minecraft:yellow_candle_cake;lit=0 +blockId=-1 +runtimeId=7843 + +minecraft:yellow_candle_cake;lit=1 +blockId=-1 +runtimeId=7844 minecraft:yellow_flower blockId=37 -runtimeId=7675 +runtimeId=7845 minecraft:yellow_glazed_terracotta;facing_direction=0 blockId=224 -runtimeId=7676 +runtimeId=7846 minecraft:yellow_glazed_terracotta;facing_direction=1 blockId=224 -runtimeId=7677 +runtimeId=7847 minecraft:yellow_glazed_terracotta;facing_direction=2 blockId=224 -runtimeId=7678 +runtimeId=7848 minecraft:yellow_glazed_terracotta;facing_direction=3 blockId=224 -runtimeId=7679 +runtimeId=7849 minecraft:yellow_glazed_terracotta;facing_direction=4 blockId=224 -runtimeId=7680 +runtimeId=7850 minecraft:yellow_glazed_terracotta;facing_direction=5 blockId=224 -runtimeId=7681 +runtimeId=7851 diff --git a/dumps/simple-blocks-nukkit.txt b/dumps/simple-blocks-nukkit.txt index 87ba585ee79..bf5bcccc3be 100644 --- a/dumps/simple-blocks-nukkit.txt +++ b/dumps/simple-blocks-nukkit.txt @@ -40,6 +40,8 @@ minecraft:birch_stairs minecraft:birch_standing_sign minecraft:birch_trapdoor minecraft:birch_wall_sign +minecraft:black_candle +minecraft:black_candle_cake minecraft:black_glazed_terracotta minecraft:blackstone minecraft:blackstone_double_slab @@ -47,6 +49,8 @@ minecraft:blackstone_slab minecraft:blackstone_stairs minecraft:blackstone_wall minecraft:blast_furnace +minecraft:blue_candle +minecraft:blue_candle_cake minecraft:blue_glazed_terracotta minecraft:blue_ice minecraft:bone_block @@ -55,6 +59,8 @@ minecraft:border_block minecraft:brewing_stand minecraft:brick_block minecraft:brick_stairs +minecraft:brown_candle +minecraft:brown_candle_cake minecraft:brown_glazed_terracotta minecraft:brown_mushroom minecraft:brown_mushroom_block @@ -65,6 +71,8 @@ minecraft:cake minecraft:calcite minecraft:camera minecraft:campfire +minecraft:candle +minecraft:candle_cake minecraft:carpet minecraft:carrots minecraft:cartography_table @@ -136,6 +144,8 @@ minecraft:crying_obsidian minecraft:cut_copper minecraft:cut_copper_slab minecraft:cut_copper_stairs +minecraft:cyan_candle +minecraft:cyan_candle_cake minecraft:cyan_glazed_terracotta minecraft:dark_oak_button minecraft:dark_oak_door @@ -348,7 +358,11 @@ minecraft:granite_stairs minecraft:grass minecraft:grass_path minecraft:gravel +minecraft:gray_candle +minecraft:gray_candle_cake minecraft:gray_glazed_terracotta +minecraft:green_candle +minecraft:green_candle_cake minecraft:green_glazed_terracotta minecraft:grindstone minecraft:hanging_roots @@ -395,9 +409,15 @@ minecraft:leaves2 minecraft:lectern minecraft:lever minecraft:light_block +minecraft:light_blue_candle +minecraft:light_blue_candle_cake minecraft:light_blue_glazed_terracotta +minecraft:light_gray_candle +minecraft:light_gray_candle_cake minecraft:light_weighted_pressure_plate minecraft:lightning_rod +minecraft:lime_candle +minecraft:lime_candle_cake minecraft:lime_glazed_terracotta minecraft:lit_blast_furnace minecraft:lit_deepslate_redstone_ore @@ -410,6 +430,8 @@ minecraft:lodestone minecraft:log minecraft:log2 minecraft:loom +minecraft:magenta_candle +minecraft:magenta_candle_cake minecraft:magenta_glazed_terracotta minecraft:magma minecraft:medium_amethyst_bud @@ -439,6 +461,8 @@ minecraft:noteblock minecraft:oak_stairs minecraft:observer minecraft:obsidian +minecraft:orange_candle +minecraft:orange_candle_cake minecraft:orange_glazed_terracotta minecraft:oxidized_copper minecraft:oxidized_cut_copper @@ -446,6 +470,8 @@ minecraft:oxidized_cut_copper_slab minecraft:oxidized_cut_copper_stairs minecraft:oxidized_double_cut_copper_slab minecraft:packed_ice +minecraft:pink_candle +minecraft:pink_candle_cake minecraft:pink_glazed_terracotta minecraft:piston minecraft:pistonArmCollision @@ -483,6 +509,8 @@ minecraft:prismarine_bricks_stairs minecraft:prismarine_stairs minecraft:pumpkin minecraft:pumpkin_stem +minecraft:purple_candle +minecraft:purple_candle_cake minecraft:purple_glazed_terracotta minecraft:purpur_block minecraft:purpur_stairs @@ -494,6 +522,8 @@ minecraft:rail minecraft:raw_copper_block minecraft:raw_gold_block minecraft:raw_iron_block +minecraft:red_candle +minecraft:red_candle_cake minecraft:red_flower minecraft:red_glazed_terracotta minecraft:red_mushroom @@ -653,6 +683,8 @@ minecraft:weathered_double_cut_copper_slab minecraft:web minecraft:weeping_vines minecraft:wheat +minecraft:white_candle +minecraft:white_candle_cake minecraft:white_glazed_terracotta minecraft:wither_rose minecraft:wood @@ -661,5 +693,7 @@ minecraft:wooden_door minecraft:wooden_pressure_plate minecraft:wooden_slab minecraft:wool +minecraft:yellow_candle +minecraft:yellow_candle_cake minecraft:yellow_flower minecraft:yellow_glazed_terracotta diff --git a/src/main/java/cn/nukkit/plugin/PowerNukkitPlugin.java b/src/main/java/cn/nukkit/plugin/PowerNukkitPlugin.java index 32fa019de40..cf44a7b1b58 100644 --- a/src/main/java/cn/nukkit/plugin/PowerNukkitPlugin.java +++ b/src/main/java/cn/nukkit/plugin/PowerNukkitPlugin.java @@ -2,7 +2,6 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; -import cn.nukkit.event.Listener; @PowerNukkitOnly @Since("1.3.0.0-PN") @@ -14,31 +13,4 @@ public class PowerNukkitPlugin extends PluginBase { public static PowerNukkitPlugin getInstance() { return INSTANCE; } - - @Override - public void onEnable() { - getServer().getPluginManager().registerEvents(new HotFixes(), this); - } - - /** - * These are temporary workaround to issues with great impact that wasn't fixed the right way yet. - */ - private class HotFixes implements Listener { - /* - * Hotfix from MR.CLEAN: https://discordapp.com/channels/728280425255927879/728284727748067455/734488813774307329 - */ - /*@EventHandler - public void onOpenEC(InventoryOpenEvent e) { - if (!e.isCancelled() && e.getInventory() instanceof PlayerEnderChestInventory) { - final Player p = e.getPlayer(); - - Server.getInstance().getScheduler().scheduleDelayedTask(PowerNukkitPlugin.this, () -> { - if (p != null && p.isOnline() && p.getTopWindow().isPresent() && p.getTopWindow().get() instanceof PlayerEnderChestInventory) { - PlayerEnderChestInventory ec = (PlayerEnderChestInventory) p.getTopWindow().get(); - ec.sendContents(p); - } - }, 3); - } - }*/ - } } diff --git a/src/main/resources/canonical_block_states.nbt b/src/main/resources/canonical_block_states.nbt index 0702c05ae39f7d138885af61bf9454b72e5d7797..541dcb4fb03ab661183e2793ef198ff35749a8e0 100644 GIT binary patch delta 6925 zcma)=L1-LR7{{I6bYpgQI=hGxH*I!OGb>cvYV{xpS}%$qD0mWt?lxJrVW*qTW^2qX zw;(9Aj{3k;dx>d^vPE#fLySj3%=X$-4}u64D~)*dy>H%|nVn?5?;Qr-?EZN3z3>11 z-#2fr|M=#AU%oZ`aL0E(Dmh+rp>uJe*7W=%ff6JI6|%COb7vB{ zN{hhee!u~tWw7^>@$09|`N^fa*TEpE01inFa7gVubu4hGe!iuk5EMTJg<5Rq z>eV;}>8y)g2m2q2W>m?Q*tL1{9PIoozTG%)Ovkr=<5qaL$=TrAeCghw?7e?WrCPta z&Yz2!#C6&T6v>1^kxUpA$%H{lCOW9FL11$!q42qsQtnJ*uA`(v0nn;!Td#&P!AK|+ z@X$#t=3!SX**u12YxfIQzGGSJ%$7AZgL|Y(lhP;}q;!i0DJ`QxMoorX5yUAHOOg<$ z78!{(`cCFEqtUQRIp?zHwk$IP03SJ9)*GRZU<5wmqeTN^o^M|sTugZN$YTf;g;*g; zkLgCzW7?7Qn0_QZrXfj>=}6LJT9Wjbp0!lI)BXcZ=e#8X17(M|xw7xJtZ4?L8_}pS zWrn|fGupNatasD0X0Omk8*eEalES(U21z|}NXm#qap%IGCxQw)7eySEdv_Sx&OTc}*WBbE%<}+8C?N)ct6jTvOfjY3! zCFV+N6Mn-%0Ps!Yk$Odkk83svH z;E*&04n?WQ9v9^ugQBEk5X8hAx8JLq)qZP{XHm54bTa*w-(Bo)@p8`}b9%FLUv!U;ux zI4C>Lpt?j>ple7v1eXa4cALg9H+#;D6QU4qOtJtOo$7++(|4K>S;HizC+BSvgbgu< zup=A@C&GmoM@%qp)BTr%^t4TebWDoo@I%%$!WJ=godWCG3%*?o{v&+%gXthI>=c2rB+uC!nxSK(!x3<4BcZyQo?> nhEh@OpN=!(eN=(>)2#}zfT57*TS%^}GP}A|vk}&MRsFVq_9D~b diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index 31b47e9f9ee..20e5afe6faa 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -3691,7 +3691,7 @@ }, { "name": "minecraft:spawn_egg", - "id": 628, + "id": 629, "oldId": 383 }, { @@ -4521,180 +4521,180 @@ }, { "name": "minecraft:honeycomb", - "id": 590, + "id": 591, "oldId": 736 }, { "name": "minecraft:honey_bottle", - "id": 591, + "id": 592, "oldId": 737 }, { "name": "minecraft:camera", - "id": 592, + "id": 593, "oldId": 498 }, { "name": "minecraft:compound", - "id": 593, + "id": 594, "oldId": 499 }, { "name": "minecraft:ice_bomb", - "id": 594, + "id": 595, "oldId": 453 }, { "name": "minecraft:bleach", - "id": 595, + "id": 596, "oldId": 451 }, { "name": "minecraft:rapid_fertilizer", - "id": 596, + "id": 597, "oldId": 449 }, { "name": "minecraft:balloon", - "id": 597, + "id": 598, "oldId": 448 }, { "name": "minecraft:medicine", - "id": 598, + "id": 599, "oldId": 447 }, { "name": "minecraft:sparkler", - "id": 599, + "id": 600, "oldId": 442 }, { "name": "minecraft:lodestone_compass", - "id": 600, + "id": 601, "oldId": 741 }, { "name": "minecraft:netherite_ingot", - "id": 601, + "id": 602, "oldId": 742 }, { "name": "minecraft:netherite_sword", - "id": 602, + "id": 603, "oldId": 743 }, { "name": "minecraft:netherite_shovel", - "id": 603, + "id": 604, "oldId": 744 }, { "name": "minecraft:netherite_pickaxe", - "id": 604, + "id": 605, "oldId": 745 }, { "name": "minecraft:netherite_axe", - "id": 605, + "id": 606, "oldId": 746 }, { "name": "minecraft:netherite_hoe", - "id": 606, + "id": 607, "oldId": 747 }, { "name": "minecraft:netherite_helmet", - "id": 607, + "id": 608, "oldId": 748 }, { "name": "minecraft:netherite_chestplate", - "id": 608, + "id": 609, "oldId": 749 }, { "name": "minecraft:netherite_leggings", - "id": 609, + "id": 610, "oldId": 750 }, { "name": "minecraft:netherite_boots", - "id": 610, + "id": 611, "oldId": 751 }, { "name": "minecraft:netherite_scrap", - "id": 611, + "id": 612, "oldId": 752 }, { "name": "minecraft:crimson_sign", - "id": 612, + "id": 613, "oldId": 753 }, { "name": "minecraft:warped_sign", - "id": 613, + "id": 614, "oldId": 754 }, { "name": "minecraft:crimson_door", - "id": 614, + "id": 615, "oldId": 755 }, { "name": "minecraft:warped_door", - "id": 615, + "id": 616, "oldId": 756 }, { "name": "minecraft:warped_fungus_on_a_stick", - "id": 616, + "id": 617, "oldId": 757 }, { "name": "minecraft:chain", - "id": 617, + "id": 618, "oldId": 758 }, { "name": "minecraft:music_disc_pigstep", - "id": 618, + "id": 619, "oldId": 759 }, { "name": "minecraft:nether_sprouts", - "id": 619, + "id": 620, "oldId": 760 }, { "name": "minecraft:soul_campfire", - "id": 620, + "id": 621, "oldId": 801 }, { "name": "minecraft:boat", - "id": 625, + "id": 626, "oldId": 333, "deprecated": true }, { "name": "minecraft:dye", - "id": 626, + "id": 627, "oldId": 351, "deprecated": true }, { "name": "minecraft:banner_pattern", - "id": 627, + "id": 628, "oldId": 434, "deprecated": true }, { "name": "minecraft:end_crystal", - "id": 629, + "id": 630, "oldId": 426 } -] +] \ No newline at end of file diff --git a/src/test/java/org/powernukkit/HumanStringComparator.java b/src/test/java/org/powernukkit/HumanStringComparator.java deleted file mode 100644 index 2885a1094df..00000000000 --- a/src/test/java/org/powernukkit/HumanStringComparator.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * https://PowerNukkit.org - The Nukkit you know but Powerful! - * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package org.powernukkit; - -import java.util.Comparator; - -public class HumanStringComparator implements Comparator { - public int compare(String o1, String o2) { - - String o1StringPart = o1.replaceAll("\\d", ""); - String o2StringPart = o2.replaceAll("\\d", ""); - - - if (o1StringPart.equalsIgnoreCase(o2StringPart)) { - return extractInt(o1) - extractInt(o2); - } - return o1.compareTo(o2); - } - - int extractInt(String s) { - String num = s.replaceAll("\\D", ""); - // return 0 if no digits found - return num.isEmpty() ? 0 : Integer.parseInt(num); - } -} diff --git a/src/test/java/org/powernukkit/dumps/ItemIdDumper.java b/src/test/java/org/powernukkit/dumps/ItemIdDumper.java index 1176e85b8cf..8f526236e96 100644 --- a/src/test/java/org/powernukkit/dumps/ItemIdDumper.java +++ b/src/test/java/org/powernukkit/dumps/ItemIdDumper.java @@ -21,13 +21,13 @@ import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import cn.nukkit.utils.HumanStringComparator; import com.google.common.base.Charsets; import com.google.gson.Gson; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import lombok.extern.log4j.Log4j2; -import org.powernukkit.HumanStringComparator; import java.io.*; import java.util.Map; diff --git a/src/test/java/org/powernukkit/tools/RuntimeBlockStateDumper.java b/src/test/java/org/powernukkit/dumps/RuntimeBlockStateDumper.java similarity index 92% rename from src/test/java/org/powernukkit/tools/RuntimeBlockStateDumper.java rename to src/test/java/org/powernukkit/dumps/RuntimeBlockStateDumper.java index fca505e275b..91796036cc6 100644 --- a/src/test/java/org/powernukkit/tools/RuntimeBlockStateDumper.java +++ b/src/test/java/org/powernukkit/dumps/RuntimeBlockStateDumper.java @@ -1,6 +1,6 @@ /* * https://PowerNukkit.org - The Nukkit you know but Powerful! - * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package org.powernukkit.tools; +package org.powernukkit.dumps; import cn.nukkit.Server; import cn.nukkit.nbt.NBTIO; @@ -99,7 +99,7 @@ public static void main(String[] args) throws IOException { states.put(builder.toString(), block); } - try (FileWriter fos = new FileWriter("runtime_block_states.dat.dump.txt"); BufferedWriter bos = new BufferedWriter(fos)) { + try (FileWriter fos = new FileWriter("dumps/runtime_block_states.dat.dump.txt"); BufferedWriter bos = new BufferedWriter(fos)) { bos.write("# WARNING! Don't edit this file! It's automatically regenerated!"); bos.newLine(); bos.newLine(); for (Map.Entry entry : states.entrySet()) { @@ -142,8 +142,8 @@ public static void main(String[] args) throws IOException { SortedSet properties = new TreeSet<>(humanStringComparator); - try(FileWriter iniFW = new FileWriter("block-states.ini"); BufferedWriter iniBuff = new BufferedWriter(iniFW); - FileWriter txtFW = new FileWriter("simple-blocks-nukkit.txt"); BufferedWriter txtBuff = new BufferedWriter(txtFW)) { + try(FileWriter iniFW = new FileWriter("dumps/block-states.ini"); BufferedWriter iniBuff = new BufferedWriter(iniFW); + FileWriter txtFW = new FileWriter("dumps/simple-blocks-nukkit.txt"); BufferedWriter txtBuff = new BufferedWriter(txtFW)) { iniBuff.write("# WARNING! Don't edit this file! It's automatically regenerated!"); iniBuff.newLine(); iniBuff.newLine(); txtBuff.write("# WARNING! Don't edit this file! It's automatically regenerated!"); @@ -163,7 +163,7 @@ public static void main(String[] args) throws IOException { } } - try(FileWriter iniFW = new FileWriter("block-properties.ini"); BufferedWriter iniBuff = new BufferedWriter(iniFW)) { + try(FileWriter iniFW = new FileWriter("dumps/block-properties.ini"); BufferedWriter iniBuff = new BufferedWriter(iniFW)) { iniBuff.write("# WARNING! Don't edit this file! It's automatically regenerated!"); iniBuff.newLine(); iniBuff.newLine(); iniBuff.write("[properties]"); diff --git a/src/test/java/org/powernukkit/tools/BlockStateReader.java b/src/test/java/org/powernukkit/tools/BlockStateReader.java deleted file mode 100644 index 21182b5e474..00000000000 --- a/src/test/java/org/powernukkit/tools/BlockStateReader.java +++ /dev/null @@ -1,104 +0,0 @@ -/* - * https://PowerNukkit.org - The Nukkit you know but Powerful! - * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package org.powernukkit.tools; - -import cn.nukkit.Server; -import cn.nukkit.nbt.NBTIO; -import cn.nukkit.nbt.tag.CompoundTag; -import cn.nukkit.nbt.tag.ListTag; -import cn.nukkit.nbt.tag.Tag; - -import java.io.BufferedInputStream; -import java.io.IOException; -import java.io.InputStream; -import java.nio.ByteOrder; -import java.util.*; -import java.util.stream.Collectors; -import java.util.stream.Stream; - -public class BlockStateReader { - public static void main(String[] args) { - Map> metaOverrides = new LinkedHashMap<>(); - try (InputStream stream = Server.class.getClassLoader().getResourceAsStream("runtime_block_states_overrides.dat")) { - if (stream == null) { - throw new AssertionError("Unable to locate block state nbt"); - } - - ListTag states; - try (BufferedInputStream buffered = new BufferedInputStream(stream)) { - states = NBTIO.read(buffered).getList("Overrides", CompoundTag.class); - } - - for (CompoundTag override : states.getAll()) { - if (override.contains("block") && override.contains("LegacyStates")) { - metaOverrides.put(override.getCompound("block").remove("version"), override.getList("LegacyStates", CompoundTag.class).getAll()); - } - } - - } catch (IOException e) { - throw new AssertionError(e); - } - - ListTag tags; - try (InputStream stream = Server.class.getClassLoader().getResourceAsStream("runtime_block_states.dat")) { - if (stream == null) { - throw new AssertionError("Unable to locate block state nbt"); - } - - //noinspection unchecked - tags = (ListTag) NBTIO.readTag(stream, ByteOrder.BIG_ENDIAN, false); - } catch (IOException e) { - throw new AssertionError(e); - } - - Set inspect = Stream.of( - "minecraft:light_block", "minecraft:wood" - ).collect(Collectors.toSet()); - - TreeMap blockStates = new TreeMap<>(); - for (CompoundTag state : tags.getAll()) { - StringBuilder data = new StringBuilder(); - //data.append(state.copy().remove("LegacyStates").toString()).append('\n'); - CompoundTag block = state.getCompound("block"); - if (!inspect.contains(block.getString("name"))) { - continue; - } - StringBuilder stateName = new StringBuilder(block.getString("name")); - for (Tag tag : block.getCompound("states").getAllTags()) { - stateName.append(';').append(tag.getName()).append('=').append(tag.parseValue()); - } - data.append(stateName.toString()).append('\n'); - List metas = state.getList("LegacyStates", CompoundTag.class).getAll().stream() - .map(t -> t.getInt("id") + ":" + t.getShort("val")) - .collect(Collectors.toList()); - data.append(metas.toString()).append('\n'); - List overrides = metaOverrides.get(block.copy().remove("version")); - if (overrides != null) { - List overrideList = overrides.stream() - .map(t -> t.getInt("id") + ":" + t.getShort("val")) - .collect(Collectors.toList()); - data.append(overrideList.toString()).append('\n'); - } - data.append("\n"); - blockStates.put(stateName.toString(), data.toString()); - } - - blockStates.values().forEach(System.out::print); - } -} diff --git a/src/test/java/org/powernukkit/tools/BlockStates.java b/src/test/java/org/powernukkit/tools/BlockStates.java deleted file mode 100644 index 666d143a63d..00000000000 --- a/src/test/java/org/powernukkit/tools/BlockStates.java +++ /dev/null @@ -1,187 +0,0 @@ -/* - * https://PowerNukkit.org - The Nukkit you know but Powerful! - * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package org.powernukkit.tools; - -import cn.nukkit.Server; -import cn.nukkit.nbt.NBTIO; -import cn.nukkit.nbt.tag.CompoundTag; -import cn.nukkit.nbt.tag.ListTag; -import com.google.common.io.ByteStreams; - -import java.io.ByteArrayInputStream; -import java.io.FileOutputStream; -import java.io.IOException; -import java.io.InputStream; -import java.nio.ByteOrder; -import java.util.LinkedHashMap; -import java.util.Map; - -public class BlockStates { - public static void main(String[] args) { - InputStream stream = Server.class.getClassLoader().getResourceAsStream("runtime_block_states.dat"); - if (stream == null) { - throw new AssertionError("Unable to locate block state nbt"); - } - ListTag overrides = new ListTag<>("Overrides"); - ListTag tag; - try { - //noinspection UnstableApiUsage - byte[] bytes = ByteStreams.toByteArray(stream); - //noinspection unchecked - tag = (ListTag) NBTIO.readTag(new ByteArrayInputStream(bytes), ByteOrder.BIG_ENDIAN, false); - - Map fullMap = new LinkedHashMap<>(); - - for (int i = 0; i < tag.size(); i++) { - CompoundTag compoundTag = tag.get(i); - fullMap.put(compoundTag.getCompound("block"), compoundTag); - } - - for (int i = 0; i < tag.size(); i++) { - CompoundTag compoundTag = tag.get(i); - String name = compoundTag.getCompound("block").getString("name"); - if (name.equals("minecraft:light_block")) { - int lightLevel = compoundTag.getCompound("block").getCompound("states").getInt("block_light_level"); - CompoundTag override = new CompoundTag() - .putCompound("block", compoundTag.getCompound("block").remove("version")) - .putIntArray("meta", new int[]{lightLevel}); - overrides.add(override); - //overrides.add(compoundTag.getCompound("block")); - //compoundTag.putIntArray("meta", new int[]{lightLevel}); - } - /*if (name.equals("minecraft:lectern")) { - System.out.println(compoundTag); - }*/ - if (name.equals("minecraft:kelp")) { - int age = compoundTag.getCompound("block").getCompound("states").getInt("kelp_age"); - if (age > 15) { - CompoundTag override = new CompoundTag() - .putCompound("block", compoundTag.getCompound("block").remove("version")) - .putIntArray("meta", new int[]{age}); - overrides.add(override); - } - } - switch (name) { - case "minecraft:honeycomb_block": - case "minecraft:honey_block": - case "minecraft:wither_rose": - //compoundTag.putIntArray("meta", new int[]{0}); - CompoundTag override = new CompoundTag() - .putCompound("block", compoundTag.getCompound("block").remove("version")) - .putIntArray("meta", new int[]{0}); - overrides.add(override); - break; - } - if (name.equalsIgnoreCase("minecraft:pistonArmCollision")) { - CompoundTag override = new CompoundTag() - .putCompound("block", compoundTag.getCompound("block").remove("version").putString("name", "minecraft:stickyPistonArmCollision")) - .putIntArray("meta", compoundTag.getIntArray("meta")); - overrides.add(override); - } - if (name.equals("minecraft:coral")) { - int dead = compoundTag.getCompound("block").getCompound("states").getByte("dead_bit"); - if (dead == 0) { - continue; - } - CompoundTag scan = compoundTag.getCompound("block").copy(); - scan.getCompound("states").putByte("dead_bit", 0); - CompoundTag alive = fullMap.get(scan); - int meta = alive.getIntArray("meta")[0] | 0x8; - CompoundTag override = new CompoundTag() - .putCompound("block", compoundTag.getCompound("block").remove("version")) - .putIntArray("meta", new int[]{meta}); - overrides.add(override); - } - if (name.equals("minecraft:wood")) { - String axis = compoundTag.getCompound("block").getCompound("states").getString("pillar_axis"); - String typeString = compoundTag.getCompound("block").getCompound("states").getString("wood_type"); - //if (!axis.equals("y") || typeString.equals()) { - int type; - switch (typeString) { - case "oak": type = 0; break; - case "spruce": type = 1; break; - case "birch": type = 2; break; - case "jungle": type = 3; break; - case "acacia": type = 4; break; - case "dark_oak": type = 5; break; - default: continue; - } - int axisInt; - switch (axis) { - case "y": axisInt = 0; break; - case "x": axisInt = 1; break; - case "z": axisInt = 2; break; - default: continue; - } - int strippedBit = compoundTag.getCompound("block").getCompound("states").getInt("stripped_bit"); - int meta = axisInt << 4 | strippedBit << 3 | type; - CompoundTag override = new CompoundTag() - .putCompound("block", compoundTag.getCompound("block").remove("version")) - .putIntArray("meta", new int[]{meta}); - overrides.add(override); - //} - } - if (name.equals("minecraft:beehive") || name.equals("minecraft:bee_nest")) { - int facing = compoundTag.getCompound("block").getCompound("states").getInt("facing_direction"); - int honey = compoundTag.getCompound("block").getCompound("states").getInt("honey_level"); - //if (honey == 0 || honey % 2 == 1) { - /*BlockFace face = BlockFace.fromIndex(facing); - int faceBits = face.getHorizontalIndex(); - if (faceBits >= 0) {*/ - /*int honeyBits; - switch (honey) { - case 0: - honeyBits = 0; - break; - case 1: - case 2: - honeyBits = 1; - break; - case 3: - case 4: - honeyBits = 2; - break; - case 5: - honeyBits = 3; - break; - default: - continue; - } - int meta = honeyBits << 2 | faceBits;*/ - //int meta = honey << 2 | faceBits; - int meta = honey << 3 | facing; - //compoundTag.putIntArray("meta", new int[]{meta}); - CompoundTag override = new CompoundTag() - .putCompound("block", compoundTag.getCompound("block").remove("version")) - .putIntArray("meta", new int[]{meta}); - overrides.add(override); - //} - //} - } - } - //bytes = NBTIO.writeNetwork(tag); - bytes = NBTIO.write(new CompoundTag().putList(overrides)); - try(FileOutputStream fos = new FileOutputStream("runtime_block_states_overrides.dat")) { - fos.write(bytes); - } - } catch (IOException e) { - throw new AssertionError(e); - } - } -} diff --git a/src/test/java/org/powernukkit/tools/OverridesUpdater.java b/src/test/java/org/powernukkit/tools/OverridesUpdater.java deleted file mode 100644 index cb7975e73b9..00000000000 --- a/src/test/java/org/powernukkit/tools/OverridesUpdater.java +++ /dev/null @@ -1,188 +0,0 @@ -/* - * https://PowerNukkit.org - The Nukkit you know but Powerful! - * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package org.powernukkit.tools; - -import cn.nukkit.Server; -import cn.nukkit.nbt.NBTIO; -import cn.nukkit.nbt.tag.CompoundTag; -import cn.nukkit.nbt.tag.ListTag; -import cn.nukkit.nbt.tag.Tag; -import com.google.common.base.Preconditions; -import it.unimi.dsi.fastutil.ints.Int2ObjectMap; -import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; -import lombok.Data; -import lombok.NonNull; -import org.powernukkit.HumanStringComparator; - -import java.io.*; -import java.nio.ByteOrder; -import java.util.LinkedHashMap; -import java.util.Map; -import java.util.SortedMap; -import java.util.TreeMap; - -public class OverridesUpdater { - public static void main(String[] args) throws IOException { - Map originalTags = new LinkedHashMap<>(); - // - try (InputStream stream = Server.class.getClassLoader().getResourceAsStream("runtime_block_states.dat")) { - if (stream == null) { - throw new AssertionError("Unable to locate block state nbt"); - } - - //noinspection unchecked - ListTag tags = (ListTag) NBTIO.readTag(stream, ByteOrder.BIG_ENDIAN, false); - for (CompoundTag tag : tags.getAll()) { - originalTags.put(tag.getCompound("block").remove("version"), tag); - } - } catch (IOException e) { - throw new AssertionError(e); - } - // - - Int2ObjectMap blockIdToPersistenceName = new Int2ObjectOpenHashMap<>(); - Map persistenceNameToBlockId = new LinkedHashMap<>(); - // - try (InputStream stream = Server.class.getClassLoader().getResourceAsStream("block_ids.csv")) { - if (stream == null) { - throw new AssertionError("Unable to locate block_ids.csv"); - } - - int count = 0; - try(BufferedReader reader = new BufferedReader(new InputStreamReader(stream))) { - String line; - while ((line = reader.readLine()) != null) { - count++; - line = line.trim(); - if (line.isEmpty()) { - continue; - } - String[] parts = line.split(","); - Preconditions.checkArgument(parts.length == 2 || parts[0].matches("^[0-9]+$")); - if (parts.length > 1 && parts[1].startsWith("minecraft:")) { - blockIdToPersistenceName.put(Integer.parseInt(parts[0]), parts[1]); - persistenceNameToBlockId.put(parts[1], Integer.parseInt(parts[0])); - } - } - } catch (Exception e) { - throw new IOException("Error reading the line "+count+" of the block_ids.csv", e); - } - - } catch (IOException e) { - throw new AssertionError(e); - } - // - - Map infoList = new LinkedHashMap<>(); - // - try (InputStream stream = Server.class.getClassLoader().getResourceAsStream("runtime_block_states_overrides.dat")) { - if (stream == null) { - throw new AssertionError("Unable to locate block state nbt"); - } - - ListTag states; - try (BufferedInputStream buffered = new BufferedInputStream(stream)) { - states = NBTIO.read(buffered).getList("Overrides", CompoundTag.class); - } - - for (CompoundTag override : states.getAll()) { - if (override.contains("block") && override.contains("LegacyStates")) { - CompoundTag key = override.getCompound("block").remove("version"); - CompoundTag original = originalTags.get(key); - if (original == null) { - continue; - } - BlockInfo data = new BlockInfo(key, original, - original.getList("LegacyStates", CompoundTag.class), - override.getList("LegacyStates", CompoundTag.class)); - BlockInfo removed = infoList.put(key, data); - if (removed != null) { - throw new IllegalStateException(removed.toString()+"\n"+data.toString()); - } - } - } - } catch (IOException e) { - throw new AssertionError(e); - } - // - - ListTag newOverrides = new ListTag<>("Overrides"); - - for (BlockInfo info : infoList.values()) { - String stateName = info.getStateName(); - - if (stateName.contains("torch")) { - continue; - } - - CompoundTag override = new CompoundTag(); - override.putCompound("block", info.getKey().copy()); - override.putList((ListTag) info.getOverride().copy()); - - newOverrides.add(override); - } - - SortedMap sorted = new TreeMap<>(new HumanStringComparator()); - for (CompoundTag tag : originalTags.values()) { - sorted.put(new BlockInfo(tag.getCompound("block"), tag, new ListTag<>(), new ListTag<>()).getStateName(), tag); - } - - for (CompoundTag tag : sorted.values()) { - String name = tag.getCompound("block").getString("name"); - - if (!name.startsWith("minecraft:frame")) { - continue; - } - - CompoundTag override = new CompoundTag(); - override.putCompound("block", tag.getCompound("block").remove("version")); - override.putList(new ListTag<>("LegacyStates")/*.add(new CompoundTag().putInt("id", blockId).putInt("val", 0))*/); - newOverrides.add(override); - } - - byte[] bytes = NBTIO.write(new CompoundTag().putList(newOverrides)); - try(FileOutputStream fos = new FileOutputStream("runtime_block_states_overrides.dat")) { - fos.write(bytes); - } - } - - @Data - static class BlockInfo { - @NonNull - private CompoundTag key; - @NonNull - private CompoundTag fullData; - @NonNull - private ListTag original; - @NonNull - private ListTag override; - - public String getStateName() { - StringBuilder stateName = new StringBuilder(key.getString("name")); - for (Tag tag : key.getCompound("states").getAllTags()) { - stateName.append(';').append(tag.getName()).append('=').append(tag.parseValue()); - } - return stateName.toString(); - } - - public String getBlockName() { - return key.getString("name"); - } - } -} diff --git a/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java b/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java index f4832a62360..cda44a236cf 100644 --- a/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java +++ b/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java @@ -1,3 +1,21 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package org.powernukkit.tools; import cn.nukkit.Server; diff --git a/src/test/java/org/powernukkit/tools/SimpleBlocksReader.java b/src/test/java/org/powernukkit/tools/SimpleBlocksReader.java deleted file mode 100644 index edf612e29f1..00000000000 --- a/src/test/java/org/powernukkit/tools/SimpleBlocksReader.java +++ /dev/null @@ -1,104 +0,0 @@ -/* - * https://PowerNukkit.org - The Nukkit you know but Powerful! - * Copyright (C) 2020 Josรฉ Roberto de Araรบjo Jรบnior - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package org.powernukkit.tools; - -import cn.nukkit.Server; -import cn.nukkit.nbt.NBTIO; -import cn.nukkit.nbt.tag.CompoundTag; -import cn.nukkit.nbt.tag.ListTag; -import cn.nukkit.nbt.tag.Tag; -import cn.nukkit.utils.HumanStringComparator; - -import java.io.BufferedWriter; -import java.io.FileWriter; -import java.io.IOException; -import java.io.InputStream; -import java.nio.ByteOrder; -import java.util.*; - -public class SimpleBlocksReader { - public static void main(String[] args) throws IOException { - HumanStringComparator humanStringComparator = new HumanStringComparator(); - ListTag tags; - try (InputStream stream = Server.class.getClassLoader().getResourceAsStream("runtime_block_states.dat")) { - if (stream == null) { - throw new AssertionError("Unable to locate block state nbt"); - } - - //noinspection unchecked - tags = (ListTag) NBTIO.readTag(stream, ByteOrder.BIG_ENDIAN, false); - } catch (IOException e) { - throw new AssertionError(e); - } - - SortedMap>> states = new TreeMap<>(humanStringComparator); - - for (CompoundTag block : tags.getAll()) { - String name = block.getString("name"); - if (name.contains("warped_trapdoor")) { - System.out.println(); - } - CompoundTag statesCompound = block.getCompound("states"); - if (statesCompound.isEmpty()) { - states.computeIfAbsent(name, k-> new TreeMap<>(humanStringComparator)); - } else { - SortedMap> registeredProperties = states.computeIfAbsent(name, k-> new TreeMap<>(humanStringComparator)); - for (Tag tag : statesCompound.getAllTags()) { - SortedSet registeredValues = registeredProperties.computeIfAbsent(tag.getName(), k -> new TreeSet<>(humanStringComparator)); - registeredValues.add(tag.parseValue().toString()); - } - } - } - - SortedSet properties = new TreeSet<>(humanStringComparator); - - try(FileWriter iniFW = new FileWriter("block-states.ini"); BufferedWriter iniBuff = new BufferedWriter(iniFW); - FileWriter txtFW = new FileWriter("simple-blocks-nukkit.txt"); BufferedWriter txtBuff = new BufferedWriter(txtFW)) { - iniBuff.write("# WARNING! Don't edit this file! It's automatically regenerated!"); - iniBuff.newLine(); iniBuff.newLine(); - txtBuff.write("# WARNING! Don't edit this file! It's automatically regenerated!"); - txtBuff.newLine(); txtBuff.newLine(); - for (Map.Entry>> topLevelEntry : states.entrySet()) { - iniBuff.write("["+topLevelEntry.getKey()+"]"); - txtBuff.write(topLevelEntry.getKey()); - txtBuff.newLine(); - iniBuff.newLine(); - for (Map.Entry> propertyEntry : topLevelEntry.getValue().entrySet()) { - String propertyLine = propertyEntry.getKey() + "=" + String.join(",", propertyEntry.getValue()); - properties.add(propertyLine); - iniBuff.write(propertyLine); - iniBuff.newLine(); - } - iniBuff.newLine(); - } - } - - try(FileWriter iniFW = new FileWriter("block-properties.ini"); BufferedWriter iniBuff = new BufferedWriter(iniFW)) { - iniBuff.write("# WARNING! Don't edit this file! It's automatically regenerated!"); - iniBuff.newLine(); iniBuff.newLine(); - iniBuff.write("[properties]"); - iniBuff.newLine(); - for (String property : properties) { - iniBuff.write(property); - iniBuff.newLine(); - } - } - - } -} diff --git a/src/test/resources/required_item_list.json b/src/test/resources/required_item_list.json index a8c911d78ee..0e2c06b89cd 100644 --- a/src/test/resources/required_item_list.json +++ b/src/test/resources/required_item_list.json @@ -239,6 +239,14 @@ "runtime_id": -187, "component_based": false }, + "minecraft:black_candle": { + "runtime_id": -428, + "component_based": false + }, + "minecraft:black_candle_cake": { + "runtime_id": -445, + "component_based": false + }, "minecraft:black_dye": { "runtime_id": 395, "component_based": false @@ -287,6 +295,14 @@ "runtime_id": 596, "component_based": false }, + "minecraft:blue_candle": { + "runtime_id": -424, + "component_based": false + }, + "minecraft:blue_candle_cake": { + "runtime_id": -441, + "component_based": false + }, "minecraft:blue_dye": { "runtime_id": 399, "component_based": false @@ -363,6 +379,14 @@ "runtime_id": 108, "component_based": false }, + "minecraft:brown_candle": { + "runtime_id": -425, + "component_based": false + }, + "minecraft:brown_candle_cake": { + "runtime_id": -442, + "component_based": false + }, "minecraft:brown_dye": { "runtime_id": 398, "component_based": false @@ -411,6 +435,14 @@ "runtime_id": 588, "component_based": false }, + "minecraft:candle": { + "runtime_id": -412, + "component_based": false + }, + "minecraft:candle_cake": { + "runtime_id": -429, + "component_based": false + }, "minecraft:carpet": { "runtime_id": 171, "component_based": false @@ -847,6 +879,14 @@ "runtime_id": -354, "component_based": false }, + "minecraft:cyan_candle": { + "runtime_id": -422, + "component_based": false + }, + "minecraft:cyan_candle_cake": { + "runtime_id": -439, + "component_based": false + }, "minecraft:cyan_dye": { "runtime_id": 401, "component_based": false @@ -1979,6 +2019,14 @@ "runtime_id": 13, "component_based": false }, + "minecraft:gray_candle": { + "runtime_id": -420, + "component_based": false + }, + "minecraft:gray_candle_cake": { + "runtime_id": -437, + "component_based": false + }, "minecraft:gray_dye": { "runtime_id": 403, "component_based": false @@ -1987,6 +2035,14 @@ "runtime_id": 227, "component_based": false }, + "minecraft:green_candle": { + "runtime_id": -426, + "component_based": false + }, + "minecraft:green_candle_cake": { + "runtime_id": -443, + "component_based": false + }, "minecraft:green_dye": { "runtime_id": 397, "component_based": false @@ -2419,6 +2475,14 @@ "runtime_id": -215, "component_based": false }, + "minecraft:light_blue_candle": { + "runtime_id": -416, + "component_based": false + }, + "minecraft:light_blue_candle_cake": { + "runtime_id": -433, + "component_based": false + }, "minecraft:light_blue_dye": { "runtime_id": 407, "component_based": false @@ -2427,6 +2491,14 @@ "runtime_id": 223, "component_based": false }, + "minecraft:light_gray_candle": { + "runtime_id": -421, + "component_based": false + }, + "minecraft:light_gray_candle_cake": { + "runtime_id": -438, + "component_based": false + }, "minecraft:light_gray_dye": { "runtime_id": 402, "component_based": false @@ -2439,6 +2511,14 @@ "runtime_id": -312, "component_based": false }, + "minecraft:lime_candle": { + "runtime_id": -418, + "component_based": false + }, + "minecraft:lime_candle_cake": { + "runtime_id": -435, + "component_based": false + }, "minecraft:lime_dye": { "runtime_id": 405, "component_based": false @@ -2503,6 +2583,14 @@ "runtime_id": -204, "component_based": false }, + "minecraft:magenta_candle": { + "runtime_id": -415, + "component_based": false + }, + "minecraft:magenta_candle_cake": { + "runtime_id": -432, + "component_based": false + }, "minecraft:magenta_dye": { "runtime_id": 408, "component_based": false @@ -2799,6 +2887,14 @@ "runtime_id": 451, "component_based": false }, + "minecraft:orange_candle": { + "runtime_id": -414, + "component_based": false + }, + "minecraft:orange_candle_cake": { + "runtime_id": -431, + "component_based": false + }, "minecraft:orange_dye": { "runtime_id": 409, "component_based": false @@ -2875,6 +2971,14 @@ "runtime_id": 491, "component_based": false }, + "minecraft:pink_candle": { + "runtime_id": -419, + "component_based": false + }, + "minecraft:pink_candle_cake": { + "runtime_id": -436, + "component_based": false + }, "minecraft:pink_dye": { "runtime_id": 404, "component_based": false @@ -3083,6 +3187,14 @@ "runtime_id": 104, "component_based": false }, + "minecraft:purple_candle": { + "runtime_id": -423, + "component_based": false + }, + "minecraft:purple_candle_cake": { + "runtime_id": -440, + "component_based": false + }, "minecraft:purple_dye": { "runtime_id": 400, "component_based": false @@ -3191,6 +3303,14 @@ "runtime_id": -168, "component_based": false }, + "minecraft:red_candle": { + "runtime_id": -427, + "component_based": false + }, + "minecraft:red_candle_cake": { + "runtime_id": -444, + "component_based": false + }, "minecraft:red_dye": { "runtime_id": 396, "component_based": false @@ -4043,6 +4163,14 @@ "runtime_id": 291, "component_based": false }, + "minecraft:white_candle": { + "runtime_id": -413, + "component_based": false + }, + "minecraft:white_candle_cake": { + "runtime_id": -430, + "component_based": false + }, "minecraft:white_dye": { "runtime_id": 410, "component_based": false @@ -4119,6 +4247,14 @@ "runtime_id": 511, "component_based": false }, + "minecraft:yellow_candle": { + "runtime_id": -417, + "component_based": false + }, + "minecraft:yellow_candle_cake": { + "runtime_id": -434, + "component_based": false + }, "minecraft:yellow_dye": { "runtime_id": 406, "component_based": false From cb7c3d89419f4d50762985bc2c3e053d5161d97d Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 13 Jul 2021 18:19:58 -0300 Subject: [PATCH 162/394] Update the translations --- src/main/resources/lang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/lang b/src/main/resources/lang index 64678407b27..9d99a24afee 160000 --- a/src/main/resources/lang +++ b/src/main/resources/lang @@ -1 +1 @@ -Subproject commit 64678407b2746028d7b46591fe4d398f09a5ef09 +Subproject commit 9d99a24afeec22c000692704bec0d8c2f3ce62f2 From a381736c1a5c30f866b26e9f10c72f6e5b9ac4de Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 13 Jul 2021 19:21:46 -0300 Subject: [PATCH 163/394] Update more resources for MC-1.17.10 --- .../nukkit/blockstate/BlockStateRegistry.java | 8 +- src/main/resources/creativeitems.json | 1374 +- src/main/resources/recipes.json | 116308 +++++++-------- 3 files changed, 58426 insertions(+), 59264 deletions(-) diff --git a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java index 5d3809b669a..b34fcac6b04 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java +++ b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java @@ -115,6 +115,7 @@ public class BlockStateRegistry { // Integer infoUpdateRuntimeId = null; + Set warned = new HashSet<>(); for (CompoundTag state : tags) { int blockId = state.getInt("blockId"); int runtimeId = state.getInt("runtimeId"); @@ -128,6 +129,11 @@ public class BlockStateRegistry { if (isNameOwnerOfId(name, blockId)) { registerPersistenceName(blockId, name); registerStateId(state, runtimeId); + } else if (blockId == -1) { + if (warned.add(name)) { + log.warn("Unknown block id for the block named {}", name); + } + registerStateId(state, runtimeId); } } @@ -147,7 +153,7 @@ public class BlockStateRegistry { // private boolean isNameOwnerOfId(String name, int blockId) { - return !name.equals("minecraft:wood") || blockId == BlockID.WOOD_BARK; + return blockId != -1 && !name.equals("minecraft:wood") || blockId == BlockID.WOOD_BARK; } @Nonnull diff --git a/src/main/resources/creativeitems.json b/src/main/resources/creativeitems.json index 913823c14ec..6df6fa075da 100644 --- a/src/main/resources/creativeitems.json +++ b/src/main/resources/creativeitems.json @@ -2,163 +2,163 @@ "items" : [ { "id" : "minecraft:planks", - "blockRuntimeId" : 5640 + "blockRuntimeId" : 5770 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5641 + "blockRuntimeId" : 5771 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5642 + "blockRuntimeId" : 5772 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5643 + "blockRuntimeId" : 5773 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5644 + "blockRuntimeId" : 5774 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5645 + "blockRuntimeId" : 5775 }, { "id" : "minecraft:crimson_planks", - "blockRuntimeId" : 3799 + "blockRuntimeId" : 3839 }, { "id" : "minecraft:warped_planks", - "blockRuntimeId" : 7352 + "blockRuntimeId" : 7502 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1278 + "blockRuntimeId" : 1318 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1279 + "blockRuntimeId" : 1319 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1280 + "blockRuntimeId" : 1320 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1281 + "blockRuntimeId" : 1321 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1282 + "blockRuntimeId" : 1322 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1283 + "blockRuntimeId" : 1323 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1290 + "blockRuntimeId" : 1330 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1285 + "blockRuntimeId" : 1325 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1286 + "blockRuntimeId" : 1326 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1284 + "blockRuntimeId" : 1324 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1287 + "blockRuntimeId" : 1327 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1291 + "blockRuntimeId" : 1331 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1288 + "blockRuntimeId" : 1328 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1289 + "blockRuntimeId" : 1329 }, { "id" : "minecraft:blackstone_wall", - "blockRuntimeId" : 497 + "blockRuntimeId" : 507 }, { "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 5884 + "blockRuntimeId" : 6014 }, { "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5681 + "blockRuntimeId" : 5811 }, { "id" : "minecraft:cobbled_deepslate_wall", - "blockRuntimeId" : 1115 + "blockRuntimeId" : 1155 }, { "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4247 + "blockRuntimeId" : 4297 }, { "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6059 + "blockRuntimeId" : 6189 }, { "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4064 + "blockRuntimeId" : 4114 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4723 + "blockRuntimeId" : 4773 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4724 + "blockRuntimeId" : 4774 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4725 + "blockRuntimeId" : 4775 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4726 + "blockRuntimeId" : 4776 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4727 + "blockRuntimeId" : 4777 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4728 + "blockRuntimeId" : 4778 }, { "id" : "minecraft:nether_brick_fence", - "blockRuntimeId" : 5552 + "blockRuntimeId" : 5662 }, { "id" : "minecraft:crimson_fence", - "blockRuntimeId" : 3777 + "blockRuntimeId" : 3817 }, { "id" : "minecraft:warped_fence", - "blockRuntimeId" : 7330 + "blockRuntimeId" : 7480 }, { "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4729 + "blockRuntimeId" : 4779 }, { "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 6764 + "blockRuntimeId" : 6914 }, { "id" : "minecraft:birch_fence_gate", @@ -166,7 +166,7 @@ }, { "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5158 + "blockRuntimeId" : 5228 }, { "id" : "minecraft:acacia_fence_gate", @@ -174,35 +174,35 @@ }, { "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3930 + "blockRuntimeId" : 3980 }, { "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3778 + "blockRuntimeId" : 3818 }, { "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7331 + "blockRuntimeId" : 7481 }, { "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5571 + "blockRuntimeId" : 5681 }, { "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7035 + "blockRuntimeId" : 7185 }, { "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5533 + "blockRuntimeId" : 5643 }, { "id" : "minecraft:oak_stairs", - "blockRuntimeId" : 5580 + "blockRuntimeId" : 5690 }, { "id" : "minecraft:spruce_stairs", - "blockRuntimeId" : 6796 + "blockRuntimeId" : 6946 }, { "id" : "minecraft:birch_stairs", @@ -210,7 +210,7 @@ }, { "id" : "minecraft:jungle_stairs", - "blockRuntimeId" : 5190 + "blockRuntimeId" : 5260 }, { "id" : "minecraft:acacia_stairs", @@ -218,47 +218,47 @@ }, { "id" : "minecraft:dark_oak_stairs", - "blockRuntimeId" : 3962 + "blockRuntimeId" : 4012 }, { "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 6941 + "blockRuntimeId" : 7091 }, { "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5541 + "blockRuntimeId" : 5651 }, { "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6533 + "blockRuntimeId" : 6683 }, { "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6657 + "blockRuntimeId" : 6807 }, { "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6460 + "blockRuntimeId" : 6610 }, { "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6649 + "blockRuntimeId" : 6799 }, { "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4914 + "blockRuntimeId" : 4964 }, { "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6229 + "blockRuntimeId" : 6359 }, { "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 4425 + "blockRuntimeId" : 4475 }, { "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6221 + "blockRuntimeId" : 6351 }, { "id" : "minecraft:andesite_stairs", @@ -266,115 +266,115 @@ }, { "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5657 + "blockRuntimeId" : 5787 }, { "id" : "minecraft:brick_stairs", - "blockRuntimeId" : 856 + "blockRuntimeId" : 876 }, { "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5553 + "blockRuntimeId" : 5663 }, { "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6448 + "blockRuntimeId" : 6598 }, { "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4669 + "blockRuntimeId" : 4719 }, { "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6392 + "blockRuntimeId" : 6532 }, { "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6641 + "blockRuntimeId" : 6791 }, { "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6370 + "blockRuntimeId" : 6510 }, { "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6292 + "blockRuntimeId" : 6422 }, { "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 3986 + "blockRuntimeId" : 4036 }, { "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6284 + "blockRuntimeId" : 6414 }, { "id" : "minecraft:crimson_stairs", - "blockRuntimeId" : 3819 + "blockRuntimeId" : 3859 }, { "id" : "minecraft:warped_stairs", - "blockRuntimeId" : 7372 + "blockRuntimeId" : 7522 }, { "id" : "minecraft:blackstone_stairs", - "blockRuntimeId" : 489 + "blockRuntimeId" : 499 }, { "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 5876 + "blockRuntimeId" : 6006 }, { "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5673 + "blockRuntimeId" : 5803 }, { "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3872 + "blockRuntimeId" : 3912 }, { "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4705 + "blockRuntimeId" : 4755 }, { "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7499 + "blockRuntimeId" : 7649 }, { "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5611 + "blockRuntimeId" : 5731 }, { "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7443 + "blockRuntimeId" : 7593 }, { "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7457 + "blockRuntimeId" : 7607 }, { "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7485 + "blockRuntimeId" : 7635 }, { "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7471 + "blockRuntimeId" : 7621 }, { "id" : "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId" : 1107 + "blockRuntimeId" : 1147 }, { "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4239 + "blockRuntimeId" : 4289 }, { "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6051 + "blockRuntimeId" : 6181 }, { "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4056 + "blockRuntimeId" : 4106 }, { "id" : "minecraft:wooden_door" @@ -405,11 +405,11 @@ }, { "id" : "minecraft:trapdoor", - "blockRuntimeId" : 7117 + "blockRuntimeId" : 7267 }, { "id" : "minecraft:spruce_trapdoor", - "blockRuntimeId" : 6820 + "blockRuntimeId" : 6970 }, { "id" : "minecraft:birch_trapdoor", @@ -417,7 +417,7 @@ }, { "id" : "minecraft:jungle_trapdoor", - "blockRuntimeId" : 5214 + "blockRuntimeId" : 5284 }, { "id" : "minecraft:acacia_trapdoor", @@ -425,1083 +425,1083 @@ }, { "id" : "minecraft:dark_oak_trapdoor", - "blockRuntimeId" : 3970 + "blockRuntimeId" : 4020 }, { "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5073 + "blockRuntimeId" : 5143 }, { "id" : "minecraft:crimson_trapdoor", - "blockRuntimeId" : 3846 + "blockRuntimeId" : 3886 }, { "id" : "minecraft:warped_trapdoor", - "blockRuntimeId" : 7399 + "blockRuntimeId" : 7549 }, { "id" : "minecraft:iron_bars", - "blockRuntimeId" : 5038 + "blockRuntimeId" : 5108 }, { "id" : "minecraft:glass", - "blockRuntimeId" : 4820 + "blockRuntimeId" : 4870 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6992 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6850 + "blockRuntimeId" : 7000 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6849 + "blockRuntimeId" : 6999 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6857 + "blockRuntimeId" : 7007 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6854 + "blockRuntimeId" : 7004 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6856 + "blockRuntimeId" : 7006 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6993 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 6996 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 6997 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6855 + "blockRuntimeId" : 7005 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6851 + "blockRuntimeId" : 7001 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6995 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6853 + "blockRuntimeId" : 7003 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6852 + "blockRuntimeId" : 7002 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6994 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 6998 }, { "id" : "minecraft:tinted_glass", - "blockRuntimeId" : 7106 + "blockRuntimeId" : 7256 }, { "id" : "minecraft:glass_pane", - "blockRuntimeId" : 4821 + "blockRuntimeId" : 4871 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6858 + "blockRuntimeId" : 7008 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6866 + "blockRuntimeId" : 7016 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6865 + "blockRuntimeId" : 7015 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6873 + "blockRuntimeId" : 7023 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6870 + "blockRuntimeId" : 7020 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6872 + "blockRuntimeId" : 7022 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6859 + "blockRuntimeId" : 7009 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6862 + "blockRuntimeId" : 7012 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6863 + "blockRuntimeId" : 7013 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6871 + "blockRuntimeId" : 7021 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6867 + "blockRuntimeId" : 7017 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6861 + "blockRuntimeId" : 7011 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6869 + "blockRuntimeId" : 7019 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6868 + "blockRuntimeId" : 7018 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6860 + "blockRuntimeId" : 7010 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6864 + "blockRuntimeId" : 7014 }, { "id" : "minecraft:ladder", - "blockRuntimeId" : 5262 + "blockRuntimeId" : 5332 }, { "id" : "minecraft:scaffolding", - "blockRuntimeId" : 6553 + "blockRuntimeId" : 6703 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6977 + "blockRuntimeId" : 7127 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7027 + "blockRuntimeId" : 7177 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6980 + "blockRuntimeId" : 7130 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6998 + "blockRuntimeId" : 7148 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7647 + "blockRuntimeId" : 7807 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7648 + "blockRuntimeId" : 7808 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7649 + "blockRuntimeId" : 7809 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7650 + "blockRuntimeId" : 7810 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7651 + "blockRuntimeId" : 7811 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7652 + "blockRuntimeId" : 7812 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6982 + "blockRuntimeId" : 7132 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7025 + "blockRuntimeId" : 7175 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6978 + "blockRuntimeId" : 7128 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7028 + "blockRuntimeId" : 7178 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6999 + "blockRuntimeId" : 7149 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6993 + "blockRuntimeId" : 7143 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7029 + "blockRuntimeId" : 7179 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7010 + "blockRuntimeId" : 7160 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7015 + "blockRuntimeId" : 7165 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7016 + "blockRuntimeId" : 7166 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7013 + "blockRuntimeId" : 7163 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7014 + "blockRuntimeId" : 7164 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7012 + "blockRuntimeId" : 7162 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7011 + "blockRuntimeId" : 7161 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6981 + "blockRuntimeId" : 7131 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6984 + "blockRuntimeId" : 7134 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7000 + "blockRuntimeId" : 7150 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7009 + "blockRuntimeId" : 7159 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6983 + "blockRuntimeId" : 7133 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7026 + "blockRuntimeId" : 7176 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6994 + "blockRuntimeId" : 7144 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6995 + "blockRuntimeId" : 7145 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6996 + "blockRuntimeId" : 7146 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6997 + "blockRuntimeId" : 7147 }, { "id" : "minecraft:crimson_slab", - "blockRuntimeId" : 3817 + "blockRuntimeId" : 3857 }, { "id" : "minecraft:warped_slab", - "blockRuntimeId" : 7370 + "blockRuntimeId" : 7520 }, { "id" : "minecraft:blackstone_slab", - "blockRuntimeId" : 487 + "blockRuntimeId" : 497 }, { "id" : "minecraft:polished_blackstone_slab", - "blockRuntimeId" : 5874 + "blockRuntimeId" : 6004 }, { "id" : "minecraft:polished_blackstone_brick_slab", - "blockRuntimeId" : 5671 + "blockRuntimeId" : 5801 }, { "id" : "minecraft:cut_copper_slab", - "blockRuntimeId" : 3870 + "blockRuntimeId" : 3910 }, { "id" : "minecraft:exposed_cut_copper_slab", - "blockRuntimeId" : 4703 + "blockRuntimeId" : 4753 }, { "id" : "minecraft:weathered_cut_copper_slab", - "blockRuntimeId" : 7497 + "blockRuntimeId" : 7647 }, { "id" : "minecraft:oxidized_cut_copper_slab", - "blockRuntimeId" : 5609 + "blockRuntimeId" : 5729 }, { "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7441 + "blockRuntimeId" : 7591 }, { "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7455 + "blockRuntimeId" : 7605 }, { "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7483 + "blockRuntimeId" : 7633 }, { "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7469 + "blockRuntimeId" : 7619 }, { "id" : "minecraft:cobbled_deepslate_slab", - "blockRuntimeId" : 1105 + "blockRuntimeId" : 1145 }, { "id" : "minecraft:polished_deepslate_slab", - "blockRuntimeId" : 6049 + "blockRuntimeId" : 6179 }, { "id" : "minecraft:deepslate_tile_slab", - "blockRuntimeId" : 4237 + "blockRuntimeId" : 4287 }, { "id" : "minecraft:deepslate_brick_slab", - "blockRuntimeId" : 4054 + "blockRuntimeId" : 4104 }, { "id" : "minecraft:brick_block", - "blockRuntimeId" : 855 + "blockRuntimeId" : 875 }, { "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1090 + "blockRuntimeId" : 1130 }, { "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3728 + "blockRuntimeId" : 3768 }, { "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6390 + "blockRuntimeId" : 6530 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7043 + "blockRuntimeId" : 7193 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7044 + "blockRuntimeId" : 7194 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7045 + "blockRuntimeId" : 7195 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7046 + "blockRuntimeId" : 7196 }, { "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4677 + "blockRuntimeId" : 4727 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6283 + "blockRuntimeId" : 6413 }, { "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5843 + "blockRuntimeId" : 5973 }, { "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3729 + "blockRuntimeId" : 3769 }, { "id" : "minecraft:gilded_blackstone", - "blockRuntimeId" : 4819 + "blockRuntimeId" : 4869 }, { "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1091 + "blockRuntimeId" : 1131 }, { "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4409 + "blockRuntimeId" : 4459 }, { "id" : "minecraft:cracked_deepslate_tiles", - "blockRuntimeId" : 3727 + "blockRuntimeId" : 3767 }, { "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4226 + "blockRuntimeId" : 4276 }, { "id" : "minecraft:cracked_deepslate_bricks", - "blockRuntimeId" : 3726 + "blockRuntimeId" : 3766 }, { "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1089 + "blockRuntimeId" : 1129 }, { "id" : "minecraft:cobblestone", - "blockRuntimeId" : 1277 + "blockRuntimeId" : 1317 }, { "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5532 + "blockRuntimeId" : 5642 }, { "id" : "minecraft:cobbled_deepslate", - "blockRuntimeId" : 1102 + "blockRuntimeId" : 1142 }, { "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6665 + "blockRuntimeId" : 6815 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6529 + "blockRuntimeId" : 6679 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6530 + "blockRuntimeId" : 6680 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6531 + "blockRuntimeId" : 6681 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6532 + "blockRuntimeId" : 6682 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6456 + "blockRuntimeId" : 6606 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6457 + "blockRuntimeId" : 6607 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6458 + "blockRuntimeId" : 6608 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6459 + "blockRuntimeId" : 6609 }, { "id" : "minecraft:coal_block", - "blockRuntimeId" : 1100 + "blockRuntimeId" : 1140 }, { "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 4533 + "blockRuntimeId" : 4583 }, { "id" : "minecraft:gold_block", - "blockRuntimeId" : 4900 + "blockRuntimeId" : 4950 }, { "id" : "minecraft:iron_block", - "blockRuntimeId" : 5039 + "blockRuntimeId" : 5109 }, { "id" : "minecraft:copper_block", - "blockRuntimeId" : 3636 + "blockRuntimeId" : 3676 }, { "id" : "minecraft:exposed_copper", - "blockRuntimeId" : 4701 + "blockRuntimeId" : 4751 }, { "id" : "minecraft:weathered_copper", - "blockRuntimeId" : 7495 + "blockRuntimeId" : 7645 }, { "id" : "minecraft:oxidized_copper", - "blockRuntimeId" : 5607 + "blockRuntimeId" : 5727 }, { "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7439 + "blockRuntimeId" : 7589 }, { "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7453 + "blockRuntimeId" : 7603 }, { "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7481 + "blockRuntimeId" : 7631 }, { "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7467 + "blockRuntimeId" : 7617 }, { "id" : "minecraft:cut_copper", - "blockRuntimeId" : 3869 + "blockRuntimeId" : 3909 }, { "id" : "minecraft:exposed_cut_copper", - "blockRuntimeId" : 4702 + "blockRuntimeId" : 4752 }, { "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7496 + "blockRuntimeId" : 7646 }, { "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5608 + "blockRuntimeId" : 5728 }, { "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7440 + "blockRuntimeId" : 7590 }, { "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7454 + "blockRuntimeId" : 7604 }, { "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7482 + "blockRuntimeId" : 7632 }, { "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7468 + "blockRuntimeId" : 7618 }, { "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4666 + "blockRuntimeId" : 4716 }, { "id" : "minecraft:diamond_block", - "blockRuntimeId" : 4423 + "blockRuntimeId" : 4473 }, { "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5270 + "blockRuntimeId" : 5340 }, { "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6412 + "blockRuntimeId" : 6552 }, { "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6410 + "blockRuntimeId" : 6550 }, { "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6411 + "blockRuntimeId" : 6551 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6378 + "blockRuntimeId" : 6518 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6380 + "blockRuntimeId" : 6520 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6379 + "blockRuntimeId" : 6519 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6381 + "blockRuntimeId" : 6521 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6281 + "blockRuntimeId" : 6411 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6282 + "blockRuntimeId" : 6412 }, { "id" : "minecraft:slime", - "blockRuntimeId" : 6618 + "blockRuntimeId" : 6768 }, { "id" : "minecraft:honey_block", - "blockRuntimeId" : 5017 + "blockRuntimeId" : 5087 }, { "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5018 + "blockRuntimeId" : 5088 }, { "id" : "minecraft:hay_block", - "blockRuntimeId" : 4989 + "blockRuntimeId" : 5059 }, { "id" : "minecraft:bone_block", - "blockRuntimeId" : 672 + "blockRuntimeId" : 692 }, { "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5551 + "blockRuntimeId" : 5661 }, { "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6447 + "blockRuntimeId" : 6597 }, { "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5568 + "blockRuntimeId" : 5678 }, { "id" : "minecraft:lodestone", - "blockRuntimeId" : 5438 + "blockRuntimeId" : 5538 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7659 + "blockRuntimeId" : 7819 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7667 + "blockRuntimeId" : 7827 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7666 + "blockRuntimeId" : 7826 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7674 + "blockRuntimeId" : 7834 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7671 + "blockRuntimeId" : 7831 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7673 + "blockRuntimeId" : 7833 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7660 + "blockRuntimeId" : 7820 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7663 + "blockRuntimeId" : 7823 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7664 + "blockRuntimeId" : 7824 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7672 + "blockRuntimeId" : 7832 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7668 + "blockRuntimeId" : 7828 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7662 + "blockRuntimeId" : 7822 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7670 + "blockRuntimeId" : 7830 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7669 + "blockRuntimeId" : 7829 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7661 + "blockRuntimeId" : 7821 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7665 + "blockRuntimeId" : 7825 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 923 + "blockRuntimeId" : 963 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 931 + "blockRuntimeId" : 971 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 930 + "blockRuntimeId" : 970 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 938 + "blockRuntimeId" : 978 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 935 + "blockRuntimeId" : 975 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 937 + "blockRuntimeId" : 977 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 924 + "blockRuntimeId" : 964 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 927 + "blockRuntimeId" : 967 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 928 + "blockRuntimeId" : 968 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 936 + "blockRuntimeId" : 976 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 932 + "blockRuntimeId" : 972 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 926 + "blockRuntimeId" : 966 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 934 + "blockRuntimeId" : 974 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 933 + "blockRuntimeId" : 973 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 925 + "blockRuntimeId" : 965 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 929 + "blockRuntimeId" : 969 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3619 + "blockRuntimeId" : 3659 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3627 + "blockRuntimeId" : 3667 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3626 + "blockRuntimeId" : 3666 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3634 + "blockRuntimeId" : 3674 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3631 + "blockRuntimeId" : 3671 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3633 + "blockRuntimeId" : 3673 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3620 + "blockRuntimeId" : 3660 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3623 + "blockRuntimeId" : 3663 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3624 + "blockRuntimeId" : 3664 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3632 + "blockRuntimeId" : 3672 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3628 + "blockRuntimeId" : 3668 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3622 + "blockRuntimeId" : 3662 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3630 + "blockRuntimeId" : 3670 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3629 + "blockRuntimeId" : 3669 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3621 + "blockRuntimeId" : 3661 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3625 + "blockRuntimeId" : 3665 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3603 + "blockRuntimeId" : 3643 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3611 + "blockRuntimeId" : 3651 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3610 + "blockRuntimeId" : 3650 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3618 + "blockRuntimeId" : 3658 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3615 + "blockRuntimeId" : 3655 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3617 + "blockRuntimeId" : 3657 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3604 + "blockRuntimeId" : 3644 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3607 + "blockRuntimeId" : 3647 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3608 + "blockRuntimeId" : 3648 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3616 + "blockRuntimeId" : 3656 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3612 + "blockRuntimeId" : 3652 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3606 + "blockRuntimeId" : 3646 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3614 + "blockRuntimeId" : 3654 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3613 + "blockRuntimeId" : 3653 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3605 + "blockRuntimeId" : 3645 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3609 + "blockRuntimeId" : 3649 }, { "id" : "minecraft:clay", - "blockRuntimeId" : 1099 + "blockRuntimeId" : 1139 }, { "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 4988 + "blockRuntimeId" : 5058 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6874 + "blockRuntimeId" : 7024 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6882 + "blockRuntimeId" : 7032 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6881 + "blockRuntimeId" : 7031 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6889 + "blockRuntimeId" : 7039 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6886 + "blockRuntimeId" : 7036 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6888 + "blockRuntimeId" : 7038 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6875 + "blockRuntimeId" : 7025 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6878 + "blockRuntimeId" : 7028 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6879 + "blockRuntimeId" : 7029 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6887 + "blockRuntimeId" : 7037 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6883 + "blockRuntimeId" : 7033 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 7027 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6885 + "blockRuntimeId" : 7035 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6884 + "blockRuntimeId" : 7034 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6876 + "blockRuntimeId" : 7026 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 7030 }, { "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7544 + "blockRuntimeId" : 7704 }, { "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6600 + "blockRuntimeId" : 6750 }, { "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 4925 + "blockRuntimeId" : 4985 }, { "id" : "minecraft:black_glazed_terracotta", - "blockRuntimeId" : 478 + "blockRuntimeId" : 488 }, { "id" : "minecraft:brown_glazed_terracotta", - "blockRuntimeId" : 864 + "blockRuntimeId" : 894 }, { "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6424 + "blockRuntimeId" : 6574 }, { "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5601 + "blockRuntimeId" : 5721 }, { "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7676 + "blockRuntimeId" : 7846 }, { "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5407 + "blockRuntimeId" : 5507 }, { "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 4931 + "blockRuntimeId" : 5001 }, { "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3880 + "blockRuntimeId" : 3930 }, { "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5379 + "blockRuntimeId" : 5459 }, { "id" : "minecraft:blue_glazed_terracotta", - "blockRuntimeId" : 665 + "blockRuntimeId" : 685 }, { "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6352 + "blockRuntimeId" : 6492 }, { "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5461 + "blockRuntimeId" : 5571 }, { "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5622 + "blockRuntimeId" : 5752 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6358 + "blockRuntimeId" : 6498 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6360 + "blockRuntimeId" : 6500 }, { "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5567 + "blockRuntimeId" : 5677 }, { "id" : "minecraft:warped_wart_block", - "blockRuntimeId" : 7421 + "blockRuntimeId" : 7571 }, { "id" : "minecraft:shroomlight", - "blockRuntimeId" : 6583 + "blockRuntimeId" : 6733 }, { "id" : "minecraft:crimson_nylium", - "blockRuntimeId" : 3798 + "blockRuntimeId" : 3838 }, { "id" : "minecraft:warped_nylium", - "blockRuntimeId" : 7351 + "blockRuntimeId" : 7501 }, { "id" : "minecraft:basalt", @@ -1509,331 +1509,331 @@ }, { "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5665 + "blockRuntimeId" : 5795 }, { "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6640 + "blockRuntimeId" : 6790 }, { "id" : "minecraft:soul_soil", - "blockRuntimeId" : 6710 + "blockRuntimeId" : 6860 }, { "id" : "minecraft:dirt", - "blockRuntimeId" : 4433 + "blockRuntimeId" : 4483 }, { "id" : "minecraft:dirt", - "blockRuntimeId" : 4434 + "blockRuntimeId" : 4484 }, { "id" : "minecraft:farmland", - "blockRuntimeId" : 4715 + "blockRuntimeId" : 4765 }, { "id" : "minecraft:grass", - "blockRuntimeId" : 4922 + "blockRuntimeId" : 4972 }, { "id" : "minecraft:grass_path", - "blockRuntimeId" : 4923 + "blockRuntimeId" : 4973 }, { "id" : "minecraft:podzol", - "blockRuntimeId" : 5646 + "blockRuntimeId" : 5776 }, { "id" : "minecraft:mycelium", - "blockRuntimeId" : 5550 + "blockRuntimeId" : 5660 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6934 + "blockRuntimeId" : 7084 }, { "id" : "minecraft:iron_ore", - "blockRuntimeId" : 5072 + "blockRuntimeId" : 5142 }, { "id" : "minecraft:gold_ore", - "blockRuntimeId" : 4901 + "blockRuntimeId" : 4951 }, { "id" : "minecraft:diamond_ore", - "blockRuntimeId" : 4424 + "blockRuntimeId" : 4474 }, { "id" : "minecraft:lapis_ore", - "blockRuntimeId" : 5271 + "blockRuntimeId" : 5341 }, { "id" : "minecraft:redstone_ore", - "blockRuntimeId" : 6470 + "blockRuntimeId" : 6620 }, { "id" : "minecraft:coal_ore", - "blockRuntimeId" : 1101 + "blockRuntimeId" : 1141 + }, + { + "id" : "minecraft:copper_ore", + "blockRuntimeId" : 3677 }, { "id" : "minecraft:emerald_ore", - "blockRuntimeId" : 4667 + "blockRuntimeId" : 4717 }, { "id" : "minecraft:quartz_ore", - "blockRuntimeId" : 6391 + "blockRuntimeId" : 6531 }, { "id" : "minecraft:nether_gold_ore", - "blockRuntimeId" : 5561 + "blockRuntimeId" : 5671 }, { "id" : "minecraft:ancient_debris", "blockRuntimeId" : 143 }, - { - "id" : "minecraft:copper_ore", - "blockRuntimeId" : 3637 - }, { "id" : "minecraft:deepslate_iron_ore", - "blockRuntimeId" : 4232 + "blockRuntimeId" : 4282 }, { "id" : "minecraft:deepslate_gold_ore", - "blockRuntimeId" : 4231 + "blockRuntimeId" : 4281 }, { "id" : "minecraft:deepslate_diamond_ore", - "blockRuntimeId" : 4229 + "blockRuntimeId" : 4279 }, { "id" : "minecraft:deepslate_lapis_ore", - "blockRuntimeId" : 4233 + "blockRuntimeId" : 4283 }, { "id" : "minecraft:deepslate_redstone_ore", - "blockRuntimeId" : 4234 + "blockRuntimeId" : 4284 }, { "id" : "minecraft:deepslate_emerald_ore", - "blockRuntimeId" : 4230 + "blockRuntimeId" : 4280 }, { "id" : "minecraft:deepslate_coal_ore", - "blockRuntimeId" : 4227 + "blockRuntimeId" : 4277 }, { "id" : "minecraft:deepslate_copper_ore", - "blockRuntimeId" : 4228 + "blockRuntimeId" : 4278 }, { "id" : "minecraft:gravel", - "blockRuntimeId" : 4924 + "blockRuntimeId" : 4974 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6935 + "blockRuntimeId" : 7085 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6937 + "blockRuntimeId" : 7087 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6939 + "blockRuntimeId" : 7089 }, { "id" : "minecraft:blackstone", - "blockRuntimeId" : 484 + "blockRuntimeId" : 494 }, { - "id" : "minecraft:stone", - "blockRuntimeId" : 6936 + "id" : "minecraft:deepslate", + "blockRuntimeId" : 4099 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6938 + "blockRuntimeId" : 7086 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6940 + "blockRuntimeId" : 7088 }, { - "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5668 + "id" : "minecraft:stone", + "blockRuntimeId" : 7090 }, { - "id" : "minecraft:deepslate", - "blockRuntimeId" : 4049 + "id" : "minecraft:polished_blackstone", + "blockRuntimeId" : 5798 }, { "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6046 + "blockRuntimeId" : 6176 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6527 + "blockRuntimeId" : 6677 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6528 + "blockRuntimeId" : 6678 }, { "id" : "minecraft:cactus", - "blockRuntimeId" : 890 + "blockRuntimeId" : 920 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5439 + "blockRuntimeId" : 5539 }, { "id" : "minecraft:stripped_oak_log", - "blockRuntimeId" : 7073 + "blockRuntimeId" : 7223 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5440 + "blockRuntimeId" : 5540 }, { "id" : "minecraft:stripped_spruce_log", - "blockRuntimeId" : 7076 + "blockRuntimeId" : 7226 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5441 + "blockRuntimeId" : 5541 }, { "id" : "minecraft:stripped_birch_log", - "blockRuntimeId" : 7058 + "blockRuntimeId" : 7208 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5442 + "blockRuntimeId" : 5542 }, { "id" : "minecraft:stripped_jungle_log", - "blockRuntimeId" : 7070 + "blockRuntimeId" : 7220 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5451 + "blockRuntimeId" : 5551 }, { "id" : "minecraft:stripped_acacia_log", - "blockRuntimeId" : 7055 + "blockRuntimeId" : 7205 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5452 + "blockRuntimeId" : 5552 }, { "id" : "minecraft:stripped_dark_oak_log", - "blockRuntimeId" : 7067 + "blockRuntimeId" : 7217 }, { "id" : "minecraft:crimson_stem", - "blockRuntimeId" : 3843 + "blockRuntimeId" : 3883 }, { "id" : "minecraft:stripped_crimson_stem", - "blockRuntimeId" : 7064 + "blockRuntimeId" : 7214 }, { "id" : "minecraft:warped_stem", - "blockRuntimeId" : 7396 + "blockRuntimeId" : 7546 }, { "id" : "minecraft:stripped_warped_stem", - "blockRuntimeId" : 7082 + "blockRuntimeId" : 7232 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7551 + "blockRuntimeId" : 7711 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7557 + "blockRuntimeId" : 7717 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7552 + "blockRuntimeId" : 7712 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7558 + "blockRuntimeId" : 7718 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7553 + "blockRuntimeId" : 7713 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7559 + "blockRuntimeId" : 7719 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7554 + "blockRuntimeId" : 7714 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7560 + "blockRuntimeId" : 7720 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7555 + "blockRuntimeId" : 7715 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7561 + "blockRuntimeId" : 7721 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7556 + "blockRuntimeId" : 7716 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7562 + "blockRuntimeId" : 7722 }, { "id" : "minecraft:crimson_hyphae", - "blockRuntimeId" : 3795 + "blockRuntimeId" : 3835 }, { "id" : "minecraft:stripped_crimson_hyphae", - "blockRuntimeId" : 7061 + "blockRuntimeId" : 7211 }, { "id" : "minecraft:warped_hyphae", - "blockRuntimeId" : 7348 + "blockRuntimeId" : 7498 }, { "id" : "minecraft:stripped_warped_hyphae", - "blockRuntimeId" : 7079 + "blockRuntimeId" : 7229 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5315 + "blockRuntimeId" : 5385 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5316 + "blockRuntimeId" : 5386 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5317 + "blockRuntimeId" : 5387 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5318 + "blockRuntimeId" : 5388 }, { "id" : "minecraft:leaves2", - "blockRuntimeId" : 5331 + "blockRuntimeId" : 5401 }, { "id" : "minecraft:leaves2", - "blockRuntimeId" : 5332 + "blockRuntimeId" : 5402 }, { "id" : "minecraft:azalea_leaves", @@ -1845,27 +1845,27 @@ }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6541 + "blockRuntimeId" : 6691 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6542 + "blockRuntimeId" : 6692 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6543 + "blockRuntimeId" : 6693 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6544 + "blockRuntimeId" : 6694 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6545 + "blockRuntimeId" : 6695 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6546 + "blockRuntimeId" : 6696 }, { "id" : "minecraft:bee_nest", @@ -1912,7 +1912,7 @@ }, { "id" : "minecraft:melon_block", - "blockRuntimeId" : 5474 + "blockRuntimeId" : 5584 }, { "id" : "minecraft:melon_slice" @@ -1928,200 +1928,200 @@ }, { "id" : "minecraft:pumpkin", - "blockRuntimeId" : 6300 + "blockRuntimeId" : 6430 }, { "id" : "minecraft:carved_pumpkin", - "blockRuntimeId" : 948 + "blockRuntimeId" : 988 }, { "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5426 + "blockRuntimeId" : 5526 }, { "id" : "minecraft:honeycomb" }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7103 + "blockRuntimeId" : 7253 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4453 + "blockRuntimeId" : 4503 }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7102 + "blockRuntimeId" : 7252 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4452 + "blockRuntimeId" : 4502 }, { "id" : "minecraft:nether_sprouts" }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3641 + "blockRuntimeId" : 3681 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3639 + "blockRuntimeId" : 3679 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3640 + "blockRuntimeId" : 3680 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3638 + "blockRuntimeId" : 3678 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3642 + "blockRuntimeId" : 3682 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3646 + "blockRuntimeId" : 3686 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3644 + "blockRuntimeId" : 3684 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3645 + "blockRuntimeId" : 3685 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3643 + "blockRuntimeId" : 3683 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3647 + "blockRuntimeId" : 3687 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3661 + "blockRuntimeId" : 3701 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3659 + "blockRuntimeId" : 3699 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3660 + "blockRuntimeId" : 3700 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3658 + "blockRuntimeId" : 3698 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3662 + "blockRuntimeId" : 3702 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3671 + "blockRuntimeId" : 3711 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3669 + "blockRuntimeId" : 3709 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3670 + "blockRuntimeId" : 3710 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3668 + "blockRuntimeId" : 3708 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3672 + "blockRuntimeId" : 3712 }, { "id" : "minecraft:kelp" }, { "id" : "minecraft:seagrass", - "blockRuntimeId" : 6579 + "blockRuntimeId" : 6729 }, { "id" : "minecraft:crimson_roots", - "blockRuntimeId" : 3816 + "blockRuntimeId" : 3856 }, { "id" : "minecraft:warped_roots", - "blockRuntimeId" : 7369 + "blockRuntimeId" : 7519 }, { "id" : "minecraft:yellow_flower", - "blockRuntimeId" : 7675 + "blockRuntimeId" : 7845 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6413 + "blockRuntimeId" : 6563 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6414 + "blockRuntimeId" : 6564 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6415 + "blockRuntimeId" : 6565 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6416 + "blockRuntimeId" : 6566 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6417 + "blockRuntimeId" : 6567 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6418 + "blockRuntimeId" : 6568 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6419 + "blockRuntimeId" : 6569 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6420 + "blockRuntimeId" : 6570 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6421 + "blockRuntimeId" : 6571 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6422 + "blockRuntimeId" : 6572 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6423 + "blockRuntimeId" : 6573 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4450 + "blockRuntimeId" : 4500 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4451 + "blockRuntimeId" : 4501 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4454 + "blockRuntimeId" : 4504 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4455 + "blockRuntimeId" : 4505 }, { "id" : "minecraft:wither_rose", - "blockRuntimeId" : 7550 + "blockRuntimeId" : 7710 }, { "id" : "minecraft:white_dye" @@ -2188,23 +2188,23 @@ }, { "id" : "minecraft:vine", - "blockRuntimeId" : 7256 + "blockRuntimeId" : 7406 }, { "id" : "minecraft:weeping_vines", - "blockRuntimeId" : 7510 + "blockRuntimeId" : 7660 }, { "id" : "minecraft:twisting_vines", - "blockRuntimeId" : 7184 + "blockRuntimeId" : 7334 }, { "id" : "minecraft:waterlily", - "blockRuntimeId" : 7438 + "blockRuntimeId" : 7588 }, { "id" : "minecraft:deadbush", - "blockRuntimeId" : 4048 + "blockRuntimeId" : 4098 }, { "id" : "minecraft:bamboo", @@ -2212,47 +2212,47 @@ }, { "id" : "minecraft:snow", - "blockRuntimeId" : 6666 + "blockRuntimeId" : 6816 }, { "id" : "minecraft:ice", - "blockRuntimeId" : 5031 + "blockRuntimeId" : 5101 }, { "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5621 + "blockRuntimeId" : 5741 }, { "id" : "minecraft:blue_ice", - "blockRuntimeId" : 671 + "blockRuntimeId" : 691 }, { "id" : "minecraft:snow_layer", - "blockRuntimeId" : 6667 + "blockRuntimeId" : 6817 }, { "id" : "minecraft:pointed_dripstone", - "blockRuntimeId" : 5652 + "blockRuntimeId" : 5782 }, { "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4534 + "blockRuntimeId" : 4584 }, { "id" : "minecraft:moss_carpet", - "blockRuntimeId" : 5531 + "blockRuntimeId" : 5641 }, { "id" : "minecraft:moss_block", - "blockRuntimeId" : 5530 + "blockRuntimeId" : 5640 }, { "id" : "minecraft:dirt_with_roots", - "blockRuntimeId" : 4435 + "blockRuntimeId" : 4485 }, { "id" : "minecraft:hanging_roots", - "blockRuntimeId" : 4953 + "blockRuntimeId" : 5023 }, { "id" : "minecraft:big_dripleaf", @@ -2260,11 +2260,11 @@ }, { "id" : "minecraft:small_dripleaf_block", - "blockRuntimeId" : 6632 + "blockRuntimeId" : 6782 }, { "id" : "minecraft:spore_blossom", - "blockRuntimeId" : 6719 + "blockRuntimeId" : 6869 }, { "id" : "minecraft:azalea", @@ -2272,11 +2272,11 @@ }, { "id" : "minecraft:flowering_azalea", - "blockRuntimeId" : 4764 + "blockRuntimeId" : 4814 }, { "id" : "minecraft:glow_lichen", - "blockRuntimeId" : 4897 + "blockRuntimeId" : 4947 }, { "id" : "minecraft:amethyst_block", @@ -2284,7 +2284,7 @@ }, { "id" : "minecraft:budding_amethyst", - "blockRuntimeId" : 889 + "blockRuntimeId" : 919 }, { "id" : "minecraft:amethyst_cluster", @@ -2292,23 +2292,23 @@ }, { "id" : "minecraft:large_amethyst_bud", - "blockRuntimeId" : 5272 + "blockRuntimeId" : 5342 }, { "id" : "minecraft:medium_amethyst_bud", - "blockRuntimeId" : 5468 + "blockRuntimeId" : 5578 }, { "id" : "minecraft:small_amethyst_bud", - "blockRuntimeId" : 6619 + "blockRuntimeId" : 6769 }, { "id" : "minecraft:tuff", - "blockRuntimeId" : 7171 + "blockRuntimeId" : 7321 }, { "id" : "minecraft:calcite", - "blockRuntimeId" : 913 + "blockRuntimeId" : 943 }, { "id" : "minecraft:chicken" @@ -2339,35 +2339,35 @@ }, { "id" : "minecraft:brown_mushroom", - "blockRuntimeId" : 870 + "blockRuntimeId" : 900 }, { "id" : "minecraft:red_mushroom", - "blockRuntimeId" : 6430 + "blockRuntimeId" : 6580 }, { "id" : "minecraft:crimson_fungus", - "blockRuntimeId" : 3794 + "blockRuntimeId" : 3834 }, { "id" : "minecraft:warped_fungus", - "blockRuntimeId" : 7347 + "blockRuntimeId" : 7497 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 885 + "blockRuntimeId" : 915 }, { "id" : "minecraft:red_mushroom_block", - "blockRuntimeId" : 6445 + "blockRuntimeId" : 6595 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 886 + "blockRuntimeId" : 916 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 871 + "blockRuntimeId" : 901 }, { "id" : "minecraft:egg" @@ -2386,50 +2386,50 @@ }, { "id" : "minecraft:web", - "blockRuntimeId" : 7509 + "blockRuntimeId" : 7659 }, { "id" : "minecraft:spider_eye" }, { "id" : "minecraft:mob_spawner", - "blockRuntimeId" : 5523 + "blockRuntimeId" : 5633 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5524 + "blockRuntimeId" : 5634 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5525 + "blockRuntimeId" : 5635 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5526 + "blockRuntimeId" : 5636 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5527 + "blockRuntimeId" : 5637 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5528 + "blockRuntimeId" : 5638 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5529 + "blockRuntimeId" : 5639 }, { "id" : "minecraft:infested_deepslate", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5102 }, { "id" : "minecraft:dragon_egg", - "blockRuntimeId" : 4532 + "blockRuntimeId" : 4582 }, { "id" : "minecraft:turtle_egg", - "blockRuntimeId" : 7172 + "blockRuntimeId" : 7322 }, { "id" : "minecraft:chicken_spawn_egg" @@ -2631,11 +2631,11 @@ }, { "id" : "minecraft:obsidian", - "blockRuntimeId" : 5600 + "blockRuntimeId" : 5710 }, { "id" : "minecraft:crying_obsidian", - "blockRuntimeId" : 3868 + "blockRuntimeId" : 3908 }, { "id" : "minecraft:bedrock", @@ -2643,30 +2643,30 @@ }, { "id" : "minecraft:soul_sand", - "blockRuntimeId" : 6709 + "blockRuntimeId" : 6859 }, { "id" : "minecraft:netherrack", - "blockRuntimeId" : 5569 + "blockRuntimeId" : 5679 }, { "id" : "minecraft:magma", - "blockRuntimeId" : 5467 + "blockRuntimeId" : 5577 }, { "id" : "minecraft:nether_wart" }, { "id" : "minecraft:end_stone", - "blockRuntimeId" : 4694 + "blockRuntimeId" : 4744 }, { "id" : "minecraft:chorus_flower", - "blockRuntimeId" : 1092 + "blockRuntimeId" : 1132 }, { "id" : "minecraft:chorus_plant", - "blockRuntimeId" : 1098 + "blockRuntimeId" : 1138 }, { "id" : "minecraft:chorus_fruit" @@ -2676,51 +2676,51 @@ }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6717 + "blockRuntimeId" : 6867 }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6718 + "blockRuntimeId" : 6868 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3648 + "blockRuntimeId" : 3688 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3649 + "blockRuntimeId" : 3689 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3650 + "blockRuntimeId" : 3690 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3651 + "blockRuntimeId" : 3691 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3652 + "blockRuntimeId" : 3692 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3653 + "blockRuntimeId" : 3693 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3654 + "blockRuntimeId" : 3694 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3655 + "blockRuntimeId" : 3695 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3656 + "blockRuntimeId" : 3696 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3657 + "blockRuntimeId" : 3697 }, { "id" : "minecraft:leather_helmet" @@ -3747,39 +3747,107 @@ }, { "id" : "minecraft:torch", - "blockRuntimeId" : 7111 + "blockRuntimeId" : 7261 }, { "id" : "minecraft:soul_torch", - "blockRuntimeId" : 6711 + "blockRuntimeId" : 6861 }, { "id" : "minecraft:sea_pickle", - "blockRuntimeId" : 6571 + "blockRuntimeId" : 6721 }, { "id" : "minecraft:lantern", - "blockRuntimeId" : 5268 + "blockRuntimeId" : 5338 }, { "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6707 + "blockRuntimeId" : 6857 + }, + { + "id" : "minecraft:candle", + "blockRuntimeId" : 953 + }, + { + "id" : "minecraft:white_candle", + "blockRuntimeId" : 7694 + }, + { + "id" : "minecraft:orange_candle", + "blockRuntimeId" : 5711 + }, + { + "id" : "minecraft:magenta_candle", + "blockRuntimeId" : 5561 + }, + { + "id" : "minecraft:light_blue_candle", + "blockRuntimeId" : 5449 + }, + { + "id" : "minecraft:yellow_candle", + "blockRuntimeId" : 7835 + }, + { + "id" : "minecraft:lime_candle", + "blockRuntimeId" : 5497 + }, + { + "id" : "minecraft:pink_candle", + "blockRuntimeId" : 5742 + }, + { + "id" : "minecraft:gray_candle", + "blockRuntimeId" : 4975 + }, + { + "id" : "minecraft:light_gray_candle", + "blockRuntimeId" : 5465 + }, + { + "id" : "minecraft:cyan_candle", + "blockRuntimeId" : 3920 + }, + { + "id" : "minecraft:purple_candle", + "blockRuntimeId" : 6482 + }, + { + "id" : "minecraft:blue_candle", + "blockRuntimeId" : 675 + }, + { + "id" : "minecraft:brown_candle", + "blockRuntimeId" : 884 + }, + { + "id" : "minecraft:green_candle", + "blockRuntimeId" : 4991 + }, + { + "id" : "minecraft:red_candle", + "blockRuntimeId" : 6553 + }, + { + "id" : "minecraft:black_candle", + "blockRuntimeId" : 478 }, { "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3730 + "blockRuntimeId" : 3770 }, { "id" : "minecraft:cartography_table", - "blockRuntimeId" : 947 + "blockRuntimeId" : 987 }, { "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4761 + "blockRuntimeId" : 4811 }, { "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6633 + "blockRuntimeId" : 6783 }, { "id" : "minecraft:beehive", @@ -3793,19 +3861,19 @@ }, { "id" : "minecraft:furnace", - "blockRuntimeId" : 4813 + "blockRuntimeId" : 4863 }, { "id" : "minecraft:blast_furnace", - "blockRuntimeId" : 659 + "blockRuntimeId" : 669 }, { "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 + "blockRuntimeId" : 6784 }, { "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6522 + "blockRuntimeId" : 6672 }, { "id" : "minecraft:brewing_stand" @@ -3824,38 +3892,38 @@ }, { "id" : "minecraft:grindstone", - "blockRuntimeId" : 4937 + "blockRuntimeId" : 5007 }, { "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4668 + "blockRuntimeId" : 4718 }, { "id" : "minecraft:bookshelf", - "blockRuntimeId" : 684 + "blockRuntimeId" : 704 }, { "id" : "minecraft:lectern", - "blockRuntimeId" : 5339 + "blockRuntimeId" : 5409 }, { "id" : "minecraft:cauldron" }, { "id" : "minecraft:composter", - "blockRuntimeId" : 3594 + "blockRuntimeId" : 3634 }, { "id" : "minecraft:chest", - "blockRuntimeId" : 1083 + "blockRuntimeId" : 1123 }, { "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7133 + "blockRuntimeId" : 7283 }, { "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4695 + "blockRuntimeId" : 4745 }, { "id" : "minecraft:barrel", @@ -3863,82 +3931,82 @@ }, { "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7216 + "blockRuntimeId" : 7366 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 + "blockRuntimeId" : 6734 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 + "blockRuntimeId" : 6742 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 + "blockRuntimeId" : 6741 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 + "blockRuntimeId" : 6749 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 + "blockRuntimeId" : 6746 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 + "blockRuntimeId" : 6748 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 + "blockRuntimeId" : 6735 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 + "blockRuntimeId" : 6738 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 + "blockRuntimeId" : 6739 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 + "blockRuntimeId" : 6747 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 + "blockRuntimeId" : 6743 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 + "blockRuntimeId" : 6737 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 + "blockRuntimeId" : 6745 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 + "blockRuntimeId" : 6744 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 + "blockRuntimeId" : 6736 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 + "blockRuntimeId" : 6740 }, { "id" : "minecraft:armor_stand" }, { "id" : "minecraft:noteblock", - "blockRuntimeId" : 5579 + "blockRuntimeId" : 5689 }, { "id" : "minecraft:jukebox", - "blockRuntimeId" : 5113 + "blockRuntimeId" : 5183 }, { "id" : "minecraft:music_disc_13" @@ -3984,15 +4052,15 @@ }, { "id" : "minecraft:glowstone", - "blockRuntimeId" : 4899 + "blockRuntimeId" : 4949 }, { "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6469 + "blockRuntimeId" : 6619 }, { "id" : "minecraft:sealantern", - "blockRuntimeId" : 6582 + "blockRuntimeId" : 6732 }, { "id" : "minecraft:oak_sign" @@ -4024,6 +4092,9 @@ { "id" : "minecraft:frame" }, + { + "id" : "minecraft:glow_frame" + }, { "id" : "minecraft:honey_bottle" }, @@ -4063,9 +4134,6 @@ { "id" : "minecraft:axolotl_bucket" }, - { - "id" : "minecraft:glow_frame" - }, { "id" : "minecraft:skull", "damage" : 3 @@ -4099,15 +4167,15 @@ }, { "id" : "minecraft:conduit", - "blockRuntimeId" : 3635 + "blockRuntimeId" : 3675 }, { "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7049 + "blockRuntimeId" : 7199 }, { "id" : "minecraft:end_portal_frame", - "blockRuntimeId" : 4680 + "blockRuntimeId" : 4730 }, { "id" : "minecraft:coal" @@ -4243,11 +4311,11 @@ }, { "id" : "minecraft:end_rod", - "blockRuntimeId" : 4688 + "blockRuntimeId" : 4738 }, { "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5401 + "blockRuntimeId" : 5491 }, { "id" : "minecraft:end_crystal" @@ -4709,15 +4777,15 @@ }, { "id" : "minecraft:rail", - "blockRuntimeId" : 6400 + "blockRuntimeId" : 6540 }, { "id" : "minecraft:golden_rail", - "blockRuntimeId" : 4902 + "blockRuntimeId" : 4952 }, { "id" : "minecraft:detector_rail", - "blockRuntimeId" : 4411 + "blockRuntimeId" : 4461 }, { "id" : "minecraft:activator_rail", @@ -4740,23 +4808,23 @@ }, { "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6468 + "blockRuntimeId" : 6618 }, { "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6471 + "blockRuntimeId" : 6621 }, { "id" : "minecraft:lever", - "blockRuntimeId" : 5347 + "blockRuntimeId" : 5417 }, { "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7587 + "blockRuntimeId" : 7747 }, { "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6720 + "blockRuntimeId" : 6870 }, { "id" : "minecraft:birch_button", @@ -4764,42 +4832,42 @@ }, { "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5114 + "blockRuntimeId" : 5184 }, { "id" : "minecraft:acacia_button" }, { "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3886 + "blockRuntimeId" : 3936 }, { "id" : "minecraft:stone_button", - "blockRuntimeId" : 6949 + "blockRuntimeId" : 7099 }, { "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3731 + "blockRuntimeId" : 3771 }, { "id" : "minecraft:warped_button", - "blockRuntimeId" : 7284 + "blockRuntimeId" : 7434 }, { "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 5844 + "blockRuntimeId" : 5974 }, { "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7155 + "blockRuntimeId" : 7305 }, { "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7631 + "blockRuntimeId" : 7791 }, { "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 6780 + "blockRuntimeId" : 6930 }, { "id" : "minecraft:birch_pressure_plate", @@ -4807,7 +4875,7 @@ }, { "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5174 + "blockRuntimeId" : 5244 }, { "id" : "minecraft:acacia_pressure_plate", @@ -4815,39 +4883,39 @@ }, { "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3946 + "blockRuntimeId" : 3996 }, { "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3800 + "blockRuntimeId" : 3840 }, { "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7353 + "blockRuntimeId" : 7503 }, { "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 6961 + "blockRuntimeId" : 7111 }, { "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5385 + "blockRuntimeId" : 5475 }, { "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5001 + "blockRuntimeId" : 5071 }, { "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 5858 + "blockRuntimeId" : 5988 }, { "id" : "minecraft:observer", - "blockRuntimeId" : 5588 + "blockRuntimeId" : 5698 }, { "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4016 + "blockRuntimeId" : 4066 }, { "id" : "minecraft:repeater" @@ -4860,30 +4928,30 @@ }, { "id" : "minecraft:dropper", - "blockRuntimeId" : 4538 + "blockRuntimeId" : 4588 }, { "id" : "minecraft:dispenser", - "blockRuntimeId" : 4439 + "blockRuntimeId" : 4489 }, { "id" : "minecraft:piston", - "blockRuntimeId" : 5629 + "blockRuntimeId" : 5759 }, { "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 6923 + "blockRuntimeId" : 7073 }, { "id" : "minecraft:tnt", - "blockRuntimeId" : 7107 + "blockRuntimeId" : 7257 }, { "id" : "minecraft:name_tag" }, { "id" : "minecraft:loom", - "blockRuntimeId" : 5457 + "blockRuntimeId" : 5557 }, { "id" : "minecraft:banner" @@ -5126,7 +5194,7 @@ }, { "id" : "minecraft:target", - "blockRuntimeId" : 7105 + "blockRuntimeId" : 7255 }, { "id" : "minecraft:lodestone_compass" diff --git a/src/main/resources/recipes.json b/src/main/resources/recipes.json index 6f5a2cd5a35..36c316c27b1 100644 --- a/src/main/resources/recipes.json +++ b/src/main/resources/recipes.json @@ -1,58789 +1,57877 @@ { - "version" : 440, - "recipes" : [ - { - "type" : 4, - "uuid" : "442d85ed-8272-4543-a6f1-418f90ded05d" - }, - { - "type" : 4, - "uuid" : "8b36268c-1829-483c-a0f1-993b7156a8f2" - }, - { - "type" : 4, - "uuid" : "602234e4-cac1-4353-8bb7-b1ebff70024b" - }, - { - "id" : "minecraft:cartography_table_locator_map", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "block" : "cartography_table", - "priority" : 0 - }, - { - "id" : "minecraft:cartography_table_map", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map" - } - ], - "block" : "cartography_table", - "priority" : 0 - }, - { - "type" : 4, - "uuid" : "98c84b38-1085-46bd-b1ce-dd38c159e6cc" - }, - { - "id" : "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -395, - "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1089 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -380, - "id" : "minecraft:cobbled_deepslate_slab", - "count" : 2, - "blockRuntimeId" : 1105 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -381, - "id" : "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId" : 1107 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -382, - "id" : "minecraft:cobbled_deepslate_wall", - "blockRuntimeId" : 1115 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 2, - "blockRuntimeId" : 4054 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 2, - "blockRuntimeId" : 4054 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 2, - "blockRuntimeId" : 4054 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4056 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4056 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4056 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4064 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4064 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4064 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4226 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4226 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2, - "blockRuntimeId" : 4237 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2, - "blockRuntimeId" : 4237 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2, - "blockRuntimeId" : 4237 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2, - "blockRuntimeId" : 4237 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4239 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4239 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4239 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4239 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4247 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4247 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4247 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4247 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4409 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4409 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4409 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6046 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -384, - "id" : "minecraft:polished_deepslate_slab", - "count" : 2, - "blockRuntimeId" : 6049 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -384, - "id" : "minecraft:polished_deepslate_slab", - "count" : 2, - "blockRuntimeId" : 6049 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -385, - "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6051 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -385, - "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6051 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -386, - "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6059 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -386, - "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6059 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_andesite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7012 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_andesite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -171, - "id" : "minecraft:andesite_stairs", - "blockRuntimeId" : 144 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_andesite_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1282 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_blackstone_slab_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -282, - "id" : "minecraft:blackstone_slab", - "count" : 2, - "blockRuntimeId" : 487 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_blackstone_stairs_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -276, - "id" : "minecraft:blackstone_stairs", - "blockRuntimeId" : 489 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_blackstone_wall_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -277, - "id" : "minecraft:blackstone_wall", - "blockRuntimeId" : 497 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 6981 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_brick_slab_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 2, - "blockRuntimeId" : 5671 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "output" : [ - { - "legacyId" : 108, - "id" : "minecraft:brick_stairs", - "blockRuntimeId" : 856 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_brick_stairs_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5673 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1284 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_wall_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5681 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_bricks_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5843 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_chiseled_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -279, - "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1091 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_chiseled_nether_bricks_from_nether_brick", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -302, - "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1090 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_chiseled_polished_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -279, - "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1091 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_cobbledouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 6980 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_cobblestone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - ], - "output" : [ - { - "legacyId" : 67, - "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7035 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_cobblestone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1278 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_copper_block_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "blockRuntimeId" : 3869 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_copper_block_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 3870 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_copper_block_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3872 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 3870 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3872 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_dark_prismarine_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 6996 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_dark_prismarine_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -3, - "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 3986 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_diorite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7013 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_diorite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -170, - "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 4425 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_diorite_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1281 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_double_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 2, - "blockRuntimeId" : 7027 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_endbrick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7009 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_endbrick_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7009 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_endbrick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : -178, - "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4669 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_endbrick_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "output" : [ - { - "legacyId" : -178, - "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4669 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_endbrick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1288 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_endbrick_wall2", - "type" : 0, - "input" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1288 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_endbricks", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4677 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "blockRuntimeId" : 4702 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4705 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_exposed_copper_to_exposed_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 4703 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 4703 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4705 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_granite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7015 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_granite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -169, - "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4914 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_granite_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1280 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_mossy_cobbledouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 6998 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_mossy_cobblestone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "output" : [ - { - "legacyId" : -179, - "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5533 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_mossy_cobblestone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1279 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_mossy_stonebrick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 2, - "blockRuntimeId" : 7025 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_mossy_stonebrick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -175, - "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5541 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_mossy_stonebrick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1286 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_nether_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 6984 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_nether_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "output" : [ - { - "legacyId" : 114, - "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5553 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_nether_brick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1287 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5608 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 5609 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5611 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 5609 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5611 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_andesite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 6940 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7011 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7011 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -174, - "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5657 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : -174, - "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5657 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_polished_basalt_from_basalt", - "type" : 0, - "input" : [ - { - "legacyId" : -234, - "id" : "minecraft:basalt", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -235, - "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5665 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_brick_slab_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 2, - "blockRuntimeId" : 5671 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_brick_stairs_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5673 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_brick_wall_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5681 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_bricks_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5843 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_diorite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 6938 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7014 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7014 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -173, - "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6221 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : -173, - "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6221 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_polished_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5668 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_granite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 6936 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_polished_granite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7016 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_polished_granite_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7016 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_polished_granite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -172, - "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6229 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_polished_granite_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : -172, - "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6229 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_polished_slab_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "count" : 2, - "blockRuntimeId" : 5874 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_stairs_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -292, - "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 5876 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_wall_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -297, - "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 5884 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_prismarine_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 6997 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_prismarine_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : -4, - "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6284 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_prismarine_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 6995 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_prismarine_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "output" : [ - { - "legacyId" : -2, - "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6292 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_prismarine_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1289 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_purpur_lines", - "type" : 0, - "input" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "output" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6360 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_purpur_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 6994 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_purpur_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "output" : [ - { - "legacyId" : 203, - "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6370 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_quartz_bricks_from_quartz_block", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : -304, - "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6390 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_quartz_chiseled", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6379 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_quartz_lines", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6380 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_quartz_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 6983 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_quartz_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 156, - "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6392 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_red_nether_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7000 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_red_nether_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "output" : [ - { - "legacyId" : -184, - "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6448 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_red_nether_brick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1291 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_red_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 6993 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_cut", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6458 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_heiroglyphs", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6457 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 180, - "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6460 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1290 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 6978 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_sandstone_cut", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6531 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_sandstone_heiroglyphs", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6530 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 128, - "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6533 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_sandstone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1283 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_slab_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "count" : 2, - "blockRuntimeId" : 5874 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_slab_from_polished_blackstone_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 2, - "blockRuntimeId" : 5671 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_smooth_double_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -183, - "id" : "minecraft:smooth_stone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 6977 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_quartz_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 2, - "blockRuntimeId" : 7026 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_quartz_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -185, - "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6641 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_smooth_red_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7010 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_red_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -176, - "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6649 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_smooth_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 6999 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -177, - "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6657 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_stairs_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -292, - "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 5876 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_stone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : -180, - "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5571 - } - ], - "block" : "stonecutter", - "priority" : 6 - }, - { - "id" : "minecraft:stonecutter_stonebrick", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7043 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_stonebrick_chiseled", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7046 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_stonebrick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 6982 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_stonebrick_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 6982 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_stonebrick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 109, - "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 6941 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_stonebrick_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "output" : [ - { - "legacyId" : 109, - "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 6941 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_stonebrick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1285 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_stonebrick_wall2", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1285 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_wall_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -297, - "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 5884 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_wall_from_polished_blackstone_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5681 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7440 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7441 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7443 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_exposed_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7455 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7441 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7443 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7454 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7457 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7455 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7457 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7468 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7469 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7471 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7469 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7471 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7482 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7483 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7485 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7483 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7485 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7496 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7497 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7499 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7497 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7499 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "stonecutter_stairs_from_polished_blackstone_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5673 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "Bookshelf_woodplanks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "blockRuntimeId" : 684 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "Bowl_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "count" : 4 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "ButtonAcacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -140, - "id" : "minecraft:acacia_button", - "blockRuntimeId" : 0 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonBirch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -141, - "id" : "minecraft:birch_button", - "blockRuntimeId" : 356 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonDarkOak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -142, - "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3886 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonJungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -143, - "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5114 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonSpruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -144, - "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6720 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Chest_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "blockRuntimeId" : 1083 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "DaylightDetector_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass" - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 151, - "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4016 - } - ], - "shape" : [ - "AAA", - "BBB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "FireCharge_blaze_powder_coal_sulphur_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - }, - { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 509, - "id" : "minecraft:fire_charge", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "FireCharge_coal_sulphur_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - }, - { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 509, - "id" : "minecraft:fire_charge", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Jukebox_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 84, - "id" : "minecraft:jukebox", - "blockRuntimeId" : 5113 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "Note_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 25, - "id" : "minecraft:noteblock", - "blockRuntimeId" : 5579 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "Painting_Cobblestone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 6980 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Painting_NetherBrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 6984 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Painting_VanillaBlocks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 6978 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Painting_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 357, - "id" : "minecraft:painting" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Piston_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - }, - "C" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "D" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 33, - "id" : "minecraft:piston", - "blockRuntimeId" : 5629 - } - ], - "shape" : [ - "AAA", - "BCB", - "BDB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "PressurePlateAcacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -150, - "id" : "minecraft:acacia_pressure_plate", - "blockRuntimeId" : 60 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateBirch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -151, - "id" : "minecraft:birch_pressure_plate", - "blockRuntimeId" : 416 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateDarkOak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -152, - "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3946 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateJungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -153, - "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5174 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateSpruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -154, - "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 6780 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Stick_bamboo_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -163, - "id" : "minecraft:bamboo" - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick" - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "StoneSlab4_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7027 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab4_stoneBrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7025 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab_Brick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 6981 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab_StoneBrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 6982 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -183, - "id" : "minecraft:smooth_stone" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 6977 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Torch_charcoal_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 50, - "id" : "minecraft:torch", - "count" : 4, - "blockRuntimeId" : 7111 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Torch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 50, - "id" : "minecraft:torch", - "count" : 4, - "blockRuntimeId" : 7111 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorAcacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -145, - "id" : "minecraft:acacia_trapdoor", - "count" : 2, - "blockRuntimeId" : 100 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorBirch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -146, - "id" : "minecraft:birch_trapdoor", - "count" : 2, - "blockRuntimeId" : 456 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorDarkOak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -147, - "id" : "minecraft:dark_oak_trapdoor", - "count" : 2, - "blockRuntimeId" : 3970 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorJungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -148, - "id" : "minecraft:jungle_trapdoor", - "count" : 2, - "blockRuntimeId" : 5214 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorSpruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -149, - "id" : "minecraft:spruce_trapdoor", - "count" : 2, - "blockRuntimeId" : 6820 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Trapdoor_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 96, - "id" : "minecraft:trapdoor", - "count" : 2, - "blockRuntimeId" : 7117 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TripwireHook_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "count" : 2, - "blockRuntimeId" : 7155 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "WoodButton_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 143, - "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7587 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "WoodPressurePlate_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 72, - "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7631 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "WorkBench_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 58, - "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3730 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "acacia_stairs_acacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 163, - "id" : "minecraft:acacia_stairs", - "count" : 4, - "blockRuntimeId" : 76 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "d81aaeaf-e172-4440-9225-868df030d27b" - }, - { - "type" : 4, - "uuid" : "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" - }, - { - "type" : 4, - "uuid" : "00000000-0000-0000-0000-000000000002" - }, - { - "id" : "bed_color_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_crimson_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_dye_0_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "birch_stairs_birch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 135, - "id" : "minecraft:birch_stairs", - "count" : 4, - "blockRuntimeId" : 432 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" - }, - { - "id" : "chiseled_quartz_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6379 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "chiseled_stonebrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7046 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "85939755-ba10-4d9d-a4cc-efb7a8e943c4" - }, - { - "id" : "dark_oak_stairs_dark_oak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 164, - "id" : "minecraft:dark_oak_stairs", - "count" : 4, - "blockRuntimeId" : 3962 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "d392b075-4ba1-40ae-8789-af868d56f6ce" - }, - { - "id" : "heiroglyphs_redsandstone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2" - } - }, - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6457 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "heiroglyphs_sandstone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6530 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "jungle_stairs_jungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 136, - "id" : "minecraft:jungle_stairs", - "count" : 4, - "blockRuntimeId" : 5190 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "lines_purpur_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6360 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "loom_block_wood_planks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -204, - "id" : "minecraft:loom", - "blockRuntimeId" : 5457 - } - ], - "shape" : [ - "AA", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 379, - "id" : "minecraft:acacia_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 556, - "id" : "minecraft:acacia_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4727 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 187, - "id" : "minecraft:acacia_fence_gate", - "blockRuntimeId" : 44 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2" - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5644 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5644 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5644 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5644 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 163, - "id" : "minecraft:acacia_stairs", - "count" : 4, - "blockRuntimeId" : 76 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2" - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7555 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7561 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7651 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:activator_rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 126, - "id" : "minecraft:activator_rail", - "count" : 6, - "blockRuntimeId" : 122 - } - ], - "shape" : [ - "ABA", - "ACA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:amethyst_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 623, - "id" : "minecraft:amethyst_shard", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -327, - "id" : "minecraft:amethyst_block", - "blockRuntimeId" : 136 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:andesite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - }, - { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 2, - "blockRuntimeId" : 6939 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:andesite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -171, - "id" : "minecraft:andesite_stairs", - "count" : 4, - "blockRuntimeId" : 144 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:andesite_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1282 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:anvil", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 42, - "id" : "minecraft:iron_block", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 145, - "id" : "minecraft:anvil", - "blockRuntimeId" : 152 - } - ], - "shape" : [ - "AAA", - " B ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:armor_stand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab" - } - }, - "output" : [ - { - "legacyId" : 552, - "id" : "minecraft:armor_stand" - } - ], - "shape" : [ - "AAA", - " A ", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:arrow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 327, - "id" : "minecraft:feather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "count" : 4 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 585, - "id" : "minecraft:field_masoned_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_creeper", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 516, - "id" : "minecraft:skull", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 582, - "id" : "minecraft:creeper_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_flower", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 581, - "id" : "minecraft:flower_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_skull", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 516, - "id" : "minecraft:skull", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 583, - "id" : "minecraft:skull_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_thing", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 259, - "id" : "minecraft:enchanted_golden_apple", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 584, - "id" : "minecraft:mojang_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_vines", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 106, - "id" : "minecraft:vine", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 586, - "id" : "minecraft:bordure_indented_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:barrel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -203, - "id" : "minecraft:barrel", - "blockRuntimeId" : 201 - } - ], - "shape" : [ - "ABA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:barrel_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -203, - "id" : "minecraft:barrel", - "blockRuntimeId" : 201 - } - ], - "shape" : [ - "ABA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:barrel_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -203, - "id" : "minecraft:barrel", - "blockRuntimeId" : 201 - } - ], - "shape" : [ - "ABA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:basic_map_to_enhanced", - "type" : 0, - "input" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 1 - }, - { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:beacon", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 518, - "id" : "minecraft:nether_star", - "damage" : 32767 - }, - "C" : { - "legacyId" : 49, - "id" : "minecraft:obsidian", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 138, - "id" : "minecraft:beacon", - "blockRuntimeId" : 217 - } - ], - "shape" : [ - "AAA", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:beehive", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -219, - "id" : "minecraft:beehive", - "blockRuntimeId" : 260 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:beehive_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -219, - "id" : "minecraft:beehive", - "blockRuntimeId" : 260 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:beehive_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -219, - "id" : "minecraft:beehive", - "blockRuntimeId" : 260 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:beetroot_soup", - "type" : 0, - "input" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 286, - "id" : "minecraft:beetroot_soup" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 376, - "id" : "minecraft:birch_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 554, - "id" : "minecraft:birch_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4725 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 184, - "id" : "minecraft:birch_fence_gate", - "blockRuntimeId" : 400 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5642 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5642 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5642 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5642 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 135, - "id" : "minecraft:birch_stairs", - "count" : 4, - "blockRuntimeId" : 432 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7553 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7559 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7649 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner" - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 938 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 938 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:black_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3634 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_concrete_powder_from_ink_sac", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3634 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:black_dye_from_ink_sac", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - ], - "output" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_dye_from_wither_rose", - "type" : 0, - "input" : [ - { - "legacyId" : -216, - "id" : "minecraft:wither_rose", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6857 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_glass_from_ink_sac", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6857 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:black_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 15 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6873 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6873 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6889 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_hardened_clay_from_ink_sac", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6889 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:blackstone_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -282, - "id" : "minecraft:blackstone_slab", - "count" : 6, - "blockRuntimeId" : 487 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blackstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -276, - "id" : "minecraft:blackstone_stairs", - "count" : 4, - "blockRuntimeId" : 489 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blackstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -277, - "id" : "minecraft:blackstone_wall", - "count" : 6, - "blockRuntimeId" : 497 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blast_furnace", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - }, - "C" : { - "legacyId" : -183, - "id" : "minecraft:smooth_stone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -196, - "id" : "minecraft:blast_furnace", - "blockRuntimeId" : 659 - } - ], - "shape" : [ - "AAA", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blaze_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 934 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 934 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3630 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_concrete_powder_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3630 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:blue_dye_from_cornflower", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_dye_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - ], - "output" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_ice", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 174, - "id" : "minecraft:packed_ice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -11, - "id" : "minecraft:blue_ice", - "blockRuntimeId" : 671 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6853 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_glass_from_lapis_lazuli", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6853 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:blue_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6869 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6869 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6885 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_hardened_clay_from_lapis_lazuli", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6885 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 375, - "id" : "minecraft:oak_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bone_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - }, - "output" : [ - { - "legacyId" : 216, - "id" : "minecraft:bone_block", - "blockRuntimeId" : 672 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bone_meal_from_block", - "type" : 0, - "input" : [ - { - "legacyId" : 216, - "id" : "minecraft:bone_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "count" : 9 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bone_meal_from_bone", - "type" : 0, - "input" : [ - { - "legacyId" : 415, - "id" : "minecraft:bone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:book", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper" - }, - { - "legacyId" : 386, - "id" : "minecraft:paper" - }, - { - "legacyId" : 386, - "id" : "minecraft:paper" - }, - { - "legacyId" : 381, - "id" : "minecraft:leather" - } - ], - "output" : [ - { - "legacyId" : 387, - "id" : "minecraft:book" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bookshelf_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "blockRuntimeId" : 684 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bookshelf_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "blockRuntimeId" : 684 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 300, - "id" : "minecraft:bow" - } - ], - "shape" : [ - " AB", - "A B", - " AB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bowl_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "count" : 4 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bowl_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "count" : 4 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bread", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 261, - "id" : "minecraft:bread" - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brewing_stand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 431, - "id" : "minecraft:brewing_stand" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brewing_stand_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 431, - "id" : "minecraft:brewing_stand" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:brewing_stand_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 431, - "id" : "minecraft:brewing_stand" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:brick_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 383, - "id" : "minecraft:brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "blockRuntimeId" : 855 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 108, - "id" : "minecraft:brick_stairs", - "count" : 4, - "blockRuntimeId" : 856 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1284 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 935 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 935 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3631 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_concrete_powder_from_cocoa_beans", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3631 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:brown_dye_from_cocoa_beans", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - ], - "output" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6854 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_glass_from_cocoa_beans", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6854 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:brown_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6870 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6870 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6886 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_hardened_clay_from_cocoa_beans", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6886 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:bucket", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 360, - "id" : "minecraft:bucket" - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cake", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 361, - "id" : "minecraft:milk_bucket" - }, - "B" : { - "legacyId" : 416, - "id" : "minecraft:sugar", - "damage" : 32767 - }, - "C" : { - "legacyId" : 390, - "id" : "minecraft:egg", - "damage" : 32767 - }, - "D" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 417, - "id" : "minecraft:cake" - }, - { - "legacyId" : 360, - "id" : "minecraft:bucket", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "BCB", - "DDD" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:campfire_from_charcoal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:carrot_on_a_stick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 392, - "id" : "minecraft:fishing_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 517, - "id" : "minecraft:carrot_on_a_stick" - } - ], - "shape" : [ - "A ", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cartography_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -200, - "id" : "minecraft:cartography_table", - "blockRuntimeId" : 947 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cartography_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -200, - "id" : "minecraft:cartography_table", - "blockRuntimeId" : 947 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:cartography_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -200, - "id" : "minecraft:cartography_table", - "blockRuntimeId" : 947 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:cauldron", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 432, - "id" : "minecraft:cauldron" - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chain", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 617, - "id" : "minecraft:chain" - } - ], - "shape" : [ - "A", - "B", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chest_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "blockRuntimeId" : 1083 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:chest_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "blockRuntimeId" : 1083 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:chest_minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - }, - "B" : { - "legacyId" : 370, - "id" : "minecraft:minecart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 389, - "id" : "minecraft:chest_minecart" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chiseled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -380, - "id" : "minecraft:cobbled_deepslate_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -395, - "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1089 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:chiseled_nether_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : -302, - "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1090 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chiseled_polished_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -279, - "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1091 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 384, - "id" : "minecraft:clay_ball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 82, - "id" : "minecraft:clay", - "blockRuntimeId" : 1099 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:clock", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 393, - "id" : "minecraft:clock" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:coal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 173, - "id" : "minecraft:coal_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 302, - "id" : "minecraft:coal", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:coal_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - } - }, - "output" : [ - { - "legacyId" : 173, - "id" : "minecraft:coal_block", - "blockRuntimeId" : 1100 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:coarse_dirt", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 3, - "id" : "minecraft:dirt" - }, - "B" : { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 3, - "id" : "minecraft:dirt", - "count" : 4, - "blockRuntimeId" : 4434 - } - ], - "shape" : [ - "AB", - "BA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -380, - "id" : "minecraft:cobbled_deepslate_slab", - "count" : 6, - "blockRuntimeId" : 1105 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cobbled_deepslate_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -381, - "id" : "minecraft:cobbled_deepslate_stairs", - "count" : 4, - "blockRuntimeId" : 1107 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cobbled_deepslate_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -382, - "id" : "minecraft:cobbled_deepslate_wall", - "count" : 6, - "blockRuntimeId" : 1115 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cobblestone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 67, - "id" : "minecraft:stone_stairs", - "count" : 4, - "blockRuntimeId" : 7035 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cobblestone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1278 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cobweb_to_string", - "type" : 0, - "input" : [ - { - "legacyId" : 30, - "id" : "minecraft:web", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 326, - "id" : "minecraft:string", - "count" : 9 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:comparator", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 522, - "id" : "minecraft:comparator" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:compass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 391, - "id" : "minecraft:compass" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:composter", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -213, - "id" : "minecraft:composter", - "blockRuntimeId" : 3594 - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:composter_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -213, - "id" : "minecraft:composter", - "blockRuntimeId" : 3594 - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:composter_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -213, - "id" : "minecraft:composter", - "blockRuntimeId" : 3594 - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:conduit", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 570, - "id" : "minecraft:nautilus_shell", - "damage" : 32767 - }, - "B" : { - "legacyId" : 571, - "id" : "minecraft:heart_of_the_sea", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -157, - "id" : "minecraft:conduit", - "blockRuntimeId" : 3635 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cookie", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - }, - "B" : { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - }, - "output" : [ - { - "legacyId" : 271, - "id" : "minecraft:cookie", - "count" : 8 - } - ], - "shape" : [ - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:copper_block_from_ingots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "blockRuntimeId" : 3636 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "count" : 4, - "blockRuntimeId" : 3869 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 3870 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 3872 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_exposed_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "count" : 4, - "blockRuntimeId" : 4702 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_exposed_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 4703 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_exposed_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 4705 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 58, - "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3730 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:crafting_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 58, - "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3730 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:crafting_table_oxidized_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "count" : 4, - "blockRuntimeId" : 5608 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_oxidized_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 5609 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_oxidized_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 5611 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "count" : 4, - "blockRuntimeId" : 7440 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7441 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7443 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_exposed_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "count" : 4, - "blockRuntimeId" : 7454 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7455 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7457 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "count" : 4, - "blockRuntimeId" : 7468 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7469 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7471 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_weathered_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "count" : 4, - "blockRuntimeId" : 7482 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7483 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7485 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_weathered_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "count" : 4, - "blockRuntimeId" : 7496 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_weathered_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7497 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_weathered_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7499 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crimson_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -260, - "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3731 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 614, - "id" : "minecraft:crimson_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -256, - "id" : "minecraft:crimson_fence", - "count" : 3, - "blockRuntimeId" : 3777 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -258, - "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3778 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -299, - "id" : "minecraft:crimson_hyphae", - "count" : 3, - "blockRuntimeId" : 3795 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4, - "blockRuntimeId" : 3799 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks_from_crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -299, - "id" : "minecraft:crimson_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4, - "blockRuntimeId" : 3799 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks_from_stripped_crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -300, - "id" : "minecraft:stripped_crimson_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4, - "blockRuntimeId" : 3799 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks_from_stripped_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4, - "blockRuntimeId" : 3799 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -262, - "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3800 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_sign", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 612, - "id" : "minecraft:crimson_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "count" : 6, - "blockRuntimeId" : 3817 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -254, - "id" : "minecraft:crimson_stairs", - "count" : 4, - "blockRuntimeId" : 3819 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_trapdoor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -246, - "id" : "minecraft:crimson_trapdoor", - "count" : 2, - "blockRuntimeId" : 3846 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crossbow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "C" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "D" : { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 575, - "id" : "minecraft:crossbow" - } - ], - "shape" : [ - "ABA", - "CDC", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 932 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 932 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3628 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - ], - "output" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_dye_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - ], - "output" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cyan_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6851 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6867 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6867 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6883 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 380, - "id" : "minecraft:dark_oak_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 557, - "id" : "minecraft:dark_oak_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4728 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 186, - "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3930 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5645 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5645 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5645 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5645 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 164, - "id" : "minecraft:dark_oak_stairs", - "count" : 4, - "blockRuntimeId" : 3962 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7556 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7562 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7652 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_prismarine", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6282 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_prismarine_from_ink_sac", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6282 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:daylight_detector_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 151, - "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4016 - } - ], - "shape" : [ - "AAA", - "BBB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:daylight_detector_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 151, - "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4016 - } - ], - "shape" : [ - "AAA", - "BBB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:deepslate_brick_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 6, - "blockRuntimeId" : 4054 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "count" : 4, - "blockRuntimeId" : 4056 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "count" : 6, - "blockRuntimeId" : 4064 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "count" : 4, - "blockRuntimeId" : 4226 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tile_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 6, - "blockRuntimeId" : 4237 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tile_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "count" : 4, - "blockRuntimeId" : 4239 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tile_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "count" : 6, - "blockRuntimeId" : 4247 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tiles", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "count" : 4, - "blockRuntimeId" : 4409 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:detector_rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 70, - "id" : "minecraft:stone_pressure_plate", - "damage" : 32767 - }, - "C" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 28, - "id" : "minecraft:detector_rail", - "count" : 6, - "blockRuntimeId" : 4411 - } - ], - "shape" : [ - "A A", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 57, - "id" : "minecraft:diamond_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 304, - "id" : "minecraft:diamond", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 319, - "id" : "minecraft:diamond_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 57, - "id" : "minecraft:diamond_block", - "blockRuntimeId" : 4423 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 350, - "id" : "minecraft:diamond_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 348, - "id" : "minecraft:diamond_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 347, - "id" : "minecraft:diamond_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 332, - "id" : "minecraft:diamond_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 349, - "id" : "minecraft:diamond_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 318, - "id" : "minecraft:diamond_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 317, - "id" : "minecraft:diamond_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 316, - "id" : "minecraft:diamond_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diorite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 2, - "blockRuntimeId" : 6937 - } - ], - "shape" : [ - "AB", - "BA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diorite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -170, - "id" : "minecraft:diorite_stairs", - "count" : 4, - "blockRuntimeId" : 4425 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diorite_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1281 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dispenser", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 300, - "id" : "minecraft:bow", - "damage" : 32767 - }, - "C" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 23, - "id" : "minecraft:dispenser", - "blockRuntimeId" : 4439 - } - ], - "shape" : [ - "AAA", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dried_kelp", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -139, - "id" : "minecraft:dried_kelp_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dried_kelp_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -139, - "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 4533 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dripstone_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -308, - "id" : "minecraft:pointed_dripstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -317, - "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4534 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dripstone_block_from_pointed_dripstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -308, - "id" : "minecraft:pointed_dripstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -317, - "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4534 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dropper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 125, - "id" : "minecraft:dropper", - "blockRuntimeId" : 4538 - } - ], - "shape" : [ - "AAA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:emerald", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 133, - "id" : "minecraft:emerald_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 512, - "id" : "minecraft:emerald", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:emerald_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 133, - "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4666 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:empty_map_to_enhanced", - "type" : 0, - "input" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map" - }, - { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:enchanting_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "C" : { - "legacyId" : 49, - "id" : "minecraft:obsidian", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 116, - "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4668 - } - ], - "shape" : [ - " A ", - "BCB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -178, - "id" : "minecraft:end_brick_stairs", - "count" : 4, - "blockRuntimeId" : 4669 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1288 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 121, - "id" : "minecraft:end_stone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "count" : 4, - "blockRuntimeId" : 4677 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_crystal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 433, - "id" : "minecraft:ender_eye", - "damage" : 32767 - }, - "C" : { - "legacyId" : 424, - "id" : "minecraft:ghast_tear", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 629, - "id" : "minecraft:end_crystal" - } - ], - "shape" : [ - "AAA", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_rod", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : 559, - "id" : "minecraft:popped_chorus_fruit", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 208, - "id" : "minecraft:end_rod", - "count" : 4, - "blockRuntimeId" : 4688 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ender_chest", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 49, - "id" : "minecraft:obsidian", - "damage" : 32767 - }, - "B" : { - "legacyId" : 433, - "id" : "minecraft:ender_eye", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 130, - "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4695 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ender_eye", - "type" : 0, - "input" : [ - { - "legacyId" : 422, - "id" : "minecraft:ender_pearl", - "damage" : 32767 - }, - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 433, - "id" : "minecraft:ender_eye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4723 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 107, - "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4729 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fermented_spider_eye", - "type" : 0, - "input" : [ - { - "legacyId" : 278, - "id" : "minecraft:spider_eye", - "damage" : 32767 - }, - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 416, - "id" : "minecraft:sugar", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 428, - "id" : "minecraft:fermented_spider_eye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fishing_rod", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 392, - "id" : "minecraft:fishing_rod" - } - ], - "shape" : [ - " A", - " AB", - "A B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fletching_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -201, - "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4761 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fletching_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -201, - "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4761 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:fletching_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -201, - "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4761 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:flint_and_steel", - "type" : 0, - "input" : [ - { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 299, - "id" : "minecraft:flint_and_steel" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:flower_pot", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 383, - "id" : "minecraft:brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 514, - "id" : "minecraft:flower_pot" - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:furnace", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 61, - "id" : "minecraft:furnace", - "blockRuntimeId" : 4813 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:furnace_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 61, - "id" : "minecraft:furnace", - "blockRuntimeId" : 4813 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:furnace_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 61, - "id" : "minecraft:furnace", - "blockRuntimeId" : 4813 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:glass_bottle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "count" : 3 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "count" : 16, - "blockRuntimeId" : 4821 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:glow_frame", - "type" : 0, - "input" : [ - { - "legacyId" : 513, - "id" : "minecraft:frame", - "damage" : 32767 - }, - { - "legacyId" : 503, - "id" : "minecraft:glow_ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 621, - "id" : "minecraft:glow_frame" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:glowstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 394, - "id" : "minecraft:glowstone_dust", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 89, - "id" : "minecraft:glowstone", - "blockRuntimeId" : 4899 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 41, - "id" : "minecraft:gold_block", - "blockRuntimeId" : 4900 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_ingot_from_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 41, - "id" : "minecraft:gold_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_ingot_from_nuggets", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_nugget", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_apple", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 257, - "id" : "minecraft:apple", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 258, - "id" : "minecraft:golden_apple" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 325, - "id" : "minecraft:golden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 354, - "id" : "minecraft:golden_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_carrot", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 283, - "id" : "minecraft:golden_carrot" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 352, - "id" : "minecraft:golden_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 351, - "id" : "minecraft:golden_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 333, - "id" : "minecraft:golden_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 353, - "id" : "minecraft:golden_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 324, - "id" : "minecraft:golden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 27, - "id" : "minecraft:golden_rail", - "count" : 6, - "blockRuntimeId" : 4902 - } - ], - "shape" : [ - "A A", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 323, - "id" : "minecraft:golden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 322, - "id" : "minecraft:golden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:granite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - }, - { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 6935 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:granite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -169, - "id" : "minecraft:granite_stairs", - "count" : 4, - "blockRuntimeId" : 4914 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:granite_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1280 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 930 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 930 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3626 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_dye_from_black_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:gray_dye_from_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:gray_dye_from_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:gray_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6849 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6865 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6865 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6881 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 936 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 936 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3632 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6855 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6871 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6871 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6887 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:grindstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "damage" : 2 - }, - "C" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 4937 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 4937 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 4937 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 4937 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 4937 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 4937 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 4937 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 4937 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 4937 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:hay_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 170, - "id" : "minecraft:hay_block", - "blockRuntimeId" : 4989 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:heavy_weighted_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 148, - "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5001 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honey_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 591, - "id" : "minecraft:honey_bottle", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -220, - "id" : "minecraft:honey_block", - "blockRuntimeId" : 5017 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honey_bottle", - "type" : 0, - "input" : [ - { - "legacyId" : -220, - "id" : "minecraft:honey_block", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 591, - "id" : "minecraft:honey_bottle", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honey_bottle_to_sugar", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 591, - "id" : "minecraft:honey_bottle", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 416, - "id" : "minecraft:sugar", - "count" : 3 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honeycomb_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -221, - "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5018 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:hopper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 527, - "id" : "minecraft:hopper" - } - ], - "shape" : [ - "A A", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:hopper_minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 527, - "id" : "minecraft:hopper", - "damage" : 32767 - }, - "B" : { - "legacyId" : 370, - "id" : "minecraft:minecart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 526, - "id" : "minecraft:hopper_minecart" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ingots_from_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:ingots_from_waxed_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:iron_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 298, - "id" : "minecraft:iron_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_bars", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 101, - "id" : "minecraft:iron_bars", - "count" : 16, - "blockRuntimeId" : 5038 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 42, - "id" : "minecraft:iron_block", - "blockRuntimeId" : 5039 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 346, - "id" : "minecraft:iron_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 344, - "id" : "minecraft:iron_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 372, - "id" : "minecraft:iron_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 343, - "id" : "minecraft:iron_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 331, - "id" : "minecraft:iron_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_ingot_from_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 42, - "id" : "minecraft:iron_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_ingot_from_nuggets", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 305, - "id" : "minecraft:iron_ingot" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 345, - "id" : "minecraft:iron_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_nugget", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 297, - "id" : "minecraft:iron_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 296, - "id" : "minecraft:iron_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 307, - "id" : "minecraft:iron_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_trapdoor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 167, - "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5073 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:item_frame", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 513, - "id" : "minecraft:frame" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jukebox_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 84, - "id" : "minecraft:jukebox", - "blockRuntimeId" : 5113 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:jukebox_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 84, - "id" : "minecraft:jukebox", - "blockRuntimeId" : 5113 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:jungle_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 377, - "id" : "minecraft:jungle_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 555, - "id" : "minecraft:jungle_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4726 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 185, - "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5158 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5643 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5643 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5643 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5643 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 136, - "id" : "minecraft:jungle_stairs", - "count" : 4, - "blockRuntimeId" : 5190 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7554 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7560 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7650 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ladder", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 65, - "id" : "minecraft:ladder", - "count" : 3, - "blockRuntimeId" : 5262 - } - ], - "shape" : [ - "A A", - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lantern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 50, - "id" : "minecraft:torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -208, - "id" : "minecraft:lantern", - "blockRuntimeId" : 5268 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lapis_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - }, - "output" : [ - { - "legacyId" : 22, - "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5270 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lapis_lazuli", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 22, - "id" : "minecraft:lapis_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lead", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 547, - "id" : "minecraft:lead", - "count" : 2 - } - ], - "shape" : [ - "AA ", - "AB ", - " A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 529, - "id" : "minecraft:rabbit_hide", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 381, - "id" : "minecraft:leather" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 338, - "id" : "minecraft:leather_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 336, - "id" : "minecraft:leather_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 335, - "id" : "minecraft:leather_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_horse_armor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 530, - "id" : "minecraft:leather_horse_armor" - } - ], - "shape" : [ - "A A", - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 337, - "id" : "minecraft:leather_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lectern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - }, - "B" : { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -194, - "id" : "minecraft:lectern", - "blockRuntimeId" : 5339 - } - ], - "shape" : [ - "AAA", - " B ", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lectern_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - }, - "B" : { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -194, - "id" : "minecraft:lectern", - "blockRuntimeId" : 5339 - } - ], - "shape" : [ - "AAA", - " B ", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:lectern_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - }, - "B" : { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -194, - "id" : "minecraft:lectern", - "blockRuntimeId" : 5339 - } - ], - "shape" : [ - "AAA", - " B ", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:lever", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 69, - "id" : "minecraft:lever", - "blockRuntimeId" : 5347 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 926 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 926 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3622 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:light_blue_dye_from_blue_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:light_blue_dye_from_blue_orchid", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_dye_from_lapis_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 4 - }, - { - "id" : "minecraft:light_blue_dye_from_lapis_white", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:light_blue_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6845 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6861 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6861 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6877 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray__carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 931 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 931 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3627 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:light_gray_dye_from_azure_bluet", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:light_gray_dye_from_black_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 7 - }, - { - "id" : "minecraft:light_gray_dye_from_gray_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 6 - }, - { - "id" : "minecraft:light_gray_dye_from_gray_white", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 4 - }, - { - "id" : "minecraft:light_gray_dye_from_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 8 - }, - { - "id" : "minecraft:light_gray_dye_from_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 5 - }, - { - "id" : "minecraft:light_gray_dye_from_oxeye_daisy", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:light_gray_dye_from_white_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6850 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6866 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6866 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6882 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_weighted_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 147, - "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5385 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lightning_rod", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -312, - "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5401 - } - ], - "shape" : [ - "A", - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:lime__carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 928 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 928 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3624 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_dye_from_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:lime_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6847 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6863 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6863 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6879 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lit_pumpkin", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -155, - "id" : "minecraft:carved_pumpkin", - "damage" : 32767 - }, - "B" : { - "legacyId" : 50, - "id" : "minecraft:torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 91, - "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5426 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:locator_map", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lodestone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 3 - }, - "B" : { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -222, - "id" : "minecraft:lodestone", - "blockRuntimeId" : 5438 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:loom_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -204, - "id" : "minecraft:loom", - "blockRuntimeId" : 5457 - } - ], - "shape" : [ - "AA", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:loom_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -204, - "id" : "minecraft:loom", - "blockRuntimeId" : 5457 - } - ], - "shape" : [ - "AA", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:magenta_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 925 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 925 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3621 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:magenta_dye_from_allium", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:magenta_dye_from_blue_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 6 - }, - { - "id" : "minecraft:magenta_dye_from_blue_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 4 - }, - { - "id" : "minecraft:magenta_dye_from_lapis_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 8 - }, - { - "id" : "minecraft:magenta_dye_from_lapis_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 7 - }, - { - "id" : "minecraft:magenta_dye_from_lapis_red_pink", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 5 - }, - { - "id" : "minecraft:magenta_dye_from_lilac", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_dye_from_purple_and_pink", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:magenta_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6844 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6860 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6860 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magma", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 430, - "id" : "minecraft:magma_cream", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 213, - "id" : "minecraft:magma", - "blockRuntimeId" : 5467 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magma_cream", - "type" : 0, - "input" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - }, - { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 430, - "id" : "minecraft:magma_cream" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:map", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:melon_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 272, - "id" : "minecraft:melon_slice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 103, - "id" : "minecraft:melon_block", - "blockRuntimeId" : 5474 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:melon_seeds", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 272, - "id" : "minecraft:melon_slice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 293, - "id" : "minecraft:melon_seeds" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 370, - "id" : "minecraft:minecart" - } - ], - "shape" : [ - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:moss_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -320, - "id" : "minecraft:moss_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -335, - "id" : "minecraft:moss_carpet", - "count" : 3, - "blockRuntimeId" : 5531 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - { - "legacyId" : 106, - "id" : "minecraft:vine", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5532 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone_from_moss", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - { - "legacyId" : -320, - "id" : "minecraft:moss_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5532 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -179, - "id" : "minecraft:mossy_cobblestone_stairs", - "count" : 4, - "blockRuntimeId" : 5533 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1279 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stone_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -175, - "id" : "minecraft:mossy_stone_brick_stairs", - "count" : 4, - "blockRuntimeId" : 5541 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stone_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1286 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stonebrick", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - { - "legacyId" : 106, - "id" : "minecraft:vine", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7044 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stonebrick_from_moss", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - { - "legacyId" : -320, - "id" : "minecraft:moss_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7044 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mushroom_stew", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 260, - "id" : "minecraft:mushroom_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5551 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 113, - "id" : "minecraft:nether_brick_fence", - "count" : 6, - "blockRuntimeId" : 5552 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 114, - "id" : "minecraft:nether_brick_stairs", - "count" : 4, - "blockRuntimeId" : 5553 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1287 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_wart_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 294, - "id" : "minecraft:nether_wart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 214, - "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5567 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:netherite_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -270, - "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5568 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:netherite_ingot", - "type" : 0, - "input" : [ - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:netherite_ingot_from_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -270, - "id" : "minecraft:netherite_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:noteblock_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 25, - "id" : "minecraft:noteblock", - "blockRuntimeId" : 5579 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:noteblock_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 25, - "id" : "minecraft:noteblock", - "blockRuntimeId" : 5579 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:oak_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log" - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5640 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5640 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5640 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood" - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5640 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 53, - "id" : "minecraft:oak_stairs", - "count" : 4, - "blockRuntimeId" : 5580 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log" - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7551 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7557 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7647 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:observer", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 251, - "id" : "minecraft:observer", - "blockRuntimeId" : 5588 - } - ], - "shape" : [ - "AAA", - "BBC", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 924 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 924 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3620 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_dye_from_orange_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_dye_from_red_yellow", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - ], - "output" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6843 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6859 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6859 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6875 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:packed_ice", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 79, - "id" : "minecraft:ice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 174, - "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5621 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:paper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 385, - "id" : "minecraft:sugar_cane", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "count" : 3 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pillar_quartz_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "count" : 2, - "blockRuntimeId" : 6380 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 929 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 929 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3625 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye_from_peony", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye_from_pink_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye_from_red_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6848 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6864 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6864 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6880 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:piston_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "D" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 33, - "id" : "minecraft:piston", - "blockRuntimeId" : 5629 - } - ], - "shape" : [ - "AAA", - "BCB", - "BDB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:piston_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "D" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 33, - "id" : "minecraft:piston", - "blockRuntimeId" : 5629 - } - ], - "shape" : [ - "AAA", - "BCB", - "BDB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:polished_andesite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 4, - "blockRuntimeId" : 6940 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_andesite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : -174, - "id" : "minecraft:polished_andesite_stairs", - "count" : 4, - "blockRuntimeId" : 5657 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_basalt", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -234, - "id" : "minecraft:basalt", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -235, - "id" : "minecraft:polished_basalt", - "count" : 4, - "blockRuntimeId" : 5665 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "count" : 4, - "blockRuntimeId" : 5668 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_brick_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 6, - "blockRuntimeId" : 5671 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "count" : 4, - "blockRuntimeId" : 5673 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "count" : 6, - "blockRuntimeId" : 5681 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "count" : 4, - "blockRuntimeId" : 5843 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -296, - "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 5844 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -295, - "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 5858 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "count" : 6, - "blockRuntimeId" : 5874 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -292, - "id" : "minecraft:polished_blackstone_stairs", - "count" : 4, - "blockRuntimeId" : 5876 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -297, - "id" : "minecraft:polished_blackstone_wall", - "count" : 6, - "blockRuntimeId" : 5884 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "count" : 4, - "blockRuntimeId" : 6046 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_deepslate_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -384, - "id" : "minecraft:polished_deepslate_slab", - "count" : 6, - "blockRuntimeId" : 6049 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_deepslate_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -385, - "id" : "minecraft:polished_deepslate_stairs", - "count" : 4, - "blockRuntimeId" : 6051 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_deepslate_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -386, - "id" : "minecraft:polished_deepslate_wall", - "count" : 6, - "blockRuntimeId" : 6059 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_diorite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 4, - "blockRuntimeId" : 6938 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_diorite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -173, - "id" : "minecraft:polished_diorite_stairs", - "count" : 4, - "blockRuntimeId" : 6221 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_granite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 4, - "blockRuntimeId" : 6936 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_granite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -172, - "id" : "minecraft:polished_granite_stairs", - "count" : 4, - "blockRuntimeId" : 6229 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6281 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6283 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - }, - "output" : [ - { - "legacyId" : -2, - "id" : "minecraft:prismarine_stairs", - "count" : 4, - "blockRuntimeId" : 6292 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_stairs_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -4, - "id" : "minecraft:prismarine_bricks_stairs", - "count" : 4, - "blockRuntimeId" : 6284 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_stairs_dark", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -3, - "id" : "minecraft:dark_prismarine_stairs", - "count" : 4, - "blockRuntimeId" : 3986 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1289 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pumpkin_pie", - "type" : 0, - "input" : [ - { - "legacyId" : 86, - "id" : "minecraft:pumpkin", - "damage" : 32767 - }, - { - "legacyId" : 416, - "id" : "minecraft:sugar", - "damage" : 32767 - }, - { - "legacyId" : 390, - "id" : "minecraft:egg", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 284, - "id" : "minecraft:pumpkin_pie" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pumpkin_seeds", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 86, - "id" : "minecraft:pumpkin", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 292, - "id" : "minecraft:pumpkin_seeds", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 933 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 933 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3629 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "output" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_dye_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "output" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:purple_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6852 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6868 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6868 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6884 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purpur_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 559, - "id" : "minecraft:popped_chorus_fruit", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "count" : 4, - "blockRuntimeId" : 6358 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purpur_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 203, - "id" : "minecraft:purpur_stairs", - "count" : 4, - "blockRuntimeId" : 6370 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:quartz_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6378 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:quartz_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : -304, - "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6390 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:quartz_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : 156, - "id" : "minecraft:quartz_stairs", - "count" : 4, - "blockRuntimeId" : 6392 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:rabbit_stew_from_brown_mushroom", - "type" : 0, - "input" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - }, - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 290, - "id" : "minecraft:rabbit_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:rabbit_stew_from_red_mushroom", - "type" : 0, - "input" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 290, - "id" : "minecraft:rabbit_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 66, - "id" : "minecraft:rail", - "count" : 16, - "blockRuntimeId" : 6400 - } - ], - "shape" : [ - "A A", - "ABA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -452, - "id" : "minecraft:raw_copper_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_copper_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -452, - "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6410 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_gold", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -453, - "id" : "minecraft:raw_gold_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_gold_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -453, - "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6411 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_iron", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -451, - "id" : "minecraft:raw_iron_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_iron_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -451, - "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6412 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 937 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 937 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3633 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_beetroot", - "type" : 0, - "input" : [ - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_poppy", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower" - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_rose_bush", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_nether_brick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 294, - "id" : "minecraft:nether_wart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6447 - } - ], - "shape" : [ - "AB", - "BA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_nether_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -184, - "id" : "minecraft:red_nether_brick_stairs", - "count" : 4, - "blockRuntimeId" : 6448 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_nether_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1291 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 12, - "id" : "minecraft:sand", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6456 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 180, - "id" : "minecraft:red_sandstone_stairs", - "count" : 4, - "blockRuntimeId" : 6460 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_sandstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1290 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6856 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 14 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6872 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6872 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6888 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 152, - "id" : "minecraft:redstone_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 373, - "id" : "minecraft:redstone", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 152, - "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6468 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone_lamp", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 89, - "id" : "minecraft:glowstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 123, - "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6469 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone_torch", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6471 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:repeater", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 419, - "id" : "minecraft:repeater" - } - ], - "shape" : [ - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:respawn_anchor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -289, - "id" : "minecraft:crying_obsidian", - "damage" : 32767 - }, - "B" : { - "legacyId" : 89, - "id" : "minecraft:glowstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -272, - "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6522 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 12, - "id" : "minecraft:sand" - } - }, - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6529 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 128, - "id" : "minecraft:sandstone_stairs", - "count" : 4, - "blockRuntimeId" : 6533 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sandstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1283 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:scaffolding", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -163, - "id" : "minecraft:bamboo", - "damage" : 32767 - }, - "B" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -165, - "id" : "minecraft:scaffolding", - "count" : 6, - "blockRuntimeId" : 6553 - } - ], - "shape" : [ - "ABA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sealantern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 549, - "id" : "minecraft:prismarine_crystals", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 169, - "id" : "minecraft:sealantern", - "blockRuntimeId" : 6582 - } - ], - "shape" : [ - "ABA", - "BBB", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:shears", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 421, - "id" : "minecraft:shears" - } - ], - "shape" : [ - " A", - "A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:shield", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 355, - "id" : "minecraft:shield" - } - ], - "shape" : [ - "ABA", - "AAA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:shield_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 355, - "id" : "minecraft:shield" - } - ], - "shape" : [ - "ABA", - "AAA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:shield_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 355, - "id" : "minecraft:shield" - } - ], - "shape" : [ - "ABA", - "AAA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:shulker_box", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 566, - "id" : "minecraft:shulker_shell", - "damage" : 32767 - }, - "B" : { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7216 - } - ], - "shape" : [ - "A", - "B", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_acacia", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 579, - "id" : "minecraft:acacia_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_birch", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 577, - "id" : "minecraft:birch_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_darkoak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 580, - "id" : "minecraft:dark_oak_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_jungle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 578, - "id" : "minecraft:jungle_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_oak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 358, - "id" : "minecraft:oak_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_spruce", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 576, - "id" : "minecraft:spruce_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:slime", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 165, - "id" : "minecraft:slime", - "blockRuntimeId" : 6618 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:slime_ball", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 165, - "id" : "minecraft:slime", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smithing_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -202, - "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6633 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smithing_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -202, - "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6633 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smithing_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -202, - "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6633 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker_from_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_acacia", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_birch", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker_from_stripped_dark_oak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_jungle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_oak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_spruce", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker_from_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smooth_quartz_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -185, - "id" : "minecraft:smooth_quartz_stairs", - "count" : 4, - "blockRuntimeId" : 6641 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_red_sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "count" : 4, - "blockRuntimeId" : 6458 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_red_sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -176, - "id" : "minecraft:smooth_red_sandstone_stairs", - "count" : 4, - "blockRuntimeId" : 6649 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "count" : 4, - "blockRuntimeId" : 6531 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -177, - "id" : "minecraft:smooth_sandstone_stairs", - "count" : 4, - "blockRuntimeId" : 6657 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:snow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 374, - "id" : "minecraft:snowball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 80, - "id" : "minecraft:snow", - "blockRuntimeId" : 6666 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:snow_layer", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 80, - "id" : "minecraft:snow", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 78, - "id" : "minecraft:snow_layer", - "count" : 6, - "blockRuntimeId" : 6667 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:soul_campfire_from_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_crimson_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_crimson_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_warped_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_warped_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_lantern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : -268, - "id" : "minecraft:soul_torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -269, - "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6707 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:soul_torch_from_soul_sand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -268, - "id" : "minecraft:soul_torch", - "count" : 4, - "blockRuntimeId" : 6711 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:soul_torch_from_soul_soil", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -268, - "id" : "minecraft:soul_torch", - "count" : 4, - "blockRuntimeId" : 6711 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:speckled_melon", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 272, - "id" : "minecraft:melon_slice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 434, - "id" : "minecraft:glistering_melon_slice" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 378, - "id" : "minecraft:spruce_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 553, - "id" : "minecraft:spruce_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4724 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 183, - "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 6764 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5641 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5641 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5641 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5641 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 134, - "id" : "minecraft:spruce_stairs", - "count" : 4, - "blockRuntimeId" : 6796 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7552 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7558 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7648 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spyglass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 623, - "id" : "minecraft:amethyst_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 624, - "id" : "minecraft:spyglass" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:stick_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick", - "count" : 4 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stick_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick", - "count" : 4 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:sticky_piston", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - }, - "B" : { - "legacyId" : 33, - "id" : "minecraft:piston", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 29, - "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 6923 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 315, - "id" : "minecraft:stone_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_axe_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 315, - "id" : "minecraft:stone_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_axe_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 315, - "id" : "minecraft:stone_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - }, - "output" : [ - { - "legacyId" : 109, - "id" : "minecraft:stone_brick_stairs", - "count" : 4, - "blockRuntimeId" : 6941 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1285 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 77, - "id" : "minecraft:stone_button", - "blockRuntimeId" : 6949 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 330, - "id" : "minecraft:stone_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_hoe_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 330, - "id" : "minecraft:stone_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_hoe_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 330, - "id" : "minecraft:stone_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 314, - "id" : "minecraft:stone_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_pickaxe_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 314, - "id" : "minecraft:stone_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_pickaxe_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 314, - "id" : "minecraft:stone_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 70, - "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 6961 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 313, - "id" : "minecraft:stone_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_shovel_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 313, - "id" : "minecraft:stone_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_shovel_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 313, - "id" : "minecraft:stone_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : -180, - "id" : "minecraft:normal_stone_stairs", - "count" : 4, - "blockRuntimeId" : 5571 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 312, - "id" : "minecraft:stone_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_sword_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 312, - "id" : "minecraft:stone_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_sword_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 312, - "id" : "minecraft:stone_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stonebrick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "count" : 4, - "blockRuntimeId" : 7043 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -197, - "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7049 - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:string_to_wool", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stripped_crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -300, - "id" : "minecraft:stripped_crimson_hyphae", - "count" : 3, - "blockRuntimeId" : 7061 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stripped_warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -301, - "id" : "minecraft:stripped_warped_hyphae", - "count" : 3, - "blockRuntimeId" : 7079 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sugar", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 385, - "id" : "minecraft:sugar_cane", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 416, - "id" : "minecraft:sugar" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_allium", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_azure_bluet", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_blue_orchid", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_cornflower", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_dandelion", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 37, - "id" : "minecraft:yellow_flower", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_lily_of_the_valley", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_oxeye_daisy", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_poppy", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower" - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_orange", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_pink", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_red", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_white", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_wither_rose", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : -216, - "id" : "minecraft:wither_rose", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:target", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 170, - "id" : "minecraft:hay_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -239, - "id" : "minecraft:target", - "blockRuntimeId" : 7105 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:tinted_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 623, - "id" : "minecraft:amethyst_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -334, - "id" : "minecraft:tinted_glass", - "count" : 2, - "blockRuntimeId" : 7106 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:tnt", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - "B" : { - "legacyId" : 12, - "id" : "minecraft:sand", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 46, - "id" : "minecraft:tnt", - "blockRuntimeId" : 7107 - } - ], - "shape" : [ - "ABA", - "BAB", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:tnt_minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 46, - "id" : "minecraft:tnt" - }, - "B" : { - "legacyId" : 370, - "id" : "minecraft:minecart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 525, - "id" : "minecraft:tnt_minecart" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:trapped_chest", - "type" : 0, - "input" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - }, - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 146, - "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7133 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:tripwire_hook_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7155 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:tripwire_hook_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7155 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:turtle_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 572, - "id" : "minecraft:scute", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 573, - "id" : "minecraft:turtle_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -261, - "id" : "minecraft:warped_button", - "blockRuntimeId" : 7284 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 615, - "id" : "minecraft:warped_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -257, - "id" : "minecraft:warped_fence", - "count" : 3, - "blockRuntimeId" : 7330 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -259, - "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7331 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_fungus_on_a_stick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 392, - "id" : "minecraft:fishing_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : -229, - "id" : "minecraft:warped_fungus", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 616, - "id" : "minecraft:warped_fungus_on_a_stick" - } - ], - "shape" : [ - "A ", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -298, - "id" : "minecraft:warped_hyphae", - "count" : 3, - "blockRuntimeId" : 7348 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4, - "blockRuntimeId" : 7352 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks_from_stripped_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4, - "blockRuntimeId" : 7352 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks_from_stripped_warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -301, - "id" : "minecraft:stripped_warped_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4, - "blockRuntimeId" : 7352 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks_from_warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -298, - "id" : "minecraft:warped_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4, - "blockRuntimeId" : 7352 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -263, - "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7353 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_sign", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 613, - "id" : "minecraft:warped_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "count" : 6, - "blockRuntimeId" : 7370 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -255, - "id" : "minecraft:warped_stairs", - "count" : 4, - "blockRuntimeId" : 7372 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_trapdoor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -247, - "id" : "minecraft:warped_trapdoor", - "count" : 2, - "blockRuntimeId" : 7399 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:waxing_copper_block", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7439 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7440 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7441 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7443 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7453 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7454 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7455 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7457 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7467 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7468 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7469 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7471 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7481 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7482 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7483 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7485 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:wheat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 170, - "id" : "minecraft:hay_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 334, - "id" : "minecraft:wheat", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 923 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3619 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_concrete_powder_from_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3619 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:white_dye_from_bone_meal", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_dye_from_lily_of_the_valley", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6842 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_glass_from_bonemeal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6842 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:white_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6858 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6858 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6874 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_hardened_clay_from_bonemeal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6874 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:wooden_axe_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 311, - "id" : "minecraft:wooden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_axe_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 311, - "id" : "minecraft:wooden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 359, - "id" : "minecraft:wooden_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:wooden_hoe_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 329, - "id" : "minecraft:wooden_hoe" - } - ], - "shape" : [ - "AA ", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_hoe_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 329, - "id" : "minecraft:wooden_hoe" - } - ], - "shape" : [ - "AA ", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_pickaxe_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 310, - "id" : "minecraft:wooden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_pickaxe_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 310, - "id" : "minecraft:wooden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_shovel_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_shovel_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_sword_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 308, - "id" : "minecraft:wooden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_sword_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 308, - "id" : "minecraft:wooden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:writable_book", - "type" : 0, - "input" : [ - { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 327, - "id" : "minecraft:feather", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 510, - "id" : "minecraft:writable_book" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 927 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 927 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3623 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_dye_from_dandelion", - "type" : 0, - "input" : [ - { - "legacyId" : 37, - "id" : "minecraft:yellow_flower" - } - ], - "output" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_dye_from_sunflower", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant" - } - ], - "output" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6846 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 6862 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 6862 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 6878 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "oak_stairs_oak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 53, - "id" : "minecraft:oak_stairs", - "count" : 4, - "blockRuntimeId" : 5580 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_0_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star" - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_10_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_11_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_12_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_13_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_14_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_15_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_16_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star" - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_17_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_18_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_19_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_1_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_2_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_3_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_4_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_5_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_6_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_7_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_8_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_9_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_0_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_10_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 10, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_11_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 11, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_12_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 12, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_13_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 13, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_14_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 14, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_15_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_16_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_17_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_18_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_19_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_1_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 1, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_2_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 2, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_3_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_4_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_5_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 5, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_6_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 6, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_7_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 7, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_8_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 8, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_9_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 9, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "00000000-0000-0000-0000-000000000001" - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_16_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_17_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_18_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_19_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "slab3_endstonebrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7009 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "spruce_stairs_spruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 134, - "id" : "minecraft:spruce_stairs", - "count" : 4, - "blockRuntimeId" : 6796 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stick_wood_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick", - "count" : 4 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "stoneslab2_RedSandstone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 6993 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_prismarine_bricks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 6997 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_prismarine_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 6996 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_purpur_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 6994 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 6998 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_rednetherbrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7000 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_redsandstone_heiroglyphs_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 6993 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_smoothsandstone_smooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 6999 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_andesite_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7012 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_diorite_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7013 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_granite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7015 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_polishedGranite_GraniteSmooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7016 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_polished_andesite_andesitesmooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7011 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_polished_diorite_dioritesmooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7014 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_smooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7010 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab4_cut_redsandstone_cut_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7029 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab4_cut_sandstone_cut_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7028 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab4_smoothquartz_smooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7026 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab_quartz_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 6983 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 6995 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab_sandstone_heiroglyphs_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 6978 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "tool_material_recipe_0_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 310, - "id" : "minecraft:wooden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "tool_material_recipe_0_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "tool_material_recipe_0_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 311, - "id" : "minecraft:wooden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "tool_material_recipe_0_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 329, - "id" : "minecraft:wooden_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "type" : 4, - "uuid" : "aecd2294-4b94-434b-8667-4499bb2c9327" - }, - { - "id" : "weapon_arrow_recipe_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 11, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 12, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 13, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 14, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 14 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 15, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 15 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 16, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_16", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 16 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 17, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_17", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 17 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 18, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_18", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 18 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 19, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_19", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 19 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 20, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_20", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 20 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 21, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_21", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 21 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 22, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_22", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 22 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 23, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_23", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 23 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 24, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_24", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 24 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 25, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_25", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 25 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 26, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_26", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 26 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 27, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_27", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 27 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 28, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_28", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 28 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 29, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_29", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 29 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 30, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_30", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 30 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 31, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_31", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 31 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 32, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_32", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 32 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 33, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_33", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 33 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 34, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_34", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 34 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 35, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_35", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 35 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 36, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_36", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 36 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 37, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_37", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 37 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 38, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_38", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 38 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 39, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_39", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 39 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 40, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_40", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 40 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 41, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_41", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 41 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 42, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_42", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 42 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 43, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 6, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 7, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 8, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 9, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 10, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_stick_recipe_0_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 308, - "id" : "minecraft:wooden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "wool_dye_wool_0_1", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_10", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_11", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_12", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_13", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_14", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_15", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_2", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_3", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_4", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_5", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_6", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_7", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_8", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_9", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_0", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_1", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_11", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_12", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_13", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_14", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_15", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_2", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_3", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_4", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_5", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_6", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_7", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_8", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_9", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7664 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_0", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_1", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_10", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_12", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_13", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_14", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_15", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_2", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_3", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_4", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_5", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_6", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_7", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_8", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_9", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7663 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_0", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_1", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_10", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_11", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_13", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_14", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_15", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_2", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_3", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_4", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_5", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_6", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_7", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_8", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_9", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7662 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_0", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_1", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_10", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_11", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_12", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_14", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_15", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_2", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_3", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_4", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_5", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_6", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_7", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_8", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_9", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7661 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_0", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_1", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_10", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_11", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_12", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_13", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_15", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_2", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_3", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_4", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_5", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_6", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_7", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_8", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_9", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7660 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_0", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_1", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_10", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_11", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_12", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_13", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_14", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_2", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_3", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_4", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_5", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_6", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_7", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_8", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_9", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_1", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_10", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_11", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_12", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_13", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_14", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_15", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_2", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_3", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_4", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_5", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_6", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_7", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_8", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_9", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7674 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_0", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_1", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_10", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_11", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_12", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "version" : 448, + "recipes" : [ + { + "type" : 4, + "uuid" : "442d85ed-8272-4543-a6f1-418f90ded05d" + }, + { + "type" : 4, + "uuid" : "8b36268c-1829-483c-a0f1-993b7156a8f2" + }, + { + "type" : 4, + "uuid" : "602234e4-cac1-4353-8bb7-b1ebff70024b" + }, + { + "id" : "minecraft:cartography_table_locator_map", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "block" : "cartography_table", + "priority" : 0 + }, + { + "id" : "minecraft:cartography_table_map", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map" + } + ], + "block" : "cartography_table", + "priority" : 0 + }, + { + "type" : 4, + "uuid" : "98c84b38-1085-46bd-b1ce-dd38c159e6cc" + }, + { + "id" : "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -395, + "id" : "minecraft:chiseled_deepslate" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -380, + "id" : "minecraft:cobbled_deepslate_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -381, + "id" : "minecraft:cobbled_deepslate_stairs" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -382, + "id" : "minecraft:cobbled_deepslate_wall" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -384, + "id" : "minecraft:polished_deepslate_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -384, + "id" : "minecraft:polished_deepslate_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -385, + "id" : "minecraft:polished_deepslate_stairs" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -385, + "id" : "minecraft:polished_deepslate_stairs" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -386, + "id" : "minecraft:polished_deepslate_wall" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -386, + "id" : "minecraft:polished_deepslate_wall" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_andesite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_andesite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -171, + "id" : "minecraft:andesite_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_andesite_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_blackstone_slab_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -282, + "id" : "minecraft:blackstone_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_blackstone_stairs_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -276, + "id" : "minecraft:blackstone_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_blackstone_wall_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -277, + "id" : "minecraft:blackstone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_brick_slab_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "output" : [ + { + "legacyId" : 108, + "id" : "minecraft:brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_brick_stairs_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_wall_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_bricks_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_chiseled_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -279, + "id" : "minecraft:chiseled_polished_blackstone" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_chiseled_nether_bricks_from_nether_brick", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -302, + "id" : "minecraft:chiseled_nether_bricks" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_chiseled_polished_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -279, + "id" : "minecraft:chiseled_polished_blackstone" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_cobbledouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_cobblestone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + ], + "output" : [ + { + "legacyId" : 67, + "id" : "minecraft:stone_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_cobblestone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_copper_block_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_copper_block_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_copper_block_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_dark_prismarine_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_dark_prismarine_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -3, + "id" : "minecraft:dark_prismarine_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_diorite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_diorite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -170, + "id" : "minecraft:diorite_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_diorite_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_double_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_endbrick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_endbrick_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_endbrick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : -178, + "id" : "minecraft:end_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_endbrick_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "output" : [ + { + "legacyId" : -178, + "id" : "minecraft:end_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_endbrick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_endbrick_wall2", + "type" : 0, + "input" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_endbricks", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_exposed_copper_to_exposed_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_granite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_granite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -169, + "id" : "minecraft:granite_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_granite_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_mossy_cobbledouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_mossy_cobblestone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "output" : [ + { + "legacyId" : -179, + "id" : "minecraft:mossy_cobblestone_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_mossy_cobblestone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_mossy_stonebrick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_mossy_stonebrick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -175, + "id" : "minecraft:mossy_stone_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_mossy_stonebrick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_nether_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_nether_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "output" : [ + { + "legacyId" : 114, + "id" : "minecraft:nether_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_nether_brick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_andesite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -174, + "id" : "minecraft:polished_andesite_stairs" + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : -174, + "id" : "minecraft:polished_andesite_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_polished_basalt_from_basalt", + "type" : 0, + "input" : [ + { + "legacyId" : -234, + "id" : "minecraft:basalt", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -235, + "id" : "minecraft:polished_basalt" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_brick_slab_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_brick_stairs_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_brick_wall_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_bricks_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_diorite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -173, + "id" : "minecraft:polished_diorite_stairs" + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : -173, + "id" : "minecraft:polished_diorite_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_polished_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_granite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_polished_granite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_polished_granite_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_polished_granite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -172, + "id" : "minecraft:polished_granite_stairs" + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_polished_granite_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : -172, + "id" : "minecraft:polished_granite_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_polished_slab_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_stairs_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -292, + "id" : "minecraft:polished_blackstone_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_wall_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -297, + "id" : "minecraft:polished_blackstone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_prismarine_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_prismarine_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : -4, + "id" : "minecraft:prismarine_bricks_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_prismarine_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_prismarine_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "output" : [ + { + "legacyId" : -2, + "id" : "minecraft:prismarine_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_prismarine_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_purpur_lines", + "type" : 0, + "input" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "output" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_purpur_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_purpur_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "output" : [ + { + "legacyId" : 203, + "id" : "minecraft:purpur_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_quartz_bricks_from_quartz_block", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : -304, + "id" : "minecraft:quartz_bricks" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_quartz_chiseled", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_quartz_lines", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_quartz_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_quartz_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 156, + "id" : "minecraft:quartz_stairs" + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_red_nether_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_red_nether_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "output" : [ + { + "legacyId" : -184, + "id" : "minecraft:red_nether_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_red_nether_brick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_red_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_cut", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_heiroglyphs", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 180, + "id" : "minecraft:red_sandstone_stairs" + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_sandstone_cut", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_sandstone_heiroglyphs", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 128, + "id" : "minecraft:sandstone_stairs" + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_sandstone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_slab_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_slab_from_polished_blackstone_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_smooth_double_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -183, + "id" : "minecraft:smooth_stone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_quartz_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_quartz_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -185, + "id" : "minecraft:smooth_quartz_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_smooth_red_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_red_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -176, + "id" : "minecraft:smooth_red_sandstone_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_smooth_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -177, + "id" : "minecraft:smooth_sandstone_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_stairs_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -292, + "id" : "minecraft:polished_blackstone_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_stone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : -180, + "id" : "minecraft:normal_stone_stairs" + } + ], + "block" : "stonecutter", + "priority" : 6 + }, + { + "id" : "minecraft:stonecutter_stonebrick", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_stonebrick_chiseled", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_stonebrick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_stonebrick_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_stonebrick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 109, + "id" : "minecraft:stone_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_stonebrick_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "output" : [ + { + "legacyId" : 109, + "id" : "minecraft:stone_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_stonebrick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_stonebrick_wall2", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_wall_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -297, + "id" : "minecraft:polished_blackstone_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_wall_from_polished_blackstone_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_exposed_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab" + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper" + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "count" : 2 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "stonecutter_stairs_from_polished_blackstone_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs" + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "Bookshelf_woodplanks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 47, + "id" : "minecraft:bookshelf" + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "Bowl_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "count" : 4 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "ButtonAcacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -140, + "id" : "minecraft:acacia_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonBirch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -141, + "id" : "minecraft:birch_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonDarkOak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -142, + "id" : "minecraft:dark_oak_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonJungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -143, + "id" : "minecraft:jungle_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonSpruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -144, + "id" : "minecraft:spruce_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Chest_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest" + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "DaylightDetector_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass" + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 151, + "id" : "minecraft:daylight_detector" + } + ], + "shape" : [ + "AAA", + "BBB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "FireCharge_blaze_powder_coal_sulphur_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + }, + { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 509, + "id" : "minecraft:fire_charge", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "FireCharge_coal_sulphur_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + }, + { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 509, + "id" : "minecraft:fire_charge", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Jukebox_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 84, + "id" : "minecraft:jukebox" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "Note_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 25, + "id" : "minecraft:noteblock" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "Painting_Cobblestone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Painting_NetherBrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Painting_VanillaBlocks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Painting_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 357, + "id" : "minecraft:painting" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Piston_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + }, + "C" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "D" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 33, + "id" : "minecraft:piston" + } + ], + "shape" : [ + "AAA", + "BCB", + "BDB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "PressurePlateAcacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -150, + "id" : "minecraft:acacia_pressure_plate" + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateBirch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -151, + "id" : "minecraft:birch_pressure_plate" + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateDarkOak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -152, + "id" : "minecraft:dark_oak_pressure_plate" + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateJungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -153, + "id" : "minecraft:jungle_pressure_plate" + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateSpruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -154, + "id" : "minecraft:spruce_pressure_plate" + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Stick_bamboo_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -163, + "id" : "minecraft:bamboo" + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick" + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "StoneSlab4_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab4_stoneBrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab_Brick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab_StoneBrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -183, + "id" : "minecraft:smooth_stone" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Torch_charcoal_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 50, + "id" : "minecraft:torch", + "count" : 4 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Torch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 50, + "id" : "minecraft:torch", + "count" : 4 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorAcacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -145, + "id" : "minecraft:acacia_trapdoor", + "count" : 2 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorBirch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -146, + "id" : "minecraft:birch_trapdoor", + "count" : 2 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorDarkOak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -147, + "id" : "minecraft:dark_oak_trapdoor", + "count" : 2 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorJungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -148, + "id" : "minecraft:jungle_trapdoor", + "count" : 2 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorSpruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -149, + "id" : "minecraft:spruce_trapdoor", + "count" : 2 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Trapdoor_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 96, + "id" : "minecraft:trapdoor", + "count" : 2 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TripwireHook_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "count" : 2 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "WoodButton_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 143, + "id" : "minecraft:wooden_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "WoodPressurePlate_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 72, + "id" : "minecraft:wooden_pressure_plate" + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "WorkBench_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 58, + "id" : "minecraft:crafting_table" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "acacia_stairs_acacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 163, + "id" : "minecraft:acacia_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "d81aaeaf-e172-4440-9225-868df030d27b" + }, + { + "type" : 4, + "uuid" : "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" + }, + { + "type" : 4, + "uuid" : "00000000-0000-0000-0000-000000000002" + }, + { + "id" : "bed_color_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_crimson_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_dye_0_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "birch_stairs_birch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 135, + "id" : "minecraft:birch_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" + }, + { + "id" : "chiseled_quartz_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "chiseled_stonebrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "85939755-ba10-4d9d-a4cc-efb7a8e943c4" + }, + { + "id" : "dark_oak_stairs_dark_oak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 164, + "id" : "minecraft:dark_oak_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "d392b075-4ba1-40ae-8789-af868d56f6ce" + }, + { + "id" : "heiroglyphs_redsandstone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2" + } + }, + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "heiroglyphs_sandstone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "jungle_stairs_jungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 136, + "id" : "minecraft:jungle_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "lines_purpur_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "loom_block_wood_planks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -204, + "id" : "minecraft:loom" + } + ], + "shape" : [ + "AA", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 379, + "id" : "minecraft:acacia_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 556, + "id" : "minecraft:acacia_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 187, + "id" : "minecraft:acacia_fence_gate" + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2" + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 163, + "id" : "minecraft:acacia_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2" + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:activator_rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 126, + "id" : "minecraft:activator_rail", + "count" : 6 + } + ], + "shape" : [ + "ABA", + "ACA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:amethyst_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 623, + "id" : "minecraft:amethyst_shard", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -327, + "id" : "minecraft:amethyst_block" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:andesite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + }, + { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:andesite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -171, + "id" : "minecraft:andesite_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:andesite_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:anvil", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 42, + "id" : "minecraft:iron_block", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 145, + "id" : "minecraft:anvil" + } + ], + "shape" : [ + "AAA", + " B ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:armor_stand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab" + } + }, + "output" : [ + { + "legacyId" : 552, + "id" : "minecraft:armor_stand" + } + ], + "shape" : [ + "AAA", + " A ", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:arrow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 327, + "id" : "minecraft:feather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "count" : 4 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 585, + "id" : "minecraft:field_masoned_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_creeper", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 516, + "id" : "minecraft:skull", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 582, + "id" : "minecraft:creeper_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_flower", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 581, + "id" : "minecraft:flower_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_skull", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 516, + "id" : "minecraft:skull", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 583, + "id" : "minecraft:skull_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_thing", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 259, + "id" : "minecraft:enchanted_golden_apple", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 584, + "id" : "minecraft:mojang_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_vines", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 106, + "id" : "minecraft:vine", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 586, + "id" : "minecraft:bordure_indented_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:barrel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -203, + "id" : "minecraft:barrel" + } + ], + "shape" : [ + "ABA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:barrel_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -203, + "id" : "minecraft:barrel" + } + ], + "shape" : [ + "ABA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:barrel_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -203, + "id" : "minecraft:barrel" + } + ], + "shape" : [ + "ABA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:basic_map_to_enhanced", + "type" : 0, + "input" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 1 + }, + { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:beacon", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 518, + "id" : "minecraft:nether_star", + "damage" : 32767 + }, + "C" : { + "legacyId" : 49, + "id" : "minecraft:obsidian", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 138, + "id" : "minecraft:beacon" + } + ], + "shape" : [ + "AAA", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:beehive", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -219, + "id" : "minecraft:beehive" + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:beehive_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -219, + "id" : "minecraft:beehive" + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:beehive_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -219, + "id" : "minecraft:beehive" + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:beetroot_soup", + "type" : 0, + "input" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 286, + "id" : "minecraft:beetroot_soup" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 376, + "id" : "minecraft:birch_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 554, + "id" : "minecraft:birch_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 184, + "id" : "minecraft:birch_fence_gate" + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 135, + "id" : "minecraft:birch_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner" + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + ], + "output" : [ + { + "legacyId" : -428, + "id" : "minecraft:black_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_candle_from_ink_sac", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + ], + "output" : [ + { + "legacyId" : -428, + "id" : "minecraft:black_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:black_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_concrete_powder_from_ink_sac", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:black_dye_from_ink_sac", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + ], + "output" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_dye_from_wither_rose", + "type" : 0, + "input" : [ + { + "legacyId" : -216, + "id" : "minecraft:wither_rose", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_glass_from_ink_sac", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:black_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 15 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_hardened_clay_from_ink_sac", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:blackstone_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -282, + "id" : "minecraft:blackstone_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blackstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -276, + "id" : "minecraft:blackstone_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blackstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -277, + "id" : "minecraft:blackstone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blast_furnace", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + }, + "C" : { + "legacyId" : -183, + "id" : "minecraft:smooth_stone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -196, + "id" : "minecraft:blast_furnace" + } + ], + "shape" : [ + "AAA", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blaze_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + ], + "output" : [ + { + "legacyId" : -424, + "id" : "minecraft:blue_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_candle_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + ], + "output" : [ + { + "legacyId" : -424, + "id" : "minecraft:blue_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_concrete_powder_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:blue_dye_from_cornflower", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_dye_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + ], + "output" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_ice", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 174, + "id" : "minecraft:packed_ice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -11, + "id" : "minecraft:blue_ice" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_glass_from_lapis_lazuli", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:blue_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_hardened_clay_from_lapis_lazuli", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 375, + "id" : "minecraft:oak_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bone_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + }, + "output" : [ + { + "legacyId" : 216, + "id" : "minecraft:bone_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bone_meal_from_block", + "type" : 0, + "input" : [ + { + "legacyId" : 216, + "id" : "minecraft:bone_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "count" : 9 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bone_meal_from_bone", + "type" : 0, + "input" : [ + { + "legacyId" : 415, + "id" : "minecraft:bone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:book", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper" + }, + { + "legacyId" : 386, + "id" : "minecraft:paper" + }, + { + "legacyId" : 386, + "id" : "minecraft:paper" + }, + { + "legacyId" : 381, + "id" : "minecraft:leather" + } + ], + "output" : [ + { + "legacyId" : 387, + "id" : "minecraft:book" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bookshelf_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 47, + "id" : "minecraft:bookshelf" + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bookshelf_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 47, + "id" : "minecraft:bookshelf" + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 300, + "id" : "minecraft:bow" + } + ], + "shape" : [ + " AB", + "A B", + " AB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bowl_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "count" : 4 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bowl_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "count" : 4 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bread", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 261, + "id" : "minecraft:bread" + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brewing_stand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 431, + "id" : "minecraft:brewing_stand" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brewing_stand_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 431, + "id" : "minecraft:brewing_stand" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:brewing_stand_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 431, + "id" : "minecraft:brewing_stand" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:brick_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 383, + "id" : "minecraft:brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 108, + "id" : "minecraft:brick_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + ], + "output" : [ + { + "legacyId" : -425, + "id" : "minecraft:brown_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_candle_from_cocoa_beans", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + ], + "output" : [ + { + "legacyId" : -425, + "id" : "minecraft:brown_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_concrete_powder_from_cocoa_beans", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:brown_dye_from_cocoa_beans", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + ], + "output" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_glass_from_cocoa_beans", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:brown_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_hardened_clay_from_cocoa_beans", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:bucket", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 360, + "id" : "minecraft:bucket" + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cake", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 361, + "id" : "minecraft:milk_bucket" + }, + "B" : { + "legacyId" : 416, + "id" : "minecraft:sugar", + "damage" : 32767 + }, + "C" : { + "legacyId" : 390, + "id" : "minecraft:egg", + "damage" : 32767 + }, + "D" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 417, + "id" : "minecraft:cake" + }, + { + "legacyId" : 360, + "id" : "minecraft:bucket", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "BCB", + "DDD" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:campfire_from_charcoal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:candle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:carrot_on_a_stick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 392, + "id" : "minecraft:fishing_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 517, + "id" : "minecraft:carrot_on_a_stick" + } + ], + "shape" : [ + "A ", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cartography_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -200, + "id" : "minecraft:cartography_table" + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cartography_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -200, + "id" : "minecraft:cartography_table" + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:cartography_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -200, + "id" : "minecraft:cartography_table" + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:cauldron", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 432, + "id" : "minecraft:cauldron" + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chain", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 617, + "id" : "minecraft:chain" + } + ], + "shape" : [ + "A", + "B", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chest_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest" + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:chest_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest" + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:chest_minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + }, + "B" : { + "legacyId" : 370, + "id" : "minecraft:minecart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 389, + "id" : "minecraft:chest_minecart" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chiseled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -380, + "id" : "minecraft:cobbled_deepslate_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -395, + "id" : "minecraft:chiseled_deepslate" + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:chiseled_nether_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : -302, + "id" : "minecraft:chiseled_nether_bricks" + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chiseled_polished_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -279, + "id" : "minecraft:chiseled_polished_blackstone" + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 384, + "id" : "minecraft:clay_ball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 82, + "id" : "minecraft:clay" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:clock", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 393, + "id" : "minecraft:clock" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:coal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 173, + "id" : "minecraft:coal_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 302, + "id" : "minecraft:coal", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:coal_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + } + }, + "output" : [ + { + "legacyId" : 173, + "id" : "minecraft:coal_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:coarse_dirt", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 3, + "id" : "minecraft:dirt" + }, + "B" : { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 3, + "id" : "minecraft:dirt", + "count" : 4 + } + ], + "shape" : [ + "AB", + "BA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -380, + "id" : "minecraft:cobbled_deepslate_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -381, + "id" : "minecraft:cobbled_deepslate_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cobbled_deepslate_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -382, + "id" : "minecraft:cobbled_deepslate_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cobblestone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 67, + "id" : "minecraft:stone_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cobblestone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cobweb_to_string", + "type" : 0, + "input" : [ + { + "legacyId" : 30, + "id" : "minecraft:web", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 326, + "id" : "minecraft:string", + "count" : 9 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:comparator", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 522, + "id" : "minecraft:comparator" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:compass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 391, + "id" : "minecraft:compass" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:composter", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -213, + "id" : "minecraft:composter" + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:composter_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -213, + "id" : "minecraft:composter" + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:composter_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -213, + "id" : "minecraft:composter" + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:conduit", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 570, + "id" : "minecraft:nautilus_shell", + "damage" : 32767 + }, + "B" : { + "legacyId" : 571, + "id" : "minecraft:heart_of_the_sea", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -157, + "id" : "minecraft:conduit" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cookie", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + }, + "B" : { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + }, + "output" : [ + { + "legacyId" : 271, + "id" : "minecraft:cookie", + "count" : 8 + } + ], + "shape" : [ + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:copper_block_from_ingots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_exposed_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_exposed_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_exposed_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 58, + "id" : "minecraft:crafting_table" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:crafting_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 58, + "id" : "minecraft:crafting_table" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:crafting_table_oxidized_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_oxidized_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_oxidized_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_exposed_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_weathered_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_weathered_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_weathered_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_weathered_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crimson_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -260, + "id" : "minecraft:crimson_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 614, + "id" : "minecraft:crimson_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -256, + "id" : "minecraft:crimson_fence", + "count" : 3 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -258, + "id" : "minecraft:crimson_fence_gate" + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -299, + "id" : "minecraft:crimson_hyphae", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks_from_crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -299, + "id" : "minecraft:crimson_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks_from_stripped_crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -300, + "id" : "minecraft:stripped_crimson_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks_from_stripped_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -262, + "id" : "minecraft:crimson_pressure_plate" + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_sign", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 612, + "id" : "minecraft:crimson_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -254, + "id" : "minecraft:crimson_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_trapdoor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -246, + "id" : "minecraft:crimson_trapdoor", + "count" : 2 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crossbow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "C" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "D" : { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 575, + "id" : "minecraft:crossbow" + } + ], + "shape" : [ + "ABA", + "CDC", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + ], + "output" : [ + { + "legacyId" : -422, + "id" : "minecraft:cyan_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + ], + "output" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_dye_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + ], + "output" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cyan_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 380, + "id" : "minecraft:dark_oak_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 557, + "id" : "minecraft:dark_oak_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 186, + "id" : "minecraft:dark_oak_fence_gate" + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 164, + "id" : "minecraft:dark_oak_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_prismarine", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_prismarine_from_ink_sac", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:daylight_detector_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 151, + "id" : "minecraft:daylight_detector" + } + ], + "shape" : [ + "AAA", + "BBB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:daylight_detector_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 151, + "id" : "minecraft:daylight_detector" + } + ], + "shape" : [ + "AAA", + "BBB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:deepslate_brick_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tile_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tile_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tile_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tiles", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:detector_rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 70, + "id" : "minecraft:stone_pressure_plate", + "damage" : 32767 + }, + "C" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 28, + "id" : "minecraft:detector_rail", + "count" : 6 + } + ], + "shape" : [ + "A A", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 57, + "id" : "minecraft:diamond_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 304, + "id" : "minecraft:diamond", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 319, + "id" : "minecraft:diamond_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 57, + "id" : "minecraft:diamond_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 350, + "id" : "minecraft:diamond_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 348, + "id" : "minecraft:diamond_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 347, + "id" : "minecraft:diamond_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 332, + "id" : "minecraft:diamond_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 349, + "id" : "minecraft:diamond_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 318, + "id" : "minecraft:diamond_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 317, + "id" : "minecraft:diamond_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 316, + "id" : "minecraft:diamond_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diorite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 2 + } + ], + "shape" : [ + "AB", + "BA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diorite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -170, + "id" : "minecraft:diorite_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diorite_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dispenser", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 300, + "id" : "minecraft:bow", + "damage" : 32767 + }, + "C" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 23, + "id" : "minecraft:dispenser" + } + ], + "shape" : [ + "AAA", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dried_kelp", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -139, + "id" : "minecraft:dried_kelp_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dried_kelp_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -139, + "id" : "minecraft:dried_kelp_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dripstone_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -308, + "id" : "minecraft:pointed_dripstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -317, + "id" : "minecraft:dripstone_block" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dripstone_block_from_pointed_dripstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -308, + "id" : "minecraft:pointed_dripstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -317, + "id" : "minecraft:dripstone_block" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dropper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 125, + "id" : "minecraft:dropper" + } + ], + "shape" : [ + "AAA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:emerald", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 133, + "id" : "minecraft:emerald_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 512, + "id" : "minecraft:emerald", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:emerald_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 133, + "id" : "minecraft:emerald_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:empty_map_to_enhanced", + "type" : 0, + "input" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map" + }, + { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:enchanting_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "C" : { + "legacyId" : 49, + "id" : "minecraft:obsidian", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 116, + "id" : "minecraft:enchanting_table" + } + ], + "shape" : [ + " A ", + "BCB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -178, + "id" : "minecraft:end_brick_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 121, + "id" : "minecraft:end_stone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_crystal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 433, + "id" : "minecraft:ender_eye", + "damage" : 32767 + }, + "C" : { + "legacyId" : 424, + "id" : "minecraft:ghast_tear", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 629, + "id" : "minecraft:end_crystal" + } + ], + "shape" : [ + "AAA", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_rod", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : 559, + "id" : "minecraft:popped_chorus_fruit", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 208, + "id" : "minecraft:end_rod", + "count" : 4 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ender_chest", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 49, + "id" : "minecraft:obsidian", + "damage" : 32767 + }, + "B" : { + "legacyId" : 433, + "id" : "minecraft:ender_eye", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 130, + "id" : "minecraft:ender_chest" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ender_eye", + "type" : 0, + "input" : [ + { + "legacyId" : 422, + "id" : "minecraft:ender_pearl", + "damage" : 32767 + }, + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 433, + "id" : "minecraft:ender_eye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 107, + "id" : "minecraft:fence_gate" + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fermented_spider_eye", + "type" : 0, + "input" : [ + { + "legacyId" : 278, + "id" : "minecraft:spider_eye", + "damage" : 32767 + }, + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 416, + "id" : "minecraft:sugar", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 428, + "id" : "minecraft:fermented_spider_eye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fishing_rod", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 392, + "id" : "minecraft:fishing_rod" + } + ], + "shape" : [ + " A", + " AB", + "A B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fletching_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -201, + "id" : "minecraft:fletching_table" + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fletching_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -201, + "id" : "minecraft:fletching_table" + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:fletching_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -201, + "id" : "minecraft:fletching_table" + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:flint_and_steel", + "type" : 0, + "input" : [ + { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 299, + "id" : "minecraft:flint_and_steel" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:flower_pot", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 383, + "id" : "minecraft:brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 514, + "id" : "minecraft:flower_pot" + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:furnace", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 61, + "id" : "minecraft:furnace" + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:furnace_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 61, + "id" : "minecraft:furnace" + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:furnace_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 61, + "id" : "minecraft:furnace" + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:glass_bottle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "count" : 3 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:glow_frame", + "type" : 0, + "input" : [ + { + "legacyId" : 513, + "id" : "minecraft:frame", + "damage" : 32767 + }, + { + "legacyId" : 503, + "id" : "minecraft:glow_ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:glow_frame" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:glowstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 394, + "id" : "minecraft:glowstone_dust", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 89, + "id" : "minecraft:glowstone" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 41, + "id" : "minecraft:gold_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_ingot_from_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 41, + "id" : "minecraft:gold_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_ingot_from_nuggets", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_nugget", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_apple", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 257, + "id" : "minecraft:apple", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 258, + "id" : "minecraft:golden_apple" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 325, + "id" : "minecraft:golden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 354, + "id" : "minecraft:golden_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_carrot", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 283, + "id" : "minecraft:golden_carrot" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 352, + "id" : "minecraft:golden_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 351, + "id" : "minecraft:golden_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 333, + "id" : "minecraft:golden_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 353, + "id" : "minecraft:golden_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 324, + "id" : "minecraft:golden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 27, + "id" : "minecraft:golden_rail", + "count" : 6 + } + ], + "shape" : [ + "A A", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 323, + "id" : "minecraft:golden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 322, + "id" : "minecraft:golden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:granite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + }, + { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:granite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -169, + "id" : "minecraft:granite_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:granite_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + ], + "output" : [ + { + "legacyId" : -420, + "id" : "minecraft:gray_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_dye_from_black_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:gray_dye_from_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:gray_dye_from_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:gray_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + ], + "output" : [ + { + "legacyId" : -426, + "id" : "minecraft:green_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:grindstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "damage" : 2 + }, + "C" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone" + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone" + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone" + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone" + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone" + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone" + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone" + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone" + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone" + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:hay_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 170, + "id" : "minecraft:hay_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:heavy_weighted_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 148, + "id" : "minecraft:heavy_weighted_pressure_plate" + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honey_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 591, + "id" : "minecraft:honey_bottle", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -220, + "id" : "minecraft:honey_block" + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honey_bottle", + "type" : 0, + "input" : [ + { + "legacyId" : -220, + "id" : "minecraft:honey_block", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 591, + "id" : "minecraft:honey_bottle", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honey_bottle_to_sugar", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 591, + "id" : "minecraft:honey_bottle", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 416, + "id" : "minecraft:sugar", + "count" : 3 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honeycomb_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -221, + "id" : "minecraft:honeycomb_block" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:hopper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 527, + "id" : "minecraft:hopper" + } + ], + "shape" : [ + "A A", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:hopper_minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 527, + "id" : "minecraft:hopper", + "damage" : 32767 + }, + "B" : { + "legacyId" : 370, + "id" : "minecraft:minecart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 526, + "id" : "minecraft:hopper_minecart" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ingots_from_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:ingots_from_waxed_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:iron_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 298, + "id" : "minecraft:iron_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_bars", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 101, + "id" : "minecraft:iron_bars", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 42, + "id" : "minecraft:iron_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 346, + "id" : "minecraft:iron_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 344, + "id" : "minecraft:iron_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 372, + "id" : "minecraft:iron_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 343, + "id" : "minecraft:iron_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 331, + "id" : "minecraft:iron_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_ingot_from_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 42, + "id" : "minecraft:iron_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_ingot_from_nuggets", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 305, + "id" : "minecraft:iron_ingot" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 345, + "id" : "minecraft:iron_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_nugget", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 297, + "id" : "minecraft:iron_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 296, + "id" : "minecraft:iron_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 307, + "id" : "minecraft:iron_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_trapdoor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 167, + "id" : "minecraft:iron_trapdoor" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:item_frame", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 513, + "id" : "minecraft:frame" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jukebox_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 84, + "id" : "minecraft:jukebox" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:jukebox_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 84, + "id" : "minecraft:jukebox" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:jungle_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 377, + "id" : "minecraft:jungle_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 555, + "id" : "minecraft:jungle_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 185, + "id" : "minecraft:jungle_fence_gate" + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 136, + "id" : "minecraft:jungle_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ladder", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 65, + "id" : "minecraft:ladder", + "count" : 3 + } + ], + "shape" : [ + "A A", + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lantern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 50, + "id" : "minecraft:torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -208, + "id" : "minecraft:lantern" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lapis_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + }, + "output" : [ + { + "legacyId" : 22, + "id" : "minecraft:lapis_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lapis_lazuli", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 22, + "id" : "minecraft:lapis_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lead", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 547, + "id" : "minecraft:lead", + "count" : 2 + } + ], + "shape" : [ + "AA ", + "AB ", + " A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 529, + "id" : "minecraft:rabbit_hide", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 381, + "id" : "minecraft:leather" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 338, + "id" : "minecraft:leather_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 336, + "id" : "minecraft:leather_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 335, + "id" : "minecraft:leather_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_horse_armor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 530, + "id" : "minecraft:leather_horse_armor" + } + ], + "shape" : [ + "A A", + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 337, + "id" : "minecraft:leather_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lectern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + }, + "B" : { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -194, + "id" : "minecraft:lectern" + } + ], + "shape" : [ + "AAA", + " B ", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lectern_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + }, + "B" : { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -194, + "id" : "minecraft:lectern" + } + ], + "shape" : [ + "AAA", + " B ", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:lectern_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + }, + "B" : { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -194, + "id" : "minecraft:lectern" + } + ], + "shape" : [ + "AAA", + " B ", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:lever", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 69, + "id" : "minecraft:lever" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + ], + "output" : [ + { + "legacyId" : -416, + "id" : "minecraft:light_blue_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:light_blue_dye_from_blue_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:light_blue_dye_from_blue_orchid", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_dye_from_lapis_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 4 + }, + { + "id" : "minecraft:light_blue_dye_from_lapis_white", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:light_blue_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray__carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "output" : [ + { + "legacyId" : -421, + "id" : "minecraft:light_gray_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:light_gray_dye_from_azure_bluet", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:light_gray_dye_from_black_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 7 + }, + { + "id" : "minecraft:light_gray_dye_from_gray_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 6 + }, + { + "id" : "minecraft:light_gray_dye_from_gray_white", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 4 + }, + { + "id" : "minecraft:light_gray_dye_from_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 8 + }, + { + "id" : "minecraft:light_gray_dye_from_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 5 + }, + { + "id" : "minecraft:light_gray_dye_from_oxeye_daisy", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:light_gray_dye_from_white_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_weighted_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 147, + "id" : "minecraft:light_weighted_pressure_plate" + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lightning_rod", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -312, + "id" : "minecraft:lightning_rod" + } + ], + "shape" : [ + "A", + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:lime__carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + ], + "output" : [ + { + "legacyId" : -418, + "id" : "minecraft:lime_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_dye_from_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:lime_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lit_pumpkin", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -155, + "id" : "minecraft:carved_pumpkin", + "damage" : 32767 + }, + "B" : { + "legacyId" : 50, + "id" : "minecraft:torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 91, + "id" : "minecraft:lit_pumpkin" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:locator_map", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lodestone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 3 + }, + "B" : { + "legacyId" : 601, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -222, + "id" : "minecraft:lodestone" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:loom_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -204, + "id" : "minecraft:loom" + } + ], + "shape" : [ + "AA", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:loom_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -204, + "id" : "minecraft:loom" + } + ], + "shape" : [ + "AA", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:magenta_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + ], + "output" : [ + { + "legacyId" : -415, + "id" : "minecraft:magenta_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:magenta_dye_from_allium", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:magenta_dye_from_blue_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 6 + }, + { + "id" : "minecraft:magenta_dye_from_blue_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 4 + }, + { + "id" : "minecraft:magenta_dye_from_lapis_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 8 + }, + { + "id" : "minecraft:magenta_dye_from_lapis_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 7 + }, + { + "id" : "minecraft:magenta_dye_from_lapis_red_pink", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 5 + }, + { + "id" : "minecraft:magenta_dye_from_lilac", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_dye_from_purple_and_pink", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:magenta_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magma", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 430, + "id" : "minecraft:magma_cream", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 213, + "id" : "minecraft:magma" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magma_cream", + "type" : 0, + "input" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + }, + { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 430, + "id" : "minecraft:magma_cream" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:map", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:melon_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 272, + "id" : "minecraft:melon_slice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 103, + "id" : "minecraft:melon_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:melon_seeds", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 272, + "id" : "minecraft:melon_slice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 293, + "id" : "minecraft:melon_seeds" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 370, + "id" : "minecraft:minecart" + } + ], + "shape" : [ + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:moss_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -320, + "id" : "minecraft:moss_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -335, + "id" : "minecraft:moss_carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + { + "legacyId" : 106, + "id" : "minecraft:vine", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone_from_moss", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + { + "legacyId" : -320, + "id" : "minecraft:moss_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -179, + "id" : "minecraft:mossy_cobblestone_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stone_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -175, + "id" : "minecraft:mossy_stone_brick_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stone_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stonebrick", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + { + "legacyId" : 106, + "id" : "minecraft:vine", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stonebrick_from_moss", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + { + "legacyId" : -320, + "id" : "minecraft:moss_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mushroom_stew", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 260, + "id" : "minecraft:mushroom_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 113, + "id" : "minecraft:nether_brick_fence", + "count" : 6 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 114, + "id" : "minecraft:nether_brick_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_wart_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 294, + "id" : "minecraft:nether_wart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 214, + "id" : "minecraft:nether_wart_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:netherite_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 601, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -270, + "id" : "minecraft:netherite_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:netherite_ingot", + "type" : 0, + "input" : [ + { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 601, + "id" : "minecraft:netherite_ingot" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:netherite_ingot_from_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -270, + "id" : "minecraft:netherite_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 601, + "id" : "minecraft:netherite_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:noteblock_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 25, + "id" : "minecraft:noteblock" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:noteblock_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 25, + "id" : "minecraft:noteblock" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:oak_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log" + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood" + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 53, + "id" : "minecraft:oak_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log" + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:observer", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 251, + "id" : "minecraft:observer" + } + ], + "shape" : [ + "AAA", + "BBC", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + ], + "output" : [ + { + "legacyId" : -414, + "id" : "minecraft:orange_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_dye_from_orange_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_dye_from_red_yellow", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + ], + "output" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:packed_ice", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 79, + "id" : "minecraft:ice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 174, + "id" : "minecraft:packed_ice" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:paper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 385, + "id" : "minecraft:sugar_cane", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "count" : 3 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pillar_quartz_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "count" : 2 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : -419, + "id" : "minecraft:pink_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye_from_peony", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye_from_pink_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye_from_red_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:piston_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "D" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 33, + "id" : "minecraft:piston" + } + ], + "shape" : [ + "AAA", + "BCB", + "BDB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:piston_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "D" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 33, + "id" : "minecraft:piston" + } + ], + "shape" : [ + "AAA", + "BCB", + "BDB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:polished_andesite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_andesite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : -174, + "id" : "minecraft:polished_andesite_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_basalt", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -234, + "id" : "minecraft:basalt", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -235, + "id" : "minecraft:polished_basalt", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_brick_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -296, + "id" : "minecraft:polished_blackstone_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -295, + "id" : "minecraft:polished_blackstone_pressure_plate" + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -292, + "id" : "minecraft:polished_blackstone_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -297, + "id" : "minecraft:polished_blackstone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_deepslate_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -384, + "id" : "minecraft:polished_deepslate_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_deepslate_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -385, + "id" : "minecraft:polished_deepslate_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_deepslate_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -386, + "id" : "minecraft:polished_deepslate_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_diorite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_diorite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -173, + "id" : "minecraft:polished_diorite_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_granite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_granite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -172, + "id" : "minecraft:polished_granite_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + }, + "output" : [ + { + "legacyId" : -2, + "id" : "minecraft:prismarine_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_stairs_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -4, + "id" : "minecraft:prismarine_bricks_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_stairs_dark", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -3, + "id" : "minecraft:dark_prismarine_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pumpkin_pie", + "type" : 0, + "input" : [ + { + "legacyId" : 86, + "id" : "minecraft:pumpkin", + "damage" : 32767 + }, + { + "legacyId" : 416, + "id" : "minecraft:sugar", + "damage" : 32767 + }, + { + "legacyId" : 390, + "id" : "minecraft:egg", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 284, + "id" : "minecraft:pumpkin_pie" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pumpkin_seeds", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 86, + "id" : "minecraft:pumpkin", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 292, + "id" : "minecraft:pumpkin_seeds", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + ], + "output" : [ + { + "legacyId" : -423, + "id" : "minecraft:purple_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "output" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_dye_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "output" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:purple_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purpur_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 559, + "id" : "minecraft:popped_chorus_fruit", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purpur_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 203, + "id" : "minecraft:purpur_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:quartz_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:quartz_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : -304, + "id" : "minecraft:quartz_bricks" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:quartz_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : 156, + "id" : "minecraft:quartz_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:rabbit_stew_from_brown_mushroom", + "type" : 0, + "input" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + }, + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 290, + "id" : "minecraft:rabbit_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:rabbit_stew_from_red_mushroom", + "type" : 0, + "input" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 290, + "id" : "minecraft:rabbit_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 66, + "id" : "minecraft:rail", + "count" : 16 + } + ], + "shape" : [ + "A A", + "ABA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -452, + "id" : "minecraft:raw_copper_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_copper_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -452, + "id" : "minecraft:raw_copper_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_gold", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -453, + "id" : "minecraft:raw_gold_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_gold_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -453, + "id" : "minecraft:raw_gold_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_iron", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -451, + "id" : "minecraft:raw_iron_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_iron_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -451, + "id" : "minecraft:raw_iron_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "output" : [ + { + "legacyId" : -427, + "id" : "minecraft:red_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_beetroot", + "type" : 0, + "input" : [ + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_poppy", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower" + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_rose_bush", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_nether_brick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 294, + "id" : "minecraft:nether_wart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "shape" : [ + "AB", + "BA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_nether_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -184, + "id" : "minecraft:red_nether_brick_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_nether_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 12, + "id" : "minecraft:sand", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 180, + "id" : "minecraft:red_sandstone_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_sandstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 14 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 152, + "id" : "minecraft:redstone_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 373, + "id" : "minecraft:redstone", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 152, + "id" : "minecraft:redstone_block" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone_lamp", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 89, + "id" : "minecraft:glowstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 123, + "id" : "minecraft:redstone_lamp" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone_torch", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 76, + "id" : "minecraft:redstone_torch" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:repeater", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 419, + "id" : "minecraft:repeater" + } + ], + "shape" : [ + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:respawn_anchor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -289, + "id" : "minecraft:crying_obsidian", + "damage" : 32767 + }, + "B" : { + "legacyId" : 89, + "id" : "minecraft:glowstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -272, + "id" : "minecraft:respawn_anchor" + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 12, + "id" : "minecraft:sand" + } + }, + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 128, + "id" : "minecraft:sandstone_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sandstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:scaffolding", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -163, + "id" : "minecraft:bamboo", + "damage" : 32767 + }, + "B" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -165, + "id" : "minecraft:scaffolding", + "count" : 6 + } + ], + "shape" : [ + "ABA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sealantern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 549, + "id" : "minecraft:prismarine_crystals", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 169, + "id" : "minecraft:sealantern" + } + ], + "shape" : [ + "ABA", + "BBB", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:shears", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 421, + "id" : "minecraft:shears" + } + ], + "shape" : [ + " A", + "A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:shield", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 355, + "id" : "minecraft:shield" + } + ], + "shape" : [ + "ABA", + "AAA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:shield_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 355, + "id" : "minecraft:shield" + } + ], + "shape" : [ + "ABA", + "AAA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:shield_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 355, + "id" : "minecraft:shield" + } + ], + "shape" : [ + "ABA", + "AAA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:shulker_box", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 566, + "id" : "minecraft:shulker_shell", + "damage" : 32767 + }, + "B" : { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + } + ], + "shape" : [ + "A", + "B", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_acacia", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 579, + "id" : "minecraft:acacia_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_birch", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 577, + "id" : "minecraft:birch_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_darkoak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 580, + "id" : "minecraft:dark_oak_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_jungle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 578, + "id" : "minecraft:jungle_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_oak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 358, + "id" : "minecraft:oak_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_spruce", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 576, + "id" : "minecraft:spruce_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:slime", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 165, + "id" : "minecraft:slime" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:slime_ball", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 165, + "id" : "minecraft:slime", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smithing_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -202, + "id" : "minecraft:smithing_table" + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smithing_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -202, + "id" : "minecraft:smithing_table" + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smithing_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -202, + "id" : "minecraft:smithing_table" + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker_from_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_acacia", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_birch", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker_from_stripped_dark_oak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_jungle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_oak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_spruce", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker_from_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smooth_quartz_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -185, + "id" : "minecraft:smooth_quartz_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_red_sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_red_sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -176, + "id" : "minecraft:smooth_red_sandstone_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -177, + "id" : "minecraft:smooth_sandstone_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:snow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 374, + "id" : "minecraft:snowball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 80, + "id" : "minecraft:snow" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:snow_layer", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 80, + "id" : "minecraft:snow", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 78, + "id" : "minecraft:snow_layer", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:soul_campfire_from_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_crimson_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_crimson_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_warped_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_warped_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_lantern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : -268, + "id" : "minecraft:soul_torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -269, + "id" : "minecraft:soul_lantern" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:soul_torch_from_soul_sand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -268, + "id" : "minecraft:soul_torch", + "count" : 4 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:soul_torch_from_soul_soil", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -268, + "id" : "minecraft:soul_torch", + "count" : 4 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:speckled_melon", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 272, + "id" : "minecraft:melon_slice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 434, + "id" : "minecraft:glistering_melon_slice" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 378, + "id" : "minecraft:spruce_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 553, + "id" : "minecraft:spruce_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 183, + "id" : "minecraft:spruce_fence_gate" + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 134, + "id" : "minecraft:spruce_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spyglass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 623, + "id" : "minecraft:amethyst_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 624, + "id" : "minecraft:spyglass" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:stick_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick", + "count" : 4 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stick_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick", + "count" : 4 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:sticky_piston", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + }, + "B" : { + "legacyId" : 33, + "id" : "minecraft:piston", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 29, + "id" : "minecraft:sticky_piston" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 315, + "id" : "minecraft:stone_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_axe_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 315, + "id" : "minecraft:stone_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_axe_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 315, + "id" : "minecraft:stone_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + }, + "output" : [ + { + "legacyId" : 109, + "id" : "minecraft:stone_brick_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 77, + "id" : "minecraft:stone_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 330, + "id" : "minecraft:stone_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_hoe_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 330, + "id" : "minecraft:stone_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_hoe_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 330, + "id" : "minecraft:stone_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 314, + "id" : "minecraft:stone_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_pickaxe_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 314, + "id" : "minecraft:stone_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_pickaxe_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 314, + "id" : "minecraft:stone_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 70, + "id" : "minecraft:stone_pressure_plate" + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 313, + "id" : "minecraft:stone_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_shovel_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 313, + "id" : "minecraft:stone_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_shovel_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 313, + "id" : "minecraft:stone_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : -180, + "id" : "minecraft:normal_stone_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 312, + "id" : "minecraft:stone_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_sword_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 312, + "id" : "minecraft:stone_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_sword_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 312, + "id" : "minecraft:stone_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stonebrick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -197, + "id" : "minecraft:stonecutter_block" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:string_to_wool", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stripped_crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -300, + "id" : "minecraft:stripped_crimson_hyphae", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stripped_warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -301, + "id" : "minecraft:stripped_warped_hyphae", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sugar", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 385, + "id" : "minecraft:sugar_cane", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 416, + "id" : "minecraft:sugar" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_allium", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_azure_bluet", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_blue_orchid", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_cornflower", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_dandelion", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 37, + "id" : "minecraft:yellow_flower", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_lily_of_the_valley", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_oxeye_daisy", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_poppy", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower" + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_orange", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_pink", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_red", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_white", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_wither_rose", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : -216, + "id" : "minecraft:wither_rose", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:target", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 170, + "id" : "minecraft:hay_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -239, + "id" : "minecraft:target" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:tinted_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 623, + "id" : "minecraft:amethyst_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -334, + "id" : "minecraft:tinted_glass", + "count" : 2 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:tnt", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + "B" : { + "legacyId" : 12, + "id" : "minecraft:sand", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 46, + "id" : "minecraft:tnt" + } + ], + "shape" : [ + "ABA", + "BAB", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:tnt_minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 46, + "id" : "minecraft:tnt" + }, + "B" : { + "legacyId" : 370, + "id" : "minecraft:minecart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 525, + "id" : "minecraft:tnt_minecart" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:trapped_chest", + "type" : 0, + "input" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + }, + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 146, + "id" : "minecraft:trapped_chest" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:tripwire_hook_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook" + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:tripwire_hook_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook" + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:turtle_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 572, + "id" : "minecraft:scute", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 573, + "id" : "minecraft:turtle_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -261, + "id" : "minecraft:warped_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 615, + "id" : "minecraft:warped_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -257, + "id" : "minecraft:warped_fence", + "count" : 3 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -259, + "id" : "minecraft:warped_fence_gate" + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_fungus_on_a_stick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 392, + "id" : "minecraft:fishing_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : -229, + "id" : "minecraft:warped_fungus", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 616, + "id" : "minecraft:warped_fungus_on_a_stick" + } + ], + "shape" : [ + "A ", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -298, + "id" : "minecraft:warped_hyphae", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks_from_stripped_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks_from_stripped_warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -301, + "id" : "minecraft:stripped_warped_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks_from_warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -298, + "id" : "minecraft:warped_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -263, + "id" : "minecraft:warped_pressure_plate" + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_sign", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 613, + "id" : "minecraft:warped_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -255, + "id" : "minecraft:warped_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_trapdoor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -247, + "id" : "minecraft:warped_trapdoor", + "count" : 2 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:waxing_copper_block", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:wheat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 170, + "id" : "minecraft:hay_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 334, + "id" : "minecraft:wheat", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : -413, + "id" : "minecraft:white_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_candle_from_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : -413, + "id" : "minecraft:white_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_concrete_powder_from_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:white_dye_from_bone_meal", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_dye_from_lily_of_the_valley", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_glass_from_bonemeal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:white_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_hardened_clay_from_bonemeal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:wooden_axe_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 311, + "id" : "minecraft:wooden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_axe_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 311, + "id" : "minecraft:wooden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 359, + "id" : "minecraft:wooden_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:wooden_hoe_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 329, + "id" : "minecraft:wooden_hoe" + } + ], + "shape" : [ + "AA ", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_hoe_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 329, + "id" : "minecraft:wooden_hoe" + } + ], + "shape" : [ + "AA ", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_pickaxe_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 310, + "id" : "minecraft:wooden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_pickaxe_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 310, + "id" : "minecraft:wooden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_shovel_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_shovel_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_sword_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 308, + "id" : "minecraft:wooden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_sword_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 308, + "id" : "minecraft:wooden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:writable_book", + "type" : 0, + "input" : [ + { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 327, + "id" : "minecraft:feather", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 510, + "id" : "minecraft:writable_book" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + ], + "output" : [ + { + "legacyId" : -417, + "id" : "minecraft:yellow_candle" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_dye_from_dandelion", + "type" : 0, + "input" : [ + { + "legacyId" : 37, + "id" : "minecraft:yellow_flower" + } + ], + "output" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_dye_from_sunflower", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant" + } + ], + "output" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "oak_stairs_oak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 53, + "id" : "minecraft:oak_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_0_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star" + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_10_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_11_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_12_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_13_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_14_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_15_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_16_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star" + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_17_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_18_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_19_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_1_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_2_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_3_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_4_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_5_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_6_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_7_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_8_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_9_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_0_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_10_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 10, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_11_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 11, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_12_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 12, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_13_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 13, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_14_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 14, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_15_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_16_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_17_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_18_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_19_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_1_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 1, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_2_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 2, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_3_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_4_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_5_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 5, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_6_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 6, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_7_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 7, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_8_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 8, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_9_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 9, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "00000000-0000-0000-0000-000000000001" + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_16_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_17_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_18_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_19_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "slab3_endstonebrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "spruce_stairs_spruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 134, + "id" : "minecraft:spruce_stairs", + "count" : 4 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stick_wood_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick", + "count" : 4 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "stoneslab2_RedSandstone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_prismarine_bricks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_prismarine_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_purpur_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_rednetherbrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_redsandstone_heiroglyphs_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_smoothsandstone_smooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_andesite_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_diorite_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_granite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_polishedGranite_GraniteSmooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_polished_andesite_andesitesmooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_polished_diorite_dioritesmooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_smooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab4_cut_redsandstone_cut_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab4_cut_sandstone_cut_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab4_smoothquartz_smooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab_quartz_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab_sandstone_heiroglyphs_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "tool_material_recipe_0_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 310, + "id" : "minecraft:wooden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "tool_material_recipe_0_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "tool_material_recipe_0_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 311, + "id" : "minecraft:wooden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "tool_material_recipe_0_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 329, + "id" : "minecraft:wooden_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "type" : 4, + "uuid" : "aecd2294-4b94-434b-8667-4499bb2c9327" + }, + { + "id" : "weapon_arrow_recipe_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 11, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 12, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 13, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 14, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 14 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 15, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 15 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 16, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_16", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 16 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 17, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_17", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 17 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 18, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_18", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 18 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 19, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_19", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 19 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 20, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_20", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 20 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 21, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_21", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 21 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 22, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_22", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 22 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 23, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_23", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 23 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 24, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_24", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 24 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 25, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_25", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 25 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 26, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_26", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 26 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 27, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_27", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 27 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 28, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_28", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 28 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 29, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_29", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 29 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 30, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_30", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 30 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 31, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_31", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 31 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 32, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_32", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 32 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 33, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_33", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 33 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 34, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_34", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 34 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 35, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_35", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 35 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 36, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_36", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 36 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 37, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_37", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 37 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 38, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_38", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 38 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 39, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_39", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 39 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 40, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_40", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 40 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 41, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_41", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 41 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 42, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_42", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 42 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 43, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 6, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 7, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 8, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 9, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 10, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_stick_recipe_0_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 308, + "id" : "minecraft:wooden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "wool_dye_wool_0_1", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_10", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_11", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_12", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_13", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_14", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_15", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_2", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_3", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_4", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_5", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_6", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_7", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_8", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_9", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_0", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_1", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_11", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_12", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_13", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_14", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_15", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_2", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_3", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_4", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_5", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_6", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_7", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_8", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_9", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_0", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_1", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_10", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_12", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_13", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_14", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_15", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_2", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_3", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_4", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_5", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_6", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_7", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_8", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_9", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_0", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_1", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_10", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_11", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_13", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_14", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_15", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_2", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_3", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_4", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_5", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_6", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_7", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_8", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_9", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_0", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_1", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_10", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_11", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_12", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_14", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_15", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_2", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_3", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_4", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_5", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_6", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_7", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_8", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_9", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_0", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_1", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_10", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_11", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_12", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_13", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_15", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_2", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_3", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_4", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_5", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_6", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_7", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_8", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_9", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_0", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_1", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_10", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_11", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_12", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_13", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_14", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_2", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_3", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_4", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_5", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_6", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_7", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_8", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_9", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_1", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_10", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_11", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_12", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_13", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_14", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_15", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_2", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_3", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_4", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_5", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_6", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_7", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_8", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_9", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_0", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_1", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_10", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_11", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_12", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_13", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_14", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_15", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_2", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_4", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_5", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_6", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_7", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_8", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_9", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_0", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_1", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_10", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_11", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_12", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_13", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_14", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_15", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_2", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_3", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_5", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_6", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_7", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_8", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_9", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_0", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_1", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_10", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_11", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_12", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_13", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_14", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_2", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_3", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_4", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_5", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_6", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_7", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_8", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_9", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_0", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_10", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_11", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_12", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_13", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_14", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_15", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_2", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_3", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_4", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_5", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_6", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_7", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_8", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_9", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_0", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_1", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_10", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_11", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_12", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_13", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_14", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_15", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_3", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_4", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_5", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_6", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_7", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_8", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_9", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_0", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_1", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_10", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_11", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_12", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_13", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_14", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_15", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_2", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_4", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_5", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_6", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_7", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_8", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_9", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_0", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_1", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_10", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_11", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_12", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_13", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_14", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_15", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_2", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_3", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_5", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_6", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_7", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_8", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_9", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_0", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_1", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_10", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_11", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_12", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_13", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_14", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_15", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_2", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_3", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_4", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_6", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_7", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_8", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_9", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_0", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_1", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_10", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_11", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_12", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_13", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_14", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_15", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_2", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_3", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_4", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_5", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_7", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_8", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_9", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_0", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_1", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_10", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_11", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_12", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_13", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_14", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_15", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_2", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_3", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_4", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_5", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_6", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_8", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_9", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_0", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_1", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_10", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_11", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_12", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_13", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_14", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_15", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_2", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_3", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_4", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_5", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_6", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_7", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_9", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_0", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_1", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_10", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_11", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_12", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_13", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_14", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_15", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_2", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_3", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_4", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_5", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_6", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_7", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_8", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 3, + "input" : { + "legacyId" : -408, + "id" : "minecraft:deepslate_copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -408, + "id" : "minecraft:deepslate_copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -407, + "id" : "minecraft:deepslate_emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -407, + "id" : "minecraft:deepslate_emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -406, + "id" : "minecraft:deepslate_coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -406, + "id" : "minecraft:deepslate_coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -405, + "id" : "minecraft:deepslate_diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -405, + "id" : "minecraft:deepslate_diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -403, + "id" : "minecraft:deepslate_redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -403, + "id" : "minecraft:deepslate_redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -402, + "id" : "minecraft:deepslate_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -402, + "id" : "minecraft:deepslate_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -401, + "id" : "minecraft:deepslate_iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -401, + "id" : "minecraft:deepslate_iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -400, + "id" : "minecraft:deepslate_lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -400, + "id" : "minecraft:deepslate_lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : -1 + }, + "output" : { + "legacyId" : -410, + "id" : "minecraft:cracked_deepslate_bricks" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : -1 + }, + "output" : { + "legacyId" : -409, + "id" : "minecraft:cracked_deepslate_tiles" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : -1 + }, + "output" : { + "legacyId" : -378, + "id" : "minecraft:deepslate" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -311, + "id" : "minecraft:copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -311, + "id" : "minecraft:copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -288, + "id" : "minecraft:nether_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -288, + "id" : "minecraft:nether_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : -1 + }, + "output" : { + "legacyId" : -280, + "id" : "minecraft:cracked_polished_blackstone_bricks" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -271, + "id" : "minecraft:ancient_debris", + "damage" : -1 + }, + "output" : { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -271, + "id" : "minecraft:ancient_debris", + "damage" : -1 + }, + "output" : { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -234, + "id" : "minecraft:basalt", + "damage" : -1 + }, + "output" : { + "legacyId" : -377, + "id" : "minecraft:smooth_basalt" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood" + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 2 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 3 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 4 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 5 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 8 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 9 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 10 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 11 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 12 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 13 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -156, + "id" : "minecraft:sea_pickle", + "damage" : -1 + }, + "output" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 1, + "id" : "minecraft:stone" + }, + "output" : { + "legacyId" : -183, + "id" : "minecraft:smooth_stone" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : -1 + }, + "output" : { + "legacyId" : 1, + "id" : "minecraft:stone" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 12, + "id" : "minecraft:sand", + "damage" : -1 + }, + "output" : { + "legacyId" : 20, + "id" : "minecraft:glass" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 14, + "id" : "minecraft:gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 14, + "id" : "minecraft:gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 15, + "id" : "minecraft:iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 15, + "id" : "minecraft:iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 16, + "id" : "minecraft:coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 16, + "id" : "minecraft:coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log" + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 2 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 3 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 19, + "id" : "minecraft:sponge", + "damage" : 1 + }, + "output" : { + "legacyId" : 19, + "id" : "minecraft:sponge" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 21, + "id" : "minecraft:lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 21, + "id" : "minecraft:lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : -1 + }, + "output" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 56, + "id" : "minecraft:diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 56, + "id" : "minecraft:diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 73, + "id" : "minecraft:redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 73, + "id" : "minecraft:redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 81, + "id" : "minecraft:cactus", + "damage" : -1 + }, + "output" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 82, + "id" : "minecraft:clay", + "damage" : -1 + }, + "output" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 87, + "id" : "minecraft:netherrack", + "damage" : -1 + }, + "output" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + "output" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : -1 + }, + "output" : { + "legacyId" : -303, + "id" : "minecraft:cracked_nether_bricks" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 129, + "id" : "minecraft:emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 129, + "id" : "minecraft:emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 153, + "id" : "minecraft:quartz_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 153, + "id" : "minecraft:quartz_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + }, + "output" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay" + }, + "output" : { + "legacyId" : 220, + "id" : "minecraft:white_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 1 + }, + "output" : { + "legacyId" : 221, + "id" : "minecraft:orange_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 2 + }, + "output" : { + "legacyId" : 222, + "id" : "minecraft:magenta_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 3 + }, + "output" : { + "legacyId" : 223, + "id" : "minecraft:light_blue_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 4 + }, + "output" : { + "legacyId" : 224, + "id" : "minecraft:yellow_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 5 + }, + "output" : { + "legacyId" : 225, + "id" : "minecraft:lime_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 6 + }, + "output" : { + "legacyId" : 226, + "id" : "minecraft:pink_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 7 + }, + "output" : { + "legacyId" : 227, + "id" : "minecraft:gray_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 8 + }, + "output" : { + "legacyId" : 228, + "id" : "minecraft:silver_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 9 + }, + "output" : { + "legacyId" : 229, + "id" : "minecraft:cyan_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 10 + }, + "output" : { + "legacyId" : 219, + "id" : "minecraft:purple_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 11 + }, + "output" : { + "legacyId" : 231, + "id" : "minecraft:blue_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 12 + }, + "output" : { + "legacyId" : 232, + "id" : "minecraft:brown_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 13 + }, + "output" : { + "legacyId" : 233, + "id" : "minecraft:green_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 14 + }, + "output" : { + "legacyId" : 234, + "id" : "minecraft:red_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 15 + }, + "output" : { + "legacyId" : 235, + "id" : "minecraft:black_glazed_terracotta" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 162, + "id" : "minecraft:log2" + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : -1 + }, + "output" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 296, + "id" : "minecraft:iron_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 296, + "id" : "minecraft:iron_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 297, + "id" : "minecraft:iron_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 297, + "id" : "minecraft:iron_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 298, + "id" : "minecraft:iron_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 298, + "id" : "minecraft:iron_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 307, + "id" : "minecraft:iron_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 307, + "id" : "minecraft:iron_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 322, + "id" : "minecraft:golden_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 322, + "id" : "minecraft:golden_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 323, + "id" : "minecraft:golden_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 323, + "id" : "minecraft:golden_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 324, + "id" : "minecraft:golden_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 324, + "id" : "minecraft:golden_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 325, + "id" : "minecraft:golden_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 325, + "id" : "minecraft:golden_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 331, + "id" : "minecraft:iron_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 331, + "id" : "minecraft:iron_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 333, + "id" : "minecraft:golden_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 333, + "id" : "minecraft:golden_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 339, + "id" : "minecraft:chainmail_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 339, + "id" : "minecraft:chainmail_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 340, + "id" : "minecraft:chainmail_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 340, + "id" : "minecraft:chainmail_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 341, + "id" : "minecraft:chainmail_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 341, + "id" : "minecraft:chainmail_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 342, + "id" : "minecraft:chainmail_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 342, + "id" : "minecraft:chainmail_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 343, + "id" : "minecraft:iron_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 343, + "id" : "minecraft:iron_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 344, + "id" : "minecraft:iron_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 344, + "id" : "minecraft:iron_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 345, + "id" : "minecraft:iron_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 345, + "id" : "minecraft:iron_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 346, + "id" : "minecraft:iron_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 346, + "id" : "minecraft:iron_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 351, + "id" : "minecraft:golden_helmet" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 351, + "id" : "minecraft:golden_helmet" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 352, + "id" : "minecraft:golden_chestplate" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 352, + "id" : "minecraft:golden_chestplate" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 353, + "id" : "minecraft:golden_leggings" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 353, + "id" : "minecraft:golden_leggings" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 354, + "id" : "minecraft:golden_boots" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 354, + "id" : "minecraft:golden_boots" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 384, + "id" : "minecraft:clay_ball", + "damage" : -1 + }, + "output" : { + "legacyId" : 383, + "id" : "minecraft:brick", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 531, + "id" : "minecraft:iron_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 531, + "id" : "minecraft:iron_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 532, + "id" : "minecraft:golden_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 532, + "id" : "minecraft:golden_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 558, + "id" : "minecraft:chorus_fruit", + "damage" : -1 + }, + "output" : { + "legacyId" : 559, + "id" : "minecraft:popped_chorus_fruit", + "damage" : 32767 + }, + "block" : "furnace" + } + ], + "potionMixes" : [ + { + "inputId" : "minecraft:potion", + "inputMeta" : 17, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 42 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 42 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 42 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 31 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 31 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 31 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_13", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 28 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_14", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 28 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_15", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 28 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_2", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 5 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_4", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 5 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_5", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 5 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_6", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 12 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_7", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 12 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_8", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 12 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_9", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 40 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_0", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 40 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_1", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 40 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_10", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 19 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_11", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 19 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_12", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 19 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_13", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 9 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_14", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 9 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_15", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 9 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_2", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 21 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_3", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 21 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_5", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 21 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_6", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 25 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_7", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 25 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_8", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 25 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_9", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 14 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_0", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 14 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_1", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 14 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_10", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 37 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_11", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 37 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_12", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 37 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_13", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 13 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_14", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 13 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_2", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 13 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_3", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_4", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_5", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_6", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_7", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_8", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_9", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 22 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7659 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_0", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 22 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_10", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 22 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_11", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 8 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_12", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 8 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_13", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 8 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_14", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 17 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_15", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 17 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_2", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 17 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_3", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 9, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 11 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_4", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 11 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_5", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 11 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_6", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 9, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 10 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_7", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 10 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_8", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 10 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_9", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 8 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7673 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_0", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 8 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_1", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 8 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_10", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 15, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_11", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 15, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_12", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 15, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_13", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 10, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_14", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 10, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_15", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 10, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_3", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 2, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_4", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 2, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_5", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 2, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_6", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_7", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_8", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_9", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 32, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7672 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_0", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 32, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_1", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 32, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_10", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_11", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_12", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_13", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 5, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 7 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_14", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 7 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_15", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 7 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_2", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 6 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_4", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 6 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_5", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 6 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_6", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_7", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_8", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_9", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 27 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7671 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_0", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 27 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_1", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 27 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_10", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 26 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_11", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 26 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_12", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 26 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_13", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 30 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_14", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 30 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_15", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 30 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_2", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 29 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_3", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 29 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_5", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 29 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_6", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 17, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_7", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_8", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_9", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 40, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 41 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7670 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_0", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 40, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 41 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_1", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 40, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 41 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_10", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_11", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_12", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_13", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 31, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 33 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_14", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 33 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_15", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 33 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_2", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 31, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 32 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_3", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 32 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_4", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 32 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_6", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 22, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_7", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 22, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_8", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 22, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_9", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7669 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_0", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_1", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_10", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 14, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 17 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_11", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 17 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_12", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 17 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_13", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 16 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_14", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 16 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_15", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 16 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_2", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 15 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_3", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 15 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_4", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 15 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_5", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_7", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_8", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_9", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 39 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7668 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_0", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 39 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_1", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 39 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_10", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 37, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 38 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_11", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 38 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_12", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 38 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_13", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_14", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_15", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_2", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 20 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_3", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 20 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_4", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 20 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_5", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_6", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_8", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_9", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7667 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_0", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_1", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_10", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 3 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_11", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 3 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_12", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 3 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_13", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_14", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_15", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_2", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 4 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_3", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 4 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_4", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 4 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_5", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_6", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_7", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_9", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7666 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_0", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_1", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_10", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_11", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_12", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_13", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_14", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_15", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_2", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_3", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_4", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_5", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 34, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_6", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 34, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 34, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 35 } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_7", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + ], + "containerMixes" : [ { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_8", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "reagentId" : "minecraft:gunpowder", + "outputId" : "minecraft:splash_potion" + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7665 + "inputId" : "minecraft:splash_potion", + "reagentId" : "minecraft:dragon_breath", + "outputId" : "minecraft:lingering_potion" } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 3, - "input" : { - "legacyId" : -408, - "id" : "minecraft:deepslate_copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -408, - "id" : "minecraft:deepslate_copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -407, - "id" : "minecraft:deepslate_emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -407, - "id" : "minecraft:deepslate_emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -406, - "id" : "minecraft:deepslate_coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -406, - "id" : "minecraft:deepslate_coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -405, - "id" : "minecraft:deepslate_diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -405, - "id" : "minecraft:deepslate_diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -403, - "id" : "minecraft:deepslate_redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -403, - "id" : "minecraft:deepslate_redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -402, - "id" : "minecraft:deepslate_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -402, - "id" : "minecraft:deepslate_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -401, - "id" : "minecraft:deepslate_iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -401, - "id" : "minecraft:deepslate_iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -400, - "id" : "minecraft:deepslate_lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -400, - "id" : "minecraft:deepslate_lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : -1 - }, - "output" : { - "legacyId" : -410, - "id" : "minecraft:cracked_deepslate_bricks", - "blockRuntimeId" : 3726 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : -1 - }, - "output" : { - "legacyId" : -409, - "id" : "minecraft:cracked_deepslate_tiles", - "blockRuntimeId" : 3727 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : -1 - }, - "output" : { - "legacyId" : -378, - "id" : "minecraft:deepslate", - "blockRuntimeId" : 4049 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -311, - "id" : "minecraft:copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -311, - "id" : "minecraft:copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -288, - "id" : "minecraft:nether_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -288, - "id" : "minecraft:nether_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : -1 - }, - "output" : { - "legacyId" : -280, - "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3729 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -271, - "id" : "minecraft:ancient_debris", - "damage" : -1 - }, - "output" : { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -271, - "id" : "minecraft:ancient_debris", - "damage" : -1 - }, - "output" : { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -234, - "id" : "minecraft:basalt", - "damage" : -1 - }, - "output" : { - "legacyId" : -377, - "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6640 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood" - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 2 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 3 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 4 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 5 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 8 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 9 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 10 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 11 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 12 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 13 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -156, - "id" : "minecraft:sea_pickle", - "damage" : -1 - }, - "output" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 1, - "id" : "minecraft:stone" - }, - "output" : { - "legacyId" : -183, - "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6665 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : -1 - }, - "output" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 6934 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 12, - "id" : "minecraft:sand", - "damage" : -1 - }, - "output" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "blockRuntimeId" : 4820 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 14, - "id" : "minecraft:gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 14, - "id" : "minecraft:gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 15, - "id" : "minecraft:iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 15, - "id" : "minecraft:iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 16, - "id" : "minecraft:coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 16, - "id" : "minecraft:coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log" - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 2 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 3 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 19, - "id" : "minecraft:sponge", - "damage" : 1 - }, - "output" : { - "legacyId" : 19, - "id" : "minecraft:sponge", - "blockRuntimeId" : 6717 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 21, - "id" : "minecraft:lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 21, - "id" : "minecraft:lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : -1 - }, - "output" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6532 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 56, - "id" : "minecraft:diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 56, - "id" : "minecraft:diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 73, - "id" : "minecraft:redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 73, - "id" : "minecraft:redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 81, - "id" : "minecraft:cactus", - "damage" : -1 - }, - "output" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 82, - "id" : "minecraft:clay", - "damage" : -1 - }, - "output" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 4988 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 87, - "id" : "minecraft:netherrack", - "damage" : -1 - }, - "output" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - "output" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7045 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : -1 - }, - "output" : { - "legacyId" : -303, - "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3728 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 129, - "id" : "minecraft:emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 129, - "id" : "minecraft:emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 153, - "id" : "minecraft:quartz_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 153, - "id" : "minecraft:quartz_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - }, - "output" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6381 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay" - }, - "output" : { - "legacyId" : 220, - "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7544 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 1 - }, - "output" : { - "legacyId" : 221, - "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5601 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 2 - }, - "output" : { - "legacyId" : 222, - "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5461 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 3 - }, - "output" : { - "legacyId" : 223, - "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5379 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 4 - }, - "output" : { - "legacyId" : 224, - "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7676 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 5 - }, - "output" : { - "legacyId" : 225, - "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5407 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 6 - }, - "output" : { - "legacyId" : 226, - "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5622 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 7 - }, - "output" : { - "legacyId" : 227, - "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 4925 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 8 - }, - "output" : { - "legacyId" : 228, - "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6600 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 9 - }, - "output" : { - "legacyId" : 229, - "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3880 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 10 - }, - "output" : { - "legacyId" : 219, - "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6352 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 11 - }, - "output" : { - "legacyId" : 231, - "id" : "minecraft:blue_glazed_terracotta", - "blockRuntimeId" : 665 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 12 - }, - "output" : { - "legacyId" : 232, - "id" : "minecraft:brown_glazed_terracotta", - "blockRuntimeId" : 864 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 13 - }, - "output" : { - "legacyId" : 233, - "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 4931 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 14 - }, - "output" : { - "legacyId" : 234, - "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6424 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 15 - }, - "output" : { - "legacyId" : 235, - "id" : "minecraft:black_glazed_terracotta", - "blockRuntimeId" : 478 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 162, - "id" : "minecraft:log2" - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : -1 - }, - "output" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6459 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 296, - "id" : "minecraft:iron_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 296, - "id" : "minecraft:iron_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 297, - "id" : "minecraft:iron_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 297, - "id" : "minecraft:iron_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 298, - "id" : "minecraft:iron_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 298, - "id" : "minecraft:iron_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 307, - "id" : "minecraft:iron_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 307, - "id" : "minecraft:iron_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 322, - "id" : "minecraft:golden_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 322, - "id" : "minecraft:golden_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 323, - "id" : "minecraft:golden_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 323, - "id" : "minecraft:golden_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 324, - "id" : "minecraft:golden_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 324, - "id" : "minecraft:golden_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 325, - "id" : "minecraft:golden_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 325, - "id" : "minecraft:golden_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 331, - "id" : "minecraft:iron_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 331, - "id" : "minecraft:iron_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 333, - "id" : "minecraft:golden_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 333, - "id" : "minecraft:golden_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 339, - "id" : "minecraft:chainmail_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 339, - "id" : "minecraft:chainmail_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 340, - "id" : "minecraft:chainmail_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 340, - "id" : "minecraft:chainmail_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 341, - "id" : "minecraft:chainmail_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 341, - "id" : "minecraft:chainmail_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 342, - "id" : "minecraft:chainmail_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 342, - "id" : "minecraft:chainmail_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 343, - "id" : "minecraft:iron_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 343, - "id" : "minecraft:iron_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 344, - "id" : "minecraft:iron_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 344, - "id" : "minecraft:iron_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 345, - "id" : "minecraft:iron_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 345, - "id" : "minecraft:iron_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 346, - "id" : "minecraft:iron_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 346, - "id" : "minecraft:iron_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 351, - "id" : "minecraft:golden_helmet" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 351, - "id" : "minecraft:golden_helmet" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 352, - "id" : "minecraft:golden_chestplate" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 352, - "id" : "minecraft:golden_chestplate" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 353, - "id" : "minecraft:golden_leggings" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 353, - "id" : "minecraft:golden_leggings" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 354, - "id" : "minecraft:golden_boots" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 354, - "id" : "minecraft:golden_boots" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 384, - "id" : "minecraft:clay_ball", - "damage" : -1 - }, - "output" : { - "legacyId" : 383, - "id" : "minecraft:brick", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 531, - "id" : "minecraft:iron_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 531, - "id" : "minecraft:iron_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 532, - "id" : "minecraft:golden_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 532, - "id" : "minecraft:golden_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 558, - "id" : "minecraft:chorus_fruit", - "damage" : -1 - }, - "output" : { - "legacyId" : 559, - "id" : "minecraft:popped_chorus_fruit", - "damage" : 32767 - }, - "block" : "furnace" - } - ], - "potionMixes" : [ - { - "inputId" : "minecraft:potion", - "inputMeta" : 17, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 42 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 42 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 42 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 31 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 31 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 31 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 28 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 28 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 28 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 5 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 5 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 5 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 12 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 12 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 12 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 40 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 40 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 40 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 19 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 19 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 19 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 9 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 9 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 9 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 21 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 21 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 21 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 25 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 25 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 25 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 14 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 14 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 14 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 37 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 37 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 37 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 13 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 13 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 13 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 23, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 23, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 23, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 22 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 22 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 22 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 7, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 8 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 7, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 8 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 7, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 8 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 17 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 17 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 17 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 11 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 11 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 11 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 10 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 10 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 10 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 6, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 8 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 6, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 8 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 6, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 8 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 2, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 2, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 2, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 26, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 26, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 26, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 5, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 7 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 7 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 7 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 6 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 6 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 6 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 27 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 27 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 27 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 26 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 26 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 26 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 30 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 30 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 30 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 29 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 29 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 29 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 40, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 41 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 40, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 41 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 40, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 41 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 33 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 33 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 33 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 32 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 32 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 32 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 17 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 17 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 17 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 16 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 16 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 16 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 15 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 15 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 15 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 39 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 39 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 39 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 37, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 38 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 38 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 38 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 19, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 20 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 19, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 20 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 19, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 20 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 3 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 3 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 3 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 4 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 4 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 4 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 34, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 34, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 34, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 - } - ], - "containerMixes" : [ - { - "inputId" : "minecraft:potion", - "reagentId" : "minecraft:gunpowder", - "outputId" : "minecraft:splash_potion" - }, - { - "inputId" : "minecraft:splash_potion", - "reagentId" : "minecraft:dragon_breath", - "outputId" : "minecraft:lingering_potion" - } - ] -} + ] +} \ No newline at end of file From 140ec23c7345dcfa1ce1bcd1dcab08cb03c9e832 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 13 Jul 2021 19:28:33 -0300 Subject: [PATCH 164/394] Register the candle and candle_cake block ids --- src/main/resources/block_ids.csv | 67 ++++++++++++++++---------------- 1 file changed, 34 insertions(+), 33 deletions(-) diff --git a/src/main/resources/block_ids.csv b/src/main/resources/block_ids.csv index 42001c8d355..49d19a46cd9 100644 --- a/src/main/resources/block_ids.csv +++ b/src/main/resources/block_ids.csv @@ -665,39 +665,40 @@ 664,minecraft:cracked_deepslate_tiles 665,minecraft:cracked_deepslate_bricks 666,minecraft:glow_lichen -667, -668, -669, -670, -671, -672, -673, -674, -675, -676, -678, -679, -680, -681, -682, -683, -684, -685, -686, -687, -688, -689, -690, -691, -692, -693, -694, -695, -696, -697, -698, -699, -700, +667,minecraft:candle +668,minecraft:orange_candle +669,minecraft:orange_candle +670,minecraft:magenta_candle +671,minecraft:light_blue_candle +672,minecraft:yellow_candle +673,minecraft:lime_candle +674,minecraft:pink_candle +675,minecraft:gray_candle +676,minecraft:light_gray_candle +677,minecraft:cyan_candle +678,minecraft:purple_candle +679,minecraft:blue_candle +680,minecraft:brown_candle +681,minecraft:green_candle +682,minecraft:red_candle +683,minecraft:black_candle +684,minecraft:candle_cake +685,minecraft:white_candle_cake +686,minecraft:orange_candle_cake +687,minecraft:magenta_candle_cake +688,minecraft:light_blue_candle_cake +689,minecraft:yellow_candle_cake +690,minecraft:lime_candle_cake +691,minecraft:pink_candle_cake +692,minecraft:gray_candle_cake +693,minecraft:light_gray_candle_cake +694,minecraft:cyan_candle_cake +695,minecraft:purple_candle_cake +696,minecraft:blue_candle_cake +697,minecraft:brown_candle_cake +698,minecraft:green_candle_cake +699,minecraft:red_candle_cake +700,minecraft:black_candle_cake 701,minecraft:waxed_oxidized_copper 702,minecraft:waxed_oxidized_cut_copper 703,minecraft:waxed_oxidized_cut_copper_stairs From a9de53bd7aecefcebe15ad98d2bd2ba97cc7dca8 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 13 Jul 2021 22:40:33 -0300 Subject: [PATCH 165/394] Fixes issues with some packets, create tests unities --- .../protocol/AddVolumeEntityPacket.java | 1 + .../network/protocol/NPCDialoguePacket.java | 1 - .../protocol/RemoveVolumeEntityPacket.java | 1 + .../network/protocol/SetTitlePacket.java | 2 +- .../protocol/SyncEntityPropertyPacket.java | 1 + .../java/cn/nukkit/network/NetworkTest.java | 60 +++++++++++++++ .../protocol/AddVolumeEntityPacketTest.java | 53 +++++++++++++ .../protocol/NPCDialoguePacketTest.java | 61 +++++++++++++++ .../protocol/NPCRequestPacketTest.java | 59 ++++++++++++++ .../RemoveVolumeEntityPacketTest.java | 50 ++++++++++++ .../protocol/ResourcePacksInfoPacketTest.java | 66 ++++++++++++++++ .../network/protocol/SetTitlePacketTest.java | 76 +++++++++++++++++++ .../protocol/SimulationTypePacketTest.java | 51 +++++++++++++ .../SyncEntityPropertyPacketTest.java | 51 +++++++++++++ 14 files changed, 531 insertions(+), 2 deletions(-) create mode 100644 src/test/java/cn/nukkit/network/NetworkTest.java create mode 100644 src/test/java/cn/nukkit/network/protocol/AddVolumeEntityPacketTest.java create mode 100644 src/test/java/cn/nukkit/network/protocol/NPCDialoguePacketTest.java create mode 100644 src/test/java/cn/nukkit/network/protocol/NPCRequestPacketTest.java create mode 100644 src/test/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacketTest.java create mode 100644 src/test/java/cn/nukkit/network/protocol/ResourcePacksInfoPacketTest.java create mode 100644 src/test/java/cn/nukkit/network/protocol/SetTitlePacketTest.java create mode 100644 src/test/java/cn/nukkit/network/protocol/SimulationTypePacketTest.java create mode 100644 src/test/java/cn/nukkit/network/protocol/SyncEntityPropertyPacketTest.java diff --git a/src/main/java/cn/nukkit/network/protocol/AddVolumeEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AddVolumeEntityPacket.java index ee35584a028..8947cacd6f1 100644 --- a/src/main/java/cn/nukkit/network/protocol/AddVolumeEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AddVolumeEntityPacket.java @@ -33,6 +33,7 @@ public void decode() { @Override public void encode() { + reset(); putUnsignedVarInt(id); putTag(data); } diff --git a/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java b/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java index 83fb7157c77..0e43017568b 100644 --- a/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java @@ -69,7 +69,6 @@ public void encode() { reset(); putUnsignedVarLong(runtimeEntityId); putVarInt(action.ordinal()); - putString(actionJson); putString(dialogue); putString(sceneName); putString(npcName); diff --git a/src/main/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacket.java index c3311130c3b..30841ed9981 100644 --- a/src/main/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacket.java @@ -30,6 +30,7 @@ public void decode() { @Override public void encode() { + reset(); putUnsignedVarInt(id); } diff --git a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java index c6505c5a1a0..550d596ebd9 100644 --- a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java @@ -64,7 +64,7 @@ public void encode() { @Nonnull public TitleAction getTitleAction() { int currentType = this.type; - if (currentType > 0 && currentType < TITLE_ACTIONS.length) { + if (currentType >= 0 && currentType < TITLE_ACTIONS.length) { return TITLE_ACTIONS[currentType]; } throw new UnsupportedOperationException("Bad type: "+currentType); diff --git a/src/main/java/cn/nukkit/network/protocol/SyncEntityPropertyPacket.java b/src/main/java/cn/nukkit/network/protocol/SyncEntityPropertyPacket.java index 9e67533023b..b7a8dcf50bd 100644 --- a/src/main/java/cn/nukkit/network/protocol/SyncEntityPropertyPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SyncEntityPropertyPacket.java @@ -31,6 +31,7 @@ public void decode() { @Override public void encode() { + reset(); putTag(data); } diff --git a/src/test/java/cn/nukkit/network/NetworkTest.java b/src/test/java/cn/nukkit/network/NetworkTest.java new file mode 100644 index 00000000000..ec231880f58 --- /dev/null +++ b/src/test/java/cn/nukkit/network/NetworkTest.java @@ -0,0 +1,60 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.network; + +import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.Mock; +import org.mockito.junit.jupiter.MockitoExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author joserobjr + * @since 2021-07-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(MockitoExtension.class) +class NetworkTest { + @Mock + Server server; + + Network network; + + @BeforeEach + void setUp() { + network = new Network(server); + } + + @Test + void addStatistics() { + network.addStatistics(1, 2); + assertEquals(1, network.getUpload()); + assertEquals(2, network.getDownload()); + + network.addStatistics(1, 2); + assertEquals(2, network.getUpload()); + assertEquals(4, network.getDownload()); + } +} diff --git a/src/test/java/cn/nukkit/network/protocol/AddVolumeEntityPacketTest.java b/src/test/java/cn/nukkit/network/protocol/AddVolumeEntityPacketTest.java new file mode 100644 index 00000000000..cdc3b8bb3f9 --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/AddVolumeEntityPacketTest.java @@ -0,0 +1,53 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.network.protocol; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.nbt.tag.CompoundTag; +import lombok.val; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + +/** + * @author joserobjr + * @since 2021-07-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +class AddVolumeEntityPacketTest { + @Test + void encodeDecode() { + val packet = new AddVolumeEntityPacket(); + packet.setId(1L); + packet.setData(new CompoundTag("A")); + packet.encode(); + + val packet2 = new AddVolumeEntityPacket(); + packet2.setBuffer(packet.getBuffer()); + packet2.getUnsignedVarInt(); + packet2.decode(); + + assertEquals(1L, packet2.getId()); + assertEquals(new CompoundTag("A"), packet2.getData()); + assertTrue(packet2.feof()); + } +} diff --git a/src/test/java/cn/nukkit/network/protocol/NPCDialoguePacketTest.java b/src/test/java/cn/nukkit/network/protocol/NPCDialoguePacketTest.java new file mode 100644 index 00000000000..c2fb68d0f94 --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/NPCDialoguePacketTest.java @@ -0,0 +1,61 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.network.protocol; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.network.protocol.NPCDialoguePacket.NPCDialogAction; +import lombok.val; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + +/** + * @author joserobjr + * @since 2021-07-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +class NPCDialoguePacketTest { + @Test + void encodeDecode() { + val packet = new NPCDialoguePacket(); + packet.setRuntimeEntityId(1L); + packet.setAction(NPCDialogAction.CLOSE); + packet.setDialogue("dialog"); + packet.setSceneName("scene"); + packet.setNpcName("npcName"); + packet.setActionJson("json"); + packet.encode(); + + val packet2 = new NPCDialoguePacket(); + packet2.setBuffer(packet.getBuffer()); + packet2.getUnsignedVarInt(); + packet2.decode(); + + assertEquals(1L, packet2.getRuntimeEntityId()); + assertEquals(NPCDialogAction.CLOSE, packet2.getAction()); + assertEquals("dialog", packet2.getDialogue()); + assertEquals("scene", packet2.getSceneName()); + assertEquals("npcName", packet2.getNpcName()); + assertEquals("json", packet2.getActionJson()); + assertTrue(packet2.feof()); + } +} diff --git a/src/test/java/cn/nukkit/network/protocol/NPCRequestPacketTest.java b/src/test/java/cn/nukkit/network/protocol/NPCRequestPacketTest.java new file mode 100644 index 00000000000..4d2c30eea90 --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/NPCRequestPacketTest.java @@ -0,0 +1,59 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.network.protocol; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.network.protocol.NPCRequestPacket.RequestType; +import lombok.val; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + +/** + * @author joserobjr + * @since 2021-07-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +class NPCRequestPacketTest { + @Test + void encodeDecode() { + val packet = new NPCRequestPacket(); + packet.setEntityRuntimeId(1L); + packet.setRequestType(RequestType.SET_NAME); + packet.setActionType(2); + packet.setCommandString("command"); + packet.setSceneName("scene"); + packet.encode(); + + val packet2 = new NPCRequestPacket(); + packet2.setBuffer(packet.getBuffer()); + packet2.getUnsignedVarInt(); + packet2.decode(); + + assertEquals(1L, packet2.getEntityRuntimeId()); + assertEquals(RequestType.SET_NAME, packet2.getRequestType()); + assertEquals(2, packet2.getActionType()); + assertEquals("command", packet2.getCommandString()); + assertEquals("scene", packet2.getSceneName()); + assertTrue(packet2.feof()); + } +} diff --git a/src/test/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacketTest.java b/src/test/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacketTest.java new file mode 100644 index 00000000000..3e6d75873c1 --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacketTest.java @@ -0,0 +1,50 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.network.protocol; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import lombok.val; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + +/** + * @author joserobjr + * @since 2021-07-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +class RemoveVolumeEntityPacketTest { + @Test + void encodeDecode() { + val packet = new RemoveVolumeEntityPacket(); + packet.setId(1L); + packet.encode(); + + val packet2 = new RemoveVolumeEntityPacket(); + packet2.setBuffer(packet.getBuffer()); + packet2.getUnsignedVarInt(); + packet2.decode(); + + assertEquals(1L, packet2.getId()); + assertTrue(packet2.feof()); + } +} diff --git a/src/test/java/cn/nukkit/network/protocol/ResourcePacksInfoPacketTest.java b/src/test/java/cn/nukkit/network/protocol/ResourcePacksInfoPacketTest.java new file mode 100644 index 00000000000..dbae2c466aa --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/ResourcePacksInfoPacketTest.java @@ -0,0 +1,66 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.network.protocol; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.resourcepacks.ResourcePack; +import lombok.val; +import org.junit.jupiter.api.Test; + +import java.util.Arrays; +import java.util.Collections; +import java.util.UUID; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +/** + * @author joserobjr + * @since 2021-07-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +class ResourcePacksInfoPacketTest { + @Test + void encodeDecode() { + val resourcePack = mock(ResourcePack.class); + when(resourcePack.getPackId()).thenReturn(UUID.randomUUID()); + when(resourcePack.getPackVersion()).thenReturn("1.0"); + when(resourcePack.getPackSize()).thenReturn(1000); + + val packet = new ResourcePacksInfoPacket(); + packet.setBehaviourPackEntries(new ResourcePack[]{resourcePack}); + packet.setResourcePackEntries(new ResourcePack[]{resourcePack}); + packet.setForcedToAccept(true); + packet.setForcingServerPacksEnabled(true); + packet.setScriptingEnabled(true); + packet.encode(); + packet.decode(); + + assertTrue(packet.isForcedToAccept()); + assertTrue(packet.isScriptingEnabled()); + assertTrue(packet.isForcingServerPacksEnabled()); + + assertEquals(Collections.singletonList(resourcePack), Arrays.asList(packet.getBehaviourPackEntries())); + assertEquals(Collections.singletonList(resourcePack), Arrays.asList(packet.getResourcePackEntries())); + } +} diff --git a/src/test/java/cn/nukkit/network/protocol/SetTitlePacketTest.java b/src/test/java/cn/nukkit/network/protocol/SetTitlePacketTest.java new file mode 100644 index 00000000000..42b5bf749a6 --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/SetTitlePacketTest.java @@ -0,0 +1,76 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.network.protocol; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.network.protocol.SetTitlePacket.TitleAction; +import lombok.val; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-07-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +class SetTitlePacketTest { + @Test + void encodeDecode() { + val packet = new SetTitlePacket(); + packet.setTitleAction(TitleAction.SET_TITLE_MESSAGE); + packet.setText("text"); + packet.setFadeInTime(1); + packet.setFadeOutTime(2); + packet.setStayTime(3); + packet.setXuid("xuid"); + packet.setPlatformOnlineId("poid"); + packet.encode(); + + val packet2 = new SetTitlePacket(); + packet2.setBuffer(packet.getBuffer()); + packet2.getUnsignedVarInt(); + packet2.decode(); + + assertEquals(TitleAction.SET_TITLE_MESSAGE, packet2.getTitleAction()); + assertEquals("text", packet2.getText()); + assertEquals(1, packet2.getFadeInTime()); + assertEquals(2, packet2.getFadeOutTime()); + assertEquals(3, packet2.getStayTime()); + assertEquals("xuid", packet2.getXuid()); + assertEquals("poid", packet2.getPlatformOnlineId()); + assertTrue(packet2.feof()); + } + + @Test + void badType() { + val packet = new SetTitlePacket(); + packet.type = -1; + assertThrows(UnsupportedOperationException.class, packet::getTitleAction); + + val values = TitleAction.values(); + packet.type = values.length; + assertThrows(UnsupportedOperationException.class, packet::getTitleAction); + + packet.type = values.length - 1; + assertEquals(values[values.length - 1], packet.getTitleAction()); + } +} diff --git a/src/test/java/cn/nukkit/network/protocol/SimulationTypePacketTest.java b/src/test/java/cn/nukkit/network/protocol/SimulationTypePacketTest.java new file mode 100644 index 00000000000..ab211fb738f --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/SimulationTypePacketTest.java @@ -0,0 +1,51 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.network.protocol; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.network.protocol.SimulationTypePacket.SimulationType; +import lombok.val; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + +/** + * @author joserobjr + * @since 2021-07-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +class SimulationTypePacketTest { + @Test + void encodeDecode() { + val packet = new SimulationTypePacket(); + packet.setSimulationType(SimulationType.EDITOR); + packet.encode(); + + val packet2 = new SimulationTypePacket(); + packet2.setBuffer(packet.getBuffer()); + packet2.getUnsignedVarInt(); + packet2.decode(); + + assertEquals(SimulationType.EDITOR, packet2.getSimulationType()); + assertTrue(packet2.feof()); + } +} diff --git a/src/test/java/cn/nukkit/network/protocol/SyncEntityPropertyPacketTest.java b/src/test/java/cn/nukkit/network/protocol/SyncEntityPropertyPacketTest.java new file mode 100644 index 00000000000..5d5969a8ed0 --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/SyncEntityPropertyPacketTest.java @@ -0,0 +1,51 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.network.protocol; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.nbt.tag.CompoundTag; +import lombok.val; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + +/** + * @author joserobjr + * @since 2021-07-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +class SyncEntityPropertyPacketTest { + @Test + void encodeDecode() { + val packet = new SyncEntityPropertyPacket(); + packet.setData(new CompoundTag("A")); + packet.encode(); + + val packet2 = new SyncEntityPropertyPacket(); + packet2.setBuffer(packet.getBuffer()); + packet2.getUnsignedVarInt(); + packet2.decode(); + + assertEquals(new CompoundTag("A"), packet2.getData()); + assertTrue(packet2.feof()); + } +} From e18b69c51061b6b8a11e040af6a5f377401db7be Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 13 Jul 2021 23:18:37 -0300 Subject: [PATCH 166/394] Fixes NPCRequestPacket --- .../java/cn/nukkit/network/protocol/NPCRequestPacket.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java index a0866321301..9b0ba4d3b70 100644 --- a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java @@ -101,18 +101,21 @@ public byte pid() { @Override public void decode() { - this.entityRuntimeId = this.getEntityRuntimeId(); + this.entityRuntimeId = super.getEntityRuntimeId(); this.requestType = RequestType.values()[this.getByte()]; this.commandString = this.getString(); this.actionType = this.getByte(); + this.sceneName = this.getString(); } @Override public void encode() { + this.reset(); this.putEntityRuntimeId(this.entityRuntimeId); this.putByte((byte) requestType.ordinal()); this.putString(this.commandString); this.putByte((byte) this.actionType); + this.putString(sceneName); } } From 9f2e9c79acd3e89035cae5b7e7c2de3b0b079109 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 13 Jul 2021 23:28:24 -0300 Subject: [PATCH 167/394] Fixes a getter naming clash on NPCRequestPacket --- .../java/cn/nukkit/network/protocol/NPCRequestPacket.java | 5 ++--- .../cn/nukkit/network/protocol/NPCRequestPacketTest.java | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java index 9b0ba4d3b70..6f8812d3150 100644 --- a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java @@ -21,16 +21,15 @@ public class NPCRequestPacket extends DataPacket { private String sceneName; - @Override @PowerNukkitOnly @Since("FUTURE") - public long getEntityRuntimeId() { + public long getRequestedEntityRuntimeId() { return entityRuntimeId; } @PowerNukkitOnly @Since("FUTURE") - public void setEntityRuntimeId(long entityRuntimeId) { + public void setRequestedEntityRuntimeId(long entityRuntimeId) { this.entityRuntimeId = entityRuntimeId; } diff --git a/src/test/java/cn/nukkit/network/protocol/NPCRequestPacketTest.java b/src/test/java/cn/nukkit/network/protocol/NPCRequestPacketTest.java index 4d2c30eea90..5c5e01802aa 100644 --- a/src/test/java/cn/nukkit/network/protocol/NPCRequestPacketTest.java +++ b/src/test/java/cn/nukkit/network/protocol/NPCRequestPacketTest.java @@ -37,7 +37,7 @@ class NPCRequestPacketTest { @Test void encodeDecode() { val packet = new NPCRequestPacket(); - packet.setEntityRuntimeId(1L); + packet.setRequestedEntityRuntimeId(1L); packet.setRequestType(RequestType.SET_NAME); packet.setActionType(2); packet.setCommandString("command"); @@ -49,7 +49,7 @@ void encodeDecode() { packet2.getUnsignedVarInt(); packet2.decode(); - assertEquals(1L, packet2.getEntityRuntimeId()); + assertEquals(1L, packet2.getRequestedEntityRuntimeId()); assertEquals(RequestType.SET_NAME, packet2.getRequestType()); assertEquals(2, packet2.getActionType()); assertEquals("command", packet2.getCommandString()); From d33a57734f6141e10236d1139f0a5ad2bc2a1156 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 14 Jul 2021 00:30:18 -0300 Subject: [PATCH 168/394] Fixes minecraft:white_candle id --- src/main/resources/block_ids.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/block_ids.csv b/src/main/resources/block_ids.csv index 49d19a46cd9..686f9e67ebb 100644 --- a/src/main/resources/block_ids.csv +++ b/src/main/resources/block_ids.csv @@ -666,7 +666,7 @@ 665,minecraft:cracked_deepslate_bricks 666,minecraft:glow_lichen 667,minecraft:candle -668,minecraft:orange_candle +668,minecraft:white_candle 669,minecraft:orange_candle 670,minecraft:magenta_candle 671,minecraft:light_blue_candle From ec0b08b311e511aa684cc456c50ef50c4a052104 Mon Sep 17 00:00:00 2001 From: roridev Date: Wed, 14 Jul 2021 01:26:41 -0300 Subject: [PATCH 169/394] Revert "Merge pull request #1189 from FlamingKnight/new-nether-fungi" This reverts commit 0e9fd169c9cda46016968f618d83c27d6887e852, reversing changes made to 5a59eff2d892e61e2f2f922fa6ec18d7319573c3. --- .../cn/nukkit/block/BlockFungusCrimson.java | 14 +-- .../cn/nukkit/block/BlockFungusWarped.java | 14 +-- .../object/tree/ObjectCrimsonTree.java | 19 ---- .../object/tree/ObjectNetherTree.java | 107 ------------------ .../object/tree/ObjectWarpedTree.java | 18 --- 5 files changed, 4 insertions(+), 168 deletions(-) delete mode 100644 src/main/java/cn/nukkit/level/generator/object/tree/ObjectCrimsonTree.java delete mode 100644 src/main/java/cn/nukkit/level/generator/object/tree/ObjectNetherTree.java delete mode 100644 src/main/java/cn/nukkit/level/generator/object/tree/ObjectWarpedTree.java diff --git a/src/main/java/cn/nukkit/block/BlockFungusCrimson.java b/src/main/java/cn/nukkit/block/BlockFungusCrimson.java index a8a0229040b..046f2c5511e 100644 --- a/src/main/java/cn/nukkit/block/BlockFungusCrimson.java +++ b/src/main/java/cn/nukkit/block/BlockFungusCrimson.java @@ -3,10 +3,6 @@ import cn.nukkit.Player; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; -import cn.nukkit.event.level.StructureGrowEvent; -import cn.nukkit.level.ListChunkManager; -import cn.nukkit.level.generator.object.tree.ObjectCrimsonTree; -import cn.nukkit.math.NukkitRandom; import cn.nukkit.utils.BlockColor; import javax.annotation.Nullable; @@ -38,14 +34,8 @@ protected boolean canGrowOn(Block support) { @Override public boolean grow(@Nullable Player cause) { - ObjectCrimsonTree crimsonTree = new ObjectCrimsonTree(); - StructureGrowEvent event = new StructureGrowEvent(this, new ListChunkManager(level).getBlocks()); - level.getServer().getPluginManager().callEvent(event); - if(event.isCancelled()) { - return false; - } - crimsonTree.placeObject(level, getFloorX(), getFloorY(), getFloorZ(), new NukkitRandom()); - return true; + // TODO Make it grow + return false; } @Override diff --git a/src/main/java/cn/nukkit/block/BlockFungusWarped.java b/src/main/java/cn/nukkit/block/BlockFungusWarped.java index 1e83c866a4e..f1d83f605cb 100644 --- a/src/main/java/cn/nukkit/block/BlockFungusWarped.java +++ b/src/main/java/cn/nukkit/block/BlockFungusWarped.java @@ -3,10 +3,6 @@ import cn.nukkit.Player; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; -import cn.nukkit.event.level.StructureGrowEvent; -import cn.nukkit.level.ListChunkManager; -import cn.nukkit.level.generator.object.tree.ObjectWarpedTree; -import cn.nukkit.math.NukkitRandom; import cn.nukkit.utils.BlockColor; import javax.annotation.Nullable; @@ -38,14 +34,8 @@ protected boolean canGrowOn(Block support) { @Override public boolean grow(@Nullable Player cause) { - ObjectWarpedTree warpedTree = new ObjectWarpedTree(); - StructureGrowEvent event = new StructureGrowEvent(this, new ListChunkManager(level).getBlocks()); - level.getServer().getPluginManager().callEvent(event); - if(event.isCancelled()) { - return false; - } - warpedTree.placeObject(level, getFloorX(), getFloorY(), getFloorZ(), new NukkitRandom()); - return true; + // TODO Make it grow + return false; } @Override diff --git a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectCrimsonTree.java b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectCrimsonTree.java deleted file mode 100644 index 52751ace47f..00000000000 --- a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectCrimsonTree.java +++ /dev/null @@ -1,19 +0,0 @@ -package cn.nukkit.level.generator.object.tree; - -import cn.nukkit.block.Block; - -/** - * @author MagicDroidX (Nukkit Project) - */ -public class ObjectCrimsonTree extends ObjectNetherTree { - @Override - public int getTrunkBlock() { - return Block.CRIMSON_STEM; - } - - @Override - public int getLeafBlock() { - return Block.BLOCK_NETHER_WART_BLOCK; - } - -} \ No newline at end of file diff --git a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectNetherTree.java b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectNetherTree.java deleted file mode 100644 index e18ed7014c9..00000000000 --- a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectNetherTree.java +++ /dev/null @@ -1,107 +0,0 @@ -package cn.nukkit.level.generator.object.tree; - -import cn.nukkit.block.Block; -import cn.nukkit.level.ChunkManager; -import cn.nukkit.math.NukkitRandom; - -public abstract class ObjectNetherTree extends ObjectTree { - protected int treeHeight; - - public ObjectNetherTree() { - this(new NukkitRandom().nextBoundedInt(9)+4); - } - - public ObjectNetherTree(int treeHeight) { - this.treeHeight = treeHeight; - } - - @Override - public int getType() { - return 0; - } - - @Override - public int getTreeHeight() { - return treeHeight; - } - - @Override - public void placeObject(ChunkManager level, int x, int y, int z, NukkitRandom random) { - this.placeTrunk(level, x, y, z, random, this.getTreeHeight()); - - double blankArea = -3; - int mid = (int) (1 - blankArea / 2); - for (int yy = y - 3 + treeHeight; yy <= y + this.treeHeight-1; ++yy) { - for (int xx = x - mid; xx <= x + mid; xx++) { - int xOff = Math.abs(xx - x); - for (int zz = z - mid; zz <= z + mid; zz += mid*2) { - int zOff = Math.abs(zz - z); - if (xOff == mid && zOff == mid && random.nextBoundedInt(2) == 0) { - continue; - } - if (!Block.solid[level.getBlockIdAt(xx, yy, zz)]) { - if(random.nextBoundedInt(20) == 0) level.setBlockAt(xx, yy, zz, Block.SHROOMLIGHT); - else level.setBlockAt(xx, yy, zz, this.getLeafBlock()); - } - } - } - - for (int zz = z - mid; zz <= z + mid; zz++) { - int zOff = Math.abs(zz - z); - for (int xx = x - mid; xx <= x + mid; xx+=mid*2) { - int xOff = Math.abs(xx - x); - if (xOff == mid && zOff == mid && (random.nextBoundedInt(2) == 0)) { - continue; - } - if (!Block.solid[level.getBlockIdAt(xx, yy, zz)]) { - if(random.nextBoundedInt(20) == 0) level.setBlockAt(xx, yy, zz, Block.SHROOMLIGHT); - else level.setBlockAt(xx, yy, zz, this.getLeafBlock()); - } - } - } - } - - for (int yy = y - 4 + treeHeight; yy <= y + this.treeHeight-3; ++yy) { - for (int xx = x - mid; xx <= x + mid; xx++) { - for (int zz = z - mid; zz <= z + mid; zz += mid*2) { - if (!Block.solid[level.getBlockIdAt(xx, yy, zz)]) { - if(random.nextBoundedInt(3) == 0) { - for(int i = 0; i < random.nextBoundedInt(5); i++) { - if (!Block.solid[level.getBlockIdAt(xx, yy-i, zz)]) level.setBlockAt(xx, yy-i, zz, getLeafBlock()); - } - } - } - } - } - - for (int zz = z - mid; zz <= z + mid; zz++) { - for (int xx = x - mid; xx <= x + mid; xx+=mid*2) { - if (!Block.solid[level.getBlockIdAt(xx, yy, zz)]) { - if(random.nextBoundedInt(3) == 0) { - for(int i = 0; i < random.nextBoundedInt(4); i++) { - if (!Block.solid[level.getBlockIdAt(xx, yy-i, zz)]) level.setBlockAt(xx, yy-i, zz, getLeafBlock()); - } - } - } - } - } - } - - for(int xCanopy = x-mid+1; xCanopy <= x+mid-1; xCanopy++) { - for(int zCanopy = z-mid+1; zCanopy <= z+mid-1; zCanopy++) { - if (!Block.solid[level.getBlockIdAt(xCanopy, y+treeHeight, zCanopy)]) level.setBlockAt(xCanopy, y+treeHeight, zCanopy, getLeafBlock()); - } - } - } - - @Override - protected void placeTrunk(ChunkManager level, int x, int y, int z, NukkitRandom random, int trunkHeight) { - level.setBlockAt(x, y, z, getTrunkBlock()); - for (int yy = 0; yy < trunkHeight; ++yy) { - int blockId = level.getBlockIdAt(x, y + yy, z); - if (this.overridable(blockId)) { - level.setBlockAt(x, y + yy, z, this.getTrunkBlock()); - } - } - } -} \ No newline at end of file diff --git a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectWarpedTree.java b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectWarpedTree.java deleted file mode 100644 index d4c3913614f..00000000000 --- a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectWarpedTree.java +++ /dev/null @@ -1,18 +0,0 @@ -package cn.nukkit.level.generator.object.tree; - -import cn.nukkit.block.Block; - -/** - * @author MagicDroidX (Nukkit Project) - */ -public class ObjectWarpedTree extends ObjectNetherTree { - @Override - public int getTrunkBlock() { - return Block.WARPED_STEM; - } - - @Override - public int getLeafBlock() { - return Block.WARPED_WART_BLOCK; - } -} \ No newline at end of file From 0d7c16a8e46f5383d2692c21c209151f8473b38c Mon Sep 17 00:00:00 2001 From: Alemiz <45739737+Alemiz112@users.noreply.github.com> Date: Wed, 14 Jul 2021 11:33:35 +0200 Subject: [PATCH 170/394] Add support for 1.17.10 (#1868) * Start working on 1.17.10 changes * Update item states & creative items * Update particle ids --- .../cn/nukkit/level/particle/Particle.java | 143 +- .../protocol/AvailableCommandsPacket.java | 2 +- .../network/protocol/NPCRequestPacket.java | 5 +- .../nukkit/network/protocol/ProtocolInfo.java | 6 +- .../protocol/ResourcePacksInfoPacket.java | 7 +- .../network/protocol/SetTitlePacket.java | 6 + src/main/resources/creative_items.json | 1377 +++++++++-------- src/main/resources/runtime_block_states.dat | Bin 430019 -> 430907 bytes src/main/resources/runtime_item_states.json | 222 ++- 9 files changed, 995 insertions(+), 773 deletions(-) diff --git a/src/main/java/cn/nukkit/level/particle/Particle.java b/src/main/java/cn/nukkit/level/particle/Particle.java index 7f529f66c75..a7d40aca2b6 100644 --- a/src/main/java/cn/nukkit/level/particle/Particle.java +++ b/src/main/java/cn/nukkit/level/particle/Particle.java @@ -19,78 +19,79 @@ public abstract class Particle extends Vector3 { public static final int TYPE_EXPLODE = 6; public static final int TYPE_EVAPORATION = 7; public static final int TYPE_FLAME = 8; - public static final int TYPE_LAVA = 9; - public static final int TYPE_LARGE_SMOKE = 10; - public static final int TYPE_REDSTONE = 11; - public static final int TYPE_RISING_RED_DUST = 12; - public static final int TYPE_ITEM_BREAK = 13; - public static final int TYPE_SNOWBALL_POOF = 14; - public static final int TYPE_HUGE_EXPLODE = 15; - public static final int TYPE_HUGE_EXPLODE_SEED = 16; - public static final int TYPE_MOB_FLAME = 17; - public static final int TYPE_HEART = 18; - public static final int TYPE_TERRAIN = 19; - public static final int TYPE_SUSPENDED_TOWN = 20, TYPE_TOWN_AURA = 20; - public static final int TYPE_PORTAL = 21; + public static final int TYPE_CANDLE_FLAME = 9; + public static final int TYPE_LAVA = 10; + public static final int TYPE_LARGE_SMOKE = 11; + public static final int TYPE_REDSTONE = 12; + public static final int TYPE_RISING_RED_DUST = 13; + public static final int TYPE_ITEM_BREAK = 14; + public static final int TYPE_SNOWBALL_POOF = 15; + public static final int TYPE_HUGE_EXPLODE = 16; + public static final int TYPE_HUGE_EXPLODE_SEED = 17; + public static final int TYPE_MOB_FLAME = 18; + public static final int TYPE_HEART = 19; + public static final int TYPE_TERRAIN = 20; + public static final int TYPE_SUSPENDED_TOWN = 21, TYPE_TOWN_AURA = 21; + public static final int TYPE_PORTAL = 22; // 22 same as 21 - public static final int TYPE_SPLASH = 23, TYPE_WATER_SPLASH = 23; - public static final int TYPE_WATER_SPLASH_MANUAL = 24; - public static final int TYPE_WATER_WAKE = 25; - public static final int TYPE_DRIP_WATER = 26; - public static final int TYPE_DRIP_LAVA = 27; - public static final int TYPE_DRIP_HONEY = 28; - public static final int TYPE_STALACTITE_DRIP_WATER = 29; - public static final int TYPE_STALACTITE_DRIP_LAVA = 30; - public static final int TYPE_FALLING_DUST = 31, TYPE_DUST = 31; - public static final int TYPE_MOB_SPELL = 32; - public static final int TYPE_MOB_SPELL_AMBIENT = 33; - public static final int TYPE_MOB_SPELL_INSTANTANEOUS = 34; - public static final int TYPE_INK = 35; - public static final int TYPE_SLIME = 36; - public static final int TYPE_RAIN_SPLASH = 37; - public static final int TYPE_VILLAGER_ANGRY = 38; - public static final int TYPE_VILLAGER_HAPPY = 39; - public static final int TYPE_ENCHANTMENT_TABLE = 40; - public static final int TYPE_TRACKING_EMITTER = 41; - public static final int TYPE_NOTE = 42; - public static final int TYPE_WITCH_SPELL = 43; - public static final int TYPE_CARROT = 44; - public static final int TYPE_MOB_APPEARANCE = 45; - public static final int TYPE_END_ROD = 46; - public static final int TYPE_RISING_DRAGONS_BREATH = 47; - public static final int TYPE_SPIT = 48; - public static final int TYPE_TOTEM = 49; - public static final int TYPE_FOOD = 50; - public static final int TYPE_FIREWORKS_STARTER = 51; - public static final int TYPE_FIREWORKS_SPARK = 52; - public static final int TYPE_FIREWORKS_OVERLAY = 53; - public static final int TYPE_BALLOON_GAS = 54; - public static final int TYPE_COLORED_FLAME = 55; - public static final int TYPE_SPARKLER = 56; - public static final int TYPE_CONDUIT = 57; - public static final int TYPE_BUBBLE_COLUMN_UP = 58; - public static final int TYPE_BUBBLE_COLUMN_DOWN = 59; - public static final int TYPE_SNEEZE = 60; - public static final int TYPE_SHULKER_BULLET = 61; - public static final int TYPE_BLEACH = 62; - public static final int TYPE_LARGE_EXPLOSION = 63; - public static final int TYPE_MYCELIUM_DUST = 64; - public static final int TYPE_FALLING_RED_DUST = 65; - public static final int TYPE_CAMPFIRE_SMOKE = 66; - public static final int TYPE_TALL_CAMPFIRE_SMOKE = 67; - public static final int TYPE_FALLING_DRAGONS_BREATH = 68; - public static final int TYPE_DRAGONS_BREATH = 69; - public static final int TYPE_BLUE_FLAME = 70; - public static final int TYPE_SOUL = 71; - public static final int TYPE_OBSIDIAN_TEAR = 72; - public static final int TYPE_PORTAL_REVERSE = 73; - public static final int TYPE_SNOWFLAKE = 74; - public static final int TYPE_VIBRATION_SIGNAL = 75; - public static final int TYPE_SCULK_SENSOR_REDSTONE = 76; - public static final int TYPE_SPORE_BLOSSOM_SHOWER = 77; - public static final int TYPE_SPORE_BLOSSOM_AMBIENT = 78; - public static final int TYPE_WAX = 79; - public static final int TYPE_ELECTRIC_SPARK = 80; + public static final int TYPE_SPLASH = 24, TYPE_WATER_SPLASH = 24; + public static final int TYPE_WATER_SPLASH_MANUAL = 25; + public static final int TYPE_WATER_WAKE = 26; + public static final int TYPE_DRIP_WATER = 27; + public static final int TYPE_DRIP_LAVA = 28; + public static final int TYPE_DRIP_HONEY = 29; + public static final int TYPE_STALACTITE_DRIP_WATER = 30; + public static final int TYPE_STALACTITE_DRIP_LAVA = 31; + public static final int TYPE_FALLING_DUST = 32, TYPE_DUST = 32; + public static final int TYPE_MOB_SPELL = 33; + public static final int TYPE_MOB_SPELL_AMBIENT = 34; + public static final int TYPE_MOB_SPELL_INSTANTANEOUS = 35; + public static final int TYPE_INK = 36; + public static final int TYPE_SLIME = 37; + public static final int TYPE_RAIN_SPLASH = 38; + public static final int TYPE_VILLAGER_ANGRY = 39; + public static final int TYPE_VILLAGER_HAPPY = 40; + public static final int TYPE_ENCHANTMENT_TABLE = 41; + public static final int TYPE_TRACKING_EMITTER = 42; + public static final int TYPE_NOTE = 43; + public static final int TYPE_WITCH_SPELL = 44; + public static final int TYPE_CARROT = 45; + public static final int TYPE_MOB_APPEARANCE = 46; + public static final int TYPE_END_ROD = 47; + public static final int TYPE_RISING_DRAGONS_BREATH = 48; + public static final int TYPE_SPIT = 49; + public static final int TYPE_TOTEM = 50; + public static final int TYPE_FOOD = 51; + public static final int TYPE_FIREWORKS_STARTER = 52; + public static final int TYPE_FIREWORKS_SPARK = 53; + public static final int TYPE_FIREWORKS_OVERLAY = 54; + public static final int TYPE_BALLOON_GAS = 55; + public static final int TYPE_COLORED_FLAME = 56; + public static final int TYPE_SPARKLER = 57; + public static final int TYPE_CONDUIT = 58; + public static final int TYPE_BUBBLE_COLUMN_UP = 59; + public static final int TYPE_BUBBLE_COLUMN_DOWN = 60; + public static final int TYPE_SNEEZE = 61; + public static final int TYPE_SHULKER_BULLET = 62; + public static final int TYPE_BLEACH = 63; + public static final int TYPE_LARGE_EXPLOSION = 64; + public static final int TYPE_MYCELIUM_DUST = 65; + public static final int TYPE_FALLING_RED_DUST = 66; + public static final int TYPE_CAMPFIRE_SMOKE = 67; + public static final int TYPE_TALL_CAMPFIRE_SMOKE = 68; + public static final int TYPE_FALLING_DRAGONS_BREATH = 69; + public static final int TYPE_DRAGONS_BREATH = 70; + public static final int TYPE_BLUE_FLAME = 71; + public static final int TYPE_SOUL = 72; + public static final int TYPE_OBSIDIAN_TEAR = 73; + public static final int TYPE_PORTAL_REVERSE = 74; + public static final int TYPE_SNOWFLAKE = 75; + public static final int TYPE_VIBRATION_SIGNAL = 76; + public static final int TYPE_SCULK_SENSOR_REDSTONE = 77; + public static final int TYPE_SPORE_BLOSSOM_SHOWER = 78; + public static final int TYPE_SPORE_BLOSSOM_AMBIENT = 79; + public static final int TYPE_WAX = 80; + public static final int TYPE_ELECTRIC_SPARK = 81; public static final Integer getParticleIdByName(String name) { name = name.toUpperCase(); diff --git a/src/main/java/cn/nukkit/network/protocol/AvailableCommandsPacket.java b/src/main/java/cn/nukkit/network/protocol/AvailableCommandsPacket.java index 8e59f8fa958..86189f3f663 100644 --- a/src/main/java/cn/nukkit/network/protocol/AvailableCommandsPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AvailableCommandsPacket.java @@ -130,7 +130,7 @@ public void encode() { putString(name); putString(data.description); - putByte((byte) data.flags); + putLShort(data.flags); putByte((byte) data.permission); putLInt(data.aliases == null ? -1 : enums.indexOf(data.aliases)); diff --git a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java index 46ba0208681..21b498a526f 100644 --- a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java @@ -13,6 +13,8 @@ public class NPCRequestPacket extends DataPacket { public int actionType; + public String sceneName; + public enum RequestType { SET_ACTIONS, @@ -35,6 +37,7 @@ public void decode() { this.requestType = RequestType.values()[this.getByte()]; this.commandString = this.getString(); this.actionType = this.getByte(); + this.sceneName = this.getString(); } @Override @@ -43,6 +46,6 @@ public void encode() { this.putByte((byte) requestType.ordinal()); this.putString(this.commandString); this.putByte((byte) this.actionType); + this.putString(this.sceneName); } - } diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index 0cb78a7304a..36ea2641e1c 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -14,12 +14,12 @@ public interface ProtocolInfo { * Actual Minecraft: PE protocol version */ @SuppressWarnings("UnnecessaryBoxing") - int CURRENT_PROTOCOL = Integer.valueOf("440"); // DO NOT REMOVE BOXING + int CURRENT_PROTOCOL = Integer.valueOf("448"); // DO NOT REMOVE BOXING List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION = "v1.17.0"; - String MINECRAFT_VERSION_NETWORK = "1.17.0"; + String MINECRAFT_VERSION = "v1.17.10"; + String MINECRAFT_VERSION_NETWORK = "1.17.10"; byte LOGIN_PACKET = 0x01; byte PLAY_STATUS_PACKET = 0x02; diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java index fd868b369ce..38fc3666f33 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java @@ -10,6 +10,7 @@ public class ResourcePacksInfoPacket extends DataPacket { public boolean mustAccept; public boolean scripting; + public boolean forceServerPacks; public ResourcePack[] behaviourPackEntries = new ResourcePack[0]; public ResourcePack[] resourcePackEntries = new ResourcePack[0]; @@ -23,9 +24,9 @@ public void encode() { this.reset(); this.putBoolean(this.mustAccept); this.putBoolean(this.scripting); - - encodePacks(this.behaviourPackEntries); - encodePacks(this.resourcePackEntries); + this.putBoolean(this.forceServerPacks); + this.encodePacks(this.behaviourPackEntries); + this.encodePacks(this.resourcePackEntries); } private void encodePacks(ResourcePack[] packs) { diff --git a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java index c2242c6917d..01da1578d7e 100644 --- a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java @@ -21,6 +21,8 @@ public class SetTitlePacket extends DataPacket { public int fadeInTime = 0; public int stayTime = 0; public int fadeOutTime = 0; + public String xuid = ""; + public String platformOnlineId = ""; @Override public byte pid() { @@ -34,6 +36,8 @@ public void decode() { this.fadeInTime = this.getVarInt(); this.stayTime = this.getVarInt(); this.fadeOutTime = this.getVarInt(); + this.xuid = this.getString(); + this.platformOnlineId = this.getString(); } @Override @@ -44,5 +48,7 @@ public void encode() { this.putVarInt(fadeInTime); this.putVarInt(stayTime); this.putVarInt(fadeOutTime); + this.putString(this.xuid); + this.putString(this.platformOnlineId); } } diff --git a/src/main/resources/creative_items.json b/src/main/resources/creative_items.json index 2226e8272c2..03692fd0a82 100644 --- a/src/main/resources/creative_items.json +++ b/src/main/resources/creative_items.json @@ -2,163 +2,163 @@ "items" : [ { "id" : "minecraft:planks", - "blockRuntimeId" : 5640 + "blockRuntimeId" : 5770 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5641 + "blockRuntimeId" : 5771 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5642 + "blockRuntimeId" : 5772 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5643 + "blockRuntimeId" : 5773 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5644 + "blockRuntimeId" : 5774 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5645 + "blockRuntimeId" : 5775 }, { "id" : "minecraft:crimson_planks", - "blockRuntimeId" : 3799 + "blockRuntimeId" : 3839 }, { "id" : "minecraft:warped_planks", - "blockRuntimeId" : 7352 + "blockRuntimeId" : 7502 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1278 + "blockRuntimeId" : 1318 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1279 + "blockRuntimeId" : 1319 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1280 + "blockRuntimeId" : 1320 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1281 + "blockRuntimeId" : 1321 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1282 + "blockRuntimeId" : 1322 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1283 + "blockRuntimeId" : 1323 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1290 + "blockRuntimeId" : 1330 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1285 + "blockRuntimeId" : 1325 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1286 + "blockRuntimeId" : 1326 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1284 + "blockRuntimeId" : 1324 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1287 + "blockRuntimeId" : 1327 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1291 + "blockRuntimeId" : 1331 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1288 + "blockRuntimeId" : 1328 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1289 + "blockRuntimeId" : 1329 }, { "id" : "minecraft:blackstone_wall", - "blockRuntimeId" : 497 + "blockRuntimeId" : 507 }, { "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 5884 + "blockRuntimeId" : 6014 }, { "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5681 + "blockRuntimeId" : 5811 }, { "id" : "minecraft:cobbled_deepslate_wall", - "blockRuntimeId" : 1115 + "blockRuntimeId" : 1155 }, { "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4247 + "blockRuntimeId" : 4297 }, { "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6059 + "blockRuntimeId" : 6189 }, { "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4064 + "blockRuntimeId" : 4114 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4723 + "blockRuntimeId" : 4773 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4724 + "blockRuntimeId" : 4774 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4725 + "blockRuntimeId" : 4775 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4726 + "blockRuntimeId" : 4776 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4727 + "blockRuntimeId" : 4777 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4728 + "blockRuntimeId" : 4778 }, { "id" : "minecraft:nether_brick_fence", - "blockRuntimeId" : 5552 + "blockRuntimeId" : 5662 }, { "id" : "minecraft:crimson_fence", - "blockRuntimeId" : 3777 + "blockRuntimeId" : 3817 }, { "id" : "minecraft:warped_fence", - "blockRuntimeId" : 7330 + "blockRuntimeId" : 7480 }, { "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4729 + "blockRuntimeId" : 4779 }, { "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 6764 + "blockRuntimeId" : 6914 }, { "id" : "minecraft:birch_fence_gate", @@ -166,7 +166,7 @@ }, { "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5158 + "blockRuntimeId" : 5228 }, { "id" : "minecraft:acacia_fence_gate", @@ -174,35 +174,35 @@ }, { "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3930 + "blockRuntimeId" : 3980 }, { "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3778 + "blockRuntimeId" : 3818 }, { "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7331 + "blockRuntimeId" : 7481 }, { "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5571 + "blockRuntimeId" : 5681 }, { "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7035 + "blockRuntimeId" : 7185 }, { "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5533 + "blockRuntimeId" : 5643 }, { "id" : "minecraft:oak_stairs", - "blockRuntimeId" : 5580 + "blockRuntimeId" : 5690 }, { "id" : "minecraft:spruce_stairs", - "blockRuntimeId" : 6796 + "blockRuntimeId" : 6946 }, { "id" : "minecraft:birch_stairs", @@ -210,7 +210,7 @@ }, { "id" : "minecraft:jungle_stairs", - "blockRuntimeId" : 5190 + "blockRuntimeId" : 5260 }, { "id" : "minecraft:acacia_stairs", @@ -218,47 +218,47 @@ }, { "id" : "minecraft:dark_oak_stairs", - "blockRuntimeId" : 3962 + "blockRuntimeId" : 4012 }, { "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 6941 + "blockRuntimeId" : 7091 }, { "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5541 + "blockRuntimeId" : 5651 }, { "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6533 + "blockRuntimeId" : 6683 }, { "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6657 + "blockRuntimeId" : 6807 }, { "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6460 + "blockRuntimeId" : 6610 }, { "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6649 + "blockRuntimeId" : 6799 }, { "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4914 + "blockRuntimeId" : 4964 }, { "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6229 + "blockRuntimeId" : 6359 }, { "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 4425 + "blockRuntimeId" : 4475 }, { "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6221 + "blockRuntimeId" : 6351 }, { "id" : "minecraft:andesite_stairs", @@ -266,115 +266,115 @@ }, { "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5657 + "blockRuntimeId" : 5787 }, { "id" : "minecraft:brick_stairs", - "blockRuntimeId" : 856 + "blockRuntimeId" : 876 }, { "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5553 + "blockRuntimeId" : 5663 }, { "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6448 + "blockRuntimeId" : 6598 }, { "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4669 + "blockRuntimeId" : 4719 }, { "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6392 + "blockRuntimeId" : 6532 }, { "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6641 + "blockRuntimeId" : 6791 }, { "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6370 + "blockRuntimeId" : 6510 }, { "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6292 + "blockRuntimeId" : 6422 }, { "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 3986 + "blockRuntimeId" : 4036 }, { "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6284 + "blockRuntimeId" : 6414 }, { "id" : "minecraft:crimson_stairs", - "blockRuntimeId" : 3819 + "blockRuntimeId" : 3859 }, { "id" : "minecraft:warped_stairs", - "blockRuntimeId" : 7372 + "blockRuntimeId" : 7522 }, { "id" : "minecraft:blackstone_stairs", - "blockRuntimeId" : 489 + "blockRuntimeId" : 499 }, { "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 5876 + "blockRuntimeId" : 6006 }, { "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5673 + "blockRuntimeId" : 5803 }, { "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3872 + "blockRuntimeId" : 3912 }, { "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4705 + "blockRuntimeId" : 4755 }, { "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7499 + "blockRuntimeId" : 7649 }, { "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5611 + "blockRuntimeId" : 5731 }, { "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7443 + "blockRuntimeId" : 7593 }, { "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7457 + "blockRuntimeId" : 7607 }, { "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7485 + "blockRuntimeId" : 7635 }, { "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7471 + "blockRuntimeId" : 7621 }, { "id" : "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId" : 1107 + "blockRuntimeId" : 1147 }, { "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4239 + "blockRuntimeId" : 4289 }, { "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6051 + "blockRuntimeId" : 6181 }, { "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4056 + "blockRuntimeId" : 4106 }, { "id" : "minecraft:wooden_door" @@ -405,11 +405,11 @@ }, { "id" : "minecraft:trapdoor", - "blockRuntimeId" : 7117 + "blockRuntimeId" : 7267 }, { "id" : "minecraft:spruce_trapdoor", - "blockRuntimeId" : 6820 + "blockRuntimeId" : 6970 }, { "id" : "minecraft:birch_trapdoor", @@ -417,7 +417,7 @@ }, { "id" : "minecraft:jungle_trapdoor", - "blockRuntimeId" : 5214 + "blockRuntimeId" : 5284 }, { "id" : "minecraft:acacia_trapdoor", @@ -425,1083 +425,1083 @@ }, { "id" : "minecraft:dark_oak_trapdoor", - "blockRuntimeId" : 3970 + "blockRuntimeId" : 4020 }, { "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5073 + "blockRuntimeId" : 5143 }, { "id" : "minecraft:crimson_trapdoor", - "blockRuntimeId" : 3846 + "blockRuntimeId" : 3886 }, { "id" : "minecraft:warped_trapdoor", - "blockRuntimeId" : 7399 + "blockRuntimeId" : 7549 }, { "id" : "minecraft:iron_bars", - "blockRuntimeId" : 5038 + "blockRuntimeId" : 5108 }, { "id" : "minecraft:glass", - "blockRuntimeId" : 4820 + "blockRuntimeId" : 4870 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6992 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6850 + "blockRuntimeId" : 7000 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6849 + "blockRuntimeId" : 6999 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6857 + "blockRuntimeId" : 7007 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6854 + "blockRuntimeId" : 7004 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6856 + "blockRuntimeId" : 7006 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6993 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 6996 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 6997 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6855 + "blockRuntimeId" : 7005 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6851 + "blockRuntimeId" : 7001 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6995 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6853 + "blockRuntimeId" : 7003 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6852 + "blockRuntimeId" : 7002 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6994 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 6998 }, { "id" : "minecraft:tinted_glass", - "blockRuntimeId" : 7106 + "blockRuntimeId" : 7256 }, { "id" : "minecraft:glass_pane", - "blockRuntimeId" : 4821 + "blockRuntimeId" : 4871 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6858 + "blockRuntimeId" : 7008 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6866 + "blockRuntimeId" : 7016 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6865 + "blockRuntimeId" : 7015 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6873 + "blockRuntimeId" : 7023 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6870 + "blockRuntimeId" : 7020 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6872 + "blockRuntimeId" : 7022 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6859 + "blockRuntimeId" : 7009 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6862 + "blockRuntimeId" : 7012 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6863 + "blockRuntimeId" : 7013 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6871 + "blockRuntimeId" : 7021 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6867 + "blockRuntimeId" : 7017 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6861 + "blockRuntimeId" : 7011 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6869 + "blockRuntimeId" : 7019 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6868 + "blockRuntimeId" : 7018 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6860 + "blockRuntimeId" : 7010 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6864 + "blockRuntimeId" : 7014 }, { "id" : "minecraft:ladder", - "blockRuntimeId" : 5262 + "blockRuntimeId" : 5332 }, { "id" : "minecraft:scaffolding", - "blockRuntimeId" : 6553 + "blockRuntimeId" : 6703 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6977 + "blockRuntimeId" : 7127 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7027 + "blockRuntimeId" : 7177 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6980 + "blockRuntimeId" : 7130 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6998 + "blockRuntimeId" : 7148 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7647 + "blockRuntimeId" : 7807 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7648 + "blockRuntimeId" : 7808 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7649 + "blockRuntimeId" : 7809 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7650 + "blockRuntimeId" : 7810 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7651 + "blockRuntimeId" : 7811 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7652 + "blockRuntimeId" : 7812 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6982 + "blockRuntimeId" : 7132 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7025 + "blockRuntimeId" : 7175 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6978 + "blockRuntimeId" : 7128 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7028 + "blockRuntimeId" : 7178 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6999 + "blockRuntimeId" : 7149 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6993 + "blockRuntimeId" : 7143 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7029 + "blockRuntimeId" : 7179 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7010 + "blockRuntimeId" : 7160 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7015 + "blockRuntimeId" : 7165 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7016 + "blockRuntimeId" : 7166 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7013 + "blockRuntimeId" : 7163 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7014 + "blockRuntimeId" : 7164 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7012 + "blockRuntimeId" : 7162 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7011 + "blockRuntimeId" : 7161 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6981 + "blockRuntimeId" : 7131 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6984 + "blockRuntimeId" : 7134 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7000 + "blockRuntimeId" : 7150 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7009 + "blockRuntimeId" : 7159 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6983 + "blockRuntimeId" : 7133 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7026 + "blockRuntimeId" : 7176 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6994 + "blockRuntimeId" : 7144 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6995 + "blockRuntimeId" : 7145 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6996 + "blockRuntimeId" : 7146 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6997 + "blockRuntimeId" : 7147 }, { "id" : "minecraft:crimson_slab", - "blockRuntimeId" : 3817 + "blockRuntimeId" : 3857 }, { "id" : "minecraft:warped_slab", - "blockRuntimeId" : 7370 + "blockRuntimeId" : 7520 }, { "id" : "minecraft:blackstone_slab", - "blockRuntimeId" : 487 + "blockRuntimeId" : 497 }, { "id" : "minecraft:polished_blackstone_slab", - "blockRuntimeId" : 5874 + "blockRuntimeId" : 6004 }, { "id" : "minecraft:polished_blackstone_brick_slab", - "blockRuntimeId" : 5671 + "blockRuntimeId" : 5801 }, { "id" : "minecraft:cut_copper_slab", - "blockRuntimeId" : 3870 + "blockRuntimeId" : 3910 }, { "id" : "minecraft:exposed_cut_copper_slab", - "blockRuntimeId" : 4703 + "blockRuntimeId" : 4753 }, { "id" : "minecraft:weathered_cut_copper_slab", - "blockRuntimeId" : 7497 + "blockRuntimeId" : 7647 }, { "id" : "minecraft:oxidized_cut_copper_slab", - "blockRuntimeId" : 5609 + "blockRuntimeId" : 5729 }, { "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7441 + "blockRuntimeId" : 7591 }, { "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7455 + "blockRuntimeId" : 7605 }, { "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7483 + "blockRuntimeId" : 7633 }, { "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7469 + "blockRuntimeId" : 7619 }, { "id" : "minecraft:cobbled_deepslate_slab", - "blockRuntimeId" : 1105 + "blockRuntimeId" : 1145 }, { "id" : "minecraft:polished_deepslate_slab", - "blockRuntimeId" : 6049 + "blockRuntimeId" : 6179 }, { "id" : "minecraft:deepslate_tile_slab", - "blockRuntimeId" : 4237 + "blockRuntimeId" : 4287 }, { "id" : "minecraft:deepslate_brick_slab", - "blockRuntimeId" : 4054 + "blockRuntimeId" : 4104 }, { "id" : "minecraft:brick_block", - "blockRuntimeId" : 855 + "blockRuntimeId" : 875 }, { "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1090 + "blockRuntimeId" : 1130 }, { "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3728 + "blockRuntimeId" : 3768 }, { "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6390 + "blockRuntimeId" : 6530 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7043 + "blockRuntimeId" : 7193 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7044 + "blockRuntimeId" : 7194 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7045 + "blockRuntimeId" : 7195 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7046 + "blockRuntimeId" : 7196 }, { "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4677 + "blockRuntimeId" : 4727 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6283 + "blockRuntimeId" : 6413 }, { "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5843 + "blockRuntimeId" : 5973 }, { "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3729 + "blockRuntimeId" : 3769 }, { "id" : "minecraft:gilded_blackstone", - "blockRuntimeId" : 4819 + "blockRuntimeId" : 4869 }, { "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1091 + "blockRuntimeId" : 1131 }, { "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4409 + "blockRuntimeId" : 4459 }, { "id" : "minecraft:cracked_deepslate_tiles", - "blockRuntimeId" : 3727 + "blockRuntimeId" : 3767 }, { "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4226 + "blockRuntimeId" : 4276 }, { "id" : "minecraft:cracked_deepslate_bricks", - "blockRuntimeId" : 3726 + "blockRuntimeId" : 3766 }, { "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1089 + "blockRuntimeId" : 1129 }, { "id" : "minecraft:cobblestone", - "blockRuntimeId" : 1277 + "blockRuntimeId" : 1317 }, { "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5532 + "blockRuntimeId" : 5642 }, { "id" : "minecraft:cobbled_deepslate", - "blockRuntimeId" : 1102 + "blockRuntimeId" : 1142 }, { "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6665 + "blockRuntimeId" : 6815 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6529 + "blockRuntimeId" : 6679 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6530 + "blockRuntimeId" : 6680 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6531 + "blockRuntimeId" : 6681 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6532 + "blockRuntimeId" : 6682 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6456 + "blockRuntimeId" : 6606 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6457 + "blockRuntimeId" : 6607 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6458 + "blockRuntimeId" : 6608 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6459 + "blockRuntimeId" : 6609 }, { "id" : "minecraft:coal_block", - "blockRuntimeId" : 1100 + "blockRuntimeId" : 1140 }, { "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 4533 + "blockRuntimeId" : 4583 }, { "id" : "minecraft:gold_block", - "blockRuntimeId" : 4900 + "blockRuntimeId" : 4950 }, { "id" : "minecraft:iron_block", - "blockRuntimeId" : 5039 + "blockRuntimeId" : 5109 }, { "id" : "minecraft:copper_block", - "blockRuntimeId" : 3636 + "blockRuntimeId" : 3676 }, { "id" : "minecraft:exposed_copper", - "blockRuntimeId" : 4701 + "blockRuntimeId" : 4751 }, { "id" : "minecraft:weathered_copper", - "blockRuntimeId" : 7495 + "blockRuntimeId" : 7645 }, { "id" : "minecraft:oxidized_copper", - "blockRuntimeId" : 5607 + "blockRuntimeId" : 5727 }, { "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7439 + "blockRuntimeId" : 7589 }, { "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7453 + "blockRuntimeId" : 7603 }, { "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7481 + "blockRuntimeId" : 7631 }, { "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7467 + "blockRuntimeId" : 7617 }, { "id" : "minecraft:cut_copper", - "blockRuntimeId" : 3869 + "blockRuntimeId" : 3909 }, { "id" : "minecraft:exposed_cut_copper", - "blockRuntimeId" : 4702 + "blockRuntimeId" : 4752 }, { "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7496 + "blockRuntimeId" : 7646 }, { "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5608 + "blockRuntimeId" : 5728 }, { "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7440 + "blockRuntimeId" : 7590 }, { "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7454 + "blockRuntimeId" : 7604 }, { "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7482 + "blockRuntimeId" : 7632 }, { "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7468 + "blockRuntimeId" : 7618 }, { "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4666 + "blockRuntimeId" : 4716 }, { "id" : "minecraft:diamond_block", - "blockRuntimeId" : 4423 + "blockRuntimeId" : 4473 }, { "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5270 + "blockRuntimeId" : 5340 }, { "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6412 + "blockRuntimeId" : 6552 }, { "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6410 + "blockRuntimeId" : 6550 }, { "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6411 + "blockRuntimeId" : 6551 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6378 + "blockRuntimeId" : 6518 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6380 + "blockRuntimeId" : 6520 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6379 + "blockRuntimeId" : 6519 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6381 + "blockRuntimeId" : 6521 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6281 + "blockRuntimeId" : 6411 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6282 + "blockRuntimeId" : 6412 }, { "id" : "minecraft:slime", - "blockRuntimeId" : 6618 + "blockRuntimeId" : 6768 }, { "id" : "minecraft:honey_block", - "blockRuntimeId" : 5017 + "blockRuntimeId" : 5087 }, { "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5018 + "blockRuntimeId" : 5088 }, { "id" : "minecraft:hay_block", - "blockRuntimeId" : 4989 + "blockRuntimeId" : 5059 }, { "id" : "minecraft:bone_block", - "blockRuntimeId" : 672 + "blockRuntimeId" : 692 }, { "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5551 + "blockRuntimeId" : 5661 }, { "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6447 + "blockRuntimeId" : 6597 }, { "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5568 + "blockRuntimeId" : 5678 }, { "id" : "minecraft:lodestone", - "blockRuntimeId" : 5438 + "blockRuntimeId" : 5538 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7659 + "blockRuntimeId" : 7819 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7667 + "blockRuntimeId" : 7827 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7666 + "blockRuntimeId" : 7826 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7674 + "blockRuntimeId" : 7834 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7671 + "blockRuntimeId" : 7831 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7673 + "blockRuntimeId" : 7833 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7660 + "blockRuntimeId" : 7820 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7663 + "blockRuntimeId" : 7823 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7664 + "blockRuntimeId" : 7824 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7672 + "blockRuntimeId" : 7832 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7668 + "blockRuntimeId" : 7828 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7662 + "blockRuntimeId" : 7822 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7670 + "blockRuntimeId" : 7830 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7669 + "blockRuntimeId" : 7829 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7661 + "blockRuntimeId" : 7821 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7665 + "blockRuntimeId" : 7825 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 923 + "blockRuntimeId" : 963 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 931 + "blockRuntimeId" : 971 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 930 + "blockRuntimeId" : 970 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 938 + "blockRuntimeId" : 978 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 935 + "blockRuntimeId" : 975 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 937 + "blockRuntimeId" : 977 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 924 + "blockRuntimeId" : 964 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 927 + "blockRuntimeId" : 967 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 928 + "blockRuntimeId" : 968 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 936 + "blockRuntimeId" : 976 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 932 + "blockRuntimeId" : 972 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 926 + "blockRuntimeId" : 966 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 934 + "blockRuntimeId" : 974 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 933 + "blockRuntimeId" : 973 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 925 + "blockRuntimeId" : 965 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 929 + "blockRuntimeId" : 969 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3619 + "blockRuntimeId" : 3659 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3627 + "blockRuntimeId" : 3667 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3626 + "blockRuntimeId" : 3666 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3634 + "blockRuntimeId" : 3674 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3631 + "blockRuntimeId" : 3671 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3633 + "blockRuntimeId" : 3673 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3620 + "blockRuntimeId" : 3660 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3623 + "blockRuntimeId" : 3663 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3624 + "blockRuntimeId" : 3664 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3632 + "blockRuntimeId" : 3672 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3628 + "blockRuntimeId" : 3668 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3622 + "blockRuntimeId" : 3662 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3630 + "blockRuntimeId" : 3670 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3629 + "blockRuntimeId" : 3669 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3621 + "blockRuntimeId" : 3661 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3625 + "blockRuntimeId" : 3665 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3603 + "blockRuntimeId" : 3643 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3611 + "blockRuntimeId" : 3651 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3610 + "blockRuntimeId" : 3650 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3618 + "blockRuntimeId" : 3658 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3615 + "blockRuntimeId" : 3655 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3617 + "blockRuntimeId" : 3657 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3604 + "blockRuntimeId" : 3644 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3607 + "blockRuntimeId" : 3647 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3608 + "blockRuntimeId" : 3648 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3616 + "blockRuntimeId" : 3656 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3612 + "blockRuntimeId" : 3652 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3606 + "blockRuntimeId" : 3646 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3614 + "blockRuntimeId" : 3654 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3613 + "blockRuntimeId" : 3653 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3605 + "blockRuntimeId" : 3645 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3609 + "blockRuntimeId" : 3649 }, { "id" : "minecraft:clay", - "blockRuntimeId" : 1099 + "blockRuntimeId" : 1139 }, { "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 4988 + "blockRuntimeId" : 5058 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6874 + "blockRuntimeId" : 7024 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6882 + "blockRuntimeId" : 7032 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6881 + "blockRuntimeId" : 7031 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6889 + "blockRuntimeId" : 7039 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6886 + "blockRuntimeId" : 7036 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6888 + "blockRuntimeId" : 7038 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6875 + "blockRuntimeId" : 7025 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6878 + "blockRuntimeId" : 7028 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6879 + "blockRuntimeId" : 7029 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6887 + "blockRuntimeId" : 7037 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6883 + "blockRuntimeId" : 7033 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 7027 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6885 + "blockRuntimeId" : 7035 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6884 + "blockRuntimeId" : 7034 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6876 + "blockRuntimeId" : 7026 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 7030 }, { "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7544 + "blockRuntimeId" : 7704 }, { "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6600 + "blockRuntimeId" : 6750 }, { "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 4925 + "blockRuntimeId" : 4985 }, { "id" : "minecraft:black_glazed_terracotta", - "blockRuntimeId" : 478 + "blockRuntimeId" : 488 }, { "id" : "minecraft:brown_glazed_terracotta", - "blockRuntimeId" : 864 + "blockRuntimeId" : 894 }, { "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6424 + "blockRuntimeId" : 6574 }, { "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5601 + "blockRuntimeId" : 5721 }, { "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7676 + "blockRuntimeId" : 7846 }, { "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5407 + "blockRuntimeId" : 5507 }, { "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 4931 + "blockRuntimeId" : 5001 }, { "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3880 + "blockRuntimeId" : 3930 }, { "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5379 + "blockRuntimeId" : 5459 }, { "id" : "minecraft:blue_glazed_terracotta", - "blockRuntimeId" : 665 + "blockRuntimeId" : 685 }, { "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6352 + "blockRuntimeId" : 6492 }, { "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5461 + "blockRuntimeId" : 5571 }, { "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5622 + "blockRuntimeId" : 5752 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6358 + "blockRuntimeId" : 6498 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6360 + "blockRuntimeId" : 6500 }, { "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5567 + "blockRuntimeId" : 5677 }, { "id" : "minecraft:warped_wart_block", - "blockRuntimeId" : 7421 + "blockRuntimeId" : 7571 }, { "id" : "minecraft:shroomlight", - "blockRuntimeId" : 6583 + "blockRuntimeId" : 6733 }, { "id" : "minecraft:crimson_nylium", - "blockRuntimeId" : 3798 + "blockRuntimeId" : 3838 }, { "id" : "minecraft:warped_nylium", - "blockRuntimeId" : 7351 + "blockRuntimeId" : 7501 }, { "id" : "minecraft:basalt", @@ -1509,331 +1509,331 @@ }, { "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5665 + "blockRuntimeId" : 5795 }, { "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6640 + "blockRuntimeId" : 6790 }, { "id" : "minecraft:soul_soil", - "blockRuntimeId" : 6710 + "blockRuntimeId" : 6860 }, { "id" : "minecraft:dirt", - "blockRuntimeId" : 4433 + "blockRuntimeId" : 4483 }, { "id" : "minecraft:dirt", - "blockRuntimeId" : 4434 + "blockRuntimeId" : 4484 }, { "id" : "minecraft:farmland", - "blockRuntimeId" : 4715 + "blockRuntimeId" : 4765 }, { "id" : "minecraft:grass", - "blockRuntimeId" : 4922 + "blockRuntimeId" : 4972 }, { "id" : "minecraft:grass_path", - "blockRuntimeId" : 4923 + "blockRuntimeId" : 4973 }, { "id" : "minecraft:podzol", - "blockRuntimeId" : 5646 + "blockRuntimeId" : 5776 }, { "id" : "minecraft:mycelium", - "blockRuntimeId" : 5550 + "blockRuntimeId" : 5660 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6934 + "blockRuntimeId" : 7084 }, { "id" : "minecraft:iron_ore", - "blockRuntimeId" : 5072 + "blockRuntimeId" : 5142 }, { "id" : "minecraft:gold_ore", - "blockRuntimeId" : 4901 + "blockRuntimeId" : 4951 }, { "id" : "minecraft:diamond_ore", - "blockRuntimeId" : 4424 + "blockRuntimeId" : 4474 }, { "id" : "minecraft:lapis_ore", - "blockRuntimeId" : 5271 + "blockRuntimeId" : 5341 }, { "id" : "minecraft:redstone_ore", - "blockRuntimeId" : 6470 + "blockRuntimeId" : 6620 }, { "id" : "minecraft:coal_ore", - "blockRuntimeId" : 1101 + "blockRuntimeId" : 1141 + }, + { + "id" : "minecraft:copper_ore", + "blockRuntimeId" : 3677 }, { "id" : "minecraft:emerald_ore", - "blockRuntimeId" : 4667 + "blockRuntimeId" : 4717 }, { "id" : "minecraft:quartz_ore", - "blockRuntimeId" : 6391 + "blockRuntimeId" : 6531 }, { "id" : "minecraft:nether_gold_ore", - "blockRuntimeId" : 5561 + "blockRuntimeId" : 5671 }, { "id" : "minecraft:ancient_debris", "blockRuntimeId" : 143 }, - { - "id" : "minecraft:copper_ore", - "blockRuntimeId" : 3637 - }, { "id" : "minecraft:deepslate_iron_ore", - "blockRuntimeId" : 4232 + "blockRuntimeId" : 4282 }, { "id" : "minecraft:deepslate_gold_ore", - "blockRuntimeId" : 4231 + "blockRuntimeId" : 4281 }, { "id" : "minecraft:deepslate_diamond_ore", - "blockRuntimeId" : 4229 + "blockRuntimeId" : 4279 }, { "id" : "minecraft:deepslate_lapis_ore", - "blockRuntimeId" : 4233 + "blockRuntimeId" : 4283 }, { "id" : "minecraft:deepslate_redstone_ore", - "blockRuntimeId" : 4234 + "blockRuntimeId" : 4284 }, { "id" : "minecraft:deepslate_emerald_ore", - "blockRuntimeId" : 4230 + "blockRuntimeId" : 4280 }, { "id" : "minecraft:deepslate_coal_ore", - "blockRuntimeId" : 4227 + "blockRuntimeId" : 4277 }, { "id" : "minecraft:deepslate_copper_ore", - "blockRuntimeId" : 4228 + "blockRuntimeId" : 4278 }, { "id" : "minecraft:gravel", - "blockRuntimeId" : 4924 + "blockRuntimeId" : 4974 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6935 + "blockRuntimeId" : 7085 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6937 + "blockRuntimeId" : 7087 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6939 + "blockRuntimeId" : 7089 }, { "id" : "minecraft:blackstone", - "blockRuntimeId" : 484 + "blockRuntimeId" : 494 }, { - "id" : "minecraft:stone", - "blockRuntimeId" : 6936 + "id" : "minecraft:deepslate", + "blockRuntimeId" : 4099 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6938 + "blockRuntimeId" : 7086 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6940 + "blockRuntimeId" : 7088 }, { - "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5668 + "id" : "minecraft:stone", + "blockRuntimeId" : 7090 }, { - "id" : "minecraft:deepslate", - "blockRuntimeId" : 4049 + "id" : "minecraft:polished_blackstone", + "blockRuntimeId" : 5798 }, { "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6046 + "blockRuntimeId" : 6176 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6527 + "blockRuntimeId" : 6677 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6528 + "blockRuntimeId" : 6678 }, { "id" : "minecraft:cactus", - "blockRuntimeId" : 890 + "blockRuntimeId" : 920 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5439 + "blockRuntimeId" : 5539 }, { "id" : "minecraft:stripped_oak_log", - "blockRuntimeId" : 7073 + "blockRuntimeId" : 7223 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5440 + "blockRuntimeId" : 5540 }, { "id" : "minecraft:stripped_spruce_log", - "blockRuntimeId" : 7076 + "blockRuntimeId" : 7226 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5441 + "blockRuntimeId" : 5541 }, { "id" : "minecraft:stripped_birch_log", - "blockRuntimeId" : 7058 + "blockRuntimeId" : 7208 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5442 + "blockRuntimeId" : 5542 }, { "id" : "minecraft:stripped_jungle_log", - "blockRuntimeId" : 7070 + "blockRuntimeId" : 7220 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5451 + "blockRuntimeId" : 5551 }, { "id" : "minecraft:stripped_acacia_log", - "blockRuntimeId" : 7055 + "blockRuntimeId" : 7205 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5452 + "blockRuntimeId" : 5552 }, { "id" : "minecraft:stripped_dark_oak_log", - "blockRuntimeId" : 7067 + "blockRuntimeId" : 7217 }, { "id" : "minecraft:crimson_stem", - "blockRuntimeId" : 3843 + "blockRuntimeId" : 3883 }, { "id" : "minecraft:stripped_crimson_stem", - "blockRuntimeId" : 7064 + "blockRuntimeId" : 7214 }, { "id" : "minecraft:warped_stem", - "blockRuntimeId" : 7396 + "blockRuntimeId" : 7546 }, { "id" : "minecraft:stripped_warped_stem", - "blockRuntimeId" : 7082 + "blockRuntimeId" : 7232 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7551 + "blockRuntimeId" : 7711 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7557 + "blockRuntimeId" : 7717 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7552 + "blockRuntimeId" : 7712 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7558 + "blockRuntimeId" : 7718 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7553 + "blockRuntimeId" : 7713 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7559 + "blockRuntimeId" : 7719 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7554 + "blockRuntimeId" : 7714 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7560 + "blockRuntimeId" : 7720 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7555 + "blockRuntimeId" : 7715 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7561 + "blockRuntimeId" : 7721 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7556 + "blockRuntimeId" : 7716 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7562 + "blockRuntimeId" : 7722 }, { "id" : "minecraft:crimson_hyphae", - "blockRuntimeId" : 3795 + "blockRuntimeId" : 3835 }, { "id" : "minecraft:stripped_crimson_hyphae", - "blockRuntimeId" : 7061 + "blockRuntimeId" : 7211 }, { "id" : "minecraft:warped_hyphae", - "blockRuntimeId" : 7348 + "blockRuntimeId" : 7498 }, { "id" : "minecraft:stripped_warped_hyphae", - "blockRuntimeId" : 7079 + "blockRuntimeId" : 7229 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5315 + "blockRuntimeId" : 5385 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5316 + "blockRuntimeId" : 5386 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5317 + "blockRuntimeId" : 5387 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5318 + "blockRuntimeId" : 5388 }, { "id" : "minecraft:leaves2", - "blockRuntimeId" : 5331 + "blockRuntimeId" : 5401 }, { "id" : "minecraft:leaves2", - "blockRuntimeId" : 5332 + "blockRuntimeId" : 5402 }, { "id" : "minecraft:azalea_leaves", @@ -1845,27 +1845,27 @@ }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6541 + "blockRuntimeId" : 6691 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6542 + "blockRuntimeId" : 6692 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6543 + "blockRuntimeId" : 6693 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6544 + "blockRuntimeId" : 6694 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6545 + "blockRuntimeId" : 6695 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6546 + "blockRuntimeId" : 6696 }, { "id" : "minecraft:bee_nest", @@ -1912,7 +1912,7 @@ }, { "id" : "minecraft:melon_block", - "blockRuntimeId" : 5474 + "blockRuntimeId" : 5584 }, { "id" : "minecraft:melon_slice" @@ -1928,200 +1928,200 @@ }, { "id" : "minecraft:pumpkin", - "blockRuntimeId" : 6300 + "blockRuntimeId" : 6430 }, { "id" : "minecraft:carved_pumpkin", - "blockRuntimeId" : 948 + "blockRuntimeId" : 988 }, { "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5426 + "blockRuntimeId" : 5526 }, { "id" : "minecraft:honeycomb" }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7103 + "blockRuntimeId" : 7253 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4453 + "blockRuntimeId" : 4503 }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7102 + "blockRuntimeId" : 7252 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4452 + "blockRuntimeId" : 4502 }, { "id" : "minecraft:nether_sprouts" }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3641 + "blockRuntimeId" : 3681 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3639 + "blockRuntimeId" : 3679 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3640 + "blockRuntimeId" : 3680 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3638 + "blockRuntimeId" : 3678 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3642 + "blockRuntimeId" : 3682 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3646 + "blockRuntimeId" : 3686 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3644 + "blockRuntimeId" : 3684 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3645 + "blockRuntimeId" : 3685 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3643 + "blockRuntimeId" : 3683 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3647 + "blockRuntimeId" : 3687 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3661 + "blockRuntimeId" : 3701 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3659 + "blockRuntimeId" : 3699 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3660 + "blockRuntimeId" : 3700 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3658 + "blockRuntimeId" : 3698 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3662 + "blockRuntimeId" : 3702 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3671 + "blockRuntimeId" : 3711 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3669 + "blockRuntimeId" : 3709 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3670 + "blockRuntimeId" : 3710 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3668 + "blockRuntimeId" : 3708 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3672 + "blockRuntimeId" : 3712 }, { "id" : "minecraft:kelp" }, { "id" : "minecraft:seagrass", - "blockRuntimeId" : 6579 + "blockRuntimeId" : 6729 }, { "id" : "minecraft:crimson_roots", - "blockRuntimeId" : 3816 + "blockRuntimeId" : 3856 }, { "id" : "minecraft:warped_roots", - "blockRuntimeId" : 7369 + "blockRuntimeId" : 7519 }, { "id" : "minecraft:yellow_flower", - "blockRuntimeId" : 7675 + "blockRuntimeId" : 7845 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6413 + "blockRuntimeId" : 6563 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6414 + "blockRuntimeId" : 6564 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6415 + "blockRuntimeId" : 6565 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6416 + "blockRuntimeId" : 6566 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6417 + "blockRuntimeId" : 6567 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6418 + "blockRuntimeId" : 6568 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6419 + "blockRuntimeId" : 6569 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6420 + "blockRuntimeId" : 6570 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6421 + "blockRuntimeId" : 6571 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6422 + "blockRuntimeId" : 6572 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6423 + "blockRuntimeId" : 6573 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4450 + "blockRuntimeId" : 4500 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4451 + "blockRuntimeId" : 4501 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4454 + "blockRuntimeId" : 4504 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4455 + "blockRuntimeId" : 4505 }, { "id" : "minecraft:wither_rose", - "blockRuntimeId" : 7550 + "blockRuntimeId" : 7710 }, { "id" : "minecraft:white_dye" @@ -2188,23 +2188,23 @@ }, { "id" : "minecraft:vine", - "blockRuntimeId" : 7256 + "blockRuntimeId" : 7406 }, { "id" : "minecraft:weeping_vines", - "blockRuntimeId" : 7510 + "blockRuntimeId" : 7660 }, { "id" : "minecraft:twisting_vines", - "blockRuntimeId" : 7184 + "blockRuntimeId" : 7334 }, { "id" : "minecraft:waterlily", - "blockRuntimeId" : 7438 + "blockRuntimeId" : 7588 }, { "id" : "minecraft:deadbush", - "blockRuntimeId" : 4048 + "blockRuntimeId" : 4098 }, { "id" : "minecraft:bamboo", @@ -2212,47 +2212,47 @@ }, { "id" : "minecraft:snow", - "blockRuntimeId" : 6666 + "blockRuntimeId" : 6816 }, { "id" : "minecraft:ice", - "blockRuntimeId" : 5031 + "blockRuntimeId" : 5101 }, { "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5621 + "blockRuntimeId" : 5741 }, { "id" : "minecraft:blue_ice", - "blockRuntimeId" : 671 + "blockRuntimeId" : 691 }, { "id" : "minecraft:snow_layer", - "blockRuntimeId" : 6667 + "blockRuntimeId" : 6817 }, { "id" : "minecraft:pointed_dripstone", - "blockRuntimeId" : 5652 + "blockRuntimeId" : 5782 }, { "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4534 + "blockRuntimeId" : 4584 }, { "id" : "minecraft:moss_carpet", - "blockRuntimeId" : 5531 + "blockRuntimeId" : 5641 }, { "id" : "minecraft:moss_block", - "blockRuntimeId" : 5530 + "blockRuntimeId" : 5640 }, { "id" : "minecraft:dirt_with_roots", - "blockRuntimeId" : 4435 + "blockRuntimeId" : 4485 }, { "id" : "minecraft:hanging_roots", - "blockRuntimeId" : 4953 + "blockRuntimeId" : 5023 }, { "id" : "minecraft:big_dripleaf", @@ -2260,11 +2260,11 @@ }, { "id" : "minecraft:small_dripleaf_block", - "blockRuntimeId" : 6632 + "blockRuntimeId" : 6782 }, { "id" : "minecraft:spore_blossom", - "blockRuntimeId" : 6719 + "blockRuntimeId" : 6869 }, { "id" : "minecraft:azalea", @@ -2272,11 +2272,11 @@ }, { "id" : "minecraft:flowering_azalea", - "blockRuntimeId" : 4764 + "blockRuntimeId" : 4814 }, { "id" : "minecraft:glow_lichen", - "blockRuntimeId" : 4897 + "blockRuntimeId" : 4947 }, { "id" : "minecraft:amethyst_block", @@ -2284,7 +2284,7 @@ }, { "id" : "minecraft:budding_amethyst", - "blockRuntimeId" : 889 + "blockRuntimeId" : 919 }, { "id" : "minecraft:amethyst_cluster", @@ -2292,23 +2292,23 @@ }, { "id" : "minecraft:large_amethyst_bud", - "blockRuntimeId" : 5272 + "blockRuntimeId" : 5342 }, { "id" : "minecraft:medium_amethyst_bud", - "blockRuntimeId" : 5468 + "blockRuntimeId" : 5578 }, { "id" : "minecraft:small_amethyst_bud", - "blockRuntimeId" : 6619 + "blockRuntimeId" : 6769 }, { "id" : "minecraft:tuff", - "blockRuntimeId" : 7171 + "blockRuntimeId" : 7321 }, { "id" : "minecraft:calcite", - "blockRuntimeId" : 913 + "blockRuntimeId" : 943 }, { "id" : "minecraft:chicken" @@ -2339,35 +2339,35 @@ }, { "id" : "minecraft:brown_mushroom", - "blockRuntimeId" : 870 + "blockRuntimeId" : 900 }, { "id" : "minecraft:red_mushroom", - "blockRuntimeId" : 6430 + "blockRuntimeId" : 6580 }, { "id" : "minecraft:crimson_fungus", - "blockRuntimeId" : 3794 + "blockRuntimeId" : 3834 }, { "id" : "minecraft:warped_fungus", - "blockRuntimeId" : 7347 + "blockRuntimeId" : 7497 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 885 + "blockRuntimeId" : 915 }, { "id" : "minecraft:red_mushroom_block", - "blockRuntimeId" : 6445 + "blockRuntimeId" : 6595 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 886 + "blockRuntimeId" : 916 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 871 + "blockRuntimeId" : 901 }, { "id" : "minecraft:egg" @@ -2386,50 +2386,50 @@ }, { "id" : "minecraft:web", - "blockRuntimeId" : 7509 + "blockRuntimeId" : 7659 }, { "id" : "minecraft:spider_eye" }, { "id" : "minecraft:mob_spawner", - "blockRuntimeId" : 5523 + "blockRuntimeId" : 5633 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5524 + "blockRuntimeId" : 5634 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5525 + "blockRuntimeId" : 5635 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5526 + "blockRuntimeId" : 5636 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5527 + "blockRuntimeId" : 5637 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5528 + "blockRuntimeId" : 5638 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5529 + "blockRuntimeId" : 5639 }, { "id" : "minecraft:infested_deepslate", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5102 }, { "id" : "minecraft:dragon_egg", - "blockRuntimeId" : 4532 + "blockRuntimeId" : 4582 }, { "id" : "minecraft:turtle_egg", - "blockRuntimeId" : 7172 + "blockRuntimeId" : 7322 }, { "id" : "minecraft:chicken_spawn_egg" @@ -2631,11 +2631,11 @@ }, { "id" : "minecraft:obsidian", - "blockRuntimeId" : 5600 + "blockRuntimeId" : 5710 }, { "id" : "minecraft:crying_obsidian", - "blockRuntimeId" : 3868 + "blockRuntimeId" : 3908 }, { "id" : "minecraft:bedrock", @@ -2643,30 +2643,30 @@ }, { "id" : "minecraft:soul_sand", - "blockRuntimeId" : 6709 + "blockRuntimeId" : 6859 }, { "id" : "minecraft:netherrack", - "blockRuntimeId" : 5569 + "blockRuntimeId" : 5679 }, { "id" : "minecraft:magma", - "blockRuntimeId" : 5467 + "blockRuntimeId" : 5577 }, { "id" : "minecraft:nether_wart" }, { "id" : "minecraft:end_stone", - "blockRuntimeId" : 4694 + "blockRuntimeId" : 4744 }, { "id" : "minecraft:chorus_flower", - "blockRuntimeId" : 1092 + "blockRuntimeId" : 1132 }, { "id" : "minecraft:chorus_plant", - "blockRuntimeId" : 1098 + "blockRuntimeId" : 1138 }, { "id" : "minecraft:chorus_fruit" @@ -2676,51 +2676,51 @@ }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6717 + "blockRuntimeId" : 6867 }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6718 + "blockRuntimeId" : 6868 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3648 + "blockRuntimeId" : 3688 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3649 + "blockRuntimeId" : 3689 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3650 + "blockRuntimeId" : 3690 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3651 + "blockRuntimeId" : 3691 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3652 + "blockRuntimeId" : 3692 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3653 + "blockRuntimeId" : 3693 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3654 + "blockRuntimeId" : 3694 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3655 + "blockRuntimeId" : 3695 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3656 + "blockRuntimeId" : 3696 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3657 + "blockRuntimeId" : 3697 }, { "id" : "minecraft:leather_helmet" @@ -3747,39 +3747,107 @@ }, { "id" : "minecraft:torch", - "blockRuntimeId" : 7111 + "blockRuntimeId" : 7261 }, { "id" : "minecraft:soul_torch", - "blockRuntimeId" : 6711 + "blockRuntimeId" : 6861 }, { "id" : "minecraft:sea_pickle", - "blockRuntimeId" : 6571 + "blockRuntimeId" : 6721 }, { "id" : "minecraft:lantern", - "blockRuntimeId" : 5268 + "blockRuntimeId" : 5338 }, { "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6707 + "blockRuntimeId" : 6857 + }, + { + "id" : "minecraft:candle", + "blockRuntimeId" : 953 + }, + { + "id" : "minecraft:white_candle", + "blockRuntimeId" : 7694 + }, + { + "id" : "minecraft:orange_candle", + "blockRuntimeId" : 5711 + }, + { + "id" : "minecraft:magenta_candle", + "blockRuntimeId" : 5561 + }, + { + "id" : "minecraft:light_blue_candle", + "blockRuntimeId" : 5449 + }, + { + "id" : "minecraft:yellow_candle", + "blockRuntimeId" : 7835 + }, + { + "id" : "minecraft:lime_candle", + "blockRuntimeId" : 5497 + }, + { + "id" : "minecraft:pink_candle", + "blockRuntimeId" : 5742 + }, + { + "id" : "minecraft:gray_candle", + "blockRuntimeId" : 4975 + }, + { + "id" : "minecraft:light_gray_candle", + "blockRuntimeId" : 5465 + }, + { + "id" : "minecraft:cyan_candle", + "blockRuntimeId" : 3920 + }, + { + "id" : "minecraft:purple_candle", + "blockRuntimeId" : 6482 + }, + { + "id" : "minecraft:blue_candle", + "blockRuntimeId" : 675 + }, + { + "id" : "minecraft:brown_candle", + "blockRuntimeId" : 884 + }, + { + "id" : "minecraft:green_candle", + "blockRuntimeId" : 4991 + }, + { + "id" : "minecraft:red_candle", + "blockRuntimeId" : 6553 + }, + { + "id" : "minecraft:black_candle", + "blockRuntimeId" : 478 }, { "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3730 + "blockRuntimeId" : 3770 }, { "id" : "minecraft:cartography_table", - "blockRuntimeId" : 947 + "blockRuntimeId" : 987 }, { "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4761 + "blockRuntimeId" : 4811 }, { "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6633 + "blockRuntimeId" : 6783 }, { "id" : "minecraft:beehive", @@ -3793,19 +3861,19 @@ }, { "id" : "minecraft:furnace", - "blockRuntimeId" : 4813 + "blockRuntimeId" : 4863 }, { "id" : "minecraft:blast_furnace", - "blockRuntimeId" : 659 + "blockRuntimeId" : 669 }, { "id" : "minecraft:smoker", - "blockRuntimeId" : 6634 + "blockRuntimeId" : 6784 }, { "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6522 + "blockRuntimeId" : 6672 }, { "id" : "minecraft:brewing_stand" @@ -3824,38 +3892,38 @@ }, { "id" : "minecraft:grindstone", - "blockRuntimeId" : 4937 + "blockRuntimeId" : 5007 }, { "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4668 + "blockRuntimeId" : 4718 }, { "id" : "minecraft:bookshelf", - "blockRuntimeId" : 684 + "blockRuntimeId" : 704 }, { "id" : "minecraft:lectern", - "blockRuntimeId" : 5339 + "blockRuntimeId" : 5409 }, { "id" : "minecraft:cauldron" }, { "id" : "minecraft:composter", - "blockRuntimeId" : 3594 + "blockRuntimeId" : 3634 }, { "id" : "minecraft:chest", - "blockRuntimeId" : 1083 + "blockRuntimeId" : 1123 }, { "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7133 + "blockRuntimeId" : 7283 }, { "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4695 + "blockRuntimeId" : 4745 }, { "id" : "minecraft:barrel", @@ -3863,82 +3931,82 @@ }, { "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7216 + "blockRuntimeId" : 7366 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6584 + "blockRuntimeId" : 6734 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6592 + "blockRuntimeId" : 6742 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6591 + "blockRuntimeId" : 6741 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6599 + "blockRuntimeId" : 6749 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6596 + "blockRuntimeId" : 6746 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6598 + "blockRuntimeId" : 6748 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6585 + "blockRuntimeId" : 6735 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6588 + "blockRuntimeId" : 6738 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6589 + "blockRuntimeId" : 6739 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6597 + "blockRuntimeId" : 6747 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6593 + "blockRuntimeId" : 6743 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6587 + "blockRuntimeId" : 6737 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6595 + "blockRuntimeId" : 6745 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6594 + "blockRuntimeId" : 6744 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6586 + "blockRuntimeId" : 6736 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6590 + "blockRuntimeId" : 6740 }, { "id" : "minecraft:armor_stand" }, { "id" : "minecraft:noteblock", - "blockRuntimeId" : 5579 + "blockRuntimeId" : 5689 }, { "id" : "minecraft:jukebox", - "blockRuntimeId" : 5113 + "blockRuntimeId" : 5183 }, { "id" : "minecraft:music_disc_13" @@ -3984,15 +4052,15 @@ }, { "id" : "minecraft:glowstone", - "blockRuntimeId" : 4899 + "blockRuntimeId" : 4949 }, { "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6469 + "blockRuntimeId" : 6619 }, { "id" : "minecraft:sealantern", - "blockRuntimeId" : 6582 + "blockRuntimeId" : 6732 }, { "id" : "minecraft:oak_sign" @@ -4024,6 +4092,9 @@ { "id" : "minecraft:frame" }, + { + "id" : "minecraft:glow_frame" + }, { "id" : "minecraft:honey_bottle" }, @@ -4063,9 +4134,6 @@ { "id" : "minecraft:axolotl_bucket" }, - { - "id" : "minecraft:glow_frame" - }, { "id" : "minecraft:skull", "damage" : 3 @@ -4099,15 +4167,15 @@ }, { "id" : "minecraft:conduit", - "blockRuntimeId" : 3635 + "blockRuntimeId" : 3675 }, { "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7049 + "blockRuntimeId" : 7199 }, { "id" : "minecraft:end_portal_frame", - "blockRuntimeId" : 4680 + "blockRuntimeId" : 4730 }, { "id" : "minecraft:coal" @@ -4243,11 +4311,11 @@ }, { "id" : "minecraft:end_rod", - "blockRuntimeId" : 4688 + "blockRuntimeId" : 4738 }, { "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5401 + "blockRuntimeId" : 5491 }, { "id" : "minecraft:end_crystal" @@ -4709,15 +4777,15 @@ }, { "id" : "minecraft:rail", - "blockRuntimeId" : 6400 + "blockRuntimeId" : 6540 }, { "id" : "minecraft:golden_rail", - "blockRuntimeId" : 4902 + "blockRuntimeId" : 4952 }, { "id" : "minecraft:detector_rail", - "blockRuntimeId" : 4411 + "blockRuntimeId" : 4461 }, { "id" : "minecraft:activator_rail", @@ -4740,23 +4808,23 @@ }, { "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6468 + "blockRuntimeId" : 6618 }, { "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6471 + "blockRuntimeId" : 6621 }, { "id" : "minecraft:lever", - "blockRuntimeId" : 5347 + "blockRuntimeId" : 5417 }, { "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7587 + "blockRuntimeId" : 7747 }, { "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6720 + "blockRuntimeId" : 6870 }, { "id" : "minecraft:birch_button", @@ -4764,42 +4832,42 @@ }, { "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5114 + "blockRuntimeId" : 5184 }, { "id" : "minecraft:acacia_button" }, { "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3886 + "blockRuntimeId" : 3936 }, { "id" : "minecraft:stone_button", - "blockRuntimeId" : 6949 + "blockRuntimeId" : 7099 }, { "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3731 + "blockRuntimeId" : 3771 }, { "id" : "minecraft:warped_button", - "blockRuntimeId" : 7284 + "blockRuntimeId" : 7434 }, { "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 5844 + "blockRuntimeId" : 5974 }, { "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7155 + "blockRuntimeId" : 7305 }, { "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7631 + "blockRuntimeId" : 7791 }, { "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 6780 + "blockRuntimeId" : 6930 }, { "id" : "minecraft:birch_pressure_plate", @@ -4807,7 +4875,7 @@ }, { "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5174 + "blockRuntimeId" : 5244 }, { "id" : "minecraft:acacia_pressure_plate", @@ -4815,39 +4883,39 @@ }, { "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3946 + "blockRuntimeId" : 3996 }, { "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3800 + "blockRuntimeId" : 3840 }, { "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7353 + "blockRuntimeId" : 7503 }, { "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 6961 + "blockRuntimeId" : 7111 }, { "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5385 + "blockRuntimeId" : 5475 }, { "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5001 + "blockRuntimeId" : 5071 }, { "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 5858 + "blockRuntimeId" : 5988 }, { "id" : "minecraft:observer", - "blockRuntimeId" : 5588 + "blockRuntimeId" : 5698 }, { "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4016 + "blockRuntimeId" : 4066 }, { "id" : "minecraft:repeater" @@ -4860,30 +4928,30 @@ }, { "id" : "minecraft:dropper", - "blockRuntimeId" : 4538 + "blockRuntimeId" : 4588 }, { "id" : "minecraft:dispenser", - "blockRuntimeId" : 4439 + "blockRuntimeId" : 4489 }, { "id" : "minecraft:piston", - "blockRuntimeId" : 5629 + "blockRuntimeId" : 5759 }, { "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 6923 + "blockRuntimeId" : 7073 }, { "id" : "minecraft:tnt", - "blockRuntimeId" : 7107 + "blockRuntimeId" : 7257 }, { "id" : "minecraft:name_tag" }, { "id" : "minecraft:loom", - "blockRuntimeId" : 5457 + "blockRuntimeId" : 5557 }, { "id" : "minecraft:banner" @@ -5126,10 +5194,13 @@ }, { "id" : "minecraft:target", - "blockRuntimeId" : 7105 + "blockRuntimeId" : 7255 }, { "id" : "minecraft:lodestone_compass" + }, + { + "id" : "minecraft:debug_stick" } ] } \ No newline at end of file diff --git a/src/main/resources/runtime_block_states.dat b/src/main/resources/runtime_block_states.dat index f7f56415e6dc7978bc32311506a37def2389621a..c1fc224aacad8100c01c2fa4de316e9f4c9ed210 100644 GIT binary patch literal 430907 zcmdRX1(+PiwRO*ev|?!mmduWwI1COmGc#w>yVKeoYj$QlptT%kP8??D*kNX7b{uBr z{4Xz@yd;0k?C!lir|<3V>Aoee-}it2_nsx)bEfLTsp_g*n}T3-5NwNPf~jV>6a~jD z)tk|LCp_4@PBuzt?LuCxeZLqfWQpYF2h$Fu6I{(Cvl2s5=?#Jm~&bbD>(R zccS^8`}4s4PbHXL`DfL3C+c>iT6M183xdgDqF!@<`lN|qsuuRb!GGD*={I}zrRdh~ z58VHl@~GtHQ2`zmTOJd6c}xJ030oeMd3j6%k4ak|Q+atz0gowL9@BYwOaqVUqC8|k zC5n>qvH^G$j+c@=Hd^seez{1mk{pj2;IX0TyvRJ{{2}nz1Uxp{@{sd~z+*G;n6c#{ z=MRC$7T~eTmWP}_1Rh&~$7Wj|a{dr_Yy%!!it>;HL-t;w-fjmTh2y0pj~yzHy$StM zYqdIx`fz2s)sC7&ap5e21ld0Lm(@ilPNL!8s02Iu?RM0u&NW)|hei}h@Ci+kY^9m9 zV&;+xFmwMU2Q$@;Uq z)Xz}soMO(bsGp(wnKfrt)Xz{4om!gNU}ZG6pHb!Ee1-~Xk2$kkekL$O&2&j~X1V-K zV1_DcpESw6WE?1ga zp?pRPmh;(8P>$>qno>0<-m_&vpZ|^`p=B0JHU@&-Mbd^`p=B0kid^&yE3R z>qnpM2WIO>pB(^Z>qnm*3(VG!K06MWtsi}MJTO~7`s@T?wtn>4iNI|A=(Cf68SAs- z68mQdqvm{6U2tFP3hkn8sW+?3VWTm+U-o`&zwGj)6m6L}^`F56_s6c_iHTGD8BB0L z?24Y4ICY=F1oywLWW+>RHD)lu{jMu}Vv_AAxW9E3PfW7?1oyMf@WdqBPjLV0szywN zRbSjscpriC3GP>2%@Y&w6M+ftPhH&;6Yvv(3GPQ-!xIzm6M+ftKV8#^Nk%>qnBacX zwLCG&_7mJ+y0#}K*?xliN!RhjB->AL|LD5JfhW8@a7~i z7WrFv0p5}X#+rUhFTh)qz*xd>izROX)Q)}UQUw2HTTdzgcT5EabJkA=4;FVf!zMU-zr_^$gz&d?KTw51nN^{dP8+7mj4{eAqQ zv%V*EjQ9KcLuZjs=qU2<=MSBgKB1%1zrR0pmivT`a{mGT&{^{nI%@u^KXexUgpR`h zf&S20{S!K>|Ii;gF98T0mjHAA(0Ls|=(rA;C-eh}`rhk=?ZRj8RsC5xSF83lFI)r# zNT3HEH_=~^=^-Gty9GlQD!$V7{ zdlO>o0@{}NkS0`m=Aisb2^1Ac-yD=TAqW(u$6<3&-g_WW)ELX=puFWkpeQEJHV5UM z1_DLZaKs#xQ!Ig^Jh1m(0TgurgYJ*VX|H}b?72I-ov_|eb`UGUw!xoP2kk;u@A+n2nHgX>KiDq=ifv|qvHcLg3@Ff<0S5X* z{W74aX9gJc5A(}_qLCS33h*2Y0t3tkb_`sU<;n-R8hE(bEQkz*e1L0!NBCtR{V;gT&J!bnpm?vv0bzMG_oDvhi%rP zZoTIYJldYfsJua=ajrEDVYN%%z%)=PJ>8myu+SA~pj>)}H4R~nE6_mA^h|3SsoNps z8z`KfWlcly4XT>#8>pV1ZB0Y)4S@zqsOMPI5PUlCYJ0u$UK~UlMjAA1vm97nFpZ%m<5c|H6{6?w_yC z?apqazOdM99C6F&!DI_ljN$&GlIXE1&Vi0m{^FA8v6;?+j=}wslIXDs&w-9H{nC=? z?w_yC`&QSoHD%6mP4u#o$gw%kK*qJu%S$51<~su!*Fdi*i5#2j3}jsUys{*+`{!%( zykV}>IutdNi5pituPTWdn_(3b*Eg>&i5Z()6%$u9uPKQcn^hGP*D$Xo%$>aCmVT(d!U4<>`6q~S>2F_KPG4mZNnRk1e)D&)- z$D!DHj|n*?-=*+VY6U8y_g+NwwBbYD^gbJYa=sgX_)ucK|01HN4Ij#}518ndzf-*MQ+_J7x8S=es4t1ybr8&PswyDNXU+B?#Yg2`5Rh!m1~Q|^N_XT_nNXXk-N zarPktXlG&+dPBF}>Cd}gzxo~s{czM?A2vWw{BRW=mDNWK&=bFXdamA?UrhdV)J-2X z08jjM4ID+$#|*#|zkI`){pLbLn01srA2&cx{B#u^beP*8w>PTPw4EV)=YSoisiAHPV#VjcgS5v==M zmIjLj{PRYz?(7{R)SX3}7>W`EHL*1ao}28-4DOJl>v?JHiLbSW&;<9l); zSggHXgSEEY{r%$A*o&tn6NVpoBabYwq}-TnHBHEyM1Le;?^|>QUA?ugc4` zYWj6~2)kjUrxfv-U`xB+aJxU%@a%dws2rh0_iGL08zM*)&a2O2uGtKpsM-8B*^Hfd zn~Q1+>q@Y-H9y~P*H@p?#B&_(eWb-GtX17#aLs<>k8K9WY81X>O2Or|YznAKzH3Us z<+yALs8GIVO2Os3YznAWzF&&MU`*k5WHtp6fMya`^%(reB#-$mI*Do_vR1M z^yJ&9X@cJvz_42p4A%YM63lE&3r11Z9cs~p+nT1Td|M&E`;TOGWQ?N4`r$|!BQpA( zY@?%8d!1HGqdFOEaBa_)dyDZV#lfEyh|2NAyBGuyI6=UGS57Di!MBMB0)$lM#F7wv zU5Fq+C{<1>3BmV)2m*vq<>ZnOeBp;6K$qP`4VuelIRz|kD*QfCp|k}~k&6N>ZYumR zQ6UQ85xFS9;-b9o^-8Tw;T)iuj77^ENOyMz}u~r>y@JbPLYcOJknaZ zemM%@5xFS9Ypj(Ul%oLdkc$F5yIQ$nISTGy$9+LAV}d`x8>^KYm7@XvkedcPs9L#k zIU3*-xoN=bsg;|QqXB-An+80UTDd9F*caQk7@Wzi&h>llfiY#LQ2E?m31(ORS#|i1 z+3M$6+E#qBwr^20rQtT#^U=V4i^!CQ+g#5_1NSWsn$mC^?D=TmzQuwm4R;779}V2N z;LgStF6s`Y%3WlZ+JHx+oecC28Q^MNt~c?-to{O`*Jj`xo5Z*}^yE zydluQJq&K_Y(YcL8v+g7$KamM7Bu9%A<)3R3~uLaK|{_P0u9{D;7-mKG~~P?(7?Tn zmSx^>1uMNxFGULOWfYARIWlw8z`YEnu?O`=;nx+m5B_D<-TYte4={Z1s~vT!a}D=7 zc;w4T@G(t+aDQtfVuP>yqr}{QagExuh@mEV1o@8MK89-Nur;xw zK8E_|ab<})r8mBhQMutfhKlHHYht;4Ody6D=?T`va`~7*3{}%P*2Hr8m_Q75)RW2* z!*t=Y79?09j|s$3Sv}aASWzECt@RXZVnuxn)z?F@ zy3u3!{b}9kG5jL6ZuA&_qgpq53_n|~8$E_!veu0r!;f3*Mvvk5u63iw@GIE5(PQ{+ zY~AQF{9?9l^ca3eTQ_1PnZ{jaC{A>x#M1`*uvdWIh& zPRVBw!Tl|6fnREBgwd&m&4?fo@DYIs?muz6eA5vD9}$S)e$xy5j0pIMKm_-fxTSun z5y9|vdrBETg8NA?vKbL1lI58Ir{9UH z?S`&NCW9TFsMd7{iQL0I^@V2Gh+hJ%JV%osFY|#*F~PV4pXv0Qz4}sg>sk<0UhV^z zt_w0Qii=nHz@@+&|gbj@j*rK6(NF9TYS|A6~R{oDyTFr@IgiJ z6@d!s4(|V6!fkW-ir}`WLN4?%DuS;FR8W&}Z*{{_5qw3Uf(qpuK1N0G6@d!sm2VQ2 z1GxV%JZv=h=BEgjtUHA7)3zPHWsS+dlQ2<%aD#fI-^rT{go#q)JJ!FG_ZA2fH3hez zH~O8tr9hY{9=>P&J9#I8Fi|CZ-x`ziDq*4=F!x&l6YD->o)U}CM(FOvE;Pb(T!W5Y z)akgl8(j0zVsRS$R*TbL(HI+JQ@k=Z#_O+rVN={PHpcC5d|^}kGB(EVZ+&4?95Xh? z@$Y;^#`EueVN;ATHpaC#KNqkuz8O1yrFanE!!tKZNUv?}PwdoU_YX9lCqv#? zIm=UP_2*ny;%+0H%fdKT!H6{|kJlRFo@U%V0Ml!=-QQ^SM(+1d98kb2f21FDocM!` zzot&?)`9+b=MwVTF`V}MOQG2xC{V)36$BayX`zZ%qNB(d=Qhs%o zPW-rnIKij+Oc1H+R0t8O&IBLZGeM+U!-!C8Cir}w2_jV(MuZA8!6)-f5UH*(BGi=$ zK9gsHNY#W9p_)waX*?4|%Hxa(HN@Ii1w^PEF~pG!-*;C`jD+DYwZP;Z>aX5E7yoN3`%~d?hpG}te>R`;XLBPv zTR~r;J2~&7bET`G9bNZ{)QT>ss!8q~Y)97}S}8=A7mPHzAjKx5bu_vHUC?in+&cW| zjIQD+n(u<>n_M``qdO*DP>Pd_9_Xg|ZW>*|89-i6);-WwC=C;t@@GS55a@y?o#fuY zdt)`MQy=v39dzgz$Do+<&bt_lIH?5U)z*};13*dG#8l8&NAg7_=CU!b5zHa zgWwMW2TVL&;t)Tm;GQgQn(c-EO3Mom^@Yv9o3Jq-Jj@q1?}igL=7ER%!shL8!p8W2 zgfDE~4<~Gl`$zi1<_&Se#(3vOoc{eB!FGPupM3d4r%aZ#>@9ujaHt(3m!!;0c%ic%mn0x^l@Lj!EN5o}lT%B|~G* zc(NyGx^BtPutPri6i?7}*^;4Qi+u8_o}lTfB}2m=`Q+0)LDNM`hK5b@$#XqH(=|(m zhF$W>r+b2?OO^}`+vJna@B~d)EEyX1$tR!b37RfgGBj+IPdNQ;vSH7+*u=vPuxhLyb?zto4*xb3IlXa}< zd@yos>s++SIu`Ah6dxI`%VZtvG9P#xn>&|YvW}&f4>yi&ovSNZ$Lh)l8OOHH1(d8~ z0p&xBV_WAMN!GDOa-+bpt#cV9>sSW49pKp3xzdq!taRM;Z*1#a%*Z+xGj8oSwso#o zWF6}jH}KmY&+msKWyLxfY;`NhK`nD#Eu+pzn!lfx=3hr4TNH$|J%M1he|>2XPWl9b zN&gL{K{)pl2y57s++{NWY(taI;uNcsLEU7Rm z&Z~fm5za@F3Zvq@3aA+Jd>pATD$c8biaCIfkdEYlPCM!;IbbH3c8k7NCzxJdbX9XL zID_-F;N+f6V?%6cbwc+I=mYHnjVlc0-tLTuFVg zIL4G56}X!EQgMXoxxvS!04Y;)WYH@(+ zxxq!^Bm}OnE+B|q@%2@w)9UFPXd7J9)Ma-$cJM!IG4T|wWPGh00@b~M5U^leSPp@g zRfK@m;_KxQcuhqJSSP+w4uKa`gn(6oTh$br>FMN5W0l}$8-);fDMh~ls|2^9DTKiL zYlMJRf}767?#a)GonFgTnfBt5YAGOxjT`Jgg5 zqMuC#bjZ}LeNdUoMFk|u)NOoFna)K8)XCIs%TW<9m7rQ%Yy}iSAXKJGMo<|lpjpaN zQHCJNkOc&d3h0-q+m)LjnTn8C1S+6qrf%1S+6?rtVyhiV!NYC-d$pMG)wqvJq5<3TUDjmDthI`Ne3dKJSFa zViam$87X^yMAIL4p#hIIg&dmh_B!c%Zn!Tt6YPP1IP3`->~xx{J$&kGzT>F6Z=P#A z*MHDh-PMehYu8ek6$+%gnXz)MTne*7t#o%YR<6xUVOA)c?qSBt8B$m+4Yu~`E&|*q zo&J36DZ*I2vC{o2n-xl|`cp`n-NnTEFUqHW)CnU<_yU` zw#l`xUiqMvEQTo0s%CUl&q||%677LzbX0#zqk}RnG^3+>Q5qeTYI8(qWc$jst5&{T zX6e&wXc}qW28l&EA))T6*&y-0Ga;dtiENN~i5#wjdo~eEx}G)L5rj_Y1}Rq z-*R5XXtx@}1JrIyIPc>I`!u9Ogfy~{YjyhF>OptnaPXyiqdV``bz8`lofk}Q4mP+x zLA}WRw#3!B&uAcx(jc4@2n2J&QfUxQ2LyuYpjjG(GXa5MCg7etMdyT*0D)i2azc`GOb|Y+R#dIy!ga6TjqeEj9zY@|2k0^mh7Vn~2 z?2^S;qtp4;;0sWm-eGUl?DoiR`~b|rZcDubLTt6?Ri^r6HP-5EzBRaooafz^U`nAo zeMvHWY%Gbg;cCkBBJSMI@TrjDfURsAZHaNZIP~;9(V@(H#|Ry6Y4dt1*G9H+^a2F{#yCor~L;K#`uljP01rxKI31_u@7vAS$LW zYda{Lx^7g4Mc`r;KA?i8FK0U{?$(1_TwJV11SH$^j+kx2>4UU^#?2-)Z=1*VQc2qXEJN52T*r_)! zUSbZuB}`w%c38H#Po33^XPt)68q;Ukj?B)%$Xsl5418pnzN+ouTx?g<@U>^!cr|^o z9T)iQ6dRZLXQ!6ihEn#m@bHeX!Tc~~OJn;4IcG62w+WEg%_cC|A#e_`_Q*&vFt@ta z!C>jVeX1mwTej+8u%_KUT@uV~_N{{PemxB%tQEI!C<(@MCV;^bZ2QKNU_5667_4r# z&y)n?ITOHO$*_G>Nid!>{`^661`2%p=8|AMX95_g+U;9Pg7KUQU?3K^Z!HPNb0&a+ z1lzu?Bv|U4fvWL4XP^@N&KZRekXZLVMHu(i(c z2F^^dZ{@Ea4Ce>0Xw_T;t>Js+!Nz{`P&3}p;tN{6+fEMTjm*^WLG!h9vBU(6;f|xg zWcWUNf(cg2o&K3juRJE7pn`RD*HNId@+5tN3Rc-!|5PS>tu}q;BS*msyxTt!J$|r4 zABFhQ$zTPyBIC}|jh|Vt!tXJfrW7(tX2J5m_b4!tGYe{ieg2tfnFW=@F-L)ll37q! z?DtPa&Mc@o4)`ac2QzAtqYytj8PqH}$aEHrHOuET&2nt^G?gVYnpubmYL?@U0+W%< zLQGJz9PghAWEP@=n&pI}KxH(u5EaxcC;F!{l39odYL=7y6G;R!kwMLJ6yirGgPO&P zOo~j<$)ILA*=U+l$S9cwHOnbSfr*@1P_taZKNBsppk_JsC{R%{3u>0r{8N!L3u+eS zY+`&jAy+X>aalcnP_rC`_|eIrW??e%!_R(tpgcj-D*RE$goMzgfG-*l36v>(648W& z(4RmcfeM9>{+W;vIui&aP@C{sI};K@PXd7isuDiiWo*c zeZgczlm%BKA#H-_&J6?;t~YMLh^PUsZi`4aAD;vVs*c!Eh4p6WJE0G z*Rn;VrrL~%b^F@3i1d&hBVv)hj(0??$o>(r{Q5`4TI(MX3#)%btfKxAv1Iy3#QMmH zBbPdxt}|9IQoapnPX+x>D~Z>o5G(+Kj|CA5mci?lK}kFpL@-$Uu3rX5dN7EPu;$&M z3=%#WL?~G2Zde9o^wA)~z{+-`QWzu81`!6vqznc=9YiQtv2I!h zW%ThN!oV7JvoaX?d=Q~vUAlQ0l+g!-2m>q8Ey`fP6G8-n#pjl#Kt>-CA`q-Mw<-fN z@{ABcV1eQ0!38ogJS0RQSW|98za#!CM{A{~+^Mx(Q@e_2mF4$ZWw~v6D6B7ph4tlj z<*^b~hQP4O+`c@RRBH$iYt0?X<6*@iEUY+pERQu>cL)jV&YcX9Myd}XVfDGQ0n$hf zA|$LqcPWpAm58vg65X{t)@VH19Jwmg2^;Fl%3T0+f9%?+44z^gdRZlysYRi?kz4Q4rfcPq8YH)hEC@MBcj=H= z7r7l|G04@pO$WvL_&}PkVxR*DOh?2D8J0v`EsyD-SSsc2jRP0S=Rxo@c{7|+>63}o;3z<1Rba@G?plKslhzE(JzL$QxIf z7=`{(14iBN2bhyH{bH;LOEz;1p)3GnRcM+3Cqr3)#_G^Afrd~PaIr+RO>mQ;EI?za zILibYLs2 zF}81FbvNf*a*VP}Qj-QRjfn~Bi-%Y-$;uo87Ze!}wc?VRJ_I7DG#+L}BrAsqTu^R2 z+=@$jA`zIN=CE_x)NCR!LE&-HF+ufll$daar9egr@(43ONlhsN6VxG(v|^H#QUoq2 zMjmCwB{ii8L{O1D+KNb4N)foAEP0F-m-Lh(FhOl%=d`IQMPPyg<)UMPDkX!-V%S_z zR7xfGA+)l#@iF-O!v{Ks-$y4052_CY4|mmy?}a>86D*HScbQV8oFvId3bo7QEJ(RK zWvg36#YPH6%;P*3Z>6eEJ%&zQ+)4=dvehm!9E~lsr-bDO66+v>-K>PYI+@L_NzRsoW!ldg|Fk>OlO0>)Ni*pz5FD zO;9~f6I9Rf$x0q8URV<=_ZK&H`psT_DY~`0UAq0bCalJCD}fbCs^|G+m3ypEQ$62= z)mX`jr2@?$imDg*WF?Q4zzS8>3r$#!)k{rSjpbJYE0k6*^T{grSfRFhxe2SW{E8(5`4x(*SNLQlkCng*)zvFa zSdHaZ0xOhPuky(%_gJC6dUZCdt9sK{kJt3oYkabj$BLBVvl;lbYE!Jl3@*N8HHOK=^{_WNYp z^`&mBS)J?mdab5nTj}Fh31(ORS+(7Xy4}G*#4egnOlm~lPek^`2X%!=t<~x%G~8F* zRy%TB9SXkrR|&Qc{$+L1jZ-xI8?F^#zuk6S_=dODMyOT(q*41cQ9D7R)_3Dy?KZ+W zg&{fACIw*k9|<7dUa_FPqLc4kT++%5HHbvbOf ztAFtsu4q(#LsUlGc=cEIn+yG{5UKoBv;EIB+lxoqi(%FfPFz;89h)72ck@W2-e1a? z`N}U9+uQ$>#=G4Jn};&TNP7(^X1$JD4 zpyH3{ttRnaCu|okVyt?j4$jat|_RBeTaJS;&fPtn4hd%zemaVze$#Sk;Ws1L~r zjhMJD{P~z*65xh0Moe5Q{(MX@C(K)qiR;Ioj|rxTnl%&Gls_L6%otH|CNgA3iDZw( z1X3b)N;1KGQi6%{>qUZ8yLn7tlX?fYJ~E0OIiCnjU}Jg*_d_ybBIgr<32a91;I1P^ zOyqnbFo6x|9o*Q*h>4s}1SYWQyo3Av7%`FaiNFLlns;#LpRt+9L83&|n&jr#fz9PI zu~U)>Y$(T=#I`s{pA=ryjj=Nsd{R>^+%CzEn@cjl&HWd3*Oa-ThT*HScHCUr0dDRC zP!4XWYPb`S9XFSVfLp$CL!HC7X^V3k%*Du+r3ANplmE9!5kg&sj#$c|f4 ze?xV|T{rBw74 zNxvNf+}4wR+Yj8M0w-bTedeUzv z0XNofvD0_7|K{TeTkt+@zwODSbFI0!Rf2e&j=A9e8aI@%=HgZb8C-Bb?Wx|z#jOG| zxZwU7w~r`0F2X7^gA4ALoohBO$R*ofaDR-OMOcqZw!h$h825;<=929%xc|kiAJnRu9%(vi$}3r?|m`HJ5CE!TqQgc+0!l{(}2Y+|1z=K8i{DCD%D@*YV9Y zgI~EzGB~#xHU?ej=p*WLHMzna8*HH|N-6}6>V(@e*h15}MTSN(!o3%4q3PTrL!WxWg)D7J9z!rKY35_y= zI~&+SZ%RU=D&Y17w$PiC&?o}9M}aN$mLxRR{MUN&@U2N`Eb-iJ!1h;fOG0Bsf4!$) zy*&wy1)Tc^*#7DrNocIs=h3g0&OjMo2MS)L)$a4HX*flvUL;`}SjWZd|D;|DjD{0) zIcQ)_f0OlSI31UR2G)1+f`6IOSUH9>a=VAb6;BG*`nOn*hTt0l4Xpd(75*}#A^3(s z12uqnXTJ;$!8ZgNs0a9xe(cH>(eQKu>=|16;LG{8Yy?l?g$S|1EW(%aZP^G8Be20_ z@-7M=TQ-8<2y8H?yxS9-wA50enZne8gDIfI2M(`Vf4K7?hoHv$`6 z%Y4`qn|%2Omp32r#76KNA*OJ}^HEQ11ium3;3DW_p4bR}Be21B(Z`8R>~`u<-?TgR z?o!yPH(eVP<8BEPn!fpjCpLoLa7+;!)Hk2>#76KNfeq@LPkCY^_>I5@_06X}u}RH0 zG*hT=KI4gv;5Qso#0K@vXFahI{6=7d`sQ<<*a&_jut9zEd14dmhcd`FgKObt{ZKxv zC73UGgy&yR@R(7)=necm=(V2 z5uU%P5Im-V3p~Q}cNK!ixc{0*c>cCR@VJn<&?7v5UmQF(<$s93N)_^^PAby`7n{V*36d+v4cUNqlRySApEXbR|9k^5Xb($DWF@&K0r zrD$bPjMkr;gHo_ECfb*S=xOnD!Vogmdh>A9=|wfQ z$7$M8;oxnW4*p+%=v-k59V_gg{GoHHC3GycfA)vYHJ8w_=KjSWIu~C;$Kv}}f9PC= z2_38O-~6F-IVN;0$A9;S&UKm4u`d6^A37IkLdOFAPk-oKsRY^;R=}YbiKhBe3L^0ILxq0BU4c(<=cMBt!rN$*z`H0<1}h z0BDk3ZLb7amJk7uCA-e@N`RFK5ddYftK*dbZLe_@fH>LZHwpv-pik@wxbVuA2SB3i z>RL^KNI=K~pi*}Ayb=)d00@;`eXj(BJOEl{*I};&gggLpW!JJ-0zw`D#j@*cuLOiJ z1kvI-3Iqb6TNDEIaH-{98X7*Mrsx3@FW1&8{Sg}6y)p5!YP!{lvJ78KGkgvij=ktq ztG7D!p8Xlc*J~^uWXwW1V@C5=Ar`1+9&F4)I9n#LKuPluV-~`hGJyr^nui**NIio{ zGlJsgVa6;3zo6>Iet`<-;l?ZkzYtiU%z1<{3&Af07N~U|Ni5>4sCuWTWT2U0yW?K9 zccdK!8=9@ol55E@8BEk`gSHG>KHyG$MNsBjVW%4} z)9;pay-s~$A#&{}MxL)mS>nedp{o@n>$-4hm>@R-rKQ`{K8K7pfz0tFsAMBEGTxJo^sm&3ZonK&|k6OD1DR4GIU-s2P(Bs)(b;h4VUP6Op{`RxL>b^~ozd)7UcK znwx7x$^@ZI;hu_qCTM!DQ=dPS92L|l++fiUk1Z>Xtgu0?!aW!Lu-R}{KkW3*Ne&AN zmDhN7maWaGw-|M*%DA9b;jWD3$E7lUc0swqof`enNy{!MSh#hgA1+FELA}Cl9R1Kp z&n_rixU-`lHd=N;-EzKR7)gGco?TG8ywNioHM^j2d6Q=%8QBH3%bSVL@v-kHs9ny; zEnaqkc&VP@&da&aDoM@oPEEhO#XqGD?S9AoKdJ@91@+5Y{d3tFYb?}h^%oYCtWeHy zFGz2bwj;)B(2gWY3RMkvhV(`%K2)RClO_-~&O7{1;I5@sw|k^2NkF27V&|RyY3*EF zH6+wJu|nnZuA{(ekPJitM66H%z1xzNt0V7ptolS5a3D zc0}$VqOhQ@yhhVeAMsCW&uWbk6&^D~RrOK-%yzX~je2*{6&qLnqOLm;xu#&47RsuR z`KL9bvq3$@ohZ}vR4Jd@xO!MLIW#DvxDll{GCOI;R92{>xFMxCRvX<%(WdAFN^i{aWF}No+_Taft(44!GKzav zdSjz!CR9&funard!8z>I%!K0Ui~d>ZnF%%1m;96AAyP9FYNjveVs$k|GYQMMs|Bkv zH>Q&C>l#(M*J`TiEB3Uut*WGz4-nauP%eGdp3?MijIybqMB=WQX`w&Xq-~q;_jr3S zn-c0I?xbl(Y1e?#h^Eb^g^KAy`$;R}-YA(oxOWj+D4x~{EmThz1uZ)KP@x=!`swTT zzLlDz1WG8JzF|*E%uxar6ieTWzv`{>G zaPQ0sHgHTX*_2aP6O6I!j(1uxbV(|1z5XiNed zy6sMX-krJ~JrlL2+L!}Mr0?2sn4YV5<`=UmpfviP9fb{N_L~ch9K(QG==+8o!ufE1 zaO^m1Dp2_Rz>dSr+QV|$EKukC(2hmEs6a(y7!~;lpmy;~fbu2BB&w7j*-e3*7X%I{ zOMYy}LCgyR1(YK{v7;d81%U(V5AN-oTqBK}qQ$%*a6qxat$s^$(DH)70<{JA{w>Wy z2upzgstCiV$VUM60u$I1JMq&A7h26~w6LJ;w@?W_N0R}+AU{7gZny3}!5oSj?OaVX zDo@m`b0_0naqF#i+wQjaLo{%1E?g2kap#k|IRpfb(uSK1mjqAT_!PiV)Nr%mlHiH^ zo&q?knctB|l>|@R_7uQT#{Aw2JaN}k07v!mhw;Jjs-+9qod=zQYc5o4VrM#XI8-hL zyuCO$s+I!a$`3_OoSW&Fqhk4g;}5$Go``b+9Hq+tSb-@2LUz3lOwr2RB>4vp)E@b#D&G5g{4Qt=3$Z$t9{D0|&ub$;?UCr>n(+yuE z%WzLK{GW8g*UU29*9`wR-SD-t3?Ehu&j#s+ubpLhSuZaG?gZJDB04)& zoUIw2OgEg#_=skBD&25qL~9Ge+39q{nGyXUjq!$b!4q~S`r(@4Eo4{d%yi$an%O;MRtSqTGKJuYn%%vrb~CHSNt)e#sdh8RLF@ECdrYd`%rHJh|P?(Zszz>KM~C8 zr>5G?4CBjdd{0ZYn;FJe(Cl6^)ox}OUs1DrsZ_g}VSFXc?&+y^GsF1Gn%zsM+RY5( zt7vvFLw1EQ&UAeSs{$CmKnxpXm&4`YBw{Cud3O-e5&2dFus~*_X??YGsF1m zn%yg=+RdD|YiM?_lxjCKjIXKLy>hDE%rMqE_|IM?)ox}OYflc$o{?%dGmNjJjl)$_ z?PiAYbv3(JBfCNvXHMG=&Ft05tPsXm&kW=1X?CxXYBw{Cudms?W~$xHFus9i_gblT zGsF0Xn%!%s+RY5(8)6=A%rL%*X7_rjb~D5HrkdUBr`pX7+Q-fF42A{4*cF%4^W`!`mMrIh_LbH40RJ)mBd`r#l zO;YVn;FKp*6iLa)ox}O-$t{0^HjT;VSHQ7?k!U7X8PIfG`qJ~&;ds{Lqgz+^q!}v~`-P@(w%?#r^ zYj$s+YBw{C@1ohgL#o}(Futp1_l~J{GsF09n%z64+RY5(yK8puoN6~SjPIe@y-TXy zO#i*7X7{eCb~D5HUYgyzrP|F5<9lm%?@o4wFwUeqtC_tAnH9qLTA5*dAInPL1u&F=kE z?Pi8?sM&o$s@=@EnA7Z5Q|)Gk@w{gDfn-+*<4m)=HM1d^6~g%1nPFVh?9Qdy%?#s6 zvpb(^H#3Y6YIbX>b~D3xL9-jB+RY5(Ma}NPRJ)mBT-WR_q}t64<1;n8i>Y=q!}yS9 zx1MS@GmIOW-7{0|X2#o+X7>=;jXgN-jyrb3M$QLDAETLWkm>lDqgB&69vFRuW_XDV z$F6il&G|+5-p=4)c`tNL&oho-1=?w}*`{pWjmDsTx$AWn);nFrx;yl`9MwCu*688( z;d3qBdM&EfTFcFmxBMz^)qZ8moQFI9y`$gG;sF;uX4~dG+)3~pJmAj9>{;eK+@bIs zJmC7rY{#5O>O-dFA8-?7wrkEq@DDmH&VCA)LS}pBJOuv`c)G(QrJB zk!4ps%X)%zSF8HNhj-4(O0w__ed)&o?pVkcz=`?7SAJLVO&4j3XA89urPif zV}&(EHHok=P9JN9HJ!x5czm4uD;p0-oo>C=tn9pCa&xf3iTqyVO7*U}M$2jbMtxzi zS8YUxqlSB8oR3Jy3h~Nc8UFRPN=`oxf^Y9FeFH+IIl!4AnAY1^uM}+1V-K$fI;jAEjq!z?au*Bm)COiz}CtBihFcTgI^OG#`IG_m+ z1NzC9cpTJ(he7=mOFRy2!o$FRswE!ZTqQh+>seF(6!0LdV|cUNeBxl(S#l2#>lJi% zsa5ax`kneYgD&Jtt$wrTk{ZLQ$BSM}!&x4VqmSS)`d(rP$H7N%7kQw90uMi4dFH>;V|xAMQ}S}apyK5BcGh>xs7X{3 z2&3o?rGN%)n35P6I_3OK#=v-CjMxU#!9lzX_pX$nsRT2vw(Al(SMRx>F}l#N1Y7FO z>T=jSvkrXef;+xV_R03K(kVTT^h`q!|=24&P`^!R?S{P{0^{Q&|dwVIA4@ z$)tes`(|qj*}j00{T6Eq*}i~*|5j@X*}i~z;caCpWaI@FnUoixwbJa{tto&n2o#{f z((F5|DS$5s6rj!0>^rR~fG-FXpxM&wyUJ3?$O{4mXt^}|ZfgqJz5tDvX5V8?A=?+A z{nG4vttn*t0yJToeIHTS9@E#ZTb!a4+;S^ih(;E%>Xo$j7q!g}M7FWQf1s#sUY?R| zEZrY0YMa-hWE*Sphl<+fg(um@V*BBuwt1CFwy}zSq^NCPQj%>fj~^{+o7azI8|&W3 zirStbJx{i=pnbfk?M+GBSgAfy)b{42Z7e~bENXj8(l*wXPZhPjHEA1*#;1$g-j=kD z)!;KlZEsK7#x(!gqPBM=ZDaoa9N9h)%ioQtH@}$ocvj^z+DCxTlkxaUuF+a{Ume;l z?VCd-*xYZsTU;yW2(|Y|xZn~P7Tj-`fpG;UFs#7eGy~(3Okh}&zhwr-HJZS%Mt|E3 zjEgpbVbT7M85mb_0>di)T{AE)>jZ{n{d;C$T;~Z4>-_i4z_{=e7#98?5LoOm`9W8k z2lZ^(Ro_m5f;OWSv>)1`aYZ9EtY|;7L*tT0XjsyIY=_1*jnJ^B{lpH9iyEO}QTwSK z8do(!!>aZ(J2Wn9gob79=XPjZ*9Z;k+Ar+TxUdl#7Pep7p>bs+G^}jDvP0w2Mrc^t zer<=wwT;lQw*AHqjf)$hVR8Gd9U50RLc{9zJ3BNkZ-j>B?e}(QT;B){>)Rg)E&ky@ z{TRD@q=U0eH{oLq{F6_7u2Y1MRq=m);&W9d ze5{jyG{JYHnsffKa{kjNzA*n-OaI{$UzmTau7CH5FU&vI+rJTh?7-{6POIBeIo~sAJWA(VdM|e*11P=wptLF>wP-Cp%T|niE zd)Uz0{Q#T67vY7thaIlnRgdsO+{2dF?gx5=7vdiFz;=fo;f1(|O|ji`9^r+!hh4JW z^B&=az=LfwubwZ!!#-LJet%3`cEYCHEHiJg^Eyp>)o2cESh(Y!dOI0nfz>}UX5mhJ z=3s#$;Gi)Jcjz+*3)BJ&#w=1B>(Gp#Bv>?NA@~JVhYGPkWl%R}A^3&B0tLdE#w-NC z5Llp2I7BSsi^Wck#o~k({0%Z0Umy)ky2WB|QCV@Ut!sl%X?B;$?#_|a=2{12+0HIaB{s`#DEELDQrM1dWOD98b_JjR+dE z;e$Luvn(QLOo0#f1kI9&pfT?~#1k~jA%eza_fSvJf`?;<^X1_JG^RC%J|!O4k=ymK z3hZBNf&By;abs+bY{JIKexfgI4sF85(0-CHY>sWh#@K$cFKiBO!p7i!iZ5)AZo|*cjg4{9M4s_-5=8jZtsb(l&STe(OxIIdqkMesS;yeK6x%6E$n@Jl&cU zseDWe@u$(0mw>P2hQ}yB*8+YbH#`RV(=Fg9bHih-Kf?mv*@(~mM%UnWL7aMw_Gen4 z!_@2O81K)rK!=&v(J|tmZGjFGucKqkKgR;y*@(~k)SzW=GTw1J^SKt#FzE_3Ze>2t z0vcvqfyQmj=UYI-bSu!fh4}&tXlEln*E37~Mz7v(2=k3wm@l+|hxtx{$1ThkS-``b zr@-SD=8G-hVct{VaSQV$68vJ=aqW2Xe8m2@R0{c*&ou3znqL8&kK&B z@j+MfrrSwKBR>;N&$k+_PB6W^=r(HC5>oIV4ek{-a2r}~XV~5EUhAt!c&IpDX@j?M z$(`0}x(DA9fT%HEWdpc*t$Ac$_>m|qUTuT9;YieQrwo$65v9ayZ1AQUb=Q6}F`_6P zUTcKbt~a^)5jhM>1#TEsDjud5I^mJzZ$oMDdYj+2p<8dbZly^))B|s@!JC>t5;l`) zC;`s1LEF&ocVg9#lMB}U^KI~^<{DDeVX1$k4chcv$2|a%984_j+$E`$V@@x0+-6b| z4of+AL@EV0*@L3AQ9ps)x<$x7K0YlKydP$I2 zFF$Aq2}P4Iv1oqC5_7b25++v84;x~Rluts$^7#=%M5v*Ji8b`2gc-ZnJ*c74V9hw+ z$bNk0e63V|j7-PQKQD$y+!=G%d0+jUz1cNB=|uDHN_lP2{bVNC(ylieVW%3NUGD}J zR^xBbfIn^l>~>Ewfw4}1!UEXsn`8oGss5w|u-h@o1jbVRDGOj{V-)yo(tb3@Sgt>9 z0i2j)0T_!mcWx@-)rmP4fU$Ic*5Vf@=2!s60{%G*;KUrClbmBL;-9wwPRy|YjHUbw z7Ql%)7J#vwf6)RsF~5x7s_tb=_Y96J_^$GHyZug7Z8uy2R%`SQw;eG2&|U4;7n86;3FzT0P8fjGxI@!drtk>M)%m)EJtU?5^Zgbl+9|WeUs1O0H z-xpG*^Fe_7$PfXnVY2+f!NjDMR)T%eTBZ3Vk_U(>iiGMaQs8}!0>!)X)bm7PsYEe8UGO(kDbC_Y_;1d z9q7c~5Uy`*ueGqyfWEOW(13qz1nlmNqywXB`H2y*yC#wjjB4elM!@c7NIEd8l%E*^ zPh|n4I{CQ~@N^b1s*+!f4LpjFbqj>N8r8`7UR@9vRmk|j%5NOu!;1j=#i%}hIrdP? zz@u?20Hf;Qws+++*JvCIz^FEUZS;#r<5&PjmGK)R;L$i1fKgri)(Chsjs;*;6~7xB zc+`DmSL3xcc{Qqu@x8hrFscX!-p0EMdc&->0w3H_tFynSA&kkAdh=kby3*!d*_0r| zf7c9ii?>)y_L$)_vMm2Yv&_xwj*X2$^KiXepKC-niE17Fg9q`hYSy_mUu?&@-f6k_ z)51<>Pn}3J`)3;G*d2luvnk(ai0)-IyMH0ONVnE%X;&J6lpK90?v@&_zZ&y$`5$<#+y>6#1@dmsMq^&CJOHniyV6;_Q2qVgn3t;_z$@Q) zfjHc=sU)w#_`@r6z$@Q)p?3VIF|VTj1=4cQ7GqvT{R@@n{~7Zt>R%vC_iQW4%Vo&% z{fngqOdiM;D4oo#ecQo0i4(0MMfftD4J-bTs zDwMwjUZ9!xOc?Vj>R%wK_v|+2Rn)&gaqpQj=2g_cK#=d*Tas6y{KYF2%3nKO9_+Xm z=-uUjTf37yyVr~U+BM2+-RQ5`QC_>(i~e#gSL5@zZuHllQC_>(i~ia>%4^-|uYIGu zcCQ!xb<8NQb)&!bkMi2RUi8<2QC{mte;o_F){Fi+4tT8>{dGL>S}*$R1mLw^^w){N zYrW{NlYkfNuUH@D;l5gqKFT|k-K#zONY%y8X%DUTI$^u;&YIfEFLxs`PXs2o z2X#pgOawm>nBcC{rHD!FaKoAPg>Ja4d{$LHbx#H}omMaG)mzQ@sq)GNnjSgb2-#(` z3}nZ*m(%nIc*ff*{TdzmvU>Sw6E>gLRf`WdRR`Sw6W4wYtB zD4&sn<$MN*7x%0meTK&u*N;Af1B`ptk3PdAjO$0A!6C*y>qnpAF~;?y&)^{Ap7o>8 z@F?T@(Pwa&anJhEXLy`({pd41(71l|86Ig|Kl%(0HLf3hhQ}J$k3PeLjq69B;n7Cc zXUFk9=hgkQgHdxnsxIhV<0`3Fe7Dq_)#b3!82N%1yjR;VYmid3W#ZI-1{2<k^!j zsr?KlxF6Q^#Kful3?{h$)iPottQs?z;C@%z6O(K|!TqhXJTb}k6Wq`0cw&<6C%Avr zHDV&H`r>}V`v{azaKEbOi3#|Lzy$ZF`kt78p9oBFKkBe2Cg3Lm6Wo7VHe!;IPXs2o z-*mPoCfR<1`%6bWG0FB5+)p~k6O(K|!TqBL5tEY=`oy5KZRL5I9C@%8VDd)>M)mO! zFTm8vmVr@hJk$#?b+Bb%)D{o(0!*E285pI+!@U4g$65wPN7-hhty#P~3S_a0d{}?a8)QOgXvB*Ex3ovz{Wnir7kMjadoo5*s zOZelx08__V2F8m01TVnUX_kSpKtIt7Fm;$^V64YaBH-kC-@&t_YWFgC(#W->@6=jV zI0T{JFM7OIo1bh;!YQ>JB(P3D#g>E&3>va38&9;kih!=G+Pp>cZtX+u$G@| zOG5Ao(ry8fz`Fi)TM~j#2qdt^Kf{)U;1dD~toP3(5+^2fyUP>Jn(O>Gd}%_x9C!@o3|Gw5{l`?Un|EPv?q+be{Qnc>;~&{@V4I;Mo@_(NwcPw1Enp6d^t1wEl- z5_q0JbXN6*j?w>of9Ndj2_3`!1^&=k-xE5<`wRV{v&biO6!|amht5i$&{65X*dIE} zeL_dM{}O-btoaEYHUCTfp|kKObQJzC^M}srpU_eLzuX@>F98T0mjJKuhtBH&LdSK$ zD+xXJAjIl-LqF|HD$mra{j0oi5fmVuDq}8K`(N#aiy#CAE~o@v%4Fg{Drk5`7UaP*L&e2_=~^=6~r67a1s1P;DUPMJQFU1=*+v_!2W{j z;(RY$1b-3Y2(`u=y>JoyMc{(U<4s<;2>v2)K^^jDFI@8F7gQy0@xn#$7a@*NqrBA% z7r|cyE~r@E=7o#kF9H|TFK;I0uLmw&y!0|!=7%v|#1;Cqc1c0&ekx~G>zeWHU2Olj3z*}epfFk!} zr2u%Bi~vx%e!LU_Z-fy5%F$1h0^q$a0zi%V$x;BkokajB96wbGfOo720M+29O9Akv z6ak>b`%EbS-ghDZ)NP+7fLK$yMp&zj`&Q_hS_^KhRfY?Vpr}SL6xN8Z8$nUEU?{8> z-!Oury1`IbH@;~EMHPghu!4Nc2#RV6Lt!oXwhS{z zLo0@JH2>bKnf*SQjmgeNcsNvb?bb&9tbV;#twrtLVqDt>TQrcLl?I`aXAm6upO*&V ztVO>Bv(_(4gK)kg5X@J0kyy9sK`FgOCmcn)rW9gODy}5Y)wgB9Pd*%t1Y=&WHVmd#zTh;xoaHwZBnasW8Fx zvb*x>o^{=Pu)qeIlc0LYB(NU-!#fG8mrMfdKga@m=Bkd@dY=wth*G<=zv|I1?qGoT{ z0HP9X?zd}BSd6xVm{qjI-c2+Zg^6tFwmbd#XnZapDfVtI&t-b9-kDz*Rr<+&)nl1T-$$ll%Msc62E$ptjY z-aX~H)F22aPREN4Z={2Zcjx(4h*=usqK>>5T0Uc?ga*;s^V=*>`$)JYuMaG>n z2Cw17N4W-d%n1h5BzsLRIw)mMG@v6*R4y_oW-P|0Fd0-czQ`owN$?s}G$$EMlk7FQ z=%A=M*?^8TQMt&Vtg#rI!emg_C}ieS&SNC+x@>8;mZJ{7q4!ZuzMLY@#u%7x+%qsy zqgxMXQem`?!{)x)JqW5Rq2 zm?#oXFO3QFDPW=&xHMtz;B)DNPo?g==|=becim&Rm7Nz%ZVooMb{D;<>o#{=?Wj52 z{dC`4hkrHJ*1|nfwA`#lVYgRZj=DWkjW^eV^)ki;rUuwaSd7=pTEoh}7DM)O#<0`f zR^OeXnhYlDHTP|sMj6BQ^47S`R!73c(7l2&?)HAWI)tt&KOE!uipB)CIsz%)jUjy{ zWB8rJ@Jby4jPNU$pin6i;i&MhVoX4Za8&YVSi{N@j+*_d#;{t1qddQwHLeojsKl>s zjGGzZsJ*XYOdun|QEgw-7(PdYqsG1#QHY-zt}iUQFP4qg{2`^1PX@b&f9#G+4gPBK zeAG9zntg3kKvpRPh}HT!rht5;fdH{iU)L0n&o2-l7U=7l0`g%60>sLEeN#X_nLvP8 ziEm&E$VUJO5Nq!ZO#$hQZ-oG{(%#4vkk0!uAXe5Jn*!3=Uk1dQdJ|JXItR>vSWRzg z3P@*y84%0p%}fF5d@uuI{k*v;Ae|LvK&+RyFa@M@!wiTO@|LE6bcUD#u^!%v0526= z)2`OTzIzF#5uW2VliU_mC!BBfdZAh%Q~M(XKh)~uUA+>ZddUQ^Uf#_s0ji%&0PE-7 zy%L~$$^@{U-oq;as;^7{>+3ze5}uLL*`5CO~s3tkCu9v}jk2Nt~&ARW$8fO(+ql>q5-CV+Y1Os@n;r!xW6>4&@$ zAl=RcP`5X{5+EJV1W?B>c_l!)o(Z6?Z+ay_I-d!k&Tn}oK)Rm^pzd#bB|z%{CV=aJ zv%C_ZbpaE=bwP&+oE+B!OLi-QA8RXuM|px~4M5PS0UqrMnyWuSWA%TGCupww1dVn7 zv7Vs0;uADh{Kt8M=2}nCSnD6}37W+=L1UHo<>3M})^~=Ey|~(_4|cx?-=PooJI!!D zDz?b4d|eCaC(u}%p;9z6Dn|1Y?NKR^85INhN%p7|!;FeC{A7Dn3SUOW@O_FsDn%}% zV&p#69+e`8Q88#e_^^PA@ye(p->XVSYH$NBQqQHaHNc}7Wju`0r(5DtbTS@B=QAwv zC@vWf%V>ooS7aPKn%P}0f+)E7M$nh8s9q*-vaFp8_4s-j<4B;rXGaRP& zmm9)Sre!$H?3SJ>z+qx%xOk7hR?Qv6bs0lR>l9z#*W!y`=-Czv=hlK^a3sGFtyh5wp zZ>CTvhD=v8b6{ineoIO0{J$Ctc-dc_9~mpSCuFWIG}Bnc-&%6C)tMHsv5>#5B(^f% z0y38JvcEb%GS+fW$XsP;rm>#Cz2s=CGc90aNqgm5bFjV!rWyPCbw?4bD% zv^n~?KXjVEfY5RNKH(3Y=9bZMZa?V{o#vgR868#Er~RSRCMu(&?)r>B zblT)(bktrReO^FE{l)09ehDt#mqI1+t|i()JxKCd8qV0~>7}UAa!nReu5Xgz1uZ*# zg$&0&!>kx~{cQD0v0;tn{_g z*e=uL#KxR-VQFlaXL4d=M*4bbY?oznVq-q~Mrmx9V{&3+Hu`31Y?onjVq-4)7GcK| zM{BOyZHLQE^*bvij;krbyU+D_S#97wVz}wDMyDDrEGVgNCfK*sqQ6vK`Aj|Bdz>Er z?*trbz!TQMTjpDHbB&enUrBgK9Q!8C;aA3Bu2Y{sl!S-ev2V&6e%Df~+dZ;65ef-N zBKxMTN$j3?w=562{pHlLfPAuVgEfsk^NaOv)X3rixnatyRCvnC=2!r`8%hDN+e`^xNHf zEvgQ?X`s%fSb8&{l7JgvaiM@xi3D%^M%#!Fz!Z<|pn;e-!+O z7QyU4n5cGm8y~@c1U{Isc6#F@_>aH`^VlwLd<6dy_+WaQ)%nBaH`^UpqSd|YEptQYLhG+&s1j`7Av@E?H>=AZrE z_z3#tM_b7SRI*<8uh-m z*F$oxsaZXqrgI-#ZAQICw-Ow#D6)iLTeHmlq>q;^R}V%__1YFOKTEUEoxD#_>>F#$ zprcXYCdh_Vgz%*F#Z)l8bEj%UDneumR4}ujLat>iP3MO?vDPu?_EuZrQVLm_A z$EXOtLaB+M0MRAy$5`*}gQ{j#Zx3RK6T`dP*jDAH&?|%=p8(L05ygOi2hHeuBUR zcG;2;{AH0KFfm=OBm{pxBnV76mnVqWCQEEC@_qTCPK0jqzT7V}A zwZPSVP!W8E(k@d$EpQDVR0LlUsGt_OrVlEDuLx973tWq+#4cPlTfHbxh7AsAIfDBu z$1<$DWn;Z76(qDRFM0-woF~_T8$$ zn9JA@-vTyV>)3Z|Gi-=&0UIuM?7NK_HpI7p4Oct%-PQ~n;#&EnveH zj(xW;fDH~UyPi->;NC_dKQD?6mo-%EdaWL6-F7HrT}7+Rcc9UXec5Vt!sdcqLrbkE z#J+ob17|-XaMT6&@dnPjg9MJk;J)6#dEb!0Q5oFN8#v!OAaIlh_xA?QmktOVwZQ|t zfphX8a1;mryj=iCb->`U^+$W zF?@Nr0FC*Ap?C5(#CCmf+C}*`lO?K7(c<`_G{EJcIBp3Fm|DBPfnb zg2K3bgb@_SAwgjrKGFz^ z2^Qn?2_9fMfCv_2)rThwuo$-t8!u9guz5&3OOxoEMT_xiElQtALs|%AwJ}x_2gCA7 z<#1LyUnOBM44+&MX0^3d5(ne%DJ5}Mx}PL*FwnTYdZFo|_9jUrjIF1Y`$dChdr1(C zq>|nygJ9gqAg$Utt%g$Li1?qhFgce-C$?wRZn?_2=x*kPP1mY)a6rlWG|n3}J}>mf zNBG)FxvD~ZFuY&njgRo{Q{aPn;Kknf2wy@4KA10F;*C$*_i>&t%q!e2+1j54{~^`J zd@%cPJ7sG=g8vA7Fj2kS+k6TBBk;kT_6p(?I~Ym%XD;l94ecCkqQ%x)wyXR`%Py}Z zwAisjMr*h|yx|>`jC49dipoKbY~j6z0In2U>aV3!_x#N&z{*t(cP+N>F2h&5jc_gt z@_6Mp?fxS{UOEqC3YKe8)@!vLo0fa2Cw5nN;y49+-|GqcvbnHr?+{PSYP`-PUb)6( zIc#VZv=VF^{Asn_at{{`24yBVcK9FWTg_%P-*fBBVK>)mv(<4OTBe$=ulG!FK>RC_ zd;DnaZ^%Zv?mT&hk!9CAVa3RryHD)ZhJkzKot9&IH1SP1)N2;J{+PSdaA)E4dt+~U zRf5^M;Xhk>8g{KO?rO`^iPM!If6P6I)Me6t{1`!aNd+txgqKeTGkD&1;!+BWV`}u1 zrD7AyK1GtiX&UMvCZ?L6Y@!^J%CFRcv#?~I)yxMQu}>i7`# z=PPvff0^dPn2w;yShErx(DeJc4VN(;L6Qk{K+^B$&RoWH1Vtv$0Y$%`n{^q}Nfq=o zSs>{5bN?=5I)d-8UL`u9=l5Ue%asM+5$J%N-_KpXj7LZC9f1z0`TgHW9i0Vt6vjv1 zIZw+w+zU(^of32e-{Ht2I+%C9`5I+%C9?~9J$I|3cdJ3k;g@!e#%A`7*3-C*-z_~$F{A8qV6 z4>eoM&9${oa33wF{ID!kh1=N^2xf{Ol?LHX>I8!E|KqYC`k-NK^Pt7FeJenP*d7zBA)KoB@9KP?HtUt0+R=j3N4A^6KGLEv2cyd(sFMI{K# zoxdmv!Cy=X0`uW7OG0c&dKBikUzLQ|n1sN*^=pENA0=olNAA_f>U?Xd9d=xZXxFT< zg?uI0?)Hz`{a$tW*0$TMssy`N|4X+&*K?P_M>qC@=V;ONTT5cD;uR)_G59-6Vy^ZT zCWevwdrM-j3Kk}Y@%{%(V$P%T5#w}9K89K1|5*~t?PCHl%q{<8Ni4UI3B)iX@m9Y< zy2$Ng0x`^E|7$s7Ngs2Qn=_BWWvcyuvLu%DvHZl~rq%vGTM|q9Sbkz~4Qu~jEQuw3 zEI%>0qqYC9mc(-VnBe?yfouQYEQ#gzF@YG|?%Mx%OJccwOdtkVzxMybl2~pZ6NtgR zu>JoeVzF1a+pBu46SbqzHC$J|)S?=j47RWRi)t-ughxg?Ha$R7UjMSA;IvaN3aGLE z&yIpqNx3MXn)t(j)Le50tL`Ft}o2mCr&?kfp-ST7eL7zn6#rH`hq|KG|Pc0I|`yN2oyk_9GJGF zAo_wp0d&ZL4R#d7yue#H7F*z{TG-)J z&V&lW;J{W})D6Ra#ogqu1vPMBn=P(B%%A~c!yG?I5}UihJ2GAK)6tXKv~Q<@u;$~| z9oXxfzu6HVbch|^__*ap4nF88JH7F7tBf3c(0_J$UhkBHzS0ujtH2keQYCKs9-OfJXT6A^rbqlSoJRyod|h~Ogv z5lkn?+Y=FdL?D8BR;NR84{eIrSIcF0%M*ID}fpab= za18bbcmwAgPv98qRd3*Y3X8xo)F0>#oX=+wI7WKt4V)x#K;RhY{=8iP$2e#3k-FY# z_uT_sDeru^6R9gN;*RbGs<&K&&uYOwM`K@#!OYqNy*Vgg$j{qQm~OaT)NT%ZjC#Ha zS8510beCGK-eL{{82ORS0IY3QA_G1{OkRNDf6#`3>IDJ?Oacow6l5y2tCNIFxhG*I^P`yB)fS(Ny*-((ZK)}auh7B8h#R~)i_{EU>dX`E? znim|Q4=CgX_`&cZs0jGM@Mu>A{91U_D*}Ei ze~uLrkw9_KvLzwx%?Tt>A+&8t2>WsZ2~-JZ*^)@xw`HF|q0q4Y|Ds*j0 z2tFZ@K)t}73{0X!@CktgYKA_IM66nz)pzefo@2Xyc%hagxP3w?2C8P@f<+WCMJ(G4 zf~*+?e9R8qvbWR_D4IbafSG~2VwWPIX$ID=GzFLzxH)zy2C5eb6fh|~$fp+w_?QnK zY=f_Ofj|Ir!9#2aXkNhDmAnAg4-d6rpn8Eo0oM-?v!Nj80s$Y_4-dD&SG+(Vfa`}x z*bvaXK*&b8ez*uK0m|>NG!l=tB_YUL7Wza2^~_^zNeJ>*Ac3Ohv9=@xc`J}W zVe>d!5~)ibnhw-9kGCZu_yh}mB7y4W3AQ8zpAbl(#NnR8CLt>Lgg^pi&XZ^)w)63n zPFQa!8EtT##{FqkKA>_FEfa7L?cy-}YX}Boom*%Zhv5&K1cTAc9kh$X@Fz@y!FYX| z!QAl2N`k?NJl6n*KT8q}#@y2lV7PSz!C+K9!vKccM-U9g%`**PX4d3EKrpxlc$NXo zrX&pN{Ac@tK{@XU21UCk7*yt-U{HN~f{b($*~Ao=sKn4NEdINPWp*MTKQH#$h?>%WGtF*^MlOmJ3_|N z`F20Zyst&bSV2Acwt$S4l#yc}>IQ0dso!1fv|3Awo~0soX>G&g9W&iqUN69$BM2CC#QVGe^R5s9V~Tjc7hv8eB4ErAAMgUqJ4XbJy8DA(fO#*8fKh&b z$P4ghN|^+V>iff9fVU)pQHg)V3-Hz?Fsky8dI8>+1V)AaF)zT|lfbCfKkfy1M-mv7 z`zHuE)`n_OkDHNOA-d}&gU`TO)&84W(fuS@kG+h>8d*-b$Y8p8ox+zV&;$da8a;nEYjy-THjH>UVtW zspt5TB6ZV3rP>VUYs-xV-pz{0SV_LDNFFJ5c(*VjVzKy&B5`FJTk-~DN%$&3XXC?6 z^jNifiT6p{!~U8REkZG%QpsBI@n7dei%Gs6Dy zO($A}c%kyhTCjOs??j6bFM<~A95*=8BE*ZJ1>44rq-9sEzVy1mpq18CyDqoYi<{`$ z@s`xPcFkXGq`B<#ZI}KQT{=Em*Squ(vn@}uUHN9ZvUEetF(Rb}i|PsQ!0vx8?)FR7 z`g~+wRpN-BQ*88aJD`tt54&AC>D41NR@CpfKz9%8O`x%W-r@i~);mf#!N!7ls|$AT z1mXl63*>DM*dylfX-Z9c*jNs4cR;pBITk<{QEsPW$z!@ymX^$RU6uqN@wOR5-77Jz z>U`a=#m3>EXiMtv(#_TYa#1HBrt%%CKpuA|ASUqlRDnF+PC(4sJ5_-^&Q3r~)$gkU zd3>FKn4x#60(o4WfS8m&PzCaMIsq{cf2a!NadZOWIQoxNfjoXrKpa26TNTLT<^;rX z^B=1MdAyu}I9`5_Dv-y?35et5KT!qp_&5P^eEeQjAdia^5XZ&uQw8#PI011y{HFxm z7JUUUozB_^NBsFptoNN^>wQ1Vd~xn`baCu+KhJz|?rC&!>}mIBzBuG z_bR$L_NrfIzBux;XZSKV-f*_X4^&_JRj8U!3bcT^#EEq?h^PT;u8D zP~#^HnJ>=uoGuRad~zLKJoW`LJa#J_mM{mRE{5a%gT{6&J7k*O@=HOzTy0ka^YRnU zMB)+2f3kFd$q`p_!hyhaInXmEM_tJY#{$#kK$n>ub0sGn4osH=eQ9#sm7LL`1UcwMw&s^3 zq>volLPtmUqL5j69VM%R4Mp*9UCAWgFe}*oUB2!(XZw{d#F( zz=`rZo0aI_E0z}gX8etL-8LI{J8>f`(!;O)mR~aAZRpP5XfHP^-njYdv1rDn`=1^* z+bBEpP)5u!coKn5>p((8o(oM|u>P9#*(kegKk6VQqBs+UsQ5c~DN$pyP>6NOJ>%LpZv9$<_}ZFPJ~Cc7R8vtyneVUSdL@N zVcj^EnV7G+n1$i;72nm5%5!fMOl!X4JNYA2v9^50SMNuvQmy%luh@^$#oF=}U#0&@ z6+0kb@um6Es$e;H@Xc5^j%6mk{xWkXzy7vL{_fpDt!(eHBj&ZS?ax(f)%J4uDc8J_ z)BkVYS1YAG4t-WS8=LK8RoJ1oN@ruseVhtA^i%0! zu(5ytF|i{%+qEkGDSq9YWLdYoBGZe~$85d%6w7ss4YRztR4?uJse>ik06Qikcm-?KfgQ|X7qF5Ic@3AeBa_E|1G z;fNfiM`JmlL#p(To|_+kTRSF>rcL(#GzS zGZW}K!q370cz#aU_;RIY_R~%NDy++YniDiyGaWpM!7_YCUQBFbQ;G(xx-ZC!F*T64 z`6LV$*%#)-jJK+_y_IJ2w&9!9i*kZSOUr&eiNTkqGjn3b!=n@{;NVNn%W`sJGcV}j;OorGb5h3UYQ7o&OO$MU zbvcVThes?*HzU-xLA}G)m|o!wPG;02I5w-IGdMX?hGYLa+Zmi}DZ{a!`Oe_HvW0Ft z_P9A`@G**Zf@9|^IfK(%HQ#pZhwh?XfMb_rcw~iGYfq-?a*8!Vx#}qK;^nwo93_7NO zF`uie1p~nnC;JQl#{se{#mA$;XnT%O^nQTZ!K2a3*nkUGf}|$#h`!f!sl$)ehpoFd*n4?F)$-l7QHEt zr0`iA>H;Mcg&m{NB3!71BE!!pGzG6!LXo{^6xx7`lu%^m8HJ7iVkHz=cSd2Wf1MJF ziUOmsxobtBfWmgpsL0-st;HZ{FBDhKoi)=es!iM10+VG+X3Nd8vE*jcqf)r4H~hk9 zW+`+Ut!lYaESs^Dm{TwOgDvsiKzCSEOE_~NT?=OB8=YtgXA-1q!PI?|6D{G)f^;pI z+i!NFMTi%!o)j;b{BLohMTi$c3s#4>I?*D;i=YL|$J?A}5#mMAg7xL?q~*w1-wx|b zY-eHZML>m*+se!(E+q-k!&R6hVYRu`r6eJU1W8zQ-r-V`5KDq2tUZ^xlr*pe(SySh z^iG$OgjnK?BS~0^-sMt~5KDq2EJ*KmDM^SWK@!%b_mHH>1}7`N$JxTf!Y6Ds>AkMx z2r*{!aAuJltUn)c zB}a%IK@QfQ54w^g#Eu{b>&}%VC$i~uzwU&mCs;-^XoTcbwi5Cox^i^Qe?3@AxuSQv z?TS~?6{E9C%@vC^f7v?jVg{&6ftk->j*aL|03A1HGMHIP;cH?4S9qt{m{)5v>6tJS ztKEmSnKT^3Oe|?1(Pq-P3^TEAeN>xC12oLU;&hERlSXQoi52KtZ6@zJNO6m0=Fha5 zycr=ev6lR~0@LKe!2HCoFdx%q3i*j2VE#gzDdZ=9d-+RkrjVcb+2yaanL>Wz7ni@* zW(xUPgC7t!AxF9^0Q)=Dl|FXBMh3UuM;L3^xe%bigTT|vAC8WW%*uL z@b>Thvtq++h}BwgmHoR~xWx8zzp1OkybBGd1MkQ6x;o5D&~Q4?aNeM+!@T_rrvpvs zjk-F_9E0I>pfSBkSBIH$Fq{rFtKZ71Lk3#1D48#4U^C}SP911!GwZPYa#0?cPOcwl zbZ^f3Tx1<`{Sb7Z`Te%84!M2^I?xb*M^}ejKLj0Ul5f$~A=eK<2O8&Fb#=(~L(qX{ z`nIe(fex|O>lo?Rg8{1A( zhOXrfb!DdTfU@E48Ty#}b1Ms%Cg28`k`Ov zR%X24>f?+$57#qvNIz6pHdLGm%Fr|YR$bXpaV9837j?I~vZ3NkP=>zh_qmm2s%L^S zbXxbQE6W;Z=)E3LSC%!-(2d=zt}JVufj^rvM#~$m`(~NAmJ2e@0y_F|USm6KIpY&vt^cwd2nY1Z8W-pB)6s){Z~h1(pY-$}jMO`Jv{ii5_@iCK%eb1_^#JK$wB`_W~ zHR?!-arY@oVEk)pOi79G)|jFM#=EA*9VtnV6Byr`TJK0ndYr&`*3^U}CFyYj<5yD~ zl#~dgSkXA)aRjO-FkUsa(UB5}6F~`#Pfcxdqy*wbPy*voQ=1(rfjAMA!1&YD79}Mq z^+Zqt<4sdr9VtnV6Bu8b+U7_}dYr&`($scGO48#5$B*_SC5I&ZNq2@&r&%dBYIct@ z;%zf?(_7(O`(mp)Zw?`j&P*>{VY4IqI{{NXG8o;*4kuum1Iu7E8wWT6(?nPXqqo@U z1WdDG8H`rqKqp|D63bw84hJ~_)4W&)qfyx91Wc1-8H~Q*U?<=Sn&?D%j5c7>33x*i zj9q`q33y`?j7@&p33yWyj6HqE33zi7j4gcD33y8qj2-(BC*Z9~FgEBzoq)F`!Pt)v zBXDxQuky|z-s^3>`EXqk#;IAi#$XZHr;pGTVNBW(BCuyaL|26IXG4g<{(Ypbh(XI@ z`Eg(`f2ghqAtuPXu?Xzz57QMP#DpLMd;G(7MF=q=h`@e-6p4s#?$aArG&vSa)>x{6t63|9E$FHvU9MO_lR1O+YV1fJ$Z zi{J+ZE$9oL?nKL=R|Sq2bP0d#M2iqF>=h|q&@=pr6D>l#2wKoVJj00=AzlP6=qH}3 zq9x2uSaUH%eL;8eEGJrocoFgly~c4)v)6Eh-F_(?z=+ir z8kYDwn^AeLI+TAYLD7+%tPbTt2!f*ZI7J=GV-EyHk8!Fxl!qJ$ie}<8btsQC5ENa* z^VFeSVhM`&KtFl~DEa_~M!z?hEz0X=YmoWcpmR;-Q!DSYCFkjMPqUKn+)6@WN6oZHwaI%BorFom*z&r&$1*Cy4siJ2El2T zL_*K{^8BRud6q;%M|xInQtU)a;-K4nMQ#q9X-OpXl0_m-N4#XTM->~sb*op~@yb`( z8r9i4IP6x$!*1p4@DeSHfY`F;bbwOdA}02&k`5D_7xA!pm34UW4n{QWU=<}=tc?*3 z+t_X;TCA554SU(V4h3x(*C_9^tU(1%!*v%UfGvH!Kyu-F0#i7l|LhKzSX0%8~J=mBGm zkbu|-_v!&-y^w&|3zyV@*bWJa?QowOGTsphh#hfR4Tw#Vkk}N@Q$xo4A_1{4p05Uk z)<{Hbjjz-r#=9dCu{*v>jTmc?#KQ*pYBe78NFrj7d<_w!b0qqcALsmf-Fm9Vh?hS7 z(W5h2%$JAgwgyudI04hQ1_oopywC}lzBe!!yXI@1fa#k9gRyU3iUczGMeV+p? z_g%tb-+jLWEO%YPV%PnE11$Gk!eY<;paU#-T*6|Ly-+qX&heyAQR!e)9 zPp^hMay+xScwA7cRa@279uq`!?QXDj-D?RRYxW_$*yz$N1Jfx-B6u@4;#ImtZt+CK z7Js!ak-Iw)vAcg*m&lEsh}hUaqD$nSPDJeKAJrvtJ0~Kx^J{d8G_8(f6+5|dtO`VI z;!NBYEe7@@a3{QtyXG7m6%{Y6#+O8x)n0tSn543d! zRO}rFoaABV{Y^gJ`f@dBia!h!?&JADTUS8VABO4niF~{XvzENl5`P({+27_PZR?Y) zKMk|&e-SV?F(}-MYOZNIQBixxj73{o{BH+Jgarv)2S^F#%_kiw5tbteN-(4T&VdqP zF@m53Q|?m^lnh$B;?dK=Wc+&vN`yFJZ$nBjS^vR-5+P0mC78wk=s<}OCxQ~}q5p@J zL{Dk$Zf&Q3)~0u=t(g2@RT(Bc1|6lyGO&{Tld2388^g)KGV;%=GE86$Cj)E9zo^QP z&&lIbMzMhfG}Nb^3of|)-HfVnH3&xnh?`)e+^{Pm2u*sQN} z!R60q#KrFXbr)Rzenwnu$KP-rsU1U{fzjEi$l|-|R}p__-aw**-6M zBe1J~+m(XN^-6moJZ)ZnAlT)m1#WZ2A6zBS z8QktlhOJ7VMfk2O0fVaqI)*!3$*@)l^bX&1r68qBpqIFlbVLtg?!L>1UgGGX&BT7a zG9CV-u9+wv?QJn9>=cu&{8KhR@qLF{x{JCxO)B3c0{z5Y4n=HlG^?#eziDR1>{9@fJsN&~yCAp`85|gH~&~D48(QgXZII zhkCa6y?MeKlN@v+KXxf6%x%$-kQ_85_o&D*jwC~=K~wS*hgz(q22IJm4n;(>$x>?2 zqul3EPI{?9tMXHaYN9vCQfkn+{LG=8VM+};n4de;GeoIDJ9EEFIq9VaUCl2B%Q+^y zt2xHoRtZlZ>CLW)zKIpCw)vW0I#hGON?Q=E7E3~x^DBpv_G<)Y?)HM|5B-^OeVfC2 z(B}Nwp`OH4K$e02<~I&y;8aUifwtzi4pnTYhXXS|Sq{3I-#L_n6Kh!onwj4_RKYg| z=J~Q5G&6rtkt3OzVJZyTnFk!I8M4BFxtaDHN*boZfV-J4IMg$s!ho%rUguDTy~2Q- znI3Vdf|JQwVZh8xk2;iNuQ1?YrpFwr;G1HtFyLXP#|O(f*5YA=*P~;-6^9vdE%-Hv zTJ$v*7c;$HQO}kY*U}qPPuBwWWqLwUOK%BDx(2W;(;E~uY$hMNx}bYXl8wUbZS~7+7lrE$CpjDQZcrHG&@WGTSxvq}3Wh51JXx*iEf9f*!Or z54IlkHLNGGT19)^+i^B8vmeEbh6Z6J6Hn$P4d`L^SJfb_VG=Z;huNX3L0G*cXh83B zfU1Up>)YsApkLXkszHbc%2SUtphr1SRf7-@f(G;@2dQch;z7`WUSt<(z}aoxp?d3U z&-REz>`iA|U#{%-JGFNI-Nu`<)q{i8m}A`zk|bjGPpT2umzsWQPlczd(XYg8pHgE^ zloqP3N=<@ddQYoC$9pf0$$N|0JfnuRM-XPOUIf{hn63X4Ow3MZ;(QVF+Ss;kTuKk^ zep?F8(nFhqNv*vL7w2k0X^$oQQ&!XzK4YUEqEDp~$5c%IL-nb&oP?>E{)g#PX)y^? zG5-(Or_xdqreX;=LZ3%dHPUYB26CV--tQ-FkPZ> zS1~{NuEsVaS$U3g)n;iS(_$HE2tM2mKzIxWwrUZ?vb_!`AGViv9mr_BBxJnwJVFOWfp#7V?J7&$?-!> zjGxD7GdYBai6QjZfy{8SW-;*hWJ=5l+r539Hk0oyG4b9Wt{2Ymh&ynwH^nB>{ zO3llfk{fIf@rm>U^W*pl5)Pl>lN53M_y~uO@5zcdes+YzXU8{F%7|8@*(qhq!BN}e zdkXzP6(T=DBH|N#sxFZqA`$T+K24X%&yk4u9Qm#uD!82`zZt%OWHdXrwXV}or=JC6NtJ8&u2Ix56Eq)#2Y;N$T)_QjpzfOX`#8UMq1&{3^#bVKJkhOW3GUTdGvdUJI3G zbGbOzX)RcO@Q61)-wc-83tsqtBi=gmJH5h}Y`^eiB@~ZS6AFLTDM~0FoF)_&rc;$r zJR(gftV5?Mp?DaYP*`=Ir-b6MXF_3-Ib8`w`xbEoVpVy*5{kAeVicBl_s{!W@6k5yOY(5dl#pS$7$Gms!?pchD*pU?F;rfbhim)20vBWE z<;0C_)!z=xcL+U&I_a$X#5d$?!mK}VO& zo;?&!M8wDX3PobYmx%a4i+aSdx-q`Idjb7Oe3oY`B3nU6LSoDH^^hZGzpUhg#Kt?P z2eij4wqV70wL`HPGj#t*K43hokpu_Ds$N+ zX}k=dZOhaW-EI{T!dyM_;2w#<WUCzLJ)y<;+%XU!em>0oxmj|dvrwzF(G6Jt{tiA ziV$K#5P^$F7Ij4kF(HV+RU>s>5yRC9Tq+XiiV$K#$PQc|($Ezl#DpLM7loXwD?*3~ zK?JS@X_AP@S$u8dC&CXnr3GW7Ev6!6x~F%U%{;VpiToRhh)$ucOQexB{*7o0I=Vy} zP-7x`fW5jz8dqZ?HvA=BA`P!G5xe_7T_RUZiX3d^%CRaCv2QamX05A@GtC>dB^Axu zV87k=O}3U-##c5qf~88hez-T>vbkJs`OQW8|F^U{E%QQ9Uikxhzq;6#v&(enwN#n9 zy=qmM*XOCLGA(VeDy}wkuQ2z|S67vKuLMb(+F;k(Mk`BfPidE*LSUS6lJD)n9o^$Oo+UazhyOI+dW%^TEJrQRzc zuJC>5jif5}zEf>18Glt=2m;&kHZ)nu0g_m-k*B)I=BeJ~NC}30QVIH~H#<^dUW-%i z33{iuI8tKXjZ>7MUwW&O5@8@MMG1POw>eUh9w+FF-tI_AdYqsay2O!^^f*EPbE%RN zlchM|8jTaKY*bIs^Sr~65{MH)3HqGN94Ub~5tN{}d8Z>K5GR5X^fT{LQj$_n1SRNU z-t9<9dYqtdd52ZQy<-LxSq{j*Rlgmj-WakYt3%hOBCROI=Eh9h^-gf>wX21MS zz3r_J&$2iFWWw9BvO7h1rhU8OZKwyu?w_>!)}U~u&7{0fPfmL&ShXBGxK3RLAKBtEC@Z#N7Muj2%o`{(A<1f zO_Du?1}j37bB&rJYZwh`Ug&flUujtQLqDwi}&DtE!wG^|FRU?s!$x5?cX_tZUMXzc6S#_~;l38Oi{jW~= z@d>a5M?dvxH}Ke8Sc0Q>`Zp(Vm=;TPbV~p3h8~|GOLVkGpK(HuO_n7#I-$=xVJD`r z5+ALPn~1mb(d;lkviXh4_+|4sytUA&?FpA71p6$nTK#t>?~AsI@*i}6Bg>RK^;)&N zrFUq;}Df|;dZarug_G&4+? zSsGTIuj)!OUxJ5|#v{)ZYgmrHrYmjeSQDgSrMga6+R(8kNW%j5bzNyg$C@Aw>)JPT zr6ps{JmMki8V(?RQ&(Ct)`pjcLrK@`N=wGt@X~Nd=>}bC$ygg+8jda9s4H#gSQF9! z$C+-@l{R#&3DR)P>07$ehK@Bs8je2QtSfEkSQDh-K-9NMTI>z6Z;G0gMkQRdKBQY4 z@wWE=MX_9|`ODFPDeo+sGy9IF2;;4W5`iA<7EKYxMGYka-PWy|B8*=eN(B0<+cZTO zU!D}ffk`oe4(fJI5n@aTBG4;+S5t%-6M_hIMR#b55Mx3Rf&S-vnj*xQ;I&2+6XTC52gFs0vx?e-U1tPM#PcGX{Mu{I`I*gSuw#oCl)VUPT^7He~og{|;6 zTC6Qe7IwVfYO%H^S=iWqr^VWqWMTjMJ+UGOPA!Go`_1`vv+u06jcreC2NpK5mF+dX zzqR$SKWOr}j}Z_1*aMn8?q$S-UN+-t^0=Q75Bk|mL6gTljd;-0X4Yx)xUUfp`r6Eh zCQpb@>}{&?De$nrF)y+MXE*;^)%kkH>^t6)eKVtUH*?cC_lO3$H#4S3-XqpUoqjAm=4RdaT9*r}AXpnK5F)7d>-y*cgBGHxe1?J2Vi@_>$ zuHfz8`)9>Qv(jq8wj1k4ZJD@{?s2T|b`Mv`yx-r}@Lv`e%#_OhZmebpz(zRdDct72 zJDZ^2p$k8^DLasqMMlV1?oc`C%$e0Ht(re)DNX(BuiI$3{tkWviyRKUa{b+vddc?Y zOjq_SSDtwiDUY0S8NG6G-i+;Agqub>U?;^*)q1h#ip(arq-32<$&*P*GRk(F(}+5@ z*{=Od7w)iK`lJDu&Uh-vQ8w0d2e9hPwQ6V4ax>{?+-1A;sRJ(EsQL9hsdwn7wo9Kz zmyR5qwh{*2Bn=O~Fbr!b^wqDUbBfHLL}&I6jNxVwv{S|3ViR8^@yWU{AnnW&cC(wR zNz5QVJ7^spnFT*#=4=8bLsa>o_`)A-zjls9MCMbjJSroiUJhr64>UqM&EEcIf@k+H z@t|6CJgx8>8~q%j3->z9xq7$RNayL0_=p)Iq31eZhr}n#5DER(D~S|2S!U(gg}cmU z?qb$mYYV@y-QQP{mdH&16)icgv2 z?x=1lx+C7^TJ_wHInkqBX~d7a@aWVo{1Lo(IWvXd1c-uB$qSP+Q}_*lC>W8v=r}Wl zoj*~~`SXI}%oKL~L_x>Ti-j{&*y$4mo&FV+H<>9sUQ85p_`FyvGlfTriGt3a*I;F) z@E9>sV2pT%7glAa@aQm6V03tfmrG@)@VGEhU|e|S%KT5CM}&z2Bf>MhIydug;jv(% zz*z9iRr!Alj{*|~MuBIp&QIa-U!uVH@63nuQ+VW;C@}In!^>V{V?k!}Q>|KCw)B{O z+wuZi+v26Gk@G{ADrxVFo^2K141a5m8r4drk-lxIVXAx<0hqSst9qaD8sHbbV;FvpgJ?;riTS>H5%OXL$fB z!}Ynj()FRa&hp?(hU;@%rRzgmo!ulR@R0Gt4VA7B4Rv;Np6hcfrRzg0o!vs$j~sZu zv`}qVit{!9JTu5;s)SjI5}2)Ntr;=+1JTX4+}P!c&3Qv?%$tKxip}{( zY|OVQS8UEjVq-2&yJB;m5*zb$#ub}}2t8tB4m*o;fsOgi?C8KpwY^}5ikm^pHbmNQ z{)Ovp$vaCoG%_1%DG17zDq)7L%wd$(?vC`~TDJ*rL-@CQhsuqZ^S&p{=6=;$&2JX{ zebts%;PZ>GvuQX)Q^R=g-0C4@U@bXRQ^wd_wOLviLIqZp!!%WlpJRruYn35nV1YSY zRfb$iP~2gr*_FT z0Eg3oHsjg4I?RH<;dG$SI6+s(=&(A_Xgo(($Jnqs&}W>ORfh~rI~a=c1-(Y*e95T; z{YGXTmR~N)Z54EbsCfCc3XdXLQcl2Zrz57rSKIO#o? z%<~;qF>B9zhRu;Yk0Mt~S-4k0d_JN16YG3JR)!vhCmLxf3%4qWD>GX@4518N%k$Om zS-4X{T-k8<41EmGi^_V>!lwYIyn?df?io6pGjiWERF*Z)(Cd`dm1T`HbU!atSC%!- z&=2j-tt^~RwCXtH&O`MK9nzWV%7%(FK^c0c1$AXZ#hIWCUDQj|l?@eVf->|~@=VLs z^i8Z9;U+)vN-NYeK^Z!&m*u`^s4Q!oq4%n(E6W;Z=*G@cSC%!-(4WpY&vt^cwd2nY1Z8W-pB)6s){Z~h z1@jPGx-EQ5)!N=lGfBX%#(T1?GLlA1%YHq1eQaF38_O!MKi=px z8#Un>V|(JASXN0Gm9qdl5bwdV%IlBKHG?JL7Gam+?N?R{m~U1p0s#BS#EeWP zA2BwIE3#gGY_8^)ge=3Jz`LzP=4|##OmVlVGuAzQN&AtuZg350Kb$waU%9l_!th&d z@N1pHxy2J4yVRdKgY!@>!Lfh+xidHq=Mo&-+Q*#1c}SPw*zx|t8GMYQo#5CG|I!(p T=Zg>=d!@T*7vR`Pul4>LDLrDS literal 430019 zcmdqKcYtGiSvP*pWM+4^OtNXqWHLiXKvD1BegUPaG%40sMGTotb|!Z-Np8x{-D?9u zdat5LM^x;nh>8_au_1Q!wZ8WHzK9Bl{Jtld^E}^t@_dt%bDp#J-XH$}yV>vad3yPl zbIS8hd)~&=*S*zF{jllf4qKgOqhG%`eCW|Zvp&ptCoebqgI2fWpZjp;w0B}KtPh)m zjCW$c-#r>0c%FCC%XllTJ@daFw&Jbs)rWQOWX3zyA9aSU!{+17U+f%t3D!R`yZ#AS z|8kP`*JjsWgY`#A)?b}ne-+jrCRsl-yM6}NA0%0SWp@1)SihfSeSda+AJ)H()~~XC z9(D(VE44;cb%-q~TdXMWKg)^=M%f8ERRzo`wc^qSu4QMbEC^dA!PcY2z?>J!tVf5wvjEQ~V% zn>MSsXdQ@zk_%tT_Oj1prS<3&5F)zdB%S0E{PVz%Xk>jS>*VtB*;G z{`@EbxvKgFX~9?!C5)lkNum0vv~bLe5|H?+k4_7OGfF^dRefw)2o^*MC?TtlOACi9 zNX{|{QX%r#25?u83CE?W4T z!r}w`DE|kvaGn?LjShR4S{=ut#uN8i{bplm+78oJaE0}i4kDXe!Nn!QRVWbwXWabG z#GG&`O++9HZ@w`x5$*?w2*lXUHxZE{>m*e6^$x9&4P_l#$p05DYt^|I+ub8m4D`CL zUefnYk9wwUY>unkkc#)>kP4`w@EysiutgCSFx$en6O{^!=+;qZzul}2`}N*lx7&9J z%J(AsO(_PR%tpM)IyuL?Pa%Aj;96)avPEKn?!ZcPPCCK48? z97~6(U|ETT1*+*%o3L26AG*|y3w`Pdq3+QRi?nVMI}BE}LuxcTgxphVq=F@y9YQ)T z?WTeynjJ!IQfd+wD|e1-|Hf!IY`Wq^==k2p9LldgpBC0sel!DzLa?-_f+Yy%3k;Eh zGY3Ryo=f|wU=a*azyi~R(#2G;2!<$NfeA~gl?oQYUIZ*KbSfPX79k+sa*ZQ*hCbo% zIeemU4Xvx`6GA`~c!W}lWWdXz$Hv_v-yiwO+q9IIQ>0_KcZx z)?0nE2jke9Id{}-_4m591#y--9)Bf70|`I(x|Gle7A~NHl%IQTN@xTd7tlb`&%Hh+ zG=h~2XdpZ1zAYs*bK@e}4aCLVt5QNE*bPT%LIaU8_sW#e2zDc&f!LUPO-g74yAjYp zbj-b)&}?$NY4lr%gKnqRYu7uMTycgn_5Tf{2gp6klb>_e+V#e8SyE;^unPiI z=f+=sV|H~Ib!46wfA#F_>d>TTxSv|uW^%Ku!#E=I0>Uo%QjDBEH`;wF^b3Q_-nYp9 zBcZVB<6gJj8XPqDYP6+=txr0r=FSt#eq~JZ#w|wAC@Wr%J&`tfDD^|c&Y$+PE7zHapXTQRRClIECHy$^i*I( z8_5PB0p)pvFrg8O00bL=9F^zI!88B}HUMcX&pXBm0f=tM`xs<|P)p@MKUE{-gIfdu zT9W)DQU$;#(+B``X!%E`3P5l}XgsdI8$#B#-0&fs3(N_|#wC;PIPbO1A6UmRToq`T z@mB8P2>sbtXh~djd%@_Tyvy?eiG*G!0uYQID!@GNgr@;OFnTBw^SlS11^~h6p^mg{ zZs|IbSEtU#*qmL#W$qvgTY7cQ8nn96^3>{IAAfaD3A8$t1(|P%zdD;ftq$=%^NsOW zXS=4=A(&^rDgNqgw6r=z>dZICU!6}t)9Mh0GtZ2_I-lRB)uGnPJd0M}<`{cW@9&LA zksT9g_uKV>E2ge{YmIKZ+xJ%6=0JEDVZHweBP>X&$kStMJ1scrYWCFQZM&P^jL#WNdaGV=O0nH-TpITRgzS+avh&lvv-4w0a_F@>d@z#a06H!57N?dR%rp<= zFq!Wyl0zBf@O~vZ?Dy-`W3oMf^%Z&BSxXK^`yhvC_D}*jyjw>OCkCyyxn)82M-~As zN0Ikn<4PjPHTJ%MnPGw?qFF={B=HMMlIZs9#zSW%0a>j0bfTvviAXVm^DD)OEs(@} z30b08dGgRqLObRzO?bJ6i~>?_kvIOdL=h=W2%@NfD1Jpp6sOy*{R49cqCFA}14@J< zZ^>#&BT}#sq_GLoc#n=WPF!iW&5^oUyMS`0$Qz$=B@sBCMzFXCNa6z|2`yxCo%f!A z?0xFU;`-7KAp3Q7WO40!8<71JAxjkS){YKZL&3p=jAh*=EPgGKi)%c=ic6cd;NaD1 zWIG=uWcTGN+1j=r-vb%M*}b1sCsW5psgLwCVYLd9+I%tLi7TmC0YH${y+BgGNyxM% zHFr;zBn3%h^JRobOHz>n66w&RY65xytK-m?lweb&IkqWCDw{7?msF$xDM$*s#vSfS zv?VpEh!=SuRH&OTQI}MtfGtQ0bhyJ^i?*bU)#LGY!oxNN1?=Wa6H6*qL?>kIeGnIR zxU12Yln|!`?}JWwlh4(}jZ-M8NO6jgv7}%tXotHVEo716f`ANm$#%F2(bl057YGkq zJH)9?-apWiRHV2-$XJIkUD)9UMO#urTp&CwDad`Bd~PeQq+-=CLRP#f;tb?gl4`<=Uvok8Ef!**tE zk566&(H=f{Z*UDC_%5&t2%*+uk0TJEqs@<#$Eko2$`}CznDFK&bU_H6g8%|Lnaxk? zf|xfvV4Hx(bMwD-K?pX%v5ss4>+etLf)H#%0D-0L|LB4cY(fA5RqW=c350M%@45?) zBeW*kj9+{6AM9}b{J+w==XnkqJOdD%^ljHK*BvWoytD1rZKKv+ZLirIKP|`C08WR* zplK<*LyZ`pgCJrcvBKNci18%>A_gsW;hk#4_`U-XgD$!7U24Sm3IP#=g1hiNYQ*?9 z1QCN8y71j<#Q1^%5rg)tz}NQ#m%3@;>nvXtS~;Zj!hO}4;5!(^1axYJ?^PqlmnMi9 zl%9p}BVxA1I_9QA@Oqf*NKqJsyx(+5j1MU$4MLn{czMCwtDTRdB$nj-4C8e3hq^fF#O*LJrN>` z&+j;B*edbOwhDZgxFe0lw|Rdx7T*xM{ReowLmOrFtC#NByjAh2KD_+ z5FD%YG2+nr4nyOh?tCcN`C!G$PS|#U6j!T6%JrL**Z#+ET-1Zn4YkbPt3v?LG8bQ$Dgc^DFaVfH6#1#BG$cSNjR8PP zEAlC}GyqU3!2qC?DDtC6u_6fO5wQd2Kt>%fTsH6@ovJ0!P>V|c1~gq@89-}a;s2tX_u zKum}v1Gq-&e;z?dBOXv8%rbyNxX2f&V#xsFf!O^DApssA@E@A07-*2pVt^q)k#Drb z5(9*UsA7Q2qyEEE6$9-fuoz$pQRM3?vBY5D+fgB^7~tsv|7H?HEEM3EQBlA{5dJO6 zP=II1y|~~Sa2naakzk||A*eTJn}Dve$WK4U(gwIjWI4bq4E{~2%7GNYa)6;o@r48+ zmK@B#wtXYA9N?t2e|<6-;2e=*z)^JnhGa0%JH)<%jFWd-VdCIln+ygTXH*z4ckr(x z7}iOjUGv?}$rC)zG0SOl8qjYY;B$SOD7E%VDS9oLJ z`p{CNd)Vs^+}{PscqRHt?V@>*wHBTXA`kR`H{=yOFnflitU{5^izq_u%bwPyNc9-= z2=!QYLzf~|!AudV;Otplid1DVMW`~eIbDiW-Z4ce@3L84iqvN_Md-7$d0mP$;b4j| z;mDpNidG~DztVKWO^z63EPit2`7xo_fe#ee>#R30dclX!f&**D-|PLld79XoJkkU^GAwi+R&DV&650Cd3t__@(WO%TWrpuoqYSal&N>+jcX!5>vbRI!B)$23!B>4nHsOIa?h+ zk7Tz3zp&|6{AJ=-2UjG!6>z~WSn)@daYeFQ0T=9x6@Muqu2^wVzy%v+#UD||71zFC zFBZrQ**g#1$(p3Pl-I?N$-06DK0smw*d8sJl$D2%|Hr zSk#eMB>NKN1x?Ofrmlm**WQmB5h|;zKoM%pt3VN|?W;f$`VNbt{d9Hs(Q9+f zw>dB$7m4%wrKzahPuhQfILCqbaDI!tRU6M_9_siQ0pWo-dcHz@lg@2~R)CPM}__ zreU#yod`&vhOcsF(UXZ_Cjt`atEwE?H~1Z!R-@^dJyGHEl+YPr!6KJTdaMbCCxitE z)m45`%0jaI*XGyu`^{#D7^m+iLwqiZM~jyymoZm8W{JU|q9~p*U7pz5ZoA$PJ|Pd2 zn4);rc6oBEjVpCQl2Cybn^Nprp4y4tsBa#WofRh3oyChf^j76BOG9l}+}EMDw%hL> z3BrT|s(3);?!yk=Z}yt?VelOVGx|L=bFBq;C(m81H-cZ=XP|<3)99L)?}n{zr{11= zuGjl%M|i04Id^3^LFup<4y1$%-_lWr6Xb=(a3C*K_->9eoYhEhpopmOtuJLbK|o(D z9jGKKeAlbWrhHWI_sr!u^IyTI-QADmhhf0~ONVK0^Anj?lM`O*yRh(5U)8a0{?C$o z;HA2uW2<5p*ZlBSnBCmtILGm`vw%shUZFla~0wr(~qKb|tQ$@3YJ+87aC( z&0IlaSK_w@laUg*GInc!nBL+_(Mk=Gh~WZ+oL<5fe3+#}P6LXl@Xf+xilEE-taGRh zN-rm;iLD5S)P*QA8@*s6tQIb~b0WurGNkmftno)oQ-ByLK*;(_AVQ1)=Z}{Gs=Iy<9 zcW?6f5#KA-+vbaNwUOES?;n}BWBSv5&gX=s4@B`QpG1#A*BC-ny5PFi_mk_!plez> zkuJ-b_=R9u<(mpI=(_k7=t8+s{Q&VR6z$h9yg_q=Lw|YxB7}8UHu&gZtx+Gf_sl&_ zhXt*h&gS?R=Gl$lGlbsS*l;r5X~!cxza4@AWtM)Bm`e);Wn7;?fF+lHAaxK_RWb-r zbLodu2SEh^g8&;Z@hy(D)IpUfgMb34^zPIpLHz`SzTC%eoWCUMGQiafLveV+ovhXL5LAh9G2db zwj6{I0dtNL-&#&d4nl;0GO+aCwB;ZK2pF)Geu^+yuSoXmt+pd|XS{6iw^LJYQn~l& zFiS&PsH_kfp#-`1dIzzv;q&hst_z7b|F^VmN@^5D2*W}Z5t8S!2qC?j>)PQ9OYt>D zL5j(ML@S;G8LmmmAfRlk_zGl5H_Q#Bp2`UYGW5D0lYul_IjKN~0tS% zw8%hBVUe*uQ#Cp5HE7p&U0H73%kz(F!z;aJ?RqbN*c}Y6nDb$DR?PR#4!gbDpxvE* zkkWsLBRN)iYtlL)IT)IAXIGxu3RZqp|L`&0cDpq&yVH&o?3m6{W~QTfkVmTL$RCmm zV{I&k#R7n;qsrTO$uVpU4!hmqLG8AY*+so$F&0R8RUXPG$Fk5kC;_u^K)kB*(C;eX zp}K?dKnk^tH8~#9UIdvyMym4WXL1a4?M1)>fxgN!;^bKJ4fDQj@I3Co9Ak;-OHg}M zd7_^j&qjb}2`o?wS9zSD9Lqvq5^NW$OjX;Bg9i$@tBXglWk~b7v1XAi3wWR&sNSKN zo95cGfCb9a>J>#S3vEZh1C^hyt`-$B0v;%;EIb81inHHs@722frlV*Hs}nElD2<8_ zAgNo;bP$moE3SK|g1;SCXWofUw|{89K^a~|JL{lQ`Q{{4rVhCh2`DQn&m{740cSqMXkq+(A`>4Yn&u3{(!Om}4cxd&K zW8DH9mi2J%sE3qhr}EHjoE##_NR-ER1g>SYrWms<-VDjqhy)e`}s4 z9!zEi>)zJ*56rpZPO}jlN}tRdOhOwTnD_h5uwmV+h(Br82gC3e@*;-wMT;CY!$m?d ztdt#MIM2b-D)Q;5@ine#O1QA!cPyO$Aen>p1+&SwwiP~0&6E6Bg#aK)mc=jJnD1aW z`1IY4F9HJj54d+wz%I1VEb-A1>0N#!x08sIjdG?%!5%RVp0e~8>oJ&;#ynjOgV0u_C zqzZty!w3M3m&^H70p!9g&w&VLPUX#10c2+Zz#yf34+0=mofj5%S0zW9&+{qLdvbX= z>I9!JGb7$fWoSNA(l~Gw66@ai@n6?w?kk=gbuM-63zJWDVA$rqS{uXKq>2njD}(?t z?KT(5>If#q@C*W|;4(muL9xr?-Z2 z0KBmLB#LqID6j9;`<6Vg5rnQPE@Vy>f825Yw{TRriC>DsSEyVv{2 zp(3GdFTOqV_yxMI#d42J!d`GS;r4xu#^4+{pXgt>#%4n4xo zvm?Q9DmOk5=$3Y#6A6ez-tl2TwHQ$z>M)>cHZa0NrdEKVq1%O<9kyd+IQeStGaUgY z|3|cNj;q%Fetj@lu%x%*ShDy~X-V@A&7NyXGn%XKH_eC5xrzR=aB(n;3O^oW;f=I7 zH^{U&7=MMI!C7{3ZhUBQP+^5XM!D?b+|_~R4e>|%(BRNphSy9uBh;1IQM4Pp(uR(w#UJh-a)9?uu(3k16-o?I9*B1JJ8~hI>0+hkJkkuNJ3BtG@K<4OV*=K4Ra2; zYbvPT!Ij#uzT0*M|1j$LzwB_n%)5z4>ocms(^I3C>kR-}^bL+hvpgJ9F(E;Fg5aQE zF7bR~*}TlVjg*(cNh-S}HtX%gM!$79Fx%=Eo1I3pwr?6MM@}{upt`+gXWT`>morV^ zIMeEkH}OD-bvF62Hs_!nLc~`+sQO^ZMS7MPr?A_od~I7 zS^gSTswXBD*DP6VHD0SqHe+V5vox`HdX*~86N6rV)M(C<#eVSBs$^wWvBA}4Ri=p@ zyDrV+PGDBNIE8qfs(7jGnk9_0m2V@$TS7x?EHc=da5%0zJe&$0)c}}kW#6Jmj`l=+ zA_sY)`c_49G)ZQ15O1q*BXYtv^L2|(llk;m5lAin@3d|zN`jnJWhGh1{9EP;p(w}v za}L!PKSWFj!nx74KNecB|2W6G1wP$itvlX&AD_2(+U_~~;AU{s(>uA>yl9?68iq8z z-H;|!N>v`srbiPBsH;K~%4$WLCni@mXGIGYZuNPRnZ#1(dgGuqF!S=gS)yq1&s8IO zve7p$luI-*SbVD*&9(8>o>?w28a_vjqT5ppim8Clo??ft@akinZ*I&T<?bkZy+T#IbNWflZ?7c6R_}0lrO|A+ zMy@dvRW6;d-UcHr{{XFe-tJO^_gKtssIe><%e9Kuw7eclcZG)aW;d&8K#c+#kMJ_tqNScDL_Mf7<7tLvCSynf)B1 zq@hZ|qy=sv)mFceFvR8-J}pG-!jLWdxkO5XUBP<lm@U&e&y$)P&y(j#>%;o-*6QqgrEEj4?-3P0 zgUDOE*Cy?oPkEV7d<|Or9Y?s&c;)?m*F1$k{?Swkz{l$z5poR{RpmznW1H^U(Lrm- zn=52dpv3I`Qs9u!RT75~AgU*cY-|osbo=#=Ima2EF(wuv?q%GE5Am?b{+x)sF{wz^ z7le}{J9#4VhR;akA#!R7U*ul!dk8y4?vN94FOnDh9wKa!qh5ta0mruthUU2GUbowK z6u|%$Qq^Cj<)qlax^_|*};e` zB>AoXNr5ao7LkSIzQtcLwoI$lx!A2uCL@mUMtSqU9P!GUTIh+9J(c)@FuC=K6vW6E z(}*l2sw%(psK+f|6C|>bpsE?-)|xR|+H(!WNPQo7sqgz}Wj%)YIw&y&X{LH21+si; zk;p=Nsjj6!mJj6%G<>$~jHfTaP6^iY!R!+FKUH zWB-8;Ddqo(;99k8!^{uc=Jlga?ZC_tUD3jDy4S3aUpX+lF2%_|3jV?5#mwO5K*oH= za=g}Ft3P>7)7&km^y5D-LALodwTlAE*zgnI0Wh4yzs!<(_HKF94GsLUknDS)zTl3#P0+!P)w+Rp;NdEP7Mi)f-0i)hbhS>lGQ*9mYUT> z0t4NI3K&^Yk>EfZQToVLQxs(Yc5kTiO23y9m|6E0z(8?l9ehjMy#+9ku~opxRuf4! zkg7|+ONz4IeHcHbP>XaV(2OnU`Rd?&o%z0&=W%oL+AtY`7<|5NowiPd7ze$s6>=4Y zKy-Z)0tnxK3khFW2($4+FidEzEtgdk0?}n5Kw<5_`OXvqbX=AY;%h|q&PY0eR;%>; zBpXGY(6FC%0%GvLD-F6d?Pt2cum6rT=+cHJ(}i^9zda4QJW{3r0GY{uTN-p}3y}GR z8q?>ecNFc4_5hhK6qEkjr32|q7fMr~FTq(O z8hXuXlHTJy)W_3xm#zRXqtMIxKS-u~ zFFvprd{`lPNh#scAr6T@8y4UY5_4RD>yzimNaP_h=D76LC(i{Ak%s~&$3>?;d9HJa zJk&Y4H>Ie1E_aALlsmaMrbwQv9wHCPBKMsslIPZw$U_Lvy&*;N-1HH72&}p9NRd3Z zTSOkhUGCdcB+pTg$V1f2aRsRFcw86}c_@r>TnOru=W>O}L%EXUdQhJ{7ZF4riijMy zb^7EvwG(+r?K$r5^vQG6L*$|9$#IjXPo8@pA`iV!PVDt2-)l*l?m6haFHH9k^t`Vm zx3|hU9qJtMi8@4l?|-F7okJc`hmhxed3w}2-V=3*_uf|!b?ejElRMy!jZkw1+}xP1 zncsw0z$Z_y&TMU&iLZ4joUnL>&fR5o)0%z(7hLA}s2X;0Xpv0wx&V(};R( zNr>@rp%}nROTR@x)WyKF1QG*ea__5%dTcScGWoP5giHYqM(H;Ri@GFus6&!~;>!DK zq8?ikkz#}(2xxUmzd=yc1;LFL2?D5l{E3a&f`}F)1W7>GRr>YxB*7goNdgSg zyGG=oT-)N)r3uOPyGI?Jd4}z*~GwBN@5r*ZPPY)ID2#Ts09nd{BqzK|J5$ zGh&J8O}{ir)F5VV@zKFV)bJ4`q6figi%a`N^rjy|B5Du-w)hdgWYngfts-jR<6B%I zC!;p?bQMv9(7MH)Ng`_a&=}E!(sPT;y+rh;9~&cTP~L5EnVpE*%+qv45QafpT)HG8 zD7_O$G+`FD#f77F_u!!3Kh6k_WIz$}Q(^pv8BUSg#zefpD~ZGgklW%UpNJejSxEF? zR<_0El_j?Dy7;xOyUL;1{ChjZmj7$Y(J5X@p}Db7S5m;!3Xf99G4H)&#sTJ8cqHKv zuSk)-V4XfAGmzs5$ZTh4;|qO64-O$^VM+(`WEaCGD_hK2#59J z%iy5j?H-O_zg!TH{J(Z6yz(AeI7NjE3_^k~JVqUdpl|^PB)7t&35WGIa8P3eoxmNY zAs9CM=4(aW;jr$IdB!_;vEB%7;n~kB5NYo(LsfvSmH#s((%cmjX-E_0{~*%VOQpv* zS zy{7BC*7P-lwdof6U189H7COV{fR-n*J2ey_5-=3V@L8W2B--Z7aAAz`hy;u|GJK4G zX%bUo8zKN>n+%`UTAILgS49-SYcqThb7>0LClU>C&kUcoT$;w}ROd?+zzZ{cn09#z zQ=L3f0B6hadD-PDG_KTnh(#1&GLhlqQA<<6SqssCSxbh`KrKyUdU`|@V0x6{BW_Dm zzk(-G@wZ)5>TOJ_#o=iB&3-F(SdR#!>5gxrZY1v zAtF$CWcW<6^|0FbL$uK!zYTO?7q9br7Vn*5YJs3!{BtS>QbocEnvj4m6#s;f$f7S2y#-CW1OL`{!a)$^iJTTT1f!W`{MwXik5&$LM^q$`GJtS}_d@hUAWSy|Wk5Ai{Ig|60KCc)5$q8NtJq@@ zJ(mv-P$(36A52dff@iQy$TJ`n7t=5c!7~ITP_l){D4vVF9T#6ah(xdx0SUAUMc!rALn7FTfCP&1B5%MZish!hu=6dO z1;uhOiwf_sB_h1KkT6(5g*QoIUfS#ShrzR~ee<}iv#KaG&4;y)f7!e;`GOgQQ-CNgw`4nroWEno-;S9sUhGNXFua?4c}gQc#ldnfkl!3V~?6J`{2 zsmZ40tWjG1q^5bDq^Hsf>}QTvruq)+#V-l7J`((EEM|{ zF0L%XOE7CJa-n8{rpHqgi{|p0g`gxb3sqBv^Rh*F31&0Q>{;`%uq(BRP45|ZnVfba zV+Nb@c!*jO2*x`P**KM~32WE$AH<+0YhUP=hjyx1{wsPOlO(8U# zzyGo^34)L8wH)2aO`$E2W76^>g2Sp_r@iIVg*8Jo9x%VVKN# zJdw9(&XaOn^+LTUt9J=zt(0?aFy8oX&+%8F?(zK1Vtd%_Hx3+*vhJN9|FwB+A2xI| z!)`BhBk$VKjX<|m-oLR3F2SyqbRw_|)IFXATGZpQyEZUezz4GoLv>u`<3AS3B^b66 zPXva6y2qnpi+VhUPmVg5I`)xQ(lJD=DqrBVh%Ujhm3~f{&+d-vDIxbj1LX0{+9IpX zD>zVMUM=@skZK|0dAzTbnBCQ*=3qE$%Fydn`G&AXaS6RzzPo@|C}=$1;j$=es}?eT zV%1unyMSHDydH0SCT4f7W14UwOo8)M`BbDuatYm9J{uuSLB#NQ7uKR4Prs|px@61H zx>osygHqoeUqAxRQRMd1I+Ji~YkyEbax_Jb-ag~4_q)UTu+{CDhp&mU|KYGXLT&s7*+nwS zCekgS46(5If0QU2OJ6`4e4)tK7?Sa9>}dgIw79=i;@Q~G0?KG%e-(rB6bXmHg*lHc z3`&lomW7$9It6H!GQ{2D-w@B%wVUH_Q15j|yX|Ie(5~+~JS<#)<+RIp-bL$2x1%W* zBFhv?C`+bU9z9+(-w$-~VoqrX8w6HF@UC-kRd@k$wdC6Lh6=9@v-rYmmXrzI!REE0(JZ_&E^d1IfY*kGy}+;LE{U5S6X3OB?p}Cx zT-@~153dc|7=_owU7HW)lYK)}D7-Z8+VmU^;|9Mhye#h8^uPoBx7 z)IEh4$6cFme$d)b*%V$vYg^x{o4l`nRByLy!6#81h9c)8qUrx+Xg@&H=VP5#mJQQu zu>Unqve!Gvu6z0MCfWE$laJzF@8u7>gTWQ^3}x`I$Dcd%y|ZT4Z+_Gr24_LJu%$Kw z+$GQ33`(LP)v_o+wLTx%x_Y7@Pw`0<;D!0OX zt69WaM2CPVn&({^H7Id%t0^Mw(|=azP|}Lvr$Ey(POD74Y+i?Q6c!n;82l|?{|@Sg zf$4y`{kSzOX`ubs-lK$>kQTSZL1c1`Gt z)X8`x0?4`BUrQoLNQ;sT(}E5E`)4K6qw#DP4Y4NvFAg6DCl|K6mYi~gWkpA<0Ff*YDh!%?g3f%3l z))&Ftnwuc;xBxO-p3jgcWS_t1d=%iC>t8<)ltGw-B%7NXM{Hhphn{8zp1U@|6K_qN7= z(CBtL%|@^*JQ=Y~PH3%m%zSO#tB5}tpJ_V&g}lh*H0s<%#)tgIzX<2h-iyMb8%$x% zQt;059NgW60%e-{a-ynGPFVx1yOH}qL23T4 zs#MNc(dcd!R-ndM{U2Sq9FI@#uF`?>WA)P{9qY-t$%aw%he`sG+Xo@%oeT5n9v3Le z=cC>#vF=oG$@h5g=x*fJP?fB$lY&&Fa=O=V4G!ylGa0*Ec{Ow?Yo|yoigr8i>>k@K z)GasIM?ODIk^lhlvZ380`-|A^>c~=bI-9prC?;W`~E3)a<|v!{lm3e1@NU(@g)l!{<0f>a>w`urA-aK!bd>lfvgFL&gY!adVqQLsUQMHtig z{6!P%mFmI4sC}u~ukChkckswBN{`?=W!N{Z@P+sU28IzpFff5-fa3F` zKk-`kx{c z!Ip$z1%1EI7v&V8L+>=f~2C- z+}v%4^Wa0;!}+_dTp(pya=91Z?>p|Zd;R8MFzPpJy>@-rbkqxBfv|ESbkv|ivtDp4 z^5sRVl{a6R88yt6i_y?ry>Kk;dxgp0*TzVKr_NeKQz=N_+u?}*vJeNDz}6R$Ygnuv z<&$++@NM+;6G3P4J?FeE#c0!q5$DeJc^Zx&i=Qrz8M6HOT^ies$|PBmgUc zHOv{@2`d+g>QM~UJC;uk+{p55(a6!jtW%9>%N}-bx{&PdEfH`E_ z1j;&EyjSmEs&(s^(lE@Igh)Uyx$6mureV^dFxCqsi>+r9VST+AKaHjrkVf{9KwWLU zfQ6)_7do%VdVzXk>sv?!3G`wr@I?LswR!ed0=2YW^?V|nKrf~X ziS93S;E?kRj3cuL1WHLSrXh%?7ieX3HxUv|z0gU2)(a5cdL9wh*Nf~gf?fbrwnd@%EClC%z0dPM|Apv&hw!WDNs|a9Gbx#6-dUorHghNvRTo{l5;CS8EHxXeK0hsYQa9CRnE%QB@LCf4OdUVr#PO)*xG1m*5e6JP`#lQ=S-%qRGmj~0rH!tQr ztmk?KV&(o0s^|Y7QBBaXEH!yyLDQrXM3Lp|t4bZqqL4t77YGTt&rMN0aziJG2S8={ zYO9iX7Da9n4=5`4Ig)tByYRKc(cqxp?H(@jhX*<=GjmZ|d)XQKQkKanlPnX;_bh`_ z61{Ah+|iNfp@7fvSGDvVSGG(+JOC=YPdZZ)k8GKOctBCsC_908jB=t+$QTq^548W; zz4+phYb&`aD1-*bYvP}ZDwAm)q3s^`> zdZG7gSTC^kv-Ls}K?1!j6>SB*K;f6=M_QKFi|iSTNkQGfPOvrlt;2zN$RT`UHNp$#ryK;VLqPGFGP<416cjyMMPe#G%_%|B zkqVCl3AuBtpiPsG3ouQ{l3RIgnlvwFnh=@UqE695FS|!>ai4ZAxc?590R3JtSV1OioiY1s}vcq4U}_1s}wXxUx1)!3SYn zuvH?O*2NO*>bN8GQ+8i<7|QCWXkp7xLIb?8@Kfd$$GUlbzt&ne`sawxIo9?6kA$~p zzH)4en^vQ_NDe>XShxH!TG#rF%5ME|x7&5Bx$d2t{C%z6tY0**+TYRiPIbD$|GV5A z_})qLv6JzsWb^6R;~$y}5N-2X)dC$4#rmkt-xwvr!0slWAG98R3xcPEQDWt(AuF)r)@c&pl+_IC z?V)4Mb?;2C)o$1OwfgO?f#+WdiTHo-AmZ`;qm<76~g9w*~TdcA;WASP=Ian zRBlSD3UR`yYsokP8uxx!)_A(uTyX+C%li=(aA%Emny`v7c6r%B1L6JHodnM%K4_{u zzS5S&?#`NLm&_Mfl8X=A!h5%l_?Cv}5+8&M??+Ye>7;jrrdqk@5_AyMe2SqsnE8722)#m0I_rX_}k0%f@b+ z0%dTbia3Z`mhx$HfTlCC+F8LumaK?lsAVa-1Ph^CN3bqp;P5)c&P<%*=)k=CJS$8{ z>lJZtW?5mLoscvai96<-v*9Ke87q|66>)E7S(l^!~x>6#7<8b?6o>P z)*$wv7^(31(AvXG;cX7yPNcUvAj+1x4^)I=HdJ$?-k`N-KDE?6>P&r|ksri>^it-g zMG=bG`i=kvB6FGh6GbTIkO@NJQ8OtBvQn8l;RGq(6<%PpsS{pY#Gt0Mh@~rJ!3!Wc zmU&c@f{mTnlDRm+NZ~=Fv$HZ)ut)1$@@aYCWMm=*Tyl~oQmbd zCZ@-qNs~>E55y(}@C>&oG1+Xl%%>#6j7)4|Mt)zKY_f+Eo8X}t-q(o7=7}rKw&{sx z8HIRT;Z8Rmq1D~?NRTHMa=%FOj7R1~Z`AL#1wvST|3X4StBosl+7$E1KCtBe`GjOn z3|eh-CTdncSgrkBLPDq8!C5P_7bR&4LS-dss62USb{#uI?gdGH5Unanqtyv0t%(rC zi%QaXu{PZ{5FK#X3OnpQIm=Dou$XKJIx=3yD;$i>-a>dCBm7h+hr~vh;DE&pzvrM! zn!^;42Cg%Fk3g3+r*$F?wwk$>97C5hr&=Nn#+%`X8gxmoQ8*ydke4$2HdLZ2W3^qs zT*q394=GVvf?6)aFMsNC&gXlGb4XN~OQi3s!a1}Gsd3Jy(TH=XEHj-HIcJk2okQP} zc|VcY)j69RaSp|1=8#D1>zqxFIEPVJhKm+m&go@7k2r_=BGXHea}KV=Ih1P|uA+1~ zrziQCb0~N+-4r?J*iM{7{g~mx&N^*>U_KIfrO`dyotwhL=y-Tf* zd8@s7=%jkWP(2zRnCY(xICCF(^A1Al5SljMsX*QMd_?LH9X7v9fx2fj@rZ&#phW&shY!_;8&ZA5*8t6iXA`+~bgAk7 zG!2=F>+?IskJF+#UbN9|bj=jzq!|Pc%y-HCb05x}_D-14J8YWoR7`)4%QS6fwi;ZS zC1T&~;9%n;35gj!yNQ7jZ2WOTV#cK1#K7J+{v;tW6As+OAXaSfB_eynw%a#{m`#E* zEn%EbiU=F@)IRy|4mAqts{BFXTM>%6sP5dLXDE<8%D<8Z6yXGgAQecXt(_CpaO^n#vgmGmh>+nDCWh8NHx1zf{ zX!cF73F7!aor z9xKmQF(R{^@%xf$3B`6C#W;}Y(k^=_>Yo<-X8k(;1A0=Yn z@HRDNGv>XReef=iEj&8=)5c|B%%6c0`_KlKd0$9F`zDkvW*;DU+=-^oK1Oj}_D$Ma z%sv>P7pGcqsC(KdxGyK|!$``?*m1Ov#&4=XV4oq7?*jynr()5yFS8FtgW&rR`pUnT z$oGTQrasI$!#+bG_Q3!>o{S`AAIb=(P1=WCSLVlWG_*hK`-1kNlJR(Qn3R1eEClu; z?3Vu^k@nH}XMJB_AF5W5r?g4ghiXG$AChkQ4~hMxw2j}}m5x9=5SI1bySK=8Ox5;p&?y~$Dim{rDof&YN8mVtHi|3G3*$EgI?z^^@S4>Tam8nyrdBCE%H zde(=2hW&c4XUfLLL37}mBFdqiDZVn4J5&)>E~3(+2%%e>BA*T-9>Ha+oGes$hg-zZvAU45cs$7Fb1?H2W707Rg$^ z%E8Ol4aAFz;>aV|KEWfZJO_xAxPsN}dVIDlU|Hw;C{Ab6Lb%|79Q_W>2l9?4e1{0nw9S)?sZ9XfkULBz*%`Ck=77=B&UOI6YuW{ zf-d)*DT#Y1nyqw|I%%k$Ez;H@$)?$E?{{4(OU}w{U$j>P_Eq?Dl5j#=?8!t6Jh|{? zCJ?8(5d}K5Hlh+T$KFEBfwvUCLQ9Zrn?wt$xWZGlXmRo(T9AASd_E+h3^~pcElBeP zKJlVeB9aGii3lE0;>&wlM9Es1C|FC0uTW_bC9`3o;0{*vm?BXKW-`&;R=;sjyV&fQ zeXxCVBHIxc%tmsz*Brn3g;h*2(=>Nk#*MbwNn_*siLhpeT;jipoW|llIgntsJRb0p*R9|&|TK9`P(fC&A=0wB;l z_*}uO0$FT(u&Lm4Bc%#tv5mlZ-xsF=%X=fLX0eUHCY%3lBp?5^=>P%C6M#VK^A}kNC(Jb8wr$Y?FRZUCm_}t z@S|?G?Wma6y|qTS-R+y3Zqsj|-7kz(5dU`gs_>E&rXO>o^&!yj{CivuR;S)fr1c@L z?EK%@>rXvBN$W!Z-T8lU*T+`^i2}rdoqvr>VRh=cMOq&M-p;?pU4Q1qIU)g$yYtU+ zNk}i~5fzA2JO2`w3cNE%1i;&N{xL2Ad@+wGKw#PVC!!$K{x@FZ@M@|zz9{r!Kwikv zy4E$b`8PODPp(;xFK=XxFLcZc-ZeP&>WB0|;nmG#^iJ-zx_$e_a3TacuU3)~${rJP zG6v3A-AYDp-Rvqg2O?+Smep!9O1Y4dlQoEx)omiUWTelS^ZlU-dSu$r*6w^f?(%En zt0l7ppn>1{M0^6~O$&Z^lsJHPapyl{6WH%Jn*sr7jCcNv2*mQzwXw&NpvY$+7*zR_ z1xqR#AA%)GK^wXAv1E*#JPtRrtU$c1^7kH=WM%s4Tw(+o^PT@7M()e|;fLM9;7ZN< z1ZSMP=%(nz3*c0W`#%!KRp7VGvmtFfrW%ic2jYC0hi2M%Oq&t`52S-Kze{0VO*{VD z!G5>BSL^m&!^F_oR_+xFAN;2L-qei26#mF8O)S|MAQzS2LU=6WZ`3cjILvrw%_y{K zEO*o~=Qzx37Bq?WzBXhU(olwPgK2A6@Bo2nz*Bx}Vy0>4&rE}4GcP3~+Dr>>CNK@D zx%@W56IavxVjO82I++ajlG;oQzAP{ec*<{2gK3bg#dKWB5+`g<5VbS><_c~8%}6nxn2n8yVBwdVf5V{&0W zW@-J%elOyTRbLxolPkq_M?@&|&|ZuDWco4wHuNlcu*@=VUMP`=R*v{avGX2*65*2h zVB)|$5&=b?Pd(|N5R#OD0t_<$6bj7N(eFWUqP$T*>|Jav?mzDn z203tcYtz^o4_)ln51WqY>U#y#?;Y00zo{M8d%>l0Q%p&hOSmHX<&ZuIxWMn9q(GmG zPofW^E%0kRDbVMxkmy5@EASIMDbVLuoalpp7x?wRB=n6{Mbtlpxx&wqX{SJ6&_86^ z!q25iU(i3a9fhAylfIyT@c+Uu5PhrWn|y0b?Rw6iJDh*#zpo~7@ca~sv)GAqaQl0j zQ-zqno?dFi+2M#dIQ-71QzOpVhKPf=@BB|{#3_q=L>ydw=ToT> zr(TMQgP&X0Zq;$^*06SQ)bG?Au52&Ib*A_Ep=$%Z@T=v`ki$S-H0YP{;4(Q%#J@y-K-CWwWH>MU()(QheMY5Z42vGs(F{noOCyjb~=iE z>5z3f7^J%r-?mkv>o71#>m|P5 zu0wZ$gFzN7@m*IP@(Udd(te5WcrOn?N*@c;A{<37@$t*$0Z8r@!NZ|6DDe|T))T;! zYbgo8+C*Px^xqriZ{XkO`G+=f`Y0w7hji-m@IyG6dhNoKsrL+-g61R7wT?DZbmW1V z0-y4KhH|Dhar(3@69-%Jd7P$AoW9Y=#Gy*@-=7-i^ld~Y4yoGbL9#aI^hru44&|uN zQ#7l%4nJLV+4#R1K^X5+C{SZamUJArwFdL{^>h~EGsBfecnaTCQjdnWa3aE`n-i;?GBko-40s~ z^I;?N`tPDEh2GCOgu42fBvfnZqk2DhHg0z`G~Y~e=*uxTGMh(}e^%@Dn}b2HiuEG# z%Blm$_KkEuLC~Gv2KA+E!+Gxo8}tOe(iG0T*q|smp`(9R)cSO`G4aex$~98 ziuL73b2j;M({;Zp^eS(|v1ak%w5By|3&YQaYi@Qh5iac02VXIf{w6J4<)g~M)X*HC zHD2OQ-x|F4PFJRP$r~7m1d^QEA*7*2kJ|h zCZ|jlTCDPe^r_PPl&L~PS$?oSRhptQRcNQm9Ix#ZU3f-vA+aX4gwW7hpS4D8jf zOg_-C*Bmw*!*0LU>X>on(D_t-#><&YJ(EK)!8?`p_W0X};fRrrfq?>ZT!^SsCq;Th z9Tb`4qE?+c1tq2qK`F-_k~(#ASf&mRo8z)pNW0fBtZQ#}*i)YO0M)so9*Mbv;Fsfi zNu4@1+)N!B?i?SuP^V4-f~iA*$Z?mXPMum~rVhz2$7QlQb!upsIy5x7U!#z$PMw-# zrVh<4ppsMB16sl!|%_Z#U^ zr^b}2Lt~ob0$$zbsmx^R&_3jNxG3b0o333@kN98e$R7p1Rc!Y=hs}OH(rrBNS+0d2 zM#{4K!A8GzI57L9ee-c9S3gLt)So(*&hn(&>iZ75<^^`w4zS!qn=cET9(MPG7r*V^ z+57g8FcdJwHxWy zb&2_e!O@ER)>ksZ=Jv{b!cdn$v> z_10eyK^3lpn>vfR2A|5FBoIkejn9}7-_Xi${Uwo9;oDSp5%>nD%B~ZLqndEEvN8hK;MiH-?MuovzCS~JgIjI!(WE8$o@LPZaKuyv6O;`;z@C(E=@m5M z9SYm6|4l}A6?um+qsTixlSh0*@3i%&art&Ac-9oSDy8xS!i-{~o_@TKxQ51U>(6w# z4z9#6j^_|&vTFn)sijXp>PTFJYi<2G5nR&7WnBxoTPQ`LbzY$w!8XLYw>AC)6DT|8Fo+q-)q+QUC%0`(G12Wb*S(7Plkvrn<6p>&Ozu+5U1WS~ zZ2XJRu)W`P81~BdCsXsnIU}hVrb96ddrHmG3B#z*B0TegW$!Co<~b+L_|}VM&k^o z3I0C8u+EV0x7vHb>HoHQl5Bh;bODzun+`4uzeCF}$EC>5q7=(c1u0h7x1+;=5+gPY z*_vgi5+WV6VSYEJQe+siQwcDj4fQ*!Fk}x9U_guJ9}*1V7}SO97MQ+&4~OaJd3t1d z)?RnCYt9B8AG2=PcOA?7-q~TdR~xju;|e~wOw0dfT)cZ`U$@n`M1khBLL4CG{2j!f z)q>t?hByXCv{Ms76=i=d+hlq;HDUh5yk+vuoL}ct)K3pVK-%BtHw4pBllZDBDGQ7-e}zP% zr7Tk&g0g~<*?)NAnS!!R7MfKSTMQ`+ilgnP5Qub?b>g;By+6ET)~P@m`EMW~ zT6!|^3-lDtsUX#r9ze(x^kmw&NP2?mar?;xA{{-QnFK>e1cW$~|9V0bS6M;vW=BBd zLZB?csd%(R5%Apf$J|PM7(_u?CQL_C7S!0=Pa^T8qpY*`4dPkXf`FXAOmMWc6*pf& zqguKbAyd$nn6K!r6=#pXo#OBBM`~8B^80I=F5+Jvpxl~$lp#dw6qjAU4ei~_aS5oS`yQhpd}E` z_LmZfbhLD8U=GZVQ`W4iAjss82uoa5VYwbDS#j}2$qFJ*sX)jSR3#=WK~*50?Jpq^ zTH=Y69fVvCX|z-&WD4RDvjc;m>|lOpe;s!FaRfq3JdwgNBO~j9lCX4E9a*FhBp`zn zR@zC7EYQNz<)PqlPzsf@>d4|6dk|BsuMn5`D|~4gJBx>m9j3C|UrgdjCu}b$g`o4w zew9QNaeWVV-%5N6SwUN3Da39@+JZ^*_7l~`6E^?=vQmYRDTqg`K?L!Dj<%mb zAmUn2th~?2C~||Fl}-~f1@VY^pFxoIK)~64Jb};>Poz-DQHaE|1EG+om|DmpxxIkw zo`8%;c3Q|Hd7OakUVw~;RB@4EsEn)43LxViUkh1WZEgWF?q{`-#nomNkZ}(e7g?;( zCD_?EAmf%r3t1#P<9J3YISLO&kGY!bBeVOE) zrD1Yr$nM&^htfOWCkds4WB%qe^hx>K2#rD`Ahwah{s(l~+y9F|q$3jN7BCF7^1-p{ z$w#6Tq#<^Vf;3H(Fr?njdJ2MC=p=k-%>6_E!*ybVRaXI}<`lo=-WY z1IMug1mlH#FJ-CB+v0#;KF{aRtSm+k;$FDHk!Or#CzoQr(UDN{zb`R4-gjx3=a3iN znvl~Ny+P@}Kcosly804*s`OSMQw3kEzEqzoB}S$SL9hCPt3nkf^cGe7y58}_Ul*Gl z=LgcrWIi1#58N~R^Td#F`tRn2k7z!_v2NkBXkE+glbNER9^l3jlp0m)ve_uWpQ|s_ z=aqH>nJPrI>WlQLQg&ggPy2zY0*MKiNZ2AQ*4_L;6rM=45Ud zSUds(@pTlI5K2R zJ@=U(QUp7JykN=1`UK3-+$1({c@A8UDwz$0;3u{5Zzh-jPVO}?)<{=+t;$4TM2?gcyfTqsm`;Od1}pG$%K`9hpR69jfZ=(@6=*)V_Mryd^!$ zI*bOYKTG5ivOYIN3w%Rkll@u(l92C#>2qiKhKx|<$4(ORy|kZ0$z|F4J-IaEtF4Xh zVXxk=n*orclrcM{JPe$M&Ojp#>+L z;zEOBWcyJB&Dq5F_Z==^PfM3+RX^x3{Eh!2Fjv>`DNeHCLw?x)0$pgchVKX$f=@yS z-+l~1OHGAS10hl$ln)!9A|NX2i|m1d`k<=Y{vv{wnv7<;eUcM^(KhqQ;XsfRsBrrW z)0Y#BTuDk`)*GL^3Q(p;t^@^~f8)Q?hcZ1vBP0;6H$F~CghA1b3-{%p7)D-GgxCkY z3VaYfHUF62G$RfnS8jZQI827bEaTdKaC<7$6dV6f2~4c)2(_0LHd2#}9Oq%ywZT)x z)PT5E1S3E-70t01SHyzmX5(W@)-n%@BVxe_aN|GHhvJA>(ByA?^eP~k+K#8l0zLP} zzY~&#z2~B7B-Ly_O(OwImQMxV2`&V|-*TaZf|)-W6~qF@lI4?uNs-JQjS5IWCe}bw zNVK;sd=5xTwf|yH1|KzB{k^VrNYCsakDt*q zo87@PibvzHNv!$b8^Qov^ z*J;BLY=aUL+Xf^i@8#Ms1ltf`K&1Cxp$$W@4FLw^LhqH@Fa+BWU_b=-UPUmh%L>6J zOmB49yVP<8BrKpPKs_yt450n;wGyGpJBI`FQ0%pi$OkXQnnm*bk0zgaxYpYUPAAVk zLiOVgEY&X|EOw=QeBeIDcLR(+%zK`CCF1~+6{XMoB@)WG(HiwhGb9agi0YS;G?JJA z9WM9C1i;qHH>ePzEX0I>qw;ksgy@hy69OkLUoR0-(%-r8UCEip)ku?&Z>oG`$kL=1 zoWRG##}f$-X(uA3T^te3+LhYb40Z~U)|7WGiR~6SMT!!;besnb*f)ZTG#3X;3Kkc>J?Rvjfzr8i^{41e$yzdCL14`fIqxSmZ zh!8Pg1GUPh>k`Rht!+}nAc8o+B{%sFguXbUL@d~5uYMglk2OB&wSsu(a7g*?Gu=Y= z?h{%91jq9}kxC@`^@&|J_aaCixZUK7cFDMG4bI~DZn$F`9oOxre-X8C)h1+?r3ky%Mo7@kp6J-k`qM*Or z4-rvIsDoa&v)^$TlSMl#+!?fE1~)ZQf$q%LXFA(IBKbGH&{>(X*?sd#rZIB;mu ztTEYLzIUiHT=he=sxSt*dBL)N!Le-N{po-2*}vg&)?c5858 zhS>bw&+&;L2l~6gSH@Q!#12@q3zENh_nW;&0S83bZ(Y3Y{%rT zq(nM9OB%L5a<>y{jqpJP*`riK;B!}vVU?fnwuF}E6?&dq#^ z!+Iu~%M3_F@wksq9+Gc7@-nkCMV26Z2sn9ela~;_On#=`5y(T3>5m+RhK2=cu(7 ze--GoBbuzdiK6KJ=kJe?@3gq?jfWNLO5Q=|{O=H*sqMPU=7TVgZg(4(9DAbS!rmtw z3zxs27Ph7(lXq-u7u($<=PZGiet=`?oliNvyg%$@g zIloR0qDTZdNlN5IyN-E$2*o(PTV@`?6-}h9iO)&u|UCl z{!9vDaj-s)>W;q~8;cNkK#LhZ^bkuda@+xnv_gWO1I0BJK_;NW4DSNQlF5lduRm%C zrUE8;{uG&tH9ZL)@G#dOFFETVxk9B;ga3gr`h%*=4^<>bQe<+#UHKM8a#U_JIk2(v z%@Vory6?@`J4&h0pZ%{3r3UL39!%?6wi_hg;5|C??N;Z_MfqV7S$o8v_p%TNq}3gM zw(jcUfEpq`4w-Y~#=`q6WL_)}n0M}cZ(O~|I7}Fgh66^RJKv*=!^~I&9D;p7(AxPf zT^wfA6b%PNnVom&;xL_eG#pU0?R>W`4l{s=h6BpfopnCs3rlY|v899NtXU|>{uW-=J&v6kgU0f!!TzV%MP0EZBCF&vLDBB%ql=yzVA zDGHi!L;wPt^*b-r1TvW@L_h&2Q+A%GiQ>3}j{pM>1?@av6GqT6N5Ft(rmB-fj~7^V zKR1~u%)eefUO?*A4V@9y0VzZmL-cq7d3xvBn(A04UO;`a^Bheek>dsS9?#N55j|c& zIkWRE1j9P%z~A~ksCV|SbCw$G!HwVJ-KFEtItKq>@?L6iR@PiQoUAqV89q~Aj4uNF z&krjONO9ShsGu@+zl6$=kA?~|UX~NhRg)Eu%1Bla@w1$VQ$Q72R!}HqU!0}}Bij{} z3fUJCD(k6^@$Pe+x69|f$n3R4+Xlza@KNO?`dZ4i1uKG_o#kYCFYYsfBk%j|`W@!K zhRweDI%an`tUIECV^kITy7v#EJj|ciTR@dfRh`Uxo|<(6Q84o~!jMEKX5Jyi8`)ZE zY{*d%5_gvCC=F{h7K4wv)9ipH1KP>(!ITsvBS#m(TA|p^a+RxUtwfov6}-2yMV6wW z6Js$EbYcw1_LvNx)=8ohM+A|rl_bN~3gvc|8z5Dkke{$lKpvF}=_Cbt$Tmu-SRPRC zX77Z`iu{>TL8Qxa*_lLEjz||-R?sG8xg<}5YAK5rGzg7CmOGXdP|30qG-!Tkdw=$u zRIGg|4GO3rE@pW+mx8S1m?WTr$dKj9rAD+C>OHa|&Y)o18NNTGfkCKm1Po9~WcWUd z1_q&$5HLVI%-Rz1TGA3HG`p^TN3~VOigGRK3PI$F1zj zwxhf)zKh&dH7%0yb6NzYTZOeMW!jQq%Ao4Xb~-%M?hI3g^j4{+Ls^hExOrOAru{bN z8H~EJLp%$gnK`)9JE%7oS+DDfGs}9ddq$HpL$zf-g%||psTt7prx4k7-xK-~jD)tn zp18Dj6~i+#7ZyGa=km||pVPY5;qi(4??yR1{@Ed5$kQ3VO|rwWhW6%;W!UcSJ9Oio zyRSMZR(ac8g(5vR>=Q-E`c*#2At>egg$J2#ba0aY6e&f86M8V0Ie|){%11#|DAL1` zOc6qrr7g?w+I927{M^qEgc-*>?+{+;wIn=2DK}l?u(xns|EZ333*7oz>jsZpDu4FR zyCFmXd8PaziL;mpghGm=JRtz3m48bSfly8g2*Bmazp02oD53-e;408sgHxxt!LQ9E{Zwvl+%feEdcD}%B z3w-Q7E_i!BIOya>_V(yy-v*isQv*3sG(L z0m&33OC{(O7DIt3zWNzyKndEW#ZVwZu0AjgC_-EjJP0bX)%&IaMTjc`6sUGq@0Se9 ztR{@7%zp!g;tEuEtM|O~pg@I_6pBLxg0N=eiun_J!_$Id^_gKic;On?@x*Xp|F$r> z!NU1pO(t%cMb=r{A_Ob}3bcKz_f7+f5U>O&&{D15hoIOcUAKGaY}ltZ z8L0jAe=Rftkb9Z0PsgG_JTL_?vNB&%vIeUy9gg}#vqjt7ckiQ| zsHPdm9aNs_~LJ-)OiPHoa4wZf*Q01BxDR4B)`9P7peL_t>>leGD{?Y=1N_qRF8Xl+loH?xDKCz$X-mC#Z zy}Zqj!X(w$NtXf52Lx5~HoqN{6wn+Knhy!8=k2VT(%eQg9}yJM+c`BvPBS`r9F%5F z2+HW~bv-aH6LN!rLVEj@8kjles3ry!#T&?2bWjMDId@Tn0@6_NMr9O&;|Q_< z_bpzhj6$$e0R?zV@p?jGJ*C>~n)agGbazQ7_WRwV@fI`hKD{*TJRpj1?k6O{TYy9Y zg3x9&Aqn2fBog4zn->$3pw8GM65t)1jf5n4Yne!Z>2K~OBthQAT!39~))SJT2A@fQ z(QfW0Btd?`Bp}ysK7&YD@tdZ23lDXaLuY_>^L!@E`a0mQ@urU2)y2OHX@etXn5Xn< zgZo&ttqT|Ccbd6J4Z?M=1V5ZS%(}W)AJ)UB!~1Us*Hu2@qRchNC6YMAr3}ZV zw7CX(r^hu18R8m(Ohybcjrw8l;=C{ZPR&A1Vn5rweP~{n9*sXwO&;riDAY4}R_0aY zvDRGiQnTH2vDfd;O_?W}xA(ez{yIDvF&I+yM~LHHi_ID`E`acsg3}M#0OhlDEhjSs>5ahy)mgDuk3fo0`M5?bL zj^pT&&b+W5VSHWUd#PG_QFs%|+wnwD{q9x)2=-GDfH zq@!M}N7xl9Ju@wlk~&$WpiZkKvRbd@M2cyW6v=54lk@9{<2WLvgKaEQm^hdC5^IXC z0p*V68nI=G=|YetWaZ4aC6XnbsbpEgenN?lmTSq9idIe+z?FA}xQZ=H4B3J#L4%ps z6V*6&Nk>Onmatt^`v02y?l{@9s@zkz`-Yiex^AUwh3*-$WadsDKmN48nj4iWpH;k~t%wA_$6z={@Gzq$0Idab`0Ofb@_6KsH{zJ(C1*U74bg>sH~qX(WI> z3jo=374~d3@RBGo@H8%7a8Dx@EK8&!%c^FxEUAJq@KldhF_TIo0X$wLpz^GW50tv8C_SX|KWbf-;-MG3eVpE>~Eh4f}h zIN>fF?01HceC_s32a$SrZc;`V$C>K4|{G28%G^ zp+AA3@SyqY8k*b6GQ|zCXWt$jw*JWO%Gm6sZDKxqQ$(vVbfv-zBR*XE6U~*j-Q$F= z)jQZ2b+@|hs6J-+@!&HNAFp7WzV|F;xM&l*@%qY$&zAm4ID1zCjokAzZrx(uGc~#o z#@XDLhBV0LTGyncq5GOn4oOgGPy%S(|8qlwa%l_9J6;$*c9_ov zL%$f>DcOIqD_rsmN=h`K8E5N$Lc>}m&StN0M@TQUdvy9!R6>!dxFcK^Q;F)ME-uWU zC5V;KEWf3m<}8r<)|*>MXR z&P9|OM4>^YkfGO3zU-f6Q*|Z$tqT_t!1SIqR2{IinwY%g{<;@$VxU=#f}SWSt&CJ zmq2WcxD=lw^@BARvUjloaG{E~h@E5BT*%%PE;I=!Vn3HP7qUl%3(bp)*cW8Yh3rM) zLMgn6y)9X}OuTNf_(&C25&JW&xsbgmenbUu5&KN7xsbgmTxfn$#8uMPT*zJ&E|k`b zUoG*)+rJ~%IcGSa?7|Db%OK`kcy*X&$YknBV@e0*#@Ke*tqD=XXi!7`9=ad7s)Os#6gu7_!L%k@HP$}87I4#jRk`6gk3+)AaIwucv#H>=tk6P&a*t39A zBI!`7X`wS`Pp8;%7t9^5#tgfg=Vz5eUfn{iWY4BL+8qqWJL{9T$VTq!y8~jgl*qGN zC?)MFmBff0pUy~iDst@>%4~Z+r=n?4?rve`k%fkPN_n9OLmk7`u1TEJS-_bhBMkL) zTm2mAL`N8Ewzmd3vVc+|BMdEvwDyF~Dta>e{jG}=Kit{xop-l9ZwzjWS+@>;FU&F& zGgh(qYHx}05sYS@EiC@nvq>1iXky-at_*-Zr6duInij3|Ir5nk!KjbZ>Isc|!7jBN zk>+Bmxh4PWLsO;-rSaK3DJgX}rlLZLYPbd-(8xhc%Ip}$tx%%W)A+x6YH4o0EtDuJ zH~u?MN{THhTB5q8@n3mTQfx_~M3K7jpF+von&rx|X^Gf#$57*vz}JMH!=L_Q`Sji4 z%)5ip=%QbMntSr=LO$flHC$9}%|}r^+*tUK8`oZ$n|>4@R`}4gqlR6JmnN)$lK3!D zY6iKfNQo)nBSS_L#TqtL=Afdvlte{DsqsIeBJUx%!?VtN!_H_lxiDa_=Pp2uaAfyj zy7>F#Ty(qV4tV2K%lCxtL{(Mr=v;ttG)aJ|b_x(zEG5SIG6AL{DR@jS6627d08?2M zJT@0#9AFV(3Q@r$askHC908_S9Xv7@U>rIUU~;G6QMmx)IF$fXs0+R*7hoLf6=0gL z2Vas4FiwRFFwM+^$K?WyYXtp2> z!e~vNT!BN`LW?g0ntZtem$HSH>K4%C&6O|6N#P1K`LhRYnWY36Mn+|K@Gz0t5*Wpi zSU1gX0w~)O80Q5Am}Yvx!*h`sCm{uxX1&1|3b6HzV($D>%2OJF+E3@kN15Tk6on6& zV(q7Ll z-O!)BwKE*Kr=bd`-@kNuaN^)T{L!i4vI~R3*7W;J?xj`!_(iw&EN>c5)}F;&y<^jp zPlQL3g#*=?YcEX1;l%XaWIGyEajtz`A{xgxy2H&KI~G)auDvJ`i--YFKPFU+uDw`B z)6yX2ZDbfEc|r~KU@BnEQsoV3pi%)`!~7~0YJ_bnz*PR$&?iX+tXrdkOSNweZIV>D z5%#A5Q{`JjnQ#-1L`Ex2@eS8&M>PFQteQqJ4Z1miV zCx`okY@cp9RtXb~3t#>dPKA$V3nbcjD^Y|{Ye?m()E+V33NV!~wTy{eA8!ShYL^;j z@ZJX0&B5fg$KGJ`d_OQSuZ;L^<1O;t)38ss zmh1KwL~xBbGZsP>ej|jUh|~DT{GceRdQjfNeRyd8?AdD~L=zcq3uSOW@x7>oC%?Ug zxO3B^{_a?(J1rCO>Dh;@(UUn9qES*R{N%u;@{9hxjY0gaMN`Avf6-G6wlJ=}H2CEX-joy9K&<=sJd!_5nE0LXAXY7ey+Xg4r6=Id>$VS_T7s%;pF0zVTd6o zT*Xy1rs#e541j`8KDmnfcr4LR?)T64-4i6U(o=w4y`LDeCH|5-4>XHS(RLNL?^t3- z%T9KelkCf#_6QF^h}n@#uRb6b#V=pzXyD}FtM?ah@8-qB9a-aHdv9wnh?>h4f>VRN zPXFMb7aek*yCV1#o1;%sCo^$V!Pg=MA&A(F1E{lpD?RX4O04qeAiM&#SWE7 zL35)3$Gk1MD0ZlDp$UF~S)wHu#SRrNG;0c;D`S)`f-08iM^Nzy)F4znS3h5vWLv_5 z(6WR@P>qiXl&#QIVkknBi&XC|OtJ|rP*}GkC~q;%R%ogqgb7BP<^$FHiqN)9C~GTB zXf{y2k1)xmerd=;{S;&ypEQD!W-Op6)-@1!vq>e5SU}NGHvY*-D(M^oipHw(ae=b6 zn)ulg)mK$?du*9d_>e#bPonCoijJQx6Y^<=3Ds8BvpJ0p`Lx1>Dyu54L&&BRp0|;m zDA9#nzKY(IEfca6g$YH3YCgTu=>8;CJYIj&Rug2WiYACj6=C z;_b3O4Phyqw6N#I2zGhGG*ogRxHKDUVfTq=mhQo|m>s5WIH!NKIp__B!SY6LzvI@i zwmR*tgLSMBxbXF%zy!R49krQ&_qzS_^MOgzD~}Yj$^v|1Z-2Pgi;J#n$qb6ZpALsQyX!9j>D&2T!u#&bqP!P0Nrg zk249J?8*u-tqObg<>kiB_V89$a_sHz?w#-UBT_OgOGp`7ctx0&C`2z|UuzcqCJ>Sq z?(Bq=+807nK3Kw5;hcq}HCsC&rQn8;RA4Nr6;&FmfrX0IP))IMyL%V9u4ddB z49-Uws5@-i9*^6bJI<6Rhi%DVC%vA%!G+G`s$BPLVG>ALMIo_;JNdj#n+8lKeTDf< zC_=VyVWBOPNv~x-6N;HF+~$~#$z;_1RnAHOYd#YSp)K6oWy>VqPAI0X;#jvWlXyF! zz_;q^$zZwP-t7doOycc?qSNXzBPKCkEU^n-O!1`k>71C*=qOAmAGZE2CnhvH3KL3N ztQ@?wPvO>$cQkrR`6JE2)mOTAJwMc(1jiMJD)2DNbCYPNX7 zUK}6oXL>~VcH_eb77e0No&BRB1y z$yUk<-Qj+J+}-UwZYu~1IDBReE>%cDz$tze)N^(h+6PTScP(ZA{3t?Zk?T`oflhL* z<|mgl;UO1!egP+Ntd%Mqd4Q9%7k){c-5MP8A{kN20|lJZva6m(Z5^Y+-VQD zJCh(0degCD1a9MY!BynB`Pw*nzB1ywWo)AIMob>~O?DW9Q-Mp5E0ce@zT*O?dsp7g zhYlW4+MB#vFu4ukNas0_U01cEk+JwBk=c%$OAf@%{lq=)6vwSf+;B}+dTtY&^`|K= zg%Y=9daDq(FE!8`b903TaZ9GRGI4uY4&2h(TZya$(ou{XG0UROsiy4~70n5w!Gb;b3Q1X>I;A>E|KBEwg^6_pHRLhq7DgRYD=X zdN^DqayzM|5UyxeT70%}%dDQm`)}g)L-kzgmBPVJKZ#sl(GT?xis*=E*3aZtqIl&@ zVwhKHmwq+}K@7*#iz*7Wmb<~_bB=y6E3}8IHWfpt_u@|A4NZuJc`&rm03SZ-J>Xn z?6>qfQI2QQ7TDcZmp4U291o zDgi5lOa){K`vWtpK~HiD2ddLb>b-@RB1(aqG?T7ATKs#nvr8Ny6mC}$H_VLexTP%) z)`%M>CU)G?CgxS*hIv7HZd`OG%8JUEwul?bayxE`GLpirN!(Bn+i^>4Zw=yxV$_aX zT6?P#Hxz>Dxp9?|$ljDHvvLZCii0@RZ7c?6!-kDY}r~_WSGp$}w`?+{$TD_pwZxO2(=>q^K z!$g5o@dchFVCBF&MA`3*cif7g+ifsTc1ijlMTCLcJ7f;xi9XqiIdYpf4({8Jh%l#u z;^a>bU%VY(-0QgKS9S*j@A|?wg`i}ojfWb7E^Y4P-aJ7h>uW%Z*~PqKr_&t{wtMbS z)=1*4Ad_u1ZZVYgSSz@{Ri@V9wk%SIz$Q}8W(FfVM`VFhdo!-c;QZ0{w-!&?~B zzv(RZJQrRbIyV`4Rei!SGq7Am4q&qID#{*9iN(ADOy*rhjtQ zX*HsX-kv3}JP-q5T7anH?7AheycGjrT6L(RE2m5ouDvc|>gOzFx-tK5VY(&TDgB)o z?Nzv7;xOH2JQe_{-WH;>RL{u|9cf6=ISpYio4M@BMS{+`=vn#6j)WxWoRF~MVJ?jWeoy!Ak^f#9sb)cYg9r%p=WXGgV(0NjabwYF5F|!kNp4okQezIeFC+IxA z!&;xY?5GU|o$`D2%S3jiZn!13z4+WPbJKUrs5!mWF0a`gQINP8(LOj0Bn}gdLI`r0 z+S`SCItbAYAV`WDj&h}gkdOxm3VF3(&M1Y%H9$~YtKle~cZcD&yBulWs(@3)^i|ep zhx#YwRPLcM4=+GJd(90ILmYm%AOlMuF1=emeB^l9bP*%vYfwiY#(82W6WLS)n@|j) zk30w@&@@U7Tv%fVJ#*Knpp(uUxFN_6{m3g&f=uzR@x&ZPJ6djv{kh0}{OH?XB00H! zyTW^;Jsfs=5y42m z7uIe0z#~@@uYM;C8sxbF;#D?Sw+m(-ESXR6yGGKw_3e4E6e)t=HiC6qOyNuXwI0KnKs^YISzYpFcuvW545e8GDAkln_faWSIby9MWRcczu zN|CAg)`ex&$8y;p?%6m@-NN7l0&6v{GDU!_6b?OaO**c+tjFieN?oGh56oqi85d-w z7~H%=K$FVq3FQ=*&|fJEdl|>u@-w;7c7Hgznx;F9x}U`%UT`~nwgyM8qj720-F4tj ze01EIA$MWL5~nFA z1-~b-Cgbi3js&uk&DXKHB&p5ovitt6$WEy-_AEAcOe1UDd5)sK}cki-Je+q zEM%u1v{$Q`$gcRikbvyuc=f+GlHH%)2rOi$^|s)>0&60>;_pHNvQxmVW3l({SnM5j zd$+nB%GfHkKfHe~MSY`;y{NzN*--ry>sLX-S_3j+fCi|zYM_JS?V8;lcHCt{+3Zdx zX2C~8!Kt{ZV3Ufq-~bn+C-4Tk8peV{=^{8Oy@GQ?)`BC{h~QLKHPA&e7FN(##)jO2P2t^Bdj8l{%jJiS;4X4gaIaut#aM1+ zHNmE=R>5l4B`|bSx@YLh%JNOIP5!5c@tPc{e6`dGXHcXZb^{JBR*Wc2CXWE^bVr@u z^r53u)Bovg@mo)~Il$@4=WmA;NU!xjx1n&n*X?&k3Gm66>VIK_e|XA^30$020Hu!l zpV|-zPeCyQWeCWv>VIa#AkqpHB~Uc2|FI1P-3kuQkFWwI9#gij|7E^bps0YlM|GUMyesO0p1WW^;}jAzDS7*m(qZlH zBD^g$CXfP6NuYK&fxZu<-W&9~qk~6!dhN~g2fMu1H-=qz=k%Pbd+EA5Dd~^3!ZL`$ z{~27HZ7VirG9otR-r8M7Y+GoNIuK}*x`z5QcW835O9@RSXKv7##fZYG+OFL*r?JN5 zO`xgDtYM3zH`WKI*r!f)crW%GuL|?$v8aRil~;>+{>5}Vo!zc`pY`JUxb1G(q$oto;2Wt_{)N~e&94wYBSIIWkJ&QcmW zRB$fiNNiR*k%LtU_rYxr`qLMB-IKN9lvIX|3V`Js%&aJK*pd;W%4qp|Gh*&Ti<>vq zipw{d(TTLDWO|}9dKnw$bF-||yY8l`Vb?vD?C$t*`{oq0qOiYw)=XWIW|e>yWrXEx z%veR*RI)*&8g%(OGh&g}l|WroHY{Ij#ws#so!%Vm?j5}Tv^ngw$6Caq%60jHW~`!3 zE1neH<6(O**+tQl&-%sH+*Q?o3#%z2Q#>JLyrtdg_37&y`{VJTA5q#Bg7WnD>j$@~ z9KNWkZ!MBZOW|8W9#ppkpDP|zU8d)uOYSyRX=)0~CFq07%HWE$(E)CQ}N=^4#;K8I8bkZhxUZvQIId=2)zLw=8A$xl|dOt zw+-+xK@>a+%w-(bHoy}<4g`-RtM8! zx?C57N#j|?ifCF)8c*o~Vm!$gs@R>H7L&$P!6bjEVzDDFCXJ_pNinU8-hNt48czk2 z;#w8!83u7p@DSI?X3Mzj!~joX0r1FP=f|}h&qkzOsVg2E#u)zYX^CrIy|=NyF?l_2 zbI{x0jf!psS8Wd4+Xp8SL|=s;32{hYOSf6zh@OB$@+@5t9B*6>wx7w-nXZq03-tPk@0R{szUz70)^IR+95cc!^lHpG-IeZ1>Fw>#&fjfJT1t(K4 z{h}4PGxAt)vhNZOz-Cmtv+P)KGV0RLi{wfKz4?}iVCO7ndS%>ZgiV*x7V>sHx>uej zH;lL4jyLz>L9aa;t?#w_Q43qAg5xe*x-R1J3p?F$C&Uci5rJ9hi7eSMPYi}__hj=d zC@HYAYY2LB*WG*5AGc>w$!02jL)7K%VH^9rM7vaJS4INq-D>F8rn)XEZmoyCwb8h< z8(}oO!A~#?pNtsM*2@Jmv1_moxbd2M;xv#vOzpA~Zp<+-r|AKj*@30SgUa|)N=%J8 zQ;C;1FSh%$^3uv+Wq)yb^#OHVz@x!W3TTWlH2_P$D&PhqJlTERQvwDp(pGLY1iif1 z-QJnJ8L_VbQzCHYk~5FQ3vzu4)yJFI5yjLM73o`7Cj;mO5J zgEW(UkI1yba?{-c~&>JhG4b@?N)pepYnq)KrE7x!|blqQ`ak z#pJ2OUtJa+iSwAwU}iokdPkI_lwumyk00!NnpHgcc;#zEU=zjbb6AlbHb)yOs<;d) zvEn(8IAIeO5L7Xhj3@H?1X@u7Wt{3U8H`Jy1ad)ZCFrwvMF~`BRNW;c!E(Rt0%l?* z=mS4fXh^dtm%?(BGq=eG180!7_#?alCGaLVDtSf43I!O;Rqv9$0*eQOd zv7;!S;%@03mWn?(2tTWMDzYjU1#>}*j|_H7u_qA^7Eckc@;|~OW2BjBYAK4RSYN_* zy4fSml55=0s-4RE%IzYqiQ4r-Q&Brlb3Uu_NWIl4HsHxtBMNx#Ud1rmdiuBoJjnmk z^GN3oq7QP10CS%O^`Y~Kvk&1x_7PwrV!|V?E*Bn@lY-0A+J~->xYAg7P>6OcQrfA` zBd$6X9u%>Hlft8jtuO~2@`z@tgd|tpFK@M7&)EIsvf+Mz?0N!^+X{j*E(bIj>bROy zM5CJ1+wJF_N}Q~Q?(UCvhJ!&=yI3T=PlSYxt3+ug66(f`peqtmW6cpYH6q=Z6&|!G z5MZ8Xq7U7e6&|!C;w;5fAG+l!JjesQ;O}h$-WyyvSc@Na_S_!zIm`J+HvYOHUkU%k z`c|js7EA)iD?E|&)uD+}9;{=7LS_mMY?cCcUkU~Czxs=0G%{0g1D%KhMYsBk?I<{# zPeg$Nef{h0D5$m|<`~F8P?)Gc-;RQ63yL{X`mevhj)H0n3I(c!>R)R|LA3>i0u_bz z7ur!!Z2?=b#TKYPTK}e;DJXG)O0fD%>?o+_sAz$@1ofBNQBciMp+NKH`Zw57P|Z=H zKy%0XHwp#s5$?lF?ay`k?rQsOm#8A@K$mL=d+vt3$<{L39PRSc72W>yUVQg!IL2GU zY(=S}iN)t^OeO_^e{9B8Rz4HNN?}5Ivx&_H*_g0STy5nuQFKCyqlx8OTPCi$ieW-o zw27tiY)p7`;_Za|wu$auHYPkeWGBk#P!MaP!JCZ<>m=Sz$cvlk0NFB$w-X9!O|$^B zG2zi6J5juN@-Mt8XcHTm=TPXyVYsb`o1A z@peM9s3!LGcze+=3`YXCV!HTBb72 zTLZCmV^hE>QZnQRJ*WT_iI{KOV{+2s&kq+H>+l$E^f{PUc*D zc7Et+Y6&`da_w39p`*7c=w#8gXXb~Flqu-s%e80ZhpyN>d0d`0ub@+T=%IUSkcVf5 z&+YfO_oJR^3*D&@^=QKCn?$YNd$Bw1i|+WtVDo%Le{?Che5>Pb&)IY>RJSS~xT}w@ z*z5Ls?csX+w(ck>;9A>Pg;9iLs-RQu0dKkkV!icq?S2HX!})0$ zm?jz(EK6hno-s5Lk$OL|F@h-lNKdW$3f6z~ zl3t1DR2=GKpSJ;0Y&Rh>*&w?}VxvlN7eI>LN6#d|r8?0gd?uj}jgzM(N>ULAzL(1m&mC4GD@@CM4#1sWKW=nyft4 zz$D_lRG~p>d*x{cH0FD$LV^m@l_wjJi1Si~1{G~9Ptj;BIwMF@v{970bVVD@f%Kwn zQHhh(OO&JZdTCMMB&7;PV!c#Z6nJKgl{qh!Clzej^lGFo|y!S-GNINS`F z{NCzG#P&DfxutG?`CZ1h@UoB#X}S4x!X>R9+=Mrw9%yP@d#+$x>cMS3NT3IDvnCpk zY4zZOTtYoiIIL}p9@1jF$es|JazJe-Gqy`-39%{h)jFB6T@Fu(P1(M7E;F`^F$uA$ z#Hnp&#&*7+5S!|{+LmBv@wtgai^m>{gUwgv!X=siQ!Hw#k27VC$!<#)$0D?iBqmeS ztoa%fy>NbT8;}xkp?OgAwYhLna+RVNnhZ5xmkSrgUKB1gS8k#p%;HBpMvA>CIh-cU z%{Szt7sXx_E>tfz-)O>xxB1h#a7pGz zl!u!?lM5HcUKHDAwd;V>kqS$ zVDC_DLNQD#8Cy8iVB(^RO(-O&hHibpRuhU%C?qIYwcekNL;{;oNKh5j`cqpHicKhn zNo8T{Pi#pjHldK9I=S`7wj>mrP)N|kq4h_$B$VM$Y=XKvExeGE%0<~QmEllGP>Zeg z=eC+qhC?Aib$RR0goM{)3LiGO_U4#AYT@1yB|_vbFy2`owfl#i+R1(J z!>C<>u9tD4(;aRNj%=5kH{gXggmfq-H&5k7XWr0*4n^nY$-L;yGXl_|INdyv7oEBF zwhR_kcFp5?(NSziA{MkmHC}T$FFK0tD0HaWYcAzQN3k7+4%L0`RrBz|A1{=SI&Jr` zz$nVIPX#OPFV+wKWO^R$;6 zn@vOvAvXq!lr+eVJ4_&>wMsVbX;n!BH(Vc=1|AVHTIJm0t`b=kV{;HiIJ~2@H`tDlmzT6`8)+mzyR> z4fJEPU{A7XJT}dV8b2YHlm+`_B5az4G|*Sff_)+pHcdVn=&yPKzdLl>9Oj*<32ivI zUueVRKNYNhc;5}@6E|NI;XdJa3(tx8Zuwp^PNxyMH{F%)!*rF;2mz8l>?9CfJIdD>;qYJ&hkX!B*^C!KQ9-S*Gi!xQk02IOiOGN4ja%M!7DZE02Mxzc7 zxVM)*cDf^%nYPxITaaRM%CR${$P`^dZ+dYmDEWUiZEajO z+V7up@04|hE?MtSUJ;&_Sd(iTMSa2RLoQUPm3BUdT&Q66xOi@aXXrBC>43BSe;q1= zGFc6s!8{1yY6BraX}pF`X&wY5wg*Ch;!6$PzdQ)Q9)$oEt~GQ+^B|yTfRaki8c+yO zGRc_$ZugKOpwM2!>OmeufXhvU0EP4#x_Wm65%&j^_2r(76e*_3cvam>{B+EQmC^t?v*-uhx?nt$Xc_ zh$@oqbrWqK6C{#t1=nGj$cDuSK_ug8eW%D~f~briMG0^GJZ<_lafCK4DrcJhd)2D9 z1wrO|TiwCXy)2(*GCX$<`kK(RId6Tr42FSfPL3|Rsr+_3(UgLEG9{cdGgi#pE`cb9 z)7sN46*F(PB|eJT7I7(U2p413%$+-nYPj5Zs?ag8nFUot_M4w-=Jq#4HCz%r#ZooP z!@;PN$d_o{tb}XMjSWT#GGf04(F(=i`jaiSa&oWT8T7l!f($KYmT;T3v0{`UqbP<_ zVf{&#iaCC;b0v|z(0XGDXIqWcq68R4EmZx~ar2EqfLT7*8TJ!tg;sz|=Vf$^wW7op zMJrUP)p0G6fmRj_yTru{y9QjM%LdU3awFMFX;TKtfJsEeRcKJ)FP*cb5gpNwglsZDgYxIvVbVmn`{#)J3Q`COIrJ#KD@7CMf9k-1} zK#yG&R@LMltEUCjGs^JJ(a8f!5fcvgor8^r$K1<_>KmG?Sh-YoGF*E$=DUTfBfeYu zurOA>dt>a5>o1G=Zu#@%yWTUR?zZLKb_~_v4R*@OYB>L0Fu2d# zLiZtk24{0(;)?7TCZzV@+MJlUc~A@!8lB)eBPPxcj*O10C4DA{JTf}efeNnAi3!<> z!h~8r!3{YvAv;l+&;%&BF()QuCkhjqbOgBS$<~YG?Sz^L!Oc18gqSGtWMbpqdu71` za$-Ujt1zLg9Xv26CS$Sn#w8qjifso2tKq2<;J`l?OQyrl%sF<_-zc(K!W<2N3-P2dOj-p-C7O<_uiv<9T& zR26CQH0>>Yw`DNUS)Gg=H=6mD5PEY{(VWOc8L5OlAGxuKj!aZ0masoNH!=w$6Q!vV zHX7x|EJ;oYw`tzC=lc4C{v(IGUo`0Tx|5rhBT}z^B`K=d zyN5ZJhUg5oI(xdv2#a2>z|s($!3JkLSSe`(fh8ro10~_n^ju*n>Er^7KCnnj0sIWM zFy|^Qh3Z_SMekmurI>sM#}@3QML%C)Df*tlVFm9DT6j9<>@~6HWA;POBwH=v{y(qA z4?lc;?00X8_-;86A5gw~Q&ep)Ma_P_|^Sbmfk-Ic(&(AkJcXW<8fs3qyO zr^^Rbw~IXk-;ZEg`c3(;ciOE#76OAw)SrM>{Xru+QYrcTyN}VRg-giqwaQe zg0H#95B4WB3-?DyF6)xKSNN|8^wmEQbZ^=E;HjsG0dSYFOkaZX9@ljDx@>jYuEo$D z1MZq$54N^~n|#;(AWwmSWb5o0ON z^nq}!+)s|wo>^r$cm-^}5Y!#WVXUOsEr?B0r)1>|Gr9qdm4Zk!`;~_aVhLk)ZhzQs zM{b(YOL_6Q;0wZ0q$;zFf*~UoN=w0_(z1*bGhX;Tys>|4Fc?OdqO*~~UdLU3;!fqx zF8r=c{^k1QO?1~eaY1I@F2{F`YO}UAAJD*3L@A?5i@{8S5;qot23h&MsN$ zEUleYh}n8(ou!Irs8l4LQR~B-f~3_MGfQM=3Nz|EHc`7N9E$HSaw28MO(UsL#BoohMt){FR=F{+)|t2YdE{KaS{IHL!cy%D)mt zOQrgoL|t#!ee=#!{ZVJ5dFQGAsN2xI^HhJ-8Em5Z^A59L*qK~5v)yao?#y}I84lZ< zgYmc>Va$4?9X*)82yL9SvUa;vp2payMg*H|W$j{K*yuwFHsyh}=jVluPOxCpc&~j; zUf75nf=!WQ?KZ(yc1)a&-RWNs?TEfx`V0B4w{&=Lv@ybBPX(7<7z~_gU)<{iC#K6S z5|W=D!jQ?7$C+T32JQ2+7$i!0BpBYR`Dn1;TR+zwb|S=a!%j!g3m*@KAb=)LgQn5d zsjc?#{JJU$l@w(Rb{e1)(*vrr3L{@CUl4_*f|VN|ww7M4a~ItCSOI>rLqBu-4P=bXP1PRd)kS(Im-O_az+0(+6oQ|bZ&FYk5x z?$MQb`$8xht>8eYvA9^ZmOxIvz4ii8bxLtJdi(AMt9jy5-17E07>lcnF1d_1x=P-< zK6Z=LwGpwn^q-tBI1Xkr119<-(LA6`L@FO=Ga}2?TGJ|apu;W z^^7jKYc|$5T%mYzePe&L6Tw=&ZKLq}5m2o=M1*WmQVjx%oT>E|BPc0)0Yzb|^;RP& zsr3LwNvrkqMo?1H0*cab>lcimB=`V|f=}xgjiBUq4nR>@Z@tY3N^a=@6vdd<+Xc#- z?}xjT&&C(W&yVn;(jUr)ug1M6BVaKB;(bQ<_M!c&Z? z;El%&@HFys;3=$Do{-1T@4ClxyL&yw>uAxi@+=E@R(>=*t@Bo}A!+wDH-5t+#@8XHP;GOoH9U@!$m;TqH5)7GTz>V zu)R6%-r63!9o@rrw-=G$3&E9>->z@9$L)hX-%G*D^arkO=sqy$yZb3+b`pGTnBK|V z1GJ`dVIY$hFrZ)`ptq0<1DVT!0R{ZvYx5linc{!}W&7ZT`7%JuL+pSuet@N!Tt-1* zK&74`1D8=}eL-PB6<_dmW}~1okhTQufI?C5qI?-B@qi*y@Zx+KDDi+2QSkNoGEm|H z<)Yvv`7%)A0hJ-aOY>!*_yScTdHaIGfGR;l25zpGC?3$%*DxZf43v04bAbShxBdy^ zi|u~KwR))kBVl1c388o&F~QuSDHC|mUO^VN#%{bZq9T$R{S!lxXgtfcOD7URdm`Ct z6E-9RNj6lxZ%$GpkP0*vRz<8G*h-BED$rC>6>&kQEi_W7KvPLwykAZVNA478s-=tf z7ie!cLFhTx#yQSiA{?jmxAIx)yPjZA{ z0jHo*`(SR8E8rA_FD*DFpB%vvIz;UhI%S^gOW*m@KHe`A6n_<* zV2y&p)_6sBl)H!p2nuzR)-KPEa>XnPbRn zje^2RP^d6kJC+>aqRzE8!URTb|{zs$ry>@KL9YjtJ)ctCk?gY|#I$9TdC)9(&q(#(MzC);c zd+iRN;hWscACVyGT7J>dv8cUTtG^>a-n~|vJA>i=X#HGoaA8g^K0MI@H+)wp4LSQV zc4QfXP~7rBywR3UQfv?Qo*{V}iqc0#L*5?Wtzp-V_4!V3FVQm$g>R1f`W^E1w5owq zi~h-}mmiZE1o25gC_XJeHZur9t$qR6&ydjX4E|gAX`a;e+hxe zshjT<0a61^&aF7*Pv?08L?NpAE7^fI-742C5S5C}U&{=1V$|*3+8NG5QN7sw)yz-_ zw|&k6Q7Pa2jm$uY$EjwasGe{BdS)p1FmR`%3>3|^n!lADX=6CJpditFtNELmkxopP zHfGgF0ipS}%uvS1DuJL}M(;aRN zj$G;OZdKw}!I0R0B2+7-s{lJdJ+-DM;V!mGK!TEUfW4q5B&IiVPL4XPZ@IX6aC5K> zhiHNfH^6xd6B6!Pqy(BEM-6cD!i0ok6R0Rf6BL#L9KbLkq1c2%g5q$1a~LKh6q`^; zP|yi*8pDKyViO7pO0@wFWt_pOw!AYB-<(+Id)c#A% z5bk_Pfn2|gji+9J;@ogB8oLQVcg}_9d<{hKo)ChhEJI4~8HK}V^A0cGP7!VugOYGt z`1z0v1)0XbNz6CWxbyHBjZ?%gW5abijf<4fI9Y5Ny&y}C&x<3_IK`31r?YB&Vov@I z(9Vf{jYAz`<1|w%zgQ?(szZtG!UgJ}(Qo{_a7k%^tPbY~G3ub%WEnfXE!CmKRz)3@ zZyTSnRtH5up%935(44pY5^D++5)=wF7cOJpx#fr`{wiExpp+0A|B+Q4lVG%%ztV)g z{0%}OU4%p5l*;26Mj>4(TR6kv%#aZU8b5^sYXP^q8Bw6nrBLAU#R)pgxS>>5!Ub`I z)X_kHz(^ewMuh?*IXg9uETp8sP91NTl+VgvD;{S#B1)+t>cEJQIvW2fT#VEa?;})h zmvO+-QXNXEp{RpGM&nb~>L7oW+zJDw&Q|%GtSOL>C={saRsKeyV7dPeYjIx^CJpk8 zwLi!O7#masm@4iyb&)^wjzjFf5n!sM)^IJBrK+*LNPwxpU;E=+RE^zJ0!$OFwLi%P z7@NZcmsWTUkkGX z#mZyfojW3>1#3jffRK?g;IWt6$|&OqL>k9q-)D;`CJRI|*<;^pizwa+MDosK-(!m? zfe45ch>pF?7Exj@5Gm$*w(7MC4i^cNz1%tZqTiHprTik#=>2-=xAcr&P!(NxbBu!< zh~3g(ZcmDe$^yANj@~CLjD=WQmGNZImHVW!={)4fTby7fDxuX##9fOX*vwQVVn(rOGnKcTpL|_rkY`m3a?9Z?=cS=nYr?o&V_1 zerq^)p`OFi&k2Inpez`aWKbw51x;aQG$;!alR=>{Ucj=emC62)Hy)u1E_dyri`g{Jwz ziZC-8lm&^&pipC^aH|kYH7Hm;6;Giy`O+H&!D>(v1y*HHsF4t?2{WTXS&*0v3bkGe z*w~e7P-G4oad-3l#r3`J!zVxSC)F+7RbqmOG$V-AbZK27GN#g^tW98?Xl-KYwSr(G6A(ovLTq6Mlu9OO zO)P`7w)7fXnUEJmCdvyf-1}qX=nJ->#L=%lYO-Ft#fVsMZwPY*H7%NW%+L}TmxBo~P0XABVH^A~Q<30D zGnE!fPfJm8Lz#$56Y3@os+i<1R5cX)jgtGXiWPs#5GwRqYi! zmZD<6nutpK)tWf}mY1m1W%EQmjUcf%7>?V$h!XNtaK-fZ>+RdRqu}Iz|9s!Se&IP` zSfE0o{#7!LDWP0{E4*JsK&Zm1uV)64$NmBVp(3mP)mcHJl}2^9r!>zZ4o|o4T-@7f zcjgRJx7TYAr^8f`OJI)OHyj|sT79#K<()@y%d6){JDuLS2pk!b2S&b>je>q_fMV0AZd9p0J0_{~<1BVVN?jE>zSA{?JVact=^=v;{5(ik-!ARd#} zaCwjtHH<|i*t1B9B0$znZ@5mlB!){pj_i9D*_jvAi5M=$w*q#ZTbc>FK4K=Mk;eVa z%_LFBS1}XHuHJU{^ky;>-%f3{hv(M^ZMlFCyOF6$6yRdKl*-3nch0(TtI;ET|Z<6{-}ya|V{S zf;9rM6O^JroPii&IRl!4_~p^qkGMSZl! zeKL;~hq^>*Q5h?a!8qPvsS(DB*d>F4Ajd z#zv#GLNoH^N=EqXN!5JzY;% zyfYE$2W-~Eq6Uog68xIAhb^cU889kPy%QNLSRC2xwJ*l4H9s|?-d=u!i0Uo*h8@=R z6xZ3iV8UxGC~$u=q(LrH#AO;rG@Qm0&>;O5Uudlj=cx&3ko^_$mVx(B!}J!76eHsD zaWsc-3`c~Dl7hO$?ckZ(Ubh!(Z-el&liJ_Aa$*gU*g~|qqb#D)C>QRKQMTZq3^4+n zaG;D-z?p6DLfOd{p;5aZJ_^400;j?S&iCeUOvv0Ck22MV5&#r^P)SvIlW?%qhr&hC z2L+?X7YP?HErz#^pS|Xmm|$DD5GtCCzw{pYa88B?;l%K0unTW7Vijyl=M8U6!hb8Wd`J=YEZfmf= z(d(?wdDz{J_rYq)v3o^WR^`>!s-GK7MD-L*iny}MOFq*k|73pK-*VR>9vt3`DC?Gj z$P=ET@q&aha)ai}Lrqu7nYhKi&jF3~bCKcyf<`ANEHey@y-IXdh@ieD-e znt0N}99@ovLU!_zCY~uVN0;Il=rrz4JXvCnF6SD7PO-E33K@5AR=+iDZ@Yd$XL~zh zs^cQ%!JIC*J)+JjVO7XnDmmT^sVL4gzh9&>N0$x7K&M>Y{6RtYbQ*R_uD>Bhr-hrM zboyEOuDMil<`+^?UTgkH zK2$(+qvnr@3e3^vyb;i;fz$kPLC@U8fTpE^LmAR*;F!cc#p#u}$H5n`#hEKy&KE=B z)Fx>DSgr~uS*;bWgcwEPH0sUovJ+VM8yq>P>j#B?u!UB#`ck#9MsF>ObDrL*!YXsFRN1wOf z9*%Ec9}GJ&`a;BF?xJUUR@@dcQ!dc)=XJg#1 z@RX?Uw&c5Hij%7j){`%$ako?HFTycoF^wJL#W}H2QkcSqg9EPCP;`Dv>>h>PD4pLT zQhMJVb=vM`_|5aZs1RBRPHlDC&W^fcr?x9Md;6ntXSlxUZUG*~SMpk)|ssxu(RRamqP+lZv!KK99Kp04g>lBz|d@1}i5cJdyq}Rp;iMIYc%X{7Jow3`Cv@Zu@f{%wtG%hPR0G|Ts#KlgpH@G132nvnD%IAqZ-s$RaV~czE zVY5fov_Y;5jdkNcs zQV71>>+UMbrHs3R*FV!>>~;Hcu?_~1YKfJGs5S-0@e4cMu_6d5Yo(F}yy5~~+?h%mCxx^SL1g_Ks#=sceQ8dLEPfv`o-x=??WVA7K8BAD-J<{x~ zgm#l*fK(C@*=PfsuMKgPL_~Jmz=rGGMxnGj7>zEvYGA`{pgV{dv%^4*m=f0A4b`FK zN1BK|8- zOf%UPC#1w3ssCES9)tYG!y^?DB&ac7!XA~}Se@A0AG-f$HAL$aCG0fFjmv3IL+)jd z?VVXxw18B?PL&iEyR6qtWE(42SsJYSR=Na25u}9O4Jjl)zA^NlLl9pj16;vz``iXS zu8^a(;1c%Vq>+1j*y;4etVC`~3oCccf5?+$D@xua%*Ip5zT}FOS;;8{tlTYs$rB_d zsvb(%Sd>EWC zW2{9uFSbWyKbl3B&Haa2cQF@9go=?c1EN9VP}1>*N*IsECoe5KRJ0EtljgwgU9Y2(IhzY zx1t+=!S0}8ksenjWx-=YTpIb-wRzx5Hx#%o{QFIj*4aF8W%dJHifXOv^T3r!C~(Qj zTG!=)dt8#Lj4$Qw){S}K%3=)Ur3l)(ArD;H*#=xnrLCLuz?Hq1z@;*wbyFU=vWE+} zlto%tnetAwZw|Y=Be&_(Em7=7w4EoCydkdaOav~a$<{;j(6j6e0xr!wS`W_ySN7lmmu7k`^>F^Q z?VdjM$u1S(Qa7lj9>mXzD_h=xOY@u-4wrk4zi=`6Y}C?380rgWBK))TXEJ`?cc-o4 zp?g3hA`pb%4W1eC-P${~?}mJDh+T;N;)w5-uaxh4Mdx_f-Fs#?awm&hplOfC?ahN{ zLEHjOVe;DIh0df2K3T7EzuxMO+QVJ>|0_rPqrFal>+lC6?Mot9wLWCd$}N8{%!_X|t0b&AC4M|RD+jxfU7^qxyW#@jqvotwS8ha)j-bMd%cXxb zXT^3k!wQoF(G?eue{aqzR#yruE~Wn=J1eJ*tail{i;tMIiq(~3S3J%7J7MLOr7|&2 zuv77I5%Ib482NJQtP$hg?$@z?#5w(6%vtd$Bw@uB&Zo>-v3Jj~Qv8VPy-%96iq)0E zimTs$&dw^vyJvKz_z}+q{>hwGtgaMRJTv-)u)5#;mf1nOHO+;hPL+IprHtXRazt!6 ygBK3Gol@s|o$=<* Date: Wed, 14 Jul 2021 11:15:46 -0300 Subject: [PATCH 171/394] Fixes #1200, #1198 recipes and runtime id mappings --- src/main/resources/runtime_item_ids.json | 72 +- .../tools/RuntimeItemIdUpdater.java | 19 +- src/test/resources/runtime_item_states.json | 5362 +++++++++++++++++ 3 files changed, 5406 insertions(+), 47 deletions(-) create mode 100644 src/test/resources/runtime_item_states.json diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index 20e5afe6faa..20d38e07748 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -3691,7 +3691,7 @@ }, { "name": "minecraft:spawn_egg", - "id": 629, + "id": 628, "oldId": 383 }, { @@ -4521,180 +4521,180 @@ }, { "name": "minecraft:honeycomb", - "id": 591, + "id": 590, "oldId": 736 }, { "name": "minecraft:honey_bottle", - "id": 592, + "id": 591, "oldId": 737 }, { "name": "minecraft:camera", - "id": 593, + "id": 592, "oldId": 498 }, { "name": "minecraft:compound", - "id": 594, + "id": 593, "oldId": 499 }, { "name": "minecraft:ice_bomb", - "id": 595, + "id": 594, "oldId": 453 }, { "name": "minecraft:bleach", - "id": 596, + "id": 595, "oldId": 451 }, { "name": "minecraft:rapid_fertilizer", - "id": 597, + "id": 596, "oldId": 449 }, { "name": "minecraft:balloon", - "id": 598, + "id": 597, "oldId": 448 }, { "name": "minecraft:medicine", - "id": 599, + "id": 598, "oldId": 447 }, { "name": "minecraft:sparkler", - "id": 600, + "id": 599, "oldId": 442 }, { "name": "minecraft:lodestone_compass", - "id": 601, + "id": 600, "oldId": 741 }, { "name": "minecraft:netherite_ingot", - "id": 602, + "id": 601, "oldId": 742 }, { "name": "minecraft:netherite_sword", - "id": 603, + "id": 602, "oldId": 743 }, { "name": "minecraft:netherite_shovel", - "id": 604, + "id": 603, "oldId": 744 }, { "name": "minecraft:netherite_pickaxe", - "id": 605, + "id": 604, "oldId": 745 }, { "name": "minecraft:netherite_axe", - "id": 606, + "id": 605, "oldId": 746 }, { "name": "minecraft:netherite_hoe", - "id": 607, + "id": 606, "oldId": 747 }, { "name": "minecraft:netherite_helmet", - "id": 608, + "id": 607, "oldId": 748 }, { "name": "minecraft:netherite_chestplate", - "id": 609, + "id": 608, "oldId": 749 }, { "name": "minecraft:netherite_leggings", - "id": 610, + "id": 609, "oldId": 750 }, { "name": "minecraft:netherite_boots", - "id": 611, + "id": 610, "oldId": 751 }, { "name": "minecraft:netherite_scrap", - "id": 612, + "id": 611, "oldId": 752 }, { "name": "minecraft:crimson_sign", - "id": 613, + "id": 612, "oldId": 753 }, { "name": "minecraft:warped_sign", - "id": 614, + "id": 613, "oldId": 754 }, { "name": "minecraft:crimson_door", - "id": 615, + "id": 614, "oldId": 755 }, { "name": "minecraft:warped_door", - "id": 616, + "id": 615, "oldId": 756 }, { "name": "minecraft:warped_fungus_on_a_stick", - "id": 617, + "id": 616, "oldId": 757 }, { "name": "minecraft:chain", - "id": 618, + "id": 617, "oldId": 758 }, { "name": "minecraft:music_disc_pigstep", - "id": 619, + "id": 618, "oldId": 759 }, { "name": "minecraft:nether_sprouts", - "id": 620, + "id": 619, "oldId": 760 }, { "name": "minecraft:soul_campfire", - "id": 621, + "id": 620, "oldId": 801 }, { "name": "minecraft:boat", - "id": 626, + "id": 625, "oldId": 333, "deprecated": true }, { "name": "minecraft:dye", - "id": 627, + "id": 626, "oldId": 351, "deprecated": true }, { "name": "minecraft:banner_pattern", - "id": 628, + "id": 627, "oldId": 434, "deprecated": true }, { "name": "minecraft:end_crystal", - "id": 630, + "id": 629, "oldId": 426 } ] \ No newline at end of file diff --git a/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java b/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java index cda44a236cf..4f137974bd5 100644 --- a/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java +++ b/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java @@ -19,10 +19,7 @@ package org.powernukkit.tools; import cn.nukkit.Server; -import com.google.gson.Gson; -import com.google.gson.GsonBuilder; -import com.google.gson.JsonElement; -import com.google.gson.JsonObject; +import com.google.gson.*; import com.google.gson.reflect.TypeToken; import com.google.gson.stream.JsonReader; import lombok.Data; @@ -55,22 +52,22 @@ public static void main(String[] args) throws IOException { itemNameToNukkitRegistry.put(runtimeItem.name, runtimeItem); } - JsonObject requiredItems; - try(InputStream resourceAsStream = Server.class.getClassLoader().getResourceAsStream("required_item_list.json"); + JsonArray requiredItems; + try(InputStream resourceAsStream = Server.class.getClassLoader().getResourceAsStream("runtime_item_states.json"); Reader reader = new InputStreamReader(Objects.requireNonNull(resourceAsStream), StandardCharsets.UTF_8); BufferedReader bufferedReader = new BufferedReader(reader); ) { - requiredItems = gson.fromJson(bufferedReader, JsonObject.class); + requiredItems = gson.fromJson(bufferedReader, JsonArray.class); } - for (Map.Entry entry : requiredItems.entrySet()) { - String name = entry.getKey(); + for (JsonElement e : requiredItems) { + JsonObject entry = e.getAsJsonObject(); + String name = entry.get("name").getAsString(); RuntimeItem runtimeItem = itemNameToNukkitRegistry.get(name); if (runtimeItem == null) { continue; } - runtimeItem.id = - entry.getValue().getAsJsonObject().getAsJsonPrimitive("runtime_id").getAsInt(); + runtimeItem.id = entry.get("id").getAsInt(); } try (FileWriter writer = new FileWriter("src/main/resources/runtime_item_ids.json"); diff --git a/src/test/resources/runtime_item_states.json b/src/test/resources/runtime_item_states.json new file mode 100644 index 00000000000..b7f41f42991 --- /dev/null +++ b/src/test/resources/runtime_item_states.json @@ -0,0 +1,5362 @@ +[ + { + "name" : "minecraft:infested_deepslate", + "id" : -454, + "runtimeId" : 772 + }, + { + "name" : "minecraft:raw_gold_block", + "id" : -453, + "runtimeId" : 84 + }, + { + "name" : "minecraft:raw_copper_block", + "id" : -452, + "runtimeId" : 216 + }, + { + "name" : "minecraft:raw_iron_block", + "id" : -451, + "runtimeId" : 1001 + }, + { + "name" : "minecraft:waxed_oxidized_double_cut_copper_slab", + "id" : -450, + "runtimeId" : 1059 + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_slab", + "id" : -449, + "runtimeId" : 529 + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "id" : -448, + "runtimeId" : 1030 + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper", + "id" : -447, + "runtimeId" : 1058 + }, + { + "name" : "minecraft:waxed_oxidized_copper", + "id" : -446, + "runtimeId" : 1057 + }, + { + "name" : "minecraft:black_candle_cake", + "id" : -445, + "runtimeId" : 626 + }, + { + "name" : "minecraft:red_candle_cake", + "id" : -444, + "runtimeId" : 340 + }, + { + "name" : "minecraft:green_candle_cake", + "id" : -443, + "runtimeId" : 406 + }, + { + "name" : "minecraft:brown_candle_cake", + "id" : -442, + "runtimeId" : 863 + }, + { + "name" : "minecraft:blue_candle_cake", + "id" : -441, + "runtimeId" : 695 + }, + { + "name" : "minecraft:purple_candle_cake", + "id" : -440, + "runtimeId" : 600 + }, + { + "name" : "minecraft:cyan_candle_cake", + "id" : -439, + "runtimeId" : 702 + }, + { + "name" : "minecraft:light_gray_candle_cake", + "id" : -438, + "runtimeId" : 764 + }, + { + "name" : "minecraft:gray_candle_cake", + "id" : -437, + "runtimeId" : 944 + }, + { + "name" : "minecraft:pink_candle_cake", + "id" : -436, + "runtimeId" : 452 + }, + { + "name" : "minecraft:lime_candle_cake", + "id" : -435, + "runtimeId" : 967 + }, + { + "name" : "minecraft:yellow_candle_cake", + "id" : -434, + "runtimeId" : 1071 + }, + { + "name" : "minecraft:light_blue_candle_cake", + "id" : -433, + "runtimeId" : 966 + }, + { + "name" : "minecraft:magenta_candle_cake", + "id" : -432, + "runtimeId" : 73 + }, + { + "name" : "minecraft:orange_candle_cake", + "id" : -431, + "runtimeId" : 513 + }, + { + "name" : "minecraft:white_candle_cake", + "id" : -430, + "runtimeId" : 814 + }, + { + "name" : "minecraft:candle_cake", + "id" : -429, + "runtimeId" : 869 + }, + { + "name" : "minecraft:black_candle", + "id" : -428, + "runtimeId" : 721 + }, + { + "name" : "minecraft:red_candle", + "id" : -427, + "runtimeId" : 720 + }, + { + "name" : "minecraft:green_candle", + "id" : -426, + "runtimeId" : 719 + }, + { + "name" : "minecraft:brown_candle", + "id" : -425, + "runtimeId" : 718 + }, + { + "name" : "minecraft:blue_candle", + "id" : -424, + "runtimeId" : 392 + }, + { + "name" : "minecraft:purple_candle", + "id" : -423, + "runtimeId" : 717 + }, + { + "name" : "minecraft:cyan_candle", + "id" : -422, + "runtimeId" : 712 + }, + { + "name" : "minecraft:light_gray_candle", + "id" : -421, + "runtimeId" : 625 + }, + { + "name" : "minecraft:gray_candle", + "id" : -420, + "runtimeId" : 306 + }, + { + "name" : "minecraft:pink_candle", + "id" : -419, + "runtimeId" : 78 + }, + { + "name" : "minecraft:lime_candle", + "id" : -418, + "runtimeId" : 716 + }, + { + "name" : "minecraft:yellow_candle", + "id" : -417, + "runtimeId" : 373 + }, + { + "name" : "minecraft:light_blue_candle", + "id" : -416, + "runtimeId" : 715 + }, + { + "name" : "minecraft:magenta_candle", + "id" : -415, + "runtimeId" : 637 + }, + { + "name" : "minecraft:orange_candle", + "id" : -414, + "runtimeId" : 714 + }, + { + "name" : "minecraft:white_candle", + "id" : -413, + "runtimeId" : 120 + }, + { + "name" : "minecraft:candle", + "id" : -412, + "runtimeId" : 713 + }, + { + "name" : "minecraft:glow_lichen", + "id" : -411, + "runtimeId" : 938 + }, + { + "name" : "minecraft:cracked_deepslate_bricks", + "id" : -410, + "runtimeId" : 585 + }, + { + "name" : "minecraft:cracked_deepslate_tiles", + "id" : -409, + "runtimeId" : 806 + }, + { + "name" : "minecraft:deepslate_copper_ore", + "id" : -408, + "runtimeId" : 912 + }, + { + "name" : "minecraft:deepslate_emerald_ore", + "id" : -407, + "runtimeId" : 184 + }, + { + "name" : "minecraft:deepslate_coal_ore", + "id" : -406, + "runtimeId" : 493 + }, + { + "name" : "minecraft:deepslate_diamond_ore", + "id" : -405, + "runtimeId" : 879 + }, + { + "name" : "minecraft:lit_deepslate_redstone_ore", + "id" : -404, + "runtimeId" : 174 + }, + { + "name" : "minecraft:deepslate_redstone_ore", + "id" : -403, + "runtimeId" : 846 + }, + { + "name" : "minecraft:deepslate_gold_ore", + "id" : -402, + "runtimeId" : 871 + }, + { + "name" : "minecraft:deepslate_iron_ore", + "id" : -401, + "runtimeId" : 913 + }, + { + "name" : "minecraft:deepslate_lapis_ore", + "id" : -400, + "runtimeId" : 558 + }, + { + "name" : "minecraft:deepslate_brick_double_slab", + "id" : -399, + "runtimeId" : 535 + }, + { + "name" : "minecraft:deepslate_tile_double_slab", + "id" : -398, + "runtimeId" : 914 + }, + { + "name" : "minecraft:polished_deepslate_double_slab", + "id" : -397, + "runtimeId" : 620 + }, + { + "name" : "minecraft:cobbled_deepslate_double_slab", + "id" : -396, + "runtimeId" : 886 + }, + { + "name" : "minecraft:chiseled_deepslate", + "id" : -395, + "runtimeId" : 880 + }, + { + "name" : "minecraft:deepslate_brick_wall", + "id" : -394, + "runtimeId" : 344 + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "id" : -393, + "runtimeId" : 906 + }, + { + "name" : "minecraft:deepslate_brick_slab", + "id" : -392, + "runtimeId" : 647 + }, + { + "name" : "minecraft:deepslate_bricks", + "id" : -391, + "runtimeId" : 50 + }, + { + "name" : "minecraft:deepslate_tile_wall", + "id" : -390, + "runtimeId" : 107 + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "id" : -389, + "runtimeId" : 915 + }, + { + "name" : "minecraft:deepslate_tile_slab", + "id" : -388, + "runtimeId" : 645 + }, + { + "name" : "minecraft:deepslate_tiles", + "id" : -387, + "runtimeId" : 916 + }, + { + "name" : "minecraft:polished_deepslate_wall", + "id" : -386, + "runtimeId" : 722 + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "id" : -385, + "runtimeId" : 245 + }, + { + "name" : "minecraft:polished_deepslate_slab", + "id" : -384, + "runtimeId" : 644 + }, + { + "name" : "minecraft:polished_deepslate", + "id" : -383, + "runtimeId" : 996 + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "id" : -382, + "runtimeId" : 650 + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "id" : -381, + "runtimeId" : 887 + }, + { + "name" : "minecraft:cobbled_deepslate_slab", + "id" : -380, + "runtimeId" : 643 + }, + { + "name" : "minecraft:cobbled_deepslate", + "id" : -379, + "runtimeId" : 885 + }, + { + "name" : "minecraft:deepslate", + "id" : -378, + "runtimeId" : 911 + }, + { + "name" : "minecraft:smooth_basalt", + "id" : -377, + "runtimeId" : 820 + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "id" : -376, + "runtimeId" : 642 + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "id" : -375, + "runtimeId" : 875 + }, + { + "name" : "minecraft:waxed_weathered_double_cut_copper_slab", + "id" : -374, + "runtimeId" : 1063 + }, + { + "name" : "minecraft:waxed_exposed_double_cut_copper_slab", + "id" : -373, + "runtimeId" : 1056 + }, + { + "name" : "minecraft:waxed_double_cut_copper_slab", + "id" : -372, + "runtimeId" : 1053 + }, + { + "name" : "minecraft:oxidized_double_cut_copper_slab", + "id" : -371, + "runtimeId" : 986 + }, + { + "name" : "minecraft:weathered_double_cut_copper_slab", + "id" : -370, + "runtimeId" : 979 + }, + { + "name" : "minecraft:exposed_double_cut_copper_slab", + "id" : -369, + "runtimeId" : 929 + }, + { + "name" : "minecraft:double_cut_copper_slab", + "id" : -368, + "runtimeId" : 496 + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_slab", + "id" : -367, + "runtimeId" : 526 + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_slab", + "id" : -366, + "runtimeId" : 524 + }, + { + "name" : "minecraft:waxed_cut_copper_slab", + "id" : -365, + "runtimeId" : 522 + }, + { + "name" : "minecraft:oxidized_cut_copper_slab", + "id" : -364, + "runtimeId" : 498 + }, + { + "name" : "minecraft:weathered_cut_copper_slab", + "id" : -363, + "runtimeId" : 521 + }, + { + "name" : "minecraft:exposed_cut_copper_slab", + "id" : -362, + "runtimeId" : 269 + }, + { + "name" : "minecraft:cut_copper_slab", + "id" : -361, + "runtimeId" : 231 + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "id" : -360, + "runtimeId" : 1062 + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "id" : -359, + "runtimeId" : 792 + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "id" : -358, + "runtimeId" : 1052 + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "id" : -357, + "runtimeId" : 152 + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "id" : -356, + "runtimeId" : 478 + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "id" : -355, + "runtimeId" : 928 + }, + { + "name" : "minecraft:cut_copper_stairs", + "id" : -354, + "runtimeId" : 519 + }, + { + "name" : "minecraft:waxed_weathered_cut_copper", + "id" : -353, + "runtimeId" : 1061 + }, + { + "name" : "minecraft:waxed_exposed_cut_copper", + "id" : -352, + "runtimeId" : 1055 + }, + { + "name" : "minecraft:waxed_cut_copper", + "id" : -351, + "runtimeId" : 1051 + }, + { + "name" : "minecraft:oxidized_cut_copper", + "id" : -350, + "runtimeId" : 509 + }, + { + "name" : "minecraft:weathered_cut_copper", + "id" : -349, + "runtimeId" : 840 + }, + { + "name" : "minecraft:exposed_cut_copper", + "id" : -348, + "runtimeId" : 927 + }, + { + "name" : "minecraft:cut_copper", + "id" : -347, + "runtimeId" : 515 + }, + { + "name" : "minecraft:waxed_weathered_copper", + "id" : -346, + "runtimeId" : 1060 + }, + { + "name" : "minecraft:waxed_exposed_copper", + "id" : -345, + "runtimeId" : 1054 + }, + { + "name" : "minecraft:waxed_copper", + "id" : -344, + "runtimeId" : 704 + }, + { + "name" : "minecraft:oxidized_copper", + "id" : -343, + "runtimeId" : 985 + }, + { + "name" : "minecraft:weathered_copper", + "id" : -342, + "runtimeId" : 1064 + }, + { + "name" : "minecraft:exposed_copper", + "id" : -341, + "runtimeId" : 81 + }, + { + "name" : "minecraft:copper_block", + "id" : -340, + "runtimeId" : 512 + }, + { + "name" : "minecraft:item.glow_frame", + "id" : -339, + "runtimeId" : 937 + }, + { + "name" : "minecraft:flowering_azalea", + "id" : -338, + "runtimeId" : 462 + }, + { + "name" : "minecraft:azalea", + "id" : -337, + "runtimeId" : 833 + }, + { + "name" : "minecraft:small_dripleaf_block", + "id" : -336, + "runtimeId" : 598 + }, + { + "name" : "minecraft:moss_carpet", + "id" : -335, + "runtimeId" : 607 + }, + { + "name" : "minecraft:tinted_glass", + "id" : -334, + "runtimeId" : 672 + }, + { + "name" : "minecraft:tuff", + "id" : -333, + "runtimeId" : 1033 + }, + { + "name" : "minecraft:small_amethyst_bud", + "id" : -332, + "runtimeId" : 669 + }, + { + "name" : "minecraft:medium_amethyst_bud", + "id" : -331, + "runtimeId" : 384 + }, + { + "name" : "minecraft:large_amethyst_bud", + "id" : -330, + "runtimeId" : 671 + }, + { + "name" : "minecraft:amethyst_cluster", + "id" : -329, + "runtimeId" : 751 + }, + { + "name" : "minecraft:budding_amethyst", + "id" : -328, + "runtimeId" : 866 + }, + { + "name" : "minecraft:amethyst_block", + "id" : -327, + "runtimeId" : 832 + }, + { + "name" : "minecraft:calcite", + "id" : -326, + "runtimeId" : 867 + }, + { + "name" : "minecraft:azalea_leaves_flowered", + "id" : -325, + "runtimeId" : 680 + }, + { + "name" : "minecraft:azalea_leaves", + "id" : -324, + "runtimeId" : 679 + }, + { + "name" : "minecraft:big_dripleaf", + "id" : -323, + "runtimeId" : 844 + }, + { + "name" : "minecraft:cave_vines", + "id" : -322, + "runtimeId" : 873 + }, + { + "name" : "minecraft:spore_blossom", + "id" : -321, + "runtimeId" : 910 + }, + { + "name" : "minecraft:moss_block", + "id" : -320, + "runtimeId" : 931 + }, + { + "name" : "minecraft:hanging_roots", + "id" : -319, + "runtimeId" : 947 + }, + { + "name" : "minecraft:dirt_with_roots", + "id" : -318, + "runtimeId" : 366 + }, + { + "name" : "minecraft:dripstone_block", + "id" : -317, + "runtimeId" : 921 + }, + { + "name" : "minecraft:lightning_rod", + "id" : -312, + "runtimeId" : 930 + }, + { + "name" : "minecraft:copper_ore", + "id" : -311, + "runtimeId" : 889 + }, + { + "name" : "minecraft:pointed_dripstone", + "id" : -308, + "runtimeId" : 989 + }, + { + "name" : "minecraft:sculk_sensor", + "id" : -307, + "runtimeId" : 1008 + }, + { + "name" : "minecraft:powder_snow", + "id" : -306, + "runtimeId" : 466 + }, + { + "name" : "minecraft:unknown", + "id" : -305, + "runtimeId" : 378 + }, + { + "name" : "minecraft:quartz_bricks", + "id" : -304, + "runtimeId" : 42 + }, + { + "name" : "minecraft:cracked_nether_bricks", + "id" : -303, + "runtimeId" : 893 + }, + { + "name" : "minecraft:chiseled_nether_bricks", + "id" : -302, + "runtimeId" : 441 + }, + { + "name" : "minecraft:stripped_warped_hyphae", + "id" : -301, + "runtimeId" : 1025 + }, + { + "name" : "minecraft:stripped_crimson_hyphae", + "id" : -300, + "runtimeId" : 1022 + }, + { + "name" : "minecraft:crimson_hyphae", + "id" : -299, + "runtimeId" : 898 + }, + { + "name" : "minecraft:warped_hyphae", + "id" : -298, + "runtimeId" : 1043 + }, + { + "name" : "minecraft:polished_blackstone_wall", + "id" : -297, + "runtimeId" : 782 + }, + { + "name" : "minecraft:polished_blackstone_button", + "id" : -296, + "runtimeId" : 674 + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "id" : -295, + "runtimeId" : 994 + }, + { + "name" : "minecraft:polished_blackstone_double_slab", + "id" : -294, + "runtimeId" : 675 + }, + { + "name" : "minecraft:polished_blackstone_slab", + "id" : -293, + "runtimeId" : 636 + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "id" : -292, + "runtimeId" : 995 + }, + { + "name" : "minecraft:polished_blackstone", + "id" : -291, + "runtimeId" : 990 + }, + { + "name" : "minecraft:item.soul_campfire", + "id" : -290, + "runtimeId" : 1012 + }, + { + "name" : "minecraft:crying_obsidian", + "id" : -289, + "runtimeId" : 816 + }, + { + "name" : "minecraft:nether_gold_ore", + "id" : -288, + "runtimeId" : 978 + }, + { + "name" : "minecraft:twisting_vines", + "id" : -287, + "runtimeId" : 476 + }, + { + "name" : "minecraft:item.chain", + "id" : -286, + "runtimeId" : 877 + }, + { + "name" : "minecraft:polished_blackstone_brick_double_slab", + "id" : -285, + "runtimeId" : 991 + }, + { + "name" : "minecraft:polished_blackstone_brick_slab", + "id" : -284, + "runtimeId" : 9 + }, + { + "name" : "minecraft:blackstone_double_slab", + "id" : -283, + "runtimeId" : 677 + }, + { + "name" : "minecraft:blackstone_slab", + "id" : -282, + "runtimeId" : 635 + }, + { + "name" : "minecraft:gilded_blackstone", + "id" : -281, + "runtimeId" : 933 + }, + { + "name" : "minecraft:cracked_polished_blackstone_bricks", + "id" : -280, + "runtimeId" : 894 + }, + { + "name" : "minecraft:chiseled_polished_blackstone", + "id" : -279, + "runtimeId" : 849 + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "id" : -278, + "runtimeId" : 993 + }, + { + "name" : "minecraft:blackstone_wall", + "id" : -277, + "runtimeId" : 856 + }, + { + "name" : "minecraft:blackstone_stairs", + "id" : -276, + "runtimeId" : 854 + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "id" : -275, + "runtimeId" : 408 + }, + { + "name" : "minecraft:polished_blackstone_bricks", + "id" : -274, + "runtimeId" : 664 + }, + { + "name" : "minecraft:blackstone", + "id" : -273, + "runtimeId" : 852 + }, + { + "name" : "minecraft:respawn_anchor", + "id" : -272, + "runtimeId" : 815 + }, + { + "name" : "minecraft:ancient_debris", + "id" : -271, + "runtimeId" : 62 + }, + { + "name" : "minecraft:netherite_block", + "id" : -270, + "runtimeId" : 813 + }, + { + "name" : "minecraft:soul_lantern", + "id" : -269, + "runtimeId" : 1013 + }, + { + "name" : "minecraft:soul_torch", + "id" : -268, + "runtimeId" : 1014 + }, + { + "name" : "minecraft:warped_double_slab", + "id" : -267, + "runtimeId" : 1040 + }, + { + "name" : "minecraft:crimson_double_slab", + "id" : -266, + "runtimeId" : 896 + }, + { + "name" : "minecraft:warped_slab", + "id" : -265, + "runtimeId" : 488 + }, + { + "name" : "minecraft:crimson_slab", + "id" : -264, + "runtimeId" : 711 + }, + { + "name" : "minecraft:warped_pressure_plate", + "id" : -263, + "runtimeId" : 1046 + }, + { + "name" : "minecraft:crimson_pressure_plate", + "id" : -262, + "runtimeId" : 270 + }, + { + "name" : "minecraft:warped_button", + "id" : -261, + "runtimeId" : 804 + }, + { + "name" : "minecraft:crimson_button", + "id" : -260, + "runtimeId" : 895 + }, + { + "name" : "minecraft:warped_fence_gate", + "id" : -259, + "runtimeId" : 1042 + }, + { + "name" : "minecraft:crimson_fence_gate", + "id" : -258, + "runtimeId" : 897 + }, + { + "name" : "minecraft:warped_fence", + "id" : -257, + "runtimeId" : 1041 + }, + { + "name" : "minecraft:crimson_fence", + "id" : -256, + "runtimeId" : 447 + }, + { + "name" : "minecraft:warped_stairs", + "id" : -255, + "runtimeId" : 1047 + }, + { + "name" : "minecraft:crimson_stairs", + "id" : -254, + "runtimeId" : 330 + }, + { + "name" : "minecraft:warped_wall_sign", + "id" : -253, + "runtimeId" : 1049 + }, + { + "name" : "minecraft:crimson_wall_sign", + "id" : -252, + "runtimeId" : 903 + }, + { + "name" : "minecraft:warped_standing_sign", + "id" : -251, + "runtimeId" : 992 + }, + { + "name" : "minecraft:crimson_standing_sign", + "id" : -250, + "runtimeId" : 901 + }, + { + "name" : "minecraft:warped_trapdoor", + "id" : -247, + "runtimeId" : 474 + }, + { + "name" : "minecraft:crimson_trapdoor", + "id" : -246, + "runtimeId" : 159 + }, + { + "name" : "minecraft:item.warped_door", + "id" : -245, + "runtimeId" : 1039 + }, + { + "name" : "minecraft:item.crimson_door", + "id" : -244, + "runtimeId" : 125 + }, + { + "name" : "minecraft:warped_planks", + "id" : -243, + "runtimeId" : 1045 + }, + { + "name" : "minecraft:crimson_planks", + "id" : -242, + "runtimeId" : 900 + }, + { + "name" : "minecraft:stripped_warped_stem", + "id" : -241, + "runtimeId" : 1026 + }, + { + "name" : "minecraft:stripped_crimson_stem", + "id" : -240, + "runtimeId" : 382 + }, + { + "name" : "minecraft:target", + "id" : -239, + "runtimeId" : 678 + }, + { + "name" : "minecraft:item.nether_sprouts", + "id" : -238, + "runtimeId" : 971 + }, + { + "name" : "minecraft:soul_fire", + "id" : -237, + "runtimeId" : 681 + }, + { + "name" : "minecraft:soul_soil", + "id" : -236, + "runtimeId" : 688 + }, + { + "name" : "minecraft:polished_basalt", + "id" : -235, + "runtimeId" : 936 + }, + { + "name" : "minecraft:basalt", + "id" : -234, + "runtimeId" : 838 + }, + { + "name" : "minecraft:warped_nylium", + "id" : -233, + "runtimeId" : 1044 + }, + { + "name" : "minecraft:crimson_nylium", + "id" : -232, + "runtimeId" : 541 + }, + { + "name" : "minecraft:weeping_vines", + "id" : -231, + "runtimeId" : 450 + }, + { + "name" : "minecraft:shroomlight", + "id" : -230, + "runtimeId" : 1009 + }, + { + "name" : "minecraft:warped_fungus", + "id" : -229, + "runtimeId" : 612 + }, + { + "name" : "minecraft:crimson_fungus", + "id" : -228, + "runtimeId" : 484 + }, + { + "name" : "minecraft:warped_wart_block", + "id" : -227, + "runtimeId" : 1036 + }, + { + "name" : "minecraft:warped_stem", + "id" : -226, + "runtimeId" : 1048 + }, + { + "name" : "minecraft:crimson_stem", + "id" : -225, + "runtimeId" : 902 + }, + { + "name" : "minecraft:warped_roots", + "id" : -224, + "runtimeId" : 682 + }, + { + "name" : "minecraft:crimson_roots", + "id" : -223, + "runtimeId" : 288 + }, + { + "name" : "minecraft:lodestone", + "id" : -222, + "runtimeId" : 203 + }, + { + "name" : "minecraft:honeycomb_block", + "id" : -221, + "runtimeId" : 410 + }, + { + "name" : "minecraft:honey_block", + "id" : -220, + "runtimeId" : 175 + }, + { + "name" : "minecraft:beehive", + "id" : -219, + "runtimeId" : 843 + }, + { + "name" : "minecraft:bee_nest", + "id" : -218, + "runtimeId" : 842 + }, + { + "name" : "minecraft:stickypistonarmcollision", + "id" : -217, + "runtimeId" : 224 + }, + { + "name" : "minecraft:wither_rose", + "id" : -216, + "runtimeId" : 1067 + }, + { + "name" : "minecraft:light_block", + "id" : -215, + "runtimeId" : 24 + }, + { + "name" : "minecraft:lit_blast_furnace", + "id" : -214, + "runtimeId" : 661 + }, + { + "name" : "minecraft:composter", + "id" : -213, + "runtimeId" : 432 + }, + { + "name" : "minecraft:wood", + "id" : -212, + "runtimeId" : 640 + }, + { + "name" : "minecraft:jigsaw", + "id" : -211, + "runtimeId" : 414 + }, + { + "name" : "minecraft:lava_cauldron", + "id" : -210, + "runtimeId" : 920 + }, + { + "name" : "minecraft:item.campfire", + "id" : -209, + "runtimeId" : 72 + }, + { + "name" : "minecraft:lantern", + "id" : -208, + "runtimeId" : 114 + }, + { + "name" : "minecraft:sweet_berry_bush", + "id" : -207, + "runtimeId" : 1029 + }, + { + "name" : "minecraft:bell", + "id" : -206, + "runtimeId" : 597 + }, + { + "name" : "minecraft:loom", + "id" : -204, + "runtimeId" : 621 + }, + { + "name" : "minecraft:barrel", + "id" : -203, + "runtimeId" : 215 + }, + { + "name" : "minecraft:smithing_table", + "id" : -202, + "runtimeId" : 167 + }, + { + "name" : "minecraft:fletching_table", + "id" : -201, + "runtimeId" : 706 + }, + { + "name" : "minecraft:cartography_table", + "id" : -200, + "runtimeId" : 634 + }, + { + "name" : "minecraft:lit_smoker", + "id" : -199, + "runtimeId" : 969 + }, + { + "name" : "minecraft:smoker", + "id" : -198, + "runtimeId" : 96 + }, + { + "name" : "minecraft:stonecutter_block", + "id" : -197, + "runtimeId" : 82 + }, + { + "name" : "minecraft:blast_furnace", + "id" : -196, + "runtimeId" : 364 + }, + { + "name" : "minecraft:grindstone", + "id" : -195, + "runtimeId" : 703 + }, + { + "name" : "minecraft:lectern", + "id" : -194, + "runtimeId" : 963 + }, + { + "name" : "minecraft:darkoak_wall_sign", + "id" : -193, + "runtimeId" : 908 + }, + { + "name" : "minecraft:darkoak_standing_sign", + "id" : -192, + "runtimeId" : 907 + }, + { + "name" : "minecraft:acacia_wall_sign", + "id" : -191, + "runtimeId" : 829 + }, + { + "name" : "minecraft:acacia_standing_sign", + "id" : -190, + "runtimeId" : 827 + }, + { + "name" : "minecraft:jungle_wall_sign", + "id" : -189, + "runtimeId" : 957 + }, + { + "name" : "minecraft:jungle_standing_sign", + "id" : -188, + "runtimeId" : 955 + }, + { + "name" : "minecraft:birch_wall_sign", + "id" : -187, + "runtimeId" : 723 + }, + { + "name" : "minecraft:birch_standing_sign", + "id" : -186, + "runtimeId" : 850 + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "id" : -185, + "runtimeId" : 20 + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "id" : -184, + "runtimeId" : 1003 + }, + { + "name" : "minecraft:smooth_stone", + "id" : -183, + "runtimeId" : 118 + }, + { + "name" : "minecraft:spruce_wall_sign", + "id" : -182, + "runtimeId" : 473 + }, + { + "name" : "minecraft:spruce_standing_sign", + "id" : -181, + "runtimeId" : 698 + }, + { + "name" : "minecraft:normal_stone_stairs", + "id" : -180, + "runtimeId" : 982 + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "id" : -179, + "runtimeId" : 254 + }, + { + "name" : "minecraft:end_brick_stairs", + "id" : -178, + "runtimeId" : 926 + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "id" : -177, + "runtimeId" : 1011 + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "id" : -176, + "runtimeId" : 639 + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "id" : -175, + "runtimeId" : 972 + }, + { + "name" : "minecraft:polished_andesite_stairs", + "id" : -174, + "runtimeId" : 395 + }, + { + "name" : "minecraft:polished_diorite_stairs", + "id" : -173, + "runtimeId" : 595 + }, + { + "name" : "minecraft:polished_granite_stairs", + "id" : -172, + "runtimeId" : 299 + }, + { + "name" : "minecraft:andesite_stairs", + "id" : -171, + "runtimeId" : 333 + }, + { + "name" : "minecraft:diorite_stairs", + "id" : -170, + "runtimeId" : 779 + }, + { + "name" : "minecraft:granite_stairs", + "id" : -169, + "runtimeId" : 139 + }, + { + "name" : "minecraft:real_double_stone_slab4", + "id" : -168, + "runtimeId" : 181 + }, + { + "name" : "minecraft:real_double_stone_slab3", + "id" : -167, + "runtimeId" : 220 + }, + { + "name" : "minecraft:double_stone_slab4", + "id" : -166, + "runtimeId" : 665 + }, + { + "name" : "minecraft:scaffolding", + "id" : -165, + "runtimeId" : 700 + }, + { + "name" : "minecraft:bamboo_sapling", + "id" : -164, + "runtimeId" : 834 + }, + { + "name" : "minecraft:bamboo", + "id" : -163, + "runtimeId" : 699 + }, + { + "name" : "minecraft:double_stone_slab3", + "id" : -162, + "runtimeId" : 421 + }, + { + "name" : "minecraft:barrier", + "id" : -161, + "runtimeId" : 836 + }, + { + "name" : "minecraft:bubble_column", + "id" : -160, + "runtimeId" : 865 + }, + { + "name" : "minecraft:turtle_egg", + "id" : -159, + "runtimeId" : 367 + }, + { + "name" : "minecraft:air", + "id" : -158, + "runtimeId" : 6 + }, + { + "name" : "minecraft:conduit", + "id" : -157, + "runtimeId" : 692 + }, + { + "name" : "minecraft:sea_pickle", + "id" : -156, + "runtimeId" : 673 + }, + { + "name" : "minecraft:carved_pumpkin", + "id" : -155, + "runtimeId" : 400 + }, + { + "name" : "minecraft:spruce_pressure_plate", + "id" : -154, + "runtimeId" : 1017 + }, + { + "name" : "minecraft:jungle_pressure_plate", + "id" : -153, + "runtimeId" : 407 + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "id" : -152, + "runtimeId" : 517 + }, + { + "name" : "minecraft:birch_pressure_plate", + "id" : -151, + "runtimeId" : 848 + }, + { + "name" : "minecraft:acacia_pressure_plate", + "id" : -150, + "runtimeId" : 687 + }, + { + "name" : "minecraft:spruce_trapdoor", + "id" : -149, + "runtimeId" : 1018 + }, + { + "name" : "minecraft:jungle_trapdoor", + "id" : -148, + "runtimeId" : 527 + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "id" : -147, + "runtimeId" : 904 + }, + { + "name" : "minecraft:birch_trapdoor", + "id" : -146, + "runtimeId" : 851 + }, + { + "name" : "minecraft:acacia_trapdoor", + "id" : -145, + "runtimeId" : 828 + }, + { + "name" : "minecraft:spruce_button", + "id" : -144, + "runtimeId" : 337 + }, + { + "name" : "minecraft:jungle_button", + "id" : -143, + "runtimeId" : 953 + }, + { + "name" : "minecraft:dark_oak_button", + "id" : -142, + "runtimeId" : 775 + }, + { + "name" : "minecraft:birch_button", + "id" : -141, + "runtimeId" : 845 + }, + { + "name" : "minecraft:acacia_button", + "id" : -140, + "runtimeId" : 822 + }, + { + "name" : "minecraft:dried_kelp_block", + "id" : -139, + "runtimeId" : 855 + }, + { + "name" : "minecraft:item.kelp", + "id" : -138, + "runtimeId" : 884 + }, + { + "name" : "minecraft:coral_fan_hang3", + "id" : -137, + "runtimeId" : 892 + }, + { + "name" : "minecraft:coral_fan_hang2", + "id" : -136, + "runtimeId" : 588 + }, + { + "name" : "minecraft:coral_fan_hang", + "id" : -135, + "runtimeId" : 891 + }, + { + "name" : "minecraft:coral_fan_dead", + "id" : -134, + "runtimeId" : 586 + }, + { + "name" : "minecraft:coral_fan", + "id" : -133, + "runtimeId" : 670 + }, + { + "name" : "minecraft:coral_block", + "id" : -132, + "runtimeId" : 660 + }, + { + "name" : "minecraft:coral", + "id" : -131, + "runtimeId" : 318 + }, + { + "name" : "minecraft:seagrass", + "id" : -130, + "runtimeId" : 516 + }, + { + "name" : "minecraft:element_118", + "id" : -129, + "runtimeId" : 812 + }, + { + "name" : "minecraft:element_117", + "id" : -128, + "runtimeId" : 811 + }, + { + "name" : "minecraft:element_116", + "id" : -127, + "runtimeId" : 286 + }, + { + "name" : "minecraft:element_115", + "id" : -126, + "runtimeId" : 810 + }, + { + "name" : "minecraft:element_114", + "id" : -125, + "runtimeId" : 807 + }, + { + "name" : "minecraft:element_113", + "id" : -124, + "runtimeId" : 805 + }, + { + "name" : "minecraft:element_112", + "id" : -123, + "runtimeId" : 803 + }, + { + "name" : "minecraft:element_111", + "id" : -122, + "runtimeId" : 415 + }, + { + "name" : "minecraft:element_110", + "id" : -121, + "runtimeId" : 802 + }, + { + "name" : "minecraft:element_109", + "id" : -120, + "runtimeId" : 460 + }, + { + "name" : "minecraft:element_108", + "id" : -119, + "runtimeId" : 801 + }, + { + "name" : "minecraft:element_107", + "id" : -118, + "runtimeId" : 800 + }, + { + "name" : "minecraft:element_106", + "id" : -117, + "runtimeId" : 798 + }, + { + "name" : "minecraft:element_105", + "id" : -116, + "runtimeId" : 797 + }, + { + "name" : "minecraft:element_104", + "id" : -115, + "runtimeId" : 138 + }, + { + "name" : "minecraft:element_103", + "id" : -114, + "runtimeId" : 690 + }, + { + "name" : "minecraft:element_102", + "id" : -113, + "runtimeId" : 544 + }, + { + "name" : "minecraft:element_101", + "id" : -112, + "runtimeId" : 209 + }, + { + "name" : "minecraft:element_100", + "id" : -111, + "runtimeId" : 663 + }, + { + "name" : "minecraft:element_99", + "id" : -110, + "runtimeId" : 795 + }, + { + "name" : "minecraft:element_98", + "id" : -109, + "runtimeId" : 794 + }, + { + "name" : "minecraft:element_97", + "id" : -108, + "runtimeId" : 296 + }, + { + "name" : "minecraft:element_96", + "id" : -107, + "runtimeId" : 793 + }, + { + "name" : "minecraft:element_95", + "id" : -106, + "runtimeId" : 791 + }, + { + "name" : "minecraft:element_94", + "id" : -105, + "runtimeId" : 790 + }, + { + "name" : "minecraft:element_93", + "id" : -104, + "runtimeId" : 789 + }, + { + "name" : "minecraft:element_92", + "id" : -103, + "runtimeId" : 611 + }, + { + "name" : "minecraft:element_91", + "id" : -102, + "runtimeId" : 788 + }, + { + "name" : "minecraft:element_90", + "id" : -101, + "runtimeId" : 787 + }, + { + "name" : "minecraft:element_89", + "id" : -100, + "runtimeId" : 786 + }, + { + "name" : "minecraft:element_88", + "id" : -99, + "runtimeId" : 785 + }, + { + "name" : "minecraft:element_87", + "id" : -98, + "runtimeId" : 784 + }, + { + "name" : "minecraft:element_86", + "id" : -97, + "runtimeId" : 192 + }, + { + "name" : "minecraft:element_85", + "id" : -96, + "runtimeId" : 783 + }, + { + "name" : "minecraft:element_84", + "id" : -95, + "runtimeId" : 239 + }, + { + "name" : "minecraft:element_83", + "id" : -94, + "runtimeId" : 617 + }, + { + "name" : "minecraft:element_82", + "id" : -93, + "runtimeId" : 781 + }, + { + "name" : "minecraft:element_81", + "id" : -92, + "runtimeId" : 780 + }, + { + "name" : "minecraft:element_80", + "id" : -91, + "runtimeId" : 468 + }, + { + "name" : "minecraft:element_79", + "id" : -90, + "runtimeId" : 777 + }, + { + "name" : "minecraft:element_78", + "id" : -89, + "runtimeId" : 603 + }, + { + "name" : "minecraft:element_77", + "id" : -88, + "runtimeId" : 776 + }, + { + "name" : "minecraft:element_76", + "id" : -87, + "runtimeId" : 649 + }, + { + "name" : "minecraft:element_75", + "id" : -86, + "runtimeId" : 774 + }, + { + "name" : "minecraft:element_74", + "id" : -85, + "runtimeId" : 261 + }, + { + "name" : "minecraft:element_73", + "id" : -84, + "runtimeId" : 579 + }, + { + "name" : "minecraft:element_72", + "id" : -83, + "runtimeId" : 773 + }, + { + "name" : "minecraft:element_71", + "id" : -82, + "runtimeId" : 771 + }, + { + "name" : "minecraft:element_70", + "id" : -81, + "runtimeId" : 770 + }, + { + "name" : "minecraft:element_69", + "id" : -80, + "runtimeId" : 533 + }, + { + "name" : "minecraft:element_68", + "id" : -79, + "runtimeId" : 769 + }, + { + "name" : "minecraft:element_67", + "id" : -78, + "runtimeId" : 768 + }, + { + "name" : "minecraft:element_66", + "id" : -77, + "runtimeId" : 767 + }, + { + "name" : "minecraft:element_65", + "id" : -76, + "runtimeId" : 766 + }, + { + "name" : "minecraft:element_64", + "id" : -75, + "runtimeId" : 765 + }, + { + "name" : "minecraft:element_63", + "id" : -74, + "runtimeId" : 548 + }, + { + "name" : "minecraft:element_62", + "id" : -73, + "runtimeId" : 93 + }, + { + "name" : "minecraft:element_61", + "id" : -72, + "runtimeId" : 65 + }, + { + "name" : "minecraft:element_60", + "id" : -71, + "runtimeId" : 763 + }, + { + "name" : "minecraft:element_59", + "id" : -70, + "runtimeId" : 762 + }, + { + "name" : "minecraft:element_58", + "id" : -69, + "runtimeId" : 761 + }, + { + "name" : "minecraft:element_57", + "id" : -68, + "runtimeId" : 759 + }, + { + "name" : "minecraft:element_56", + "id" : -67, + "runtimeId" : 756 + }, + { + "name" : "minecraft:element_55", + "id" : -66, + "runtimeId" : 256 + }, + { + "name" : "minecraft:element_54", + "id" : -65, + "runtimeId" : 755 + }, + { + "name" : "minecraft:element_53", + "id" : -64, + "runtimeId" : 658 + }, + { + "name" : "minecraft:element_52", + "id" : -63, + "runtimeId" : 180 + }, + { + "name" : "minecraft:element_51", + "id" : -62, + "runtimeId" : 236 + }, + { + "name" : "minecraft:element_50", + "id" : -61, + "runtimeId" : 13 + }, + { + "name" : "minecraft:element_49", + "id" : -60, + "runtimeId" : 211 + }, + { + "name" : "minecraft:element_48", + "id" : -59, + "runtimeId" : 754 + }, + { + "name" : "minecraft:element_47", + "id" : -58, + "runtimeId" : 528 + }, + { + "name" : "minecraft:element_46", + "id" : -57, + "runtimeId" : 753 + }, + { + "name" : "minecraft:element_45", + "id" : -56, + "runtimeId" : 752 + }, + { + "name" : "minecraft:element_44", + "id" : -55, + "runtimeId" : 404 + }, + { + "name" : "minecraft:element_43", + "id" : -54, + "runtimeId" : 117 + }, + { + "name" : "minecraft:element_42", + "id" : -53, + "runtimeId" : 575 + }, + { + "name" : "minecraft:element_41", + "id" : -52, + "runtimeId" : 358 + }, + { + "name" : "minecraft:element_40", + "id" : -51, + "runtimeId" : 750 + }, + { + "name" : "minecraft:element_39", + "id" : -50, + "runtimeId" : 749 + }, + { + "name" : "minecraft:element_38", + "id" : -49, + "runtimeId" : 748 + }, + { + "name" : "minecraft:element_37", + "id" : -48, + "runtimeId" : 747 + }, + { + "name" : "minecraft:element_36", + "id" : -47, + "runtimeId" : 745 + }, + { + "name" : "minecraft:element_35", + "id" : -46, + "runtimeId" : 135 + }, + { + "name" : "minecraft:element_34", + "id" : -45, + "runtimeId" : 744 + }, + { + "name" : "minecraft:element_33", + "id" : -44, + "runtimeId" : 743 + }, + { + "name" : "minecraft:element_32", + "id" : -43, + "runtimeId" : 742 + }, + { + "name" : "minecraft:element_31", + "id" : -42, + "runtimeId" : 741 + }, + { + "name" : "minecraft:element_30", + "id" : -41, + "runtimeId" : 740 + }, + { + "name" : "minecraft:element_29", + "id" : -40, + "runtimeId" : 739 + }, + { + "name" : "minecraft:element_28", + "id" : -39, + "runtimeId" : 497 + }, + { + "name" : "minecraft:element_27", + "id" : -38, + "runtimeId" : 738 + }, + { + "name" : "minecraft:element_26", + "id" : -37, + "runtimeId" : 737 + }, + { + "name" : "minecraft:element_25", + "id" : -36, + "runtimeId" : 736 + }, + { + "name" : "minecraft:element_24", + "id" : -35, + "runtimeId" : 735 + }, + { + "name" : "minecraft:element_23", + "id" : -34, + "runtimeId" : 316 + }, + { + "name" : "minecraft:element_22", + "id" : -33, + "runtimeId" : 694 + }, + { + "name" : "minecraft:element_21", + "id" : -32, + "runtimeId" : 428 + }, + { + "name" : "minecraft:element_20", + "id" : -31, + "runtimeId" : 734 + }, + { + "name" : "minecraft:element_19", + "id" : -30, + "runtimeId" : 733 + }, + { + "name" : "minecraft:element_18", + "id" : -29, + "runtimeId" : 732 + }, + { + "name" : "minecraft:element_17", + "id" : -28, + "runtimeId" : 731 + }, + { + "name" : "minecraft:element_16", + "id" : -27, + "runtimeId" : 730 + }, + { + "name" : "minecraft:element_15", + "id" : -26, + "runtimeId" : 21 + }, + { + "name" : "minecraft:element_14", + "id" : -25, + "runtimeId" : 372 + }, + { + "name" : "minecraft:element_13", + "id" : -24, + "runtimeId" : 108 + }, + { + "name" : "minecraft:element_12", + "id" : -23, + "runtimeId" : 729 + }, + { + "name" : "minecraft:element_11", + "id" : -22, + "runtimeId" : 683 + }, + { + "name" : "minecraft:element_10", + "id" : -21, + "runtimeId" : 365 + }, + { + "name" : "minecraft:element_9", + "id" : -20, + "runtimeId" : 492 + }, + { + "name" : "minecraft:element_8", + "id" : -19, + "runtimeId" : 728 + }, + { + "name" : "minecraft:element_7", + "id" : -18, + "runtimeId" : 35 + }, + { + "name" : "minecraft:element_6", + "id" : -17, + "runtimeId" : 273 + }, + { + "name" : "minecraft:element_5", + "id" : -16, + "runtimeId" : 727 + }, + { + "name" : "minecraft:element_4", + "id" : -15, + "runtimeId" : 725 + }, + { + "name" : "minecraft:element_3", + "id" : -14, + "runtimeId" : 724 + }, + { + "name" : "minecraft:element_2", + "id" : -13, + "runtimeId" : 126 + }, + { + "name" : "minecraft:element_1", + "id" : -12, + "runtimeId" : 77 + }, + { + "name" : "minecraft:blue_ice", + "id" : -11, + "runtimeId" : 615 + }, + { + "name" : "minecraft:stripped_oak_log", + "id" : -10, + "runtimeId" : 14 + }, + { + "name" : "minecraft:stripped_dark_oak_log", + "id" : -9, + "runtimeId" : 1023 + }, + { + "name" : "minecraft:stripped_acacia_log", + "id" : -8, + "runtimeId" : 668 + }, + { + "name" : "minecraft:stripped_jungle_log", + "id" : -7, + "runtimeId" : 514 + }, + { + "name" : "minecraft:stripped_birch_log", + "id" : -6, + "runtimeId" : 874 + }, + { + "name" : "minecraft:stripped_spruce_log", + "id" : -5, + "runtimeId" : 1024 + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "id" : -4, + "runtimeId" : 40 + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "id" : -3, + "runtimeId" : 905 + }, + { + "name" : "minecraft:prismarine_stairs", + "id" : -2, + "runtimeId" : 998 + }, + { + "name" : "minecraft:stone", + "id" : 1, + "runtimeId" : 652 + }, + { + "name" : "minecraft:grass", + "id" : 2, + "runtimeId" : 941 + }, + { + "name" : "minecraft:dirt", + "id" : 3, + "runtimeId" : 94 + }, + { + "name" : "minecraft:cobblestone", + "id" : 4, + "runtimeId" : 553 + }, + { + "name" : "minecraft:planks", + "id" : 5, + "runtimeId" : 162 + }, + { + "name" : "minecraft:sapling", + "id" : 6, + "runtimeId" : 676 + }, + { + "name" : "minecraft:bedrock", + "id" : 7, + "runtimeId" : 841 + }, + { + "name" : "minecraft:flowing_water", + "id" : 8, + "runtimeId" : 171 + }, + { + "name" : "minecraft:water", + "id" : 9, + "runtimeId" : 1050 + }, + { + "name" : "minecraft:flowing_lava", + "id" : 10, + "runtimeId" : 247 + }, + { + "name" : "minecraft:lava", + "id" : 11, + "runtimeId" : 962 + }, + { + "name" : "minecraft:sand", + "id" : 12, + "runtimeId" : 228 + }, + { + "name" : "minecraft:gravel", + "id" : 13, + "runtimeId" : 943 + }, + { + "name" : "minecraft:gold_ore", + "id" : 14, + "runtimeId" : 939 + }, + { + "name" : "minecraft:iron_ore", + "id" : 15, + "runtimeId" : 308 + }, + { + "name" : "minecraft:coal_ore", + "id" : 16, + "runtimeId" : 569 + }, + { + "name" : "minecraft:log", + "id" : 17, + "runtimeId" : 656 + }, + { + "name" : "minecraft:leaves", + "id" : 18, + "runtimeId" : 537 + }, + { + "name" : "minecraft:sponge", + "id" : 19, + "runtimeId" : 632 + }, + { + "name" : "minecraft:glass", + "id" : 20, + "runtimeId" : 934 + }, + { + "name" : "minecraft:lapis_ore", + "id" : 21, + "runtimeId" : 961 + }, + { + "name" : "minecraft:lapis_block", + "id" : 22, + "runtimeId" : 960 + }, + { + "name" : "minecraft:dispenser", + "id" : 23, + "runtimeId" : 918 + }, + { + "name" : "minecraft:sandstone", + "id" : 24, + "runtimeId" : 562 + }, + { + "name" : "minecraft:noteblock", + "id" : 25, + "runtimeId" : 983 + }, + { + "name" : "minecraft:item.bed", + "id" : 26, + "runtimeId" : 839 + }, + { + "name" : "minecraft:golden_rail", + "id" : 27, + "runtimeId" : 940 + }, + { + "name" : "minecraft:detector_rail", + "id" : 28, + "runtimeId" : 824 + }, + { + "name" : "minecraft:sticky_piston", + "id" : 29, + "runtimeId" : 697 + }, + { + "name" : "minecraft:web", + "id" : 30, + "runtimeId" : 1065 + }, + { + "name" : "minecraft:tallgrass", + "id" : 31, + "runtimeId" : 686 + }, + { + "name" : "minecraft:deadbush", + "id" : 32, + "runtimeId" : 909 + }, + { + "name" : "minecraft:piston", + "id" : 33, + "runtimeId" : 230 + }, + { + "name" : "minecraft:pistonarmcollision", + "id" : 34, + "runtimeId" : 987 + }, + { + "name" : "minecraft:wool", + "id" : 35, + "runtimeId" : 653 + }, + { + "name" : "minecraft:element_0", + "id" : 36, + "runtimeId" : 436 + }, + { + "name" : "minecraft:yellow_flower", + "id" : 37, + "runtimeId" : 654 + }, + { + "name" : "minecraft:red_flower", + "id" : 38, + "runtimeId" : 684 + }, + { + "name" : "minecraft:brown_mushroom", + "id" : 39, + "runtimeId" : 204 + }, + { + "name" : "minecraft:red_mushroom", + "id" : 40, + "runtimeId" : 69 + }, + { + "name" : "minecraft:gold_block", + "id" : 41, + "runtimeId" : 881 + }, + { + "name" : "minecraft:iron_block", + "id" : 42, + "runtimeId" : 952 + }, + { + "name" : "minecraft:real_double_stone_slab", + "id" : 43, + "runtimeId" : 667 + }, + { + "name" : "minecraft:double_stone_slab", + "id" : 44, + "runtimeId" : 662 + }, + { + "name" : "minecraft:brick_block", + "id" : 45, + "runtimeId" : 424 + }, + { + "name" : "minecraft:tnt", + "id" : 46, + "runtimeId" : 707 + }, + { + "name" : "minecraft:bookshelf", + "id" : 47, + "runtimeId" : 18 + }, + { + "name" : "minecraft:mossy_cobblestone", + "id" : 48, + "runtimeId" : 964 + }, + { + "name" : "minecraft:obsidian", + "id" : 49, + "runtimeId" : 112 + }, + { + "name" : "minecraft:torch", + "id" : 50, + "runtimeId" : 1031 + }, + { + "name" : "minecraft:fire", + "id" : 51, + "runtimeId" : 79 + }, + { + "name" : "minecraft:mob_spawner", + "id" : 52, + "runtimeId" : 438 + }, + { + "name" : "minecraft:oak_stairs", + "id" : 53, + "runtimeId" : 984 + }, + { + "name" : "minecraft:chest", + "id" : 54, + "runtimeId" : 128 + }, + { + "name" : "minecraft:redstone_wire", + "id" : 55, + "runtimeId" : 1006 + }, + { + "name" : "minecraft:diamond_ore", + "id" : 56, + "runtimeId" : 917 + }, + { + "name" : "minecraft:diamond_block", + "id" : 57, + "runtimeId" : 36 + }, + { + "name" : "minecraft:crafting_table", + "id" : 58, + "runtimeId" : 760 + }, + { + "name" : "minecraft:item.wheat", + "id" : 59, + "runtimeId" : 1015 + }, + { + "name" : "minecraft:farmland", + "id" : 60, + "runtimeId" : 156 + }, + { + "name" : "minecraft:furnace", + "id" : 61, + "runtimeId" : 932 + }, + { + "name" : "minecraft:lit_furnace", + "id" : 62, + "runtimeId" : 956 + }, + { + "name" : "minecraft:standing_sign", + "id" : 63, + "runtimeId" : 482 + }, + { + "name" : "minecraft:item.wooden_door", + "id" : 64, + "runtimeId" : 1069 + }, + { + "name" : "minecraft:ladder", + "id" : 65, + "runtimeId" : 958 + }, + { + "name" : "minecraft:rail", + "id" : 66, + "runtimeId" : 666 + }, + { + "name" : "minecraft:stone_stairs", + "id" : 67, + "runtimeId" : 1020 + }, + { + "name" : "minecraft:wall_sign", + "id" : 68, + "runtimeId" : 861 + }, + { + "name" : "minecraft:lever", + "id" : 69, + "runtimeId" : 965 + }, + { + "name" : "minecraft:stone_pressure_plate", + "id" : 70, + "runtimeId" : 227 + }, + { + "name" : "minecraft:item.iron_door", + "id" : 71, + "runtimeId" : 44 + }, + { + "name" : "minecraft:wooden_pressure_plate", + "id" : 72, + "runtimeId" : 1070 + }, + { + "name" : "minecraft:redstone_ore", + "id" : 73, + "runtimeId" : 1005 + }, + { + "name" : "minecraft:lit_redstone_ore", + "id" : 74, + "runtimeId" : 758 + }, + { + "name" : "minecraft:unlit_redstone_torch", + "id" : 75, + "runtimeId" : 959 + }, + { + "name" : "minecraft:redstone_torch", + "id" : 76, + "runtimeId" : 778 + }, + { + "name" : "minecraft:stone_button", + "id" : 77, + "runtimeId" : 1019 + }, + { + "name" : "minecraft:snow_layer", + "id" : 78, + "runtimeId" : 90 + }, + { + "name" : "minecraft:ice", + "id" : 79, + "runtimeId" : 746 + }, + { + "name" : "minecraft:snow", + "id" : 80, + "runtimeId" : 823 + }, + { + "name" : "minecraft:cactus", + "id" : 81, + "runtimeId" : 796 + }, + { + "name" : "minecraft:clay", + "id" : 82, + "runtimeId" : 481 + }, + { + "name" : "minecraft:item.reeds", + "id" : 83, + "runtimeId" : 328 + }, + { + "name" : "minecraft:jukebox", + "id" : 84, + "runtimeId" : 464 + }, + { + "name" : "minecraft:fence", + "id" : 85, + "runtimeId" : 657 + }, + { + "name" : "minecraft:pumpkin", + "id" : 86, + "runtimeId" : 709 + }, + { + "name" : "minecraft:netherrack", + "id" : 87, + "runtimeId" : 980 + }, + { + "name" : "minecraft:soul_sand", + "id" : 88, + "runtimeId" : 212 + }, + { + "name" : "minecraft:glowstone", + "id" : 89, + "runtimeId" : 243 + }, + { + "name" : "minecraft:portal", + "id" : 90, + "runtimeId" : 29 + }, + { + "name" : "minecraft:lit_pumpkin", + "id" : 91, + "runtimeId" : 313 + }, + { + "name" : "minecraft:item.cake", + "id" : 92, + "runtimeId" : 351 + }, + { + "name" : "minecraft:unpowered_repeater", + "id" : 93, + "runtimeId" : 1035 + }, + { + "name" : "minecraft:powered_repeater", + "id" : 94, + "runtimeId" : 997 + }, + { + "name" : "minecraft:invisiblebedrock", + "id" : 95, + "runtimeId" : 122 + }, + { + "name" : "minecraft:trapdoor", + "id" : 96, + "runtimeId" : 506 + }, + { + "name" : "minecraft:monster_egg", + "id" : 97, + "runtimeId" : 593 + }, + { + "name" : "minecraft:stonebrick", + "id" : 98, + "runtimeId" : 659 + }, + { + "name" : "minecraft:brown_mushroom_block", + "id" : 99, + "runtimeId" : 689 + }, + { + "name" : "minecraft:red_mushroom_block", + "id" : 100, + "runtimeId" : 486 + }, + { + "name" : "minecraft:iron_bars", + "id" : 101, + "runtimeId" : 469 + }, + { + "name" : "minecraft:glass_pane", + "id" : 102, + "runtimeId" : 935 + }, + { + "name" : "minecraft:melon_block", + "id" : 103, + "runtimeId" : 144 + }, + { + "name" : "minecraft:pumpkin_stem", + "id" : 104, + "runtimeId" : 999 + }, + { + "name" : "minecraft:melon_stem", + "id" : 105, + "runtimeId" : 970 + }, + { + "name" : "minecraft:vine", + "id" : 106, + "runtimeId" : 1037 + }, + { + "name" : "minecraft:fence_gate", + "id" : 107, + "runtimeId" : 423 + }, + { + "name" : "minecraft:brick_stairs", + "id" : 108, + "runtimeId" : 860 + }, + { + "name" : "minecraft:stone_brick_stairs", + "id" : 109, + "runtimeId" : 27 + }, + { + "name" : "minecraft:mycelium", + "id" : 110, + "runtimeId" : 974 + }, + { + "name" : "minecraft:waterlily", + "id" : 111, + "runtimeId" : 520 + }, + { + "name" : "minecraft:nether_brick", + "id" : 112, + "runtimeId" : 975 + }, + { + "name" : "minecraft:nether_brick_fence", + "id" : 113, + "runtimeId" : 976 + }, + { + "name" : "minecraft:nether_brick_stairs", + "id" : 114, + "runtimeId" : 977 + }, + { + "name" : "minecraft:item.nether_wart", + "id" : 115, + "runtimeId" : 279 + }, + { + "name" : "minecraft:enchanting_table", + "id" : 116, + "runtimeId" : 925 + }, + { + "name" : "minecraft:brewingstandblock", + "id" : 117, + "runtimeId" : 347 + }, + { + "name" : "minecraft:item.cauldron", + "id" : 118, + "runtimeId" : 872 + }, + { + "name" : "minecraft:end_portal", + "id" : 119, + "runtimeId" : 320 + }, + { + "name" : "minecraft:end_portal_frame", + "id" : 120, + "runtimeId" : 613 + }, + { + "name" : "minecraft:end_stone", + "id" : 121, + "runtimeId" : 471 + }, + { + "name" : "minecraft:dragon_egg", + "id" : 122, + "runtimeId" : 919 + }, + { + "name" : "minecraft:redstone_lamp", + "id" : 123, + "runtimeId" : 1004 + }, + { + "name" : "minecraft:lit_redstone_lamp", + "id" : 124, + "runtimeId" : 178 + }, + { + "name" : "minecraft:dropper", + "id" : 125, + "runtimeId" : 922 + }, + { + "name" : "minecraft:activator_rail", + "id" : 126, + "runtimeId" : 294 + }, + { + "name" : "minecraft:cocoa", + "id" : 127, + "runtimeId" : 888 + }, + { + "name" : "minecraft:sandstone_stairs", + "id" : 128, + "runtimeId" : 876 + }, + { + "name" : "minecraft:emerald_ore", + "id" : 129, + "runtimeId" : 899 + }, + { + "name" : "minecraft:ender_chest", + "id" : 130, + "runtimeId" : 726 + }, + { + "name" : "minecraft:tripwire_hook", + "id" : 131, + "runtimeId" : 1032 + }, + { + "name" : "minecraft:tripwire", + "id" : 132, + "runtimeId" : 57 + }, + { + "name" : "minecraft:emerald_block", + "id" : 133, + "runtimeId" : 924 + }, + { + "name" : "minecraft:spruce_stairs", + "id" : 134, + "runtimeId" : 110 + }, + { + "name" : "minecraft:birch_stairs", + "id" : 135, + "runtimeId" : 808 + }, + { + "name" : "minecraft:jungle_stairs", + "id" : 136, + "runtimeId" : 923 + }, + { + "name" : "minecraft:command_block", + "id" : 137, + "runtimeId" : 89 + }, + { + "name" : "minecraft:beacon", + "id" : 138, + "runtimeId" : 390 + }, + { + "name" : "minecraft:cobblestone_wall", + "id" : 139, + "runtimeId" : 501 + }, + { + "name" : "minecraft:item.flower_pot", + "id" : 140, + "runtimeId" : 376 + }, + { + "name" : "minecraft:carrots", + "id" : 141, + "runtimeId" : 149 + }, + { + "name" : "minecraft:potatoes", + "id" : 142, + "runtimeId" : 602 + }, + { + "name" : "minecraft:wooden_button", + "id" : 143, + "runtimeId" : 1068 + }, + { + "name" : "minecraft:item.skull", + "id" : 144, + "runtimeId" : 1010 + }, + { + "name" : "minecraft:anvil", + "id" : 145, + "runtimeId" : 58 + }, + { + "name" : "minecraft:trapped_chest", + "id" : 146, + "runtimeId" : 60 + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "id" : 147, + "runtimeId" : 229 + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "id" : 148, + "runtimeId" : 950 + }, + { + "name" : "minecraft:unpowered_comparator", + "id" : 149, + "runtimeId" : 397 + }, + { + "name" : "minecraft:powered_comparator", + "id" : 150, + "runtimeId" : 433 + }, + { + "name" : "minecraft:daylight_detector", + "id" : 151, + "runtimeId" : 91 + }, + { + "name" : "minecraft:redstone_block", + "id" : 152, + "runtimeId" : 582 + }, + { + "name" : "minecraft:quartz_ore", + "id" : 153, + "runtimeId" : 619 + }, + { + "name" : "minecraft:item.hopper", + "id" : 154, + "runtimeId" : 641 + }, + { + "name" : "minecraft:quartz_block", + "id" : 155, + "runtimeId" : 685 + }, + { + "name" : "minecraft:quartz_stairs", + "id" : 156, + "runtimeId" : 825 + }, + { + "name" : "minecraft:double_wooden_slab", + "id" : 157, + "runtimeId" : 237 + }, + { + "name" : "minecraft:wooden_slab", + "id" : 158, + "runtimeId" : 54 + }, + { + "name" : "minecraft:stained_hardened_clay", + "id" : 159, + "runtimeId" : 655 + }, + { + "name" : "minecraft:stained_glass_pane", + "id" : 160, + "runtimeId" : 55 + }, + { + "name" : "minecraft:leaves2", + "id" : 161, + "runtimeId" : 454 + }, + { + "name" : "minecraft:log2", + "id" : 162, + "runtimeId" : 691 + }, + { + "name" : "minecraft:acacia_stairs", + "id" : 163, + "runtimeId" : 188 + }, + { + "name" : "minecraft:dark_oak_stairs", + "id" : 164, + "runtimeId" : 155 + }, + { + "name" : "minecraft:slime", + "id" : 165, + "runtimeId" : 710 + }, + { + "name" : "minecraft:glow_stick", + "id" : 166, + "runtimeId" : 614 + }, + { + "name" : "minecraft:iron_trapdoor", + "id" : 167, + "runtimeId" : 225 + }, + { + "name" : "minecraft:prismarine", + "id" : 168, + "runtimeId" : 297 + }, + { + "name" : "minecraft:sealantern", + "id" : 169, + "runtimeId" : 241 + }, + { + "name" : "minecraft:hay_block", + "id" : 170, + "runtimeId" : 76 + }, + { + "name" : "minecraft:carpet", + "id" : 171, + "runtimeId" : 249 + }, + { + "name" : "minecraft:hardened_clay", + "id" : 172, + "runtimeId" : 949 + }, + { + "name" : "minecraft:coal_block", + "id" : 173, + "runtimeId" : 883 + }, + { + "name" : "minecraft:packed_ice", + "id" : 174, + "runtimeId" : 890 + }, + { + "name" : "minecraft:double_plant", + "id" : 175, + "runtimeId" : 458 + }, + { + "name" : "minecraft:standing_banner", + "id" : 176, + "runtimeId" : 835 + }, + { + "name" : "minecraft:wall_banner", + "id" : 177, + "runtimeId" : 1038 + }, + { + "name" : "minecraft:daylight_detector_inverted", + "id" : 178, + "runtimeId" : 475 + }, + { + "name" : "minecraft:red_sandstone", + "id" : 179, + "runtimeId" : 336 + }, + { + "name" : "minecraft:red_sandstone_stairs", + "id" : 180, + "runtimeId" : 401 + }, + { + "name" : "minecraft:real_double_stone_slab2", + "id" : 181, + "runtimeId" : 146 + }, + { + "name" : "minecraft:double_stone_slab2", + "id" : 182, + "runtimeId" : 490 + }, + { + "name" : "minecraft:spruce_fence_gate", + "id" : 183, + "runtimeId" : 271 + }, + { + "name" : "minecraft:birch_fence_gate", + "id" : 184, + "runtimeId" : 847 + }, + { + "name" : "minecraft:jungle_fence_gate", + "id" : 185, + "runtimeId" : 248 + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "id" : 186, + "runtimeId" : 809 + }, + { + "name" : "minecraft:acacia_fence_gate", + "id" : 187, + "runtimeId" : 826 + }, + { + "name" : "minecraft:repeating_command_block", + "id" : 188, + "runtimeId" : 1007 + }, + { + "name" : "minecraft:chain_command_block", + "id" : 189, + "runtimeId" : 622 + }, + { + "name" : "minecraft:hard_glass_pane", + "id" : 190, + "runtimeId" : 948 + }, + { + "name" : "minecraft:hard_stained_glass_pane", + "id" : 191, + "runtimeId" : 708 + }, + { + "name" : "minecraft:chemical_heat", + "id" : 192, + "runtimeId" : 878 + }, + { + "name" : "minecraft:item.spruce_door", + "id" : 193, + "runtimeId" : 1016 + }, + { + "name" : "minecraft:item.birch_door", + "id" : 194, + "runtimeId" : 275 + }, + { + "name" : "minecraft:item.jungle_door", + "id" : 195, + "runtimeId" : 954 + }, + { + "name" : "minecraft:item.acacia_door", + "id" : 196, + "runtimeId" : 500 + }, + { + "name" : "minecraft:item.dark_oak_door", + "id" : 197, + "runtimeId" : 25 + }, + { + "name" : "minecraft:grass_path", + "id" : 198, + "runtimeId" : 942 + }, + { + "name" : "minecraft:item.frame", + "id" : 199, + "runtimeId" : 485 + }, + { + "name" : "minecraft:chorus_flower", + "id" : 200, + "runtimeId" : 853 + }, + { + "name" : "minecraft:purpur_block", + "id" : 201, + "runtimeId" : 1 + }, + { + "name" : "minecraft:colored_torch_rg", + "id" : 202, + "runtimeId" : 425 + }, + { + "name" : "minecraft:purpur_stairs", + "id" : 203, + "runtimeId" : 830 + }, + { + "name" : "minecraft:colored_torch_bp", + "id" : 204, + "runtimeId" : 542 + }, + { + "name" : "minecraft:undyed_shulker_box", + "id" : 205, + "runtimeId" : 696 + }, + { + "name" : "minecraft:end_bricks", + "id" : 206, + "runtimeId" : 3 + }, + { + "name" : "minecraft:frosted_ice", + "id" : 207, + "runtimeId" : 837 + }, + { + "name" : "minecraft:end_rod", + "id" : 208, + "runtimeId" : 705 + }, + { + "name" : "minecraft:end_gateway", + "id" : 209, + "runtimeId" : 206 + }, + { + "name" : "minecraft:allow", + "id" : 210, + "runtimeId" : 831 + }, + { + "name" : "minecraft:deny", + "id" : 211, + "runtimeId" : 345 + }, + { + "name" : "minecraft:border_block", + "id" : 212, + "runtimeId" : 859 + }, + { + "name" : "minecraft:magma", + "id" : 213, + "runtimeId" : 693 + }, + { + "name" : "minecraft:nether_wart_block", + "id" : 214, + "runtimeId" : 287 + }, + { + "name" : "minecraft:red_nether_brick", + "id" : 215, + "runtimeId" : 606 + }, + { + "name" : "minecraft:bone_block", + "id" : 216, + "runtimeId" : 858 + }, + { + "name" : "minecraft:structure_void", + "id" : 217, + "runtimeId" : 1028 + }, + { + "name" : "minecraft:shulker_box", + "id" : 218, + "runtimeId" : 341 + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "id" : 219, + "runtimeId" : 1000 + }, + { + "name" : "minecraft:white_glazed_terracotta", + "id" : 220, + "runtimeId" : 1066 + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "id" : 221, + "runtimeId" : 862 + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "id" : 222, + "runtimeId" : 266 + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "id" : 223, + "runtimeId" : 102 + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "id" : 224, + "runtimeId" : 26 + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "id" : 225, + "runtimeId" : 968 + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "id" : 226, + "runtimeId" : 870 + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "id" : 227, + "runtimeId" : 945 + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "id" : 228, + "runtimeId" : 53 + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "id" : 229, + "runtimeId" : 799 + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "id" : 231, + "runtimeId" : 857 + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "id" : 232, + "runtimeId" : 864 + }, + { + "name" : "minecraft:green_glazed_terracotta", + "id" : 233, + "runtimeId" : 946 + }, + { + "name" : "minecraft:red_glazed_terracotta", + "id" : 234, + "runtimeId" : 1002 + }, + { + "name" : "minecraft:black_glazed_terracotta", + "id" : 235, + "runtimeId" : 757 + }, + { + "name" : "minecraft:concrete", + "id" : 236, + "runtimeId" : 629 + }, + { + "name" : "minecraft:concrete_powder", + "id" : 237, + "runtimeId" : 283 + }, + { + "name" : "minecraft:chemistry_table", + "id" : 238, + "runtimeId" : 301 + }, + { + "name" : "minecraft:underwater_torch", + "id" : 239, + "runtimeId" : 1034 + }, + { + "name" : "minecraft:chorus_plant", + "id" : 240, + "runtimeId" : 882 + }, + { + "name" : "minecraft:stained_glass", + "id" : 241, + "runtimeId" : 370 + }, + { + "name" : "minecraft:item.camera", + "id" : 242, + "runtimeId" : 868 + }, + { + "name" : "minecraft:podzol", + "id" : 243, + "runtimeId" : 988 + }, + { + "name" : "minecraft:item.beetroot", + "id" : 244, + "runtimeId" : 208 + }, + { + "name" : "minecraft:stonecutter", + "id" : 245, + "runtimeId" : 1021 + }, + { + "name" : "minecraft:glowingobsidian", + "id" : 246, + "runtimeId" : 453 + }, + { + "name" : "minecraft:netherreactor", + "id" : 247, + "runtimeId" : 981 + }, + { + "name" : "minecraft:info_update", + "id" : 248, + "runtimeId" : 951 + }, + { + "name" : "minecraft:info_update2", + "id" : 249, + "runtimeId" : 567 + }, + { + "name" : "minecraft:movingblock", + "id" : 250, + "runtimeId" : 973 + }, + { + "name" : "minecraft:observer", + "id" : 251, + "runtimeId" : 701 + }, + { + "name" : "minecraft:structure_block", + "id" : 252, + "runtimeId" : 1027 + }, + { + "name" : "minecraft:hard_glass", + "id" : 253, + "runtimeId" : 648 + }, + { + "name" : "minecraft:hard_stained_glass", + "id" : 254, + "runtimeId" : 238 + }, + { + "name" : "minecraft:reserved6", + "id" : 255, + "runtimeId" : 334 + }, + { + "name" : "minecraft:apple", + "id" : 257, + "runtimeId" : 15 + }, + { + "name" : "minecraft:golden_apple", + "id" : 258, + "runtimeId" : 16 + }, + { + "name" : "minecraft:enchanted_golden_apple", + "id" : 259, + "runtimeId" : 23 + }, + { + "name" : "minecraft:mushroom_stew", + "id" : 260, + "runtimeId" : 10 + }, + { + "name" : "minecraft:bread", + "id" : 261, + "runtimeId" : 37 + }, + { + "name" : "minecraft:porkchop", + "id" : 262, + "runtimeId" : 33 + }, + { + "name" : "minecraft:cooked_porkchop", + "id" : 263, + "runtimeId" : 12 + }, + { + "name" : "minecraft:cod", + "id" : 264, + "runtimeId" : 43 + }, + { + "name" : "minecraft:salmon", + "id" : 265, + "runtimeId" : 49 + }, + { + "name" : "minecraft:tropical_fish", + "id" : 266, + "runtimeId" : 52 + }, + { + "name" : "minecraft:pufferfish", + "id" : 267, + "runtimeId" : 59 + }, + { + "name" : "minecraft:cooked_cod", + "id" : 268, + "runtimeId" : 0 + }, + { + "name" : "minecraft:cooked_salmon", + "id" : 269, + "runtimeId" : 66 + }, + { + "name" : "minecraft:dried_kelp", + "id" : 270, + "runtimeId" : 67 + }, + { + "name" : "minecraft:cookie", + "id" : 271, + "runtimeId" : 34 + }, + { + "name" : "minecraft:melon_slice", + "id" : 272, + "runtimeId" : 71 + }, + { + "name" : "minecraft:beef", + "id" : 273, + "runtimeId" : 47 + }, + { + "name" : "minecraft:cooked_beef", + "id" : 274, + "runtimeId" : 80 + }, + { + "name" : "minecraft:chicken", + "id" : 275, + "runtimeId" : 88 + }, + { + "name" : "minecraft:cooked_chicken", + "id" : 276, + "runtimeId" : 100 + }, + { + "name" : "minecraft:rotten_flesh", + "id" : 277, + "runtimeId" : 92 + }, + { + "name" : "minecraft:spider_eye", + "id" : 278, + "runtimeId" : 103 + }, + { + "name" : "minecraft:carrot", + "id" : 279, + "runtimeId" : 85 + }, + { + "name" : "minecraft:potato", + "id" : 280, + "runtimeId" : 19 + }, + { + "name" : "minecraft:baked_potato", + "id" : 281, + "runtimeId" : 105 + }, + { + "name" : "minecraft:poisonous_potato", + "id" : 282, + "runtimeId" : 109 + }, + { + "name" : "minecraft:golden_carrot", + "id" : 283, + "runtimeId" : 106 + }, + { + "name" : "minecraft:pumpkin_pie", + "id" : 284, + "runtimeId" : 111 + }, + { + "name" : "minecraft:beetroot", + "id" : 285, + "runtimeId" : 116 + }, + { + "name" : "minecraft:beetroot_soup", + "id" : 286, + "runtimeId" : 68 + }, + { + "name" : "minecraft:sweet_berries", + "id" : 287, + "runtimeId" : 121 + }, + { + "name" : "minecraft:rabbit", + "id" : 288, + "runtimeId" : 7 + }, + { + "name" : "minecraft:cooked_rabbit", + "id" : 289, + "runtimeId" : 39 + }, + { + "name" : "minecraft:rabbit_stew", + "id" : 290, + "runtimeId" : 123 + }, + { + "name" : "minecraft:wheat_seeds", + "id" : 291, + "runtimeId" : 124 + }, + { + "name" : "minecraft:pumpkin_seeds", + "id" : 292, + "runtimeId" : 127 + }, + { + "name" : "minecraft:melon_seeds", + "id" : 293, + "runtimeId" : 130 + }, + { + "name" : "minecraft:nether_wart", + "id" : 294, + "runtimeId" : 134 + }, + { + "name" : "minecraft:beetroot_seeds", + "id" : 295, + "runtimeId" : 136 + }, + { + "name" : "minecraft:iron_shovel", + "id" : 296, + "runtimeId" : 137 + }, + { + "name" : "minecraft:iron_pickaxe", + "id" : 297, + "runtimeId" : 46 + }, + { + "name" : "minecraft:iron_axe", + "id" : 298, + "runtimeId" : 133 + }, + { + "name" : "minecraft:flint_and_steel", + "id" : 299, + "runtimeId" : 141 + }, + { + "name" : "minecraft:bow", + "id" : 300, + "runtimeId" : 2 + }, + { + "name" : "minecraft:arrow", + "id" : 301, + "runtimeId" : 143 + }, + { + "name" : "minecraft:coal", + "id" : 302, + "runtimeId" : 145 + }, + { + "name" : "minecraft:charcoal", + "id" : 303, + "runtimeId" : 147 + }, + { + "name" : "minecraft:diamond", + "id" : 304, + "runtimeId" : 150 + }, + { + "name" : "minecraft:iron_ingot", + "id" : 305, + "runtimeId" : 30 + }, + { + "name" : "minecraft:gold_ingot", + "id" : 306, + "runtimeId" : 28 + }, + { + "name" : "minecraft:iron_sword", + "id" : 307, + "runtimeId" : 115 + }, + { + "name" : "minecraft:wooden_sword", + "id" : 308, + "runtimeId" : 151 + }, + { + "name" : "minecraft:wooden_shovel", + "id" : 309, + "runtimeId" : 75 + }, + { + "name" : "minecraft:wooden_pickaxe", + "id" : 310, + "runtimeId" : 70 + }, + { + "name" : "minecraft:wooden_axe", + "id" : 311, + "runtimeId" : 157 + }, + { + "name" : "minecraft:stone_sword", + "id" : 312, + "runtimeId" : 101 + }, + { + "name" : "minecraft:stone_shovel", + "id" : 313, + "runtimeId" : 142 + }, + { + "name" : "minecraft:stone_pickaxe", + "id" : 314, + "runtimeId" : 161 + }, + { + "name" : "minecraft:stone_axe", + "id" : 315, + "runtimeId" : 56 + }, + { + "name" : "minecraft:diamond_sword", + "id" : 316, + "runtimeId" : 166 + }, + { + "name" : "minecraft:diamond_shovel", + "id" : 317, + "runtimeId" : 165 + }, + { + "name" : "minecraft:diamond_pickaxe", + "id" : 318, + "runtimeId" : 113 + }, + { + "name" : "minecraft:diamond_axe", + "id" : 319, + "runtimeId" : 168 + }, + { + "name" : "minecraft:stick", + "id" : 320, + "runtimeId" : 169 + }, + { + "name" : "minecraft:bowl", + "id" : 321, + "runtimeId" : 170 + }, + { + "name" : "minecraft:golden_sword", + "id" : 322, + "runtimeId" : 172 + }, + { + "name" : "minecraft:golden_shovel", + "id" : 323, + "runtimeId" : 173 + }, + { + "name" : "minecraft:golden_pickaxe", + "id" : 324, + "runtimeId" : 177 + }, + { + "name" : "minecraft:golden_axe", + "id" : 325, + "runtimeId" : 179 + }, + { + "name" : "minecraft:string", + "id" : 326, + "runtimeId" : 182 + }, + { + "name" : "minecraft:feather", + "id" : 327, + "runtimeId" : 183 + }, + { + "name" : "minecraft:gunpowder", + "id" : 328, + "runtimeId" : 185 + }, + { + "name" : "minecraft:wooden_hoe", + "id" : 329, + "runtimeId" : 187 + }, + { + "name" : "minecraft:stone_hoe", + "id" : 330, + "runtimeId" : 190 + }, + { + "name" : "minecraft:iron_hoe", + "id" : 331, + "runtimeId" : 191 + }, + { + "name" : "minecraft:diamond_hoe", + "id" : 332, + "runtimeId" : 193 + }, + { + "name" : "minecraft:golden_hoe", + "id" : 333, + "runtimeId" : 194 + }, + { + "name" : "minecraft:wheat", + "id" : 334, + "runtimeId" : 196 + }, + { + "name" : "minecraft:leather_helmet", + "id" : 335, + "runtimeId" : 198 + }, + { + "name" : "minecraft:leather_chestplate", + "id" : 336, + "runtimeId" : 199 + }, + { + "name" : "minecraft:leather_leggings", + "id" : 337, + "runtimeId" : 200 + }, + { + "name" : "minecraft:leather_boots", + "id" : 338, + "runtimeId" : 202 + }, + { + "name" : "minecraft:chainmail_helmet", + "id" : 339, + "runtimeId" : 164 + }, + { + "name" : "minecraft:chainmail_chestplate", + "id" : 340, + "runtimeId" : 205 + }, + { + "name" : "minecraft:chainmail_leggings", + "id" : 341, + "runtimeId" : 207 + }, + { + "name" : "minecraft:chainmail_boots", + "id" : 342, + "runtimeId" : 210 + }, + { + "name" : "minecraft:iron_helmet", + "id" : 343, + "runtimeId" : 214 + }, + { + "name" : "minecraft:iron_chestplate", + "id" : 344, + "runtimeId" : 217 + }, + { + "name" : "minecraft:iron_leggings", + "id" : 345, + "runtimeId" : 218 + }, + { + "name" : "minecraft:iron_boots", + "id" : 346, + "runtimeId" : 219 + }, + { + "name" : "minecraft:diamond_helmet", + "id" : 347, + "runtimeId" : 223 + }, + { + "name" : "minecraft:diamond_chestplate", + "id" : 348, + "runtimeId" : 226 + }, + { + "name" : "minecraft:diamond_leggings", + "id" : 349, + "runtimeId" : 233 + }, + { + "name" : "minecraft:diamond_boots", + "id" : 350, + "runtimeId" : 234 + }, + { + "name" : "minecraft:golden_helmet", + "id" : 351, + "runtimeId" : 235 + }, + { + "name" : "minecraft:golden_chestplate", + "id" : 352, + "runtimeId" : 240 + }, + { + "name" : "minecraft:golden_leggings", + "id" : 353, + "runtimeId" : 242 + }, + { + "name" : "minecraft:golden_boots", + "id" : 354, + "runtimeId" : 244 + }, + { + "name" : "minecraft:shield", + "id" : 355, + "runtimeId" : 246 + }, + { + "name" : "minecraft:flint", + "id" : 356, + "runtimeId" : 251 + }, + { + "name" : "minecraft:painting", + "id" : 357, + "runtimeId" : 253 + }, + { + "name" : "minecraft:oak_sign", + "id" : 358, + "runtimeId" : 255 + }, + { + "name" : "minecraft:wooden_door", + "id" : 359, + "runtimeId" : 258 + }, + { + "name" : "minecraft:bucket", + "id" : 360, + "runtimeId" : 61 + }, + { + "name" : "minecraft:milk_bucket", + "id" : 361, + "runtimeId" : 259 + }, + { + "name" : "minecraft:water_bucket", + "id" : 362, + "runtimeId" : 260 + }, + { + "name" : "minecraft:lava_bucket", + "id" : 363, + "runtimeId" : 265 + }, + { + "name" : "minecraft:cod_bucket", + "id" : 364, + "runtimeId" : 268 + }, + { + "name" : "minecraft:salmon_bucket", + "id" : 365, + "runtimeId" : 163 + }, + { + "name" : "minecraft:tropical_fish_bucket", + "id" : 366, + "runtimeId" : 272 + }, + { + "name" : "minecraft:pufferfish_bucket", + "id" : 367, + "runtimeId" : 274 + }, + { + "name" : "minecraft:powder_snow_bucket", + "id" : 368, + "runtimeId" : 278 + }, + { + "name" : "minecraft:axolotl_bucket", + "id" : 369, + "runtimeId" : 280 + }, + { + "name" : "minecraft:minecart", + "id" : 370, + "runtimeId" : 284 + }, + { + "name" : "minecraft:saddle", + "id" : 371, + "runtimeId" : 285 + }, + { + "name" : "minecraft:iron_door", + "id" : 372, + "runtimeId" : 289 + }, + { + "name" : "minecraft:redstone", + "id" : 373, + "runtimeId" : 290 + }, + { + "name" : "minecraft:snowball", + "id" : 374, + "runtimeId" : 213 + }, + { + "name" : "minecraft:oak_boat", + "id" : 375, + "runtimeId" : 293 + }, + { + "name" : "minecraft:birch_boat", + "id" : 376, + "runtimeId" : 295 + }, + { + "name" : "minecraft:jungle_boat", + "id" : 377, + "runtimeId" : 298 + }, + { + "name" : "minecraft:spruce_boat", + "id" : 378, + "runtimeId" : 302 + }, + { + "name" : "minecraft:acacia_boat", + "id" : 379, + "runtimeId" : 303 + }, + { + "name" : "minecraft:dark_oak_boat", + "id" : 380, + "runtimeId" : 304 + }, + { + "name" : "minecraft:leather", + "id" : 381, + "runtimeId" : 305 + }, + { + "name" : "minecraft:kelp", + "id" : 382, + "runtimeId" : 309 + }, + { + "name" : "minecraft:brick", + "id" : 383, + "runtimeId" : 311 + }, + { + "name" : "minecraft:clay_ball", + "id" : 384, + "runtimeId" : 312 + }, + { + "name" : "minecraft:sugar_cane", + "id" : 385, + "runtimeId" : 314 + }, + { + "name" : "minecraft:paper", + "id" : 386, + "runtimeId" : 317 + }, + { + "name" : "minecraft:book", + "id" : 387, + "runtimeId" : 319 + }, + { + "name" : "minecraft:slime_ball", + "id" : 388, + "runtimeId" : 322 + }, + { + "name" : "minecraft:chest_minecart", + "id" : 389, + "runtimeId" : 323 + }, + { + "name" : "minecraft:egg", + "id" : 390, + "runtimeId" : 325 + }, + { + "name" : "minecraft:compass", + "id" : 391, + "runtimeId" : 329 + }, + { + "name" : "minecraft:fishing_rod", + "id" : 392, + "runtimeId" : 331 + }, + { + "name" : "minecraft:clock", + "id" : 393, + "runtimeId" : 335 + }, + { + "name" : "minecraft:glowstone_dust", + "id" : 394, + "runtimeId" : 338 + }, + { + "name" : "minecraft:black_dye", + "id" : 395, + "runtimeId" : 339 + }, + { + "name" : "minecraft:red_dye", + "id" : 396, + "runtimeId" : 263 + }, + { + "name" : "minecraft:green_dye", + "id" : 397, + "runtimeId" : 342 + }, + { + "name" : "minecraft:brown_dye", + "id" : 398, + "runtimeId" : 346 + }, + { + "name" : "minecraft:blue_dye", + "id" : 399, + "runtimeId" : 349 + }, + { + "name" : "minecraft:purple_dye", + "id" : 400, + "runtimeId" : 350 + }, + { + "name" : "minecraft:cyan_dye", + "id" : 401, + "runtimeId" : 354 + }, + { + "name" : "minecraft:light_gray_dye", + "id" : 402, + "runtimeId" : 356 + }, + { + "name" : "minecraft:gray_dye", + "id" : 403, + "runtimeId" : 359 + }, + { + "name" : "minecraft:pink_dye", + "id" : 404, + "runtimeId" : 361 + }, + { + "name" : "minecraft:lime_dye", + "id" : 405, + "runtimeId" : 362 + }, + { + "name" : "minecraft:yellow_dye", + "id" : 406, + "runtimeId" : 363 + }, + { + "name" : "minecraft:light_blue_dye", + "id" : 407, + "runtimeId" : 368 + }, + { + "name" : "minecraft:magenta_dye", + "id" : 408, + "runtimeId" : 195 + }, + { + "name" : "minecraft:orange_dye", + "id" : 409, + "runtimeId" : 371 + }, + { + "name" : "minecraft:white_dye", + "id" : 410, + "runtimeId" : 374 + }, + { + "name" : "minecraft:bone_meal", + "id" : 411, + "runtimeId" : 375 + }, + { + "name" : "minecraft:cocoa_beans", + "id" : 412, + "runtimeId" : 51 + }, + { + "name" : "minecraft:ink_sac", + "id" : 413, + "runtimeId" : 379 + }, + { + "name" : "minecraft:lapis_lazuli", + "id" : 414, + "runtimeId" : 383 + }, + { + "name" : "minecraft:bone", + "id" : 415, + "runtimeId" : 264 + }, + { + "name" : "minecraft:sugar", + "id" : 416, + "runtimeId" : 386 + }, + { + "name" : "minecraft:cake", + "id" : 417, + "runtimeId" : 389 + }, + { + "name" : "minecraft:bed", + "id" : 418, + "runtimeId" : 369 + }, + { + "name" : "minecraft:repeater", + "id" : 419, + "runtimeId" : 391 + }, + { + "name" : "minecraft:filled_map", + "id" : 420, + "runtimeId" : 394 + }, + { + "name" : "minecraft:shears", + "id" : 421, + "runtimeId" : 398 + }, + { + "name" : "minecraft:ender_pearl", + "id" : 422, + "runtimeId" : 399 + }, + { + "name" : "minecraft:blaze_rod", + "id" : 423, + "runtimeId" : 355 + }, + { + "name" : "minecraft:ghast_tear", + "id" : 424, + "runtimeId" : 402 + }, + { + "name" : "minecraft:gold_nugget", + "id" : 425, + "runtimeId" : 310 + }, + { + "name" : "minecraft:potion", + "id" : 426, + "runtimeId" : 87 + }, + { + "name" : "minecraft:glass_bottle", + "id" : 427, + "runtimeId" : 403 + }, + { + "name" : "minecraft:fermented_spider_eye", + "id" : 428, + "runtimeId" : 409 + }, + { + "name" : "minecraft:blaze_powder", + "id" : 429, + "runtimeId" : 411 + }, + { + "name" : "minecraft:magma_cream", + "id" : 430, + "runtimeId" : 412 + }, + { + "name" : "minecraft:brewing_stand", + "id" : 431, + "runtimeId" : 413 + }, + { + "name" : "minecraft:cauldron", + "id" : 432, + "runtimeId" : 416 + }, + { + "name" : "minecraft:ender_eye", + "id" : 433, + "runtimeId" : 221 + }, + { + "name" : "minecraft:glistering_melon_slice", + "id" : 434, + "runtimeId" : 201 + }, + { + "name" : "minecraft:chicken_spawn_egg", + "id" : 435, + "runtimeId" : 417 + }, + { + "name" : "minecraft:cow_spawn_egg", + "id" : 436, + "runtimeId" : 324 + }, + { + "name" : "minecraft:pig_spawn_egg", + "id" : 437, + "runtimeId" : 418 + }, + { + "name" : "minecraft:sheep_spawn_egg", + "id" : 438, + "runtimeId" : 419 + }, + { + "name" : "minecraft:wolf_spawn_egg", + "id" : 439, + "runtimeId" : 282 + }, + { + "name" : "minecraft:mooshroom_spawn_egg", + "id" : 440, + "runtimeId" : 420 + }, + { + "name" : "minecraft:creeper_spawn_egg", + "id" : 441, + "runtimeId" : 388 + }, + { + "name" : "minecraft:enderman_spawn_egg", + "id" : 442, + "runtimeId" : 5 + }, + { + "name" : "minecraft:silverfish_spawn_egg", + "id" : 443, + "runtimeId" : 300 + }, + { + "name" : "minecraft:skeleton_spawn_egg", + "id" : 444, + "runtimeId" : 422 + }, + { + "name" : "minecraft:slime_spawn_egg", + "id" : 445, + "runtimeId" : 31 + }, + { + "name" : "minecraft:spider_spawn_egg", + "id" : 446, + "runtimeId" : 427 + }, + { + "name" : "minecraft:zombie_spawn_egg", + "id" : 447, + "runtimeId" : 429 + }, + { + "name" : "minecraft:zombie_pigman_spawn_egg", + "id" : 448, + "runtimeId" : 160 + }, + { + "name" : "minecraft:villager_spawn_egg", + "id" : 449, + "runtimeId" : 430 + }, + { + "name" : "minecraft:squid_spawn_egg", + "id" : 450, + "runtimeId" : 431 + }, + { + "name" : "minecraft:ocelot_spawn_egg", + "id" : 451, + "runtimeId" : 332 + }, + { + "name" : "minecraft:witch_spawn_egg", + "id" : 452, + "runtimeId" : 95 + }, + { + "name" : "minecraft:bat_spawn_egg", + "id" : 453, + "runtimeId" : 434 + }, + { + "name" : "minecraft:ghast_spawn_egg", + "id" : 454, + "runtimeId" : 435 + }, + { + "name" : "minecraft:magma_cube_spawn_egg", + "id" : 455, + "runtimeId" : 440 + }, + { + "name" : "minecraft:blaze_spawn_egg", + "id" : 456, + "runtimeId" : 48 + }, + { + "name" : "minecraft:cave_spider_spawn_egg", + "id" : 457, + "runtimeId" : 444 + }, + { + "name" : "minecraft:horse_spawn_egg", + "id" : 458, + "runtimeId" : 104 + }, + { + "name" : "minecraft:rabbit_spawn_egg", + "id" : 459, + "runtimeId" : 360 + }, + { + "name" : "minecraft:endermite_spawn_egg", + "id" : 460, + "runtimeId" : 445 + }, + { + "name" : "minecraft:guardian_spawn_egg", + "id" : 461, + "runtimeId" : 446 + }, + { + "name" : "minecraft:stray_spawn_egg", + "id" : 462, + "runtimeId" : 148 + }, + { + "name" : "minecraft:husk_spawn_egg", + "id" : 463, + "runtimeId" : 448 + }, + { + "name" : "minecraft:wither_skeleton_spawn_egg", + "id" : 464, + "runtimeId" : 451 + }, + { + "name" : "minecraft:donkey_spawn_egg", + "id" : 465, + "runtimeId" : 456 + }, + { + "name" : "minecraft:mule_spawn_egg", + "id" : 466, + "runtimeId" : 457 + }, + { + "name" : "minecraft:skeleton_horse_spawn_egg", + "id" : 467, + "runtimeId" : 459 + }, + { + "name" : "minecraft:zombie_horse_spawn_egg", + "id" : 468, + "runtimeId" : 463 + }, + { + "name" : "minecraft:shulker_spawn_egg", + "id" : 469, + "runtimeId" : 262 + }, + { + "name" : "minecraft:npc_spawn_egg", + "id" : 470, + "runtimeId" : 465 + }, + { + "name" : "minecraft:elder_guardian_spawn_egg", + "id" : 471, + "runtimeId" : 291 + }, + { + "name" : "minecraft:polar_bear_spawn_egg", + "id" : 472, + "runtimeId" : 467 + }, + { + "name" : "minecraft:llama_spawn_egg", + "id" : 473, + "runtimeId" : 470 + }, + { + "name" : "minecraft:vindicator_spawn_egg", + "id" : 474, + "runtimeId" : 267 + }, + { + "name" : "minecraft:evoker_spawn_egg", + "id" : 475, + "runtimeId" : 277 + }, + { + "name" : "minecraft:vex_spawn_egg", + "id" : 476, + "runtimeId" : 472 + }, + { + "name" : "minecraft:zombie_villager_spawn_egg", + "id" : 477, + "runtimeId" : 477 + }, + { + "name" : "minecraft:parrot_spawn_egg", + "id" : 478, + "runtimeId" : 281 + }, + { + "name" : "minecraft:tropical_fish_spawn_egg", + "id" : 479, + "runtimeId" : 480 + }, + { + "name" : "minecraft:cod_spawn_egg", + "id" : 480, + "runtimeId" : 483 + }, + { + "name" : "minecraft:pufferfish_spawn_egg", + "id" : 481, + "runtimeId" : 487 + }, + { + "name" : "minecraft:salmon_spawn_egg", + "id" : 482, + "runtimeId" : 489 + }, + { + "name" : "minecraft:drowned_spawn_egg", + "id" : 483, + "runtimeId" : 396 + }, + { + "name" : "minecraft:dolphin_spawn_egg", + "id" : 484, + "runtimeId" : 491 + }, + { + "name" : "minecraft:turtle_spawn_egg", + "id" : 485, + "runtimeId" : 494 + }, + { + "name" : "minecraft:phantom_spawn_egg", + "id" : 486, + "runtimeId" : 495 + }, + { + "name" : "minecraft:agent_spawn_egg", + "id" : 487, + "runtimeId" : 250 + }, + { + "name" : "minecraft:cat_spawn_egg", + "id" : 488, + "runtimeId" : 499 + }, + { + "name" : "minecraft:panda_spawn_egg", + "id" : 489, + "runtimeId" : 189 + }, + { + "name" : "minecraft:fox_spawn_egg", + "id" : 490, + "runtimeId" : 502 + }, + { + "name" : "minecraft:pillager_spawn_egg", + "id" : 491, + "runtimeId" : 45 + }, + { + "name" : "minecraft:wandering_trader_spawn_egg", + "id" : 492, + "runtimeId" : 505 + }, + { + "name" : "minecraft:ravager_spawn_egg", + "id" : 493, + "runtimeId" : 11 + }, + { + "name" : "minecraft:bee_spawn_egg", + "id" : 494, + "runtimeId" : 343 + }, + { + "name" : "minecraft:strider_spawn_egg", + "id" : 495, + "runtimeId" : 86 + }, + { + "name" : "minecraft:hoglin_spawn_egg", + "id" : 496, + "runtimeId" : 507 + }, + { + "name" : "minecraft:piglin_spawn_egg", + "id" : 497, + "runtimeId" : 449 + }, + { + "name" : "minecraft:zoglin_spawn_egg", + "id" : 498, + "runtimeId" : 140 + }, + { + "name" : "minecraft:piglin_brute_spawn_egg", + "id" : 499, + "runtimeId" : 357 + }, + { + "name" : "minecraft:axolotl_spawn_egg", + "id" : 500, + "runtimeId" : 232 + }, + { + "name" : "minecraft:goat_spawn_egg", + "id" : 501, + "runtimeId" : 508 + }, + { + "name" : "minecraft:glow_squid_spawn_egg", + "id" : 502, + "runtimeId" : 41 + }, + { + "name" : "minecraft:glow_ink_sac", + "id" : 503, + "runtimeId" : 510 + }, + { + "name" : "minecraft:copper_ingot", + "id" : 504, + "runtimeId" : 511 + }, + { + "name" : "minecraft:raw_iron", + "id" : 505, + "runtimeId" : 132 + }, + { + "name" : "minecraft:raw_gold", + "id" : 506, + "runtimeId" : 158 + }, + { + "name" : "minecraft:raw_copper", + "id" : 507, + "runtimeId" : 530 + }, + { + "name" : "minecraft:experience_bottle", + "id" : 508, + "runtimeId" : 531 + }, + { + "name" : "minecraft:fire_charge", + "id" : 509, + "runtimeId" : 525 + }, + { + "name" : "minecraft:writable_book", + "id" : 510, + "runtimeId" : 532 + }, + { + "name" : "minecraft:written_book", + "id" : 511, + "runtimeId" : 307 + }, + { + "name" : "minecraft:emerald", + "id" : 512, + "runtimeId" : 534 + }, + { + "name" : "minecraft:frame", + "id" : 513, + "runtimeId" : 348 + }, + { + "name" : "minecraft:flower_pot", + "id" : 514, + "runtimeId" : 536 + }, + { + "name" : "minecraft:empty_map", + "id" : 515, + "runtimeId" : 538 + }, + { + "name" : "minecraft:skull", + "id" : 516, + "runtimeId" : 539 + }, + { + "name" : "minecraft:carrot_on_a_stick", + "id" : 517, + "runtimeId" : 504 + }, + { + "name" : "minecraft:nether_star", + "id" : 518, + "runtimeId" : 22 + }, + { + "name" : "minecraft:firework_rocket", + "id" : 519, + "runtimeId" : 540 + }, + { + "name" : "minecraft:firework_star", + "id" : 520, + "runtimeId" : 543 + }, + { + "name" : "minecraft:enchanted_book", + "id" : 521, + "runtimeId" : 545 + }, + { + "name" : "minecraft:comparator", + "id" : 522, + "runtimeId" : 83 + }, + { + "name" : "minecraft:netherbrick", + "id" : 523, + "runtimeId" : 547 + }, + { + "name" : "minecraft:quartz", + "id" : 524, + "runtimeId" : 503 + }, + { + "name" : "minecraft:tnt_minecart", + "id" : 525, + "runtimeId" : 549 + }, + { + "name" : "minecraft:hopper_minecart", + "id" : 526, + "runtimeId" : 550 + }, + { + "name" : "minecraft:hopper", + "id" : 527, + "runtimeId" : 552 + }, + { + "name" : "minecraft:rabbit_foot", + "id" : 528, + "runtimeId" : 99 + }, + { + "name" : "minecraft:rabbit_hide", + "id" : 529, + "runtimeId" : 554 + }, + { + "name" : "minecraft:leather_horse_armor", + "id" : 530, + "runtimeId" : 555 + }, + { + "name" : "minecraft:iron_horse_armor", + "id" : 531, + "runtimeId" : 556 + }, + { + "name" : "minecraft:golden_horse_armor", + "id" : 532, + "runtimeId" : 17 + }, + { + "name" : "minecraft:diamond_horse_armor", + "id" : 533, + "runtimeId" : 557 + }, + { + "name" : "minecraft:music_disc_13", + "id" : 534, + "runtimeId" : 353 + }, + { + "name" : "minecraft:music_disc_cat", + "id" : 535, + "runtimeId" : 560 + }, + { + "name" : "minecraft:music_disc_blocks", + "id" : 536, + "runtimeId" : 561 + }, + { + "name" : "minecraft:music_disc_chirp", + "id" : 537, + "runtimeId" : 38 + }, + { + "name" : "minecraft:music_disc_far", + "id" : 538, + "runtimeId" : 563 + }, + { + "name" : "minecraft:music_disc_mall", + "id" : 539, + "runtimeId" : 154 + }, + { + "name" : "minecraft:music_disc_mellohi", + "id" : 540, + "runtimeId" : 564 + }, + { + "name" : "minecraft:music_disc_stal", + "id" : 541, + "runtimeId" : 327 + }, + { + "name" : "minecraft:music_disc_strad", + "id" : 542, + "runtimeId" : 119 + }, + { + "name" : "minecraft:music_disc_ward", + "id" : 543, + "runtimeId" : 4 + }, + { + "name" : "minecraft:music_disc_11", + "id" : 544, + "runtimeId" : 276 + }, + { + "name" : "minecraft:music_disc_wait", + "id" : 545, + "runtimeId" : 257 + }, + { + "name" : "minecraft:trident", + "id" : 546, + "runtimeId" : 321 + }, + { + "name" : "minecraft:lead", + "id" : 547, + "runtimeId" : 566 + }, + { + "name" : "minecraft:name_tag", + "id" : 548, + "runtimeId" : 387 + }, + { + "name" : "minecraft:prismarine_crystals", + "id" : 549, + "runtimeId" : 565 + }, + { + "name" : "minecraft:mutton", + "id" : 550, + "runtimeId" : 523 + }, + { + "name" : "minecraft:cooked_mutton", + "id" : 551, + "runtimeId" : 405 + }, + { + "name" : "minecraft:armor_stand", + "id" : 552, + "runtimeId" : 570 + }, + { + "name" : "minecraft:spruce_door", + "id" : 553, + "runtimeId" : 572 + }, + { + "name" : "minecraft:birch_door", + "id" : 554, + "runtimeId" : 573 + }, + { + "name" : "minecraft:jungle_door", + "id" : 555, + "runtimeId" : 559 + }, + { + "name" : "minecraft:acacia_door", + "id" : 556, + "runtimeId" : 574 + }, + { + "name" : "minecraft:dark_oak_door", + "id" : 557, + "runtimeId" : 577 + }, + { + "name" : "minecraft:chorus_fruit", + "id" : 558, + "runtimeId" : 381 + }, + { + "name" : "minecraft:popped_chorus_fruit", + "id" : 559, + "runtimeId" : 578 + }, + { + "name" : "minecraft:dragon_breath", + "id" : 560, + "runtimeId" : 551 + }, + { + "name" : "minecraft:splash_potion", + "id" : 561, + "runtimeId" : 580 + }, + { + "name" : "minecraft:lingering_potion", + "id" : 562, + "runtimeId" : 98 + }, + { + "name" : "minecraft:command_block_minecart", + "id" : 563, + "runtimeId" : 129 + }, + { + "name" : "minecraft:elytra", + "id" : 564, + "runtimeId" : 176 + }, + { + "name" : "minecraft:prismarine_shard", + "id" : 565, + "runtimeId" : 518 + }, + { + "name" : "minecraft:shulker_shell", + "id" : 566, + "runtimeId" : 581 + }, + { + "name" : "minecraft:banner", + "id" : 567, + "runtimeId" : 583 + }, + { + "name" : "minecraft:totem_of_undying", + "id" : 568, + "runtimeId" : 546 + }, + { + "name" : "minecraft:iron_nugget", + "id" : 569, + "runtimeId" : 584 + }, + { + "name" : "minecraft:nautilus_shell", + "id" : 570, + "runtimeId" : 74 + }, + { + "name" : "minecraft:heart_of_the_sea", + "id" : 571, + "runtimeId" : 252 + }, + { + "name" : "minecraft:scute", + "id" : 572, + "runtimeId" : 32 + }, + { + "name" : "minecraft:turtle_helmet", + "id" : 573, + "runtimeId" : 377 + }, + { + "name" : "minecraft:phantom_membrane", + "id" : 574, + "runtimeId" : 571 + }, + { + "name" : "minecraft:crossbow", + "id" : 575, + "runtimeId" : 292 + }, + { + "name" : "minecraft:spruce_sign", + "id" : 576, + "runtimeId" : 455 + }, + { + "name" : "minecraft:birch_sign", + "id" : 577, + "runtimeId" : 587 + }, + { + "name" : "minecraft:jungle_sign", + "id" : 578, + "runtimeId" : 590 + }, + { + "name" : "minecraft:acacia_sign", + "id" : 579, + "runtimeId" : 568 + }, + { + "name" : "minecraft:dark_oak_sign", + "id" : 580, + "runtimeId" : 591 + }, + { + "name" : "minecraft:flower_banner_pattern", + "id" : 581, + "runtimeId" : 592 + }, + { + "name" : "minecraft:creeper_banner_pattern", + "id" : 582, + "runtimeId" : 8 + }, + { + "name" : "minecraft:skull_banner_pattern", + "id" : 583, + "runtimeId" : 186 + }, + { + "name" : "minecraft:mojang_banner_pattern", + "id" : 584, + "runtimeId" : 594 + }, + { + "name" : "minecraft:field_masoned_banner_pattern", + "id" : 585, + "runtimeId" : 596 + }, + { + "name" : "minecraft:bordure_indented_banner_pattern", + "id" : 586, + "runtimeId" : 599 + }, + { + "name" : "minecraft:piglin_banner_pattern", + "id" : 587, + "runtimeId" : 601 + }, + { + "name" : "minecraft:campfire", + "id" : 588, + "runtimeId" : 97 + }, + { + "name" : "minecraft:suspicious_stew", + "id" : 589, + "runtimeId" : 385 + }, + { + "name" : "minecraft:honeycomb", + "id" : 590, + "runtimeId" : 604 + }, + { + "name" : "minecraft:honey_bottle", + "id" : 591, + "runtimeId" : 605 + }, + { + "name" : "minecraft:camera", + "id" : 592, + "runtimeId" : 380 + }, + { + "name" : "minecraft:compound", + "id" : 593, + "runtimeId" : 608 + }, + { + "name" : "minecraft:ice_bomb", + "id" : 594, + "runtimeId" : 609 + }, + { + "name" : "minecraft:bleach", + "id" : 595, + "runtimeId" : 426 + }, + { + "name" : "minecraft:rapid_fertilizer", + "id" : 596, + "runtimeId" : 479 + }, + { + "name" : "minecraft:balloon", + "id" : 597, + "runtimeId" : 589 + }, + { + "name" : "minecraft:medicine", + "id" : 598, + "runtimeId" : 610 + }, + { + "name" : "minecraft:sparkler", + "id" : 599, + "runtimeId" : 63 + }, + { + "name" : "minecraft:lodestone_compass", + "id" : 600, + "runtimeId" : 616 + }, + { + "name" : "minecraft:netherite_ingot", + "id" : 601, + "runtimeId" : 315 + }, + { + "name" : "minecraft:netherite_sword", + "id" : 602, + "runtimeId" : 326 + }, + { + "name" : "minecraft:netherite_shovel", + "id" : 603, + "runtimeId" : 618 + }, + { + "name" : "minecraft:netherite_pickaxe", + "id" : 604, + "runtimeId" : 461 + }, + { + "name" : "minecraft:netherite_axe", + "id" : 605, + "runtimeId" : 623 + }, + { + "name" : "minecraft:netherite_hoe", + "id" : 606, + "runtimeId" : 624 + }, + { + "name" : "minecraft:netherite_helmet", + "id" : 607, + "runtimeId" : 627 + }, + { + "name" : "minecraft:netherite_chestplate", + "id" : 608, + "runtimeId" : 393 + }, + { + "name" : "minecraft:netherite_leggings", + "id" : 609, + "runtimeId" : 576 + }, + { + "name" : "minecraft:netherite_boots", + "id" : 610, + "runtimeId" : 153 + }, + { + "name" : "minecraft:netherite_scrap", + "id" : 611, + "runtimeId" : 628 + }, + { + "name" : "minecraft:crimson_sign", + "id" : 612, + "runtimeId" : 630 + }, + { + "name" : "minecraft:warped_sign", + "id" : 613, + "runtimeId" : 437 + }, + { + "name" : "minecraft:crimson_door", + "id" : 614, + "runtimeId" : 631 + }, + { + "name" : "minecraft:warped_door", + "id" : 615, + "runtimeId" : 64 + }, + { + "name" : "minecraft:warped_fungus_on_a_stick", + "id" : 616, + "runtimeId" : 442 + }, + { + "name" : "minecraft:chain", + "id" : 617, + "runtimeId" : 439 + }, + { + "name" : "minecraft:music_disc_pigstep", + "id" : 618, + "runtimeId" : 222 + }, + { + "name" : "minecraft:nether_sprouts", + "id" : 619, + "runtimeId" : 633 + }, + { + "name" : "minecraft:soul_campfire", + "id" : 620, + "runtimeId" : 443 + }, + { + "name" : "minecraft:glow_frame", + "id" : 621, + "runtimeId" : 197 + }, + { + "name" : "minecraft:goat_horn", + "id" : 622, + "runtimeId" : 638 + }, + { + "name" : "minecraft:amethyst_shard", + "id" : 623, + "runtimeId" : 651 + }, + { + "name" : "minecraft:spyglass", + "id" : 624, + "runtimeId" : 646 + }, + { + "name" : "minecraft:boat", + "id" : 625, + "runtimeId" : 817 + }, + { + "name" : "minecraft:dye", + "id" : 626, + "runtimeId" : 352 + }, + { + "name" : "minecraft:banner_pattern", + "id" : 627, + "runtimeId" : 818 + }, + { + "name" : "minecraft:spawn_egg", + "id" : 628, + "runtimeId" : 131 + }, + { + "name" : "minecraft:end_crystal", + "id" : 629, + "runtimeId" : 819 + }, + { + "name" : "minecraft:glow_berries", + "id" : 630, + "runtimeId" : 821 + } +] \ No newline at end of file From ad6cf6ae8525680fc2046c7a25e8e59c9104739b Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 14 Jul 2021 17:02:26 -0300 Subject: [PATCH 172/394] Fixes: Outdated clients not receiving the "Outdated client" message --- src/main/java/cn/nukkit/Player.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 7dd4fcd489f..03b546ed215 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -5122,7 +5122,11 @@ protected void sendPlayStatus(int status, boolean immediate) { PlayStatusPacket pk = new PlayStatusPacket(); pk.status = status; - this.dataPacket(pk); + if (immediate) { + this.dataPacketImmediately(pk); + } else { + this.dataPacket(pk); + } } @Override From 5b490b18836c252ab0a241e248f80bd20d8e7920 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 14 Jul 2021 20:59:39 -0300 Subject: [PATCH 173/394] Improves unknown item handling, shows unknown block instead of disconnections --- .../java/cn/nukkit/utils/BinaryStream.java | 80 +++++++++++++++++-- 1 file changed, 74 insertions(+), 6 deletions(-) diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index ced7a07cfd5..103579be318 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -5,10 +5,7 @@ import cn.nukkit.block.Block; import cn.nukkit.entity.Attribute; import cn.nukkit.entity.data.Skin; -import cn.nukkit.item.Item; -import cn.nukkit.item.ItemDurable; -import cn.nukkit.item.ItemID; -import cn.nukkit.item.RuntimeItems; +import cn.nukkit.item.*; import cn.nukkit.level.GameRule; import cn.nukkit.level.GameRules; import cn.nukkit.math.BlockFace; @@ -26,6 +23,7 @@ import io.netty.buffer.ByteBufAllocator; import io.netty.util.internal.EmptyArrays; import lombok.SneakyThrows; +import lombok.extern.log4j.Log4j2; import lombok.val; import java.io.ByteArrayInputStream; @@ -39,6 +37,7 @@ /** * @author MagicDroidX (Nukkit Project) */ +@Log4j2 public class BinaryStream { public int offset; @@ -455,7 +454,7 @@ public Item getSlot() { buf.release(); } - Item item = Item.get(id, damage, count, nbt); + Item item = readUnknownItem(Item.get(id, damage, count, nbt)); if (canBreak.length > 0 || canPlace.length > 0) { CompoundTag namedTag = item.getNamedTag(); @@ -484,6 +483,68 @@ public Item getSlot() { return item; } + + private Item readUnknownItem(Item item) { + if (item.getId() != 248 || !item.hasCompoundTag()) { + return item; + } + + CompoundTag tag = item.getNamedTag(); + if (!tag.containsCompound("PowerNukkitUnknown")) { + return item; + } + + CompoundTag pnTag = tag.getCompound("PowerNukkitUnknown"); + int itemId = pnTag.getInt("OriginalItemId"); + int meta = pnTag.getInt("OriginalMeta"); + boolean hasCustomName = pnTag.getBoolean("HasCustomName"); + boolean hasCompound = pnTag.getBoolean("HasCompound"); + boolean hasDisplayTag = pnTag.getBoolean("HasDisplayTag"); + String customName = pnTag.getString("OriginalCustomName"); + + item = Item.get(itemId, meta, item.getCount()); + if (hasCompound) { + tag.remove("PowerNukkitUnknown"); + if (!hasDisplayTag) { + tag.remove("display"); + } else if (tag.containsCompound("display")) { + if (!hasCustomName) { + tag.getCompound("display").remove("Name"); + } else { + tag.getCompound("display").putString("Name", customName); + } + } + item.setNamedTag(tag); + } + + return item; + } + + private Item createFakeUnknownItem(Item item) { + boolean hasCompound = item.hasCompoundTag(); + Item fallback = Item.getBlock(248, 0, item.getCount()); + CompoundTag tag = item.getNamedTag(); + if (tag == null) { + tag = new CompoundTag(); + } + tag.putCompound("PowerNukkitUnknown", new CompoundTag() + .putInt("OriginalItemId", item.getId()) + .putInt("OriginalMeta", item.getDamage()) + .putBoolean("HasCustomName", item.hasCustomName()) + .putBoolean("HasDisplayTag", tag.contains("display")) + .putBoolean("HasCompound", hasCompound) + .putString("OriginalCustomName", item.getCustomName())); + + fallback.setNamedTag(tag); + String suffix = "" + TextFormat.RESET + TextFormat.GRAY + TextFormat.ITALIC + + " (" + item.getId() + ":" + item.getDamage() + ")"; + if (fallback.hasCustomName()) { + fallback.setCustomName(fallback.getCustomName() + suffix); + } else { + fallback.setCustomName(TextFormat.RESET + "" + TextFormat.BOLD + TextFormat.RED + "Unknown" + suffix); + } + return fallback; + } public void putSlot(Item item) { this.putSlot(item, false); @@ -496,7 +557,14 @@ public void putSlot(Item item, boolean instanceItem) { return; } - int networkFullId = RuntimeItems.getRuntimeMapping().getNetworkFullId(item); + int networkFullId; + try { + networkFullId = RuntimeItems.getRuntimeMapping().getNetworkFullId(item); + } catch (IllegalArgumentException e) { + log.trace(e); + item = createFakeUnknownItem(item); + networkFullId = RuntimeItems.getRuntimeMapping().getNetworkFullId(item); + } int networkId = RuntimeItems.getNetworkId(networkFullId); putVarInt(networkId); From 9633caedb5db4fe536655064991878396c71482e Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 14 Jul 2021 23:12:31 -0300 Subject: [PATCH 174/394] Fixes #1200 log and many other recipes not working --- src/main/resources/recipes.json | 116814 +++++++++++++++-------------- 1 file changed, 59117 insertions(+), 57697 deletions(-) diff --git a/src/main/resources/recipes.json b/src/main/resources/recipes.json index 36c316c27b1..48665628cd0 100644 --- a/src/main/resources/recipes.json +++ b/src/main/resources/recipes.json @@ -1,57877 +1,59297 @@ { - "version" : 448, - "recipes" : [ - { - "type" : 4, - "uuid" : "442d85ed-8272-4543-a6f1-418f90ded05d" - }, - { - "type" : 4, - "uuid" : "8b36268c-1829-483c-a0f1-993b7156a8f2" - }, - { - "type" : 4, - "uuid" : "602234e4-cac1-4353-8bb7-b1ebff70024b" - }, - { - "id" : "minecraft:cartography_table_locator_map", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "block" : "cartography_table", - "priority" : 0 - }, - { - "id" : "minecraft:cartography_table_map", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map" - } - ], - "block" : "cartography_table", - "priority" : 0 - }, - { - "type" : 4, - "uuid" : "98c84b38-1085-46bd-b1ce-dd38c159e6cc" - }, - { - "id" : "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -395, - "id" : "minecraft:chiseled_deepslate" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -380, - "id" : "minecraft:cobbled_deepslate_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -381, - "id" : "minecraft:cobbled_deepslate_stairs" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -382, - "id" : "minecraft:cobbled_deepslate_wall" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -384, - "id" : "minecraft:polished_deepslate_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -384, - "id" : "minecraft:polished_deepslate_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -385, - "id" : "minecraft:polished_deepslate_stairs" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -385, - "id" : "minecraft:polished_deepslate_stairs" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -386, - "id" : "minecraft:polished_deepslate_wall" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -386, - "id" : "minecraft:polished_deepslate_wall" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_andesite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_andesite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -171, - "id" : "minecraft:andesite_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_andesite_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_blackstone_slab_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -282, - "id" : "minecraft:blackstone_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_blackstone_stairs_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -276, - "id" : "minecraft:blackstone_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_blackstone_wall_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -277, - "id" : "minecraft:blackstone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_brick_slab_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "output" : [ - { - "legacyId" : 108, - "id" : "minecraft:brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_brick_stairs_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_wall_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_bricks_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_chiseled_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -279, - "id" : "minecraft:chiseled_polished_blackstone" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_chiseled_nether_bricks_from_nether_brick", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -302, - "id" : "minecraft:chiseled_nether_bricks" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_chiseled_polished_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -279, - "id" : "minecraft:chiseled_polished_blackstone" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_cobbledouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_cobblestone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - ], - "output" : [ - { - "legacyId" : 67, - "id" : "minecraft:stone_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_cobblestone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_copper_block_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_copper_block_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_copper_block_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_dark_prismarine_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_dark_prismarine_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -3, - "id" : "minecraft:dark_prismarine_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_diorite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_diorite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -170, - "id" : "minecraft:diorite_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_diorite_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_double_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_endbrick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_endbrick_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_endbrick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : -178, - "id" : "minecraft:end_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_endbrick_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "output" : [ - { - "legacyId" : -178, - "id" : "minecraft:end_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_endbrick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_endbrick_wall2", - "type" : 0, - "input" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_endbricks", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_exposed_copper_to_exposed_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_granite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_granite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -169, - "id" : "minecraft:granite_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_granite_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_mossy_cobbledouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_mossy_cobblestone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "output" : [ - { - "legacyId" : -179, - "id" : "minecraft:mossy_cobblestone_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_mossy_cobblestone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_mossy_stonebrick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_mossy_stonebrick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -175, - "id" : "minecraft:mossy_stone_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_mossy_stonebrick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_nether_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_nether_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "output" : [ - { - "legacyId" : 114, - "id" : "minecraft:nether_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_nether_brick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_andesite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -174, - "id" : "minecraft:polished_andesite_stairs" - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : -174, - "id" : "minecraft:polished_andesite_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_polished_basalt_from_basalt", - "type" : 0, - "input" : [ - { - "legacyId" : -234, - "id" : "minecraft:basalt", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -235, - "id" : "minecraft:polished_basalt" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_brick_slab_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_brick_stairs_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_brick_wall_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_bricks_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_diorite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -173, - "id" : "minecraft:polished_diorite_stairs" - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : -173, - "id" : "minecraft:polished_diorite_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_polished_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_granite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_polished_granite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_polished_granite_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_polished_granite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -172, - "id" : "minecraft:polished_granite_stairs" - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_polished_granite_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : -172, - "id" : "minecraft:polished_granite_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_polished_slab_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_stairs_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -292, - "id" : "minecraft:polished_blackstone_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_wall_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -297, - "id" : "minecraft:polished_blackstone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_prismarine_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_prismarine_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : -4, - "id" : "minecraft:prismarine_bricks_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_prismarine_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_prismarine_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "output" : [ - { - "legacyId" : -2, - "id" : "minecraft:prismarine_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_prismarine_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_purpur_lines", - "type" : 0, - "input" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "output" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_purpur_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_purpur_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "output" : [ - { - "legacyId" : 203, - "id" : "minecraft:purpur_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_quartz_bricks_from_quartz_block", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : -304, - "id" : "minecraft:quartz_bricks" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_quartz_chiseled", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_quartz_lines", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_quartz_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_quartz_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 156, - "id" : "minecraft:quartz_stairs" - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_red_nether_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_red_nether_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "output" : [ - { - "legacyId" : -184, - "id" : "minecraft:red_nether_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_red_nether_brick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_red_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_cut", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_heiroglyphs", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 180, - "id" : "minecraft:red_sandstone_stairs" - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_sandstone_cut", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_sandstone_heiroglyphs", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 128, - "id" : "minecraft:sandstone_stairs" - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_sandstone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_slab_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_slab_from_polished_blackstone_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_smooth_double_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -183, - "id" : "minecraft:smooth_stone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_quartz_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_quartz_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -185, - "id" : "minecraft:smooth_quartz_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_smooth_red_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_red_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -176, - "id" : "minecraft:smooth_red_sandstone_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_smooth_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -177, - "id" : "minecraft:smooth_sandstone_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_stairs_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -292, - "id" : "minecraft:polished_blackstone_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_stone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : -180, - "id" : "minecraft:normal_stone_stairs" - } - ], - "block" : "stonecutter", - "priority" : 6 - }, - { - "id" : "minecraft:stonecutter_stonebrick", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_stonebrick_chiseled", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_stonebrick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_stonebrick_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_stonebrick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 109, - "id" : "minecraft:stone_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_stonebrick_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "output" : [ - { - "legacyId" : 109, - "id" : "minecraft:stone_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_stonebrick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_stonebrick_wall2", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_wall_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -297, - "id" : "minecraft:polished_blackstone_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_wall_from_polished_blackstone_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_exposed_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab" - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper" - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "count" : 2 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "stonecutter_stairs_from_polished_blackstone_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs" - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "Bookshelf_woodplanks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 47, - "id" : "minecraft:bookshelf" - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "Bowl_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "count" : 4 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "ButtonAcacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -140, - "id" : "minecraft:acacia_button" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonBirch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -141, - "id" : "minecraft:birch_button" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonDarkOak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -142, - "id" : "minecraft:dark_oak_button" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonJungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -143, - "id" : "minecraft:jungle_button" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonSpruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -144, - "id" : "minecraft:spruce_button" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Chest_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest" - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "DaylightDetector_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass" - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 151, - "id" : "minecraft:daylight_detector" - } - ], - "shape" : [ - "AAA", - "BBB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "FireCharge_blaze_powder_coal_sulphur_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - }, - { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 509, - "id" : "minecraft:fire_charge", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "FireCharge_coal_sulphur_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - }, - { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 509, - "id" : "minecraft:fire_charge", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Jukebox_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 84, - "id" : "minecraft:jukebox" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "Note_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 25, - "id" : "minecraft:noteblock" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "Painting_Cobblestone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Painting_NetherBrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Painting_VanillaBlocks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Painting_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 357, - "id" : "minecraft:painting" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Piston_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - }, - "C" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "D" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 33, - "id" : "minecraft:piston" - } - ], - "shape" : [ - "AAA", - "BCB", - "BDB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "PressurePlateAcacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -150, - "id" : "minecraft:acacia_pressure_plate" - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateBirch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -151, - "id" : "minecraft:birch_pressure_plate" - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateDarkOak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -152, - "id" : "minecraft:dark_oak_pressure_plate" - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateJungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -153, - "id" : "minecraft:jungle_pressure_plate" - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateSpruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -154, - "id" : "minecraft:spruce_pressure_plate" - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Stick_bamboo_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -163, - "id" : "minecraft:bamboo" - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick" - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "StoneSlab4_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab4_stoneBrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab_Brick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab_StoneBrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -183, - "id" : "minecraft:smooth_stone" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Torch_charcoal_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 50, - "id" : "minecraft:torch", - "count" : 4 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Torch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 50, - "id" : "minecraft:torch", - "count" : 4 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorAcacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -145, - "id" : "minecraft:acacia_trapdoor", - "count" : 2 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorBirch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -146, - "id" : "minecraft:birch_trapdoor", - "count" : 2 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorDarkOak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -147, - "id" : "minecraft:dark_oak_trapdoor", - "count" : 2 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorJungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -148, - "id" : "minecraft:jungle_trapdoor", - "count" : 2 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorSpruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -149, - "id" : "minecraft:spruce_trapdoor", - "count" : 2 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Trapdoor_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 96, - "id" : "minecraft:trapdoor", - "count" : 2 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TripwireHook_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "count" : 2 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "WoodButton_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 143, - "id" : "minecraft:wooden_button" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "WoodPressurePlate_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 72, - "id" : "minecraft:wooden_pressure_plate" - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "WorkBench_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 58, - "id" : "minecraft:crafting_table" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "acacia_stairs_acacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 163, - "id" : "minecraft:acacia_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "d81aaeaf-e172-4440-9225-868df030d27b" - }, - { - "type" : 4, - "uuid" : "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" - }, - { - "type" : 4, - "uuid" : "00000000-0000-0000-0000-000000000002" - }, - { - "id" : "bed_color_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_crimson_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_dye_0_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "birch_stairs_birch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 135, - "id" : "minecraft:birch_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" - }, - { - "id" : "chiseled_quartz_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "chiseled_stonebrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "85939755-ba10-4d9d-a4cc-efb7a8e943c4" - }, - { - "id" : "dark_oak_stairs_dark_oak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 164, - "id" : "minecraft:dark_oak_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "d392b075-4ba1-40ae-8789-af868d56f6ce" - }, - { - "id" : "heiroglyphs_redsandstone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2" - } - }, - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "heiroglyphs_sandstone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "jungle_stairs_jungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 136, - "id" : "minecraft:jungle_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "lines_purpur_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "loom_block_wood_planks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -204, - "id" : "minecraft:loom" - } - ], - "shape" : [ - "AA", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 379, - "id" : "minecraft:acacia_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 556, - "id" : "minecraft:acacia_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 187, - "id" : "minecraft:acacia_fence_gate" - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2" - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 163, - "id" : "minecraft:acacia_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2" - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:activator_rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 126, - "id" : "minecraft:activator_rail", - "count" : 6 - } - ], - "shape" : [ - "ABA", - "ACA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:amethyst_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 623, - "id" : "minecraft:amethyst_shard", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -327, - "id" : "minecraft:amethyst_block" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:andesite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - }, - { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:andesite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -171, - "id" : "minecraft:andesite_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:andesite_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:anvil", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 42, - "id" : "minecraft:iron_block", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 145, - "id" : "minecraft:anvil" - } - ], - "shape" : [ - "AAA", - " B ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:armor_stand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab" - } - }, - "output" : [ - { - "legacyId" : 552, - "id" : "minecraft:armor_stand" - } - ], - "shape" : [ - "AAA", - " A ", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:arrow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 327, - "id" : "minecraft:feather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "count" : 4 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 585, - "id" : "minecraft:field_masoned_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_creeper", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 516, - "id" : "minecraft:skull", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 582, - "id" : "minecraft:creeper_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_flower", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 581, - "id" : "minecraft:flower_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_skull", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 516, - "id" : "minecraft:skull", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 583, - "id" : "minecraft:skull_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_thing", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 259, - "id" : "minecraft:enchanted_golden_apple", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 584, - "id" : "minecraft:mojang_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_vines", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 106, - "id" : "minecraft:vine", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 586, - "id" : "minecraft:bordure_indented_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:barrel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -203, - "id" : "minecraft:barrel" - } - ], - "shape" : [ - "ABA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:barrel_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -203, - "id" : "minecraft:barrel" - } - ], - "shape" : [ - "ABA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:barrel_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -203, - "id" : "minecraft:barrel" - } - ], - "shape" : [ - "ABA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:basic_map_to_enhanced", - "type" : 0, - "input" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 1 - }, - { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:beacon", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 518, - "id" : "minecraft:nether_star", - "damage" : 32767 - }, - "C" : { - "legacyId" : 49, - "id" : "minecraft:obsidian", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 138, - "id" : "minecraft:beacon" - } - ], - "shape" : [ - "AAA", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:beehive", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -219, - "id" : "minecraft:beehive" - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:beehive_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -219, - "id" : "minecraft:beehive" - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:beehive_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -219, - "id" : "minecraft:beehive" - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:beetroot_soup", - "type" : 0, - "input" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 286, - "id" : "minecraft:beetroot_soup" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 376, - "id" : "minecraft:birch_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 554, - "id" : "minecraft:birch_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 184, - "id" : "minecraft:birch_fence_gate" - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 135, - "id" : "minecraft:birch_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner" - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - ], - "output" : [ - { - "legacyId" : -428, - "id" : "minecraft:black_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_candle_from_ink_sac", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - ], - "output" : [ - { - "legacyId" : -428, - "id" : "minecraft:black_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:black_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_concrete_powder_from_ink_sac", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:black_dye_from_ink_sac", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - ], - "output" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_dye_from_wither_rose", - "type" : 0, - "input" : [ - { - "legacyId" : -216, - "id" : "minecraft:wither_rose", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_glass_from_ink_sac", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:black_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 15 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_hardened_clay_from_ink_sac", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:blackstone_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -282, - "id" : "minecraft:blackstone_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blackstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -276, - "id" : "minecraft:blackstone_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blackstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -277, - "id" : "minecraft:blackstone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blast_furnace", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - }, - "C" : { - "legacyId" : -183, - "id" : "minecraft:smooth_stone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -196, - "id" : "minecraft:blast_furnace" - } - ], - "shape" : [ - "AAA", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blaze_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - ], - "output" : [ - { - "legacyId" : -424, - "id" : "minecraft:blue_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_candle_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - ], - "output" : [ - { - "legacyId" : -424, - "id" : "minecraft:blue_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_concrete_powder_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:blue_dye_from_cornflower", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_dye_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - ], - "output" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_ice", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 174, - "id" : "minecraft:packed_ice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -11, - "id" : "minecraft:blue_ice" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_glass_from_lapis_lazuli", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:blue_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_hardened_clay_from_lapis_lazuli", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 375, - "id" : "minecraft:oak_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bone_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - }, - "output" : [ - { - "legacyId" : 216, - "id" : "minecraft:bone_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bone_meal_from_block", - "type" : 0, - "input" : [ - { - "legacyId" : 216, - "id" : "minecraft:bone_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "count" : 9 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bone_meal_from_bone", - "type" : 0, - "input" : [ - { - "legacyId" : 415, - "id" : "minecraft:bone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:book", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper" - }, - { - "legacyId" : 386, - "id" : "minecraft:paper" - }, - { - "legacyId" : 386, - "id" : "minecraft:paper" - }, - { - "legacyId" : 381, - "id" : "minecraft:leather" - } - ], - "output" : [ - { - "legacyId" : 387, - "id" : "minecraft:book" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bookshelf_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 47, - "id" : "minecraft:bookshelf" - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bookshelf_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 47, - "id" : "minecraft:bookshelf" - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 300, - "id" : "minecraft:bow" - } - ], - "shape" : [ - " AB", - "A B", - " AB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bowl_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "count" : 4 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bowl_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "count" : 4 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bread", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 261, - "id" : "minecraft:bread" - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brewing_stand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 431, - "id" : "minecraft:brewing_stand" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brewing_stand_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 431, - "id" : "minecraft:brewing_stand" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:brewing_stand_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 431, - "id" : "minecraft:brewing_stand" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:brick_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 383, - "id" : "minecraft:brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 108, - "id" : "minecraft:brick_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - ], - "output" : [ - { - "legacyId" : -425, - "id" : "minecraft:brown_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_candle_from_cocoa_beans", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - ], - "output" : [ - { - "legacyId" : -425, - "id" : "minecraft:brown_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_concrete_powder_from_cocoa_beans", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:brown_dye_from_cocoa_beans", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - ], - "output" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_glass_from_cocoa_beans", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:brown_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_hardened_clay_from_cocoa_beans", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:bucket", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 360, - "id" : "minecraft:bucket" - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cake", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 361, - "id" : "minecraft:milk_bucket" - }, - "B" : { - "legacyId" : 416, - "id" : "minecraft:sugar", - "damage" : 32767 - }, - "C" : { - "legacyId" : 390, - "id" : "minecraft:egg", - "damage" : 32767 - }, - "D" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 417, - "id" : "minecraft:cake" - }, - { - "legacyId" : 360, - "id" : "minecraft:bucket", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "BCB", - "DDD" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:campfire_from_charcoal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:candle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:carrot_on_a_stick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 392, - "id" : "minecraft:fishing_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 517, - "id" : "minecraft:carrot_on_a_stick" - } - ], - "shape" : [ - "A ", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cartography_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -200, - "id" : "minecraft:cartography_table" - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cartography_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -200, - "id" : "minecraft:cartography_table" - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:cartography_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -200, - "id" : "minecraft:cartography_table" - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:cauldron", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 432, - "id" : "minecraft:cauldron" - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chain", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 617, - "id" : "minecraft:chain" - } - ], - "shape" : [ - "A", - "B", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chest_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest" - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:chest_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest" - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:chest_minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - }, - "B" : { - "legacyId" : 370, - "id" : "minecraft:minecart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 389, - "id" : "minecraft:chest_minecart" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chiseled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -380, - "id" : "minecraft:cobbled_deepslate_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -395, - "id" : "minecraft:chiseled_deepslate" - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:chiseled_nether_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : -302, - "id" : "minecraft:chiseled_nether_bricks" - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chiseled_polished_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -279, - "id" : "minecraft:chiseled_polished_blackstone" - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 384, - "id" : "minecraft:clay_ball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 82, - "id" : "minecraft:clay" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:clock", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 393, - "id" : "minecraft:clock" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:coal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 173, - "id" : "minecraft:coal_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 302, - "id" : "minecraft:coal", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:coal_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - } - }, - "output" : [ - { - "legacyId" : 173, - "id" : "minecraft:coal_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:coarse_dirt", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 3, - "id" : "minecraft:dirt" - }, - "B" : { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 3, - "id" : "minecraft:dirt", - "count" : 4 - } - ], - "shape" : [ - "AB", - "BA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -380, - "id" : "minecraft:cobbled_deepslate_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cobbled_deepslate_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -381, - "id" : "minecraft:cobbled_deepslate_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cobbled_deepslate_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -382, - "id" : "minecraft:cobbled_deepslate_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cobblestone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 67, - "id" : "minecraft:stone_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cobblestone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cobweb_to_string", - "type" : 0, - "input" : [ - { - "legacyId" : 30, - "id" : "minecraft:web", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 326, - "id" : "minecraft:string", - "count" : 9 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:comparator", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 522, - "id" : "minecraft:comparator" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:compass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 391, - "id" : "minecraft:compass" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:composter", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -213, - "id" : "minecraft:composter" - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:composter_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -213, - "id" : "minecraft:composter" - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:composter_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -213, - "id" : "minecraft:composter" - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:conduit", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 570, - "id" : "minecraft:nautilus_shell", - "damage" : 32767 - }, - "B" : { - "legacyId" : 571, - "id" : "minecraft:heart_of_the_sea", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -157, - "id" : "minecraft:conduit" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cookie", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - }, - "B" : { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - }, - "output" : [ - { - "legacyId" : 271, - "id" : "minecraft:cookie", - "count" : 8 - } - ], - "shape" : [ - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:copper_block_from_ingots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_exposed_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_exposed_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_exposed_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 58, - "id" : "minecraft:crafting_table" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:crafting_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 58, - "id" : "minecraft:crafting_table" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:crafting_table_oxidized_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_oxidized_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_oxidized_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_exposed_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_weathered_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_weathered_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_weathered_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_weathered_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crimson_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -260, - "id" : "minecraft:crimson_button" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 614, - "id" : "minecraft:crimson_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -256, - "id" : "minecraft:crimson_fence", - "count" : 3 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -258, - "id" : "minecraft:crimson_fence_gate" - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -299, - "id" : "minecraft:crimson_hyphae", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks_from_crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -299, - "id" : "minecraft:crimson_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks_from_stripped_crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -300, - "id" : "minecraft:stripped_crimson_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks_from_stripped_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -262, - "id" : "minecraft:crimson_pressure_plate" - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_sign", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 612, - "id" : "minecraft:crimson_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -254, - "id" : "minecraft:crimson_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_trapdoor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -246, - "id" : "minecraft:crimson_trapdoor", - "count" : 2 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crossbow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "C" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "D" : { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 575, - "id" : "minecraft:crossbow" - } - ], - "shape" : [ - "ABA", - "CDC", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - ], - "output" : [ - { - "legacyId" : -422, - "id" : "minecraft:cyan_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - ], - "output" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_dye_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - ], - "output" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cyan_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 380, - "id" : "minecraft:dark_oak_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 557, - "id" : "minecraft:dark_oak_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 186, - "id" : "minecraft:dark_oak_fence_gate" - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 164, - "id" : "minecraft:dark_oak_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_prismarine", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_prismarine_from_ink_sac", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:daylight_detector_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 151, - "id" : "minecraft:daylight_detector" - } - ], - "shape" : [ - "AAA", - "BBB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:daylight_detector_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 151, - "id" : "minecraft:daylight_detector" - } - ], - "shape" : [ - "AAA", - "BBB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:deepslate_brick_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tile_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tile_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tile_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tiles", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:detector_rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 70, - "id" : "minecraft:stone_pressure_plate", - "damage" : 32767 - }, - "C" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 28, - "id" : "minecraft:detector_rail", - "count" : 6 - } - ], - "shape" : [ - "A A", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 57, - "id" : "minecraft:diamond_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 304, - "id" : "minecraft:diamond", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 319, - "id" : "minecraft:diamond_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 57, - "id" : "minecraft:diamond_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 350, - "id" : "minecraft:diamond_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 348, - "id" : "minecraft:diamond_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 347, - "id" : "minecraft:diamond_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 332, - "id" : "minecraft:diamond_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 349, - "id" : "minecraft:diamond_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 318, - "id" : "minecraft:diamond_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 317, - "id" : "minecraft:diamond_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 316, - "id" : "minecraft:diamond_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diorite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 2 - } - ], - "shape" : [ - "AB", - "BA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diorite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -170, - "id" : "minecraft:diorite_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diorite_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dispenser", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 300, - "id" : "minecraft:bow", - "damage" : 32767 - }, - "C" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 23, - "id" : "minecraft:dispenser" - } - ], - "shape" : [ - "AAA", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dried_kelp", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -139, - "id" : "minecraft:dried_kelp_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dried_kelp_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -139, - "id" : "minecraft:dried_kelp_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dripstone_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -308, - "id" : "minecraft:pointed_dripstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -317, - "id" : "minecraft:dripstone_block" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dripstone_block_from_pointed_dripstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -308, - "id" : "minecraft:pointed_dripstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -317, - "id" : "minecraft:dripstone_block" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dropper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 125, - "id" : "minecraft:dropper" - } - ], - "shape" : [ - "AAA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:emerald", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 133, - "id" : "minecraft:emerald_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 512, - "id" : "minecraft:emerald", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:emerald_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 133, - "id" : "minecraft:emerald_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:empty_map_to_enhanced", - "type" : 0, - "input" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map" - }, - { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:enchanting_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "C" : { - "legacyId" : 49, - "id" : "minecraft:obsidian", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 116, - "id" : "minecraft:enchanting_table" - } - ], - "shape" : [ - " A ", - "BCB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -178, - "id" : "minecraft:end_brick_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 121, - "id" : "minecraft:end_stone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_crystal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 433, - "id" : "minecraft:ender_eye", - "damage" : 32767 - }, - "C" : { - "legacyId" : 424, - "id" : "minecraft:ghast_tear", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 629, - "id" : "minecraft:end_crystal" - } - ], - "shape" : [ - "AAA", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_rod", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : 559, - "id" : "minecraft:popped_chorus_fruit", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 208, - "id" : "minecraft:end_rod", - "count" : 4 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ender_chest", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 49, - "id" : "minecraft:obsidian", - "damage" : 32767 - }, - "B" : { - "legacyId" : 433, - "id" : "minecraft:ender_eye", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 130, - "id" : "minecraft:ender_chest" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ender_eye", - "type" : 0, - "input" : [ - { - "legacyId" : 422, - "id" : "minecraft:ender_pearl", - "damage" : 32767 - }, - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 433, - "id" : "minecraft:ender_eye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 107, - "id" : "minecraft:fence_gate" - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fermented_spider_eye", - "type" : 0, - "input" : [ - { - "legacyId" : 278, - "id" : "minecraft:spider_eye", - "damage" : 32767 - }, - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 416, - "id" : "minecraft:sugar", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 428, - "id" : "minecraft:fermented_spider_eye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fishing_rod", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 392, - "id" : "minecraft:fishing_rod" - } - ], - "shape" : [ - " A", - " AB", - "A B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fletching_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -201, - "id" : "minecraft:fletching_table" - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fletching_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -201, - "id" : "minecraft:fletching_table" - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:fletching_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -201, - "id" : "minecraft:fletching_table" - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:flint_and_steel", - "type" : 0, - "input" : [ - { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 299, - "id" : "minecraft:flint_and_steel" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:flower_pot", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 383, - "id" : "minecraft:brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 514, - "id" : "minecraft:flower_pot" - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:furnace", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 61, - "id" : "minecraft:furnace" - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:furnace_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 61, - "id" : "minecraft:furnace" - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:furnace_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 61, - "id" : "minecraft:furnace" - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:glass_bottle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "count" : 3 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:glow_frame", - "type" : 0, - "input" : [ - { - "legacyId" : 513, - "id" : "minecraft:frame", - "damage" : 32767 - }, - { - "legacyId" : 503, - "id" : "minecraft:glow_ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 621, - "id" : "minecraft:glow_frame" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:glowstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 394, - "id" : "minecraft:glowstone_dust", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 89, - "id" : "minecraft:glowstone" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 41, - "id" : "minecraft:gold_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_ingot_from_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 41, - "id" : "minecraft:gold_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_ingot_from_nuggets", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_nugget", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_apple", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 257, - "id" : "minecraft:apple", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 258, - "id" : "minecraft:golden_apple" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 325, - "id" : "minecraft:golden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 354, - "id" : "minecraft:golden_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_carrot", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 283, - "id" : "minecraft:golden_carrot" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 352, - "id" : "minecraft:golden_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 351, - "id" : "minecraft:golden_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 333, - "id" : "minecraft:golden_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 353, - "id" : "minecraft:golden_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 324, - "id" : "minecraft:golden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 27, - "id" : "minecraft:golden_rail", - "count" : 6 - } - ], - "shape" : [ - "A A", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 323, - "id" : "minecraft:golden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 322, - "id" : "minecraft:golden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:granite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - }, - { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:granite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -169, - "id" : "minecraft:granite_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:granite_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - ], - "output" : [ - { - "legacyId" : -420, - "id" : "minecraft:gray_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_dye_from_black_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:gray_dye_from_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:gray_dye_from_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:gray_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - ], - "output" : [ - { - "legacyId" : -426, - "id" : "minecraft:green_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:grindstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "damage" : 2 - }, - "C" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone" - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone" - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone" - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone" - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone" - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone" - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone" - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone" - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone" - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:hay_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 170, - "id" : "minecraft:hay_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:heavy_weighted_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 148, - "id" : "minecraft:heavy_weighted_pressure_plate" - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honey_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 591, - "id" : "minecraft:honey_bottle", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -220, - "id" : "minecraft:honey_block" - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honey_bottle", - "type" : 0, - "input" : [ - { - "legacyId" : -220, - "id" : "minecraft:honey_block", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 591, - "id" : "minecraft:honey_bottle", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honey_bottle_to_sugar", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 591, - "id" : "minecraft:honey_bottle", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 416, - "id" : "minecraft:sugar", - "count" : 3 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honeycomb_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -221, - "id" : "minecraft:honeycomb_block" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:hopper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 527, - "id" : "minecraft:hopper" - } - ], - "shape" : [ - "A A", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:hopper_minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 527, - "id" : "minecraft:hopper", - "damage" : 32767 - }, - "B" : { - "legacyId" : 370, - "id" : "minecraft:minecart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 526, - "id" : "minecraft:hopper_minecart" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ingots_from_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:ingots_from_waxed_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:iron_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 298, - "id" : "minecraft:iron_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_bars", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 101, - "id" : "minecraft:iron_bars", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 42, - "id" : "minecraft:iron_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 346, - "id" : "minecraft:iron_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 344, - "id" : "minecraft:iron_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 372, - "id" : "minecraft:iron_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 343, - "id" : "minecraft:iron_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 331, - "id" : "minecraft:iron_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_ingot_from_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 42, - "id" : "minecraft:iron_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_ingot_from_nuggets", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 305, - "id" : "minecraft:iron_ingot" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 345, - "id" : "minecraft:iron_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_nugget", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 297, - "id" : "minecraft:iron_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 296, - "id" : "minecraft:iron_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 307, - "id" : "minecraft:iron_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_trapdoor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 167, - "id" : "minecraft:iron_trapdoor" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:item_frame", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 513, - "id" : "minecraft:frame" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jukebox_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 84, - "id" : "minecraft:jukebox" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:jukebox_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 84, - "id" : "minecraft:jukebox" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:jungle_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 377, - "id" : "minecraft:jungle_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 555, - "id" : "minecraft:jungle_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 185, - "id" : "minecraft:jungle_fence_gate" - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 136, - "id" : "minecraft:jungle_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ladder", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 65, - "id" : "minecraft:ladder", - "count" : 3 - } - ], - "shape" : [ - "A A", - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lantern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 50, - "id" : "minecraft:torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -208, - "id" : "minecraft:lantern" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lapis_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - }, - "output" : [ - { - "legacyId" : 22, - "id" : "minecraft:lapis_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lapis_lazuli", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 22, - "id" : "minecraft:lapis_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lead", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 547, - "id" : "minecraft:lead", - "count" : 2 - } - ], - "shape" : [ - "AA ", - "AB ", - " A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 529, - "id" : "minecraft:rabbit_hide", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 381, - "id" : "minecraft:leather" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 338, - "id" : "minecraft:leather_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 336, - "id" : "minecraft:leather_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 335, - "id" : "minecraft:leather_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_horse_armor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 530, - "id" : "minecraft:leather_horse_armor" - } - ], - "shape" : [ - "A A", - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 337, - "id" : "minecraft:leather_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lectern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - }, - "B" : { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -194, - "id" : "minecraft:lectern" - } - ], - "shape" : [ - "AAA", - " B ", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lectern_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - }, - "B" : { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -194, - "id" : "minecraft:lectern" - } - ], - "shape" : [ - "AAA", - " B ", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:lectern_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - }, - "B" : { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -194, - "id" : "minecraft:lectern" - } - ], - "shape" : [ - "AAA", - " B ", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:lever", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 69, - "id" : "minecraft:lever" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - ], - "output" : [ - { - "legacyId" : -416, - "id" : "minecraft:light_blue_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:light_blue_dye_from_blue_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:light_blue_dye_from_blue_orchid", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_dye_from_lapis_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 4 - }, - { - "id" : "minecraft:light_blue_dye_from_lapis_white", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:light_blue_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray__carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "output" : [ - { - "legacyId" : -421, - "id" : "minecraft:light_gray_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:light_gray_dye_from_azure_bluet", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:light_gray_dye_from_black_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 7 - }, - { - "id" : "minecraft:light_gray_dye_from_gray_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 6 - }, - { - "id" : "minecraft:light_gray_dye_from_gray_white", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 4 - }, - { - "id" : "minecraft:light_gray_dye_from_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 8 - }, - { - "id" : "minecraft:light_gray_dye_from_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 5 - }, - { - "id" : "minecraft:light_gray_dye_from_oxeye_daisy", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:light_gray_dye_from_white_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_weighted_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 147, - "id" : "minecraft:light_weighted_pressure_plate" - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lightning_rod", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -312, - "id" : "minecraft:lightning_rod" - } - ], - "shape" : [ - "A", - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:lime__carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - ], - "output" : [ - { - "legacyId" : -418, - "id" : "minecraft:lime_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_dye_from_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:lime_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lit_pumpkin", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -155, - "id" : "minecraft:carved_pumpkin", - "damage" : 32767 - }, - "B" : { - "legacyId" : 50, - "id" : "minecraft:torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 91, - "id" : "minecraft:lit_pumpkin" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:locator_map", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lodestone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 3 - }, - "B" : { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -222, - "id" : "minecraft:lodestone" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:loom_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -204, - "id" : "minecraft:loom" - } - ], - "shape" : [ - "AA", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:loom_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -204, - "id" : "minecraft:loom" - } - ], - "shape" : [ - "AA", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:magenta_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - ], - "output" : [ - { - "legacyId" : -415, - "id" : "minecraft:magenta_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:magenta_dye_from_allium", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:magenta_dye_from_blue_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 6 - }, - { - "id" : "minecraft:magenta_dye_from_blue_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 4 - }, - { - "id" : "minecraft:magenta_dye_from_lapis_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 8 - }, - { - "id" : "minecraft:magenta_dye_from_lapis_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 7 - }, - { - "id" : "minecraft:magenta_dye_from_lapis_red_pink", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 5 - }, - { - "id" : "minecraft:magenta_dye_from_lilac", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_dye_from_purple_and_pink", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:magenta_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magma", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 430, - "id" : "minecraft:magma_cream", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 213, - "id" : "minecraft:magma" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magma_cream", - "type" : 0, - "input" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - }, - { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 430, - "id" : "minecraft:magma_cream" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:map", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:melon_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 272, - "id" : "minecraft:melon_slice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 103, - "id" : "minecraft:melon_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:melon_seeds", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 272, - "id" : "minecraft:melon_slice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 293, - "id" : "minecraft:melon_seeds" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 370, - "id" : "minecraft:minecart" - } - ], - "shape" : [ - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:moss_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -320, - "id" : "minecraft:moss_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -335, - "id" : "minecraft:moss_carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - { - "legacyId" : 106, - "id" : "minecraft:vine", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone_from_moss", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - { - "legacyId" : -320, - "id" : "minecraft:moss_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -179, - "id" : "minecraft:mossy_cobblestone_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stone_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -175, - "id" : "minecraft:mossy_stone_brick_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stone_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stonebrick", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - { - "legacyId" : 106, - "id" : "minecraft:vine", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stonebrick_from_moss", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - { - "legacyId" : -320, - "id" : "minecraft:moss_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mushroom_stew", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 260, - "id" : "minecraft:mushroom_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 113, - "id" : "minecraft:nether_brick_fence", - "count" : 6 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 114, - "id" : "minecraft:nether_brick_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_wart_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 294, - "id" : "minecraft:nether_wart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 214, - "id" : "minecraft:nether_wart_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:netherite_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -270, - "id" : "minecraft:netherite_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:netherite_ingot", - "type" : 0, - "input" : [ - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:netherite_ingot_from_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -270, - "id" : "minecraft:netherite_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:noteblock_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 25, - "id" : "minecraft:noteblock" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:noteblock_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 25, - "id" : "minecraft:noteblock" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:oak_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log" - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood" - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 53, - "id" : "minecraft:oak_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log" - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:observer", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 251, - "id" : "minecraft:observer" - } - ], - "shape" : [ - "AAA", - "BBC", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - ], - "output" : [ - { - "legacyId" : -414, - "id" : "minecraft:orange_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_dye_from_orange_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_dye_from_red_yellow", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - ], - "output" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:packed_ice", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 79, - "id" : "minecraft:ice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 174, - "id" : "minecraft:packed_ice" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:paper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 385, - "id" : "minecraft:sugar_cane", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "count" : 3 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pillar_quartz_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "count" : 2 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : -419, - "id" : "minecraft:pink_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye_from_peony", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye_from_pink_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye_from_red_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:piston_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "D" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 33, - "id" : "minecraft:piston" - } - ], - "shape" : [ - "AAA", - "BCB", - "BDB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:piston_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "D" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 33, - "id" : "minecraft:piston" - } - ], - "shape" : [ - "AAA", - "BCB", - "BDB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:polished_andesite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_andesite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : -174, - "id" : "minecraft:polished_andesite_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_basalt", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -234, - "id" : "minecraft:basalt", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -235, - "id" : "minecraft:polished_basalt", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_brick_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -296, - "id" : "minecraft:polished_blackstone_button" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -295, - "id" : "minecraft:polished_blackstone_pressure_plate" - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -292, - "id" : "minecraft:polished_blackstone_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -297, - "id" : "minecraft:polished_blackstone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_deepslate_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -384, - "id" : "minecraft:polished_deepslate_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_deepslate_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -385, - "id" : "minecraft:polished_deepslate_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_deepslate_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -386, - "id" : "minecraft:polished_deepslate_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_diorite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_diorite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -173, - "id" : "minecraft:polished_diorite_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_granite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_granite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -172, - "id" : "minecraft:polished_granite_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - }, - "output" : [ - { - "legacyId" : -2, - "id" : "minecraft:prismarine_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_stairs_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -4, - "id" : "minecraft:prismarine_bricks_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_stairs_dark", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -3, - "id" : "minecraft:dark_prismarine_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pumpkin_pie", - "type" : 0, - "input" : [ - { - "legacyId" : 86, - "id" : "minecraft:pumpkin", - "damage" : 32767 - }, - { - "legacyId" : 416, - "id" : "minecraft:sugar", - "damage" : 32767 - }, - { - "legacyId" : 390, - "id" : "minecraft:egg", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 284, - "id" : "minecraft:pumpkin_pie" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pumpkin_seeds", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 86, - "id" : "minecraft:pumpkin", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 292, - "id" : "minecraft:pumpkin_seeds", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - ], - "output" : [ - { - "legacyId" : -423, - "id" : "minecraft:purple_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "output" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_dye_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "output" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:purple_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purpur_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 559, - "id" : "minecraft:popped_chorus_fruit", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purpur_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 203, - "id" : "minecraft:purpur_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:quartz_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:quartz_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : -304, - "id" : "minecraft:quartz_bricks" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:quartz_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : 156, - "id" : "minecraft:quartz_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:rabbit_stew_from_brown_mushroom", - "type" : 0, - "input" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - }, - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 290, - "id" : "minecraft:rabbit_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:rabbit_stew_from_red_mushroom", - "type" : 0, - "input" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 290, - "id" : "minecraft:rabbit_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 66, - "id" : "minecraft:rail", - "count" : 16 - } - ], - "shape" : [ - "A A", - "ABA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -452, - "id" : "minecraft:raw_copper_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_copper_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -452, - "id" : "minecraft:raw_copper_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_gold", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -453, - "id" : "minecraft:raw_gold_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_gold_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -453, - "id" : "minecraft:raw_gold_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_iron", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -451, - "id" : "minecraft:raw_iron_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_iron_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -451, - "id" : "minecraft:raw_iron_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "output" : [ - { - "legacyId" : -427, - "id" : "minecraft:red_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_beetroot", - "type" : 0, - "input" : [ - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_poppy", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower" - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_rose_bush", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_nether_brick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 294, - "id" : "minecraft:nether_wart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "shape" : [ - "AB", - "BA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_nether_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -184, - "id" : "minecraft:red_nether_brick_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_nether_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 12, - "id" : "minecraft:sand", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 180, - "id" : "minecraft:red_sandstone_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_sandstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 14 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 152, - "id" : "minecraft:redstone_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 373, - "id" : "minecraft:redstone", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 152, - "id" : "minecraft:redstone_block" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone_lamp", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 89, - "id" : "minecraft:glowstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 123, - "id" : "minecraft:redstone_lamp" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone_torch", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 76, - "id" : "minecraft:redstone_torch" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:repeater", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 419, - "id" : "minecraft:repeater" - } - ], - "shape" : [ - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:respawn_anchor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -289, - "id" : "minecraft:crying_obsidian", - "damage" : 32767 - }, - "B" : { - "legacyId" : 89, - "id" : "minecraft:glowstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -272, - "id" : "minecraft:respawn_anchor" - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 12, - "id" : "minecraft:sand" - } - }, - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 128, - "id" : "minecraft:sandstone_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sandstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:scaffolding", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -163, - "id" : "minecraft:bamboo", - "damage" : 32767 - }, - "B" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -165, - "id" : "minecraft:scaffolding", - "count" : 6 - } - ], - "shape" : [ - "ABA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sealantern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 549, - "id" : "minecraft:prismarine_crystals", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 169, - "id" : "minecraft:sealantern" - } - ], - "shape" : [ - "ABA", - "BBB", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:shears", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 421, - "id" : "minecraft:shears" - } - ], - "shape" : [ - " A", - "A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:shield", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 355, - "id" : "minecraft:shield" - } - ], - "shape" : [ - "ABA", - "AAA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:shield_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 355, - "id" : "minecraft:shield" - } - ], - "shape" : [ - "ABA", - "AAA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:shield_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 355, - "id" : "minecraft:shield" - } - ], - "shape" : [ - "ABA", - "AAA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:shulker_box", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 566, - "id" : "minecraft:shulker_shell", - "damage" : 32767 - }, - "B" : { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - } - ], - "shape" : [ - "A", - "B", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_acacia", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 579, - "id" : "minecraft:acacia_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_birch", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 577, - "id" : "minecraft:birch_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_darkoak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 580, - "id" : "minecraft:dark_oak_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_jungle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 578, - "id" : "minecraft:jungle_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_oak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 358, - "id" : "minecraft:oak_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_spruce", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 576, - "id" : "minecraft:spruce_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:slime", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 165, - "id" : "minecraft:slime" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:slime_ball", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 165, - "id" : "minecraft:slime", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smithing_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -202, - "id" : "minecraft:smithing_table" - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smithing_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -202, - "id" : "minecraft:smithing_table" - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smithing_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -202, - "id" : "minecraft:smithing_table" - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker_from_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_acacia", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_birch", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker_from_stripped_dark_oak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_jungle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_oak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_spruce", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker_from_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smooth_quartz_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -185, - "id" : "minecraft:smooth_quartz_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_red_sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_red_sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -176, - "id" : "minecraft:smooth_red_sandstone_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -177, - "id" : "minecraft:smooth_sandstone_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:snow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 374, - "id" : "minecraft:snowball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 80, - "id" : "minecraft:snow" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:snow_layer", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 80, - "id" : "minecraft:snow", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 78, - "id" : "minecraft:snow_layer", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:soul_campfire_from_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_crimson_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_crimson_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_warped_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_warped_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_lantern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : -268, - "id" : "minecraft:soul_torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -269, - "id" : "minecraft:soul_lantern" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:soul_torch_from_soul_sand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -268, - "id" : "minecraft:soul_torch", - "count" : 4 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:soul_torch_from_soul_soil", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -268, - "id" : "minecraft:soul_torch", - "count" : 4 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:speckled_melon", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 272, - "id" : "minecraft:melon_slice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 434, - "id" : "minecraft:glistering_melon_slice" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 378, - "id" : "minecraft:spruce_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 553, - "id" : "minecraft:spruce_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 183, - "id" : "minecraft:spruce_fence_gate" - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 134, - "id" : "minecraft:spruce_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spyglass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 623, - "id" : "minecraft:amethyst_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 624, - "id" : "minecraft:spyglass" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:stick_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick", - "count" : 4 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stick_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick", - "count" : 4 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:sticky_piston", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - }, - "B" : { - "legacyId" : 33, - "id" : "minecraft:piston", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 29, - "id" : "minecraft:sticky_piston" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 315, - "id" : "minecraft:stone_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_axe_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 315, - "id" : "minecraft:stone_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_axe_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 315, - "id" : "minecraft:stone_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - }, - "output" : [ - { - "legacyId" : 109, - "id" : "minecraft:stone_brick_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 77, - "id" : "minecraft:stone_button" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 330, - "id" : "minecraft:stone_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_hoe_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 330, - "id" : "minecraft:stone_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_hoe_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 330, - "id" : "minecraft:stone_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 314, - "id" : "minecraft:stone_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_pickaxe_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 314, - "id" : "minecraft:stone_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_pickaxe_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 314, - "id" : "minecraft:stone_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 70, - "id" : "minecraft:stone_pressure_plate" - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 313, - "id" : "minecraft:stone_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_shovel_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 313, - "id" : "minecraft:stone_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_shovel_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 313, - "id" : "minecraft:stone_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : -180, - "id" : "minecraft:normal_stone_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 312, - "id" : "minecraft:stone_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_sword_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 312, - "id" : "minecraft:stone_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_sword_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 312, - "id" : "minecraft:stone_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stonebrick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -197, - "id" : "minecraft:stonecutter_block" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:string_to_wool", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stripped_crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -300, - "id" : "minecraft:stripped_crimson_hyphae", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stripped_warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -301, - "id" : "minecraft:stripped_warped_hyphae", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sugar", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 385, - "id" : "minecraft:sugar_cane", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 416, - "id" : "minecraft:sugar" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_allium", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_azure_bluet", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_blue_orchid", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_cornflower", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_dandelion", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 37, - "id" : "minecraft:yellow_flower", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_lily_of_the_valley", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_oxeye_daisy", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_poppy", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower" - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_orange", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_pink", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_red", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_white", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_wither_rose", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : -216, - "id" : "minecraft:wither_rose", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:target", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 170, - "id" : "minecraft:hay_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -239, - "id" : "minecraft:target" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:tinted_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 623, - "id" : "minecraft:amethyst_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -334, - "id" : "minecraft:tinted_glass", - "count" : 2 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:tnt", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - "B" : { - "legacyId" : 12, - "id" : "minecraft:sand", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 46, - "id" : "minecraft:tnt" - } - ], - "shape" : [ - "ABA", - "BAB", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:tnt_minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 46, - "id" : "minecraft:tnt" - }, - "B" : { - "legacyId" : 370, - "id" : "minecraft:minecart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 525, - "id" : "minecraft:tnt_minecart" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:trapped_chest", - "type" : 0, - "input" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - }, - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 146, - "id" : "minecraft:trapped_chest" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:tripwire_hook_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook" - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:tripwire_hook_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook" - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:turtle_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 572, - "id" : "minecraft:scute", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 573, - "id" : "minecraft:turtle_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -261, - "id" : "minecraft:warped_button" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 615, - "id" : "minecraft:warped_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -257, - "id" : "minecraft:warped_fence", - "count" : 3 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -259, - "id" : "minecraft:warped_fence_gate" - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_fungus_on_a_stick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 392, - "id" : "minecraft:fishing_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : -229, - "id" : "minecraft:warped_fungus", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 616, - "id" : "minecraft:warped_fungus_on_a_stick" - } - ], - "shape" : [ - "A ", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -298, - "id" : "minecraft:warped_hyphae", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks_from_stripped_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks_from_stripped_warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -301, - "id" : "minecraft:stripped_warped_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks_from_warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -298, - "id" : "minecraft:warped_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -263, - "id" : "minecraft:warped_pressure_plate" - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_sign", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 613, - "id" : "minecraft:warped_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -255, - "id" : "minecraft:warped_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_trapdoor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -247, - "id" : "minecraft:warped_trapdoor", - "count" : 2 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:waxing_copper_block", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:wheat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 170, - "id" : "minecraft:hay_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 334, - "id" : "minecraft:wheat", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : -413, - "id" : "minecraft:white_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_candle_from_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : -413, - "id" : "minecraft:white_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_concrete_powder_from_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:white_dye_from_bone_meal", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_dye_from_lily_of_the_valley", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_glass_from_bonemeal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:white_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_hardened_clay_from_bonemeal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:wooden_axe_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 311, - "id" : "minecraft:wooden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_axe_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 311, - "id" : "minecraft:wooden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 359, - "id" : "minecraft:wooden_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:wooden_hoe_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 329, - "id" : "minecraft:wooden_hoe" - } - ], - "shape" : [ - "AA ", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_hoe_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 329, - "id" : "minecraft:wooden_hoe" - } - ], - "shape" : [ - "AA ", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_pickaxe_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 310, - "id" : "minecraft:wooden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_pickaxe_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 310, - "id" : "minecraft:wooden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_shovel_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_shovel_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_sword_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 308, - "id" : "minecraft:wooden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_sword_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 308, - "id" : "minecraft:wooden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:writable_book", - "type" : 0, - "input" : [ - { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 327, - "id" : "minecraft:feather", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 510, - "id" : "minecraft:writable_book" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - ], - "output" : [ - { - "legacyId" : -417, - "id" : "minecraft:yellow_candle" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_dye_from_dandelion", - "type" : 0, - "input" : [ - { - "legacyId" : 37, - "id" : "minecraft:yellow_flower" - } - ], - "output" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_dye_from_sunflower", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant" - } - ], - "output" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "oak_stairs_oak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 53, - "id" : "minecraft:oak_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_0_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star" - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_10_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_11_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_12_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_13_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_14_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_15_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_16_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star" - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_17_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_18_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_19_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_1_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_2_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_3_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_4_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_5_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_6_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_7_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_8_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_9_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_0_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_10_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 10, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_11_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 11, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_12_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 12, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_13_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 13, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_14_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 14, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_15_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_16_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_17_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_18_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_19_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_1_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 1, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_2_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 2, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_3_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_4_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_5_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 5, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_6_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 6, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_7_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 7, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_8_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 8, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_9_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 9, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "00000000-0000-0000-0000-000000000001" - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_16_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_17_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_18_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_19_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "slab3_endstonebrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "spruce_stairs_spruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 134, - "id" : "minecraft:spruce_stairs", - "count" : 4 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stick_wood_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick", - "count" : 4 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "stoneslab2_RedSandstone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_prismarine_bricks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_prismarine_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_purpur_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_rednetherbrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_redsandstone_heiroglyphs_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_smoothsandstone_smooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_andesite_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_diorite_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_granite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_polishedGranite_GraniteSmooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_polished_andesite_andesitesmooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_polished_diorite_dioritesmooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_smooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab4_cut_redsandstone_cut_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab4_cut_sandstone_cut_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab4_smoothquartz_smooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab_quartz_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab_sandstone_heiroglyphs_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "tool_material_recipe_0_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 310, - "id" : "minecraft:wooden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "tool_material_recipe_0_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "tool_material_recipe_0_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 311, - "id" : "minecraft:wooden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "tool_material_recipe_0_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 329, - "id" : "minecraft:wooden_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "type" : 4, - "uuid" : "aecd2294-4b94-434b-8667-4499bb2c9327" - }, - { - "id" : "weapon_arrow_recipe_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 11, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 12, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 13, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 14, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 14 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 15, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 15 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 16, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_16", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 16 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 17, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_17", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 17 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 18, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_18", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 18 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 19, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_19", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 19 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 20, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_20", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 20 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 21, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_21", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 21 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 22, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_22", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 22 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 23, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_23", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 23 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 24, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_24", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 24 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 25, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_25", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 25 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 26, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_26", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 26 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 27, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_27", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 27 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 28, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_28", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 28 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 29, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_29", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 29 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 30, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_30", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 30 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 31, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_31", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 31 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 32, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_32", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 32 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 33, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_33", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 33 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 34, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_34", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 34 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 35, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_35", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 35 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 36, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_36", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 36 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 37, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_37", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 37 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 38, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_38", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 38 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 39, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_39", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 39 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 40, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_40", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 40 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 41, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_41", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 41 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 42, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_42", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 42 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 43, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 6, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 7, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 8, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 9, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 10, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_stick_recipe_0_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 308, - "id" : "minecraft:wooden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "wool_dye_wool_0_1", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_10", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_11", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_12", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_13", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_14", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_15", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_2", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_3", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_4", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_5", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_6", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_7", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_8", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_9", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_0", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_1", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_11", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_12", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_13", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_14", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_15", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_2", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_3", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_4", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_5", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_6", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_7", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_8", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_9", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_0", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_1", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_10", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_12", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_13", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_14", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_15", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_2", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_3", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_4", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_5", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_6", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_7", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_8", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_9", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_0", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_1", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_10", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_11", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_13", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_14", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_15", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_2", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_3", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_4", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_5", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_6", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_7", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_8", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_9", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_0", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_1", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_10", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_11", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_12", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_14", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_15", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_2", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_3", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_4", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_5", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_6", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_7", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_8", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_9", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_0", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_1", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_10", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_11", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_12", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_13", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_15", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_2", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_3", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_4", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_5", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_6", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_7", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_8", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_9", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_0", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_1", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_10", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_11", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_12", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_13", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_14", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_2", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_3", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_4", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_5", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_6", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_7", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_8", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_9", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_1", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_10", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_11", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_12", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_13", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_14", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_15", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_2", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_3", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_4", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_5", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_6", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_7", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_8", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_9", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_0", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_1", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_10", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_11", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_12", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_13", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_14", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_15", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_2", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_4", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_5", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_6", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_7", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_8", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_9", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_0", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_1", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_10", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_11", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_12", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_13", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_14", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_15", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_2", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_3", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_5", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_6", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_7", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_8", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_9", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_0", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_1", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_10", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_11", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_12", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_13", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_14", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_2", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_3", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_4", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_5", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_6", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_7", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_8", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_9", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_0", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_10", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_11", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_12", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_13", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_14", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_15", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_2", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_3", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_4", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_5", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_6", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_7", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_8", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_9", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_0", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_1", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_10", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_11", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_12", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_13", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_14", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_15", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_3", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_4", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_5", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_6", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_7", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_8", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_9", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_0", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_1", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_10", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_11", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_12", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_13", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_14", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_15", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_2", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_4", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_5", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_6", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_7", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_8", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_9", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_0", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_1", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_10", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_11", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_12", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_13", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_14", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_15", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_2", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_3", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_5", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_6", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_7", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_8", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_9", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_0", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_1", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_10", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_11", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_12", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_13", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_14", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_15", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_2", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_3", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_4", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_6", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_7", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_8", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_9", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_0", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_1", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_10", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_11", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_12", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_13", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_14", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_15", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_2", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_3", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_4", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_5", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_7", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_8", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_9", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_0", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_1", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_10", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_11", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_12", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_13", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_14", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_15", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_2", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_3", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_4", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_5", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_6", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_8", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_9", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_0", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_1", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_10", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_11", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_12", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_13", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_14", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_15", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_2", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_3", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_4", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_5", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_6", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_7", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_9", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_0", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_1", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_10", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_11", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_12", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_13", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_14", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_15", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_2", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_3", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_4", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_5", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_6", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_7", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_8", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 3, - "input" : { - "legacyId" : -408, - "id" : "minecraft:deepslate_copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -408, - "id" : "minecraft:deepslate_copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -407, - "id" : "minecraft:deepslate_emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -407, - "id" : "minecraft:deepslate_emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -406, - "id" : "minecraft:deepslate_coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -406, - "id" : "minecraft:deepslate_coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -405, - "id" : "minecraft:deepslate_diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -405, - "id" : "minecraft:deepslate_diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -403, - "id" : "minecraft:deepslate_redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -403, - "id" : "minecraft:deepslate_redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -402, - "id" : "minecraft:deepslate_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -402, - "id" : "minecraft:deepslate_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -401, - "id" : "minecraft:deepslate_iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -401, - "id" : "minecraft:deepslate_iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -400, - "id" : "minecraft:deepslate_lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -400, - "id" : "minecraft:deepslate_lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : -1 - }, - "output" : { - "legacyId" : -410, - "id" : "minecraft:cracked_deepslate_bricks" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : -1 - }, - "output" : { - "legacyId" : -409, - "id" : "minecraft:cracked_deepslate_tiles" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : -1 - }, - "output" : { - "legacyId" : -378, - "id" : "minecraft:deepslate" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -311, - "id" : "minecraft:copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -311, - "id" : "minecraft:copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -288, - "id" : "minecraft:nether_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -288, - "id" : "minecraft:nether_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : -1 - }, - "output" : { - "legacyId" : -280, - "id" : "minecraft:cracked_polished_blackstone_bricks" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -271, - "id" : "minecraft:ancient_debris", - "damage" : -1 - }, - "output" : { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -271, - "id" : "minecraft:ancient_debris", - "damage" : -1 - }, - "output" : { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -234, - "id" : "minecraft:basalt", - "damage" : -1 - }, - "output" : { - "legacyId" : -377, - "id" : "minecraft:smooth_basalt" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood" - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 2 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 3 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 4 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 5 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 8 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 9 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 10 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 11 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 12 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 13 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -156, - "id" : "minecraft:sea_pickle", - "damage" : -1 - }, - "output" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 1, - "id" : "minecraft:stone" - }, - "output" : { - "legacyId" : -183, - "id" : "minecraft:smooth_stone" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : -1 - }, - "output" : { - "legacyId" : 1, - "id" : "minecraft:stone" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 12, - "id" : "minecraft:sand", - "damage" : -1 - }, - "output" : { - "legacyId" : 20, - "id" : "minecraft:glass" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 14, - "id" : "minecraft:gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 14, - "id" : "minecraft:gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 15, - "id" : "minecraft:iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 15, - "id" : "minecraft:iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 16, - "id" : "minecraft:coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 16, - "id" : "minecraft:coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log" - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 2 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 3 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 19, - "id" : "minecraft:sponge", - "damage" : 1 - }, - "output" : { - "legacyId" : 19, - "id" : "minecraft:sponge" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 21, - "id" : "minecraft:lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 21, - "id" : "minecraft:lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : -1 - }, - "output" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 56, - "id" : "minecraft:diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 56, - "id" : "minecraft:diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 73, - "id" : "minecraft:redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 73, - "id" : "minecraft:redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 81, - "id" : "minecraft:cactus", - "damage" : -1 - }, - "output" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 82, - "id" : "minecraft:clay", - "damage" : -1 - }, - "output" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 87, - "id" : "minecraft:netherrack", - "damage" : -1 - }, - "output" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - "output" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : -1 - }, - "output" : { - "legacyId" : -303, - "id" : "minecraft:cracked_nether_bricks" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 129, - "id" : "minecraft:emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 129, - "id" : "minecraft:emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 153, - "id" : "minecraft:quartz_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 153, - "id" : "minecraft:quartz_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - }, - "output" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay" - }, - "output" : { - "legacyId" : 220, - "id" : "minecraft:white_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 1 - }, - "output" : { - "legacyId" : 221, - "id" : "minecraft:orange_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 2 - }, - "output" : { - "legacyId" : 222, - "id" : "minecraft:magenta_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 3 - }, - "output" : { - "legacyId" : 223, - "id" : "minecraft:light_blue_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 4 - }, - "output" : { - "legacyId" : 224, - "id" : "minecraft:yellow_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 5 - }, - "output" : { - "legacyId" : 225, - "id" : "minecraft:lime_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 6 - }, - "output" : { - "legacyId" : 226, - "id" : "minecraft:pink_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 7 - }, - "output" : { - "legacyId" : 227, - "id" : "minecraft:gray_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 8 - }, - "output" : { - "legacyId" : 228, - "id" : "minecraft:silver_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 9 - }, - "output" : { - "legacyId" : 229, - "id" : "minecraft:cyan_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 10 - }, - "output" : { - "legacyId" : 219, - "id" : "minecraft:purple_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 11 - }, - "output" : { - "legacyId" : 231, - "id" : "minecraft:blue_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 12 - }, - "output" : { - "legacyId" : 232, - "id" : "minecraft:brown_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 13 - }, - "output" : { - "legacyId" : 233, - "id" : "minecraft:green_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 14 - }, - "output" : { - "legacyId" : 234, - "id" : "minecraft:red_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 15 - }, - "output" : { - "legacyId" : 235, - "id" : "minecraft:black_glazed_terracotta" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 162, - "id" : "minecraft:log2" - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : -1 - }, - "output" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 296, - "id" : "minecraft:iron_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 296, - "id" : "minecraft:iron_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 297, - "id" : "minecraft:iron_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 297, - "id" : "minecraft:iron_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 298, - "id" : "minecraft:iron_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 298, - "id" : "minecraft:iron_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 307, - "id" : "minecraft:iron_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 307, - "id" : "minecraft:iron_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 322, - "id" : "minecraft:golden_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 322, - "id" : "minecraft:golden_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 323, - "id" : "minecraft:golden_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 323, - "id" : "minecraft:golden_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 324, - "id" : "minecraft:golden_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 324, - "id" : "minecraft:golden_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 325, - "id" : "minecraft:golden_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 325, - "id" : "minecraft:golden_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 331, - "id" : "minecraft:iron_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 331, - "id" : "minecraft:iron_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 333, - "id" : "minecraft:golden_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 333, - "id" : "minecraft:golden_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 339, - "id" : "minecraft:chainmail_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 339, - "id" : "minecraft:chainmail_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 340, - "id" : "minecraft:chainmail_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 340, - "id" : "minecraft:chainmail_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 341, - "id" : "minecraft:chainmail_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 341, - "id" : "minecraft:chainmail_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 342, - "id" : "minecraft:chainmail_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 342, - "id" : "minecraft:chainmail_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 343, - "id" : "minecraft:iron_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 343, - "id" : "minecraft:iron_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 344, - "id" : "minecraft:iron_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 344, - "id" : "minecraft:iron_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 345, - "id" : "minecraft:iron_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 345, - "id" : "minecraft:iron_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 346, - "id" : "minecraft:iron_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 346, - "id" : "minecraft:iron_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 351, - "id" : "minecraft:golden_helmet" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 351, - "id" : "minecraft:golden_helmet" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 352, - "id" : "minecraft:golden_chestplate" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 352, - "id" : "minecraft:golden_chestplate" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 353, - "id" : "minecraft:golden_leggings" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 353, - "id" : "minecraft:golden_leggings" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 354, - "id" : "minecraft:golden_boots" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 354, - "id" : "minecraft:golden_boots" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 384, - "id" : "minecraft:clay_ball", - "damage" : -1 - }, - "output" : { - "legacyId" : 383, - "id" : "minecraft:brick", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 531, - "id" : "minecraft:iron_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 531, - "id" : "minecraft:iron_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 532, - "id" : "minecraft:golden_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 532, - "id" : "minecraft:golden_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 558, - "id" : "minecraft:chorus_fruit", - "damage" : -1 - }, - "output" : { - "legacyId" : 559, - "id" : "minecraft:popped_chorus_fruit", - "damage" : 32767 - }, - "block" : "furnace" - } - ], - "potionMixes" : [ - { - "inputId" : "minecraft:potion", - "inputMeta" : 17, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 42 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 42 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 42 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 31 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 31 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 31 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 + "version" : 448, + "recipes" : [ + { + "type" : 4, + "uuid" : "442d85ed-8272-4543-a6f1-418f90ded05d" + }, + { + "type" : 4, + "uuid" : "8b36268c-1829-483c-a0f1-993b7156a8f2" + }, + { + "type" : 4, + "uuid" : "602234e4-cac1-4353-8bb7-b1ebff70024b" + }, + { + "id" : "minecraft:cartography_table_locator_map", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "block" : "cartography_table", + "priority" : 0 + }, + { + "id" : "minecraft:cartography_table_map", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map" + } + ], + "block" : "cartography_table", + "priority" : 0 + }, + { + "type" : 4, + "uuid" : "98c84b38-1085-46bd-b1ce-dd38c159e6cc" + }, + { + "id" : "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -395, + "id" : "minecraft:chiseled_deepslate", + "blockRuntimeId" : 1129 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -380, + "id" : "minecraft:cobbled_deepslate_slab", + "count" : 2, + "blockRuntimeId" : 1145 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -381, + "id" : "minecraft:cobbled_deepslate_stairs", + "blockRuntimeId" : 1147 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -382, + "id" : "minecraft:cobbled_deepslate_wall", + "blockRuntimeId" : 1155 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 2, + "blockRuntimeId" : 4104 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 2, + "blockRuntimeId" : 4104 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 2, + "blockRuntimeId" : 4104 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4106 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4106 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4106 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4114 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4114 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4114 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "blockRuntimeId" : 4276 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "blockRuntimeId" : 4276 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2, + "blockRuntimeId" : 4287 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2, + "blockRuntimeId" : 4287 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2, + "blockRuntimeId" : 4287 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2, + "blockRuntimeId" : 4287 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4289 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4289 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4289 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4289 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4297 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4297 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4297 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4297 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4459 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4459 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4459 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "blockRuntimeId" : 6176 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -384, + "id" : "minecraft:polished_deepslate_slab", + "count" : 2, + "blockRuntimeId" : 6179 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -384, + "id" : "minecraft:polished_deepslate_slab", + "count" : 2, + "blockRuntimeId" : 6179 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -385, + "id" : "minecraft:polished_deepslate_stairs", + "blockRuntimeId" : 6181 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -385, + "id" : "minecraft:polished_deepslate_stairs", + "blockRuntimeId" : 6181 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -386, + "id" : "minecraft:polished_deepslate_wall", + "blockRuntimeId" : 6189 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -386, + "id" : "minecraft:polished_deepslate_wall", + "blockRuntimeId" : 6189 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_andesite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7162 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_andesite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -171, + "id" : "minecraft:andesite_stairs", + "blockRuntimeId" : 144 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_andesite_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1322 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_blackstone_slab_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -282, + "id" : "minecraft:blackstone_slab", + "count" : 2, + "blockRuntimeId" : 497 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_blackstone_stairs_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -276, + "id" : "minecraft:blackstone_stairs", + "blockRuntimeId" : 499 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_blackstone_wall_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -277, + "id" : "minecraft:blackstone_wall", + "blockRuntimeId" : 507 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7131 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_brick_slab_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 2, + "blockRuntimeId" : 5801 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "output" : [ + { + "legacyId" : 108, + "id" : "minecraft:brick_stairs", + "blockRuntimeId" : 876 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_brick_stairs_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5803 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1324 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_wall_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5811 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_bricks_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "blockRuntimeId" : 5973 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_chiseled_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -279, + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1131 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_chiseled_nether_bricks_from_nether_brick", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -302, + "id" : "minecraft:chiseled_nether_bricks", + "blockRuntimeId" : 1130 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_chiseled_polished_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -279, + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1131 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_cobbledouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7130 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_cobblestone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + ], + "output" : [ + { + "legacyId" : 67, + "id" : "minecraft:stone_stairs", + "blockRuntimeId" : 7185 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_cobblestone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1318 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_copper_block_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "blockRuntimeId" : 3909 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_copper_block_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 3910 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_copper_block_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "blockRuntimeId" : 3912 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 3910 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "blockRuntimeId" : 3912 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_dark_prismarine_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7146 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_dark_prismarine_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -3, + "id" : "minecraft:dark_prismarine_stairs", + "blockRuntimeId" : 4036 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_diorite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7163 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_diorite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -170, + "id" : "minecraft:diorite_stairs", + "blockRuntimeId" : 4475 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_diorite_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1321 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_double_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 2, + "blockRuntimeId" : 7177 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_endbrick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7159 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_endbrick_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7159 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_endbrick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : -178, + "id" : "minecraft:end_brick_stairs", + "blockRuntimeId" : 4719 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_endbrick_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "output" : [ + { + "legacyId" : -178, + "id" : "minecraft:end_brick_stairs", + "blockRuntimeId" : 4719 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_endbrick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1328 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_endbrick_wall2", + "type" : 0, + "input" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1328 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_endbricks", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "blockRuntimeId" : 4727 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "blockRuntimeId" : 4752 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "blockRuntimeId" : 4755 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_exposed_copper_to_exposed_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 4753 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 4753 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "blockRuntimeId" : 4755 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_granite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7165 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_granite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -169, + "id" : "minecraft:granite_stairs", + "blockRuntimeId" : 4964 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_granite_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1320 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_mossy_cobbledouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7148 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_mossy_cobblestone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "output" : [ + { + "legacyId" : -179, + "id" : "minecraft:mossy_cobblestone_stairs", + "blockRuntimeId" : 5643 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_mossy_cobblestone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1319 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_mossy_stonebrick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 2, + "blockRuntimeId" : 7175 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_mossy_stonebrick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -175, + "id" : "minecraft:mossy_stone_brick_stairs", + "blockRuntimeId" : 5651 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_mossy_stonebrick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1326 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_nether_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7134 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_nether_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "output" : [ + { + "legacyId" : 114, + "id" : "minecraft:nether_brick_stairs", + "blockRuntimeId" : 5663 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_nether_brick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1327 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "blockRuntimeId" : 5728 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 5729 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "blockRuntimeId" : 5731 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 5729 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "blockRuntimeId" : 5731 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_andesite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7090 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7161 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7161 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -174, + "id" : "minecraft:polished_andesite_stairs", + "blockRuntimeId" : 5787 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : -174, + "id" : "minecraft:polished_andesite_stairs", + "blockRuntimeId" : 5787 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_polished_basalt_from_basalt", + "type" : 0, + "input" : [ + { + "legacyId" : -234, + "id" : "minecraft:basalt", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -235, + "id" : "minecraft:polished_basalt", + "blockRuntimeId" : 5795 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_brick_slab_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 2, + "blockRuntimeId" : 5801 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_brick_stairs_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5803 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_brick_wall_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5811 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_bricks_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "blockRuntimeId" : 5973 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_diorite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7088 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7164 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7164 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -173, + "id" : "minecraft:polished_diorite_stairs", + "blockRuntimeId" : 6351 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : -173, + "id" : "minecraft:polished_diorite_stairs", + "blockRuntimeId" : 6351 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_polished_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "blockRuntimeId" : 5798 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_granite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7086 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_polished_granite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7166 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_polished_granite_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7166 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_polished_granite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -172, + "id" : "minecraft:polished_granite_stairs", + "blockRuntimeId" : 6359 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_polished_granite_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : -172, + "id" : "minecraft:polished_granite_stairs", + "blockRuntimeId" : 6359 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_polished_slab_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "count" : 2, + "blockRuntimeId" : 6004 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_stairs_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -292, + "id" : "minecraft:polished_blackstone_stairs", + "blockRuntimeId" : 6006 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_wall_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -297, + "id" : "minecraft:polished_blackstone_wall", + "blockRuntimeId" : 6014 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_prismarine_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7147 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_prismarine_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : -4, + "id" : "minecraft:prismarine_bricks_stairs", + "blockRuntimeId" : 6414 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_prismarine_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7145 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_prismarine_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "output" : [ + { + "legacyId" : -2, + "id" : "minecraft:prismarine_stairs", + "blockRuntimeId" : 6422 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_prismarine_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1329 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_purpur_lines", + "type" : 0, + "input" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "output" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6500 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_purpur_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7144 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_purpur_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "output" : [ + { + "legacyId" : 203, + "id" : "minecraft:purpur_stairs", + "blockRuntimeId" : 6510 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_quartz_bricks_from_quartz_block", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : -304, + "id" : "minecraft:quartz_bricks", + "blockRuntimeId" : 6530 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_quartz_chiseled", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6519 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_quartz_lines", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6520 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_quartz_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7133 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_quartz_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 156, + "id" : "minecraft:quartz_stairs", + "blockRuntimeId" : 6532 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_red_nether_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7150 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_red_nether_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "output" : [ + { + "legacyId" : -184, + "id" : "minecraft:red_nether_brick_stairs", + "blockRuntimeId" : 6598 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_red_nether_brick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1331 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_red_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7143 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_cut", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6608 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_heiroglyphs", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6607 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 180, + "id" : "minecraft:red_sandstone_stairs", + "blockRuntimeId" : 6610 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1330 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7128 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_sandstone_cut", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6681 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_sandstone_heiroglyphs", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6680 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 128, + "id" : "minecraft:sandstone_stairs", + "blockRuntimeId" : 6683 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_sandstone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1323 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_slab_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "count" : 2, + "blockRuntimeId" : 6004 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_slab_from_polished_blackstone_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 2, + "blockRuntimeId" : 5801 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_smooth_double_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -183, + "id" : "minecraft:smooth_stone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7127 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_quartz_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 2, + "blockRuntimeId" : 7176 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_quartz_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -185, + "id" : "minecraft:smooth_quartz_stairs", + "blockRuntimeId" : 6791 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_smooth_red_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7160 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_red_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -176, + "id" : "minecraft:smooth_red_sandstone_stairs", + "blockRuntimeId" : 6799 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_smooth_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7149 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -177, + "id" : "minecraft:smooth_sandstone_stairs", + "blockRuntimeId" : 6807 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_stairs_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -292, + "id" : "minecraft:polished_blackstone_stairs", + "blockRuntimeId" : 6006 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_stone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : -180, + "id" : "minecraft:normal_stone_stairs", + "blockRuntimeId" : 5681 + } + ], + "block" : "stonecutter", + "priority" : 6 + }, + { + "id" : "minecraft:stonecutter_stonebrick", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7193 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_stonebrick_chiseled", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7196 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_stonebrick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7132 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_stonebrick_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7132 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_stonebrick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 109, + "id" : "minecraft:stone_brick_stairs", + "blockRuntimeId" : 7091 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_stonebrick_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "output" : [ + { + "legacyId" : 109, + "id" : "minecraft:stone_brick_stairs", + "blockRuntimeId" : 7091 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_stonebrick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1325 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_stonebrick_wall2", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1325 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_wall_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -297, + "id" : "minecraft:polished_blackstone_wall", + "blockRuntimeId" : 6014 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_wall_from_polished_blackstone_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5811 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "blockRuntimeId" : 7590 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7591 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId" : 7593 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_exposed_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7605 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7591 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId" : 7593 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "blockRuntimeId" : 7604 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId" : 7607 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7605 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId" : 7607 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId" : 7618 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7619 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7621 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId" : 7619 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7621 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "blockRuntimeId" : 7632 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7633 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId" : 7635 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7633 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId" : 7635 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "blockRuntimeId" : 7646 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7647 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "blockRuntimeId" : 7649 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7647 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "blockRuntimeId" : 7649 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "stonecutter_stairs_from_polished_blackstone_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5803 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "Bookshelf_woodplanks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 704 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "Bowl_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "count" : 4 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "ButtonAcacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -140, + "id" : "minecraft:acacia_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonBirch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -141, + "id" : "minecraft:birch_button", + "blockRuntimeId" : 356 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonDarkOak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -142, + "id" : "minecraft:dark_oak_button", + "blockRuntimeId" : 3936 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonJungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -143, + "id" : "minecraft:jungle_button", + "blockRuntimeId" : 5184 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonSpruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -144, + "id" : "minecraft:spruce_button", + "blockRuntimeId" : 6870 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Chest_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "blockRuntimeId" : 1123 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "DaylightDetector_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass" + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 151, + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4066 + } + ], + "shape" : [ + "AAA", + "BBB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "FireCharge_blaze_powder_coal_sulphur_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + }, + { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 509, + "id" : "minecraft:fire_charge", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "FireCharge_coal_sulphur_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + }, + { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 509, + "id" : "minecraft:fire_charge", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Jukebox_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 84, + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5183 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "Note_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 25, + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5689 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "Painting_Cobblestone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7130 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Painting_NetherBrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7134 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Painting_VanillaBlocks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7128 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Painting_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 357, + "id" : "minecraft:painting" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Piston_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + }, + "C" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "D" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 33, + "id" : "minecraft:piston", + "blockRuntimeId" : 5759 + } + ], + "shape" : [ + "AAA", + "BCB", + "BDB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "PressurePlateAcacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -150, + "id" : "minecraft:acacia_pressure_plate", + "blockRuntimeId" : 60 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateBirch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -151, + "id" : "minecraft:birch_pressure_plate", + "blockRuntimeId" : 416 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateDarkOak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -152, + "id" : "minecraft:dark_oak_pressure_plate", + "blockRuntimeId" : 3996 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateJungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -153, + "id" : "minecraft:jungle_pressure_plate", + "blockRuntimeId" : 5244 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateSpruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -154, + "id" : "minecraft:spruce_pressure_plate", + "blockRuntimeId" : 6930 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Stick_bamboo_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -163, + "id" : "minecraft:bamboo" + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick" + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "StoneSlab4_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7177 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab4_stoneBrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7175 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab_Brick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7131 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab_StoneBrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7132 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -183, + "id" : "minecraft:smooth_stone" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7127 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Torch_charcoal_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 50, + "id" : "minecraft:torch", + "count" : 4, + "blockRuntimeId" : 7261 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Torch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 50, + "id" : "minecraft:torch", + "count" : 4, + "blockRuntimeId" : 7261 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorAcacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -145, + "id" : "minecraft:acacia_trapdoor", + "count" : 2, + "blockRuntimeId" : 100 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorBirch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -146, + "id" : "minecraft:birch_trapdoor", + "count" : 2, + "blockRuntimeId" : 456 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorDarkOak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -147, + "id" : "minecraft:dark_oak_trapdoor", + "count" : 2, + "blockRuntimeId" : 4020 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorJungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -148, + "id" : "minecraft:jungle_trapdoor", + "count" : 2, + "blockRuntimeId" : 5284 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorSpruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -149, + "id" : "minecraft:spruce_trapdoor", + "count" : 2, + "blockRuntimeId" : 6970 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Trapdoor_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 96, + "id" : "minecraft:trapdoor", + "count" : 2, + "blockRuntimeId" : 7267 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TripwireHook_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "count" : 2, + "blockRuntimeId" : 7305 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "WoodButton_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 143, + "id" : "minecraft:wooden_button", + "blockRuntimeId" : 7747 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "WoodPressurePlate_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 72, + "id" : "minecraft:wooden_pressure_plate", + "blockRuntimeId" : 7791 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "WorkBench_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 58, + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3770 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "acacia_stairs_acacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 163, + "id" : "minecraft:acacia_stairs", + "count" : 4, + "blockRuntimeId" : 76 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "d81aaeaf-e172-4440-9225-868df030d27b" + }, + { + "type" : 4, + "uuid" : "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" + }, + { + "type" : 4, + "uuid" : "00000000-0000-0000-0000-000000000002" + }, + { + "id" : "bed_color_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_crimson_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_dye_0_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "birch_stairs_birch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 135, + "id" : "minecraft:birch_stairs", + "count" : 4, + "blockRuntimeId" : 432 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" + }, + { + "id" : "chiseled_quartz_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6519 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "chiseled_stonebrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7196 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "85939755-ba10-4d9d-a4cc-efb7a8e943c4" + }, + { + "id" : "dark_oak_stairs_dark_oak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 164, + "id" : "minecraft:dark_oak_stairs", + "count" : 4, + "blockRuntimeId" : 4012 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "d392b075-4ba1-40ae-8789-af868d56f6ce" + }, + { + "id" : "heiroglyphs_redsandstone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2" + } + }, + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6607 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "heiroglyphs_sandstone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6680 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "jungle_stairs_jungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 136, + "id" : "minecraft:jungle_stairs", + "count" : 4, + "blockRuntimeId" : 5260 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "lines_purpur_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6500 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "loom_block_wood_planks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -204, + "id" : "minecraft:loom", + "blockRuntimeId" : 5557 + } + ], + "shape" : [ + "AA", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 379, + "id" : "minecraft:acacia_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 556, + "id" : "minecraft:acacia_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4777 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 187, + "id" : "minecraft:acacia_fence_gate", + "blockRuntimeId" : 44 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2" + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5774 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5774 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5774 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5774 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 163, + "id" : "minecraft:acacia_stairs", + "count" : 4, + "blockRuntimeId" : 76 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2" + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7715 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7721 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7811 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:activator_rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 126, + "id" : "minecraft:activator_rail", + "count" : 6, + "blockRuntimeId" : 122 + } + ], + "shape" : [ + "ABA", + "ACA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:amethyst_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 623, + "id" : "minecraft:amethyst_shard", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -327, + "id" : "minecraft:amethyst_block", + "blockRuntimeId" : 136 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:andesite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + }, + { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 2, + "blockRuntimeId" : 7089 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:andesite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -171, + "id" : "minecraft:andesite_stairs", + "count" : 4, + "blockRuntimeId" : 144 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:andesite_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1322 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:anvil", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 42, + "id" : "minecraft:iron_block", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 145, + "id" : "minecraft:anvil", + "blockRuntimeId" : 152 + } + ], + "shape" : [ + "AAA", + " B ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:armor_stand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab" + } + }, + "output" : [ + { + "legacyId" : 552, + "id" : "minecraft:armor_stand" + } + ], + "shape" : [ + "AAA", + " A ", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:arrow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 327, + "id" : "minecraft:feather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "count" : 4 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 585, + "id" : "minecraft:field_masoned_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_creeper", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 516, + "id" : "minecraft:skull", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 582, + "id" : "minecraft:creeper_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_flower", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 581, + "id" : "minecraft:flower_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_skull", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 516, + "id" : "minecraft:skull", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 583, + "id" : "minecraft:skull_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_thing", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 259, + "id" : "minecraft:enchanted_golden_apple", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 584, + "id" : "minecraft:mojang_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_vines", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 106, + "id" : "minecraft:vine", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 586, + "id" : "minecraft:bordure_indented_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:barrel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -203, + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + } + ], + "shape" : [ + "ABA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:barrel_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -203, + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + } + ], + "shape" : [ + "ABA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:barrel_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -203, + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + } + ], + "shape" : [ + "ABA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:basic_map_to_enhanced", + "type" : 0, + "input" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 1 + }, + { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:beacon", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 518, + "id" : "minecraft:nether_star", + "damage" : 32767 + }, + "C" : { + "legacyId" : 49, + "id" : "minecraft:obsidian", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 138, + "id" : "minecraft:beacon", + "blockRuntimeId" : 217 + } + ], + "shape" : [ + "AAA", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:beehive", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -219, + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:beehive_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -219, + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:beehive_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -219, + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:beetroot_soup", + "type" : 0, + "input" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 286, + "id" : "minecraft:beetroot_soup" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 376, + "id" : "minecraft:birch_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 554, + "id" : "minecraft:birch_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4775 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 184, + "id" : "minecraft:birch_fence_gate", + "blockRuntimeId" : 400 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5772 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5772 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5772 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5772 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 135, + "id" : "minecraft:birch_stairs", + "count" : 4, + "blockRuntimeId" : 432 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7713 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7719 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7809 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner" + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + ], + "output" : [ + { + "legacyId" : -428, + "id" : "minecraft:black_candle", + "blockRuntimeId" : 478 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_candle_from_ink_sac", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + ], + "output" : [ + { + "legacyId" : -428, + "id" : "minecraft:black_candle", + "blockRuntimeId" : 478 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 978 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 978 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:black_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3674 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_concrete_powder_from_ink_sac", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3674 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:black_dye_from_ink_sac", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + ], + "output" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_dye_from_wither_rose", + "type" : 0, + "input" : [ + { + "legacyId" : -216, + "id" : "minecraft:wither_rose", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7007 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_glass_from_ink_sac", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7007 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:black_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 15 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7023 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7023 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7039 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_hardened_clay_from_ink_sac", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7039 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:blackstone_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -282, + "id" : "minecraft:blackstone_slab", + "count" : 6, + "blockRuntimeId" : 497 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blackstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -276, + "id" : "minecraft:blackstone_stairs", + "count" : 4, + "blockRuntimeId" : 499 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blackstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -277, + "id" : "minecraft:blackstone_wall", + "count" : 6, + "blockRuntimeId" : 507 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blast_furnace", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + }, + "C" : { + "legacyId" : -183, + "id" : "minecraft:smooth_stone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -196, + "id" : "minecraft:blast_furnace", + "blockRuntimeId" : 669 + } + ], + "shape" : [ + "AAA", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blaze_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + ], + "output" : [ + { + "legacyId" : -424, + "id" : "minecraft:blue_candle", + "blockRuntimeId" : 675 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_candle_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + ], + "output" : [ + { + "legacyId" : -424, + "id" : "minecraft:blue_candle", + "blockRuntimeId" : 675 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 974 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 974 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3670 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_concrete_powder_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3670 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:blue_dye_from_cornflower", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_dye_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + ], + "output" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_ice", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 174, + "id" : "minecraft:packed_ice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -11, + "id" : "minecraft:blue_ice", + "blockRuntimeId" : 691 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7003 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_glass_from_lapis_lazuli", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7003 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:blue_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7019 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7019 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7035 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_hardened_clay_from_lapis_lazuli", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7035 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 375, + "id" : "minecraft:oak_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bone_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + }, + "output" : [ + { + "legacyId" : 216, + "id" : "minecraft:bone_block", + "blockRuntimeId" : 692 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bone_meal_from_block", + "type" : 0, + "input" : [ + { + "legacyId" : 216, + "id" : "minecraft:bone_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "count" : 9 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bone_meal_from_bone", + "type" : 0, + "input" : [ + { + "legacyId" : 415, + "id" : "minecraft:bone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:book", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper" + }, + { + "legacyId" : 386, + "id" : "minecraft:paper" + }, + { + "legacyId" : 386, + "id" : "minecraft:paper" + }, + { + "legacyId" : 381, + "id" : "minecraft:leather" + } + ], + "output" : [ + { + "legacyId" : 387, + "id" : "minecraft:book" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bookshelf_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 704 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bookshelf_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 704 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 300, + "id" : "minecraft:bow" + } + ], + "shape" : [ + " AB", + "A B", + " AB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bowl_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "count" : 4 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bowl_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "count" : 4 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bread", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 261, + "id" : "minecraft:bread" + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brewing_stand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 431, + "id" : "minecraft:brewing_stand" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brewing_stand_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 431, + "id" : "minecraft:brewing_stand" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:brewing_stand_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 431, + "id" : "minecraft:brewing_stand" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:brick_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 383, + "id" : "minecraft:brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "blockRuntimeId" : 875 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 108, + "id" : "minecraft:brick_stairs", + "count" : 4, + "blockRuntimeId" : 876 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1324 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + ], + "output" : [ + { + "legacyId" : -425, + "id" : "minecraft:brown_candle", + "blockRuntimeId" : 884 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_candle_from_cocoa_beans", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + ], + "output" : [ + { + "legacyId" : -425, + "id" : "minecraft:brown_candle", + "blockRuntimeId" : 884 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 975 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 975 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3671 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_concrete_powder_from_cocoa_beans", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3671 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:brown_dye_from_cocoa_beans", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + ], + "output" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7004 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_glass_from_cocoa_beans", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7004 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:brown_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7020 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7020 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7036 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_hardened_clay_from_cocoa_beans", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7036 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:bucket", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 360, + "id" : "minecraft:bucket" + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cake", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 361, + "id" : "minecraft:milk_bucket" + }, + "B" : { + "legacyId" : 416, + "id" : "minecraft:sugar", + "damage" : 32767 + }, + "C" : { + "legacyId" : 390, + "id" : "minecraft:egg", + "damage" : 32767 + }, + "D" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 417, + "id" : "minecraft:cake" + }, + { + "legacyId" : 360, + "id" : "minecraft:bucket", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "BCB", + "DDD" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:campfire_from_charcoal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:candle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "blockRuntimeId" : 953 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:carrot_on_a_stick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 392, + "id" : "minecraft:fishing_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 517, + "id" : "minecraft:carrot_on_a_stick" + } + ], + "shape" : [ + "A ", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cartography_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -200, + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 987 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cartography_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -200, + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 987 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:cartography_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -200, + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 987 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:cauldron", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 432, + "id" : "minecraft:cauldron" + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chain", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 617, + "id" : "minecraft:chain" + } + ], + "shape" : [ + "A", + "B", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chest_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "blockRuntimeId" : 1123 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:chest_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "blockRuntimeId" : 1123 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:chest_minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + }, + "B" : { + "legacyId" : 370, + "id" : "minecraft:minecart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 389, + "id" : "minecraft:chest_minecart" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chiseled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -380, + "id" : "minecraft:cobbled_deepslate_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -395, + "id" : "minecraft:chiseled_deepslate", + "blockRuntimeId" : 1129 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:chiseled_nether_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : -302, + "id" : "minecraft:chiseled_nether_bricks", + "blockRuntimeId" : 1130 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chiseled_polished_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -279, + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1131 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 384, + "id" : "minecraft:clay_ball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 82, + "id" : "minecraft:clay", + "blockRuntimeId" : 1139 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:clock", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 393, + "id" : "minecraft:clock" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:coal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 173, + "id" : "minecraft:coal_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 302, + "id" : "minecraft:coal", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:coal_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + } + }, + "output" : [ + { + "legacyId" : 173, + "id" : "minecraft:coal_block", + "blockRuntimeId" : 1140 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:coarse_dirt", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 3, + "id" : "minecraft:dirt" + }, + "B" : { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 3, + "id" : "minecraft:dirt", + "count" : 4, + "blockRuntimeId" : 4484 + } + ], + "shape" : [ + "AB", + "BA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -380, + "id" : "minecraft:cobbled_deepslate_slab", + "count" : 6, + "blockRuntimeId" : 1145 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -381, + "id" : "minecraft:cobbled_deepslate_stairs", + "count" : 4, + "blockRuntimeId" : 1147 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cobbled_deepslate_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -382, + "id" : "minecraft:cobbled_deepslate_wall", + "count" : 6, + "blockRuntimeId" : 1155 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cobblestone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 67, + "id" : "minecraft:stone_stairs", + "count" : 4, + "blockRuntimeId" : 7185 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cobblestone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1318 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cobweb_to_string", + "type" : 0, + "input" : [ + { + "legacyId" : 30, + "id" : "minecraft:web", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 326, + "id" : "minecraft:string", + "count" : 9 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:comparator", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 522, + "id" : "minecraft:comparator" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:compass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 391, + "id" : "minecraft:compass" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:composter", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -213, + "id" : "minecraft:composter", + "blockRuntimeId" : 3634 + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:composter_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -213, + "id" : "minecraft:composter", + "blockRuntimeId" : 3634 + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:composter_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -213, + "id" : "minecraft:composter", + "blockRuntimeId" : 3634 + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:conduit", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 570, + "id" : "minecraft:nautilus_shell", + "damage" : 32767 + }, + "B" : { + "legacyId" : 571, + "id" : "minecraft:heart_of_the_sea", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -157, + "id" : "minecraft:conduit", + "blockRuntimeId" : 3675 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cookie", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + }, + "B" : { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + }, + "output" : [ + { + "legacyId" : 271, + "id" : "minecraft:cookie", + "count" : 8 + } + ], + "shape" : [ + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:copper_block_from_ingots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "blockRuntimeId" : 3676 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "count" : 4, + "blockRuntimeId" : 3909 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 3910 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 3912 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_exposed_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "count" : 4, + "blockRuntimeId" : 4752 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_exposed_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 4753 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_exposed_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 4755 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 58, + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3770 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:crafting_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 58, + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3770 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:crafting_table_oxidized_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "count" : 4, + "blockRuntimeId" : 5728 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_oxidized_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 5729 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_oxidized_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 5731 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "count" : 4, + "blockRuntimeId" : 7590 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7591 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7593 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_exposed_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "count" : 4, + "blockRuntimeId" : 7604 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7605 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7607 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "count" : 4, + "blockRuntimeId" : 7618 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7619 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7621 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_weathered_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "count" : 4, + "blockRuntimeId" : 7632 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7633 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7635 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_weathered_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "count" : 4, + "blockRuntimeId" : 7646 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_weathered_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7647 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_weathered_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7649 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crimson_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -260, + "id" : "minecraft:crimson_button", + "blockRuntimeId" : 3771 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 614, + "id" : "minecraft:crimson_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -256, + "id" : "minecraft:crimson_fence", + "count" : 3, + "blockRuntimeId" : 3817 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -258, + "id" : "minecraft:crimson_fence_gate", + "blockRuntimeId" : 3818 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -299, + "id" : "minecraft:crimson_hyphae", + "count" : 3, + "blockRuntimeId" : 3835 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4, + "blockRuntimeId" : 3839 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks_from_crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -299, + "id" : "minecraft:crimson_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4, + "blockRuntimeId" : 3839 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks_from_stripped_crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -300, + "id" : "minecraft:stripped_crimson_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4, + "blockRuntimeId" : 3839 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks_from_stripped_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4, + "blockRuntimeId" : 3839 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -262, + "id" : "minecraft:crimson_pressure_plate", + "blockRuntimeId" : 3840 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_sign", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 612, + "id" : "minecraft:crimson_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "count" : 6, + "blockRuntimeId" : 3857 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -254, + "id" : "minecraft:crimson_stairs", + "count" : 4, + "blockRuntimeId" : 3859 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_trapdoor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -246, + "id" : "minecraft:crimson_trapdoor", + "count" : 2, + "blockRuntimeId" : 3886 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crossbow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "C" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "D" : { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 575, + "id" : "minecraft:crossbow" + } + ], + "shape" : [ + "ABA", + "CDC", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + ], + "output" : [ + { + "legacyId" : -422, + "id" : "minecraft:cyan_candle", + "blockRuntimeId" : 3920 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 972 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 972 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3668 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + ], + "output" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_dye_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + ], + "output" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cyan_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7001 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7017 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7017 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7033 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 380, + "id" : "minecraft:dark_oak_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 557, + "id" : "minecraft:dark_oak_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4778 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 186, + "id" : "minecraft:dark_oak_fence_gate", + "blockRuntimeId" : 3980 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5775 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5775 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5775 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5775 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 164, + "id" : "minecraft:dark_oak_stairs", + "count" : 4, + "blockRuntimeId" : 4012 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7716 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7722 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7812 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_prismarine", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6412 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_prismarine_from_ink_sac", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6412 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:daylight_detector_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 151, + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4066 + } + ], + "shape" : [ + "AAA", + "BBB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:daylight_detector_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 151, + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4066 + } + ], + "shape" : [ + "AAA", + "BBB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:deepslate_brick_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 6, + "blockRuntimeId" : 4104 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "count" : 4, + "blockRuntimeId" : 4106 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "count" : 6, + "blockRuntimeId" : 4114 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "count" : 4, + "blockRuntimeId" : 4276 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tile_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 6, + "blockRuntimeId" : 4287 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tile_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "count" : 4, + "blockRuntimeId" : 4289 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tile_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "count" : 6, + "blockRuntimeId" : 4297 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tiles", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "count" : 4, + "blockRuntimeId" : 4459 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:detector_rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 70, + "id" : "minecraft:stone_pressure_plate", + "damage" : 32767 + }, + "C" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 28, + "id" : "minecraft:detector_rail", + "count" : 6, + "blockRuntimeId" : 4461 + } + ], + "shape" : [ + "A A", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 57, + "id" : "minecraft:diamond_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 304, + "id" : "minecraft:diamond", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 319, + "id" : "minecraft:diamond_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 57, + "id" : "minecraft:diamond_block", + "blockRuntimeId" : 4473 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 350, + "id" : "minecraft:diamond_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 348, + "id" : "minecraft:diamond_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 347, + "id" : "minecraft:diamond_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 332, + "id" : "minecraft:diamond_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 349, + "id" : "minecraft:diamond_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 318, + "id" : "minecraft:diamond_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 317, + "id" : "minecraft:diamond_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 316, + "id" : "minecraft:diamond_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diorite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 2, + "blockRuntimeId" : 7087 + } + ], + "shape" : [ + "AB", + "BA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diorite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -170, + "id" : "minecraft:diorite_stairs", + "count" : 4, + "blockRuntimeId" : 4475 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diorite_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1321 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dispenser", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 300, + "id" : "minecraft:bow", + "damage" : 32767 + }, + "C" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 23, + "id" : "minecraft:dispenser", + "blockRuntimeId" : 4489 + } + ], + "shape" : [ + "AAA", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dried_kelp", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -139, + "id" : "minecraft:dried_kelp_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dried_kelp_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -139, + "id" : "minecraft:dried_kelp_block", + "blockRuntimeId" : 4583 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dripstone_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -308, + "id" : "minecraft:pointed_dripstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -317, + "id" : "minecraft:dripstone_block", + "blockRuntimeId" : 4584 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dripstone_block_from_pointed_dripstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -308, + "id" : "minecraft:pointed_dripstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -317, + "id" : "minecraft:dripstone_block", + "blockRuntimeId" : 4584 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dropper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 125, + "id" : "minecraft:dropper", + "blockRuntimeId" : 4588 + } + ], + "shape" : [ + "AAA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:emerald", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 133, + "id" : "minecraft:emerald_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 512, + "id" : "minecraft:emerald", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:emerald_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 133, + "id" : "minecraft:emerald_block", + "blockRuntimeId" : 4716 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:empty_map_to_enhanced", + "type" : 0, + "input" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map" + }, + { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:enchanting_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "C" : { + "legacyId" : 49, + "id" : "minecraft:obsidian", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 116, + "id" : "minecraft:enchanting_table", + "blockRuntimeId" : 4718 + } + ], + "shape" : [ + " A ", + "BCB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -178, + "id" : "minecraft:end_brick_stairs", + "count" : 4, + "blockRuntimeId" : 4719 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1328 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 121, + "id" : "minecraft:end_stone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "count" : 4, + "blockRuntimeId" : 4727 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_crystal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 433, + "id" : "minecraft:ender_eye", + "damage" : 32767 + }, + "C" : { + "legacyId" : 424, + "id" : "minecraft:ghast_tear", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 629, + "id" : "minecraft:end_crystal" + } + ], + "shape" : [ + "AAA", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_rod", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : 559, + "id" : "minecraft:popped_chorus_fruit", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 208, + "id" : "minecraft:end_rod", + "count" : 4, + "blockRuntimeId" : 4738 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ender_chest", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 49, + "id" : "minecraft:obsidian", + "damage" : 32767 + }, + "B" : { + "legacyId" : 433, + "id" : "minecraft:ender_eye", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 130, + "id" : "minecraft:ender_chest", + "blockRuntimeId" : 4745 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ender_eye", + "type" : 0, + "input" : [ + { + "legacyId" : 422, + "id" : "minecraft:ender_pearl", + "damage" : 32767 + }, + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 433, + "id" : "minecraft:ender_eye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4773 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 107, + "id" : "minecraft:fence_gate", + "blockRuntimeId" : 4779 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fermented_spider_eye", + "type" : 0, + "input" : [ + { + "legacyId" : 278, + "id" : "minecraft:spider_eye", + "damage" : 32767 + }, + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 416, + "id" : "minecraft:sugar", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 428, + "id" : "minecraft:fermented_spider_eye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fishing_rod", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 392, + "id" : "minecraft:fishing_rod" + } + ], + "shape" : [ + " A", + " AB", + "A B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fletching_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -201, + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4811 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fletching_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -201, + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4811 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:fletching_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -201, + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4811 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:flint_and_steel", + "type" : 0, + "input" : [ + { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 299, + "id" : "minecraft:flint_and_steel" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:flower_pot", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 383, + "id" : "minecraft:brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 514, + "id" : "minecraft:flower_pot" + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:furnace", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 61, + "id" : "minecraft:furnace", + "blockRuntimeId" : 4863 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:furnace_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 61, + "id" : "minecraft:furnace", + "blockRuntimeId" : 4863 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:furnace_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 61, + "id" : "minecraft:furnace", + "blockRuntimeId" : 4863 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:glass_bottle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "count" : 3 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "count" : 16, + "blockRuntimeId" : 4871 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:glow_frame", + "type" : 0, + "input" : [ + { + "legacyId" : 513, + "id" : "minecraft:frame", + "damage" : 32767 + }, + { + "legacyId" : 503, + "id" : "minecraft:glow_ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:glow_frame" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:glowstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 394, + "id" : "minecraft:glowstone_dust", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 89, + "id" : "minecraft:glowstone", + "blockRuntimeId" : 4949 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 41, + "id" : "minecraft:gold_block", + "blockRuntimeId" : 4950 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_ingot_from_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 41, + "id" : "minecraft:gold_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_ingot_from_nuggets", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_nugget", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_apple", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 257, + "id" : "minecraft:apple", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 258, + "id" : "minecraft:golden_apple" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 325, + "id" : "minecraft:golden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 354, + "id" : "minecraft:golden_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_carrot", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 283, + "id" : "minecraft:golden_carrot" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 352, + "id" : "minecraft:golden_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 351, + "id" : "minecraft:golden_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 333, + "id" : "minecraft:golden_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 353, + "id" : "minecraft:golden_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 324, + "id" : "minecraft:golden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 27, + "id" : "minecraft:golden_rail", + "count" : 6, + "blockRuntimeId" : 4952 + } + ], + "shape" : [ + "A A", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 323, + "id" : "minecraft:golden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 322, + "id" : "minecraft:golden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:granite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + }, + { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7085 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:granite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -169, + "id" : "minecraft:granite_stairs", + "count" : 4, + "blockRuntimeId" : 4964 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:granite_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1320 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + ], + "output" : [ + { + "legacyId" : -420, + "id" : "minecraft:gray_candle", + "blockRuntimeId" : 4975 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 970 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 970 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3666 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_dye_from_black_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:gray_dye_from_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:gray_dye_from_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:gray_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 6999 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7015 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7015 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7031 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + ], + "output" : [ + { + "legacyId" : -426, + "id" : "minecraft:green_candle", + "blockRuntimeId" : 4991 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 976 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 976 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3672 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7005 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7021 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7021 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7037 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:grindstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "damage" : 2 + }, + "C" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5007 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5007 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5007 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5007 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5007 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5007 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5007 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5007 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5007 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:hay_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 170, + "id" : "minecraft:hay_block", + "blockRuntimeId" : 5059 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:heavy_weighted_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 148, + "id" : "minecraft:heavy_weighted_pressure_plate", + "blockRuntimeId" : 5071 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honey_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 591, + "id" : "minecraft:honey_bottle", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -220, + "id" : "minecraft:honey_block", + "blockRuntimeId" : 5087 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honey_bottle", + "type" : 0, + "input" : [ + { + "legacyId" : -220, + "id" : "minecraft:honey_block", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 591, + "id" : "minecraft:honey_bottle", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honey_bottle_to_sugar", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 591, + "id" : "minecraft:honey_bottle", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 416, + "id" : "minecraft:sugar", + "count" : 3 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honeycomb_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -221, + "id" : "minecraft:honeycomb_block", + "blockRuntimeId" : 5088 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:hopper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 527, + "id" : "minecraft:hopper" + } + ], + "shape" : [ + "A A", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:hopper_minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 527, + "id" : "minecraft:hopper", + "damage" : 32767 + }, + "B" : { + "legacyId" : 370, + "id" : "minecraft:minecart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 526, + "id" : "minecraft:hopper_minecart" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ingots_from_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:ingots_from_waxed_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:iron_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 298, + "id" : "minecraft:iron_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_bars", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 101, + "id" : "minecraft:iron_bars", + "count" : 16, + "blockRuntimeId" : 5108 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 42, + "id" : "minecraft:iron_block", + "blockRuntimeId" : 5109 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 346, + "id" : "minecraft:iron_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 344, + "id" : "minecraft:iron_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 372, + "id" : "minecraft:iron_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 343, + "id" : "minecraft:iron_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 331, + "id" : "minecraft:iron_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_ingot_from_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 42, + "id" : "minecraft:iron_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_ingot_from_nuggets", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 305, + "id" : "minecraft:iron_ingot" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 345, + "id" : "minecraft:iron_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_nugget", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 297, + "id" : "minecraft:iron_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 296, + "id" : "minecraft:iron_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 307, + "id" : "minecraft:iron_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_trapdoor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 167, + "id" : "minecraft:iron_trapdoor", + "blockRuntimeId" : 5143 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:item_frame", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 513, + "id" : "minecraft:frame" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jukebox_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 84, + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5183 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:jukebox_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 84, + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5183 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:jungle_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 377, + "id" : "minecraft:jungle_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 555, + "id" : "minecraft:jungle_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4776 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 185, + "id" : "minecraft:jungle_fence_gate", + "blockRuntimeId" : 5228 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5773 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5773 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5773 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5773 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 136, + "id" : "minecraft:jungle_stairs", + "count" : 4, + "blockRuntimeId" : 5260 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7714 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7720 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7810 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ladder", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 65, + "id" : "minecraft:ladder", + "count" : 3, + "blockRuntimeId" : 5332 + } + ], + "shape" : [ + "A A", + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lantern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 50, + "id" : "minecraft:torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -208, + "id" : "minecraft:lantern", + "blockRuntimeId" : 5338 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lapis_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + }, + "output" : [ + { + "legacyId" : 22, + "id" : "minecraft:lapis_block", + "blockRuntimeId" : 5340 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lapis_lazuli", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 22, + "id" : "minecraft:lapis_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lead", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 547, + "id" : "minecraft:lead", + "count" : 2 + } + ], + "shape" : [ + "AA ", + "AB ", + " A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 529, + "id" : "minecraft:rabbit_hide", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 381, + "id" : "minecraft:leather" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 338, + "id" : "minecraft:leather_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 336, + "id" : "minecraft:leather_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 335, + "id" : "minecraft:leather_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_horse_armor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 530, + "id" : "minecraft:leather_horse_armor" + } + ], + "shape" : [ + "A A", + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 337, + "id" : "minecraft:leather_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lectern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + }, + "B" : { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -194, + "id" : "minecraft:lectern", + "blockRuntimeId" : 5409 + } + ], + "shape" : [ + "AAA", + " B ", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lectern_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + }, + "B" : { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -194, + "id" : "minecraft:lectern", + "blockRuntimeId" : 5409 + } + ], + "shape" : [ + "AAA", + " B ", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:lectern_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + }, + "B" : { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -194, + "id" : "minecraft:lectern", + "blockRuntimeId" : 5409 + } + ], + "shape" : [ + "AAA", + " B ", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:lever", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 69, + "id" : "minecraft:lever", + "blockRuntimeId" : 5417 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + ], + "output" : [ + { + "legacyId" : -416, + "id" : "minecraft:light_blue_candle", + "blockRuntimeId" : 5449 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 966 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 966 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3662 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:light_blue_dye_from_blue_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:light_blue_dye_from_blue_orchid", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_dye_from_lapis_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 4 + }, + { + "id" : "minecraft:light_blue_dye_from_lapis_white", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:light_blue_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 6995 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7011 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7011 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7027 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray__carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 971 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "output" : [ + { + "legacyId" : -421, + "id" : "minecraft:light_gray_candle", + "blockRuntimeId" : 5465 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 971 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3667 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:light_gray_dye_from_azure_bluet", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:light_gray_dye_from_black_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 7 + }, + { + "id" : "minecraft:light_gray_dye_from_gray_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 6 + }, + { + "id" : "minecraft:light_gray_dye_from_gray_white", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 4 + }, + { + "id" : "minecraft:light_gray_dye_from_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 8 + }, + { + "id" : "minecraft:light_gray_dye_from_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 5 + }, + { + "id" : "minecraft:light_gray_dye_from_oxeye_daisy", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:light_gray_dye_from_white_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7000 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7016 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7016 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7032 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_weighted_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 147, + "id" : "minecraft:light_weighted_pressure_plate", + "blockRuntimeId" : 5475 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lightning_rod", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -312, + "id" : "minecraft:lightning_rod", + "blockRuntimeId" : 5491 + } + ], + "shape" : [ + "A", + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:lime__carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 968 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + ], + "output" : [ + { + "legacyId" : -418, + "id" : "minecraft:lime_candle", + "blockRuntimeId" : 5497 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 968 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3664 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_dye_from_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:lime_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 6997 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7013 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7013 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7029 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lit_pumpkin", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -155, + "id" : "minecraft:carved_pumpkin", + "damage" : 32767 + }, + "B" : { + "legacyId" : 50, + "id" : "minecraft:torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 91, + "id" : "minecraft:lit_pumpkin", + "blockRuntimeId" : 5526 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:locator_map", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lodestone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 3 + }, + "B" : { + "legacyId" : 601, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -222, + "id" : "minecraft:lodestone", + "blockRuntimeId" : 5538 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:loom_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -204, + "id" : "minecraft:loom", + "blockRuntimeId" : 5557 + } + ], + "shape" : [ + "AA", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:loom_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -204, + "id" : "minecraft:loom", + "blockRuntimeId" : 5557 + } + ], + "shape" : [ + "AA", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:magenta_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + ], + "output" : [ + { + "legacyId" : -415, + "id" : "minecraft:magenta_candle", + "blockRuntimeId" : 5561 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 965 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 965 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3661 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:magenta_dye_from_allium", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:magenta_dye_from_blue_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 6 + }, + { + "id" : "minecraft:magenta_dye_from_blue_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 4 + }, + { + "id" : "minecraft:magenta_dye_from_lapis_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 8 + }, + { + "id" : "minecraft:magenta_dye_from_lapis_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 7 + }, + { + "id" : "minecraft:magenta_dye_from_lapis_red_pink", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 5 + }, + { + "id" : "minecraft:magenta_dye_from_lilac", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_dye_from_purple_and_pink", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:magenta_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 6994 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7010 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7010 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7026 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magma", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 430, + "id" : "minecraft:magma_cream", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 213, + "id" : "minecraft:magma", + "blockRuntimeId" : 5577 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magma_cream", + "type" : 0, + "input" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + }, + { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 430, + "id" : "minecraft:magma_cream" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:map", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:melon_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 272, + "id" : "minecraft:melon_slice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 103, + "id" : "minecraft:melon_block", + "blockRuntimeId" : 5584 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:melon_seeds", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 272, + "id" : "minecraft:melon_slice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 293, + "id" : "minecraft:melon_seeds" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 370, + "id" : "minecraft:minecart" + } + ], + "shape" : [ + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:moss_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -320, + "id" : "minecraft:moss_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -335, + "id" : "minecraft:moss_carpet", + "count" : 3, + "blockRuntimeId" : 5641 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + { + "legacyId" : 106, + "id" : "minecraft:vine", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "blockRuntimeId" : 5642 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone_from_moss", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + { + "legacyId" : -320, + "id" : "minecraft:moss_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "blockRuntimeId" : 5642 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -179, + "id" : "minecraft:mossy_cobblestone_stairs", + "count" : 4, + "blockRuntimeId" : 5643 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1319 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stone_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -175, + "id" : "minecraft:mossy_stone_brick_stairs", + "count" : 4, + "blockRuntimeId" : 5651 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stone_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1326 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stonebrick", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + { + "legacyId" : 106, + "id" : "minecraft:vine", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7194 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stonebrick_from_moss", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + { + "legacyId" : -320, + "id" : "minecraft:moss_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7194 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mushroom_stew", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 260, + "id" : "minecraft:mushroom_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "blockRuntimeId" : 5661 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 113, + "id" : "minecraft:nether_brick_fence", + "count" : 6, + "blockRuntimeId" : 5662 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 114, + "id" : "minecraft:nether_brick_stairs", + "count" : 4, + "blockRuntimeId" : 5663 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1327 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_wart_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 294, + "id" : "minecraft:nether_wart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 214, + "id" : "minecraft:nether_wart_block", + "blockRuntimeId" : 5677 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:netherite_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 601, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -270, + "id" : "minecraft:netherite_block", + "blockRuntimeId" : 5678 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:netherite_ingot", + "type" : 0, + "input" : [ + { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 601, + "id" : "minecraft:netherite_ingot" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:netherite_ingot_from_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -270, + "id" : "minecraft:netherite_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 601, + "id" : "minecraft:netherite_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:noteblock_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 25, + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5689 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:noteblock_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 25, + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5689 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:oak_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log" + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5770 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5770 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5770 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood" + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5770 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 53, + "id" : "minecraft:oak_stairs", + "count" : 4, + "blockRuntimeId" : 5690 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log" + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7711 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7717 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7807 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:observer", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 251, + "id" : "minecraft:observer", + "blockRuntimeId" : 5698 + } + ], + "shape" : [ + "AAA", + "BBC", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + ], + "output" : [ + { + "legacyId" : -414, + "id" : "minecraft:orange_candle", + "blockRuntimeId" : 5711 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 964 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 964 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3660 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_dye_from_orange_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_dye_from_red_yellow", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + ], + "output" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 6993 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7009 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7009 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7025 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:packed_ice", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 79, + "id" : "minecraft:ice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 174, + "id" : "minecraft:packed_ice", + "blockRuntimeId" : 5741 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:paper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 385, + "id" : "minecraft:sugar_cane", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "count" : 3 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pillar_quartz_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "count" : 2, + "blockRuntimeId" : 6520 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : -419, + "id" : "minecraft:pink_candle", + "blockRuntimeId" : 5742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 969 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 969 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3665 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye_from_peony", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye_from_pink_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye_from_red_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 6998 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7014 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7014 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7030 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:piston_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "D" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 33, + "id" : "minecraft:piston", + "blockRuntimeId" : 5759 + } + ], + "shape" : [ + "AAA", + "BCB", + "BDB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:piston_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "D" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 33, + "id" : "minecraft:piston", + "blockRuntimeId" : 5759 + } + ], + "shape" : [ + "AAA", + "BCB", + "BDB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:polished_andesite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 4, + "blockRuntimeId" : 7090 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_andesite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : -174, + "id" : "minecraft:polished_andesite_stairs", + "count" : 4, + "blockRuntimeId" : 5787 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_basalt", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -234, + "id" : "minecraft:basalt", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -235, + "id" : "minecraft:polished_basalt", + "count" : 4, + "blockRuntimeId" : 5795 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "count" : 4, + "blockRuntimeId" : 5798 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_brick_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 6, + "blockRuntimeId" : 5801 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "count" : 4, + "blockRuntimeId" : 5803 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "count" : 6, + "blockRuntimeId" : 5811 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "count" : 4, + "blockRuntimeId" : 5973 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -296, + "id" : "minecraft:polished_blackstone_button", + "blockRuntimeId" : 5974 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -295, + "id" : "minecraft:polished_blackstone_pressure_plate", + "blockRuntimeId" : 5988 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "count" : 6, + "blockRuntimeId" : 6004 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -292, + "id" : "minecraft:polished_blackstone_stairs", + "count" : 4, + "blockRuntimeId" : 6006 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -297, + "id" : "minecraft:polished_blackstone_wall", + "count" : 6, + "blockRuntimeId" : 6014 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "count" : 4, + "blockRuntimeId" : 6176 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_deepslate_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -384, + "id" : "minecraft:polished_deepslate_slab", + "count" : 6, + "blockRuntimeId" : 6179 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_deepslate_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -385, + "id" : "minecraft:polished_deepslate_stairs", + "count" : 4, + "blockRuntimeId" : 6181 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_deepslate_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -386, + "id" : "minecraft:polished_deepslate_wall", + "count" : 6, + "blockRuntimeId" : 6189 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_diorite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 4, + "blockRuntimeId" : 7088 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_diorite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -173, + "id" : "minecraft:polished_diorite_stairs", + "count" : 4, + "blockRuntimeId" : 6351 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_granite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 4, + "blockRuntimeId" : 7086 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_granite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -172, + "id" : "minecraft:polished_granite_stairs", + "count" : 4, + "blockRuntimeId" : 6359 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6411 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6413 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + }, + "output" : [ + { + "legacyId" : -2, + "id" : "minecraft:prismarine_stairs", + "count" : 4, + "blockRuntimeId" : 6422 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_stairs_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -4, + "id" : "minecraft:prismarine_bricks_stairs", + "count" : 4, + "blockRuntimeId" : 6414 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_stairs_dark", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -3, + "id" : "minecraft:dark_prismarine_stairs", + "count" : 4, + "blockRuntimeId" : 4036 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1329 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pumpkin_pie", + "type" : 0, + "input" : [ + { + "legacyId" : 86, + "id" : "minecraft:pumpkin", + "damage" : 32767 + }, + { + "legacyId" : 416, + "id" : "minecraft:sugar", + "damage" : 32767 + }, + { + "legacyId" : 390, + "id" : "minecraft:egg", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 284, + "id" : "minecraft:pumpkin_pie" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pumpkin_seeds", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 86, + "id" : "minecraft:pumpkin", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 292, + "id" : "minecraft:pumpkin_seeds", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + ], + "output" : [ + { + "legacyId" : -423, + "id" : "minecraft:purple_candle", + "blockRuntimeId" : 6482 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 973 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 973 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3669 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "output" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_dye_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "output" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:purple_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7002 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7018 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7018 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7034 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purpur_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 559, + "id" : "minecraft:popped_chorus_fruit", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "count" : 4, + "blockRuntimeId" : 6498 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purpur_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 203, + "id" : "minecraft:purpur_stairs", + "count" : 4, + "blockRuntimeId" : 6510 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:quartz_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6518 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:quartz_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : -304, + "id" : "minecraft:quartz_bricks", + "blockRuntimeId" : 6530 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:quartz_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : 156, + "id" : "minecraft:quartz_stairs", + "count" : 4, + "blockRuntimeId" : 6532 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:rabbit_stew_from_brown_mushroom", + "type" : 0, + "input" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + }, + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 290, + "id" : "minecraft:rabbit_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:rabbit_stew_from_red_mushroom", + "type" : 0, + "input" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 290, + "id" : "minecraft:rabbit_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 66, + "id" : "minecraft:rail", + "count" : 16, + "blockRuntimeId" : 6540 + } + ], + "shape" : [ + "A A", + "ABA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -452, + "id" : "minecraft:raw_copper_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_copper_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -452, + "id" : "minecraft:raw_copper_block", + "blockRuntimeId" : 6550 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_gold", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -453, + "id" : "minecraft:raw_gold_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_gold_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -453, + "id" : "minecraft:raw_gold_block", + "blockRuntimeId" : 6551 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_iron", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -451, + "id" : "minecraft:raw_iron_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_iron_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -451, + "id" : "minecraft:raw_iron_block", + "blockRuntimeId" : 6552 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "output" : [ + { + "legacyId" : -427, + "id" : "minecraft:red_candle", + "blockRuntimeId" : 6553 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 977 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 977 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3673 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_beetroot", + "type" : 0, + "input" : [ + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_poppy", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower" + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_rose_bush", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_nether_brick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 294, + "id" : "minecraft:nether_wart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick", + "blockRuntimeId" : 6597 + } + ], + "shape" : [ + "AB", + "BA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_nether_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -184, + "id" : "minecraft:red_nether_brick_stairs", + "count" : 4, + "blockRuntimeId" : 6598 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_nether_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1331 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 12, + "id" : "minecraft:sand", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6606 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 180, + "id" : "minecraft:red_sandstone_stairs", + "count" : 4, + "blockRuntimeId" : 6610 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_sandstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1330 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7006 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 14 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7022 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7022 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7038 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 152, + "id" : "minecraft:redstone_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 373, + "id" : "minecraft:redstone", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 152, + "id" : "minecraft:redstone_block", + "blockRuntimeId" : 6618 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone_lamp", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 89, + "id" : "minecraft:glowstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 123, + "id" : "minecraft:redstone_lamp", + "blockRuntimeId" : 6619 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone_torch", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "blockRuntimeId" : 6621 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:repeater", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 419, + "id" : "minecraft:repeater" + } + ], + "shape" : [ + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:respawn_anchor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -289, + "id" : "minecraft:crying_obsidian", + "damage" : 32767 + }, + "B" : { + "legacyId" : 89, + "id" : "minecraft:glowstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -272, + "id" : "minecraft:respawn_anchor", + "blockRuntimeId" : 6672 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 12, + "id" : "minecraft:sand" + } + }, + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6679 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 128, + "id" : "minecraft:sandstone_stairs", + "count" : 4, + "blockRuntimeId" : 6683 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sandstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1323 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:scaffolding", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -163, + "id" : "minecraft:bamboo", + "damage" : 32767 + }, + "B" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -165, + "id" : "minecraft:scaffolding", + "count" : 6, + "blockRuntimeId" : 6703 + } + ], + "shape" : [ + "ABA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sealantern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 549, + "id" : "minecraft:prismarine_crystals", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 169, + "id" : "minecraft:sealantern", + "blockRuntimeId" : 6732 + } + ], + "shape" : [ + "ABA", + "BBB", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:shears", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 421, + "id" : "minecraft:shears" + } + ], + "shape" : [ + " A", + "A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:shield", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 355, + "id" : "minecraft:shield" + } + ], + "shape" : [ + "ABA", + "AAA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:shield_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 355, + "id" : "minecraft:shield" + } + ], + "shape" : [ + "ABA", + "AAA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:shield_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 355, + "id" : "minecraft:shield" + } + ], + "shape" : [ + "ABA", + "AAA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:shulker_box", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 566, + "id" : "minecraft:shulker_shell", + "damage" : 32767 + }, + "B" : { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box", + "blockRuntimeId" : 7366 + } + ], + "shape" : [ + "A", + "B", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_acacia", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 579, + "id" : "minecraft:acacia_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_birch", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 577, + "id" : "minecraft:birch_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_darkoak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 580, + "id" : "minecraft:dark_oak_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_jungle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 578, + "id" : "minecraft:jungle_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_oak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 358, + "id" : "minecraft:oak_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_spruce", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 576, + "id" : "minecraft:spruce_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:slime", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 165, + "id" : "minecraft:slime", + "blockRuntimeId" : 6768 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:slime_ball", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 165, + "id" : "minecraft:slime", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smithing_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -202, + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6783 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smithing_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -202, + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6783 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smithing_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -202, + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6783 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6784 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6784 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker_from_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6784 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_acacia", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6784 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_birch", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6784 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6784 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker_from_stripped_dark_oak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6784 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_jungle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6784 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_oak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6784 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_spruce", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6784 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6784 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker_from_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6784 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smooth_quartz_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -185, + "id" : "minecraft:smooth_quartz_stairs", + "count" : 4, + "blockRuntimeId" : 6791 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_red_sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "count" : 4, + "blockRuntimeId" : 6608 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_red_sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -176, + "id" : "minecraft:smooth_red_sandstone_stairs", + "count" : 4, + "blockRuntimeId" : 6799 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "count" : 4, + "blockRuntimeId" : 6681 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -177, + "id" : "minecraft:smooth_sandstone_stairs", + "count" : 4, + "blockRuntimeId" : 6807 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:snow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 374, + "id" : "minecraft:snowball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 80, + "id" : "minecraft:snow", + "blockRuntimeId" : 6816 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:snow_layer", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 80, + "id" : "minecraft:snow", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 78, + "id" : "minecraft:snow_layer", + "count" : 6, + "blockRuntimeId" : 6817 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:soul_campfire_from_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_crimson_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_crimson_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_warped_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_warped_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_lantern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : -268, + "id" : "minecraft:soul_torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -269, + "id" : "minecraft:soul_lantern", + "blockRuntimeId" : 6857 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:soul_torch_from_soul_sand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -268, + "id" : "minecraft:soul_torch", + "count" : 4, + "blockRuntimeId" : 6861 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:soul_torch_from_soul_soil", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -268, + "id" : "minecraft:soul_torch", + "count" : 4, + "blockRuntimeId" : 6861 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:speckled_melon", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 272, + "id" : "minecraft:melon_slice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 434, + "id" : "minecraft:glistering_melon_slice" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 378, + "id" : "minecraft:spruce_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 553, + "id" : "minecraft:spruce_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4774 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 183, + "id" : "minecraft:spruce_fence_gate", + "blockRuntimeId" : 6914 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5771 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5771 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5771 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5771 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 134, + "id" : "minecraft:spruce_stairs", + "count" : 4, + "blockRuntimeId" : 6946 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7712 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7718 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7808 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spyglass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 623, + "id" : "minecraft:amethyst_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 624, + "id" : "minecraft:spyglass" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:stick_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick", + "count" : 4 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stick_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick", + "count" : 4 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:sticky_piston", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + }, + "B" : { + "legacyId" : 33, + "id" : "minecraft:piston", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 29, + "id" : "minecraft:sticky_piston", + "blockRuntimeId" : 7073 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 315, + "id" : "minecraft:stone_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_axe_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 315, + "id" : "minecraft:stone_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_axe_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 315, + "id" : "minecraft:stone_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + }, + "output" : [ + { + "legacyId" : 109, + "id" : "minecraft:stone_brick_stairs", + "count" : 4, + "blockRuntimeId" : 7091 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1325 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 77, + "id" : "minecraft:stone_button", + "blockRuntimeId" : 7099 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 330, + "id" : "minecraft:stone_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_hoe_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 330, + "id" : "minecraft:stone_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_hoe_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 330, + "id" : "minecraft:stone_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 314, + "id" : "minecraft:stone_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_pickaxe_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 314, + "id" : "minecraft:stone_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_pickaxe_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 314, + "id" : "minecraft:stone_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 70, + "id" : "minecraft:stone_pressure_plate", + "blockRuntimeId" : 7111 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 313, + "id" : "minecraft:stone_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_shovel_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 313, + "id" : "minecraft:stone_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_shovel_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 313, + "id" : "minecraft:stone_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : -180, + "id" : "minecraft:normal_stone_stairs", + "count" : 4, + "blockRuntimeId" : 5681 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 312, + "id" : "minecraft:stone_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_sword_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 312, + "id" : "minecraft:stone_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_sword_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 312, + "id" : "minecraft:stone_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stonebrick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "count" : 4, + "blockRuntimeId" : 7193 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -197, + "id" : "minecraft:stonecutter_block", + "blockRuntimeId" : 7199 + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:string_to_wool", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stripped_crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -300, + "id" : "minecraft:stripped_crimson_hyphae", + "count" : 3, + "blockRuntimeId" : 7211 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stripped_warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -301, + "id" : "minecraft:stripped_warped_hyphae", + "count" : 3, + "blockRuntimeId" : 7229 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sugar", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 385, + "id" : "minecraft:sugar_cane", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 416, + "id" : "minecraft:sugar" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_allium", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_azure_bluet", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_blue_orchid", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_cornflower", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_dandelion", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 37, + "id" : "minecraft:yellow_flower", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_lily_of_the_valley", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_oxeye_daisy", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_poppy", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower" + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_orange", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_pink", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_red", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_white", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_wither_rose", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : -216, + "id" : "minecraft:wither_rose", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:target", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 170, + "id" : "minecraft:hay_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -239, + "id" : "minecraft:target", + "blockRuntimeId" : 7255 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:tinted_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 623, + "id" : "minecraft:amethyst_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -334, + "id" : "minecraft:tinted_glass", + "count" : 2, + "blockRuntimeId" : 7256 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:tnt", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + "B" : { + "legacyId" : 12, + "id" : "minecraft:sand", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 46, + "id" : "minecraft:tnt", + "blockRuntimeId" : 7257 + } + ], + "shape" : [ + "ABA", + "BAB", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:tnt_minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 46, + "id" : "minecraft:tnt" + }, + "B" : { + "legacyId" : 370, + "id" : "minecraft:minecart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 525, + "id" : "minecraft:tnt_minecart" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:trapped_chest", + "type" : 0, + "input" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + }, + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 146, + "id" : "minecraft:trapped_chest", + "blockRuntimeId" : 7283 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:tripwire_hook_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "blockRuntimeId" : 7305 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:tripwire_hook_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "blockRuntimeId" : 7305 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:turtle_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 572, + "id" : "minecraft:scute", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 573, + "id" : "minecraft:turtle_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -261, + "id" : "minecraft:warped_button", + "blockRuntimeId" : 7434 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 615, + "id" : "minecraft:warped_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -257, + "id" : "minecraft:warped_fence", + "count" : 3, + "blockRuntimeId" : 7480 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -259, + "id" : "minecraft:warped_fence_gate", + "blockRuntimeId" : 7481 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_fungus_on_a_stick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 392, + "id" : "minecraft:fishing_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : -229, + "id" : "minecraft:warped_fungus", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 616, + "id" : "minecraft:warped_fungus_on_a_stick" + } + ], + "shape" : [ + "A ", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -298, + "id" : "minecraft:warped_hyphae", + "count" : 3, + "blockRuntimeId" : 7498 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4, + "blockRuntimeId" : 7502 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks_from_stripped_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4, + "blockRuntimeId" : 7502 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks_from_stripped_warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -301, + "id" : "minecraft:stripped_warped_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4, + "blockRuntimeId" : 7502 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks_from_warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -298, + "id" : "minecraft:warped_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4, + "blockRuntimeId" : 7502 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -263, + "id" : "minecraft:warped_pressure_plate", + "blockRuntimeId" : 7503 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_sign", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 613, + "id" : "minecraft:warped_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "count" : 6, + "blockRuntimeId" : 7520 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -255, + "id" : "minecraft:warped_stairs", + "count" : 4, + "blockRuntimeId" : 7522 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_trapdoor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -247, + "id" : "minecraft:warped_trapdoor", + "count" : 2, + "blockRuntimeId" : 7549 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:waxing_copper_block", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "blockRuntimeId" : 7589 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "blockRuntimeId" : 7590 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "blockRuntimeId" : 7591 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId" : 7593 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "blockRuntimeId" : 7603 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "blockRuntimeId" : 7604 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "blockRuntimeId" : 7605 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId" : 7607 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "blockRuntimeId" : 7617 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId" : 7618 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId" : 7619 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7621 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "blockRuntimeId" : 7631 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "blockRuntimeId" : 7632 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "blockRuntimeId" : 7633 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId" : 7635 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:wheat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 170, + "id" : "minecraft:hay_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 334, + "id" : "minecraft:wheat", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : -413, + "id" : "minecraft:white_candle", + "blockRuntimeId" : 7694 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_candle_from_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : -413, + "id" : "minecraft:white_candle", + "blockRuntimeId" : 7694 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 963 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3659 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_concrete_powder_from_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3659 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:white_dye_from_bone_meal", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_dye_from_lily_of_the_valley", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 6992 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_glass_from_bonemeal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 6992 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:white_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7008 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7008 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7024 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_hardened_clay_from_bonemeal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7024 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:wooden_axe_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 311, + "id" : "minecraft:wooden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_axe_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 311, + "id" : "minecraft:wooden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 359, + "id" : "minecraft:wooden_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:wooden_hoe_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 329, + "id" : "minecraft:wooden_hoe" + } + ], + "shape" : [ + "AA ", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_hoe_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 329, + "id" : "minecraft:wooden_hoe" + } + ], + "shape" : [ + "AA ", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_pickaxe_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 310, + "id" : "minecraft:wooden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_pickaxe_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 310, + "id" : "minecraft:wooden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_shovel_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_shovel_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_sword_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 308, + "id" : "minecraft:wooden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_sword_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 308, + "id" : "minecraft:wooden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:writable_book", + "type" : 0, + "input" : [ + { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 327, + "id" : "minecraft:feather", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 510, + "id" : "minecraft:writable_book" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + ], + "output" : [ + { + "legacyId" : -417, + "id" : "minecraft:yellow_candle", + "blockRuntimeId" : 7835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 967 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 967 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 }, { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 28 - }, + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3663 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_dye_from_dandelion", + "type" : 0, + "input" : [ + { + "legacyId" : 37, + "id" : "minecraft:yellow_flower" + } + ], + "output" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_dye_from_sunflower", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant" + } + ], + "output" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 6996 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7012 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7012 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7028 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "oak_stairs_oak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 53, + "id" : "minecraft:oak_stairs", + "count" : 4, + "blockRuntimeId" : 5690 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_0_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star" + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_10_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_11_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_12_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_13_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_14_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_15_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_16_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star" + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_17_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_18_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_19_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_1_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_2_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_3_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_4_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_5_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_6_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_7_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_8_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_9_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_0_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_10_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 10, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_11_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 11, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_12_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 12, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_13_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 13, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_14_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 14, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_15_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_16_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_17_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_18_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_19_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_1_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 1, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_2_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 2, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_3_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_4_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_5_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 5, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_6_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 6, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_7_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 7, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_8_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 8, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_9_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 9, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "00000000-0000-0000-0000-000000000001" + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6739 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6737 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6736 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_16_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6749 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_17_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_18_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_19_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6734 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6748 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6747 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6746 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6745 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6744 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6743 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6742 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6741 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6740 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "slab3_endstonebrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7159 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "spruce_stairs_spruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 134, + "id" : "minecraft:spruce_stairs", + "count" : 4, + "blockRuntimeId" : 6946 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stick_wood_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick", + "count" : 4 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "stoneslab2_RedSandstone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7143 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_prismarine_bricks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7147 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_prismarine_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7146 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_purpur_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7144 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7148 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_rednetherbrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7150 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_redsandstone_heiroglyphs_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7143 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_smoothsandstone_smooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7149 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_andesite_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7162 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_diorite_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7163 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_granite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7165 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_polishedGranite_GraniteSmooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7166 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_polished_andesite_andesitesmooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7161 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_polished_diorite_dioritesmooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7164 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_smooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7160 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab4_cut_redsandstone_cut_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7179 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab4_cut_sandstone_cut_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7178 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab4_smoothquartz_smooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7176 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab_quartz_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7133 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7145 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab_sandstone_heiroglyphs_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7128 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "tool_material_recipe_0_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 310, + "id" : "minecraft:wooden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "tool_material_recipe_0_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "tool_material_recipe_0_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 311, + "id" : "minecraft:wooden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "tool_material_recipe_0_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 329, + "id" : "minecraft:wooden_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "type" : 4, + "uuid" : "aecd2294-4b94-434b-8667-4499bb2c9327" + }, + { + "id" : "weapon_arrow_recipe_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 11, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 12, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 13, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 14, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 14 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 15, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 15 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 16, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_16", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 16 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 17, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_17", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 17 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 18, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_18", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 18 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 19, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_19", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 19 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 20, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_20", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 20 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 21, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_21", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 21 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 22, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_22", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 22 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 23, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_23", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 23 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 24, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_24", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 24 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 25, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_25", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 25 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 26, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_26", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 26 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 27, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_27", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 27 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 28, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_28", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 28 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 29, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_29", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 29 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 30, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_30", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 30 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 31, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_31", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 31 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 32, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_32", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 32 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 33, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_33", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 33 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 34, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_34", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 34 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 35, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_35", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 35 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 36, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_36", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 36 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 37, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_37", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 37 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 38, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_38", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 38 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 39, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_39", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 39 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 40, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_40", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 40 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 41, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_41", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 41 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 42, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_42", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 42 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 43, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 6, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 7, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 8, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 9, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 10, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_stick_recipe_0_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 308, + "id" : "minecraft:wooden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "wool_dye_wool_0_1", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_10", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_11", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_12", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_13", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_14", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_15", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_2", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_3", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_4", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_5", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_6", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_7", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_8", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_9", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_0", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_1", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_11", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_12", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_13", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_14", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_15", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_2", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_3", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_4", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_5", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_6", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_7", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_8", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_9", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7824 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_0", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_1", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_10", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_12", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_13", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_14", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_15", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_2", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_3", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_4", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_5", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_6", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_7", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_8", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_9", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 28 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7823 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_0", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 28 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_1", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 5 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_10", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_11", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_13", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_14", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_15", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_2", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_3", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_4", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_5", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_6", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_7", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_8", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_9", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7822 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_0", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_1", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_10", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_11", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_12", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_14", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_15", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_2", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_3", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_4", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_5", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_6", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_7", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_8", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_9", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7821 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_0", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_1", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_10", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_11", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_12", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_13", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_15", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_2", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_3", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_4", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_5", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_6", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_7", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_8", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_9", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7820 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_0", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_1", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_10", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_11", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_12", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_13", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_14", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_2", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_3", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_4", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_5", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_6", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_7", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_8", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_9", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_1", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_10", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_11", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_12", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_13", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_14", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_15", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_2", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_3", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_4", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_5", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_6", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_7", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_8", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_9", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7834 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_0", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_1", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_10", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_11", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_12", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_13", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_14", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_15", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_2", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 5 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_4", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 5 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_5", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 12 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_6", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 12 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_7", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 12 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_8", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 40 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_9", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 40 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_0", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 40 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_1", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 19 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_10", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 19 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_11", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 19 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_12", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 9 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_13", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 9 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_14", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 9 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_15", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 21 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_2", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 21 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_3", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 21 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_5", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 25 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_6", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 25 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_7", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 25 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_8", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 14 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_9", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 14 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_0", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 14 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_1", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 37 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_10", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 37 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_11", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 37 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_12", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 13 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_13", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 13 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_14", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 13 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_2", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 23, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 24 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_3", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 23, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_4", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 23, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_5", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_6", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_7", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_8", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 22 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_9", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 22 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7819 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_0", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 22 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_10", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 7, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 8 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_11", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 7, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 8 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_12", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 7, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 8 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_13", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 17 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_14", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 17 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_15", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 17 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_2", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 11 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_3", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 11 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_4", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 11 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_5", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 10 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_6", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 10 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_7", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 10 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_8", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 6, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 8 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_9", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 6, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 8 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7833 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_0", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 6, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 8 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_1", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 18 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_10", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_11", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_12", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 18 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_13", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_14", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_15", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 2, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 35 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_3", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 2, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_4", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 2, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_5", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 26, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_6", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 26, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_7", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 26, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_8", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 35 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_9", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7832 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_0", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_1", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_10", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_11", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_12", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 5, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 7 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_13", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 7 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_14", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 7 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_15", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 6 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_2", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 6 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_4", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 6 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_5", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_6", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_7", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_8", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 27 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_9", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 27 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7831 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_0", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 27 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_1", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 26 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_10", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 26 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_11", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 26 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_12", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 30 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_13", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 30 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_14", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 30 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_15", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 29 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_2", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 29 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_3", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 29 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_5", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 18 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_6", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_7", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_8", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 40, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 41 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_9", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 40, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 41 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7830 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_0", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 40, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 41 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_1", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_10", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_11", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_12", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 33 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_13", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 33 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_14", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 33 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_15", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 32 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_2", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 32 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_3", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 32 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_4", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 24 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_6", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_7", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_8", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_9", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7829 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_0", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_1", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 17 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_10", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 17 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_11", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 17 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_12", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 16 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_13", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 16 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_14", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 16 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_15", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 15 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_2", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 15 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_3", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 15 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_4", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_5", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_7", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_8", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 39 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_9", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 39 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7828 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_0", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 39 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_1", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 37, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 38 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_10", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 38 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_11", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 38 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_12", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_13", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_14", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_15", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 19, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 20 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_2", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 19, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 20 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_3", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 19, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 20 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_4", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_5", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_6", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_8", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_9", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7827 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_0", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_1", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 3 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_10", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 3 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_11", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 3 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_12", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_13", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_14", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_15", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 4 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_2", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 4 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_3", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 4 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_4", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_5", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_6", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_7", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_9", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7826 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_0", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_1", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_10", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_11", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_12", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_13", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_14", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_15", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_2", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_3", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_4", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "inputMeta" : 34, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 35 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_5", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 34, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_6", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 34, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 } - ], - "containerMixes" : [ + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_7", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ { - "inputId" : "minecraft:potion", - "reagentId" : "minecraft:gunpowder", - "outputId" : "minecraft:splash_potion" - }, + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_8", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ { - "inputId" : "minecraft:splash_potion", - "reagentId" : "minecraft:dragon_breath", - "outputId" : "minecraft:lingering_potion" + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7825 } - ] -} \ No newline at end of file + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 3, + "input" : { + "legacyId" : -408, + "id" : "minecraft:deepslate_copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -408, + "id" : "minecraft:deepslate_copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -407, + "id" : "minecraft:deepslate_emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -407, + "id" : "minecraft:deepslate_emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -406, + "id" : "minecraft:deepslate_coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -406, + "id" : "minecraft:deepslate_coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -405, + "id" : "minecraft:deepslate_diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -405, + "id" : "minecraft:deepslate_diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -403, + "id" : "minecraft:deepslate_redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -403, + "id" : "minecraft:deepslate_redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -402, + "id" : "minecraft:deepslate_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -402, + "id" : "minecraft:deepslate_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -401, + "id" : "minecraft:deepslate_iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -401, + "id" : "minecraft:deepslate_iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -400, + "id" : "minecraft:deepslate_lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -400, + "id" : "minecraft:deepslate_lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : -1 + }, + "output" : { + "legacyId" : -410, + "id" : "minecraft:cracked_deepslate_bricks", + "blockRuntimeId" : 3766 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : -1 + }, + "output" : { + "legacyId" : -409, + "id" : "minecraft:cracked_deepslate_tiles", + "blockRuntimeId" : 3767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : -1 + }, + "output" : { + "legacyId" : -378, + "id" : "minecraft:deepslate", + "blockRuntimeId" : 4099 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -311, + "id" : "minecraft:copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -311, + "id" : "minecraft:copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -288, + "id" : "minecraft:nether_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -288, + "id" : "minecraft:nether_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : -1 + }, + "output" : { + "legacyId" : -280, + "id" : "minecraft:cracked_polished_blackstone_bricks", + "blockRuntimeId" : 3769 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -271, + "id" : "minecraft:ancient_debris", + "damage" : -1 + }, + "output" : { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -271, + "id" : "minecraft:ancient_debris", + "damage" : -1 + }, + "output" : { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -234, + "id" : "minecraft:basalt", + "damage" : -1 + }, + "output" : { + "legacyId" : -377, + "id" : "minecraft:smooth_basalt", + "blockRuntimeId" : 6790 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood" + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 2 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 3 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 4 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 5 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 8 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 9 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 10 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 11 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 12 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 13 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -156, + "id" : "minecraft:sea_pickle", + "damage" : -1 + }, + "output" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 1, + "id" : "minecraft:stone" + }, + "output" : { + "legacyId" : -183, + "id" : "minecraft:smooth_stone", + "blockRuntimeId" : 6815 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : -1 + }, + "output" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7084 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 12, + "id" : "minecraft:sand", + "damage" : -1 + }, + "output" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "blockRuntimeId" : 4870 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 14, + "id" : "minecraft:gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 14, + "id" : "minecraft:gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 15, + "id" : "minecraft:iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 15, + "id" : "minecraft:iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 16, + "id" : "minecraft:coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 16, + "id" : "minecraft:coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log" + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 2 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 3 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 19, + "id" : "minecraft:sponge", + "damage" : 1 + }, + "output" : { + "legacyId" : 19, + "id" : "minecraft:sponge", + "blockRuntimeId" : 6867 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 21, + "id" : "minecraft:lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 21, + "id" : "minecraft:lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : -1 + }, + "output" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6682 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 56, + "id" : "minecraft:diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 56, + "id" : "minecraft:diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 73, + "id" : "minecraft:redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 73, + "id" : "minecraft:redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 81, + "id" : "minecraft:cactus", + "damage" : -1 + }, + "output" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 82, + "id" : "minecraft:clay", + "damage" : -1 + }, + "output" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "blockRuntimeId" : 5058 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 87, + "id" : "minecraft:netherrack", + "damage" : -1 + }, + "output" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + "output" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7195 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : -1 + }, + "output" : { + "legacyId" : -303, + "id" : "minecraft:cracked_nether_bricks", + "blockRuntimeId" : 3768 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 129, + "id" : "minecraft:emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 129, + "id" : "minecraft:emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 153, + "id" : "minecraft:quartz_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 153, + "id" : "minecraft:quartz_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + }, + "output" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6521 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay" + }, + "output" : { + "legacyId" : 220, + "id" : "minecraft:white_glazed_terracotta", + "blockRuntimeId" : 7704 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 1 + }, + "output" : { + "legacyId" : 221, + "id" : "minecraft:orange_glazed_terracotta", + "blockRuntimeId" : 5721 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 2 + }, + "output" : { + "legacyId" : 222, + "id" : "minecraft:magenta_glazed_terracotta", + "blockRuntimeId" : 5571 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 3 + }, + "output" : { + "legacyId" : 223, + "id" : "minecraft:light_blue_glazed_terracotta", + "blockRuntimeId" : 5459 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 4 + }, + "output" : { + "legacyId" : 224, + "id" : "minecraft:yellow_glazed_terracotta", + "blockRuntimeId" : 7846 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 5 + }, + "output" : { + "legacyId" : 225, + "id" : "minecraft:lime_glazed_terracotta", + "blockRuntimeId" : 5507 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 6 + }, + "output" : { + "legacyId" : 226, + "id" : "minecraft:pink_glazed_terracotta", + "blockRuntimeId" : 5752 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 7 + }, + "output" : { + "legacyId" : 227, + "id" : "minecraft:gray_glazed_terracotta", + "blockRuntimeId" : 4985 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 8 + }, + "output" : { + "legacyId" : 228, + "id" : "minecraft:silver_glazed_terracotta", + "blockRuntimeId" : 6750 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 9 + }, + "output" : { + "legacyId" : 229, + "id" : "minecraft:cyan_glazed_terracotta", + "blockRuntimeId" : 3930 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 10 + }, + "output" : { + "legacyId" : 219, + "id" : "minecraft:purple_glazed_terracotta", + "blockRuntimeId" : 6492 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 11 + }, + "output" : { + "legacyId" : 231, + "id" : "minecraft:blue_glazed_terracotta", + "blockRuntimeId" : 685 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 12 + }, + "output" : { + "legacyId" : 232, + "id" : "minecraft:brown_glazed_terracotta", + "blockRuntimeId" : 894 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 13 + }, + "output" : { + "legacyId" : 233, + "id" : "minecraft:green_glazed_terracotta", + "blockRuntimeId" : 5001 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 14 + }, + "output" : { + "legacyId" : 234, + "id" : "minecraft:red_glazed_terracotta", + "blockRuntimeId" : 6574 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 15 + }, + "output" : { + "legacyId" : 235, + "id" : "minecraft:black_glazed_terracotta", + "blockRuntimeId" : 488 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 162, + "id" : "minecraft:log2" + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : -1 + }, + "output" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6609 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 296, + "id" : "minecraft:iron_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 296, + "id" : "minecraft:iron_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 297, + "id" : "minecraft:iron_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 297, + "id" : "minecraft:iron_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 298, + "id" : "minecraft:iron_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 298, + "id" : "minecraft:iron_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 307, + "id" : "minecraft:iron_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 307, + "id" : "minecraft:iron_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 322, + "id" : "minecraft:golden_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 322, + "id" : "minecraft:golden_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 323, + "id" : "minecraft:golden_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 323, + "id" : "minecraft:golden_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 324, + "id" : "minecraft:golden_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 324, + "id" : "minecraft:golden_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 325, + "id" : "minecraft:golden_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 325, + "id" : "minecraft:golden_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 331, + "id" : "minecraft:iron_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 331, + "id" : "minecraft:iron_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 333, + "id" : "minecraft:golden_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 333, + "id" : "minecraft:golden_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 339, + "id" : "minecraft:chainmail_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 339, + "id" : "minecraft:chainmail_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 340, + "id" : "minecraft:chainmail_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 340, + "id" : "minecraft:chainmail_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 341, + "id" : "minecraft:chainmail_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 341, + "id" : "minecraft:chainmail_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 342, + "id" : "minecraft:chainmail_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 342, + "id" : "minecraft:chainmail_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 343, + "id" : "minecraft:iron_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 343, + "id" : "minecraft:iron_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 344, + "id" : "minecraft:iron_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 344, + "id" : "minecraft:iron_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 345, + "id" : "minecraft:iron_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 345, + "id" : "minecraft:iron_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 346, + "id" : "minecraft:iron_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 346, + "id" : "minecraft:iron_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 351, + "id" : "minecraft:golden_helmet" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 351, + "id" : "minecraft:golden_helmet" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 352, + "id" : "minecraft:golden_chestplate" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 352, + "id" : "minecraft:golden_chestplate" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 353, + "id" : "minecraft:golden_leggings" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 353, + "id" : "minecraft:golden_leggings" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 354, + "id" : "minecraft:golden_boots" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 354, + "id" : "minecraft:golden_boots" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 384, + "id" : "minecraft:clay_ball", + "damage" : -1 + }, + "output" : { + "legacyId" : 383, + "id" : "minecraft:brick", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 531, + "id" : "minecraft:iron_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 531, + "id" : "minecraft:iron_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 532, + "id" : "minecraft:golden_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 532, + "id" : "minecraft:golden_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 558, + "id" : "minecraft:chorus_fruit", + "damage" : -1 + }, + "output" : { + "legacyId" : 559, + "id" : "minecraft:popped_chorus_fruit", + "damage" : 32767 + }, + "block" : "furnace" + } + ], + "potionMixes" : [ + { + "inputId" : "minecraft:potion", + "inputMeta" : 17, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 42 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 42 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 42 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 31 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 31 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 31 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 28 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 28 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 28 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 5 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 5 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 5 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 12 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 12 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 12 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 40 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 40 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 40 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 19 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 19 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 19 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 9 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 9 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 9 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 21 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 21 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 21 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 25 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 25 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 25 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 14 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 14 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 14 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 37 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 37 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 37 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 13 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 13 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 13 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 22 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 22 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 22 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 8 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 8 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 8 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 17 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 17 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 17 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 9, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 11 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 11 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 11 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 9, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 10 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 10 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 10 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 8 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 8 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 8 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 15, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 18 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 15, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 18 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 15, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 18 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 10, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 18 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 10, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 18 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 10, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 18 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 2, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 35 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 2, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 35 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 2, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 35 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 32, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 35 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 32, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 35 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 32, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 35 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 5, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 7 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 7 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 7 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 6 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 6 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 6 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 27 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 27 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 27 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 26 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 26 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 26 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 30 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 30 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 30 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 29 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 29 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 29 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 17, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 18 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 18 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 18 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 40, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 41 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 40, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 41 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 40, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 41 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 31, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 33 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 33 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 33 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 31, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 32 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 32 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 32 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 22, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 22, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 22, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 14, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 17 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 17 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 17 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 16 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 16 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 16 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 15 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 15 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 15 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 39 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 39 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 39 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 37, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 38 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 38 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 38 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 20 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 20 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 20 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 3 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 3 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 3 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 4 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 4 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 4 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 34, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 35 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 34, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 35 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 34, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 35 + } + ], + "containerMixes" : [ + { + "inputId" : "minecraft:potion", + "reagentId" : "minecraft:gunpowder", + "outputId" : "minecraft:splash_potion" + }, + { + "inputId" : "minecraft:splash_potion", + "reagentId" : "minecraft:dragon_breath", + "outputId" : "minecraft:lingering_potion" + } + ] +} From 0f7ba127fc299becdc7bd85ffb7129d671cad421 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 14 Jul 2021 23:23:50 -0300 Subject: [PATCH 175/394] Fixes #1174 Infinite loop with double chest and comparator --- src/main/java/cn/nukkit/blockentity/BlockEntity.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntity.java b/src/main/java/cn/nukkit/blockentity/BlockEntity.java index b28c4d92955..1f5dcf2cef6 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntity.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntity.java @@ -11,6 +11,7 @@ import cn.nukkit.level.format.FullChunk; import cn.nukkit.math.Vector3; import cn.nukkit.nbt.tag.CompoundTag; +import cn.nukkit.scheduler.Task; import cn.nukkit.utils.ChunkException; import co.aikar.timings.Timing; import co.aikar.timings.Timings; @@ -258,7 +259,14 @@ public void setDirty() { chunk.setChanged(); if (this.getLevelBlock().getId() != BlockID.AIR) { - this.level.updateComparatorOutputLevelSelective(this, isObservable()); + getLevel().getServer().getScheduler().scheduleTask(new Task() { + @Override + public void onRun(int currentTick) { + if (isValid() && isBlockEntityValid()) { + getLevel().updateComparatorOutputLevelSelective(BlockEntity.this, isObservable()); + } + } + }); } } From 40a2b6be5b1e3bff1419a6de094296c795f01e7f Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 14 Jul 2021 23:41:01 -0300 Subject: [PATCH 176/394] Creates a test for BinaryStream.putSlot() and .getSlot() --- .../cn/nukkit/utils/BinaryStreamTest.java | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/test/java/cn/nukkit/utils/BinaryStreamTest.java diff --git a/src/test/java/cn/nukkit/utils/BinaryStreamTest.java b/src/test/java/cn/nukkit/utils/BinaryStreamTest.java new file mode 100644 index 00000000000..746f050a662 --- /dev/null +++ b/src/test/java/cn/nukkit/utils/BinaryStreamTest.java @@ -0,0 +1,64 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.utils; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.item.Item; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author joserobjr + * @since 2021-07-14 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class BinaryStreamTest { + BinaryStream stream; + + @BeforeEach + void setUp() { + stream = new BinaryStream(); + } + + @Test + void putSlotGetSlotNoTag() { + Item item = new Item(1000, 0, 1, "Test"); + stream.putSlot(item); + stream.setOffset(0); + Item read = stream.getSlot(); + assertEquals(item, read); + } + + @Test + void putSlotGetSlotCustomName() { + Item item = new Item(1000, 0, 1, "Test"); + item.setCustomName("CustomName"); + stream.putSlot(item); + stream.setOffset(0); + Item read = stream.getSlot(); + assertEquals(item, read); + } +} From 100afef93cd749c6cb8d86ac3d2fc84da3a75f97 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 15 Jul 2021 23:13:36 -0300 Subject: [PATCH 177/394] Create a new test unit --- .../nukkit/blockentity/BlockEntityTest.java | 148 ++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 src/test/java/cn/nukkit/blockentity/BlockEntityTest.java diff --git a/src/test/java/cn/nukkit/blockentity/BlockEntityTest.java b/src/test/java/cn/nukkit/blockentity/BlockEntityTest.java new file mode 100644 index 00000000000..93302cec2aa --- /dev/null +++ b/src/test/java/cn/nukkit/blockentity/BlockEntityTest.java @@ -0,0 +1,148 @@ +/* + * https://PowerNukkit.org - The Nukkit you know but Powerful! + * Copyright (C) 2021 Josรฉ Roberto de Araรบjo Jรบnior + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package cn.nukkit.blockentity; + +import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.block.Block; +import cn.nukkit.block.BlockChest; +import cn.nukkit.block.BlockID; +import cn.nukkit.block.BlockPodzol; +import cn.nukkit.blockproperty.CommonBlockProperties; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.inventory.ChestInventory; +import cn.nukkit.item.Item; +import cn.nukkit.level.Level; +import cn.nukkit.level.format.anvil.Anvil; +import cn.nukkit.level.generator.Flat; +import cn.nukkit.math.BlockFace; +import cn.nukkit.math.Vector3; +import cn.nukkit.test.LogLevelAdjuster; +import co.aikar.timings.Timings; +import org.iq80.leveldb.util.FileUtils; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import java.io.File; +import java.io.IOException; + +import static cn.nukkit.block.BlockID.*; +import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.mockito.ArgumentMatchers.anyInt; +import static org.mockito.Mockito.when; + +/** + * @author joserobjr + * @since 2021-07-14 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class BlockEntityTest { + static final LogLevelAdjuster logLevelAdjuster = new LogLevelAdjuster(); + + File levelFolder; + + Level level; + + @Test + void repairing() throws Exception { + Block block = level.getBlock(new Vector3(2, 2, 2)); + assertThat(block).isInstanceOf(BlockPodzol.class); + assertEquals(BlockID.PODZOL, block.getId()); + assertEquals(0, block.getExactIntStorage()); + + assertEquals(BlockState.of(BlockID.PODZOL), level.getBlockStateAt(2, 2, 2)); + + assertTrue(level.unloadChunk(block.getChunkX(), block.getChunkZ())); + + assertEquals(BlockState.of(BlockID.PODZOL), level.getBlockStateAt(2, 2, 2)); + } + + @BeforeEach + void setUp() throws IOException { + Server server = Server.getInstance(); + levelFolder = new File(server.getDataPath(), "worlds/TestLevel"); + String path = levelFolder.getAbsolutePath()+File.separator; + Anvil.generate(path, "TestLevel", 0, Flat.class); + Timings.init(); + level = new Level(server, "TestLevel", path, Anvil.class); + level.setAutoSave(true); + + server.getLevels().put(level.getId(), level); + server.setDefaultLevel(level); + } + + @AfterEach + void tearDown() { + FileUtils.deleteRecursively(levelFolder); + } + + @AfterAll + static void afterAll() { + logLevelAdjuster.restoreLevels(); + } + + /** + * https://github.com/PowerNukkit/PowerNukkit/issues/1174 + */ + @Test + void issue1174() { + Server server = level.getServer(); + when(server.isRedstoneEnabled()).thenReturn(true); + when(level.isChunkLoaded(anyInt(), anyInt())).thenReturn(true); + + Vector3 pos = new Vector3(0,64, 0); + level.setBlock(pos, Block.get(STONE)); + level.setBlock(pos.getSide(BlockFace.EAST), Block.get(STONE)); + level.setBlock(pos.getSide(BlockFace.EAST, 2), Block.get(STONE)); + level.setBlock(pos.getSide(BlockFace.EAST, 3), Block.get(STONE)); + + pos.y++; + level.setBlock(pos, Block.get(REDSTONE_WIRE)); + level.setBlock(pos.getSide(BlockFace.EAST), BlockState.of(UNPOWERED_COMPARATOR) + .withProperty(CommonBlockProperties.DIRECTION, BlockFace.EAST) + .getBlock()); + level.setBlock(pos.getSide(BlockFace.EAST, 2), Block.get(CHEST)); + level.setBlock(pos.getSide(BlockFace.EAST, 3), Block.get(CHEST)); + + BlockChest chest1 = (BlockChest) level.getBlock(pos.getSide(BlockFace.EAST, 2)); + BlockChest chest2 = (BlockChest) level.getBlock(pos.getSide(BlockFace.EAST, 3)); + + BlockEntityChest chest1Entity = chest1.getOrCreateBlockEntity(); + BlockEntityChest chest2Entity = chest2.getOrCreateBlockEntity(); + + ChestInventory chest1Inventory = chest1Entity.getRealInventory(); + int size = chest1Inventory.getSize(); + for (int i = 0; i < size; i++) { + chest1Inventory.setItem(i, Item.getBlock(STONE,0,64)); + } + + chest1Entity.pairWith(chest2Entity); + + chest2Entity.checkPairing(); + } +} From d142dd85baaf90825b0c24a78730040ef75adccb Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 16 Jul 2021 04:44:47 -0300 Subject: [PATCH 178/394] Fixes #982 populator error due to corruption on compressed light data --- .../level/format/anvil/ChunkSection.java | 29 +++++++++---------- .../format/generic/EmptyChunkSection.java | 2 +- .../level/format/anvil/ChunkSectionTest.java | 17 +++++++++++ 3 files changed, 31 insertions(+), 17 deletions(-) diff --git a/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java b/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java index 87a9c89b1da..d793e909e4e 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java +++ b/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java @@ -502,19 +502,15 @@ public void setBlockLight(int x, int y, int z, int level) { @Override public byte[] getSkyLightArray() { - if (this.skyLight != null) return skyLight; - if (hasSkyLight) { - if (compressedLight != null) { - inflate(); - return this.skyLight; - } - return EmptyChunkSection.EMPTY_SKY_LIGHT_ARR; - } else { - return EmptyChunkSection.EMPTY_LIGHT_ARR; + if (skyLight != null) return skyLight; + if (hasSkyLight && compressedLight != null && inflate()) { + return skyLight; } + + return EmptyChunkSection.EMPTY_SKY_LIGHT_ARR; } - private void inflate() { + private boolean inflate() { try { if (compressedLight != null && compressedLight.length != 0) { byte[] inflated = Zlib.inflate(compressedLight); @@ -535,20 +531,21 @@ private void inflate() { Arrays.fill(skyLight, (byte) 0xFF); } } + return true; } catch (IOException e) { log.error("Failed to decompress a chunk section", e); + return false; } } @Override public byte[] getLightArray() { - if (this.blockLight != null) return blockLight; - if (hasBlockLight) { - inflate(); - return this.blockLight; - } else { - return EmptyChunkSection.EMPTY_LIGHT_ARR; + if (blockLight != null) return blockLight; + if (hasBlockLight && compressedLight != null && inflate()) { + return blockLight; } + + return EmptyChunkSection.EMPTY_LIGHT_ARR; } @Override diff --git a/src/main/java/cn/nukkit/level/format/generic/EmptyChunkSection.java b/src/main/java/cn/nukkit/level/format/generic/EmptyChunkSection.java index 6f4fab1d299..4522f230415 100644 --- a/src/main/java/cn/nukkit/level/format/generic/EmptyChunkSection.java +++ b/src/main/java/cn/nukkit/level/format/generic/EmptyChunkSection.java @@ -37,7 +37,7 @@ public class EmptyChunkSection implements ChunkSection { private static final byte[] EMPTY_2KB = new byte[2048]; public static final byte[] EMPTY_LIGHT_ARR = EMPTY_2KB; - public static final byte[] EMPTY_SKY_LIGHT_ARR = new byte[2048]; + public static final byte[] EMPTY_SKY_LIGHT_ARR = EMPTY_2KB; static { Arrays.fill(EMPTY_SKY_LIGHT_ARR, (byte) 255); } diff --git a/src/test/java/cn/nukkit/level/format/anvil/ChunkSectionTest.java b/src/test/java/cn/nukkit/level/format/anvil/ChunkSectionTest.java index 040c8e6d44c..d137083dd1a 100644 --- a/src/test/java/cn/nukkit/level/format/anvil/ChunkSectionTest.java +++ b/src/test/java/cn/nukkit/level/format/anvil/ChunkSectionTest.java @@ -8,6 +8,7 @@ import cn.nukkit.nbt.tag.CompoundTag; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.ReflectionUtil; import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; import java.math.BigInteger; @@ -17,6 +18,22 @@ @ExtendWith(PowerNukkitExtension.class) class ChunkSectionTest { + /** + * https://github.com/PowerNukkit/PowerNukkit/issues/1186 + */ + @Test + void issue1186() throws NoSuchFieldException { + ChunkSection section = new ChunkSection(2); + section.setBlockSkyLight(1,2,3,4); + section.setBlockLight(1,2,3,2); + assertTrue(section.compress()); + + // Corrupting intentionally + ReflectionUtil.setField(section, ChunkSection.class.getDeclaredField("compressedLight"), new byte[3]); + + section.setBlockSkyLight(1,2,3,5); + } + @Test void omgThatIsHugePersistence() { ChunkSection section = new ChunkSection(4); From 1af6ac299f1dd23f04e1073777652cd764417e1e Mon Sep 17 00:00:00 2001 From: Woder <17339354+wode490390@users.noreply.github.com> Date: Sat, 17 Jul 2021 00:48:27 +0800 Subject: [PATCH 179/394] Update Sound enum and ParticleEffect enum to 1.17.10 (#1870) --- src/main/java/cn/nukkit/level/ParticleEffect.java | 1 + src/main/java/cn/nukkit/level/Sound.java | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/src/main/java/cn/nukkit/level/ParticleEffect.java b/src/main/java/cn/nukkit/level/ParticleEffect.java index 9d98bcf71bd..d9c427a0754 100644 --- a/src/main/java/cn/nukkit/level/ParticleEffect.java +++ b/src/main/java/cn/nukkit/level/ParticleEffect.java @@ -21,6 +21,7 @@ public enum ParticleEffect { CAMERA_SHOOT_EXPLOSION("minecraft:camera_shoot_explosion"), CAMPFIRE_SMOKE("minecraft:campfire_smoke_particle"), CAMPFIRE_SMOKE_TALL("minecraft:campfire_tall_smoke_particle"), + CANDLE_FLAME("minecraft:candle_flame_particle"), CAULDRONSPELL("minecraft:cauldron_spell_emitter"), CAULDRON_BUBBLE("minecraft:cauldron_bubble_particle"), CAULDRON_SPLASH("minecraft:cauldron_splash_particle"), diff --git a/src/main/java/cn/nukkit/level/Sound.java b/src/main/java/cn/nukkit/level/Sound.java index 2255a9770ab..e8f2f61f765 100644 --- a/src/main/java/cn/nukkit/level/Sound.java +++ b/src/main/java/cn/nukkit/level/Sound.java @@ -7,6 +7,7 @@ public enum Sound { AMBIENT_BASALT_DELTAS_ADDITIONS("ambient.basalt_deltas.additions"), AMBIENT_BASALT_DELTAS_LOOP("ambient.basalt_deltas.loop"), AMBIENT_BASALT_DELTAS_MOOD("ambient.basalt_deltas.mood"), + AMBIENT_CANDLE("ambient.candle"), AMBIENT_CAVE("ambient.cave"), AMBIENT_CRIMSON_FOREST_ADDITIONS("ambient.crimson_forest.additions"), AMBIENT_CRIMSON_FOREST_LOOP("ambient.crimson_forest.loop"), @@ -116,6 +117,7 @@ public enum Sound { BUCKET_FILL_LAVA("bucket.fill_lava"), BUCKET_FILL_POWDER_SNOW("bucket.fill_powder_snow"), BUCKET_FILL_WATER("bucket.fill_water"), + CAKE_ADD_CANDLE("cake.add_candle"), CAMERA_TAKE_PICTURE("camera.take_picture"), CAULDRON_ADDDYE("cauldron.adddye"), CAULDRON_CLEANARMOR("cauldron.cleanarmor"), @@ -150,6 +152,7 @@ public enum Sound { DIG_AZALEA_LEAVES("dig.azalea_leaves"), DIG_BASALT("dig.basalt"), DIG_BONE_BLOCK("dig.bone_block"), + DIG_CANDLE("dig.candle"), DIG_CAVE_VINES("dig.cave_vines"), DIG_CHAIN("dig.chain"), DIG_CLOTH("dig.cloth"), @@ -185,6 +188,7 @@ public enum Sound { DRIP_WATER_POINTED_DRIPSTONE("drip.water.pointed_dripstone"), ELYTRA_LOOP("elytra.loop"), ENTITY_ZOMBIE_CONVERTED_TO_DROWNED("entity.zombie.converted_to_drowned"), + EXTINGUISH_CANDLE("extinguish.candle"), FALL_AMETHYST_BLOCK("fall.amethyst_block"), FALL_AMETHYST_CLUSTER("fall.amethyst_cluster"), FALL_ANCIENT_DEBRIS("fall.ancient_debris"), @@ -252,6 +256,7 @@ public enum Sound { HIT_BIG_DRIPLEAF("hit.big_dripleaf"), HIT_BONE_BLOCK("hit.bone_block"), HIT_CALCITE("hit.calcite"), + HIT_CANDLE("hit.candle"), HIT_CAVE_VINES("hit.cave_vines"), HIT_CHAIN("hit.chain"), HIT_CLOTH("hit.cloth"), @@ -884,6 +889,7 @@ public enum Sound { STEP_BIG_DRIPLEAF("step.big_dripleaf"), STEP_BONE_BLOCK("step.bone_block"), STEP_CALCITE("step.calcite"), + STEP_CANDLE("step.candle"), STEP_CAVE_VINES("step.cave_vines"), STEP_CHAIN("step.chain"), STEP_CLOTH("step.cloth"), @@ -931,6 +937,7 @@ public enum Sound { USE_ANCIENT_DEBRIS("use.ancient_debris"), USE_BASALT("use.basalt"), USE_BONE_BLOCK("use.bone_block"), + USE_CANDLE("use.candle"), USE_CAVE_VINES("use.cave_vines"), USE_CHAIN("use.chain"), USE_CLOTH("use.cloth"), From 41c6f2ad267b24fd0255606502128fe0038b4c26 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 16 Jul 2021 18:07:01 -0300 Subject: [PATCH 180/394] Fixes EmptyChunkSection.EMPTY_SKY_LIGHT_ARR content --- .../cn/nukkit/level/format/generic/EmptyChunkSection.java | 2 +- .../cn/nukkit/level/format/anvil/ChunkSectionTest.java | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/level/format/generic/EmptyChunkSection.java b/src/main/java/cn/nukkit/level/format/generic/EmptyChunkSection.java index 4522f230415..dbe5db1360a 100644 --- a/src/main/java/cn/nukkit/level/format/generic/EmptyChunkSection.java +++ b/src/main/java/cn/nukkit/level/format/generic/EmptyChunkSection.java @@ -37,7 +37,7 @@ public class EmptyChunkSection implements ChunkSection { private static final byte[] EMPTY_2KB = new byte[2048]; public static final byte[] EMPTY_LIGHT_ARR = EMPTY_2KB; - public static final byte[] EMPTY_SKY_LIGHT_ARR = EMPTY_2KB; + public static final byte[] EMPTY_SKY_LIGHT_ARR = new byte[2048]; // Filled with 0xFF static { Arrays.fill(EMPTY_SKY_LIGHT_ARR, (byte) 255); } diff --git a/src/test/java/cn/nukkit/level/format/anvil/ChunkSectionTest.java b/src/test/java/cn/nukkit/level/format/anvil/ChunkSectionTest.java index d137083dd1a..74fd7bc3450 100644 --- a/src/test/java/cn/nukkit/level/format/anvil/ChunkSectionTest.java +++ b/src/test/java/cn/nukkit/level/format/anvil/ChunkSectionTest.java @@ -3,6 +3,7 @@ import cn.nukkit.block.BlockID; import cn.nukkit.block.BlockWall; import cn.nukkit.blockstate.BlockState; +import cn.nukkit.level.format.generic.EmptyChunkSection; import cn.nukkit.math.BlockFace; import cn.nukkit.nbt.tag.ByteArrayTag; import cn.nukkit.nbt.tag.CompoundTag; @@ -66,6 +67,13 @@ void negativePersistence() { ChunkSection loaded = new ChunkSection(nbt); assertEquals(15, loaded.getBlockState(0,0,0).getExactIntStorage()); + for (int i = 0; i < EmptyChunkSection.EMPTY_LIGHT_ARR.length; i++) { + assertEquals(0, EmptyChunkSection.EMPTY_LIGHT_ARR[i]); + } + + for (int i = 0; i < EmptyChunkSection.EMPTY_SKY_LIGHT_ARR.length; i++) { + assertEquals((byte) 255, EmptyChunkSection.EMPTY_SKY_LIGHT_ARR[i]); + } } @Test From 0a759277f633f95c07f6f7f4b82d25ca2c2b7103 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 17 Jul 2021 02:28:46 -0300 Subject: [PATCH 181/394] Fixes #982 light cache corruption --- .../level/format/anvil/ChunkSection.java | 33 ++++++++++++++----- .../level/format/anvil/util/NibbleArray.java | 7 ++++ 2 files changed, 32 insertions(+), 8 deletions(-) diff --git a/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java b/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java index d793e909e4e..313bf8eea00 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java +++ b/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java @@ -119,12 +119,13 @@ private void loadStorage(int layer, CompoundTag storageTag) { } byte[] dataBytes = storageTag.getByteArray("Data"); + NibbleArray data; if (dataBytes.length == 0) { - dataBytes = EmptyChunkSection.EMPTY_DATA_ARRAY; + data = NibbleArray.EMPTY_DATA_ARRAY; } else { hasBlockIds = true; + data = new NibbleArray(dataBytes); } - NibbleArray data = new NibbleArray(dataBytes); byte[] dataExtraBytes = storageTag.getByteArray("DataExtra"); if (dataExtraBytes.length == 0) { @@ -502,12 +503,20 @@ public void setBlockLight(int x, int y, int z, int level) { @Override public byte[] getSkyLightArray() { - if (skyLight != null) return skyLight; - if (hasSkyLight && compressedLight != null && inflate()) { + if (skyLight != null) { return skyLight; } - return EmptyChunkSection.EMPTY_SKY_LIGHT_ARR; + if (!hasSkyLight) { + return EmptyChunkSection.EMPTY_SKY_LIGHT_ARR; + } + + if (compressedLight != null && inflate()) { + return skyLight; + } + + // hasSkyLight == true, so the caller might change the array, we can't allow it to change the empty array itself + return EmptyChunkSection.EMPTY_SKY_LIGHT_ARR.clone(); } private boolean inflate() { @@ -540,12 +549,20 @@ private boolean inflate() { @Override public byte[] getLightArray() { - if (blockLight != null) return blockLight; - if (hasBlockLight && compressedLight != null && inflate()) { + if (blockLight != null) { return blockLight; } + + if (!hasBlockLight) { + return EmptyChunkSection.EMPTY_LIGHT_ARR; + } - return EmptyChunkSection.EMPTY_LIGHT_ARR; + if (compressedLight != null && inflate()) { + return blockLight; + } + + // hasSkyLight == true, so the caller might change the array, we can't allow it to change the empty array itself + return new byte[EmptyChunkSection.EMPTY_LIGHT_ARR.length]; } @Override diff --git a/src/main/java/cn/nukkit/level/format/anvil/util/NibbleArray.java b/src/main/java/cn/nukkit/level/format/anvil/util/NibbleArray.java index 45ebe670cc8..5d5b069ca7b 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/util/NibbleArray.java +++ b/src/main/java/cn/nukkit/level/format/anvil/util/NibbleArray.java @@ -1,9 +1,16 @@ package cn.nukkit.level.format.anvil.util; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.level.format.generic.EmptyChunkSection; import com.google.common.base.Preconditions; public class NibbleArray implements Cloneable { + @PowerNukkitOnly + @Since("FUTURE") + public static final NibbleArray EMPTY_DATA_ARRAY = new NibbleArray(EmptyChunkSection.EMPTY_DATA_ARRAY); + private final byte[] data; public NibbleArray(int length) { From 4a2dc55d7895b19da68bd26182ae60212a09f4b6 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 17 Jul 2021 03:12:27 -0300 Subject: [PATCH 182/394] #982 Improves stability, increase test coverage --- .../level/format/anvil/ChunkSection.java | 26 +++++++------------ .../level/format/anvil/ChunkSectionTest.java | 18 ++++++++++++- 2 files changed, 27 insertions(+), 17 deletions(-) diff --git a/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java b/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java index 313bf8eea00..a23078af923 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java +++ b/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java @@ -438,8 +438,8 @@ public int getBlockSkyLight(int x, int y, int z) { } else if (compressedLight == null) { return 15; } + this.skyLight = getSkyLightArray(); } - this.skyLight = getSkyLightArray(); int sl = this.skyLight[(y << 7) | (z << 3) | (x >> 1)] & 0xff; if ((x & 1) == 0) { return sl & 0x0f; @@ -504,18 +504,17 @@ public void setBlockLight(int x, int y, int z, int level) { @Override public byte[] getSkyLightArray() { if (skyLight != null) { - return skyLight; + return skyLight.clone(); } if (!hasSkyLight) { - return EmptyChunkSection.EMPTY_SKY_LIGHT_ARR; + return new byte[EmptyChunkSection.EMPTY_LIGHT_ARR.length]; } - if (compressedLight != null && inflate()) { - return skyLight; + if (compressedLight != null && inflate() && skyLight != null) { + return skyLight.clone(); } - // hasSkyLight == true, so the caller might change the array, we can't allow it to change the empty array itself return EmptyChunkSection.EMPTY_SKY_LIGHT_ARR.clone(); } @@ -550,18 +549,13 @@ private boolean inflate() { @Override public byte[] getLightArray() { if (blockLight != null) { - return blockLight; + return blockLight.clone(); } - if (!hasBlockLight) { - return EmptyChunkSection.EMPTY_LIGHT_ARR; - } - - if (compressedLight != null && inflate()) { - return blockLight; + if (hasBlockLight && compressedLight != null && inflate() && blockLight != null) { + return blockLight.clone(); } - // hasSkyLight == true, so the caller might change the array, we can't allow it to change the empty array itself return new byte[EmptyChunkSection.EMPTY_LIGHT_ARR.length]; } @@ -733,8 +727,8 @@ public synchronized CompoundTag toNBT() { if (version >= SAVE_STORAGE_VERSION) { s.putList(storageList); } - s.putByteArray("BlockLight", getLightArray()); - s.putByteArray("SkyLight", getSkyLightArray()); + s.putByteArray("BlockLight", blockLight == null? getLightArray() : blockLight); + s.putByteArray("SkyLight", skyLight == null? getSkyLightArray(): skyLight); return s; } diff --git a/src/test/java/cn/nukkit/level/format/anvil/ChunkSectionTest.java b/src/test/java/cn/nukkit/level/format/anvil/ChunkSectionTest.java index 74fd7bc3450..c5ffff8a930 100644 --- a/src/test/java/cn/nukkit/level/format/anvil/ChunkSectionTest.java +++ b/src/test/java/cn/nukkit/level/format/anvil/ChunkSectionTest.java @@ -25,14 +25,30 @@ class ChunkSectionTest { @Test void issue1186() throws NoSuchFieldException { ChunkSection section = new ChunkSection(2); + assertEquals(0, section.getBlockSkyLight(1,2,3)); + section.hasSkyLight = true; + assertEquals(15, section.getBlockSkyLight(1,2,3)); + assertEquals(0, section.getBlockLight(1,2,3)); + section.setBlockSkyLight(1,2,3,4); section.setBlockLight(1,2,3,2); assertTrue(section.compress()); // Corrupting intentionally ReflectionUtil.setField(section, ChunkSection.class.getDeclaredField("compressedLight"), new byte[3]); - section.setBlockSkyLight(1,2,3,5); + section.setBlockLight(1,2,3, 7); + + assertEquals(5, section.getBlockSkyLight(1,2,3)); + assertEquals(7, section.getBlockLight(1,2,3)); + + section.compress(); + + // Corrupting intentionally + ReflectionUtil.setField(section, ChunkSection.class.getDeclaredField("compressedLight"), new byte[3]); + + assertEquals(15, section.getBlockSkyLight(1,2,3)); + assertEquals(0, section.getBlockLight(1,2,3)); } @Test From 219ed0ba868bf56123fc86a3412c0ef518f5b135 Mon Sep 17 00:00:00 2001 From: Alemiz <45739737+Alemiz112@users.noreply.github.com> Date: Sun, 18 Jul 2021 22:06:21 +0200 Subject: [PATCH 183/394] Don't overwrite runtime2Legacy states (#1872) --- src/main/java/cn/nukkit/level/GlobalBlockPalette.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/level/GlobalBlockPalette.java b/src/main/java/cn/nukkit/level/GlobalBlockPalette.java index 2c2c6fb8a2d..87112011f53 100644 --- a/src/main/java/cn/nukkit/level/GlobalBlockPalette.java +++ b/src/main/java/cn/nukkit/level/GlobalBlockPalette.java @@ -42,7 +42,9 @@ public class GlobalBlockPalette { int runtimeId = state.getInt("runtimeId"); int legacyId = blockId << 6 | meta; legacyToRuntimeId.put(legacyId, runtimeId); - runtimeIdToLegacy.put(runtimeId, legacyId); + if (!runtimeIdToLegacy.containsKey(runtimeId)) { + runtimeIdToLegacy.put(runtimeId, legacyId); + } } } From 9d59450345f2f9fc452d9b8ea6dd9f0773d7cc70 Mon Sep 17 00:00:00 2001 From: Kazuk <46299532+XKazzuKX@users.noreply.github.com> Date: Sun, 18 Jul 2021 22:24:20 +0100 Subject: [PATCH 184/394] Entity fall calculation improvement (#1867) --- src/main/java/cn/nukkit/entity/Entity.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 9208a53b816..3aa0d3dd6a9 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -1681,16 +1681,16 @@ public void fall(float fallDistance) { return; } - float damage = (float) Math.floor(fallDistance - 3 - (this.hasEffect(Effect.JUMP) ? this.getEffect(Effect.JUMP).getAmplifier() + 1 : 0)); - Block down = this.level.getBlock(this.floor().down()); - if(down instanceof BlockHayBale) { - damage -= (damage * 0.8f); - } + if (!this.isPlayer || level.getGameRules().getBoolean(GameRule.FALL_DAMAGE)) { + float damage = (float) Math.floor(fallDistance - 3 - (this.hasEffect(Effect.JUMP) ? this.getEffect(Effect.JUMP).getAmplifier() + 1 : 0)); + + if (down instanceof BlockHayBale) { + damage -= (damage * 0.8f); + } - if (damage > 0) { - if (!this.isPlayer || level.getGameRules().getBoolean(GameRule.FALL_DAMAGE)) { + if (damage > 0) { this.attack(new EntityDamageEvent(this, DamageCause.FALL, damage)); } } From d5f48e8b0fdaac1b9f63b03e272191a43cc8f7ad Mon Sep 17 00:00:00 2001 From: Flaming Knight Date: Mon, 19 Jul 2021 12:49:26 -0700 Subject: [PATCH 185/394] Fixed the named for BlockConcrete and BlockConcretePowder --- src/main/java/cn/nukkit/block/BlockConcrete.java | 2 +- src/main/java/cn/nukkit/block/BlockConcretePowder.java | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/block/BlockConcrete.java b/src/main/java/cn/nukkit/block/BlockConcrete.java index 8e96e3935d9..f8891473a46 100644 --- a/src/main/java/cn/nukkit/block/BlockConcrete.java +++ b/src/main/java/cn/nukkit/block/BlockConcrete.java @@ -53,7 +53,7 @@ public double getHardness() { @Override public String getName() { - return "Concrete"; + return getDyeColor().getName() + " Concrete"; } @Override diff --git a/src/main/java/cn/nukkit/block/BlockConcretePowder.java b/src/main/java/cn/nukkit/block/BlockConcretePowder.java index 6b364cca0d9..05667301c47 100644 --- a/src/main/java/cn/nukkit/block/BlockConcretePowder.java +++ b/src/main/java/cn/nukkit/block/BlockConcretePowder.java @@ -10,6 +10,7 @@ import cn.nukkit.item.ItemTool; import cn.nukkit.level.Level; import cn.nukkit.math.BlockFace; +import cn.nukkit.utils.DyeColor; import javax.annotation.Nonnull; @@ -46,7 +47,7 @@ public BlockProperties getProperties() { @Override public String getName() { - return "Concrete Powder"; + return getDyeColor().getName() + " Concrete Powder"; } @Override @@ -101,4 +102,8 @@ public boolean place(@Nonnull Item item, @Nonnull Block b, @Nonnull Block target return true; } + + public DyeColor getDyeColor() { + return DyeColor.getByWoolData(getDamage()); + } } From daffdbb860b12d61b8c017f96705783e367f064d Mon Sep 17 00:00:00 2001 From: Sleepybear Date: Mon, 19 Jul 2021 23:48:05 -0700 Subject: [PATCH 186/394] Don't send unregistered commands (#1874) --- src/main/java/cn/nukkit/Player.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 9043610c7ce..14329e0a148 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -585,7 +585,7 @@ public void sendCommandData() { Map data = new HashMap<>(); int count = 0; for (Command command : this.server.getCommandMap().getCommands().values()) { - if (!command.testPermissionSilent(this)) { + if (!command.testPermissionSilent(this) || !command.isRegistered()) { continue; } ++count; From 360b8258654d54e4a653caafcbe2912ad50ca656 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Sat, 24 Jul 2021 23:29:18 +0300 Subject: [PATCH 187/394] Fix missing items in creative inventory (#1863) --- src/main/java/cn/nukkit/item/Item.java | 71 ++++++++----------- .../java/cn/nukkit/item/ItemArmorStand.java | 16 +++++ .../cn/nukkit/item/ItemBannerPattern.java | 21 ++++++ .../cn/nukkit/item/ItemCarrotOnAStick.java | 15 +++- .../cn/nukkit/item/ItemChorusFruitPopped.java | 16 +++++ .../java/cn/nukkit/item/ItemDragonBreath.java | 16 +++++ .../java/cn/nukkit/item/ItemEmptyMap.java | 16 +++++ .../java/cn/nukkit/item/ItemFireworkStar.java | 16 +++++ .../java/cn/nukkit/item/ItemFishingRod.java | 15 ++-- .../cn/nukkit/item/ItemHeartOfTheSea.java | 16 +++++ src/main/java/cn/nukkit/item/ItemID.java | 3 + src/main/java/cn/nukkit/item/ItemLead.java | 16 +++++ .../cn/nukkit/item/ItemNautilusShell.java | 16 +++++ .../java/cn/nukkit/item/ItemNuggetIron.java | 16 +++++ .../cn/nukkit/item/ItemPhantomMembrane.java | 16 +++++ .../java/cn/nukkit/item/ItemRabbitHide.java | 16 +++++ src/main/java/cn/nukkit/item/ItemScute.java | 16 +++++ .../java/cn/nukkit/item/ItemShulkerShell.java | 16 +++++ .../cn/nukkit/item/ItemSuspiciousStew.java | 21 ++++++ src/main/java/cn/nukkit/item/ItemTool.java | 24 ++++++- .../nukkit/item/ItemWarpedFungusOnAStick.java | 29 ++++++++ src/main/java/cn/nukkit/item/food/Food.java | 2 +- .../cn/nukkit/item/randomitem/Fishing.java | 1 + 23 files changed, 355 insertions(+), 55 deletions(-) create mode 100644 src/main/java/cn/nukkit/item/ItemArmorStand.java create mode 100644 src/main/java/cn/nukkit/item/ItemBannerPattern.java create mode 100644 src/main/java/cn/nukkit/item/ItemChorusFruitPopped.java create mode 100644 src/main/java/cn/nukkit/item/ItemDragonBreath.java create mode 100644 src/main/java/cn/nukkit/item/ItemEmptyMap.java create mode 100644 src/main/java/cn/nukkit/item/ItemFireworkStar.java create mode 100644 src/main/java/cn/nukkit/item/ItemHeartOfTheSea.java create mode 100644 src/main/java/cn/nukkit/item/ItemLead.java create mode 100644 src/main/java/cn/nukkit/item/ItemNautilusShell.java create mode 100644 src/main/java/cn/nukkit/item/ItemNuggetIron.java create mode 100644 src/main/java/cn/nukkit/item/ItemPhantomMembrane.java create mode 100644 src/main/java/cn/nukkit/item/ItemRabbitHide.java create mode 100644 src/main/java/cn/nukkit/item/ItemScute.java create mode 100644 src/main/java/cn/nukkit/item/ItemShulkerShell.java create mode 100644 src/main/java/cn/nukkit/item/ItemSuspiciousStew.java create mode 100644 src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index adc0483e5dd..e84588dae81 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -7,7 +7,6 @@ import cn.nukkit.entity.Entity; import cn.nukkit.inventory.Fuel; import cn.nukkit.item.RuntimeItemMapping.RuntimeEntry; -import cn.nukkit.item.RuntimeItemMapping.LegacyEntry; import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.level.Level; import cn.nukkit.math.BlockFace; @@ -19,12 +18,9 @@ import cn.nukkit.nbt.tag.StringTag; import cn.nukkit.nbt.tag.Tag; import cn.nukkit.utils.Binary; -import cn.nukkit.utils.Config; -import cn.nukkit.utils.MainLogger; import cn.nukkit.utils.Utils; import com.google.gson.JsonArray; import com.google.gson.JsonElement; -import com.google.gson.JsonObject; import com.google.gson.JsonParser; import java.io.IOException; @@ -163,7 +159,6 @@ public static void init() { list[SIGN] = ItemSign.class; //323 list[WOODEN_DOOR] = ItemDoorWood.class; //324 list[BUCKET] = ItemBucket.class; //325 - list[MINECART] = ItemMinecart.class; //328 list[SADDLE] = ItemSaddle.class; //329 list[IRON_DOOR] = ItemDoorIron.class; //330 @@ -171,7 +166,6 @@ public static void init() { list[SNOWBALL] = ItemSnowball.class; //332 list[BOAT] = ItemBoat.class; //333 list[LEATHER] = ItemLeather.class; //334 - list[BRICK] = ItemBrick.class; //336 list[CLAY] = ItemClay.class; //337 list[SUGARCANE] = ItemSugarcane.class; //338 @@ -179,7 +173,6 @@ public static void init() { list[BOOK] = ItemBook.class; //340 list[SLIMEBALL] = ItemSlimeball.class; //341 list[MINECART_WITH_CHEST] = ItemMinecartChest.class; //342 - list[EGG] = ItemEgg.class; //344 list[COMPASS] = ItemCompass.class; //345 list[FISHING_ROD] = ItemFishingRod.class; //346 @@ -231,14 +224,14 @@ public static void init() { list[POTATO] = ItemPotato.class; //392 list[BAKED_POTATO] = ItemPotatoBaked.class; //393 list[POISONOUS_POTATO] = ItemPotatoPoisonous.class; //394 - //TODO: list[EMPTY_MAP] = ItemEmptyMap.class; //395 + list[EMPTY_MAP] = ItemEmptyMap.class; //395 list[GOLDEN_CARROT] = ItemCarrotGolden.class; //396 list[SKULL] = ItemSkull.class; //397 list[CARROT_ON_A_STICK] = ItemCarrotOnAStick.class; //398 list[NETHER_STAR] = ItemNetherStar.class; //399 list[PUMPKIN_PIE] = ItemPumpkinPie.class; //400 list[FIREWORKS] = ItemFirework.class; //401 - + list[FIREWORKSCHARGE] = ItemFireworkStar.class; //402 list[ENCHANTED_BOOK] = ItemBookEnchanted.class; //403 list[COMPARATOR] = ItemRedstoneComparator.class; //404 list[NETHER_BRICK] = ItemNetherBrick.class; //405 @@ -251,17 +244,17 @@ public static void init() { list[COOKED_RABBIT] = ItemRabbitCooked.class; //412 list[RABBIT_STEW] = ItemRabbitStew.class; //413 list[RABBIT_FOOT] = ItemRabbitFoot.class; //414 - //TODO: list[RABBIT_HIDE] = ItemRabbitHide.class; //415 + list[RABBIT_HIDE] = ItemRabbitHide.class; //415 list[LEATHER_HORSE_ARMOR] = ItemHorseArmorLeather.class; //416 list[IRON_HORSE_ARMOR] = ItemHorseArmorIron.class; //417 list[GOLD_HORSE_ARMOR] = ItemHorseArmorGold.class; //418 list[DIAMOND_HORSE_ARMOR] = ItemHorseArmorDiamond.class; //419 - //TODO: list[LEAD] = ItemLead.class; //420 + list[LEAD] = ItemLead.class; //420 list[NAME_TAG] = ItemNameTag.class; //421 list[PRISMARINE_CRYSTALS] = ItemPrismarineCrystals.class; //422 list[RAW_MUTTON] = ItemMuttonRaw.class; //423 list[COOKED_MUTTON] = ItemMuttonCooked.class; //424 - + list[ARMOR_STAND] = ItemArmorStand.class; //425 list[END_CRYSTAL] = ItemEndCrystal.class; //426 list[SPRUCE_DOOR] = ItemDoorSpruce.class; //427 list[BIRCH_DOOR] = ItemDoorBirch.class; //428 @@ -269,22 +262,17 @@ public static void init() { list[ACACIA_DOOR] = ItemDoorAcacia.class; //430 list[DARK_OAK_DOOR] = ItemDoorDarkOak.class; //431 list[CHORUS_FRUIT] = ItemChorusFruit.class; //432 - //TODO: list[POPPED_CHORUS_FRUIT] = ItemChorusFruitPopped.class; //433 - - //TODO: list[DRAGON_BREATH] = ItemDragonBreath.class; //437 + list[POPPED_CHORUS_FRUIT] = ItemChorusFruitPopped.class; //433 + list[BANNER_PATTERN] = ItemBannerPattern.class; //434 + list[DRAGON_BREATH] = ItemDragonBreath.class; //437 list[SPLASH_POTION] = ItemPotionSplash.class; //438 - list[LINGERING_POTION] = ItemPotionLingering.class; //441 - list[ELYTRA] = ItemElytra.class; //444 - - //TODO: list[SHULKER_SHELL] = ItemShulkerShell.class; //445 + list[SHULKER_SHELL] = ItemShulkerShell.class; //445 list[BANNER] = ItemBanner.class; //446 - list[TOTEM] = ItemTotem.class; //450 - + list[IRON_NUGGET] = ItemNuggetIron.class; //452 list[TRIDENT] = ItemTrident.class; //455 - list[BEETROOT] = ItemBeetroot.class; //457 list[BEETROOT_SEEDS] = ItemSeedsBeetroot.class; //458 list[BEETROOT_SOUP] = ItemBeetrootSoup.class; //459 @@ -293,33 +281,30 @@ public static void init() { list[PUFFERFISH] = ItemPufferfish.class; //462 list[COOKED_SALMON] = ItemSalmonCooked.class; //463 list[DRIED_KELP] = ItemDriedKelp.class; //464 - + list[NAUTILUS_SHELL] = ItemNautilusShell.class; //465 list[GOLDEN_APPLE_ENCHANTED] = ItemAppleGoldEnchanted.class; //466 - + list[HEART_OF_THE_SEA] = ItemHeartOfTheSea.class; //467 + list[SCUTE] = ItemScute.class; //468 list[TURTLE_SHELL] = ItemTurtleShell.class; //469 - + list[PHANTOM_MEMBRANE] = ItemPhantomMembrane.class; //470 list[CROSSBOW] = ItemCrossbow.class; //471 - list[SWEET_BERRIES] = ItemSweetBerries.class; //477 - - list[RECORD_11] = ItemRecord11.class; - list[RECORD_CAT] = ItemRecordCat.class; - list[RECORD_13] = ItemRecord13.class; - list[RECORD_BLOCKS] = ItemRecordBlocks.class; - list[RECORD_CHIRP] = ItemRecordChirp.class; - list[RECORD_FAR] = ItemRecordFar.class; - list[RECORD_WARD] = ItemRecordWard.class; - list[RECORD_MALL] = ItemRecordMall.class; - list[RECORD_MELLOHI] = ItemRecordMellohi.class; - list[RECORD_STAL] = ItemRecordStal.class; - list[RECORD_STRAD] = ItemRecordStrad.class; - list[RECORD_WAIT] = ItemRecordWait.class; - + list[RECORD_11] = ItemRecord11.class; //510 + list[RECORD_CAT] = ItemRecordCat.class; //501 + list[RECORD_13] = ItemRecord13.class; //500 + list[RECORD_BLOCKS] = ItemRecordBlocks.class; //502 + list[RECORD_CHIRP] = ItemRecordChirp.class; //503 + list[RECORD_FAR] = ItemRecordFar.class; //504 + list[RECORD_WARD] = ItemRecordWard.class; //509 + list[RECORD_MALL] = ItemRecordMall.class; //505 + list[RECORD_MELLOHI] = ItemRecordMellohi.class; //506 + list[RECORD_STAL] = ItemRecordStal.class; //507 + list[RECORD_STRAD] = ItemRecordStrad.class; //508 + list[RECORD_WAIT] = ItemRecordWait.class; //511 list[SHIELD] = ItemShield.class; //513 - + list[SUSPICIOUS_STEW] = ItemSuspiciousStew.class; //734 list[HONEYCOMB] = ItemHoneycomb.class; //736 list[HONEY_BOTTLE] = ItemHoneyBottle.class; //737 - list[NETHERITE_INGOT] = ItemIngotNetherite.class; //742 list[NETHERITE_SWORD] = ItemSwordNetherite.class; //743 list[NETHERITE_SHOVEL] = ItemShovelNetherite.class; //744 @@ -331,7 +316,7 @@ public static void init() { list[NETHERITE_LEGGINGS] = ItemLeggingsNetherite.class; //750 list[NETHERITE_BOOTS] = ItemBootsNetherite.class; //751 list[NETHERITE_SCRAP] = ItemScrapNetherite.class; //752 - + list[WARPED_FUNGUS_ON_A_STICK] = ItemWarpedFungusOnAStick.class; //757 list[RECORD_PIGSTEP] = ItemRecordPigstep.class; //759 for (int i = 0; i < 256; ++i) { diff --git a/src/main/java/cn/nukkit/item/ItemArmorStand.java b/src/main/java/cn/nukkit/item/ItemArmorStand.java new file mode 100644 index 00000000000..845a794cbe8 --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemArmorStand.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemArmorStand extends Item { + + public ItemArmorStand() { + this(0); + } + + public ItemArmorStand(Integer meta) { + this(meta, 1); + } + + public ItemArmorStand(Integer meta, int count) { + super(ARMOR_STAND, meta, count, "Armor Stand"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemBannerPattern.java b/src/main/java/cn/nukkit/item/ItemBannerPattern.java new file mode 100644 index 00000000000..23520db1daa --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemBannerPattern.java @@ -0,0 +1,21 @@ +package cn.nukkit.item; + +public class ItemBannerPattern extends Item { + + public ItemBannerPattern() { + this(0, 1); + } + + public ItemBannerPattern(Integer meta) { + this(meta, 1); + } + + public ItemBannerPattern(Integer meta, int count) { + super(BANNER_PATTERN, meta, count, "Banner Pattern"); + } + + @Override + public int getMaxStackSize() { + return 1; + } +} diff --git a/src/main/java/cn/nukkit/item/ItemCarrotOnAStick.java b/src/main/java/cn/nukkit/item/ItemCarrotOnAStick.java index 8784ef2e78e..acbf6ce5fa3 100644 --- a/src/main/java/cn/nukkit/item/ItemCarrotOnAStick.java +++ b/src/main/java/cn/nukkit/item/ItemCarrotOnAStick.java @@ -18,8 +18,17 @@ public ItemCarrotOnAStick(Integer meta, int count) { } @Override - public int getMaxStackSize() { - return 1; + public int getMaxDurability() { + return ItemTool.DURABILITY_CARROT_ON_A_STICK; + } + + @Override + public boolean noDamageOnAttack() { + return true; } -} + @Override + public boolean noDamageOnBreak() { + return true; + } +} diff --git a/src/main/java/cn/nukkit/item/ItemChorusFruitPopped.java b/src/main/java/cn/nukkit/item/ItemChorusFruitPopped.java new file mode 100644 index 00000000000..11d835afece --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemChorusFruitPopped.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemChorusFruitPopped extends Item { + + public ItemChorusFruitPopped() { + this(0, 1); + } + + public ItemChorusFruitPopped(Integer meta) { + this(meta, 1); + } + + public ItemChorusFruitPopped(Integer meta, int count) { + super(POPPED_CHORUS_FRUIT, 0, count, "Popped Chorus Fruit"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemDragonBreath.java b/src/main/java/cn/nukkit/item/ItemDragonBreath.java new file mode 100644 index 00000000000..3a33fe2811f --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemDragonBreath.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemDragonBreath extends Item { + + public ItemDragonBreath() { + this(0, 1); + } + + public ItemDragonBreath(Integer meta) { + this(meta, 1); + } + + public ItemDragonBreath(Integer meta, int count) { + super(DRAGON_BREATH, 0, count, "Dragon Breath"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemEmptyMap.java b/src/main/java/cn/nukkit/item/ItemEmptyMap.java new file mode 100644 index 00000000000..41622b635c3 --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemEmptyMap.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemEmptyMap extends Item { + + public ItemEmptyMap() { + this(0, 1); + } + + public ItemEmptyMap(Integer meta) { + this(meta, 1); + } + + public ItemEmptyMap(Integer meta, int count) { + super(EMPTY_MAP, meta, count, "Empty Map"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemFireworkStar.java b/src/main/java/cn/nukkit/item/ItemFireworkStar.java new file mode 100644 index 00000000000..6bd8a8d27ac --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemFireworkStar.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemFireworkStar extends Item { + + public ItemFireworkStar() { + this(0, 1); + } + + public ItemFireworkStar(Integer meta) { + this(meta, 1); + } + + public ItemFireworkStar(Integer meta, int count) { + super(FIREWORKSCHARGE, meta, count, "Firework Star"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemFishingRod.java b/src/main/java/cn/nukkit/item/ItemFishingRod.java index 425f9a6521f..431a1e11289 100644 --- a/src/main/java/cn/nukkit/item/ItemFishingRod.java +++ b/src/main/java/cn/nukkit/item/ItemFishingRod.java @@ -26,11 +26,6 @@ public int getEnchantAbility() { return 1; } - @Override - public int getMaxStackSize() { - return 1; - } - @Override public boolean onClickAir(Player player, Vector3 directionVector) { if (player.fishing != null) { @@ -46,4 +41,14 @@ public boolean onClickAir(Player player, Vector3 directionVector) { public int getMaxDurability() { return ItemTool.DURABILITY_FISHING_ROD; } + + @Override + public boolean noDamageOnAttack() { + return true; + } + + @Override + public boolean noDamageOnBreak() { + return true; + } } diff --git a/src/main/java/cn/nukkit/item/ItemHeartOfTheSea.java b/src/main/java/cn/nukkit/item/ItemHeartOfTheSea.java new file mode 100644 index 00000000000..ed4a0163967 --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemHeartOfTheSea.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemHeartOfTheSea extends Item { + + public ItemHeartOfTheSea() { + this(0, 1); + } + + public ItemHeartOfTheSea(Integer meta) { + this(meta, 1); + } + + public ItemHeartOfTheSea(Integer meta, int count) { + super(HEART_OF_THE_SEA, meta, count, "Heart Of The Sea"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemID.java b/src/main/java/cn/nukkit/item/ItemID.java index f4e7b379cfe..a5264bcb830 100644 --- a/src/main/java/cn/nukkit/item/ItemID.java +++ b/src/main/java/cn/nukkit/item/ItemID.java @@ -199,6 +199,7 @@ public interface ItemID { int DARK_OAK_DOOR = 431; int CHORUS_FRUIT = 432; int POPPED_CHORUS_FRUIT = 433; + int BANNER_PATTERN = 434; int DRAGON_BREATH = 437; int SPLASH_POTION = 438; @@ -248,6 +249,8 @@ public interface ItemID { int SHIELD = 513; + int SUSPICIOUS_STEW = 734; + int HONEYCOMB = 736; int HONEY_BOTTLE = 737; diff --git a/src/main/java/cn/nukkit/item/ItemLead.java b/src/main/java/cn/nukkit/item/ItemLead.java new file mode 100644 index 00000000000..dd32343f94d --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemLead.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemLead extends Item { + + public ItemLead() { + this(0, 1); + } + + public ItemLead(Integer meta) { + this(meta, 1); + } + + public ItemLead(Integer meta, int count) { + super(LEAD, 0, count, "Lead"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemNautilusShell.java b/src/main/java/cn/nukkit/item/ItemNautilusShell.java new file mode 100644 index 00000000000..b3163e13b30 --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemNautilusShell.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemNautilusShell extends Item { + + public ItemNautilusShell() { + this(0, 1); + } + + public ItemNautilusShell(Integer meta) { + this(meta, 1); + } + + public ItemNautilusShell(Integer meta, int count) { + super(NAUTILUS_SHELL, meta, count, "Nautilus Shell"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemNuggetIron.java b/src/main/java/cn/nukkit/item/ItemNuggetIron.java new file mode 100644 index 00000000000..9cc9da66988 --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemNuggetIron.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemNuggetIron extends Item { + + public ItemNuggetIron() { + this(0, 1); + } + + public ItemNuggetIron(Integer meta) { + this(meta, 1); + } + + public ItemNuggetIron(Integer meta, int count) { + super(IRON_NUGGET, meta, count, "Iron Nugget"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemPhantomMembrane.java b/src/main/java/cn/nukkit/item/ItemPhantomMembrane.java new file mode 100644 index 00000000000..a04643b269c --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemPhantomMembrane.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemPhantomMembrane extends Item { + + public ItemPhantomMembrane() { + this(0, 1); + } + + public ItemPhantomMembrane(Integer meta) { + this(meta, 1); + } + + public ItemPhantomMembrane(Integer meta, int count) { + super(PHANTOM_MEMBRANE, meta, count, "Phantom Membrane"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemRabbitHide.java b/src/main/java/cn/nukkit/item/ItemRabbitHide.java new file mode 100644 index 00000000000..d33b3619ffd --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemRabbitHide.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemRabbitHide extends Item { + + public ItemRabbitHide() { + this(0, 1); + } + + public ItemRabbitHide(Integer meta) { + this(meta, 1); + } + + public ItemRabbitHide(Integer meta, int count) { + super(RABBIT_HIDE, 0, count, "Rabbit Hide"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemScute.java b/src/main/java/cn/nukkit/item/ItemScute.java new file mode 100644 index 00000000000..3e6ff1f51cc --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemScute.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemScute extends Item { + + public ItemScute() { + this(0, 1); + } + + public ItemScute(Integer meta) { + this(meta, 1); + } + + public ItemScute(Integer meta, int count) { + super(SCUTE, meta, count, "Scute"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemShulkerShell.java b/src/main/java/cn/nukkit/item/ItemShulkerShell.java new file mode 100644 index 00000000000..883e4da5486 --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemShulkerShell.java @@ -0,0 +1,16 @@ +package cn.nukkit.item; + +public class ItemShulkerShell extends Item { + + public ItemShulkerShell() { + this(0, 1); + } + + public ItemShulkerShell(Integer meta) { + this(meta, 1); + } + + public ItemShulkerShell(Integer meta, int count) { + super(SHULKER_SHELL, 0, count, "Shulker Shell"); + } +} diff --git a/src/main/java/cn/nukkit/item/ItemSuspiciousStew.java b/src/main/java/cn/nukkit/item/ItemSuspiciousStew.java new file mode 100644 index 00000000000..8ad9d10be4f --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemSuspiciousStew.java @@ -0,0 +1,21 @@ +package cn.nukkit.item; + +public class ItemSuspiciousStew extends ItemEdible { + + public ItemSuspiciousStew() { + this(0, 1); + } + + public ItemSuspiciousStew(Integer meta) { + this(meta, 1); + } + + public ItemSuspiciousStew(Integer meta, int count) { + super(SUSPICIOUS_STEW, meta, count, "Suspicious Stew"); + } + + @Override + public int getMaxStackSize() { + return 1; + } +} diff --git a/src/main/java/cn/nukkit/item/ItemTool.java b/src/main/java/cn/nukkit/item/ItemTool.java index cad0e61332d..8e8602857d1 100644 --- a/src/main/java/cn/nukkit/item/ItemTool.java +++ b/src/main/java/cn/nukkit/item/ItemTool.java @@ -40,6 +40,8 @@ public abstract class ItemTool extends Item implements ItemDurable { public static final int DURABILITY_TRIDENT = 251; public static final int DURABILITY_FISHING_ROD = 65; public static final int DURABILITY_CROSSBOW = 465; + public static final int DURABILITY_CARROT_ON_A_STICK = 25; + public static final int DURABILITY_WARPED_FUNGUS_ON_A_STICK = 100; public ItemTool(int id) { this(id, 0, 1, UNKNOWN_STR); @@ -64,7 +66,7 @@ public int getMaxStackSize() { @Override public boolean useOn(Block block) { - if (this.isUnbreakable() || isDurable()) { + if (this.isUnbreakable() || isDurable() || noDamageOnBreak()) { return true; } @@ -90,7 +92,7 @@ public boolean useOn(Block block) { @Override public boolean useOn(Entity entity) { - if (this.isUnbreakable() || isDurable()) { + if (this.isUnbreakable() || isDurable() || noDamageOnAttack()) { return true; } @@ -150,7 +152,7 @@ public boolean isShears() { @Override public boolean isTool() { - return (this.id == FLINT_STEEL || this.id == SHEARS || this.id == BOW || this.id == CROSSBOW || this.isPickaxe() || this.isAxe() || this.isShovel() || this.isSword() || this.isHoe()); + return true; } @Override @@ -170,4 +172,20 @@ public int getEnchantAbility() { return 0; } + + /** + * No damage to item when it's used to attack entities + * @return whether the item should take damage when used to attack entities + */ + public boolean noDamageOnAttack() { + return false; + } + + /** + * No damage to item when it's used to break blocks + * @return whether the item should take damage when used to break blocks + */ + public boolean noDamageOnBreak() { + return false; + } } diff --git a/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java b/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java new file mode 100644 index 00000000000..e8c0378c113 --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java @@ -0,0 +1,29 @@ +package cn.nukkit.item; + +/** + * @author PetteriM1 + */ +public class ItemWarpedFungusOnAStick extends ItemTool { + + public ItemWarpedFungusOnAStick() { + this(0, 1); + } + + public ItemWarpedFungusOnAStick(Integer meta) { + this(meta, 1); + } + + public ItemWarpedFungusOnAStick(Integer meta, int count) { + super(WARPED_FUNGUS_ON_A_STICK, meta, count, "Warped Fungus on a Stick"); + } + + @Override + public int getMaxDurability() { + return ItemTool.DURABILITY_WARPED_FUNGUS_ON_A_STICK; + } + + @Override + public boolean noDamageOnBreak() { + return true; + } +} diff --git a/src/main/java/cn/nukkit/item/food/Food.java b/src/main/java/cn/nukkit/item/food/Food.java index d84e701ad86..a52aa5b0151 100644 --- a/src/main/java/cn/nukkit/item/food/Food.java +++ b/src/main/java/cn/nukkit/item/food/Food.java @@ -77,7 +77,7 @@ public abstract class Food { public static final Food pufferfish = registerDefaultFood(new FoodEffective(1, 0.2F) .addEffect(Effect.getEffect(Effect.HUNGER).setAmplifier(2).setDuration(15 * 20)) .addEffect(Effect.getEffect(Effect.NAUSEA).setAmplifier(1).setDuration(15 * 20)) - .addEffect(Effect.getEffect(Effect.POISON).setAmplifier(4).setDuration(60 * 20)) + .addEffect(Effect.getEffect(Effect.POISON).setAmplifier(3).setDuration(60 * 20)) .addRelative(Item.PUFFERFISH)); public static final Food dried_kelp = registerDefaultFood(new FoodNormal(1, 0.6F).addRelative(Item.DRIED_KELP)); public static final Food sweet_berries = registerDefaultFood(new FoodNormal(2, 0.4F).addRelative(Item.SWEET_BERRIES)); diff --git a/src/main/java/cn/nukkit/item/randomitem/Fishing.java b/src/main/java/cn/nukkit/item/randomitem/Fishing.java index 64da9786b94..f328a0e3d6e 100644 --- a/src/main/java/cn/nukkit/item/randomitem/Fishing.java +++ b/src/main/java/cn/nukkit/item/randomitem/Fishing.java @@ -28,6 +28,7 @@ public final class Fishing { public static final Selector TREASURE_FISHING_ROD = putSelector(new ConstantItemSelector(Item.FISHING_ROD, TREASURES), 0.1667F); public static final Selector TREASURE_NAME_TAG = putSelector(new ConstantItemSelector(Item.NAME_TAG, TREASURES), 0.1667F); public static final Selector TREASURE_SADDLE = putSelector(new ConstantItemSelector(Item.SADDLE, TREASURES), 0.1667F); + public static final Selector TREASURE_NAUTILUS_SHELL = putSelector(new ConstantItemSelector(Item.NAUTILUS_SHELL, TREASURES), 0.1667F); public static final Selector JUNK_BOWL = putSelector(new ConstantItemSelector(Item.BOWL, JUNKS), 0.12F); public static final Selector JUNK_FISHING_ROD = putSelector(new ConstantItemSelector(Item.FISHING_ROD, JUNKS), 0.024F); public static final Selector JUNK_LEATHER = putSelector(new ConstantItemSelector(Item.LEATHER, JUNKS), 0.12F); From a2c9b8efb89cc707ec26383972835673f7bbfdc8 Mon Sep 17 00:00:00 2001 From: FlamingKnight Date: Tue, 27 Jul 2021 08:07:26 -0700 Subject: [PATCH 188/394] Use getPropertyValue instead of DyeColor#getByWoolData --- src/main/java/cn/nukkit/block/BlockConcrete.java | 4 ++-- src/main/java/cn/nukkit/block/BlockConcretePowder.java | 8 +++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/block/BlockConcrete.java b/src/main/java/cn/nukkit/block/BlockConcrete.java index f8891473a46..e9e4a5f3350 100644 --- a/src/main/java/cn/nukkit/block/BlockConcrete.java +++ b/src/main/java/cn/nukkit/block/BlockConcrete.java @@ -68,10 +68,10 @@ public int getToolTier() { @Override public BlockColor getColor() { - return DyeColor.getByWoolData(getDamage()).getColor(); + return getDyeColor().getColor(); } public DyeColor getDyeColor() { - return DyeColor.getByWoolData(getDamage()); + return getPropertyValue(CommonBlockProperties.COLOR); } } diff --git a/src/main/java/cn/nukkit/block/BlockConcretePowder.java b/src/main/java/cn/nukkit/block/BlockConcretePowder.java index 05667301c47..49d1c422dbd 100644 --- a/src/main/java/cn/nukkit/block/BlockConcretePowder.java +++ b/src/main/java/cn/nukkit/block/BlockConcretePowder.java @@ -10,6 +10,7 @@ import cn.nukkit.item.ItemTool; import cn.nukkit.level.Level; import cn.nukkit.math.BlockFace; +import cn.nukkit.utils.BlockColor; import cn.nukkit.utils.DyeColor; import javax.annotation.Nonnull; @@ -103,7 +104,12 @@ public boolean place(@Nonnull Item item, @Nonnull Block b, @Nonnull Block target return true; } + @Override + public BlockColor getColor() { + return getDyeColor().getColor(); + } + public DyeColor getDyeColor() { - return DyeColor.getByWoolData(getDamage()); + return getPropertyValue(CommonBlockProperties.COLOR); } } From 35ef92e4d6640c135a43f53aecd3e2e6b533a814 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 28 Jul 2021 08:48:09 +0300 Subject: [PATCH 189/394] Can't create nether portal in the end (#1875) --- src/main/java/cn/nukkit/level/Level.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 4023935589a..41593e26d02 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -3533,6 +3533,7 @@ public int getUpdateLCG() { } public boolean createPortal(Block target) { + if (this.dimension == DIMENSION_THE_END) return false; int maxPortalSize = 23; final int targX = target.getFloorX(); final int targY = target.getFloorY(); From d0630584fa8b25b6e29c0a43b2e1cfeb2ca30d47 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Thu, 5 Aug 2021 13:03:20 +0300 Subject: [PATCH 190/394] Block damaged items duplication (#1488) * Block damaged items duplication * Update Player.java --- src/main/java/cn/nukkit/Player.java | 32 +++++++++++++++++++++++------ 1 file changed, 26 insertions(+), 6 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 14329e0a148..60b20cce44b 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -3070,7 +3070,11 @@ public void onCompletion(Server server) { //TODO: Implement adventure mode checks if ((i = this.level.useItemOn(blockVector.asVector3(), i, face, useItemData.clickPos.x, useItemData.clickPos.y, useItemData.clickPos.z, this)) != null) { if (!i.equals(oldItem) || i.getCount() != oldItem.getCount()) { - inventory.setItemInHand(i); + if (oldItem.getId() == i.getId() || i.getId() == 0) { + inventory.setItemInHand(i); + } else { + server.getLogger().debug("Tried to set item " + i.getId() + " but " + this.username + " had item " + oldItem.getId() + " in their hand slot"); + } inventory.sendHeldItem(this.getViewers().values()); } break packetswitch; @@ -3104,7 +3108,11 @@ public void onCompletion(Server server) { if (this.isSurvival()) { this.getFoodData().updateFoodExpLevel(0.025); if (!i.equals(oldItem) || i.getCount() != oldItem.getCount()) { - inventory.setItemInHand(i); + if (oldItem.getId() == i.getId() || i.getId() == 0) { + inventory.setItemInHand(i); + } else { + server.getLogger().debug("Tried to set item " + i.getId() + " but " + this.username + " had item " + oldItem.getId() + " in their hand slot"); + } inventory.sendHeldItem(this.getViewers().values()); } } @@ -3147,7 +3155,11 @@ public void onCompletion(Server server) { if (item.onClickAir(this, directionVector)) { if (!this.isCreative()) { - this.inventory.setItemInHand(item); + if (item.getId() == 0 || this.inventory.getItemInHand().getId() == item.getId()) { + this.inventory.setItemInHand(item); + } else { + server.getLogger().debug("Tried to set item " + item.getId() + " but " + this.username + " had item " + this.inventory.getItemInHand().getId() + " in their hand slot"); + } } if (!this.isUsingItem()) { @@ -3208,7 +3220,11 @@ public void onCompletion(Server server) { } } - this.inventory.setItemInHand(item); + if (item.getId() == 0 || this.inventory.getItemInHand().getId() == item.getId()) { + this.inventory.setItemInHand(item); + } else { + server.getLogger().debug("Tried to set item " + item.getId() + " but " + this.username + " had item " + this.inventory.getItemInHand().getId() + " in their hand slot"); + } } break; case InventoryTransactionPacket.USE_ITEM_ON_ENTITY_ACTION_ATTACK: @@ -3250,9 +3266,13 @@ public void onCompletion(Server server) { if (item.isTool() && (this.isSurvival() || this.isAdventure())) { if (item.useOn(target) && item.getDamage() >= item.getMaxDurability()) { - this.inventory.setItemInHand(new ItemBlock(Block.get(BlockID.AIR))); + this.inventory.setItemInHand(Item.get(0)); } else { - this.inventory.setItemInHand(item); + if (item.getId() == 0 || this.inventory.getItemInHand().getId() == item.getId()) { + this.inventory.setItemInHand(item); + } else { + server.getLogger().debug("Tried to set item " + item.getId() + " but " + this.username + " had item " + this.inventory.getItemInHand().getId() + " in their hand slot"); + } } } return; From a00089c05b2b2559fc833b0c88439c798d52ce54 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Thu, 5 Aug 2021 13:24:37 +0300 Subject: [PATCH 191/394] Patch beacon dupe (#1880) --- src/main/java/cn/nukkit/inventory/BeaconInventory.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/inventory/BeaconInventory.java b/src/main/java/cn/nukkit/inventory/BeaconInventory.java index a73520236f1..51af284d77d 100644 --- a/src/main/java/cn/nukkit/inventory/BeaconInventory.java +++ b/src/main/java/cn/nukkit/inventory/BeaconInventory.java @@ -16,8 +16,10 @@ public BeaconInventory(PlayerUIInventory playerUI, Position position) { public void onClose(Player who) { super.onClose(who); - //Drop item in slot - this.getHolder().getLevel().dropItem(this.getHolder().add(0.5, 0.5, 0.5), this.getItem(0)); + // Drop item in slot if client doesn't automatically move it to player's inventory + if (!who.isConnected()) { + this.getHolder().getLevel().dropItem(this.getHolder().add(0.5, 0.5, 0.5), this.getItem(0)); + } this.clear(0); } } From 51cc75db535a5405ced0ec3b323681bb916d40d8 Mon Sep 17 00:00:00 2001 From: Sleepybear Date: Sat, 7 Aug 2021 00:12:52 -0700 Subject: [PATCH 192/394] Fix rare server crash from hack clients trying to connect (#1881) --- src/main/java/cn/nukkit/Server.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/Server.java b/src/main/java/cn/nukkit/Server.java index 39029ddedc2..413d94f2fc8 100644 --- a/src/main/java/cn/nukkit/Server.java +++ b/src/main/java/cn/nukkit/Server.java @@ -2199,7 +2199,7 @@ public boolean isWhitelisted(String name) { } public boolean isOp(String name) { - return this.operators.exists(name, true); + return name != null && this.operators.exists(name, true); } public Config getWhitelist() { From 564da45ac26140dfb0e71aa3e4fd4299656bd988 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Sun, 8 Aug 2021 22:26:26 +0300 Subject: [PATCH 193/394] Ignore packets before player has logged in (#1883) --- src/main/java/cn/nukkit/Player.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 60b20cce44b..d1a3f10a9a2 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -130,6 +130,8 @@ public class Player extends EntityHuman implements CommandSender, InventoryHolde public boolean spawned = false; public boolean loggedIn = false; public boolean locallyInitialized = false; + private boolean verified = false; + private int unverifiedPackets; public int gamemode; public long lastBreak; private BlockVector3 lastBreakPosition = new BlockVector3(); @@ -2042,6 +2044,14 @@ public void handleDataPacket(DataPacket packet) { return; } + if (!verified && packet.pid() != ProtocolInfo.LOGIN_PACKET && packet.pid() != ProtocolInfo.BATCH_PACKET) { + server.getLogger().warning("Ignoring " + packet.getClass().getSimpleName() + " from " + getAddress() + " due to player not verified yet"); + if (unverifiedPackets++ > 100) { + this.close("", "Too many failed login attempts"); + } + return; + } + try (Timing ignored = Timings.getReceiveDataPacketTiming(packet)) { DataPacketReceiveEvent ev = new DataPacketReceiveEvent(this, packet); this.server.getPluginManager().callEvent(ev); @@ -2154,6 +2164,8 @@ public void handleDataPacket(DataPacket packet) { } Player playerInstance = this; + this.verified = true; + this.preLoginEventTask = new AsyncTask() { private PlayerAsyncPreLoginEvent event; From c2ca2ad85fa0a685b081b1c69a06cd84cef61670 Mon Sep 17 00:00:00 2001 From: Vrekt Date: Fri, 20 Aug 2021 06:12:45 -0500 Subject: [PATCH 194/394] Fix breakTime calculations if the wrong tool is used with efficiency. (#1888) --- src/main/java/cn/nukkit/block/Block.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index 8a37c832385..c5cc814492e 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -613,7 +613,7 @@ private static double breakTime0(double blockHardness, boolean correctTool, bool double baseTime = ((correctTool || canHarvestWithHand) ? 1.5 : 5.0) * blockHardness; double speed = 1.0 / baseTime; if (correctTool) speed *= toolBreakTimeBonus0(toolType, toolTier, blockId); - speed += speedBonusByEfficiencyLore0(efficiencyLoreLevel); + speed += correctTool ? speedBonusByEfficiencyLore0(efficiencyLoreLevel) : 0; speed *= speedRateByHasteLore0(hasteEffectLevel); if (insideOfWaterWithoutAquaAffinity) speed *= 0.2; if (outOfWaterButNotOnGround) speed *= 0.2; From 06d3875a0647650ad594ec1c9a1c9640e0f4b341 Mon Sep 17 00:00:00 2001 From: LT_Name <45508179+lt-name@users.noreply.github.com> Date: Sat, 21 Aug 2021 02:33:51 +0800 Subject: [PATCH 195/394] Add ItemSpyglass (#1889) --- src/main/java/cn/nukkit/item/Item.java | 1 + src/main/java/cn/nukkit/item/ItemID.java | 2 ++ .../java/cn/nukkit/item/ItemSpyglass.java | 24 +++++++++++++++++++ src/main/resources/legacy_item_ids.json | 3 ++- src/main/resources/runtime_item_states.json | 2 +- 5 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 src/main/java/cn/nukkit/item/ItemSpyglass.java diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index e84588dae81..1c48c18bf19 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -318,6 +318,7 @@ public static void init() { list[NETHERITE_SCRAP] = ItemScrapNetherite.class; //752 list[WARPED_FUNGUS_ON_A_STICK] = ItemWarpedFungusOnAStick.class; //757 list[RECORD_PIGSTEP] = ItemRecordPigstep.class; //759 + list[SPYGLASS] = ItemSpyglass.class; //772 for (int i = 0; i < 256; ++i) { if (Block.list[i] != null) { diff --git a/src/main/java/cn/nukkit/item/ItemID.java b/src/main/java/cn/nukkit/item/ItemID.java index a5264bcb830..b9c5ac2ad5e 100644 --- a/src/main/java/cn/nukkit/item/ItemID.java +++ b/src/main/java/cn/nukkit/item/ItemID.java @@ -270,4 +270,6 @@ public interface ItemID { int WARPED_FUNGUS_ON_A_STICK = 757; int RECORD_PIGSTEP = 759; + + int SPYGLASS = 772; } diff --git a/src/main/java/cn/nukkit/item/ItemSpyglass.java b/src/main/java/cn/nukkit/item/ItemSpyglass.java new file mode 100644 index 00000000000..efb7c4d1b4d --- /dev/null +++ b/src/main/java/cn/nukkit/item/ItemSpyglass.java @@ -0,0 +1,24 @@ +package cn.nukkit.item; + +/** + * @author LT_Name + */ +public class ItemSpyglass extends Item { + + public ItemSpyglass() { + this(0, 1); + } + + public ItemSpyglass(Integer meta) { + this(meta, 1); + } + + public ItemSpyglass(Integer meta, int count) { + super(SPYGLASS, 0, count, "Spyglass"); + } + + @Override + public int getMaxStackSize() { + return 1; + } +} diff --git a/src/main/resources/legacy_item_ids.json b/src/main/resources/legacy_item_ids.json index bd3a556c24d..733f11f4f1c 100644 --- a/src/main/resources/legacy_item_ids.json +++ b/src/main/resources/legacy_item_ids.json @@ -805,5 +805,6 @@ "minecraft:oak_sign": 323, "minecraft:glistering_melon_slice": 382, "minecraft:totem_of_undying": 450, - "minecraft:scute": 468 + "minecraft:scute": 468, + "minecraft:spyglass": 772 } \ No newline at end of file diff --git a/src/main/resources/runtime_item_states.json b/src/main/resources/runtime_item_states.json index dc6abad1d7a..f274ec7df55 100644 --- a/src/main/resources/runtime_item_states.json +++ b/src/main/resources/runtime_item_states.json @@ -3657,7 +3657,7 @@ }, { "name" : "minecraft:spyglass", - "id" : 625 + "id" : 772 }, { "name" : "minecraft:squid_spawn_egg", From 0d6a1ac452a8cc99306c38352e704e34b19864a4 Mon Sep 17 00:00:00 2001 From: wellwhz <43908835+wellwhz@users.noreply.github.com> Date: Sat, 21 Aug 2021 19:54:21 +0800 Subject: [PATCH 196/394] Make Enchantment Lure actually do something (#1882) --- src/main/java/cn/nukkit/Player.java | 3 +- .../nukkit/entity/item/EntityFishingHook.java | 53 +++++++++++-------- 2 files changed, 33 insertions(+), 23 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index d1a3f10a9a2..1dbb7c06770 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -5116,9 +5116,10 @@ public void startFishing(Item fishingRod) { if (ev.isCancelled()) { fishingHook.close(); } else { - fishingHook.spawnToAll(); this.fishing = fishingHook; fishingHook.rod = fishingRod; + fishingHook.checkLure(); + fishingHook.spawnToAll(); } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java index b20fbe8e55a..8a27747ad70 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java @@ -12,6 +12,7 @@ import cn.nukkit.event.entity.ProjectileHitEvent; import cn.nukkit.event.player.PlayerFishEvent; import cn.nukkit.item.Item; +import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.item.randomitem.Fishing; import cn.nukkit.level.MovingObjectPosition; import cn.nukkit.level.format.FullChunk; @@ -34,15 +35,12 @@ public class EntityFishingHook extends EntityProjectile { public static final int NETWORK_ID = 77; - public static final int WAIT_CHANCE = 120; - public static final int CHANCE = 40; - - public boolean chance = false; - public int waitChance = WAIT_CHANCE * 2; + public int waitChance = 120; + public int waitTimer = 240; public boolean attracted = false; public int attractTimer = 0; public boolean caught = false; - public int coughtTimer = 0; + public int caughtTimer = 0; public Vector3 fish = null; @@ -106,37 +104,42 @@ public boolean onUpdate(int currentTick) { hasUpdate = true; } - Random random = new Random(); + Random random = ThreadLocalRandom.current(); if (this.isInsideOfWater()) { + if (this.waitTimer == 240) { + this.waitTimer = this.waitChance << 1; + } else if (this.waitTimer == 360) { + this.waitTimer = this.waitChance * 3; + } if (!this.attracted) { - if (this.waitChance > 0) { - --this.waitChance; + if (this.waitTimer > 0) { + --this.waitTimer; } - if (this.waitChance == 0) { + if (this.waitTimer == 0) { if (random.nextInt(100) < 90) { this.attractTimer = (random.nextInt(40) + 20); this.spawnFish(); this.caught = false; this.attracted = true; } else { - this.waitChance = WAIT_CHANCE; + this.waitTimer = this.waitChance; } } } else if (!this.caught) { if (this.attractFish()) { - this.coughtTimer = (random.nextInt(20) + 30); + this.caughtTimer = (random.nextInt(20) + 30); this.fishBites(); this.caught = true; } } else { - if (this.coughtTimer > 0) { - --this.coughtTimer; + if (this.caughtTimer > 0) { + --this.caughtTimer; } - if (this.coughtTimer == 0) { + if (this.caughtTimer == 0) { this.attracted = false; this.caught = false; - this.waitChance = WAIT_CHANCE * 3; + this.waitTimer = this.waitChance * 3; } } } @@ -181,7 +184,7 @@ public void fishBites() { } public void spawnFish() { - Random random = new Random(); + Random random = ThreadLocalRandom.current(); this.fish = new Vector3( this.x + (random.nextDouble() * 1.2 + 1) * (random.nextBoolean() ? -1 : 1), this.getWaterHeight(), @@ -196,14 +199,11 @@ public boolean attractFish() { this.fish.y, this.fish.z + (this.z - this.fish.z) * multiply ); - if (new Random().nextInt(100) < 85) { + if (ThreadLocalRandom.current().nextInt(100) < 85) { this.level.addParticle(new WaterParticle(this.fish)); } double dist = Math.abs(Math.sqrt(this.x * this.x + this.z * this.z) - Math.sqrt(this.fish.x * this.fish.x + this.fish.z * this.fish.z)); - if (dist < 0.15) { - return true; - } - return false; + return dist < 0.15; } public void reelLine() { @@ -269,4 +269,13 @@ public void onCollideWithEntity(Entity entity) { entity.attack(ev); } + + public void checkLure() { + if (rod != null) { + Enchantment ench = rod.getEnchantment(Enchantment.ID_LURE); + if (ench != null) { + this.waitChance = 120 - (25 * ench.getLevel()); + } + } + } } From 2a4900742cc1db8d1aeba5b81869b5bed2891ebb Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Sat, 21 Aug 2021 21:07:26 +0300 Subject: [PATCH 197/394] Fix fire aspect and knockback (#1862) --- src/main/java/cn/nukkit/Player.java | 27 ++++++++++++------- src/main/java/cn/nukkit/entity/Entity.java | 12 +++++++++ .../entity/projectile/EntityProjectile.java | 2 +- .../entity/EntityDamageByEntityEvent.java | 12 +++++++++ .../nukkit/item/enchantment/Enchantment.java | 4 +++ .../enchantment/EnchantmentFireAspect.java | 15 ++++++----- .../damage/EnchantmentDamageAll.java | 6 +---- 7 files changed, 56 insertions(+), 22 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 1dbb7c06770..f9dada63007 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -3240,15 +3240,6 @@ public void onCompletion(Server server) { } break; case InventoryTransactionPacket.USE_ITEM_ON_ENTITY_ACTION_ATTACK: - float itemDamage = item.getAttackDamage(); - - for (Enchantment enchantment : item.getEnchantments()) { - itemDamage += enchantment.getDamageBonus(target); - } - - Map damage = new EnumMap<>(DamageModifier.class); - damage.put(DamageModifier.BASE, itemDamage); - if (!this.canInteract(target, isCreative() ? 8 : 5)) { break; } else if (target instanceof Player) { @@ -3259,7 +3250,23 @@ public void onCompletion(Server server) { } } - EntityDamageByEntityEvent entityDamageByEntityEvent = new EntityDamageByEntityEvent(this, target, DamageCause.ENTITY_ATTACK, damage); + Enchantment[] enchantments = item.getEnchantments(); + + float itemDamage = item.getAttackDamage(); + for (Enchantment enchantment : enchantments) { + itemDamage += enchantment.getDamageBonus(target); + } + + Map damage = new EnumMap<>(DamageModifier.class); + damage.put(DamageModifier.BASE, itemDamage); + + float knockBack = 0.3f; + Enchantment knockBackEnchantment = item.getEnchantment(Enchantment.ID_KNOCKBACK); + if (knockBackEnchantment != null) { + knockBack += knockBackEnchantment.getLevel() * 0.1f; + } + + EntityDamageByEntityEvent entityDamageByEntityEvent = new EntityDamageByEntityEvent(this, target, DamageCause.ENTITY_ATTACK, damage, knockBack, enchantments); if (this.isSpectator()) entityDamageByEntityEvent.setCancelled(); if ((target instanceof Player) && !this.level.getGameRules().getBoolean(GameRule.PVP)) { entityDamageByEntityEvent.setCancelled(); diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 3aa0d3dd6a9..80aadf8586b 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -13,6 +13,7 @@ import cn.nukkit.event.player.PlayerTeleportEvent; import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; +import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.level.*; import cn.nukkit.level.format.FullChunk; import cn.nukkit.math.*; @@ -1090,6 +1091,17 @@ public boolean attack(EntityDamageEvent source) { if (source.isCancelled()) { return false; } + + // Make fire aspect to set the target in fire before dealing any damage so the target is in fire on death even if killed by the first hit + if (source instanceof EntityDamageByEntityEvent) { + Enchantment[] enchantments = ((EntityDamageByEntityEvent) source).getWeaponEnchantments(); + if (enchantments != null) { + for (Enchantment enchantment : enchantments) { + enchantment.doAttack(((EntityDamageByEntityEvent) source).getDamager(), this); + } + } + } + if (this.absorption > 0) { // Damage Absorption this.setAbsorption(Math.max(0, this.getAbsorption() + source.getDamage(EntityDamageEvent.DamageModifier.ABSORPTION))); } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index e1e13de47d8..c00fc647114 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -60,7 +60,7 @@ public boolean attack(EntityDamageEvent source) { public void onCollideWithEntity(Entity entity) { this.server.getPluginManager().callEvent(new ProjectileHitEvent(this, MovingObjectPosition.fromEntity(entity))); - float damage = this instanceof EntitySnowball && entity instanceof EntityBlaze ? 3 : this.getResultDamage(); + float damage = this instanceof EntitySnowball && entity.getNetworkId() == EntityBlaze.NETWORK_ID ? 3f : this.getResultDamage(); EntityDamageEvent ev; if (this.shootingEntity == null) { diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java index ae4f3bc45a8..402ec40f1e9 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java @@ -1,6 +1,7 @@ package cn.nukkit.event.entity; import cn.nukkit.entity.Entity; +import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.potion.Effect; import java.util.Map; @@ -15,6 +16,8 @@ public class EntityDamageByEntityEvent extends EntityDamageEvent { private float knockBack; + private Enchantment[] enchantments; + public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause cause, float damage) { this(damager, entity, cause, damage, 0.3f); } @@ -31,9 +34,14 @@ public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause caus } public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause cause, Map modifiers, float knockBack) { + this(damager, entity, cause, modifiers, knockBack, new Enchantment[0]); + } + + public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause cause, Map modifiers, float knockBack, Enchantment[] enchantments) { super(entity, cause, modifiers); this.damager = damager; this.knockBack = knockBack; + this.enchantments = enchantments; this.addAttackerModifiers(damager); } @@ -58,4 +66,8 @@ public float getKnockBack() { public void setKnockBack(float knockBack) { this.knockBack = knockBack; } + + public Enchantment[] getWeaponEnchantments() { + return enchantments; + } } diff --git a/src/main/java/cn/nukkit/item/enchantment/Enchantment.java b/src/main/java/cn/nukkit/item/enchantment/Enchantment.java index bcfc27b492b..84662e73a30 100644 --- a/src/main/java/cn/nukkit/item/enchantment/Enchantment.java +++ b/src/main/java/cn/nukkit/item/enchantment/Enchantment.java @@ -228,6 +228,10 @@ public void doPostAttack(Entity attacker, Entity entity) { } + public void doAttack(Entity attacker, Entity entity) { + + } + public void doPostHurt(Entity attacker, Entity entity) { } diff --git a/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java b/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java index 039a7dce675..4ebb94500cc 100644 --- a/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java +++ b/src/main/java/cn/nukkit/item/enchantment/EnchantmentFireAspect.java @@ -1,5 +1,6 @@ package cn.nukkit.item.enchantment; +import cn.nukkit.Player; import cn.nukkit.Server; import cn.nukkit.entity.Entity; import cn.nukkit.event.entity.EntityCombustByEntityEvent; @@ -29,14 +30,16 @@ public int getMaxLevel() { } @Override - public void doPostAttack(Entity attacker, Entity entity) { - int duration = Math.max(entity.fireTicks / 20, getLevel() * 4); + public void doAttack(Entity attacker, Entity entity) { + if ((!(entity instanceof Player) || !((Player) entity).isCreative())) { + int duration = Math.max(entity.fireTicks / 20, getLevel() << 2); - EntityCombustByEntityEvent ev = new EntityCombustByEntityEvent(attacker, entity, duration); - Server.getInstance().getPluginManager().callEvent(ev); + EntityCombustByEntityEvent ev = new EntityCombustByEntityEvent(attacker, entity, duration); + Server.getInstance().getPluginManager().callEvent(ev); - if (!ev.isCancelled()) { - entity.setOnFire(ev.getDuration()); + if (!ev.isCancelled()) { + entity.setOnFire(ev.getDuration()); + } } } } diff --git a/src/main/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAll.java b/src/main/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAll.java index 903eb864825..0cf32eb95c9 100644 --- a/src/main/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAll.java +++ b/src/main/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAll.java @@ -29,10 +29,6 @@ public int getMaxEnchantableLevel() { @Override public double getDamageBonus(Entity entity) { - if (this.getLevel() <= 0) { - return 0; - } - - return 0.5 + getLevel() * 0.5; + return this.getLevel() * 1.25; //https://minecraft.fandom.com/wiki/Sharpness#Usage } } From f77abc57eef522b73423ebd191fd9f96c475edf6 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Thu, 26 Aug 2021 12:42:38 +0300 Subject: [PATCH 198/394] Verify EmotePacket entity id & ignore if player is not spawned (#1891) --- src/main/java/cn/nukkit/Player.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index f9dada63007..2268a0d06bf 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -2278,8 +2278,16 @@ public void onCompletion(Server server) { log.warn("Violation warning from {}: {}", this.getName(), packet.toString()); break; case ProtocolInfo.EMOTE_PACKET: + if (!this.spawned) { + return; + } + EmotePacket emotePacket = (EmotePacket) packet; + if (emotePacket.runtimeId != this.id) { + server.getLogger().warning(this.username + " sent EmotePacket with invalid entity id: " + emotePacket.runtimeId + " != " + this.id); + return; + } for (Player viewer : this.getViewers().values()) { - viewer.dataPacket(packet); + viewer.dataPacket(emotePacket); } return; case ProtocolInfo.PLAYER_INPUT_PACKET: From fc4a5e8d72a7c1515438bfa556af0e15fdaac6d4 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Thu, 26 Aug 2021 12:42:49 +0300 Subject: [PATCH 199/394] Red sand block color (#1890) --- src/main/java/cn/nukkit/block/BlockSand.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/cn/nukkit/block/BlockSand.java b/src/main/java/cn/nukkit/block/BlockSand.java index 667f2a9d22b..45791d253c9 100644 --- a/src/main/java/cn/nukkit/block/BlockSand.java +++ b/src/main/java/cn/nukkit/block/BlockSand.java @@ -68,6 +68,10 @@ public String getName() { @Override public BlockColor getColor() { + if (this.getDamage() == 0x01) { + return BlockColor.ORANGE_BLOCK_COLOR; + } + return BlockColor.SAND_BLOCK_COLOR; } } From f5f3c7dae20509cd8c29b5c55eed39321c29ebb5 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Thu, 26 Aug 2021 17:51:34 +0300 Subject: [PATCH 200/394] EnchantCommand: Make enchantment name non case sensitive (#1892) --- src/main/java/cn/nukkit/command/defaults/EnchantCommand.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/cn/nukkit/command/defaults/EnchantCommand.java b/src/main/java/cn/nukkit/command/defaults/EnchantCommand.java index e262a9ca62a..f8ee9c189cc 100644 --- a/src/main/java/cn/nukkit/command/defaults/EnchantCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/EnchantCommand.java @@ -78,6 +78,7 @@ public boolean execute(CommandSender sender, String commandLabel, String[] args) } public int getIdByName(String value) throws NumberFormatException { + value = value.toLowerCase(); switch (value) { case "protection": return 0; From c29dbf4fd1d4223166de9cc18809916b51b98e61 Mon Sep 17 00:00:00 2001 From: Erik Miller Date: Thu, 26 Aug 2021 17:43:30 +0200 Subject: [PATCH 201/394] fixed that providerClass is null (#1884) --- .../java/cn/nukkit/level/format/generic/BaseFullChunk.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java b/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java index 0b49b6040a7..0b9127a2ba7 100644 --- a/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java +++ b/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java @@ -209,6 +209,10 @@ public LevelProvider getProvider() { @Override public void setProvider(LevelProvider provider) { this.provider = provider; + + if(provider != null) { + this.providerClass = provider.getClass(); + } } @Override From 7a3ed830ef5c2ea1c11254f8d3d3c1d88d3c789e Mon Sep 17 00:00:00 2001 From: SupremeMortal <6178101+SupremeMortal@users.noreply.github.com> Date: Mon, 30 Aug 2021 13:37:07 +0100 Subject: [PATCH 202/394] Add toString methods to EntityData for debugging --- src/main/java/cn/nukkit/entity/Attribute.java | 10 +++++ .../cn/nukkit/entity/data/ByteEntityData.java | 5 +++ .../cn/nukkit/entity/data/EntityMetadata.java | 8 ++++ .../nukkit/entity/data/FloatEntityData.java | 5 +++ .../cn/nukkit/entity/data/IntEntityData.java | 5 +++ .../entity/data/IntPositionEntityData.java | 5 +++ .../cn/nukkit/entity/data/LongEntityData.java | 5 +++ .../cn/nukkit/entity/data/NBTEntityData.java | 5 +++ .../nukkit/entity/data/ShortEntityData.java | 5 +++ .../entity/data/Vector3fEntityData.java | 5 +++ .../java/cn/nukkit/utils/ClientChainData.java | 42 ++++++++++++------- 11 files changed, 84 insertions(+), 16 deletions(-) diff --git a/src/main/java/cn/nukkit/entity/Attribute.java b/src/main/java/cn/nukkit/entity/Attribute.java index de4b04070a4..68faacc5653 100644 --- a/src/main/java/cn/nukkit/entity/Attribute.java +++ b/src/main/java/cn/nukkit/entity/Attribute.java @@ -170,4 +170,14 @@ public Attribute clone() { return null; } } + + @Override + public String toString() { + return name + "{" + + "min=" + minValue + + ", max=" + maxValue + + ", def=" + defaultValue + + ", val=" + currentValue + + '}'; + } } \ No newline at end of file diff --git a/src/main/java/cn/nukkit/entity/data/ByteEntityData.java b/src/main/java/cn/nukkit/entity/data/ByteEntityData.java index 7a805ed2a66..75ca4425762 100644 --- a/src/main/java/cn/nukkit/entity/data/ByteEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/ByteEntityData.java @@ -30,4 +30,9 @@ public void setData(Integer data) { public int getType() { return Entity.DATA_TYPE_BYTE; } + + @Override + public String toString() { + return data + "b"; + } } diff --git a/src/main/java/cn/nukkit/entity/data/EntityMetadata.java b/src/main/java/cn/nukkit/entity/data/EntityMetadata.java index c9fb499f5ab..ea1fdfcff7f 100644 --- a/src/main/java/cn/nukkit/entity/data/EntityMetadata.java +++ b/src/main/java/cn/nukkit/entity/data/EntityMetadata.java @@ -4,6 +4,7 @@ import cn.nukkit.math.Vector3; import cn.nukkit.math.Vector3f; import cn.nukkit.nbt.tag.CompoundTag; +import lombok.extern.log4j.Log4j2; import java.util.HashMap; import java.util.Map; @@ -12,6 +13,7 @@ * author: MagicDroidX * Nukkit Project */ +@Log4j2 public class EntityMetadata { private final Map map = new HashMap<>(); @@ -37,6 +39,7 @@ public boolean exists(int id) { public EntityMetadata put(EntityData data) { this.map.put(data.getId(), data); + log.info("Updated entity data {}", this::toString); return this; } @@ -120,4 +123,9 @@ public EntityMetadata putString(int id, String value) { public Map getMap() { return new HashMap<>(map); } + + @Override + public String toString() { + return map.toString(); + } } diff --git a/src/main/java/cn/nukkit/entity/data/FloatEntityData.java b/src/main/java/cn/nukkit/entity/data/FloatEntityData.java index ad87ad527a6..86ede31bca7 100644 --- a/src/main/java/cn/nukkit/entity/data/FloatEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/FloatEntityData.java @@ -31,4 +31,9 @@ public void setData(Float data) { public int getType() { return Entity.DATA_TYPE_FLOAT; } + + @Override + public String toString() { + return data + "f"; + } } diff --git a/src/main/java/cn/nukkit/entity/data/IntEntityData.java b/src/main/java/cn/nukkit/entity/data/IntEntityData.java index 052362b1faa..51cf4a94888 100644 --- a/src/main/java/cn/nukkit/entity/data/IntEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/IntEntityData.java @@ -30,4 +30,9 @@ public void setData(Integer data) { public int getType() { return Entity.DATA_TYPE_INT; } + + @Override + public String toString() { + return data + "i"; + } } diff --git a/src/main/java/cn/nukkit/entity/data/IntPositionEntityData.java b/src/main/java/cn/nukkit/entity/data/IntPositionEntityData.java index de777941f0a..f053d8f4be8 100644 --- a/src/main/java/cn/nukkit/entity/data/IntPositionEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/IntPositionEntityData.java @@ -42,4 +42,9 @@ public void setData(BlockVector3 data) { public int getType() { return Entity.DATA_TYPE_POS; } + + @Override + public String toString() { + return "(" + x + ", " + y + ", " + z + ")"; + } } diff --git a/src/main/java/cn/nukkit/entity/data/LongEntityData.java b/src/main/java/cn/nukkit/entity/data/LongEntityData.java index 7d1b96a19bd..a51ae44aa6f 100644 --- a/src/main/java/cn/nukkit/entity/data/LongEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/LongEntityData.java @@ -26,4 +26,9 @@ public void setData(Long data) { public int getType() { return Entity.DATA_TYPE_LONG; } + + @Override + public String toString() { + return data + "l"; + } } diff --git a/src/main/java/cn/nukkit/entity/data/NBTEntityData.java b/src/main/java/cn/nukkit/entity/data/NBTEntityData.java index 2fd10b32576..9c6e1e0fd0c 100644 --- a/src/main/java/cn/nukkit/entity/data/NBTEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/NBTEntityData.java @@ -29,4 +29,9 @@ public void setData(CompoundTag tag) { public int getType() { return Entity.DATA_TYPE_NBT; } + + @Override + public String toString() { + return tag.toString(); + } } diff --git a/src/main/java/cn/nukkit/entity/data/ShortEntityData.java b/src/main/java/cn/nukkit/entity/data/ShortEntityData.java index cd379d63fd9..1e9cf0a308c 100644 --- a/src/main/java/cn/nukkit/entity/data/ShortEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/ShortEntityData.java @@ -30,4 +30,9 @@ public void setData(Integer data) { public int getType() { return Entity.DATA_TYPE_SHORT; } + + @Override + public String toString() { + return data + "s"; + } } diff --git a/src/main/java/cn/nukkit/entity/data/Vector3fEntityData.java b/src/main/java/cn/nukkit/entity/data/Vector3fEntityData.java index a7f1756069f..dbb37278fcb 100644 --- a/src/main/java/cn/nukkit/entity/data/Vector3fEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/Vector3fEntityData.java @@ -41,4 +41,9 @@ public void setData(Vector3f data) { public int getType() { return Entity.DATA_TYPE_VECTOR3F; } + + @Override + public String toString() { + return "(" + x + ", " + y + ", " + z + ")"; + } } diff --git a/src/main/java/cn/nukkit/utils/ClientChainData.java b/src/main/java/cn/nukkit/utils/ClientChainData.java index b83349622b6..37023f98a44 100644 --- a/src/main/java/cn/nukkit/utils/ClientChainData.java +++ b/src/main/java/cn/nukkit/utils/ClientChainData.java @@ -6,14 +6,15 @@ import com.google.gson.reflect.TypeToken; import com.nimbusds.jose.JOSEException; import com.nimbusds.jose.JWSObject; -import com.nimbusds.jose.JWSVerifier; -import com.nimbusds.jose.crypto.factories.DefaultJWSVerifierFactory; +import com.nimbusds.jose.crypto.ECDSAVerifier; import net.minidev.json.JSONObject; +import java.net.URI; import java.nio.charset.StandardCharsets; import java.security.KeyFactory; import java.security.NoSuchAlgorithmException; import java.security.PublicKey; +import java.security.interfaces.ECPublicKey; import java.security.spec.InvalidKeySpecException; import java.security.spec.X509EncodedKeySpec; import java.util.*; @@ -164,9 +165,10 @@ public int hashCode() { private UUID clientUUID; private String xuid; - private static PublicKey generateKey(String base64) throws NoSuchAlgorithmException, InvalidKeySpecException { - return KeyFactory.getInstance("EC").generatePublic(new X509EncodedKeySpec(Base64.getDecoder().decode(base64))); + private static ECPublicKey generateKey(String base64) throws NoSuchAlgorithmException, InvalidKeySpecException { + return (ECPublicKey) KeyFactory.getInstance("EC").generatePublic(new X509EncodedKeySpec(Base64.getDecoder().decode(base64))); } + private String identityPublicKey; private long clientId; @@ -259,21 +261,30 @@ private void decodeChainData() { } private boolean verifyChain(List chains) throws Exception { - - PublicKey lastKey = null; + ECPublicKey lastKey = null; boolean mojangKeyVerified = false; for (String chain: chains) { JWSObject jws = JWSObject.parse(chain); - if (!mojangKeyVerified) { - // First chain should be signed using Mojang's private key. We'd be in big trouble if it leaked... - mojangKeyVerified = verify(MOJANG_PUBLIC_KEY, jws); + URI x5u = jws.getHeader().getX509CertURL(); + if (x5u == null) { + return false; + } + + ECPublicKey expectedKey = generateKey(x5u.toString()); + // First key is self-signed + if (lastKey == null) { + lastKey = expectedKey; + } else if (!lastKey.equals(expectedKey)) { + return false; + } + + if (!verify(lastKey, jws)) { + return false; } - if (lastKey != null) { - if (!verify(lastKey, jws)) { - throw new JOSEException("Unable to verify key in chain."); - } + if (lastKey.equals(MOJANG_PUBLIC_KEY)) { + mojangKeyVerified = true; } JSONObject payload = jws.getPayload().toJSONObject(); @@ -286,8 +297,7 @@ private boolean verifyChain(List chains) throws Exception { return mojangKeyVerified; } - private boolean verify(PublicKey key, JWSObject object) throws JOSEException { - JWSVerifier verifier = new DefaultJWSVerifierFactory().createJWSVerifier(object.getHeader(), key); - return object.verify(verifier); + private boolean verify(ECPublicKey key, JWSObject object) throws JOSEException { + return object.verify(new ECDSAVerifier(key)); } } From 4284b21b0ec54cbcab1946a97db9ced805ff262d Mon Sep 17 00:00:00 2001 From: SupremeMortal <6178101+SupremeMortal@users.noreply.github.com> Date: Tue, 31 Aug 2021 12:32:52 +0100 Subject: [PATCH 203/394] Fix json-smart dependency issue --- pom.xml | 2 +- src/main/java/cn/nukkit/entity/data/Skin.java | 4 ++-- src/main/java/cn/nukkit/metrics/Metrics.java | 4 ++-- .../java/cn/nukkit/utils/ClientChainData.java | 18 +++++++++++------- 4 files changed, 16 insertions(+), 12 deletions(-) diff --git a/pom.xml b/pom.xml index c56ea49a502..1883c5b030f 100644 --- a/pom.xml +++ b/pom.xml @@ -98,7 +98,7 @@ com.nimbusds nimbus-jose-jwt - 4.39.2 + 9.13 compile diff --git a/src/main/java/cn/nukkit/entity/data/Skin.java b/src/main/java/cn/nukkit/entity/data/Skin.java index a093152e2a1..7337d42c8de 100644 --- a/src/main/java/cn/nukkit/entity/data/Skin.java +++ b/src/main/java/cn/nukkit/entity/data/Skin.java @@ -3,9 +3,9 @@ import cn.nukkit.nbt.stream.FastByteArrayOutputStream; import cn.nukkit.utils.*; import com.google.common.base.Preconditions; +import com.nimbusds.jose.shaded.json.JSONObject; +import com.nimbusds.jose.shaded.json.JSONValue; import lombok.ToString; -import net.minidev.json.JSONObject; -import net.minidev.json.JSONValue; import java.awt.*; import java.awt.image.BufferedImage; diff --git a/src/main/java/cn/nukkit/metrics/Metrics.java b/src/main/java/cn/nukkit/metrics/Metrics.java index b7122e3baa3..bc710e18ff8 100644 --- a/src/main/java/cn/nukkit/metrics/Metrics.java +++ b/src/main/java/cn/nukkit/metrics/Metrics.java @@ -1,8 +1,8 @@ package cn.nukkit.metrics; import cn.nukkit.utils.MainLogger; -import net.minidev.json.JSONArray; -import net.minidev.json.JSONObject; +import com.nimbusds.jose.shaded.json.JSONArray; +import com.nimbusds.jose.shaded.json.JSONObject; import javax.net.ssl.HttpsURLConnection; import java.io.ByteArrayOutputStream; diff --git a/src/main/java/cn/nukkit/utils/ClientChainData.java b/src/main/java/cn/nukkit/utils/ClientChainData.java index 37023f98a44..ab1213aac8a 100644 --- a/src/main/java/cn/nukkit/utils/ClientChainData.java +++ b/src/main/java/cn/nukkit/utils/ClientChainData.java @@ -7,7 +7,6 @@ import com.nimbusds.jose.JOSEException; import com.nimbusds.jose.JWSObject; import com.nimbusds.jose.crypto.ECDSAVerifier; -import net.minidev.json.JSONObject; import java.net.URI; import java.nio.charset.StandardCharsets; @@ -263,8 +262,9 @@ private void decodeChainData() { private boolean verifyChain(List chains) throws Exception { ECPublicKey lastKey = null; boolean mojangKeyVerified = false; - for (String chain: chains) { - JWSObject jws = JWSObject.parse(chain); + Iterator iterator = chains.iterator(); + while (iterator.hasNext()) { + JWSObject jws = JWSObject.parse(iterator.next()); URI x5u = jws.getHeader().getX509CertURL(); if (x5u == null) { @@ -283,16 +283,20 @@ private boolean verifyChain(List chains) throws Exception { return false; } + if (mojangKeyVerified) { + return !iterator.hasNext(); + } + if (lastKey.equals(MOJANG_PUBLIC_KEY)) { mojangKeyVerified = true; } - JSONObject payload = jws.getPayload().toJSONObject(); - String base64key = payload.getAsString("identityPublicKey"); - if (base64key == null) { + Map payload = jws.getPayload().toJSONObject(); + Object base64key = payload.get("identityPublicKey"); + if (!(base64key instanceof String)) { throw new RuntimeException("No key found"); } - lastKey = generateKey(base64key); + lastKey = generateKey((String) base64key); } return mojangKeyVerified; } From 6cc476d9f83fcf34404b1656acf61a1fe28731d9 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Fri, 3 Sep 2021 16:50:02 +0300 Subject: [PATCH 204/394] Update EntityMetadata.java (#1895) --- src/main/java/cn/nukkit/entity/data/EntityMetadata.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/entity/data/EntityMetadata.java b/src/main/java/cn/nukkit/entity/data/EntityMetadata.java index ea1fdfcff7f..bd9351475ba 100644 --- a/src/main/java/cn/nukkit/entity/data/EntityMetadata.java +++ b/src/main/java/cn/nukkit/entity/data/EntityMetadata.java @@ -39,7 +39,7 @@ public boolean exists(int id) { public EntityMetadata put(EntityData data) { this.map.put(data.getId(), data); - log.info("Updated entity data {}", this::toString); + //log.info("Updated entity data {}", this::toString); return this; } From 48c200a23ec9b491c29b7dcd1ff2d2ff6c80a58e Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 8 Sep 2021 22:03:43 +0300 Subject: [PATCH 205/394] EntityFishingHook: Override createAddEntityPacket instead of spawnTo & other improvements (#1897) --- .../nukkit/entity/item/EntityFishingHook.java | 58 +++++++++++++++---- 1 file changed, 48 insertions(+), 10 deletions(-) diff --git a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java index 8a27747ad70..28d48ca1f08 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java @@ -4,6 +4,7 @@ import cn.nukkit.Server; import cn.nukkit.block.Block; import cn.nukkit.entity.Entity; +import cn.nukkit.entity.data.LongEntityData; import cn.nukkit.entity.projectile.EntityProjectile; import cn.nukkit.event.entity.EntityDamageByChildEntityEvent; import cn.nukkit.event.entity.EntityDamageByEntityEvent; @@ -22,8 +23,10 @@ import cn.nukkit.nbt.NBTIO; import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.network.protocol.AddEntityPacket; +import cn.nukkit.network.protocol.DataPacket; import cn.nukkit.network.protocol.EntityEventPacket; +import java.util.Collection; import java.util.Random; import java.util.concurrent.ThreadLocalRandom; @@ -41,6 +44,7 @@ public class EntityFishingHook extends EntityProjectile { public int attractTimer = 0; public boolean caught = false; public int caughtTimer = 0; + public boolean canCollide = true; public Vector3 fish = null; @@ -54,6 +58,14 @@ public EntityFishingHook(FullChunk chunk, CompoundTag nbt, Entity shootingEntity super(chunk, nbt, shootingEntity); } + @Override + protected void initEntity() { + super.initEntity(); + if (this.age > 0) { + this.close(); + } + } + @Override public int getNetworkId() { return NETWORK_ID; @@ -84,14 +96,32 @@ public float getDrag() { return 0.05f; } + @Override + public boolean canCollide() { + return this.canCollide; + } + @Override public boolean onUpdate(int currentTick) { boolean hasUpdate = super.onUpdate(currentTick); + + long target = this.getDataPropertyLong(DATA_TARGET_EID); + if (target != 0) { + Entity ent = level.getEntity(target); + if (ent == null || !ent.isAlive()) { + this.setTarget(0); + } else { + this.setPosition(new Vector3(ent.x, ent.y + (getHeight() * 0.75f), ent.z)); + } + hasUpdate = true; + } + if (hasUpdate) { return false; } - if (this.isInsideOfWater()) { + boolean inWater = this.isInsideOfWater(); + if (inWater) { this.motionX = 0; this.motionY -= getGravity() * -0.04; this.motionZ = 0; @@ -106,7 +136,7 @@ public boolean onUpdate(int currentTick) { Random random = ThreadLocalRandom.current(); - if (this.isInsideOfWater()) { + if (inWater) { if (this.waitTimer == 240) { this.waitTimer = this.waitChance << 1; } else if (this.waitTimer == 360) { @@ -158,22 +188,24 @@ public int getWaterHeight() { } public void fishBites() { + Collection viewers = this.getViewers().values(); + EntityEventPacket pk = new EntityEventPacket(); pk.eid = this.getId(); pk.event = EntityEventPacket.FISH_HOOK_HOOK; - Server.broadcastPacket(this.getViewers().values(), pk); + Server.broadcastPacket(viewers, pk); EntityEventPacket bubblePk = new EntityEventPacket(); bubblePk.eid = this.getId(); bubblePk.event = EntityEventPacket.FISH_HOOK_BUBBLE; - Server.broadcastPacket(this.getViewers().values(), bubblePk); + Server.broadcastPacket(viewers, bubblePk); EntityEventPacket teasePk = new EntityEventPacket(); teasePk.eid = this.getId(); teasePk.event = EntityEventPacket.FISH_HOOK_TEASE; - Server.broadcastPacket(this.getViewers().values(), teasePk); + Server.broadcastPacket(viewers, teasePk); - Random random = new Random(); + Random random = ThreadLocalRandom.current(); for (int i = 0; i < 5; i++) { this.level.addParticle(new BubbleParticle(this.setComponents( this.x + random.nextDouble() * 0.5 - 0.25, @@ -232,7 +264,7 @@ public void reelLine() { } @Override - public void spawnTo(Player player) { + protected DataPacket createAddEntityPacket() { AddEntityPacket pk = new AddEntityPacket(); pk.entityRuntimeId = this.getId(); pk.entityUniqueId = this.getId(); @@ -251,8 +283,7 @@ public void spawnTo(Player player) { ownerId = this.shootingEntity.getId(); } pk.metadata = this.dataProperties.putLong(DATA_OWNER_EID, ownerId); - player.dataPacket(pk); - super.spawnTo(player); + return pk; } @Override @@ -267,7 +298,9 @@ public void onCollideWithEntity(Entity entity) { ev = new EntityDamageByChildEntityEvent(this.shootingEntity, this, entity, DamageCause.PROJECTILE, damage); } - entity.attack(ev); + if (entity.attack(ev)) { + this.setTarget(entity.getId()); + } } public void checkLure() { @@ -278,4 +311,9 @@ public void checkLure() { } } } + + public void setTarget(long eid) { + this.setDataProperty(new LongEntityData(DATA_TARGET_EID, eid)); + this.canCollide = eid == 0; + } } From 2a8b68b8a3ed8c1b3fadcd4b8e9d18561f22cc98 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 8 Sep 2021 22:04:18 +0300 Subject: [PATCH 206/394] Fix end crystal item displaying as glow berries (#1898) --- src/main/resources/runtime_item_states.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/runtime_item_states.json b/src/main/resources/runtime_item_states.json index f274ec7df55..ca8dc650678 100644 --- a/src/main/resources/runtime_item_states.json +++ b/src/main/resources/runtime_item_states.json @@ -1701,7 +1701,7 @@ }, { "name" : "minecraft:end_crystal", - "id" : 630 + "id" : 632 }, { "name" : "minecraft:end_gateway", From d0ad79146123a54597e304ed4228f500fee1e401 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 8 Sep 2021 22:46:11 +0300 Subject: [PATCH 207/394] Improvements for trident (#1893) * Improvements for trident * Update Player.java --- src/main/java/cn/nukkit/Player.java | 19 ++- .../cn/nukkit/entity/item/EntityItem.java | 3 +- .../nukkit/entity/projectile/EntityArrow.java | 7 +- .../entity/projectile/EntityProjectile.java | 4 + .../projectile/EntityThrownTrident.java | 135 ++++++------------ src/main/java/cn/nukkit/item/ItemTrident.java | 48 +++---- 6 files changed, 81 insertions(+), 135 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 2268a0d06bf..7a84e61c14f 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -4941,14 +4941,14 @@ public boolean pickupEntity(Entity entity, boolean near) { if (near) { if (entity instanceof EntityArrow && ((EntityArrow) entity).hadCollision) { ItemArrow item = new ItemArrow(); - if (this.isSurvival() && !this.inventory.canAddItem(item)) { + if (!this.isCreative() && !this.inventory.canAddItem(item)) { return false; } InventoryPickupArrowEvent ev = new InventoryPickupArrowEvent(this.inventory, (EntityArrow) entity); int pickupMode = ((EntityArrow) entity).getPickupMode(); - if (pickupMode == EntityArrow.PICKUP_NONE || pickupMode == EntityArrow.PICKUP_CREATIVE && !this.isCreative()) { + if (pickupMode == EntityArrow.PICKUP_NONE || (pickupMode == EntityArrow.PICKUP_CREATIVE && !this.isCreative())) { ev.setCancelled(); } @@ -4970,11 +4970,17 @@ public boolean pickupEntity(Entity entity, boolean near) { return true; } else if (entity instanceof EntityThrownTrident && ((EntityThrownTrident) entity).hadCollision) { Item item = ((EntityThrownTrident) entity).getItem(); - if (this.isSurvival() && !this.inventory.canAddItem(item)) { + if (!this.isCreative() && !this.inventory.canAddItem(item)) { return false; } InventoryPickupTridentEvent ev = new InventoryPickupTridentEvent(this.inventory, (EntityThrownTrident) entity); + + int pickupMode = ((EntityThrownTrident) entity).getPickupMode(); + if (pickupMode == EntityThrownTrident.PICKUP_NONE || (pickupMode == EntityThrownTrident.PICKUP_CREATIVE && !this.isCreative())) { + ev.setCancelled(); + } + this.server.getPluginManager().callEvent(ev); if (ev.isCancelled()) { return false; @@ -4996,7 +5002,7 @@ public boolean pickupEntity(Entity entity, boolean near) { Item item = ((EntityItem) entity).getItem(); if (item != null) { - if (this.isSurvival() && !this.inventory.canAddItem(item)) { + if (!this.isCreative() && !this.inventory.canAddItem(item)) { return false; } @@ -5022,8 +5028,8 @@ public boolean pickupEntity(Entity entity, boolean near) { Server.broadcastPacket(entity.getViewers().values(), pk); this.dataPacket(pk); - entity.close(); this.inventory.addItem(item.clone()); + entity.close(); return true; } } @@ -5056,8 +5062,9 @@ public boolean pickupEntity(Entity entity, boolean near) { if (toRepair instanceof ItemTool || toRepair instanceof ItemArmor) { if (toRepair.getDamage() > 0) { int dmg = toRepair.getDamage() - 2; - if (dmg < 0) + if (dmg < 0) { dmg = 0; + } toRepair.setDamage(dmg); inventory.setItem(itemToRepair, toRepair); return true; diff --git a/src/main/java/cn/nukkit/entity/item/EntityItem.java b/src/main/java/cn/nukkit/entity/item/EntityItem.java index b088d183f26..2f53d5c4614 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityItem.java +++ b/src/main/java/cn/nukkit/entity/item/EntityItem.java @@ -19,9 +19,8 @@ * @author MagicDroidX */ public class EntityItem extends Entity { - public static final int NETWORK_ID = 64; - public static final int DATA_SOURCE_ID = 17; + public static final int NETWORK_ID = 64; public EntityItem(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java index 8660ef827a6..74a4a266b45 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java @@ -11,13 +11,8 @@ * Nukkit Project */ public class EntityArrow extends EntityProjectile { - public static final int NETWORK_ID = 80; - - public static final int DATA_SOURCE_ID = 17; - public static final int PICKUP_NONE = 0; - public static final int PICKUP_ANY = 1; - public static final int PICKUP_CREATIVE = 2; + public static final int NETWORK_ID = 80; protected int pickupMode; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index c00fc647114..937aa3868b4 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -38,6 +38,10 @@ protected double getBaseDamage() { protected double damage = 0; + public static final int PICKUP_NONE = 0; + public static final int PICKUP_ANY = 1; + public static final int PICKUP_CREATIVE = 2; + public EntityProjectile(FullChunk chunk, CompoundTag nbt) { this(chunk, nbt, null); } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index c012fc6251f..9eb32959198 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -1,25 +1,21 @@ package cn.nukkit.entity.projectile; -import cn.nukkit.Player; import cn.nukkit.entity.Entity; -import cn.nukkit.event.entity.EntityDamageEvent; -import cn.nukkit.event.entity.EntityDamageEvent.DamageCause; +import cn.nukkit.entity.weather.EntityLightning; import cn.nukkit.event.entity.EntityDamageByChildEntityEvent; import cn.nukkit.event.entity.EntityDamageByEntityEvent; +import cn.nukkit.event.entity.EntityDamageEvent; +import cn.nukkit.event.entity.EntityDamageEvent.DamageCause; import cn.nukkit.event.entity.ProjectileHitEvent; -import cn.nukkit.level.MovingObjectPosition; -import cn.nukkit.level.Position; +import cn.nukkit.event.weather.LightningStrikeEvent; import cn.nukkit.item.Item; +import cn.nukkit.item.enchantment.Enchantment; +import cn.nukkit.level.MovingObjectPosition; import cn.nukkit.level.format.FullChunk; -import cn.nukkit.math.Vector3; import cn.nukkit.nbt.NBTIO; import cn.nukkit.nbt.tag.CompoundTag; -import cn.nukkit.network.protocol.AddEntityPacket; import cn.nukkit.network.protocol.LevelSoundEventPacket; -import java.util.Random; -import java.util.concurrent.ThreadLocalRandom; - /** * Created by PetteriM1 */ @@ -27,10 +23,11 @@ public class EntityThrownTrident extends EntityProjectile { public static final int NETWORK_ID = 73; - public static final int DATA_SOURCE_ID = 17; - protected Item trident; + protected int pickupMode; + public boolean alreadyCollided; + @Override public int getNetworkId() { return NETWORK_ID; @@ -53,7 +50,7 @@ public float getHeight() { @Override public float getGravity() { - return 0.04f; + return 0.05f; } @Override @@ -61,29 +58,25 @@ public float getDrag() { return 0.01f; } - protected float gravity = 0.04f; - protected float drag = 0.01f; - public EntityThrownTrident(FullChunk chunk, CompoundTag nbt) { this(chunk, nbt, null); } public EntityThrownTrident(FullChunk chunk, CompoundTag nbt, Entity shootingEntity) { - this(chunk, nbt, shootingEntity, false); + super(chunk, nbt, shootingEntity); } + @Deprecated public EntityThrownTrident(FullChunk chunk, CompoundTag nbt, Entity shootingEntity, boolean critical) { - super(chunk, nbt, shootingEntity); + this(chunk, nbt, shootingEntity); } @Override protected void initEntity() { super.initEntity(); - this.damage = namedTag.contains("damage") ? namedTag.getDouble("damage") : 8; this.trident = namedTag.contains("Trident") ? NBTIO.getItemHelper(namedTag.getCompound("Trident")) : Item.get(0); - - closeOnCollide = false; + this.pickupMode = namedTag.contains("pickup") ? namedTag.getByte("pickup") : PICKUP_ANY; } @Override @@ -91,6 +84,7 @@ public void saveNBT() { super.saveNBT(); this.namedTag.put("Trident", NBTIO.putItemHelper(this.trident)); + this.namedTag.putByte("pickup", this.pickupMode); } public Item getItem() { @@ -101,79 +95,18 @@ public void setItem(Item item) { this.trident = item.clone(); } - public void setCritical() { - this.setCritical(true); - } - - public void setCritical(boolean value) { - this.setDataFlag(DATA_FLAGS, DATA_FLAG_CRITICAL, value); - } - - public boolean isCritical() { - return this.getDataFlag(DATA_FLAGS, DATA_FLAG_CRITICAL); - } - - @Override - public int getResultDamage() { - int base = super.getResultDamage(); - - if (this.isCritical()) { - base += ThreadLocalRandom.current().nextInt(base / 2 + 2); - } - - return base; - } - @Override protected double getBaseDamage() { return 8; } @Override - public boolean onUpdate(int currentTick) { - if (this.closed) { - return false; - } - - this.timing.startTiming(); - - if (this.isCollided && !this.hadCollision) { - this.getLevel().addLevelSoundEvent(this, LevelSoundEventPacket.SOUND_ITEM_TRIDENT_HIT_GROUND); - } - - boolean hasUpdate = super.onUpdate(currentTick); - - if (this.onGround || this.hadCollision) { - this.setCritical(false); + public void onCollideWithEntity(Entity entity) { + if (this.alreadyCollided) { + this.move(this.motionX, this.motionY, this.motionZ); + return; } - this.timing.stopTiming(); - - return hasUpdate; - } - - @Override - public void spawnTo(Player player) { - AddEntityPacket pk = new AddEntityPacket(); - pk.type = NETWORK_ID; - pk.entityUniqueId = this.getId(); - pk.entityRuntimeId = this.getId(); - pk.x = (float) this.x; - pk.y = (float) this.y; - pk.z = (float) this.z; - pk.speedX = (float) this.motionX; - pk.speedY = (float) this.motionY; - pk.speedZ = (float) this.motionZ; - pk.yaw = (float) this.yaw; - pk.pitch = (float) this.pitch; - pk.metadata = this.dataProperties; - player.dataPacket(pk); - - super.spawnTo(player); - } - - @Override - public void onCollideWithEntity(Entity entity) { this.server.getPluginManager().callEvent(new ProjectileHitEvent(this, MovingObjectPosition.fromEntity(entity))); float damage = this.getResultDamage(); @@ -184,20 +117,32 @@ public void onCollideWithEntity(Entity entity) { ev = new EntityDamageByChildEntityEvent(this.shootingEntity, this, entity, DamageCause.PROJECTILE, damage); } entity.attack(ev); - this.getLevel().addLevelSoundEvent(this, LevelSoundEventPacket.SOUND_ITEM_TRIDENT_HIT); this.hadCollision = true; + this.getLevel().addLevelSoundEvent(this, LevelSoundEventPacket.SOUND_ITEM_TRIDENT_HIT); this.close(); - Entity newTrident = create("ThrownTrident", this); - ((EntityThrownTrident) newTrident).setItem(this.trident); + if (trident != null && level.isThundering() && trident.hasEnchantment(Enchantment.ID_TRIDENT_CHANNELING) && level.canBlockSeeSky(this)) { + EntityLightning bolt = new EntityLightning(this.getChunk(), getDefaultNBT(this)); + LightningStrikeEvent strikeEvent = new LightningStrikeEvent(level, bolt); + server.getPluginManager().callEvent(strikeEvent); + if (!strikeEvent.isCancelled()) { + bolt.spawnToAll(); + level.addLevelSoundEvent(this, LevelSoundEventPacket.SOUND_ITEM_TRIDENT_THUNDER); + } else { + bolt.setEffect(false); + } + } + EntityThrownTrident newTrident = (EntityThrownTrident) Entity.createEntity("ThrownTrident", this); + newTrident.alreadyCollided = true; + newTrident.pickupMode = this.pickupMode; + newTrident.setItem(this.trident); newTrident.spawnToAll(); } - public Entity create(Object type, Position source, Object... args) { - FullChunk chunk = source.getLevel().getChunk((int) source.x >> 4, (int) source.z >> 4); - if (chunk == null) return null; - - CompoundTag nbt = Entity.getDefaultNBT(source.add(0.5, 0, 0.5), new Vector3(), new Random().nextFloat() * 360, 0); + public int getPickupMode() { + return this.pickupMode; + } - return Entity.createEntity(type.toString(), chunk, nbt, args); + public void setPickupMode(int pickupMode) { + this.pickupMode = pickupMode; } } diff --git a/src/main/java/cn/nukkit/item/ItemTrident.java b/src/main/java/cn/nukkit/item/ItemTrident.java index f56d3098312..99b23ca2862 100644 --- a/src/main/java/cn/nukkit/item/ItemTrident.java +++ b/src/main/java/cn/nukkit/item/ItemTrident.java @@ -2,11 +2,10 @@ import cn.nukkit.Player; import cn.nukkit.Server; -import cn.nukkit.entity.Entity; -import cn.nukkit.entity.projectile.EntityProjectile; import cn.nukkit.entity.projectile.EntityThrownTrident; import cn.nukkit.event.entity.EntityShootBowEvent; import cn.nukkit.event.entity.ProjectileLaunchEvent; +import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.math.Vector3; import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.nbt.tag.DoubleTag; @@ -35,12 +34,12 @@ public ItemTrident(Integer meta, int count) { public int getMaxDurability() { return ItemTool.DURABILITY_TRIDENT; } - + @Override public boolean isSword() { return true; } - + @Override public int getAttackDamage() { return 9; @@ -53,6 +52,10 @@ public boolean onClickAir(Player player, Vector3 directionVector) { @Override public boolean onRelease(Player player, int ticksUsed) { + if (this.hasEnchantment(Enchantment.ID_TRIDENT_RIPTIDE)) { + return true; + } + this.useOn(player); CompoundTag nbt = new CompoundTag() @@ -68,17 +71,12 @@ public boolean onRelease(Player player, int ticksUsed) { .add(new FloatTag("", (player.yaw > 180 ? 360 : 0) - (float) player.yaw)) .add(new FloatTag("", (float) -player.pitch))); - double p = (double) ticksUsed / 20; - - double f = Math.min((p * p + p * 2) / 3, 1) * 2; - EntityThrownTrident trident = (EntityThrownTrident) Entity.createEntity("ThrownTrident", player.chunk, nbt, player, f == 2); - - if (trident == null) { - return false; - } - + EntityThrownTrident trident = new EntityThrownTrident(player.chunk, nbt, player); trident.setItem(this); + double p = (double) ticksUsed / 20; + double f = Math.min((p * p + p * 2) / 3, 1) * 2.5; + EntityShootBowEvent entityShootBowEvent = new EntityShootBowEvent(player, this, trident, f); if (f < 0.1 || ticksUsed < 5) { @@ -87,21 +85,19 @@ public boolean onRelease(Player player, int ticksUsed) { Server.getInstance().getPluginManager().callEvent(entityShootBowEvent); if (entityShootBowEvent.isCancelled()) { - entityShootBowEvent.getProjectile().kill(); + entityShootBowEvent.getProjectile().close(); } else { entityShootBowEvent.getProjectile().setMotion(entityShootBowEvent.getProjectile().getMotion().multiply(entityShootBowEvent.getForce())); - if (entityShootBowEvent.getProjectile() instanceof EntityProjectile) { - ProjectileLaunchEvent ev = new ProjectileLaunchEvent(entityShootBowEvent.getProjectile()); - Server.getInstance().getPluginManager().callEvent(ev); - if (ev.isCancelled()) { - entityShootBowEvent.getProjectile().kill(); - } else { - entityShootBowEvent.getProjectile().spawnToAll(); - player.getLevel().addLevelSoundEvent(player, LevelSoundEventPacket.SOUND_ITEM_TRIDENT_THROW); - if (!player.isCreative()) { - this.count--; - player.getInventory().setItemInHand(this); - } + ProjectileLaunchEvent ev = new ProjectileLaunchEvent(entityShootBowEvent.getProjectile()); + Server.getInstance().getPluginManager().callEvent(ev); + if (ev.isCancelled()) { + entityShootBowEvent.getProjectile().close(); + } else { + entityShootBowEvent.getProjectile().spawnToAll(); + player.getLevel().addLevelSoundEvent(player, LevelSoundEventPacket.SOUND_ITEM_TRIDENT_THROW); + if (!player.isCreative()) { + this.count--; + player.getInventory().setItemInHand(this); } } } From af68ff1c542854a521487aa67fc6f3f5b5b2912c Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 22 Sep 2021 22:23:37 +0300 Subject: [PATCH 208/394] Add support for 1.17.30 (#1899) * Minimal protocol changes required for 465/1.17.30 * Update block palette * Update creative_items.json Co-authored-by: Alemiz <45739737+Alemiz112@users.noreply.github.com> --- src/main/java/cn/nukkit/entity/data/Skin.java | 18 + .../network/protocol/CraftingDataPacket.java | 2 + .../network/protocol/HurtArmorPacket.java | 2 + .../nukkit/network/protocol/ProtocolInfo.java | 6 +- .../network/protocol/StartGamePacket.java | 2 + .../java/cn/nukkit/utils/BinaryStream.java | 18 +- src/main/resources/creative_items.json | 877 +++++++++--------- src/main/resources/runtime_block_states.dat | Bin 430907 -> 431099 bytes 8 files changed, 478 insertions(+), 447 deletions(-) diff --git a/src/main/java/cn/nukkit/entity/data/Skin.java b/src/main/java/cn/nukkit/entity/data/Skin.java index 7337d42c8de..820dfa0f1a3 100644 --- a/src/main/java/cn/nukkit/entity/data/Skin.java +++ b/src/main/java/cn/nukkit/entity/data/Skin.java @@ -45,10 +45,12 @@ public class Skin { private boolean premium; private boolean persona; private boolean capeOnClassic; + private boolean primaryUser = true; private String capeId; private String skinColor = "#0"; private String armSize = "wide"; private boolean trusted = false; + private String geometryDataEngineVersion = ""; public boolean isValid() { return isValidSkin() && isValidResourcePatch(); @@ -235,6 +237,22 @@ public void setCapeOnClassic(boolean capeOnClassic) { this.capeOnClassic = capeOnClassic; } + public void setPrimaryUser(boolean primaryUser) { + this.primaryUser = primaryUser; + } + + public boolean isPrimaryUser() { + return primaryUser; + } + + public void setGeometryDataEngineVersion(String geometryDataEngineVersion) { + this.geometryDataEngineVersion = geometryDataEngineVersion; + } + + public String getGeometryDataEngineVersion() { + return geometryDataEngineVersion; + } + public boolean isTrusted() { return trusted; } diff --git a/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java b/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java index d54b04b7c5e..0a324b1f59b 100644 --- a/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java @@ -147,6 +147,8 @@ public void encode() { this.putVarInt(recipe.getResult().getNetworkId()); } + this.putUnsignedVarInt(0); // Material reducers size + this.putBoolean(cleanRecipes); } diff --git a/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java b/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java index 4b92b281c46..0622bfecf49 100644 --- a/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java @@ -12,6 +12,7 @@ public class HurtArmorPacket extends DataPacket { public int cause; public int damage; + public long armorSlots; @Override public void decode() { @@ -23,6 +24,7 @@ public void encode() { this.reset(); this.putVarInt(this.cause); this.putVarInt(this.damage); + this.putUnsignedVarLong(this.armorSlots); } @Override diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index 36ea2641e1c..a6502e875f4 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -14,12 +14,12 @@ public interface ProtocolInfo { * Actual Minecraft: PE protocol version */ @SuppressWarnings("UnnecessaryBoxing") - int CURRENT_PROTOCOL = Integer.valueOf("448"); // DO NOT REMOVE BOXING + int CURRENT_PROTOCOL = Integer.valueOf("465"); // DO NOT REMOVE BOXING List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION = "v1.17.10"; - String MINECRAFT_VERSION_NETWORK = "1.17.10"; + String MINECRAFT_VERSION = "v1.17.30"; + String MINECRAFT_VERSION_NETWORK = "1.17.30"; byte LOGIN_PACKET = 0x01; byte PLAY_STATUS_PACKET = 0x02; diff --git a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java index 1f8ff04ab02..24daef9885e 100644 --- a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java @@ -135,6 +135,8 @@ public void encode() { this.putLInt(16); // Limited world width this.putLInt(16); // Limited world height this.putBoolean(false); // Nether type + this.putString(""); // EduSharedUriResource buttonName + this.putString(""); // EduSharedUriResource linkUri this.putBoolean(false); // Experimental Gameplay this.putString(this.levelId); diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index eb1e620c1eb..66e5984bc90 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -282,10 +282,8 @@ public void putSkin(Skin skin) { this.putImage(skin.getCapeData()); this.putString(skin.getGeometryData()); + this.putString(skin.getGeometryDataEngineVersion()); this.putString(skin.getAnimationData()); - this.putBoolean(skin.isPremium()); - this.putBoolean(skin.isPersona()); - this.putBoolean(skin.isCapeOnClassic()); this.putString(skin.getCapeId()); this.putString(skin.getFullSkinId()); this.putString(skin.getArmSize()); @@ -310,6 +308,11 @@ public void putSkin(Skin skin) { this.putString(color); } } + + this.putBoolean(skin.isPremium()); + this.putBoolean(skin.isPersona()); + this.putBoolean(skin.isCapeOnClassic()); + this.putBoolean(skin.isPrimaryUser()); } public Skin getSkin() { @@ -330,10 +333,8 @@ public Skin getSkin() { skin.setCapeData(this.getImage()); skin.setGeometryData(this.getString()); + skin.setGeometryDataEngineVersion(this.getString()); skin.setAnimationData(this.getString()); - skin.setPremium(this.getBoolean()); - skin.setPersona(this.getBoolean()); - skin.setCapeOnClassic(this.getBoolean()); skin.setCapeId(this.getString()); this.getString(); // TODO: Full skin id skin.setArmSize(this.getString()); @@ -359,6 +360,11 @@ public Skin getSkin() { } skin.getTintColors().add(new PersonaPieceTint(pieceType, colors)); } + + skin.setPremium(this.getBoolean()); + skin.setPersona(this.getBoolean()); + skin.setCapeOnClassic(this.getBoolean()); + skin.setPrimaryUser(this.getBoolean()); return skin; } diff --git a/src/main/resources/creative_items.json b/src/main/resources/creative_items.json index 03692fd0a82..bb73854dc0e 100644 --- a/src/main/resources/creative_items.json +++ b/src/main/resources/creative_items.json @@ -2,27 +2,27 @@ "items" : [ { "id" : "minecraft:planks", - "blockRuntimeId" : 5770 + "blockRuntimeId" : 5794 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5771 + "blockRuntimeId" : 5795 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5772 + "blockRuntimeId" : 5796 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5773 + "blockRuntimeId" : 5797 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5774 + "blockRuntimeId" : 5798 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5775 + "blockRuntimeId" : 5799 }, { "id" : "minecraft:crimson_planks", @@ -30,7 +30,7 @@ }, { "id" : "minecraft:warped_planks", - "blockRuntimeId" : 7502 + "blockRuntimeId" : 7594 }, { "id" : "minecraft:cobblestone_wall", @@ -94,11 +94,11 @@ }, { "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6014 + "blockRuntimeId" : 6038 }, { "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5811 + "blockRuntimeId" : 5835 }, { "id" : "minecraft:cobbled_deepslate_wall", @@ -110,7 +110,7 @@ }, { "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6189 + "blockRuntimeId" : 6213 }, { "id" : "minecraft:deepslate_brick_wall", @@ -142,7 +142,7 @@ }, { "id" : "minecraft:nether_brick_fence", - "blockRuntimeId" : 5662 + "blockRuntimeId" : 5686 }, { "id" : "minecraft:crimson_fence", @@ -150,7 +150,7 @@ }, { "id" : "minecraft:warped_fence", - "blockRuntimeId" : 7480 + "blockRuntimeId" : 7572 }, { "id" : "minecraft:fence_gate", @@ -158,7 +158,7 @@ }, { "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 6914 + "blockRuntimeId" : 7006 }, { "id" : "minecraft:birch_fence_gate", @@ -166,7 +166,7 @@ }, { "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5228 + "blockRuntimeId" : 5252 }, { "id" : "minecraft:acacia_fence_gate", @@ -182,27 +182,27 @@ }, { "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7481 + "blockRuntimeId" : 7573 }, { "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5681 + "blockRuntimeId" : 5705 }, { "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7185 + "blockRuntimeId" : 7277 }, { "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5643 + "blockRuntimeId" : 5667 }, { "id" : "minecraft:oak_stairs", - "blockRuntimeId" : 5690 + "blockRuntimeId" : 5714 }, { "id" : "minecraft:spruce_stairs", - "blockRuntimeId" : 6946 + "blockRuntimeId" : 7038 }, { "id" : "minecraft:birch_stairs", @@ -210,7 +210,7 @@ }, { "id" : "minecraft:jungle_stairs", - "blockRuntimeId" : 5260 + "blockRuntimeId" : 5284 }, { "id" : "minecraft:acacia_stairs", @@ -222,35 +222,35 @@ }, { "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7091 + "blockRuntimeId" : 7183 }, { "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5651 + "blockRuntimeId" : 5675 }, { "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6683 + "blockRuntimeId" : 6707 }, { "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6807 + "blockRuntimeId" : 6899 }, { "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6610 + "blockRuntimeId" : 6634 }, { "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6799 + "blockRuntimeId" : 6891 }, { "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4964 + "blockRuntimeId" : 4988 }, { "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6359 + "blockRuntimeId" : 6383 }, { "id" : "minecraft:diorite_stairs", @@ -258,7 +258,7 @@ }, { "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6351 + "blockRuntimeId" : 6375 }, { "id" : "minecraft:andesite_stairs", @@ -266,7 +266,7 @@ }, { "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5787 + "blockRuntimeId" : 5811 }, { "id" : "minecraft:brick_stairs", @@ -274,11 +274,11 @@ }, { "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5663 + "blockRuntimeId" : 5687 }, { "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6598 + "blockRuntimeId" : 6622 }, { "id" : "minecraft:end_brick_stairs", @@ -286,19 +286,19 @@ }, { "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6532 + "blockRuntimeId" : 6556 }, { "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6791 + "blockRuntimeId" : 6883 }, { "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6510 + "blockRuntimeId" : 6534 }, { "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6422 + "blockRuntimeId" : 6446 }, { "id" : "minecraft:dark_prismarine_stairs", @@ -306,7 +306,7 @@ }, { "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6414 + "blockRuntimeId" : 6438 }, { "id" : "minecraft:crimson_stairs", @@ -314,7 +314,7 @@ }, { "id" : "minecraft:warped_stairs", - "blockRuntimeId" : 7522 + "blockRuntimeId" : 7614 }, { "id" : "minecraft:blackstone_stairs", @@ -322,11 +322,11 @@ }, { "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6006 + "blockRuntimeId" : 6030 }, { "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5803 + "blockRuntimeId" : 5827 }, { "id" : "minecraft:cut_copper_stairs", @@ -338,27 +338,27 @@ }, { "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7649 + "blockRuntimeId" : 7741 }, { "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5731 + "blockRuntimeId" : 5755 }, { "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7593 + "blockRuntimeId" : 7685 }, { "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7607 + "blockRuntimeId" : 7699 }, { "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7635 + "blockRuntimeId" : 7727 }, { "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7621 + "blockRuntimeId" : 7713 }, { "id" : "minecraft:cobbled_deepslate_stairs", @@ -370,7 +370,7 @@ }, { "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6181 + "blockRuntimeId" : 6205 }, { "id" : "minecraft:deepslate_brick_stairs", @@ -405,11 +405,11 @@ }, { "id" : "minecraft:trapdoor", - "blockRuntimeId" : 7267 + "blockRuntimeId" : 7359 }, { "id" : "minecraft:spruce_trapdoor", - "blockRuntimeId" : 6970 + "blockRuntimeId" : 7062 }, { "id" : "minecraft:birch_trapdoor", @@ -417,7 +417,7 @@ }, { "id" : "minecraft:jungle_trapdoor", - "blockRuntimeId" : 5284 + "blockRuntimeId" : 5308 }, { "id" : "minecraft:acacia_trapdoor", @@ -429,7 +429,7 @@ }, { "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5143 + "blockRuntimeId" : 5167 }, { "id" : "minecraft:crimson_trapdoor", @@ -437,295 +437,295 @@ }, { "id" : "minecraft:warped_trapdoor", - "blockRuntimeId" : 7549 + "blockRuntimeId" : 7641 }, { "id" : "minecraft:iron_bars", - "blockRuntimeId" : 5108 + "blockRuntimeId" : 5132 }, { "id" : "minecraft:glass", - "blockRuntimeId" : 4870 + "blockRuntimeId" : 4882 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6992 + "blockRuntimeId" : 7084 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7000 + "blockRuntimeId" : 7092 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6999 + "blockRuntimeId" : 7091 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7007 + "blockRuntimeId" : 7099 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7004 + "blockRuntimeId" : 7096 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7006 + "blockRuntimeId" : 7098 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6993 + "blockRuntimeId" : 7085 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6996 + "blockRuntimeId" : 7088 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6997 + "blockRuntimeId" : 7089 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7005 + "blockRuntimeId" : 7097 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7001 + "blockRuntimeId" : 7093 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6995 + "blockRuntimeId" : 7087 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7003 + "blockRuntimeId" : 7095 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7002 + "blockRuntimeId" : 7094 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6994 + "blockRuntimeId" : 7086 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6998 + "blockRuntimeId" : 7090 }, { "id" : "minecraft:tinted_glass", - "blockRuntimeId" : 7256 + "blockRuntimeId" : 7348 }, { "id" : "minecraft:glass_pane", - "blockRuntimeId" : 4871 + "blockRuntimeId" : 4883 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7008 + "blockRuntimeId" : 7100 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7016 + "blockRuntimeId" : 7108 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7015 + "blockRuntimeId" : 7107 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7023 + "blockRuntimeId" : 7115 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7020 + "blockRuntimeId" : 7112 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7022 + "blockRuntimeId" : 7114 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7009 + "blockRuntimeId" : 7101 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7012 + "blockRuntimeId" : 7104 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7013 + "blockRuntimeId" : 7105 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7021 + "blockRuntimeId" : 7113 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7017 + "blockRuntimeId" : 7109 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7011 + "blockRuntimeId" : 7103 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7019 + "blockRuntimeId" : 7111 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7018 + "blockRuntimeId" : 7110 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7010 + "blockRuntimeId" : 7102 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7014 + "blockRuntimeId" : 7106 }, { "id" : "minecraft:ladder", - "blockRuntimeId" : 5332 + "blockRuntimeId" : 5356 }, { "id" : "minecraft:scaffolding", - "blockRuntimeId" : 6703 + "blockRuntimeId" : 6727 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7127 + "blockRuntimeId" : 7219 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7177 + "blockRuntimeId" : 7269 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7130 + "blockRuntimeId" : 7222 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7148 + "blockRuntimeId" : 7240 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7807 + "blockRuntimeId" : 7899 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7808 + "blockRuntimeId" : 7900 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7809 + "blockRuntimeId" : 7901 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7810 + "blockRuntimeId" : 7902 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7811 + "blockRuntimeId" : 7903 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7812 + "blockRuntimeId" : 7904 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7132 + "blockRuntimeId" : 7224 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7175 + "blockRuntimeId" : 7267 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7128 + "blockRuntimeId" : 7220 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7178 + "blockRuntimeId" : 7270 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7149 + "blockRuntimeId" : 7241 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7143 + "blockRuntimeId" : 7235 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7179 + "blockRuntimeId" : 7271 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7160 + "blockRuntimeId" : 7252 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7165 + "blockRuntimeId" : 7257 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7166 + "blockRuntimeId" : 7258 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7163 + "blockRuntimeId" : 7255 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7164 + "blockRuntimeId" : 7256 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7162 + "blockRuntimeId" : 7254 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7161 + "blockRuntimeId" : 7253 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7131 + "blockRuntimeId" : 7223 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7134 + "blockRuntimeId" : 7226 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7150 + "blockRuntimeId" : 7242 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7159 + "blockRuntimeId" : 7251 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7133 + "blockRuntimeId" : 7225 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7176 + "blockRuntimeId" : 7268 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7144 + "blockRuntimeId" : 7236 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7145 + "blockRuntimeId" : 7237 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7146 + "blockRuntimeId" : 7238 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7147 + "blockRuntimeId" : 7239 }, { "id" : "minecraft:crimson_slab", @@ -733,7 +733,7 @@ }, { "id" : "minecraft:warped_slab", - "blockRuntimeId" : 7520 + "blockRuntimeId" : 7612 }, { "id" : "minecraft:blackstone_slab", @@ -741,11 +741,11 @@ }, { "id" : "minecraft:polished_blackstone_slab", - "blockRuntimeId" : 6004 + "blockRuntimeId" : 6028 }, { "id" : "minecraft:polished_blackstone_brick_slab", - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5825 }, { "id" : "minecraft:cut_copper_slab", @@ -757,27 +757,27 @@ }, { "id" : "minecraft:weathered_cut_copper_slab", - "blockRuntimeId" : 7647 + "blockRuntimeId" : 7739 }, { "id" : "minecraft:oxidized_cut_copper_slab", - "blockRuntimeId" : 5729 + "blockRuntimeId" : 5753 }, { "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7591 + "blockRuntimeId" : 7683 }, { "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7605 + "blockRuntimeId" : 7697 }, { "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7633 + "blockRuntimeId" : 7725 }, { "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7619 + "blockRuntimeId" : 7711 }, { "id" : "minecraft:cobbled_deepslate_slab", @@ -785,7 +785,7 @@ }, { "id" : "minecraft:polished_deepslate_slab", - "blockRuntimeId" : 6179 + "blockRuntimeId" : 6203 }, { "id" : "minecraft:deepslate_tile_slab", @@ -809,23 +809,23 @@ }, { "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6530 + "blockRuntimeId" : 6554 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7193 + "blockRuntimeId" : 7285 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7194 + "blockRuntimeId" : 7286 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7195 + "blockRuntimeId" : 7287 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7196 + "blockRuntimeId" : 7288 }, { "id" : "minecraft:end_bricks", @@ -833,11 +833,11 @@ }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6413 + "blockRuntimeId" : 6437 }, { "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5973 + "blockRuntimeId" : 5997 }, { "id" : "minecraft:cracked_polished_blackstone_bricks", @@ -845,7 +845,7 @@ }, { "id" : "minecraft:gilded_blackstone", - "blockRuntimeId" : 4869 + "blockRuntimeId" : 4881 }, { "id" : "minecraft:chiseled_polished_blackstone", @@ -877,7 +877,7 @@ }, { "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5642 + "blockRuntimeId" : 5666 }, { "id" : "minecraft:cobbled_deepslate", @@ -885,39 +885,39 @@ }, { "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6815 + "blockRuntimeId" : 6907 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6679 + "blockRuntimeId" : 6703 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6680 + "blockRuntimeId" : 6704 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6681 + "blockRuntimeId" : 6705 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6682 + "blockRuntimeId" : 6706 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6606 + "blockRuntimeId" : 6630 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6607 + "blockRuntimeId" : 6631 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6608 + "blockRuntimeId" : 6632 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6609 + "blockRuntimeId" : 6633 }, { "id" : "minecraft:coal_block", @@ -929,11 +929,11 @@ }, { "id" : "minecraft:gold_block", - "blockRuntimeId" : 4950 + "blockRuntimeId" : 4974 }, { "id" : "minecraft:iron_block", - "blockRuntimeId" : 5109 + "blockRuntimeId" : 5133 }, { "id" : "minecraft:copper_block", @@ -945,27 +945,27 @@ }, { "id" : "minecraft:weathered_copper", - "blockRuntimeId" : 7645 + "blockRuntimeId" : 7737 }, { "id" : "minecraft:oxidized_copper", - "blockRuntimeId" : 5727 + "blockRuntimeId" : 5751 }, { "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7589 + "blockRuntimeId" : 7681 }, { "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7603 + "blockRuntimeId" : 7695 }, { "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7631 + "blockRuntimeId" : 7723 }, { "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7617 + "blockRuntimeId" : 7709 }, { "id" : "minecraft:cut_copper", @@ -977,27 +977,27 @@ }, { "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7646 + "blockRuntimeId" : 7738 }, { "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5728 + "blockRuntimeId" : 5752 }, { "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7590 + "blockRuntimeId" : 7682 }, { "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7604 + "blockRuntimeId" : 7696 }, { "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7632 + "blockRuntimeId" : 7724 }, { "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7618 + "blockRuntimeId" : 7710 }, { "id" : "minecraft:emerald_block", @@ -1009,59 +1009,59 @@ }, { "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5340 + "blockRuntimeId" : 5364 }, { "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6552 + "blockRuntimeId" : 6576 }, { "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6550 + "blockRuntimeId" : 6574 }, { "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6551 + "blockRuntimeId" : 6575 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6518 + "blockRuntimeId" : 6542 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6520 + "blockRuntimeId" : 6544 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6519 + "blockRuntimeId" : 6543 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6521 + "blockRuntimeId" : 6545 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6411 + "blockRuntimeId" : 6435 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6412 + "blockRuntimeId" : 6436 }, { "id" : "minecraft:slime", - "blockRuntimeId" : 6768 + "blockRuntimeId" : 6860 }, { "id" : "minecraft:honey_block", - "blockRuntimeId" : 5087 + "blockRuntimeId" : 5111 }, { "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5088 + "blockRuntimeId" : 5112 }, { "id" : "minecraft:hay_block", - "blockRuntimeId" : 5059 + "blockRuntimeId" : 5083 }, { "id" : "minecraft:bone_block", @@ -1069,83 +1069,83 @@ }, { "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5661 + "blockRuntimeId" : 5685 }, { "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6597 + "blockRuntimeId" : 6621 }, { "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5678 + "blockRuntimeId" : 5702 }, { "id" : "minecraft:lodestone", - "blockRuntimeId" : 5538 + "blockRuntimeId" : 5562 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7819 + "blockRuntimeId" : 7911 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7827 + "blockRuntimeId" : 7919 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7826 + "blockRuntimeId" : 7918 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7834 + "blockRuntimeId" : 7926 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7831 + "blockRuntimeId" : 7923 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7833 + "blockRuntimeId" : 7925 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7820 + "blockRuntimeId" : 7912 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7823 + "blockRuntimeId" : 7915 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7824 + "blockRuntimeId" : 7916 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7832 + "blockRuntimeId" : 7924 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7828 + "blockRuntimeId" : 7920 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7822 + "blockRuntimeId" : 7914 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7830 + "blockRuntimeId" : 7922 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7829 + "blockRuntimeId" : 7921 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7821 + "blockRuntimeId" : 7913 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7825 + "blockRuntimeId" : 7917 }, { "id" : "minecraft:carpet", @@ -1345,83 +1345,83 @@ }, { "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5058 + "blockRuntimeId" : 5082 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7024 + "blockRuntimeId" : 7116 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7032 + "blockRuntimeId" : 7124 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7031 + "blockRuntimeId" : 7123 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7039 + "blockRuntimeId" : 7131 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7036 + "blockRuntimeId" : 7128 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7038 + "blockRuntimeId" : 7130 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7025 + "blockRuntimeId" : 7117 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7028 + "blockRuntimeId" : 7120 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7029 + "blockRuntimeId" : 7121 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7037 + "blockRuntimeId" : 7129 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7033 + "blockRuntimeId" : 7125 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7027 + "blockRuntimeId" : 7119 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7035 + "blockRuntimeId" : 7127 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7034 + "blockRuntimeId" : 7126 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7026 + "blockRuntimeId" : 7118 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7030 + "blockRuntimeId" : 7122 }, { "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7704 + "blockRuntimeId" : 7796 }, { "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6750 + "blockRuntimeId" : 6842 }, { "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 4985 + "blockRuntimeId" : 5009 }, { "id" : "minecraft:black_glazed_terracotta", @@ -1433,23 +1433,23 @@ }, { "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6574 + "blockRuntimeId" : 6598 }, { "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5721 + "blockRuntimeId" : 5745 }, { "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7846 + "blockRuntimeId" : 7938 }, { "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5507 + "blockRuntimeId" : 5531 }, { "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5001 + "blockRuntimeId" : 5025 }, { "id" : "minecraft:cyan_glazed_terracotta", @@ -1457,7 +1457,7 @@ }, { "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5459 + "blockRuntimeId" : 5483 }, { "id" : "minecraft:blue_glazed_terracotta", @@ -1465,35 +1465,35 @@ }, { "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6492 + "blockRuntimeId" : 6516 }, { "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5571 + "blockRuntimeId" : 5595 }, { "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5752 + "blockRuntimeId" : 5776 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6498 + "blockRuntimeId" : 6522 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6500 + "blockRuntimeId" : 6524 }, { "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5677 + "blockRuntimeId" : 5701 }, { "id" : "minecraft:warped_wart_block", - "blockRuntimeId" : 7571 + "blockRuntimeId" : 7663 }, { "id" : "minecraft:shroomlight", - "blockRuntimeId" : 6733 + "blockRuntimeId" : 6825 }, { "id" : "minecraft:crimson_nylium", @@ -1501,7 +1501,7 @@ }, { "id" : "minecraft:warped_nylium", - "blockRuntimeId" : 7501 + "blockRuntimeId" : 7593 }, { "id" : "minecraft:basalt", @@ -1509,15 +1509,15 @@ }, { "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5795 + "blockRuntimeId" : 5819 }, { "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6790 + "blockRuntimeId" : 6882 }, { "id" : "minecraft:soul_soil", - "blockRuntimeId" : 6860 + "blockRuntimeId" : 6952 }, { "id" : "minecraft:dirt", @@ -1533,31 +1533,31 @@ }, { "id" : "minecraft:grass", - "blockRuntimeId" : 4972 + "blockRuntimeId" : 4996 }, { "id" : "minecraft:grass_path", - "blockRuntimeId" : 4973 + "blockRuntimeId" : 4997 }, { "id" : "minecraft:podzol", - "blockRuntimeId" : 5776 + "blockRuntimeId" : 5800 }, { "id" : "minecraft:mycelium", - "blockRuntimeId" : 5660 + "blockRuntimeId" : 5684 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7084 + "blockRuntimeId" : 7176 }, { "id" : "minecraft:iron_ore", - "blockRuntimeId" : 5142 + "blockRuntimeId" : 5166 }, { "id" : "minecraft:gold_ore", - "blockRuntimeId" : 4951 + "blockRuntimeId" : 4975 }, { "id" : "minecraft:diamond_ore", @@ -1565,11 +1565,11 @@ }, { "id" : "minecraft:lapis_ore", - "blockRuntimeId" : 5341 + "blockRuntimeId" : 5365 }, { "id" : "minecraft:redstone_ore", - "blockRuntimeId" : 6620 + "blockRuntimeId" : 6644 }, { "id" : "minecraft:coal_ore", @@ -1585,11 +1585,11 @@ }, { "id" : "minecraft:quartz_ore", - "blockRuntimeId" : 6531 + "blockRuntimeId" : 6555 }, { "id" : "minecraft:nether_gold_ore", - "blockRuntimeId" : 5671 + "blockRuntimeId" : 5695 }, { "id" : "minecraft:ancient_debris", @@ -1629,19 +1629,19 @@ }, { "id" : "minecraft:gravel", - "blockRuntimeId" : 4974 + "blockRuntimeId" : 4998 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7085 + "blockRuntimeId" : 7177 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7087 + "blockRuntimeId" : 7179 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7089 + "blockRuntimeId" : 7181 }, { "id" : "minecraft:blackstone", @@ -1653,31 +1653,31 @@ }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7086 + "blockRuntimeId" : 7178 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7088 + "blockRuntimeId" : 7180 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7090 + "blockRuntimeId" : 7182 }, { "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5798 + "blockRuntimeId" : 5822 }, { "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6176 + "blockRuntimeId" : 6200 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6677 + "blockRuntimeId" : 6701 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6678 + "blockRuntimeId" : 6702 }, { "id" : "minecraft:cactus", @@ -1685,51 +1685,51 @@ }, { "id" : "minecraft:log", - "blockRuntimeId" : 5539 + "blockRuntimeId" : 5563 }, { "id" : "minecraft:stripped_oak_log", - "blockRuntimeId" : 7223 + "blockRuntimeId" : 7315 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5540 + "blockRuntimeId" : 5564 }, { "id" : "minecraft:stripped_spruce_log", - "blockRuntimeId" : 7226 + "blockRuntimeId" : 7318 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5541 + "blockRuntimeId" : 5565 }, { "id" : "minecraft:stripped_birch_log", - "blockRuntimeId" : 7208 + "blockRuntimeId" : 7300 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5542 + "blockRuntimeId" : 5566 }, { "id" : "minecraft:stripped_jungle_log", - "blockRuntimeId" : 7220 + "blockRuntimeId" : 7312 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5551 + "blockRuntimeId" : 5575 }, { "id" : "minecraft:stripped_acacia_log", - "blockRuntimeId" : 7205 + "blockRuntimeId" : 7297 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5552 + "blockRuntimeId" : 5576 }, { "id" : "minecraft:stripped_dark_oak_log", - "blockRuntimeId" : 7217 + "blockRuntimeId" : 7309 }, { "id" : "minecraft:crimson_stem", @@ -1737,63 +1737,63 @@ }, { "id" : "minecraft:stripped_crimson_stem", - "blockRuntimeId" : 7214 + "blockRuntimeId" : 7306 }, { "id" : "minecraft:warped_stem", - "blockRuntimeId" : 7546 + "blockRuntimeId" : 7638 }, { "id" : "minecraft:stripped_warped_stem", - "blockRuntimeId" : 7232 + "blockRuntimeId" : 7324 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7711 + "blockRuntimeId" : 7803 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7717 + "blockRuntimeId" : 7809 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7712 + "blockRuntimeId" : 7804 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7718 + "blockRuntimeId" : 7810 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7713 + "blockRuntimeId" : 7805 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7719 + "blockRuntimeId" : 7811 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7714 + "blockRuntimeId" : 7806 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7720 + "blockRuntimeId" : 7812 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7715 + "blockRuntimeId" : 7807 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7721 + "blockRuntimeId" : 7813 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7716 + "blockRuntimeId" : 7808 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7722 + "blockRuntimeId" : 7814 }, { "id" : "minecraft:crimson_hyphae", @@ -1801,39 +1801,39 @@ }, { "id" : "minecraft:stripped_crimson_hyphae", - "blockRuntimeId" : 7211 + "blockRuntimeId" : 7303 }, { "id" : "minecraft:warped_hyphae", - "blockRuntimeId" : 7498 + "blockRuntimeId" : 7590 }, { "id" : "minecraft:stripped_warped_hyphae", - "blockRuntimeId" : 7229 + "blockRuntimeId" : 7321 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5385 + "blockRuntimeId" : 5409 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5386 + "blockRuntimeId" : 5410 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5387 + "blockRuntimeId" : 5411 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5388 + "blockRuntimeId" : 5412 }, { "id" : "minecraft:leaves2", - "blockRuntimeId" : 5401 + "blockRuntimeId" : 5425 }, { "id" : "minecraft:leaves2", - "blockRuntimeId" : 5402 + "blockRuntimeId" : 5426 }, { "id" : "minecraft:azalea_leaves", @@ -1845,27 +1845,27 @@ }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6691 + "blockRuntimeId" : 6715 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6692 + "blockRuntimeId" : 6716 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6693 + "blockRuntimeId" : 6717 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6694 + "blockRuntimeId" : 6718 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6695 + "blockRuntimeId" : 6719 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6696 + "blockRuntimeId" : 6720 }, { "id" : "minecraft:bee_nest", @@ -1912,7 +1912,7 @@ }, { "id" : "minecraft:melon_block", - "blockRuntimeId" : 5584 + "blockRuntimeId" : 5608 }, { "id" : "minecraft:melon_slice" @@ -1928,7 +1928,7 @@ }, { "id" : "minecraft:pumpkin", - "blockRuntimeId" : 6430 + "blockRuntimeId" : 6454 }, { "id" : "minecraft:carved_pumpkin", @@ -1936,14 +1936,14 @@ }, { "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5526 + "blockRuntimeId" : 5550 }, { "id" : "minecraft:honeycomb" }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7253 + "blockRuntimeId" : 7345 }, { "id" : "minecraft:double_plant", @@ -1951,7 +1951,7 @@ }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7252 + "blockRuntimeId" : 7344 }, { "id" : "minecraft:double_plant", @@ -2045,7 +2045,7 @@ }, { "id" : "minecraft:seagrass", - "blockRuntimeId" : 6729 + "blockRuntimeId" : 6821 }, { "id" : "minecraft:crimson_roots", @@ -2053,55 +2053,55 @@ }, { "id" : "minecraft:warped_roots", - "blockRuntimeId" : 7519 + "blockRuntimeId" : 7611 }, { "id" : "minecraft:yellow_flower", - "blockRuntimeId" : 7845 + "blockRuntimeId" : 7937 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6563 + "blockRuntimeId" : 6587 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6564 + "blockRuntimeId" : 6588 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6565 + "blockRuntimeId" : 6589 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6566 + "blockRuntimeId" : 6590 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6567 + "blockRuntimeId" : 6591 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6568 + "blockRuntimeId" : 6592 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6569 + "blockRuntimeId" : 6593 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6570 + "blockRuntimeId" : 6594 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6571 + "blockRuntimeId" : 6595 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6572 + "blockRuntimeId" : 6596 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6573 + "blockRuntimeId" : 6597 }, { "id" : "minecraft:double_plant", @@ -2121,7 +2121,7 @@ }, { "id" : "minecraft:wither_rose", - "blockRuntimeId" : 7710 + "blockRuntimeId" : 7802 }, { "id" : "minecraft:white_dye" @@ -2188,19 +2188,19 @@ }, { "id" : "minecraft:vine", - "blockRuntimeId" : 7406 + "blockRuntimeId" : 7498 }, { "id" : "minecraft:weeping_vines", - "blockRuntimeId" : 7660 + "blockRuntimeId" : 7752 }, { "id" : "minecraft:twisting_vines", - "blockRuntimeId" : 7334 + "blockRuntimeId" : 7426 }, { "id" : "minecraft:waterlily", - "blockRuntimeId" : 7588 + "blockRuntimeId" : 7680 }, { "id" : "minecraft:deadbush", @@ -2212,15 +2212,15 @@ }, { "id" : "minecraft:snow", - "blockRuntimeId" : 6816 + "blockRuntimeId" : 6908 }, { "id" : "minecraft:ice", - "blockRuntimeId" : 5101 + "blockRuntimeId" : 5125 }, { "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5741 + "blockRuntimeId" : 5765 }, { "id" : "minecraft:blue_ice", @@ -2228,11 +2228,15 @@ }, { "id" : "minecraft:snow_layer", - "blockRuntimeId" : 6817 + "blockRuntimeId" : 6909 }, { "id" : "minecraft:pointed_dripstone", - "blockRuntimeId" : 5782 + "blockRuntimeId" : 5806 + }, + { + "id" : "minecraft:sculk_sensor", + "blockRuntimeId" : 6745 }, { "id" : "minecraft:dripstone_block", @@ -2240,11 +2244,11 @@ }, { "id" : "minecraft:moss_carpet", - "blockRuntimeId" : 5641 + "blockRuntimeId" : 5665 }, { "id" : "minecraft:moss_block", - "blockRuntimeId" : 5640 + "blockRuntimeId" : 5664 }, { "id" : "minecraft:dirt_with_roots", @@ -2252,7 +2256,7 @@ }, { "id" : "minecraft:hanging_roots", - "blockRuntimeId" : 5023 + "blockRuntimeId" : 5047 }, { "id" : "minecraft:big_dripleaf", @@ -2260,11 +2264,11 @@ }, { "id" : "minecraft:small_dripleaf_block", - "blockRuntimeId" : 6782 + "blockRuntimeId" : 6874 }, { "id" : "minecraft:spore_blossom", - "blockRuntimeId" : 6869 + "blockRuntimeId" : 6961 }, { "id" : "minecraft:azalea", @@ -2276,7 +2280,7 @@ }, { "id" : "minecraft:glow_lichen", - "blockRuntimeId" : 4947 + "blockRuntimeId" : 4971 }, { "id" : "minecraft:amethyst_block", @@ -2292,19 +2296,19 @@ }, { "id" : "minecraft:large_amethyst_bud", - "blockRuntimeId" : 5342 + "blockRuntimeId" : 5366 }, { "id" : "minecraft:medium_amethyst_bud", - "blockRuntimeId" : 5578 + "blockRuntimeId" : 5602 }, { "id" : "minecraft:small_amethyst_bud", - "blockRuntimeId" : 6769 + "blockRuntimeId" : 6861 }, { "id" : "minecraft:tuff", - "blockRuntimeId" : 7321 + "blockRuntimeId" : 7413 }, { "id" : "minecraft:calcite", @@ -2343,7 +2347,7 @@ }, { "id" : "minecraft:red_mushroom", - "blockRuntimeId" : 6580 + "blockRuntimeId" : 6604 }, { "id" : "minecraft:crimson_fungus", @@ -2351,7 +2355,7 @@ }, { "id" : "minecraft:warped_fungus", - "blockRuntimeId" : 7497 + "blockRuntimeId" : 7589 }, { "id" : "minecraft:brown_mushroom_block", @@ -2359,7 +2363,7 @@ }, { "id" : "minecraft:red_mushroom_block", - "blockRuntimeId" : 6595 + "blockRuntimeId" : 6619 }, { "id" : "minecraft:brown_mushroom_block", @@ -2386,42 +2390,42 @@ }, { "id" : "minecraft:web", - "blockRuntimeId" : 7659 + "blockRuntimeId" : 7751 }, { "id" : "minecraft:spider_eye" }, { "id" : "minecraft:mob_spawner", - "blockRuntimeId" : 5633 + "blockRuntimeId" : 5657 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5634 + "blockRuntimeId" : 5658 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5635 + "blockRuntimeId" : 5659 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5636 + "blockRuntimeId" : 5660 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5637 + "blockRuntimeId" : 5661 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5638 + "blockRuntimeId" : 5662 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5639 + "blockRuntimeId" : 5663 }, { "id" : "minecraft:infested_deepslate", - "blockRuntimeId" : 5102 + "blockRuntimeId" : 5126 }, { "id" : "minecraft:dragon_egg", @@ -2429,7 +2433,7 @@ }, { "id" : "minecraft:turtle_egg", - "blockRuntimeId" : 7322 + "blockRuntimeId" : 7414 }, { "id" : "minecraft:chicken_spawn_egg" @@ -2631,7 +2635,7 @@ }, { "id" : "minecraft:obsidian", - "blockRuntimeId" : 5710 + "blockRuntimeId" : 5734 }, { "id" : "minecraft:crying_obsidian", @@ -2643,15 +2647,15 @@ }, { "id" : "minecraft:soul_sand", - "blockRuntimeId" : 6859 + "blockRuntimeId" : 6951 }, { "id" : "minecraft:netherrack", - "blockRuntimeId" : 5679 + "blockRuntimeId" : 5703 }, { "id" : "minecraft:magma", - "blockRuntimeId" : 5577 + "blockRuntimeId" : 5601 }, { "id" : "minecraft:nether_wart" @@ -2676,11 +2680,11 @@ }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6867 + "blockRuntimeId" : 6959 }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6868 + "blockRuntimeId" : 6960 }, { "id" : "minecraft:coral_block", @@ -3747,23 +3751,23 @@ }, { "id" : "minecraft:torch", - "blockRuntimeId" : 7261 + "blockRuntimeId" : 7353 }, { "id" : "minecraft:soul_torch", - "blockRuntimeId" : 6861 + "blockRuntimeId" : 6953 }, { "id" : "minecraft:sea_pickle", - "blockRuntimeId" : 6721 + "blockRuntimeId" : 6813 }, { "id" : "minecraft:lantern", - "blockRuntimeId" : 5338 + "blockRuntimeId" : 5362 }, { "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6857 + "blockRuntimeId" : 6949 }, { "id" : "minecraft:candle", @@ -3771,39 +3775,39 @@ }, { "id" : "minecraft:white_candle", - "blockRuntimeId" : 7694 + "blockRuntimeId" : 7786 }, { "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5711 + "blockRuntimeId" : 5735 }, { "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5561 + "blockRuntimeId" : 5585 }, { "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5449 + "blockRuntimeId" : 5473 }, { "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7835 + "blockRuntimeId" : 7927 }, { "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5497 + "blockRuntimeId" : 5521 }, { "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5742 + "blockRuntimeId" : 5766 }, { "id" : "minecraft:gray_candle", - "blockRuntimeId" : 4975 + "blockRuntimeId" : 4999 }, { "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5465 + "blockRuntimeId" : 5489 }, { "id" : "minecraft:cyan_candle", @@ -3811,7 +3815,7 @@ }, { "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6482 + "blockRuntimeId" : 6506 }, { "id" : "minecraft:blue_candle", @@ -3823,11 +3827,11 @@ }, { "id" : "minecraft:green_candle", - "blockRuntimeId" : 4991 + "blockRuntimeId" : 5015 }, { "id" : "minecraft:red_candle", - "blockRuntimeId" : 6553 + "blockRuntimeId" : 6577 }, { "id" : "minecraft:black_candle", @@ -3847,7 +3851,7 @@ }, { "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6783 + "blockRuntimeId" : 6875 }, { "id" : "minecraft:beehive", @@ -3861,7 +3865,7 @@ }, { "id" : "minecraft:furnace", - "blockRuntimeId" : 4863 + "blockRuntimeId" : 4875 }, { "id" : "minecraft:blast_furnace", @@ -3869,11 +3873,11 @@ }, { "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 + "blockRuntimeId" : 6876 }, { "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6672 + "blockRuntimeId" : 6696 }, { "id" : "minecraft:brewing_stand" @@ -3892,7 +3896,7 @@ }, { "id" : "minecraft:grindstone", - "blockRuntimeId" : 5007 + "blockRuntimeId" : 5031 }, { "id" : "minecraft:enchanting_table", @@ -3904,7 +3908,7 @@ }, { "id" : "minecraft:lectern", - "blockRuntimeId" : 5409 + "blockRuntimeId" : 5433 }, { "id" : "minecraft:cauldron" @@ -3919,7 +3923,7 @@ }, { "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7283 + "blockRuntimeId" : 7375 }, { "id" : "minecraft:ender_chest", @@ -3931,82 +3935,82 @@ }, { "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7366 + "blockRuntimeId" : 7458 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 + "blockRuntimeId" : 6826 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 + "blockRuntimeId" : 6834 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 + "blockRuntimeId" : 6833 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 + "blockRuntimeId" : 6841 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 + "blockRuntimeId" : 6838 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 + "blockRuntimeId" : 6840 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 + "blockRuntimeId" : 6827 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 + "blockRuntimeId" : 6830 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 + "blockRuntimeId" : 6831 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 + "blockRuntimeId" : 6839 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 + "blockRuntimeId" : 6835 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 + "blockRuntimeId" : 6829 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 + "blockRuntimeId" : 6837 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 + "blockRuntimeId" : 6836 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 + "blockRuntimeId" : 6828 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 + "blockRuntimeId" : 6832 }, { "id" : "minecraft:armor_stand" }, { "id" : "minecraft:noteblock", - "blockRuntimeId" : 5689 + "blockRuntimeId" : 5713 }, { "id" : "minecraft:jukebox", - "blockRuntimeId" : 5183 + "blockRuntimeId" : 5207 }, { "id" : "minecraft:music_disc_13" @@ -4052,15 +4056,15 @@ }, { "id" : "minecraft:glowstone", - "blockRuntimeId" : 4949 + "blockRuntimeId" : 4973 }, { "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6619 + "blockRuntimeId" : 6643 }, { "id" : "minecraft:sealantern", - "blockRuntimeId" : 6732 + "blockRuntimeId" : 6824 }, { "id" : "minecraft:oak_sign" @@ -4171,7 +4175,7 @@ }, { "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7199 + "blockRuntimeId" : 7291 }, { "id" : "minecraft:end_portal_frame", @@ -4315,7 +4319,7 @@ }, { "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5491 + "blockRuntimeId" : 5515 }, { "id" : "minecraft:end_crystal" @@ -4777,11 +4781,11 @@ }, { "id" : "minecraft:rail", - "blockRuntimeId" : 6540 + "blockRuntimeId" : 6564 }, { "id" : "minecraft:golden_rail", - "blockRuntimeId" : 4952 + "blockRuntimeId" : 4976 }, { "id" : "minecraft:detector_rail", @@ -4808,23 +4812,23 @@ }, { "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6618 + "blockRuntimeId" : 6642 }, { "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6621 + "blockRuntimeId" : 6645 }, { "id" : "minecraft:lever", - "blockRuntimeId" : 5417 + "blockRuntimeId" : 5441 }, { "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7747 + "blockRuntimeId" : 7839 }, { "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6870 + "blockRuntimeId" : 6962 }, { "id" : "minecraft:birch_button", @@ -4832,7 +4836,7 @@ }, { "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5184 + "blockRuntimeId" : 5208 }, { "id" : "minecraft:acacia_button" @@ -4843,7 +4847,7 @@ }, { "id" : "minecraft:stone_button", - "blockRuntimeId" : 7099 + "blockRuntimeId" : 7191 }, { "id" : "minecraft:crimson_button", @@ -4851,23 +4855,23 @@ }, { "id" : "minecraft:warped_button", - "blockRuntimeId" : 7434 + "blockRuntimeId" : 7526 }, { "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 5974 + "blockRuntimeId" : 5998 }, { "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7305 + "blockRuntimeId" : 7397 }, { "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7791 + "blockRuntimeId" : 7883 }, { "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 6930 + "blockRuntimeId" : 7022 }, { "id" : "minecraft:birch_pressure_plate", @@ -4875,7 +4879,7 @@ }, { "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5244 + "blockRuntimeId" : 5268 }, { "id" : "minecraft:acacia_pressure_plate", @@ -4891,27 +4895,27 @@ }, { "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7503 + "blockRuntimeId" : 7595 }, { "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7111 + "blockRuntimeId" : 7203 }, { "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5475 + "blockRuntimeId" : 5499 }, { "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5071 + "blockRuntimeId" : 5095 }, { "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 5988 + "blockRuntimeId" : 6012 }, { "id" : "minecraft:observer", - "blockRuntimeId" : 5698 + "blockRuntimeId" : 5722 }, { "id" : "minecraft:daylight_detector", @@ -4936,22 +4940,22 @@ }, { "id" : "minecraft:piston", - "blockRuntimeId" : 5759 + "blockRuntimeId" : 5783 }, { "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7073 + "blockRuntimeId" : 7165 }, { "id" : "minecraft:tnt", - "blockRuntimeId" : 7257 + "blockRuntimeId" : 7349 }, { "id" : "minecraft:name_tag" }, { "id" : "minecraft:loom", - "blockRuntimeId" : 5557 + "blockRuntimeId" : 5581 }, { "id" : "minecraft:banner" @@ -5194,13 +5198,10 @@ }, { "id" : "minecraft:target", - "blockRuntimeId" : 7255 + "blockRuntimeId" : 7347 }, { "id" : "minecraft:lodestone_compass" - }, - { - "id" : "minecraft:debug_stick" } ] } \ No newline at end of file diff --git a/src/main/resources/runtime_block_states.dat b/src/main/resources/runtime_block_states.dat index c1fc224aacad8100c01c2fa4de316e9f4c9ed210..bce7f0855610ef418a99bf2b632d46fefb156bc2 100644 GIT binary patch delta 36169 zcma)FcU%=m*Us)O5l}z@m5yQs73`u2*cBDAcL94BW7JqdjY;g_jh@)iR0|Q)j2)Ah zV#PNxi5(MD?3iwB-*e8~-Fq>4zu)^0%si*g+1cqkci$U9_umXEI5u1N_n^&{HGjvI z*@;Ly%4a3Mn=!|05T|#g`oBB>?3$mLXIFDAV0VMV+KZax79dyjk!DjlrrrEl+j2us zd&+UTRv;xEwFJ1apUP|2O8t`KV3>S_Or z8+W&{=Cl8k8;;yVP<-xxQ{4SaR($S%Q(Pq*iqGrADE^A>MKdqxO=wwj%~Lz&n0KI( z?pKB;U(ge2)5p3e^}V21*8Myf$W}6PNMSH_4ZW!gIi1+H?gN-UMpTDF9AHQt+>EKIppMgJ3>Vn<*s2st0u{ zXYr+&yNYMT>g#Y$^v~6%IqtUir-B=L3o2e{^`oMCU|N0?h21;K>O))aq6XbxuX!n! z%&C?TT6PmGOKw2N97A|A<^7_2I{t3&78^WQt5a8VUc#L8g zTKy>J7W|%PaHnwIk80nBmH7tPg3{lC-iX`qZYNU~NVWLtHmb$*TrDb6?K^nN3muy$ z`BT;%JyCmsHvgiJrMU0Foy+OIsv55=fp04nknRV40eAHvD!B*ew*8`~a8354+`C|U zSusgXF8hlfNH_m>GD$stk)g5o6*O7d7^|LUE@k|x`IFC|Fe(mgRzUdgdRyhi)ZbuW ziyJDgl>7!)PXC7L2hLI2Yi@M$;@a;pc}zp49Q!LC4674YM*IQ1g>K+t_xc|wxYI6x zQAi_BZ5<_xeH`BNJSg>^UcqsFjgRI>rz_b4sN{hj>v)`9SrHZ;z-#yxWjxS(n%vYW z3bk{qsG*35x~ZqCw$0F8iB8_rtCF@4PuQu^$FXxk8HOv+kiX&64yDxuFEE(z(n?A9 z^(ZQ^p)`1tTd>0v^H8rOF9(I&fzJxIc`5ZV3;ikK0W2;&!dpX&j>fN>at~y}})b^=-p|4h+5;RL7J@SINy*5ir+NfFT z(&TN{04mlj11Y07VwkF1`fG=jOo?u(Nyo|=>_aTbCVCs$Tb_8)FIb>)t%X?Lr*h0#gR@bhthoG76FOyJ3t+$ze3Q9l&n$0g z;Yj5?XUv^U}XnJ{YmpHj6QDRl696@0t?K@$2#QYRYb^Yn7yQgXLes+4#|gQO_zk~0)R z6^$}B547~6oHjNO%B={#>>98uSlTJ1{3_x3Zi_UqV#Zzurd^}@ftJCJlOK4He`Uz6 zujb@&I10%xr|$PakwU6~?V(B!u3n0b2SksUQlAQ|TguVgs+K5< zsfq_EHeG0Q1@tEGNZ5a@l)<4`-Tx_-fivE#t68e*{+a^d5vaP#zz1)Z^`p30XtyX7 z-hjo*88OvCX_j)^oJ*a7k*Zs>%+n-X)(wb81TBbQN*Lsp~ZA)d{-&+ky6KY!)XyIlWs)mEIVQ7ct2zhBBj>qk@Sp&?3#WQ%PPOX7N|>$vTz=^so&c$@Qifw83l( zhp%r871d>?ii+t`T`*njP?~8=%<34_{rm9-TrURx)OJ}DJ+ZOi@kuavhQxv=+MQ=h z45imc1q)H&^7>$?tJ2~O7b>R#JL8PZ!3N;?M`Q{cGK(`Zw;O`x$;gy6Vh(3y!Wx6) zACZY@!Yt0nq%`^W$fP!9CTC>kHvQMgPt@SXycIq*eEAX-T9ef&_(cV5kgsbsE##O=2Q=0Jkl9GEZwCg z+}X=`9fk`?*}X7kO6>vPi^f39*dCS~ZKNWVRJB_vwI@2a=?t`T#Cj!?CM~V4A@F0Dy-Q`-$Y^+bh{rUGL$lHw=|3#1jJ@K7>GfO{cB(=C)IccQX7Q{!)H(0ggot-Yw%zM?Ln2MKrSlF zz;gbCT<#ReVUYwSUi~aw+oJ4X`0PRRpM~L9xed#pyb`#!Y%1K53KTmJTF^?jBP?b$ zq5Wnyy^}SBmQDpVcp75)21}8&pzQ9d~9~In(J0a6yVcT?6keenI zD&46u&q2jDrMK|+P!ZwY1uOZx_6AV5S?GVlXILUBXCd?-onh%tE7m~un==rRkQdN* zZQti5Y>wp@JgNFj1mJBtJi{`866ayAv}Gnry;A|PGXX@*;z$0XQ<>vV14MTgbai>j zfF?A=8sBW_c}IyI>VaUbW8hr{_{@PnWtSQJnMXW{=79V@?V4kmqkW*bvgW|r%DFJV zTLBXn0`Sd(`TQkL+12GS(OHoN**#7n2Fhi_p9zM3+Sv#8moRpcvF7tET^#jJgi_3W zL^om{q8qbZ;qxiSnd(AG{V)^*OQ3d;>d&+E#_-1}qTc;O3dJbJk$23K(w>L1)CG7L zg_NKObgULGPJn()kx}N%3TQcrbpQeq2v<=mtZM|Y08%sFF?zuirMgm zmlml1O1$uE7fPvI%BkQ*lx*Khj?{~m`4r+nO1RjiLoY$uQA3$a$|2*VV=~vdy~xti z;oHiS3KxO-xPhf>CyZoE%3F-LH&#}k_X8s6oJeGp< zv)tKRsj7*apZ9NTa~`c>9Z=`BM0eoD*Y~}&#Sb5F6!{Y@pSJ6sKZTcEn z?ULebx)SNjD*Xzli&gp_r>~Hf525hYXftG}f71jSsMX=K4g}|x8!D^AZC*z8Z?PWc zJ@YMPS-ycUUmg0wN!Yg$2V>16e0txC)G8H@InNr{eAMptp9DGWNi|#j7pJ zbc%V$?t!)I$YRam?x!Fnlcf!o8)VyM3!!uSoi?wxw4xfXz~%#$jyR2%an&m*$3q2_ zfJozCgT8I+F;;rO^t3hbr^LkeuEESc;3>r)zSdHeX1&3~WagiA9Q@1IV%iplv{-c}@a(QIMw@8Kwu6QIwc2STyOrfqAhv z%7xppft6#Qj5GI{9K6v|nS$Sfhu62DC(YhyX{HC1r7K%3ojFsHZUA}y34=cb{PprIfqHq%I zj+T8<3=CqTY_gjq>avBM5n4J;WFI$egpWl6`?1J;db~sF?Mraf&#|aBBm$U}ZhGlS zgI;4rm_;)zUVif$LbB;?$j*w#pOYK0yj$=pstla6F?Q({I;bHoyfOTVzfTp{1ATQWr$n7%~G8vz6l#;-$KimzK5&X z+vx8^SQ_nsYNBrSR;*K1cPT=?3gvHw(EhzHWgRJYA97yp;OoYG3zj$Df&uTX2nBCY z2Gn9*Bb3Fi+u>SmQ=`+5vp{M6ewWHhbZUpCii%`3bB|WyB|E^lU72S2pbqvTIiz?!WdZL!jds#f9i zq|`l#<~}EJEY&&UWD|Ak%0OMcy=e0{m^f=(z84z3KXunQsRlHH)srIjL1PvZoA0xX zr4pnZo_)P2?|`KReSOGylUm94sesY@tlm_1Klz24$Gm&PcYP#vh@k^RiMvdl&e@N0xAImgvz=-OJ@v!-sK7Mfy0(s zTGuB)cwb*jc>;v@FiU?MfRbYJ%Oy&k9B8i{gsKGp8*=6 z(h;8{Jy4}{IXy_F^)HYftkP3BJw&Ciaym_=dmlwQef3F8rfPD>AvstLN-~b20E@qb zPaY?+n<7J!E5}ehy}mLr-a8+59DGYnOg65sGFI-4lTYngpTO84Q!L#%fk(rZvdQC1 z?AFOf%}*!sBF&AcU0yE(9i-9`x)P2w|y!0okef;|w?!DL{5=rhg4!G39=3 znTfeC{yEPrO!x-)dId=AfBFWhHaGzZ{I}rPr~rxjB?dMLAR+I67Wq8RkEM%e5p&V6 z&MXA1qgEFzJ!BmI_#$5Kljp#&SwMdN9@P9i>}^p19Pp%F=MklZpHblC3zkki{I7Wd z23}*9sT6a~Ngx^T`&|U-jnX#MAVt|Q49gV!Q*>`Jm$38w7T3y(v>fJs@L-mcPjIK4xq(~2Q-=cXZY3Ry#2;uTkV=M_s2%y~r>(lM0xj1>dF?@+Rm z5<^%B1>d3G6}WNU4#M-S`aK@{xnERKeW>^Mm~y8h>qsuZftc?to#^DR$gSPrMc!92 zuTK8Wm20Zvdf+PJ`o8QXfu$+GSlA=|0UkvB<;KkMT@Tcu{Sd&qnySf_=Z}#7&?Svv zM{0YFe6lpSoqn@;87?GqTT6_n&7v26!uWl!BX_z#UHr+Cq3tu0Q8edgOLJ|%EC0vO zSjau#%1^uo`a#JbxCYTfF4ExZAQiguUtfplVOKuo2IwD2e!~rje(WN(ylH7p#rL@6 z)4kZIDEis2*>fN$5*FSxVPM60Rv1kIeyq4dx4AEyfk%%~J1xoH?FHZ%x(JJ#+ zfhBCVi@iJ*If&25cJINJ!xNyM?DM|!q?Qk$K*sCm>B>FSc{x4!**ygB0t0ijiwc*MRv-Tj{E`Bs z(Q0)cz-0lX(K^KWV#yoo12G|I%|_lsjUUcS?|kinB>_|H3=O?<%ZHXWj$Pjd(6UDu zE5F*o5A!PlD)5#ehz?;)mg-JZ2pp|nRZa$Nx@oB+;l@Yv^uLOV}YY#x;U7{WJc z@?*;^%+XoLs(RMu*x{GtHYD#Tks2D(CG1H*)YJMFYbq_bSu4|4&FV`5KGsT91P=PM z9nRHkup!8uqO87Ju;Q%#I?iORw*ZZ>01aXEc?$DI>(tz0?Lc;`wTTv{c$ZnNO|hHm zvQXFNW}yegRe^>eIa7JeW=*DT6`+D|&y8%qA;U+k%41k($fR_iPRs@uiS_cgCC6~EqPXJL0*yd@Sg$-08Hutj5qTot~ z@KMgrG_wQBg0r6DypA-*R5mzgmP2;2nf3GrXMM%F7HP^01m{={1Iao**47jqWc73e zWqHv8A8RYEkz*J3{geHyWogO=8icw&Ofu}N7aW+D~%LF!PLlA5Qr6s45sj~bF7=R8(avfAmczqPfN zC?_gA23R|2NpjfXL`7>foeHoNEPcSZGbxaT*ca$e5zU-XaimOC7d7R%9kr+ z$6zB8DvF|=DpDd*S-aM8DQrxSBO#S$NQKjgYIw+|70EYK;ZtBjb$F3(@HeJA)ghnZ z%8#po{7_eZa9Mlc>Y9k_Fv058g!ph5`EpILk1+D#)UFoHo9ZRsjPBJ!)D#$28!z)n ze(U>7KT)qPD#G#FpidT1bxTQ6F!+oDWK_LB3Qul|0%D`BkvPiDDtNHvNxP%LJ(Ypk zI7MAr_1-$BYQtV2Otl(~erRxAG&2VpqyBk)i-A{OjJ1vM45<&FJnKO)hswuTog@9( z^++O7brCH)Bop1{kR2$SDQyMtC9R zy<2VM8>+B0Y5+~-0>zDu4dBKrCb+sGqO-=#st8SO2*I@`C~g%qw$8x%Xr{6Dbf^)W zTTSJgSw|{I)^ob2a^khdklUaDaUiG(9N6dtc*e7`2{<+>KqBJN6hNK;Vmh1in>jyn zbu*X}_0zQV;!IJTHHwz**2~d_=6DVlm|=@SiKe76y4^8*co}LQ2eYplgedC!q3%Ol z;-L981MI22ZX}}}qepqu%+)u?5EIktK z(X_vn6-TN(=z42wJ+ij8cJ(@JGDn%rPtyTUYYLrejqrTD8@zT6!`ZuS@UBnbf3@i^ zhphq5z=YG6ZNW27n0^;j?OeeLDuf%MoBo$T@r!7r4P)^}wf0jdZy( zhC9#oM)gITceuZ`3l7v^l{V7uO(ngpakOt3kGuL?+wkclD_!nqtxkD;tW_ytxIysk zYwfHD+E{uj)BM!o*g*R~^;M#X8klP(4M6DU_OtrvflmvQsk{Rvk95;p+l{}VKR(Pk z;iN9t13gQrkD&{Fq4e5DJkO(}@H|WT?2WUm_DagRSp%UbakQHiEczQ%*`f$6$Et_8 zP|6>~zIvCkSl!LHYx7W3d`cHZY*tZay*!xZeH8=ZB^I5uMVld8-n6Jt*^UmZK)W(9 zWyu+VZZx|#0_UBMGOl?80)9+NGf_M~f5n^?ZFgs0o6eR46s@GTJzVJs%|H<1CL#!X zGpwzY1>d1~ba^1?ft8qlK6ROdKner2hEv2aSnp4;9%$;rNq!cqJq&1&LdD%p!-4K# zG?>ve5+G(c9#7_EH?09oh}1&e6f&oLIuICUDr|-+o~Wre3VK_Ngx&~6l=2FC5GXC1 zVkk#p0|m3IjFWfXQR6ne=!Xc+oeNRZ`kGU~{HpN+e2hk;O#MrKHMu05~pdn%Tub z9XFuW1OWIdW-?}3@|9ZNL=--1A_`wmq0)LsOoZJT&jO86s5FfGC*fhmPXZdt=m-*F z+4%~rZ|V%8%ltG_GQrot)T!FQ;>j4F^F~HsLsPGdLg|ws(}*cAVS2b3pU{%`GidXg znCZH_d=iOWB7<0$u#o6UK2y*>H*-T}HF3%mw0&_jc`hQB_bl2|S+bbK&+h&dm}>4u z!n#Fst%V7U(&Ei@UBYTbbIb!>ioReV!3AK+q6%d`Ym_e0jk3*2p*z!HGRZ|DENCbp znlK%tR_ZzVK4)z!Bg<1W5$@}tP{fNyH2`rGM$GbrnNe*UoO=%CoaT=5Xs+K3G}HT+ zyNR|{gUT~Zh+pAOkkMU_nZOT}!VO0-pK;WVYfCyf4;>LVCscPaH!*Xp z4Jc{8wGIuK4XnV#4rE&^$|_*-Je2Yr6JwVc0xjoRE4hdR=YY7&Nt{3pml|x)8>rR; z`_4t`1CzkY72z8uG+Aayuwq5%mj%LZCn1@NvQVq$^RsEs?qcSah4*631hl}Da?qrq zY&`{2tvSAtoNFDd06sP}BUkZA`CF7Odi;Ma_09SJPpKy?0P*e_OsET9z^aydS^22k z#ODz(iSXlGluM|1X+xP1NYAfSSXZ?)BFqn-hbj+;lUXLug7ce8%N&T6VWJ87z3isb zc{uLjLReh#0;=c|s`4V*IUdufQ*}b}eG&Q}zl{16Jr&b2RwlD(Axbm8jCL(XWFIXv zD#wXc;NH6!6()N*D#zNFpnL^04U*>`u^bkI7D4U0)nIJC1dBSnWGwhP;F!;eMpU=T z>Vf(%Mhmb~p{|NSK&gn7v1ypx)n8)GrtxbG>mu*F6c2y3nFI&C;6G{m=3gdTM%L&rS$ zYwFe37|JI+!R;(ElE!T^JStd&vMhfEWyx3C7*J2q4WL15N^wNGb5qpXQbY_yd2Hn- z&ciCYx(Q=Dc_*{BVzkWLQ`wuWv9x!cwKi}0;G0&-*IJJ}wtS5I>h-An*SEQgJiWnM z$8q{+G@Y#AxeX}Yh3)PPH#b=8@!pT2BW)u(wv#*DSx#@X*5W-NgC$`TSPJu9EF*aP z$Dm%?Y^^MZALnkhs(mdn%`olELyaw6Cc#4xg@402I{(BmwM1BG@fK@W=}->5j_Q-S z1+4jRD?F3pcRD##mp0&4Jmq69j61Y5ucE#VC@}bBg`(SQs4Pcm-WF>g>BGK2p6YvI zRnX^EYipOaF0Z>;GrhoyEF5s`UFAhLUbnWx&QSd~tj}Sm2LF1~<2O+G%DxMG&ELQ* zCi_0>=9@5gO304;$lphvHV=ilf;Tbf9s3p}CcNjApzo2zu}V=kXe-iRs`MF7f2GnX z+aR*x1H;J0N1k+g8;pFd$VuD5`i)BO;qjLFug~=aD-BUN*qi z-1djkI}8@PK$#=ADu6r5`=8JqLZ=EaI{D6Eeop(|NQyEw{3|LzjgWc3RX6H8R&+>* zPz`_-o*O7i`9|eUD>a(nQ-}Cu#7BJVuQ77j@*VAN4}58iC8lv{T!nDpLl{W=1d8}7h_wCSz40M7Ns0i`(F0g( z>97aAXWb*<;OaZ85FA_fSmS9iLr$SY${vo1V4J-t?eDTx0ZoZiuov@`KV12i890O# zw+~Ezy1=4Jb{~45!M|MK#{L*G)ZdRn4*bkzW&~Cp`0@);E*5JaC~Z-|HwC1_2QUY@ z&;Pno)^Ljm@@ohC>wjiP$p+nzWNw^_e@NVr?mgXT6y)C2AdpE*$qe!!dw4|bs*-u z^Lk;(m-!jiL}c4&@)4$%Won$dXy&9Kcn*MMfS7f}1SZYPZi>qrX$&Q>gghb5;?ckn@cA zeZfdYg^c_HR@a;{tbY6jo~!TIc!=Ue#8G7Dn%PNZVDH7F2-O|N&@3&){2pykztu(P zzSFCL{Q5DFAAh6B-SDXzCijhw1FO=DS0+y2k%pZ%m_KHM&sl@{c6BiKIDzUIE?OyV z9DpkTDEypailf^#aKbY4B$&i>YZLIG8Fm{lIKZKCRLDlQRt8YT@URKRoHtCx)`sTg zr!Wb``Chto2?0QHy0LFfDCmO029Nw$6}}@eF*qfdI@GHN)nNVNMg>}y33G4`XZbb5 z^gl@1Ut(BNg>t{d0%A>h86SLU9j4WC9M1Nqb6;Uacl}owd(<`ZDVXn<{~8w7pC^flTSG^hde=NUvImgy6)(JO49evP%{tgB!fFw|C-mVJYk#?_n-`3B*l;aj}9jTO4#TdcfK`teD1p)~g_G~HlA^f}ncKZ~XGW~DVbryk4C z!O1v9I&co^(td{2+6$OHXALV$i_W9zIPZkoIi?NwUVQ=f<0ULepwv*k4;TJ(k6izyR(Hf0eyGXI#?w8#3DpN;HD7n~aJ?=8N!f!w+AhAvbfV9@s zs@Q41Mlo1?ZYq`uT3e>1hW&oBdv_}*Hd z&U}Yjcjp$DD;km9@I4xU?%!kmy(8sD9t6)#QQ;PivV+TrOt$vWb zVo|Z|2dH?#R1xA-dCP#WuJQ{(Xc*R4tP>U9f*Wt?4h3k0pAL1=p$%3hQ8?zB4y zbpCCu0KRVI^n`#*Z)$7XP0n68nlpY2dy7GUq zcE@LEB8qf0CH`uyp%u6Ra-Yk)ze3k8H(hcgPRMUS-*MxW8(sGOj@D`EZz$BeZUPti zYMh%a@SdB1+~v~qccAaP@up3(`4H3uY9F|vC!MGV)%gR;ce|0~N|!}{K;T0+^yGA? zxy$Gt-cRhdm|1gYR|gd$u4ap+g3(w8kH2q?!G~`QIEqhKqFIk|puEmQ zp1I-@si4D(H7{SUM0Flm>uVn=pwLgRv}%G)vC`Hu=qd0u94jfz#OmEcD8+|xY$f|4 zcKY!(oMua)>_@0@;+$9%04EICamd3hDrcT8m; zvdGgWYw)xp+J=QqryohOsAn=zS5FwZ<|Z!}#zB_P_4$^y4N|?o%o{_>!K?9J5V)a8 zvWE~{4!%5Q^d_S#akx+9#9N32Qk@uZ1eUe+WL+Wjb~%Lhj;TR;yOVWy_C_?*V-@#E zaZ>P0z_q(dLi`g{Mr^-Od0(6RZttHyaQ#ejQ`*FH@OwCxa;i{NQm^9S8>b+PbOR_8=07TY&1X#nbljx3#55 zP4J+PW_!_Se^l!S(kImmu*K6K{LokBwJ_;jCQIQhND!g1OJ`$iT<&H#X?gt|@B~dtw-aEwBnL^v4 zmNs9Dw`F&TEkzH;zFG+CPDH3JUJtIRGSiWv@hMIhz6iCo=KF?t7yYF$TU|;CvsKfB zV+^3X9vrJom4w+QQ(8|LSUVC1kd1RZT2+yCZ_M>gB9KO5!$oC9(5`Ai;@tE;GC<%&E)XdM3vQ`mjZY>m{+fa5W+SZJU zYT5eg!5BM31*I42eva&QPEOf+@E)!>JIak4teUz+vDMZr(w%qkW0XZ~8PYX_o3DLp zM%mHK*_Jt9p#vkFHpSDDv+(qCU8sxu5HDzZcTcO5ZxUL3p{CS@yDLT-?&j5HcV%>J zy6eU+`^Ulk#WlIKM0AA2Ku6p#XF&+}mc%IKYu3Q@Kvj@}x^Or(mL2Xw8L_rCRCWxS z1`bl`(30FZ@~^QCYfvh-nGODHY|j>B{P-`iz1i^JVoUvoSpE^*h{h_o^&9^`!Ie8m zg8yrDZ#O9w-K3`fZ**zT54eHoAK~5K?7xJ!)-Zf48|)t6k~kG#t+^53u?ZOA6du-U zQBeX~TB)|U3@5?X!NJwG=-sl8%zS)gACH={u>~Ginh?3(V$0(YZoMrzfVu*DAaxy! z2PO)$<83&6=*;2-6W@Qr`YFC8R19SmedY2K)+?Lc!NUZ^$BI~UU}LEX;Ka2u3ARO) zJ>IDpHK8_5N^;g(x^3dh*NTdEI}shrpb3UEhO0siq~k6^61;3aQSqhV1IR!nzqA$P zx4H00Coa`>ocKwpa*nal&l+NKnMtpXP=DUQhB1AN^1R9E=K-!UDV2{8-_yVK>D(FOMHh7rpPJP4eF zukP?~fLv_SGZn?&{Isp&>h897>S~jsRJdL+8?KAA+-{Q69pkyhO6(4rEoHWx_(Z*~F7N^aM}2Ebxr&X?s>%p-9=!BOtAN!Q?|G ziAlNQq!8Gu$%xUNUbZoGBil)ot4$8{hIxllki}PF_KAg!HMulM;HA(!s@124HTCR zfbzNhp<}H}(6s@@fKu*TN%qySk1aA-`r4MrV{q2F! zlJ$b2MTn;V%?H8uCR1!0PWp0LlnTBUg-f8iz0GbEplYq(;N`vUYVtNT9o6Yg1<0)J+jKm?w*=rB zTh|O^w<@|!)edJsV4DK)8J{OL9SV-^3_Ob+X#5*aQN!TmloxH4sM}~;9m<-EjgTe7 zQ0K-jf#Z0A;&9nF&b0yapvPe5)s>ML&d7zsLx)4*+X|5N7hyX$96EO_HRK~aP_Fn9 z&>6B!Va+IQ3MT5p{Pqaw#3~DPt{!Qt$xAD&{`O2bGJPb}V?kx4Z7g}MFl2EFaZO%2 z8Hon|k{`Ny(Q{}NjE3hJOmYKp_-M#u&4d-o`by_fc%FPyb1>FS7?t%EM(M$5$REfx zF*7xvh7MC=Q{frVPb#_u1_I9Ons0B!E1@`fG4BC$7Aa0tqndPilcA{yS>A4D zBT|97JqveEN?ca(f}f zJ>NGhqZjs|5ih{0zmgYMDOvKJ;NEs9ELHiG|G7V!h;i|CI7ORKgzC5Q~ z6fIbaW+z1L1ZOR=MbQmm!TN})df+l!lpa#f4LP#RR$mYC=EewLQRbj|c5TniUV-}N zxdj*2hWMBasp^EF(C#nC+$qG@q_tG1AZD$=59fxV@-f( z#JGd7bN>ryW+E??JBBzySTK+#9yMgJULLp-A5e0)9o-}&l+77a!`4nr1S9l=dr*>^l%6{ZMt2u^yPFbv9y`l-|KQp5s3 zf|vV?oL;IT)U!K@OJ3n9MkuAczCNTITot)7dm%URq#?(}a3nn~L_F21EHaHE*0Q`f zwUGbIg7b;BwhZcj3jSbdU6znd0(lsyHD7_b*q+wH*8>@+HO2@Y-7kqTV(`0vm2`PvW?6V?ZzS}Hc~cmb*rP` zIh&XV$J=?;oV}Lw8ZGnK5{|bsIw6l)aH`#4QTK?{-3*@tzczdxycq$w_KlI10LWpD zuq|w^fh=97zlMd%oGrF`dPqYTknkp|Cs#-s^es9$J_;y|neB9M+Wsoycj8;;LZ#rL zuVIBU@vI9Pr-w9ksVmn3XUo#J;-%o4M>*%*b?$f_W0FVbT(WJc-W#apm(M#P-))$n z?S8{nR}X0+IsvpLxEQU6#Jd2)Hyp%%6E$($MHIYqI0kRR4iCd*77&u)5;^*ot)?E5 z=mHE!5uPL$3JxKbTVhV!hxr1ZgPKjjg;AXD9$%Eg;dKbZo&4=G(uP9BZ$Q_wsnI6(fG46lcR-eB3 zUXkOeu!mlejYrVfo$Oj?*4>T@cVfM0(^WUFSejaZC+7Ks8-_blc3^qC>@Jo}aZ2{U zPo|XX1!u*ZbwcZA(kjyWd|Ne&eg{r={t>#4-Nh#z#qVH%8`B$SjCZ}mCG4*Fec!cp z)I)l3CX5Q+M?*fK4|rlfL@~!4K?~B;jdZ7v9!44Ov3M^xco7ydaYhXia$Q+SZ#P;* zKOJXEn8wYY*2g4`)I<83nU*wU0I!qo#q*Okub)Xupz%ZSt3#q9WH*YmT^;RD}fXE_E3JQfdaG8*u=l z`P_MpQ1lB2z&q09tw-ZVA{fG3cn}d8Ws=Z7b9>-21J!7<{soiHv=mebUuZ9C8R-RG=d-PrgTNW3XO{4lan(INHT4 zZ|O(i#x1--bmKSGDGFypHP%Txf|iv}d`|iuo)~Hx%7{lKB zKC5Fuup%llvP6?~3Nl#=kR_Vkry!H~SjmjXeP!SsK|6}z?=0GU8kM5BkKL2T{Ra^a zI}LQ6LN9*}krz+f0#}U#dE05*Xl+4hez~HI$Huq6#B58v$L(WIpec!hu3y4>T^$-^ zPz%ncxJJl>4txnWUog1`U;z~y!2vi~X-mh#DCW92b#%stuXNbCz%wZ2VmDNDF9S-; zY@lNV6Fio{zt= z4W`60;7&e^u1rk6|1C_;yP>E`xW-usucTII(L@RN+H+V&61U5o1NTJ_Xb?;^Ob3P~ z(%f^liP|duhdWfbh`rAnyw}genqZ+9@l1-&qt?&z0t*PEu{e6=ye&oC-gW^mEQ;YBLoF-mIoMq9oqC)?3*;YfXd##>iGkpZ7Pi~wfWl@#vQ3y9@OARJmMXSHm5Qc zQZ_J&+;xyXl-s4c-L|FD%o_;I9?5UI zf!AWMk!(r{8CYiPeG|2Cp8+-@Iho$#7OI=H$@^UtIi3y*&S|;8O}F6hLCK4`sN1GF z<X&(+LLQ%6i4B}_5Dso->9Sv%1KP(mtW4#ho_=hHe zceyF21c9Ad$;m7`ygA|4AgmHVaXcd%u2JMIwWtHhk zR~FRv+7}`qziK0HpZ^U) zM-_2e{hc%hDz;O z7vqV0Xw*22v^LxYHRrw}61SK0kFSBHx%%3t#b3}{6yeS%x0${D7hdskRorn|tckdX zNPcN5k%gL-jD2NbgG-skhX#K;J>j5Wz2Xr<{pdc9ua!K+0)qG%AF0aaqWaLOhqgwv z{XT;AH3thTD^9_l_$a3oAiPzm-UFzUb%k=(-PE<9at~}(l(7j9q3*0HJ%~~MaK}(5 zyp3cmhfjD6Gz*KPM!L?bx9v{PWlaIUM(6IE4`u20Mym$eeepGqNr6mH3gb`ygM%^N zE4q&s5q!#J9=c(sog0kK0u(HiJhb_&IsmG~CsfA(tbB+;%+#SOKMJbWg(y{~KqHdD zTKP~n-dGit%NWIJSLFdEJ#BADoo#ksKl zsWc$QO%eaLhr6kmG6>OSHx9P~;_Bgg+ATwoli<927{9d3y|#R6d@9zCn|$%|NDS6_ z*jrP4eV0uos0`nzfif19v8(;LkP<_=Dj*DosS)>G7ooJlabEB@yMa@Cj+cEZ-86C> zizm!bR#^n&HyJ}_`q-OLYI!?85A?H#kasy~ifsfKeF93AwAzI#vTJLqE%qRu`LE^h492jSy#??%zu`+ zDc$f#G0kGnLW%kCYF>anO%K&^sN6nR55-b%Mf)s0G?f4MQGK5FHRkl8Va$OK@haJC z>Y?E(lTw*85h{betsI@LYzJ=@MkdL1X3!{UzFQsX?)B^y$s@?#Q4g(3S3>PmsCEjx zs>bR56dP=>p@&vi8Tk_IP%!Jm?G#Lw&bCzuBe0UQTx9638W+yj#H+$LPlU#pO64jToLI)y{-Lp^($0D)E;o#@ zr<<3xD4*o_sX`l+R_wY3#_71!tI&p~4cA35PKJlo*w03$xhEJ9LR^gKv>qj!wV_S^ z#by+ptig(!mbMf}cM{R@pNp`!;~&Zrva2ZhTay4(n*8RO7l9T-jR}PmF&PEVQ+oW`l${wK28g^t2&C`|7fywr)mTw4{1W zYsa(&dT4t$wYb#9llIp`VUlB*r-Per7wweLI=bmLX>v?G6w8gV_KuVvYp+U4t@uI2 z+B5Xf&I(>w-;P*zQJK5Q&^jkiA`Nc9v=o}xz&=(F?WTAdH)JqXWj0HuyULVn#FQRX zzY(+dRNxN+_EMSdjhUmj${dhPAG*?*+50MRRTJjur!rbo&h)1$ZP8Y=Xln1LhYnDg z?UEU&GQrL4{jn}5TuV4TSf%fCdWcGoi$f#vUTa*AbUw~aPv_<;Gp~g`Sw4SQ))L|7 zdPt#d&;u@RVaKtGKQY7|)xsW##WpZbz?vHKtKVg56Ayft0%RDti-F++$Ph5RCGsOA zZ&(O)DK{W>)G4Hm9lJFN_VHM6Lve!X!vyv~p$sM5Xt^)9TGx+f_25=2p2m1)V_l$+c{s)Y&b_D*L0v>mS7F==0MERAO zNu5CaLjm$5GiLzM=1(zz+0?;akMJ`yI4_Y5Cj4|ROUX~oY-Zq|0_2xwp6(3bZ>rK6 zw(yw`rSEWhjQV-%l#h6>ptr!T@-9r$0QLr-T7a!s$p+B*ec5*yCu$0>c_Gr-v^Ngon?YoNgX+ z-%GO=;x)hd5=tp*mJfo1FPPk7v?e7ChJ!B43gr#~JGgRUbJ7rdbJ@jC8e$KUOIUzR zQCF`pjembMoKn;9vTm05JuA&V1$Sq1Ln5*R9pRLo4)Uw2IYr2K{fD=4oIzOE~2X zhZfbCof;1MHlbf00sDJLAOOk$@>B3-W0lc%^^2pE#-fqGFcQx?5mqT`G`dGQ*Dr)? zJPO$_+>|ud-i&-l1ITA!4L+*FKlQVt!pt=Wt5gi~Z;mFCpqIt~EmSCeeY78zs+?l3 z-yDrrtWsq@Vsdvmz@In?zU>$X`F90Wr}qWDwh-ti3iX`?$BM@Tc%SZ$hhu1X;RFBZ zDD%n~Eo`@7gdZJMD7`%q0-p=IdJ^2)BT4yHNckyL{OTyaykvR)nYgf{Om+*|?9BfX zvWkz&}&X^TV`Tt_(*s~N0o{U+SsgVCi%zk9l zJ!aX{0N|wJw132m_QbJc{|H*jbC6I$qrB(-zo_AxVQfwzZ0JnoP`U@*oq;+mSHDEe zv=8Ugc1*%~bWgfE6OA8kbpaqp6b8*gUB+=c&hw=bXE={*U06Ual}MQl0H^F2kUJ$l zpA8MC6(DC5TFn7~!*5V0B2+^%h_zgzI&~ zSI>u%3noJ?8a&_L3}@(ET=+=_I~C8jH^9n}fo9+oouRW9rHs?7LXQVMT7YL!Y*JF_ z3x5BcCSg8Bbr?<{Y$5!)V(Jus0;psHI_Tns@aj8LQ7vlu0=)X(jaR%Xd;wlvRjBui z_6&UDSjsE>%B)ixev<7)xbmZ-!*YuJ0)t_m0rgT{;g-6YI)QnADay2n+nb;0?h^C{ za;|sjBKY>RVv~cIcNn;)06B;$azhqF4wuuioSf&~y%=mam@SPaufs*}p^NR+s6@Bm z)b0|HZc*+MdzywjXP2NPcbGAbOE}~t>cC|Heo-#SvEBU) z{Hg%&<@Q<_X-T={c;)QnApWj^lT7?W+GVd5_I7%>rjF62=h)Rp&=C#<;ou6)aKd#L zNsYQ2?Y47Q*7tNx0R)( zSnrk-%Z3}RtXyC_=kM`+zV5mAV0}NozwYbxc+S`Jyv}Q%*S-CE$iCM?N)9j318&mh zU@g#jaX|{w&KiqSc4y`J4CnN&^uXOuoLc{*7C^gv>_K}H4{Fb7EU;^d7PP1AL(Qfc zq^lokFJINW{l|Htk)!aiC5ZO#)H`V1Xz^SQ^^@89ZksNi#rDU0iCwdu7}`Y0vS;Itv*TzjB4eSKOVB_e~)xJ8_G z@@td*tUgAsd7Bc?=_#}-N%Pi@ixKUPf;N4mdsFRmdaz#eE+bib&3jUIN+{R6QN=mk zPp^4jA^GR^=9K@J&71n4*B#n_+~^QZbElhA)CE0S(@j9xI*T_IUVwh2CB2h27|$?}BECcXhtP>DdRHpGtT&=#-|7C^Pyw7J zor9<#2GMBulkP=*zSsS!&S!XNxj!Hd8^1*n_A%iI2wH|mB;jX0fO`D^aF_?&$>1Rd zhr2;%-)`QNdKm>CAsBnm+GSk4k@5zJH`APs96vo^Br^_kd*#qZDZuc?p=BxnPDE>2 zDh=Dw+Gt4|CcVhZ*W#~@VQ?CiUV&etdZ9Mbd9!OEF-Mrn9J!Qs`d`M3IFCPATt0ezq+Z1X!8|-+UrgIegVe<1xW2Z z0)U2H18MTFdYaVTZoh(OA@j^r+9&e^#JhiSpgo9={|Reic^O!=K)Ud|-dUM%@jC>U zn^5tgb&_<5S8536P)++gB8B)13dErs&iK#;9;Khjvt-=Rrlc_x25vC zx?53Q?O8*4ZCZUxuS*p-)x&t4CjWv|%w4^wbLWzWnOKuH+=grGL_*XQ-qB+y^H(L& zmOZ43yLxR^_lfxi2tfXKA^1GIHBVdbmT##Q8P@%rX-|7m<$V-w?j#i91rc_Gs`_tG zy}5TBu}eO%^m_Z>aHQNW)37?V(bORCjYAWP}xJ4 zQQCi1=eXqm+uVXT-3*Sq^b{5_LW1g^2R*DchV?oEKcglb^hXJV7k ziC;Ua!OHt4fygD$%OvNdr~GKSZt+n@i+wF^Xi;@b1G=pnjvy4RX$>M==nDe}Oa>&d zGZ-yZD8xr;2c25eKnnD;bk#nj#G01Qw8_uXT>D6+%L6PmsKgHqWjlX3^*=@j3E;$= zsRw+l*lyG`*y3uSmgL&uO;SxuTj!|nYS8_fmH?+C-H*=O;W)!2Y8j`fn&9vKkmApw zeXdkng39I;|FEGb{>M$6oa#;eM>$W|GRk?&VHrs2oo!y!ueK$G=6k~(!6M6$`m#3ST}C$@ zmJw9Uz`$StCj@XFd&i4T23tb3FI2v`ffo&OApfNjSd@zbe+_{4S5sPNYhNkS@eoV2 z_O(iw&N7tYXRvJwh3Lp|h%O2; zu!27!dOjR{z5NX=vmW>|BT$TU%I1N^c5k`}fUeZCcspafe8?}-(pkH}?H5gqL<5#k z6ViJlEjijn+7)T(Ms4a@d}&b>9KWQ1D^Zq2dLcluB~xsDi?1_zi5K}r0a9=3_lomu z9dND+G&sW>m^ph~Mr(bU851eLfu%YnM_Xd3qAnh_SoWYv3K&GkqAk%hrM96Do+Z%L z+Ni4VH<{pWnI$nYF8rpst?5_)?`wcCf^?+ZT9ZCY}(MFc;dcd!0h`FbcrGp;u z8}}9D+t|`k5BOaX?ls11m+BKwWsNPt^mhc@xzY;#C-5cOLmnO~ZfuJ$j0MlmNP{OX z*0Q89+!jP5o4AxDG_eHh0k@PG&?WRzBUFalO)PnOz#RpzZVI?xW6MnPPesirh+~m^ zinc!vR{cCyo&GPyQ)xV^%H(xp^uhNkN;i{s0JJ2BE)VACU?@;ReVClpdLj1V#uU zs$&(u*T+F5(oOOBeY*n)Q3heAR>w%1{Pybvp1K}_+wZ>lqZ6 z-`hKby}kjO{C@KaxEshEAib-l8LjDJc|>dI$$NE0zLAk1r!_W`&FC(ZVm$fT-H?y< zGkoyH!iRrHWfaHKT3P!;(rbcE=-~H``K^{CirOIaAg~(U~5oEp5A+ z@Tpn{nm*eSDm=9Cs1`+6dx9yxo52*-%Q98#WMVqg%hE>ctbl~xAa+sd)IOHsG^r_C zHID^gQ%zZyBek3f&wEp78hVkgN;W+Wdb*j696JF|V*7%lyFxSjf}@9tBQzau^i)7@ zI*7egI=>&>X#5DCl1n#$sWg2%TDIc@EbXOv%o$|72ED1y082kg9fX0C{{Z;Dp*IR1 zGr&@yr72QLwB1Vn12HywKTVNZI}?0TNOYVZ2s`P_*ntuTS%%V)zAhfBoNRY7aZI%S z!URcwGBh@)ZG&O)Y`PNZE^S{*23(VxK2X{B&wy*?L!e?D-5g?BPyOCOQ8o>=JgH3( zozMEGkVx%#6xz1+aXCFSoB2b(PjY65h@vO zMCj1)2O?B5;@=~*a3plNB2+f={}G{|TY~9dBh)+d-y`H`4GD9E^0NSpqqSK^gi=QT zGeT)&%n_pEG5-wFn{A=zUqci&4wNa>VZ3Dsl^xWAsboAtEsg0^L7in04(dA*&o5y- zShE>iM$3nStLJzNmKWOFTyz=I1m-Y9H&lrL+Bv}zPb0@D&SYn4L}OOu(54Ful}xmB z)Mgm${w7URC&AKVOc~;g+U1~4Q;q8LxC@MSf%%hB_NW0cQ8d|-ugwxN<(6W3frWT> zp$E=3Yy{B#DVBI`j>`K-H)bXWmK)gR!fd!R&tS!n-%vvDXT!+*gJEQEj-@w`jJ>JJ zG_)r*dZE%LOvh`2k+B!OG7STX${_|H2FG3$o`b>fLfVyM8HB;HH&G4@F5>(gEni^5 zm^fNntkStrSU=IGL*@wuZ0ZJM^QXhu%3+3LjE=qNS7utOm@q{4qNy`rJ(ZuHcp3Qz z76dQPfZ!nm!w}h%N%f-N*{-B%T*eKVlV1A z6IK>Xf)zBvLn-qn-0L$7{z#Qs$*olyVI8U^74S?FOkF6dCl;)F&qDUhEJQM7ii_YZ z`88Y#XU@h0U&F#nwF0+}04li+f6mT^`pI*^u~w0w&rGUd(z8Nxmi`_t{M>QS;cN^8 zm(N2>cwsJz@f!EYPJd|-A19@7Z!tXD}glF`86t5%)4vJjmJYeO(uw25z z&WcA6!3B_AukzW=unLDfg-$nQ77aj1hUJ0h1*Q0S9!BHUXSnFj+>gC!$U=zpyMWr` zw*bo-sZYYp$%Qa|-(aJZg~0kRvV=HmyzOF(dkRn)Agx$57uLYwv~NCCO@16B5}$W4 zOJQ}37(WVJdr5haGXyU6S`5bFGvUUq#g^XAxTE1z@dP4Uz8K+qg>EjktiX~Aeg+jj zia`}<4!X(@P1uhgbFuSVPC2s?S(lmsXYpZgihL5P{Fg%28&qehWd+TfV~FOKg)`Yf z_uUZ2MQ$n8$8V*6PvI4DdzJbWRBdB$1?A6!s*I;By~VM4(7KE zER%8)l`43`kMQpEl`!z0 zTZLiNO9mhw%WiMH=>1g)(_7SU4IJ=Z4F~qB^b}6-Q|Ti}Q{`fg;Tm*`P1hj1;0cu- zqU~2q6+p4JB8t)rz!A075ZJ}pZSHK%wcz|vaX!ZBk5u|3(v<#`A=TnpWY4;@g~)23 zD9%4Q{i#Y1b%HJb8AIwl&Q@E7h|QnkL+1-oo4H}3iq+sawB1sTE)-%#O?FMzKZoe1 zuc<?5O!IF&RK`xeq%!MD5AA*J%B6#cPRwdDL2?fjs2>aAEdmA z*$Z!alBK71n(FL@sV$s7L%Tjj+WUE|cAix;x6#jAI?~W*f%?B_X-b!$huQBb>qT@M zQ77=G4q6YBKPaGNJ&2c8`VJE#i$MHQ0rQG1b@jlXROW(YepZ>BBVbK?0rRuKD+)Qw z$ZkQdD#UjKOJ7r&f|DTUZD4`x3c1I~B_I^G4lmK<7coF9I0mfSi_BHQTx0aWO2u8# z8w(^gHZtX=LZ)tH^}ndhzCIwI5%RCJ`DIHlO5Fr~y`P8XEiWS+$kw78p;(IXegzNk z#wH8;>EGR~wJ5Wg)%{^YZiIpRMzO`A2mWb-&(A<}{`h7K_80LQqeWf4$9p*L&KGg>f69y z!>z?-c|A}Hd)eetZCbM(8kRNoqfIY!ZQE%Xr8JamhlW75_zYG)40pOylUJ*V$L~Zb zOBjRb6BxGQ4Xi~4C3wFQN-RC7-RmIX4Xw`D94(|Oy$$Vs+vZ1YUx#UfNd()-y4=4I z0%^^=m~-CWg+OllFI)_DYwSex{>w4m4K&P+iaN8@KBjx59;8bz81w+W0iAyv2H*P< zqTz1UgA~e9)gs)eC=`Kc6R!sipoQ;LQRDHTKKbkcDblS=id0jXDPmHTn`Dx5dcE(b z2YIACq!vn72Mpe=kCVbwRYS zkmeo49uM43)DjI90tV5web(yA=eUFL`H?E*wzTuV9;aMtwvESoEN+K?2)C1W|AQm% zLrWvAMHNkfT#7`kyr`VG|LAt$4Z$+9G>@(QHK1H_Don3{jmdc#DSO5}RIiG=J z_y>kSIkH&x5mLX;LF%>NAbp4|7JY=&><~z@xKi*j+R#^!#X63Vf(|3yol1{ca#iy? z|6^$Q{Fr5+8kE#If`VLgV=^Aud<4V25uX@*G8&0K3ch1*Om?JSVJziS7oXaXJ_e}7 z1x=ux$MC!ii?da#=W)wyZ47ldj{O)+L!-5^Dvjx9G}aCnmu;Dt6L@jPt2}SZY~}m} z#Vgw~O}+pyQ305Tdee?CF!q?F0PN0qQ~Z|zCMy7wP;V*$K&i(qBT05?5>FzVbOZ!A zHIOg`^`c!TQTTlZCc89`d;Nt$oK~HQF#ile+#RJ-I#g`r@+_yD}zs- z!bZl98kjr<$7z^(hV@UT7f<6Q6I*gXK@VC&+Br*q8LJ;SkEUSt89bxoUqh$&IrK#E z$BS;Af$j8f3=IBw)AX}Yx9s0-oYOdEz<5eI(oU7$$?4}*I`SgYI9I?tYdG!F zbKjKCxn${&iL>w^9Z#8$Sur5|4!+`~0ZR&+`yJ}w^CsX%2&%-T@9KMKAi$vF|Mz+6LJTLb8>LW8M#te9;3+Ag}*`2iESCN3IpebNFTW zvdP1WXX{0WEo*Y*_$ZfQz>XbLAVSLx0us-yXbM5RvdhsVq7A-%^ z7H9i#E{59wY)L9SXGY%n8B4jZ8vHR7cLhVVYX(c+6-$=(x`!Hm)sm#W;mH?Xh4h=A zyze#8w@7}(HHdEYknS>Rn^F$DF0s}HSBw2 z!JA8W*oH{OjPxTzs*mh~Px&4E3xC5~xtlGfup8|#Cq{a(!N3P7%y~>Cen;tdyNa{# zPfI`E>$F5fyO4-S?IB#`1e*E>)ZhC9-1SV{^kxMRgB$W$S~Ok!3%jcuFM)sTU#Mqq zD*$f>&LlGM4g*;@Z6SL)3?C&KL+w> z=XHc)%PlNwNei~*Hb|c+UTMCxJ9ryPZn~JH`C0@>`>cu)hfBZPsH*B8N$>vVU6iBf zR}Q&utwwk6VlG=o9qw7?W1Am89msE{wGKtzhuSX`u*wBs#TADrg1%I!&n(5}wJyr) zubo_%Xq}JUe%7$=hBXOObWt{0L;4$)zRc-wsg7Ypc3gCblYy7jG2@NSn&{mY9=7`VF1-lz*Yu) zO+Z^O0DdOmFa!Q3V3;?68YbW>12q*e*$1HvQ0ZHo4piyo)sPNS>5%G3*HY;%oUX0X zNxn!2tMnmGJ5)Nu&pMy(+N`zdnxD0!7AhOAo&2pGsM3PQy=|cl{Y@Y$M9U+#+D`vl zUi7iQ)q%;zi9XoF2Bmso4Qn#pv4VMdptYAe0x2uRB{jepNs9xm19@>coB+6?;b%a+Ihy~0D09aQk!1>2;$_ui3aTB7~igv4YEebPslYtI(hQFqOFh6 zncDCrWRVYZx1ggB+Z|LM4Gl@bF5I^sv~=}I9jFJX3WEx%NUC4o+TCMF@~u@nqO9Mm zk9ywIVK%h00etD<(Hh$jS~Ek;EaBDROKC&+a@D|ZG=wj`JyM$*K}#PaA4#^x*6vjd z3Dlb2Ym6q&?ZElQc(Yfc)=*IsYr1pXimKKwD)bW1SNx_)=n9$gCDDv#oWI zw#FcvEqb>zTQpO0Je23!p$U6G5s}!^72WjBcGel#e%ss?ZOY>I))`dR+91_PMmDdd zk==}}wo!2=rhqi1l|ed)EOy#NNxxL2H>>nTq-jw*yrle3@kt=( z18932ESY(A#M9~3*6OXrQ=M+s2-@Efy-v+kdn_&JXvK-Lo3y2qHIDw*(b~u7&Hp_7 zAM3QN>~a5zaWg+ec|O)OTGI(p+PVk4b`9g$U7hjv58|K3^zL)EM{ouvlAK+@GnjUC zu})#VpQC|tRbPuDIQTwNtbR3jAKRq-HGK-OQE??+P+XkY-)rc@S7G8#w?;uF6H85xTB2?Bv@bE|J zE?}&W9{iJ$j-?C180fSfjM^FeGcC@r;s~-27H8|(eW_%ywT&KpRZu=!WTj1yTI*Bh z5NlmM_?m*thFE*)!Phx6lPLk};otbDs@hcE!0uf*48cu))apk&`(V_vJOe`{Lv=Sw zPBSp*ZR`=q&A_)b!8chc(eS=5Cd1Qs+Ax$y5jlQz)u6eR`r`a4CbQyN+u^V~FWqDV z3;YIE_9ndgDdHdxPT3>a_#ahDRNw8Jd@m9Fr%T7OgK_pUM z!+`20U8BZ9*VM5XdR!Td_Y1`sOoCMa!z9hn8pLQcg$-3q9S9Bz79gj19Co+P)|j|K zY82g=0M)n0L(Rh`HG(dj0E77%Rdj(6jp~h&29^XTqFYN0!x(eZL~9oH8V*kHN!DqY zwHfpfbx7Oc!;NMTZOsKsjmg$r${T?c`k879+YAg-IS*6f6fo@^S%v8!FwEvWO#P+; zsA&Q&G7w+_re^~PGy&Q)=$)Jey-72yJzN9v9E9M?G!*u_n;crsI#H74w+@;Vr?K zWkaed$+BUy$I+CnW=Ozn znQ~1D%M(eM9C}2SG0?yRV3nc{CCpT%)g28z6vCo~BGJy-Fx<#Q!WxE))N~HwkT?|{ zmCdnsmeJ*!`H0UJ;P{kLDg!7JFjO|uoz*C=XfArkktS4za>4V^a*r~hGM-z31 zL0!%H0JA)xVccP|Yw}3m+TmP?uC(w8^gxfk4i`rYP`Jd}ghKL=AH(_Kvcy;X1jEMmkxi6To}rjd~FLWC1ghnAxNyai#@^hs2*_n(A@Tt>6h(uN4Dmu$LXhT@jk zyD&7l7B4<{3PyT84e7_+I?bdqkZA85n7HyZmTqR!^c4u#{?*1Ko27u%HF#zj%b;d9 z1L~QTuZHf^49=mOD_qY^z+uawHFiF<&Rbz^&o#jH*iJ6T%lO_CX#Vn-TOUD9a6P#p zE0Aip#D!DdV$^YYq~9>%eK+CmVk{>KVdzQ_+ApnQqHHA^{Ot?P+5xF&O!53CvsLUyT<#F<)hSO2tDV92ne6EKu}z|0wmfHUCoT>;j|INo&y)uP?BsU}nbO zpIk4ncG8wm;#%uc%!cqIXBxw4!&*cz=2?iHIE`Ue-)GSvf4CH$AeAI58^R%Hu^q~>%&+yef^Z7lMggP6pLl(S83SOh+on3 z(CNpYR=>6mI?LUdd~RL65TRH_YoEtZNEkc>n)+5~OluZWIJ8A+b ztf&e{w3(Z(R3!#bkC&=&2RQk7o@1RntJGp^0&RQ=HCEoump$OT4Hz{ZSci!kFJ1}X zPk?w+2G3aXgI~mZvZ~O`@+lzRnK4*eZ?wkKFfy}j+h~o`usLI}L~gP+)v!5ZT^&H7PP{WdGGL$K<~hDrYl_{vdev-#`gcRnA7*%hcgz z>tJd9^Ik(WN_ZLSb}%?s+bJ~F;e@<`4hLH{U{)Io>s~>%*`)yKX8c|S@LvI>hgrsX zY^zjJU+pzRz1yZk+u_`W55Km)X6-_2`(oif_YG?Y=ki-v*L)o+-lm(cSqIU9*U{L& zBWY*;ZPds&K-;78w~^n+`F9m>%$wkSPo-bx^j?(?+k#5DXfxt|>osd{T8AvYIu-T4 zTao@i(#~`Du$sRW6+UZ_%bUV&pdL`1b2(iq>2+zm?7Iz|r#Bi(r)-Cf-kXf<_sC)| zMHN8<`-B}}k1Ym$`3~zq?PJP1jCP=O7uHdwE0MYAz@1=9eHl!X4`V0;>L4{q{f-HH z&4iA8d^((Fl%V*ZnUu*CR@(*ia}x>^VYFr!p5-AoItL$@dYo{N)CzW?I`9~tDqk}> z0(-mBF&(AF`_Xily=84q314H=WA|>DI%YzH-@@9(us0yu_Ai?c9eoRH!@=L6G@IT6 zXPKLG1oe57t9mnx<=(~=Mxr1cYVq4({KC1m8ODZhTW3?s7Bio8rkmad#9K;^lLlW0 zX=fpeTP60OwteL$sD`#|4??(Qt4r0rJ=WRUHy#!)zB*P8K3DlSY%|%F)nlRMy$9{5 zWPc#?1MqHr54#(yxAT+Tk2R);_FCI(XQXPkJqYsXz1Wz_-vL#(y7~|#QYe2chWwU& zDCIdrO$z1ivo@scoo2rFS=bx;8+>%93SJOw_oJEb17A^M=HK`z<{LK|5836x$7z>5 zR>btrA5=9h;Dr4Q^5e(j8b~U?w?AQtyAPs6rufkmR}l zF;AsJ5gCdw~bu%LW!R+lct>RxeF7!3K4*cu3OU2bmxA0=NP|Nxa9?GX9Kv({k4l$wT2twq zhheANVblwqTZ+}#P{q$sDlNmyl35SLaYqpND<7(MqA!(A!ldpu#)f@lVCPR5%u9}f zaKufxQ6J1Tj{$4{KZAMH6rL3V!^|C~I?{~>*x5=r4nS;s0559ukd3!^!8V2RzkrcR zAEMEU{MgV1FY&dBJDboLs?*9aY2)Li*FHvg(a82C_}7wpequ<$s{mFP&8J?uuy9EL z3_tlB$q-++V>M}2E_Nj0ofo~Q+dQ`0u-j&8>Pf@1jFZ+rnxDLn@1L}e(fpkU^8=~q zD+~;Ve}!Smn$Pj#9?D16`3i%}Ysk^*uhG7st&PD(?TN3g-3Tpg5bgOIF$rcM8ymHP zKlKe1WFCe{$QWBS>hmoc9#5+p@hu`8!i9}D3F@5(+)&tP<$26=BEN!#jB|MZS!<08 zhE`?eNtM?wx~%@q`No92vYK0td<^ININ9oD&c||omexeEvDK3o0XG#kYIn&RtHmi1 zHhJ)pp;DP_@tx%RH9?3+e2on z1co=mqg%TSrUTy^f_*Mq$7?N2^uL*Y{FFf#+cSTJl2#_Bn*iv-X@jZ#Pf*gvMF06G z&@0XubWt+yXJDHyRKYGXcKWP=HNAo@r1Wz}R>V$S0Sh*BYf=5H*xc(aBj5#Btz)R~ zcX$POWR6@aHNS>_XL-2`ntIJTrtqSfUhg_y)y^V4{5oE!E=Dqy0&jrSRr0-WK=ENi zF&IleYv?fw^1>P{V=ZbtA`k?}=*eO527VrN88cF+1IS~k2%evd0YE*U~m3y*Mr+iAp z*Suob@Whvz>NYh451Fb+hEIvuYnS4P=LJ4C zSv%K5R+`8>E0H}#CR24E=wD?f^Tr}bypB^=%{JULlRR4;0!^wxV2vV43C>ivdD8(# z3mAPC$A3jm9EFHOd)BQejHdY_l1{g{@+8L>ihcZ`;yI?|hSbzy|-#B0TQnfws~v>q*0$BvLtc^Y=0=dM9X$nru2s5DAnmVh8%bV9 zP8g;IgJD4x=n_NYuVRM1#sS-d9jsHWD6Mut!SLEKMEkxfiChqhAPY6&#{U#tN`@(Fvkmn|8;kHrq`JWgr z-zq{6GCSOsMk6#E&isWVs^#JEqpxmcTSeH~@xIXK@Mu|t4VU%Yl-I9&q^&9WM%wD> zAzvCmKRx86GF1|3o34j^?as7u-dl$?-XoY`tc|h->mlDLQfUoChH zg_hM}meU>tke!O6 z6ZKffInhyApH-aq*m5?tN72RlwqV*|GbH^RFjKjQi5-fh$_A)@A++lR0u|ZNHp65q zsv(^5ZiIeO*>7TN?eyOjK>lB0AbPwpYWn9vsOguu7sXdotpl8CMJ_^eV@MtMXWNjX zg2uKXddT;}NSUR2fHVIE7bo{ObfX5|C2)3^TQEd*wO9_qWfqZ(LgK}u?CSXhD81bY z7b>-;)F#aN6LUUKjRQfuIuBF%`%P?1^^hxO=jy8Kk~YP`b>BFay6ti)&NhUORWsam zd1zvnrO%MN;*DGwB0A2-vyK~r5^fBMCxO-U?7o6?G`4wcqIB7}+=K$QpdYE=0Fx^~bV*zp%q zYI|Ep&Bkfh#Uren?zBgBz3xB?%G2cT5mqW6&xJmuxbeN9Lz(hVfvJZXU53v}SS?#k+zI@UA+i)eR(~vUf*_`MSVp z4EWiO)W%RhLCHTGt_hsk3B3L^y%SukK_|M}2JyWi(O4~zwA>f+MQ0m6O#K);Kk40V zSQzE|LV9&UUmPe*a$m^DT@bP$l`n4KP03x6ucee=)ysr-9}D<7xuxE<-v0(Rt4M?S)aJy z8?sm%Fi>9eWp-NK2XVzBfs4?)Fb!qJYJtHh8*2aqq$vxFKs8-43D0^{FIy6?qz5pK z!uvu?Baf6U`mRZXJA6rUXk#9GWzdD^&@t6cN3n2JB;A&WWdg>XtIv8dK<@wqWp8+-p6-AN^y%OQPv{c$7jZ zZyioTDFTIV)i;UF!bhAQM!u>;7-fIdt0A6^S-%>{^%({m$r-SbY!dZvi<@GYa)>D@ zic*<@QFf|{%ecXVIn|TIJz(r-)ChA4rVWRmVX=mvLUb467KnT^m`iLHr8lXoD7Y1j<P+DA=%6 z!Kf^22>SjcII@>RDUQgZM(AY7V?{tXc|GGv21ZebY`nU%4)hxXnF^4LjK@v^kfi{L z&Q}1aS~B$Z%*OOX0@PzFnD7NJtC7{9_W)27_lICgR=4#w%m%i_g^lG8d9%?g%X*My z8szaMFU!kf&|?hXOJ3%Xt9dUnfG>HOLzaH}_PKKL^ zOC!4F&Pp`Ar-OZ(VwcsOxd7-|XNW788LJ|}=g;*Td_WgX{dQN&O~w*=t(C0sZ+CNUVc6ztC{ zaSp&2oL{f>qXUlCic}gQ@TP-L;*p-tFq9$`(O9KmUnB}Uo`UR)ieI8o|7idl6(Awl z0D!zlKmk6;@u9;{+a}Q8V=&1qUWO*Pcm>8Z7<%iW#oPkbQmB0Ge(xESax-3GQB4|W!eXe?Dl`ml znlUV(ud*fRp;)DG>knORi=n*nCdtP1>dbx?8V*k~Ymk8_6u5>fILA_CYo*qA3&<8wxDH|qotU_V z?h_I(JUj2N3t|EfovGRssKbIy9Laj`qN5n37p%jBUilo1EpStL$=7+qAj(0+(EUm! z7Jr>1onb8I&_i(whF!qAuj5&)g|aR+`@)f!B3p0rA8oHgn+mze;*tmPqImLn>MleJ zO38Nl=<+^-`WC^%_Rqt^?FLQxfBXbo6zZuww4`Cvz$c{>|Ksc~Vz2cOT`|p2%gfgh z>F`!0r47F2mgJH+Qy&tdgC^xDp=>HIf)2yA1uBK1bv0V`f-OrA{gg+{L7Yk9Yc+7a z)&?%~X9~{Sz&xLOc;ui&`xiNahZLIqBD3ILceffjCDC*v^Bhs|h>gs1)Wjo)BO*58 zt-mq@o{B?#HZj+66PFy1@GWMC$`stbn0Zckc;s-z-C{QOg+iNdW|l8KEF^~`u5U)W zRW#Eu7XFeg3n!zEtdw6)Mx1{MPAvpM_Uxiw#Zqee%cyr1RiJyX+rreG?ps-J6u#Up zx-U(6h21^nLC?KnYpREyHh?L5=ous3nW}fgf?3oSycm4YJZ`Sp?9|t6jr7oS9_Aab z+2Zuj^8%D@v2~%@uVWc<{XCZtpw0xxV)f8+gQqhYPT?5y8(f>_o4Mgzgc{*r@<=Ry z)7DTA{mugzPNH1jdr-LNpsib=GbhiZ6RpB!(stN}(Wb4ocs=w-m5JSkhVS%3gu7@5 zy1r4|2&JSUT!*%CxPDe#Dcfy{bYzi<%Tf3i+P2E={K8#jrq%R*zM?PHL$A}?9oQyV zuoGfi76bO)f#uuM{(3F89z`)FELXvDT`0fAmaK(A*L!idHV>7k z;9Ug4{~e6HlAktd8Lx-lHp!06!2D^`KAS@|c6Z#QWSTls_g8Aq?%^`tb<;3@&(K2@ zZOXe$yXU4gPz-=v~+k%QbHH?=^;91y!?-!>he;7EGq2exdAS!p;AQd8Yz1F8?nA^5uQ9pp z@d2L;6oKk-1jfu%FRT6kqP}Iwq6e%&WgpunVJQ)va0sVyT8ckEi24LRZ2ttD7Yg8m z!P!h*x*PckdT%~H85ZCXlp&4C{moAXU(2$}@=tA(DDPS5m=exwKI?2Yw;9*@o`la} z>x0i=>mjEtR8e_JO`WF{DnB1eAs1CfH-gJ!3YIpq_z1S<8nee6o`bd9Pol*uJA?_I z^N_6(F5%}bEaXSg79PfIeaaxuJ#35B!VGc?x^WmI&PpCg40{?pqIUj~Dr$j^GFcH8 z_C#TL+i-XE37ehjjkBr?Ep{J8z3KBjbQYDN{bVn(#<{l4)?cl-Y&?cY4O_41J=CI0 z&~a3oI>N*&E-N@&SIO{-OJNyADqb)|WX)xE8F=b3&rGF$98EnTrn0_31t}ha@B3oE zM6k~Tr3)J%JoyW>)SJFRs@oS3Zb0CiPRCy~NQMkn#+hA)x;svy+DjQ4sqrX)R!T|r zlPKtcjV8`kxGTqt@=jvX5aZ^~z#=I&UvY`TSGG*rxe5H3!&axfud$jcCQp3@Z{q0Y zER4Pd6(9S24fSg_o7hL-!V6*Q^R2B94nCn=i(WG5z>?UnXk2n(FeQmUVc#Npi(WP{ zj!<&mr?Jmm?G%F6oV3#jn%JFr3f{C3K*TSfg1FDC5C{K6u=YD+!@VRN-_K6N#g$CT zID-W(5pQ({;;or!8Xt#p^9G$Yc(VN%eJ7GA=8S764(T7w4-i3cmbb9o?#qD#KBjiJb$Xp{JeG;-}|?Dw_? zv;z=L{sBu}Uwn_%i=+}Giw~c%C-2H;VIec?2Xt)#mw}$$Wia78XZ+jEe_dI8;_OAg zTt@V78xZ9MqyHK4Be3PW4XFb^qPq20x13D+3C$_ah51v`Pl)3HH=037Z$m)-)CEk< zsoKwQ_fS=AJ}~?vB7f%n&d;_KZHQdG<$VQZy|xEs>Pz7B_l^tb(I0wr| z#&2Io-IT^X(?gL%w(kHV?cikm1AJ_-c*Y}+Oj^(W-=e!+`AQR$5u2EBsHU;rNsvNh2c)d5G> zge3h9J{|l6Ed%}|rU6y^4I1#(;2#)7;Nt_=cZ6Y66-(uBww5>x#q9E@FjBr3euvv1 zpaSPuRYwO0@rmmn(3is!OYxnb2pA7L*3Me@^7IP zl&1MH`PUWXlemkC)*kodWf|x8U#PbCk9g#;jm7_|IPGt44i1@dSaH11-l!rPp9)W?U;SOeG=Y0vOuDSX)8jC|~N zf8)~JIQb~h1DC05a|0>ThVJX<4^XP*X2Fiy3UgNez`{z0qj82j%4S#X0nV7KiUGBq z3_}t0=vqX6%eN*{Rbyu!g2$^}+GpaL7Ugdz{*Mf^iHe62&#+T&J*EQT?%p_B{SOk` z!41CngIO;WiU;O&{}d+8ct@n~ z+nr8w^{~fWY&E!Bd{)sZy_$WdMpcXEwn8b@5rXGs^qJsqZ%O_&?ZK22Xb+=fOeqpd zNuYf)jqpYO1%tB%?eVpDb6sRv7G$473;jS>cUXEfE%e8IgFgPC$e(2rD03*e9Io*J zY2-vtC<&jmd+HWTXzZ&%Y4OxmmWJA{d|f3*)5xb`R|64|0LNT%tx9;*3UP9P9TNq0 zuub#=ZK{Wx!Mj=^fE_gt^y;!{)YZ`_tVH>|iAKB&*$eybQ@@d1WlYIjeSeh9k| zBkwdW?U904u^L0G8?vf1Rc*DQd-sj-8R}!m3sY-+1BaTC#n+>#j*enAv_T>9_D-}j z6Zg5LHb$h5HD;w3n6VcomX`>=U_plIL_W$-T#7nQt-E+O<_g)w#z0X1}T_& z+YOy^35-GTqWN*`*-vi&<&G7luP~lTKQn0wU3th*AnxPx6mMD(52M}*%yrf6KmG~9 zOrzrRF!pR_&(g#2Z653So#C|VhJ03Ymj7MRjv_9y)qc!*+HDj?@9j#!{W&GE}s*2mX)(WQ;hSfrkZXT~k$;W~DoA3BeV4RU^ zPsXfzSE_xP*2a+UicfIds&;kYb~e$j#>S#OyrVtk*`~NyflbXphEkg$PPg*y)#zwP zdvBA4F0?cWcRH=;WbaQWlhGsp-N`;l8!g}b&hCulWOi~AE(pX=S2dY_p$l$R>~{sP z)u=A^M`Q|Z?P?Fv7C8A2UYm8b&(`wfQtAU;?U~vtc0QEacC&ZVaA9_Ldq+Ch%^po9 zsc>m;cY7Q4M=puop){$3f#JVg@PA*xG+dP3-98TI;6-%u7Z|>e=>Z%!W3#RUJupnf zA8~V9{>df2Cy4krZU*F!T-Gswf8k~T|KoyHGX^#&K>o`ms}}(L`!;jPU%7nBz(%^* z3x+o-{4W2Ui?cWIVg=w|TyXuhO5^`q@bzgQ5MNRN{=+3&!}S5}P^W+IV^7h;F*LyC z*FDqhZT0Z0^7LLvvyafjudx9BqpGjHC+eM~b2$BwN+0L+!zvx0jx;WXXZ|&u_EzZ% zq-pU$%uCby*?Zv>rf}@+2M&Cm`70JFef!%d;DDo%cK!MLxBcNTKIC_CxNgrGFaVD- z#DvOgP&NR(p$fe>0NTPl9P%1`HV_QqZg2?o8H6{?V{-`o+)n`1qadmngxU~6YgeG| z9UF`R+M>bsR=k|&0&;K|(nz-;+@aluR|#E2OueV+cB(zp-i#Lu-RS#&;xAlMGtdow zo(@yE;mxfcS5mj*MMF0LdkyK>qhRwG6)zepKV9g(4EVM)1HRQ)!T@rxfGCQDxOW(Q zYv=}CzI7W8-x`@vw{LvOnHJ&9S`tK=e^~6~JKX*VrHz1lF>ZD-*^usyfO{Uh3YCwC zBGliF#*eZm@ePKBqwvT&Nu>hx7{2u5)`6+~|DBQKp9y*w0aG$T@9L&IhdCoDDhuQ1 zr_xYW)3fX|@VOsLj~Z2GIi~M6+54t$f-cOE=$4@~6 zzF`9BeFfyvUpxu=W?!J0f)-9emtQs!`F@;VkI&ig(?R~JQ+TD4V7Uq)|5Im*(y(zd zB*rQff7m%x8)S%i{-!flu}Xy=&*Xk`?*4ub{F*uy@=Ux@M9c zmv_ZsV_XQu*&xUVgNmTOKX9Gy7mlQ9P>5C-Zu0+nGA0-0MGO-Rf9mN{H7y5>Qw5~b z9C$uL(w;vU#ov13n@E=D8(<=E5mS|jwwn(5e?;_aMokgToq>EmT0G-lBKlqnoVkqn zM@W+&hlner1&{wXkOH}f&?l0SgoH4jxkM*(sQB6dF7$Xo^Bz`8fR!oYL^#p}jCeD4&OS zNbZJ6UkuJX#fg&-(Ue+=a$cE;M)}@i`$!7=%gEkXf|(a?z>TERC*W_!qfln>HKOn( zczbAdzgukg%u~%c^y8q&*;OO!ZCXJ2g?o;;GSdj9ti-8Ta@rF*`R_o5L(am6t_D!3tjg)m1q_e^j;*#g z!q^Smt<`DHc56UfuYlESKrE6@;P4tu>mMD%(+WP&7q!-|zIZNoqT~w;FpG+KO?{Kh zBsGTrr2tC^lg654Cg>4wn7Cvpb8RiS=8iLQbx}87PkI(>5)oTG{4%h)43xG`Ftf`z TUmTh0e83Td6l{rj?LYq?`%9qx From 53f1323cffdafe797d9fb0f664b5b85347b5294e Mon Sep 17 00:00:00 2001 From: Niziebi <84825876+Niziebi@users.noreply.github.com> Date: Fri, 24 Sep 2021 23:51:46 +0900 Subject: [PATCH 209/394] Reflect changes in CloudBurst / Nukkit --- mvnw.cmd | 1 + src/main/java/cn/nukkit/entity/data/Skin.java | 18 + .../network/protocol/CraftingDataPacket.java | 2 +- .../network/protocol/HurtArmorPacket.java | 3 + .../nukkit/network/protocol/ProtocolInfo.java | 6 +- .../network/protocol/StartGamePacket.java | 2 + .../java/cn/nukkit/utils/BinaryStream.java | 16 +- src/main/resources/creativeitems.json | 10404 ++++++++-------- 8 files changed, 5242 insertions(+), 5210 deletions(-) diff --git a/mvnw.cmd b/mvnw.cmd index b26ab24f039..d9dc4a18c8c 100644 --- a/mvnw.cmd +++ b/mvnw.cmd @@ -58,6 +58,7 @@ set ERROR_CODE=0 @setlocal @REM ==== START VALIDATION ==== +set JAVA_HOME=C:\Program Files\Java\jdk1.8.0_301 if not "%JAVA_HOME%" == "" goto OkJHome echo. diff --git a/src/main/java/cn/nukkit/entity/data/Skin.java b/src/main/java/cn/nukkit/entity/data/Skin.java index d0fecd599f5..4470300763e 100644 --- a/src/main/java/cn/nukkit/entity/data/Skin.java +++ b/src/main/java/cn/nukkit/entity/data/Skin.java @@ -45,10 +45,12 @@ public class Skin { private boolean premium; private boolean persona; private boolean capeOnClassic; + private boolean primaryUser = true; private String capeId; private String skinColor = "#0"; private String armSize = "wide"; private boolean trusted = false; + private String geometryDataEngineVersion = ""; public boolean isValid() { return isValidSkin() && isValidResourcePatch(); @@ -234,6 +236,22 @@ public boolean isCapeOnClassic() { public void setCapeOnClassic(boolean capeOnClassic) { this.capeOnClassic = capeOnClassic; } + + public void setPrimaryUser(boolean primaryUser) { + this.primaryUser = primaryUser; + } + + public boolean isPrimaryUser() { + return primaryUser; + } + + public void setGeometryDataEngineVersion(String geometryDataEngineVersion) { + this.geometryDataEngineVersion = geometryDataEngineVersion; + } + + public String getGeometryDataEngineVersion() { + return geometryDataEngineVersion; + } public boolean isTrusted() { return trusted; diff --git a/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java b/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java index 31d40850681..a13e4c7a622 100644 --- a/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java @@ -211,7 +211,7 @@ public void encode() { this.putVarInt(recipe.getIngredient().getNetworkId()); this.putVarInt(recipe.getResult().getNetworkId()); } - + this.putUnsignedVarInt(0); this.putBoolean(cleanRecipes); } diff --git a/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java b/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java index 81b84c0d29b..20cd903520e 100644 --- a/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java @@ -18,6 +18,8 @@ public class HurtArmorPacket extends DataPacket { @Since("1.3.0.0-PN") public int damage; + public long armorSlots; + @Override public void decode() { @@ -26,6 +28,7 @@ public void decode() { @Override public void encode() { this.reset(); + this.putUnsignedVarLong(this.armorSlots); this.putVarInt(this.cause); this.putVarInt(damage); } diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index f2b52d19ecd..27a54e6fe14 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -17,12 +17,12 @@ public interface ProtocolInfo { /** * Actual Minecraft: PE protocol version */ - int CURRENT_PROTOCOL = dynamic(448); + int CURRENT_PROTOCOL = Integer.valueOf("465"); List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION = dynamic("v1.17.10"); - String MINECRAFT_VERSION_NETWORK = dynamic("1.17.10"); + String MINECRAFT_VERSION = "v1.17.30"; + String MINECRAFT_VERSION_NETWORK = "1.17.30"; byte LOGIN_PACKET = 0x01; byte PLAY_STATUS_PACKET = 0x02; diff --git a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java index aee35678b90..50a8a985531 100644 --- a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java @@ -136,6 +136,8 @@ public void encode() { this.putLInt(16); // Limited world width this.putLInt(16); // Limited world height this.putBoolean(false); // Nether type + this.putString(""); // EduSharedUriResource buttonName + this.putString(""); // EduSharedUriResource linkUri this.putBoolean(false); // Experimental Gameplay this.putString(this.levelId); diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index 103579be318..27650b843f3 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -286,10 +286,8 @@ public void putSkin(Skin skin) { this.putImage(skin.getCapeData()); this.putString(skin.getGeometryData()); + this.putString(skin.getGeometryDataEngineVersion()); this.putString(skin.getAnimationData()); - this.putBoolean(skin.isPremium()); - this.putBoolean(skin.isPersona()); - this.putBoolean(skin.isCapeOnClassic()); this.putString(skin.getCapeId()); this.putString(skin.getFullSkinId()); this.putString(skin.getArmSize()); @@ -314,6 +312,10 @@ public void putSkin(Skin skin) { this.putString(color); } } + this.putBoolean(skin.isPremium()); + this.putBoolean(skin.isPersona()); + this.putBoolean(skin.isCapeOnClassic()); + this.putBoolean(skin.isPrimaryUser()); } public Skin getSkin() { @@ -334,10 +336,8 @@ public Skin getSkin() { skin.setCapeData(this.getImage()); skin.setGeometryData(this.getString()); + skin.setGeometryDataEngineVersion(this.getString()); skin.setAnimationData(this.getString()); - skin.setPremium(this.getBoolean()); - skin.setPersona(this.getBoolean()); - skin.setCapeOnClassic(this.getBoolean()); skin.setCapeId(this.getString()); this.getString(); // TODO: Full skin id skin.setArmSize(this.getString()); @@ -363,6 +363,10 @@ public Skin getSkin() { } skin.getTintColors().add(new PersonaPieceTint(pieceType, colors)); } + skin.setPremium(this.getBoolean()); + skin.setPersona(this.getBoolean()); + skin.setCapeOnClassic(this.getBoolean()); + skin.setPrimaryUser(this.getBoolean()); return skin; } diff --git a/src/main/resources/creativeitems.json b/src/main/resources/creativeitems.json index 6df6fa075da..dce183cee09 100644 --- a/src/main/resources/creativeitems.json +++ b/src/main/resources/creativeitems.json @@ -1,5203 +1,5207 @@ { "items" : [ - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5770 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5771 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5772 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5773 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5774 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5775 - }, - { - "id" : "minecraft:crimson_planks", - "blockRuntimeId" : 3839 - }, - { - "id" : "minecraft:warped_planks", - "blockRuntimeId" : 7502 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1318 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1319 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1320 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1321 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1322 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1323 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1330 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1325 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1326 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1324 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1327 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1331 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1328 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1329 - }, - { - "id" : "minecraft:blackstone_wall", - "blockRuntimeId" : 507 - }, - { - "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6014 - }, - { - "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5811 - }, - { - "id" : "minecraft:cobbled_deepslate_wall", - "blockRuntimeId" : 1155 - }, - { - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4297 - }, - { - "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6189 - }, - { - "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4114 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4773 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4774 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4775 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4776 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4777 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4778 - }, - { - "id" : "minecraft:nether_brick_fence", - "blockRuntimeId" : 5662 - }, - { - "id" : "minecraft:crimson_fence", - "blockRuntimeId" : 3817 - }, - { - "id" : "minecraft:warped_fence", - "blockRuntimeId" : 7480 - }, - { - "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4779 - }, - { - "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 6914 - }, - { - "id" : "minecraft:birch_fence_gate", - "blockRuntimeId" : 400 - }, - { - "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5228 - }, - { - "id" : "minecraft:acacia_fence_gate", - "blockRuntimeId" : 44 - }, - { - "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3980 - }, - { - "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3818 - }, - { - "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7481 - }, - { - "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5681 - }, - { - "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7185 - }, - { - "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5643 - }, - { - "id" : "minecraft:oak_stairs", - "blockRuntimeId" : 5690 - }, - { - "id" : "minecraft:spruce_stairs", - "blockRuntimeId" : 6946 - }, - { - "id" : "minecraft:birch_stairs", - "blockRuntimeId" : 432 - }, - { - "id" : "minecraft:jungle_stairs", - "blockRuntimeId" : 5260 - }, - { - "id" : "minecraft:acacia_stairs", - "blockRuntimeId" : 76 - }, - { - "id" : "minecraft:dark_oak_stairs", - "blockRuntimeId" : 4012 - }, - { - "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7091 - }, - { - "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5651 - }, - { - "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6683 - }, - { - "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6807 - }, - { - "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6610 - }, - { - "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6799 - }, - { - "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4964 - }, - { - "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6359 - }, - { - "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 4475 - }, - { - "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6351 - }, - { - "id" : "minecraft:andesite_stairs", - "blockRuntimeId" : 144 - }, - { - "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5787 - }, - { - "id" : "minecraft:brick_stairs", - "blockRuntimeId" : 876 - }, - { - "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5663 - }, - { - "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6598 - }, - { - "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4719 - }, - { - "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6532 - }, - { - "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6791 - }, - { - "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6510 - }, - { - "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6422 - }, - { - "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 4036 - }, - { - "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6414 - }, - { - "id" : "minecraft:crimson_stairs", - "blockRuntimeId" : 3859 - }, - { - "id" : "minecraft:warped_stairs", - "blockRuntimeId" : 7522 - }, - { - "id" : "minecraft:blackstone_stairs", - "blockRuntimeId" : 499 - }, - { - "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6006 - }, - { - "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5803 - }, - { - "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3912 - }, - { - "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4755 - }, - { - "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7649 - }, - { - "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5731 - }, - { - "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7593 - }, - { - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7607 - }, - { - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7635 - }, - { - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7621 - }, - { - "id" : "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId" : 1147 - }, - { - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4289 - }, - { - "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6181 - }, - { - "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4106 - }, - { - "id" : "minecraft:wooden_door" - }, - { - "id" : "minecraft:spruce_door" - }, - { - "id" : "minecraft:birch_door" - }, - { - "id" : "minecraft:jungle_door" - }, - { - "id" : "minecraft:acacia_door" - }, - { - "id" : "minecraft:dark_oak_door" - }, - { - "id" : "minecraft:iron_door" - }, - { - "id" : "minecraft:crimson_door" - }, - { - "id" : "minecraft:warped_door" - }, - { - "id" : "minecraft:trapdoor", - "blockRuntimeId" : 7267 - }, - { - "id" : "minecraft:spruce_trapdoor", - "blockRuntimeId" : 6970 - }, - { - "id" : "minecraft:birch_trapdoor", - "blockRuntimeId" : 456 - }, - { - "id" : "minecraft:jungle_trapdoor", - "blockRuntimeId" : 5284 - }, - { - "id" : "minecraft:acacia_trapdoor", - "blockRuntimeId" : 100 - }, - { - "id" : "minecraft:dark_oak_trapdoor", - "blockRuntimeId" : 4020 - }, - { - "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5143 - }, - { - "id" : "minecraft:crimson_trapdoor", - "blockRuntimeId" : 3886 - }, - { - "id" : "minecraft:warped_trapdoor", - "blockRuntimeId" : 7549 - }, - { - "id" : "minecraft:iron_bars", - "blockRuntimeId" : 5108 - }, - { - "id" : "minecraft:glass", - "blockRuntimeId" : 4870 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6992 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7000 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6999 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7007 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7004 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7006 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6993 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6996 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6997 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7005 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7001 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6995 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7003 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7002 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6994 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6998 - }, - { - "id" : "minecraft:tinted_glass", - "blockRuntimeId" : 7256 - }, - { - "id" : "minecraft:glass_pane", - "blockRuntimeId" : 4871 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7008 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7016 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7015 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7023 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7020 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7022 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7009 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7012 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7013 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7021 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7017 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7011 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7019 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7018 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7010 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7014 - }, - { - "id" : "minecraft:ladder", - "blockRuntimeId" : 5332 - }, - { - "id" : "minecraft:scaffolding", - "blockRuntimeId" : 6703 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7127 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7177 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7130 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7148 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7807 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7808 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7809 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7810 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7811 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7812 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7132 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7175 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7128 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7178 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7149 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7143 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7179 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7160 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7165 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7166 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7163 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7164 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7162 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7161 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7131 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7134 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7150 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7159 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7133 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7176 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7144 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7145 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7146 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7147 - }, - { - "id" : "minecraft:crimson_slab", - "blockRuntimeId" : 3857 - }, - { - "id" : "minecraft:warped_slab", - "blockRuntimeId" : 7520 - }, - { - "id" : "minecraft:blackstone_slab", - "blockRuntimeId" : 497 - }, - { - "id" : "minecraft:polished_blackstone_slab", - "blockRuntimeId" : 6004 - }, - { - "id" : "minecraft:polished_blackstone_brick_slab", - "blockRuntimeId" : 5801 - }, - { - "id" : "minecraft:cut_copper_slab", - "blockRuntimeId" : 3910 - }, - { - "id" : "minecraft:exposed_cut_copper_slab", - "blockRuntimeId" : 4753 - }, - { - "id" : "minecraft:weathered_cut_copper_slab", - "blockRuntimeId" : 7647 - }, - { - "id" : "minecraft:oxidized_cut_copper_slab", - "blockRuntimeId" : 5729 - }, - { - "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7591 - }, - { - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7605 - }, - { - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7633 - }, - { - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7619 - }, - { - "id" : "minecraft:cobbled_deepslate_slab", - "blockRuntimeId" : 1145 - }, - { - "id" : "minecraft:polished_deepslate_slab", - "blockRuntimeId" : 6179 - }, - { - "id" : "minecraft:deepslate_tile_slab", - "blockRuntimeId" : 4287 - }, - { - "id" : "minecraft:deepslate_brick_slab", - "blockRuntimeId" : 4104 - }, - { - "id" : "minecraft:brick_block", - "blockRuntimeId" : 875 - }, - { - "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1130 - }, - { - "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3768 - }, - { - "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6530 - }, - { - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7193 - }, - { - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7194 - }, - { - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7195 - }, - { - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7196 - }, - { - "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4727 - }, - { - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6413 - }, - { - "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5973 - }, - { - "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3769 - }, - { - "id" : "minecraft:gilded_blackstone", - "blockRuntimeId" : 4869 - }, - { - "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 - }, - { - "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4459 - }, - { - "id" : "minecraft:cracked_deepslate_tiles", - "blockRuntimeId" : 3767 - }, - { - "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4276 - }, - { - "id" : "minecraft:cracked_deepslate_bricks", - "blockRuntimeId" : 3766 - }, - { - "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1129 - }, - { - "id" : "minecraft:cobblestone", - "blockRuntimeId" : 1317 - }, - { - "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5642 - }, - { - "id" : "minecraft:cobbled_deepslate", - "blockRuntimeId" : 1142 - }, - { - "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6815 - }, - { - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6679 - }, - { - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6680 - }, - { - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6681 - }, - { - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6682 - }, - { - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6606 - }, - { - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6607 - }, - { - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6608 - }, - { - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6609 - }, - { - "id" : "minecraft:coal_block", - "blockRuntimeId" : 1140 - }, - { - "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 4583 - }, - { - "id" : "minecraft:gold_block", - "blockRuntimeId" : 4950 - }, - { - "id" : "minecraft:iron_block", - "blockRuntimeId" : 5109 - }, - { - "id" : "minecraft:copper_block", - "blockRuntimeId" : 3676 - }, - { - "id" : "minecraft:exposed_copper", - "blockRuntimeId" : 4751 - }, - { - "id" : "minecraft:weathered_copper", - "blockRuntimeId" : 7645 - }, - { - "id" : "minecraft:oxidized_copper", - "blockRuntimeId" : 5727 - }, - { - "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7589 - }, - { - "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7603 - }, - { - "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7631 - }, - { - "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7617 - }, - { - "id" : "minecraft:cut_copper", - "blockRuntimeId" : 3909 - }, - { - "id" : "minecraft:exposed_cut_copper", - "blockRuntimeId" : 4752 - }, - { - "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7646 - }, - { - "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5728 - }, - { - "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7590 - }, - { - "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7604 - }, - { - "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7632 - }, - { - "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7618 - }, - { - "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4716 - }, - { - "id" : "minecraft:diamond_block", - "blockRuntimeId" : 4473 - }, - { - "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5340 - }, - { - "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6552 - }, - { - "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6550 - }, - { - "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6551 - }, - { - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6518 - }, - { - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6520 - }, - { - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6519 - }, - { - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6521 - }, - { - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6411 - }, - { - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6412 - }, - { - "id" : "minecraft:slime", - "blockRuntimeId" : 6768 - }, - { - "id" : "minecraft:honey_block", - "blockRuntimeId" : 5087 - }, - { - "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5088 - }, - { - "id" : "minecraft:hay_block", - "blockRuntimeId" : 5059 - }, - { - "id" : "minecraft:bone_block", - "blockRuntimeId" : 692 - }, - { - "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5661 - }, - { - "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6597 - }, - { - "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5678 - }, - { - "id" : "minecraft:lodestone", - "blockRuntimeId" : 5538 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 963 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 971 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 970 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 978 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 975 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 977 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 964 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 967 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 968 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 976 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 972 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 966 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 974 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 973 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 965 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 969 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3659 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3667 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3666 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3674 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3671 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3673 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3660 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3663 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3664 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3672 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3668 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3662 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3670 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3669 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3661 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3665 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3643 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3651 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3650 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3658 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3655 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3657 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3644 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3647 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3648 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3656 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3652 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3646 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3654 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3653 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3645 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3649 - }, - { - "id" : "minecraft:clay", - "blockRuntimeId" : 1139 - }, - { - "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5058 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7024 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7032 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7031 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7039 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7036 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7038 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7025 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7028 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7029 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7037 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7033 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7027 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7035 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7034 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7026 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7030 - }, - { - "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7704 - }, - { - "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6750 - }, - { - "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 4985 - }, - { - "id" : "minecraft:black_glazed_terracotta", - "blockRuntimeId" : 488 - }, - { - "id" : "minecraft:brown_glazed_terracotta", - "blockRuntimeId" : 894 - }, - { - "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6574 - }, - { - "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5721 - }, - { - "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7846 - }, - { - "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5507 - }, - { - "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5001 - }, - { - "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3930 - }, - { - "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5459 - }, - { - "id" : "minecraft:blue_glazed_terracotta", - "blockRuntimeId" : 685 - }, - { - "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6492 - }, - { - "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5571 - }, - { - "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5752 - }, - { - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6498 - }, - { - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6500 - }, - { - "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5677 - }, - { - "id" : "minecraft:warped_wart_block", - "blockRuntimeId" : 7571 - }, - { - "id" : "minecraft:shroomlight", - "blockRuntimeId" : 6733 - }, - { - "id" : "minecraft:crimson_nylium", - "blockRuntimeId" : 3838 - }, - { - "id" : "minecraft:warped_nylium", - "blockRuntimeId" : 7501 - }, - { - "id" : "minecraft:basalt", - "blockRuntimeId" : 214 - }, - { - "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5795 - }, - { - "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6790 - }, - { - "id" : "minecraft:soul_soil", - "blockRuntimeId" : 6860 - }, - { - "id" : "minecraft:dirt", - "blockRuntimeId" : 4483 - }, - { - "id" : "minecraft:dirt", - "blockRuntimeId" : 4484 - }, - { - "id" : "minecraft:farmland", - "blockRuntimeId" : 4765 - }, - { - "id" : "minecraft:grass", - "blockRuntimeId" : 4972 - }, - { - "id" : "minecraft:grass_path", - "blockRuntimeId" : 4973 - }, - { - "id" : "minecraft:podzol", - "blockRuntimeId" : 5776 - }, - { - "id" : "minecraft:mycelium", - "blockRuntimeId" : 5660 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7084 - }, - { - "id" : "minecraft:iron_ore", - "blockRuntimeId" : 5142 - }, - { - "id" : "minecraft:gold_ore", - "blockRuntimeId" : 4951 - }, - { - "id" : "minecraft:diamond_ore", - "blockRuntimeId" : 4474 - }, - { - "id" : "minecraft:lapis_ore", - "blockRuntimeId" : 5341 - }, - { - "id" : "minecraft:redstone_ore", - "blockRuntimeId" : 6620 - }, - { - "id" : "minecraft:coal_ore", - "blockRuntimeId" : 1141 - }, - { - "id" : "minecraft:copper_ore", - "blockRuntimeId" : 3677 - }, - { - "id" : "minecraft:emerald_ore", - "blockRuntimeId" : 4717 - }, - { - "id" : "minecraft:quartz_ore", - "blockRuntimeId" : 6531 - }, - { - "id" : "minecraft:nether_gold_ore", - "blockRuntimeId" : 5671 - }, - { - "id" : "minecraft:ancient_debris", - "blockRuntimeId" : 143 - }, - { - "id" : "minecraft:deepslate_iron_ore", - "blockRuntimeId" : 4282 - }, - { - "id" : "minecraft:deepslate_gold_ore", - "blockRuntimeId" : 4281 - }, - { - "id" : "minecraft:deepslate_diamond_ore", - "blockRuntimeId" : 4279 - }, - { - "id" : "minecraft:deepslate_lapis_ore", - "blockRuntimeId" : 4283 - }, - { - "id" : "minecraft:deepslate_redstone_ore", - "blockRuntimeId" : 4284 - }, - { - "id" : "minecraft:deepslate_emerald_ore", - "blockRuntimeId" : 4280 - }, - { - "id" : "minecraft:deepslate_coal_ore", - "blockRuntimeId" : 4277 - }, - { - "id" : "minecraft:deepslate_copper_ore", - "blockRuntimeId" : 4278 - }, - { - "id" : "minecraft:gravel", - "blockRuntimeId" : 4974 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7085 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7087 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7089 - }, - { - "id" : "minecraft:blackstone", - "blockRuntimeId" : 494 - }, - { - "id" : "minecraft:deepslate", - "blockRuntimeId" : 4099 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7086 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7088 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7090 - }, - { - "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5798 - }, - { - "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6176 - }, - { - "id" : "minecraft:sand", - "blockRuntimeId" : 6677 - }, - { - "id" : "minecraft:sand", - "blockRuntimeId" : 6678 - }, - { - "id" : "minecraft:cactus", - "blockRuntimeId" : 920 - }, - { - "id" : "minecraft:log", - "blockRuntimeId" : 5539 - }, - { - "id" : "minecraft:stripped_oak_log", - "blockRuntimeId" : 7223 - }, - { - "id" : "minecraft:log", - "blockRuntimeId" : 5540 - }, - { - "id" : "minecraft:stripped_spruce_log", - "blockRuntimeId" : 7226 - }, - { - "id" : "minecraft:log", - "blockRuntimeId" : 5541 - }, - { - "id" : "minecraft:stripped_birch_log", - "blockRuntimeId" : 7208 - }, - { - "id" : "minecraft:log", - "blockRuntimeId" : 5542 - }, - { - "id" : "minecraft:stripped_jungle_log", - "blockRuntimeId" : 7220 - }, - { - "id" : "minecraft:log2", - "blockRuntimeId" : 5551 - }, - { - "id" : "minecraft:stripped_acacia_log", - "blockRuntimeId" : 7205 - }, - { - "id" : "minecraft:log2", - "blockRuntimeId" : 5552 - }, - { - "id" : "minecraft:stripped_dark_oak_log", - "blockRuntimeId" : 7217 - }, - { - "id" : "minecraft:crimson_stem", - "blockRuntimeId" : 3883 - }, - { - "id" : "minecraft:stripped_crimson_stem", - "blockRuntimeId" : 7214 - }, - { - "id" : "minecraft:warped_stem", - "blockRuntimeId" : 7546 - }, - { - "id" : "minecraft:stripped_warped_stem", - "blockRuntimeId" : 7232 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7711 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7717 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7712 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7718 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7713 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7719 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7714 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7720 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7715 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7721 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7716 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7722 - }, - { - "id" : "minecraft:crimson_hyphae", - "blockRuntimeId" : 3835 - }, - { - "id" : "minecraft:stripped_crimson_hyphae", - "blockRuntimeId" : 7211 - }, - { - "id" : "minecraft:warped_hyphae", - "blockRuntimeId" : 7498 - }, - { - "id" : "minecraft:stripped_warped_hyphae", - "blockRuntimeId" : 7229 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5385 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5386 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5387 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5388 - }, - { - "id" : "minecraft:leaves2", - "blockRuntimeId" : 5401 - }, - { - "id" : "minecraft:leaves2", - "blockRuntimeId" : 5402 - }, - { - "id" : "minecraft:azalea_leaves", - "blockRuntimeId" : 169 - }, - { - "id" : "minecraft:azalea_leaves_flowered", - "blockRuntimeId" : 173 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6691 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6692 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6693 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6694 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6695 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6696 - }, - { - "id" : "minecraft:bee_nest", - "blockRuntimeId" : 236 - }, - { - "id" : "minecraft:wheat_seeds" - }, - { - "id" : "minecraft:pumpkin_seeds" - }, - { - "id" : "minecraft:melon_seeds" - }, - { - "id" : "minecraft:beetroot_seeds" - }, - { - "id" : "minecraft:wheat" - }, - { - "id" : "minecraft:beetroot" - }, - { - "id" : "minecraft:potato" - }, - { - "id" : "minecraft:poisonous_potato" - }, - { - "id" : "minecraft:carrot" - }, - { - "id" : "minecraft:golden_carrot" - }, - { - "id" : "minecraft:apple" - }, - { - "id" : "minecraft:golden_apple" - }, - { - "id" : "minecraft:enchanted_golden_apple" - }, - { - "id" : "minecraft:melon_block", - "blockRuntimeId" : 5584 - }, - { - "id" : "minecraft:melon_slice" - }, - { - "id" : "minecraft:glistering_melon_slice" - }, - { - "id" : "minecraft:sweet_berries" - }, - { - "id" : "minecraft:glow_berries" - }, - { - "id" : "minecraft:pumpkin", - "blockRuntimeId" : 6430 - }, - { - "id" : "minecraft:carved_pumpkin", - "blockRuntimeId" : 988 - }, - { - "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5526 - }, - { - "id" : "minecraft:honeycomb" - }, - { - "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7253 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4503 - }, - { - "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7252 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4502 - }, - { - "id" : "minecraft:nether_sprouts" - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3681 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3679 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3680 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3678 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3682 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3686 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3684 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3685 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3683 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3687 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3701 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3699 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3700 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3698 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3702 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3711 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3709 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3710 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3708 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3712 - }, - { - "id" : "minecraft:kelp" - }, - { - "id" : "minecraft:seagrass", - "blockRuntimeId" : 6729 - }, - { - "id" : "minecraft:crimson_roots", - "blockRuntimeId" : 3856 - }, - { - "id" : "minecraft:warped_roots", - "blockRuntimeId" : 7519 - }, - { - "id" : "minecraft:yellow_flower", - "blockRuntimeId" : 7845 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6563 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6564 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6565 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6566 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6567 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6568 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6569 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6570 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6571 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6572 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6573 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4500 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4501 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4504 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4505 - }, - { - "id" : "minecraft:wither_rose", - "blockRuntimeId" : 7710 - }, - { - "id" : "minecraft:white_dye" - }, - { - "id" : "minecraft:light_gray_dye" - }, - { - "id" : "minecraft:gray_dye" - }, - { - "id" : "minecraft:black_dye" - }, - { - "id" : "minecraft:brown_dye" - }, - { - "id" : "minecraft:red_dye" - }, - { - "id" : "minecraft:orange_dye" - }, - { - "id" : "minecraft:yellow_dye" - }, - { - "id" : "minecraft:lime_dye" - }, - { - "id" : "minecraft:green_dye" - }, - { - "id" : "minecraft:cyan_dye" - }, - { - "id" : "minecraft:light_blue_dye" - }, - { - "id" : "minecraft:blue_dye" - }, - { - "id" : "minecraft:purple_dye" - }, - { - "id" : "minecraft:magenta_dye" - }, - { - "id" : "minecraft:pink_dye" - }, - { - "id" : "minecraft:ink_sac" - }, - { - "id" : "minecraft:glow_ink_sac" - }, - { - "id" : "minecraft:cocoa_beans" - }, - { - "id" : "minecraft:lapis_lazuli" - }, - { - "id" : "minecraft:bone_meal" - }, - { - "id" : "minecraft:vine", - "blockRuntimeId" : 7406 - }, - { - "id" : "minecraft:weeping_vines", - "blockRuntimeId" : 7660 - }, - { - "id" : "minecraft:twisting_vines", - "blockRuntimeId" : 7334 - }, - { - "id" : "minecraft:waterlily", - "blockRuntimeId" : 7588 - }, - { - "id" : "minecraft:deadbush", - "blockRuntimeId" : 4098 - }, - { - "id" : "minecraft:bamboo", - "blockRuntimeId" : 177 - }, - { - "id" : "minecraft:snow", - "blockRuntimeId" : 6816 - }, - { - "id" : "minecraft:ice", - "blockRuntimeId" : 5101 - }, - { - "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5741 - }, - { - "id" : "minecraft:blue_ice", - "blockRuntimeId" : 691 - }, - { - "id" : "minecraft:snow_layer", - "blockRuntimeId" : 6817 - }, - { - "id" : "minecraft:pointed_dripstone", - "blockRuntimeId" : 5782 - }, - { - "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4584 - }, - { - "id" : "minecraft:moss_carpet", - "blockRuntimeId" : 5641 - }, - { - "id" : "minecraft:moss_block", - "blockRuntimeId" : 5640 - }, - { - "id" : "minecraft:dirt_with_roots", - "blockRuntimeId" : 4485 - }, - { - "id" : "minecraft:hanging_roots", - "blockRuntimeId" : 5023 - }, - { - "id" : "minecraft:big_dripleaf", - "blockRuntimeId" : 328 - }, - { - "id" : "minecraft:small_dripleaf_block", - "blockRuntimeId" : 6782 - }, - { - "id" : "minecraft:spore_blossom", - "blockRuntimeId" : 6869 - }, - { - "id" : "minecraft:azalea", - "blockRuntimeId" : 168 - }, - { - "id" : "minecraft:flowering_azalea", - "blockRuntimeId" : 4814 - }, - { - "id" : "minecraft:glow_lichen", - "blockRuntimeId" : 4947 - }, - { - "id" : "minecraft:amethyst_block", - "blockRuntimeId" : 136 - }, - { - "id" : "minecraft:budding_amethyst", - "blockRuntimeId" : 919 - }, - { - "id" : "minecraft:amethyst_cluster", - "blockRuntimeId" : 137 - }, - { - "id" : "minecraft:large_amethyst_bud", - "blockRuntimeId" : 5342 - }, - { - "id" : "minecraft:medium_amethyst_bud", - "blockRuntimeId" : 5578 - }, - { - "id" : "minecraft:small_amethyst_bud", - "blockRuntimeId" : 6769 - }, - { - "id" : "minecraft:tuff", - "blockRuntimeId" : 7321 - }, - { - "id" : "minecraft:calcite", - "blockRuntimeId" : 943 - }, - { - "id" : "minecraft:chicken" - }, - { - "id" : "minecraft:porkchop" - }, - { - "id" : "minecraft:beef" - }, - { - "id" : "minecraft:mutton" - }, - { - "id" : "minecraft:rabbit" - }, - { - "id" : "minecraft:cod" - }, - { - "id" : "minecraft:salmon" - }, - { - "id" : "minecraft:tropical_fish" - }, - { - "id" : "minecraft:pufferfish" - }, - { - "id" : "minecraft:brown_mushroom", - "blockRuntimeId" : 900 - }, - { - "id" : "minecraft:red_mushroom", - "blockRuntimeId" : 6580 - }, - { - "id" : "minecraft:crimson_fungus", - "blockRuntimeId" : 3834 - }, - { - "id" : "minecraft:warped_fungus", - "blockRuntimeId" : 7497 - }, - { - "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 915 - }, - { - "id" : "minecraft:red_mushroom_block", - "blockRuntimeId" : 6595 - }, - { - "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 916 - }, - { - "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 901 - }, - { - "id" : "minecraft:egg" - }, - { - "id" : "minecraft:sugar_cane" - }, - { - "id" : "minecraft:sugar" - }, - { - "id" : "minecraft:rotten_flesh" - }, - { - "id" : "minecraft:bone" - }, - { - "id" : "minecraft:web", - "blockRuntimeId" : 7659 - }, - { - "id" : "minecraft:spider_eye" - }, - { - "id" : "minecraft:mob_spawner", - "blockRuntimeId" : 5633 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5634 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5635 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5636 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5637 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5638 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5639 - }, - { - "id" : "minecraft:infested_deepslate", - "blockRuntimeId" : 5102 - }, - { - "id" : "minecraft:dragon_egg", - "blockRuntimeId" : 4582 - }, - { - "id" : "minecraft:turtle_egg", - "blockRuntimeId" : 7322 - }, - { - "id" : "minecraft:chicken_spawn_egg" - }, - { - "id" : "minecraft:bee_spawn_egg" - }, - { - "id" : "minecraft:cow_spawn_egg" - }, - { - "id" : "minecraft:pig_spawn_egg" - }, - { - "id" : "minecraft:sheep_spawn_egg" - }, - { - "id" : "minecraft:wolf_spawn_egg" - }, - { - "id" : "minecraft:polar_bear_spawn_egg" - }, - { - "id" : "minecraft:ocelot_spawn_egg" - }, - { - "id" : "minecraft:cat_spawn_egg" - }, - { - "id" : "minecraft:mooshroom_spawn_egg" - }, - { - "id" : "minecraft:bat_spawn_egg" - }, - { - "id" : "minecraft:parrot_spawn_egg" - }, - { - "id" : "minecraft:rabbit_spawn_egg" - }, - { - "id" : "minecraft:llama_spawn_egg" - }, - { - "id" : "minecraft:horse_spawn_egg" - }, - { - "id" : "minecraft:donkey_spawn_egg" - }, - { - "id" : "minecraft:mule_spawn_egg" - }, - { - "id" : "minecraft:skeleton_horse_spawn_egg" - }, - { - "id" : "minecraft:zombie_horse_spawn_egg" - }, - { - "id" : "minecraft:tropical_fish_spawn_egg" - }, - { - "id" : "minecraft:cod_spawn_egg" - }, - { - "id" : "minecraft:pufferfish_spawn_egg" - }, - { - "id" : "minecraft:salmon_spawn_egg" - }, - { - "id" : "minecraft:dolphin_spawn_egg" - }, - { - "id" : "minecraft:turtle_spawn_egg" - }, - { - "id" : "minecraft:panda_spawn_egg" - }, - { - "id" : "minecraft:fox_spawn_egg" - }, - { - "id" : "minecraft:creeper_spawn_egg" - }, - { - "id" : "minecraft:enderman_spawn_egg" - }, - { - "id" : "minecraft:silverfish_spawn_egg" - }, - { - "id" : "minecraft:skeleton_spawn_egg" - }, - { - "id" : "minecraft:wither_skeleton_spawn_egg" - }, - { - "id" : "minecraft:stray_spawn_egg" - }, - { - "id" : "minecraft:slime_spawn_egg" - }, - { - "id" : "minecraft:spider_spawn_egg" - }, - { - "id" : "minecraft:zombie_spawn_egg" - }, - { - "id" : "minecraft:zombie_pigman_spawn_egg" - }, - { - "id" : "minecraft:husk_spawn_egg" - }, - { - "id" : "minecraft:drowned_spawn_egg" - }, - { - "id" : "minecraft:squid_spawn_egg" - }, - { - "id" : "minecraft:glow_squid_spawn_egg" - }, - { - "id" : "minecraft:cave_spider_spawn_egg" - }, - { - "id" : "minecraft:witch_spawn_egg" - }, - { - "id" : "minecraft:guardian_spawn_egg" - }, - { - "id" : "minecraft:elder_guardian_spawn_egg" - }, - { - "id" : "minecraft:endermite_spawn_egg" - }, - { - "id" : "minecraft:magma_cube_spawn_egg" - }, - { - "id" : "minecraft:strider_spawn_egg" - }, - { - "id" : "minecraft:hoglin_spawn_egg" - }, - { - "id" : "minecraft:piglin_spawn_egg" - }, - { - "id" : "minecraft:zoglin_spawn_egg" - }, - { - "id" : "minecraft:piglin_brute_spawn_egg" - }, - { - "id" : "minecraft:goat_spawn_egg" - }, - { - "id" : "minecraft:axolotl_spawn_egg" - }, - { - "id" : "minecraft:ghast_spawn_egg" - }, - { - "id" : "minecraft:blaze_spawn_egg" - }, - { - "id" : "minecraft:shulker_spawn_egg" - }, - { - "id" : "minecraft:vindicator_spawn_egg" - }, - { - "id" : "minecraft:evoker_spawn_egg" - }, - { - "id" : "minecraft:vex_spawn_egg" - }, - { - "id" : "minecraft:villager_spawn_egg" - }, - { - "id" : "minecraft:wandering_trader_spawn_egg" - }, - { - "id" : "minecraft:zombie_villager_spawn_egg" - }, - { - "id" : "minecraft:phantom_spawn_egg" - }, - { - "id" : "minecraft:pillager_spawn_egg" - }, - { - "id" : "minecraft:ravager_spawn_egg" - }, - { - "id" : "minecraft:obsidian", - "blockRuntimeId" : 5710 - }, - { - "id" : "minecraft:crying_obsidian", - "blockRuntimeId" : 3908 - }, - { - "id" : "minecraft:bedrock", - "blockRuntimeId" : 234 - }, - { - "id" : "minecraft:soul_sand", - "blockRuntimeId" : 6859 - }, - { - "id" : "minecraft:netherrack", - "blockRuntimeId" : 5679 - }, - { - "id" : "minecraft:magma", - "blockRuntimeId" : 5577 - }, - { - "id" : "minecraft:nether_wart" - }, - { - "id" : "minecraft:end_stone", - "blockRuntimeId" : 4744 - }, - { - "id" : "minecraft:chorus_flower", - "blockRuntimeId" : 1132 - }, - { - "id" : "minecraft:chorus_plant", - "blockRuntimeId" : 1138 - }, - { - "id" : "minecraft:chorus_fruit" - }, - { - "id" : "minecraft:popped_chorus_fruit" - }, - { - "id" : "minecraft:sponge", - "blockRuntimeId" : 6867 - }, - { - "id" : "minecraft:sponge", - "blockRuntimeId" : 6868 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3688 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3689 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3690 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3691 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3692 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3693 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3694 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3695 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3696 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3697 - }, - { - "id" : "minecraft:leather_helmet" - }, - { - "id" : "minecraft:chainmail_helmet" - }, - { - "id" : "minecraft:iron_helmet" - }, - { - "id" : "minecraft:golden_helmet" - }, - { - "id" : "minecraft:diamond_helmet" - }, - { - "id" : "minecraft:netherite_helmet" - }, - { - "id" : "minecraft:leather_chestplate" - }, - { - "id" : "minecraft:chainmail_chestplate" - }, - { - "id" : "minecraft:iron_chestplate" - }, - { - "id" : "minecraft:golden_chestplate" - }, - { - "id" : "minecraft:diamond_chestplate" - }, - { - "id" : "minecraft:netherite_chestplate" - }, - { - "id" : "minecraft:leather_leggings" - }, - { - "id" : "minecraft:chainmail_leggings" - }, - { - "id" : "minecraft:iron_leggings" - }, - { - "id" : "minecraft:golden_leggings" - }, - { - "id" : "minecraft:diamond_leggings" - }, - { - "id" : "minecraft:netherite_leggings" - }, - { - "id" : "minecraft:leather_boots" - }, - { - "id" : "minecraft:chainmail_boots" - }, - { - "id" : "minecraft:iron_boots" - }, - { - "id" : "minecraft:golden_boots" - }, - { - "id" : "minecraft:diamond_boots" - }, - { - "id" : "minecraft:netherite_boots" - }, - { - "id" : "minecraft:wooden_sword" - }, - { - "id" : "minecraft:stone_sword" - }, - { - "id" : "minecraft:iron_sword" - }, - { - "id" : "minecraft:golden_sword" - }, - { - "id" : "minecraft:diamond_sword" - }, - { - "id" : "minecraft:netherite_sword" - }, - { - "id" : "minecraft:wooden_axe" - }, - { - "id" : "minecraft:stone_axe" - }, - { - "id" : "minecraft:iron_axe" - }, - { - "id" : "minecraft:golden_axe" - }, - { - "id" : "minecraft:diamond_axe" - }, - { - "id" : "minecraft:netherite_axe" - }, - { - "id" : "minecraft:wooden_pickaxe" - }, - { - "id" : "minecraft:stone_pickaxe" - }, - { - "id" : "minecraft:iron_pickaxe" - }, - { - "id" : "minecraft:golden_pickaxe" - }, - { - "id" : "minecraft:diamond_pickaxe" - }, - { - "id" : "minecraft:netherite_pickaxe" - }, - { - "id" : "minecraft:wooden_shovel" - }, - { - "id" : "minecraft:stone_shovel" - }, - { - "id" : "minecraft:iron_shovel" - }, - { - "id" : "minecraft:golden_shovel" - }, - { - "id" : "minecraft:diamond_shovel" - }, - { - "id" : "minecraft:netherite_shovel" - }, - { - "id" : "minecraft:wooden_hoe" - }, - { - "id" : "minecraft:stone_hoe" - }, - { - "id" : "minecraft:iron_hoe" - }, - { - "id" : "minecraft:golden_hoe" - }, - { - "id" : "minecraft:diamond_hoe" - }, - { - "id" : "minecraft:netherite_hoe" - }, - { - "id" : "minecraft:bow" - }, - { - "id" : "minecraft:crossbow" - }, - { - "id" : "minecraft:arrow" - }, - { - "id" : "minecraft:arrow", - "damage" : 6 - }, - { - "id" : "minecraft:arrow", - "damage" : 7 - }, - { - "id" : "minecraft:arrow", - "damage" : 8 - }, - { - "id" : "minecraft:arrow", - "damage" : 9 - }, - { - "id" : "minecraft:arrow", - "damage" : 10 - }, - { - "id" : "minecraft:arrow", - "damage" : 11 - }, - { - "id" : "minecraft:arrow", - "damage" : 12 - }, - { - "id" : "minecraft:arrow", - "damage" : 13 - }, - { - "id" : "minecraft:arrow", - "damage" : 14 - }, - { - "id" : "minecraft:arrow", - "damage" : 15 - }, - { - "id" : "minecraft:arrow", - "damage" : 16 - }, - { - "id" : "minecraft:arrow", - "damage" : 17 - }, - { - "id" : "minecraft:arrow", - "damage" : 18 - }, - { - "id" : "minecraft:arrow", - "damage" : 19 - }, - { - "id" : "minecraft:arrow", - "damage" : 20 - }, - { - "id" : "minecraft:arrow", - "damage" : 21 - }, - { - "id" : "minecraft:arrow", - "damage" : 22 - }, - { - "id" : "minecraft:arrow", - "damage" : 23 - }, - { - "id" : "minecraft:arrow", - "damage" : 24 - }, - { - "id" : "minecraft:arrow", - "damage" : 25 - }, - { - "id" : "minecraft:arrow", - "damage" : 26 - }, - { - "id" : "minecraft:arrow", - "damage" : 27 - }, - { - "id" : "minecraft:arrow", - "damage" : 28 - }, - { - "id" : "minecraft:arrow", - "damage" : 29 - }, - { - "id" : "minecraft:arrow", - "damage" : 30 - }, - { - "id" : "minecraft:arrow", - "damage" : 31 - }, - { - "id" : "minecraft:arrow", - "damage" : 32 - }, - { - "id" : "minecraft:arrow", - "damage" : 33 - }, - { - "id" : "minecraft:arrow", - "damage" : 34 - }, - { - "id" : "minecraft:arrow", - "damage" : 35 - }, - { - "id" : "minecraft:arrow", - "damage" : 36 - }, - { - "id" : "minecraft:arrow", - "damage" : 37 - }, - { - "id" : "minecraft:arrow", - "damage" : 38 - }, - { - "id" : "minecraft:arrow", - "damage" : 39 - }, - { - "id" : "minecraft:arrow", - "damage" : 40 - }, - { - "id" : "minecraft:arrow", - "damage" : 41 - }, - { - "id" : "minecraft:arrow", - "damage" : 42 - }, - { - "id" : "minecraft:arrow", - "damage" : 43 - }, - { - "id" : "minecraft:shield" - }, - { - "id" : "minecraft:cooked_chicken" - }, - { - "id" : "minecraft:cooked_porkchop" - }, - { - "id" : "minecraft:cooked_beef" - }, - { - "id" : "minecraft:cooked_mutton" - }, - { - "id" : "minecraft:cooked_rabbit" - }, - { - "id" : "minecraft:cooked_cod" - }, - { - "id" : "minecraft:cooked_salmon" - }, - { - "id" : "minecraft:bread" - }, - { - "id" : "minecraft:mushroom_stew" - }, - { - "id" : "minecraft:beetroot_soup" - }, - { - "id" : "minecraft:rabbit_stew" - }, - { - "id" : "minecraft:baked_potato" - }, - { - "id" : "minecraft:cookie" - }, - { - "id" : "minecraft:pumpkin_pie" - }, - { - "id" : "minecraft:cake" - }, - { - "id" : "minecraft:dried_kelp" - }, - { - "id" : "minecraft:fishing_rod" - }, - { - "id" : "minecraft:carrot_on_a_stick" - }, - { - "id" : "minecraft:warped_fungus_on_a_stick" - }, - { - "id" : "minecraft:snowball" - }, - { - "id" : "minecraft:shears" - }, - { - "id" : "minecraft:flint_and_steel" - }, - { - "id" : "minecraft:lead" - }, - { - "id" : "minecraft:clock" - }, - { - "id" : "minecraft:compass" - }, - { - "id" : "minecraft:empty_map" - }, - { - "id" : "minecraft:empty_map", - "damage" : 2 - }, - { - "id" : "minecraft:saddle" - }, - { - "id" : "minecraft:leather_horse_armor" - }, - { - "id" : "minecraft:iron_horse_armor" - }, - { - "id" : "minecraft:golden_horse_armor" - }, - { - "id" : "minecraft:diamond_horse_armor" - }, - { - "id" : "minecraft:trident" - }, - { - "id" : "minecraft:turtle_helmet" - }, - { - "id" : "minecraft:elytra" - }, - { - "id" : "minecraft:totem_of_undying" - }, - { - "id" : "minecraft:glass_bottle" - }, - { - "id" : "minecraft:experience_bottle" - }, - { - "id" : "minecraft:potion" - }, - { - "id" : "minecraft:potion", - "damage" : 1 - }, - { - "id" : "minecraft:potion", - "damage" : 2 - }, - { - "id" : "minecraft:potion", - "damage" : 3 - }, - { - "id" : "minecraft:potion", - "damage" : 4 - }, - { - "id" : "minecraft:potion", - "damage" : 5 - }, - { - "id" : "minecraft:potion", - "damage" : 6 - }, - { - "id" : "minecraft:potion", - "damage" : 7 - }, - { - "id" : "minecraft:potion", - "damage" : 8 - }, - { - "id" : "minecraft:potion", - "damage" : 9 - }, - { - "id" : "minecraft:potion", - "damage" : 10 - }, - { - "id" : "minecraft:potion", - "damage" : 11 - }, - { - "id" : "minecraft:potion", - "damage" : 12 - }, - { - "id" : "minecraft:potion", - "damage" : 13 - }, - { - "id" : "minecraft:potion", - "damage" : 14 - }, - { - "id" : "minecraft:potion", - "damage" : 15 - }, - { - "id" : "minecraft:potion", - "damage" : 16 - }, - { - "id" : "minecraft:potion", - "damage" : 17 - }, - { - "id" : "minecraft:potion", - "damage" : 18 - }, - { - "id" : "minecraft:potion", - "damage" : 19 - }, - { - "id" : "minecraft:potion", - "damage" : 20 - }, - { - "id" : "minecraft:potion", - "damage" : 21 - }, - { - "id" : "minecraft:potion", - "damage" : 22 - }, - { - "id" : "minecraft:potion", - "damage" : 23 - }, - { - "id" : "minecraft:potion", - "damage" : 24 - }, - { - "id" : "minecraft:potion", - "damage" : 25 - }, - { - "id" : "minecraft:potion", - "damage" : 26 - }, - { - "id" : "minecraft:potion", - "damage" : 27 - }, - { - "id" : "minecraft:potion", - "damage" : 28 - }, - { - "id" : "minecraft:potion", - "damage" : 29 - }, - { - "id" : "minecraft:potion", - "damage" : 30 - }, - { - "id" : "minecraft:potion", - "damage" : 31 - }, - { - "id" : "minecraft:potion", - "damage" : 32 - }, - { - "id" : "minecraft:potion", - "damage" : 33 - }, - { - "id" : "minecraft:potion", - "damage" : 34 - }, - { - "id" : "minecraft:potion", - "damage" : 35 - }, - { - "id" : "minecraft:potion", - "damage" : 36 - }, - { - "id" : "minecraft:potion", - "damage" : 37 - }, - { - "id" : "minecraft:potion", - "damage" : 38 - }, - { - "id" : "minecraft:potion", - "damage" : 39 - }, - { - "id" : "minecraft:potion", - "damage" : 40 - }, - { - "id" : "minecraft:potion", - "damage" : 41 - }, - { - "id" : "minecraft:potion", - "damage" : 42 - }, - { - "id" : "minecraft:splash_potion" - }, - { - "id" : "minecraft:splash_potion", - "damage" : 1 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 2 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 3 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 4 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 5 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 6 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 7 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 8 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 9 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 10 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 11 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 12 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 13 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 14 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 15 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 16 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 17 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 18 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 19 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 20 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 21 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 22 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 23 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 24 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 25 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 26 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 27 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 28 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 29 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 30 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 31 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 32 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 33 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 34 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 35 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 36 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 37 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 38 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 39 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 40 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 41 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 42 - }, - { - "id" : "minecraft:lingering_potion" - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 1 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 2 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 3 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 4 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 5 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 6 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 7 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 8 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 9 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 10 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 11 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 12 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 13 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 14 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 15 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 16 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 17 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 18 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 19 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 20 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 21 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 22 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 23 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 24 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 25 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 26 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 27 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 28 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 29 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 30 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 31 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 32 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 33 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 34 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 35 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 36 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 37 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 38 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 39 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 40 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 41 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 42 - }, - { - "id" : "minecraft:spyglass" - }, - { - "id" : "minecraft:stick" - }, - { - "id" : "minecraft:bed" - }, - { - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "id" : "minecraft:torch", - "blockRuntimeId" : 7261 - }, - { - "id" : "minecraft:soul_torch", - "blockRuntimeId" : 6861 - }, - { - "id" : "minecraft:sea_pickle", - "blockRuntimeId" : 6721 - }, - { - "id" : "minecraft:lantern", - "blockRuntimeId" : 5338 - }, - { - "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6857 - }, - { - "id" : "minecraft:candle", - "blockRuntimeId" : 953 - }, - { - "id" : "minecraft:white_candle", - "blockRuntimeId" : 7694 - }, - { - "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5711 - }, - { - "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5561 - }, - { - "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5449 - }, - { - "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7835 - }, - { - "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5497 - }, - { - "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5742 - }, - { - "id" : "minecraft:gray_candle", - "blockRuntimeId" : 4975 - }, - { - "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5465 - }, - { - "id" : "minecraft:cyan_candle", - "blockRuntimeId" : 3920 - }, - { - "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6482 - }, - { - "id" : "minecraft:blue_candle", - "blockRuntimeId" : 675 - }, - { - "id" : "minecraft:brown_candle", - "blockRuntimeId" : 884 - }, - { - "id" : "minecraft:green_candle", - "blockRuntimeId" : 4991 - }, - { - "id" : "minecraft:red_candle", - "blockRuntimeId" : 6553 - }, - { - "id" : "minecraft:black_candle", - "blockRuntimeId" : 478 - }, - { - "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3770 - }, - { - "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 - }, - { - "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4811 - }, - { - "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6783 - }, - { - "id" : "minecraft:beehive", - "blockRuntimeId" : 260 - }, - { - "id" : "minecraft:campfire" - }, - { - "id" : "minecraft:soul_campfire" - }, - { - "id" : "minecraft:furnace", - "blockRuntimeId" : 4863 - }, - { - "id" : "minecraft:blast_furnace", - "blockRuntimeId" : 669 - }, - { - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - }, - { - "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6672 - }, - { - "id" : "minecraft:brewing_stand" - }, - { - "id" : "minecraft:anvil", - "blockRuntimeId" : 152 - }, - { - "id" : "minecraft:anvil", - "blockRuntimeId" : 156 - }, - { - "id" : "minecraft:anvil", - "blockRuntimeId" : 160 - }, - { - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5007 - }, - { - "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4718 - }, - { - "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 - }, - { - "id" : "minecraft:lectern", - "blockRuntimeId" : 5409 - }, - { - "id" : "minecraft:cauldron" - }, - { - "id" : "minecraft:composter", - "blockRuntimeId" : 3634 - }, - { - "id" : "minecraft:chest", - "blockRuntimeId" : 1123 - }, - { - "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7283 - }, - { - "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4745 - }, - { - "id" : "minecraft:barrel", - "blockRuntimeId" : 201 - }, - { - "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7366 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - }, - { - "id" : "minecraft:armor_stand" - }, - { - "id" : "minecraft:noteblock", - "blockRuntimeId" : 5689 - }, - { - "id" : "minecraft:jukebox", - "blockRuntimeId" : 5183 - }, - { - "id" : "minecraft:music_disc_13" - }, - { - "id" : "minecraft:music_disc_cat" - }, - { - "id" : "minecraft:music_disc_blocks" - }, - { - "id" : "minecraft:music_disc_chirp" - }, - { - "id" : "minecraft:music_disc_far" - }, - { - "id" : "minecraft:music_disc_mall" - }, - { - "id" : "minecraft:music_disc_mellohi" - }, - { - "id" : "minecraft:music_disc_stal" - }, - { - "id" : "minecraft:music_disc_strad" - }, - { - "id" : "minecraft:music_disc_ward" - }, - { - "id" : "minecraft:music_disc_11" - }, - { - "id" : "minecraft:music_disc_wait" - }, - { - "id" : "minecraft:music_disc_pigstep" - }, - { - "id" : "minecraft:glowstone_dust" - }, - { - "id" : "minecraft:glowstone", - "blockRuntimeId" : 4949 - }, - { - "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6619 - }, - { - "id" : "minecraft:sealantern", - "blockRuntimeId" : 6732 - }, - { - "id" : "minecraft:oak_sign" - }, - { - "id" : "minecraft:spruce_sign" - }, - { - "id" : "minecraft:birch_sign" - }, - { - "id" : "minecraft:jungle_sign" - }, - { - "id" : "minecraft:acacia_sign" - }, - { - "id" : "minecraft:dark_oak_sign" - }, - { - "id" : "minecraft:crimson_sign" - }, - { - "id" : "minecraft:warped_sign" - }, - { - "id" : "minecraft:painting" - }, - { - "id" : "minecraft:frame" - }, - { - "id" : "minecraft:glow_frame" - }, - { - "id" : "minecraft:honey_bottle" - }, - { - "id" : "minecraft:flower_pot" - }, - { - "id" : "minecraft:bowl" - }, - { - "id" : "minecraft:bucket" - }, - { - "id" : "minecraft:milk_bucket" - }, - { - "id" : "minecraft:water_bucket" - }, - { - "id" : "minecraft:lava_bucket" - }, - { - "id" : "minecraft:cod_bucket" - }, - { - "id" : "minecraft:salmon_bucket" - }, - { - "id" : "minecraft:tropical_fish_bucket" - }, - { - "id" : "minecraft:pufferfish_bucket" - }, - { - "id" : "minecraft:powder_snow_bucket" - }, - { - "id" : "minecraft:axolotl_bucket" - }, - { - "id" : "minecraft:skull", - "damage" : 3 - }, - { - "id" : "minecraft:skull", - "damage" : 2 - }, - { - "id" : "minecraft:skull", - "damage" : 4 - }, - { - "id" : "minecraft:skull", - "damage" : 5 - }, - { - "id" : "minecraft:skull" - }, - { - "id" : "minecraft:skull", - "damage" : 1 - }, - { - "id" : "minecraft:beacon", - "blockRuntimeId" : 217 - }, - { - "id" : "minecraft:bell", - "blockRuntimeId" : 292 - }, - { - "id" : "minecraft:conduit", - "blockRuntimeId" : 3675 - }, - { - "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7199 - }, - { - "id" : "minecraft:end_portal_frame", - "blockRuntimeId" : 4730 - }, - { - "id" : "minecraft:coal" - }, - { - "id" : "minecraft:charcoal" - }, - { - "id" : "minecraft:diamond" - }, - { - "id" : "minecraft:iron_nugget" - }, - { - "id" : "minecraft:raw_iron" - }, - { - "id" : "minecraft:raw_gold" - }, - { - "id" : "minecraft:raw_copper" - }, - { - "id" : "minecraft:copper_ingot" - }, - { - "id" : "minecraft:iron_ingot" - }, - { - "id" : "minecraft:netherite_scrap" - }, - { - "id" : "minecraft:netherite_ingot" - }, - { - "id" : "minecraft:gold_nugget" - }, - { - "id" : "minecraft:gold_ingot" - }, - { - "id" : "minecraft:emerald" - }, - { - "id" : "minecraft:quartz" - }, - { - "id" : "minecraft:clay_ball" - }, - { - "id" : "minecraft:brick" - }, - { - "id" : "minecraft:netherbrick" - }, - { - "id" : "minecraft:prismarine_shard" - }, - { - "id" : "minecraft:amethyst_shard" - }, - { - "id" : "minecraft:prismarine_crystals" - }, - { - "id" : "minecraft:nautilus_shell" - }, - { - "id" : "minecraft:heart_of_the_sea" - }, - { - "id" : "minecraft:scute" - }, - { - "id" : "minecraft:phantom_membrane" - }, - { - "id" : "minecraft:string" - }, - { - "id" : "minecraft:feather" - }, - { - "id" : "minecraft:flint" - }, - { - "id" : "minecraft:gunpowder" - }, - { - "id" : "minecraft:leather" - }, - { - "id" : "minecraft:rabbit_hide" - }, - { - "id" : "minecraft:rabbit_foot" - }, - { - "id" : "minecraft:fire_charge" - }, - { - "id" : "minecraft:blaze_rod" - }, - { - "id" : "minecraft:blaze_powder" - }, - { - "id" : "minecraft:magma_cream" - }, - { - "id" : "minecraft:fermented_spider_eye" - }, - { - "id" : "minecraft:dragon_breath" - }, - { - "id" : "minecraft:shulker_shell" - }, - { - "id" : "minecraft:ghast_tear" - }, - { - "id" : "minecraft:slime_ball" - }, - { - "id" : "minecraft:ender_pearl" - }, - { - "id" : "minecraft:ender_eye" - }, - { - "id" : "minecraft:nether_star" - }, - { - "id" : "minecraft:end_rod", - "blockRuntimeId" : 4738 - }, - { - "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5491 - }, - { - "id" : "minecraft:end_crystal" - }, - { - "id" : "minecraft:paper" - }, - { - "id" : "minecraft:book" - }, - { - "id" : "minecraft:writable_book" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:oak_boat" - }, - { - "id" : "minecraft:spruce_boat" - }, - { - "id" : "minecraft:birch_boat" - }, - { - "id" : "minecraft:jungle_boat" - }, - { - "id" : "minecraft:acacia_boat" - }, - { - "id" : "minecraft:dark_oak_boat" - }, - { - "id" : "minecraft:rail", - "blockRuntimeId" : 6540 - }, - { - "id" : "minecraft:golden_rail", - "blockRuntimeId" : 4952 - }, - { - "id" : "minecraft:detector_rail", - "blockRuntimeId" : 4461 - }, - { - "id" : "minecraft:activator_rail", - "blockRuntimeId" : 122 - }, - { - "id" : "minecraft:minecart" - }, - { - "id" : "minecraft:chest_minecart" - }, - { - "id" : "minecraft:hopper_minecart" - }, - { - "id" : "minecraft:tnt_minecart" - }, - { - "id" : "minecraft:redstone" - }, - { - "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6618 - }, - { - "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6621 - }, - { - "id" : "minecraft:lever", - "blockRuntimeId" : 5417 - }, - { - "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7747 - }, - { - "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6870 - }, - { - "id" : "minecraft:birch_button", - "blockRuntimeId" : 356 - }, - { - "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5184 - }, - { - "id" : "minecraft:acacia_button" - }, - { - "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3936 - }, - { - "id" : "minecraft:stone_button", - "blockRuntimeId" : 7099 - }, - { - "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3771 - }, - { - "id" : "minecraft:warped_button", - "blockRuntimeId" : 7434 - }, - { - "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 5974 - }, - { - "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7305 - }, - { - "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7791 - }, - { - "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 6930 - }, - { - "id" : "minecraft:birch_pressure_plate", - "blockRuntimeId" : 416 - }, - { - "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5244 - }, - { - "id" : "minecraft:acacia_pressure_plate", - "blockRuntimeId" : 60 - }, - { - "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3996 - }, - { - "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3840 - }, - { - "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7503 - }, - { - "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7111 - }, - { - "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5475 - }, - { - "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5071 - }, - { - "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 5988 - }, - { - "id" : "minecraft:observer", - "blockRuntimeId" : 5698 - }, - { - "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4066 - }, - { - "id" : "minecraft:repeater" - }, - { - "id" : "minecraft:comparator" - }, - { - "id" : "minecraft:hopper" - }, - { - "id" : "minecraft:dropper", - "blockRuntimeId" : 4588 - }, - { - "id" : "minecraft:dispenser", - "blockRuntimeId" : 4489 - }, - { - "id" : "minecraft:piston", - "blockRuntimeId" : 5759 - }, - { - "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7073 - }, - { - "id" : "minecraft:tnt", - "blockRuntimeId" : 7257 - }, - { - "id" : "minecraft:name_tag" - }, - { - "id" : "minecraft:loom", - "blockRuntimeId" : 5557 - }, - { - "id" : "minecraft:banner" - }, - { - "id" : "minecraft:banner", - "damage" : 8 - }, - { - "id" : "minecraft:banner", - "damage" : 7 - }, - { - "id" : "minecraft:banner", - "damage" : 15 - }, - { - "id" : "minecraft:banner", - "damage" : 12 - }, - { - "id" : "minecraft:banner", - "damage" : 14 - }, - { - "id" : "minecraft:banner", - "damage" : 1 - }, - { - "id" : "minecraft:banner", - "damage" : 4 - }, - { - "id" : "minecraft:banner", - "damage" : 5 - }, - { - "id" : "minecraft:banner", - "damage" : 13 - }, - { - "id" : "minecraft:banner", - "damage" : 9 - }, - { - "id" : "minecraft:banner", - "damage" : 3 - }, - { - "id" : "minecraft:banner", - "damage" : 11 - }, - { - "id" : "minecraft:banner", - "damage" : 10 - }, - { - "id" : "minecraft:banner", - "damage" : 2 - }, - { - "id" : "minecraft:banner", - "damage" : 6 - }, - { - "id" : "minecraft:banner", - "damage" : 15, - "nbt_b64" : "CgAAAwQAVHlwZQEAAAAA" - }, - { - "id" : "minecraft:creeper_banner_pattern" - }, - { - "id" : "minecraft:skull_banner_pattern" - }, - { - "id" : "minecraft:flower_banner_pattern" - }, - { - "id" : "minecraft:mojang_banner_pattern" - }, - { - "id" : "minecraft:field_masoned_banner_pattern" - }, - { - "id" : "minecraft:bordure_indented_banner_pattern" - }, - { - "id" : "minecraft:piglin_banner_pattern" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_star", - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 8, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 7, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 15, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 12, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 14, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 1, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 4, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 5, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 13, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 9, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 3, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 11, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 10, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 2, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 6, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" - }, - { - "id" : "minecraft:chain" - }, - { - "id" : "minecraft:target", - "blockRuntimeId" : 7255 - }, - { - "id" : "minecraft:lodestone_compass" - } + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5794 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5795 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5796 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5797 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5798 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5799 + }, + { + "id" : "minecraft:crimson_planks", + "blockRuntimeId" : 3839 + }, + { + "id" : "minecraft:warped_planks", + "blockRuntimeId" : 7594 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1318 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1319 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1320 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1321 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1322 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1323 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1330 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1325 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1326 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1324 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1327 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1331 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1328 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1329 + }, + { + "id" : "minecraft:blackstone_wall", + "blockRuntimeId" : 507 + }, + { + "id" : "minecraft:polished_blackstone_wall", + "blockRuntimeId" : 6038 + }, + { + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5835 + }, + { + "id" : "minecraft:cobbled_deepslate_wall", + "blockRuntimeId" : 1155 + }, + { + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4297 + }, + { + "id" : "minecraft:polished_deepslate_wall", + "blockRuntimeId" : 6213 + }, + { + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4114 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4773 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4774 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4775 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4776 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4777 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4778 + }, + { + "id" : "minecraft:nether_brick_fence", + "blockRuntimeId" : 5686 + }, + { + "id" : "minecraft:crimson_fence", + "blockRuntimeId" : 3817 + }, + { + "id" : "minecraft:warped_fence", + "blockRuntimeId" : 7572 + }, + { + "id" : "minecraft:fence_gate", + "blockRuntimeId" : 4779 + }, + { + "id" : "minecraft:spruce_fence_gate", + "blockRuntimeId" : 7006 + }, + { + "id" : "minecraft:birch_fence_gate", + "blockRuntimeId" : 400 + }, + { + "id" : "minecraft:jungle_fence_gate", + "blockRuntimeId" : 5252 + }, + { + "id" : "minecraft:acacia_fence_gate", + "blockRuntimeId" : 44 + }, + { + "id" : "minecraft:dark_oak_fence_gate", + "blockRuntimeId" : 3980 + }, + { + "id" : "minecraft:crimson_fence_gate", + "blockRuntimeId" : 3818 + }, + { + "id" : "minecraft:warped_fence_gate", + "blockRuntimeId" : 7573 + }, + { + "id" : "minecraft:normal_stone_stairs", + "blockRuntimeId" : 5705 + }, + { + "id" : "minecraft:stone_stairs", + "blockRuntimeId" : 7277 + }, + { + "id" : "minecraft:mossy_cobblestone_stairs", + "blockRuntimeId" : 5667 + }, + { + "id" : "minecraft:oak_stairs", + "blockRuntimeId" : 5714 + }, + { + "id" : "minecraft:spruce_stairs", + "blockRuntimeId" : 7038 + }, + { + "id" : "minecraft:birch_stairs", + "blockRuntimeId" : 432 + }, + { + "id" : "minecraft:jungle_stairs", + "blockRuntimeId" : 5284 + }, + { + "id" : "minecraft:acacia_stairs", + "blockRuntimeId" : 76 + }, + { + "id" : "minecraft:dark_oak_stairs", + "blockRuntimeId" : 4012 + }, + { + "id" : "minecraft:stone_brick_stairs", + "blockRuntimeId" : 7183 + }, + { + "id" : "minecraft:mossy_stone_brick_stairs", + "blockRuntimeId" : 5675 + }, + { + "id" : "minecraft:sandstone_stairs", + "blockRuntimeId" : 6707 + }, + { + "id" : "minecraft:smooth_sandstone_stairs", + "blockRuntimeId" : 6899 + }, + { + "id" : "minecraft:red_sandstone_stairs", + "blockRuntimeId" : 6634 + }, + { + "id" : "minecraft:smooth_red_sandstone_stairs", + "blockRuntimeId" : 6891 + }, + { + "id" : "minecraft:granite_stairs", + "blockRuntimeId" : 4988 + }, + { + "id" : "minecraft:polished_granite_stairs", + "blockRuntimeId" : 6383 + }, + { + "id" : "minecraft:diorite_stairs", + "blockRuntimeId" : 4475 + }, + { + "id" : "minecraft:polished_diorite_stairs", + "blockRuntimeId" : 6375 + }, + { + "id" : "minecraft:andesite_stairs", + "blockRuntimeId" : 144 + }, + { + "id" : "minecraft:polished_andesite_stairs", + "blockRuntimeId" : 5811 + }, + { + "id" : "minecraft:brick_stairs", + "blockRuntimeId" : 876 + }, + { + "id" : "minecraft:nether_brick_stairs", + "blockRuntimeId" : 5687 + }, + { + "id" : "minecraft:red_nether_brick_stairs", + "blockRuntimeId" : 6622 + }, + { + "id" : "minecraft:end_brick_stairs", + "blockRuntimeId" : 4719 + }, + { + "id" : "minecraft:quartz_stairs", + "blockRuntimeId" : 6556 + }, + { + "id" : "minecraft:smooth_quartz_stairs", + "blockRuntimeId" : 6883 + }, + { + "id" : "minecraft:purpur_stairs", + "blockRuntimeId" : 6534 + }, + { + "id" : "minecraft:prismarine_stairs", + "blockRuntimeId" : 6446 + }, + { + "id" : "minecraft:dark_prismarine_stairs", + "blockRuntimeId" : 4036 + }, + { + "id" : "minecraft:prismarine_bricks_stairs", + "blockRuntimeId" : 6438 + }, + { + "id" : "minecraft:crimson_stairs", + "blockRuntimeId" : 3859 + }, + { + "id" : "minecraft:warped_stairs", + "blockRuntimeId" : 7614 + }, + { + "id" : "minecraft:blackstone_stairs", + "blockRuntimeId" : 499 + }, + { + "id" : "minecraft:polished_blackstone_stairs", + "blockRuntimeId" : 6030 + }, + { + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5827 + }, + { + "id" : "minecraft:cut_copper_stairs", + "blockRuntimeId" : 3912 + }, + { + "id" : "minecraft:exposed_cut_copper_stairs", + "blockRuntimeId" : 4755 + }, + { + "id" : "minecraft:weathered_cut_copper_stairs", + "blockRuntimeId" : 7741 + }, + { + "id" : "minecraft:oxidized_cut_copper_stairs", + "blockRuntimeId" : 5755 + }, + { + "id" : "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId" : 7685 + }, + { + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId" : 7699 + }, + { + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId" : 7727 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7713 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs", + "blockRuntimeId" : 1147 + }, + { + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4289 + }, + { + "id" : "minecraft:polished_deepslate_stairs", + "blockRuntimeId" : 6205 + }, + { + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4106 + }, + { + "id" : "minecraft:wooden_door" + }, + { + "id" : "minecraft:spruce_door" + }, + { + "id" : "minecraft:birch_door" + }, + { + "id" : "minecraft:jungle_door" + }, + { + "id" : "minecraft:acacia_door" + }, + { + "id" : "minecraft:dark_oak_door" + }, + { + "id" : "minecraft:iron_door" + }, + { + "id" : "minecraft:crimson_door" + }, + { + "id" : "minecraft:warped_door" + }, + { + "id" : "minecraft:trapdoor", + "blockRuntimeId" : 7359 + }, + { + "id" : "minecraft:spruce_trapdoor", + "blockRuntimeId" : 7062 + }, + { + "id" : "minecraft:birch_trapdoor", + "blockRuntimeId" : 456 + }, + { + "id" : "minecraft:jungle_trapdoor", + "blockRuntimeId" : 5308 + }, + { + "id" : "minecraft:acacia_trapdoor", + "blockRuntimeId" : 100 + }, + { + "id" : "minecraft:dark_oak_trapdoor", + "blockRuntimeId" : 4020 + }, + { + "id" : "minecraft:iron_trapdoor", + "blockRuntimeId" : 5167 + }, + { + "id" : "minecraft:crimson_trapdoor", + "blockRuntimeId" : 3886 + }, + { + "id" : "minecraft:warped_trapdoor", + "blockRuntimeId" : 7641 + }, + { + "id" : "minecraft:iron_bars", + "blockRuntimeId" : 5132 + }, + { + "id" : "minecraft:glass", + "blockRuntimeId" : 4882 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7084 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7092 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7091 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7099 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7096 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7098 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7085 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7088 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7089 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7097 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7093 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7087 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7095 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7094 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7086 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7090 + }, + { + "id" : "minecraft:tinted_glass", + "blockRuntimeId" : 7348 + }, + { + "id" : "minecraft:glass_pane", + "blockRuntimeId" : 4883 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7100 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7108 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7107 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7115 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7112 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7114 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7101 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7104 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7105 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7113 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7109 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7103 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7111 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7110 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7102 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7106 + }, + { + "id" : "minecraft:ladder", + "blockRuntimeId" : 5356 + }, + { + "id" : "minecraft:scaffolding", + "blockRuntimeId" : 6727 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7219 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7269 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7222 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7240 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7899 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7900 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7901 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7902 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7903 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7904 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7224 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7267 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7220 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7270 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7241 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7235 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7271 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7252 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7257 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7258 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7255 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7256 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7254 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7253 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7223 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7226 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7242 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7251 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7225 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7268 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7236 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7237 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7238 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7239 + }, + { + "id" : "minecraft:crimson_slab", + "blockRuntimeId" : 3857 + }, + { + "id" : "minecraft:warped_slab", + "blockRuntimeId" : 7612 + }, + { + "id" : "minecraft:blackstone_slab", + "blockRuntimeId" : 497 + }, + { + "id" : "minecraft:polished_blackstone_slab", + "blockRuntimeId" : 6028 + }, + { + "id" : "minecraft:polished_blackstone_brick_slab", + "blockRuntimeId" : 5825 + }, + { + "id" : "minecraft:cut_copper_slab", + "blockRuntimeId" : 3910 + }, + { + "id" : "minecraft:exposed_cut_copper_slab", + "blockRuntimeId" : 4753 + }, + { + "id" : "minecraft:weathered_cut_copper_slab", + "blockRuntimeId" : 7739 + }, + { + "id" : "minecraft:oxidized_cut_copper_slab", + "blockRuntimeId" : 5753 + }, + { + "id" : "minecraft:waxed_cut_copper_slab", + "blockRuntimeId" : 7683 + }, + { + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "blockRuntimeId" : 7697 + }, + { + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "blockRuntimeId" : 7725 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId" : 7711 + }, + { + "id" : "minecraft:cobbled_deepslate_slab", + "blockRuntimeId" : 1145 + }, + { + "id" : "minecraft:polished_deepslate_slab", + "blockRuntimeId" : 6203 + }, + { + "id" : "minecraft:deepslate_tile_slab", + "blockRuntimeId" : 4287 + }, + { + "id" : "minecraft:deepslate_brick_slab", + "blockRuntimeId" : 4104 + }, + { + "id" : "minecraft:brick_block", + "blockRuntimeId" : 875 + }, + { + "id" : "minecraft:chiseled_nether_bricks", + "blockRuntimeId" : 1130 + }, + { + "id" : "minecraft:cracked_nether_bricks", + "blockRuntimeId" : 3768 + }, + { + "id" : "minecraft:quartz_bricks", + "blockRuntimeId" : 6554 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7285 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7286 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7287 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7288 + }, + { + "id" : "minecraft:end_bricks", + "blockRuntimeId" : 4727 + }, + { + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6437 + }, + { + "id" : "minecraft:polished_blackstone_bricks", + "blockRuntimeId" : 5997 + }, + { + "id" : "minecraft:cracked_polished_blackstone_bricks", + "blockRuntimeId" : 3769 + }, + { + "id" : "minecraft:gilded_blackstone", + "blockRuntimeId" : 4881 + }, + { + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1131 + }, + { + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4459 + }, + { + "id" : "minecraft:cracked_deepslate_tiles", + "blockRuntimeId" : 3767 + }, + { + "id" : "minecraft:deepslate_bricks", + "blockRuntimeId" : 4276 + }, + { + "id" : "minecraft:cracked_deepslate_bricks", + "blockRuntimeId" : 3766 + }, + { + "id" : "minecraft:chiseled_deepslate", + "blockRuntimeId" : 1129 + }, + { + "id" : "minecraft:cobblestone", + "blockRuntimeId" : 1317 + }, + { + "id" : "minecraft:mossy_cobblestone", + "blockRuntimeId" : 5666 + }, + { + "id" : "minecraft:cobbled_deepslate", + "blockRuntimeId" : 1142 + }, + { + "id" : "minecraft:smooth_stone", + "blockRuntimeId" : 6907 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6703 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6704 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6705 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6706 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6630 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6631 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6632 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6633 + }, + { + "id" : "minecraft:coal_block", + "blockRuntimeId" : 1140 + }, + { + "id" : "minecraft:dried_kelp_block", + "blockRuntimeId" : 4583 + }, + { + "id" : "minecraft:gold_block", + "blockRuntimeId" : 4974 + }, + { + "id" : "minecraft:iron_block", + "blockRuntimeId" : 5133 + }, + { + "id" : "minecraft:copper_block", + "blockRuntimeId" : 3676 + }, + { + "id" : "minecraft:exposed_copper", + "blockRuntimeId" : 4751 + }, + { + "id" : "minecraft:weathered_copper", + "blockRuntimeId" : 7737 + }, + { + "id" : "minecraft:oxidized_copper", + "blockRuntimeId" : 5751 + }, + { + "id" : "minecraft:waxed_copper", + "blockRuntimeId" : 7681 + }, + { + "id" : "minecraft:waxed_exposed_copper", + "blockRuntimeId" : 7695 + }, + { + "id" : "minecraft:waxed_weathered_copper", + "blockRuntimeId" : 7723 + }, + { + "id" : "minecraft:waxed_oxidized_copper", + "blockRuntimeId" : 7709 + }, + { + "id" : "minecraft:cut_copper", + "blockRuntimeId" : 3909 + }, + { + "id" : "minecraft:exposed_cut_copper", + "blockRuntimeId" : 4752 + }, + { + "id" : "minecraft:weathered_cut_copper", + "blockRuntimeId" : 7738 + }, + { + "id" : "minecraft:oxidized_cut_copper", + "blockRuntimeId" : 5752 + }, + { + "id" : "minecraft:waxed_cut_copper", + "blockRuntimeId" : 7682 + }, + { + "id" : "minecraft:waxed_exposed_cut_copper", + "blockRuntimeId" : 7696 + }, + { + "id" : "minecraft:waxed_weathered_cut_copper", + "blockRuntimeId" : 7724 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId" : 7710 + }, + { + "id" : "minecraft:emerald_block", + "blockRuntimeId" : 4716 + }, + { + "id" : "minecraft:diamond_block", + "blockRuntimeId" : 4473 + }, + { + "id" : "minecraft:lapis_block", + "blockRuntimeId" : 5364 + }, + { + "id" : "minecraft:raw_iron_block", + "blockRuntimeId" : 6576 + }, + { + "id" : "minecraft:raw_copper_block", + "blockRuntimeId" : 6574 + }, + { + "id" : "minecraft:raw_gold_block", + "blockRuntimeId" : 6575 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6542 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6544 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6543 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6545 + }, + { + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6435 + }, + { + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6436 + }, + { + "id" : "minecraft:slime", + "blockRuntimeId" : 6860 + }, + { + "id" : "minecraft:honey_block", + "blockRuntimeId" : 5111 + }, + { + "id" : "minecraft:honeycomb_block", + "blockRuntimeId" : 5112 + }, + { + "id" : "minecraft:hay_block", + "blockRuntimeId" : 5083 + }, + { + "id" : "minecraft:bone_block", + "blockRuntimeId" : 692 + }, + { + "id" : "minecraft:nether_brick", + "blockRuntimeId" : 5685 + }, + { + "id" : "minecraft:red_nether_brick", + "blockRuntimeId" : 6621 + }, + { + "id" : "minecraft:netherite_block", + "blockRuntimeId" : 5702 + }, + { + "id" : "minecraft:lodestone", + "blockRuntimeId" : 5562 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 963 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 971 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 970 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 978 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 975 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 977 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 964 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 967 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 968 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 976 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 972 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 966 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 974 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 973 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 965 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 969 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3659 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3667 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3666 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3674 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3671 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3673 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3660 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3663 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3664 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3672 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3668 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3662 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3670 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3669 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3661 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3665 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3643 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3651 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3650 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3658 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3655 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3657 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3644 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3647 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3648 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3656 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3652 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3646 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3654 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3653 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3645 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3649 + }, + { + "id" : "minecraft:clay", + "blockRuntimeId" : 1139 + }, + { + "id" : "minecraft:hardened_clay", + "blockRuntimeId" : 5082 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7116 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7124 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7123 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7131 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7128 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7130 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7117 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7120 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7121 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7129 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7125 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7119 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7127 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7126 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7118 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7122 + }, + { + "id" : "minecraft:white_glazed_terracotta", + "blockRuntimeId" : 7796 + }, + { + "id" : "minecraft:silver_glazed_terracotta", + "blockRuntimeId" : 6842 + }, + { + "id" : "minecraft:gray_glazed_terracotta", + "blockRuntimeId" : 5009 + }, + { + "id" : "minecraft:black_glazed_terracotta", + "blockRuntimeId" : 488 + }, + { + "id" : "minecraft:brown_glazed_terracotta", + "blockRuntimeId" : 894 + }, + { + "id" : "minecraft:red_glazed_terracotta", + "blockRuntimeId" : 6598 + }, + { + "id" : "minecraft:orange_glazed_terracotta", + "blockRuntimeId" : 5745 + }, + { + "id" : "minecraft:yellow_glazed_terracotta", + "blockRuntimeId" : 7938 + }, + { + "id" : "minecraft:lime_glazed_terracotta", + "blockRuntimeId" : 5531 + }, + { + "id" : "minecraft:green_glazed_terracotta", + "blockRuntimeId" : 5025 + }, + { + "id" : "minecraft:cyan_glazed_terracotta", + "blockRuntimeId" : 3930 + }, + { + "id" : "minecraft:light_blue_glazed_terracotta", + "blockRuntimeId" : 5483 + }, + { + "id" : "minecraft:blue_glazed_terracotta", + "blockRuntimeId" : 685 + }, + { + "id" : "minecraft:purple_glazed_terracotta", + "blockRuntimeId" : 6516 + }, + { + "id" : "minecraft:magenta_glazed_terracotta", + "blockRuntimeId" : 5595 + }, + { + "id" : "minecraft:pink_glazed_terracotta", + "blockRuntimeId" : 5776 + }, + { + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6522 + }, + { + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6524 + }, + { + "id" : "minecraft:nether_wart_block", + "blockRuntimeId" : 5701 + }, + { + "id" : "minecraft:warped_wart_block", + "blockRuntimeId" : 7663 + }, + { + "id" : "minecraft:shroomlight", + "blockRuntimeId" : 6825 + }, + { + "id" : "minecraft:crimson_nylium", + "blockRuntimeId" : 3838 + }, + { + "id" : "minecraft:warped_nylium", + "blockRuntimeId" : 7593 + }, + { + "id" : "minecraft:basalt", + "blockRuntimeId" : 214 + }, + { + "id" : "minecraft:polished_basalt", + "blockRuntimeId" : 5819 + }, + { + "id" : "minecraft:smooth_basalt", + "blockRuntimeId" : 6882 + }, + { + "id" : "minecraft:soul_soil", + "blockRuntimeId" : 6952 + }, + { + "id" : "minecraft:dirt", + "blockRuntimeId" : 4483 + }, + { + "id" : "minecraft:dirt", + "blockRuntimeId" : 4484 + }, + { + "id" : "minecraft:farmland", + "blockRuntimeId" : 4765 + }, + { + "id" : "minecraft:grass", + "blockRuntimeId" : 4996 + }, + { + "id" : "minecraft:grass_path", + "blockRuntimeId" : 4997 + }, + { + "id" : "minecraft:podzol", + "blockRuntimeId" : 5800 + }, + { + "id" : "minecraft:mycelium", + "blockRuntimeId" : 5684 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7176 + }, + { + "id" : "minecraft:iron_ore", + "blockRuntimeId" : 5166 + }, + { + "id" : "minecraft:gold_ore", + "blockRuntimeId" : 4975 + }, + { + "id" : "minecraft:diamond_ore", + "blockRuntimeId" : 4474 + }, + { + "id" : "minecraft:lapis_ore", + "blockRuntimeId" : 5365 + }, + { + "id" : "minecraft:redstone_ore", + "blockRuntimeId" : 6644 + }, + { + "id" : "minecraft:coal_ore", + "blockRuntimeId" : 1141 + }, + { + "id" : "minecraft:copper_ore", + "blockRuntimeId" : 3677 + }, + { + "id" : "minecraft:emerald_ore", + "blockRuntimeId" : 4717 + }, + { + "id" : "minecraft:quartz_ore", + "blockRuntimeId" : 6555 + }, + { + "id" : "minecraft:nether_gold_ore", + "blockRuntimeId" : 5695 + }, + { + "id" : "minecraft:ancient_debris", + "blockRuntimeId" : 143 + }, + { + "id" : "minecraft:deepslate_iron_ore", + "blockRuntimeId" : 4282 + }, + { + "id" : "minecraft:deepslate_gold_ore", + "blockRuntimeId" : 4281 + }, + { + "id" : "minecraft:deepslate_diamond_ore", + "blockRuntimeId" : 4279 + }, + { + "id" : "minecraft:deepslate_lapis_ore", + "blockRuntimeId" : 4283 + }, + { + "id" : "minecraft:deepslate_redstone_ore", + "blockRuntimeId" : 4284 + }, + { + "id" : "minecraft:deepslate_emerald_ore", + "blockRuntimeId" : 4280 + }, + { + "id" : "minecraft:deepslate_coal_ore", + "blockRuntimeId" : 4277 + }, + { + "id" : "minecraft:deepslate_copper_ore", + "blockRuntimeId" : 4278 + }, + { + "id" : "minecraft:gravel", + "blockRuntimeId" : 4998 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7177 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7179 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7181 + }, + { + "id" : "minecraft:blackstone", + "blockRuntimeId" : 494 + }, + { + "id" : "minecraft:deepslate", + "blockRuntimeId" : 4099 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7178 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7180 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7182 + }, + { + "id" : "minecraft:polished_blackstone", + "blockRuntimeId" : 5822 + }, + { + "id" : "minecraft:polished_deepslate", + "blockRuntimeId" : 6200 + }, + { + "id" : "minecraft:sand", + "blockRuntimeId" : 6701 + }, + { + "id" : "minecraft:sand", + "blockRuntimeId" : 6702 + }, + { + "id" : "minecraft:cactus", + "blockRuntimeId" : 920 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5563 + }, + { + "id" : "minecraft:stripped_oak_log", + "blockRuntimeId" : 7315 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5564 + }, + { + "id" : "minecraft:stripped_spruce_log", + "blockRuntimeId" : 7318 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5565 + }, + { + "id" : "minecraft:stripped_birch_log", + "blockRuntimeId" : 7300 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5566 + }, + { + "id" : "minecraft:stripped_jungle_log", + "blockRuntimeId" : 7312 + }, + { + "id" : "minecraft:log2", + "blockRuntimeId" : 5575 + }, + { + "id" : "minecraft:stripped_acacia_log", + "blockRuntimeId" : 7297 + }, + { + "id" : "minecraft:log2", + "blockRuntimeId" : 5576 + }, + { + "id" : "minecraft:stripped_dark_oak_log", + "blockRuntimeId" : 7309 + }, + { + "id" : "minecraft:crimson_stem", + "blockRuntimeId" : 3883 + }, + { + "id" : "minecraft:stripped_crimson_stem", + "blockRuntimeId" : 7306 + }, + { + "id" : "minecraft:warped_stem", + "blockRuntimeId" : 7638 + }, + { + "id" : "minecraft:stripped_warped_stem", + "blockRuntimeId" : 7324 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7803 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7809 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7804 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7810 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7805 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7811 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7806 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7812 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7807 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7813 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7808 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7814 + }, + { + "id" : "minecraft:crimson_hyphae", + "blockRuntimeId" : 3835 + }, + { + "id" : "minecraft:stripped_crimson_hyphae", + "blockRuntimeId" : 7303 + }, + { + "id" : "minecraft:warped_hyphae", + "blockRuntimeId" : 7590 + }, + { + "id" : "minecraft:stripped_warped_hyphae", + "blockRuntimeId" : 7321 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5409 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5410 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5411 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5412 + }, + { + "id" : "minecraft:leaves2", + "blockRuntimeId" : 5425 + }, + { + "id" : "minecraft:leaves2", + "blockRuntimeId" : 5426 + }, + { + "id" : "minecraft:azalea_leaves", + "blockRuntimeId" : 169 + }, + { + "id" : "minecraft:azalea_leaves_flowered", + "blockRuntimeId" : 173 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6715 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6716 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6717 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6718 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6719 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6720 + }, + { + "id" : "minecraft:bee_nest", + "blockRuntimeId" : 236 + }, + { + "id" : "minecraft:wheat_seeds" + }, + { + "id" : "minecraft:pumpkin_seeds" + }, + { + "id" : "minecraft:melon_seeds" + }, + { + "id" : "minecraft:beetroot_seeds" + }, + { + "id" : "minecraft:wheat" + }, + { + "id" : "minecraft:beetroot" + }, + { + "id" : "minecraft:potato" + }, + { + "id" : "minecraft:poisonous_potato" + }, + { + "id" : "minecraft:carrot" + }, + { + "id" : "minecraft:golden_carrot" + }, + { + "id" : "minecraft:apple" + }, + { + "id" : "minecraft:golden_apple" + }, + { + "id" : "minecraft:enchanted_golden_apple" + }, + { + "id" : "minecraft:melon_block", + "blockRuntimeId" : 5608 + }, + { + "id" : "minecraft:melon_slice" + }, + { + "id" : "minecraft:glistering_melon_slice" + }, + { + "id" : "minecraft:sweet_berries" + }, + { + "id" : "minecraft:glow_berries" + }, + { + "id" : "minecraft:pumpkin", + "blockRuntimeId" : 6454 + }, + { + "id" : "minecraft:carved_pumpkin", + "blockRuntimeId" : 988 + }, + { + "id" : "minecraft:lit_pumpkin", + "blockRuntimeId" : 5550 + }, + { + "id" : "minecraft:honeycomb" + }, + { + "id" : "minecraft:tallgrass", + "blockRuntimeId" : 7345 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4503 + }, + { + "id" : "minecraft:tallgrass", + "blockRuntimeId" : 7344 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4502 + }, + { + "id" : "minecraft:nether_sprouts" + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3681 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3679 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3680 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3678 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3682 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3686 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3684 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3685 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3683 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3687 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3701 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3699 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3700 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3698 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3702 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3711 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3709 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3710 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3708 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3712 + }, + { + "id" : "minecraft:kelp" + }, + { + "id" : "minecraft:seagrass", + "blockRuntimeId" : 6821 + }, + { + "id" : "minecraft:crimson_roots", + "blockRuntimeId" : 3856 + }, + { + "id" : "minecraft:warped_roots", + "blockRuntimeId" : 7611 + }, + { + "id" : "minecraft:yellow_flower", + "blockRuntimeId" : 7937 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6587 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6588 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6589 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6590 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6591 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6592 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6593 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6594 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6595 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6596 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6597 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4500 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4501 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4504 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4505 + }, + { + "id" : "minecraft:wither_rose", + "blockRuntimeId" : 7802 + }, + { + "id" : "minecraft:white_dye" + }, + { + "id" : "minecraft:light_gray_dye" + }, + { + "id" : "minecraft:gray_dye" + }, + { + "id" : "minecraft:black_dye" + }, + { + "id" : "minecraft:brown_dye" + }, + { + "id" : "minecraft:red_dye" + }, + { + "id" : "minecraft:orange_dye" + }, + { + "id" : "minecraft:yellow_dye" + }, + { + "id" : "minecraft:lime_dye" + }, + { + "id" : "minecraft:green_dye" + }, + { + "id" : "minecraft:cyan_dye" + }, + { + "id" : "minecraft:light_blue_dye" + }, + { + "id" : "minecraft:blue_dye" + }, + { + "id" : "minecraft:purple_dye" + }, + { + "id" : "minecraft:magenta_dye" + }, + { + "id" : "minecraft:pink_dye" + }, + { + "id" : "minecraft:ink_sac" + }, + { + "id" : "minecraft:glow_ink_sac" + }, + { + "id" : "minecraft:cocoa_beans" + }, + { + "id" : "minecraft:lapis_lazuli" + }, + { + "id" : "minecraft:bone_meal" + }, + { + "id" : "minecraft:vine", + "blockRuntimeId" : 7498 + }, + { + "id" : "minecraft:weeping_vines", + "blockRuntimeId" : 7752 + }, + { + "id" : "minecraft:twisting_vines", + "blockRuntimeId" : 7426 + }, + { + "id" : "minecraft:waterlily", + "blockRuntimeId" : 7680 + }, + { + "id" : "minecraft:deadbush", + "blockRuntimeId" : 4098 + }, + { + "id" : "minecraft:bamboo", + "blockRuntimeId" : 177 + }, + { + "id" : "minecraft:snow", + "blockRuntimeId" : 6908 + }, + { + "id" : "minecraft:ice", + "blockRuntimeId" : 5125 + }, + { + "id" : "minecraft:packed_ice", + "blockRuntimeId" : 5765 + }, + { + "id" : "minecraft:blue_ice", + "blockRuntimeId" : 691 + }, + { + "id" : "minecraft:snow_layer", + "blockRuntimeId" : 6909 + }, + { + "id" : "minecraft:pointed_dripstone", + "blockRuntimeId" : 5806 + }, + { + "id" : "minecraft:sculk_sensor", + "blockRuntimeId" : 6745 + }, + { + "id" : "minecraft:dripstone_block", + "blockRuntimeId" : 4584 + }, + { + "id" : "minecraft:moss_carpet", + "blockRuntimeId" : 5665 + }, + { + "id" : "minecraft:moss_block", + "blockRuntimeId" : 5664 + }, + { + "id" : "minecraft:dirt_with_roots", + "blockRuntimeId" : 4485 + }, + { + "id" : "minecraft:hanging_roots", + "blockRuntimeId" : 5047 + }, + { + "id" : "minecraft:big_dripleaf", + "blockRuntimeId" : 328 + }, + { + "id" : "minecraft:small_dripleaf_block", + "blockRuntimeId" : 6874 + }, + { + "id" : "minecraft:spore_blossom", + "blockRuntimeId" : 6961 + }, + { + "id" : "minecraft:azalea", + "blockRuntimeId" : 168 + }, + { + "id" : "minecraft:flowering_azalea", + "blockRuntimeId" : 4814 + }, + { + "id" : "minecraft:glow_lichen", + "blockRuntimeId" : 4971 + }, + { + "id" : "minecraft:amethyst_block", + "blockRuntimeId" : 136 + }, + { + "id" : "minecraft:budding_amethyst", + "blockRuntimeId" : 919 + }, + { + "id" : "minecraft:amethyst_cluster", + "blockRuntimeId" : 137 + }, + { + "id" : "minecraft:large_amethyst_bud", + "blockRuntimeId" : 5366 + }, + { + "id" : "minecraft:medium_amethyst_bud", + "blockRuntimeId" : 5602 + }, + { + "id" : "minecraft:small_amethyst_bud", + "blockRuntimeId" : 6861 + }, + { + "id" : "minecraft:tuff", + "blockRuntimeId" : 7413 + }, + { + "id" : "minecraft:calcite", + "blockRuntimeId" : 943 + }, + { + "id" : "minecraft:chicken" + }, + { + "id" : "minecraft:porkchop" + }, + { + "id" : "minecraft:beef" + }, + { + "id" : "minecraft:mutton" + }, + { + "id" : "minecraft:rabbit" + }, + { + "id" : "minecraft:cod" + }, + { + "id" : "minecraft:salmon" + }, + { + "id" : "minecraft:tropical_fish" + }, + { + "id" : "minecraft:pufferfish" + }, + { + "id" : "minecraft:brown_mushroom", + "blockRuntimeId" : 900 + }, + { + "id" : "minecraft:red_mushroom", + "blockRuntimeId" : 6604 + }, + { + "id" : "minecraft:crimson_fungus", + "blockRuntimeId" : 3834 + }, + { + "id" : "minecraft:warped_fungus", + "blockRuntimeId" : 7589 + }, + { + "id" : "minecraft:brown_mushroom_block", + "blockRuntimeId" : 915 + }, + { + "id" : "minecraft:red_mushroom_block", + "blockRuntimeId" : 6619 + }, + { + "id" : "minecraft:brown_mushroom_block", + "blockRuntimeId" : 916 + }, + { + "id" : "minecraft:brown_mushroom_block", + "blockRuntimeId" : 901 + }, + { + "id" : "minecraft:egg" + }, + { + "id" : "minecraft:sugar_cane" + }, + { + "id" : "minecraft:sugar" + }, + { + "id" : "minecraft:rotten_flesh" + }, + { + "id" : "minecraft:bone" + }, + { + "id" : "minecraft:web", + "blockRuntimeId" : 7751 + }, + { + "id" : "minecraft:spider_eye" + }, + { + "id" : "minecraft:mob_spawner", + "blockRuntimeId" : 5657 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5658 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5659 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5660 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5661 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5662 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5663 + }, + { + "id" : "minecraft:infested_deepslate", + "blockRuntimeId" : 5126 + }, + { + "id" : "minecraft:dragon_egg", + "blockRuntimeId" : 4582 + }, + { + "id" : "minecraft:turtle_egg", + "blockRuntimeId" : 7414 + }, + { + "id" : "minecraft:chicken_spawn_egg" + }, + { + "id" : "minecraft:bee_spawn_egg" + }, + { + "id" : "minecraft:cow_spawn_egg" + }, + { + "id" : "minecraft:pig_spawn_egg" + }, + { + "id" : "minecraft:sheep_spawn_egg" + }, + { + "id" : "minecraft:wolf_spawn_egg" + }, + { + "id" : "minecraft:polar_bear_spawn_egg" + }, + { + "id" : "minecraft:ocelot_spawn_egg" + }, + { + "id" : "minecraft:cat_spawn_egg" + }, + { + "id" : "minecraft:mooshroom_spawn_egg" + }, + { + "id" : "minecraft:bat_spawn_egg" + }, + { + "id" : "minecraft:parrot_spawn_egg" + }, + { + "id" : "minecraft:rabbit_spawn_egg" + }, + { + "id" : "minecraft:llama_spawn_egg" + }, + { + "id" : "minecraft:horse_spawn_egg" + }, + { + "id" : "minecraft:donkey_spawn_egg" + }, + { + "id" : "minecraft:mule_spawn_egg" + }, + { + "id" : "minecraft:skeleton_horse_spawn_egg" + }, + { + "id" : "minecraft:zombie_horse_spawn_egg" + }, + { + "id" : "minecraft:tropical_fish_spawn_egg" + }, + { + "id" : "minecraft:cod_spawn_egg" + }, + { + "id" : "minecraft:pufferfish_spawn_egg" + }, + { + "id" : "minecraft:salmon_spawn_egg" + }, + { + "id" : "minecraft:dolphin_spawn_egg" + }, + { + "id" : "minecraft:turtle_spawn_egg" + }, + { + "id" : "minecraft:panda_spawn_egg" + }, + { + "id" : "minecraft:fox_spawn_egg" + }, + { + "id" : "minecraft:creeper_spawn_egg" + }, + { + "id" : "minecraft:enderman_spawn_egg" + }, + { + "id" : "minecraft:silverfish_spawn_egg" + }, + { + "id" : "minecraft:skeleton_spawn_egg" + }, + { + "id" : "minecraft:wither_skeleton_spawn_egg" + }, + { + "id" : "minecraft:stray_spawn_egg" + }, + { + "id" : "minecraft:slime_spawn_egg" + }, + { + "id" : "minecraft:spider_spawn_egg" + }, + { + "id" : "minecraft:zombie_spawn_egg" + }, + { + "id" : "minecraft:zombie_pigman_spawn_egg" + }, + { + "id" : "minecraft:husk_spawn_egg" + }, + { + "id" : "minecraft:drowned_spawn_egg" + }, + { + "id" : "minecraft:squid_spawn_egg" + }, + { + "id" : "minecraft:glow_squid_spawn_egg" + }, + { + "id" : "minecraft:cave_spider_spawn_egg" + }, + { + "id" : "minecraft:witch_spawn_egg" + }, + { + "id" : "minecraft:guardian_spawn_egg" + }, + { + "id" : "minecraft:elder_guardian_spawn_egg" + }, + { + "id" : "minecraft:endermite_spawn_egg" + }, + { + "id" : "minecraft:magma_cube_spawn_egg" + }, + { + "id" : "minecraft:strider_spawn_egg" + }, + { + "id" : "minecraft:hoglin_spawn_egg" + }, + { + "id" : "minecraft:piglin_spawn_egg" + }, + { + "id" : "minecraft:zoglin_spawn_egg" + }, + { + "id" : "minecraft:piglin_brute_spawn_egg" + }, + { + "id" : "minecraft:goat_spawn_egg" + }, + { + "id" : "minecraft:axolotl_spawn_egg" + }, + { + "id" : "minecraft:ghast_spawn_egg" + }, + { + "id" : "minecraft:blaze_spawn_egg" + }, + { + "id" : "minecraft:shulker_spawn_egg" + }, + { + "id" : "minecraft:vindicator_spawn_egg" + }, + { + "id" : "minecraft:evoker_spawn_egg" + }, + { + "id" : "minecraft:vex_spawn_egg" + }, + { + "id" : "minecraft:villager_spawn_egg" + }, + { + "id" : "minecraft:wandering_trader_spawn_egg" + }, + { + "id" : "minecraft:zombie_villager_spawn_egg" + }, + { + "id" : "minecraft:phantom_spawn_egg" + }, + { + "id" : "minecraft:pillager_spawn_egg" + }, + { + "id" : "minecraft:ravager_spawn_egg" + }, + { + "id" : "minecraft:obsidian", + "blockRuntimeId" : 5734 + }, + { + "id" : "minecraft:crying_obsidian", + "blockRuntimeId" : 3908 + }, + { + "id" : "minecraft:bedrock", + "blockRuntimeId" : 234 + }, + { + "id" : "minecraft:soul_sand", + "blockRuntimeId" : 6951 + }, + { + "id" : "minecraft:netherrack", + "blockRuntimeId" : 5703 + }, + { + "id" : "minecraft:magma", + "blockRuntimeId" : 5601 + }, + { + "id" : "minecraft:nether_wart" + }, + { + "id" : "minecraft:end_stone", + "blockRuntimeId" : 4744 + }, + { + "id" : "minecraft:chorus_flower", + "blockRuntimeId" : 1132 + }, + { + "id" : "minecraft:chorus_plant", + "blockRuntimeId" : 1138 + }, + { + "id" : "minecraft:chorus_fruit" + }, + { + "id" : "minecraft:popped_chorus_fruit" + }, + { + "id" : "minecraft:sponge", + "blockRuntimeId" : 6959 + }, + { + "id" : "minecraft:sponge", + "blockRuntimeId" : 6960 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3688 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3689 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3690 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3691 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3692 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3693 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3694 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3695 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3696 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3697 + }, + { + "id" : "minecraft:leather_helmet" + }, + { + "id" : "minecraft:chainmail_helmet" + }, + { + "id" : "minecraft:iron_helmet" + }, + { + "id" : "minecraft:golden_helmet" + }, + { + "id" : "minecraft:diamond_helmet" + }, + { + "id" : "minecraft:netherite_helmet" + }, + { + "id" : "minecraft:leather_chestplate" + }, + { + "id" : "minecraft:chainmail_chestplate" + }, + { + "id" : "minecraft:iron_chestplate" + }, + { + "id" : "minecraft:golden_chestplate" + }, + { + "id" : "minecraft:diamond_chestplate" + }, + { + "id" : "minecraft:netherite_chestplate" + }, + { + "id" : "minecraft:leather_leggings" + }, + { + "id" : "minecraft:chainmail_leggings" + }, + { + "id" : "minecraft:iron_leggings" + }, + { + "id" : "minecraft:golden_leggings" + }, + { + "id" : "minecraft:diamond_leggings" + }, + { + "id" : "minecraft:netherite_leggings" + }, + { + "id" : "minecraft:leather_boots" + }, + { + "id" : "minecraft:chainmail_boots" + }, + { + "id" : "minecraft:iron_boots" + }, + { + "id" : "minecraft:golden_boots" + }, + { + "id" : "minecraft:diamond_boots" + }, + { + "id" : "minecraft:netherite_boots" + }, + { + "id" : "minecraft:wooden_sword" + }, + { + "id" : "minecraft:stone_sword" + }, + { + "id" : "minecraft:iron_sword" + }, + { + "id" : "minecraft:golden_sword" + }, + { + "id" : "minecraft:diamond_sword" + }, + { + "id" : "minecraft:netherite_sword" + }, + { + "id" : "minecraft:wooden_axe" + }, + { + "id" : "minecraft:stone_axe" + }, + { + "id" : "minecraft:iron_axe" + }, + { + "id" : "minecraft:golden_axe" + }, + { + "id" : "minecraft:diamond_axe" + }, + { + "id" : "minecraft:netherite_axe" + }, + { + "id" : "minecraft:wooden_pickaxe" + }, + { + "id" : "minecraft:stone_pickaxe" + }, + { + "id" : "minecraft:iron_pickaxe" + }, + { + "id" : "minecraft:golden_pickaxe" + }, + { + "id" : "minecraft:diamond_pickaxe" + }, + { + "id" : "minecraft:netherite_pickaxe" + }, + { + "id" : "minecraft:wooden_shovel" + }, + { + "id" : "minecraft:stone_shovel" + }, + { + "id" : "minecraft:iron_shovel" + }, + { + "id" : "minecraft:golden_shovel" + }, + { + "id" : "minecraft:diamond_shovel" + }, + { + "id" : "minecraft:netherite_shovel" + }, + { + "id" : "minecraft:wooden_hoe" + }, + { + "id" : "minecraft:stone_hoe" + }, + { + "id" : "minecraft:iron_hoe" + }, + { + "id" : "minecraft:golden_hoe" + }, + { + "id" : "minecraft:diamond_hoe" + }, + { + "id" : "minecraft:netherite_hoe" + }, + { + "id" : "minecraft:bow" + }, + { + "id" : "minecraft:crossbow" + }, + { + "id" : "minecraft:arrow" + }, + { + "id" : "minecraft:arrow", + "damage" : 6 + }, + { + "id" : "minecraft:arrow", + "damage" : 7 + }, + { + "id" : "minecraft:arrow", + "damage" : 8 + }, + { + "id" : "minecraft:arrow", + "damage" : 9 + }, + { + "id" : "minecraft:arrow", + "damage" : 10 + }, + { + "id" : "minecraft:arrow", + "damage" : 11 + }, + { + "id" : "minecraft:arrow", + "damage" : 12 + }, + { + "id" : "minecraft:arrow", + "damage" : 13 + }, + { + "id" : "minecraft:arrow", + "damage" : 14 + }, + { + "id" : "minecraft:arrow", + "damage" : 15 + }, + { + "id" : "minecraft:arrow", + "damage" : 16 + }, + { + "id" : "minecraft:arrow", + "damage" : 17 + }, + { + "id" : "minecraft:arrow", + "damage" : 18 + }, + { + "id" : "minecraft:arrow", + "damage" : 19 + }, + { + "id" : "minecraft:arrow", + "damage" : 20 + }, + { + "id" : "minecraft:arrow", + "damage" : 21 + }, + { + "id" : "minecraft:arrow", + "damage" : 22 + }, + { + "id" : "minecraft:arrow", + "damage" : 23 + }, + { + "id" : "minecraft:arrow", + "damage" : 24 + }, + { + "id" : "minecraft:arrow", + "damage" : 25 + }, + { + "id" : "minecraft:arrow", + "damage" : 26 + }, + { + "id" : "minecraft:arrow", + "damage" : 27 + }, + { + "id" : "minecraft:arrow", + "damage" : 28 + }, + { + "id" : "minecraft:arrow", + "damage" : 29 + }, + { + "id" : "minecraft:arrow", + "damage" : 30 + }, + { + "id" : "minecraft:arrow", + "damage" : 31 + }, + { + "id" : "minecraft:arrow", + "damage" : 32 + }, + { + "id" : "minecraft:arrow", + "damage" : 33 + }, + { + "id" : "minecraft:arrow", + "damage" : 34 + }, + { + "id" : "minecraft:arrow", + "damage" : 35 + }, + { + "id" : "minecraft:arrow", + "damage" : 36 + }, + { + "id" : "minecraft:arrow", + "damage" : 37 + }, + { + "id" : "minecraft:arrow", + "damage" : 38 + }, + { + "id" : "minecraft:arrow", + "damage" : 39 + }, + { + "id" : "minecraft:arrow", + "damage" : 40 + }, + { + "id" : "minecraft:arrow", + "damage" : 41 + }, + { + "id" : "minecraft:arrow", + "damage" : 42 + }, + { + "id" : "minecraft:arrow", + "damage" : 43 + }, + { + "id" : "minecraft:shield" + }, + { + "id" : "minecraft:cooked_chicken" + }, + { + "id" : "minecraft:cooked_porkchop" + }, + { + "id" : "minecraft:cooked_beef" + }, + { + "id" : "minecraft:cooked_mutton" + }, + { + "id" : "minecraft:cooked_rabbit" + }, + { + "id" : "minecraft:cooked_cod" + }, + { + "id" : "minecraft:cooked_salmon" + }, + { + "id" : "minecraft:bread" + }, + { + "id" : "minecraft:mushroom_stew" + }, + { + "id" : "minecraft:beetroot_soup" + }, + { + "id" : "minecraft:rabbit_stew" + }, + { + "id" : "minecraft:baked_potato" + }, + { + "id" : "minecraft:cookie" + }, + { + "id" : "minecraft:pumpkin_pie" + }, + { + "id" : "minecraft:cake" + }, + { + "id" : "minecraft:dried_kelp" + }, + { + "id" : "minecraft:fishing_rod" + }, + { + "id" : "minecraft:carrot_on_a_stick" + }, + { + "id" : "minecraft:warped_fungus_on_a_stick" + }, + { + "id" : "minecraft:snowball" + }, + { + "id" : "minecraft:shears" + }, + { + "id" : "minecraft:flint_and_steel" + }, + { + "id" : "minecraft:lead" + }, + { + "id" : "minecraft:clock" + }, + { + "id" : "minecraft:compass" + }, + { + "id" : "minecraft:empty_map" + }, + { + "id" : "minecraft:empty_map", + "damage" : 2 + }, + { + "id" : "minecraft:saddle" + }, + { + "id" : "minecraft:leather_horse_armor" + }, + { + "id" : "minecraft:iron_horse_armor" + }, + { + "id" : "minecraft:golden_horse_armor" + }, + { + "id" : "minecraft:diamond_horse_armor" + }, + { + "id" : "minecraft:trident" + }, + { + "id" : "minecraft:turtle_helmet" + }, + { + "id" : "minecraft:elytra" + }, + { + "id" : "minecraft:totem_of_undying" + }, + { + "id" : "minecraft:glass_bottle" + }, + { + "id" : "minecraft:experience_bottle" + }, + { + "id" : "minecraft:potion" + }, + { + "id" : "minecraft:potion", + "damage" : 1 + }, + { + "id" : "minecraft:potion", + "damage" : 2 + }, + { + "id" : "minecraft:potion", + "damage" : 3 + }, + { + "id" : "minecraft:potion", + "damage" : 4 + }, + { + "id" : "minecraft:potion", + "damage" : 5 + }, + { + "id" : "minecraft:potion", + "damage" : 6 + }, + { + "id" : "minecraft:potion", + "damage" : 7 + }, + { + "id" : "minecraft:potion", + "damage" : 8 + }, + { + "id" : "minecraft:potion", + "damage" : 9 + }, + { + "id" : "minecraft:potion", + "damage" : 10 + }, + { + "id" : "minecraft:potion", + "damage" : 11 + }, + { + "id" : "minecraft:potion", + "damage" : 12 + }, + { + "id" : "minecraft:potion", + "damage" : 13 + }, + { + "id" : "minecraft:potion", + "damage" : 14 + }, + { + "id" : "minecraft:potion", + "damage" : 15 + }, + { + "id" : "minecraft:potion", + "damage" : 16 + }, + { + "id" : "minecraft:potion", + "damage" : 17 + }, + { + "id" : "minecraft:potion", + "damage" : 18 + }, + { + "id" : "minecraft:potion", + "damage" : 19 + }, + { + "id" : "minecraft:potion", + "damage" : 20 + }, + { + "id" : "minecraft:potion", + "damage" : 21 + }, + { + "id" : "minecraft:potion", + "damage" : 22 + }, + { + "id" : "minecraft:potion", + "damage" : 23 + }, + { + "id" : "minecraft:potion", + "damage" : 24 + }, + { + "id" : "minecraft:potion", + "damage" : 25 + }, + { + "id" : "minecraft:potion", + "damage" : 26 + }, + { + "id" : "minecraft:potion", + "damage" : 27 + }, + { + "id" : "minecraft:potion", + "damage" : 28 + }, + { + "id" : "minecraft:potion", + "damage" : 29 + }, + { + "id" : "minecraft:potion", + "damage" : 30 + }, + { + "id" : "minecraft:potion", + "damage" : 31 + }, + { + "id" : "minecraft:potion", + "damage" : 32 + }, + { + "id" : "minecraft:potion", + "damage" : 33 + }, + { + "id" : "minecraft:potion", + "damage" : 34 + }, + { + "id" : "minecraft:potion", + "damage" : 35 + }, + { + "id" : "minecraft:potion", + "damage" : 36 + }, + { + "id" : "minecraft:potion", + "damage" : 37 + }, + { + "id" : "minecraft:potion", + "damage" : 38 + }, + { + "id" : "minecraft:potion", + "damage" : 39 + }, + { + "id" : "minecraft:potion", + "damage" : 40 + }, + { + "id" : "minecraft:potion", + "damage" : 41 + }, + { + "id" : "minecraft:potion", + "damage" : 42 + }, + { + "id" : "minecraft:splash_potion" + }, + { + "id" : "minecraft:splash_potion", + "damage" : 1 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 2 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 3 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 4 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 5 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 6 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 7 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 8 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 9 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 10 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 11 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 12 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 13 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 14 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 15 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 16 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 17 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 18 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 19 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 20 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 21 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 22 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 23 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 24 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 25 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 26 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 27 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 28 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 29 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 30 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 31 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 32 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 33 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 34 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 35 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 36 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 37 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 38 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 39 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 40 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 41 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 42 + }, + { + "id" : "minecraft:lingering_potion" + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 1 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 2 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 3 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 4 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 5 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 6 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 7 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 8 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 9 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 10 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 11 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 12 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 13 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 14 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 15 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 16 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 17 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 18 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 19 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 20 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 21 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 22 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 23 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 24 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 25 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 26 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 27 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 28 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 29 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 30 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 31 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 32 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 33 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 34 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 35 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 36 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 37 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 38 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 39 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 40 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 41 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 42 + }, + { + "id" : "minecraft:spyglass" + }, + { + "id" : "minecraft:stick" + }, + { + "id" : "minecraft:bed" + }, + { + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "id" : "minecraft:torch", + "blockRuntimeId" : 7353 + }, + { + "id" : "minecraft:soul_torch", + "blockRuntimeId" : 6953 + }, + { + "id" : "minecraft:sea_pickle", + "blockRuntimeId" : 6813 + }, + { + "id" : "minecraft:lantern", + "blockRuntimeId" : 5362 + }, + { + "id" : "minecraft:soul_lantern", + "blockRuntimeId" : 6949 + }, + { + "id" : "minecraft:candle", + "blockRuntimeId" : 953 + }, + { + "id" : "minecraft:white_candle", + "blockRuntimeId" : 7786 + }, + { + "id" : "minecraft:orange_candle", + "blockRuntimeId" : 5735 + }, + { + "id" : "minecraft:magenta_candle", + "blockRuntimeId" : 5585 + }, + { + "id" : "minecraft:light_blue_candle", + "blockRuntimeId" : 5473 + }, + { + "id" : "minecraft:yellow_candle", + "blockRuntimeId" : 7927 + }, + { + "id" : "minecraft:lime_candle", + "blockRuntimeId" : 5521 + }, + { + "id" : "minecraft:pink_candle", + "blockRuntimeId" : 5766 + }, + { + "id" : "minecraft:gray_candle", + "blockRuntimeId" : 4999 + }, + { + "id" : "minecraft:light_gray_candle", + "blockRuntimeId" : 5489 + }, + { + "id" : "minecraft:cyan_candle", + "blockRuntimeId" : 3920 + }, + { + "id" : "minecraft:purple_candle", + "blockRuntimeId" : 6506 + }, + { + "id" : "minecraft:blue_candle", + "blockRuntimeId" : 675 + }, + { + "id" : "minecraft:brown_candle", + "blockRuntimeId" : 884 + }, + { + "id" : "minecraft:green_candle", + "blockRuntimeId" : 5015 + }, + { + "id" : "minecraft:red_candle", + "blockRuntimeId" : 6577 + }, + { + "id" : "minecraft:black_candle", + "blockRuntimeId" : 478 + }, + { + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3770 + }, + { + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 987 + }, + { + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4811 + }, + { + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6875 + }, + { + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + }, + { + "id" : "minecraft:campfire" + }, + { + "id" : "minecraft:soul_campfire" + }, + { + "id" : "minecraft:furnace", + "blockRuntimeId" : 4875 + }, + { + "id" : "minecraft:blast_furnace", + "blockRuntimeId" : 669 + }, + { + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + }, + { + "id" : "minecraft:respawn_anchor", + "blockRuntimeId" : 6696 + }, + { + "id" : "minecraft:brewing_stand" + }, + { + "id" : "minecraft:anvil", + "blockRuntimeId" : 152 + }, + { + "id" : "minecraft:anvil", + "blockRuntimeId" : 156 + }, + { + "id" : "minecraft:anvil", + "blockRuntimeId" : 160 + }, + { + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5031 + }, + { + "id" : "minecraft:enchanting_table", + "blockRuntimeId" : 4718 + }, + { + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 704 + }, + { + "id" : "minecraft:lectern", + "blockRuntimeId" : 5433 + }, + { + "id" : "minecraft:cauldron" + }, + { + "id" : "minecraft:composter", + "blockRuntimeId" : 3634 + }, + { + "id" : "minecraft:chest", + "blockRuntimeId" : 1123 + }, + { + "id" : "minecraft:trapped_chest", + "blockRuntimeId" : 7375 + }, + { + "id" : "minecraft:ender_chest", + "blockRuntimeId" : 4745 + }, + { + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + }, + { + "id" : "minecraft:undyed_shulker_box", + "blockRuntimeId" : 7458 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + }, + { + "id" : "minecraft:armor_stand" + }, + { + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5713 + }, + { + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5207 + }, + { + "id" : "minecraft:music_disc_13" + }, + { + "id" : "minecraft:music_disc_cat" + }, + { + "id" : "minecraft:music_disc_blocks" + }, + { + "id" : "minecraft:music_disc_chirp" + }, + { + "id" : "minecraft:music_disc_far" + }, + { + "id" : "minecraft:music_disc_mall" + }, + { + "id" : "minecraft:music_disc_mellohi" + }, + { + "id" : "minecraft:music_disc_stal" + }, + { + "id" : "minecraft:music_disc_strad" + }, + { + "id" : "minecraft:music_disc_ward" + }, + { + "id" : "minecraft:music_disc_11" + }, + { + "id" : "minecraft:music_disc_wait" + }, + { + "id" : "minecraft:music_disc_pigstep" + }, + { + "id" : "minecraft:glowstone_dust" + }, + { + "id" : "minecraft:glowstone", + "blockRuntimeId" : 4973 + }, + { + "id" : "minecraft:redstone_lamp", + "blockRuntimeId" : 6643 + }, + { + "id" : "minecraft:sealantern", + "blockRuntimeId" : 6824 + }, + { + "id" : "minecraft:oak_sign" + }, + { + "id" : "minecraft:spruce_sign" + }, + { + "id" : "minecraft:birch_sign" + }, + { + "id" : "minecraft:jungle_sign" + }, + { + "id" : "minecraft:acacia_sign" + }, + { + "id" : "minecraft:dark_oak_sign" + }, + { + "id" : "minecraft:crimson_sign" + }, + { + "id" : "minecraft:warped_sign" + }, + { + "id" : "minecraft:painting" + }, + { + "id" : "minecraft:frame" + }, + { + "id" : "minecraft:glow_frame" + }, + { + "id" : "minecraft:honey_bottle" + }, + { + "id" : "minecraft:flower_pot" + }, + { + "id" : "minecraft:bowl" + }, + { + "id" : "minecraft:bucket" + }, + { + "id" : "minecraft:milk_bucket" + }, + { + "id" : "minecraft:water_bucket" + }, + { + "id" : "minecraft:lava_bucket" + }, + { + "id" : "minecraft:cod_bucket" + }, + { + "id" : "minecraft:salmon_bucket" + }, + { + "id" : "minecraft:tropical_fish_bucket" + }, + { + "id" : "minecraft:pufferfish_bucket" + }, + { + "id" : "minecraft:powder_snow_bucket" + }, + { + "id" : "minecraft:axolotl_bucket" + }, + { + "id" : "minecraft:skull", + "damage" : 3 + }, + { + "id" : "minecraft:skull", + "damage" : 2 + }, + { + "id" : "minecraft:skull", + "damage" : 4 + }, + { + "id" : "minecraft:skull", + "damage" : 5 + }, + { + "id" : "minecraft:skull" + }, + { + "id" : "minecraft:skull", + "damage" : 1 + }, + { + "id" : "minecraft:beacon", + "blockRuntimeId" : 217 + }, + { + "id" : "minecraft:bell", + "blockRuntimeId" : 292 + }, + { + "id" : "minecraft:conduit", + "blockRuntimeId" : 3675 + }, + { + "id" : "minecraft:stonecutter_block", + "blockRuntimeId" : 7291 + }, + { + "id" : "minecraft:end_portal_frame", + "blockRuntimeId" : 4730 + }, + { + "id" : "minecraft:coal" + }, + { + "id" : "minecraft:charcoal" + }, + { + "id" : "minecraft:diamond" + }, + { + "id" : "minecraft:iron_nugget" + }, + { + "id" : "minecraft:raw_iron" + }, + { + "id" : "minecraft:raw_gold" + }, + { + "id" : "minecraft:raw_copper" + }, + { + "id" : "minecraft:copper_ingot" + }, + { + "id" : "minecraft:iron_ingot" + }, + { + "id" : "minecraft:netherite_scrap" + }, + { + "id" : "minecraft:netherite_ingot" + }, + { + "id" : "minecraft:gold_nugget" + }, + { + "id" : "minecraft:gold_ingot" + }, + { + "id" : "minecraft:emerald" + }, + { + "id" : "minecraft:quartz" + }, + { + "id" : "minecraft:clay_ball" + }, + { + "id" : "minecraft:brick" + }, + { + "id" : "minecraft:netherbrick" + }, + { + "id" : "minecraft:prismarine_shard" + }, + { + "id" : "minecraft:amethyst_shard" + }, + { + "id" : "minecraft:prismarine_crystals" + }, + { + "id" : "minecraft:nautilus_shell" + }, + { + "id" : "minecraft:heart_of_the_sea" + }, + { + "id" : "minecraft:scute" + }, + { + "id" : "minecraft:phantom_membrane" + }, + { + "id" : "minecraft:string" + }, + { + "id" : "minecraft:feather" + }, + { + "id" : "minecraft:flint" + }, + { + "id" : "minecraft:gunpowder" + }, + { + "id" : "minecraft:leather" + }, + { + "id" : "minecraft:rabbit_hide" + }, + { + "id" : "minecraft:rabbit_foot" + }, + { + "id" : "minecraft:fire_charge" + }, + { + "id" : "minecraft:blaze_rod" + }, + { + "id" : "minecraft:blaze_powder" + }, + { + "id" : "minecraft:magma_cream" + }, + { + "id" : "minecraft:fermented_spider_eye" + }, + { + "id" : "minecraft:dragon_breath" + }, + { + "id" : "minecraft:shulker_shell" + }, + { + "id" : "minecraft:ghast_tear" + }, + { + "id" : "minecraft:slime_ball" + }, + { + "id" : "minecraft:ender_pearl" + }, + { + "id" : "minecraft:ender_eye" + }, + { + "id" : "minecraft:nether_star" + }, + { + "id" : "minecraft:end_rod", + "blockRuntimeId" : 4738 + }, + { + "id" : "minecraft:lightning_rod", + "blockRuntimeId" : 5515 + }, + { + "id" : "minecraft:end_crystal" + }, + { + "id" : "minecraft:paper" + }, + { + "id" : "minecraft:book" + }, + { + "id" : "minecraft:writable_book" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:oak_boat" + }, + { + "id" : "minecraft:spruce_boat" + }, + { + "id" : "minecraft:birch_boat" + }, + { + "id" : "minecraft:jungle_boat" + }, + { + "id" : "minecraft:acacia_boat" + }, + { + "id" : "minecraft:dark_oak_boat" + }, + { + "id" : "minecraft:rail", + "blockRuntimeId" : 6564 + }, + { + "id" : "minecraft:golden_rail", + "blockRuntimeId" : 4976 + }, + { + "id" : "minecraft:detector_rail", + "blockRuntimeId" : 4461 + }, + { + "id" : "minecraft:activator_rail", + "blockRuntimeId" : 122 + }, + { + "id" : "minecraft:minecart" + }, + { + "id" : "minecraft:chest_minecart" + }, + { + "id" : "minecraft:hopper_minecart" + }, + { + "id" : "minecraft:tnt_minecart" + }, + { + "id" : "minecraft:redstone" + }, + { + "id" : "minecraft:redstone_block", + "blockRuntimeId" : 6642 + }, + { + "id" : "minecraft:redstone_torch", + "blockRuntimeId" : 6645 + }, + { + "id" : "minecraft:lever", + "blockRuntimeId" : 5441 + }, + { + "id" : "minecraft:wooden_button", + "blockRuntimeId" : 7839 + }, + { + "id" : "minecraft:spruce_button", + "blockRuntimeId" : 6962 + }, + { + "id" : "minecraft:birch_button", + "blockRuntimeId" : 356 + }, + { + "id" : "minecraft:jungle_button", + "blockRuntimeId" : 5208 + }, + { + "id" : "minecraft:acacia_button" + }, + { + "id" : "minecraft:dark_oak_button", + "blockRuntimeId" : 3936 + }, + { + "id" : "minecraft:stone_button", + "blockRuntimeId" : 7191 + }, + { + "id" : "minecraft:crimson_button", + "blockRuntimeId" : 3771 + }, + { + "id" : "minecraft:warped_button", + "blockRuntimeId" : 7526 + }, + { + "id" : "minecraft:polished_blackstone_button", + "blockRuntimeId" : 5998 + }, + { + "id" : "minecraft:tripwire_hook", + "blockRuntimeId" : 7397 + }, + { + "id" : "minecraft:wooden_pressure_plate", + "blockRuntimeId" : 7883 + }, + { + "id" : "minecraft:spruce_pressure_plate", + "blockRuntimeId" : 7022 + }, + { + "id" : "minecraft:birch_pressure_plate", + "blockRuntimeId" : 416 + }, + { + "id" : "minecraft:jungle_pressure_plate", + "blockRuntimeId" : 5268 + }, + { + "id" : "minecraft:acacia_pressure_plate", + "blockRuntimeId" : 60 + }, + { + "id" : "minecraft:dark_oak_pressure_plate", + "blockRuntimeId" : 3996 + }, + { + "id" : "minecraft:crimson_pressure_plate", + "blockRuntimeId" : 3840 + }, + { + "id" : "minecraft:warped_pressure_plate", + "blockRuntimeId" : 7595 + }, + { + "id" : "minecraft:stone_pressure_plate", + "blockRuntimeId" : 7203 + }, + { + "id" : "minecraft:light_weighted_pressure_plate", + "blockRuntimeId" : 5499 + }, + { + "id" : "minecraft:heavy_weighted_pressure_plate", + "blockRuntimeId" : 5095 + }, + { + "id" : "minecraft:polished_blackstone_pressure_plate", + "blockRuntimeId" : 6012 + }, + { + "id" : "minecraft:observer", + "blockRuntimeId" : 5722 + }, + { + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4066 + }, + { + "id" : "minecraft:repeater" + }, + { + "id" : "minecraft:comparator" + }, + { + "id" : "minecraft:hopper" + }, + { + "id" : "minecraft:dropper", + "blockRuntimeId" : 4588 + }, + { + "id" : "minecraft:dispenser", + "blockRuntimeId" : 4489 + }, + { + "id" : "minecraft:piston", + "blockRuntimeId" : 5783 + }, + { + "id" : "minecraft:sticky_piston", + "blockRuntimeId" : 7165 + }, + { + "id" : "minecraft:tnt", + "blockRuntimeId" : 7349 + }, + { + "id" : "minecraft:name_tag" + }, + { + "id" : "minecraft:loom", + "blockRuntimeId" : 5581 + }, + { + "id" : "minecraft:banner" + }, + { + "id" : "minecraft:banner", + "damage" : 8 + }, + { + "id" : "minecraft:banner", + "damage" : 7 + }, + { + "id" : "minecraft:banner", + "damage" : 15 + }, + { + "id" : "minecraft:banner", + "damage" : 12 + }, + { + "id" : "minecraft:banner", + "damage" : 14 + }, + { + "id" : "minecraft:banner", + "damage" : 1 + }, + { + "id" : "minecraft:banner", + "damage" : 4 + }, + { + "id" : "minecraft:banner", + "damage" : 5 + }, + { + "id" : "minecraft:banner", + "damage" : 13 + }, + { + "id" : "minecraft:banner", + "damage" : 9 + }, + { + "id" : "minecraft:banner", + "damage" : 3 + }, + { + "id" : "minecraft:banner", + "damage" : 11 + }, + { + "id" : "minecraft:banner", + "damage" : 10 + }, + { + "id" : "minecraft:banner", + "damage" : 2 + }, + { + "id" : "minecraft:banner", + "damage" : 6 + }, + { + "id" : "minecraft:banner", + "damage" : 15, + "nbt_b64" : "CgAAAwQAVHlwZQEAAAAA" + }, + { + "id" : "minecraft:creeper_banner_pattern" + }, + { + "id" : "minecraft:skull_banner_pattern" + }, + { + "id" : "minecraft:flower_banner_pattern" + }, + { + "id" : "minecraft:mojang_banner_pattern" + }, + { + "id" : "minecraft:field_masoned_banner_pattern" + }, + { + "id" : "minecraft:bordure_indented_banner_pattern" + }, + { + "id" : "minecraft:piglin_banner_pattern" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_star", + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 8, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 7, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 15, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 12, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 14, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 1, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 4, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 5, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 13, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 9, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 3, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 11, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 10, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 2, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 6, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" + }, + { + "id" : "minecraft:chain" + }, + { + "id" : "minecraft:target", + "blockRuntimeId" : 7347 + }, + { + "id" : "minecraft:lodestone_compass" + } ] -} +} \ No newline at end of file From 1abbbd352953cc33b90b296c2e99d0feac423f7a Mon Sep 17 00:00:00 2001 From: Niziebi <84825876+Niziebi@users.noreply.github.com> Date: Sat, 25 Sep 2021 01:19:30 +0900 Subject: [PATCH 210/394] Solved problems other than item frame bugs --- src/main/resources/canonical_block_states.nbt | Bin 1166071 -> 1174676 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/src/main/resources/canonical_block_states.nbt b/src/main/resources/canonical_block_states.nbt index 541dcb4fb03ab661183e2793ef198ff35749a8e0..411b69e1137690a129f3d69db626ff6407bcaded 100644 GIT binary patch delta 3294 zcma)+Ur19?9LKv&=iJVncWPySaXA<)sSK;FG8KXa)nIRd4|B+k4HaX%36fC61z&;) z9fu(BsfQrahe-6Hf}*$75TqW8Mo$HSWUx}Ub#`V)?EZddKJ4Ls&i8(Qf4=7~mkCdN z4Bs{tbEj!DtITTCZq}F%v(|K)u4iO+wO(mV8v0=DS}H!M$F3)ajG^)Oj}FkqRnjFn z3(yyNva4YS{&s-wD^yYxf05nNBE7jv7N6IcLc!bUlpXRZw1EI+L&z=I z44@$E#BRD3*a3phA7whj4tqN@!=E1fdMZOCfW`!a8X|bJ!va0avVvTGtq#u7~MLjweEE4up+0Q)_EY?LMwE2xj zY<)KdsPac`9-ltuQq%0IKh_sF;sYaT>ix-Z^RSD4xT1M!zS`aN?C{QM=#T>IUm^VFDcI*F!YAexsCybd4f&jd_O$>?eKco-TfbNZ z^9Kn3j_|Y9u+LqDe}cKvO7G8+!?ooLByPtoJM6xQaBmH)Pa*s@!W$hHpKgZ=F8;Yy z$}e_Jt;K@#s|bIL@HK>Aa>D)(5&i?_%4Klz_gt|17lgMFSbqoMO9=O=7N4jJFaE7n z$``!HZL#1yf$&*`JL_Pd9)v$Zcpl;2E)D$XCpEb43c|ZRu>Qn|<F7M2#)7Pc1l7LFFq7OocVEj&9vPyhCn$8own3$N((uU~nb zrZMq~L4@9Z;eoQ=f9HWnPS59tD2te$_7kE@48#hXp8Au=X*y7cD1-&n0hVwC=@6Uz zj7w=c|34my>9SmW%G-e~Mdske@lkQED20e4ga53gSP8*W}8<^y8>?QggR0{y1F c72uh^AxfZT`hrOUJng&k1-9?X7ra#i05sctmjD0& From 844786682258319c42a455ed45350b85222e2810 Mon Sep 17 00:00:00 2001 From: Niziebi <84825876+Niziebi@users.noreply.github.com> Date: Sat, 25 Sep 2021 03:23:13 +0900 Subject: [PATCH 211/394] Reflected the request --- mvnw.cmd | 1 - src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/mvnw.cmd b/mvnw.cmd index d9dc4a18c8c..b26ab24f039 100644 --- a/mvnw.cmd +++ b/mvnw.cmd @@ -58,7 +58,6 @@ set ERROR_CODE=0 @setlocal @REM ==== START VALIDATION ==== -set JAVA_HOME=C:\Program Files\Java\jdk1.8.0_301 if not "%JAVA_HOME%" == "" goto OkJHome echo. diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index 27a54e6fe14..3899da52ff2 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -17,12 +17,12 @@ public interface ProtocolInfo { /** * Actual Minecraft: PE protocol version */ - int CURRENT_PROTOCOL = Integer.valueOf("465"); + int CURRENT_PROTOCOL = dynamic(465); List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION = "v1.17.30"; - String MINECRAFT_VERSION_NETWORK = "1.17.30"; + String MINECRAFT_VERSION = dynamic("v1.17.30"); + String MINECRAFT_VERSION_NETWORK = dynamic("1.17.30"); byte LOGIN_PACKET = 0x01; byte PLAY_STATUS_PACKET = 0x02; From 16b245266f1a7298700f3733cf5b7f6146f2323b Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 24 Sep 2021 17:00:16 -0300 Subject: [PATCH 212/394] Updates the translations --- src/main/resources/lang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/lang b/src/main/resources/lang index 9d99a24afee..ad741024962 160000 --- a/src/main/resources/lang +++ b/src/main/resources/lang @@ -1 +1 @@ -Subproject commit 9d99a24afeec22c000692704bec0d8c2f3ce62f2 +Subproject commit ad7410249621d0c781ce246ffbf8641196b320e7 From e14b40630131f771a2e7a5bd1f0169646a22af2c Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 24 Sep 2021 18:00:27 -0300 Subject: [PATCH 213/394] Fix offset position after BinaryStream.getTag() --- src/main/java/cn/nukkit/utils/BinaryStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index 27650b843f3..9666a400876 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -888,7 +888,7 @@ public CompoundTag getTag() { try { return NBTIO.read(is); } finally { - offset += is.available() - initial; + offset += initial - is.available(); } } From 0369b0b99e902eb454d1d4efa428a97b95f2a148 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 24 Sep 2021 19:36:42 -0300 Subject: [PATCH 214/394] Update the dumps --- dumps/block-properties.ini | 2 + dumps/block-states.ini | 12 + dumps/item-id-dump.properties | 217 +- dumps/r12_to_current_block_map.bin | Bin 0 -> 370221 bytes dumps/r12_to_current_block_map.bin.txt | 22707 ++++++++++++++++ dumps/runtime_block_states.dat.dump.txt | 6742 ++--- dumps/simple-blocks-nukkit.txt | 4 + .../org/powernukkit/dumps/ItemIdDumper.java | 4 +- .../tools/CurrentBlockMapReader.java | 46 + 9 files changed, 26439 insertions(+), 3295 deletions(-) create mode 100644 dumps/r12_to_current_block_map.bin create mode 100644 dumps/r12_to_current_block_map.bin.txt create mode 100644 src/test/java/org/powernukkit/tools/CurrentBlockMapReader.java diff --git a/dumps/block-properties.ini b/dumps/block-properties.ini index 7ebd3e6732d..b65a56f6384 100644 --- a/dumps/block-properties.ini +++ b/dumps/block-properties.ini @@ -1,6 +1,7 @@ # WARNING! Don't edit this file! It's automatically regenerated! [properties] +active=0,1 age=0,1,2 age=0,1,2,3 age=0,1,2,3,4,5 @@ -61,6 +62,7 @@ huge_mushroom_bits=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 in_wall_bit=0,1 infiniburn_bit=0,1 item_frame_map_bit=0,1 +item_frame_photo_bit=0,1 kelp_age=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 lever_direction=down_east_west,down_north_south,east,north,south,up_east_west,up_north_south,west liquid_depth=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 diff --git a/dumps/block-states.ini b/dumps/block-states.ini index 00207d99441..ffc220e4f2f 100644 --- a/dumps/block-states.ini +++ b/dumps/block-states.ini @@ -963,6 +963,7 @@ liquid_depth=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 [minecraft:frame] facing_direction=0,1,2,3,4,5 item_frame_map_bit=0,1 +item_frame_photo_bit=0,1 [minecraft:frosted_ice] age=0,1,2,3 @@ -979,6 +980,7 @@ facing_direction=0,1,2,3,4,5 [minecraft:glow_frame] facing_direction=0,1,2,3,4,5 item_frame_map_bit=0,1 +item_frame_photo_bit=0,1 [minecraft:glow_lichen] multi_face_direction_bits=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63 @@ -1593,9 +1595,19 @@ sapling_type=acacia,birch,dark_oak,jungle,oak,spruce stability=0,1,2,3,4,5,6,7 stability_check=0,1 +[minecraft:sculk] + +[minecraft:sculk_catalyst] + [minecraft:sculk_sensor] powered_bit=0,1 +[minecraft:sculk_shrieker] +active=0,1 + +[minecraft:sculk_vein] +multi_face_direction_bits=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63 + [minecraft:seaLantern] [minecraft:sea_pickle] diff --git a/dumps/item-id-dump.properties b/dumps/item-id-dump.properties index 608544c27e9..8a9b78091f6 100644 --- a/dumps/item-id-dump.properties +++ b/dumps/item-id-dump.properties @@ -325,18 +325,129 @@ 24=minecraft:sandstone 25=minecraft:noteblock 26=minecraft:item.bed +263_0=minecraft:coal +263_1=minecraft:charcoal 27=minecraft:golden_rail 28=minecraft:detector_rail 29=minecraft:sticky_piston 30=minecraft:web 31=minecraft:tallgrass 32=minecraft:deadbush +325_0=minecraft:bucket +325_1=minecraft:milk_bucket +325_2=minecraft:cod_bucket +325_3=minecraft:salmon_bucket +325_4=minecraft:tropical_fish_bucket +325_5=minecraft:pufferfish_bucket +325_8=minecraft:water_bucket +325_10=minecraft:lava_bucket 33=minecraft:piston +333_0=minecraft:oak_boat +333_1=minecraft:spruce_boat +333_2=minecraft:birch_boat +333_3=minecraft:jungle_boat +333_4=minecraft:acacia_boat +333_5=minecraft:dark_oak_boat 34=minecraft:pistonarmcollision 35=minecraft:wool +351_0=minecraft:ink_sac +351_1=minecraft:red_dye +351_2=minecraft:green_dye +351_3=minecraft:cocoa_beans +351_4=minecraft:lapis_lazuli +351_5=minecraft:purple_dye +351_6=minecraft:cyan_dye +351_7=minecraft:light_gray_dye +351_8=minecraft:gray_dye +351_9=minecraft:pink_dye +434_0=minecraft:creeper_banner_pattern +434_1=minecraft:skull_banner_pattern +434_2=minecraft:flower_banner_pattern +434_3=minecraft:mojang_banner_pattern +434_4=minecraft:field_masoned_banner_pattern +434_5=minecraft:bordure_indented_banner_pattern +434_6=minecraft:piglin_banner_pattern +351_10=minecraft:lime_dye +351_11=minecraft:yellow_dye +351_12=minecraft:light_blue_dye +351_13=minecraft:magenta_dye +351_14=minecraft:orange_dye +351_15=minecraft:bone_meal +351_16=minecraft:black_dye +351_17=minecraft:brown_dye +351_18=minecraft:blue_dye +351_19=minecraft:white_dye 36=minecraft:element_0 37=minecraft:yellow_flower 38=minecraft:red_flower +383_10=minecraft:chicken_spawn_egg +383_11=minecraft:cow_spawn_egg +383_12=minecraft:pig_spawn_egg +383_13=minecraft:sheep_spawn_egg +383_14=minecraft:wolf_spawn_egg +383_15=minecraft:villager_spawn_egg +383_16=minecraft:mooshroom_spawn_egg +383_17=minecraft:squid_spawn_egg +383_18=minecraft:rabbit_spawn_egg +383_19=minecraft:bat_spawn_egg +383_22=minecraft:ocelot_spawn_egg +383_23=minecraft:horse_spawn_egg +383_24=minecraft:donkey_spawn_egg +383_25=minecraft:mule_spawn_egg +383_26=minecraft:skeleton_horse_spawn_egg +383_27=minecraft:zombie_horse_spawn_egg +383_28=minecraft:polar_bear_spawn_egg +383_29=minecraft:llama_spawn_egg +383_30=minecraft:parrot_spawn_egg +383_31=minecraft:dolphin_spawn_egg +383_32=minecraft:zombie_spawn_egg +383_33=minecraft:creeper_spawn_egg +383_34=minecraft:skeleton_spawn_egg +383_35=minecraft:spider_spawn_egg +383_36=minecraft:zombie_pigman_spawn_egg +383_37=minecraft:slime_spawn_egg +383_38=minecraft:enderman_spawn_egg +383_39=minecraft:silverfish_spawn_egg +383_40=minecraft:cave_spider_spawn_egg +383_41=minecraft:ghast_spawn_egg +383_42=minecraft:magma_cube_spawn_egg +383_43=minecraft:blaze_spawn_egg +383_44=minecraft:zombie_villager_spawn_egg +383_45=minecraft:witch_spawn_egg +383_46=minecraft:stray_spawn_egg +383_47=minecraft:husk_spawn_egg +383_48=minecraft:wither_skeleton_spawn_egg +383_49=minecraft:guardian_spawn_egg +383_50=minecraft:elder_guardian_spawn_egg +383_51=minecraft:npc_spawn_egg +383_54=minecraft:shulker_spawn_egg +383_55=minecraft:endermite_spawn_egg +383_56=minecraft:agent_spawn_egg +383_57=minecraft:vindicator_spawn_egg +383_58=minecraft:phantom_spawn_egg +383_59=minecraft:ravager_spawn_egg +383_74=minecraft:turtle_spawn_egg +383_75=minecraft:cat_spawn_egg +383_104=minecraft:evoker_spawn_egg +383_105=minecraft:vex_spawn_egg +383_108=minecraft:pufferfish_spawn_egg +383_109=minecraft:salmon_spawn_egg +383_110=minecraft:drowned_spawn_egg +383_111=minecraft:tropical_fish_spawn_egg +383_112=minecraft:cod_spawn_egg +383_113=minecraft:panda_spawn_egg +383_114=minecraft:pillager_spawn_egg +383_118=minecraft:wandering_trader_spawn_egg +383_121=minecraft:fox_spawn_egg +383_122=minecraft:bee_spawn_egg +383_123=minecraft:piglin_spawn_egg +383_124=minecraft:hoglin_spawn_egg +383_125=minecraft:strider_spawn_egg +383_126=minecraft:zoglin_spawn_egg +383_127=minecraft:piglin_brute_spawn_egg +383_128=minecraft:goat_spawn_egg +383_129=minecraft:glow_squid_spawn_egg +383_130=minecraft:axolotl_spawn_egg 39=minecraft:brown_mushroom 40=minecraft:red_mushroom 41=minecraft:gold_block @@ -560,8 +671,6 @@ 260=minecraft:apple 261=minecraft:bow 262=minecraft:arrow -263_0=minecraft:coal -263_1=minecraft:charcoal 264=minecraft:diamond 265=minecraft:iron_ingot 266=minecraft:gold_ingot @@ -623,25 +732,12 @@ 322=minecraft:golden_apple 323=minecraft:oak_sign 324=minecraft:wooden_door -325_0=minecraft:bucket -325_1=minecraft:milk_bucket -325_2=minecraft:cod_bucket -325_3=minecraft:salmon_bucket -325_4=minecraft:tropical_fish_bucket -325_8=minecraft:water_bucket 328=minecraft:minecart 329=minecraft:saddle 330=minecraft:iron_door 331=minecraft:redstone 332=minecraft:snowball 333=minecraft:boat -333_0=minecraft:oak_boat -333_1=minecraft:spruce_boat -333_2=minecraft:birch_boat -333_3=minecraft:jungle_boat -333_4=minecraft:acacia_boat -333_5=minecraft:dark_oak_boat -325_10=minecraft:lava_bucket 334=minecraft:leather 335=minecraft:kelp 336=minecraft:brick @@ -659,26 +755,6 @@ 349=minecraft:cod 350=minecraft:cooked_cod 351=minecraft:dye -351_0=minecraft:ink_sac -351_1=minecraft:red_dye -351_2=minecraft:green_dye -351_3=minecraft:cocoa_beans -351_4=minecraft:lapis_lazuli -351_5=minecraft:purple_dye -351_6=minecraft:cyan_dye -351_7=minecraft:light_gray_dye -351_8=minecraft:gray_dye -351_9=minecraft:pink_dye -351_10=minecraft:lime_dye -351_11=minecraft:yellow_dye -351_12=minecraft:light_blue_dye -351_13=minecraft:magenta_dye -351_14=minecraft:orange_dye -351_15=minecraft:bone_meal -351_16=minecraft:black_dye -351_17=minecraft:brown_dye -351_18=minecraft:blue_dye -351_19=minecraft:white_dye 352=minecraft:bone 353=minecraft:sugar 354=minecraft:cake @@ -711,77 +787,6 @@ 381=minecraft:ender_eye 382=minecraft:glistering_melon_slice 383=minecraft:spawn_egg -434_0=minecraft:creeper_banner_pattern -434_1=minecraft:skull_banner_pattern -434_2=minecraft:flower_banner_pattern -434_3=minecraft:mojang_banner_pattern -434_4=minecraft:field_masoned_banner_pattern -434_5=minecraft:bordure_indented_banner_pattern -434_6=minecraft:piglin_banner_pattern -383_10=minecraft:chicken_spawn_egg -383_11=minecraft:cow_spawn_egg -383_12=minecraft:pig_spawn_egg -383_13=minecraft:sheep_spawn_egg -383_14=minecraft:wolf_spawn_egg -383_15=minecraft:villager_spawn_egg -383_16=minecraft:mooshroom_spawn_egg -383_17=minecraft:squid_spawn_egg -383_18=minecraft:rabbit_spawn_egg -383_19=minecraft:bat_spawn_egg -383_22=minecraft:ocelot_spawn_egg -383_23=minecraft:horse_spawn_egg -383_24=minecraft:donkey_spawn_egg -383_25=minecraft:mule_spawn_egg -383_26=minecraft:skeleton_horse_spawn_egg -383_27=minecraft:zombie_horse_spawn_egg -383_28=minecraft:polar_bear_spawn_egg -383_29=minecraft:llama_spawn_egg -383_30=minecraft:parrot_spawn_egg -383_31=minecraft:dolphin_spawn_egg -383_32=minecraft:zombie_spawn_egg -383_33=minecraft:creeper_spawn_egg -383_34=minecraft:wither_skeleton_spawn_egg -383_35=minecraft:spider_spawn_egg -383_36=minecraft:zombie_pigman_spawn_egg -383_37=minecraft:slime_spawn_egg -383_38=minecraft:enderman_spawn_egg -383_39=minecraft:silverfish_spawn_egg -383_40=minecraft:cave_spider_spawn_egg -383_41=minecraft:ghast_spawn_egg -383_42=minecraft:magma_cube_spawn_egg -383_43=minecraft:blaze_spawn_egg -383_44=minecraft:zombie_villager_spawn_egg -383_45=minecraft:witch_spawn_egg -383_46=minecraft:stray_spawn_egg -383_47=minecraft:husk_spawn_egg -383_49=minecraft:guardian_spawn_egg -383_50=minecraft:elder_guardian_spawn_egg -383_51=minecraft:npc_spawn_egg -383_54=minecraft:shulker_spawn_egg -383_55=minecraft:endermite_spawn_egg -383_56=minecraft:agent_spawn_egg -383_57=minecraft:vindicator_spawn_egg -383_58=minecraft:phantom_spawn_egg -383_59=minecraft:ravager_spawn_egg -383_74=minecraft:turtle_spawn_egg -383_75=minecraft:cat_spawn_egg -383_104=minecraft:evoker_spawn_egg -383_105=minecraft:vex_spawn_egg -383_108=minecraft:pufferfish_spawn_egg -383_109=minecraft:salmon_spawn_egg -383_110=minecraft:drowned_spawn_egg -383_111=minecraft:tropical_fish_spawn_egg -383_112=minecraft:cod_spawn_egg -383_113=minecraft:panda_spawn_egg -383_114=minecraft:pillager_spawn_egg -383_118=minecraft:wandering_trader_spawn_egg -383_121=minecraft:fox_spawn_egg -383_122=minecraft:bee_spawn_egg -383_123=minecraft:piglin_spawn_egg -383_124=minecraft:hoglin_spawn_egg -383_125=minecraft:strider_spawn_egg -383_126=minecraft:zoglin_spawn_egg -383_127=minecraft:piglin_brute_spawn_egg 384=minecraft:experience_bottle 385=minecraft:fire_charge 386=minecraft:writable_book diff --git a/dumps/r12_to_current_block_map.bin b/dumps/r12_to_current_block_map.bin new file mode 100644 index 0000000000000000000000000000000000000000..a92bfcc329a6e0c9a67b9dd39c9e4a7c5dae425b GIT binary patch literal 370221 zcmdqK+jbjAwk;@%6h+IjE-u^Ua^3bm-RGRwV@tmETc3XIhyDW$kc3E-KmY}RR>>bw z-?l%i6Ce{aa^|`QlHQ~C7&S)8j1_Y(WW-u?Wn^UJ?{B8_$;E2?Zu5VQFUA+s@#y?^ zvsug^J$m-&>|{Q^nfzX{cy_wpj5m|@(dTzPM$6S?y`Ef-&ZnD4$FJTsVDqcd<#aW< z*i5&8$4`Hmtk%sx|M?&PeEmp+JsO($agg}&(8MP};^U!-PlLoKLld6`iJuHj{47X( zIy7-~RzLmEB0f8a_^3XPKN*@h8pqFuCXUAOr$ZA**O@h8yRqZiwrqw7Y6Cp%3(I$JC!^Sgh(yj?CQtI_#vaq)il z7fPTq4YXNq7un24Od> zxl!u|>V&Wx*4(Id164!V4Qp=nr)X?$poR#$Va<(NH&9W8-LU3HtsAH>!fse|qt=aA z`!Xl&hBY_(QoY?8`j+DPtn-i_%iQ? zH8*PA_$u#)H8*PA_?cF8V<{uaemVp@Rxpz6 z>bP?%uyC<(VOeFyJ;RRmiX^)_?iqG0QzY5danG=0bt1{$9rtn#EfMcnlt{97J83%FfPM$1`8<2}oL#(lY(T&|lf36s%!dNm)<`2NrXg0Op*DkVRA^njq|o~263 zPaQoVNVsRIQu6ag4+y&LS*n!$q|pO{SbLT#B|l^IfS}NxrAqmnWXS`9EPIwJ<%=XG zw78n`Rgw|{Tuu3Tk`k(0P5DKV5>i`D`Bjn<`dUr-b&?XIT21*)k`hW7hr6fy$FDw2rmM?EX7k-0E2MG=R#r_7 z6KbhhWPU3Pr-li^)GRWrteqMrG*h!sS)0vRwc`re9D+4Eu29Y)Sfk?#@f?Dc$MrA0 z`nHLj`Q>)2>$W;Y*gA&oC?9`$wOZWHFL%B5fOXIiw~nDh%OmTcA#fc-hn9!dK||y^ zh7N6VY!SML(Q?h}pdof0L+96W-RqzscpXEBmTO-J4bkfuI<#E>I%p_=9YcqfYhVWr zC9q@Y&~hE@q3u`wJ;VDw{z{hOTG&BDDeM?Jzn1G^2My)0W9ZOwP3)kdBz6oPTCR&7 zG?c}Tp+n2Hv4e)v*fDfyxjz0wPj5G?@v^%oR=3%cmHT45+hDt;Ggaq0G89+05!fHo zw$n;>2ycr0WEghnZ;JhN7_ioF>3-P7sLxbsr7jtr&NZR~MBgdOWvDfVLA4`GLHr`U^eKZG6fonkk~ zJwEH8;wknb&-Z_OoE>7GVmHS<&JImav76)0?BDeCeYcIHdoOJm?PJb;;nVWhq z6W=u(AP{cDNN3_3Wdj5vZ5ZiHd~a-kK#&b1or!OU4G@U0VWczh9k2lcp*4(jCe{@L z1fpsf#hJb?<7qSfWxQ$L0b7ly%~R9%g>KcPWjXq6+hKG$-ZXE6Z(rtqarfWatK2Fe z;z~7%a&nBRfQT^FB+ALrrUD|?RFfzt$DIm@s8da%oE(8FAmUFoiE?r*s(^?@)g;Qv zQK+av%=r@*&=9iQ8bkpovqQ|*qDc!YcL2Dl9>Zs6Q-6q4# zfv%%MiFKO{Gl#p53O&|sGRz$GIx19Iw^5k`4|sJ{XtQpUVUCY86nYru_&7tShhgS% zepw`g`7dP+%`NSfJv+S|-;A#&pEQqjcmKF7k7S^9!5|1#ZVAEjh%pG_ky}FWJS+@? zpyQShym##pSswhW^=x`|y_tP%?qIfKkr@I+(IG6}NFZVkVetk8(QyciH!i4KJ(lOq z@n1D#f-1F^!5a_Mq_qs*SfB!}W$?xU^`^&gdcIn`pUe}933X*2+q?FtAM@DWRY#qe z$L8z(3R-YJzBykku%OawY7^ek(K>BakbbCljm^RGEcMvn@b(Q6vUizhpOJU5^%Rc<_A-)vvr8{m3Cg&xk4 z*d>8r)p;@-ubRm-z$JmEJ)9%4O9I`i@?@Zpfi6Cf7qN>0;q=`&da(QfaeW{!ViyAn zT;;}a`2#}zaE`<-2?V{)lfm)_)c@feiCq%Z3RRvAls`~aJdhXS#VA&~+HzsMoHhH7 zQHQ7|LM8Bgeb;-m`M8`MFUIdl;Z-aY9I8o=?&z$V4uwUW?opTSbiG{NUQD7t5EVq6 zk$zy35tTxmk$&To^Xcm1I{Fh)5yT1UC*}wt{Bc71g{ObJonOtuqX?0YGty5?GD6Se zjQkt#j^K_CBeXlt$iFei2$_yE(r-Mw9IxJw5(x*29OtB8ndXG{#yRPCW^yVNHcm%B zF+&F#jnf_Q>!6o$I{(*ow0E_d6dN3RO|2jar&$+!QYq|uC{Vs$lTJ`<1mnkBJrrnN zuSq8;_IkMlkhTOtv7O5$fRZH$&Jtq)!4#I#fr%JM?-e zkeyzWK23`_a0#F?34$UHTmnc+f}n^4mjL>aASmL%C4gci2#Ppx37`=Pf+7xF0;s|; z1h32W+0|+~DIVVU+uDh0>E*6TfhaZ#oKG%sbJqQP+qqnXKYDRJ8DEZ; z(@Aq4+IHXF(euT{#clK7ci&VYU%P-1r|#bcqUJce1Bf6}E>Uw}-2p@pE0?G_lI{Q^ zh?Yy#97t#q@vQFxLcF?vuNWhn2qNYZd1GV~LCjntZ;Wgrh?+~(8>6F496{V%qFx-O zh#+z^2W#}f*86)-WV}aseO~n zRr9?MXi~qeO+`m9rt^2x`SkpDb$6x+iBG>L1gPJpp|Y=^7aBg9Y*vfK2F?nNE$;DY zbBMx+%{3R_LKnCxG%_APyB4}Y4uwX>_vv7$f?Eza4q@n$o=xW1XpH)riRAf1x# z*=BLotXl5MISL`d#KfeADB0tqI2mSbCD}=W3{$$2>@-1!`5qv9dOe?(*dBZb1Qf+#agDC{bTGGm0oECetTSc~8NRF%AoH}#;lk%r>bN>l=5XN~DRo?#0mFw->bNrFg|D3ixJ>PG zE+D>VQbCj%DSWY{f+#ag_$EmOQD%(r)sX;^t6k1G;oBmWWSOzT7ep$_GUJ8sgjAB5 zWA;^X-?iPx()$LvV$jM<AA zT7fngx47RMhBg?txceK1HW;_K7aWE*7`M199ELU+x41tXhBg?txKn%>+AmmdyXPs2 z&28{>mR}C}#JI=;?G>8^C#;XN^*>d|10b?MiN$8YiRS6g0UuizS)j{ev*1MYWT@*z z`FWn+mzzUZ0xBJKBKOI@kQ31Cs1w$l*d52VoUBIYv*uZtv@kESK*7akVK}TgQRxKq zJnDosCn}wQx<{R`=0rb4`5sGTf!2%7!f;q~qS6T{f7A(UPEaKvfWR z!kQEPi5Z#`s1c%0SaYJ%2~-SGC#*S9=>+PBs1w$lsB{7=&`~F>Inke(A??7*bkqrJ zPE%4|qfS_JqCYW1a{^1>Q75c9QRxKM#G_7FbE47- zES5)|u;xUi6Iex$I$_O;{=^Jv2UgglPFQoI(h01-N1d?dM5Pm0nU6YQ&524UuxcN5 z!kQEPi5Z#`Sj~?*Va4nwvHQX5;^YfXJhNQu@sTx?tV13jvFfwIc{~lIrI%!EIb%S znek3=W4$5At&Vqs8_NtiZgsp9+*n=6ad*eNT=}AHmj)~r6$~SHyz98JmXPD_j&~h5 zmJo8>-SMvD#>zpCTOIGjT*HDvj=P)Bi{G8##yUZcTOIENHnxPt@Xb_`WQeirE9K&>4^m5`qTIyjJM$518Y=YI|kblEXf3HiyNg99;k z3{^sY=I7u*fgMAYkY87Da3H&mp-RZ_GdMWVTE|c&G(LAI1wI6}meBanp+pE(ttB)* zaVQZ&N^1#?j~hya(9c>ztP z(8gWOiSP;}q);))aIz{YkWfR#Aj8SRs6avx6@v^XYoh`QO;ik2&cMm<3M6DvG01QR z#}mpp0B3MKA&vuZ@_7E4_rtXBL(n(9ZM*hLD<8|{g(e#eacbK+q&%WF7y{L{b4Yne zZ7@WtZRe2Y#uTA?5GmKNHW*^nwsU?d*ReJjg4MQjNV%4^!4R#sokPm?tPO^8*0ys< zxu&(jP}16V4k_2Q4%q%%ZjN2<^W8QWN?Y5``K4Un+F&SeZ99jQYg`))C9ZAfkaC@C zgQ3i|?Hp3Bb!{+|y0)D|%Jpt}&fo5Rj{Y~hRg*ncoOX5qH)J-$T|O!5-TLraqY4bQRZWCzZjN`D8={-xHpe^6 z4eiZvo8ukkh6HE0i}Bt)8?K8nC~=0n81DnPvCfp?F2?%+Zs>A`yBO~SxFOFOZgafD za}6q;;Wo!R%nh;5aGT>D=7wfxxXtlq?&51|cMD{~H@S72eO7fp$*p5RtaTfmhwplI z3<$Gsqx0~Mu8si_)@^hizPHseAh^1X&cnB}ItIj5x6yg{4pzs2km@!%4==gs7!Xa} zCeHKk#d^|g+`MISH5>ohoZ`8etX9pbqRp96IM&R!9g-JubqFuVmyd-w^KJFt%kk!8 zA?|!zotNX!$3h(XwmL7zqmPBS^lf!sj!z#8aq8RZyd1AS7UI^ojr0D#6Tj=t=v{LR z;<)*Q$bQ{LvpAds5t`@VxYQ63jhco2J2(b41Vo-@p>uG&X$Xii%|hqk*wPRXQJRI$ z!EvM^AbKkBSvfjgD1@nN8fPt!LY+17IxVG4Xl#*b z>ukCCe=%1};Kg{;9EyMT>2f-2zE3wA|6{s7`WT@>Y=>zc zSI{7s!!#!qG>G0X&1nSaDS=Gl+)ZY3|bwUirj5lA&nOm!MzHK|o!lzUzMtv-Vt8c6G^0@j~2wC4& z=jE~Wu@JVttzQ4bGY`p96(l;22t*oC+K$ zh88EM00#>3?-*K~9R3azV&5^eI63qkD8#*EXmRq34h|Gz-Z8W| z`8@{*3QLEMp~cCsIXF;QM|2D=PJYY5gW5lC_YB+j9E3b%y}&EvKCCbvz{&48I8az_ zbPTO)`*kkIW9{((&Tn#@Scp7;lV5Ofps*_G7+Tks-)|`I-*3;)oA3KwEM~Vi&28$l zM`tJV@y$fDXjzUvxm=B}Mwd-J&O)hmg+gi;0ywWt6koBv7+-8|8<}oh?lrY=$H(KV zX6sA$4!ma#_j*koAlB%fHB`CR)B$4Q?O8)=drci6R@0s}^t0F00b+^lSwj?iO&uWC zy`D9cuGiE7VlnGkL%w=V9UxYyo;5V7*VF-G+38tBXnIW@Al8z;b#P|0K=gnh3B9I{ zN1XM0*2wd{rVbFN@}4!4cdw}f#QC{rjf~uD>Hu-l?O7wu_L@3CoJotX30;ie7aQ!T zVGr`WxwqJ++uM1wnU<3hbwWy_1{sYr6Lmsfq6Qg_(-U<6oTM2rUtua=YId+WWX_6nUnX{z1D>dA-eCKX#{;T8{b-@`jyteUSe zyMUPL9^liPrf!`#?^+m@>()g~Z4dF;YbQPFjHN)<#hhu^A6L}g}Yjfd80?Kk5Wx;M~i0R>3TYAo(y{aDOIHacyjS^Jon(R z-Kpm~`?tJZH6KIv0F@e3@-H&`luA>8dvd;A1o7Nc3Qh^{YBia-cuL(V;2p0TiFE>4 zDLw_XC+FMOu?X)qo`zqHSF6Q#?Yg}w?zgq$dwhD;T)E9P>wmuoQeeN0(YOZf_dx#Z zw=o*mp#2`mef>5@;~KQz14*yn#%NrF_In`X_1hSYYtViVB)onbqj3$|?}2>RZ(}sR zcm88%zHJswLR?;d9BszuO`h1#Jj<$Opov^O25KhqFU<>w%iEjf`)RQ*rJA&m<>%d^ z@R;Bkc%JHNU(9&bMDU*HzS~?m!+HP8Dvxv~xLY}?67~h$XX4Ajl zPA{K)Xtv0&j-S12cF2!rlV2t?&M*QRMnGsxQ1O@uXc!HlF+s)SBcNeqgvJC_V62e2 z4x{3%CZHj$35|(g#VJofL(UT#6I7fJ1vDf?p>bF$6o(nAliB!}aWbq>H6Fwih$f%gC={*-F$Dq&MeU$W#W`OW*W>BDSxUXR8P6|y z=Z9_A2K3R(i^cqMy4|8Vp6&Lv`}@LdWGI)KZI4*5u=$>tt@qpvi zMur^Pb{P*ij%{S9q-~e+faBXnhIra`84tLWvyq{xw%x;d0I99?K=`bB?ixUXhw~tp z4S4 zC*$I|fM(HVAzC#k&Qsa}t~aaRT8D1af}VXrokyFG%gL*zcv&`&f-grGtH#I0%2>V7 zIZ$%wHuZjRve7wEc<46uesIdsIZ%G+HuZjR;?X%!gy=SoA2-{zlxZ`Cn^ol7i)LA+ zc#IpKrzk}p!jJg;Ktb{le#GYo%94lhBR)S+oYea9yUA>F(>x+|sWEJ3;QK(53m3hI^zawR@jP{7o>^2uy`ez!(nl|)d#4C+99UZ8v#)PeYHK=m@H z13U*_7Ef2MC+nhc;g(iA{3Q$SiHd<+bW9#8?g{nh79Eo>KKF!@bBm7YT~DZT9Ft3Z z?g@qE7Tr%S-nl2#l3R34F2}hil#g5Dn4R)@vASK4-Zi^FwtE@dr$w5@oZ&T1ANSe~w0Crn$-q65n_R_lbBt66kl zdD3c~FnKi#6SjCW`QmyvZxTr9Rr&)owI z#AXGmTwdQoEwnA6_l*inac08BV*5_WdefYdhTkQ(D`3TUSqrey_84v;8b&Sb*~{I@ z-Mg!^yJP;efIIucuCb|o=Xa+p>?}r;@p^MIZ+t)dMr@xiR-0?fV7<6)4P=H7&9&J9 z9DTN9ST33)R-1j@Jd=$dh_q%HsaN6k&0@X&*i`-dar#%j7Rbdl*Wzij{bb&3GX<{C76L7T&X z{*`|}YMh$i|LJc0NB{Cy0SjX_SK(e9|BGA;tjyJ1i|6yn=6bUF*Pjwt6|A`opG>wJ zME=#21C}FeuEDeAYP!A|ucl35ESI(a5`{AsLTfIF2#S9J4!51|ChfC<>KX{Sw6v%0=Kkx(04~b7!N+UBks?+MTO+0NA8H*Ty9Yz zdD)RW;=YkvR7hTO4w&B}%I>q<1Y*se~ctl=6#r5cXiEuZJ+Sz*a$?j#}-SXVoS9cKa z#uwWowD+g8KE0j4pZDJ)G|-VA45N$-C)+heT4FY!kxLAt6#usPi}NG#48;Frw<;TV z0BLF{2X?EzaR-pp26EtdvslLIkpKsx&&L1~=6{+CNU%8XQEpxh94B|}Js>Ku5I%mm7vSiJ+eOrYHT)YIoPfpY8d+qtm13e*IvD`6Hq z8Y&a4t^zed&V^JaSX~8bf+T+?6RfTRH9?L)mkCx^ftn!cKq?cgt^zed&VfuOSX~8b zf*gG|6RfTRHNiu>5U2@67gRmSUxh$TkaHoK2?8}il0TOT0yRO7Kbr{xH9^vWWF`pI z1UUzCnIKRTBL_4!l{2vAX})yC%-ln|hoQmc*6(Iz248KqVmpW{kG zfCfsfHa*2G!n3U=(5lcxm;)@ zQ0d@hp%>D((8!R&;mblVWNe|4A%z2&g0+kM8mU<~eCg17wKKA+YC`yOZdH3D!>T4kpyXM#JF=~6LJWG&RS}SR zRTCnS^RL<)Sy(k80x1`(eUXt>6NVS^vf3BfSv6sJAxEoyk*QS^f|v8P+8bG0H6a2i zck6xk8C*BHuc_~=A~}z%y^+mT6ZT)o>1tnOcGZO7#r&>zMwVAi7+=cuYG-78)r9bc zysvge_E${^UDSZ`nDyq!(cA6Y!tE+bzpX{24Pl+#l&f*^E;YBb0B6ni_QtSzRk+!W zak8BiM`xFlaq~7z|8-@?fO>F?jJ{1Nadb#W2>m`};`k7b5dL;b#K9pLA@F;(h~q;q zLiovnggxoGNxnUt=AvolA zk;@Jd83=(Qw~It>xX4%t8o6EMazaN&LIBC_!!aS49-0YNSUnSeol8bSIVQKuSFamV zF(y1{OEC39D#nE(Ey2|dsTdK;wFFTwq+(ns-4a|BQZXhJaSzRef^Imb&N}N>rQS8) z;M&)BQmZ`4w+eOqyStLDfxs&&=Cb}hA*3o!xQ(i6LMT?4@IJVzDIr{8%598Q^FhDD zeD|SNO$iwbQ|=^-6XyF+gv7-O)liHOLg~VURwza&A$Va* zH54O!(7iC96^ao`$X}RJ55))}RPZ+mVQ0bQJ~Bqz)dxtUYI2}Hs<;qI)kLON z!;__1#f4m|CL*;Js9|ylXO3JA*)TICG{e{*UG z_HRmk-F({IQSGfs8(+uGI~7~O-ygB?=;;2gc58KaPV4pwguWs!{<>{vN5Ct*II8f% z(eer}ifh3uChE0tM7_d`;#!2ga0K4;;_+bf!cqDPFN$js68$ZOBl;Cy)XWP<|0}#G zu0?oWIHiE;#mQjv!l?=>yeO_kcwRUKLWLJK^TMeVD!eGJMR;B~RfFlp>0tB1DIY4l zD6U0#UO1IRg%>sR!YL{$yeO^(&x`WwDZ3(JyU@L*_znezZZlkkp>v?b&~1`_6xW02 zhR%T^L$^u#VayJl17(J8lk}sw9`X5sLZiZubfuwlpw!T9)axPpQCyGs{6MiWm>*U1 z1LekGeiYXuK0i=!RQQpuICKt_9J-Ak*$HC^`o7qiTMj>=?|C;(EmA2MUi0 zKhl+l&VkZHw^8SZ>_>4u;`0N=$6$U`%@33xgZWWhkMR6>6R1DlsN<4e;ZT3;n?U`M z^`p2R;ra0`E`jql`t;(i3`kE|cX^@xv4p#I4EQCyF> zAA$Nq_e0kG;(El#B~X84{V1+S+>b#0k@cgv9`SJr)E`+titE9Cl&krx@w?6TDC*6) z`QRSP57nftKIpxWe=EKj`>|O~xtfiC-5!`dS*^wwi_NAuA>TD^Dg3X>x=^TNTvMHu zAIiBJCRQ<5kff28| zO_H3WR|iJe>NZJo4q_b`(W~1e$vKvFU<9#llO*Sm)`1brx=oUtBU=YXNb5F9at?4E z7?G{pJQ%rnt3bKHA{S1di~n-*{@^h3c$|wj1&5Kx<6OKGIE*|V=VJMP7;t(uAnAJxMIzfdRI^(BwVrPO1&$n7ZR>mbEV!DR1XPPthw^2H&=Mo zLL)*gp;;W9SE8<Iy27 zge%ruslO_yPZF+JbEV#uSNm6%6Rucur9W-CZqtZf*SKQMm3mh`uW`kiEA_7YuErH> zuGG8oMU5-gT)VuOkjVsn%sdwe~HLh55rQVgVYh1DBN`Kl$6aOD- zT(Ra#y({0;xMIzfdRP8fRtI$jVsn%=}+6}T={d2E7n}8cjYfNu2^%W-j%=B zxMIx}-<3b(`R0Co<=td{F&SNr%k!vhJK;v;(b1>V`RK!V)|@N0dmU}Rq(DztZDcI2 z*mi;kkB9L9Ybt3EPKNOSODSm&PKWUTD=29X)OoO9DKfaQ&}2kJav5B^=K4|ba(Zda4ha@MI4eA|6? ze%YKHwr)0MOh)VJ)qH#0?(x%KCad*yG5_a({PXoA9}0zmZ>!SsvsE7o)qroS((+SP z9||RaZ>!Ss^Hd)Sy6@YnwEQI1hl1Gqwkj<@L-nDc@V>1|%U@CQp&;wNtxC%uSMs5t z<-V;-%imn`p&;PCtxEfOI$c1u51{=bO$(_$fcC32E%f;S+ON~J5ak1Cze&?Vi4UOt zQ<@g?djRcUh*sJ#wcd=Ut2K5!=r(P@Y@a!JHL?uO%6A12e)<)Sz@Cd>?} z9fp}zS4V}~>Nc6*%)+aqLU47P3^Qx5jtb4yZB*uF^IH8lLw1K@j*l~xcNpgQI757g zVdioEqfkF@R^w%N50hopj&)}rQ+I<-H`FPvEo?-#WhHpW}dT=t72Z;2f z2d6`MfQV0eP;5!sJr(GT0^iA5*ob_~DmxD{9v}lGJuv4%#sg%6qzC3a$asK?Jn2C( z4|Xg5oq52w))qF3bIZz}2ZwopIz8z@F%J&&0400UgJK>W<^ihrqzC3a$jn3(@<|U0 zUFctfj0dRclOCA!Amahb`=kfvJYWxsSD$vz-~~GuxU8xEU2v2N zu4%>(t`S{u6b!Cu#t*I-U2v2Qu4%>(t{+`+6c4Vc>PO(N!39SN;hJXrNY4)x5`+4Y zo*yVD2K9sI$6vem7u(kzo4hf<+`js}U0TPgfoIu{%JG+1tHtg7a@Sp7F7V)xFFZ?! zm}h_ohXmnSI>bEW9vm`)XXy}U#~3N#Kw@60_uvroo~84Pd9B`qLy&ux4l%FRdvJ(q z&(b00^?DBu_XeJ&L(D7o9vp57JWGd|*X&)m{bnfF^8ORBO6KBKdk+pb0G_4ui+SDN zgG1f#SvthLa__;R-1jUUVqUxV;85jzmJTtm-g|H;?mbI~nAh*=USX@pyFGASEw-%o zgsFSas{liux>y$%=Tw~mWd*Fu5fT2}h+VxhHAAhMQ~&c)hlp+HwHE1iqw)Ix!j zT2?w2E2xD6^|Y*XE@wrlGY=t{55VhpRAy)qh!R?4rBa!ZMIcIKk(Elt)u=TC zmB5Npas6pgq4u<_)L+FFrv-v))3Q>jxW+U=_VuM{)z+4rEx4+*Ku}RyR_d?fI?@6` z4QW}aR9rb)AgCHGE0v0CMGFLVqGhF0adl{cpfa?qR4T3q|Ic!LhJtf6oi}?PHhtMF}A#;_S)jNa+84sDOs-d^6E3TEL^vw)UgT@n*bx!SeXU-G5J4 z&Ao8*8U@z^8Xn|dvxqWs0ifYQ^EHboBdflK2cg$2qKqu{8XnYLvxqXXzH4}pbj>2l z$fB;{LB}0&kA^fzm%CM{&mCM^{dBCeWbcsX;ZppbIaB*V-3Lj{GPt0oy<&LS!(WL-5;c>|lQ zR8WY!YLej%k1r&C5Z>_kLg)wK@6(C`bS zR-Nl{1s9S?j_ag?3yCAgby~rNWRc@KtKdR{$ZEUyIx33ryRyLgt0iDhBP$KYM*yblWNKC+pk!yV>HyWYs%SneSH=aEO{>V6Z=3 ze{5dLxEj}TL*(+@Pp($u^}3cBl9y*bc{f?jYl)$M6~wE>dQwXaG0YP`U5+P<`LueR zA&z+&o_(ZXgynOq`OiJA3|D|;k&;t!I;f)8 zvqHuRlnGT%h*=@Sk3yk}-^dE=#h-fj`FCk`-P8)-p;$1@_7V9SeRtKu=)2FhOV&ZP zHaSo+m}Z76r_0+_^FKRPo8TxJOf$oWSHCkm za4BMCjOE0u{m2~dO{|Ksym{I@2Adx?J7UF)O2Wv-_$gvR-Z#P;X=9isj0a-8HG#<+rgC z#d6`Zi`&f*%VKY1b&BQ6>#ZvT)sk;x6^rT4-NMT-(>7MJ{ATXNikIKaomlm9h&!p2 z7pq?^cdQ(fawS%{SguGpCgnn`Sg~BNa!ksVSjA$w;^ml>JF(iubjQgtDR*MU%WvjR ztc-bBceYz2Ci7-vNV(mlFY1L^TgQ+npMA2m**!`+ZVn}*S1e3Kt71tJpRSjy+Y5fZ z!{oL~loa=q^Xcm1I`gxw(j-NF`nTKp)hzY1ty(0;C}-HM zIwQrNo#j?V@u0+3?cfq09T3-6m5?H?h-<4XNO9-m+A0T9)D>}U>3@zpAJ>-Hr?{)) z+S2wEdp52u6+e{ti(<#eYJ9brk0w`FSZ@%UTYaXa_)Q5lZPx$aPi9Mg&)YCkU|*N8 zi{-L>bF$yog5=+u>|>#7=(p)S-aC_hEK~^nHl2sx=i&!XeJqp%{WhJ4-{taoApIF0 zevixNfy`%k_#G~v2ZEmA;rF+E9_aVO@<6T+;o0`0;rl zyBQviAD;&jo8jU3@p&Mp86J)wp9jL3;o9?Oy6dL>02k5zRd*F zw@xs9n+c|GonZP_3npoT7c)a_RwjmITg(fwIRRD73JFS^6q0Q*C&cE2SH+BwptK1g z*%tFbY)*Jp%mxW6GZ~7+DnV&^Rj77~X(hGBf8KXRg(CR$-Tz8J6)9DM(lV-KTl_w; zIpLKZHs5L4RHC)R=DS4Ld}oKvcUmTuyt2dQyF}Q0XNS#qS{9YOvcu-PMA&?1hs}41 zuqoz(5H^Xa@Wu|CH;J%$V~5R~MA*Es!{&`vh6v;LrnppMb36jy*kSV~5jJn^uz8aR zn>TjYyh()38#`>?B*Ny69X4+gVe`fgn>UHDDF#poo5c9NwZrCZB5dB;Ve>W-HgD~) zd7B8Ew|3aPO{AE&#Z?y~@NMR@+hOxI5jJn_uz8yZo40n@yiJ77TRUvtCc@^e9X4+h zVN+anA#4&C{d+rXzE6bB_jcHPp9q`p?XdYi5jNl3Ve@?=Y`(X{=KDn0d|wQp5P{!k zM$itM?-OD3y&X2+C&K1?J8ZsBgw6MM*nFP|o8nRlVUxI0KiFaOLn3T`u*2quMA-ab zhs_U(u=&9bn;#Nk^Mf5WKP1BD2Rm$jNQBJ~#as{~@Q2J~u*2quMA-abhs_U(u=&9b zn;#NkQ~W+5Y!W~3M>}kOOoYvkcG&!w2%8`6u=z0&Hb2^7^J5}xeze2p$3)otXot;@ ziLm+64x1knVe?}#t%L~tF*C31u=z0&Hb2^7^J5}x3a5myN%-`W9X3BD!saJCY<^0F z%};jN{FDfrpX{*tDG@e5*dBC zMeVTpDG@dWk`Oi;kl_E%cG&!!2%Denu=zO=Hb2{8^K&9>ezwEr=S0~2Y=_OyiLm+E z4x677Ve_*cHa{oA=4U%>eolnV&vw}SoCuqri^(p{U~RS+pZ;k!yR61D>r*`)3uSS& zd{BK4sC}xZg=^Xsuwwh@WPWkooI&24;yv1oo8vF>{NFH&z&1a4dwybb#K(BLS}U+! zqZW31#Pxc5IT>9pKFsgFpi-$i7L&FytI_LwwKSL4m(!}uezM49f;u7DBoapyd8<1-HDxDK}A0No8rY?u~Z%i(<_@$xoXV|>+g6WSYH^9M?YHft z=GD9A<;bQ4LeNsa>i0!h_SZbYP zR-p+(xTG%}2h3=T} zLZgMv^IhnU$u2Zn*gV&T?wII8qlL}$TLN-cXALP=6jUy^dLS2LzM54#>cm8A|N6~Y|e~dhz~&& zRHJAbhJpwh$g_=z#D&0og)LsG$SG#Xs3XBB-GQ!c{)mBJWc} z2ZYOcvPCkdh7JhV?PQA#O${B8SN1$X+OMEGJs${R4T;;I!E*w3)2CvC2B5 zbcWt22D0xgKuTu_kzydDvoa~2p-_r}jLwp!bcS>(1~NKpnbH}WrWnZREONzuxi-Il zXy(ES30||1@j1h5y^-QI3mKntyw)2@UbB$#Im>Ikk>)iE8K3jK)*FdlvykyQ(`&tv z>NN`)pL4y|8_8a?knuU&YrT=~H47P^^S#y^31732@j2sby^-=Y3mKntzS?`A^i_*c z*4KI??Q0gY|D5-=-bnnKg^bUcU+az3uUW|Wocp!jNdB6IjL+F$>y7lUS;+XD|I0@W z-OYB~vd8P~*?D&KdGjH(o4eh5qnmMaYVLIN=;({$kIU=DW+C0TFbi~nTXg=j0r{aD zasFn5RPj>}`~A?BIDfM-Y%qT4PMlvH|D(F`hc3nW#qqD?hi=9B#qqD?hpxr>#qkgF z7n?xdtrqJ|v*Th~KFXHc_pvA~p~_tl*m8RZlB+zq3u0An??7^4CwD>k$?Y9TuH}kt zY42`V^Kp3{`)zxuUOwd-y5AQUv)`uU@>T8k#TD(h>9~Ap`+ad)`)xX|e|?dyGPqnL z_xmCX_1koRxi;?iMRw`8>A3!UK-M?}x5zkGv+=rk!+={_U-iY!9l&Tgo)^zyibY5? zD^SJ4>eb!4v)l84VdsZjZ8YPLt7)*W~sn8)rHh4cSg^kFs(8lhKd^<@P8WXGIwenNe;Z zmJO>0DYm1!c*7dPVQjH@!_&#b*kbX9^@YROV)2I6hQrum@rJdB!`Nc+hLwoJ*kbX9 zb%|lwzQ)7Y`wtTLUT{`T_Ay@Zdb0`&u~SVlyc~lnC}dAH$?$SCs-O@+)g;5qajAkr z3RM%8H}E>M3JOtFO)|XU@r67N!W$l62<0HWJig@}#7e!l*tWD+l}gUCrrw%0_ZHjz z1kWCwoy?n;gvDkB>QyI~H1C%Irq`rE{96a&a1KYxKKz% zuBpz-WrGWaMC6*rS^vF^*GY4CYy_-tJ0vec_7Gl)YzTm!sClLfHDYIxokq zkA=YXZFOFbTptUe>)YzQ9J@Xig4egzc{zH0EQGIb8|UrF`*eOuOLt;(i+=WO+z9f; z_4eCmXU$Hh`DL?-TaWP5a2HmsHk~q4B|rRhZ}O=61H3E@$a6!g|#~T%mEoYSlqpp|QeR)j?dwcwLWI%^6$WXK4i& zn%mq*QdB(Qf-OB&(`^*cKcN=hfo=~9oHsYG?Ac z&4}l8v1;@nMFcU;5IwzV-VK{KxAEP#!%PTBscA+(=~;UO&TZ;vK}$1arynP?=D}y? zS3yZLL?^Rpb8uVY;z31IG|TDyeTD`KnxbizoIhr0pq?3;)Ae-rOSAPlaoHfB8KRSm zkIi%R1P# z7)YFNOO%q%1wi%>l>)Z+FHzjr!Ls7{FpxdpmVcw5eLe^T(6=Q*Q3ZVzNTF}bjFKMu zC=f;8mKX(P^f4fhzAf>I8d<#9vDL`Q_8#qGRvy-@S+wXR?#1@U>+#3CQ#bMGQ)+F2 zj-NHJZ#Ty(H*W@BK05n!Ii1bMtI_x$)AbS8#S#pZRce(;9_LA*rBRZTJPE`zN^+Vf zfmB9GXiWYQ7jfucQB z7kC*v3J86Q_E25m)$J%C)GOLUb%7VXqkz!1Xb;r|eik1Egz`mus4nnh`6wWCG1^0Q zfnS)90zx&TJyaL?o%$#sG&R~ob%9^Ij{-t*qdim?_|5z<;Qn?q+@pPSpR*$$*%AeW zT1R`RSApN}j{-u=qdim?zOK{=DE+}Md{gNH>VSh?;DZFBfT$9pJ=B5Vvj&RIwbzT~ zvOHv_*R%)iza4w@Y_qt!nu*7t^>85ky(XRFaf$-Mo}f5MQ9!s86sIW)2y=qsEJXp~ zO;9{bQ9xJ|6pvCA5Y7jqfH2ll@G*Wp90*^pDHsUvA#b>y`?3_u_{d+rINpg$V&!+Qti_zWDnYa~| z+ZC|lh_wQ&_+G7IpuiO$C7aHFnXaeJ_doyls6Ppz%X1!c2inHaU))uJTNqF>P+i$czf%Q)Ii&N3JA1!TaiM!=& z>4+hT1Z9ELD!A~NT__I{uW|upL(qj2cHz;XR{>>3(1lZW;oz%)vLooiBX*&<3P)7~ zfwCm%f;AWFTtL|pbitYnbuOT+3A$j-g*q2d_5@w9=E9@iTwn#0NKh6@tq13Yhzls2 zf-YEdq3$Z6tO~kd&4oG_P<91fu;xO4Iz|QpWm(XLTwaK{fU+&z6y z!k1YWthrFc4LY)hL&AMRC1>c3@guLBSg?4;i z+t`-yv|3c`q}y3;R^w%NsY0`80XxeT_-5kvE@b;&szHLe$lLwj9A(C0L4w&F=O{DQ2olWZI5TtcNa=6WtM&K;o<{VV_HoqTI&gfp zS~Qx2HvDcs_~D;lr@arL@6pv@5rdjVl9+eqYOsh+%_2$6`*Af`#H?nKB<5YX z8Z2U2vq%#2-dhb8F|Ju8iCH={Sj4_&@j%34k=u!Mi?}&7_1*Yl`=QTE?f7@?_lPy_ zA;i%*7E9bih@){VR=9@{N8?y5a1SAl#<5u69zq|bIS~sBEVK=Px&0060;$b&( z>)o+Ifu@Juu;#|@*4Nz1CDTCR<@V&_ zMy(sDFT!qEbEDP`?6L{FVa<*H6pd*LcG`s9u;xas8`y0VcEg$*wQgX?P1p@Yi{(XXiQVE z6DRD3H8*PAz;2wd8`j*Ybptzc!fse|qt*@V$_cw+&5iyPjm-`0%n7?;&5c?&usbL0 zhBY^8-M|i=up8Fg@ZI<$-s8Go-*`8fUra_V`RK!VHrqXXC^mu6 z(+&$4iyM}e!2Wm$cC2Y6*-wUG$5KX;{d5R+tY9SB)p6%kVBuon!m`SYdxjnB6-jn= z+%xQ0rbx1@O_*gJMQIsXNh>nqC}Ft8}F6uSc^!qcgMYw9ZL{N_U^b>vSZ~T z$*zujX4YZBA<3?edxjnB3`ur%+%xQ0UP!X5kC2EJge zVL~=FiwtXYT%nvputvuf;yDB>kLzE0^=liw}mg`;z4Z-UeI<#E- zI%tSq$IzkW`qx22`Rf=uv|Ix_XefalLx+~@U=M9y2788W6)a~dK4aEFLn-VSI=`0d zVFwN6uw&@Za!u@@p(J(;9a^r79W<21j-f-#wXuVS(%3O{Xt_QvzG!*>yr};=wr;a0 z`vm*fi>E{V(wWwebz~^6ZX>W4FZb=9qnfXe>c|jY-9}(9Uhq4F9r~MMFJAIHgdH-R zVlQ6k?6dPKrj86X)@_67GVmHS<&JImav76)0 z?8V8p_xiru#YZ&QFdj2ik#yc9wmP*71rABk5txWj%mgB#k_i~Stu1qIjq+eS*+KjqjEm$bwx(&HR-6F+j?D* z-Fi(rD(AUgS7f?gla9)I)$59^*K3NS76+-!#`Dc&Rg|Uuwifs3>GgPi)tsBaPWHQC zruN%};<#f&8@s-ztn`wJJbGQkac@8H+W@wxR8Q{Cqb3 z`|b2{)O=WYbIq5G&~Uw|K}O@4rcQ`xYLL-5mZ=jWnHpp?j$!JA2&M)ZjboQOA#$lf zM&p>JPKa1)kkO3#WIGWMsUb9@M%ki?HHtppj5=l8Nvu-Qo3f5AmxOwK_c^O77suQfk=~{ zYy-X~Od%tOb4H^SPYn*|j0Pzr>2S_yj6%2$=ZuCZqD5P?D&hoab z`DXlNjXQ;2(>@J+wwPTu3ORl^+I(D2ju+$iM=zRlg4WaZW-{O0z5n^_?gM|)5$io* z=x47<;XGY0SGO0F!)T$PQQ9Zx)78cGVXTnQDC_CnQ<=kPA)--QcU<{SxCaak?KK@R zt}ZQ9G)fy7SC1t~RmL?( z3qg(2y5s83B?xMiGcv9&Ei^Ss8yHuY6{;F#jf^YPmJ5nIeJwsx+iycwoKHSLVNb^w z%?YsMlmPU>p|brph4}1pym~*%>U$p^O51N!sE7H@5Zm9F7;-x(u|K__xnbhiDErjV z-7s}zlzn1I?{7>D@jaB-6o)=I6u94}1e7|;NouHYm|7X-Br$~eHztM@4@&IMYv^&9 zI5x^YH8eR)9T{bx7_$7^5nt%f6eqj3Hl#XdJAb-de3-26Kej;6@jAZmAQbi0;G2Uk zQt*nxYVgfT7Abf|M>Y87sEQQ4qLvzba|THPZ_cS5grbQWeD~V>@QUtf@ZD?g!z=2h z!FR7c!@tDdwCy8~6_$IrrJeID6v7SN$&3eqlB>a=a)-xfkZ5$nh9Z)x{aQk>fF-dKLbQkK0`DP>0;2Mc_E25mji*sS6y(t!stdeZH4M1l#v1O?zKg@zk+--; z0a4ONd#G1|_r*p5QSwK7s4nnk+9)7y38Fnz7kCG56cBd`(H^P`ylpoMh+Bwg57h-%qIy>MgRIk={KQulo(7Yen3YpSzyRp3IQ9B@r_RxSiwC{zHhsm{vU??OTJT~nQv z<=%yY&by{MD=WMU1!;FpbylwRT_~uzYZ_-Q&b6LRw|D#7rQ&zDtNHk%dBeH=rnO}? z3>N~lj*DZ{LP1zsR{HPah_p};jFy$o#c^n%AOtNdor|N-LP6kJRyr5QoP~mLv#fM3 zjx-AeL1tOSxym;RoA~NQmfU_QKB6g$&v7L8M+C|3y8j$Ia(_gP+^*wuyvY3#DRR4x z&oLtRM|8;TIzGpR+#eAkx9j*E3vz!%f!tn=zr4L!zMmFvei8nC`yRhIhmIat${p2- zuLCS2NI}{~!9?%=T}Hp(5}qNzT#pdkZT`;SW41@| z@3(np2r%Iz1lx`JUG#sL*B=u;f-YWvn*eh@LLgm#8y~Yif-hcwn*b}q5rY2p|JA(y zSnQ3Ui`U;Kz~+kxfpqu@$JZ#Z~bl3N`Ep?fLF4lzY{< z-`?9zTr3=f1m&OxnPR_rIYk2X2$9tM4hYDDQ9wfKDL6?I5_E(bQlsIJKuba-;%GP& zkdp_afS}Yb4NQ3nx<@1Oq<+{fKC z2f)rZV{2n%#Cm^K-6xz8G+gnBwa(3>5kbQcMXYsh9=-?~#x!EBbJvVFN`b?;c{L@1 zh8iJat^aObYl)ztbck5%+`JMKK|@Uuv5s>W`>C7wz9}|2b4!a!8L(KBzM0GxbK`i) zqFn(i7M<>ln*&>l{46%NP{Jzd@oDqnv=9B`B1Ifz60tcz!#PC6LDCSL12mj2L>%M? zu{l7)nL)%sDiE6kG@JxP97Mg?9H8NN7jY2aVsn6ocP)xIh-I-kK*Ku|%OG5wkJiia zhk5yUL2hq}jEG*$n+RNuCRfE0ZU=1N-h!Qdb%Rc$yN5E{Q<$FY{u!b|B-T-Vda*b^ zpEa-kH4lVBgow#X!n>b&zM5XV4-q0d>j+=pEY|Cf_g6Pgi)gK*{oO_LD$M(4Q7rp= z5x;fBUtC;I*OOTVGeWwKIWcV!)&o)%PcZMsyqw$nrz)0J8<;dP|65Vm?CGc z`@#X^mZtx`H2+h>0eIwufN{nb7VQ8$(nY{H;|nW$03MknV4U%Voypdn}#u;BK=8KVE628>rmp;6aU;4)CbrF22m@h_tIn0-e`C{ak!+hcS z(y6h2X+ERzzh{f4`remBa(g=xR1AGy6hj{`CbQ{nvFac+DllIGWpjw~A)N!Yf_c);;wBO~?N zb{P*iifm*gT-#3dK*(>r_-P{}&DwSu4|4MW$#pmna`ONwbvO@r9u(Q~K68B-uQp;f zE!x|wetax^8&HNsV9V_tNFFJ<3nEo+??CdUm%AYJFlsrCBI|< zfh;J8dBF3a_!QiHv6-BAi*u>9z2bV(Yqll#Rt}1!hvpWlCXI-I$R1*IhL0zU2#8!E zHfQ*FYKVZy3}SPJk0*i%h&&)Rt9*g*7XcCVVsnNsG=7NjgZV<^hloCykH@dL`(2!` zC#%kxoI+!JErrMNol{ZyK0ts%)Cr9`PxpA#01u)q#nU|}HNb-?OYw9MObzfLx>7u6 z+3`VCrFfoYc@Rx0p6)5Uf$N4SdRQK8-aUYa4>1&=u!C1^6VPhc}-XD;g8<=vj7Y57bTEoJFMl$6xoc`s?Gqk)h=`+JlYl56&*(%>%Ol zJi;YlobiR_C;*Qr3m9j7VX+FpBRT`d8DCh+0`LgxfU)XJ-~n9#9=RZ3objb%z94}N z>`TRbLFyUU7oIQwj_slQ{Bk*6tfchf+o~fJ*t+kdBf0pt8Bchw_~=M2zHP=6o+&;$ z5{qw}@gzS_kX8=xB#>2nbR-quR=p;IC;54TlrpR*`FVnbGOQ<&d2-b}hKc5ruB|#c zmHDKLZs(J(ZN`(xJn5p_`J`)`@gy=&y6AR3>Dp#I$#W@Ga9MA@ge^Y`=S zGr@FU)x$+H=rxJBM|?C~uN#88*CZqI@n*el2+m%Uh^YMb;#vA~u^Dd`lVagSXl${y zLsoG|8V`q;$}HsHB+&8FTph1a};OjAH8TkZ@s+TjCS98 znQk5({qFt`>)Z29^9n`t1(@cqlnG24%wy9`@aFLYc!Ma&dUNss-XMmu-kd&wH;BNj zH;-c8@U|$E2Jvf})z6!hH;DeMH^F(6@&>sh>rHUpq`biv&8#=Qd2@7lzQIP$tT(-U zGk`bP?wR$bH*W^;2Ae{&-t^|p0N!BhXx5wHyh+VsY%tAw6P!0GZ?FwD>rHUpq`bjq z)vPzcdBffm-;7z_*Eg%lax!ktSHlA!!$?qtN5?N(h|%R_HvY&}i~)xl#xN2%A0NPp zN+rj6asVglksRmg0i38ha-6;KXKy?coTw9WoW1c(aH1N> zarVZO??DYXXue?-8P5bKls(7U8_xtM^gGAd8_xtMR657m8&6&XFyNrYhEZfZ6P!@o z9A|Gl6P(c19A|GlnX}x|y_&9X#;a*_yyyOC9kIE+o@ZY!_g(G|V%UAm<>}?*-S~F4 zp?iN33VJCvJ4`2+;}!2L5pf`qVzWbYx;t-Z9r-=b#Tp{z%9W3$iwnLz7jNEen>hCMUxNDx)*fy`jxA|+T>>Teg=GvkgVFcf=c+!6LevGcgUF7~1ESCsp0 z?Nv6u*VFHW!0opQfIK?=PKd>Rn*hicyx$4o)o&93`5G2yPTqfBxv9j;uWBd;d+7dm zdbCHr3KA}{Vi2I>>#iW-;wuILDjpF93B#fo1gL^zg%np$#gCU2B;+&2An>dB$+Lol zmkdZ@^e*w(i1|KtV7M%G}8et0qeM z#7@Pa{cUHT-hHH`v$AA=C{{s4@G1r(o5f;t zUB!qf%`mnrU0q7v=BFScJQah?NCr6(m>EuKB!h&A#|)u3l0im1kI68~Bgxw<6+}Fa zQ4BI88RW#{m<*>hl0iZ|i^&j*BN=4Glb8&nJd*saZv_z#VibeSNCr9aASS~pjbxAz zPhm2I;z%-MaWM3@lx=j9*WWaY_QKYz=4+VHO3fm}%Jr^>3ANNLGOS$dYM78r%_76f zb*_d9+0-mlR$+CE>pcw<%BfjoSfk?#?HqzNI<64VAy|1_iv;lZ+vZUJUyZu9G-$8y zVRdbZh*(v85-Ia_ZOMs9&2T0&Z%K$C%@Bq%uL6hwRSd+-Dr=}wfR#TI(V3xCMl#5W z*vxQBBN-$_SY`;tkqk15b!~aw6C-I9U?rkh*Omq%r81I1PO+|aIi-;d5{h-LODK+H zkWs8_T}C-3xd2mUqgdCvl*&j3ImNox<&;J;NGR5|E}=M*%vfxLxd&XV3)SjztT2V2RwpgzRd5Wmt_;s>2H59fH*;r8=xo-yvAJl+rMvz?y}6g>xlx z=eI(HhhUA4D`a>G*66rGi-%z4aeaZu%&YOVc$t_Q+EHw_hBs!T%js%zvDqEscl@;Z zF2eRazkmM6KVLthZU{hX(C~OHs2f6y8ZW1=+ z8Z`eLJQQEU;Gwb_1`k!!FnB16D)EZaXVsh}_ina*KS|tLjplZ2&OW^}-#zwvvRo{e zMq!2S$cZAkh<>_QHP5&%X>yAFks`%r8GhWH$=ZDQwVTVu{>YeOvk3pm_2PDWTJdxo zVL%Q|Fl=sT)8(kS$Por))i}fRJBGV2C`3q*YU3oI-jRH`ZcYb^a3KB0IiB5dY|nd- zP#`16DV{9;G5Hw!0m#pB^k)}~)%-qC0}~c0J5KTWY&!cmTD%)IUosy3(gepO6xqn; zajJOUKyH5sbY%L6Ku6wx2z02xf#`oNs^LZru4dz3oBwNGQ*F-5SZp?92!m(Y=0X2! z2p$sT!n4#lxvKV%pdp^6&dHUxhXi5qEOkz<&OIbZjc2KIas}@pL3}(*os+A44+&c2 zS?Zizd3s3DCeJd?S*-tU>#3XD_4R78C_Y%P7_XQkCI5*8KJ`Qse2r+J&S$rJgCJ^G=G_&|PyiFj)wrOVZacG-Bh-=f# z;^VM3fe_QCnZ?I9_a+eH*)+5G_~zdPLg8teS$w=WU;?2OHO(wOUOcdY_V4f7W~a>p z`ew40^2-;Q{DR`Nn(wO&AIjBgzOOTUC}6AkzRB>Rq^;)rQ-%*kZZ+Ruh_84}eXD=- zNpri??ET%ovy4jDFlu9gV2cAp8Me1!%C~JvYMu-E=ulnXHsc9Pv5yWt_H8qsut@vp zP-@>c;|a^Rj}8s@ZBsmlAkB22!{29=SlJ0YnxBj&F4P0 ztBJ)EYR#e@iL;m6PEGP@dUak>pv(!W}&j&Zz`aR_m}SC$$pr6Io~mCX=@U`1C4QX3^P7(2s_XiUB@uv0|&1I zjj?wOGd^(GI?%}Nj-l#9AhA2p$m)(^#)ss5Kt3PPhva-fCLhoTo)2Gl^21#&KA$bh zT2nP?uRo=nZsxj!oQ-dms9rS-1+cq*bO+ek3#Aw+aMJH-jbhJ&g}3wid{uE*%z z_+mQ0!p;ljEOQkPxlc9mC{I32)+{e781kHI;_^+#aX#d`I9mC_7P4Rh`5!TbI z`S!yL-PK(U0D-4js1z(E8USKVvrs8mDKr3tmu8_-un=ef2q?`$rQnrX4FDmeS*R4e zII965Y%~j%g4bg;0ECHVp;GV?tOkJ9SIt7D;8j-*01K{~g-XE-tt!BNja9X1msdHu zd2Lk#z_O}lq5cY9PSpUglB!v#6ug3}0bub|vrs8`(NqJ#dZ}iiQt&#d27o0}%|fN% zrO}sVvD)N)=mfXyA&m^; z(t+U|&Bn;h+|q&JJj}+(zueM+;atnc$g$kgf#H10#>k`G(t+We$;QZ)+|q&Jyx23| z=fhr0n+LbEm~$T+Bj<5T#~aRXY>d3dEgcxnVQh@t#Vs8e&QolR{KPFC7|um(j2y%* z9T?6xofXvW(fHeYz2+l8H`{efx=Z$LTdJd%7mNAjbh}Z%`TE!PTR;AOBp)3~%(u;W z!dcHpM;`QTGoEnb^wE(@ecOyDoO^wAWMkhp;|Zs49~}wZx6OFM3gDwd6MWl@CoK0q zI%LJSeOOPROb2+tS9+=0+k-tlYBmb&=2cL zKA)gg7}k?~?4aCuSWkXe-Vd!Ot6wIUKj5B7YHhO@-4PY<>1>}60)rab?q{Fu9^Gy} zE+?nW^6X8s?$*7rZ81Mu3}Wsr!ZAN zu3}VBsxVbQu9&JghhRM!|G(pTbB4eiw>V;RJJm^#y0)Wb^Kw>G!tWpCip?$5@n;va z=H!*;rLK#`?R@j-=mkcDcAcZ@!$=-;gVSAVh>lkKug5d$t7-gon_mF|>!aQZ6a;==JUF{q~*G z#Xpd;198h#)S_-KfP%dsOHT%F%fKB z@(}j3+4Smq)9eMgjk%6g6oNnfIGHtvpM^X}{s}>!%%(RnpOJE6z``L`az|ttxt*rS zNs|Wn#3#9R)J6NKHC<8mJ44M`XoG? zRb=65q&(;3idDsZay}b3%N*U5RD3_|Zc18* zT?LHWdG7BA34kG?2aI)Qe%KNKL%t6f>&*P9B>)CB2pH?k{GcTO2B8QT>&(2LBLD^+ z2^j0lyniDA2B8TU>&$!?6##=01&rg&#b(p>``cM@kTbU!m`9(^7o*G7VkzArG7f^2 zTXcrUDFy^%oZ%$JfS`*roTeBMTyci86a#`N&hRY7fMAI;JW4SjC?1Ldby_V0-)Axo z$~A6@#)HRzx-HJojR%hb>bN*VHy%6&)N^r$ZajDlsO#bk-FWaAP~klU z!|rx$zkpaWY+KsdN(E!_Lhkxzy1CxIpU^y1E0-cw69w{Bu~KuhXqE}EM9^z$A^iHX z*A+t5Ytm7|P_Icx<$A8y6~fbN(owlq>ve_L z^qO>3uETm=AuzqBIBIb=#@)AgN1cz7VD>tOEo05*LKsGWhrs4V2O2Tz7-oD(&Id&FfIcMW1LA)`A9z0e_l}-5-|F6e zj{wJ&_4Y5v?A4KJ-sStyoGo_Q+_Gt3F(8G+>@yzm%!x4|p~UPn z9@Whwq?ZFd3S^lW1CmY5UcE+wM|JZEsb_eP>gEv=(eNJeJSyG@y02ICcPV^Zb+iI` z$VW#G@@+Go@VxQSk$ZgGj3+!_e01a--!|h(ex4xL9N>u%)m*px=*Tg?t$IxaPxA8w zxn)>S^78~aWmr#mo)l-_wfUrb469<$jsvYIl<()wn|*y~Spc;pjLM z4_NlDUjc@-5`W z?QC}+4vmpo+h`!2Dpw4bi|x*_y;Aj>T8Ohx*E`d@*Ap*SyqT!i5wg;2k}*F_cvoL> z=Goorilg(}O(W27SF>mtjy}KZFvgM+?g<|nEPj(_ktF7Hp}|5yHH#!MXAun+ z!m3#$i8;Awu+Ur0B1z0SM}vh7YZggjPDL6l)LFAg5_9#Z!9uh(iw7cxme&wB_dMQ7 zJsK<|UbC=%u|OP+V<`VX#L+lLK`;<;G>%ax3`87_W0VgA5l7<~RmDKW(Ktr2@j%4o z=FQ#l0i(;sqIkwFx3{5m{0Ua|k6vthj<(O-?~Xq>I$JC!^WDws_95bOyTg8alD@QW zOQwM~%k6?2kJ*i*!`*;Vhut_~H=4I+4!s)C?XVlC?8X3B11cVN;}N@2T#cj3xdBZN zyJ5|ZS~sBZVK=O~QR@cuKJ11yH)`F0`iI@H=0@|rF69m0lO)ri7LeNy&Kof|P#J{X zu;xbX)j*vPcEg$*wQitl2)kj;js6sk4GL%1G*+^BWq^Sm3@+^BWqcX>Cgxl!xJ7kM|VxzV4ZvAOYO z-VJMR)VlFi-VJMR)VlHeyc^cssCDD(yc^cs=ugpDGXF!~4Qp=Hy75ik4Qp=Hy79-n z8`j*Yb>mNYH>|nQpQ5q3@#nl7*4(Id<1cwPthrI^#$WSpSaZX7kL>aNp$7zE_bgRPe)i}ALCrl& zm6D%2dO(nH&r+r2=Zzi^blbC3DfvmG2L!S9ELBQ=#^?b-p*>5LlJ_xrK#*n6Ql;dL zO&$=m*t1kA`Ezt05Cqt>R4Mt>buQ5UcE`1BKW)d^hd*=Y0YPd#OZ8XsC-FQW=&NU` zQu62XJRpdwXQ@*1r}jJ`D5+o-hLCvD2sCgk+ z!-Q0778zDnO$`%jsaa%LSvWOJ2&QI{VP);qFrk^6g~}?tfWoDah6&l!EHbRoafNaY z!5SS`i02TjJg()Nz<29cO}sW=%WMv|*nZ$0OIVI!d%cgpyjnG<>^5)wHof(Cave0p ztz+oW^2j=92wca|q2-}<&=9$fp+lP-TZHamv|RH#Xoy|M(D}7o_c~|@UdPa(<=WRl zL-aa^4lUQe4jRf|$IzkW8rVTY3G5g;v|I;!X!|nQGi zhH}_3bZEIIcF<4~JBAJ|*ToJR%3{aRq2=1xK|^Wm7&^3EAOE4Zp0rtwm)$+Fy3L-f z+!x#3__>~5PMSToAMQ5B()zKE48_%L1oq}Q_0G1_N_GfuioH2zeF%2wZ;HJ+etigb z$Z(3i*y6f-g5A0Dyo#wKLydKt?6}9-A<8LsbKK+X(B>4oIqq?GNOX$5828=N>CU+G z{gaLirPgiiaX*9|Pm5CQ#ke2B4&6?%7vp{iJLEgXZjO6=)_wjM|MoaL#5~1r zj(eOPnx0}e$DP^BPlevyPw%#Ibnm4NqkYV|FRB?J5Oc#wXX3kN0|dft80k!Wqildc zqzxmTiSLaK5D2niq%-mDumJ+`HH>s7z5_NuAhd>&&cwQ6fIw6Yqc~H!=G81D&ztwL zuV$UE*=QCm$C>dd6|FAk2))h6QWx`mKvtZwa&#q`)QL||l1TKDhMeB>2OtWBg>GLaEU({Th z1)&R{V9|P_qS7n~Tl@^mpNch+GRKdW<9V@()-+=t>BCtj08+kbMm%!fHxZEhO*0}= z6u^Xl447ubq-%kR0zoj%h)h-m69Lj-nh}wt4`zReglWb!f>N0MAs40@(+HYj_J?qo zW<(>ahlv0QG0lib(hB$+IL%S)n`-h?HkZbdpYa5RfX*lF0p;*o-Nqr~b!r_5il*B*WV}?Z13}Mp8;6Wnt92mgnQr5d@h&YL2zsX5 zIApvxO9z6U={61-@5s`Dpk}&_L&p2C44}Q588*4yS2_^1Ot*1<8SlB$fuLo&jYGye zt#lwrnQr5d@%}0u2uh~gIApx5N(X|J={61-@1^RlIZB(BH4BG`A9ramP%_QJAz~fV zV4z}}g+s&|rolkLGz*7_^-F_+dTAC85o?zQ1Le{z93s{&4F;;ESvW+jSsDx!OS5o@ zSg$k~sFh~n5V2NiFi7Mba!BB2$m17w*b}+Cembre2#ORH7CMKi zLIr}NLWPCSVG2-zpa@W5p>vqpQy?hXQ&{L6rtB05itH2?I)|w^1%jeDg@w*xmN*51 zA~uCZoTL26a`&4_+|pv6J=@05WcLAyC%b>rhIa0VFyIym@@caqIiEHMH61@~K7_QM zF6RIIkAJ>?#9cA(xkUnfaSuAW`#h9`jrktIetJ1wtbB(t!6TqA?m=S?V`4|J&zg4$ zCu`qhOyvmb%N8}}GUjjuT%2c}=S$ledA@2wp!YFT)2y8=H7_`uz?k%=S%#k_!30Kp zm}VJ%mJ1UYF=U!$_*qI!V1%1#rt$|~gf@W@lBQXPKQ;ac-of}&m0+-2ICfQTMa`Sj9aXM3_}}? zTdar-LmP}+td9&s8;o15mJCB1oXJ=_c^KOArR$yEYNzfwhHd&d=3}q;cRDywT*pu) z_;6P;^LzR%@)4_qhI)*ACN2Y@VWpxZyLXJrX2b$^_s)YPVz`=o< zI)*ACKN@gwprekVO305092_X9W2h4HqXG|S|HQyEY#$tOrm+qc5mFmevzCw_9XL49 zOUF>Xr2GiM!GTgbhAJUHN^o$Xk&dBC$d42p9H^sXs1ov{h4NFtyGgU2jnA z&tBdwqHeqFR#KmrAFe-ozF90s>)B!>eK$`8h8T*?D(@%jX5DV*O9d$eF-LmxVX?TZ z;Da9K_&&W@oS)AowLcT8n4@hrPBsgY6~7azm?Ql3Zc^3KLK}0mr+>d4uQtC{{7{Hv zj`8_?vbo-VTe9*3LnD*CdX(~^10pb_Qfy8~X^0fJnmJM-N<(~5%N(B`r6F2qW{y^h z(hwmuGe@XLX^0lenWGh>G{gw$%rP2K%Dm;b+4frc9mG^_-^a^qQq$3QpRJmggo4^8 zgF{i}c7uHPmh|n)PKYupBvo!VSYIty)Ah}G)f~t$YR>z-x~}1e#HRUQ7W|jvl_PvI zJfv1`5B~gsF39*$Ub)@ie|@u9uRo5$rG`uZ4VK#t2VS+}6szcDd?>QqZt-tJE-uV6 zK9u?YukFgV+eVJ4Ig)94Y>(GWCX-oC@(b3#uyLZth6jWVzC@{#VNHLANt3zugj-N$bfca5KqbRVrz(=}RLHXG?K{%fPAU&}T9 z`e9Kutg2rdRb5ly)k9VH>}s-0iff~sYvjjH*No(PZIp10^woT~9kf|;ZPam%{B1)% zbOm*7RCHB=}wdTM&qFI_-&aJp!lGo~Y0x za8i5HpXLtxVOWN&ded3_9NJNy-Ikw-l}(T&fs<2SZFSRt6Kbl?nk1FqA6BGts-(JGb(|PEEtk ztS&zHO=U@r!v}-q@ll&uC@`BP$zLC}oP`48S&}>-wI3I&|J^O`s8~00SvP{IyW)C;%{x zBE+*$yKuJM96u0et}h@r1{VyZ>%?~Vz>*n2kS*CZ?%JusD>}I#Q$1|BC)L!Am^ln}6w`o$}NtCIGJ4J}%)9npqD&kBL zqWE-6Lz#-WQiLcz-NsO+B8n6tichyLl&J_AMTp|l?FwZo0z?s_`1FNrWhw$f5u*6? z{p|mmAYg$8#q2U+9F=PZYInQGqi1X4g;>wjfxDH4I>FK4gj9djmq$!%JtF# z566$eZ2m}2&xsQZ<-~YePFbP}(Zht-ly@t-YecL*1^1u>wq`i)-pAUkwPiYHp zc{jUVtjqZ}9q{;UxBQ&!O#O($zz}rABDmbAcYleIDF%!{M@;mxFwtRvDEiZ7T4CH9 z$|LWG;Wzcpgh$$s!e68p*$v&1^P}KSzd_O;iQru)1FehIZC$V7{LEnMKo`$XF5mfb z{FC#}2y(|5NW=m&$nbT(6`#e2=uwIAi{oOi!X^{@F^c7ETiuukVP zNfM{bX7)Qs2q=7#gv>!V0we?!J4r(3pql{_0t%cYA#>0T0SN&`O_Go~=%#>#fI=oo z$Q*QIKte$Ak|bmf`fMj5pkPT7evV$qEmr?Y&p8MUX0Sz`yezicB8AfJ@fr2y?P61` zzqEh8Sk?Qoc~PQyWSzX)>^7_P`s>5r+LH080wQM|6((^N5Ln}=K<@%gR16E^jv34_ z1icFm6%dwg6(*B$eF0HBjtcZH(5Pcr5Y)^dZ-~%ca2NtHKaL9YE;v*W)~&~grM}`Bq3yo-bPa|J&~IeIc3*qhQKZLWf4;q6m+q@asUC~}>QlX2doLgLIzr#Ria5;hsMsTM z2h5I|Jq~xw=&0M{u!l^J(j6gx@um274EOSOnAuUlN8}Hf9%Xzy{+Rhu&d1XrOK~G%=oDBWARI-@AL(BTE<9&lOlAgys=&<1reoQ5wd8x4k!f< z1zr&{IhnpF1r9}B5wbYhZYc#1rCbp*Nx2>>1rIe`5wb{`&ME~BrCSlQD20A21raq{ z5z3_Pya<^h^?UjqY;(V>J~s`X^*8+9ri!)HWXaw6Ld|igl4<9ciRTe=gY4_jc-jO0Bi4bhu%YK@Pv!zkm40 zW_ObsXXfnJoeUx&_+1+PFnJ7(gp}aY=<-oC5)y?=qv@k)BxDblMo)Yi(Jey5kA#%s z(#YvYL5+k=3KM?sB*b*YsUSR9rG}x|i=8F}zyc>^r2x3HlucWG>1n8BjrKrXh1tE6IQgO5K~x zMIj^uDyVT!QRO0_^!*qz7bT1gsG8CjV#r+7Co-Ud(&I76TofNNpn}pfG00q07BZlM zzR~>@Wg`OmP6tIzh=6|3L6Ptypg-%N$mS8yUvyBU>ImqsIw-w%X-4MfBQf*iGCnQM{CwnSe%z1WIeq8g|C`0#65h{^4#S4$ z$FQm2bF<;~+^DQK^?7bKJf0hsv8lgvv*GRBsEkd0otq6$=SF30>gU{ScsVyJV^bgJ zX2Zj|Q9pL)gqOo%Pw;Iza>9IBE&jJ#+@^h~)%jU;bQb)Xj_`QYkLfJO`8Ji5N^WzV!lUoEP%xBlaktIK8arQ}9iT(VH^ zoD;V%ZvfH%zc9J0`+fSU0MqG63m}~ZO6B?d+i*}ME%P?=eCFklw4B?>^EsD8(z0zM z&u3c>Nz1d1JfCMdBrU@>@_dHnkhI*|$n&|CL!w#rU)TlP-!Hc1?5-;QN)3O>!BZPe zoes@_huN|xPcfh7Y%KVrEi3a7-tcTRl+GD%cz7C0XvZ5KtR8`@^Wu5qd*w2H3}KtT2#G=`NwjV{d3T&K zTdm8@=HW~?`>T)=EUKO)5hSK7R0$UKPm%}{(-7f=X$+MXCJ56O`9)}9sWZeFL)Z%W`3MeBQ?19)tC%d1C`pXM(S$s ztI;`y`*7-h#@#^OcB_$E+52jYa5qrJ-D;%wAo^-_?#AH^^o+ZKn(kIZ^Nn0JP~qKb zXugrF2I{?A4b3-l)j;)ktD*VEd8E*nE_fQO1^Ds7dBdj$Rt9c0G~dX*8(1f})zEw+ zR}HKh+-hjPaqgl%qhJl;RwI@-d}?4t;Z{TQjoiC|^@Upv%{Ow@cys#Q)vbo+8|N-c z*IPWz+qfEzLBfOZ*es=-#B+s zpKtsgS3~oSTs8iPtD*Tut{Q*F)zEyyR^!i3Kg@A|7n6u z`moILh^wY0yr^jXuz;|uVM&UVbZ^oE!VZQdDN@p1Nec+O6_%t(N%tcyAnZ(7k|HJD ziL`*Q3t>r$lync$0>X}iB`H$U_A?6zy9<`2NJ;zDEFkP8SdtG&S?%E&SwV`iSvtQ`N`w+Vpl99tzcwAGfLaZWta7 zg^?e(+1O?n9tEOg)Kd+wJ-RPf!0b_Pv>=2ub&=Xo*+L`lPRcFWPo5z>vfTS z6W75|h;*=LUy8eOncm_M&nZc5brmX&j`m}vRa4di#;ab*SlPQGHEkDyU#c)H>MZ{Cly~p^$}j zsOf6AURB1eN0!yWE^Y5Z3e};W-mL4rag9ij2G(8rijIMWWGbRvp4JGu entry : itemIds.entrySet()) { writer.write(entry.getKey()); writer.write('='); @@ -91,7 +91,7 @@ public static void main(String[] args) throws IOException { } } - try (FileWriter writer = new FileWriter("block-id-dump-from-items.properties")) { + try (FileWriter writer = new FileWriter("dumps/block-id-dump-from-items.properties")) { for (Map.Entry entry : blockIds.entrySet()) { writer.write(entry.getKey()); writer.write('='); diff --git a/src/test/java/org/powernukkit/tools/CurrentBlockMapReader.java b/src/test/java/org/powernukkit/tools/CurrentBlockMapReader.java new file mode 100644 index 00000000000..db53219395d --- /dev/null +++ b/src/test/java/org/powernukkit/tools/CurrentBlockMapReader.java @@ -0,0 +1,46 @@ +package org.powernukkit.tools; + +import cn.nukkit.nbt.NBTIO; +import cn.nukkit.nbt.tag.CompoundTag; +import cn.nukkit.utils.BinaryStream; +import lombok.Value; + +import java.io.ByteArrayInputStream; +import java.io.IOException; +import java.nio.ByteOrder; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.List; + +/** + * @author joserobjr + * @since 2021-09-24 + */ +public class CurrentBlockMapReader { + public static void main(String[] args) throws IOException { + BinaryStream stream = new BinaryStream(Files.readAllBytes(Paths.get("dumps/r12_to_current_block_map.bin"))); + List list = new ArrayList<>(); + while(!stream.feof()){ + String id = stream.getString(); + int meta = stream.getLShort(); + + int offset = stream.getOffset(); + byte[] buffer = stream.getBuffer(); + ByteArrayInputStream is = new ByteArrayInputStream(buffer, offset, buffer.length); + int initial = is.available(); + CompoundTag state = NBTIO.read(is, ByteOrder.LITTLE_ENDIAN, true); + offset += initial - is.available(); + stream.setOffset(offset); + list.add(new CurrentBlockMapEntry(id, meta, state)); + } + Files.write(Paths.get("dumps/r12_to_current_block_map.bin.txt"), list.toString().getBytes(StandardCharsets.UTF_8)); + } + + @Value static class CurrentBlockMapEntry { + String id; + int meta; + CompoundTag state; + } +} From 75bd6fdc62e7ee6fa384b1ac8d9c00542b4caf80 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 17:35:30 -0300 Subject: [PATCH 215/394] Update the dumps and improves the human string comparator --- dumps/item-id-dump.properties | 822 +++++++++--------- dumps/runtime_block_states.dat.dump.txt | 64 +- .../nukkit/utils/HumanStringComparator.java | 209 ++++- src/main/resources/runtime_item_ids.json | 10 +- .../utils/HumanStringComparatorTest.java | 53 ++ .../RuntimeItemIdReorder.java | 2 +- 6 files changed, 699 insertions(+), 461 deletions(-) create mode 100644 src/test/java/cn/nukkit/utils/HumanStringComparatorTest.java rename src/test/java/org/powernukkit/{dumps => tools}/RuntimeItemIdReorder.java (98%) diff --git a/dumps/item-id-dump.properties b/dumps/item-id-dump.properties index 8a9b78091f6..e3a47cdb41e 100644 --- a/dumps/item-id-dump.properties +++ b/dumps/item-id-dump.properties @@ -1,304 +1,304 @@ --2=minecraft:prismarine_stairs --3=minecraft:dark_prismarine_stairs --4=minecraft:prismarine_bricks_stairs --5=minecraft:stripped_spruce_log --6=minecraft:stripped_birch_log --7=minecraft:stripped_jungle_log --8=minecraft:stripped_acacia_log --9=minecraft:stripped_dark_oak_log --10=minecraft:stripped_oak_log --11=minecraft:blue_ice --12=minecraft:element_1 --13=minecraft:element_2 --14=minecraft:element_3 --15=minecraft:element_4 --16=minecraft:element_5 --17=minecraft:element_6 --18=minecraft:element_7 --19=minecraft:element_8 --20=minecraft:element_9 --21=minecraft:element_10 --22=minecraft:element_11 --23=minecraft:element_12 --24=minecraft:element_13 --25=minecraft:element_14 --26=minecraft:element_15 --27=minecraft:element_16 --28=minecraft:element_17 --29=minecraft:element_18 --30=minecraft:element_19 --31=minecraft:element_20 --32=minecraft:element_21 --33=minecraft:element_22 --34=minecraft:element_23 --35=minecraft:element_24 --36=minecraft:element_25 --37=minecraft:element_26 --38=minecraft:element_27 --39=minecraft:element_28 --40=minecraft:element_29 --41=minecraft:element_30 --42=minecraft:element_31 --43=minecraft:element_32 --44=minecraft:element_33 --45=minecraft:element_34 --46=minecraft:element_35 --47=minecraft:element_36 --48=minecraft:element_37 --49=minecraft:element_38 --50=minecraft:element_39 --51=minecraft:element_40 --52=minecraft:element_41 --53=minecraft:element_42 --54=minecraft:element_43 --55=minecraft:element_44 --56=minecraft:element_45 --57=minecraft:element_46 --58=minecraft:element_47 --59=minecraft:element_48 --60=minecraft:element_49 --61=minecraft:element_50 --62=minecraft:element_51 --63=minecraft:element_52 --64=minecraft:element_53 --65=minecraft:element_54 --66=minecraft:element_55 --67=minecraft:element_56 --68=minecraft:element_57 --69=minecraft:element_58 --70=minecraft:element_59 --71=minecraft:element_60 --72=minecraft:element_61 --73=minecraft:element_62 --74=minecraft:element_63 --75=minecraft:element_64 --76=minecraft:element_65 --77=minecraft:element_66 --78=minecraft:element_67 --79=minecraft:element_68 --80=minecraft:element_69 --81=minecraft:element_70 --82=minecraft:element_71 --83=minecraft:element_72 --84=minecraft:element_73 --85=minecraft:element_74 --86=minecraft:element_75 --87=minecraft:element_76 --88=minecraft:element_77 --89=minecraft:element_78 --90=minecraft:element_79 --91=minecraft:element_80 --92=minecraft:element_81 --93=minecraft:element_82 --94=minecraft:element_83 --95=minecraft:element_84 --96=minecraft:element_85 --97=minecraft:element_86 --98=minecraft:element_87 --99=minecraft:element_88 --100=minecraft:element_89 --101=minecraft:element_90 --102=minecraft:element_91 --103=minecraft:element_92 --104=minecraft:element_93 --105=minecraft:element_94 --106=minecraft:element_95 --107=minecraft:element_96 --108=minecraft:element_97 --109=minecraft:element_98 --110=minecraft:element_99 --111=minecraft:element_100 --112=minecraft:element_101 --113=minecraft:element_102 --114=minecraft:element_103 --115=minecraft:element_104 --116=minecraft:element_105 --117=minecraft:element_106 --118=minecraft:element_107 --119=minecraft:element_108 --120=minecraft:element_109 --121=minecraft:element_110 --122=minecraft:element_111 --123=minecraft:element_112 --124=minecraft:element_113 --125=minecraft:element_114 --126=minecraft:element_115 --127=minecraft:element_116 --128=minecraft:element_117 --129=minecraft:element_118 --130=minecraft:seagrass --131=minecraft:coral --132=minecraft:coral_block --133=minecraft:coral_fan --134=minecraft:coral_fan_dead --135=minecraft:coral_fan_hang --136=minecraft:coral_fan_hang2 --137=minecraft:coral_fan_hang3 --138=minecraft:item.kelp --139=minecraft:dried_kelp_block --140=minecraft:acacia_button --141=minecraft:birch_button --142=minecraft:dark_oak_button --143=minecraft:jungle_button --144=minecraft:spruce_button --145=minecraft:acacia_trapdoor --146=minecraft:birch_trapdoor --147=minecraft:dark_oak_trapdoor --148=minecraft:jungle_trapdoor --149=minecraft:spruce_trapdoor --150=minecraft:acacia_pressure_plate --151=minecraft:birch_pressure_plate --152=minecraft:dark_oak_pressure_plate --153=minecraft:jungle_pressure_plate --154=minecraft:spruce_pressure_plate --155=minecraft:carved_pumpkin --156=minecraft:sea_pickle --157=minecraft:conduit --158=minecraft:air --159=minecraft:turtle_egg --160=minecraft:bubble_column --161=minecraft:barrier --162=minecraft:double_stone_slab3 --163=minecraft:bamboo --164=minecraft:bamboo_sapling --165=minecraft:scaffolding --166=minecraft:double_stone_slab4 --167=minecraft:real_double_stone_slab3 --168=minecraft:real_double_stone_slab4 --169=minecraft:granite_stairs --170=minecraft:diorite_stairs --171=minecraft:andesite_stairs --172=minecraft:polished_granite_stairs --173=minecraft:polished_diorite_stairs --174=minecraft:polished_andesite_stairs --175=minecraft:mossy_stone_brick_stairs --176=minecraft:smooth_red_sandstone_stairs --177=minecraft:smooth_sandstone_stairs --178=minecraft:end_brick_stairs --179=minecraft:mossy_cobblestone_stairs --180=minecraft:normal_stone_stairs --181=minecraft:spruce_standing_sign --182=minecraft:spruce_wall_sign --183=minecraft:smooth_stone --184=minecraft:red_nether_brick_stairs --185=minecraft:smooth_quartz_stairs --186=minecraft:birch_standing_sign --187=minecraft:birch_wall_sign --188=minecraft:jungle_standing_sign --189=minecraft:jungle_wall_sign --190=minecraft:acacia_standing_sign --191=minecraft:acacia_wall_sign --192=minecraft:darkoak_standing_sign --193=minecraft:darkoak_wall_sign --194=minecraft:lectern --195=minecraft:grindstone --196=minecraft:blast_furnace --197=minecraft:stonecutter_block --198=minecraft:smoker --199=minecraft:lit_smoker --200=minecraft:cartography_table --201=minecraft:fletching_table --202=minecraft:smithing_table --203=minecraft:barrel --204=minecraft:loom --206=minecraft:bell --207=minecraft:sweet_berry_bush --208=minecraft:lantern --209=minecraft:item.campfire --210=minecraft:lava_cauldron --211=minecraft:jigsaw --212=minecraft:wood --213=minecraft:composter --214=minecraft:lit_blast_furnace --215=minecraft:light_block --216=minecraft:wither_rose --217=minecraft:stickypistonarmcollision --218=minecraft:bee_nest --219=minecraft:beehive --220=minecraft:honey_block --221=minecraft:honeycomb_block --222=minecraft:lodestone --223=minecraft:crimson_roots --224=minecraft:warped_roots --225=minecraft:crimson_stem --226=minecraft:warped_stem --227=minecraft:warped_wart_block --228=minecraft:crimson_fungus --229=minecraft:warped_fungus --230=minecraft:shroomlight --231=minecraft:weeping_vines --232=minecraft:crimson_nylium --233=minecraft:warped_nylium --234=minecraft:basalt --235=minecraft:polished_basalt --236=minecraft:soul_soil --237=minecraft:soul_fire --238=minecraft:item.nether_sprouts --239=minecraft:target --240=minecraft:stripped_crimson_stem --241=minecraft:stripped_warped_stem --242=minecraft:crimson_planks --243=minecraft:warped_planks --244=minecraft:item.crimson_door --245=minecraft:item.warped_door --246=minecraft:crimson_trapdoor --247=minecraft:warped_trapdoor --250=minecraft:crimson_standing_sign --251=minecraft:warped_standing_sign --252=minecraft:crimson_wall_sign --253=minecraft:warped_wall_sign --254=minecraft:crimson_stairs --255=minecraft:warped_stairs --256=minecraft:crimson_fence --257=minecraft:warped_fence --258=minecraft:crimson_fence_gate --259=minecraft:warped_fence_gate --260=minecraft:crimson_button --261=minecraft:warped_button --262=minecraft:crimson_pressure_plate --263=minecraft:warped_pressure_plate --264=minecraft:crimson_slab --265=minecraft:warped_slab --266=minecraft:crimson_double_slab --267=minecraft:warped_double_slab --268=minecraft:soul_torch --269=minecraft:soul_lantern --270=minecraft:netherite_block --271=minecraft:ancient_debris --272=minecraft:respawn_anchor --273=minecraft:blackstone --274=minecraft:polished_blackstone_bricks --275=minecraft:polished_blackstone_brick_stairs --276=minecraft:blackstone_stairs --277=minecraft:blackstone_wall --278=minecraft:polished_blackstone_brick_wall --279=minecraft:chiseled_polished_blackstone --280=minecraft:cracked_polished_blackstone_bricks --281=minecraft:gilded_blackstone --282=minecraft:blackstone_slab --283=minecraft:blackstone_double_slab --284=minecraft:polished_blackstone_brick_slab --285=minecraft:polished_blackstone_brick_double_slab --286=minecraft:item.chain --287=minecraft:twisting_vines --288=minecraft:nether_gold_ore --289=minecraft:crying_obsidian --290=minecraft:item.soul_campfire --291=minecraft:polished_blackstone --292=minecraft:polished_blackstone_stairs --293=minecraft:polished_blackstone_slab --294=minecraft:polished_blackstone_double_slab --295=minecraft:polished_blackstone_pressure_plate --296=minecraft:polished_blackstone_button --297=minecraft:polished_blackstone_wall --298=minecraft:warped_hyphae --299=minecraft:crimson_hyphae --300=minecraft:stripped_crimson_hyphae --301=minecraft:stripped_warped_hyphae --302=minecraft:chiseled_nether_bricks --303=minecraft:cracked_nether_bricks --304=minecraft:quartz_bricks -305=minecraft:unknown +-304=minecraft:quartz_bricks +-303=minecraft:cracked_nether_bricks +-302=minecraft:chiseled_nether_bricks +-301=minecraft:stripped_warped_hyphae +-300=minecraft:stripped_crimson_hyphae +-299=minecraft:crimson_hyphae +-298=minecraft:warped_hyphae +-297=minecraft:polished_blackstone_wall +-296=minecraft:polished_blackstone_button +-295=minecraft:polished_blackstone_pressure_plate +-294=minecraft:polished_blackstone_double_slab +-293=minecraft:polished_blackstone_slab +-292=minecraft:polished_blackstone_stairs +-291=minecraft:polished_blackstone +-290=minecraft:item.soul_campfire +-289=minecraft:crying_obsidian +-288=minecraft:nether_gold_ore +-287=minecraft:twisting_vines +-286=minecraft:item.chain +-285=minecraft:polished_blackstone_brick_double_slab +-284=minecraft:polished_blackstone_brick_slab +-283=minecraft:blackstone_double_slab +-282=minecraft:blackstone_slab +-281=minecraft:gilded_blackstone +-280=minecraft:cracked_polished_blackstone_bricks +-279=minecraft:chiseled_polished_blackstone +-278=minecraft:polished_blackstone_brick_wall +-277=minecraft:blackstone_wall +-276=minecraft:blackstone_stairs +-275=minecraft:polished_blackstone_brick_stairs +-274=minecraft:polished_blackstone_bricks +-273=minecraft:blackstone +-272=minecraft:respawn_anchor +-271=minecraft:ancient_debris +-270=minecraft:netherite_block +-269=minecraft:soul_lantern +-268=minecraft:soul_torch +-267=minecraft:warped_double_slab +-266=minecraft:crimson_double_slab +-265=minecraft:warped_slab +-264=minecraft:crimson_slab +-263=minecraft:warped_pressure_plate +-262=minecraft:crimson_pressure_plate +-261=minecraft:warped_button +-260=minecraft:crimson_button +-259=minecraft:warped_fence_gate +-258=minecraft:crimson_fence_gate +-257=minecraft:warped_fence +-256=minecraft:crimson_fence +-255=minecraft:warped_stairs +-254=minecraft:crimson_stairs +-253=minecraft:warped_wall_sign +-252=minecraft:crimson_wall_sign +-251=minecraft:warped_standing_sign +-250=minecraft:crimson_standing_sign +-247=minecraft:warped_trapdoor +-246=minecraft:crimson_trapdoor +-245=minecraft:item.warped_door +-244=minecraft:item.crimson_door +-243=minecraft:warped_planks +-242=minecraft:crimson_planks +-241=minecraft:stripped_warped_stem +-240=minecraft:stripped_crimson_stem +-239=minecraft:target +-238=minecraft:item.nether_sprouts +-237=minecraft:soul_fire +-236=minecraft:soul_soil +-235=minecraft:polished_basalt +-234=minecraft:basalt +-233=minecraft:warped_nylium +-232=minecraft:crimson_nylium +-231=minecraft:weeping_vines +-230=minecraft:shroomlight +-229=minecraft:warped_fungus +-228=minecraft:crimson_fungus +-227=minecraft:warped_wart_block +-226=minecraft:warped_stem +-225=minecraft:crimson_stem +-224=minecraft:warped_roots +-223=minecraft:crimson_roots +-222=minecraft:lodestone +-221=minecraft:honeycomb_block +-220=minecraft:honey_block +-219=minecraft:beehive +-218=minecraft:bee_nest +-217=minecraft:stickypistonarmcollision +-216=minecraft:wither_rose +-215=minecraft:light_block +-214=minecraft:lit_blast_furnace +-213=minecraft:composter +-212=minecraft:wood +-211=minecraft:jigsaw +-210=minecraft:lava_cauldron +-209=minecraft:item.campfire +-208=minecraft:lantern +-207=minecraft:sweet_berry_bush +-206=minecraft:bell +-204=minecraft:loom +-203=minecraft:barrel +-202=minecraft:smithing_table +-201=minecraft:fletching_table +-200=minecraft:cartography_table +-199=minecraft:lit_smoker +-198=minecraft:smoker +-197=minecraft:stonecutter_block +-196=minecraft:blast_furnace +-195=minecraft:grindstone +-194=minecraft:lectern +-193=minecraft:darkoak_wall_sign +-192=minecraft:darkoak_standing_sign +-191=minecraft:acacia_wall_sign +-190=minecraft:acacia_standing_sign +-189=minecraft:jungle_wall_sign +-188=minecraft:jungle_standing_sign +-187=minecraft:birch_wall_sign +-186=minecraft:birch_standing_sign +-185=minecraft:smooth_quartz_stairs +-184=minecraft:red_nether_brick_stairs +-183=minecraft:smooth_stone +-182=minecraft:spruce_wall_sign +-181=minecraft:spruce_standing_sign +-180=minecraft:normal_stone_stairs +-179=minecraft:mossy_cobblestone_stairs +-178=minecraft:end_brick_stairs +-177=minecraft:smooth_sandstone_stairs +-176=minecraft:smooth_red_sandstone_stairs +-175=minecraft:mossy_stone_brick_stairs +-174=minecraft:polished_andesite_stairs +-173=minecraft:polished_diorite_stairs +-172=minecraft:polished_granite_stairs +-171=minecraft:andesite_stairs +-170=minecraft:diorite_stairs +-169=minecraft:granite_stairs +-168=minecraft:real_double_stone_slab4 +-167=minecraft:real_double_stone_slab3 +-166=minecraft:double_stone_slab4 +-165=minecraft:scaffolding +-164=minecraft:bamboo_sapling +-163=minecraft:bamboo +-162=minecraft:double_stone_slab3 +-161=minecraft:barrier +-160=minecraft:bubble_column +-159=minecraft:turtle_egg +-158=minecraft:air +-157=minecraft:conduit +-156=minecraft:sea_pickle +-155=minecraft:carved_pumpkin +-154=minecraft:spruce_pressure_plate +-153=minecraft:jungle_pressure_plate +-152=minecraft:dark_oak_pressure_plate +-151=minecraft:birch_pressure_plate +-150=minecraft:acacia_pressure_plate +-149=minecraft:spruce_trapdoor +-148=minecraft:jungle_trapdoor +-147=minecraft:dark_oak_trapdoor +-146=minecraft:birch_trapdoor +-145=minecraft:acacia_trapdoor +-144=minecraft:spruce_button +-143=minecraft:jungle_button +-142=minecraft:dark_oak_button +-141=minecraft:birch_button +-140=minecraft:acacia_button +-139=minecraft:dried_kelp_block +-138=minecraft:item.kelp +-137=minecraft:coral_fan_hang3 +-136=minecraft:coral_fan_hang2 +-135=minecraft:coral_fan_hang +-134=minecraft:coral_fan_dead +-133=minecraft:coral_fan +-132=minecraft:coral_block +-131=minecraft:coral +-130=minecraft:seagrass +-129=minecraft:element_118 +-128=minecraft:element_117 +-127=minecraft:element_116 +-126=minecraft:element_115 +-125=minecraft:element_114 +-124=minecraft:element_113 +-123=minecraft:element_112 +-122=minecraft:element_111 +-121=minecraft:element_110 +-120=minecraft:element_109 +-119=minecraft:element_108 +-118=minecraft:element_107 +-117=minecraft:element_106 +-116=minecraft:element_105 +-115=minecraft:element_104 +-114=minecraft:element_103 +-113=minecraft:element_102 +-112=minecraft:element_101 +-111=minecraft:element_100 +-110=minecraft:element_99 +-109=minecraft:element_98 +-108=minecraft:element_97 +-107=minecraft:element_96 +-106=minecraft:element_95 +-105=minecraft:element_94 +-104=minecraft:element_93 +-103=minecraft:element_92 +-102=minecraft:element_91 +-101=minecraft:element_90 +-100=minecraft:element_89 +-99=minecraft:element_88 +-98=minecraft:element_87 +-97=minecraft:element_86 +-96=minecraft:element_85 +-95=minecraft:element_84 +-94=minecraft:element_83 +-93=minecraft:element_82 +-92=minecraft:element_81 +-91=minecraft:element_80 +-90=minecraft:element_79 +-89=minecraft:element_78 +-88=minecraft:element_77 +-87=minecraft:element_76 +-86=minecraft:element_75 +-85=minecraft:element_74 +-84=minecraft:element_73 +-83=minecraft:element_72 +-82=minecraft:element_71 +-81=minecraft:element_70 +-80=minecraft:element_69 +-79=minecraft:element_68 +-78=minecraft:element_67 +-77=minecraft:element_66 +-76=minecraft:element_65 +-75=minecraft:element_64 +-74=minecraft:element_63 +-73=minecraft:element_62 +-72=minecraft:element_61 +-71=minecraft:element_60 +-70=minecraft:element_59 +-69=minecraft:element_58 +-68=minecraft:element_57 +-67=minecraft:element_56 +-66=minecraft:element_55 +-65=minecraft:element_54 +-64=minecraft:element_53 +-63=minecraft:element_52 +-62=minecraft:element_51 +-61=minecraft:element_50 +-60=minecraft:element_49 +-59=minecraft:element_48 +-58=minecraft:element_47 +-57=minecraft:element_46 +-56=minecraft:element_45 +-55=minecraft:element_44 +-54=minecraft:element_43 +-53=minecraft:element_42 +-52=minecraft:element_41 +-51=minecraft:element_40 +-50=minecraft:element_39 +-49=minecraft:element_38 +-48=minecraft:element_37 +-47=minecraft:element_36 +-46=minecraft:element_35 +-45=minecraft:element_34 +-44=minecraft:element_33 +-43=minecraft:element_32 +-42=minecraft:element_31 +-41=minecraft:element_30 +-40=minecraft:element_29 +-39=minecraft:element_28 +-38=minecraft:element_27 +-37=minecraft:element_26 +-36=minecraft:element_25 +-35=minecraft:element_24 +-34=minecraft:element_23 +-33=minecraft:element_22 +-32=minecraft:element_21 +-31=minecraft:element_20 +-30=minecraft:element_19 +-29=minecraft:element_18 +-28=minecraft:element_17 +-27=minecraft:element_16 +-26=minecraft:element_15 +-25=minecraft:element_14 +-24=minecraft:element_13 +-23=minecraft:element_12 +-22=minecraft:element_11 +-21=minecraft:element_10 +-20=minecraft:element_9 +-19=minecraft:element_8 +-18=minecraft:element_7 +-17=minecraft:element_6 +-16=minecraft:element_5 +-15=minecraft:element_4 +-14=minecraft:element_3 +-13=minecraft:element_2 +-12=minecraft:element_1 +-11=minecraft:blue_ice +-10=minecraft:stripped_oak_log +-9=minecraft:stripped_dark_oak_log +-8=minecraft:stripped_acacia_log +-7=minecraft:stripped_jungle_log +-6=minecraft:stripped_birch_log +-5=minecraft:stripped_spruce_log +-4=minecraft:prismarine_bricks_stairs +-3=minecraft:dark_prismarine_stairs +-2=minecraft:prismarine_stairs 1=minecraft:stone 2=minecraft:grass 3=minecraft:dirt @@ -325,129 +325,18 @@ 24=minecraft:sandstone 25=minecraft:noteblock 26=minecraft:item.bed -263_0=minecraft:coal -263_1=minecraft:charcoal 27=minecraft:golden_rail 28=minecraft:detector_rail 29=minecraft:sticky_piston 30=minecraft:web 31=minecraft:tallgrass 32=minecraft:deadbush -325_0=minecraft:bucket -325_1=minecraft:milk_bucket -325_2=minecraft:cod_bucket -325_3=minecraft:salmon_bucket -325_4=minecraft:tropical_fish_bucket -325_5=minecraft:pufferfish_bucket -325_8=minecraft:water_bucket -325_10=minecraft:lava_bucket 33=minecraft:piston -333_0=minecraft:oak_boat -333_1=minecraft:spruce_boat -333_2=minecraft:birch_boat -333_3=minecraft:jungle_boat -333_4=minecraft:acacia_boat -333_5=minecraft:dark_oak_boat 34=minecraft:pistonarmcollision 35=minecraft:wool -351_0=minecraft:ink_sac -351_1=minecraft:red_dye -351_2=minecraft:green_dye -351_3=minecraft:cocoa_beans -351_4=minecraft:lapis_lazuli -351_5=minecraft:purple_dye -351_6=minecraft:cyan_dye -351_7=minecraft:light_gray_dye -351_8=minecraft:gray_dye -351_9=minecraft:pink_dye -434_0=minecraft:creeper_banner_pattern -434_1=minecraft:skull_banner_pattern -434_2=minecraft:flower_banner_pattern -434_3=minecraft:mojang_banner_pattern -434_4=minecraft:field_masoned_banner_pattern -434_5=minecraft:bordure_indented_banner_pattern -434_6=minecraft:piglin_banner_pattern -351_10=minecraft:lime_dye -351_11=minecraft:yellow_dye -351_12=minecraft:light_blue_dye -351_13=minecraft:magenta_dye -351_14=minecraft:orange_dye -351_15=minecraft:bone_meal -351_16=minecraft:black_dye -351_17=minecraft:brown_dye -351_18=minecraft:blue_dye -351_19=minecraft:white_dye 36=minecraft:element_0 37=minecraft:yellow_flower 38=minecraft:red_flower -383_10=minecraft:chicken_spawn_egg -383_11=minecraft:cow_spawn_egg -383_12=minecraft:pig_spawn_egg -383_13=minecraft:sheep_spawn_egg -383_14=minecraft:wolf_spawn_egg -383_15=minecraft:villager_spawn_egg -383_16=minecraft:mooshroom_spawn_egg -383_17=minecraft:squid_spawn_egg -383_18=minecraft:rabbit_spawn_egg -383_19=minecraft:bat_spawn_egg -383_22=minecraft:ocelot_spawn_egg -383_23=minecraft:horse_spawn_egg -383_24=minecraft:donkey_spawn_egg -383_25=minecraft:mule_spawn_egg -383_26=minecraft:skeleton_horse_spawn_egg -383_27=minecraft:zombie_horse_spawn_egg -383_28=minecraft:polar_bear_spawn_egg -383_29=minecraft:llama_spawn_egg -383_30=minecraft:parrot_spawn_egg -383_31=minecraft:dolphin_spawn_egg -383_32=minecraft:zombie_spawn_egg -383_33=minecraft:creeper_spawn_egg -383_34=minecraft:skeleton_spawn_egg -383_35=minecraft:spider_spawn_egg -383_36=minecraft:zombie_pigman_spawn_egg -383_37=minecraft:slime_spawn_egg -383_38=minecraft:enderman_spawn_egg -383_39=minecraft:silverfish_spawn_egg -383_40=minecraft:cave_spider_spawn_egg -383_41=minecraft:ghast_spawn_egg -383_42=minecraft:magma_cube_spawn_egg -383_43=minecraft:blaze_spawn_egg -383_44=minecraft:zombie_villager_spawn_egg -383_45=minecraft:witch_spawn_egg -383_46=minecraft:stray_spawn_egg -383_47=minecraft:husk_spawn_egg -383_48=minecraft:wither_skeleton_spawn_egg -383_49=minecraft:guardian_spawn_egg -383_50=minecraft:elder_guardian_spawn_egg -383_51=minecraft:npc_spawn_egg -383_54=minecraft:shulker_spawn_egg -383_55=minecraft:endermite_spawn_egg -383_56=minecraft:agent_spawn_egg -383_57=minecraft:vindicator_spawn_egg -383_58=minecraft:phantom_spawn_egg -383_59=minecraft:ravager_spawn_egg -383_74=minecraft:turtle_spawn_egg -383_75=minecraft:cat_spawn_egg -383_104=minecraft:evoker_spawn_egg -383_105=minecraft:vex_spawn_egg -383_108=minecraft:pufferfish_spawn_egg -383_109=minecraft:salmon_spawn_egg -383_110=minecraft:drowned_spawn_egg -383_111=minecraft:tropical_fish_spawn_egg -383_112=minecraft:cod_spawn_egg -383_113=minecraft:panda_spawn_egg -383_114=minecraft:pillager_spawn_egg -383_118=minecraft:wandering_trader_spawn_egg -383_121=minecraft:fox_spawn_egg -383_122=minecraft:bee_spawn_egg -383_123=minecraft:piglin_spawn_egg -383_124=minecraft:hoglin_spawn_egg -383_125=minecraft:strider_spawn_egg -383_126=minecraft:zoglin_spawn_egg -383_127=minecraft:piglin_brute_spawn_egg -383_128=minecraft:goat_spawn_egg -383_129=minecraft:glow_squid_spawn_egg -383_130=minecraft:axolotl_spawn_egg 39=minecraft:brown_mushroom 40=minecraft:red_mushroom 41=minecraft:gold_block @@ -671,6 +560,8 @@ 260=minecraft:apple 261=minecraft:bow 262=minecraft:arrow +263_0=minecraft:coal +263_1=minecraft:charcoal 264=minecraft:diamond 265=minecraft:iron_ingot 266=minecraft:gold_ingot @@ -732,12 +623,26 @@ 322=minecraft:golden_apple 323=minecraft:oak_sign 324=minecraft:wooden_door +325_0=minecraft:bucket +325_1=minecraft:milk_bucket +325_2=minecraft:cod_bucket +325_3=minecraft:salmon_bucket +325_4=minecraft:tropical_fish_bucket +325_5=minecraft:pufferfish_bucket +325_8=minecraft:water_bucket +325_10=minecraft:lava_bucket 328=minecraft:minecart 329=minecraft:saddle 330=minecraft:iron_door 331=minecraft:redstone 332=minecraft:snowball 333=minecraft:boat +333_0=minecraft:oak_boat +333_1=minecraft:spruce_boat +333_2=minecraft:birch_boat +333_3=minecraft:jungle_boat +333_4=minecraft:acacia_boat +333_5=minecraft:dark_oak_boat 334=minecraft:leather 335=minecraft:kelp 336=minecraft:brick @@ -755,6 +660,26 @@ 349=minecraft:cod 350=minecraft:cooked_cod 351=minecraft:dye +351_0=minecraft:ink_sac +351_1=minecraft:red_dye +351_2=minecraft:green_dye +351_3=minecraft:cocoa_beans +351_4=minecraft:lapis_lazuli +351_5=minecraft:purple_dye +351_6=minecraft:cyan_dye +351_7=minecraft:light_gray_dye +351_8=minecraft:gray_dye +351_9=minecraft:pink_dye +351_10=minecraft:lime_dye +351_11=minecraft:yellow_dye +351_12=minecraft:light_blue_dye +351_13=minecraft:magenta_dye +351_14=minecraft:orange_dye +351_15=minecraft:bone_meal +351_16=minecraft:black_dye +351_17=minecraft:brown_dye +351_18=minecraft:blue_dye +351_19=minecraft:white_dye 352=minecraft:bone 353=minecraft:sugar 354=minecraft:cake @@ -787,6 +712,74 @@ 381=minecraft:ender_eye 382=minecraft:glistering_melon_slice 383=minecraft:spawn_egg +383_10=minecraft:chicken_spawn_egg +383_11=minecraft:cow_spawn_egg +383_12=minecraft:pig_spawn_egg +383_13=minecraft:sheep_spawn_egg +383_14=minecraft:wolf_spawn_egg +383_15=minecraft:villager_spawn_egg +383_16=minecraft:mooshroom_spawn_egg +383_17=minecraft:squid_spawn_egg +383_18=minecraft:rabbit_spawn_egg +383_19=minecraft:bat_spawn_egg +383_22=minecraft:ocelot_spawn_egg +383_23=minecraft:horse_spawn_egg +383_24=minecraft:donkey_spawn_egg +383_25=minecraft:mule_spawn_egg +383_26=minecraft:skeleton_horse_spawn_egg +383_27=minecraft:zombie_horse_spawn_egg +383_28=minecraft:polar_bear_spawn_egg +383_29=minecraft:llama_spawn_egg +383_30=minecraft:parrot_spawn_egg +383_31=minecraft:dolphin_spawn_egg +383_32=minecraft:zombie_spawn_egg +383_33=minecraft:creeper_spawn_egg +383_34=minecraft:skeleton_spawn_egg +383_35=minecraft:spider_spawn_egg +383_36=minecraft:zombie_pigman_spawn_egg +383_37=minecraft:slime_spawn_egg +383_38=minecraft:enderman_spawn_egg +383_39=minecraft:silverfish_spawn_egg +383_40=minecraft:cave_spider_spawn_egg +383_41=minecraft:ghast_spawn_egg +383_42=minecraft:magma_cube_spawn_egg +383_43=minecraft:blaze_spawn_egg +383_44=minecraft:zombie_villager_spawn_egg +383_45=minecraft:witch_spawn_egg +383_46=minecraft:stray_spawn_egg +383_47=minecraft:husk_spawn_egg +383_48=minecraft:wither_skeleton_spawn_egg +383_49=minecraft:guardian_spawn_egg +383_50=minecraft:elder_guardian_spawn_egg +383_51=minecraft:npc_spawn_egg +383_54=minecraft:shulker_spawn_egg +383_55=minecraft:endermite_spawn_egg +383_56=minecraft:agent_spawn_egg +383_57=minecraft:vindicator_spawn_egg +383_58=minecraft:phantom_spawn_egg +383_59=minecraft:ravager_spawn_egg +383_74=minecraft:turtle_spawn_egg +383_75=minecraft:cat_spawn_egg +383_104=minecraft:evoker_spawn_egg +383_105=minecraft:vex_spawn_egg +383_108=minecraft:pufferfish_spawn_egg +383_109=minecraft:salmon_spawn_egg +383_110=minecraft:drowned_spawn_egg +383_111=minecraft:tropical_fish_spawn_egg +383_112=minecraft:cod_spawn_egg +383_113=minecraft:panda_spawn_egg +383_114=minecraft:pillager_spawn_egg +383_118=minecraft:wandering_trader_spawn_egg +383_121=minecraft:fox_spawn_egg +383_122=minecraft:bee_spawn_egg +383_123=minecraft:piglin_spawn_egg +383_124=minecraft:hoglin_spawn_egg +383_125=minecraft:strider_spawn_egg +383_126=minecraft:zoglin_spawn_egg +383_127=minecraft:piglin_brute_spawn_egg +383_128=minecraft:goat_spawn_egg +383_129=minecraft:glow_squid_spawn_egg +383_130=minecraft:axolotl_spawn_egg 384=minecraft:experience_bottle 385=minecraft:fire_charge 386=minecraft:writable_book @@ -838,6 +831,13 @@ 432=minecraft:chorus_fruit 433=minecraft:popped_chorus_fruit 434=minecraft:banner_pattern +434_0=minecraft:creeper_banner_pattern +434_1=minecraft:skull_banner_pattern +434_2=minecraft:flower_banner_pattern +434_3=minecraft:mojang_banner_pattern +434_4=minecraft:field_masoned_banner_pattern +434_5=minecraft:bordure_indented_banner_pattern +434_6=minecraft:piglin_banner_pattern 437=minecraft:dragon_breath 438=minecraft:splash_potion 441=minecraft:lingering_potion diff --git a/dumps/runtime_block_states.dat.dump.txt b/dumps/runtime_block_states.dat.dump.txt index 1a297183137..54988f0ef00 100644 --- a/dumps/runtime_block_states.dat.dump.txt +++ b/dumps/runtime_block_states.dat.dump.txt @@ -21636,38 +21636,6 @@ minecraft:lava_cauldron;fill_level=6;cauldron_liquid=water blockId=465 runtimeId=5394 -minecraft:leaves2;persistent_bit=0;update_bit=0;new_leaf_type=acacia -blockId=161 -runtimeId=5425 - -minecraft:leaves2;persistent_bit=0;update_bit=0;new_leaf_type=dark_oak -blockId=161 -runtimeId=5426 - -minecraft:leaves2;persistent_bit=0;update_bit=1;new_leaf_type=acacia -blockId=161 -runtimeId=5427 - -minecraft:leaves2;persistent_bit=0;update_bit=1;new_leaf_type=dark_oak -blockId=161 -runtimeId=5428 - -minecraft:leaves2;persistent_bit=1;update_bit=0;new_leaf_type=acacia -blockId=161 -runtimeId=5429 - -minecraft:leaves2;persistent_bit=1;update_bit=0;new_leaf_type=dark_oak -blockId=161 -runtimeId=5430 - -minecraft:leaves2;persistent_bit=1;update_bit=1;new_leaf_type=acacia -blockId=161 -runtimeId=5431 - -minecraft:leaves2;persistent_bit=1;update_bit=1;new_leaf_type=dark_oak -blockId=161 -runtimeId=5432 - minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=birch blockId=18 runtimeId=5411 @@ -21732,6 +21700,38 @@ minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=spruce blockId=18 runtimeId=5422 +minecraft:leaves2;persistent_bit=0;update_bit=0;new_leaf_type=acacia +blockId=161 +runtimeId=5425 + +minecraft:leaves2;persistent_bit=0;update_bit=0;new_leaf_type=dark_oak +blockId=161 +runtimeId=5426 + +minecraft:leaves2;persistent_bit=0;update_bit=1;new_leaf_type=acacia +blockId=161 +runtimeId=5427 + +minecraft:leaves2;persistent_bit=0;update_bit=1;new_leaf_type=dark_oak +blockId=161 +runtimeId=5428 + +minecraft:leaves2;persistent_bit=1;update_bit=0;new_leaf_type=acacia +blockId=161 +runtimeId=5429 + +minecraft:leaves2;persistent_bit=1;update_bit=0;new_leaf_type=dark_oak +blockId=161 +runtimeId=5430 + +minecraft:leaves2;persistent_bit=1;update_bit=1;new_leaf_type=acacia +blockId=161 +runtimeId=5431 + +minecraft:leaves2;persistent_bit=1;update_bit=1;new_leaf_type=dark_oak +blockId=161 +runtimeId=5432 + minecraft:lectern;powered_bit=0;direction=0 blockId=449 runtimeId=5433 diff --git a/src/main/java/cn/nukkit/utils/HumanStringComparator.java b/src/main/java/cn/nukkit/utils/HumanStringComparator.java index e24ec736f35..4af39fcec6c 100644 --- a/src/main/java/cn/nukkit/utils/HumanStringComparator.java +++ b/src/main/java/cn/nukkit/utils/HumanStringComparator.java @@ -3,34 +3,219 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import javax.annotation.Nonnull; +import java.util.ArrayList; +import java.util.Collections; import java.util.Comparator; +import java.util.List; @PowerNukkitOnly @Since("1.4.0.0-PN") public class HumanStringComparator implements Comparator { private static final HumanStringComparator INSTANCE = new HumanStringComparator(); + private static final int LEFT = -1; + private static final int RIGHT = 1; + private static final int EQUALS = 0; + private static final String SYMBOLS = "[:.;,/\\]{}|="; @Override public int compare(String o1, String o2) { + if (o1.equals(o2)) { + return EQUALS; + } + + List l1 = splitSymbols(combineNegativeSign(split(o1))); + List l2 = splitSymbols(combineNegativeSign(split(o2))); + + return compare(l1, l2); + } + + private List splitSymbols(List list) { + boolean changed = false; + List result = list; + int size = list.size(); + for (int i = size - 1; i >= 0; i--) { + String str = result.get(i); + int length = str.length(); + int lastPart = length; + for (int j = length - 1; j >= 0; j--) { + char c = str.charAt(j); + if (SYMBOLS.indexOf(c) != -1) { + if (!changed) { + result = list instanceof ArrayList? list : new ArrayList<>(list); + changed = true; + } + int indexToAddLast; + if (j > 0) { + result.set(i, str.substring(0, j)); + result.add(i + 1, Character.toString(c)); + indexToAddLast = i + 2; + } else { + result.set(i, Character.toString(c)); + indexToAddLast = i + 1; + } + if (j + 2 < length) { + result.add(indexToAddLast, str.substring(j + 1, lastPart)); + } + lastPart = j; + } + } + } + return result; + } + + private int compare(List l1, List l2) { + int len1 = l1.size(); + int len2 = l2.size(); + int minLen = Math.min(len1, len2); + for (int i = 0; i < minLen; i++) { + String str1 = l1.get(i); + String str2 = l2.get(i); + int strLen1 = str1.length(); + int strLen2 = str2.length(); + boolean isNum1 = !str1.isEmpty() && Character.isDigit(str1.charAt(strLen1 - 1)); + boolean isNum2 = !str2.isEmpty() && Character.isDigit(str2.charAt(strLen2 - 1)); + if (isNum1) { + if (isNum2) { + int i1 = Integer.parseInt(str1); + int i2 = Integer.parseInt(str2); + int result = Integer.compare(i1, i2); + if (result != EQUALS) { + return result; + } + // Number with higher 0 padding goes before + result = Integer.compare(strLen1, strLen2); + if (result != EQUALS) { + return result; + } + } else { + return RIGHT; + } + } else if (isNum2) { + return LEFT; + } else { + if (strLen1 == strLen2) { + int result = str1.compareTo(str2); + if (result != EQUALS) { + return result; + } + } else { + int minStrLen = Math.min(strLen1, strLen2); + String commonPart1 = str1.substring(0, minStrLen); + String commonPart2 = str2.substring(0, minStrLen); + int result = commonPart1.compareTo(commonPart2); + if (result != EQUALS) { + return result; + } + + // Detect ommitted number + if (strLen1 < strLen2) { + if (detectOmmitedNumber(l1, len1, i, str2, strLen2, minStrLen, commonPart1)) { + return RIGHT; + } + } else if (detectOmmitedNumber(l2, len2, i, str1, strLen1, minStrLen, commonPart2)) { + return LEFT; + } + + return Integer.compare(strLen1, strLen2); + } + } + } - String o1StringPart = o1.replaceAll("\\d", ""); - String o2StringPart = o2.replaceAll("\\d", ""); + return Integer.compare(len1, len2); + } + + private boolean detectOmmitedNumber(List l1, int len1, int i, String str2, int strLen2, int minStrLen, String commonPart1) { + String combined; + String comparingWith; + String next1 = len1 > i + 1? l1.get(i + 1) : null; + int nextLen1 = next1 == null? 0 : next1.length(); + boolean isDigit1 = next1 != null && Character.isDigit(next1.charAt(nextLen1 - 1)); + String afterNext1 = isDigit1 && len1 > i + 2? l1.get(i + 2) : null; + int afterNextLen1 = afterNext1 != null? afterNext1.length() : 0; + if (afterNextLen1 > 0) { + combined = commonPart1 + afterNext1.substring(0, Math.min(afterNextLen1, strLen2 - minStrLen)); + comparingWith = str2; + return combined.equals(comparingWith); + } + return false; + } + private List combineNegativeSign(List list) { + int size = list.size(); + if (size < 2) { + return list; + } - if (o1StringPart.equalsIgnoreCase(o2StringPart)) { - return extractInt(o1) - extractInt(o2); + for (int i = size - 1; i > 0; i--) { + String str1 = list.get(i); + int strLen1 = str1.length(); + if (strLen1 > 0 && Character.isDigit(str1.charAt(strLen1 - 1))) { + String str2 = list.get(i - 1); + int strLen2 = str2.length(); + if (strLen2 > 0 && str2.charAt(strLen2 - 1) == '-') { + list.set(i, "-" + str1); + if (strLen2 == 1) { + list.remove(i - 1); + i -= 2; + } else { + list.set(i - 1, str2.substring(0, strLen2 - 1)); + i--; + } + } + } } - return o1.compareTo(o2); + + return list; } - int extractInt(String s) { - String num = s.replaceAll("\\D", ""); - // return 0 if no digits found - try { - return num.isEmpty() ? 0 : Integer.parseInt(num); - } catch (NumberFormatException e) { - return 0; + @Nonnull + private List split(String str) { + int length = str.length(); + if (length == 0) { + return Collections.emptyList(); + } else if (length == 1) { + return Collections.singletonList(str); } + + List list = null; + boolean wasDigit = false; + int start = -1; + for (int i = 0; i < length; i++) { + if (Character.isDigit(str.charAt(i))) { + if (!wasDigit && start == -1) { + start = i; + wasDigit = true; + } else if (!wasDigit) { + if (list == null) { + list = new ArrayList<>(2); + } + list.add(str.substring(start, i)); + start = i; + wasDigit = true; + } + } else { + if (wasDigit) { + if (list == null) { + list = new ArrayList<>(2); + } + list.add(str.substring(start, i)); + start = i; + wasDigit = false; + } else if (start == -1) { + start = i; + } + } + } + + String substring = str.substring(start, length); + if (list == null) { + list = Collections.singletonList(substring); + } else { + list.add(substring); + } + + return list; } @PowerNukkitOnly diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index 20d38e07748..c6f94224363 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -3689,11 +3689,6 @@ "id": 434, "oldId": 382 }, - { - "name": "minecraft:spawn_egg", - "id": 628, - "oldId": 383 - }, { "name": "minecraft:chicken_spawn_egg", "id": 435, @@ -4692,6 +4687,11 @@ "oldId": 434, "deprecated": true }, + { + "name": "minecraft:spawn_egg", + "id": 628, + "oldId": 383 + }, { "name": "minecraft:end_crystal", "id": 629, diff --git a/src/test/java/cn/nukkit/utils/HumanStringComparatorTest.java b/src/test/java/cn/nukkit/utils/HumanStringComparatorTest.java new file mode 100644 index 00000000000..b20e86cbfbf --- /dev/null +++ b/src/test/java/cn/nukkit/utils/HumanStringComparatorTest.java @@ -0,0 +1,53 @@ +package cn.nukkit.utils; + +import org.junit.jupiter.api.Test; +import org.opentest4j.AssertionFailedError; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-09-25 + */ +class HumanStringComparatorTest { + private final HumanStringComparator comparator = HumanStringComparator.getInstance(); + + @SuppressWarnings("EqualsWithItself") + @Test + void compare() { + assertNegative(comparator.compare("-9", "9")); + assertNegative(comparator.compare("32", "325_0")); + assertNegative(comparator.compare("33", "325_0")); + assertNegative(comparator.compare("325", "325_0")); + assertZero(comparator.compare("325_0", "325_0")); + assertPositive(comparator.compare("326", "325_0")); + } + + @Test + void coralFan() { + assertNegative(comparator.compare( + "minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=0;dead_bit=0", + "minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=3;dead_bit=1" + )); + assertNegative(comparator.compare( + "minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=0;dead_bit=0", + "minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=3;dead_bit=1" + )); + } + + private void assertNegative(int actual) { + if (actual >= 0) { + throw new AssertionFailedError("Expected a negative value, got " + actual, -1, actual); + } + } + + private void assertPositive(int actual) { + if (actual <= 0) { + throw new AssertionFailedError("Expected a positive value, got " + actual, 1, actual); + } + } + + private void assertZero(int actual) { + assertEquals(0 , actual); + } +} diff --git a/src/test/java/org/powernukkit/dumps/RuntimeItemIdReorder.java b/src/test/java/org/powernukkit/tools/RuntimeItemIdReorder.java similarity index 98% rename from src/test/java/org/powernukkit/dumps/RuntimeItemIdReorder.java rename to src/test/java/org/powernukkit/tools/RuntimeItemIdReorder.java index 62a5e92b7eb..a3d895ee831 100644 --- a/src/test/java/org/powernukkit/dumps/RuntimeItemIdReorder.java +++ b/src/test/java/org/powernukkit/tools/RuntimeItemIdReorder.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package org.powernukkit.dumps; +package org.powernukkit.tools; import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitOnly; From 4fbcd831c8f0b5699618cabc236224e782a5fd37 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 17:45:23 -0300 Subject: [PATCH 216/394] Adds annotations, fix HurtArmorPacket.encode() --- src/main/java/cn/nukkit/entity/data/Skin.java | 6 +++++- .../java/cn/nukkit/network/protocol/HurtArmorPacket.java | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/main/java/cn/nukkit/entity/data/Skin.java b/src/main/java/cn/nukkit/entity/data/Skin.java index 4470300763e..70dc70bd014 100644 --- a/src/main/java/cn/nukkit/entity/data/Skin.java +++ b/src/main/java/cn/nukkit/entity/data/Skin.java @@ -236,19 +236,23 @@ public boolean isCapeOnClassic() { public void setCapeOnClassic(boolean capeOnClassic) { this.capeOnClassic = capeOnClassic; } - + + @Since("FUTURE") public void setPrimaryUser(boolean primaryUser) { this.primaryUser = primaryUser; } + @Since("FUTURE") public boolean isPrimaryUser() { return primaryUser; } + @Since("FUTURE") public void setGeometryDataEngineVersion(String geometryDataEngineVersion) { this.geometryDataEngineVersion = geometryDataEngineVersion; } + @Since("FUTURE") public String getGeometryDataEngineVersion() { return geometryDataEngineVersion; } diff --git a/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java b/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java index 20cd903520e..e6d5c4078e8 100644 --- a/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java @@ -1,6 +1,5 @@ package cn.nukkit.network.protocol; -import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.Since; import lombok.ToString; @@ -18,6 +17,7 @@ public class HurtArmorPacket extends DataPacket { @Since("1.3.0.0-PN") public int damage; + @Since("FUTURE") public long armorSlots; @Override @@ -28,9 +28,9 @@ public void decode() { @Override public void encode() { this.reset(); - this.putUnsignedVarLong(this.armorSlots); this.putVarInt(this.cause); - this.putVarInt(damage); + this.putVarInt(this.damage); + this.putUnsignedVarLong(this.armorSlots); } @Override From 7aba1986d518aff59663e3bf1595e6879163490d Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 17:56:53 -0300 Subject: [PATCH 217/394] Update item frame implementation, ignore warnings about missing sculks --- .../java/cn/nukkit/block/BlockItemFrame.java | 18 +++++++++++++++++- .../nukkit/blockstate/BlockStateRegistry.java | 9 +++++++-- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/block/BlockItemFrame.java b/src/main/java/cn/nukkit/block/BlockItemFrame.java index 0a757842eed..6fb44cf0679 100644 --- a/src/main/java/cn/nukkit/block/BlockItemFrame.java +++ b/src/main/java/cn/nukkit/block/BlockItemFrame.java @@ -39,9 +39,13 @@ public class BlockItemFrame extends BlockTransparentMeta implements BlockEntityH @Since("1.4.0.0-PN") public static final BooleanBlockProperty HAS_MAP = new BooleanBlockProperty("item_frame_map_bit", false); + @PowerNukkitOnly + @Since("FUTURE") + public static final BooleanBlockProperty HAS_PHOTO = new BooleanBlockProperty("item_frame_photo_bit", false); + @PowerNukkitOnly @Since("1.4.0.0-PN") - public static final BlockProperties PROPERTIES = new BlockProperties(FACING_DIRECTION, HAS_MAP); + public static final BlockProperties PROPERTIES = new BlockProperties(FACING_DIRECTION, HAS_MAP, HAS_PHOTO); public BlockItemFrame() { this(0); @@ -91,6 +95,18 @@ public void setStoringMap(boolean map) { setBooleanValue(HAS_MAP, map); } + @PowerNukkitOnly + @Since("FUTURE") + public boolean isStoringPhoto() { + return getBooleanValue(HAS_PHOTO); + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setStoringPhoto(boolean hasPhoto) { + setBooleanValue(HAS_PHOTO, hasPhoto); + } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Nonnull diff --git a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java index b34fcac6b04..a7db25f58e3 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java +++ b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java @@ -114,8 +114,13 @@ public class BlockStateRegistry { } // Integer infoUpdateRuntimeId = null; - - Set warned = new HashSet<>(); + + // Special cases, these blocks was partially published by Mojang, we must ignore them: + Set warned = new HashSet<>(Arrays.asList( + "minecraft:sculk", "minecraft:sculk_catalyst", + "minecraft:sculk_shrieker", "minecraft:sculk_vein" + )); + for (CompoundTag state : tags) { int blockId = state.getInt("blockId"); int runtimeId = state.getInt("runtimeId"); From 1a743f466fe4f75b1647514d257d5f9cb5faf49e Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 18:25:16 -0300 Subject: [PATCH 218/394] Fixes item frame placement on tall grass --- src/main/java/cn/nukkit/block/BlockItemFrame.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/block/BlockItemFrame.java b/src/main/java/cn/nukkit/block/BlockItemFrame.java index 6fb44cf0679..e715d42559f 100644 --- a/src/main/java/cn/nukkit/block/BlockItemFrame.java +++ b/src/main/java/cn/nukkit/block/BlockItemFrame.java @@ -193,10 +193,18 @@ public boolean onActivate(@Nonnull Item item, Player player) { @PowerNukkitDifference(info = "Allow to place on walls", since = "1.3.0.0-PN") @Override public boolean place(@Nonnull Item item, @Nonnull Block block, @Nonnull Block target, @Nonnull BlockFace face, double fx, double fy, double fz, @Nullable Player player) { - if (target.getId() != COBBLE_WALL && (!target.isSolid() || (block.isSolid() && !block.canBeReplaced()))) { + if (!(target instanceof BlockWall) && (!target.isSolid() && !target.equals(block) || (block.isSolid() && !block.canBeReplaced()))) { return false; } + if (target.equals(block) && block.canBeReplaced()) { + face = BlockFace.UP; + target = block.down(); + if (!target.isSolid() && !(target instanceof BlockWall)) { + return false; + } + } + setBlockFace(face); setStoringMap(item.getId() == ItemID.MAP); CompoundTag nbt = new CompoundTag() From 9d85eee90395290c181f4d088061221e83a79079 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 18:45:38 -0300 Subject: [PATCH 219/394] Fixes spawn eggs --- src/main/resources/runtime_item_ids.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index c6f94224363..31b47e9f9ee 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -3689,6 +3689,11 @@ "id": 434, "oldId": 382 }, + { + "name": "minecraft:spawn_egg", + "id": 628, + "oldId": 383 + }, { "name": "minecraft:chicken_spawn_egg", "id": 435, @@ -4687,14 +4692,9 @@ "oldId": 434, "deprecated": true }, - { - "name": "minecraft:spawn_egg", - "id": 628, - "oldId": 383 - }, { "name": "minecraft:end_crystal", "id": 629, "oldId": 426 } -] \ No newline at end of file +] From 24347debf8b1dc3824a3f3932d8323572d64ea37 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 19:53:46 -0300 Subject: [PATCH 220/394] Fixes recipes --- src/main/resources/recipes.json | 118236 +++++++-------- .../cn/nukkit/block/BlockItemFrameTest.java | 72 + 2 files changed, 59190 insertions(+), 59118 deletions(-) create mode 100644 src/test/java/cn/nukkit/block/BlockItemFrameTest.java diff --git a/src/main/resources/recipes.json b/src/main/resources/recipes.json index 48665628cd0..99dc59e4c27 100644 --- a/src/main/resources/recipes.json +++ b/src/main/resources/recipes.json @@ -1,59297 +1,59297 @@ { - "version" : 448, - "recipes" : [ - { - "type" : 4, - "uuid" : "442d85ed-8272-4543-a6f1-418f90ded05d" - }, - { - "type" : 4, - "uuid" : "8b36268c-1829-483c-a0f1-993b7156a8f2" - }, - { - "type" : 4, - "uuid" : "602234e4-cac1-4353-8bb7-b1ebff70024b" - }, - { - "id" : "minecraft:cartography_table_locator_map", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "block" : "cartography_table", - "priority" : 0 - }, - { - "id" : "minecraft:cartography_table_map", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map" - } - ], - "block" : "cartography_table", - "priority" : 0 - }, - { - "type" : 4, - "uuid" : "98c84b38-1085-46bd-b1ce-dd38c159e6cc" - }, - { - "id" : "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -395, - "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1129 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -380, - "id" : "minecraft:cobbled_deepslate_slab", - "count" : 2, - "blockRuntimeId" : 1145 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -381, - "id" : "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId" : 1147 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -382, - "id" : "minecraft:cobbled_deepslate_wall", - "blockRuntimeId" : 1155 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 2, - "blockRuntimeId" : 4104 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 2, - "blockRuntimeId" : 4104 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 2, - "blockRuntimeId" : 4104 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4106 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4106 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4106 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4114 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4114 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4114 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4276 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4276 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2, - "blockRuntimeId" : 4287 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2, - "blockRuntimeId" : 4287 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2, - "blockRuntimeId" : 4287 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2, - "blockRuntimeId" : 4287 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4289 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4289 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4289 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4289 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4297 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4297 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4297 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4297 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4459 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4459 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4459 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6176 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -384, - "id" : "minecraft:polished_deepslate_slab", - "count" : 2, - "blockRuntimeId" : 6179 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -384, - "id" : "minecraft:polished_deepslate_slab", - "count" : 2, - "blockRuntimeId" : 6179 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -385, - "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6181 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -385, - "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6181 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -386, - "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6189 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -386, - "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6189 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_andesite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7162 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_andesite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -171, - "id" : "minecraft:andesite_stairs", - "blockRuntimeId" : 144 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_andesite_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1322 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_blackstone_slab_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -282, - "id" : "minecraft:blackstone_slab", - "count" : 2, - "blockRuntimeId" : 497 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_blackstone_stairs_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -276, - "id" : "minecraft:blackstone_stairs", - "blockRuntimeId" : 499 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_blackstone_wall_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -277, - "id" : "minecraft:blackstone_wall", - "blockRuntimeId" : 507 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7131 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_brick_slab_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 2, - "blockRuntimeId" : 5801 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "output" : [ - { - "legacyId" : 108, - "id" : "minecraft:brick_stairs", - "blockRuntimeId" : 876 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_brick_stairs_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5803 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1324 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_wall_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5811 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_bricks_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5973 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_chiseled_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -279, - "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_chiseled_nether_bricks_from_nether_brick", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -302, - "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1130 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_chiseled_polished_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -279, - "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_cobbledouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7130 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_cobblestone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - ], - "output" : [ - { - "legacyId" : 67, - "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7185 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_cobblestone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1318 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_copper_block_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "blockRuntimeId" : 3909 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_copper_block_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 3910 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_copper_block_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3912 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 3910 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3912 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_dark_prismarine_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7146 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_dark_prismarine_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -3, - "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 4036 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_diorite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7163 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_diorite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -170, - "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 4475 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_diorite_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1321 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_double_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 2, - "blockRuntimeId" : 7177 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_endbrick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7159 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_endbrick_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7159 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_endbrick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : -178, - "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4719 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_endbrick_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "output" : [ - { - "legacyId" : -178, - "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4719 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_endbrick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1328 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_endbrick_wall2", - "type" : 0, - "input" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1328 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_endbricks", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4727 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "blockRuntimeId" : 4752 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4755 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_exposed_copper_to_exposed_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 4753 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 4753 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4755 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_granite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7165 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_granite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -169, - "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4964 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_granite_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1320 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_mossy_cobbledouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7148 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_mossy_cobblestone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "output" : [ - { - "legacyId" : -179, - "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5643 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_mossy_cobblestone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1319 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_mossy_stonebrick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 2, - "blockRuntimeId" : 7175 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_mossy_stonebrick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -175, - "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5651 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_mossy_stonebrick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1326 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_nether_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7134 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_nether_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "output" : [ - { - "legacyId" : 114, - "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5663 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_nether_brick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1327 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5728 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 5729 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5731 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 5729 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5731 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_andesite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 7090 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7161 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7161 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -174, - "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5787 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : -174, - "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5787 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_polished_basalt_from_basalt", - "type" : 0, - "input" : [ - { - "legacyId" : -234, - "id" : "minecraft:basalt", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -235, - "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5795 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_brick_slab_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 2, - "blockRuntimeId" : 5801 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_brick_stairs_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5803 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_brick_wall_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5811 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_bricks_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5973 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_diorite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 7088 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7164 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7164 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -173, - "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6351 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : -173, - "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6351 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_polished_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5798 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_granite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 7086 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_polished_granite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7166 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_polished_granite_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7166 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_polished_granite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -172, - "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6359 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_polished_granite_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : -172, - "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6359 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_polished_slab_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "count" : 2, - "blockRuntimeId" : 6004 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_stairs_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -292, - "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6006 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_wall_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -297, - "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6014 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_prismarine_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7147 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_prismarine_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : -4, - "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6414 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_prismarine_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7145 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_prismarine_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "output" : [ - { - "legacyId" : -2, - "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6422 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_prismarine_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1329 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_purpur_lines", - "type" : 0, - "input" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "output" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6500 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_purpur_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7144 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_purpur_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "output" : [ - { - "legacyId" : 203, - "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6510 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_quartz_bricks_from_quartz_block", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : -304, - "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6530 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_quartz_chiseled", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6519 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_quartz_lines", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6520 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_quartz_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7133 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_quartz_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 156, - "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6532 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_red_nether_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7150 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_red_nether_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "output" : [ - { - "legacyId" : -184, - "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6598 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_red_nether_brick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1331 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_red_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7143 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_cut", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6608 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_heiroglyphs", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6607 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 180, - "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6610 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1330 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7128 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_sandstone_cut", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6681 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_sandstone_heiroglyphs", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6680 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 128, - "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6683 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_sandstone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1323 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_slab_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "count" : 2, - "blockRuntimeId" : 6004 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_slab_from_polished_blackstone_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 2, - "blockRuntimeId" : 5801 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_smooth_double_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -183, - "id" : "minecraft:smooth_stone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7127 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_quartz_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 2, - "blockRuntimeId" : 7176 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_quartz_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -185, - "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6791 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_smooth_red_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7160 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_red_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -176, - "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6799 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_smooth_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7149 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -177, - "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6807 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_stairs_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -292, - "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6006 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_stone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : -180, - "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5681 - } - ], - "block" : "stonecutter", - "priority" : 6 - }, - { - "id" : "minecraft:stonecutter_stonebrick", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7193 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_stonebrick_chiseled", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7196 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_stonebrick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7132 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_stonebrick_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7132 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_stonebrick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 109, - "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7091 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_stonebrick_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "output" : [ - { - "legacyId" : 109, - "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7091 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_stonebrick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1325 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_stonebrick_wall2", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1325 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_wall_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -297, - "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6014 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_wall_from_polished_blackstone_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5811 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7590 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7591 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7593 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_exposed_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7605 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7591 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7593 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7604 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7607 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7605 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7607 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7618 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7619 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7621 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7619 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7621 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7632 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7633 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7635 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7633 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7635 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7646 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7647 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7649 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7647 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7649 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "stonecutter_stairs_from_polished_blackstone_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5803 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "Bookshelf_woodplanks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "Bowl_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "count" : 4 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "ButtonAcacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -140, - "id" : "minecraft:acacia_button" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonBirch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -141, - "id" : "minecraft:birch_button", - "blockRuntimeId" : 356 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonDarkOak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -142, - "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3936 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonJungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -143, - "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5184 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonSpruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -144, - "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6870 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Chest_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "blockRuntimeId" : 1123 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "DaylightDetector_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass" - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 151, - "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4066 - } - ], - "shape" : [ - "AAA", - "BBB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "FireCharge_blaze_powder_coal_sulphur_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - }, - { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 509, - "id" : "minecraft:fire_charge", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "FireCharge_coal_sulphur_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - }, - { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 509, - "id" : "minecraft:fire_charge", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Jukebox_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 84, - "id" : "minecraft:jukebox", - "blockRuntimeId" : 5183 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "Note_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 25, - "id" : "minecraft:noteblock", - "blockRuntimeId" : 5689 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "Painting_Cobblestone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7130 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Painting_NetherBrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7134 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Painting_VanillaBlocks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7128 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Painting_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 357, - "id" : "minecraft:painting" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Piston_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - }, - "C" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "D" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 33, - "id" : "minecraft:piston", - "blockRuntimeId" : 5759 - } - ], - "shape" : [ - "AAA", - "BCB", - "BDB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "PressurePlateAcacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -150, - "id" : "minecraft:acacia_pressure_plate", - "blockRuntimeId" : 60 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateBirch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -151, - "id" : "minecraft:birch_pressure_plate", - "blockRuntimeId" : 416 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateDarkOak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -152, - "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3996 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateJungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -153, - "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5244 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateSpruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -154, - "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 6930 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Stick_bamboo_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -163, - "id" : "minecraft:bamboo" - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick" - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "StoneSlab4_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7177 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab4_stoneBrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7175 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab_Brick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7131 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab_StoneBrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7132 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -183, - "id" : "minecraft:smooth_stone" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7127 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Torch_charcoal_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 50, - "id" : "minecraft:torch", - "count" : 4, - "blockRuntimeId" : 7261 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Torch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 50, - "id" : "minecraft:torch", - "count" : 4, - "blockRuntimeId" : 7261 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorAcacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -145, - "id" : "minecraft:acacia_trapdoor", - "count" : 2, - "blockRuntimeId" : 100 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorBirch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -146, - "id" : "minecraft:birch_trapdoor", - "count" : 2, - "blockRuntimeId" : 456 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorDarkOak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -147, - "id" : "minecraft:dark_oak_trapdoor", - "count" : 2, - "blockRuntimeId" : 4020 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorJungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -148, - "id" : "minecraft:jungle_trapdoor", - "count" : 2, - "blockRuntimeId" : 5284 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorSpruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -149, - "id" : "minecraft:spruce_trapdoor", - "count" : 2, - "blockRuntimeId" : 6970 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Trapdoor_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 96, - "id" : "minecraft:trapdoor", - "count" : 2, - "blockRuntimeId" : 7267 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TripwireHook_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "count" : 2, - "blockRuntimeId" : 7305 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "WoodButton_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 143, - "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7747 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "WoodPressurePlate_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 72, - "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7791 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "WorkBench_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 58, - "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3770 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "acacia_stairs_acacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 163, - "id" : "minecraft:acacia_stairs", - "count" : 4, - "blockRuntimeId" : 76 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "d81aaeaf-e172-4440-9225-868df030d27b" - }, - { - "type" : 4, - "uuid" : "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" - }, - { - "type" : 4, - "uuid" : "00000000-0000-0000-0000-000000000002" - }, - { - "id" : "bed_color_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_crimson_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_dye_0_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "birch_stairs_birch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 135, - "id" : "minecraft:birch_stairs", - "count" : 4, - "blockRuntimeId" : 432 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" - }, - { - "id" : "chiseled_quartz_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6519 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "chiseled_stonebrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7196 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "85939755-ba10-4d9d-a4cc-efb7a8e943c4" - }, - { - "id" : "dark_oak_stairs_dark_oak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 164, - "id" : "minecraft:dark_oak_stairs", - "count" : 4, - "blockRuntimeId" : 4012 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "d392b075-4ba1-40ae-8789-af868d56f6ce" - }, - { - "id" : "heiroglyphs_redsandstone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2" - } - }, - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6607 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "heiroglyphs_sandstone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6680 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "jungle_stairs_jungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 136, - "id" : "minecraft:jungle_stairs", - "count" : 4, - "blockRuntimeId" : 5260 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "lines_purpur_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6500 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "loom_block_wood_planks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -204, - "id" : "minecraft:loom", - "blockRuntimeId" : 5557 - } - ], - "shape" : [ - "AA", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 379, - "id" : "minecraft:acacia_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 556, - "id" : "minecraft:acacia_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4777 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 187, - "id" : "minecraft:acacia_fence_gate", - "blockRuntimeId" : 44 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2" - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5774 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5774 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5774 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5774 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 163, - "id" : "minecraft:acacia_stairs", - "count" : 4, - "blockRuntimeId" : 76 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2" - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7715 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7721 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7811 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:activator_rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 126, - "id" : "minecraft:activator_rail", - "count" : 6, - "blockRuntimeId" : 122 - } - ], - "shape" : [ - "ABA", - "ACA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:amethyst_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 623, - "id" : "minecraft:amethyst_shard", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -327, - "id" : "minecraft:amethyst_block", - "blockRuntimeId" : 136 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:andesite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - }, - { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 2, - "blockRuntimeId" : 7089 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:andesite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -171, - "id" : "minecraft:andesite_stairs", - "count" : 4, - "blockRuntimeId" : 144 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:andesite_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1322 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:anvil", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 42, - "id" : "minecraft:iron_block", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 145, - "id" : "minecraft:anvil", - "blockRuntimeId" : 152 - } - ], - "shape" : [ - "AAA", - " B ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:armor_stand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab" - } - }, - "output" : [ - { - "legacyId" : 552, - "id" : "minecraft:armor_stand" - } - ], - "shape" : [ - "AAA", - " A ", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:arrow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 327, - "id" : "minecraft:feather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "count" : 4 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 585, - "id" : "minecraft:field_masoned_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_creeper", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 516, - "id" : "minecraft:skull", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 582, - "id" : "minecraft:creeper_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_flower", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 581, - "id" : "minecraft:flower_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_skull", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 516, - "id" : "minecraft:skull", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 583, - "id" : "minecraft:skull_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_thing", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 259, - "id" : "minecraft:enchanted_golden_apple", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 584, - "id" : "minecraft:mojang_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_vines", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 106, - "id" : "minecraft:vine", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 586, - "id" : "minecraft:bordure_indented_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:barrel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -203, - "id" : "minecraft:barrel", - "blockRuntimeId" : 201 - } - ], - "shape" : [ - "ABA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:barrel_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -203, - "id" : "minecraft:barrel", - "blockRuntimeId" : 201 - } - ], - "shape" : [ - "ABA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:barrel_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -203, - "id" : "minecraft:barrel", - "blockRuntimeId" : 201 - } - ], - "shape" : [ - "ABA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:basic_map_to_enhanced", - "type" : 0, - "input" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 1 - }, - { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:beacon", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 518, - "id" : "minecraft:nether_star", - "damage" : 32767 - }, - "C" : { - "legacyId" : 49, - "id" : "minecraft:obsidian", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 138, - "id" : "minecraft:beacon", - "blockRuntimeId" : 217 - } - ], - "shape" : [ - "AAA", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:beehive", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -219, - "id" : "minecraft:beehive", - "blockRuntimeId" : 260 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:beehive_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -219, - "id" : "minecraft:beehive", - "blockRuntimeId" : 260 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:beehive_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -219, - "id" : "minecraft:beehive", - "blockRuntimeId" : 260 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:beetroot_soup", - "type" : 0, - "input" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 286, - "id" : "minecraft:beetroot_soup" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 376, - "id" : "minecraft:birch_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 554, - "id" : "minecraft:birch_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4775 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 184, - "id" : "minecraft:birch_fence_gate", - "blockRuntimeId" : 400 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5772 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5772 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5772 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5772 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 135, - "id" : "minecraft:birch_stairs", - "count" : 4, - "blockRuntimeId" : 432 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7713 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7719 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7809 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner" - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - ], - "output" : [ - { - "legacyId" : -428, - "id" : "minecraft:black_candle", - "blockRuntimeId" : 478 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_candle_from_ink_sac", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - ], - "output" : [ - { - "legacyId" : -428, - "id" : "minecraft:black_candle", - "blockRuntimeId" : 478 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 978 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 978 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:black_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3674 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_concrete_powder_from_ink_sac", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3674 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:black_dye_from_ink_sac", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - ], - "output" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_dye_from_wither_rose", - "type" : 0, - "input" : [ - { - "legacyId" : -216, - "id" : "minecraft:wither_rose", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7007 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_glass_from_ink_sac", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7007 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:black_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 15 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7023 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7023 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7039 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_hardened_clay_from_ink_sac", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7039 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:blackstone_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -282, - "id" : "minecraft:blackstone_slab", - "count" : 6, - "blockRuntimeId" : 497 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blackstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -276, - "id" : "minecraft:blackstone_stairs", - "count" : 4, - "blockRuntimeId" : 499 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blackstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -277, - "id" : "minecraft:blackstone_wall", - "count" : 6, - "blockRuntimeId" : 507 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blast_furnace", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - }, - "C" : { - "legacyId" : -183, - "id" : "minecraft:smooth_stone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -196, - "id" : "minecraft:blast_furnace", - "blockRuntimeId" : 669 - } - ], - "shape" : [ - "AAA", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blaze_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - ], - "output" : [ - { - "legacyId" : -424, - "id" : "minecraft:blue_candle", - "blockRuntimeId" : 675 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_candle_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - ], - "output" : [ - { - "legacyId" : -424, - "id" : "minecraft:blue_candle", - "blockRuntimeId" : 675 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 974 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 974 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3670 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_concrete_powder_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3670 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:blue_dye_from_cornflower", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_dye_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - ], - "output" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_ice", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 174, - "id" : "minecraft:packed_ice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -11, - "id" : "minecraft:blue_ice", - "blockRuntimeId" : 691 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7003 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_glass_from_lapis_lazuli", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7003 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:blue_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7019 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7019 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7035 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_hardened_clay_from_lapis_lazuli", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7035 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 375, - "id" : "minecraft:oak_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bone_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - }, - "output" : [ - { - "legacyId" : 216, - "id" : "minecraft:bone_block", - "blockRuntimeId" : 692 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bone_meal_from_block", - "type" : 0, - "input" : [ - { - "legacyId" : 216, - "id" : "minecraft:bone_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "count" : 9 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bone_meal_from_bone", - "type" : 0, - "input" : [ - { - "legacyId" : 415, - "id" : "minecraft:bone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:book", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper" - }, - { - "legacyId" : 386, - "id" : "minecraft:paper" - }, - { - "legacyId" : 386, - "id" : "minecraft:paper" - }, - { - "legacyId" : 381, - "id" : "minecraft:leather" - } - ], - "output" : [ - { - "legacyId" : 387, - "id" : "minecraft:book" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bookshelf_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bookshelf_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 300, - "id" : "minecraft:bow" - } - ], - "shape" : [ - " AB", - "A B", - " AB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bowl_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "count" : 4 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bowl_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "count" : 4 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bread", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 261, - "id" : "minecraft:bread" - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brewing_stand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 431, - "id" : "minecraft:brewing_stand" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brewing_stand_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 431, - "id" : "minecraft:brewing_stand" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:brewing_stand_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 431, - "id" : "minecraft:brewing_stand" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:brick_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 383, - "id" : "minecraft:brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "blockRuntimeId" : 875 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 108, - "id" : "minecraft:brick_stairs", - "count" : 4, - "blockRuntimeId" : 876 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1324 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - ], - "output" : [ - { - "legacyId" : -425, - "id" : "minecraft:brown_candle", - "blockRuntimeId" : 884 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_candle_from_cocoa_beans", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - ], - "output" : [ - { - "legacyId" : -425, - "id" : "minecraft:brown_candle", - "blockRuntimeId" : 884 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 975 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 975 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3671 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_concrete_powder_from_cocoa_beans", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3671 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:brown_dye_from_cocoa_beans", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - ], - "output" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7004 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_glass_from_cocoa_beans", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7004 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:brown_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7020 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7020 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7036 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_hardened_clay_from_cocoa_beans", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7036 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:bucket", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 360, - "id" : "minecraft:bucket" - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cake", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 361, - "id" : "minecraft:milk_bucket" - }, - "B" : { - "legacyId" : 416, - "id" : "minecraft:sugar", - "damage" : 32767 - }, - "C" : { - "legacyId" : 390, - "id" : "minecraft:egg", - "damage" : 32767 - }, - "D" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 417, - "id" : "minecraft:cake" - }, - { - "legacyId" : 360, - "id" : "minecraft:bucket", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "BCB", - "DDD" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:campfire_from_charcoal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:candle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "blockRuntimeId" : 953 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:carrot_on_a_stick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 392, - "id" : "minecraft:fishing_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 517, - "id" : "minecraft:carrot_on_a_stick" - } - ], - "shape" : [ - "A ", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cartography_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -200, - "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cartography_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -200, - "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:cartography_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -200, - "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:cauldron", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 432, - "id" : "minecraft:cauldron" - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chain", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 617, - "id" : "minecraft:chain" - } - ], - "shape" : [ - "A", - "B", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chest_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "blockRuntimeId" : 1123 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:chest_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "blockRuntimeId" : 1123 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:chest_minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - }, - "B" : { - "legacyId" : 370, - "id" : "minecraft:minecart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 389, - "id" : "minecraft:chest_minecart" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chiseled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -380, - "id" : "minecraft:cobbled_deepslate_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -395, - "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1129 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:chiseled_nether_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : -302, - "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1130 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chiseled_polished_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -279, - "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 384, - "id" : "minecraft:clay_ball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 82, - "id" : "minecraft:clay", - "blockRuntimeId" : 1139 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:clock", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 393, - "id" : "minecraft:clock" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:coal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 173, - "id" : "minecraft:coal_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 302, - "id" : "minecraft:coal", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:coal_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - } - }, - "output" : [ - { - "legacyId" : 173, - "id" : "minecraft:coal_block", - "blockRuntimeId" : 1140 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:coarse_dirt", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 3, - "id" : "minecraft:dirt" - }, - "B" : { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 3, - "id" : "minecraft:dirt", - "count" : 4, - "blockRuntimeId" : 4484 - } - ], - "shape" : [ - "AB", - "BA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -380, - "id" : "minecraft:cobbled_deepslate_slab", - "count" : 6, - "blockRuntimeId" : 1145 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cobbled_deepslate_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -381, - "id" : "minecraft:cobbled_deepslate_stairs", - "count" : 4, - "blockRuntimeId" : 1147 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cobbled_deepslate_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -382, - "id" : "minecraft:cobbled_deepslate_wall", - "count" : 6, - "blockRuntimeId" : 1155 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cobblestone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 67, - "id" : "minecraft:stone_stairs", - "count" : 4, - "blockRuntimeId" : 7185 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cobblestone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1318 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cobweb_to_string", - "type" : 0, - "input" : [ - { - "legacyId" : 30, - "id" : "minecraft:web", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 326, - "id" : "minecraft:string", - "count" : 9 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:comparator", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 522, - "id" : "minecraft:comparator" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:compass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 391, - "id" : "minecraft:compass" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:composter", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -213, - "id" : "minecraft:composter", - "blockRuntimeId" : 3634 - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:composter_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -213, - "id" : "minecraft:composter", - "blockRuntimeId" : 3634 - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:composter_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -213, - "id" : "minecraft:composter", - "blockRuntimeId" : 3634 - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:conduit", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 570, - "id" : "minecraft:nautilus_shell", - "damage" : 32767 - }, - "B" : { - "legacyId" : 571, - "id" : "minecraft:heart_of_the_sea", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -157, - "id" : "minecraft:conduit", - "blockRuntimeId" : 3675 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cookie", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - }, - "B" : { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - }, - "output" : [ - { - "legacyId" : 271, - "id" : "minecraft:cookie", - "count" : 8 - } - ], - "shape" : [ - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:copper_block_from_ingots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "blockRuntimeId" : 3676 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "count" : 4, - "blockRuntimeId" : 3909 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 3910 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 3912 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_exposed_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "count" : 4, - "blockRuntimeId" : 4752 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_exposed_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 4753 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_exposed_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 4755 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 58, - "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3770 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:crafting_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 58, - "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3770 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:crafting_table_oxidized_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "count" : 4, - "blockRuntimeId" : 5728 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_oxidized_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 5729 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_oxidized_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 5731 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "count" : 4, - "blockRuntimeId" : 7590 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7591 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7593 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_exposed_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "count" : 4, - "blockRuntimeId" : 7604 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7605 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7607 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "count" : 4, - "blockRuntimeId" : 7618 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7619 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7621 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_weathered_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "count" : 4, - "blockRuntimeId" : 7632 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7633 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7635 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_weathered_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "count" : 4, - "blockRuntimeId" : 7646 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_weathered_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7647 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_weathered_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7649 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crimson_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -260, - "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3771 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 614, - "id" : "minecraft:crimson_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -256, - "id" : "minecraft:crimson_fence", - "count" : 3, - "blockRuntimeId" : 3817 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -258, - "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3818 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -299, - "id" : "minecraft:crimson_hyphae", - "count" : 3, - "blockRuntimeId" : 3835 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4, - "blockRuntimeId" : 3839 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks_from_crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -299, - "id" : "minecraft:crimson_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4, - "blockRuntimeId" : 3839 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks_from_stripped_crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -300, - "id" : "minecraft:stripped_crimson_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4, - "blockRuntimeId" : 3839 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks_from_stripped_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4, - "blockRuntimeId" : 3839 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -262, - "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3840 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_sign", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 612, - "id" : "minecraft:crimson_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "count" : 6, - "blockRuntimeId" : 3857 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -254, - "id" : "minecraft:crimson_stairs", - "count" : 4, - "blockRuntimeId" : 3859 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_trapdoor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -246, - "id" : "minecraft:crimson_trapdoor", - "count" : 2, - "blockRuntimeId" : 3886 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crossbow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "C" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "D" : { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 575, - "id" : "minecraft:crossbow" - } - ], - "shape" : [ - "ABA", - "CDC", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - ], - "output" : [ - { - "legacyId" : -422, - "id" : "minecraft:cyan_candle", - "blockRuntimeId" : 3920 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 972 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 972 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3668 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - ], - "output" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_dye_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - ], - "output" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cyan_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7001 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7017 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7017 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7033 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 380, - "id" : "minecraft:dark_oak_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 557, - "id" : "minecraft:dark_oak_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4778 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 186, - "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3980 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5775 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5775 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5775 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5775 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 164, - "id" : "minecraft:dark_oak_stairs", - "count" : 4, - "blockRuntimeId" : 4012 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7716 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7722 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7812 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_prismarine", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6412 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_prismarine_from_ink_sac", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6412 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:daylight_detector_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 151, - "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4066 - } - ], - "shape" : [ - "AAA", - "BBB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:daylight_detector_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 151, - "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4066 - } - ], - "shape" : [ - "AAA", - "BBB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:deepslate_brick_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 6, - "blockRuntimeId" : 4104 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "count" : 4, - "blockRuntimeId" : 4106 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "count" : 6, - "blockRuntimeId" : 4114 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "count" : 4, - "blockRuntimeId" : 4276 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tile_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 6, - "blockRuntimeId" : 4287 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tile_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "count" : 4, - "blockRuntimeId" : 4289 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tile_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "count" : 6, - "blockRuntimeId" : 4297 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tiles", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "count" : 4, - "blockRuntimeId" : 4459 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:detector_rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 70, - "id" : "minecraft:stone_pressure_plate", - "damage" : 32767 - }, - "C" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 28, - "id" : "minecraft:detector_rail", - "count" : 6, - "blockRuntimeId" : 4461 - } - ], - "shape" : [ - "A A", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 57, - "id" : "minecraft:diamond_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 304, - "id" : "minecraft:diamond", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 319, - "id" : "minecraft:diamond_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 57, - "id" : "minecraft:diamond_block", - "blockRuntimeId" : 4473 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 350, - "id" : "minecraft:diamond_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 348, - "id" : "minecraft:diamond_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 347, - "id" : "minecraft:diamond_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 332, - "id" : "minecraft:diamond_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 349, - "id" : "minecraft:diamond_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 318, - "id" : "minecraft:diamond_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 317, - "id" : "minecraft:diamond_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 316, - "id" : "minecraft:diamond_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diorite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 2, - "blockRuntimeId" : 7087 - } - ], - "shape" : [ - "AB", - "BA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diorite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -170, - "id" : "minecraft:diorite_stairs", - "count" : 4, - "blockRuntimeId" : 4475 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diorite_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1321 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dispenser", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 300, - "id" : "minecraft:bow", - "damage" : 32767 - }, - "C" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 23, - "id" : "minecraft:dispenser", - "blockRuntimeId" : 4489 - } - ], - "shape" : [ - "AAA", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dried_kelp", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -139, - "id" : "minecraft:dried_kelp_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dried_kelp_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -139, - "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 4583 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dripstone_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -308, - "id" : "minecraft:pointed_dripstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -317, - "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4584 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dripstone_block_from_pointed_dripstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -308, - "id" : "minecraft:pointed_dripstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -317, - "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4584 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dropper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 125, - "id" : "minecraft:dropper", - "blockRuntimeId" : 4588 - } - ], - "shape" : [ - "AAA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:emerald", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 133, - "id" : "minecraft:emerald_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 512, - "id" : "minecraft:emerald", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:emerald_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 133, - "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4716 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:empty_map_to_enhanced", - "type" : 0, - "input" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map" - }, - { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:enchanting_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "C" : { - "legacyId" : 49, - "id" : "minecraft:obsidian", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 116, - "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4718 - } - ], - "shape" : [ - " A ", - "BCB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -178, - "id" : "minecraft:end_brick_stairs", - "count" : 4, - "blockRuntimeId" : 4719 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1328 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 121, - "id" : "minecraft:end_stone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "count" : 4, - "blockRuntimeId" : 4727 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_crystal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 433, - "id" : "minecraft:ender_eye", - "damage" : 32767 - }, - "C" : { - "legacyId" : 424, - "id" : "minecraft:ghast_tear", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 629, - "id" : "minecraft:end_crystal" - } - ], - "shape" : [ - "AAA", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_rod", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : 559, - "id" : "minecraft:popped_chorus_fruit", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 208, - "id" : "minecraft:end_rod", - "count" : 4, - "blockRuntimeId" : 4738 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ender_chest", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 49, - "id" : "minecraft:obsidian", - "damage" : 32767 - }, - "B" : { - "legacyId" : 433, - "id" : "minecraft:ender_eye", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 130, - "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4745 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ender_eye", - "type" : 0, - "input" : [ - { - "legacyId" : 422, - "id" : "minecraft:ender_pearl", - "damage" : 32767 - }, - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 433, - "id" : "minecraft:ender_eye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4773 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 107, - "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4779 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fermented_spider_eye", - "type" : 0, - "input" : [ - { - "legacyId" : 278, - "id" : "minecraft:spider_eye", - "damage" : 32767 - }, - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 416, - "id" : "minecraft:sugar", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 428, - "id" : "minecraft:fermented_spider_eye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fishing_rod", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 392, - "id" : "minecraft:fishing_rod" - } - ], - "shape" : [ - " A", - " AB", - "A B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fletching_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -201, - "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4811 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fletching_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -201, - "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4811 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:fletching_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -201, - "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4811 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:flint_and_steel", - "type" : 0, - "input" : [ - { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 299, - "id" : "minecraft:flint_and_steel" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:flower_pot", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 383, - "id" : "minecraft:brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 514, - "id" : "minecraft:flower_pot" - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:furnace", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 61, - "id" : "minecraft:furnace", - "blockRuntimeId" : 4863 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:furnace_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 61, - "id" : "minecraft:furnace", - "blockRuntimeId" : 4863 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:furnace_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 61, - "id" : "minecraft:furnace", - "blockRuntimeId" : 4863 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:glass_bottle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "count" : 3 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "count" : 16, - "blockRuntimeId" : 4871 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:glow_frame", - "type" : 0, - "input" : [ - { - "legacyId" : 513, - "id" : "minecraft:frame", - "damage" : 32767 - }, - { - "legacyId" : 503, - "id" : "minecraft:glow_ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 621, - "id" : "minecraft:glow_frame" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:glowstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 394, - "id" : "minecraft:glowstone_dust", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 89, - "id" : "minecraft:glowstone", - "blockRuntimeId" : 4949 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 41, - "id" : "minecraft:gold_block", - "blockRuntimeId" : 4950 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_ingot_from_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 41, - "id" : "minecraft:gold_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_ingot_from_nuggets", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_nugget", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_apple", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 257, - "id" : "minecraft:apple", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 258, - "id" : "minecraft:golden_apple" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 325, - "id" : "minecraft:golden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 354, - "id" : "minecraft:golden_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_carrot", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 283, - "id" : "minecraft:golden_carrot" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 352, - "id" : "minecraft:golden_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 351, - "id" : "minecraft:golden_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 333, - "id" : "minecraft:golden_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 353, - "id" : "minecraft:golden_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 324, - "id" : "minecraft:golden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 27, - "id" : "minecraft:golden_rail", - "count" : 6, - "blockRuntimeId" : 4952 - } - ], - "shape" : [ - "A A", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 323, - "id" : "minecraft:golden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 322, - "id" : "minecraft:golden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:granite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - }, - { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 7085 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:granite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -169, - "id" : "minecraft:granite_stairs", - "count" : 4, - "blockRuntimeId" : 4964 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:granite_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1320 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - ], - "output" : [ - { - "legacyId" : -420, - "id" : "minecraft:gray_candle", - "blockRuntimeId" : 4975 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 970 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 970 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3666 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_dye_from_black_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:gray_dye_from_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:gray_dye_from_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:gray_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6999 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7015 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7015 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7031 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - ], - "output" : [ - { - "legacyId" : -426, - "id" : "minecraft:green_candle", - "blockRuntimeId" : 4991 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 976 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 976 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3672 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7005 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7021 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7021 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7037 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:grindstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "damage" : 2 - }, - "C" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5007 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5007 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5007 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5007 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5007 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5007 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5007 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5007 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5007 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:hay_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 170, - "id" : "minecraft:hay_block", - "blockRuntimeId" : 5059 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:heavy_weighted_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 148, - "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5071 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honey_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 591, - "id" : "minecraft:honey_bottle", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -220, - "id" : "minecraft:honey_block", - "blockRuntimeId" : 5087 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honey_bottle", - "type" : 0, - "input" : [ - { - "legacyId" : -220, - "id" : "minecraft:honey_block", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 591, - "id" : "minecraft:honey_bottle", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honey_bottle_to_sugar", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 591, - "id" : "minecraft:honey_bottle", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 416, - "id" : "minecraft:sugar", - "count" : 3 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honeycomb_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -221, - "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5088 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:hopper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 527, - "id" : "minecraft:hopper" - } - ], - "shape" : [ - "A A", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:hopper_minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 527, - "id" : "minecraft:hopper", - "damage" : 32767 - }, - "B" : { - "legacyId" : 370, - "id" : "minecraft:minecart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 526, - "id" : "minecraft:hopper_minecart" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ingots_from_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:ingots_from_waxed_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:iron_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 298, - "id" : "minecraft:iron_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_bars", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 101, - "id" : "minecraft:iron_bars", - "count" : 16, - "blockRuntimeId" : 5108 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 42, - "id" : "minecraft:iron_block", - "blockRuntimeId" : 5109 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 346, - "id" : "minecraft:iron_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 344, - "id" : "minecraft:iron_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 372, - "id" : "minecraft:iron_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 343, - "id" : "minecraft:iron_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 331, - "id" : "minecraft:iron_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_ingot_from_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 42, - "id" : "minecraft:iron_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_ingot_from_nuggets", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 305, - "id" : "minecraft:iron_ingot" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 345, - "id" : "minecraft:iron_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_nugget", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 297, - "id" : "minecraft:iron_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 296, - "id" : "minecraft:iron_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 307, - "id" : "minecraft:iron_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_trapdoor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 167, - "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5143 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:item_frame", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 513, - "id" : "minecraft:frame" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jukebox_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 84, - "id" : "minecraft:jukebox", - "blockRuntimeId" : 5183 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:jukebox_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 84, - "id" : "minecraft:jukebox", - "blockRuntimeId" : 5183 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:jungle_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 377, - "id" : "minecraft:jungle_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 555, - "id" : "minecraft:jungle_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4776 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 185, - "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5228 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5773 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5773 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5773 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5773 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 136, - "id" : "minecraft:jungle_stairs", - "count" : 4, - "blockRuntimeId" : 5260 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7714 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7720 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7810 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ladder", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 65, - "id" : "minecraft:ladder", - "count" : 3, - "blockRuntimeId" : 5332 - } - ], - "shape" : [ - "A A", - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lantern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 50, - "id" : "minecraft:torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -208, - "id" : "minecraft:lantern", - "blockRuntimeId" : 5338 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lapis_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - }, - "output" : [ - { - "legacyId" : 22, - "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5340 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lapis_lazuli", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 22, - "id" : "minecraft:lapis_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lead", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 547, - "id" : "minecraft:lead", - "count" : 2 - } - ], - "shape" : [ - "AA ", - "AB ", - " A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 529, - "id" : "minecraft:rabbit_hide", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 381, - "id" : "minecraft:leather" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 338, - "id" : "minecraft:leather_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 336, - "id" : "minecraft:leather_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 335, - "id" : "minecraft:leather_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_horse_armor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 530, - "id" : "minecraft:leather_horse_armor" - } - ], - "shape" : [ - "A A", - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 337, - "id" : "minecraft:leather_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lectern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - }, - "B" : { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -194, - "id" : "minecraft:lectern", - "blockRuntimeId" : 5409 - } - ], - "shape" : [ - "AAA", - " B ", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lectern_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - }, - "B" : { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -194, - "id" : "minecraft:lectern", - "blockRuntimeId" : 5409 - } - ], - "shape" : [ - "AAA", - " B ", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:lectern_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - }, - "B" : { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -194, - "id" : "minecraft:lectern", - "blockRuntimeId" : 5409 - } - ], - "shape" : [ - "AAA", - " B ", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:lever", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 69, - "id" : "minecraft:lever", - "blockRuntimeId" : 5417 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - ], - "output" : [ - { - "legacyId" : -416, - "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5449 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 966 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 966 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3662 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:light_blue_dye_from_blue_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:light_blue_dye_from_blue_orchid", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_dye_from_lapis_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 4 - }, - { - "id" : "minecraft:light_blue_dye_from_lapis_white", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:light_blue_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6995 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7011 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7011 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7027 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray__carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 971 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "output" : [ - { - "legacyId" : -421, - "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5465 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 971 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3667 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:light_gray_dye_from_azure_bluet", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:light_gray_dye_from_black_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 7 - }, - { - "id" : "minecraft:light_gray_dye_from_gray_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 6 - }, - { - "id" : "minecraft:light_gray_dye_from_gray_white", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 4 - }, - { - "id" : "minecraft:light_gray_dye_from_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 8 - }, - { - "id" : "minecraft:light_gray_dye_from_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 5 - }, - { - "id" : "minecraft:light_gray_dye_from_oxeye_daisy", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:light_gray_dye_from_white_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7000 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7016 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7016 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7032 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_weighted_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 147, - "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5475 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lightning_rod", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -312, - "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5491 - } - ], - "shape" : [ - "A", - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:lime__carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 968 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - ], - "output" : [ - { - "legacyId" : -418, - "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5497 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 968 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3664 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_dye_from_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:lime_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6997 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7013 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7013 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7029 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lit_pumpkin", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -155, - "id" : "minecraft:carved_pumpkin", - "damage" : 32767 - }, - "B" : { - "legacyId" : 50, - "id" : "minecraft:torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 91, - "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5526 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:locator_map", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lodestone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 3 - }, - "B" : { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -222, - "id" : "minecraft:lodestone", - "blockRuntimeId" : 5538 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:loom_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -204, - "id" : "minecraft:loom", - "blockRuntimeId" : 5557 - } - ], - "shape" : [ - "AA", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:loom_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -204, - "id" : "minecraft:loom", - "blockRuntimeId" : 5557 - } - ], - "shape" : [ - "AA", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:magenta_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - ], - "output" : [ - { - "legacyId" : -415, - "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5561 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 965 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 965 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3661 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:magenta_dye_from_allium", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:magenta_dye_from_blue_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 6 - }, - { - "id" : "minecraft:magenta_dye_from_blue_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 4 - }, - { - "id" : "minecraft:magenta_dye_from_lapis_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 8 - }, - { - "id" : "minecraft:magenta_dye_from_lapis_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 7 - }, - { - "id" : "minecraft:magenta_dye_from_lapis_red_pink", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 5 - }, - { - "id" : "minecraft:magenta_dye_from_lilac", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_dye_from_purple_and_pink", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:magenta_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6994 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7010 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7010 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7026 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magma", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 430, - "id" : "minecraft:magma_cream", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 213, - "id" : "minecraft:magma", - "blockRuntimeId" : 5577 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magma_cream", - "type" : 0, - "input" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - }, - { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 430, - "id" : "minecraft:magma_cream" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:map", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:melon_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 272, - "id" : "minecraft:melon_slice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 103, - "id" : "minecraft:melon_block", - "blockRuntimeId" : 5584 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:melon_seeds", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 272, - "id" : "minecraft:melon_slice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 293, - "id" : "minecraft:melon_seeds" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 370, - "id" : "minecraft:minecart" - } - ], - "shape" : [ - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:moss_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -320, - "id" : "minecraft:moss_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -335, - "id" : "minecraft:moss_carpet", - "count" : 3, - "blockRuntimeId" : 5641 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - { - "legacyId" : 106, - "id" : "minecraft:vine", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5642 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone_from_moss", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - { - "legacyId" : -320, - "id" : "minecraft:moss_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5642 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -179, - "id" : "minecraft:mossy_cobblestone_stairs", - "count" : 4, - "blockRuntimeId" : 5643 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1319 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stone_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -175, - "id" : "minecraft:mossy_stone_brick_stairs", - "count" : 4, - "blockRuntimeId" : 5651 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stone_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1326 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stonebrick", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - { - "legacyId" : 106, - "id" : "minecraft:vine", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7194 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stonebrick_from_moss", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - { - "legacyId" : -320, - "id" : "minecraft:moss_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7194 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mushroom_stew", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 260, - "id" : "minecraft:mushroom_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5661 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 113, - "id" : "minecraft:nether_brick_fence", - "count" : 6, - "blockRuntimeId" : 5662 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 114, - "id" : "minecraft:nether_brick_stairs", - "count" : 4, - "blockRuntimeId" : 5663 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1327 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_wart_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 294, - "id" : "minecraft:nether_wart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 214, - "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5677 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:netherite_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -270, - "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5678 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:netherite_ingot", - "type" : 0, - "input" : [ - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:netherite_ingot_from_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -270, - "id" : "minecraft:netherite_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:noteblock_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 25, - "id" : "minecraft:noteblock", - "blockRuntimeId" : 5689 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:noteblock_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 25, - "id" : "minecraft:noteblock", - "blockRuntimeId" : 5689 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:oak_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log" - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5770 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5770 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5770 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood" - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5770 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 53, - "id" : "minecraft:oak_stairs", - "count" : 4, - "blockRuntimeId" : 5690 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log" - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7711 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7717 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7807 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:observer", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 251, - "id" : "minecraft:observer", - "blockRuntimeId" : 5698 - } - ], - "shape" : [ - "AAA", - "BBC", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - ], - "output" : [ - { - "legacyId" : -414, - "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5711 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 964 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 964 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3660 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_dye_from_orange_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_dye_from_red_yellow", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - ], - "output" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6993 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7009 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7009 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7025 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:packed_ice", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 79, - "id" : "minecraft:ice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 174, - "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5741 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:paper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 385, - "id" : "minecraft:sugar_cane", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "count" : 3 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pillar_quartz_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "count" : 2, - "blockRuntimeId" : 6520 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : -419, - "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 969 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 969 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3665 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye_from_peony", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye_from_pink_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye_from_red_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6998 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7014 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7014 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7030 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:piston_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "D" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 33, - "id" : "minecraft:piston", - "blockRuntimeId" : 5759 - } - ], - "shape" : [ - "AAA", - "BCB", - "BDB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:piston_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "D" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 33, - "id" : "minecraft:piston", - "blockRuntimeId" : 5759 - } - ], - "shape" : [ - "AAA", - "BCB", - "BDB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:polished_andesite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 4, - "blockRuntimeId" : 7090 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_andesite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : -174, - "id" : "minecraft:polished_andesite_stairs", - "count" : 4, - "blockRuntimeId" : 5787 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_basalt", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -234, - "id" : "minecraft:basalt", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -235, - "id" : "minecraft:polished_basalt", - "count" : 4, - "blockRuntimeId" : 5795 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "count" : 4, - "blockRuntimeId" : 5798 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_brick_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 6, - "blockRuntimeId" : 5801 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "count" : 4, - "blockRuntimeId" : 5803 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "count" : 6, - "blockRuntimeId" : 5811 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "count" : 4, - "blockRuntimeId" : 5973 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -296, - "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 5974 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -295, - "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 5988 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "count" : 6, - "blockRuntimeId" : 6004 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -292, - "id" : "minecraft:polished_blackstone_stairs", - "count" : 4, - "blockRuntimeId" : 6006 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -297, - "id" : "minecraft:polished_blackstone_wall", - "count" : 6, - "blockRuntimeId" : 6014 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "count" : 4, - "blockRuntimeId" : 6176 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_deepslate_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -384, - "id" : "minecraft:polished_deepslate_slab", - "count" : 6, - "blockRuntimeId" : 6179 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_deepslate_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -385, - "id" : "minecraft:polished_deepslate_stairs", - "count" : 4, - "blockRuntimeId" : 6181 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_deepslate_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -386, - "id" : "minecraft:polished_deepslate_wall", - "count" : 6, - "blockRuntimeId" : 6189 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_diorite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 4, - "blockRuntimeId" : 7088 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_diorite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -173, - "id" : "minecraft:polished_diorite_stairs", - "count" : 4, - "blockRuntimeId" : 6351 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_granite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 4, - "blockRuntimeId" : 7086 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_granite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -172, - "id" : "minecraft:polished_granite_stairs", - "count" : 4, - "blockRuntimeId" : 6359 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6411 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6413 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - }, - "output" : [ - { - "legacyId" : -2, - "id" : "minecraft:prismarine_stairs", - "count" : 4, - "blockRuntimeId" : 6422 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_stairs_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -4, - "id" : "minecraft:prismarine_bricks_stairs", - "count" : 4, - "blockRuntimeId" : 6414 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_stairs_dark", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -3, - "id" : "minecraft:dark_prismarine_stairs", - "count" : 4, - "blockRuntimeId" : 4036 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1329 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pumpkin_pie", - "type" : 0, - "input" : [ - { - "legacyId" : 86, - "id" : "minecraft:pumpkin", - "damage" : 32767 - }, - { - "legacyId" : 416, - "id" : "minecraft:sugar", - "damage" : 32767 - }, - { - "legacyId" : 390, - "id" : "minecraft:egg", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 284, - "id" : "minecraft:pumpkin_pie" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pumpkin_seeds", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 86, - "id" : "minecraft:pumpkin", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 292, - "id" : "minecraft:pumpkin_seeds", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - ], - "output" : [ - { - "legacyId" : -423, - "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6482 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 973 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 973 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3669 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "output" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_dye_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "output" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:purple_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7002 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7018 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7018 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7034 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purpur_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 559, - "id" : "minecraft:popped_chorus_fruit", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "count" : 4, - "blockRuntimeId" : 6498 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purpur_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 203, - "id" : "minecraft:purpur_stairs", - "count" : 4, - "blockRuntimeId" : 6510 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:quartz_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6518 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:quartz_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : -304, - "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6530 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:quartz_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : 156, - "id" : "minecraft:quartz_stairs", - "count" : 4, - "blockRuntimeId" : 6532 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:rabbit_stew_from_brown_mushroom", - "type" : 0, - "input" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - }, - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 290, - "id" : "minecraft:rabbit_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:rabbit_stew_from_red_mushroom", - "type" : 0, - "input" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 290, - "id" : "minecraft:rabbit_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 66, - "id" : "minecraft:rail", - "count" : 16, - "blockRuntimeId" : 6540 - } - ], - "shape" : [ - "A A", - "ABA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -452, - "id" : "minecraft:raw_copper_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_copper_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -452, - "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6550 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_gold", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -453, - "id" : "minecraft:raw_gold_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_gold_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -453, - "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6551 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_iron", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -451, - "id" : "minecraft:raw_iron_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_iron_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -451, - "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6552 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "output" : [ - { - "legacyId" : -427, - "id" : "minecraft:red_candle", - "blockRuntimeId" : 6553 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 977 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 977 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3673 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_beetroot", - "type" : 0, - "input" : [ - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_poppy", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower" - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_rose_bush", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_nether_brick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 294, - "id" : "minecraft:nether_wart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6597 - } - ], - "shape" : [ - "AB", - "BA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_nether_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -184, - "id" : "minecraft:red_nether_brick_stairs", - "count" : 4, - "blockRuntimeId" : 6598 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_nether_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1331 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 12, - "id" : "minecraft:sand", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6606 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 180, - "id" : "minecraft:red_sandstone_stairs", - "count" : 4, - "blockRuntimeId" : 6610 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_sandstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1330 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7006 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 14 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7022 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7022 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7038 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 152, - "id" : "minecraft:redstone_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 373, - "id" : "minecraft:redstone", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 152, - "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6618 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone_lamp", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 89, - "id" : "minecraft:glowstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 123, - "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6619 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone_torch", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6621 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:repeater", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 419, - "id" : "minecraft:repeater" - } - ], - "shape" : [ - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:respawn_anchor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -289, - "id" : "minecraft:crying_obsidian", - "damage" : 32767 - }, - "B" : { - "legacyId" : 89, - "id" : "minecraft:glowstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -272, - "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6672 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 12, - "id" : "minecraft:sand" - } - }, - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6679 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 128, - "id" : "minecraft:sandstone_stairs", - "count" : 4, - "blockRuntimeId" : 6683 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sandstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1323 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:scaffolding", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -163, - "id" : "minecraft:bamboo", - "damage" : 32767 - }, - "B" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -165, - "id" : "minecraft:scaffolding", - "count" : 6, - "blockRuntimeId" : 6703 - } - ], - "shape" : [ - "ABA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sealantern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 549, - "id" : "minecraft:prismarine_crystals", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 169, - "id" : "minecraft:sealantern", - "blockRuntimeId" : 6732 - } - ], - "shape" : [ - "ABA", - "BBB", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:shears", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 421, - "id" : "minecraft:shears" - } - ], - "shape" : [ - " A", - "A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:shield", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 355, - "id" : "minecraft:shield" - } - ], - "shape" : [ - "ABA", - "AAA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:shield_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 355, - "id" : "minecraft:shield" - } - ], - "shape" : [ - "ABA", - "AAA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:shield_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 355, - "id" : "minecraft:shield" - } - ], - "shape" : [ - "ABA", - "AAA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:shulker_box", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 566, - "id" : "minecraft:shulker_shell", - "damage" : 32767 - }, - "B" : { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7366 - } - ], - "shape" : [ - "A", - "B", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_acacia", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 579, - "id" : "minecraft:acacia_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_birch", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 577, - "id" : "minecraft:birch_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_darkoak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 580, - "id" : "minecraft:dark_oak_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_jungle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 578, - "id" : "minecraft:jungle_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_oak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 358, - "id" : "minecraft:oak_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_spruce", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 576, - "id" : "minecraft:spruce_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:slime", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 165, - "id" : "minecraft:slime", - "blockRuntimeId" : 6768 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:slime_ball", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 165, - "id" : "minecraft:slime", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smithing_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -202, - "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6783 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smithing_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -202, - "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6783 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smithing_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -202, - "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6783 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker_from_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_acacia", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_birch", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker_from_stripped_dark_oak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_jungle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_oak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_spruce", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker_from_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6784 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smooth_quartz_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -185, - "id" : "minecraft:smooth_quartz_stairs", - "count" : 4, - "blockRuntimeId" : 6791 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_red_sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "count" : 4, - "blockRuntimeId" : 6608 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_red_sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -176, - "id" : "minecraft:smooth_red_sandstone_stairs", - "count" : 4, - "blockRuntimeId" : 6799 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "count" : 4, - "blockRuntimeId" : 6681 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -177, - "id" : "minecraft:smooth_sandstone_stairs", - "count" : 4, - "blockRuntimeId" : 6807 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:snow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 374, - "id" : "minecraft:snowball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 80, - "id" : "minecraft:snow", - "blockRuntimeId" : 6816 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:snow_layer", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 80, - "id" : "minecraft:snow", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 78, - "id" : "minecraft:snow_layer", - "count" : 6, - "blockRuntimeId" : 6817 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:soul_campfire_from_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_crimson_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_crimson_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_warped_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_warped_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_lantern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : -268, - "id" : "minecraft:soul_torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -269, - "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6857 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:soul_torch_from_soul_sand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -268, - "id" : "minecraft:soul_torch", - "count" : 4, - "blockRuntimeId" : 6861 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:soul_torch_from_soul_soil", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -268, - "id" : "minecraft:soul_torch", - "count" : 4, - "blockRuntimeId" : 6861 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:speckled_melon", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 272, - "id" : "minecraft:melon_slice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 434, - "id" : "minecraft:glistering_melon_slice" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 378, - "id" : "minecraft:spruce_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 553, - "id" : "minecraft:spruce_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4774 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 183, - "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 6914 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5771 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5771 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5771 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5771 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 134, - "id" : "minecraft:spruce_stairs", - "count" : 4, - "blockRuntimeId" : 6946 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7712 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7718 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7808 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spyglass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 623, - "id" : "minecraft:amethyst_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 624, - "id" : "minecraft:spyglass" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:stick_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick", - "count" : 4 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stick_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick", - "count" : 4 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:sticky_piston", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - }, - "B" : { - "legacyId" : 33, - "id" : "minecraft:piston", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 29, - "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7073 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 315, - "id" : "minecraft:stone_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_axe_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 315, - "id" : "minecraft:stone_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_axe_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 315, - "id" : "minecraft:stone_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - }, - "output" : [ - { - "legacyId" : 109, - "id" : "minecraft:stone_brick_stairs", - "count" : 4, - "blockRuntimeId" : 7091 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1325 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 77, - "id" : "minecraft:stone_button", - "blockRuntimeId" : 7099 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 330, - "id" : "minecraft:stone_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_hoe_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 330, - "id" : "minecraft:stone_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_hoe_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 330, - "id" : "minecraft:stone_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 314, - "id" : "minecraft:stone_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_pickaxe_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 314, - "id" : "minecraft:stone_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_pickaxe_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 314, - "id" : "minecraft:stone_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 70, - "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7111 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 313, - "id" : "minecraft:stone_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_shovel_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 313, - "id" : "minecraft:stone_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_shovel_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 313, - "id" : "minecraft:stone_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : -180, - "id" : "minecraft:normal_stone_stairs", - "count" : 4, - "blockRuntimeId" : 5681 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 312, - "id" : "minecraft:stone_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_sword_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 312, - "id" : "minecraft:stone_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_sword_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 312, - "id" : "minecraft:stone_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stonebrick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "count" : 4, - "blockRuntimeId" : 7193 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -197, - "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7199 - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:string_to_wool", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stripped_crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -300, - "id" : "minecraft:stripped_crimson_hyphae", - "count" : 3, - "blockRuntimeId" : 7211 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stripped_warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -301, - "id" : "minecraft:stripped_warped_hyphae", - "count" : 3, - "blockRuntimeId" : 7229 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sugar", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 385, - "id" : "minecraft:sugar_cane", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 416, - "id" : "minecraft:sugar" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_allium", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_azure_bluet", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_blue_orchid", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_cornflower", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_dandelion", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 37, - "id" : "minecraft:yellow_flower", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_lily_of_the_valley", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_oxeye_daisy", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_poppy", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower" - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_orange", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_pink", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_red", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_white", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_wither_rose", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : -216, - "id" : "minecraft:wither_rose", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:target", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 170, - "id" : "minecraft:hay_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -239, - "id" : "minecraft:target", - "blockRuntimeId" : 7255 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:tinted_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 623, - "id" : "minecraft:amethyst_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -334, - "id" : "minecraft:tinted_glass", - "count" : 2, - "blockRuntimeId" : 7256 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:tnt", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - "B" : { - "legacyId" : 12, - "id" : "minecraft:sand", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 46, - "id" : "minecraft:tnt", - "blockRuntimeId" : 7257 - } - ], - "shape" : [ - "ABA", - "BAB", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:tnt_minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 46, - "id" : "minecraft:tnt" - }, - "B" : { - "legacyId" : 370, - "id" : "minecraft:minecart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 525, - "id" : "minecraft:tnt_minecart" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:trapped_chest", - "type" : 0, - "input" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - }, - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 146, - "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7283 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:tripwire_hook_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7305 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:tripwire_hook_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7305 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:turtle_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 572, - "id" : "minecraft:scute", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 573, - "id" : "minecraft:turtle_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -261, - "id" : "minecraft:warped_button", - "blockRuntimeId" : 7434 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 615, - "id" : "minecraft:warped_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -257, - "id" : "minecraft:warped_fence", - "count" : 3, - "blockRuntimeId" : 7480 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -259, - "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7481 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_fungus_on_a_stick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 392, - "id" : "minecraft:fishing_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : -229, - "id" : "minecraft:warped_fungus", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 616, - "id" : "minecraft:warped_fungus_on_a_stick" - } - ], - "shape" : [ - "A ", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -298, - "id" : "minecraft:warped_hyphae", - "count" : 3, - "blockRuntimeId" : 7498 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4, - "blockRuntimeId" : 7502 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks_from_stripped_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4, - "blockRuntimeId" : 7502 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks_from_stripped_warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -301, - "id" : "minecraft:stripped_warped_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4, - "blockRuntimeId" : 7502 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks_from_warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -298, - "id" : "minecraft:warped_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4, - "blockRuntimeId" : 7502 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -263, - "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7503 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_sign", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 613, - "id" : "minecraft:warped_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "count" : 6, - "blockRuntimeId" : 7520 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -255, - "id" : "minecraft:warped_stairs", - "count" : 4, - "blockRuntimeId" : 7522 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_trapdoor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -247, - "id" : "minecraft:warped_trapdoor", - "count" : 2, - "blockRuntimeId" : 7549 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:waxing_copper_block", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7589 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7590 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7591 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7593 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7603 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7604 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7605 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7607 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7617 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7618 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7619 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7621 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7631 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7632 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7633 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7635 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:wheat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 170, - "id" : "minecraft:hay_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 334, - "id" : "minecraft:wheat", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : -413, - "id" : "minecraft:white_candle", - "blockRuntimeId" : 7694 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_candle_from_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : -413, - "id" : "minecraft:white_candle", - "blockRuntimeId" : 7694 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 963 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3659 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_concrete_powder_from_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3659 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:white_dye_from_bone_meal", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_dye_from_lily_of_the_valley", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6992 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_glass_from_bonemeal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6992 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:white_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7008 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7008 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7024 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_hardened_clay_from_bonemeal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7024 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:wooden_axe_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 311, - "id" : "minecraft:wooden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_axe_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 311, - "id" : "minecraft:wooden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 359, - "id" : "minecraft:wooden_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:wooden_hoe_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 329, - "id" : "minecraft:wooden_hoe" - } - ], - "shape" : [ - "AA ", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_hoe_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 329, - "id" : "minecraft:wooden_hoe" - } - ], - "shape" : [ - "AA ", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_pickaxe_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 310, - "id" : "minecraft:wooden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_pickaxe_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 310, - "id" : "minecraft:wooden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_shovel_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_shovel_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_sword_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 308, - "id" : "minecraft:wooden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_sword_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 308, - "id" : "minecraft:wooden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:writable_book", - "type" : 0, - "input" : [ - { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 327, - "id" : "minecraft:feather", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 510, - "id" : "minecraft:writable_book" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - ], - "output" : [ - { - "legacyId" : -417, - "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 967 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 967 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3663 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_dye_from_dandelion", - "type" : 0, - "input" : [ - { - "legacyId" : 37, - "id" : "minecraft:yellow_flower" - } - ], - "output" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_dye_from_sunflower", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant" - } - ], - "output" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 6996 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7012 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7012 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7028 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "oak_stairs_oak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 53, - "id" : "minecraft:oak_stairs", - "count" : 4, - "blockRuntimeId" : 5690 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_0_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star" - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_10_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_11_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_12_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_13_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_14_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_15_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_16_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star" - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_17_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_18_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_19_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_1_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_2_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_3_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_4_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_5_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_6_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_7_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_8_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_9_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_0_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_10_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 10, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_11_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 11, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_12_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 12, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_13_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 13, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_14_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 14, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_15_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_16_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_17_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_18_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_19_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_1_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 1, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_2_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 2, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_3_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_4_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_5_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 5, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_6_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 6, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_7_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 7, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_8_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 8, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_9_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 9, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "00000000-0000-0000-0000-000000000001" - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6739 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6738 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6737 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6736 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_16_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6749 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_17_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_18_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_19_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6734 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6748 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6747 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6746 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6745 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6744 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6743 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6742 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6741 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6740 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "slab3_endstonebrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7159 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "spruce_stairs_spruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 134, - "id" : "minecraft:spruce_stairs", - "count" : 4, - "blockRuntimeId" : 6946 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stick_wood_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick", - "count" : 4 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "stoneslab2_RedSandstone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7143 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_prismarine_bricks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7147 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_prismarine_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7146 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_purpur_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7144 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7148 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_rednetherbrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7150 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_redsandstone_heiroglyphs_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7143 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_smoothsandstone_smooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7149 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_andesite_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7162 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_diorite_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7163 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_granite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7165 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_polishedGranite_GraniteSmooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7166 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_polished_andesite_andesitesmooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7161 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_polished_diorite_dioritesmooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7164 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_smooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7160 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab4_cut_redsandstone_cut_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7179 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab4_cut_sandstone_cut_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7178 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab4_smoothquartz_smooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7176 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab_quartz_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7133 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7145 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab_sandstone_heiroglyphs_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7128 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "tool_material_recipe_0_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 310, - "id" : "minecraft:wooden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "tool_material_recipe_0_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "tool_material_recipe_0_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 311, - "id" : "minecraft:wooden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "tool_material_recipe_0_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 329, - "id" : "minecraft:wooden_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "type" : 4, - "uuid" : "aecd2294-4b94-434b-8667-4499bb2c9327" - }, - { - "id" : "weapon_arrow_recipe_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 11, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 12, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 13, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 14, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 14 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 15, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 15 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 16, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_16", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 16 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 17, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_17", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 17 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 18, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_18", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 18 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 19, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_19", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 19 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 20, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_20", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 20 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 21, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_21", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 21 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 22, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_22", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 22 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 23, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_23", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 23 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 24, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_24", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 24 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 25, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_25", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 25 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 26, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_26", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 26 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 27, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_27", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 27 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 28, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_28", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 28 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 29, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_29", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 29 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 30, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_30", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 30 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 31, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_31", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 31 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 32, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_32", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 32 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 33, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_33", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 33 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 34, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_34", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 34 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 35, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_35", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 35 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 36, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_36", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 36 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 37, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_37", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 37 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 38, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_38", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 38 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 39, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_39", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 39 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 40, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_40", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 40 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 41, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_41", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 41 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 42, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_42", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 42 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 43, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 6, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 7, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 8, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 9, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 10, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_stick_recipe_0_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 308, - "id" : "minecraft:wooden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "wool_dye_wool_0_1", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_10", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_11", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_12", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_13", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_14", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_15", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_2", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_3", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_4", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_5", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_6", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_7", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_8", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_9", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_0", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_1", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_11", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_12", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_13", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_14", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_15", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_2", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_3", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_4", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_5", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_6", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_7", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_8", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_9", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7824 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_0", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_1", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_10", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_12", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_13", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_14", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_15", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_2", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_3", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_4", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_5", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_6", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_7", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_8", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_9", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7823 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_0", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_1", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_10", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_11", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_13", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_14", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_15", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_2", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_3", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_4", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_5", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_6", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_7", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_8", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_9", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7822 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_0", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_1", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_10", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_11", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_12", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_14", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_15", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_2", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_3", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_4", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_5", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_6", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_7", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_8", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_9", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7821 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_0", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_1", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_10", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_11", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_12", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_13", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_15", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_2", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_3", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_4", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_5", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_6", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_7", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_8", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_9", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7820 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_0", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_1", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_10", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_11", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_12", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_13", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_14", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_2", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_3", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_4", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_5", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_6", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_7", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_8", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_9", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_1", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_10", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_11", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_12", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_13", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_14", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_15", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_2", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_3", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_4", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_5", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_6", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_7", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_8", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_9", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7834 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_0", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_1", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_10", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_11", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_12", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "version" : 465, + "recipes" : [ + { + "type" : 4, + "uuid" : "442d85ed-8272-4543-a6f1-418f90ded05d" + }, + { + "type" : 4, + "uuid" : "8b36268c-1829-483c-a0f1-993b7156a8f2" + }, + { + "type" : 4, + "uuid" : "602234e4-cac1-4353-8bb7-b1ebff70024b" + }, + { + "id" : "minecraft:cartography_table_locator_map", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "block" : "cartography_table", + "priority" : 0 + }, + { + "id" : "minecraft:cartography_table_map", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map" + } + ], + "block" : "cartography_table", + "priority" : 0 + }, + { + "type" : 4, + "uuid" : "98c84b38-1085-46bd-b1ce-dd38c159e6cc" + }, + { + "id" : "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -395, + "id" : "minecraft:chiseled_deepslate", + "blockRuntimeId" : 1129 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -380, + "id" : "minecraft:cobbled_deepslate_slab", + "count" : 2, + "blockRuntimeId" : 1145 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -381, + "id" : "minecraft:cobbled_deepslate_stairs", + "blockRuntimeId" : 1147 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -382, + "id" : "minecraft:cobbled_deepslate_wall", + "blockRuntimeId" : 1155 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 2, + "blockRuntimeId" : 4104 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 2, + "blockRuntimeId" : 4104 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 2, + "blockRuntimeId" : 4104 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4106 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4106 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4106 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4114 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4114 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4114 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "blockRuntimeId" : 4276 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "blockRuntimeId" : 4276 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2, + "blockRuntimeId" : 4287 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2, + "blockRuntimeId" : 4287 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2, + "blockRuntimeId" : 4287 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2, + "blockRuntimeId" : 4287 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4289 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4289 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4289 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4289 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4297 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4297 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4297 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4297 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4459 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4459 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4459 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "blockRuntimeId" : 6200 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -384, + "id" : "minecraft:polished_deepslate_slab", + "count" : 2, + "blockRuntimeId" : 6203 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -384, + "id" : "minecraft:polished_deepslate_slab", + "count" : 2, + "blockRuntimeId" : 6203 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -385, + "id" : "minecraft:polished_deepslate_stairs", + "blockRuntimeId" : 6205 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -385, + "id" : "minecraft:polished_deepslate_stairs", + "blockRuntimeId" : 6205 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -386, + "id" : "minecraft:polished_deepslate_wall", + "blockRuntimeId" : 6213 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -386, + "id" : "minecraft:polished_deepslate_wall", + "blockRuntimeId" : 6213 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_andesite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7254 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_andesite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -171, + "id" : "minecraft:andesite_stairs", + "blockRuntimeId" : 144 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_andesite_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1322 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_blackstone_slab_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -282, + "id" : "minecraft:blackstone_slab", + "count" : 2, + "blockRuntimeId" : 497 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_blackstone_stairs_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -276, + "id" : "minecraft:blackstone_stairs", + "blockRuntimeId" : 499 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_blackstone_wall_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -277, + "id" : "minecraft:blackstone_wall", + "blockRuntimeId" : 507 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7223 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_brick_slab_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 2, + "blockRuntimeId" : 5825 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "output" : [ + { + "legacyId" : 108, + "id" : "minecraft:brick_stairs", + "blockRuntimeId" : 876 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_brick_stairs_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5827 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1324 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_wall_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5835 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_bricks_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "blockRuntimeId" : 5997 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_chiseled_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -279, + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1131 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_chiseled_nether_bricks_from_nether_brick", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -302, + "id" : "minecraft:chiseled_nether_bricks", + "blockRuntimeId" : 1130 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_chiseled_polished_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -279, + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1131 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_cobbledouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7222 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_cobblestone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + ], + "output" : [ + { + "legacyId" : 67, + "id" : "minecraft:stone_stairs", + "blockRuntimeId" : 7277 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_cobblestone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1318 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_copper_block_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "blockRuntimeId" : 3909 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_copper_block_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 3910 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_copper_block_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "blockRuntimeId" : 3912 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 3910 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "blockRuntimeId" : 3912 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_dark_prismarine_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7238 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_dark_prismarine_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -3, + "id" : "minecraft:dark_prismarine_stairs", + "blockRuntimeId" : 4036 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_diorite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7255 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_diorite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -170, + "id" : "minecraft:diorite_stairs", + "blockRuntimeId" : 4475 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_diorite_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1321 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_double_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 2, + "blockRuntimeId" : 7269 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_endbrick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7251 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_endbrick_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7251 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_endbrick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : -178, + "id" : "minecraft:end_brick_stairs", + "blockRuntimeId" : 4719 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_endbrick_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "output" : [ + { + "legacyId" : -178, + "id" : "minecraft:end_brick_stairs", + "blockRuntimeId" : 4719 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_endbrick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1328 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_endbrick_wall2", + "type" : 0, + "input" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1328 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_endbricks", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "blockRuntimeId" : 4727 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "blockRuntimeId" : 4752 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "blockRuntimeId" : 4755 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_exposed_copper_to_exposed_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 4753 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 4753 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "blockRuntimeId" : 4755 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_granite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7257 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_granite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -169, + "id" : "minecraft:granite_stairs", + "blockRuntimeId" : 4988 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_granite_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1320 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_mossy_cobbledouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7240 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_mossy_cobblestone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "output" : [ + { + "legacyId" : -179, + "id" : "minecraft:mossy_cobblestone_stairs", + "blockRuntimeId" : 5667 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_mossy_cobblestone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1319 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_mossy_stonebrick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 2, + "blockRuntimeId" : 7267 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_mossy_stonebrick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -175, + "id" : "minecraft:mossy_stone_brick_stairs", + "blockRuntimeId" : 5675 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_mossy_stonebrick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1326 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_nether_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7226 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_nether_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "output" : [ + { + "legacyId" : 114, + "id" : "minecraft:nether_brick_stairs", + "blockRuntimeId" : 5687 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_nether_brick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1327 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "blockRuntimeId" : 5752 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 5753 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "blockRuntimeId" : 5755 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 5753 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "blockRuntimeId" : 5755 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_andesite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7182 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7253 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7253 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -174, + "id" : "minecraft:polished_andesite_stairs", + "blockRuntimeId" : 5811 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : -174, + "id" : "minecraft:polished_andesite_stairs", + "blockRuntimeId" : 5811 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_polished_basalt_from_basalt", + "type" : 0, + "input" : [ + { + "legacyId" : -234, + "id" : "minecraft:basalt", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -235, + "id" : "minecraft:polished_basalt", + "blockRuntimeId" : 5819 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_brick_slab_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 2, + "blockRuntimeId" : 5825 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_brick_stairs_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5827 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_brick_wall_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5835 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_bricks_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "blockRuntimeId" : 5997 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_diorite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7180 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7256 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7256 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -173, + "id" : "minecraft:polished_diorite_stairs", + "blockRuntimeId" : 6375 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : -173, + "id" : "minecraft:polished_diorite_stairs", + "blockRuntimeId" : 6375 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_polished_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "blockRuntimeId" : 5822 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_granite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7178 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_polished_granite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7258 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_polished_granite_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7258 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_polished_granite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -172, + "id" : "minecraft:polished_granite_stairs", + "blockRuntimeId" : 6383 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_polished_granite_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : -172, + "id" : "minecraft:polished_granite_stairs", + "blockRuntimeId" : 6383 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_polished_slab_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "count" : 2, + "blockRuntimeId" : 6028 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_stairs_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -292, + "id" : "minecraft:polished_blackstone_stairs", + "blockRuntimeId" : 6030 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_wall_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -297, + "id" : "minecraft:polished_blackstone_wall", + "blockRuntimeId" : 6038 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_prismarine_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7239 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_prismarine_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : -4, + "id" : "minecraft:prismarine_bricks_stairs", + "blockRuntimeId" : 6438 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_prismarine_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7237 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_prismarine_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "output" : [ + { + "legacyId" : -2, + "id" : "minecraft:prismarine_stairs", + "blockRuntimeId" : 6446 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_prismarine_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1329 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_purpur_lines", + "type" : 0, + "input" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "output" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6524 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_purpur_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7236 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_purpur_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "output" : [ + { + "legacyId" : 203, + "id" : "minecraft:purpur_stairs", + "blockRuntimeId" : 6534 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_quartz_bricks_from_quartz_block", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : -304, + "id" : "minecraft:quartz_bricks", + "blockRuntimeId" : 6554 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_quartz_chiseled", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6543 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_quartz_lines", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6544 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_quartz_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7225 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_quartz_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 156, + "id" : "minecraft:quartz_stairs", + "blockRuntimeId" : 6556 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_red_nether_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7242 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_red_nether_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "output" : [ + { + "legacyId" : -184, + "id" : "minecraft:red_nether_brick_stairs", + "blockRuntimeId" : 6622 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_red_nether_brick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1331 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_red_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7235 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_cut", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6632 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_heiroglyphs", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6631 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 180, + "id" : "minecraft:red_sandstone_stairs", + "blockRuntimeId" : 6634 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1330 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7220 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_sandstone_cut", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6705 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_sandstone_heiroglyphs", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6704 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 128, + "id" : "minecraft:sandstone_stairs", + "blockRuntimeId" : 6707 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_sandstone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1323 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_slab_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "count" : 2, + "blockRuntimeId" : 6028 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_slab_from_polished_blackstone_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 2, + "blockRuntimeId" : 5825 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_smooth_double_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -183, + "id" : "minecraft:smooth_stone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7219 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_quartz_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 2, + "blockRuntimeId" : 7268 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_quartz_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -185, + "id" : "minecraft:smooth_quartz_stairs", + "blockRuntimeId" : 6883 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_smooth_red_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7252 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_red_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -176, + "id" : "minecraft:smooth_red_sandstone_stairs", + "blockRuntimeId" : 6891 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_smooth_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7241 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -177, + "id" : "minecraft:smooth_sandstone_stairs", + "blockRuntimeId" : 6899 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_stairs_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -292, + "id" : "minecraft:polished_blackstone_stairs", + "blockRuntimeId" : 6030 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_stone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : -180, + "id" : "minecraft:normal_stone_stairs", + "blockRuntimeId" : 5705 + } + ], + "block" : "stonecutter", + "priority" : 6 + }, + { + "id" : "minecraft:stonecutter_stonebrick", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7285 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_stonebrick_chiseled", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7288 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_stonebrick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7224 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_stonebrick_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7224 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_stonebrick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 109, + "id" : "minecraft:stone_brick_stairs", + "blockRuntimeId" : 7183 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_stonebrick_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "output" : [ + { + "legacyId" : 109, + "id" : "minecraft:stone_brick_stairs", + "blockRuntimeId" : 7183 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_stonebrick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1325 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_stonebrick_wall2", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1325 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_wall_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -297, + "id" : "minecraft:polished_blackstone_wall", + "blockRuntimeId" : 6038 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_wall_from_polished_blackstone_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5835 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "blockRuntimeId" : 7682 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7683 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId" : 7685 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_exposed_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7697 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7683 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId" : 7685 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "blockRuntimeId" : 7696 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId" : 7699 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7697 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId" : 7699 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId" : 7710 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7711 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7713 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId" : 7711 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7713 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "blockRuntimeId" : 7724 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7725 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId" : 7727 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7725 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId" : 7727 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "blockRuntimeId" : 7738 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7739 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "blockRuntimeId" : 7741 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7739 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "blockRuntimeId" : 7741 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "stonecutter_stairs_from_polished_blackstone_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5827 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "Bookshelf_woodplanks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 704 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "Bowl_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "count" : 4 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "ButtonAcacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -140, + "id" : "minecraft:acacia_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonBirch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -141, + "id" : "minecraft:birch_button", + "blockRuntimeId" : 356 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonDarkOak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -142, + "id" : "minecraft:dark_oak_button", + "blockRuntimeId" : 3936 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonJungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -143, + "id" : "minecraft:jungle_button", + "blockRuntimeId" : 5208 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonSpruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -144, + "id" : "minecraft:spruce_button", + "blockRuntimeId" : 6962 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Chest_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "blockRuntimeId" : 1123 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "DaylightDetector_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass" + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 151, + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4066 + } + ], + "shape" : [ + "AAA", + "BBB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "FireCharge_blaze_powder_coal_sulphur_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + }, + { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 509, + "id" : "minecraft:fire_charge", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "FireCharge_coal_sulphur_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + }, + { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 509, + "id" : "minecraft:fire_charge", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Jukebox_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 84, + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5207 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "Note_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 25, + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5713 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "Painting_Cobblestone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7222 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Painting_NetherBrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7226 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Painting_VanillaBlocks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7220 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Painting_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 357, + "id" : "minecraft:painting" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Piston_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + }, + "C" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "D" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 33, + "id" : "minecraft:piston", + "blockRuntimeId" : 5783 + } + ], + "shape" : [ + "AAA", + "BCB", + "BDB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "PressurePlateAcacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -150, + "id" : "minecraft:acacia_pressure_plate", + "blockRuntimeId" : 60 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateBirch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -151, + "id" : "minecraft:birch_pressure_plate", + "blockRuntimeId" : 416 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateDarkOak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -152, + "id" : "minecraft:dark_oak_pressure_plate", + "blockRuntimeId" : 3996 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateJungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -153, + "id" : "minecraft:jungle_pressure_plate", + "blockRuntimeId" : 5268 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateSpruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -154, + "id" : "minecraft:spruce_pressure_plate", + "blockRuntimeId" : 7022 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Stick_bamboo_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -163, + "id" : "minecraft:bamboo" + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick" + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "StoneSlab4_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7269 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab4_stoneBrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7267 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab_Brick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7223 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab_StoneBrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7224 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -183, + "id" : "minecraft:smooth_stone" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7219 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Torch_charcoal_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 50, + "id" : "minecraft:torch", + "count" : 4, + "blockRuntimeId" : 7353 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Torch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 50, + "id" : "minecraft:torch", + "count" : 4, + "blockRuntimeId" : 7353 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorAcacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -145, + "id" : "minecraft:acacia_trapdoor", + "count" : 2, + "blockRuntimeId" : 100 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorBirch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -146, + "id" : "minecraft:birch_trapdoor", + "count" : 2, + "blockRuntimeId" : 456 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorDarkOak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -147, + "id" : "minecraft:dark_oak_trapdoor", + "count" : 2, + "blockRuntimeId" : 4020 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorJungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -148, + "id" : "minecraft:jungle_trapdoor", + "count" : 2, + "blockRuntimeId" : 5308 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorSpruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -149, + "id" : "minecraft:spruce_trapdoor", + "count" : 2, + "blockRuntimeId" : 7062 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Trapdoor_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 96, + "id" : "minecraft:trapdoor", + "count" : 2, + "blockRuntimeId" : 7359 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TripwireHook_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "count" : 2, + "blockRuntimeId" : 7397 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "WoodButton_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 143, + "id" : "minecraft:wooden_button", + "blockRuntimeId" : 7839 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "WoodPressurePlate_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 72, + "id" : "minecraft:wooden_pressure_plate", + "blockRuntimeId" : 7883 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "WorkBench_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 58, + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3770 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "acacia_stairs_acacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 163, + "id" : "minecraft:acacia_stairs", + "count" : 4, + "blockRuntimeId" : 76 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "d81aaeaf-e172-4440-9225-868df030d27b" + }, + { + "type" : 4, + "uuid" : "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" + }, + { + "type" : 4, + "uuid" : "00000000-0000-0000-0000-000000000002" + }, + { + "id" : "bed_color_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_crimson_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_dye_0_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "birch_stairs_birch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 135, + "id" : "minecraft:birch_stairs", + "count" : 4, + "blockRuntimeId" : 432 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" + }, + { + "id" : "chiseled_quartz_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6543 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "chiseled_stonebrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7288 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "85939755-ba10-4d9d-a4cc-efb7a8e943c4" + }, + { + "id" : "dark_oak_stairs_dark_oak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 164, + "id" : "minecraft:dark_oak_stairs", + "count" : 4, + "blockRuntimeId" : 4012 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "d392b075-4ba1-40ae-8789-af868d56f6ce" + }, + { + "id" : "heiroglyphs_redsandstone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2" + } + }, + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6631 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "heiroglyphs_sandstone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6704 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "jungle_stairs_jungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 136, + "id" : "minecraft:jungle_stairs", + "count" : 4, + "blockRuntimeId" : 5284 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "lines_purpur_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6524 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "loom_block_wood_planks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -204, + "id" : "minecraft:loom", + "blockRuntimeId" : 5581 + } + ], + "shape" : [ + "AA", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 379, + "id" : "minecraft:acacia_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 556, + "id" : "minecraft:acacia_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4777 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 187, + "id" : "minecraft:acacia_fence_gate", + "blockRuntimeId" : 44 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2" + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5798 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5798 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5798 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5798 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 163, + "id" : "minecraft:acacia_stairs", + "count" : 4, + "blockRuntimeId" : 76 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2" + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7807 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7813 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7903 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:activator_rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 126, + "id" : "minecraft:activator_rail", + "count" : 6, + "blockRuntimeId" : 122 + } + ], + "shape" : [ + "ABA", + "ACA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:amethyst_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 623, + "id" : "minecraft:amethyst_shard", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -327, + "id" : "minecraft:amethyst_block", + "blockRuntimeId" : 136 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:andesite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + }, + { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 2, + "blockRuntimeId" : 7181 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:andesite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -171, + "id" : "minecraft:andesite_stairs", + "count" : 4, + "blockRuntimeId" : 144 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:andesite_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1322 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:anvil", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 42, + "id" : "minecraft:iron_block", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 145, + "id" : "minecraft:anvil", + "blockRuntimeId" : 152 + } + ], + "shape" : [ + "AAA", + " B ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:armor_stand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab" + } + }, + "output" : [ + { + "legacyId" : 552, + "id" : "minecraft:armor_stand" + } + ], + "shape" : [ + "AAA", + " A ", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:arrow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 327, + "id" : "minecraft:feather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "count" : 4 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 585, + "id" : "minecraft:field_masoned_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_creeper", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 516, + "id" : "minecraft:skull", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 582, + "id" : "minecraft:creeper_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_flower", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 581, + "id" : "minecraft:flower_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_skull", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 516, + "id" : "minecraft:skull", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 583, + "id" : "minecraft:skull_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_thing", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 259, + "id" : "minecraft:enchanted_golden_apple", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 584, + "id" : "minecraft:mojang_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_vines", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 106, + "id" : "minecraft:vine", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 586, + "id" : "minecraft:bordure_indented_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:barrel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -203, + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + } + ], + "shape" : [ + "ABA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:barrel_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -203, + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + } + ], + "shape" : [ + "ABA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:barrel_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -203, + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + } + ], + "shape" : [ + "ABA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:basic_map_to_enhanced", + "type" : 0, + "input" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 1 + }, + { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:beacon", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 518, + "id" : "minecraft:nether_star", + "damage" : 32767 + }, + "C" : { + "legacyId" : 49, + "id" : "minecraft:obsidian", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 138, + "id" : "minecraft:beacon", + "blockRuntimeId" : 217 + } + ], + "shape" : [ + "AAA", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:beehive", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -219, + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:beehive_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -219, + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:beehive_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -219, + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:beetroot_soup", + "type" : 0, + "input" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 286, + "id" : "minecraft:beetroot_soup" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 376, + "id" : "minecraft:birch_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 554, + "id" : "minecraft:birch_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4775 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 184, + "id" : "minecraft:birch_fence_gate", + "blockRuntimeId" : 400 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5796 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5796 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5796 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5796 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 135, + "id" : "minecraft:birch_stairs", + "count" : 4, + "blockRuntimeId" : 432 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7805 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7811 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7901 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner" + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + ], + "output" : [ + { + "legacyId" : -428, + "id" : "minecraft:black_candle", + "blockRuntimeId" : 478 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_candle_from_ink_sac", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + ], + "output" : [ + { + "legacyId" : -428, + "id" : "minecraft:black_candle", + "blockRuntimeId" : 478 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 978 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 978 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:black_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3674 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_concrete_powder_from_ink_sac", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3674 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:black_dye_from_ink_sac", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + ], + "output" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_dye_from_wither_rose", + "type" : 0, + "input" : [ + { + "legacyId" : -216, + "id" : "minecraft:wither_rose", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7099 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_glass_from_ink_sac", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7099 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:black_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 15 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7115 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7115 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7131 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_hardened_clay_from_ink_sac", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7131 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:blackstone_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -282, + "id" : "minecraft:blackstone_slab", + "count" : 6, + "blockRuntimeId" : 497 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blackstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -276, + "id" : "minecraft:blackstone_stairs", + "count" : 4, + "blockRuntimeId" : 499 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blackstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -277, + "id" : "minecraft:blackstone_wall", + "count" : 6, + "blockRuntimeId" : 507 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blast_furnace", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + }, + "C" : { + "legacyId" : -183, + "id" : "minecraft:smooth_stone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -196, + "id" : "minecraft:blast_furnace", + "blockRuntimeId" : 669 + } + ], + "shape" : [ + "AAA", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blaze_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + ], + "output" : [ + { + "legacyId" : -424, + "id" : "minecraft:blue_candle", + "blockRuntimeId" : 675 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_candle_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + ], + "output" : [ + { + "legacyId" : -424, + "id" : "minecraft:blue_candle", + "blockRuntimeId" : 675 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 974 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 974 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3670 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_concrete_powder_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3670 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:blue_dye_from_cornflower", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_dye_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + ], + "output" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_ice", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 174, + "id" : "minecraft:packed_ice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -11, + "id" : "minecraft:blue_ice", + "blockRuntimeId" : 691 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7095 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_glass_from_lapis_lazuli", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7095 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:blue_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7111 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7111 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7127 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_hardened_clay_from_lapis_lazuli", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7127 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 375, + "id" : "minecraft:oak_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bone_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + }, + "output" : [ + { + "legacyId" : 216, + "id" : "minecraft:bone_block", + "blockRuntimeId" : 692 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bone_meal_from_block", + "type" : 0, + "input" : [ + { + "legacyId" : 216, + "id" : "minecraft:bone_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "count" : 9 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bone_meal_from_bone", + "type" : 0, + "input" : [ + { + "legacyId" : 415, + "id" : "minecraft:bone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:book", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper" + }, + { + "legacyId" : 386, + "id" : "minecraft:paper" + }, + { + "legacyId" : 386, + "id" : "minecraft:paper" + }, + { + "legacyId" : 381, + "id" : "minecraft:leather" + } + ], + "output" : [ + { + "legacyId" : 387, + "id" : "minecraft:book" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bookshelf_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 704 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bookshelf_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 704 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 300, + "id" : "minecraft:bow" + } + ], + "shape" : [ + " AB", + "A B", + " AB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bowl_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "count" : 4 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bowl_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "count" : 4 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bread", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 261, + "id" : "minecraft:bread" + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brewing_stand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 431, + "id" : "minecraft:brewing_stand" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brewing_stand_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 431, + "id" : "minecraft:brewing_stand" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:brewing_stand_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 431, + "id" : "minecraft:brewing_stand" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:brick_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 383, + "id" : "minecraft:brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "blockRuntimeId" : 875 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 108, + "id" : "minecraft:brick_stairs", + "count" : 4, + "blockRuntimeId" : 876 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1324 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + ], + "output" : [ + { + "legacyId" : -425, + "id" : "minecraft:brown_candle", + "blockRuntimeId" : 884 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_candle_from_cocoa_beans", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + ], + "output" : [ + { + "legacyId" : -425, + "id" : "minecraft:brown_candle", + "blockRuntimeId" : 884 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 975 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 975 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3671 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_concrete_powder_from_cocoa_beans", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3671 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:brown_dye_from_cocoa_beans", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + ], + "output" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7096 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_glass_from_cocoa_beans", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7096 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:brown_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7112 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7112 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7128 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_hardened_clay_from_cocoa_beans", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7128 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:bucket", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 360, + "id" : "minecraft:bucket" + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cake", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 361, + "id" : "minecraft:milk_bucket" + }, + "B" : { + "legacyId" : 416, + "id" : "minecraft:sugar", + "damage" : 32767 + }, + "C" : { + "legacyId" : 390, + "id" : "minecraft:egg", + "damage" : 32767 + }, + "D" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 417, + "id" : "minecraft:cake" + }, + { + "legacyId" : 360, + "id" : "minecraft:bucket", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "BCB", + "DDD" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:campfire_from_charcoal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:candle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "blockRuntimeId" : 953 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:carrot_on_a_stick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 392, + "id" : "minecraft:fishing_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 517, + "id" : "minecraft:carrot_on_a_stick" + } + ], + "shape" : [ + "A ", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cartography_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -200, + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 987 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cartography_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -200, + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 987 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:cartography_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -200, + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 987 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:cauldron", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 432, + "id" : "minecraft:cauldron" + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chain", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 617, + "id" : "minecraft:chain" + } + ], + "shape" : [ + "A", + "B", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chest_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "blockRuntimeId" : 1123 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:chest_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "blockRuntimeId" : 1123 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:chest_minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + }, + "B" : { + "legacyId" : 370, + "id" : "minecraft:minecart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 389, + "id" : "minecraft:chest_minecart" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chiseled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -380, + "id" : "minecraft:cobbled_deepslate_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -395, + "id" : "minecraft:chiseled_deepslate", + "blockRuntimeId" : 1129 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:chiseled_nether_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : -302, + "id" : "minecraft:chiseled_nether_bricks", + "blockRuntimeId" : 1130 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chiseled_polished_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -279, + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1131 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 384, + "id" : "minecraft:clay_ball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 82, + "id" : "minecraft:clay", + "blockRuntimeId" : 1139 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:clock", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 393, + "id" : "minecraft:clock" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:coal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 173, + "id" : "minecraft:coal_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 302, + "id" : "minecraft:coal", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:coal_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + } + }, + "output" : [ + { + "legacyId" : 173, + "id" : "minecraft:coal_block", + "blockRuntimeId" : 1140 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:coarse_dirt", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 3, + "id" : "minecraft:dirt" + }, + "B" : { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 3, + "id" : "minecraft:dirt", + "count" : 4, + "blockRuntimeId" : 4484 + } + ], + "shape" : [ + "AB", + "BA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -380, + "id" : "minecraft:cobbled_deepslate_slab", + "count" : 6, + "blockRuntimeId" : 1145 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -381, + "id" : "minecraft:cobbled_deepslate_stairs", + "count" : 4, + "blockRuntimeId" : 1147 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cobbled_deepslate_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -382, + "id" : "minecraft:cobbled_deepslate_wall", + "count" : 6, + "blockRuntimeId" : 1155 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cobblestone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 67, + "id" : "minecraft:stone_stairs", + "count" : 4, + "blockRuntimeId" : 7277 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cobblestone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1318 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cobweb_to_string", + "type" : 0, + "input" : [ + { + "legacyId" : 30, + "id" : "minecraft:web", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 326, + "id" : "minecraft:string", + "count" : 9 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:comparator", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 522, + "id" : "minecraft:comparator" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:compass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 391, + "id" : "minecraft:compass" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:composter", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -213, + "id" : "minecraft:composter", + "blockRuntimeId" : 3634 + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:composter_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -213, + "id" : "minecraft:composter", + "blockRuntimeId" : 3634 + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:composter_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -213, + "id" : "minecraft:composter", + "blockRuntimeId" : 3634 + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:conduit", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 570, + "id" : "minecraft:nautilus_shell", + "damage" : 32767 + }, + "B" : { + "legacyId" : 571, + "id" : "minecraft:heart_of_the_sea", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -157, + "id" : "minecraft:conduit", + "blockRuntimeId" : 3675 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cookie", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + }, + "B" : { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + }, + "output" : [ + { + "legacyId" : 271, + "id" : "minecraft:cookie", + "count" : 8 + } + ], + "shape" : [ + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:copper_block_from_ingots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "blockRuntimeId" : 3676 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "count" : 4, + "blockRuntimeId" : 3909 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 3910 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 3912 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_exposed_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "count" : 4, + "blockRuntimeId" : 4752 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_exposed_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 4753 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_exposed_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 4755 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 58, + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3770 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:crafting_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 58, + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3770 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:crafting_table_oxidized_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "count" : 4, + "blockRuntimeId" : 5752 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_oxidized_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 5753 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_oxidized_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 5755 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "count" : 4, + "blockRuntimeId" : 7682 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7683 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7685 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_exposed_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "count" : 4, + "blockRuntimeId" : 7696 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7697 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7699 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "count" : 4, + "blockRuntimeId" : 7710 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7711 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7713 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_weathered_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "count" : 4, + "blockRuntimeId" : 7724 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7725 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7727 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_weathered_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "count" : 4, + "blockRuntimeId" : 7738 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_weathered_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7739 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_weathered_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7741 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crimson_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -260, + "id" : "minecraft:crimson_button", + "blockRuntimeId" : 3771 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 614, + "id" : "minecraft:crimson_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -256, + "id" : "minecraft:crimson_fence", + "count" : 3, + "blockRuntimeId" : 3817 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -258, + "id" : "minecraft:crimson_fence_gate", + "blockRuntimeId" : 3818 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -299, + "id" : "minecraft:crimson_hyphae", + "count" : 3, + "blockRuntimeId" : 3835 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4, + "blockRuntimeId" : 3839 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks_from_crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -299, + "id" : "minecraft:crimson_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4, + "blockRuntimeId" : 3839 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks_from_stripped_crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -300, + "id" : "minecraft:stripped_crimson_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4, + "blockRuntimeId" : 3839 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks_from_stripped_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4, + "blockRuntimeId" : 3839 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -262, + "id" : "minecraft:crimson_pressure_plate", + "blockRuntimeId" : 3840 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_sign", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 612, + "id" : "minecraft:crimson_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "count" : 6, + "blockRuntimeId" : 3857 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -254, + "id" : "minecraft:crimson_stairs", + "count" : 4, + "blockRuntimeId" : 3859 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_trapdoor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -246, + "id" : "minecraft:crimson_trapdoor", + "count" : 2, + "blockRuntimeId" : 3886 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crossbow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "C" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "D" : { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 575, + "id" : "minecraft:crossbow" + } + ], + "shape" : [ + "ABA", + "CDC", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + ], + "output" : [ + { + "legacyId" : -422, + "id" : "minecraft:cyan_candle", + "blockRuntimeId" : 3920 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 972 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 972 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3668 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + ], + "output" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_dye_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + ], + "output" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cyan_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7093 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7109 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7109 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7125 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 380, + "id" : "minecraft:dark_oak_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 557, + "id" : "minecraft:dark_oak_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4778 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 186, + "id" : "minecraft:dark_oak_fence_gate", + "blockRuntimeId" : 3980 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5799 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5799 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5799 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5799 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 164, + "id" : "minecraft:dark_oak_stairs", + "count" : 4, + "blockRuntimeId" : 4012 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7808 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7814 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7904 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_prismarine", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6436 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_prismarine_from_ink_sac", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6436 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:daylight_detector_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 151, + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4066 + } + ], + "shape" : [ + "AAA", + "BBB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:daylight_detector_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 151, + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4066 + } + ], + "shape" : [ + "AAA", + "BBB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:deepslate_brick_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 6, + "blockRuntimeId" : 4104 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "count" : 4, + "blockRuntimeId" : 4106 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "count" : 6, + "blockRuntimeId" : 4114 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "count" : 4, + "blockRuntimeId" : 4276 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tile_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 6, + "blockRuntimeId" : 4287 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tile_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "count" : 4, + "blockRuntimeId" : 4289 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tile_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "count" : 6, + "blockRuntimeId" : 4297 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tiles", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "count" : 4, + "blockRuntimeId" : 4459 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:detector_rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 70, + "id" : "minecraft:stone_pressure_plate", + "damage" : 32767 + }, + "C" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 28, + "id" : "minecraft:detector_rail", + "count" : 6, + "blockRuntimeId" : 4461 + } + ], + "shape" : [ + "A A", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 57, + "id" : "minecraft:diamond_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 304, + "id" : "minecraft:diamond", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 319, + "id" : "minecraft:diamond_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 57, + "id" : "minecraft:diamond_block", + "blockRuntimeId" : 4473 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 350, + "id" : "minecraft:diamond_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 348, + "id" : "minecraft:diamond_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 347, + "id" : "minecraft:diamond_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 332, + "id" : "minecraft:diamond_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 349, + "id" : "minecraft:diamond_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 318, + "id" : "minecraft:diamond_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 317, + "id" : "minecraft:diamond_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 316, + "id" : "minecraft:diamond_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diorite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 2, + "blockRuntimeId" : 7179 + } + ], + "shape" : [ + "AB", + "BA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diorite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -170, + "id" : "minecraft:diorite_stairs", + "count" : 4, + "blockRuntimeId" : 4475 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diorite_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1321 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dispenser", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 300, + "id" : "minecraft:bow", + "damage" : 32767 + }, + "C" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 23, + "id" : "minecraft:dispenser", + "blockRuntimeId" : 4489 + } + ], + "shape" : [ + "AAA", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dried_kelp", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -139, + "id" : "minecraft:dried_kelp_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dried_kelp_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -139, + "id" : "minecraft:dried_kelp_block", + "blockRuntimeId" : 4583 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dripstone_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -308, + "id" : "minecraft:pointed_dripstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -317, + "id" : "minecraft:dripstone_block", + "blockRuntimeId" : 4584 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dripstone_block_from_pointed_dripstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -308, + "id" : "minecraft:pointed_dripstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -317, + "id" : "minecraft:dripstone_block", + "blockRuntimeId" : 4584 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dropper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 125, + "id" : "minecraft:dropper", + "blockRuntimeId" : 4588 + } + ], + "shape" : [ + "AAA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:emerald", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 133, + "id" : "minecraft:emerald_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 512, + "id" : "minecraft:emerald", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:emerald_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 133, + "id" : "minecraft:emerald_block", + "blockRuntimeId" : 4716 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:empty_map_to_enhanced", + "type" : 0, + "input" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map" + }, + { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:enchanting_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "C" : { + "legacyId" : 49, + "id" : "minecraft:obsidian", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 116, + "id" : "minecraft:enchanting_table", + "blockRuntimeId" : 4718 + } + ], + "shape" : [ + " A ", + "BCB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -178, + "id" : "minecraft:end_brick_stairs", + "count" : 4, + "blockRuntimeId" : 4719 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1328 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 121, + "id" : "minecraft:end_stone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "count" : 4, + "blockRuntimeId" : 4727 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_crystal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 433, + "id" : "minecraft:ender_eye", + "damage" : 32767 + }, + "C" : { + "legacyId" : 424, + "id" : "minecraft:ghast_tear", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 629, + "id" : "minecraft:end_crystal" + } + ], + "shape" : [ + "AAA", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_rod", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : 559, + "id" : "minecraft:popped_chorus_fruit", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 208, + "id" : "minecraft:end_rod", + "count" : 4, + "blockRuntimeId" : 4738 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ender_chest", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 49, + "id" : "minecraft:obsidian", + "damage" : 32767 + }, + "B" : { + "legacyId" : 433, + "id" : "minecraft:ender_eye", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 130, + "id" : "minecraft:ender_chest", + "blockRuntimeId" : 4745 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ender_eye", + "type" : 0, + "input" : [ + { + "legacyId" : 422, + "id" : "minecraft:ender_pearl", + "damage" : 32767 + }, + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 433, + "id" : "minecraft:ender_eye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4773 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 107, + "id" : "minecraft:fence_gate", + "blockRuntimeId" : 4779 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fermented_spider_eye", + "type" : 0, + "input" : [ + { + "legacyId" : 278, + "id" : "minecraft:spider_eye", + "damage" : 32767 + }, + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 416, + "id" : "minecraft:sugar", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 428, + "id" : "minecraft:fermented_spider_eye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fishing_rod", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 392, + "id" : "minecraft:fishing_rod" + } + ], + "shape" : [ + " A", + " AB", + "A B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fletching_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -201, + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4811 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fletching_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -201, + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4811 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:fletching_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -201, + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4811 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:flint_and_steel", + "type" : 0, + "input" : [ + { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 299, + "id" : "minecraft:flint_and_steel" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:flower_pot", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 383, + "id" : "minecraft:brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 514, + "id" : "minecraft:flower_pot" + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:furnace", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 61, + "id" : "minecraft:furnace", + "blockRuntimeId" : 4875 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:furnace_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 61, + "id" : "minecraft:furnace", + "blockRuntimeId" : 4875 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:furnace_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 61, + "id" : "minecraft:furnace", + "blockRuntimeId" : 4875 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:glass_bottle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "count" : 3 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "count" : 16, + "blockRuntimeId" : 4883 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:glow_frame", + "type" : 0, + "input" : [ + { + "legacyId" : 513, + "id" : "minecraft:frame", + "damage" : 32767 + }, + { + "legacyId" : 503, + "id" : "minecraft:glow_ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:glow_frame" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:glowstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 394, + "id" : "minecraft:glowstone_dust", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 89, + "id" : "minecraft:glowstone", + "blockRuntimeId" : 4973 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 41, + "id" : "minecraft:gold_block", + "blockRuntimeId" : 4974 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_ingot_from_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 41, + "id" : "minecraft:gold_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_ingot_from_nuggets", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_nugget", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_apple", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 257, + "id" : "minecraft:apple", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 258, + "id" : "minecraft:golden_apple" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 325, + "id" : "minecraft:golden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 354, + "id" : "minecraft:golden_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_carrot", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 283, + "id" : "minecraft:golden_carrot" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 352, + "id" : "minecraft:golden_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 351, + "id" : "minecraft:golden_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 333, + "id" : "minecraft:golden_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 353, + "id" : "minecraft:golden_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 324, + "id" : "minecraft:golden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 27, + "id" : "minecraft:golden_rail", + "count" : 6, + "blockRuntimeId" : 4976 + } + ], + "shape" : [ + "A A", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 323, + "id" : "minecraft:golden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 322, + "id" : "minecraft:golden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:granite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + }, + { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7177 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:granite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -169, + "id" : "minecraft:granite_stairs", + "count" : 4, + "blockRuntimeId" : 4988 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:granite_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1320 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + ], + "output" : [ + { + "legacyId" : -420, + "id" : "minecraft:gray_candle", + "blockRuntimeId" : 4999 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 970 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 970 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3666 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_dye_from_black_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:gray_dye_from_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:gray_dye_from_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:gray_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7091 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7107 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7107 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7123 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + ], + "output" : [ + { + "legacyId" : -426, + "id" : "minecraft:green_candle", + "blockRuntimeId" : 5015 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 976 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 976 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3672 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7097 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7113 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7113 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7129 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:grindstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "damage" : 2 + }, + "C" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5031 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5031 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5031 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5031 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5031 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5031 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5031 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5031 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5031 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:hay_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 170, + "id" : "minecraft:hay_block", + "blockRuntimeId" : 5083 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:heavy_weighted_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 148, + "id" : "minecraft:heavy_weighted_pressure_plate", + "blockRuntimeId" : 5095 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honey_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 591, + "id" : "minecraft:honey_bottle", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -220, + "id" : "minecraft:honey_block", + "blockRuntimeId" : 5111 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honey_bottle", + "type" : 0, + "input" : [ + { + "legacyId" : -220, + "id" : "minecraft:honey_block", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 591, + "id" : "minecraft:honey_bottle", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honey_bottle_to_sugar", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 591, + "id" : "minecraft:honey_bottle", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 416, + "id" : "minecraft:sugar", + "count" : 3 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honeycomb_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -221, + "id" : "minecraft:honeycomb_block", + "blockRuntimeId" : 5112 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:hopper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 527, + "id" : "minecraft:hopper" + } + ], + "shape" : [ + "A A", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:hopper_minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 527, + "id" : "minecraft:hopper", + "damage" : 32767 + }, + "B" : { + "legacyId" : 370, + "id" : "minecraft:minecart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 526, + "id" : "minecraft:hopper_minecart" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ingots_from_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:ingots_from_waxed_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:iron_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 298, + "id" : "minecraft:iron_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_bars", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 101, + "id" : "minecraft:iron_bars", + "count" : 16, + "blockRuntimeId" : 5132 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 42, + "id" : "minecraft:iron_block", + "blockRuntimeId" : 5133 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 346, + "id" : "minecraft:iron_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 344, + "id" : "minecraft:iron_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 372, + "id" : "minecraft:iron_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 343, + "id" : "minecraft:iron_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 331, + "id" : "minecraft:iron_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_ingot_from_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 42, + "id" : "minecraft:iron_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_ingot_from_nuggets", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 305, + "id" : "minecraft:iron_ingot" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 345, + "id" : "minecraft:iron_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_nugget", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 297, + "id" : "minecraft:iron_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 296, + "id" : "minecraft:iron_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 307, + "id" : "minecraft:iron_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_trapdoor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 167, + "id" : "minecraft:iron_trapdoor", + "blockRuntimeId" : 5167 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:item_frame", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 513, + "id" : "minecraft:frame" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jukebox_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 84, + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5207 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:jukebox_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 84, + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5207 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:jungle_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 377, + "id" : "minecraft:jungle_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 555, + "id" : "minecraft:jungle_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4776 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 185, + "id" : "minecraft:jungle_fence_gate", + "blockRuntimeId" : 5252 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5797 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5797 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5797 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5797 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 136, + "id" : "minecraft:jungle_stairs", + "count" : 4, + "blockRuntimeId" : 5284 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7806 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7812 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7902 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ladder", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 65, + "id" : "minecraft:ladder", + "count" : 3, + "blockRuntimeId" : 5356 + } + ], + "shape" : [ + "A A", + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lantern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 50, + "id" : "minecraft:torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -208, + "id" : "minecraft:lantern", + "blockRuntimeId" : 5362 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lapis_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + }, + "output" : [ + { + "legacyId" : 22, + "id" : "minecraft:lapis_block", + "blockRuntimeId" : 5364 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lapis_lazuli", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 22, + "id" : "minecraft:lapis_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lead", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 547, + "id" : "minecraft:lead", + "count" : 2 + } + ], + "shape" : [ + "AA ", + "AB ", + " A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 529, + "id" : "minecraft:rabbit_hide", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 381, + "id" : "minecraft:leather" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 338, + "id" : "minecraft:leather_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 336, + "id" : "minecraft:leather_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 335, + "id" : "minecraft:leather_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_horse_armor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 530, + "id" : "minecraft:leather_horse_armor" + } + ], + "shape" : [ + "A A", + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 337, + "id" : "minecraft:leather_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lectern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + }, + "B" : { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -194, + "id" : "minecraft:lectern", + "blockRuntimeId" : 5433 + } + ], + "shape" : [ + "AAA", + " B ", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lectern_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + }, + "B" : { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -194, + "id" : "minecraft:lectern", + "blockRuntimeId" : 5433 + } + ], + "shape" : [ + "AAA", + " B ", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:lectern_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + }, + "B" : { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -194, + "id" : "minecraft:lectern", + "blockRuntimeId" : 5433 + } + ], + "shape" : [ + "AAA", + " B ", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:lever", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 69, + "id" : "minecraft:lever", + "blockRuntimeId" : 5441 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + ], + "output" : [ + { + "legacyId" : -416, + "id" : "minecraft:light_blue_candle", + "blockRuntimeId" : 5473 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 966 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 966 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3662 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:light_blue_dye_from_blue_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:light_blue_dye_from_blue_orchid", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_dye_from_lapis_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 4 + }, + { + "id" : "minecraft:light_blue_dye_from_lapis_white", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:light_blue_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7087 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7103 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7103 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7119 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray__carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 971 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "output" : [ + { + "legacyId" : -421, + "id" : "minecraft:light_gray_candle", + "blockRuntimeId" : 5489 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 971 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3667 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:light_gray_dye_from_azure_bluet", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:light_gray_dye_from_black_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 7 + }, + { + "id" : "minecraft:light_gray_dye_from_gray_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 6 + }, + { + "id" : "minecraft:light_gray_dye_from_gray_white", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 4 + }, + { + "id" : "minecraft:light_gray_dye_from_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 8 + }, + { + "id" : "minecraft:light_gray_dye_from_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 5 + }, + { + "id" : "minecraft:light_gray_dye_from_oxeye_daisy", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:light_gray_dye_from_white_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7092 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7108 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7108 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7124 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_weighted_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 147, + "id" : "minecraft:light_weighted_pressure_plate", + "blockRuntimeId" : 5499 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lightning_rod", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -312, + "id" : "minecraft:lightning_rod", + "blockRuntimeId" : 5515 + } + ], + "shape" : [ + "A", + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:lime__carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 968 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + ], + "output" : [ + { + "legacyId" : -418, + "id" : "minecraft:lime_candle", + "blockRuntimeId" : 5521 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 968 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3664 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_dye_from_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:lime_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7089 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7105 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7105 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7121 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lit_pumpkin", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -155, + "id" : "minecraft:carved_pumpkin", + "damage" : 32767 + }, + "B" : { + "legacyId" : 50, + "id" : "minecraft:torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 91, + "id" : "minecraft:lit_pumpkin", + "blockRuntimeId" : 5550 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:locator_map", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lodestone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 3 + }, + "B" : { + "legacyId" : 601, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -222, + "id" : "minecraft:lodestone", + "blockRuntimeId" : 5562 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:loom_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -204, + "id" : "minecraft:loom", + "blockRuntimeId" : 5581 + } + ], + "shape" : [ + "AA", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:loom_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -204, + "id" : "minecraft:loom", + "blockRuntimeId" : 5581 + } + ], + "shape" : [ + "AA", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:magenta_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + ], + "output" : [ + { + "legacyId" : -415, + "id" : "minecraft:magenta_candle", + "blockRuntimeId" : 5585 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 965 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 965 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3661 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:magenta_dye_from_allium", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:magenta_dye_from_blue_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 6 + }, + { + "id" : "minecraft:magenta_dye_from_blue_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 4 + }, + { + "id" : "minecraft:magenta_dye_from_lapis_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 8 + }, + { + "id" : "minecraft:magenta_dye_from_lapis_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 7 + }, + { + "id" : "minecraft:magenta_dye_from_lapis_red_pink", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 5 + }, + { + "id" : "minecraft:magenta_dye_from_lilac", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_dye_from_purple_and_pink", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:magenta_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7086 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7102 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7102 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7118 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magma", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 430, + "id" : "minecraft:magma_cream", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 213, + "id" : "minecraft:magma", + "blockRuntimeId" : 5601 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magma_cream", + "type" : 0, + "input" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + }, + { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 430, + "id" : "minecraft:magma_cream" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:map", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:melon_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 272, + "id" : "minecraft:melon_slice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 103, + "id" : "minecraft:melon_block", + "blockRuntimeId" : 5608 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:melon_seeds", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 272, + "id" : "minecraft:melon_slice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 293, + "id" : "minecraft:melon_seeds" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 370, + "id" : "minecraft:minecart" + } + ], + "shape" : [ + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:moss_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -320, + "id" : "minecraft:moss_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -335, + "id" : "minecraft:moss_carpet", + "count" : 3, + "blockRuntimeId" : 5665 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + { + "legacyId" : 106, + "id" : "minecraft:vine", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "blockRuntimeId" : 5666 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone_from_moss", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + { + "legacyId" : -320, + "id" : "minecraft:moss_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "blockRuntimeId" : 5666 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -179, + "id" : "minecraft:mossy_cobblestone_stairs", + "count" : 4, + "blockRuntimeId" : 5667 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1319 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stone_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -175, + "id" : "minecraft:mossy_stone_brick_stairs", + "count" : 4, + "blockRuntimeId" : 5675 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stone_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1326 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stonebrick", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + { + "legacyId" : 106, + "id" : "minecraft:vine", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7286 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stonebrick_from_moss", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + { + "legacyId" : -320, + "id" : "minecraft:moss_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7286 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mushroom_stew", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 260, + "id" : "minecraft:mushroom_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "blockRuntimeId" : 5685 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 113, + "id" : "minecraft:nether_brick_fence", + "count" : 6, + "blockRuntimeId" : 5686 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 114, + "id" : "minecraft:nether_brick_stairs", + "count" : 4, + "blockRuntimeId" : 5687 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1327 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_wart_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 294, + "id" : "minecraft:nether_wart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 214, + "id" : "minecraft:nether_wart_block", + "blockRuntimeId" : 5701 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:netherite_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 601, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -270, + "id" : "minecraft:netherite_block", + "blockRuntimeId" : 5702 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:netherite_ingot", + "type" : 0, + "input" : [ + { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 601, + "id" : "minecraft:netherite_ingot" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:netherite_ingot_from_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -270, + "id" : "minecraft:netherite_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 601, + "id" : "minecraft:netherite_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:noteblock_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 25, + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5713 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:noteblock_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 25, + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5713 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:oak_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log" + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5794 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5794 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5794 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood" + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5794 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 53, + "id" : "minecraft:oak_stairs", + "count" : 4, + "blockRuntimeId" : 5714 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log" + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7803 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7809 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7899 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:observer", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 251, + "id" : "minecraft:observer", + "blockRuntimeId" : 5722 + } + ], + "shape" : [ + "AAA", + "BBC", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + ], + "output" : [ + { + "legacyId" : -414, + "id" : "minecraft:orange_candle", + "blockRuntimeId" : 5735 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 964 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 964 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3660 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_dye_from_orange_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_dye_from_red_yellow", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + ], + "output" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7085 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7101 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7101 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7117 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:packed_ice", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 79, + "id" : "minecraft:ice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 174, + "id" : "minecraft:packed_ice", + "blockRuntimeId" : 5765 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:paper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 385, + "id" : "minecraft:sugar_cane", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "count" : 3 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pillar_quartz_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "count" : 2, + "blockRuntimeId" : 6544 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : -419, + "id" : "minecraft:pink_candle", + "blockRuntimeId" : 5766 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 969 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 969 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3665 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye_from_peony", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye_from_pink_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye_from_red_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7090 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7106 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7106 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7122 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:piston_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "D" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 33, + "id" : "minecraft:piston", + "blockRuntimeId" : 5783 + } + ], + "shape" : [ + "AAA", + "BCB", + "BDB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:piston_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "D" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 33, + "id" : "minecraft:piston", + "blockRuntimeId" : 5783 + } + ], + "shape" : [ + "AAA", + "BCB", + "BDB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:polished_andesite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 4, + "blockRuntimeId" : 7182 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_andesite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : -174, + "id" : "minecraft:polished_andesite_stairs", + "count" : 4, + "blockRuntimeId" : 5811 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_basalt", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -234, + "id" : "minecraft:basalt", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -235, + "id" : "minecraft:polished_basalt", + "count" : 4, + "blockRuntimeId" : 5819 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "count" : 4, + "blockRuntimeId" : 5822 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_brick_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 6, + "blockRuntimeId" : 5825 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "count" : 4, + "blockRuntimeId" : 5827 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "count" : 6, + "blockRuntimeId" : 5835 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "count" : 4, + "blockRuntimeId" : 5997 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -296, + "id" : "minecraft:polished_blackstone_button", + "blockRuntimeId" : 5998 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -295, + "id" : "minecraft:polished_blackstone_pressure_plate", + "blockRuntimeId" : 6012 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "count" : 6, + "blockRuntimeId" : 6028 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -292, + "id" : "minecraft:polished_blackstone_stairs", + "count" : 4, + "blockRuntimeId" : 6030 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -297, + "id" : "minecraft:polished_blackstone_wall", + "count" : 6, + "blockRuntimeId" : 6038 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "count" : 4, + "blockRuntimeId" : 6200 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_deepslate_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -384, + "id" : "minecraft:polished_deepslate_slab", + "count" : 6, + "blockRuntimeId" : 6203 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_deepslate_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -385, + "id" : "minecraft:polished_deepslate_stairs", + "count" : 4, + "blockRuntimeId" : 6205 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_deepslate_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -386, + "id" : "minecraft:polished_deepslate_wall", + "count" : 6, + "blockRuntimeId" : 6213 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_diorite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 4, + "blockRuntimeId" : 7180 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_diorite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -173, + "id" : "minecraft:polished_diorite_stairs", + "count" : 4, + "blockRuntimeId" : 6375 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_granite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 4, + "blockRuntimeId" : 7178 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_granite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -172, + "id" : "minecraft:polished_granite_stairs", + "count" : 4, + "blockRuntimeId" : 6383 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6435 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6437 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + }, + "output" : [ + { + "legacyId" : -2, + "id" : "minecraft:prismarine_stairs", + "count" : 4, + "blockRuntimeId" : 6446 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_stairs_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -4, + "id" : "minecraft:prismarine_bricks_stairs", + "count" : 4, + "blockRuntimeId" : 6438 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_stairs_dark", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -3, + "id" : "minecraft:dark_prismarine_stairs", + "count" : 4, + "blockRuntimeId" : 4036 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1329 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pumpkin_pie", + "type" : 0, + "input" : [ + { + "legacyId" : 86, + "id" : "minecraft:pumpkin", + "damage" : 32767 + }, + { + "legacyId" : 416, + "id" : "minecraft:sugar", + "damage" : 32767 + }, + { + "legacyId" : 390, + "id" : "minecraft:egg", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 284, + "id" : "minecraft:pumpkin_pie" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pumpkin_seeds", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 86, + "id" : "minecraft:pumpkin", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 292, + "id" : "minecraft:pumpkin_seeds", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + ], + "output" : [ + { + "legacyId" : -423, + "id" : "minecraft:purple_candle", + "blockRuntimeId" : 6506 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 973 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 973 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3669 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "output" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_dye_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "output" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:purple_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7094 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7110 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7110 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7126 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purpur_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 559, + "id" : "minecraft:popped_chorus_fruit", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "count" : 4, + "blockRuntimeId" : 6522 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purpur_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 203, + "id" : "minecraft:purpur_stairs", + "count" : 4, + "blockRuntimeId" : 6534 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:quartz_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6542 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:quartz_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : -304, + "id" : "minecraft:quartz_bricks", + "blockRuntimeId" : 6554 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:quartz_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : 156, + "id" : "minecraft:quartz_stairs", + "count" : 4, + "blockRuntimeId" : 6556 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:rabbit_stew_from_brown_mushroom", + "type" : 0, + "input" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + }, + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 290, + "id" : "minecraft:rabbit_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:rabbit_stew_from_red_mushroom", + "type" : 0, + "input" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 290, + "id" : "minecraft:rabbit_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 66, + "id" : "minecraft:rail", + "count" : 16, + "blockRuntimeId" : 6564 + } + ], + "shape" : [ + "A A", + "ABA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -452, + "id" : "minecraft:raw_copper_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_copper_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -452, + "id" : "minecraft:raw_copper_block", + "blockRuntimeId" : 6574 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_gold", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -453, + "id" : "minecraft:raw_gold_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_gold_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -453, + "id" : "minecraft:raw_gold_block", + "blockRuntimeId" : 6575 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_iron", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -451, + "id" : "minecraft:raw_iron_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_iron_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -451, + "id" : "minecraft:raw_iron_block", + "blockRuntimeId" : 6576 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "output" : [ + { + "legacyId" : -427, + "id" : "minecraft:red_candle", + "blockRuntimeId" : 6577 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 977 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 977 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3673 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_beetroot", + "type" : 0, + "input" : [ + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_poppy", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower" + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_rose_bush", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_nether_brick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 294, + "id" : "minecraft:nether_wart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick", + "blockRuntimeId" : 6621 + } + ], + "shape" : [ + "AB", + "BA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_nether_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -184, + "id" : "minecraft:red_nether_brick_stairs", + "count" : 4, + "blockRuntimeId" : 6622 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_nether_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1331 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 12, + "id" : "minecraft:sand", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6630 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 180, + "id" : "minecraft:red_sandstone_stairs", + "count" : 4, + "blockRuntimeId" : 6634 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_sandstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1330 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7098 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 14 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7114 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7114 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7130 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 152, + "id" : "minecraft:redstone_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 373, + "id" : "minecraft:redstone", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 152, + "id" : "minecraft:redstone_block", + "blockRuntimeId" : 6642 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone_lamp", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 89, + "id" : "minecraft:glowstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 123, + "id" : "minecraft:redstone_lamp", + "blockRuntimeId" : 6643 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone_torch", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "blockRuntimeId" : 6645 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:repeater", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 419, + "id" : "minecraft:repeater" + } + ], + "shape" : [ + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:respawn_anchor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -289, + "id" : "minecraft:crying_obsidian", + "damage" : 32767 + }, + "B" : { + "legacyId" : 89, + "id" : "minecraft:glowstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -272, + "id" : "minecraft:respawn_anchor", + "blockRuntimeId" : 6696 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 12, + "id" : "minecraft:sand" + } + }, + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6703 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 128, + "id" : "minecraft:sandstone_stairs", + "count" : 4, + "blockRuntimeId" : 6707 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sandstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1323 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:scaffolding", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -163, + "id" : "minecraft:bamboo", + "damage" : 32767 + }, + "B" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -165, + "id" : "minecraft:scaffolding", + "count" : 6, + "blockRuntimeId" : 6727 + } + ], + "shape" : [ + "ABA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sealantern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 549, + "id" : "minecraft:prismarine_crystals", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 169, + "id" : "minecraft:sealantern", + "blockRuntimeId" : 6824 + } + ], + "shape" : [ + "ABA", + "BBB", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:shears", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 421, + "id" : "minecraft:shears" + } + ], + "shape" : [ + " A", + "A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:shield", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 355, + "id" : "minecraft:shield" + } + ], + "shape" : [ + "ABA", + "AAA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:shield_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 355, + "id" : "minecraft:shield" + } + ], + "shape" : [ + "ABA", + "AAA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:shield_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 355, + "id" : "minecraft:shield" + } + ], + "shape" : [ + "ABA", + "AAA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:shulker_box", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 566, + "id" : "minecraft:shulker_shell", + "damage" : 32767 + }, + "B" : { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box", + "blockRuntimeId" : 7458 + } + ], + "shape" : [ + "A", + "B", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_acacia", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 579, + "id" : "minecraft:acacia_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_birch", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 577, + "id" : "minecraft:birch_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_darkoak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 580, + "id" : "minecraft:dark_oak_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_jungle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 578, + "id" : "minecraft:jungle_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_oak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 358, + "id" : "minecraft:oak_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_spruce", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 576, + "id" : "minecraft:spruce_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:slime", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 165, + "id" : "minecraft:slime", + "blockRuntimeId" : 6860 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:slime_ball", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 165, + "id" : "minecraft:slime", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smithing_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -202, + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6875 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smithing_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -202, + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6875 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smithing_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -202, + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6875 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker_from_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_acacia", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_birch", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker_from_stripped_dark_oak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_jungle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_oak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_spruce", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker_from_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6876 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smooth_quartz_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -185, + "id" : "minecraft:smooth_quartz_stairs", + "count" : 4, + "blockRuntimeId" : 6883 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_red_sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "count" : 4, + "blockRuntimeId" : 6632 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_red_sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -176, + "id" : "minecraft:smooth_red_sandstone_stairs", + "count" : 4, + "blockRuntimeId" : 6891 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "count" : 4, + "blockRuntimeId" : 6705 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -177, + "id" : "minecraft:smooth_sandstone_stairs", + "count" : 4, + "blockRuntimeId" : 6899 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:snow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 374, + "id" : "minecraft:snowball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 80, + "id" : "minecraft:snow", + "blockRuntimeId" : 6908 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:snow_layer", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 80, + "id" : "minecraft:snow", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 78, + "id" : "minecraft:snow_layer", + "count" : 6, + "blockRuntimeId" : 6909 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:soul_campfire_from_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_crimson_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_crimson_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_warped_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_warped_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 620, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_lantern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : -268, + "id" : "minecraft:soul_torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -269, + "id" : "minecraft:soul_lantern", + "blockRuntimeId" : 6949 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:soul_torch_from_soul_sand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -268, + "id" : "minecraft:soul_torch", + "count" : 4, + "blockRuntimeId" : 6953 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:soul_torch_from_soul_soil", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -268, + "id" : "minecraft:soul_torch", + "count" : 4, + "blockRuntimeId" : 6953 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:speckled_melon", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 272, + "id" : "minecraft:melon_slice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 434, + "id" : "minecraft:glistering_melon_slice" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 378, + "id" : "minecraft:spruce_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 553, + "id" : "minecraft:spruce_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4774 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 183, + "id" : "minecraft:spruce_fence_gate", + "blockRuntimeId" : 7006 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5795 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5795 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5795 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5795 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 134, + "id" : "minecraft:spruce_stairs", + "count" : 4, + "blockRuntimeId" : 7038 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7804 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7810 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7900 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spyglass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 623, + "id" : "minecraft:amethyst_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 624, + "id" : "minecraft:spyglass" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:stick_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick", + "count" : 4 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stick_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick", + "count" : 4 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:sticky_piston", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + }, + "B" : { + "legacyId" : 33, + "id" : "minecraft:piston", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 29, + "id" : "minecraft:sticky_piston", + "blockRuntimeId" : 7165 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 315, + "id" : "minecraft:stone_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_axe_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 315, + "id" : "minecraft:stone_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_axe_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 315, + "id" : "minecraft:stone_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + }, + "output" : [ + { + "legacyId" : 109, + "id" : "minecraft:stone_brick_stairs", + "count" : 4, + "blockRuntimeId" : 7183 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1325 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 77, + "id" : "minecraft:stone_button", + "blockRuntimeId" : 7191 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 330, + "id" : "minecraft:stone_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_hoe_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 330, + "id" : "minecraft:stone_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_hoe_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 330, + "id" : "minecraft:stone_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 314, + "id" : "minecraft:stone_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_pickaxe_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 314, + "id" : "minecraft:stone_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_pickaxe_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 314, + "id" : "minecraft:stone_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 70, + "id" : "minecraft:stone_pressure_plate", + "blockRuntimeId" : 7203 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 313, + "id" : "minecraft:stone_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_shovel_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 313, + "id" : "minecraft:stone_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_shovel_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 313, + "id" : "minecraft:stone_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : -180, + "id" : "minecraft:normal_stone_stairs", + "count" : 4, + "blockRuntimeId" : 5705 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 312, + "id" : "minecraft:stone_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_sword_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 312, + "id" : "minecraft:stone_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_sword_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 312, + "id" : "minecraft:stone_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stonebrick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "count" : 4, + "blockRuntimeId" : 7285 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -197, + "id" : "minecraft:stonecutter_block", + "blockRuntimeId" : 7291 + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:string_to_wool", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stripped_crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -300, + "id" : "minecraft:stripped_crimson_hyphae", + "count" : 3, + "blockRuntimeId" : 7303 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stripped_warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -301, + "id" : "minecraft:stripped_warped_hyphae", + "count" : 3, + "blockRuntimeId" : 7321 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sugar", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 385, + "id" : "minecraft:sugar_cane", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 416, + "id" : "minecraft:sugar" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_allium", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_azure_bluet", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_blue_orchid", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_cornflower", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_dandelion", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 37, + "id" : "minecraft:yellow_flower", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_lily_of_the_valley", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_oxeye_daisy", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_poppy", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower" + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_orange", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_pink", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_red", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_white", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_wither_rose", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : -216, + "id" : "minecraft:wither_rose", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:target", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 170, + "id" : "minecraft:hay_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -239, + "id" : "minecraft:target", + "blockRuntimeId" : 7347 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:tinted_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 623, + "id" : "minecraft:amethyst_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -334, + "id" : "minecraft:tinted_glass", + "count" : 2, + "blockRuntimeId" : 7348 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:tnt", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + "B" : { + "legacyId" : 12, + "id" : "minecraft:sand", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 46, + "id" : "minecraft:tnt", + "blockRuntimeId" : 7349 + } + ], + "shape" : [ + "ABA", + "BAB", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:tnt_minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 46, + "id" : "minecraft:tnt" + }, + "B" : { + "legacyId" : 370, + "id" : "minecraft:minecart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 525, + "id" : "minecraft:tnt_minecart" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:trapped_chest", + "type" : 0, + "input" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + }, + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 146, + "id" : "minecraft:trapped_chest", + "blockRuntimeId" : 7375 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:tripwire_hook_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "blockRuntimeId" : 7397 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:tripwire_hook_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "blockRuntimeId" : 7397 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:turtle_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 572, + "id" : "minecraft:scute", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 573, + "id" : "minecraft:turtle_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -261, + "id" : "minecraft:warped_button", + "blockRuntimeId" : 7526 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 615, + "id" : "minecraft:warped_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -257, + "id" : "minecraft:warped_fence", + "count" : 3, + "blockRuntimeId" : 7572 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -259, + "id" : "minecraft:warped_fence_gate", + "blockRuntimeId" : 7573 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_fungus_on_a_stick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 392, + "id" : "minecraft:fishing_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : -229, + "id" : "minecraft:warped_fungus", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 616, + "id" : "minecraft:warped_fungus_on_a_stick" + } + ], + "shape" : [ + "A ", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -298, + "id" : "minecraft:warped_hyphae", + "count" : 3, + "blockRuntimeId" : 7590 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4, + "blockRuntimeId" : 7594 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks_from_stripped_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4, + "blockRuntimeId" : 7594 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks_from_stripped_warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -301, + "id" : "minecraft:stripped_warped_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4, + "blockRuntimeId" : 7594 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks_from_warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -298, + "id" : "minecraft:warped_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4, + "blockRuntimeId" : 7594 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -263, + "id" : "minecraft:warped_pressure_plate", + "blockRuntimeId" : 7595 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_sign", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 613, + "id" : "minecraft:warped_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "count" : 6, + "blockRuntimeId" : 7612 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -255, + "id" : "minecraft:warped_stairs", + "count" : 4, + "blockRuntimeId" : 7614 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_trapdoor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -247, + "id" : "minecraft:warped_trapdoor", + "count" : 2, + "blockRuntimeId" : 7641 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:waxing_copper_block", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "blockRuntimeId" : 7681 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "blockRuntimeId" : 7682 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "blockRuntimeId" : 7683 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId" : 7685 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "blockRuntimeId" : 7695 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "blockRuntimeId" : 7696 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "blockRuntimeId" : 7697 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId" : 7699 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "blockRuntimeId" : 7709 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId" : 7710 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId" : 7711 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7713 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "blockRuntimeId" : 7723 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "blockRuntimeId" : 7724 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "blockRuntimeId" : 7725 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId" : 7727 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:wheat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 170, + "id" : "minecraft:hay_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 334, + "id" : "minecraft:wheat", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : -413, + "id" : "minecraft:white_candle", + "blockRuntimeId" : 7786 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_candle_from_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : -413, + "id" : "minecraft:white_candle", + "blockRuntimeId" : 7786 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 963 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3659 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_concrete_powder_from_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3659 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:white_dye_from_bone_meal", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_dye_from_lily_of_the_valley", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7084 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_glass_from_bonemeal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7084 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:white_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7100 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7100 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7116 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_hardened_clay_from_bonemeal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7116 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:wooden_axe_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 311, + "id" : "minecraft:wooden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_axe_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 311, + "id" : "minecraft:wooden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 359, + "id" : "minecraft:wooden_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:wooden_hoe_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 329, + "id" : "minecraft:wooden_hoe" + } + ], + "shape" : [ + "AA ", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_hoe_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 329, + "id" : "minecraft:wooden_hoe" + } + ], + "shape" : [ + "AA ", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_pickaxe_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 310, + "id" : "minecraft:wooden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_pickaxe_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 310, + "id" : "minecraft:wooden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_shovel_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_shovel_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_sword_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 308, + "id" : "minecraft:wooden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_sword_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 308, + "id" : "minecraft:wooden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:writable_book", + "type" : 0, + "input" : [ + { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 327, + "id" : "minecraft:feather", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 510, + "id" : "minecraft:writable_book" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + ], + "output" : [ + { + "legacyId" : -417, + "id" : "minecraft:yellow_candle", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 967 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 967 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3663 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_dye_from_dandelion", + "type" : 0, + "input" : [ + { + "legacyId" : 37, + "id" : "minecraft:yellow_flower" + } + ], + "output" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_dye_from_sunflower", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant" + } + ], + "output" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7088 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7104 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7104 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7120 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "oak_stairs_oak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 53, + "id" : "minecraft:oak_stairs", + "count" : 4, + "blockRuntimeId" : 5714 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_0_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star" + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_10_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_11_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_12_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_13_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_14_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_15_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_16_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star" + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_17_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_18_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_19_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_1_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_2_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_3_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_4_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_5_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_6_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_7_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_8_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_9_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_0_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_10_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 10, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_11_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 11, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_12_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 12, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_13_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 13, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_14_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 14, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_15_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_16_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_17_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_18_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_19_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_1_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 1, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_2_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 2, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_3_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_4_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_5_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 5, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_6_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 6, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_7_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 7, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_8_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 8, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_9_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 9, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "00000000-0000-0000-0000-000000000001" + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6829 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6828 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6827 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_16_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_17_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_18_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_19_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6826 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "slab3_endstonebrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7251 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "spruce_stairs_spruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 134, + "id" : "minecraft:spruce_stairs", + "count" : 4, + "blockRuntimeId" : 7038 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stick_wood_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick", + "count" : 4 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "stoneslab2_RedSandstone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7235 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_prismarine_bricks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7239 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_prismarine_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7238 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_purpur_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7236 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7240 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_rednetherbrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7242 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_redsandstone_heiroglyphs_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7235 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_smoothsandstone_smooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7241 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_andesite_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7254 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_diorite_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7255 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_granite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7257 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_polishedGranite_GraniteSmooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7258 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_polished_andesite_andesitesmooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7253 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_polished_diorite_dioritesmooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7256 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_smooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7252 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab4_cut_redsandstone_cut_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7271 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab4_cut_sandstone_cut_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7270 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab4_smoothquartz_smooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7268 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab_quartz_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7225 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7237 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab_sandstone_heiroglyphs_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7220 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "tool_material_recipe_0_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 310, + "id" : "minecraft:wooden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "tool_material_recipe_0_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "tool_material_recipe_0_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 311, + "id" : "minecraft:wooden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "tool_material_recipe_0_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 329, + "id" : "minecraft:wooden_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "type" : 4, + "uuid" : "aecd2294-4b94-434b-8667-4499bb2c9327" + }, + { + "id" : "weapon_arrow_recipe_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 11, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 12, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 13, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 14, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 14 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 15, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 15 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 16, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_16", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 16 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 17, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_17", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 17 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 18, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_18", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 18 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 19, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_19", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 19 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 20, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_20", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 20 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 21, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_21", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 21 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 22, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_22", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 22 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 23, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_23", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 23 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 24, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_24", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 24 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 25, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_25", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 25 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 26, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_26", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 26 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 27, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_27", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 27 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 28, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_28", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 28 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 29, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_29", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 29 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 30, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_30", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 30 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 31, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_31", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 31 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 32, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_32", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 32 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 33, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_33", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 33 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 34, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_34", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 34 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 35, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_35", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 35 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 36, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_36", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 36 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 37, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_37", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 37 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 38, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_38", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 38 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 39, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_39", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 39 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 40, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_40", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 40 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 41, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_41", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 41 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 42, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_42", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 42 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 43, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 6, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 7, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 8, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 9, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 10, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_stick_recipe_0_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 308, + "id" : "minecraft:wooden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "wool_dye_wool_0_1", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_10", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_11", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_12", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_13", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_14", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_15", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_2", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_3", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_4", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_5", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_6", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_7", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_8", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_9", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_0", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_1", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_11", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_12", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_13", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_14", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_15", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_2", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_3", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_4", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_5", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_6", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_7", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_8", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_9", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_0", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_1", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_10", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_12", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_13", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_14", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_15", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_2", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_3", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_4", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_5", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_6", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_7", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_8", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_9", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_0", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_1", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_10", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_11", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_13", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_14", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_15", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_2", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_3", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_4", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_5", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_6", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_7", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_8", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_9", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7914 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_0", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_1", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_10", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_11", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_12", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_14", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_15", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_2", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_3", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_4", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_5", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_6", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_7", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_8", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_9", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7913 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_0", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_1", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_10", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_11", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_12", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_13", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_15", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_2", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_3", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_4", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_5", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_6", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_7", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_8", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_9", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7912 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_0", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_1", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_10", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_11", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_12", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_13", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_14", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_2", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_3", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_4", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_5", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_6", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_7", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_8", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_9", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_1", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_10", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_11", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_12", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_13", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_14", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_15", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_2", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_3", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_4", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_5", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_6", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_7", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_8", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_9", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_0", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_1", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_10", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_11", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_12", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_13", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_14", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_15", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_2", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_4", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_5", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_6", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_7", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_8", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_9", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_0", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_1", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_10", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_11", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_12", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_13", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_14", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_15", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_2", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_3", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_5", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_6", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_7", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_8", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_9", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_0", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_1", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_10", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_11", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_12", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_13", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_14", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_2", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_3", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_4", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_5", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_6", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_7", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_8", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_9", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7911 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_0", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_10", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_11", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_12", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_13", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_14", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_15", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_2", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_3", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_4", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_5", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_6", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_7", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_8", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_9", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_0", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_1", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_10", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_11", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_12", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_13", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_14", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_15", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_3", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_4", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_5", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_6", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_7", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_8", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_9", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_0", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_1", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_10", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_11", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_12", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_13", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_14", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_15", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_2", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_4", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_5", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_6", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_7", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_8", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_9", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_0", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_1", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_10", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_11", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_12", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_13", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_14", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_15", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_2", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_3", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_5", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_6", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_7", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_8", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_9", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_0", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_1", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_10", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_11", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_12", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_13", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_14", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_15", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_2", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_3", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_4", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_6", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_7", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_8", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_9", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_0", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_1", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_10", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_11", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_12", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_13", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_14", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_15", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_2", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_3", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_4", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_5", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_7", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_8", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_9", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_0", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_1", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_10", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_11", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_12", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_13", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_14", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_15", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_2", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_3", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_4", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_5", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_6", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_8", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_9", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_0", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_1", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_10", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_11", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_12", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_13", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_14", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_15", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_2", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_3", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_4", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_5", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_6", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_7", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_9", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_0", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_1", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_10", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_11", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_12", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_13", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_14", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_15", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_2", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_3", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_4", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_5", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_6", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_7", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_8", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 3, + "input" : { + "legacyId" : -408, + "id" : "minecraft:deepslate_copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -408, + "id" : "minecraft:deepslate_copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -407, + "id" : "minecraft:deepslate_emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -407, + "id" : "minecraft:deepslate_emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -406, + "id" : "minecraft:deepslate_coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -406, + "id" : "minecraft:deepslate_coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -405, + "id" : "minecraft:deepslate_diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -405, + "id" : "minecraft:deepslate_diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -403, + "id" : "minecraft:deepslate_redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -403, + "id" : "minecraft:deepslate_redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -402, + "id" : "minecraft:deepslate_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -402, + "id" : "minecraft:deepslate_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -401, + "id" : "minecraft:deepslate_iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -401, + "id" : "minecraft:deepslate_iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -400, + "id" : "minecraft:deepslate_lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -400, + "id" : "minecraft:deepslate_lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : -1 + }, + "output" : { + "legacyId" : -410, + "id" : "minecraft:cracked_deepslate_bricks", + "blockRuntimeId" : 3766 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : -1 + }, + "output" : { + "legacyId" : -409, + "id" : "minecraft:cracked_deepslate_tiles", + "blockRuntimeId" : 3767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : -1 + }, + "output" : { + "legacyId" : -378, + "id" : "minecraft:deepslate", + "blockRuntimeId" : 4099 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -311, + "id" : "minecraft:copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -311, + "id" : "minecraft:copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -288, + "id" : "minecraft:nether_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -288, + "id" : "minecraft:nether_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : -1 + }, + "output" : { + "legacyId" : -280, + "id" : "minecraft:cracked_polished_blackstone_bricks", + "blockRuntimeId" : 3769 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -271, + "id" : "minecraft:ancient_debris", + "damage" : -1 + }, + "output" : { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -271, + "id" : "minecraft:ancient_debris", + "damage" : -1 + }, + "output" : { + "legacyId" : 611, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -234, + "id" : "minecraft:basalt", + "damage" : -1 + }, + "output" : { + "legacyId" : -377, + "id" : "minecraft:smooth_basalt", + "blockRuntimeId" : 6882 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood" + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 2 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 3 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 4 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 5 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 8 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 9 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 10 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 11 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 12 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 13 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -156, + "id" : "minecraft:sea_pickle", + "damage" : -1 + }, + "output" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 1, + "id" : "minecraft:stone" + }, + "output" : { + "legacyId" : -183, + "id" : "minecraft:smooth_stone", + "blockRuntimeId" : 6907 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : -1 + }, + "output" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7176 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 12, + "id" : "minecraft:sand", + "damage" : -1 + }, + "output" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "blockRuntimeId" : 4882 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 14, + "id" : "minecraft:gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 14, + "id" : "minecraft:gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 15, + "id" : "minecraft:iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 15, + "id" : "minecraft:iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 16, + "id" : "minecraft:coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 16, + "id" : "minecraft:coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log" + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 2 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 3 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 19, + "id" : "minecraft:sponge", + "damage" : 1 + }, + "output" : { + "legacyId" : 19, + "id" : "minecraft:sponge", + "blockRuntimeId" : 6959 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 21, + "id" : "minecraft:lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 21, + "id" : "minecraft:lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : -1 + }, + "output" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6706 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 56, + "id" : "minecraft:diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 56, + "id" : "minecraft:diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 73, + "id" : "minecraft:redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 73, + "id" : "minecraft:redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 81, + "id" : "minecraft:cactus", + "damage" : -1 + }, + "output" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 82, + "id" : "minecraft:clay", + "damage" : -1 + }, + "output" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "blockRuntimeId" : 5082 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 87, + "id" : "minecraft:netherrack", + "damage" : -1 + }, + "output" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + "output" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7287 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : -1 + }, + "output" : { + "legacyId" : -303, + "id" : "minecraft:cracked_nether_bricks", + "blockRuntimeId" : 3768 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 129, + "id" : "minecraft:emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 129, + "id" : "minecraft:emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 153, + "id" : "minecraft:quartz_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 153, + "id" : "minecraft:quartz_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + }, + "output" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6545 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay" + }, + "output" : { + "legacyId" : 220, + "id" : "minecraft:white_glazed_terracotta", + "blockRuntimeId" : 7796 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 1 + }, + "output" : { + "legacyId" : 221, + "id" : "minecraft:orange_glazed_terracotta", + "blockRuntimeId" : 5745 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 2 + }, + "output" : { + "legacyId" : 222, + "id" : "minecraft:magenta_glazed_terracotta", + "blockRuntimeId" : 5595 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 3 + }, + "output" : { + "legacyId" : 223, + "id" : "minecraft:light_blue_glazed_terracotta", + "blockRuntimeId" : 5483 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 4 + }, + "output" : { + "legacyId" : 224, + "id" : "minecraft:yellow_glazed_terracotta", + "blockRuntimeId" : 7938 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 5 + }, + "output" : { + "legacyId" : 225, + "id" : "minecraft:lime_glazed_terracotta", + "blockRuntimeId" : 5531 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 6 + }, + "output" : { + "legacyId" : 226, + "id" : "minecraft:pink_glazed_terracotta", + "blockRuntimeId" : 5776 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 7 + }, + "output" : { + "legacyId" : 227, + "id" : "minecraft:gray_glazed_terracotta", + "blockRuntimeId" : 5009 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 8 + }, + "output" : { + "legacyId" : 228, + "id" : "minecraft:silver_glazed_terracotta", + "blockRuntimeId" : 6842 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 9 + }, + "output" : { + "legacyId" : 229, + "id" : "minecraft:cyan_glazed_terracotta", + "blockRuntimeId" : 3930 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 10 + }, + "output" : { + "legacyId" : 219, + "id" : "minecraft:purple_glazed_terracotta", + "blockRuntimeId" : 6516 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 11 + }, + "output" : { + "legacyId" : 231, + "id" : "minecraft:blue_glazed_terracotta", + "blockRuntimeId" : 685 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 12 + }, + "output" : { + "legacyId" : 232, + "id" : "minecraft:brown_glazed_terracotta", + "blockRuntimeId" : 894 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 13 + }, + "output" : { + "legacyId" : 233, + "id" : "minecraft:green_glazed_terracotta", + "blockRuntimeId" : 5025 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 14 + }, + "output" : { + "legacyId" : 234, + "id" : "minecraft:red_glazed_terracotta", + "blockRuntimeId" : 6598 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 15 + }, + "output" : { + "legacyId" : 235, + "id" : "minecraft:black_glazed_terracotta", + "blockRuntimeId" : 488 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 162, + "id" : "minecraft:log2" + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : -1 + }, + "output" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6633 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 296, + "id" : "minecraft:iron_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 296, + "id" : "minecraft:iron_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 297, + "id" : "minecraft:iron_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 297, + "id" : "minecraft:iron_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 298, + "id" : "minecraft:iron_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 298, + "id" : "minecraft:iron_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 307, + "id" : "minecraft:iron_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 307, + "id" : "minecraft:iron_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 322, + "id" : "minecraft:golden_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 322, + "id" : "minecraft:golden_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 323, + "id" : "minecraft:golden_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 323, + "id" : "minecraft:golden_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 324, + "id" : "minecraft:golden_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 324, + "id" : "minecraft:golden_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 325, + "id" : "minecraft:golden_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 325, + "id" : "minecraft:golden_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 331, + "id" : "minecraft:iron_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 331, + "id" : "minecraft:iron_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 333, + "id" : "minecraft:golden_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 333, + "id" : "minecraft:golden_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 339, + "id" : "minecraft:chainmail_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 339, + "id" : "minecraft:chainmail_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 340, + "id" : "minecraft:chainmail_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 340, + "id" : "minecraft:chainmail_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 341, + "id" : "minecraft:chainmail_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 341, + "id" : "minecraft:chainmail_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 342, + "id" : "minecraft:chainmail_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 342, + "id" : "minecraft:chainmail_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 343, + "id" : "minecraft:iron_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 343, + "id" : "minecraft:iron_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 344, + "id" : "minecraft:iron_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 344, + "id" : "minecraft:iron_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 345, + "id" : "minecraft:iron_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 345, + "id" : "minecraft:iron_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 346, + "id" : "minecraft:iron_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 346, + "id" : "minecraft:iron_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 351, + "id" : "minecraft:golden_helmet" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 351, + "id" : "minecraft:golden_helmet" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 352, + "id" : "minecraft:golden_chestplate" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 352, + "id" : "minecraft:golden_chestplate" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 353, + "id" : "minecraft:golden_leggings" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 353, + "id" : "minecraft:golden_leggings" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 354, + "id" : "minecraft:golden_boots" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 354, + "id" : "minecraft:golden_boots" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 384, + "id" : "minecraft:clay_ball", + "damage" : -1 + }, + "output" : { + "legacyId" : 383, + "id" : "minecraft:brick", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 531, + "id" : "minecraft:iron_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 531, + "id" : "minecraft:iron_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 532, + "id" : "minecraft:golden_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 532, + "id" : "minecraft:golden_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 558, + "id" : "minecraft:chorus_fruit", + "damage" : -1 + }, + "output" : { + "legacyId" : 559, + "id" : "minecraft:popped_chorus_fruit", + "damage" : 32767 + }, + "block" : "furnace" + } + ], + "potionMixes" : [ + { + "inputId" : "minecraft:potion", + "inputMeta" : 17, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 42 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 42 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 42 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 31 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 31 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 31 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_13", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 28 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_14", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 28 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_15", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 28 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_2", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 5 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_4", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 5 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_5", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 5 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_6", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 12 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_7", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 12 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_8", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 12 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_9", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 40 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_0", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 40 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_1", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 40 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_10", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 19 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_11", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 19 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_12", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 19 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_13", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 9 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_14", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 9 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_15", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 9 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_2", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 21 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_3", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 21 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_5", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 21 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_6", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 25 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_7", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 25 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_8", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 25 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_9", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 14 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_0", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 14 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_1", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 14 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_10", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 37 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_11", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 37 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_12", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 37 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_13", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 13 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_14", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 13 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_2", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 13 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_3", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_4", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_5", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_6", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_7", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_8", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_9", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 22 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7819 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_0", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 22 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_10", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 22 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_11", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 8 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_12", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 8 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_13", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 8 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_14", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 17 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_15", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 17 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_2", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 17 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_3", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 9, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 11 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_4", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 11 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_5", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 11 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_6", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 9, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 10 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_7", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 10 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_8", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 10 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_9", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 8 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7833 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_0", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 8 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_1", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 8 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_10", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 15, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_11", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 15, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_12", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 15, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_13", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 10, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_14", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 10, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_15", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 10, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_3", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 2, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_4", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 2, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_5", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 2, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_6", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_7", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_8", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_9", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 32, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7832 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_0", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 32, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_1", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 32, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_10", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_11", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_12", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_13", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 5, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 7 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_14", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 7 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_15", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 7 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_2", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 6 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_4", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 6 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_5", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 6 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_6", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_7", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_8", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_9", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 27 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7831 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_0", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 27 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_1", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 27 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_10", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 26 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_11", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 26 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_12", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 26 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_13", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 30 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_14", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 30 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_15", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 30 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_2", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 29 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_3", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 29 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_5", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 29 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_6", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 17, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_7", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_8", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 18 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_9", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 40, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 41 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7830 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_0", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 40, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 41 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_1", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 40, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 41 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_10", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_11", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_12", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_13", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 31, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 33 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_14", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 33 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_15", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 33 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_2", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 31, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 32 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_3", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 32 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_4", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 32 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_6", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 22, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_7", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 22, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_8", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 22, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_9", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7829 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_0", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_1", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_10", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 14, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 17 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_11", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 17 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_12", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 17 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_13", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 16 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_14", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 16 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_15", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 16 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_2", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 15 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_3", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 15 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_4", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 15 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_5", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_7", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_8", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_9", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 39 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7828 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_0", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 39 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_1", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 39 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_10", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 37, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 38 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_11", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 38 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_12", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 38 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_13", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_14", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_15", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_2", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 20 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_3", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 20 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_4", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 20 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_5", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_6", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_8", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_9", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7827 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_0", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_1", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_10", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 3 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_11", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 3 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_12", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 3 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_13", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_14", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_15", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_2", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 4 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_3", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 4 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_4", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 4 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_5", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_6", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_7", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_9", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7826 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_0", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_1", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_10", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_11", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_12", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_13", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_14", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_15", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_2", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_3", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_4", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_5", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "inputMeta" : 34, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_6", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 34, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 35 + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 34, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 35 } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_7", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ + ], + "containerMixes" : [ { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_8", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ + "inputId" : "minecraft:potion", + "reagentId" : "minecraft:gunpowder", + "outputId" : "minecraft:splash_potion" + }, { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7825 + "inputId" : "minecraft:splash_potion", + "reagentId" : "minecraft:dragon_breath", + "outputId" : "minecraft:lingering_potion" } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 3, - "input" : { - "legacyId" : -408, - "id" : "minecraft:deepslate_copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -408, - "id" : "minecraft:deepslate_copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -407, - "id" : "minecraft:deepslate_emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -407, - "id" : "minecraft:deepslate_emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -406, - "id" : "minecraft:deepslate_coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -406, - "id" : "minecraft:deepslate_coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -405, - "id" : "minecraft:deepslate_diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -405, - "id" : "minecraft:deepslate_diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -403, - "id" : "minecraft:deepslate_redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -403, - "id" : "minecraft:deepslate_redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -402, - "id" : "minecraft:deepslate_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -402, - "id" : "minecraft:deepslate_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -401, - "id" : "minecraft:deepslate_iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -401, - "id" : "minecraft:deepslate_iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -400, - "id" : "minecraft:deepslate_lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -400, - "id" : "minecraft:deepslate_lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : -1 - }, - "output" : { - "legacyId" : -410, - "id" : "minecraft:cracked_deepslate_bricks", - "blockRuntimeId" : 3766 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : -1 - }, - "output" : { - "legacyId" : -409, - "id" : "minecraft:cracked_deepslate_tiles", - "blockRuntimeId" : 3767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : -1 - }, - "output" : { - "legacyId" : -378, - "id" : "minecraft:deepslate", - "blockRuntimeId" : 4099 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -311, - "id" : "minecraft:copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -311, - "id" : "minecraft:copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -288, - "id" : "minecraft:nether_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -288, - "id" : "minecraft:nether_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : -1 - }, - "output" : { - "legacyId" : -280, - "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3769 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -271, - "id" : "minecraft:ancient_debris", - "damage" : -1 - }, - "output" : { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -271, - "id" : "minecraft:ancient_debris", - "damage" : -1 - }, - "output" : { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -234, - "id" : "minecraft:basalt", - "damage" : -1 - }, - "output" : { - "legacyId" : -377, - "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6790 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood" - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 2 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 3 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 4 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 5 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 8 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 9 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 10 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 11 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 12 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 13 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -156, - "id" : "minecraft:sea_pickle", - "damage" : -1 - }, - "output" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 1, - "id" : "minecraft:stone" - }, - "output" : { - "legacyId" : -183, - "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6815 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : -1 - }, - "output" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 7084 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 12, - "id" : "minecraft:sand", - "damage" : -1 - }, - "output" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "blockRuntimeId" : 4870 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 14, - "id" : "minecraft:gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 14, - "id" : "minecraft:gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 15, - "id" : "minecraft:iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 15, - "id" : "minecraft:iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 16, - "id" : "minecraft:coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 16, - "id" : "minecraft:coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log" - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 2 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 3 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 19, - "id" : "minecraft:sponge", - "damage" : 1 - }, - "output" : { - "legacyId" : 19, - "id" : "minecraft:sponge", - "blockRuntimeId" : 6867 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 21, - "id" : "minecraft:lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 21, - "id" : "minecraft:lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : -1 - }, - "output" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6682 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 56, - "id" : "minecraft:diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 56, - "id" : "minecraft:diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 73, - "id" : "minecraft:redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 73, - "id" : "minecraft:redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 81, - "id" : "minecraft:cactus", - "damage" : -1 - }, - "output" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 82, - "id" : "minecraft:clay", - "damage" : -1 - }, - "output" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5058 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 87, - "id" : "minecraft:netherrack", - "damage" : -1 - }, - "output" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - "output" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7195 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : -1 - }, - "output" : { - "legacyId" : -303, - "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3768 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 129, - "id" : "minecraft:emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 129, - "id" : "minecraft:emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 153, - "id" : "minecraft:quartz_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 153, - "id" : "minecraft:quartz_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - }, - "output" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6521 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay" - }, - "output" : { - "legacyId" : 220, - "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7704 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 1 - }, - "output" : { - "legacyId" : 221, - "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5721 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 2 - }, - "output" : { - "legacyId" : 222, - "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5571 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 3 - }, - "output" : { - "legacyId" : 223, - "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5459 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 4 - }, - "output" : { - "legacyId" : 224, - "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7846 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 5 - }, - "output" : { - "legacyId" : 225, - "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5507 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 6 - }, - "output" : { - "legacyId" : 226, - "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5752 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 7 - }, - "output" : { - "legacyId" : 227, - "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 4985 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 8 - }, - "output" : { - "legacyId" : 228, - "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6750 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 9 - }, - "output" : { - "legacyId" : 229, - "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3930 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 10 - }, - "output" : { - "legacyId" : 219, - "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6492 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 11 - }, - "output" : { - "legacyId" : 231, - "id" : "minecraft:blue_glazed_terracotta", - "blockRuntimeId" : 685 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 12 - }, - "output" : { - "legacyId" : 232, - "id" : "minecraft:brown_glazed_terracotta", - "blockRuntimeId" : 894 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 13 - }, - "output" : { - "legacyId" : 233, - "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5001 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 14 - }, - "output" : { - "legacyId" : 234, - "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6574 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 15 - }, - "output" : { - "legacyId" : 235, - "id" : "minecraft:black_glazed_terracotta", - "blockRuntimeId" : 488 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 162, - "id" : "minecraft:log2" - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : -1 - }, - "output" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6609 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 296, - "id" : "minecraft:iron_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 296, - "id" : "minecraft:iron_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 297, - "id" : "minecraft:iron_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 297, - "id" : "minecraft:iron_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 298, - "id" : "minecraft:iron_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 298, - "id" : "minecraft:iron_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 307, - "id" : "minecraft:iron_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 307, - "id" : "minecraft:iron_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 322, - "id" : "minecraft:golden_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 322, - "id" : "minecraft:golden_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 323, - "id" : "minecraft:golden_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 323, - "id" : "minecraft:golden_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 324, - "id" : "minecraft:golden_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 324, - "id" : "minecraft:golden_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 325, - "id" : "minecraft:golden_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 325, - "id" : "minecraft:golden_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 331, - "id" : "minecraft:iron_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 331, - "id" : "minecraft:iron_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 333, - "id" : "minecraft:golden_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 333, - "id" : "minecraft:golden_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 339, - "id" : "minecraft:chainmail_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 339, - "id" : "minecraft:chainmail_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 340, - "id" : "minecraft:chainmail_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 340, - "id" : "minecraft:chainmail_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 341, - "id" : "minecraft:chainmail_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 341, - "id" : "minecraft:chainmail_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 342, - "id" : "minecraft:chainmail_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 342, - "id" : "minecraft:chainmail_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 343, - "id" : "minecraft:iron_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 343, - "id" : "minecraft:iron_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 344, - "id" : "minecraft:iron_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 344, - "id" : "minecraft:iron_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 345, - "id" : "minecraft:iron_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 345, - "id" : "minecraft:iron_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 346, - "id" : "minecraft:iron_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 346, - "id" : "minecraft:iron_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 351, - "id" : "minecraft:golden_helmet" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 351, - "id" : "minecraft:golden_helmet" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 352, - "id" : "minecraft:golden_chestplate" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 352, - "id" : "minecraft:golden_chestplate" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 353, - "id" : "minecraft:golden_leggings" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 353, - "id" : "minecraft:golden_leggings" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 354, - "id" : "minecraft:golden_boots" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 354, - "id" : "minecraft:golden_boots" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 384, - "id" : "minecraft:clay_ball", - "damage" : -1 - }, - "output" : { - "legacyId" : 383, - "id" : "minecraft:brick", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 531, - "id" : "minecraft:iron_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 531, - "id" : "minecraft:iron_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 532, - "id" : "minecraft:golden_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 532, - "id" : "minecraft:golden_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 558, - "id" : "minecraft:chorus_fruit", - "damage" : -1 - }, - "output" : { - "legacyId" : 559, - "id" : "minecraft:popped_chorus_fruit", - "damage" : 32767 - }, - "block" : "furnace" - } - ], - "potionMixes" : [ - { - "inputId" : "minecraft:potion", - "inputMeta" : 17, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 42 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 42 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 42 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 31 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 31 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 31 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 28 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 28 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 28 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 5 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 5 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 5 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 12 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 12 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 12 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 40 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 40 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 40 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 19 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 19 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 19 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 9 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 9 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 9 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 21 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 21 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 21 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 25 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 25 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 25 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 14 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 14 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 14 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 37 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 37 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 37 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 13 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 13 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 13 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 23, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 23, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 23, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 22 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 22 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 22 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 7, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 8 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 7, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 8 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 7, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 8 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 17 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 17 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 17 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 11 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 11 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 11 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 10 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 10 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 10 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 6, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 8 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 6, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 8 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 6, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 8 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 2, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 2, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 2, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 26, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 26, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 26, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 5, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 7 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 7 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 7 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 6 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 6 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 6 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 27 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 27 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 27 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 26 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 26 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 26 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 30 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 30 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 30 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 29 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 29 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 29 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 40, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 41 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 40, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 41 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 40, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 41 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 33 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 33 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 33 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 32 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 32 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 32 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 17 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 17 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 17 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 16 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 16 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 16 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 15 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 15 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 15 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 39 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 39 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 39 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 37, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 38 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 38 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 38 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 19, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 20 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 19, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 20 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 19, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 20 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 3 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 3 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 3 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 4 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 4 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 4 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 34, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 34, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 34, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 - } - ], - "containerMixes" : [ - { - "inputId" : "minecraft:potion", - "reagentId" : "minecraft:gunpowder", - "outputId" : "minecraft:splash_potion" - }, - { - "inputId" : "minecraft:splash_potion", - "reagentId" : "minecraft:dragon_breath", - "outputId" : "minecraft:lingering_potion" - } - ] -} + ] +} \ No newline at end of file diff --git a/src/test/java/cn/nukkit/block/BlockItemFrameTest.java b/src/test/java/cn/nukkit/block/BlockItemFrameTest.java new file mode 100644 index 00000000000..ef0e25a96b3 --- /dev/null +++ b/src/test/java/cn/nukkit/block/BlockItemFrameTest.java @@ -0,0 +1,72 @@ +package cn.nukkit.block; + +import cn.nukkit.Player; +import cn.nukkit.item.Item; +import cn.nukkit.item.ItemID; +import cn.nukkit.level.Level; +import cn.nukkit.math.BlockFace; +import jdk.nashorn.internal.ir.annotations.Ignore; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.Mock; +import org.mockito.invocation.InvocationOnMock; +import org.powernukkit.tests.api.MockServer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +/** + * @author joserobjr + * @since 2021-09-25 + */ +@ExtendWith(PowerNukkitExtension.class) +@MockServer(callsRealMethods = false) +class BlockItemFrameTest { + @Mock + Level level; + + @Mock + Player player; + + @Test @Ignore //TODO Fix + void testPlaceOnTallGrass() { + BlockItemFrame itemFrame = new BlockItemFrame(); + itemFrame.setLevel(level); + + Block grass = mock(BlockGrass.class, InvocationOnMock::callRealMethod); + Block tallGrass = mock(BlockTallGrass.class, InvocationOnMock::callRealMethod); + grass.y = 100; + tallGrass.y = 101; + grass.level = level; + tallGrass.level = level; + when(tallGrass.down()).thenReturn(grass); + + assertTrue(itemFrame.place(Item.get(ItemID.ITEM_FRAME), tallGrass, tallGrass, BlockFace.NORTH, 0, 0, 0, player)); + itemFrame = (BlockItemFrame) level.getBlock(0, 101, 0); + assertEquals(BlockFace.UP, itemFrame.getBlockFace()); + } + + @Test + void testStoringMap() { + BlockItemFrame block = new BlockItemFrame(); + + assertFalse(block.isStoringMap()); + block.setStoringMap(true); + assertTrue(block.isStoringMap()); + block.setStoringMap(false); + assertFalse(block.isStoringMap()); + } + + @Test + void testStoringPhoto() { + BlockItemFrame block = new BlockItemFrame(); + + assertFalse(block.isStoringMap()); + block.setStoringMap(true); + assertTrue(block.isStoringMap()); + block.setStoringMap(false); + assertFalse(block.isStoringMap()); + } +} From 7c9ebb54510a16d08d22bb9a2b4e3ac56054ce00 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 20:56:16 -0300 Subject: [PATCH 221/394] Fixes dyed shulker box recipes --- .../cn/nukkit/inventory/CraftingManager.java | 13 ++++++-- .../cn/nukkit/inventory/ShulkerBoxRecipe.java | 32 +++++++++++++++++++ .../network/protocol/CraftingDataPacket.java | 1 + .../network/protocol/CraftingEventPacket.java | 2 +- .../java/cn/nukkit/utils/BinaryStream.java | 14 ++++++-- 5 files changed, 57 insertions(+), 5 deletions(-) create mode 100644 src/main/java/cn/nukkit/inventory/ShulkerBoxRecipe.java diff --git a/src/main/java/cn/nukkit/inventory/CraftingManager.java b/src/main/java/cn/nukkit/inventory/CraftingManager.java index a7b1ac6bc2e..efff224f709 100644 --- a/src/main/java/cn/nukkit/inventory/CraftingManager.java +++ b/src/main/java/cn/nukkit/inventory/CraftingManager.java @@ -132,10 +132,16 @@ private void loadRecipes(Config config) { toNextRecipe: for (Map recipe : recipes) { try { - switch (Utils.toInt(recipe.get("type"))) { + int type = Utils.toInt(recipe.get("type")); + switch (type) { case 0: + case 5: String craftingBlock = (String) recipe.get("block"); - if (!"crafting_table".equals(craftingBlock) && !"stonecutter".equals(craftingBlock) && !"cartography_table".equalsIgnoreCase(craftingBlock)) { + if (type == 5) { + craftingBlock = "shulker_box"; + } + if (!"crafting_table".equals(craftingBlock) && !"stonecutter".equals(craftingBlock) + && !"cartography_table".equalsIgnoreCase(craftingBlock) && !"shulker_box".equalsIgnoreCase(craftingBlock)) { // Ignore other recipes than crafting table, stonecutter and cartography table continue; } @@ -167,6 +173,9 @@ private void loadRecipes(Config config) { case "crafting_table": this.registerRecipe(new ShapelessRecipe(recipeId, priority, result, sorted)); break; + case "shulker_box": + this.registerRecipe(new ShulkerBoxRecipe(recipeId, priority, result, sorted)); + break; case "stonecutter": this.registerRecipe(new StonecutterRecipe(recipeId, priority, result, sorted.get(0))); break; diff --git a/src/main/java/cn/nukkit/inventory/ShulkerBoxRecipe.java b/src/main/java/cn/nukkit/inventory/ShulkerBoxRecipe.java new file mode 100644 index 00000000000..41f213a00e2 --- /dev/null +++ b/src/main/java/cn/nukkit/inventory/ShulkerBoxRecipe.java @@ -0,0 +1,32 @@ +package cn.nukkit.inventory; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.item.Item; + +import java.util.Collection; + +/** + * @author joserobjr + * @since 2021-09-25 + */ +@PowerNukkitOnly +@Since("FUTURE") +public class ShulkerBoxRecipe extends ShapelessRecipe { + @PowerNukkitOnly + @Since("FUTURE") + public ShulkerBoxRecipe(Item result, Collection ingredients) { + super(result, ingredients); + } + + @PowerNukkitOnly + @Since("FUTURE") + public ShulkerBoxRecipe(String recipeId, int priority, Item result, Collection ingredients) { + super(recipeId, priority, result, ingredients); + } + + @Override + public RecipeType getType() { + return RecipeType.SHULKER_BOX; + } +} diff --git a/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java b/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java index a13e4c7a622..e3d0ad87309 100644 --- a/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java @@ -117,6 +117,7 @@ public void encode() { break; case SHAPELESS: case CARTOGRAPHY: + case SHULKER_BOX: ShapelessRecipe shapeless = (ShapelessRecipe) recipe; this.putString(shapeless.getRecipeId()); List ingredients = shapeless.getIngredientList(); diff --git a/src/main/java/cn/nukkit/network/protocol/CraftingEventPacket.java b/src/main/java/cn/nukkit/network/protocol/CraftingEventPacket.java index fe0f70e2d4c..ba06243d0f5 100644 --- a/src/main/java/cn/nukkit/network/protocol/CraftingEventPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/CraftingEventPacket.java @@ -63,7 +63,7 @@ public class CraftingEventPacket extends DataPacket { @Override public void decode() { this.windowId = this.getByte(); - this.type = (int) this.getUnsignedVarInt(); + this.type = this.getVarInt(); this.id = this.getUUID(); this.input = this.getArray(Item.class, BinaryStream::getSlot); diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index 9666a400876..bed5ad8fe56 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -3,6 +3,8 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.block.Block; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.blockstate.BlockStateRegistry; import cn.nukkit.entity.Attribute; import cn.nukkit.entity.data.Skin; import cn.nukkit.item.*; @@ -404,7 +406,13 @@ public Item getSlot() { getVarInt(); // netId } - getVarInt(); // blockRuntimeId + int blockRuntimeId = getVarInt(); + if (id <= 255) { + BlockState blockStateByRuntimeId = BlockStateRegistry.getBlockStateByRuntimeId(blockRuntimeId); + if (blockStateByRuntimeId != null) { + damage = blockStateByRuntimeId.asItemBlock().getDamage(); + } + } byte[] bytes = getByteArray(); ByteBuf buf = AbstractByteBufAllocator.DEFAULT.ioBuffer(bytes.length); @@ -428,7 +436,9 @@ public Item getSlot() { if (compoundTag != null && compoundTag.getAllTags().size() > 0) { if (compoundTag.contains("Damage")) { - damage = compoundTag.getInt("Damage"); + if (id > 255) { + damage = compoundTag.getInt("Damage"); + } compoundTag.remove("Damage"); } if (compoundTag.contains("__DamageConflict__")) { From 74d0e91232ff94975758425c6e442ec4a769d97e Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 21:03:33 -0300 Subject: [PATCH 222/394] Fixes an incorrect annotation --- src/test/java/cn/nukkit/block/BlockItemFrameTest.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/test/java/cn/nukkit/block/BlockItemFrameTest.java b/src/test/java/cn/nukkit/block/BlockItemFrameTest.java index ef0e25a96b3..02af6d1f521 100644 --- a/src/test/java/cn/nukkit/block/BlockItemFrameTest.java +++ b/src/test/java/cn/nukkit/block/BlockItemFrameTest.java @@ -5,12 +5,11 @@ import cn.nukkit.item.ItemID; import cn.nukkit.level.Level; import cn.nukkit.math.BlockFace; -import jdk.nashorn.internal.ir.annotations.Ignore; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.Mock; import org.mockito.invocation.InvocationOnMock; -import org.powernukkit.tests.api.MockServer; import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; import static org.junit.jupiter.api.Assertions.*; @@ -22,7 +21,6 @@ * @since 2021-09-25 */ @ExtendWith(PowerNukkitExtension.class) -@MockServer(callsRealMethods = false) class BlockItemFrameTest { @Mock Level level; @@ -30,7 +28,7 @@ class BlockItemFrameTest { @Mock Player player; - @Test @Ignore //TODO Fix + @Test @Disabled //TODO Fix void testPlaceOnTallGrass() { BlockItemFrame itemFrame = new BlockItemFrame(); itemFrame.setLevel(level); From 05cf734693f4737aae02b83210b8cf6de911df15 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 21:16:07 -0300 Subject: [PATCH 223/394] Fixes error encoding items with unknown numeric id --- src/main/java/cn/nukkit/utils/BinaryStream.java | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index bed5ad8fe56..8b734572e51 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -7,7 +7,10 @@ import cn.nukkit.blockstate.BlockStateRegistry; import cn.nukkit.entity.Attribute; import cn.nukkit.entity.data.Skin; -import cn.nukkit.item.*; +import cn.nukkit.item.Item; +import cn.nukkit.item.ItemDurable; +import cn.nukkit.item.ItemID; +import cn.nukkit.item.RuntimeItems; import cn.nukkit.level.GameRule; import cn.nukkit.level.GameRules; import cn.nukkit.math.BlockFace; @@ -42,6 +45,8 @@ @Log4j2 public class BinaryStream { + private static final int FALLBACK_ID = 248; + public int offset; private byte[] buffer; private int count; @@ -407,7 +412,7 @@ public Item getSlot() { } int blockRuntimeId = getVarInt(); - if (id <= 255) { + if (id <= 255 && id != FALLBACK_ID) { BlockState blockStateByRuntimeId = BlockStateRegistry.getBlockStateByRuntimeId(blockRuntimeId); if (blockStateByRuntimeId != null) { damage = blockStateByRuntimeId.asItemBlock().getDamage(); @@ -499,7 +504,7 @@ public Item getSlot() { } private Item readUnknownItem(Item item) { - if (item.getId() != 248 || !item.hasCompoundTag()) { + if (item.getId() != FALLBACK_ID || !item.hasCompoundTag()) { return item; } @@ -536,7 +541,7 @@ private Item readUnknownItem(Item item) { private Item createFakeUnknownItem(Item item) { boolean hasCompound = item.hasCompoundTag(); - Item fallback = Item.getBlock(248, 0, item.getCount()); + Item fallback = Item.getBlock(FALLBACK_ID, 0, item.getCount()); CompoundTag tag = item.getNamedTag(); if (tag == null) { tag = new CompoundTag(); From 2042d7d7029921947ae895af3e2e35cd03113bdf Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 22:04:51 -0300 Subject: [PATCH 224/394] Increases test coverage --- .../java/cn/nukkit/block/BlockItemFrame.java | 2 +- src/main/java/cn/nukkit/entity/data/Skin.java | 2 + .../network/protocol/CraftingEventPacket.java | 7 ++++ .../java/cn/nukkit/utils/BinaryStream.java | 25 ++++++++++++ .../java/cn/nukkit/utils/PersonaPiece.java | 2 + .../cn/nukkit/utils/PersonaPieceTint.java | 2 + .../java/cn/nukkit/utils/SerializedImage.java | 2 + .../java/cn/nukkit/utils/SkinAnimation.java | 2 + .../cn/nukkit/block/BlockItemFrameTest.java | 40 +++++++++++-------- .../protocol/CraftingEventPacketTest.java | 32 +++++++++++++++ .../cn/nukkit/utils/BinaryStreamTest.java | 21 ++++++++++ 11 files changed, 120 insertions(+), 17 deletions(-) create mode 100644 src/test/java/cn/nukkit/network/protocol/CraftingEventPacketTest.java diff --git a/src/main/java/cn/nukkit/block/BlockItemFrame.java b/src/main/java/cn/nukkit/block/BlockItemFrame.java index e715d42559f..7311e6bdcb7 100644 --- a/src/main/java/cn/nukkit/block/BlockItemFrame.java +++ b/src/main/java/cn/nukkit/block/BlockItemFrame.java @@ -193,7 +193,7 @@ public boolean onActivate(@Nonnull Item item, Player player) { @PowerNukkitDifference(info = "Allow to place on walls", since = "1.3.0.0-PN") @Override public boolean place(@Nonnull Item item, @Nonnull Block block, @Nonnull Block target, @Nonnull BlockFace face, double fx, double fy, double fz, @Nullable Player player) { - if (!(target instanceof BlockWall) && (!target.isSolid() && !target.equals(block) || (block.isSolid() && !block.canBeReplaced()))) { + if ((!(target.isSolid() || target instanceof BlockWall) && !target.equals(block) || (block.isSolid() && !block.canBeReplaced()))) { return false; } diff --git a/src/main/java/cn/nukkit/entity/data/Skin.java b/src/main/java/cn/nukkit/entity/data/Skin.java index 70dc70bd014..831730acada 100644 --- a/src/main/java/cn/nukkit/entity/data/Skin.java +++ b/src/main/java/cn/nukkit/entity/data/Skin.java @@ -4,6 +4,7 @@ import cn.nukkit.nbt.stream.FastByteArrayOutputStream; import cn.nukkit.utils.*; import com.google.common.base.Preconditions; +import lombok.EqualsAndHashCode; import lombok.ToString; import net.minidev.json.JSONObject; import net.minidev.json.JSONValue; @@ -20,6 +21,7 @@ * @author MagicDroidX (Nukkit Project) */ @ToString(exclude = {"geometryData", "animationData"}) +@EqualsAndHashCode public class Skin { private static final int PIXEL_SIZE = 4; diff --git a/src/main/java/cn/nukkit/network/protocol/CraftingEventPacket.java b/src/main/java/cn/nukkit/network/protocol/CraftingEventPacket.java index ba06243d0f5..229649945ee 100644 --- a/src/main/java/cn/nukkit/network/protocol/CraftingEventPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/CraftingEventPacket.java @@ -5,6 +5,7 @@ import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.utils.BinaryStream; +import lombok.EqualsAndHashCode; import lombok.ToString; import java.util.UUID; @@ -13,6 +14,7 @@ * @author Nukkit Project Team */ @ToString +@EqualsAndHashCode(callSuper = false) public class CraftingEventPacket extends DataPacket { public static final byte NETWORK_ID = ProtocolInfo.CRAFTING_EVENT_PACKET; @@ -72,7 +74,12 @@ public void decode() { @Override public void encode() { + putByte((byte) (windowId & 0xFF)); + putVarInt(type); + putUUID(id); + putArray(input, this::putSlot); + putArray(output, this::putSlot); } @Override diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index 8b734572e51..a752b4ea851 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -37,6 +37,7 @@ import java.nio.ByteOrder; import java.nio.charset.StandardCharsets; import java.util.*; +import java.util.function.Consumer; import java.util.function.Function; /** @@ -880,6 +881,30 @@ public EntityLink getEntityLink() { ); } + @PowerNukkitOnly + @Since("FUTURE") + public void putArray(Collection collection, Consumer writer) { + if (collection == null) { + putUnsignedVarInt(0); + return; + } + putUnsignedVarInt(collection.size()); + collection.forEach(writer); + } + + @PowerNukkitOnly + @Since("FUTURE") + public void putArray(T[] collection, Consumer writer) { + if (collection == null) { + putUnsignedVarInt(0); + return; + } + putUnsignedVarInt(collection.length); + for (T t : collection) { + writer.accept(t); + } + } + @SuppressWarnings("unchecked") public T[] getArray(Class clazz, Function function) { ArrayDeque deque = new ArrayDeque<>(); diff --git a/src/main/java/cn/nukkit/utils/PersonaPiece.java b/src/main/java/cn/nukkit/utils/PersonaPiece.java index 7bd7bf372d2..edf324bcf96 100644 --- a/src/main/java/cn/nukkit/utils/PersonaPiece.java +++ b/src/main/java/cn/nukkit/utils/PersonaPiece.java @@ -1,8 +1,10 @@ package cn.nukkit.utils; +import lombok.EqualsAndHashCode; import lombok.ToString; @ToString +@EqualsAndHashCode public class PersonaPiece { public final String id; public final String type; diff --git a/src/main/java/cn/nukkit/utils/PersonaPieceTint.java b/src/main/java/cn/nukkit/utils/PersonaPieceTint.java index a24088c25a4..e44eedb8276 100644 --- a/src/main/java/cn/nukkit/utils/PersonaPieceTint.java +++ b/src/main/java/cn/nukkit/utils/PersonaPieceTint.java @@ -1,11 +1,13 @@ package cn.nukkit.utils; import com.google.common.collect.ImmutableList; +import lombok.EqualsAndHashCode; import lombok.ToString; import java.util.List; @ToString +@EqualsAndHashCode public class PersonaPieceTint { public final String pieceType; public final ImmutableList colors; diff --git a/src/main/java/cn/nukkit/utils/SerializedImage.java b/src/main/java/cn/nukkit/utils/SerializedImage.java index df96d48648a..d0f34e8e9c4 100644 --- a/src/main/java/cn/nukkit/utils/SerializedImage.java +++ b/src/main/java/cn/nukkit/utils/SerializedImage.java @@ -1,6 +1,7 @@ package cn.nukkit.utils; import io.netty.util.internal.EmptyArrays; +import lombok.EqualsAndHashCode; import lombok.ToString; import java.util.Objects; @@ -8,6 +9,7 @@ import static cn.nukkit.entity.data.Skin.*; @ToString(exclude = {"data"}) +@EqualsAndHashCode public class SerializedImage { public static final SerializedImage EMPTY = new SerializedImage(0, 0, EmptyArrays.EMPTY_BYTES); diff --git a/src/main/java/cn/nukkit/utils/SkinAnimation.java b/src/main/java/cn/nukkit/utils/SkinAnimation.java index b602b6b76dd..ba78e071eb9 100644 --- a/src/main/java/cn/nukkit/utils/SkinAnimation.java +++ b/src/main/java/cn/nukkit/utils/SkinAnimation.java @@ -3,9 +3,11 @@ import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import lombok.EqualsAndHashCode; import lombok.ToString; @ToString +@EqualsAndHashCode public class SkinAnimation { public final SerializedImage image; public final int type; diff --git a/src/test/java/cn/nukkit/block/BlockItemFrameTest.java b/src/test/java/cn/nukkit/block/BlockItemFrameTest.java index 02af6d1f521..bfe433c63f2 100644 --- a/src/test/java/cn/nukkit/block/BlockItemFrameTest.java +++ b/src/test/java/cn/nukkit/block/BlockItemFrameTest.java @@ -1,20 +1,19 @@ package cn.nukkit.block; import cn.nukkit.Player; +import cn.nukkit.blockproperty.value.TallGrassType; +import cn.nukkit.blockstate.BlockState; import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; import cn.nukkit.level.Level; import cn.nukkit.math.BlockFace; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; -import org.mockito.Mock; -import org.mockito.invocation.InvocationOnMock; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.api.MockPlayer; import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; import static org.junit.jupiter.api.Assertions.*; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.when; /** * @author joserobjr @@ -22,28 +21,37 @@ */ @ExtendWith(PowerNukkitExtension.class) class BlockItemFrameTest { - @Mock + @MockLevel Level level; - @Mock + @MockPlayer Player player; - @Test @Disabled //TODO Fix + @Test void testPlaceOnTallGrass() { BlockItemFrame itemFrame = new BlockItemFrame(); itemFrame.setLevel(level); - Block grass = mock(BlockGrass.class, InvocationOnMock::callRealMethod); - Block tallGrass = mock(BlockTallGrass.class, InvocationOnMock::callRealMethod); - grass.y = 100; - tallGrass.y = 101; - grass.level = level; - tallGrass.level = level; - when(tallGrass.down()).thenReturn(grass); + Block grass = Block.get(BlockID.GRASS); + Block tallGrass = Block.get(BlockID.TALL_GRASS); + level.setBlock(0, 100, 0, grass, true, false); + level.setBlock(0, 101, 0, tallGrass, true, false); assertTrue(itemFrame.place(Item.get(ItemID.ITEM_FRAME), tallGrass, tallGrass, BlockFace.NORTH, 0, 0, 0, player)); - itemFrame = (BlockItemFrame) level.getBlock(0, 101, 0); assertEquals(BlockFace.UP, itemFrame.getBlockFace()); + + + tallGrass = tallGrass.clone(); + Block tallGrassTop = BlockState.of(BlockID.TALL_GRASS).withProperty(BlockTallGrass.TALL_GRASS_TYPE, TallGrassType.TALL).getBlock(); + level.setBlock(2, 100, 0, grass.clone(), true, false); + level.setBlock(2, 101, 0, tallGrass, true, false); + level.setBlock(2, 103, 0, tallGrassTop, true, false); + assertFalse(itemFrame.place(Item.get(ItemID.ITEM_FRAME), tallGrassTop, tallGrassTop, BlockFace.NORTH, 0, 0, 0, player)); + + Block wall = Block.get(BlockID.COBBLE_WALL); + level.setBlock(2, 100, 0, wall, true, false); + assertTrue(itemFrame.place(Item.get(ItemID.ITEM_FRAME), tallGrass, tallGrass, BlockFace.NORTH, 0, 0, 0, player)); + assertTrue(itemFrame.place(Item.get(ItemID.ITEM_FRAME), wall.north(), wall, BlockFace.SOUTH, 0, 0, 0, player)); } @Test diff --git a/src/test/java/cn/nukkit/network/protocol/CraftingEventPacketTest.java b/src/test/java/cn/nukkit/network/protocol/CraftingEventPacketTest.java new file mode 100644 index 00000000000..1e30358b6a6 --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/CraftingEventPacketTest.java @@ -0,0 +1,32 @@ +package cn.nukkit.network.protocol; + +import cn.nukkit.item.Item; +import lombok.var; +import org.junit.jupiter.api.Test; + +import java.util.UUID; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author joserobjr + * @since 2021-09-25 + */ +class CraftingEventPacketTest { + + @Test + void encodeDecode() { + var packet = new CraftingEventPacket(); + packet.type = 1; + packet.id = UUID.randomUUID(); + packet.input = new Item[]{new Item(1000), new Item(1001)}; + packet.output = new Item[]{new Item(1002), new Item(1003)}; + + packet.encode(); + var packet2 = new CraftingEventPacket(); + packet2.setBuffer(packet.getBuffer()); + packet2.decode(); + + assertEquals(packet, packet2); + } +} diff --git a/src/test/java/cn/nukkit/utils/BinaryStreamTest.java b/src/test/java/cn/nukkit/utils/BinaryStreamTest.java index 746f050a662..5f5a86177d1 100644 --- a/src/test/java/cn/nukkit/utils/BinaryStreamTest.java +++ b/src/test/java/cn/nukkit/utils/BinaryStreamTest.java @@ -20,12 +20,15 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import cn.nukkit.entity.data.Skin; import cn.nukkit.item.Item; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; +import java.util.Arrays; + import static org.junit.jupiter.api.Assertions.assertEquals; /** @@ -61,4 +64,22 @@ void putSlotGetSlotCustomName() { Item read = stream.getSlot(); assertEquals(item, read); } + + @Test + void addSkin() { + Skin skin = new Skin(); + skin.setSkinData(new byte[Skin.SINGLE_SKIN_SIZE]); + skin.setSkinId("id"); + skin.setCapeData(new byte[Skin.SINGLE_SKIN_SIZE]); + skin.setTrusted(true); + skin.setAnimationData("animation"); + skin.setCapeId("id"); + skin.getAnimations().add(new SkinAnimation(new SerializedImage(10, 10, new byte[10]), 1, 2, 1)); + skin.getPersonaPieces().add(new PersonaPiece("id", "type", "packId", true, "product")); + skin.getTintColors().add(new PersonaPieceTint("color", Arrays.asList("a", "b"))); + stream.putSkin(skin); + + Skin read = stream.getSkin(); + assertEquals(skin, read); + } } From bee93c62b39fa78c2d1b677e52aeee8d8756e8c9 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 22:21:18 -0300 Subject: [PATCH 225/394] Fixes skin test --- src/main/java/cn/nukkit/entity/data/Skin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/entity/data/Skin.java b/src/main/java/cn/nukkit/entity/data/Skin.java index 831730acada..c30b1edba23 100644 --- a/src/main/java/cn/nukkit/entity/data/Skin.java +++ b/src/main/java/cn/nukkit/entity/data/Skin.java @@ -21,7 +21,7 @@ * @author MagicDroidX (Nukkit Project) */ @ToString(exclude = {"geometryData", "animationData"}) -@EqualsAndHashCode +@EqualsAndHashCode(exclude = {"fullSkinId", "trusted"}) public class Skin { private static final int PIXEL_SIZE = 4; From 2ef279598d94e333cacc4941466c92c17303e729 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 22:50:59 -0300 Subject: [PATCH 226/394] Makes lombok add generated annotations --- lombok.config | 1 + src/main/java/cn/nukkit/utils/HumanStringComparator.java | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 lombok.config diff --git a/lombok.config b/lombok.config new file mode 100644 index 00000000000..7a21e88040d --- /dev/null +++ b/lombok.config @@ -0,0 +1 @@ +lombok.addLombokGeneratedAnnotation = true diff --git a/src/main/java/cn/nukkit/utils/HumanStringComparator.java b/src/main/java/cn/nukkit/utils/HumanStringComparator.java index 4af39fcec6c..a0c4ef4ee2f 100644 --- a/src/main/java/cn/nukkit/utils/HumanStringComparator.java +++ b/src/main/java/cn/nukkit/utils/HumanStringComparator.java @@ -110,10 +110,10 @@ private int compare(List l1, List l2) { // Detect ommitted number if (strLen1 < strLen2) { - if (detectOmmitedNumber(l1, len1, i, str2, strLen2, minStrLen, commonPart1)) { + if (detectOmittedNumber(l1, len1, i, str2, strLen2, minStrLen, commonPart1)) { return RIGHT; } - } else if (detectOmmitedNumber(l2, len2, i, str1, strLen1, minStrLen, commonPart2)) { + } else if (detectOmittedNumber(l2, len2, i, str1, strLen1, minStrLen, commonPart2)) { return LEFT; } @@ -125,7 +125,7 @@ private int compare(List l1, List l2) { return Integer.compare(len1, len2); } - private boolean detectOmmitedNumber(List l1, int len1, int i, String str2, int strLen2, int minStrLen, String commonPart1) { + private boolean detectOmittedNumber(List l1, int len1, int i, String str2, int strLen2, int minStrLen, String commonPart1) { String combined; String comparingWith; String next1 = len1 > i + 1? l1.get(i + 1) : null; From 899751284acf66c29f9288f69a447bd14b03d510 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 25 Sep 2021 23:20:28 -0300 Subject: [PATCH 227/394] Increases test coverage --- src/test/java/cn/nukkit/block/BlockItemFrameTest.java | 8 ++++---- src/test/java/cn/nukkit/utils/BinaryStreamTest.java | 11 +++++++++++ 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/src/test/java/cn/nukkit/block/BlockItemFrameTest.java b/src/test/java/cn/nukkit/block/BlockItemFrameTest.java index bfe433c63f2..2b7781e3a5c 100644 --- a/src/test/java/cn/nukkit/block/BlockItemFrameTest.java +++ b/src/test/java/cn/nukkit/block/BlockItemFrameTest.java @@ -69,10 +69,10 @@ void testStoringMap() { void testStoringPhoto() { BlockItemFrame block = new BlockItemFrame(); - assertFalse(block.isStoringMap()); - block.setStoringMap(true); - assertTrue(block.isStoringMap()); - block.setStoringMap(false); + assertFalse(block.isStoringPhoto()); + block.setStoringPhoto(true); + assertTrue(block.isStoringPhoto()); + block.setStoringPhoto(false); assertFalse(block.isStoringMap()); } } diff --git a/src/test/java/cn/nukkit/utils/BinaryStreamTest.java b/src/test/java/cn/nukkit/utils/BinaryStreamTest.java index 5f5a86177d1..c2b6321e669 100644 --- a/src/test/java/cn/nukkit/utils/BinaryStreamTest.java +++ b/src/test/java/cn/nukkit/utils/BinaryStreamTest.java @@ -20,6 +20,8 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockstate.BlockState; import cn.nukkit.entity.data.Skin; import cn.nukkit.item.Item; import org.junit.jupiter.api.BeforeEach; @@ -55,6 +57,15 @@ void putSlotGetSlotNoTag() { assertEquals(item, read); } + @Test + void putSlotGetSlotBlock() { + Item item = BlockState.of(BlockID.SHULKER_BOX, 11).asItemBlock(); + stream.putSlot(item); + stream.setOffset(0); + Item read = stream.getSlot(); + assertEquals(item, read); + } + @Test void putSlotGetSlotCustomName() { Item item = new Item(1000, 0, 1, "Test"); From 9fda1f558a5c8b26bde46a0be6cf8ccf568fd97d Mon Sep 17 00:00:00 2001 From: zzz <1173572640@qq.com> Date: Thu, 30 Sep 2021 04:39:10 -0500 Subject: [PATCH 228/394] Update MoveEntityDeltaPacket.java (#1876) * Update MoveEntityDeltaPacket.java * Update MoveEntityDeltaPacket.java * cleanup * Update MoveEntityDeltaPacket.java * Update MoveEntityDeltaPacket.java * Update MoveEntityDeltaPacket.java --- .../protocol/MoveEntityDeltaPacket.java | 105 +++++++++++------- 1 file changed, 65 insertions(+), 40 deletions(-) diff --git a/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java b/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java index 1b97f5eae4e..4e728b64a42 100644 --- a/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java @@ -6,20 +6,24 @@ public class MoveEntityDeltaPacket extends DataPacket { public static final byte NETWORK_ID = ProtocolInfo.MOVE_ENTITY_DELTA_PACKET; - public static final int FLAG_HAS_X = 0b1; - public static final int FLAG_HAS_Y = 0b10; - public static final int FLAG_HAS_Z = 0b100; - public static final int FLAG_HAS_YAW = 0b1000; - public static final int FLAG_HAS_HEAD_YAW = 0b10000; - public static final int FLAG_HAS_PITCH = 0b100000; + public static final int FLAG_HAS_X = 0B1; + public static final int FLAG_HAS_Y = 0B10; + public static final int FLAG_HAS_Z = 0B100; + public static final int FLAG_HAS_PITCH = 0B1000; + public static final int FLAG_HAS_YAW = 0B10000; + public static final int FLAG_HAS_HEAD_YAW = 0B100000; + public static final int FLAG_ON_GROUND = 0B1000000; + public static final int FLAG_TELEPORTING = 0B10000000; + public static final int FLAG_FORCE_MOVE_LOCAL_ENTITY = 0B100000000; + public long runtimeEntityId; public int flags = 0; public float x = 0; public float y = 0; public float z = 0; - public double yawDelta = 0; - public double headYawDelta = 0; - public double pitchDelta = 0; + public float pitch = 0; + public float yaw = 0; + public float headYaw = 0; @Override public byte pid() { @@ -28,49 +32,70 @@ public byte pid() { @Override public void decode() { + this.runtimeEntityId = this.getEntityRuntimeId(); this.flags = this.getByte(); - this.x = getCoordinate(FLAG_HAS_X); - this.y = getCoordinate(FLAG_HAS_Y); - this.z = getCoordinate(FLAG_HAS_Z); - this.yawDelta = getRotation(FLAG_HAS_YAW); - this.headYawDelta = getRotation(FLAG_HAS_HEAD_YAW); - this.pitchDelta = getRotation(FLAG_HAS_PITCH); + if ((this.flags & FLAG_HAS_X) != 0) { + this.x = this.getCoordinate(); + } + if ((this.flags & FLAG_HAS_Y) != 0) { + this.y = this.getCoordinate(); + } + if ((this.flags & FLAG_HAS_Z) != 0) { + this.z = this.getCoordinate(); + } + if ((this.flags & FLAG_HAS_PITCH) != 0) { + this.pitch = this.getRotation(); + } + if ((this.flags & FLAG_HAS_YAW) != 0) { + this.yaw = this.getRotation(); + } + if ((this.flags & FLAG_HAS_HEAD_YAW) != 0) { + this.headYaw = this.getRotation(); + } } @Override public void encode() { - this.putByte((byte) flags); - putCoordinate(FLAG_HAS_X, this.x); - putCoordinate(FLAG_HAS_Y, this.y); - putCoordinate(FLAG_HAS_Z, this.z); - putRotation(FLAG_HAS_YAW, this.yawDelta); - putRotation(FLAG_HAS_HEAD_YAW, this.headYawDelta); - putRotation(FLAG_HAS_PITCH, this.pitchDelta); + this.reset(); + this.putEntityRuntimeId(this.runtimeEntityId); + this.putLShort(this.flags); + if ((this.flags & FLAG_HAS_X) != 0) { + this.putCoordinate(this.x); + } + if ((this.flags & FLAG_HAS_Y) != 0) { + this.putCoordinate(this.y); + } + if ((this.flags & FLAG_HAS_Z) != 0) { + this.putCoordinate(this.z); + } + if ((this.flags & FLAG_HAS_PITCH) != 0) { + this.putRotation(this.pitch); + } + if ((this.flags & FLAG_HAS_YAW) != 0) { + this.putRotation(this.yaw); + } + if ((this.flags & FLAG_HAS_HEAD_YAW) != 0) { + this.putRotation(this.headYaw); + } } - private float getCoordinate(int flag) { - if ((flags & flag) != 0) { - return this.getLFloat(); - } - return 0; + private float getCoordinate() { + return this.getLFloat(); } - private double getRotation(int flag) { - if ((flags & flag) != 0) { - return this.getByte() * (360d / 256d); - } - return 0d; + private void putCoordinate(float value) { + this.putLFloat(value); } - private void putCoordinate(int flag, float value) { - if ((flags & flag) != 0) { - this.putLFloat(value); - } + private float getRotation() { + return this.getByte() * (360F / 256F); } - private void putRotation(int flag, double value) { - if ((flags & flag) != 0) { - this.putByte((byte) (value / (360d / 256d))); - } + private void putRotation(float value) { + this.putByte((byte) (value / (360F / 256F))); + } + + public boolean hasFlag(int flag) { + return (this.flags & flag) != 0; } } From b7cbe900ba1199c8e957c815b87a8a0070e24efd Mon Sep 17 00:00:00 2001 From: Woder <17339354+wode490390@users.noreply.github.com> Date: Thu, 30 Sep 2021 20:54:10 +0800 Subject: [PATCH 229/394] Update Sound enum to 1.17.30 (#1904) --- src/main/java/cn/nukkit/level/Sound.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main/java/cn/nukkit/level/Sound.java b/src/main/java/cn/nukkit/level/Sound.java index e8f2f61f765..de1c7e9e26f 100644 --- a/src/main/java/cn/nukkit/level/Sound.java +++ b/src/main/java/cn/nukkit/level/Sound.java @@ -51,10 +51,12 @@ public enum Sound { BLOCK_BEEHIVE_WORK("block.beehive.work"), BLOCK_BELL_HIT("block.bell.hit"), BLOCK_BLASTFURNACE_FIRE_CRACKLE("block.blastfurnace.fire_crackle"), + BLOCK_BOWHIT("block.bowhit"), BLOCK_CAMPFIRE_CRACKLE("block.campfire.crackle"), BLOCK_CARTOGRAPHY_TABLE_USE("block.cartography_table.use"), BLOCK_CHORUSFLOWER_DEATH("block.chorusflower.death"), BLOCK_CHORUSFLOWER_GROW("block.chorusflower.grow"), + BLOCK_CLICK("block.click"), BLOCK_COMPOSTER_EMPTY("block.composter.empty"), BLOCK_COMPOSTER_FILL("block.composter.fill"), BLOCK_COMPOSTER_FILL_SUCCESS("block.composter.fill_success"), @@ -96,6 +98,7 @@ public enum Sound { BREAK_AZALEA("break.azalea"), BREAK_BIG_DRIPLEAF("break.big_dripleaf"), BREAK_CALCITE("break.calcite"), + BREAK_DIRT_WITH_ROOTS("break.dirt_with_roots"), BREAK_DRIPSTONE_BLOCK("break.dripstone_block"), BREAK_HANGING_ROOTS("break.hanging_roots"), BREAK_LARGE_AMETHYST_BUD("break.large_amethyst_bud"), @@ -205,6 +208,7 @@ public enum Sound { FALL_CORAL("fall.coral"), FALL_DEEPSLATE("fall.deepslate"), FALL_DEEPSLATE_BRICKS("fall.deepslate_bricks"), + FALL_DIRT_WITH_ROOTS("fall.dirt_with_roots"), FALL_DRIPSTONE_BLOCK("fall.dripstone_block"), FALL_EGG("fall.egg"), FALL_GRASS("fall.grass"), @@ -264,6 +268,7 @@ public enum Sound { HIT_CORAL("hit.coral"), HIT_DEEPSLATE("hit.deepslate"), HIT_DEEPSLATE_BRICKS("hit.deepslate_bricks"), + HIT_DIRT_WITH_ROOTS("hit.dirt_with_roots"), HIT_DRIPSTONE_BLOCK("hit.dripstone_block"), HIT_GRASS("hit.grass"), HIT_GRAVEL("hit.gravel"), @@ -318,6 +323,7 @@ public enum Sound { JUMP_CORAL("jump.coral"), JUMP_DEEPSLATE("jump.deepslate"), JUMP_DEEPSLATE_BRICKS("jump.deepslate_bricks"), + JUMP_DIRT_WITH_ROOTS("jump.dirt_with_roots"), JUMP_DRIPSTONE_BLOCK("jump.dripstone_block"), JUMP_GRASS("jump.grass"), JUMP_GRAVEL("jump.gravel"), @@ -355,6 +361,7 @@ public enum Sound { LAND_CORAL("land.coral"), LAND_DEEPSLATE("land.deepslate"), LAND_DEEPSLATE_BRICKS("land.deepslate_bricks"), + LAND_DIRT_WITH_ROOTS("land.dirt_with_roots"), LAND_DRIPSTONE_BLOCK("land.dripstone_block"), LAND_GRASS("land.grass"), LAND_GRAVEL("land.gravel"), @@ -811,6 +818,7 @@ public enum Sound { PLACE_COPPER("place.copper"), PLACE_DEEPSLATE("place.deepslate"), PLACE_DEEPSLATE_BRICKS("place.deepslate_bricks"), + PLACE_DIRT_WITH_ROOTS("place.dirt_with_roots"), PLACE_DRIPSTONE_BLOCK("place.dripstone_block"), PLACE_HANGING_ROOTS("place.hanging_roots"), PLACE_LARGE_AMETHYST_BUD("place.large_amethyst_bud"), @@ -897,6 +905,7 @@ public enum Sound { STEP_CORAL("step.coral"), STEP_DEEPSLATE("step.deepslate"), STEP_DEEPSLATE_BRICKS("step.deepslate_bricks"), + STEP_DIRT_WITH_ROOTS("step.dirt_with_roots"), STEP_DRIPSTONE_BLOCK("step.dripstone_block"), STEP_GRASS("step.grass"), STEP_GRAVEL("step.gravel"), @@ -945,6 +954,7 @@ public enum Sound { USE_CORAL("use.coral"), USE_DEEPSLATE("use.deepslate"), USE_DEEPSLATE_BRICKS("use.deepslate_bricks"), + USE_DIRT_WITH_ROOTS("use.dirt_with_roots"), USE_DRIPSTONE_BLOCK("use.dripstone_block"), USE_GRASS("use.grass"), USE_GRAVEL("use.gravel"), From ef5a21cadb64f14c814331ef59a4934bc7cdd67e Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 20 Oct 2021 13:22:15 +0300 Subject: [PATCH 230/394] Bump protocol version to 471 (1.17.40) (#1907) * Bump protocol version * Add files via upload * Add files via upload --- .../nukkit/network/protocol/ProtocolInfo.java | 6 +- src/main/resources/creative_items.json | 1200 ++++++++--------- src/main/resources/runtime_block_states.dat | Bin 431099 -> 431099 bytes 3 files changed, 601 insertions(+), 605 deletions(-) diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index a6502e875f4..a9c8120813b 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -14,12 +14,12 @@ public interface ProtocolInfo { * Actual Minecraft: PE protocol version */ @SuppressWarnings("UnnecessaryBoxing") - int CURRENT_PROTOCOL = Integer.valueOf("465"); // DO NOT REMOVE BOXING + int CURRENT_PROTOCOL = Integer.valueOf("471"); // DO NOT REMOVE BOXING List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION = "v1.17.30"; - String MINECRAFT_VERSION_NETWORK = "1.17.30"; + String MINECRAFT_VERSION = "v1.17.40"; + String MINECRAFT_VERSION_NETWORK = "1.17.40"; byte LOGIN_PACKET = 0x01; byte PLAY_STATUS_PACKET = 0x02; diff --git a/src/main/resources/creative_items.json b/src/main/resources/creative_items.json index bb73854dc0e..5bdc412a55a 100644 --- a/src/main/resources/creative_items.json +++ b/src/main/resources/creative_items.json @@ -2,39 +2,35 @@ "items" : [ { "id" : "minecraft:planks", - "blockRuntimeId" : 5794 + "blockRuntimeId" : 5797 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5795 + "blockRuntimeId" : 5798 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5796 + "blockRuntimeId" : 5799 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5797 + "blockRuntimeId" : 5800 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5798 + "blockRuntimeId" : 5801 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5799 + "blockRuntimeId" : 5802 }, { "id" : "minecraft:crimson_planks", - "blockRuntimeId" : 3839 + "blockRuntimeId" : 3840 }, { "id" : "minecraft:warped_planks", - "blockRuntimeId" : 7594 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1318 + "blockRuntimeId" : 7598 }, { "id" : "minecraft:cobblestone_wall", @@ -58,11 +54,11 @@ }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1330 + "blockRuntimeId" : 1324 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1325 + "blockRuntimeId" : 1331 }, { "id" : "minecraft:cobblestone_wall", @@ -70,55 +66,55 @@ }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1324 + "blockRuntimeId" : 1327 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1327 + "blockRuntimeId" : 1325 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1331 + "blockRuntimeId" : 1328 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1328 + "blockRuntimeId" : 1332 }, { "id" : "minecraft:cobblestone_wall", "blockRuntimeId" : 1329 }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1330 + }, { "id" : "minecraft:blackstone_wall", "blockRuntimeId" : 507 }, { "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6038 + "blockRuntimeId" : 6041 }, { "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5835 + "blockRuntimeId" : 5838 }, { "id" : "minecraft:cobbled_deepslate_wall", - "blockRuntimeId" : 1155 + "blockRuntimeId" : 1156 }, { "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4297 + "blockRuntimeId" : 4298 }, { "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6213 + "blockRuntimeId" : 6216 }, { "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4114 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4773 + "blockRuntimeId" : 4115 }, { "id" : "minecraft:fence", @@ -140,25 +136,29 @@ "id" : "minecraft:fence", "blockRuntimeId" : 4778 }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4779 + }, { "id" : "minecraft:nether_brick_fence", - "blockRuntimeId" : 5686 + "blockRuntimeId" : 5689 }, { "id" : "minecraft:crimson_fence", - "blockRuntimeId" : 3817 + "blockRuntimeId" : 3818 }, { "id" : "minecraft:warped_fence", - "blockRuntimeId" : 7572 + "blockRuntimeId" : 7576 }, { "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4779 + "blockRuntimeId" : 4780 }, { "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 7006 + "blockRuntimeId" : 7010 }, { "id" : "minecraft:birch_fence_gate", @@ -166,7 +166,7 @@ }, { "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5252 + "blockRuntimeId" : 5253 }, { "id" : "minecraft:acacia_fence_gate", @@ -174,35 +174,35 @@ }, { "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3980 + "blockRuntimeId" : 3981 }, { "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3818 + "blockRuntimeId" : 3819 }, { "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7573 + "blockRuntimeId" : 7577 }, { "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5705 + "blockRuntimeId" : 5708 }, { "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7277 + "blockRuntimeId" : 7281 }, { "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5667 + "blockRuntimeId" : 5668 }, { "id" : "minecraft:oak_stairs", - "blockRuntimeId" : 5714 + "blockRuntimeId" : 5717 }, { "id" : "minecraft:spruce_stairs", - "blockRuntimeId" : 7038 + "blockRuntimeId" : 7042 }, { "id" : "minecraft:birch_stairs", @@ -210,7 +210,7 @@ }, { "id" : "minecraft:jungle_stairs", - "blockRuntimeId" : 5284 + "blockRuntimeId" : 5285 }, { "id" : "minecraft:acacia_stairs", @@ -218,47 +218,47 @@ }, { "id" : "minecraft:dark_oak_stairs", - "blockRuntimeId" : 4012 + "blockRuntimeId" : 4013 }, { "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7183 + "blockRuntimeId" : 7187 }, { "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5675 + "blockRuntimeId" : 5676 }, { "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6707 + "blockRuntimeId" : 6710 }, { "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6899 + "blockRuntimeId" : 6903 }, { "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6634 + "blockRuntimeId" : 6637 }, { "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6891 + "blockRuntimeId" : 6895 }, { "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4988 + "blockRuntimeId" : 4989 }, { "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6383 + "blockRuntimeId" : 6386 }, { "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 4475 + "blockRuntimeId" : 4476 }, { "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6375 + "blockRuntimeId" : 6378 }, { "id" : "minecraft:andesite_stairs", @@ -266,7 +266,7 @@ }, { "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5811 + "blockRuntimeId" : 5814 }, { "id" : "minecraft:brick_stairs", @@ -274,47 +274,47 @@ }, { "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5687 + "blockRuntimeId" : 5690 }, { "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6622 + "blockRuntimeId" : 6625 }, { "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4719 + "blockRuntimeId" : 4720 }, { "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6556 + "blockRuntimeId" : 6559 }, { "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6883 + "blockRuntimeId" : 6887 }, { "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6534 + "blockRuntimeId" : 6537 }, { "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6446 + "blockRuntimeId" : 6449 }, { "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 4036 + "blockRuntimeId" : 4037 }, { "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6438 + "blockRuntimeId" : 6441 }, { "id" : "minecraft:crimson_stairs", - "blockRuntimeId" : 3859 + "blockRuntimeId" : 3860 }, { "id" : "minecraft:warped_stairs", - "blockRuntimeId" : 7614 + "blockRuntimeId" : 7618 }, { "id" : "minecraft:blackstone_stairs", @@ -322,59 +322,59 @@ }, { "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6030 + "blockRuntimeId" : 6033 }, { "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5827 + "blockRuntimeId" : 5830 }, { "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3912 + "blockRuntimeId" : 3913 }, { "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4755 + "blockRuntimeId" : 4756 }, { "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7741 + "blockRuntimeId" : 7745 }, { "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5755 + "blockRuntimeId" : 5758 }, { "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7685 + "blockRuntimeId" : 7689 }, { "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7699 + "blockRuntimeId" : 7703 }, { "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7727 + "blockRuntimeId" : 7731 }, { "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7713 + "blockRuntimeId" : 7717 }, { "id" : "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId" : 1147 + "blockRuntimeId" : 1148 }, { "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4289 + "blockRuntimeId" : 4290 }, { "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6205 + "blockRuntimeId" : 6208 }, { "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4106 + "blockRuntimeId" : 4107 }, { "id" : "minecraft:wooden_door" @@ -405,11 +405,11 @@ }, { "id" : "minecraft:trapdoor", - "blockRuntimeId" : 7359 + "blockRuntimeId" : 7363 }, { "id" : "minecraft:spruce_trapdoor", - "blockRuntimeId" : 7062 + "blockRuntimeId" : 7066 }, { "id" : "minecraft:birch_trapdoor", @@ -417,7 +417,7 @@ }, { "id" : "minecraft:jungle_trapdoor", - "blockRuntimeId" : 5308 + "blockRuntimeId" : 5309 }, { "id" : "minecraft:acacia_trapdoor", @@ -425,315 +425,315 @@ }, { "id" : "minecraft:dark_oak_trapdoor", - "blockRuntimeId" : 4020 + "blockRuntimeId" : 4021 }, { "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5167 + "blockRuntimeId" : 5168 }, { "id" : "minecraft:crimson_trapdoor", - "blockRuntimeId" : 3886 + "blockRuntimeId" : 3887 }, { "id" : "minecraft:warped_trapdoor", - "blockRuntimeId" : 7641 + "blockRuntimeId" : 7645 }, { "id" : "minecraft:iron_bars", - "blockRuntimeId" : 5132 + "blockRuntimeId" : 5133 }, { "id" : "minecraft:glass", - "blockRuntimeId" : 4882 + "blockRuntimeId" : 4883 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7084 + "blockRuntimeId" : 7088 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7092 + "blockRuntimeId" : 7096 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7091 + "blockRuntimeId" : 7095 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7099 + "blockRuntimeId" : 7103 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7096 + "blockRuntimeId" : 7100 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7098 + "blockRuntimeId" : 7102 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7085 + "blockRuntimeId" : 7089 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7088 + "blockRuntimeId" : 7092 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7089 + "blockRuntimeId" : 7093 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7097 + "blockRuntimeId" : 7101 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7093 + "blockRuntimeId" : 7097 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7087 + "blockRuntimeId" : 7091 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7095 + "blockRuntimeId" : 7099 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7094 + "blockRuntimeId" : 7098 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7086 + "blockRuntimeId" : 7090 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7090 + "blockRuntimeId" : 7094 }, { "id" : "minecraft:tinted_glass", - "blockRuntimeId" : 7348 + "blockRuntimeId" : 7352 }, { "id" : "minecraft:glass_pane", - "blockRuntimeId" : 4883 + "blockRuntimeId" : 4884 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7100 + "blockRuntimeId" : 7104 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7108 + "blockRuntimeId" : 7112 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7107 + "blockRuntimeId" : 7111 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7115 + "blockRuntimeId" : 7119 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7112 + "blockRuntimeId" : 7116 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7114 + "blockRuntimeId" : 7118 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7101 + "blockRuntimeId" : 7105 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7104 + "blockRuntimeId" : 7108 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7105 + "blockRuntimeId" : 7109 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7113 + "blockRuntimeId" : 7117 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7109 + "blockRuntimeId" : 7113 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7103 + "blockRuntimeId" : 7107 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7111 + "blockRuntimeId" : 7115 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7110 + "blockRuntimeId" : 7114 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7102 + "blockRuntimeId" : 7106 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7106 + "blockRuntimeId" : 7110 }, { "id" : "minecraft:ladder", - "blockRuntimeId" : 5356 + "blockRuntimeId" : 5357 }, { "id" : "minecraft:scaffolding", - "blockRuntimeId" : 6727 + "blockRuntimeId" : 6730 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7219 + "blockRuntimeId" : 7223 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7269 + "blockRuntimeId" : 7273 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7222 + "blockRuntimeId" : 7226 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7240 + "blockRuntimeId" : 7244 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7899 + "blockRuntimeId" : 7903 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7900 + "blockRuntimeId" : 7904 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7901 + "blockRuntimeId" : 7905 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7902 + "blockRuntimeId" : 7906 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7903 + "blockRuntimeId" : 7907 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7904 + "blockRuntimeId" : 7908 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7224 + "blockRuntimeId" : 7228 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7267 + "blockRuntimeId" : 7271 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7220 + "blockRuntimeId" : 7224 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7270 + "blockRuntimeId" : 7274 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7241 + "blockRuntimeId" : 7245 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7235 + "blockRuntimeId" : 7239 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7271 + "blockRuntimeId" : 7275 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7252 + "blockRuntimeId" : 7256 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7257 + "blockRuntimeId" : 7261 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7258 + "blockRuntimeId" : 7262 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7255 + "blockRuntimeId" : 7259 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7256 + "blockRuntimeId" : 7260 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7254 + "blockRuntimeId" : 7258 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7253 + "blockRuntimeId" : 7257 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7223 + "blockRuntimeId" : 7227 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7226 + "blockRuntimeId" : 7230 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7242 + "blockRuntimeId" : 7246 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7251 + "blockRuntimeId" : 7255 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7225 + "blockRuntimeId" : 7229 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7268 + "blockRuntimeId" : 7272 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7236 + "blockRuntimeId" : 7240 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7237 + "blockRuntimeId" : 7241 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7238 + "blockRuntimeId" : 7242 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7239 + "blockRuntimeId" : 7243 }, { "id" : "minecraft:crimson_slab", - "blockRuntimeId" : 3857 + "blockRuntimeId" : 3858 }, { "id" : "minecraft:warped_slab", - "blockRuntimeId" : 7612 + "blockRuntimeId" : 7616 }, { "id" : "minecraft:blackstone_slab", @@ -741,59 +741,59 @@ }, { "id" : "minecraft:polished_blackstone_slab", - "blockRuntimeId" : 6028 + "blockRuntimeId" : 6031 }, { "id" : "minecraft:polished_blackstone_brick_slab", - "blockRuntimeId" : 5825 + "blockRuntimeId" : 5828 }, { "id" : "minecraft:cut_copper_slab", - "blockRuntimeId" : 3910 + "blockRuntimeId" : 3911 }, { "id" : "minecraft:exposed_cut_copper_slab", - "blockRuntimeId" : 4753 + "blockRuntimeId" : 4754 }, { "id" : "minecraft:weathered_cut_copper_slab", - "blockRuntimeId" : 7739 + "blockRuntimeId" : 7743 }, { "id" : "minecraft:oxidized_cut_copper_slab", - "blockRuntimeId" : 5753 + "blockRuntimeId" : 5756 }, { "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7683 + "blockRuntimeId" : 7687 }, { "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7697 + "blockRuntimeId" : 7701 }, { "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7725 + "blockRuntimeId" : 7729 }, { "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7711 + "blockRuntimeId" : 7715 }, { "id" : "minecraft:cobbled_deepslate_slab", - "blockRuntimeId" : 1145 + "blockRuntimeId" : 1146 }, { "id" : "minecraft:polished_deepslate_slab", - "blockRuntimeId" : 6203 + "blockRuntimeId" : 6206 }, { "id" : "minecraft:deepslate_tile_slab", - "blockRuntimeId" : 4287 + "blockRuntimeId" : 4288 }, { "id" : "minecraft:deepslate_brick_slab", - "blockRuntimeId" : 4104 + "blockRuntimeId" : 4105 }, { "id" : "minecraft:brick_block", @@ -805,47 +805,47 @@ }, { "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3768 + "blockRuntimeId" : 3769 }, { "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6554 + "blockRuntimeId" : 6557 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7285 + "blockRuntimeId" : 7289 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7286 + "blockRuntimeId" : 7290 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7287 + "blockRuntimeId" : 7291 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7288 + "blockRuntimeId" : 7292 }, { "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4727 + "blockRuntimeId" : 4728 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6437 + "blockRuntimeId" : 6440 }, { "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5997 + "blockRuntimeId" : 6000 }, { "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3769 + "blockRuntimeId" : 3770 }, { "id" : "minecraft:gilded_blackstone", - "blockRuntimeId" : 4881 + "blockRuntimeId" : 4882 }, { "id" : "minecraft:chiseled_polished_blackstone", @@ -853,19 +853,19 @@ }, { "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4459 + "blockRuntimeId" : 4460 }, { "id" : "minecraft:cracked_deepslate_tiles", - "blockRuntimeId" : 3767 + "blockRuntimeId" : 3768 }, { "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4276 + "blockRuntimeId" : 4277 }, { "id" : "minecraft:cracked_deepslate_bricks", - "blockRuntimeId" : 3766 + "blockRuntimeId" : 3767 }, { "id" : "minecraft:chiseled_deepslate", @@ -873,195 +873,195 @@ }, { "id" : "minecraft:cobblestone", - "blockRuntimeId" : 1317 + "blockRuntimeId" : 1318 }, { "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5666 + "blockRuntimeId" : 5667 }, { "id" : "minecraft:cobbled_deepslate", - "blockRuntimeId" : 1142 + "blockRuntimeId" : 1143 }, { "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6907 + "blockRuntimeId" : 6911 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6703 + "blockRuntimeId" : 6706 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6704 + "blockRuntimeId" : 6707 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6705 + "blockRuntimeId" : 6708 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6706 + "blockRuntimeId" : 6709 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6630 + "blockRuntimeId" : 6633 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6631 + "blockRuntimeId" : 6634 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6632 + "blockRuntimeId" : 6635 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6633 + "blockRuntimeId" : 6636 }, { "id" : "minecraft:coal_block", - "blockRuntimeId" : 1140 + "blockRuntimeId" : 1141 }, { "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 4583 + "blockRuntimeId" : 4584 }, { "id" : "minecraft:gold_block", - "blockRuntimeId" : 4974 + "blockRuntimeId" : 4975 }, { "id" : "minecraft:iron_block", - "blockRuntimeId" : 5133 + "blockRuntimeId" : 5134 }, { "id" : "minecraft:copper_block", - "blockRuntimeId" : 3676 + "blockRuntimeId" : 3677 }, { "id" : "minecraft:exposed_copper", - "blockRuntimeId" : 4751 + "blockRuntimeId" : 4752 }, { "id" : "minecraft:weathered_copper", - "blockRuntimeId" : 7737 + "blockRuntimeId" : 7741 }, { "id" : "minecraft:oxidized_copper", - "blockRuntimeId" : 5751 + "blockRuntimeId" : 5754 }, { "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7681 + "blockRuntimeId" : 7685 }, { "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7695 + "blockRuntimeId" : 7699 }, { "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7723 + "blockRuntimeId" : 7727 }, { "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7709 + "blockRuntimeId" : 7713 }, { "id" : "minecraft:cut_copper", - "blockRuntimeId" : 3909 + "blockRuntimeId" : 3910 }, { "id" : "minecraft:exposed_cut_copper", - "blockRuntimeId" : 4752 + "blockRuntimeId" : 4753 }, { "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7738 + "blockRuntimeId" : 7742 }, { "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5752 + "blockRuntimeId" : 5755 }, { "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7682 + "blockRuntimeId" : 7686 }, { "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7696 + "blockRuntimeId" : 7700 }, { "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7724 + "blockRuntimeId" : 7728 }, { "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7710 + "blockRuntimeId" : 7714 }, { "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4716 + "blockRuntimeId" : 4717 }, { "id" : "minecraft:diamond_block", - "blockRuntimeId" : 4473 + "blockRuntimeId" : 4474 }, { "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5364 + "blockRuntimeId" : 5365 }, { "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6576 + "blockRuntimeId" : 6579 }, { "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6574 + "blockRuntimeId" : 6577 }, { "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6575 + "blockRuntimeId" : 6578 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6542 + "blockRuntimeId" : 6545 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6544 + "blockRuntimeId" : 6547 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6543 + "blockRuntimeId" : 6546 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6545 + "blockRuntimeId" : 6548 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6435 + "blockRuntimeId" : 6438 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6436 + "blockRuntimeId" : 6439 }, { "id" : "minecraft:slime", - "blockRuntimeId" : 6860 + "blockRuntimeId" : 6864 }, { "id" : "minecraft:honey_block", - "blockRuntimeId" : 5111 + "blockRuntimeId" : 5112 }, { "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5112 + "blockRuntimeId" : 5113 }, { "id" : "minecraft:hay_block", - "blockRuntimeId" : 5083 + "blockRuntimeId" : 5084 }, { "id" : "minecraft:bone_block", @@ -1069,83 +1069,83 @@ }, { "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5685 + "blockRuntimeId" : 5688 }, { "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6621 + "blockRuntimeId" : 6624 }, { "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5702 + "blockRuntimeId" : 5705 }, { "id" : "minecraft:lodestone", - "blockRuntimeId" : 5562 + "blockRuntimeId" : 5563 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7911 + "blockRuntimeId" : 7915 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7923 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7922 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7930 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7927 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7929 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7912 + "blockRuntimeId" : 7916 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7919 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7920 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7928 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7924 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 7918 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7926 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7925 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 7917 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7921 }, { "id" : "minecraft:carpet", @@ -1213,131 +1213,131 @@ }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3659 + "blockRuntimeId" : 3660 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3667 + "blockRuntimeId" : 3668 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3666 + "blockRuntimeId" : 3667 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3674 + "blockRuntimeId" : 3675 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3671 + "blockRuntimeId" : 3672 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3673 + "blockRuntimeId" : 3674 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3660 + "blockRuntimeId" : 3661 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3663 + "blockRuntimeId" : 3664 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3664 + "blockRuntimeId" : 3665 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3672 + "blockRuntimeId" : 3673 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3668 + "blockRuntimeId" : 3669 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3662 + "blockRuntimeId" : 3663 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3670 + "blockRuntimeId" : 3671 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3669 + "blockRuntimeId" : 3670 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3661 + "blockRuntimeId" : 3662 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3665 + "blockRuntimeId" : 3666 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3643 + "blockRuntimeId" : 3644 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3651 + "blockRuntimeId" : 3652 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3650 + "blockRuntimeId" : 3651 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3658 + "blockRuntimeId" : 3659 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3655 + "blockRuntimeId" : 3656 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3657 + "blockRuntimeId" : 3658 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3644 + "blockRuntimeId" : 3645 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3647 + "blockRuntimeId" : 3648 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3648 + "blockRuntimeId" : 3649 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3656 + "blockRuntimeId" : 3657 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3652 + "blockRuntimeId" : 3653 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3646 + "blockRuntimeId" : 3647 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3654 + "blockRuntimeId" : 3655 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3653 + "blockRuntimeId" : 3654 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3645 + "blockRuntimeId" : 3646 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3649 + "blockRuntimeId" : 3650 }, { "id" : "minecraft:clay", @@ -1345,83 +1345,83 @@ }, { "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5082 + "blockRuntimeId" : 5083 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7116 + "blockRuntimeId" : 7120 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7124 + "blockRuntimeId" : 7128 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7123 + "blockRuntimeId" : 7127 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7131 + "blockRuntimeId" : 7135 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7128 + "blockRuntimeId" : 7132 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7130 + "blockRuntimeId" : 7134 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7117 + "blockRuntimeId" : 7121 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7120 + "blockRuntimeId" : 7124 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7121 + "blockRuntimeId" : 7125 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7129 + "blockRuntimeId" : 7133 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7125 + "blockRuntimeId" : 7129 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7119 + "blockRuntimeId" : 7123 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7127 + "blockRuntimeId" : 7131 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7126 + "blockRuntimeId" : 7130 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7118 + "blockRuntimeId" : 7122 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7122 + "blockRuntimeId" : 7126 }, { "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7796 + "blockRuntimeId" : 7800 }, { "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6846 }, { "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 5009 + "blockRuntimeId" : 5010 }, { "id" : "minecraft:black_glazed_terracotta", @@ -1433,31 +1433,31 @@ }, { "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6598 + "blockRuntimeId" : 6601 }, { "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5745 + "blockRuntimeId" : 5748 }, { "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7938 + "blockRuntimeId" : 7942 }, { "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5531 + "blockRuntimeId" : 5532 }, { "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5025 + "blockRuntimeId" : 5026 }, { "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3930 + "blockRuntimeId" : 3931 }, { "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5483 + "blockRuntimeId" : 5484 }, { "id" : "minecraft:blue_glazed_terracotta", @@ -1465,43 +1465,43 @@ }, { "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6516 + "blockRuntimeId" : 6519 }, { "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5595 + "blockRuntimeId" : 5596 }, { "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5776 + "blockRuntimeId" : 5779 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6522 + "blockRuntimeId" : 6525 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6524 + "blockRuntimeId" : 6527 }, { "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5701 + "blockRuntimeId" : 5704 }, { "id" : "minecraft:warped_wart_block", - "blockRuntimeId" : 7663 + "blockRuntimeId" : 7667 }, { "id" : "minecraft:shroomlight", - "blockRuntimeId" : 6825 + "blockRuntimeId" : 6829 }, { "id" : "minecraft:crimson_nylium", - "blockRuntimeId" : 3838 + "blockRuntimeId" : 3839 }, { "id" : "minecraft:warped_nylium", - "blockRuntimeId" : 7593 + "blockRuntimeId" : 7597 }, { "id" : "minecraft:basalt", @@ -1509,87 +1509,87 @@ }, { "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5819 + "blockRuntimeId" : 5822 }, { "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6882 + "blockRuntimeId" : 6886 }, { "id" : "minecraft:soul_soil", - "blockRuntimeId" : 6952 + "blockRuntimeId" : 6956 }, { "id" : "minecraft:dirt", - "blockRuntimeId" : 4483 + "blockRuntimeId" : 4484 }, { "id" : "minecraft:dirt", - "blockRuntimeId" : 4484 + "blockRuntimeId" : 4485 }, { "id" : "minecraft:farmland", - "blockRuntimeId" : 4765 + "blockRuntimeId" : 4766 }, { "id" : "minecraft:grass", - "blockRuntimeId" : 4996 + "blockRuntimeId" : 4997 }, { "id" : "minecraft:grass_path", - "blockRuntimeId" : 4997 + "blockRuntimeId" : 4998 }, { "id" : "minecraft:podzol", - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5803 }, { "id" : "minecraft:mycelium", - "blockRuntimeId" : 5684 + "blockRuntimeId" : 5685 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7176 + "blockRuntimeId" : 7180 }, { "id" : "minecraft:iron_ore", - "blockRuntimeId" : 5166 + "blockRuntimeId" : 5167 }, { "id" : "minecraft:gold_ore", - "blockRuntimeId" : 4975 + "blockRuntimeId" : 4976 }, { "id" : "minecraft:diamond_ore", - "blockRuntimeId" : 4474 + "blockRuntimeId" : 4475 }, { "id" : "minecraft:lapis_ore", - "blockRuntimeId" : 5365 + "blockRuntimeId" : 5366 }, { "id" : "minecraft:redstone_ore", - "blockRuntimeId" : 6644 + "blockRuntimeId" : 6647 }, { "id" : "minecraft:coal_ore", - "blockRuntimeId" : 1141 + "blockRuntimeId" : 1142 }, { "id" : "minecraft:copper_ore", - "blockRuntimeId" : 3677 + "blockRuntimeId" : 3678 }, { "id" : "minecraft:emerald_ore", - "blockRuntimeId" : 4717 + "blockRuntimeId" : 4718 }, { "id" : "minecraft:quartz_ore", - "blockRuntimeId" : 6555 + "blockRuntimeId" : 6558 }, { "id" : "minecraft:nether_gold_ore", - "blockRuntimeId" : 5695 + "blockRuntimeId" : 5698 }, { "id" : "minecraft:ancient_debris", @@ -1597,51 +1597,51 @@ }, { "id" : "minecraft:deepslate_iron_ore", - "blockRuntimeId" : 4282 + "blockRuntimeId" : 4283 }, { "id" : "minecraft:deepslate_gold_ore", - "blockRuntimeId" : 4281 + "blockRuntimeId" : 4282 }, { "id" : "minecraft:deepslate_diamond_ore", - "blockRuntimeId" : 4279 + "blockRuntimeId" : 4280 }, { "id" : "minecraft:deepslate_lapis_ore", - "blockRuntimeId" : 4283 + "blockRuntimeId" : 4284 }, { "id" : "minecraft:deepslate_redstone_ore", - "blockRuntimeId" : 4284 + "blockRuntimeId" : 4285 }, { "id" : "minecraft:deepslate_emerald_ore", - "blockRuntimeId" : 4280 + "blockRuntimeId" : 4281 }, { "id" : "minecraft:deepslate_coal_ore", - "blockRuntimeId" : 4277 + "blockRuntimeId" : 4278 }, { "id" : "minecraft:deepslate_copper_ore", - "blockRuntimeId" : 4278 + "blockRuntimeId" : 4279 }, { "id" : "minecraft:gravel", - "blockRuntimeId" : 4998 + "blockRuntimeId" : 4999 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7177 + "blockRuntimeId" : 7181 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7179 + "blockRuntimeId" : 7183 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7181 + "blockRuntimeId" : 7185 }, { "id" : "minecraft:blackstone", @@ -1649,35 +1649,35 @@ }, { "id" : "minecraft:deepslate", - "blockRuntimeId" : 4099 + "blockRuntimeId" : 4100 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7178 + "blockRuntimeId" : 7182 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7180 + "blockRuntimeId" : 7184 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7182 + "blockRuntimeId" : 7186 }, { "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5822 + "blockRuntimeId" : 5825 }, { "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6200 + "blockRuntimeId" : 6203 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6701 + "blockRuntimeId" : 6704 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6702 + "blockRuntimeId" : 6705 }, { "id" : "minecraft:cactus", @@ -1685,135 +1685,131 @@ }, { "id" : "minecraft:log", - "blockRuntimeId" : 5563 + "blockRuntimeId" : 5564 }, { "id" : "minecraft:stripped_oak_log", - "blockRuntimeId" : 7315 + "blockRuntimeId" : 7319 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5564 + "blockRuntimeId" : 5565 }, { "id" : "minecraft:stripped_spruce_log", - "blockRuntimeId" : 7318 + "blockRuntimeId" : 7322 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5565 + "blockRuntimeId" : 5566 }, { "id" : "minecraft:stripped_birch_log", - "blockRuntimeId" : 7300 + "blockRuntimeId" : 7304 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5566 + "blockRuntimeId" : 5567 }, { "id" : "minecraft:stripped_jungle_log", - "blockRuntimeId" : 7312 + "blockRuntimeId" : 7316 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5575 + "blockRuntimeId" : 5576 }, { "id" : "minecraft:stripped_acacia_log", - "blockRuntimeId" : 7297 + "blockRuntimeId" : 7301 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5576 + "blockRuntimeId" : 5577 }, { "id" : "minecraft:stripped_dark_oak_log", - "blockRuntimeId" : 7309 + "blockRuntimeId" : 7313 }, { "id" : "minecraft:crimson_stem", - "blockRuntimeId" : 3883 + "blockRuntimeId" : 3884 }, { "id" : "minecraft:stripped_crimson_stem", - "blockRuntimeId" : 7306 + "blockRuntimeId" : 7310 }, { "id" : "minecraft:warped_stem", - "blockRuntimeId" : 7638 + "blockRuntimeId" : 7642 }, { "id" : "minecraft:stripped_warped_stem", - "blockRuntimeId" : 7324 + "blockRuntimeId" : 7328 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7803 + "blockRuntimeId" : 7807 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7809 + "blockRuntimeId" : 7813 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7804 + "blockRuntimeId" : 7808 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7810 + "blockRuntimeId" : 7814 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7805 + "blockRuntimeId" : 7809 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7811 + "blockRuntimeId" : 7815 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7806 + "blockRuntimeId" : 7810 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7812 + "blockRuntimeId" : 7816 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7807 + "blockRuntimeId" : 7811 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7813 + "blockRuntimeId" : 7817 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7808 + "blockRuntimeId" : 7812 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7814 + "blockRuntimeId" : 7818 }, { "id" : "minecraft:crimson_hyphae", - "blockRuntimeId" : 3835 + "blockRuntimeId" : 3836 }, { "id" : "minecraft:stripped_crimson_hyphae", - "blockRuntimeId" : 7303 + "blockRuntimeId" : 7307 }, { "id" : "minecraft:warped_hyphae", - "blockRuntimeId" : 7590 + "blockRuntimeId" : 7594 }, { "id" : "minecraft:stripped_warped_hyphae", - "blockRuntimeId" : 7321 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5409 + "blockRuntimeId" : 7325 }, { "id" : "minecraft:leaves", @@ -1828,13 +1824,17 @@ "blockRuntimeId" : 5412 }, { - "id" : "minecraft:leaves2", - "blockRuntimeId" : 5425 + "id" : "minecraft:leaves", + "blockRuntimeId" : 5413 }, { "id" : "minecraft:leaves2", "blockRuntimeId" : 5426 }, + { + "id" : "minecraft:leaves2", + "blockRuntimeId" : 5427 + }, { "id" : "minecraft:azalea_leaves", "blockRuntimeId" : 169 @@ -1845,27 +1845,27 @@ }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6715 + "blockRuntimeId" : 6718 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6716 + "blockRuntimeId" : 6719 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6717 + "blockRuntimeId" : 6720 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6718 + "blockRuntimeId" : 6721 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6719 + "blockRuntimeId" : 6722 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6720 + "blockRuntimeId" : 6723 }, { "id" : "minecraft:bee_nest", @@ -1912,7 +1912,7 @@ }, { "id" : "minecraft:melon_block", - "blockRuntimeId" : 5608 + "blockRuntimeId" : 5609 }, { "id" : "minecraft:melon_slice" @@ -1928,7 +1928,7 @@ }, { "id" : "minecraft:pumpkin", - "blockRuntimeId" : 6454 + "blockRuntimeId" : 6457 }, { "id" : "minecraft:carved_pumpkin", @@ -1936,140 +1936,128 @@ }, { "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5550 + "blockRuntimeId" : 5551 }, { "id" : "minecraft:honeycomb" }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7345 + "blockRuntimeId" : 7349 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4503 + "blockRuntimeId" : 4504 }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7344 + "blockRuntimeId" : 7348 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4502 + "blockRuntimeId" : 4503 }, { "id" : "minecraft:nether_sprouts" }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3681 + "blockRuntimeId" : 3682 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3679 + "blockRuntimeId" : 3680 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3680 + "blockRuntimeId" : 3681 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3678 + "blockRuntimeId" : 3679 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3682 + "blockRuntimeId" : 3683 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3686 + "blockRuntimeId" : 3687 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3684 + "blockRuntimeId" : 3685 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3685 + "blockRuntimeId" : 3686 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3683 + "blockRuntimeId" : 3684 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3687 + "blockRuntimeId" : 3688 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3701 + "blockRuntimeId" : 3702 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3699 + "blockRuntimeId" : 3700 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3700 + "blockRuntimeId" : 3701 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3698 + "blockRuntimeId" : 3699 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3702 + "blockRuntimeId" : 3703 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3711 + "blockRuntimeId" : 3712 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3709 + "blockRuntimeId" : 3710 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3710 + "blockRuntimeId" : 3711 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3708 + "blockRuntimeId" : 3709 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3712 + "blockRuntimeId" : 3713 }, { "id" : "minecraft:kelp" }, { "id" : "minecraft:seagrass", - "blockRuntimeId" : 6821 + "blockRuntimeId" : 6825 }, { "id" : "minecraft:crimson_roots", - "blockRuntimeId" : 3856 + "blockRuntimeId" : 3857 }, { "id" : "minecraft:warped_roots", - "blockRuntimeId" : 7611 + "blockRuntimeId" : 7615 }, { "id" : "minecraft:yellow_flower", - "blockRuntimeId" : 7937 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6587 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6588 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6589 + "blockRuntimeId" : 7941 }, { "id" : "minecraft:red_flower", @@ -2104,8 +2092,16 @@ "blockRuntimeId" : 6597 }, { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4500 + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6598 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6599 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6600 }, { "id" : "minecraft:double_plant", @@ -2113,15 +2109,19 @@ }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4504 + "blockRuntimeId" : 4502 }, { "id" : "minecraft:double_plant", "blockRuntimeId" : 4505 }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4506 + }, { "id" : "minecraft:wither_rose", - "blockRuntimeId" : 7802 + "blockRuntimeId" : 7806 }, { "id" : "minecraft:white_dye" @@ -2188,23 +2188,23 @@ }, { "id" : "minecraft:vine", - "blockRuntimeId" : 7498 + "blockRuntimeId" : 7502 }, { "id" : "minecraft:weeping_vines", - "blockRuntimeId" : 7752 + "blockRuntimeId" : 7756 }, { "id" : "minecraft:twisting_vines", - "blockRuntimeId" : 7426 + "blockRuntimeId" : 7430 }, { "id" : "minecraft:waterlily", - "blockRuntimeId" : 7680 + "blockRuntimeId" : 7684 }, { "id" : "minecraft:deadbush", - "blockRuntimeId" : 4098 + "blockRuntimeId" : 4099 }, { "id" : "minecraft:bamboo", @@ -2212,15 +2212,15 @@ }, { "id" : "minecraft:snow", - "blockRuntimeId" : 6908 + "blockRuntimeId" : 6912 }, { "id" : "minecraft:ice", - "blockRuntimeId" : 5125 + "blockRuntimeId" : 5126 }, { "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5765 + "blockRuntimeId" : 5768 }, { "id" : "minecraft:blue_ice", @@ -2228,35 +2228,31 @@ }, { "id" : "minecraft:snow_layer", - "blockRuntimeId" : 6909 + "blockRuntimeId" : 6913 }, { "id" : "minecraft:pointed_dripstone", - "blockRuntimeId" : 5806 - }, - { - "id" : "minecraft:sculk_sensor", - "blockRuntimeId" : 6745 + "blockRuntimeId" : 5809 }, { "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4584 + "blockRuntimeId" : 4585 }, { "id" : "minecraft:moss_carpet", - "blockRuntimeId" : 5665 + "blockRuntimeId" : 5666 }, { "id" : "minecraft:moss_block", - "blockRuntimeId" : 5664 + "blockRuntimeId" : 5665 }, { "id" : "minecraft:dirt_with_roots", - "blockRuntimeId" : 4485 + "blockRuntimeId" : 4486 }, { "id" : "minecraft:hanging_roots", - "blockRuntimeId" : 5047 + "blockRuntimeId" : 5048 }, { "id" : "minecraft:big_dripleaf", @@ -2264,11 +2260,11 @@ }, { "id" : "minecraft:small_dripleaf_block", - "blockRuntimeId" : 6874 + "blockRuntimeId" : 6878 }, { "id" : "minecraft:spore_blossom", - "blockRuntimeId" : 6961 + "blockRuntimeId" : 6965 }, { "id" : "minecraft:azalea", @@ -2276,11 +2272,11 @@ }, { "id" : "minecraft:flowering_azalea", - "blockRuntimeId" : 4814 + "blockRuntimeId" : 4815 }, { "id" : "minecraft:glow_lichen", - "blockRuntimeId" : 4971 + "blockRuntimeId" : 4972 }, { "id" : "minecraft:amethyst_block", @@ -2296,19 +2292,19 @@ }, { "id" : "minecraft:large_amethyst_bud", - "blockRuntimeId" : 5366 + "blockRuntimeId" : 5367 }, { "id" : "minecraft:medium_amethyst_bud", - "blockRuntimeId" : 5602 + "blockRuntimeId" : 5603 }, { "id" : "minecraft:small_amethyst_bud", - "blockRuntimeId" : 6861 + "blockRuntimeId" : 6865 }, { "id" : "minecraft:tuff", - "blockRuntimeId" : 7413 + "blockRuntimeId" : 7417 }, { "id" : "minecraft:calcite", @@ -2347,15 +2343,15 @@ }, { "id" : "minecraft:red_mushroom", - "blockRuntimeId" : 6604 + "blockRuntimeId" : 6607 }, { "id" : "minecraft:crimson_fungus", - "blockRuntimeId" : 3834 + "blockRuntimeId" : 3835 }, { "id" : "minecraft:warped_fungus", - "blockRuntimeId" : 7589 + "blockRuntimeId" : 7593 }, { "id" : "minecraft:brown_mushroom_block", @@ -2363,7 +2359,7 @@ }, { "id" : "minecraft:red_mushroom_block", - "blockRuntimeId" : 6619 + "blockRuntimeId" : 6622 }, { "id" : "minecraft:brown_mushroom_block", @@ -2390,17 +2386,13 @@ }, { "id" : "minecraft:web", - "blockRuntimeId" : 7751 + "blockRuntimeId" : 7755 }, { "id" : "minecraft:spider_eye" }, { "id" : "minecraft:mob_spawner", - "blockRuntimeId" : 5657 - }, - { - "id" : "minecraft:monster_egg", "blockRuntimeId" : 5658 }, { @@ -2423,17 +2415,21 @@ "id" : "minecraft:monster_egg", "blockRuntimeId" : 5663 }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5664 + }, { "id" : "minecraft:infested_deepslate", - "blockRuntimeId" : 5126 + "blockRuntimeId" : 5127 }, { "id" : "minecraft:dragon_egg", - "blockRuntimeId" : 4582 + "blockRuntimeId" : 4583 }, { "id" : "minecraft:turtle_egg", - "blockRuntimeId" : 7414 + "blockRuntimeId" : 7418 }, { "id" : "minecraft:chicken_spawn_egg" @@ -2635,11 +2631,11 @@ }, { "id" : "minecraft:obsidian", - "blockRuntimeId" : 5734 + "blockRuntimeId" : 5737 }, { "id" : "minecraft:crying_obsidian", - "blockRuntimeId" : 3908 + "blockRuntimeId" : 3909 }, { "id" : "minecraft:bedrock", @@ -2647,22 +2643,22 @@ }, { "id" : "minecraft:soul_sand", - "blockRuntimeId" : 6951 + "blockRuntimeId" : 6955 }, { "id" : "minecraft:netherrack", - "blockRuntimeId" : 5703 + "blockRuntimeId" : 5706 }, { "id" : "minecraft:magma", - "blockRuntimeId" : 5601 + "blockRuntimeId" : 5602 }, { "id" : "minecraft:nether_wart" }, { "id" : "minecraft:end_stone", - "blockRuntimeId" : 4744 + "blockRuntimeId" : 4745 }, { "id" : "minecraft:chorus_flower", @@ -2680,15 +2676,11 @@ }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6959 + "blockRuntimeId" : 6963 }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6960 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3688 + "blockRuntimeId" : 6964 }, { "id" : "minecraft:coral_block", @@ -2726,6 +2718,10 @@ "id" : "minecraft:coral_block", "blockRuntimeId" : 3697 }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3698 + }, { "id" : "minecraft:leather_helmet" }, @@ -3751,23 +3747,23 @@ }, { "id" : "minecraft:torch", - "blockRuntimeId" : 7353 + "blockRuntimeId" : 7357 }, { "id" : "minecraft:soul_torch", - "blockRuntimeId" : 6953 + "blockRuntimeId" : 6957 }, { "id" : "minecraft:sea_pickle", - "blockRuntimeId" : 6813 + "blockRuntimeId" : 6817 }, { "id" : "minecraft:lantern", - "blockRuntimeId" : 5362 + "blockRuntimeId" : 5363 }, { "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6949 + "blockRuntimeId" : 6953 }, { "id" : "minecraft:candle", @@ -3775,47 +3771,47 @@ }, { "id" : "minecraft:white_candle", - "blockRuntimeId" : 7786 + "blockRuntimeId" : 7790 }, { "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5735 + "blockRuntimeId" : 5738 }, { "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5585 + "blockRuntimeId" : 5586 }, { "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5473 + "blockRuntimeId" : 5474 }, { "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7931 }, { "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5521 + "blockRuntimeId" : 5522 }, { "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5766 + "blockRuntimeId" : 5769 }, { "id" : "minecraft:gray_candle", - "blockRuntimeId" : 4999 + "blockRuntimeId" : 5000 }, { "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5489 + "blockRuntimeId" : 5490 }, { "id" : "minecraft:cyan_candle", - "blockRuntimeId" : 3920 + "blockRuntimeId" : 3921 }, { "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6506 + "blockRuntimeId" : 6509 }, { "id" : "minecraft:blue_candle", @@ -3827,11 +3823,11 @@ }, { "id" : "minecraft:green_candle", - "blockRuntimeId" : 5015 + "blockRuntimeId" : 5016 }, { "id" : "minecraft:red_candle", - "blockRuntimeId" : 6577 + "blockRuntimeId" : 6580 }, { "id" : "minecraft:black_candle", @@ -3839,7 +3835,7 @@ }, { "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3770 + "blockRuntimeId" : 3771 }, { "id" : "minecraft:cartography_table", @@ -3847,11 +3843,11 @@ }, { "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4811 + "blockRuntimeId" : 4812 }, { "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6875 + "blockRuntimeId" : 6879 }, { "id" : "minecraft:beehive", @@ -3865,7 +3861,7 @@ }, { "id" : "minecraft:furnace", - "blockRuntimeId" : 4875 + "blockRuntimeId" : 4876 }, { "id" : "minecraft:blast_furnace", @@ -3873,11 +3869,11 @@ }, { "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 + "blockRuntimeId" : 6880 }, { "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6696 + "blockRuntimeId" : 6699 }, { "id" : "minecraft:brewing_stand" @@ -3896,11 +3892,11 @@ }, { "id" : "minecraft:grindstone", - "blockRuntimeId" : 5031 + "blockRuntimeId" : 5032 }, { "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4718 + "blockRuntimeId" : 4719 }, { "id" : "minecraft:bookshelf", @@ -3908,14 +3904,14 @@ }, { "id" : "minecraft:lectern", - "blockRuntimeId" : 5433 + "blockRuntimeId" : 5434 }, { "id" : "minecraft:cauldron" }, { "id" : "minecraft:composter", - "blockRuntimeId" : 3634 + "blockRuntimeId" : 3635 }, { "id" : "minecraft:chest", @@ -3923,11 +3919,11 @@ }, { "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7375 + "blockRuntimeId" : 7379 }, { "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4745 + "blockRuntimeId" : 4746 }, { "id" : "minecraft:barrel", @@ -3935,82 +3931,82 @@ }, { "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7458 + "blockRuntimeId" : 7462 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 + "blockRuntimeId" : 6830 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6838 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6837 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6845 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6842 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6844 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 + "blockRuntimeId" : 6831 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6834 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6835 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6843 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6839 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 + "blockRuntimeId" : 6833 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6841 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6840 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 + "blockRuntimeId" : 6832 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6836 }, { "id" : "minecraft:armor_stand" }, { "id" : "minecraft:noteblock", - "blockRuntimeId" : 5713 + "blockRuntimeId" : 5716 }, { "id" : "minecraft:jukebox", - "blockRuntimeId" : 5207 + "blockRuntimeId" : 5208 }, { "id" : "minecraft:music_disc_13" @@ -4056,15 +4052,15 @@ }, { "id" : "minecraft:glowstone", - "blockRuntimeId" : 4973 + "blockRuntimeId" : 4974 }, { "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6643 + "blockRuntimeId" : 6646 }, { "id" : "minecraft:sealantern", - "blockRuntimeId" : 6824 + "blockRuntimeId" : 6828 }, { "id" : "minecraft:oak_sign" @@ -4171,15 +4167,15 @@ }, { "id" : "minecraft:conduit", - "blockRuntimeId" : 3675 + "blockRuntimeId" : 3676 }, { "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7291 + "blockRuntimeId" : 7295 }, { "id" : "minecraft:end_portal_frame", - "blockRuntimeId" : 4730 + "blockRuntimeId" : 4731 }, { "id" : "minecraft:coal" @@ -4315,11 +4311,11 @@ }, { "id" : "minecraft:end_rod", - "blockRuntimeId" : 4738 + "blockRuntimeId" : 4739 }, { "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5515 + "blockRuntimeId" : 5516 }, { "id" : "minecraft:end_crystal" @@ -4781,15 +4777,15 @@ }, { "id" : "minecraft:rail", - "blockRuntimeId" : 6564 + "blockRuntimeId" : 6567 }, { "id" : "minecraft:golden_rail", - "blockRuntimeId" : 4976 + "blockRuntimeId" : 4977 }, { "id" : "minecraft:detector_rail", - "blockRuntimeId" : 4461 + "blockRuntimeId" : 4462 }, { "id" : "minecraft:activator_rail", @@ -4812,23 +4808,23 @@ }, { "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6642 + "blockRuntimeId" : 6645 }, { "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6645 + "blockRuntimeId" : 6648 }, { "id" : "minecraft:lever", - "blockRuntimeId" : 5441 + "blockRuntimeId" : 5442 }, { "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7839 + "blockRuntimeId" : 7843 }, { "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6962 + "blockRuntimeId" : 6966 }, { "id" : "minecraft:birch_button", @@ -4836,42 +4832,42 @@ }, { "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5208 + "blockRuntimeId" : 5209 }, { "id" : "minecraft:acacia_button" }, { "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3936 + "blockRuntimeId" : 3937 }, { "id" : "minecraft:stone_button", - "blockRuntimeId" : 7191 + "blockRuntimeId" : 7195 }, { "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3771 + "blockRuntimeId" : 3772 }, { "id" : "minecraft:warped_button", - "blockRuntimeId" : 7526 + "blockRuntimeId" : 7530 }, { "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 5998 + "blockRuntimeId" : 6001 }, { "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7397 + "blockRuntimeId" : 7401 }, { "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7883 + "blockRuntimeId" : 7887 }, { "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 7022 + "blockRuntimeId" : 7026 }, { "id" : "minecraft:birch_pressure_plate", @@ -4879,7 +4875,7 @@ }, { "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5268 + "blockRuntimeId" : 5269 }, { "id" : "minecraft:acacia_pressure_plate", @@ -4887,39 +4883,39 @@ }, { "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3996 + "blockRuntimeId" : 3997 }, { "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3840 + "blockRuntimeId" : 3841 }, { "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7595 + "blockRuntimeId" : 7599 }, { "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7203 + "blockRuntimeId" : 7207 }, { "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5499 + "blockRuntimeId" : 5500 }, { "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5095 + "blockRuntimeId" : 5096 }, { "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 6012 + "blockRuntimeId" : 6015 }, { "id" : "minecraft:observer", - "blockRuntimeId" : 5722 + "blockRuntimeId" : 5725 }, { "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4066 + "blockRuntimeId" : 4067 }, { "id" : "minecraft:repeater" @@ -4932,30 +4928,30 @@ }, { "id" : "minecraft:dropper", - "blockRuntimeId" : 4588 + "blockRuntimeId" : 4589 }, { "id" : "minecraft:dispenser", - "blockRuntimeId" : 4489 + "blockRuntimeId" : 4490 }, { "id" : "minecraft:piston", - "blockRuntimeId" : 5783 + "blockRuntimeId" : 5786 }, { "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7165 + "blockRuntimeId" : 7169 }, { "id" : "minecraft:tnt", - "blockRuntimeId" : 7349 + "blockRuntimeId" : 7353 }, { "id" : "minecraft:name_tag" }, { "id" : "minecraft:loom", - "blockRuntimeId" : 5581 + "blockRuntimeId" : 5582 }, { "id" : "minecraft:banner" @@ -5198,10 +5194,10 @@ }, { "id" : "minecraft:target", - "blockRuntimeId" : 7347 + "blockRuntimeId" : 7351 }, { "id" : "minecraft:lodestone_compass" } ] -} \ No newline at end of file +} diff --git a/src/main/resources/runtime_block_states.dat b/src/main/resources/runtime_block_states.dat index bce7f0855610ef418a99bf2b632d46fefb156bc2..52312b884ed46d2e966055757cf107c7b3fae562 100644 GIT binary patch literal 431099 zcmdRX1(+Pkk#+TeG@_9-f?X|}+3N)}uW`-HcDrV}G}Eh|?%oE?YR$~d%*@Qp>|Ha{ z`OFM=KL57=?4Fs3>Q@m})m4$&+57(Q|L#^&yw{llFS9Zuw*HEPSov2wd#Dm7X*{RM7`$z^a&HeR4wdqvI%$;j+c@=He2yfez{1mk{pj2;IXObyvRJ{{2}nz0z5X`@{sd~z+)@$n6c#{ z=MRC$HsG;N9yit>;HL-t;w-p&G#!tqj)$4-^UzJ&g$ zwOSoTeYi5+YDdkXxNsIhg3J#7Wp&AklW6!iD#6ZvyB&3^^NrTRp%FzAd{R>++i9k( zn7O0^%-ny;!3;IZiRR2)ngM1`$mL*$s%6%knM*vtEZ>-+jybtBv%xG__!%mjUFOV+ z`Wb4SOPDh&>Sw5a=FFKD^)u8%mnzL{ureCkZnK0}4H*PK}{KNFatX1a_yvs`{A zFhdo!-<(-4KNFatuDV=lW`**ZzzmhvvF6N*`Wb4kE0{AY>Sw6Njx%Rg)Xz|#U8yv) zLivmoEa$Ubpd2@jKHCk1$a6MjLPB0UVt|xfl(-&0%OHK+Y9h)5*Q2gt-Jv5Oafy)zBK_S&-=QA zz4eYe*sGoQU5V{UdM&EfS}UvPan?x$uh44qZEQ(6rIv#P*6G{Yl5ip| z2MMg%x3eYT^jQuPSif&?OJeot(1=fvY+|3lT7Cyx5`s?%B(SdE(UyeZ69NgW@prN% zA^3zq0_**qiNr|>-R|;4vo<*SKhWc9y4bhaY4w}6;a?if8S4q6@*yoj+{GU{{dPvj z%y3tK=q%&uw_{4Un?H2c@`R4L;O_p=S*p|kKObQJ#g z_lM5vpU_eLhyKuc2|(z$1eo`S&g%d|$92F0p&v-p_g*J#7e0Hh>d(qkwQ67U!bMPk zbgGQGVC|2*a1n%{zy+1SK`&ecJt%NNU9jkdOWIO_=Ll88k{2$5zpz#$-$l((_rgW+ z7l8{Zh;zJf5&T8qf_mbR370{1!ddtn`32QQ!wVO|UxYY9t+DKdi{LK;7gQciFI)tF z5xAfZX?fw2FTbEFX?x)!_=^xns8P=K!bR{GfeR{@ju$S1zX)7VzjTSqaS8o0JhYU$ zHzBqzplyi{YeJ=G4$8ljKv9wO%|Uq+f`5%3BTuielnCb5P!C zAW&2dN6bMv#S$pW1AFfkKv4%U=&|uQ?bQ#5J$Fa96V@Bb4q_$PG5FK!pk2t?J>S{Y z{}AstvL3X-gSDVNpT^n?1Bzf~fD!xvzYHjxnE{6L1N}0f*k%S8+Yj=~fC8NvV4y$P zF9V8tW`I%u5Wfs48kqs60MD@?Fu;6Z$G}Bdu6%&2frpySg2+I~2e<}!m|q4$K0xLF zaK8+Me1LlY5q=p6`2bb^BmFWE@&Ri5NBLzSL?bGC&#@pdKpoEvcEt2SUF-Wnpgei(e^|}<@Fkkr&`kxR=ea4OaqnD)2wL-3tfQ*%B81U(-79U0u9tm&#!D1eGeo5HLe6SezFDMD?{`vac z?&>z`i%Y%65x0yUOtvt^8164Di5{Ec9OxM3FDi*1o9P_r7~C%|i5{Eq9OxL+FDZ%c z{`va6Z+9(QQ|27kL@zCg9GmkDWLyiqtR!-5zB7<<4fOJo$g#Q3K*qJtD@r1}f4)A? zo8~*MLs2uCxN)`f%95C|8CEfIeeyun>XMkTSyeG{4f7hp+{H_d`EYr@ z)l$|RGr_LaKd&~T@Sr;)dA=*d&DP-mIvjN?!Dg4LhkKqg!TzysiB3p^$jjMMO^c{(}4UYwv;34@d3w5d-wZ4_DDqS$)(1J@MP8=j)w?rQ}aX-Sja7 z@WfBoz)=)^+yFfB%Qv0VZ!R{3Sx4FP2?O-RPgl`V*L>0dJ^9;LAJa)rJ1Un?8K5VB zyM~U^bUaEMkV$N1qJx$wXK-Xk&Bgsb)V1p@rxuZ*7469!Me|7 zX|PzpzhDIGK98lrV&(p#5v+S?CJh#A_Lq!c-Mcbruvo3XJT`3HzT(wMm%=hVz9$!g z#rixxtnv$EZ1__v#Vr=*uZ%s&GHg6<1z4=eUp0b_$E^U1h4=y^*m&FuuvmXDG=h!C ztpJO)_iIM5@wgRWvF?6-Y}mNV%I?JnO30J3=8o^lgz z`KYF_t_0g#3k&^reeEetJjdbQM_P))TGjmp*X%d`*k*8?M&Y}r6kJ}*rhuyCd!`gz zj?1Qi3g!Ez6kNW`rhsbY2c;+s#uRQxW>Y}r@6fMya`^(Pr(Y3;xO$3e9ru)_su^bM&4cx3eZJp; zo_w1%P4H_27S_LoJ$cTh~;T?$F-L)yZI!YkRiRTZ%U+4*se@R8An?#UOaV2?7SZa$-pczD-0BAfzfMm4x8y zLIeRqsd92j2)++Q5Fmsqr<8=?3qJ$_LZ@j zWy;ZTXB-RBz!1++ z?Q$%@GxD;4XI?AUDaQgFBQFbh(zSBkaxC1xj{8NjqzO&|Z?{&iSB?TWMJ@{PNNeT# z~R?aF%1Nj>hK-2 zwa>G(t@uQ3-=bzp!)>hRqk;Ptktq$gxt@;(?pqu*rQtT%^U=V4i$zl!?hr~o8n|)6 zosBJA)E!F6M+0{*>IFwb##7=a87a7RQ8ZFY(!jloqBNA>Ewba9LU{xCFU~1ADKZT? zZwNGS4}%*!Tezs4Hv}5EkHI~iEojJjL!g0s8Qjj{JO&I;9pkV&HuIj0K@mb+EJ%E-*BIU zN4}f{AJ-HJ_qR48Hu$Tl^f1usEE$9CYH;`1Y)R>9%oG~myZd=P&J)zO)Qs>3B*uGJ)tZy zOcyR|L4pBDml6bU#F# zlFuN5`&--sztq$StHTT;xS#b*n-M`G**=2%SKJ2QbVRa!1ox|+?Po-?eFXQXxD|e> z5fN5*aUbEm0?H$}AN5?D5kVs0BLWfJf8uuerXvDAA`rp-rsw+^5%3X#2<|U&OZ`$K zg5m4-lrnq-_mf^|Ga^VN+edK!=tX{rWcvv27rodIk!&Bq{h^l-k(2Oy-SC7@zY|s4 z4PBE=20J@Zt?LdFxrck|i_NeRzXVu$wkAJb>I0Wzf^i2v)9E*R_2ua7S`buT<^z|m z3oi*QSc%=_qx^2j~s1#o11DCEKGA;^(SNp)Fdx?yT zI^Z=vaA#aKo~RGPh2j^>{%d{UZb{-|m4BTN+^tDmEb6cKfx9h%K?ZjM zWpGijT5GL97lg-XwfL>39Goi4!2#>?+e|q)L6(C9*66pJa&THK2M4Uz{QQO|e;|z% zkUwDUey8a;2>u{&z&g(FXjqJc;12=^tm*GI9S6Z51P)l=xkvnosL$80lnr&avSm0K z>~pO-+*^0UzciXFC^@}POAPO&0k8(AUtS?_%n1B2gEctIbppp!@P2Qv#gkIRA(@a2E3fj$;0!-oRPW z6F4gRk9h-USx?|7>p$)doV7iHqqhHqH*gmC1dam#lit8t z4V?8pfur9441verHW}W>>vh8R;1se_%G1C8sZz6|J!@O}tPd)J+M~l@Oa*KG=X_8R zM4vzfEC1(xP!Y7BKm~Qc7kp4zJrO#xL}W2WzJjWNJIoupt>7yH71Rh{@-ZrcuLx97 zF>oh(!%-1@MWBNE;VTxSG6>7O+X)=Zs3yMZgNooQLIk0V~5t_=-RU70Ne#jEdkZ0u|IN-y$jp zaQ|U=*l6(0PZ2CxR~g^0Z99D18k2t~VWI-z2K7e2lQ$U%6Q#y?t$!!)Ef6MZ3T{Df z^gDS=fiO`#eBb(a@=gL_qDuIIH74g(!bCY>?zaLa)_umjL@YiVp}QBm*a**e4LW*J zr{mskaLq@H#cA*xElz()V{D8~@ygg3ufOtzO>xWE7`MOng-!9x*ciXR@r6xs%-9&m zzx9Pp@yys5&%g79O)y}q?Su}h2H-_v-W0(oQg zEKjY~pLbn}yNz%@3*$HiBi5iiUTcVZnsN64Os~~;f1}kKx!*r=Kmn`#iGI-W;tw+Z znmVyZBk~s_BLC`vY*L1_66_d?s&=cp`m<+(N-1fS+JL8PivAw;M;6MSsX1d(bDBSNj2;PZJVh*V)15h~0CpUg8sq`Jb0P**1S zOr8lMRTD;pYBIs6@k|gYk250F5Nlr*5TSC!5Jxh6-(4{=5{AFf0+SE%*g{i;1_X@} z%IA1&p(#`u8bg(j^4LOC%rZ2_ET7=9g{I(TXbfIHxMK@VQOwX7#e81J7Mg;Kp)s6& zdAI2=TjOkuIp-vU9aAity;+Pxudww9GvPNHd#_j_tskE&WSI$1LE$uXy7D( z^4wtXZ4H@E8;ASdQoK*l`5CyB}+C+1l|#x%jlh{_-*=2<|-EWu}p${;7^`TXQO!{?s~ zK0s6kIWf-yGJNfs;L}58kQ4JPAj8L<2|hYh201a$0y2Ednc#CnWsno|OwYt}Jj17( ziKCad;Y-cL(aYQLVP@j!MU8_>d8S}JRV%)H@+*GKw$-Vv zcUM#_Ukr9Cg0E{onopd?SAU&o#dVmh4o}spzxvqu_+MMyp9+UNRFy#bvxSsDn;+TP z3i=A&$psgkt6c@{=(*a8JG$=BN+G(uV5HFnDK;5xpwSiRf_|Ii*5OBI zbQMR@d>2IDOWB=-j1 z7pq~N`k;sJpp&nXb*YM7Maz(fXdL2IY-rec+dpV%9OT~IMLD>UR!?*?2TZ-orsE)- zUE%Es8VAg$O;ZlSp%sAxCdrm5hqM!uJQtYx+NK-?f8c9|R7VqdKM> z1b+}XVB+Z#hxkDS_hfO?Y%lzmT3&dtFKqtZgpK*&A-=GAH=M9B4?NTtHgAU$Hpc(M zd|~r`IALSlKin5KZ-^5%#ydCS^zY{w=idCB^F94;jBmz{AKe_r_j13xO1)yrfsx72qJ7pxN*Ec&|f9x1_s2F+bUZJ{}H5Hx0vM|=9!oHz&? z69;$twEfkbHwYT@#$!GGYEByjjcMa?o}f8v5Hx0u$9saNE0^rym^7Z?37RfkGBoCl zCwhXW>y``+JLHp3@&rwnEg2fN$S0rd37W22GBoUwPd>#HG+nf0XxJp5e5xmCx@O7H zuuDGqG*8fU$&#UAn|$)=o}lT9B}2nL`Q$S^LDL0GhK7yu$!8LDe1oh%KRC^}&}#IT zwd)EMclW6iE)E-~kmjhoL@UnEvcREA%s5zypG`Qsc++GdT#POHI%$x@vW^v< z4@Qn{or^YE$D;k>;v>U#nXF@7<^zvobLY}a*0J>R;l{D8b9E)_SY7!bR;-i3cDI5Y)H2uAGU|+^`TJ;T{}1cD{tjio`j5)cSh0zNEQbmF-n5C|3oK67gbf^~sGMxt;z z>V!(9(08LhYhl61W@ASw7sBQC!ForJKfEHpJvy)FP7d_z?kI*k1i9Wi^Q#&vpO`I- z>OKc#p<;CMVcEi{?gKy;Duyc`D=m!bw*0eDF@E`IQejm0(Pspe@?VAK6$6@&B^5@+ zc@Zxy$+goT0MOOZIf%7y5cU!4*q97CZ42~jIWhLpt=_j0v3#~mqXxX z6(L}?_(nMdUQ-bQ)`@SHL*NA!Az+o@RyBoYdOA7NSS7gGMj-@VO3`n?D#2}N3L)_R z8X;hn;HERNd-4lmr`K{-roD8e+6&!Qxgw|5hp6%yEf~1JOzcy8Wg|ILLxt~l)EDA=(!eIO%g-S^*3QNYqu>28WjR^UEqtr2@Y#>_+y{=G_Q=0^ZFB? z_%zpyk8}M~pZGNYjF0pGGoSdJv}yh^Y5$i`d`{_vk1746Fw&V|31q2SPqQv zryAkmFh}^~dg2#0KVO6wq8}FxjT`k*p6 zqMuC#bjZ}%KB!FPq5_g+>Q+9eOy{Bk>SXHH<){dlN>HsYwgQSE5Gqq8Bd81&&@5%C zC_|8B$O3{!1@z0*ZOToMOhw2m0u|6QQ@8a&MaU}x70@+PxAQ?o$SVRB&^S}K_d!L- zD*_eJJ5zV?K}E@)A_#O)*$65_1vF8NO6=(9!cw$cUvNTW zDGIf(jFde;s_BnA(SXOALJm!Ld!6(>H{2JS3HHK29QK3^b~#Pe9zON8&~a4VH_!E* z>)&gv?rg@&wQDKN3I)<#%viZrE`?d4R=TShE7#_wFe{WzcQa$<3@NOZ2U~k}7Xj{* zPJbcxm5}@j71Z6$Sm}P1%?icTJqLcw)!Gh(W1po`0RPV}148_=e&4{TEmX8=pv-_D5bB1Ie z+v3_+uYS-<7DJS0RWmxOXQk0WiFSW8I;uaV(LtFOn$c0cD2)zEwRxg5vVG;+RV!aE zv-IgTG>x=igT$hokWly3Y>;^0nUGM+L^epg#Y{-3PY&83@oq99q2^e$LE?>LLP8y} zWP`+OBSJ!LVB~uO64rZ0inY>RSgLnjk*-ynQEzF`5N^=TMmsdKo?s`gqD9g7i@?Pyd_Vz+kx2<4UU^#?2-)Z=1-qyJ1Se-oqBgU?9`hV zFEIz-5~feL9hM#LQ)l(!S*PK%#`GDsBeQETG8fw%10PwY&$Jz!i|uL}zV=KTucj}y z;{u;5SX}CFAfA^ypnA-$M>}C@f>=4XOl>~FEYaI-h z-m}vs!Q8S{2ZJ^3?52`nZnJL0Sv_A?2eLPJZAzJNU+)2 zl3=NG2CByIoPkR4J7-XO{mvQGv)G)Cd`)l-bDYX^=dl)+s`G87w7Gt%!`3>(8#pt; z{?)&JFkBeCqE&MZw1)4M2b=rNL(Od#S#-NhP#deli~a9 z2_{%6cl&2Dz51AZf(q8rxuZa3^-1~!6|Ay*{8O3iwc7NVj~oRn@LvB!^!ULFeH7wH zCxaE-ii|r;H-2Wp3ct^2no`IpnFY)L{-eM|&Mc@6j`7b#%PgoIjy(!gl+1#<;(&iD za%Mrzah!i5dN89VISTQklR?drgG^`9ShIXy(=5klPg7YkqnU-6pk_JYC@>kxEW`vg z%ZdJ(KxQE-s98=r3RFfj3sFJMaw zoeXN0OBhX43K=D{pk}$`QD7ox7St@4^3O!eET~y7eH5rDnFTe=W&Bf-GYe`KnkN%mE5IPeGBv701SvwOFLQevL1ga7~+h#&S=tdxrKt;kw$;Kp+y!`LBY<4BK zAmd$J$uUuh6poHEBv64ACZYW7Bsc!}LL-67gU_*zIUO*XDbcbzNmCJ2=hb=+|f2At-X{~%+6Ayfh$OMsQn-Nhd@Yx&_MEZis zh$suLPD0uQ(VZIzCR}gafDusxT*DTTZpbkr7W`}4BGPp^M#SoVEn7rtt;mR2%CBvU zNKLgF5$pDKY!T@pJ4VDJeO>Q}SdslBV)^xth_%)~A{JKvh*(AaBVx()kBIe=5l1d{ zHeF||UZi{*(4GqVtyU7RM5h4(*H{98`K$;wR zMu;G=z}%|T?-+eZh(NHW+?qh*uX40jYswv3D>b#Nh*nvCr&X5Ql!wClLReT|Zd)EJ zQDq1WtIX}ngGsf9@UYh0zC0dQ9KynibBFR+qjiUnu@57F;ITV`!aBu`I159KR4W3)YQ?=Z3j@L9cLaqs>)td|@#nk0jOR&Srm z3$^ORoi0c2C3V7vy0UT?z}z3Zb}ECXSceLz63o=1(A~(b_h{3#@^B53dovb<9HhH+ zNUV$8f3XRsT0b@2g#{@VnClNH}q(dgqYGxu_%uEdv++^T#xgluGPs=9IdiWABDtjaU zQiGU)QRp8vVATD7fH^tSFUE?{w3%ZFWdRtgLdyg=8Oj1QR)@9;G=#E%izVV*6WnAd z3(#09IwsH<$^tMhCye|HLRkRD<;770#>EB$k9Wqdj=%d0(=}ASh@QKGzP&w4hO8_+z7S!e5?ijI5e=L zuNVx)*uII?-NZKs31OU(z)F9Skie?%p9CjLN)@O8&a?1|)KnpmKs9j0fJ9cR5NMz> zINyLqYN`-8ph|dv0f($qA<#g@@IV6^>8U~>f$G7;H&auEKmwJ-MM45q1(O)rEnQO; z)xjpBt+aTQCM_OBj!~9LYSQ5KDKSBP@n9<^S(!uNf+FJ~R$Nlkhd>0C#zU=$WaSWn z3(Ad$S#e2EBmxuE9Cl8dnoR^IC_FAYCa6A+5);m_6v!w+9&Y9*sVPNZf;!|8R!p)| ziogZM$Rn+|q^1;s2r80CSrN%fDFPRiC6Bh^lAcloCa6v9oHjM32ux6*Ty#uOrDQN! z3Y&|HN{N4LsjP2&4F3M`fsWz#(aFJs>I1>UUA5wSA&=Gs%VW}ArW7eBN%E0G?ebU) zQtnRK+7?ltRPK>N>GNa@Qe*iP-@788LKXBBkEG<05=fySda4Dfv3yD(h05q@9!cdMDO5>M zw;(l^Pw~w<@+p){&+te}9w~toDyL^!kQ&RU1X3uXp5>8L?vX-0^=u+_Ab!Dheb;AD z^-uREs2-yUs^|D*C65&^tcjKTi(5MVX0N^+o$YRy&OXaF z=bNw^D_OBrpczC_^#Y%)P0?T+xp)K)JyVKtUtv1A~>LUHv9pRDAu5?G)oV>yjpbJY zE7Vu7^T{grSfRdpy$P$a@)c_annBc8Z}7=V9xH(r>Z>=Juo}y+1Xif8-sF>2?y*9B z^=1=RWBCdxHmmdf|K{%J?n8bu`-_ zkZsqOyRBw*zTfM$nu=|uk6$I2Tm5I%b|>m~2LlniXgV>e5&0ky*&iR&RU)-ktE13x zUvXRQ$Z>Tj_~u_Fm>vAf>XI9$X!ti=E5Lrc?Yi&{Z>x<^tNcZy_F1BKqC~Cl#=qKa zg!2kRa;Pl|z}~F{5O1&8S^ez?qvk@^{8s*>n4bMLnLZ)OeQ3J67^3&r;Af6{oj8)5TM=9v6RvAr`O+ovR_ei)qnPE>Uu>hzQ6PAeF(u@OAC(`xlH z>HknMy>mCw7ZO5BxK)Df?gc3qkgeXRV{X=v<_Jlc;BGIhceG#Oa^Ol-@6=kO2SkQh zrdzK?)tY;MZG=VTUmA@m?ov7cOG1WGT+{H*JVdB{Ih+V}F>lQynR_lXvBx8tM%RHU90eb7bJS zt$Ftw>gsK@_3@oJMKjJF#^UMhh`Xq^*a*)byqXwwoXl(WdZChz6~(d+9sFE_zBm0Y zTWH!8U}$vU`*?z;bt6NgL*LgEG%YO{8aA_b-p>;>wdrMO*se?BId1h`?0(U`ba{P~z*PN-RriR;Ioj|rxT$eM|3%Ab!3W{iWynaGeCC6YZB z6G(~JDai!$NeL#(uNMhY?dCCoP3oQ8`p77D-> zF_H6$zyvm+cb-!`c4R-1^NGL&Hl25JpC6+!k@Jbb1U8y?a_671naDvRj})l_jvd%s zE)zQ?nZSl}j7e;ZgY-$^Mco)XlfkDn#lr29?6|ok1KiwyQFl$58)_K7Dr?8hr5)hr zJ^Tjryxa)=;x1#=rdWr9R7U$-+P{#K+sz;ndP(g7Y9XoEh{7vA7nu@Q5+HuR}Zvr<| zS=@BTj$1B&6S$%7;%kV-xfRN90yk7*+!Mx*TTy>QZT5K5t9IOq`WvdX2YBFC)Zb9Q z@fF45<5noYk;>)#whKN_Y$W}*8@O#G{Wb^OHj;kZ1Kc)}e%lM&Hj;kZ2i!K2e%lY+ zHj;ij2Doh`{dO#H+erHD0C3w#`t3O2wvqJP@xW~(>9-Sr+eXrFCjz&Pq~A^gZW~Fz zoebPqzr{}9(f*r{BW%I@wf(jykF9yCj2in_*+ng>L=aV&yrST;Yxlw$KzM42|l9+cMZf)44^4Mlr&@7i^*F+#*Ax z_IN4zoh>w-TV!aI8ZYw%P3IOF8kGgNO0fOao01-mLW27t*g|hkLZfcrrU$mrGf8Na z3EbJh7J5q(8dU+eFR+E)nuJCXzVp|>TWvF5+lQ*dohLSu>NZUeTzdPfo(EBfm_ z{p#5yG!}5~8({mZcP62+UcZrkwR8r`_&QMVO09Ok$(n{!bm~PCrh#=_y#7z>rNC%7 zF_(h|*7UbnkA~B6IcQ*g7ccmi8I9FrI3u@vNL=xxV6A_f^=JsbA<)3OFJ9ppn-aTFX_jwToDaV7r>sbr4PQGZ_7sT6kdoB8_XhnDc_cj;4lIk zOeXK4@Udkh_>I5@bIN-?u}MoU6`CnbE!^9{c5DQ{p_pPem|?i{fh`-sZv-}&Xg=U+ zrUbtc*kHclh6&}yM%aZ?DY*62P))Sl5 zd_yyZ`sQ<<*a&{ZF-2@p-+bN^8^Lb`HmGmD;E9dkHv${fH(w++v3@9nd^5NfZq^Uw zBU*y_l1F&{^#qR@<;x!7`5OwsV+#3-M|l2@LhzU~zUmR4zoig7CW#9?!t?hOg2$|I zp+|WBrb6(T2EOJIp1-RQJjVUkJ;L+16@tfw%r`v3^Y;~k$Cb-BJ;L)h7J|p6%C|hi z^LG}4$F<3~J;L+17J|pc$ag%#^Y<2l$JNJoJ;L)h7lOy-#`iqJ^LH15$Mwbc2_E({ z2KByd%c_rRW&Q{Ds9fC%6|4IX?NPa?6Dk(rScHlN+k+1as92{JRM!u4ajEBC2k%7-J+*6V`iZ7MJ<;?td4NlRQnWHC zM(cl>gHo_ECP*T8ejzcU9Voy?%9lYegxO6r(F zQ62xm9F#OMgQ6z>qd6!kVFpDd{3mlz(!UIf`uEQSdg=H%VF;OOy?Hq5^rD*D<23E4 zaPW3b2mi$%I#*ai#|rybf9PCl2^~xA-~6F-%_VfKxqtVE&c&C|vH1RvKXk6bgpO7C zfBm6zIVN;0$N%t$&UKm4u`d6gKXfk8gpLLJpZ?IfQWH8>>i_2tol7>MW6A!PKXk6$ zgpRfQ-~Q0Kh!Z*%@&EWk=W0&qP|bG*{?NIs6FQXjT@`=mT;B;D>iezVK$r++IMv)r{X-3Qo`nG`$jFH9`bHjqGlDCBTA&2!J5j-S$d= zH3<;_O|tu3uLM|@5CM=SyE|S9ureV6piFjmy%M19HI4!hC%gSdfj|KCi5&qKUb*rB zNR-_@t0@o(2zdZh%I>~b0zw`Dp|bn1R{}yF0Ijln#VY|J4}e_ReV$hWLLLCcvipcv z0zw#qXz?5c0s+u13W0jK+;T4s4WCg{^Z<#MYipJMd>Y(+G4Zlyy48uY3|~t#`~Wf> zd(o*@Z*}TD`!kBK(^x#vn1yi0jOMRGEKton$e4w2woG7wlIFq2EQB*<0t?hN4>4wu zdIphZ1jWrmjadkOLDh}@0u|1~j9CbNA+SK1^KfGpf?o(MQ0qK`Sj1OR^-fR8Kr_R3 z$GvLrNIMEPHCvr!*OFl}n5fqVZ5gzDz@7Svpe(e)PB%)TV7xzye#@SCQti4&GP{xX zil)-1-!18So%-Tpr8n3_1vAV^sjdgoe7U=?s0a%-g$B+ zJmxptxlhEs0FP_6C)>d%;$DEqmD*G6;1h8#z~egYsdn&*xEJ7YmG(3{ z_(a?b@VG{MdJ*`9iz}g!jC)+674rPz@VGu>_}Ig(wbt-e>cI=bx`x>u|68kCW=pr< zJlJThM4hyERou?^Erz+6pbmJpC6npJPT1|{;(>zTIhH)84o013 zE*dBdo@+{@)9OaKXrMrNo+XXV?J#OJ>-qcxwZii)nT#1VC>%_qW=t-qB90mt&g+y- zP*S|Wa*p(DA}~R9@j^=`S~d}Qpv-uYB@ZQ=2sBV`yx5e6oJ|B8C_7$aNkh*j0uxjq zFSTTn7Qq4+lq055GbR_*Cd?&%40KhSthKXjg!9TKOC{LeYqhK0Myog6dzcA!^1oS? zE8DxvtyXWzT?cJ7d28fKnmlj8aOs%w9wImJHC$I2K zW7|S&e!dYY6NEB_dn)>wpy~Neec@1YR8XgIgGE0)wyip{!UnYp_gwVDX4AR-u+uv~ zIV>ntUgOzWwl|~RQq-v`%hr^_L3*3CoiSE}b|gtssA{+~q&HIWp&G58G=Zpb-sOJ+cQ3cP-6K^=0un70JMZ>S zYuEa!A)(fZ6)KDeb_&(94QLr(?^a1tLzkoD(a)TSe;Q^ zMV%4sjNCy)VL@GawWgy!=AYEwwHhNTJZ6Tf>f`>I?QXXk_3n}@Hm>|dU3VgKUBNId zlvSVbPisbJgL;ZPQKspsQa-hL?XYNaXi!FRBT8>%cF~NftWZU9LrQO~HoK3aP0@Q$ zJblK$_wW#@tWZ30UrK`^lEhP<%!KlZ+f#ZYl`}J;nBrEI-k9adOsJ-~XQekP$s53Cp-M zgEg5OQ%U%BjVj%1G}Uy0J*^#UDrxltL^dUqOBdQxnjVf(HWide+%+>T^v9aC9Si*) zZx3cuLY>5&G|edO9#9(5wAr*!F@3{+(u%k@N+u8PU4#~jrwu|2)zd{miw-|jC`X}w z`lh{arRFGs5(=kp*;5j8lt2Z=(zorYq~<7r5-O(e*i*{PQ35U0PT%!FYjrbRFTnyW z6i*)9J2OWKv`|KE5L&3C(r67%$3#tcxJW&IGyY2lT4V;?`mjqAT`J`?R0fD2m;U>c+!4o$=1#lEK+-$fc zc;ddN0FG+rcjQqe!4tPV1#pxxzqbNU-1QW|QN8?Od~m#K=>m4wL8suFi`AOgnT{L| zl}iC{FAk2Xr2x3{Ly;5bX8Pr*SpGQvu*=|yI2XWCs{F|cJQ3#tIEs`%TY)FyTmVOP z!d;oI<6HnoS;9@3OM)ljTmVNk^0)DaJ>k}}2MS3Bl}G_^FAk0>gu!E7ETTrV95s8@ zt7VChOKX+-?=+x-+0!!2R<>zo|A)-RG}AiU)3WGR_G)(jm+Zz`gR$LA!%fZbKhh0n zjzmi{{D0|&wS(g8^0Cs^4F5CTuy)Rc44GYeu`f_x(YnC>*CEajlL_b(#yfxi$W<)ER>23QpyE{_t zW;z@7yTYlPO|_fpYsYGQcc$9SbhQJT-Ce16Gd=A%&F=10yP1x5yk>VU)o!MrQEO|Q zw>_zLGYiLw8sEKSS5TOl?z>$xyN}EYVR3q<5Ijk&I{nWb zn`$>Rj4z?_J&s@=>m))q)}C#2fV4CBjad{0cZn;FKJ z)$E>>YBw{CFQ?f(nd}N-oatseG_$9WSs{$i$PDAlYj!V@YBw{Cub|nzWUAfFFutN@ z_fn~LGsl*HmufdNj8E0hvwMY9yP08pnr8QkWLF5|Om~>o%wCDi3SoR^W*DEY*}ZbA-OMmPL$iC8RJ)mB ze5Pjis;PD}!}#i&-BVNTX3pC+G`m+zwVN5n*VOEumTEUMjI|E_bEl`;%?xAh$$_~u zQtf7j@pZIuI5X95W*A>rvwL;2D}-_8wC&W)UW3dEVSM$>FutB<_nN78GsF1$n%!%q z+RY5(8)$Z~ooY8TjBlvfy-up#%rL%@X7{?Ob~F9q#+u#hrP|F5NZe|$YRI_`-RJ)mBd^64NjmWML#+k$G-j16Zys9?%bTzVjc4IOtgz+^p!}#W! z-Lq2dW`^-CG`lxRwVN5nx76(3G}Ufq7@w`#y;-W=%rL%{X7}c)b~D5H)|%a0q}t8& zv)gEPZ<%U0GmLMm**!beZe|$YPP2QfRJ)mBe0$CAt;wzs#+k#gTQhqbGAo4fH8aEb z4w~KDrrOO6<2!10ZGmPt+-KA8!nPGg6 zX1AVdH#3Y6X?D*^wVN5n4bASMRJ)n+wyfE0klomW18q!T}57P`c$#CpSN7P(ca_{X74wm;q*YrH&2v(q-Mw@HN*4=0f+LyatXJNh5Rjj*1 zuPaf#Q)`VLZXZ6^(yiB`YOS@>9C^#H@;2>Pw#|9CjAaTRqqbm$fuq3FZckCD;CDbR-%kO}7CnUm8-6 zr#`?p2XcsjIA8*Opl=TRm_2d8)s&=@b*bp9T8?{!6&BAgVPU*K(h7^`k+3kX zA7zEb^F>$~zmK-UnxdLSSQw{|vBH{8VqrW!*8P>uhoern-fC8MT{yWl*yKchFLI@N z_k5$}G=HPMxYVmQqQgTO!aUc^O2J#au@i>?X z4}yezGMV2R7khU_ZqYk8iFL9>n#WsecN15Y{ogIc`32 zFzhV5hllkFI=9@acYFO#{ro`}^5vGh59E>>!>PxMUQEMT9*(1r;4u1LVhG2(-YX5^HYedQ?p{T3J7aO@ zHXtLV;w8G-5r+B|`qiZ{)*4eKVKB&EQwnCa_f!%EW9zl0P}bT@C1Eh8URMrgwS!a= z24m^dop(*l3JwrU&Y0nK#l<8c}e2r5O}3)ZS!G!EKXfP{25Rvo!^`Lz+PW zWArU$DGY{nWYZ^;0>Awap7pvW>;|qeX4=DwAwu75!LI+q|SC+gKhy zUeq?PAIUb>y-yUiJwtk)Y-2(DWKr8&lD4r@eX6MKtx4Nhf<9f;_O_&LtSz4@YI}Rq zHWrP~7PY-2X&bA-=Ze~%P1?pZ|M{Y}cP4FP{{8~lJ`l^_ji|S?(vvOhjht(CzrHNwN8 zTJW|v>gV?BwQ4PD_m)N~-&XA>ebo$%e;I+{FT21DjB6u-VQsw742+8@fL3SDOd*Y{gaIPJx0pqZPCt+o5qqBQ&gNKe0pOl16A)(tc`(#x;%5u%`XY z4vmW%pbU!G^}gCutVd*Mrc^rerbosm5tD_ zvi-^qjY}J$VQKrd9U9j*Lc`kj8#^>EZiI%#?YDMlT-^u_tK0AF(73!28kV=;+o5rN zBQ&gUe;~B@hyV0r?Cz2F<<+C^)#cDVH#7X2DLsMV8ujmu{pI#jtJfO+y7?Kc68_C6 zFZW7GUS3!;|LT*M+gHxZ3#;p2eDZQz?s<7(9saWkFE{gfuy}R|3ukAC6&6nu zVc|5*T4C{g5f;wZPAe>4ArThj+daFiuy}n$Sdc^a?6$%Z{1Eb@ogWHVkn3Vt$MfF$ zV!cswscyazx|^82Rx?ueBi26(;~aEGwh24yEz&XXnlG2@Kya-T^(3;#}_+cy`hY*d$wxur`17s!L^0K?CO6I zU&hnkD%is}^zGp};}bk){0@z&Jv(f#9(&^gP0IsUUbP6@2^Ne(d##rY*@JMjT|gc1aMym8y0T! zCkG4E0uLoEV8bG{F%ZoNN`i+Ovk?4(szZfXpfcd@4mM*U_=Ug%1p@bduwfzig}?%J z0(XRnFBUsF7K;;F@N?sb_yTEQ(k&KyOUjC4eO()TTC@9Ta-Llysm--M$g-)uKD39M zIh->Bhg zic^o#E?(DP?2PAmF!ee*#`~M7nwR+PF!MS(M*N#C&|%_rbc}iNe*U;45A!}XXgQpW zcihet@8ypR4U?`w<5uR|EXEvWT!F@I%(q)W!*naqxP|!+3uu_@ndN??S8q3j`Nl2G zcUr*1e5b(U7UsJw;9<^F;BgC6ymLRUx5K=rz~dI?d!%2#6n0!Y;XEI)|D_dezQG>* z*vxiweaZf?W}NS)pTG-_q47ai_NLoONFzTJOfR$=txhn#vg9^u*Ar6kZw-#`p_hW& z)N(t+?tc1uUr543#ld&eOW|!^cDLc1?!meQAZiT0uwDvq>w5FczVIVaSnx&mQka{L zL=AV!Ao&|nO7P|OQg~C1x@(`A7*UiCeBHeqTD#ul=1t@8hud^xnmPIx5w+fW*O zoKi+9v`yW5!*yFt;-MbkYx1S=rWTHb%_JI10KPb13T;!n--%T}PA*vY`7(Veys7zy z6m?kY`FedRwCVYdd%z+&m{{8R#(g=s#g5xdO2T0&=S%pd;3hj!EeVE&n{VZp0-GKl zLQBG7q2`PFvCW5M%}Xn+TH*VMR`~b=e|b!-eguluk1zI@2ThbfLd6pJB}!`LQKdRa zz*q;rYzU0SkU+5*e#H=Uv?3BDRzz+)P=0`?M#>^VVp+Vv@>h=3MuNoJc%dOA7Dxic z0{JyV(9tSMkXR+ZZU~8`l0dOke!~!Sv|bV<)=O?rP~K~yXc8tCP3}@)fH_(@2@@+P zH!CQQIZ{3e5z8lcEGUl%HIy*1hH~SA*uC^Y4UGnC#)U@q<2i5CN+q``h@F343Xixm z=I-SH^>g-C*SMt6-Tme>V^iH=OF#OP6?ba8Y;o#{X{%HP8tuAwy3?BsebP5r` z`pk_pd=TIxDntP5H22c*L4ePx5CN>$++M>60Y0ok1h8&%#|<9@rm3h90j%G@qcZA) z0QbQm0$9g?@09?z#vuY&&;Q_+0C&qF0$A7o=#>CB&>;d?-~Z&50Qb}(0$At&?3Dnw z*&za0@BiYJ0C(OY0$BI|>XiUD;~@fA|NrKd0Qcu10;mK2?v((y>>&cE2mXf$#4ai= zxtrhVEA;ggTlt<==ed_g{6qJ^@Iq^OK6Uv|#=ox_=LRCNQ}|1*b~~kmp4c10^}X%2 z78e`P_xAZ3Fn3fb2kh>QqywXB;TALHfZa8bbYN5~|BoD`9I(3?k`9b2#upzj1^QF9PTngZkJz*iu}5 z@w1#)kH)b8460*q#Rzybjs;*)8+#{=fJft400xz@chU%WG>!#eP#1frjDSbuSO5l9 zv3GiG;8FKge0;qu2ISSCCJK0UL10i3G2k7%tDrZ`qF-`*rOxi%L_-*pCH3aPR&}*a zy|O7mhW}SH%$=)ZE#+f|PtUUa56v<+tU4|>2F=6uZhgKHofXwO`Uellb( zT)oqB@4tne%$_=tW_AaSbL=Shs@at9Geq}_n%!Bli*#$Pme%Fi<;Ij3?Pdr6vO0Jn zVO6XRZy-Ctw<;w^J3-z;cs#S7Hm-rdH$ zT=f86`Nj*x;oeJ@b1j(hhQ^D63JAT9S^+L%{S{{rQ?cb_q@qW%TK zbnj(L@^Tq+eE(u;LHP@H>oLZ>a`~6Q3uW!)jd|trFM$`T-UG(Ga`~6Q3q|o2OY$m| zzXV>WnU6Q-Rn)&wQeWAaS5f~$#eJeNucH2ig8Zr_c@@fE{PmCW*DjX_JN;(QT@E`s+mCwNdofNx*BP=&zH37wfNBALZe` zT8=)-JGI@bQ%Tju&S?*=_Bvs^@Xngr$uD?~#^h=qn5^yu4SFF|Ywi}^=#CyS!JV_y zJTP&qgB)Xmdu6A4VB*#TIhf$?*cl#}r1e^4Kf(R5Gd(a7{DfDwbRxIcA04@?9<5n=~-q^|FQiQp#!6WoKkfd?jnp9oBF*Xf4DBzCIe zocdxnTv0x&DxbRDnSoBL7xwC{X8crnU?xKb2J!l|fi9JGJ|37r?q$ov)sTEVFrD1nmWQh#`FLP*xsNRmcWf*l4@@=pwdLVX zk>%roiRXSrdB}iD6eZ&Y(@^1fDaiwqQehs-FBj>N*x~$vOO|TUd69X@`9t7=3zqxa z@{sd~zyp^np)C(Ne+WEqu`+MVL(U%p4_vA&*z%C`hrk0DDz&0KowXQ*|~H)mGV&rtmwGG|uQ&rlCN zurxEL{l@n*syqSt87ib@b7r~xOkjqZ>A~jAa`~CS3{_OioLMeE6PTf{dT428h4Pue z43*Zo=FE!v8EUVGn=>owXQ;-y=FE!v8S1k~mS$EcpOJ#)e1?Y?H;z8TVpSpB;>v3sH4Z?;4kW#dll1SzQSm zjgc>S!TYrRvPY3pv}NMde+CoWAA7VXCQj{VFv0z>$9Q7m)O`jM-2Zy45ffq6n85`1 zyB_C>Nw%Nh{?_9?G0FB5+|PP~Cnni`g8NrbG-4vG`r>}V`v{azaKGwFo|u522uyH) z>dBs%fS(9Va6jrPo|u522uyJQ>8VCcGV+PQ1oxYs=7~wRpWyz|(>*cC_7mJsdWI(^ z*?xliN6#cCCnxlYL1){_b2T~gEHA+1j|`0J zj8*@|UVy0+Edyhbe~A}h>OjlDSkqtX1(-U|GBB3#mw5rEjeP)(rC`0)6E~y62zPQq0?`# z5ISatH~T|p8Bge#65iquowYonV=j2BKXexKgpNtzZT`?%)e|~K|J(hcv$Q944EuNZ zLuY+Y=os(s^oPzOpU_d{zsnywD}6#orT=b!=q&dM9p(Oe{GqevCv?>O@AZey!k^Gl z_`lB|I;(#|NA>@Hf9SjfAaq;;e83+%uLB4j*8v|S^w@(CYu^q1v@fYVL#y^5^1?+> zfOM*ixnS-8uoo_Z5EQte68MN0E`lBuxS%fhs2472O9h@IR0$vR!bR{G){5l2s2M)) zg^S=X0vA*epYXy(@E3s#>WNR9a2Z5r-t7kV7gQIY^1?;%7a@*NYkb-Z7r|cyE~q>{ zsX05FEWRSJOPg#a*K zzFi7{H{S>VW8*ue0C<0m05A@|TMB@;&#I+*qp&zcYfO8o^LlBYtlLMb(0#uv+}V2#V?kLt)+cqY)HU5Qf4E@+TuG zswE7CwdBu6P$YgB3ag5h2MSPFUl=OZ9Ig>Idr?PQ233O1OJQ@-eaI#Im9J>Q^cNbn z0`@6_*gi(kU&(%~+e#yB*SonMCl2;&#Q#QyV{hNB8qU%Dd!J_Z?_@S6I~(EQP}Q~D z8})Ph^;)$SwR=l(Z5wRUK>k%4ghrl0aOD488icbJ{SwSt|0xZ^`HDawU+oJ@gK(xI z5Xe;f+?}blw`z+{Jm)9^fgI($t}F;?UY>Z!PVP2wSrF2_3<7y+-&AQ3(!LA=+IQb{ zX%N!C3dn3#-bqkBViHh~_RV@HLG_ABK)u?x(>n>OXG{X?*)H!S zsNOLNtarP;lc0LYB(NUNc_%^jl1X5_+;dTozx}fG1?AdPSX;X zq`@dmWK*}@=`Td%b3sXQsq$Q==j)w?rSYktu())2Dw|e6bC1sj^~Gh%bIIW=l*|M2 z71S7)El(t$uLxXFYFw^7mt4LgP(i_Q`SMiq`HH{=b;lLTa}j;Tor+1%D=0p$Se}UH zE16tSgj}gS7sXdHsh}3Qa(OD6uVivTO>&j;Typq|;It@Au3DZ*K3@^Ipg=jbJeOR) zB2Yn{a<%eQ^7)Fu1@+2l#3lY+VW?M5SGLlfU};7xF~PDaTnHEH;b<>HHsOLeGwlU{@B3X2<*#)SD4Fi}0+urwyjr+|qf;YOt~VLk;+)B-mq%$)o`G6iInLV#GU?`#UlM;Zta>-1er z0r~s_0b+r^t0^EKRvmh?V&6rht45fdH}g-oq4-&iGac5G(CHO#$h= zF9Tv_y_YEop08(s-ey<`GdFPFU%p!&%KuzohZ5}oF6!9OePn!r5tFmjn#nUI?fumfMHf(&;yQ_2uYnw;i+Zfiwj^ z2yh-C0+l>p}fB7k||pgI1SK6ae3^OXm@T=@mDSR0f!}rzps1&)3ijn&odsK=XM#Z4@;KKqc#w(+ae6K1Q zslg4jNPQiRtpOgzDC1#_zTOg#qLcA3I^ST4M{&t`7?*Ff#G{C0JdDUUS>jPFG9Jd_ zn=SDu9vBa!(9}N#Jd8gTuiam6AF4OiN;%qtoK79xTMN9mXahMG5JwyVVZ^=F1c*b8 zfH2hFW&*@9MnD*2Zzmv77w#Brx7TV$)ke6iHIJp4d7w5k?;!KBw$TI0MCNle1-q4I z{hefeZ+xNEt9F-Lht!jW?q$7$?*5W{Piv&r{rZood|HEhmmwTE8^fWqz1t9uT#n(; z<=$fmM~=sE=y>lngrnTfaG2ZQX9!2Bo#8OGzuyp!GA+YlX1DZA0S*&8!^M02wQBAl zuFDuoTBrE>ffir=TFoyg`$^j4VC?o25$@#^||7bZ> zWqt)<%mE)O2Q1I8fQ!lCvWo!7naneI_aZo0;I1Tv7aneI`(U7OOI1BjFani$bu}~(wI1TvTani%dA>%Dt zTZ?)_f$hVF0_%l)?Gj+ZY22?{y>9Yyt#*I5Br;vi%z=&N`*S6+^Z#lr;AMYxeq^lR zo{+h=&`e_$|9r{OR%cqk#zOvulGw_43&>c?%l_*8$XLrgA#;_XnZ|nl#ge0~&a{Ay zCH+e!v6b-_kg=$j{nh!Av8sPDUlCdD`I5+!;}&+Bb}a0V$VEe)+_9?}5y8^_$XrB} z@h(mSYkR)&FsFgFozFCl)b`f0A_ehM{dx_rd_k+>UzTGoF9L6*5dv1~uaraJy)#0< ziu~1b2)tcJ2v~V9AcRZt-pI0hwX4|+%?_IXP@ALg`$MPs3kV(O?+5J)E=k|yG z&}rTo9q0W={?KXHl+jUj{n#HmZK5(d>aL&oL#ItnMn~=C(dPwp)L)Dq>zCl-eK}MT z?|PyQ)Pp2HrQwWyo?ea`E!Sir<@zQWUevO~ugGxhGt8=C*Uwh36q^=1t(DccSu(!K z1a%Gj*QK#twn_aS#MqdZep4FT<(iz>n3aB88rx->oY=DCF zmo+-oXmL?Vbu+>Kgs3e;ojr)@P8-ZPy;?*{zYVSY~XDRt@-)J>i4fCJS2|& zCz!*pj=_AVzHlfB54mIiiPrGDms{QLk+q3XNI(+Vf08wcJqzxZP4=ofRvFtYw1q~RoN(?x5@?_PKV!@_is3F{rLRlm!a?gC$@)*3x2QVDkU+ueFCst&v4%-4G)=qhj5_*~i>AJ=p& z2OrEqm+{6&cRZy*f?jezw|-dP{C4 zI9yR=3Bk5znL7iYAX}~;jGF4TEnN$HEJV0ynU z&8Hz1Au>>qvN$;SoPBd*;$$sToJGcuO&E8tz`16>+M0MhAy$5;*}e(c zj#ZwuRK5~+dP*jDAH&?|%=p8(L05ygX-NnkeuBURcC(TY{AH0KFfrY{Bm{pxBnV76 z+?F`D$r783d|!U36QP^@c;lh{x1?W?@X`9<<-#07V`7Ik$!C-C*k`3x?t`5^#f{ee zGq}5E_f}*#_Vn|b-6&k>wX~MxWcq(J)3+wm@v7JAEQgJ?ZAoJ-PG3= z9#g?kx~&f?LVg#hV94Fh2NfZ|3sf*PZ|{Rjnik**LM?CyA5;Wip|s0XPz&7A2Nl6r z1S+TnxcjhSFblpSP(dxgeTiciu9~f0lqbUm2ecf)-G^ft*4?tP-jxcjt}(bPO?P<) zg2Pc5G6PIb+@H8S1HsP(2AGq$VR3l|f_n)JFconJ00G8?JWjKWK&x@hxD(eUAN$X4nwl0ybRX*uPW&8ys48J)xGsy^TVCUKATHYpB@u zT0PXd?NG)#O{>gx8qL_3tyU*&F4{G;)Otef?|B1fKO%6{1$}SeygNwXC=3pJ1Lu81 z0!L-A;tiZ{9S}H5gY&$B^Q8jCW5FEE1QxFjfy%NH6!aU2p9#^H;Mpg8Ub3ghm@Mo{eR z1ch;C<$(ee#uY=w4lJ$4)r~vLH)%B*^}%b&1!L@zT8zDf2Gb6fQO^_;4>@Yd*r)PRdmk;)CJ+9&h6#eESsmU>pf=c_34;T#K?^tL@md+)F*N zySfv{E78F>cw$cD^=aajYfM(chE_oMpa^Ugnr zPJDOVt;j-cT{qY~821E;2?R66KTCsfCv^hB z`2T-pLG(ex*ycft-Ir*$dSR~>Y0J*ZAlCMj=H%bI2#E%lRRwDQ6V|Agm+zvY~M6_$x*h0P%%)0%fcE490zP0T(t17{swg1xX z&-dJA@X?LE;Mqzv9oS?^%vHR?#2^L_Y_=rkYF}Yu5V;3tEQz@)SeO{b`xZ-L&ZF`X z<8(?shFO9)t__?&w~q89I@O!CJ@7nwB3?eZXXkfVIJFINi6AOZgO+xF}O^1 zVAhgY(#P@>gPT?dc3Kik`dEHqa1HCgE=yubAInb+?r0s@ZAmP*j|t8X7q|}0SrW_b zV*)X_-F0A(C9&K-CJ=+GUkCPD63gvl0x`H3c3>Y7i@n0#UejZps2zo_;kxpr7S-5f zFuVRQs z#?fmvm2g>G;Hg^J;Zx3pio)P>wy2wi{ffKEUyEws^0v78FrxM9ht8A z>F7yq+OI$ZVa>;_JFwR|f3qV#=nz-*#>Xu;a_~V%xso?NZk3UP5BiVzmOwoAE&Ydd zOoiqP1*Q0wfC(SLe*`|LF0blsz6Adf_@LB0)f*qde*`|LJFiB3VqIxt^JRRZu2Rtw z&uR8V1drj2Lqss+@aq9)BOi3mO-5W#eEO?x7Oj|fCCk6eq0?2erW?Ju_v)%EMqTWa;r>IwIeovXWP zIpW%-LFktR1cLE@ozft@#3K-l?dz5X;k5&SVBB7hKw=Mhv{&cEDN38?V3)MXy1oIr zo1659G6@}L@dgIyZqjn1lk|-Z&|SXGiH@21ECY0x zWOJfpI=+bky34FN(J=?#l+fdAw|=MXE`TjI!t>pU5BG7wozZCZdZDs&kOlrdE!WjFedx7dL*Whznus?{#z7&I*^#^)$P{5FX zunmRjhTBE$=D^3O=bLb)hG0{7xz*||gg^rI0(UYni4MUh1QMtjo=PJTldk9X-FuMd+pZs8 zpd|@zpHPZ{su{Ro5d};UPq!HaSu+Uum>sxfZ>b?rG=o3@Gs81&20+sctX*jeFfDL% z>{3IZdVxRzlftuY20``$0Uz_hb8PSxFAxY|E_kjD0nH0oyOI~+`r&yt3{)==DB$|x z`8E_}FA(r?{qO=Ce8md{0=Ry7p$!4e3xsTh>xYY=BH;SrXjcSWKOFUnfa?dY2r+T8 zt_z0eh?I{8>&wH5Q?-KsB66_UF~&91*^g%j&(rL_nCvDgTQ7NDsF8SyEeS#1vd||I zsApbkOG1#h0tpl~FS8{f$XkH~3Y(YPl1N?h&~%`-d4(+r!6#Vg6A4r|ue2p0_=G?L zB@Xu#HVIL|Cj=5Gb6!m&G0VqOI$^z`WVFF`8uzDF`GCqs7_pk4ge@Fz@y!FYYW!LQ+ul>~zk`33_R{wzr_7;|qlfZ^5=1cOoaCIc95 zA3-n}H*Yq8nOTWEU{INRfz4)+N9;wL0!=e2s#L(6IP? z#01TCJg)bblW16jK5BusWvSI4blt9pNkFVdA2R{$^&9ne)lGO35bM&%EdaN#0CjNm;2qNPOG)7 z=vgXam)AB-zCxoJ>(Caroccj}GMHQHyQk0BX$+pv=#E?^s%gMq^#aU!f`BnkT;K(m z(*yxynz+ylFlPw@#w_tQFTk862pE&Z*S!F9jv!#n5#R6v%)3Gaj49%qUVwR@h=4Ie ze9H?k?;H^@>h5oQ0p`6V0!I1$9WTIJDP>et-MF0^Alfmgs*j^vX~AkgP;1MBYd|L=%8NsnJ+rR7d(Lus)+ycMJMh1E>9L} zi=X?VBlr%fN~VK~fgmUX zk^}@rxK|y1zp8KjURO`m?;Uf0dCTtmeEZce)vsQ_NOGkjd8D++r-cy_gT+;f#NINt z2gl+|HyaGv zX-%=~Ew*@Z6OA2DN!_t){z4~;^$-={T2uG(avSJy_;S=LSsa|)djk9S#JW30rXD}&|}@J zgcEEGn16P`?%qJ0U}J#1%>jGFTs}>%Ne>&t;a?n(?N*Kf(1n%T=@{~uE`_Bfb6l6j z!AHC;rl9VIm{xVJ?$=^{_y^jY`gWRZ4Il?~0-`J5p$g=_I|0FgCp}dl_uB~wUOQP( z1#+LAfZ(c=YgB>UUnd}V=;Vkhko)Qc1gD%FRRwZCoq*tnlVhqt?xPbB`skD6szC0a z6A=36lWSFh+&3p6^vx$HRDs+tCm{68C)cS0xlc|&=#x*bR|Rr^oPf|DpWL7d3w?tn7Os2Eu!4ZG163cy0vE;tV&6x-1JV%2=o}1i~d2r5Y zG&tt8t(gbs{6&Lf{@Rv#aL!dUIOeMDnFr^*M1x~q+L3v1&OtOd=AfOK2j_f4gJZtg zm3eT^Ei^dhmV+`6&Uu6e$2@YE%!6~zpusU`9GrP@&JQ#==7&Qv56-!O2FF}5nR#%I z`!qPl{i)1@bBw3KF~;xCJUGX58XV*KGz}j60vTSr6}BbJg{TW*zkg6~$8tiZIncTk z)XUX&H83wf;YuX#NPfze0cKpu2^)dwaxiD?aV0101*XfvEOS>^a>90Cx*W_)hq{t8 zI+PsDWQVzuGd7eQ%zbyuFGt{7oQ;||9G$%t%ko;FZ%V; z{D2$fcQq@~zgH~H`_1?p^O`L-?vcce>_`v4_FI0*gtxA20q7W5-=g~^k*eVpFVZnHe z5)D_N5D-hk`x7v-T#_E6`s$OH*dFc!)O83e2{`(Z4t(4XRM#P_A`o<-Av{Q3hp>V` z(1G^xV09e>SDVmt!FPp+sOu2ygOfGsz?X!Fs_PK!L(qY52M<%%A=rnY178asPC6pD zCbj&AIh20Rk^~CgTGL?e^cN<)jlI9yU79!&_`EH8+!iYyp~@U@HJXd13S~UPVrY1z zDt2tPY8IO$sTc^3Ri%!fwpgF52|pJ7{y1H%Uoxv^{N%4iH-D5Wb|Sp8wJ6#Y`t|Xu zVA+n*hjr~(W}?65Vitz;SA17LAX%d^6UyW0{Gszs%glufMI5zjtp?E8BDIh#1}$=G`Z# zu*1GsIvbPkDJtx+36{>r{QE=|_V`e2%)_Uuu-6X7#(exF6}I5tRJ*f(V_tr;3S01R zfsM)eDJpEizXdj?=%=c%1^*VIgmMu4bz%p*JVYWBdDwc80!rF4hH>(58 zxBU@sQ>kVSl{0&yOTl8@eC#*>*Xt}7=&XD5C+nK#zg8D2CzU;K@*OU?Jdec1df=Td zxU^1;e=pVo?{dMVC1lLSI^c}FTr+{gJYTE<&UC>Qo-gMAce~&U&lhw5dt7jZ=Zks& zy~N!fsp~8LT+?saR%T9kn@!{>cK(XImACLxTf8_+g}1&OEY6y{cq6+|7>O?XK2_vw zK%00OiQf8t6=eSs2#SU@tLUXXtI;>4&Vf?3>fC(W5{7Bu%WaSAgY-jU125M0g-2Kf z2P^|mcw?oY7Bs!F_?ebJvvEF@lVi?Y_3P%_Xa9>NfzTMv&Iww(V0y;&wx1-S4SYB! zX?^F(nFVxiJZ##`0e{z@}BZTKd2UQWxZ%7}@ z2^y8X2VaIho)a@R+YFY3dBYcSeaX^ciPxDn>nmW3u|JGdNYG49EQSIcIPxOBs&&?DNjx zyt9R-9dq0loWaM)+6j)C?~Bgh^j6K&j``4?wF_{}k_?aR5NqvQtko=4re$ei!P`&| zisfd|i0>VEgU!b;pefGsEy=+|G-0h_*K3K)I* zt2$uQbW8!GKYwkdU?5nGoB|11HTv?3tvV|h{dmP-%TJ8!;dDvA7^~l}uXL(qF!-?m z#(MZ0I$-c)0gUzWH+8_^#{w8D=5OhM!H)$nme3dKfWeOiFxJ%HUMU#NSGF}yi)7VU zX0O<)vx2eimcilsyCok}Oght+X}?307+LM!TBx??!##s$p@8*^L4WMR*KA{7L}PD_ zye2FJrc-6noAO8sU$UVtRzi{4F$znBOO#Ml@G}aFf=iW9RNgZR%Ya`ip{ST=6ej-5 zlu%Tk(*^x zlAA-1O5v{F@C%<=rLfp&Rm+uP+4N3gm3rZ0Hplxd&9J7HaOFU{7WB+3oM;JG5~OQE z*ZrLnE#b<7bS>!HS31!m*b7HbvKMsztDI;N>_yOm(cx+*S_FF$v|#x7y%Q~hy$D(` zzFb3E4v*#SFuuf27S`SbR5;rfX0CN9Nw6M{!Xyc!&2=s%2}UGH!k}}#OG$z)36e1O z+~88uzz{?a4nxo%TuKsbi9L=aVI;cIr6j?Y1W6c>ZgMF}uq8nf#-*D{QsjV>Ufttt zV`AaMwwUxsS8@a!VoxJE7>{moB}cFyK@P^ETV2T!Y)6oTafpwab#FUt%Ji@>2Jz{$ z%5ntT5#(U}xy{wX5^P71gRzHCsa2jG!FB{W7l{<5|2Vj5JXz^rF5*G6;~fR39x8O$oB@U^i2 zE4))|OtW^>8?F0h6^Rm)o(VG{+D)y|W>PzbnGn*ZMzopKmtiKvt*KFMCN*f73BhS< zOq)ra8fHQSni|(;@~MMlw-9Eg)@n2PFhXKNESZ{6U>aW-=%4TvW@?=_Q}9pt05i2- zn<@Awe0!PNpv@Hg6F$34ZPaE8{s~`PrZ#Ca1^~BlAA$}nrjN_2Lv{?= zda0IUf58Gfv%lojfkij#i0*0Y)*t1-dfuk#I|YqOccp^aj0}qzHi!SR7%pS#o+#G& zblwOz$<>0=zS!~x@AI~bKAs`ZoMp8$tbR_+ZD%-V zS?vt#p=ae*W@^8c+ZkmZj%QdQJx*QOPdJ<)GeH?vQ75Y_8_LcEWms1| zC$}>602A>c(h501P==M(DeB6y+8NefMRjFa?F_52Q`MDawKJ^G{M^bi#WSj4Ii78e zA38I&dg`-npltQjXWK#9>Z#9mfU?z7pX~%?tEWEO1)l;AC0cBjD zO+^;$ci++XR_dinan5hsK1>eoqHU-)-Ri-N>Nvdss2-xgl{sD;|Qlp zj+B^cKSc@l!^)17nCd=73HHA#N=k&c#uO#k@7n7~NxGe2e{0T>l5{)4e%8DrCFyp8 z{i~{y65*{cYA4)Bpm>7)s?!`P0Xq?tV1H_#BPC!bf)eaU)f_1SI}wy%|7k%U=xA}%<-?$6(QJ!AOiFKYe_`(aG!2p(Zq>*c+FU+9=C1} z*frNQH;9xwe<^<25JjnTYyskR?&$Q}3q;4r@DJ|jT*ea}L&870qjN1!bc_Z6Og!CtslB-_QB;eVWH5$r|Kf)&KuooEs4MbLuv#5+{9 zgx(2zE{2FNSY5o+i59_L1V6%B<6Ta)2=*dq!OG(dCt3u15wu_(a;6h4!^Ib@O5W{6 zi(oH;A7PF19w%A^dl9r?#qwS!S_FF$v|#;m7HOGG)GwVyOX0UdYj0xfUcVGJFk-QV z+7jp53YGV%L;05y6f2VVt3$a7K~O9`KA;Ze-UC6g#`vH*lv@r2#bV+^>QL@95EQG1 zv(=#-VhM`nfxh($P^<$O8vWj2jwr92qe13sgYGqzZ>_xE=A0j zW<@1#t|S(EBH!_tl_lL>NjUVukLI66xV@54=y~VlM#b;1BoKPrx%ok{8!QQg9(G=S zQ0xv%0-;x(pBsd?SP}}0=a1z^#qY5s5LU(?&ke$xED42$?vp<_5uS zmPEpu^;7vt@%t=^gca$hbCY5>S`r7V&ClfKz@3&v!dmjPMA{vxC8Ig2*zm1Kz1pr< ze!DGEeNG35*@}3Wtv;{AOQb9UV#@l04p7Ql#KgSyMI9zyy-YkzUKi-_;u(x+n8CiJ zM2n>{qG1~QvJx$p%ZP@#>?=AnOlZWzg!WY(UOcN24YS(UbZD5`h=-}|>pHx6ej^&@ zw{PgsAjuI9liW9zaPdq>ILvh4(!s^j9lN6!-%* zWIPKJ5VPP9^?vij`8Y5o%@<)%Zh%sLtVjGw*b^@kv4GhMFd5IG+eQ#heX3a~Tfa#k9gE4RZ z+6kDxJ1`it=Vea7^zDJcm_;vl0;UCy490Bw8z*2|+sI(ds=svtre%!`#@u>^6ELl4 zWH9E~-#G!(VnzmIroGY$nAR~e7&GowPQbK;k-?aFuXX~a)r$fWp!+;kjZx|+p0i>BpxAdi3S7v6}S`L`tGSc?d3+r8|(bln8br zC_yhi#DNmQP6Q>GLnlc|^p@7n(RTWGZF*0z1(PXN8OA&YU8Tq}Fp}(6m0@gSI2jm5 zrd4Ga!x&Bm#*i6R8S*`O9LmTxFo5h)l_6h~C&<9)ao3D8~HC zkyVD}cZ=#ce9>$`Lv8n=86S!)LyjAQ3}~?JK1@}H95)0R&~V#*H&q#O+z@0y18(=- zRb|L=Ly!Rtx!s4W%8=uRAOjk7yYG=vhU^lu;R@jk8g`jIC8rE%;6-Fa5Ao{M8wzLd zdXKRc7=J}iL6OT(pSW02+|vb@yK2P665frGTr30r+69+CoDmoE{(W3<`O6t`G132x3od^;BQ9q4`?}!rw=?2mD!-o# zE`K~DF6Qo|TyXj88F4XLAMJw6pU;Sk+4&e3T>gGWTujIJcfsWkXvD?*`vBtZgr0e^ zRr6;pAFvAE#&*y!e85Y&cAZWC(exsz_k3?#K7ODp9qU@A zr)m*_$@xL9M2s#4K{+`In4}-(4 zZ3{uGwOo{nFw%p?$H@-$Z0*2N%||3M^)x<4^@p3as;GIatj6y^0*Em>DL*U^!ECsAk9rgT>8r9ZDJ|!eDjd zJJd5E!eCi5>rjS0!eBL1a;Sox$r@p>m?=AyV~;Rc!&Drq;7PGY7_4FT4wiF_rG^n+ zkB;$r6=tMr!LLD-qR+HdF>{J~Hub8OZcja33zjeQidwo`NYXW6$x>C+u&K1z=1y6< z7OY!NQ`E98)DkNv)Ae8lvrkh`w-K`<+r<(_({{7?5*9OewjQiz{$KUbimL*}8mwn( ziuN-w)(Bd#kXcaFBE}j)0~RlJMGXUEji3c9m_SiWYOE3TU@gHXxeUS ztP%8JS#xLW!McX^BzCK4?|VDmR?9q(Y(_(au#<@w^O6RvVVbHMggs1x2CQLPsv3md zOM(WhUD~P|2JUa8XMy#~qN)bL9>`BU(ttI}epL;EJqQ}GE?H95AlQST0c(*1qybmA zbz1e-*PgAB3bDJKZEd--*I%r)`|md1tSufat1-tq86-(W?>}9QxVF^vOZzIkRE>Tm zdi(R$m=mS>YO7L{py=K&P=k(lUmBBhi{AV~HKg5w(0lbP$j(G>{r_O1cQO;#i zzx8o^!w0M|* zBl_s8b&0~PqJQ$N#ttLtJ;&K|}<$8AsZP4p{Oi2N*xh|luPx)~AG+O(d0Aa@o$Vq1JN>}?IDUeJ!zcI_MI1jq!r|k4t0In{9pUiV@nlLK(P}go zOWAyI)b{xPgMOe2k)I$D@d^H?E|DK15%D4ZmoAZ?BN6dA@~qxfsCJh8X7~bdghcashcc4whmdGL?<8dGHXP%O?Zu`!5OF}) zXTsarYRCR!x9>Yz_S=5{?asT+Hoxz3KyLZ_dE+#ZahlI?K&}Now}6R^vwfyMdAt-f z&5cFL`9{Bew?2DqwZ7l4RfQjp4Wakw!^bNJ8bOo4F3_Z7Tj;&|Y>SCwYsiI(%g%-E zAtoOj3(`He-XB!U*0;hP?A77l>p6A!Kgq~`YIEwdXs(sGBYu@_o3QB7?;~uqP+O{0 z%vlSSW^=hXyV#ny{NNF9e6ATRwdcL?|3* z2ZxciU#ppAw5^uKq0E^D;a@3s{*L8S@E)6ceN>4!8cOJUvqv~|v2(O=dn?U)5{GVf zt`@FU50;WRbhYycw>A3snsb%5<=OSeEL>xIK9pbHBtnV{+%6@T_?csh} z4?4PJ&g>y`A|gK4&nOZrzC^?a`dK~VSltx9e0l->NPL!`Q$)6cMG1*1_w#zl5p!Nv z@x|Wt_Z;<1Q8e)zNRZeun9o~#)+@z6A?Pw%HsrXA^C=` z2*D-<@4&qy-_#W$*n}VgH;;TvSA<{_f(YC-a-pt>;o<~t75TQV2*D-<@4)>b-_aEz z*n}VgH-&sxSA<{_f(YCR@;wp}xx=k(>WT0JPHEnh(UzhjWx1#KMqBaleO)5|Mj~RR z@B>{Ub<+4ZVp;G*T_QEqn20sNk93LDS7Rb3{2%KQslCQT%rFFIO4D&{9aYeH?*l)LeSgM5khr8{Tjpb^~Z!XaPzp1s@GA{(> z-XGBW)hld1`%{{EEmbCNuUHlO_0QB*nUpqI6-OJIEA;)JtE)<#D?t^;hhOAZWn|>F zD~ut(R9BTcSL}oI1ToJ1N?lbJyTVv>k-DnXxf1LO}l~5%-L3}m&wYsX*xe`?2yUJzxRT&w1?FwIBE>~BTI#)ux!nc{< zsH@6iSNMAKTXj{bb0ydnzVBQ?s$%au)y9&kuZr_QVB6k?MOLyw5;Hccsa|fYseb23 z37UOU3D!|pI#Oa@i&N$VYp1ImDKYQHDN3+jx>`wz&`3*Bf;H0b9Vtn-6ReA_aik>O zPOuib){&BQJHh(rIwd8>OR?b^wG)nP6i=|`x!#cyuoFQE);TvgQUZ1&D8bt14~~?8 zod`;>p1Dy;NlH8slwb{WlOrYRc7k=w&5o3$+X>bxe{`fI-A=GRxrLNOPTnx9u-j&D zQe|$=(gB+Aw({RG=jAWf+uqvnE_?G&CcI6((<#C`?b{V^T|Fpv{-o6}4GM3w6)Atx zlha-bRxAfAl|QS=S=XL#R#rYgSg_otCTL=Bu-IJj1Yz0o7d1Ur^TD%D*m$sVxm{0; z&3No$uz0ycP0Rq(vCDx9X4+GeV>cYT8mMBX%?c53wC*odJZDj7!-9XH8+Q1_8a5p$ zW~SHZ39^~aU_nsROpmAu8el$yB|&jBJ*pbbL%7uG(UydwKX+Dp||J6uw_-`v<_TWvn#ZIA!GqCZ!OZsk}rW2tba$H`_R zyG9}lla*Gz(kTPsi(b>zXVrzuNoJ49^j)3s;|pL34)xUZp>E)@wXg(-+G+YQCvaF6 zOLVA|rtjv49$z6#bSRCc@9u;iTP#a#sD!2ucfw9AVI@A6K5i`D&c|Yh`H{nKjK?pV z&*824#oE4bJ3?^4@~YK;XY#&fizxS?`HgH-UaZ%uog=-wCnPFGmB-sO+|!wccw`{~ z7+H>RCm+=*=)pUm^%W(pweCAv!nMXt;Jche6Q5~V+vMp zwgrm&$d4$iG}8pkEDb}*-{?v+UBS%KFu2@TSDI-PW|oFg=YG1<%$MNdq;cn&Yz@QF zQM%HGwlzT-MyjKAr44Osf;0?Z$LLBM+SUYV7}xHvD=lej<`EAW*RX-~09|QGTN_>) zwvryGD=lej!%M@K(t~uRC2ehZY1mtOu&%VBZB1|k=rc_}L|59-wkAk}p40S0b)^k$ zYl1ZBK21MNSK83FCP;%u)bztiTI>z6UlcVfjY_y_eaLEU#M|8e7sYa=<}XJZQ{HoI zmDwXSMVQ)ZC=pnLJyKJIsiKAwfz{Trnj%cSG?WOetB%tYVe0av2sTWz39O(Vr71$R z2|)zbO2=!85N$#bfmP87nj%D-5JX`8^Jq;GqD}B#BeDssbRMHALbM4%1lBZ<)f6Gx zgdhT|mlHKbh&CaJz&hn5O%b9^@NO`&39LvSrzt|T2|)zb9*@@)A=-o>0;`OZHARRv zA&9_w;t3>TGauRze$TR25Ie&E%BQG=J)TyqY&gwUHk_ix;`m1_tPY;2#bUoA78U`g zYO(lv5eswuleAd8jgnZH(x0rw;tiCS(v|`L#)V!Q%m9TezShvoI7hxV_Or)frUw|cf6+e5nB%XdrcnaG2&q! zD{AsMmk|$h*>g2{oX?1d`OMekaZV#1=CoN&9_KaUVO}d~@&xW^CBm3 zcKokZovUZ`z7uTTSEkv_O=I698v0&EkH(%yH1xc^dNlSsqM_f->CxEhh=yJ_uSa8_ zBO3Z#RgcCVKs59?MVl08=x>L+qqmJ^Lc-p!+%+vH%lt}r?Hw702|?&r|_8n&T4{whA!M_Q?{R!MLOiY87c>h zvu3wStLD#ILQ{YIHR~ar@#|+}DgVxZMS@094KS!XXi7H1R45zG8+*Sabbchr~C_5DDw8Ul1vBvrO;Vg{RDA&SKV6YYR8q=J%JRC9=}LrzK}G zU7&kM(1UpQelpz{wsFJ(m+SOnOyN@7Z{iKkk%PKBC#qY5?ufUsR(;;0xzVFsX~eI) z@aWbq{1Lo)IWvXd1c-uG$s3b1Q}_*lC}@$q={PfmD}SP3<w6+Um)%1q%-F;TFx=RH`NDcmC_3igP3V^wAfcZZ3B-C^D? zm6^hQVWMDP`1brypF6@t!HzKR&dvN=xED+m=mpPs`F{&{fr$cL;2HCh(A!L#`L}TY zmnhKxHT&6eQ@Ha>6zKfU@V3`jFUTx@s#R;tmK@VhTV7yETQj31K5~D^QYGzu(X;L1 zo8fQG(L%LSX{7HQ+-7cw;=hI)2MfQk{RaNB9DU65W@VUVTEsi1yocJx=T=pQ@j2bn z_>gXAxH*+!d``49J|x;1ZbxMppHnQ24=Hwr8&Da>=j2M`Lvo$r=1Ye0Ijz$8kXC2* zkq=}TpA#yL4+(XqmS=oUr8GXI(wPMsKXT#u(tNdDDbCgW(@m4hLnNZvC-e2?~2X7NNn`Q7r0`xpAsAW^o6e2 z)FSkVjXvzm&ILC5H?yOSk7|3~w2GTS%hn?8C;!5aZO;25n$XBn8W?5wVK~7`Uk2lufX>gf8VCz#hMz%yZ2TPAp>K{ zOEhJS%~qSG`5{zbRC%eUit*D->$+AMLIwtym#NC|OXemre+U^EYhJD?W1{Rg_Z5e; zQ4Bn<&=fMHpI`t|^^+krU?9q=p^znBz#IL{EAu^zxQ5~51-$alyh>BX(D4FV0yD4H zR55(KfS$q3YgA87F*d9YtTW!5Rfh~ryBLc61#6AW{*qG%)*G31Sbn)Ej~fj%A6Rq9i#RgJF*$w+ zI(TTV6rg zaC3&0%|~<387j+aXISf8psp;doniHJuDY_Uc82xPmvbu%*AuPS&N%Z>Ji`j0!g?J_?!%FLux#tX( zWwkS`y}qfgEUTSiHTG$BWm)YE>$3}UE6WtmxPqm4wl%(Dd}j63XWKy8>Z#ARgR<3A zpX~r;tEWEO3CdPaeYOjft)BYqAW*h?>a)9mvei?c9Sq7=PknX>C|f=C*(4}iJ@wfX zC|f=C*=|s_dg?QCPfT zW7p>=PQbiLhrrm>`Kc2y@7p0T_H201s%FUKtvm$Amdwwc{9@kSLtyN<@Qzl^U(6eR z2#gJtUpo24ya$ND*f04Nfs@}E2JALZEW5L9Klk2dOUM@~kb8^m(&3ntFIIqem)NDV zF)v@D!0s)qONV1_zElI=T~3z{$NcMgcDRx4_1H{aXdL?B4<$bM_S)aM8a7IOgr&DZp+1E#NVG zU#Wl>yi6ct`qr@Z;mDZ3nH=A5Q?u;1nefI+K`m%{W1Zc6{S7_d-E3+4Dw@<40>*=; zZ;qi#5-=BEot3b5!CVAdZ~I9Erd&R#V}(CreXTk-AD-i}DEtu2t=DAzA>+%HS}j;g z{tir_*JdS**36Zp$?-8mUYB`%v&nj2a(v8#*JmDou4%5;=$|c0#){eQhOFa{x2m=M zm1dHFS&h$RS)nD3mX`f`a(ql&d>YFN#~*JjHXAkJ8Do0llUPDrn0_H?%zcC<3cGBY#F3^Fq_ zlPojSnc<9gXZvhlcF#;i^{a@g>Z-`q=)V8^zdP-2yw{llFS9ZuHwD4wAlMeo1XIm$ zDGH8RsyCzgPI$0){ct{i> z=0der??m%G_veB8pGq*h^3SU6PSov2wd!2G7X*{RM7`$z^obL}R4wdqvH^G$j+c@=Hd^seez{1mk{pj2;IX0TyvRJ{{2}nz1Uxp{@{sd~z+*G; zn6c#{=MRC$7T~eTmWP}_1Rh&~$7Wj|a{dr_Yy%!!it>;HL-t;w-fjmTh2y0pj~yzH zy$StMYqdIx`fz2s)sC7&ap5e21ld0Lm(@ilPNL!8s02Iu?RM0u&NW)|hei}h@Ci+k zY^9m9V&;+xFmwMU2Q$@;Uq)Xz}soNUglsGp(wnKfrt)Xz{4U8Xd%!OCcCKcmXS`3x1(9&={7{7hhmn(1=p z%yRjezzkK?K67Td{7hhmy6TkD%nIc*ff*{T{pQSy`Wb4kE1EMa>Sw6Njx}di)Xz|# zUAZ)~LivmoEa$VGpd8naKHCM%){j1$1!n6qnpM0cPt*pX~)^>qnpM17_<- zpB)3t){j2h56sq&K05%+){j0r7MQIceRdo$TR-~jcwn}E^w|l(Z2jo76M@DcUk|>OX@C?vGv76BDQQ zGnn9h*ws8Saq2#U3GRPg-H3^>YRq7Q`(4-Y#3b8KaDVHXo|t6&3GQc|>WN9VpWy!0 zX+}(hRbSjscpriC3GP>&?uiNbiNFN+r>^CR3HXV?1oxw^?THEaiNFN+pRQxXBqN^) zOmM&Hx}KP1`w8wZUC$GfY(K&Mr0aWPlIz zy6zxSRPELmnqgyjT4?P+(X%xQA*s@3-ELj7?r~rUVt|wfl(;j%nR_wBrxiNn|lGCNdlt`xP=$sO-W#^`nU7~ zyg3PsMgCS^fVU)pv8LbJ3-Hz?FqZJ!cmdv)1jdSerWfGtNnk9{xAg+NBMFT4_;v)G zJn!oc_SQS@V6S%GcR8weYArnP>yC+Z>$Rv_Yb~#w$5|s0yh5wZx3?wXlv)lFSf}q` zOTvk?93-%2-_e$Y(`PwIVEw+6Es2$*LnA&xvWa~HYx$jRNeDh6kifcr7h4j7PY5Ki z#^2SJgy0hb39R>bBN8Vjbi2zF&D!AP|3Htc>0<9fr`2!PhJR@^XRIZN$_KRsad&^{ z^xGL7GsA!QLuVOJza3M;J^Z1wmM3(~1^4ua&VruMF$vtuA3CdgLdWR8w?A~2_JodM ze;VgF?T+)^bJV&S!7QJv0{Drk5`7UaP zx)&~jzX)7VK|II{7r|cyE~qCCnQ$3IC!B@PkzY_3HEH_=~^=^-Gty9GlQD z!$V7{dlO>o0@{}NkS0`m=Aisb2^1Ac-yD=TAqW(u$6<3&-g_WW)ELX=puFWkpeQEJ zHV5UM1_DLZaKs#xQ!Ig^Jh1m(0TgurgYJ*VX|H}b?72I-ov_|eb`UGUw!xoP2kk;u z@A+Kg2Hsifv|qvHeiL3@Ff< z0S5ZR{4$`ZX9gJc=lW$p(Z~!i1$d4HfdS?NI|eSwa^(YD4Lsaz7DNU@KEO4=d43rP z`2dywBm6QD@&W4oNBU(Tc~Do^DM;Sm+8gP%b^gnuf5(6=Oj^D@$U=W?03<_06kFV#elH#l#iOt4m_WW>v++HOy-Wb0;r3 z=E9}9R!doP%mh1E{=C|V!h`OJu}Vq1RGtd9`1S01p8M1qFV|y4pn=L z_4z|h*H}52a{nvMd*$U?!G7z-!EJg-bImE49G3OBnULGsT^ig{FF$rz{@;Ev(bI+x zb;3Jr_%*_g^S1KCheG0=7ZW{g_)u!R%Y>gz*rE_wS7D1f#U^Z}fpb-6%zTGR=H1>V zHHDkzaVU1)V?s{JcPadoT7in_y%!TbZTL_(z0Zc9obSdTK9pGRznJK0!-sP0119`z z!WL!Qx(Zv=cO15{{ogfN7PcGiDvYA@MwHyv?#kb-_KvipV6qh+B88;hl=~pfS#fCR z*?FK*oPEdu+L;)I-q3A#`t$DBuf7LDKOD8!hYipZKU_seW%UsQ^u%wUo~w7}7n467 zb<;-;z!N`R14mKxF$3_#FW>N>esiHA%sR@Rj~k#Te!7Z|y52#uoQpc5NHY%}KC@8=`r)|Z2mRzhHtowY%k6$EVv5tSv z2-bZrOM}G%{&^!<_jxQ07AyA`j9}eEGik6`v%hEr>)w?~gT-q7rLke-_7$&Ax)he_ z@jbZ^EY|1oVU=GPW5b_XDQ>Yae|hXdmSN*@E5Kq!zR(CZ9=8H47UHiM!N%iOfW`WI zkr8Y>ZUtDZyR(3BwP(q%JHFtbZE(DA9mSK0rzmIe}^(gC{ zSLJ0|HT}9ggx#>wQ;PUZu%%sZxZR&>cy_%TRE|)h`;`Xr4G|;?=hbI1*K7t)&}@F2 zY{pK!%|$hZbtTx^nxF5t>#I*`;yDiYKGI?o)~fC=xMsic$2NmwH45J`rQq^fHU(5A z-!-M+a$GhAR4CswrQq^iHU(5G-!DaBFs5)jGMfS_mmio?$mI*DVt!~!A(tgLC#D7d_n;R{rjI4_{m`H3loq%Q~*Q1$%OltR)M1PZ8t{?n8~(ia2@sD^%4 zib8f?5GbHB`nf5ET)u!R=@+IHa`^%(reB&;$mI*Do_<9X;_4}?b=*^ys%F?;Zyu~S z>vR1M^yJ&9X@XxHz_42p4A%YM5X@{$3r11Z9cs~p+nT1Td|M&EXA@Z+8KY>iemGLb zh>U(G+vq6OUZ>U4s7?kOT-&qd-eSB-aqt%fqH;X(E(XB^P7pBQl@m%r@NFW303lU5 zu_Odv7a|A{N|lpJLhyYcf&d{@xl~CAzVJg3Aap7xmxQ1$V(d{MWGa^~2|=yG7y^V! z42!n+xvidX{ToC|{u*3vi9R zEHK)ySdImFMqU<}5Ux~?1vo}t7ML@xT#kkN*Kxm?8Z?*9atc`7RQP?OLTL+}A{PZ% z+*J5sqCynFBXUuI#Z84@Bq~G!+#weQSlm>uZt4p&OZ`T#-fm?211xYV*CE&pkZ-^2{ zpaBobR<2c!2Kq)`8t`gt<=W+Fpl{@*0Z+tMu2YVN``2;b5G$E5C-59><+|lqfNSJs z0Z+eHu2+r)ct&0p@XTxF`sG-FW8`H4Pr6oaP>zNB*Kxl{mNdaB;O*AR4a-pgr^rPC z9%-%Is2m0Gh+GulHP*_F%TWM#$VCC3U9H@t90m8U_NRz_;rQtgMV3dH~&}r0}S8$YDb;w zT*G}19{F+-d`wdy+~3-W*x>8_C^7e6T%-0ZVyH>ZBmXfXHu&a0N^GSCRu(Z-DIIHK zgOdQG#PW?8>Xt{AB{rA>JVQ20EZ>Nsl5rpQf~jV>6a@vR5{VV{G1NAXwkB58$58DY zwkB58$58(~wk$EH^v3rwDmR?RP!XMNO)Qs>3B*t%J>HsFE*}$!p=vtEnpiF$6NsUX zdSY2(m@Zt_f&?q%F@YE=tA|(wQlqneg#`M zdJMmfts6atU(D8x9>ecw>qd{^m$h}H$M9R*y3u3!^=;kgG5j9KdMx&Y*RV%U^dor#5wMZ#knhpjVRe{61oyL^Wiuj3B-=-D|BBn-n~q4fkKlgQbNq}*wvXWc z6t}`JH6p_5F76||S3r3L_oJR?Ga^U?d_*9E`%m01-*iO4M+73c-}C}MBLY4m5W)Q= zZmC~tL@<2ao>GR7;C|AJY(@l$Wcvv2AHCQQk!&Bq{i2unA(HJQxIgq#B61>ruN$85 z>35=PyP<26$zVq(s&(B#BKL4leW4jP;+Fs`&(Y+^%Y5KcOfc@iXFC06uf7zWSqp;7 z`95&zx*+4CxOlk_T)IQZxTqyw;RBa07BVhMhgbT*rQ3##i%Q{DK5*#@BIBYkc(o5) zx|hhfr~_W(19!$%&;a&W+U&ChRm z@(0pL0r>;g?su4ugWwMW2dv}#j)uiJ2>u{&z?%Lp({T{|LEwP(oqNQefckvxO4(3% zD_e$>!Cu#z!@YGk{7a*`f|ApFwZ!lq8USl>`sEb@$Be)aGgyPOTqkf$1@H6r%UQD% zIOYI;Q^ER|vv4PH4E_&z`{k_O2^^#TgWkYd!V@@#`-i-NvyLZljPnnB17|T$;3(!l z;tiY?J%OX5|EM=`mh}XVvi@VCaQ$*TVrxwB}|k9=6)++V%=xVlVkDO2;IHdg+_Re zYtYe)Ivw|RgKIuoEKY;pXmR>W8e?N@idV+Qc>R?xY>HdP#<=~pFKmim#>V*ljW2A9 zW5&if{;e-;if6{gc>bL)Y>F|)#<=$8=K?myH)F@I6c6Hic;-e4>9wu>iJe;P{+`D3 zQjj-R&hpe+{W;f_xZ4QlvM`QSFk%hL$X1Cbf>Onf&=1TiNbDg?Qh6Nx~+bek!9DPe#HoR)E@13|AT(_F(VV;e#$}Dkw2V| zlwX~t6F;sXPVi|y6GW;y6+(onGr`C9Oc1HoFe22N2|k}^f=CsH5uw6N@X0(AM5-%{ z2z6zG&*YgPQZ->js3sG98qWlg@;D5yTWAVihQ{FKgFCj+6vYgUQOxIcY@sQ* z7#hRbmxl|`7}pFPe?Fz*;<~Pu*tP0i*{p>upF4`{%)zPdVUs1bbZ@Rj?wt6%J0R|k ziv~^tD9;TB-_nrzv{4yk*F7{78FK}nF)D-X8ir;fW2)ejMP-m(kI+nH%oKc{s0?yq zp3h$MFrH^j6nvPd402+g1!T+I-t)Q>aot$^kxzbh8j;{MeYDE`R)g*TgwxjC~trVim3q~4UkYbb3IvQPpF6g&O zZXJGfMptnZ&38fcO)ebe(H)a6D8mKMTl!l2+`Lm%j2y{V{ zPI7PHy|EhBsSkSi4m$ZNS(mEVRkaLxh{hpa#fFBBxBY{L#zF4QU6g|xY4t=WbHLQQ zWI7JQ*%jWNpmD%_+BD@L99j`LV3KT^a!5Nd$#a33uWiaf@COb!nhQ*4XPI&k{6XM= zIjUpILGTBG116p>aflyOa8DLD&Gy27spW--`NHPkP1u+Z&h>@OyWxb5dEnu`uz5S2 zurdD6^M%d(;e?HG{|H~$ydh5581LMO)4!i%oO|s4Vt@z+Cp>YAZW}SkMZ=Y zIdKp)CJyfOY5S`=ZxA%*jmLTV)toj68q>z(JwbEUAZW}QPw)gyS1#GZF=;%}6Et18 zWN6G8Px1s!*DV7JnJk|jgKHu>Z;JVDbHONNGh^2ujjZg84$ zzSZb2Y1b7h?(S13To^V^AFsaBkyZGl6Tm~pTYKZkI3@}|jrIN$5*tzjm^g=j=# z+(r8p&ns@7xCdk%xpPa#vAMHQAnPa;xX#XXb<_ecEIu+^?#Viqd+vxhHg~S* zWF0FyAB-H^Iu~uSjz#+=#YcwgGFivE%m*IF=FX*;tYhir!;NEG=juw#<8t) z0VV5LK>5((*w(p5l69<++$eBt>s$uOI+j6h2ROEMu5@G_D;+oe8{0Y;GqR4wj9dGS zZJp~CS;uUsoE0 zlRkl9(tmwv5YGJsg1P?OKc#p<;CMVcEi{?gKy;Duyc`D=m!bw*0eDF@E`IQejm0(Pspe@?VAK6$6@& zB^5@+c@Zxy$<^A$;eqR?&lks-nm-aYlL)wm`a*Gp4efrX-4JFQ zS5jXrjxi-i1+J#PR2*S?Zt!s_IZ(Ky;*LLKyX^ErCyE3JTvuIK{8vo6R{@g00hd-^ zDGo3_H@HZgguwOHMFg=czP{>oT0MOOZG&r?y6i5;4*q8?CZ4R7jIWkMpt=_j0v3#~ zl|$fV6(L}?_8Wg|ILLxt~l)EDA=(!eIOXg-S^*3QNYqu>2umjR^UE zqtr2@Y#>_#>bAG_Q=0 z^ZH|-_%zpyk8}MKpZGNYjF0pGQ=j;pv}yh^Y5%8Bd`{_vk173UKJhu>6Fw&VpC4s> zEC)vTQ;qO&m?QjgJ@E^hpD)4-(T|IbUwVWWf*;o*zw!t##6B)ke(e!n2z^|@{Kg}^ z5c#;c`K?EIA@FhO^Sh%9kIN#4-w|6DErzN*Q}3EjoS@Y9shiVJjJ;zpKfrKbua=fV z_bNr&y$_`?kh>Y-+9B2IgKkJ+WAqN)2Q@0U@ zXqK{6lp#nmWC1~=0{Ug@_T?r>rXu7OfeL7usXO?fBIFf;3h0`tJNlp^4# z`Jf`?6@d!qovAzfpd#cIfeL7!sk@Y;B7}MUN zo9Eij_3t%ScQa$<+O-sBg#zjBW~^K*m%^-2EB%KVE7#_wFe{Wz_b_AS3@NOZ23vb| z7Xj{*PJcf3m5}@j71TY=Sm}P1%?icTz06qYewED%b=AGiSm}P1%?c&feau)nL$Y7( zjvCRDJImnKf=!nM`}1PTLcw)kGh(W1wad$RPV}148_>}&4{TEmX8=pvj>;^0nUGM+L^epg#Y{-3PY&83@oq99q2^eyLE?>L zLP8y}XoJLSBSJ!LVB~uO64rZ0inY?6U#xdsk*-ynQEze35N^=TMmsdKmS88YszuU+ zXxuIz-*R5XXtx@}1JrIyIPc>I`!u9Ogfy~{YjyhF>OptnaPXyiqdV``bz8`lofl1R z4mP+xLA}WRw#3!B&uAcx(jc4@2n2J&QfUxQ2LyuYpjjG(GXa5MCg7etMdyT*0D)i< zXqWya9RCD@@qd;N5Da}UAQ<%w66>2azc`GOb|Y+R#dIy!gFk4&(V;PlUkPc1N0h)L zi+9y5cFAI_(dm3^@C7JO@31#&c6($uegI}*x24_zA-3A{DpP&38f$en-x}OP&hu_d zFs0C)z8o1oHkL%$a5d$55qEB9_*BSnz*aVmw!}DH5_)<*Q5%=b+m6ewrB=6l#4Sx} z#x7B#17&3T6x-3+=#C0D-F1pf)R;iko4$hanAGa6&LwS3ph!<&(RNH`+$a91dr2D< z5Eau`vK^F7T{kMjB5;WcA5cNlSGFA$ck96|E-q0c0+Ma|Dz+oCW#u8ZOWwGE%ACHc z?YOL#=1c16z=rnp)oe#+YkaMKi3%s!P@lfK?Z9k`2FJ}VaY+Vt^QW(2J1U#ooqBgE z?9`i=EHMY)5~iWG=Be20pS(pJqEam)O-beC?Sw zUQJ(O#|1t+#l|K6*{S8Wp_F|sJiH@pFrTYzX>6Y$=PU;1HUSd5*#rhV1kM509vLYH z=2q7_7%aWFPn867%T^r>*0kHFOMZucu*zwc_>-CBb;k1Ta{FZQocDjOR=M zgVoLUnUY{UX95^38MbdK3C45ApFe2MK!I=HToR1uOaKE_yM0SZFrG6348-F0ttG*D z&IB-!VB5Eq1WTPWP&Iz%3{-;OIfK&ccg~=m#pZ0}Yl3T-<5ZqIk2Swooog$l&Gkzi zw$>Tmz?lj5t^D(?65xmB-{0RIrZjIto-)o}^Du!74lJpUPyf)uzvUDa&2sWlU?OK0)GU|w&qT{Cs97#^6sRbf1vSfM{Zo-M z3u+eSY+`&jAy+X>aalcnP_rC`_|eIrW??e%!_R(tpgdmFD*RE$goMzgfG-*l36v>( z648W&(4RmcfeM9>{+W;vIui&aP@C{sI};K@PXd7isuDiiWAD;vVs*ccEh4p6 zWJE0G*R@5YrrL~%b^Cg@i1d&hBVv)hzIQ~d$o>(r{Q5`4TI(MX3#)%btfKxAv1Iy3 z#QMmHBbPdxt}|9IQoapnPX+x}D~UIt5G(+Kj|CA5mcbjAK}kFpL@-$UZd3+FdN7EP zu;$&k3=%#WL?~G2Zc+wi^wA)~z{+;hQWzu81`!6q!~Ltt2C?ob{~sx^d%wdRiH@v!0$7FL`)mB$*bJA{OF=gtO5Bh`nHu=?D^ z0BNKK5fav*yOu}7N<>&#iSAY&YqTB_64s-;mq)^?L|9mrxIt;*{4`pd2nlNwHytgE z1Qm*)utMFl`~bpZcLarXira%0{#7H@ih!_MamUZXKv1&?3TxJVX!zpKiMiJk`t_{d zK9v_~)rnhhj$9S$gbj6N7=`{(14iBN2bhyH{bH;LOEz;1p)3GnRcM+3Cqr3)#_G^Afrd~PaIr+RO>mQ; zEI?zaILibYLs2F}81FbvNa*VP}Qj-QRjfn~Bi-%e<$;uo87Ze!}v*MDPJ_I7DG|sgml9fXQ zE+{u1Zp9@%kqAssbJ#g;YBmv=pzyf(n4tPNN=!JzQXr!QInT^bQd5e+1a-(Gte9k_ z6oCthkw;o_NlhsN5mY3PvLcd|QUoq2OCD{-B|W7GOi-KHIc;i65tyJrx%il%O37fd z7&aFal~Rd)2(7Gbd<_2n@PUru_tDA0gX#mp!(FxFdm)d}1j}R6U8WQ%CrR>=LhbTc z3sUY*+3FTiv5`U%^Ei*Ba*q@Wn#Ws^3dR{J4mt8ER5nlWNJ<_lffS0ICt8pi%clfV zsCS;^kyP%HLh18l3sPhG6yLidpF$P%6py6jkrGIuAbP3=sj+-YAce~4X&y=C9w}5w zPq!d7mQV4`I`S!$OV98~N**bJ6e_1@T96vcrvy?cqMqfERPK>NJ@srNbs&Dhb#2#Y zQ1wssCa4~(399G#WF?OkFRY1``-_`8{bsMe6rJgAmu`Qq39GT(N??VO>Ulm{sX#M`qUr@cS;=E1utHV!LK9YF`IW#5Wz~y(vdTSHsHd7WBHZ93Z>P{e6q?tR;aDcH(@oFU$JB$zd~{Ka-Xc^u@YFJ zx_X5PtFin_V1@GPl|EVJ9xK#WugYe1nm2v*I89%@+9xY{tXRnqEB6;i^wn!jSdHaZ z0xQ&4ul30)_gJC6dYuWYvGNsb2AVZ>>TWF?Q4zzX%%n@w1ay!R4b{Pub!*hSNcNsY++iO9bApso<9wOSp8 zhWm=!YDbQ%L%}!yD#7-_zpO60af*h2!?gnJx7)4@-|)8D2(`+eHEN$GY9~n4`fmKI z-9|X4FeHcCqyX&ML;&&jik+3;elTjzXU%Wr--_w&zarDeC%F$zR~JIHGgJEDZmBn` z%VEP^{fp0VMWga-qB7#ftG}|}TeZlxt&(4 zmr4Hzis>CYiN25!Qo^kgY;`Y4xqxi-MjdmbhO~>2gbD8U!g@#h6)p!ZNA*svHF`i~ zm}R>4T2!sM_t!>PRQ{>4*i9@(3fD?_I2O&?AlrBA3wlD{yU=O%-DBH>zck8dZ6+&! z)8LOIcxkwMk>=y>YHz#VXoQ_=cy_%TRE`kTk2I(&8$q3&gmSVWzJsviDn?M}B%xqi zV8>MnD*lMxY7*~t!gk>z=1P|0On=pe_-aJvxMb`Pb9SmDrFQbJ{6j;%F`>r49d?ck z9Je*+enVZojkY$v6PMDAbBD2bIy>Snsx36aa|W*_Mja>fTD@MVq+>;~tU(7q)1dD| zzsnYyHU$_O9r(VUplRL6(CE2^(pN|RVgn8>RasBx7F~Jm3vu5I&^5`4+NoQ7;2)N}NH`FJjGEd7LivqUF6XzM@OffA>9<|LZ9VC?S>U#w^xJOWwx0Cc9^kf~^xIzGwx0Cc zKH#>V^xHAOZ9VC?{lINK>9+&GZ9VC?V}aXx(r?EBxAmmojt6e*Nxz){+}4wRI}y08 zC;fI3aAW-zJAFs{Z$6H&1@F`L+nz)^*P4r4C5XrAm<#T&aYG4fE^ZZ?!3Fozp5kp> z+$tc03+|tB`-rmRBCIkqxZr--)6B*Nxn%nb?vHV^2)g8N+>d&Jx4fI}FS!52%^XhVqnM;$a-G9= z9p79t_?5dPgL9iV(@e*h15}MTSN(!o3%4q3PTr zL!IQClU<*By zghrXboegZEHzlD_6>$3kTja=VAb6;BG*`nOn*hTt0l4Xpd(75*}# zA^3(s12uqnXTJ;$!8ZgNs0a9xe(cH>(eQKu>=|16;LG{8Yy?l?g$S|1EW(%aZP^G8 zBe20_@-7M=TQ-8<2y8H?yxS9-wA50enZne8gDIfI2M(`Vf4K7?ho zHv$`6%Y4`qn|%2Omp32r#76KNA*OJ}^HEQ11ium3;3DW_p4bR}Be21B(Z`8R>~`u< z-?TgR?o!yPH(eVP<8BEPn!fpjCpLoLa7+;!)Hk2>#76KNfeq@LPkCY^_>I5@_06X} zu}RH0G*hT=KI4gv;5Qso#0K@vXFahI{6=7d`sQ<<*a&_jut9zEd14dmhcd`FgKObt z{ZKxvC73UGgy&yR@R(7)=nd!e@`KJ z%nD!e2+!YC2p-eGMIPb#y9&W$+<(<0JbzmucwESQ%_BU2UmQF(<$s93N)_^^PAby`7n{V*36d+v4cUNqlRySApEXbRL5O+S$bxCAIg zD}!RR{?r_lf|WrrSpU-;lwy@ZF;;(O4oacQpctw@HwUFiWl)UNUzmfEvSv^W)L)u| zlAdNzjMHD4gOZA7P*l;}>vyD>mxxo+&J2p$`8VdjloT_AqGJB7IVkC521T9xJ9AJ{ z#|(<<`1j_Zq=^|6HSvF$gOUSkg3+2hoep}s;NCr z(~b%UZ_{+}pZuY7g(Y;Xuz&W4&ZU;nvDE&>A3E1uLdTl>SAXbSdK*@TWI`~Uo* zbL}Q{tlj_ght5Tu(6NaB%O5&db3(^z{%?QiT-FI4%KFa0A3E1}LWlakvqI>zvHBi` zwYh$GQK{x@r=Y8rjwKN`M6k5dcB5tL2pdYZ4*= znq*hoD*=`zL;z&TuCu%nU}ZuCK$-07cqKsFYa9h2PImc?0)YVN6FUMfymI9MkSM#l zR#PAn5b^-1lwCcq1cW>QLS^j>k0U-=Q zw0MpJfdJ?hg+M)AYPpw&hR>)edVs{s^|VTVga&tSOuVd`Zgrw8!`IaepF@UYFFMug ztxmmXe@5|j8jA-Tvk=ah(fn121*(~c7_$)0mI*9S(md3dg>a@!V1c^kVa6;{&mhu_ zptw2Ln1$dMRNdGwP~kk>n1$dM0t=Km=NYpQ{6b)XTIUhOBEE{McX~<∋k`?p1q7 z+EK8f+3GC0mJE}@M7=g>%b?{0?$lQVWxf@5x=|7Za*M4H;8M{DxtaR67?BJbWXTsyJ=k9c+f4y_)On6LlkF)#r&XY6YF~4z- zxzfMhy=IXKkBRLGcE8>|VUY=s8I3!|jq&RfI7%o`;F0HJDl6pq#o;lB6@piOEV7~$ z%5jgYwI|uleIo7!cwDPJ*$zGt_X0ew)ShAopNM+_9@lA4wS!N@y#SA^w5Qp@C*od! z$2Hp1i@+ybTnU9_+~W$ZkmnbN$MqS*#~yC2wT7=!4_*+~HO#K~-&)Z!o4Wnx!A5I2 z>ZHA^@@7rpJd0++fXl}25qGC-A}Z8}Lc5*HLG=X>TdwcKjek~C1CyxcR5E%U9p zxkjW+5Xuzpspw~drsq2K`9sN3L7l=47X9$pvf{`J8`LV?bI}i*4QKVkPVb!Lu%J+R zwP$D9+KhUOQKzbm3u+ba%2<9}D&uDtlq=k+(GQ)p?1F-YTQ~aQqGT7;E8ND>4~_Kf zg0h7>JNjXxWf#;f7Z`?-3ksJvc_xyPT~NEcndlrJ`;LOz<<#8b zWfzE->Z$I$ocpYj)C}*`^vhfPQ`*q(cijJ@T0mS-zr58ymz}Z3LY-EBVKK=HZ=~WwHCjDs0#W0CT55H>N2-zpBw8qT-szv#&b3uT zLah@kR6g%I3akdnKomg43I))+Em^rrQXoa42zrlyN@|Ki5%gaFT;g%3q$t!x@AJ

u^%QraOw&`Pd}`zBVbSE!pp4>1l-|hfq#09Lp^D;$l-^ivbRR{VqW7S9`jmg~ z;UQ94p?KoHlmlMJ$=D4>|_V$uv0S=il;C7XQgK*)J$LUPlks`%}l77zMPBI>566&mT{*Ct1>sH zlJM&qRl3(`s_8;|TH97t(#i*jY)UAXzG6>ldN@YeR8S&u*UYrgA8XRK&G&n}J(x`i zbrN^dG^4a@KxstNX468&^fmiQE8^ZLnLN065n3po)(I_CPZtL*I{Z+f9EJMn>-N5t znxh0tD4f1wPf5&C0u>ZX-?XQanxh0tsF=QGPbo7;3A9i3-0|}nuQRS z0s&MJhEb7^0O|!MuqSrnrxPx;n$>7wLD_Gi5`2y(1Ab0^er()s-F<>N6gAqpnrKv> zpjqcm#=GLyTkW>pZSRL_;M`oeBzWS^Cv|fO2ppviHyJJop1AQTfTO74X2T`H6Zbs@ za8xtDC66izp1AEPfTN80ofUZEuBQNw>gD(2gX2|87qB}IItABUsMf^JbmVZTTnc!5 zad1>E1;CXbikvt%(=SKG@?YZ*y9}O)a{(Ns${(!26LBtpqe%Iq6?h`f1#na++?Cln z&INFkCES#`BzPju1#na&e;I$+6K*Ygppaxxi4^em;^3%47(CX+B5FiSQL|UQMwSS< ztX8T2N&_mGy=I2l$`;M+f0NmmW?Ex=%`Cc=J(}JBA-l2GU~D(ja8on9 zdz#^Yr5nCZmf^l;_}}S4ZRjOd4GhBu}g&WvahmM(d0>hznv z`cibJYnC=UlWsUOq93L)-jr@QGosJc3~x?1oEgy%*9>nV!&2a7dfPtD?$%Vhna)Q2 zu5jwMrP|H(wf!33?WuM%UG0EocSow-Oiw#jv%53ZZlh|zr~lbwQtf7j z@yQzB{i${{!}!vg-21$S zO|_dD#@Ev9UM|Q_BZl*t+q1nAbs@=>mzL{qChN*Tl!}#W!-5aIa z%?#sPXm)R$YBw{CZ>ib63E36GICFU2D{oVSSJeieu10pxZc1i_FurzX7~e{>dq%3= z%rL&SX7^^Pb~D5HHk#d=r`pX7<1;n8w@9^{8OFEO?A|ifZe|$YPP2QfRJ)mec6-h4 ztyAr0hVdOVySGWTn;FJ;)a;&_YBw{C@1)tiE!h>qICB_wX=ZOnW`!`mPG%V2S+jfl zRJ)mBd>75`9a8OPhVflByLU{rn;FJ;)9l_U)ox}O-(9nN=Ty6yVf-JO-MggP%?#sv zXm;&_wK27GsF1an%(~(yFwUe(w)`J-h<2vVSL@pFuspw z_nxVCGsF14n%#S)+RY5(`)PLXooY8TjPI}6y-%v$%rJg{X7|3Sb~D4cs@c6?s@=>m zexPRe{;75|!#LFJJ|NX@W?al^cB`p&GsAdZv-?1@D}-^T+1;Aikjx5Ue7(#tu4#7X zQtf7jairOuPqmvF#s@XKwN$&AVZ5N(jZ*DqhVi0i_h72s%rLHNb{A6ZW`^;DG`owb zb~D5HkY=}@YBw{C8=Bn*rP|GmwX%<~-a<@Ekng&d2Oo z<~-b?@Ekng`p0a?oJZ6f&8uuOL2>D1X>2z$|TctlA_WcVwZ;j_sw z5N@|Ry|9sGS3S#mgzS!_=~{KgZuMX%T+-5XC72yFmR$Xt(UEAFG~EWQd}&BMo_daN z4&)F4ali!nVBZ}0F?-^G$@3w;Iq-Y-!~qlML#;Us20FtZFlj!_HwVEVFkznSn}gsF zm@FUen}gsFm?+O94zVjvgQ)McYD&_{x>R(bmg62_g~jtrSQzh*w8G+fBrJ^UM_FO< zd=VDL@1w1-rl=+n7RKpgtgxn&SQw9wb$?~!;i%KCx0;om7fo&sHaL;ri(IMRHP>i4 z&EKdmEcU96=y23s=~y9N`76V}zE;WU$3gJzt@;LpNOOQQ!Bo>#+aSJI<05U? z4@vp;G;rz_jmMGM*g&`dc8>_nFS=K!6vJ6T{0J?GA8(1rflPQ9$WO4u<6tH{4CW_V z;&DI|9tQN2Eb%y~2@iw%$(DE=*o23H{S-?)zPU{6@V?e#nLa|T_=ms;*VkV|R|ryehQF%4&VIF3Go!{~d7Ash!E!C~;d)DVti zkKi!&USq`L*+At+CFm%fKnT&z)!Wgj)rh|ic8SY&vK~o84T5Z=Qa<1NUKVx*E zUkSF_Rgzu8jnSwec%vU|cK-42$JOW?)=B2@I>} zSIxk9#R&|n_;<~~xU3Txmi6zMfpMKDFs$?6Hv{9sPheR1e?VZd z!{i5DZ64IKWmkPW1q#}XR?vQEhsG6+(6FNY$PSH58lhoH`>`Dw*EB-In)VYrG%jj{ zhDGhCc4%DH2o0;+f7+pOStB$oYd^C?faOl%k9NhuQmF0^V3=-{EJUs?v;|f zys&2e*(Wczubh_`R@XoI%B_<;zMc+P$$P1S@fZfUL56rX&Q*Z-RgX zv3pZV2-e&L0kOV&GeN{|KOF3LnqkU3NO8?4H?;c8ZC@d}BsAm8rZVfDLseMDH0LwE1A!V>%t@}iv|3RsZqVpzxV-ugnl zQFEzot`WMMn7vjrQuZU(J`hao*Yeyh8n&1eTxf*d%nP1-G?TMrGWKO-XtLT4GpPnz zD~a8^$!_d(%)-j9Ol!_v2d{_CjByD5TO-{d<$KW!ueLO7b+O?jy7lNpK3qn>GX4Kp=r_sg2u%73{TK3jR+dE;WIr! zvn(QLOo7kx1kI9&pfT?~+Y>a)A%eza_Z&~qf`?;<^X1_JG^RC%J~>g_Z*&cM7sRQ@ zXcw>RFLcK9JeYbN9pn81sx2jcJIuU}juHPx3v`%x9UWs{yq`br$iuu(4O$K-;~lp% z#e4bVLc^ph(72WP7K<^58CRfj8}qFe&@kN!G;U$O%>o+cdS+LY_De$<3Dc-kV3_Gr!aGsCY|I~^$-(Zh@Y-YQ; zzGQz$GtPI@kLLx)(D-NqrsrFYRwtNVUUVC^YY8d%mj=i8&`ZH>Xt|wX zcRzitFC^ii;^4dKrSLW`x!dqf_h4ND5H$v0ST6;*d9C?nU-*$IEchaODa;K=qJ}$V zko=7(CHQiCDZHsh-L=n5j3`P6zV2QQtzB<&^Cof_lnQ(Sz8u;@Cp?n;Z72;sN(r+R z+JZu^4{I5OlO65+qhcZaYwZfTu>vB0*wVywLJjj?_ki#M<~3Lr5%;1d0XnB16#8 zDoK!7CBJG2xdBQgfnurrnjz?Dy(CDim)xG9yw^g}Bup%t+@-((bF^|2CRR>vR!|;u zqlrQw4BpHm?MSg*Ogh7SUKScM2+-R6!PJ_t-xQ6U0Yzkf^B%m)GPgF^(c zj{nXp0d9>$1hAg}-YWs_mO})vuK$-;0^C4{2w;8xgI5CFQ-=s(o&Td(0^DYY2w=Vc zlUD-Vd4~vK-T$*!0^E#;2w?sHi&p~NpN9yb4*08A0^G8P2%sMLZz2%8sI=&Aey6X{ z*HUcdyIP&+UK;Ta-2=n(t);oty@$a#RS_U4CV*wac z$DYAn=E_r}<-%z+js;*)8+$57z@u?20E5cdGhqZg8pi@KsEa+5M!=(SEC7S5*fTXY z@TmLBuEuL?@@iBQ<9l^MU{nzdyp4Ai^oCh$1wOcwQfK!}(-6jFNxgZnRb6RQuWU+? z;s4bPbLXm9OZk}LQ?o4pO|#4mtB#G0LGy6ETc2x0H;ZZ={euVbu4>k~MOAEXuHI?6 z_us-!W>1|+GrN_>Id+tL#cay=8KQe7&F(g`i*#$Pme%FirKpq_?Y0m8Wp(gE!ircM z-avMOZ$(Ouc7nXM#%sGVFPHy;*UD|+EM6e*_MBwQ%asSb1j(cW}c@_09kd}KcW6Z0le}VGcv&WcMQU3yAy618w zdASTZzJIZ_p!@~8b^w+V#YrW{NnBXqgwGEgEI}tfN7WcKTKf#@>>v~`!_=&&-_pYwzfr;QJ z0u$V=y1oY{`SJa%fr;QJ0u$VIx-l_{9d39~ zeW4pJE1y-BPu=d*eW%q6d-YZ`eyY53k)}s(Vub9nSq3udkDD4HJ2jDkjC$h?BV?x@ zGLTVU+{_5ssf7$=)Dt&1LU!sP0~z(hEearyKq#)h_AQ-#8}&jF-!6uX`hbyRZ#q4w ze<+%3ovj4)+Rq8@u7&D7X&_^ZmC77KX{PEAIZv;0?(& z9+jtPJnm)7!&Q-dJTQUW+m?r`A^CV54%fp=_ z%f|x~&;5(?kO7q_O2!MOp~CS}k_RTG!aS5;F47~h!}$Z3EDtC;FES4~e+WEq!BVy5 zA?FW)2QF70Xv;&+9|8|ttc12aL(pCLYcnfu$!($)U6iJO{%8HpwD!^=Iv8x;dBxa~l`sU1BngM312kwX& zs+NQ1%v|CDX8FbpbUW`kKMaY&KI43*8IIkTdEhFa%{IkTdEhU(`*=FE!v8S0@2 zmuBX)-}rt;l_wxSLxt2ZXO_#)1ZJq29%{}km!ApDP(?M(ndR~`ff?$mb4xQTl+Ofa zsI=PV%!>LMYOnLmnHBXjRAU`;W<~uB_1Pm!Gb@zONWpSG!^4Z~N1x&G#r31l@Brib z(PwysasB8sJjA$u^cfywTtE5@4>GPFeTGLF*N;BK!;I@kpW$)F^`p=5K;!z+XLzJ> z{pd41)VO~186Im~Kl%(0Hm)CihDRG&pB=~doLBeH4o1!SsJftcjjN`|l?ZJ9XrpTPw8#~$s8iBtO-OmIK!F`k$>b)Ufm_rD%%#6(y%W-!71 zuE%*|lI3)Cnn%00u$Vy zda@@b;3onT+>d&SCnn%00u$VSda4nVjC>+6!TqMEd18|7C%C`#bWcpO{RH=up5ci} zwx8hs(KCt3NeO*o(Al=~JWY-~%L_31BLk!Qc(xZ{>SW8nC^nws1(-V6GB9e3=XwFA z&b17TQsQ}DfT?3G1EX?yz87HXRLj696kgy3m^#!lFzSLAdI6@+v8dER&MEUDVP%$+oHE$KV8Ruv9G==X~rr`6_H+LCZeEe8p#)3356 z;Y3;v5?HfeZA-%Gvm7L_e!s?+MCx54@(HZvueBv1_ylRUfJk6nf1ND}!6yU~SmR%B zOG5Aofdtn3HxP*v6T02yiDu1p{u{nDpf9Ndo2^~fLJN%)u(kFCO`tS6I&T^m7QSQIXA3AG(LPyR2Zhz=3{0SX} z|9kwQv-&4=RR8bwht5j?LdPY*`~0EvI)Kn|9q@iak39&n`rXh^`;y8twQBzXFI)r# zNTg~)(aQGUj#0wSU%^4i{LK;7t}AGCoZw~ z9aigz01C$+lmg%#D*`|@_`^~FyeUNhDDi$&3V`>W2mp24j|m{wl&%rh zYU92Yx~A5GGqlR^TO%l{5e$Vj;&(<+R4o_^tHtk)pr~#z6xNOZGJ>KC!cbU2{$K<} zwS=Ltmi*BOio_2?VO6p6KmiKt3q!@4!!^QYFY0K^ph~cDF>Efl54mK&@?|ZU{zRiz zz&=F~+s6p{Gue-ITWN&tdNz!kLOd zAXDuPN`r8YA`r+?d)>vX)pu!&dKYP4o_NSk&b7;eknUv=$V=|Za#;}4z6=7|ckfhb z5YoR40{VCFbZHRMzzhN!c<+YNAf$sC1a$D;jio_I3o{64;k`4ZK}ZiX2A1>7I4n ze6a3rZ#JUCQ6pY&Dqm6R&EBovNl-mv5>Su!Zu3rp>J^iKdbM}EcM??3m;}_by*s>< zpnAt7u-@(TPJ-$olfZho%R33GmrMfdx}fG1?AdR?`wE z(_j=PvZ34V^yj1TxuB%Dba^h*bM?;r;`mfhSX`z&l?^MOxyR>%`r@+Xx#aK_O6CFi z3TlkYl_!$VR|GC7H7;MCOD_mM5b5 zN+uT+Ay+ETMe&tPDyT)ST%L;NE16tSlU$`dmmIz#I4ug3tClB{&sPL4C{V6eo=YxY z5vZU}xq5jj`Fus-f_mi|#3lY+VW?M5RkqTdU};9nF~PDSoDb*g;b<>HHsOLeGwlU{@BT-Sh(G*P+8pscYNo5EyJ*C=G>Q_f=~ z@49Shx0a(0zM=O~O}<=Do{cdu-MD99qDHxXX-sz)Ap;Yo$PG$kx;qCMn5Z~zSQ^u1 z!Z;=cdxho`g~g3ZW5Rq2n5Z6ZTpAPRQ@})#aFf!QFrNY@YJr;)<_@NgN2>9b zTCkpBOkiq&orJ}By_q$v{A)2}Z*B}b-EH;VDXPg}qF!^~wrP|xY;R$W+iZ0tTnyb? z8sl#7x2r?ws`A4zj&Eg5V5=jL;@ue1w>E~~ISjAV5x@w)O$iE>A`y-X|4d^7N`#}5 zzpXW_9O0ZHsA{^EBos8jgL^x{fI}?TY znc@1vqWfamXw4r|D*0rvYxu|RxYXdUCeKHGL#x?$F$H9mLV#GU?`jIjM;Zta>-61B z0r~s_0b+r^yD1Q8u$R`sB5G(OLOab{A0s&&}y{9Q4o$;*@AXeIYnF7*z zUk1d=dT&!eI{V9jSX1v~3P|UG84#=KeN6%BOfUmt8NHt=Ae|3pK&+qlHwC1#!VHM@ z@&TrRbZ(ddu|if&0qG1e17baVAOT)Jwx(UJhkf@FOd~wUZ6>)bs7^TF>h(gkK&JLb z2!5#5$3tETP`zXVST7r12~hoH0$4wnyb_>#$^@{UHoX#{`pN{bzP7v)pnA&$u->-4 z5}>PcOaSYz-zX3WU_E96r(hm%Eu5X^bxFYB?S+7vV!3^oO`U$TS6_AOe^N&h<)w^8gXRJn(R@1W1Q- z6kr}W&np4aUt&je8CKh`S&()~;Tb^qhM5}Y8f*Q_JVCSA zCTOhkzC2uj#`@0Cu@_ex^}+7<;5+oeey17EN5vNTm9J|deLjt~87f6Hqhd6_+#Zzz znNcy2Uty0*G0dnK!>_bQrSN4`4BuDTqf+EDDn{v^1Z5L zqy{(EBK5U2wgz|pc&VO+k!5|1L1@h~DUu*9QSWIT+; zH(KIRJTM+cp{aigco=^wUc0~4K2&e2m2$KPIh{JXuNHW3(gt!YAdWZ!!iamb2@r=G z0b!`U#RQ0BjDRr4-bz5AF5EHLZm-phs*P|-YaUB8^AK%j-bUtQZKDU0iOlC{3U*t~ z`rFC+p7=tmSM4sf4yh*#-OG9h-Tfu^p4LdK`?Via`IH9t4nsI{HikoId#52Bxg5ix z%e~7GjvSBS(DB}F2uHb{;V`$q#}JNEJHugWf3G1NWm<;A%x>wK0vslGhKu+3Yt`IA zT$eGFv`+E$eJ#HDg`RD(aBeLq24{k;!$u0N1@5CT;8!QAX6WlkEZ?6giJkvfV*xMwtMemc z1^0x^wS{IHtN3S2jo*cKZ)3jq@KQ|W*b#lk9W<&%_`@?e) zQO3JC4Xo|?#>1Qj)^(>|d3}cG)KNdk|w|Uix)uY?o_tVq;eNO=)bGX>wv?PWo+WY?o(pVq-@7U1@BW zWpZL;KKgxWY?otlVq-S?uhQ5q!{o%qT=WORjwg=RT(#Q{mz(N$R!SVFE5W;un`e(0 zZn~_|sYVM6N~)U)_ARyOFI87QQxEqZr-%PL0f!p!vGOk>n_~lSnQzU_HCDcVCE+1) z>^sgJeq{{iI`#QONqEQ|`;NDU-?h~0c8{!1ghB$6$i5S-N$j3?w=562{pHlLfPAv= zL~9y*<`?VTsFB43a?8Gxta)gm0EuOvc_?VWkX2&9v6Ck&juZI$R>4!W#2KEh-7!uViPx|}yY!h`n$AIwkOm;NaD4=sY(e=t#<;%$5c{}K3L!n%St zK7#)Ud@zq)(HkGZe*`|5-mawci4`dG{PQL)|6JJ{AHjb(zK9RzpR0J|BlwTN2lLNW zz3~zJN8p3`=W5>gxW<@RFW8@HzA*n>-5Vdle*`|5f3D$;kKjK7AIv}8B0W(rO2)h3 zKLQ`jKitfIWNmfWoqN4mp530mYl(!rde6p$)sgwAQSWPeJtWtfn$^>3I`^^FX4G4B zE5YH4B1;IiHOt&j`gqxL^JwzOlv(IvN#jf^0}d2v161Oa;?B zcd9m|B1EP@1v5LhX*Q%H1f@U)llt|^%MGcd<#V1O%;z`oK}GNtN>xk+Q~3>jP!W7Z zpn_TaMn0$rz9LY;1b$h-b4%seXQdVHgPlIb zjn@1#xTj|K)M{s}TScY}CY^-;sf@^6ExZ!en z27<#;7%~G)PTYaHJOjbc1O}Ls?oN|io`K+A0s~A%+@rZXgR~69vw#_hn>LqcAou}= z7&E}c!(E)qGZ6ehV1W6C+d7wLAozj60MiWjd5&%EwC1`|M}Mb9IaM(F_zwHvKeSA6 zABuvq*lzyg5B~_*m;>%>hV5oP0~@3NerDKi&NHwv?(c7gJ(Y=#5&r-)?CDHwjP+^( zYyeT*o|XvY=NRQh{JbbO#&;2H<%f<^;@m>N8?JTidtiYvm$4zf1#Gz1u`e{khWHk+ z;bOSA@-f+4V?Xmz)=@;yn*xXAc3PW z=z0U^eM16AWzh2m&bJN-9Hl|u8#rG&AaK+MhrNMw@*r>&2mZWW07rGe;IZ{bd*w`J zJ^KSGog8o(Wn`21(KMp5cDU_&^N`uSrJrc2>uH{#Id>2==8mU(g67OY(3m-%;R%}a z20>%qc%~<4&Kd-bS>surpgCs{H0F$FdxGYmC1}hTzC2uj#(crhJNX-8yFNJWqI{dl z5>+Q_ar_(_;BrtLw*-Z8`&=U^j#GldIDMWG6vrh&VO&1n2#Vv7pfC#dv$M z2Uw0hg2mW-i3eDYLxROPe5nUmj!A;Wn0%QBSdLGE#rQnm11tv+!D6iX@MHlNC0(I3xTXQ#!BK~SiYhh&PwO2Bn*b(E6c&Gwzf**VBEc` zB+g3rlOzrX8n;(3G(FVbB#DHv^_p_OXwYmg34)PS(%WPZj2juGRXeBEP-+|z|Fae* zucgt6?OC;3u5vEAn|Wc=wJIGPP_jOa^G1!&+r9A-zIIZsst_Lx?{|3PBYgW5_+TD* zr#C*rmr#KZ=8JcECrD8_$dN6) z4-vrCV@v(Dbn2eJSp`_Rs^PB1_T6RpYPS*2WkDXV{H8sd2=WSfAXBhhi?Uv;?bx*3 zOFgl>x)aAK*!w<8*jLJhZF`4!VpikzapIM0OqRojRzWMlw!xoP+b#ES(O^(!f@6pO zVZPODM)N(lz8rRQtu|X7*P&&q>H2!l1P8>w61m5Z*8YZUr0dR;XBb&_y%Sc9thxKd zUTqk-SKeiFOphkM35R;kg4Z9jM8lnh)9;PF=~W44=Z61m|A3sJAUQPjv1>sfF!3>_aow&Th;+TifPnL>JEc+Bm0+-cLpG2q`vu`XSCoZEg zdI~Yh7>7%E;9o%-0NxopS#ZZ%z18s{>Mu~}?EeMLhcO*Nld)zcI-u$Ia~m#WI)Wq< z=zyf(&z-r9=?IEUpaY72KR4?#rjsh@X|h1j@8|wq#&iVVVZBOpK+o^zmR`nm1m6+p zfSljYUA~Oz2)-lG0X4t>_o;!t;Euxh$UAS)@(%X`lSZcm9l>`vvWO1moj>>*9l>`5 zI+%C<=!=fvI|3cdJAd*;CpGWTWMSUxz0S|_-VmQ((xEL4Tt*%Jt6ivKMQ z!kyF!1mpj2WkK{o!`S9Qi``jhw|Zf(6=}=P$spGDl;-6r+PwUoeoZk5^0I&+a8~|N z5`w?B5(Li4|CNN`FRKKBbMeoT5d0ODATW3St0V+}F(nAhhyN}Ku_5VEkmC*nB_TE@ zAs}xZs1QW_C_!sEa<4vC=UYqdu;W5RyJn3o#Vbq#{^=KTMo=v63gvl0x`@;ywz`zE^_;rKn(NPX3G&v`k0&CoOui` zQyti1Ni6AO`H8_zs{>mti6wn3KQXw5bzqw%v80dXCkA)44s5q1mfOb!=Z6bi2XDcrDO?mCMqu{htE()lz_SjKyDk&EQR8xEHC^$WoivsGVeRdSw zLLfSK7#)Ud{Am$#Ty^Ne*`|LJFiN7VqIxt^JRRZ zu2Rtw&(-XS2p+>3hlpUt;nx++MnrHGfe5CWYuJy7;3EPN%rV!rCz6_6XlgLIoN7-* z@DYw0B7#}vGl7K)k{;yLSgqL^(g0X$w(jdHcAP|h(>k&xoA&>UToH#{k^BnA=Hd)s< zKzDPK{!k{N<1F650NqVmPIR2!8ycXy+02QK^L`@(beDQ_qGOW2u>rcvw>i-I4|@aW98cgF>&xE2`4kp`W2m3)4V=$s5jaNr z5pUomi30-1K=&+Q=mQFQ0e&#N7%BpOFg)570lyX=^@@Ps z3b`W0Uej`-V4w?(_i=;IYtrB`6bmLKg#9^INJIj~!DDSn2zzq^2~-G=vn3(y%Lyb< zB|P4iMB2VB`veMwC)kn@e1g}AILp(U=kgIPY5JXGd!6_B33QV z>bv(K&#_%UyiiLL+&-Zc164C{!6FKnBA#k92(o4n@G(1Z%idB$plAkx0A>d6id~9; zrWshf(iC7?;O5w+7^q$#P{5?{OrKsL;A1{`mJPn*1p)!g1<$r2pm_mnSMmZ}KRm~V zf$9YU1zbNo*M@?e3j};zKRnL{U-1Hg0InaNZ$m)y0wEjW`r%@z2)KSY+7$uU4@bQs z;QE0pLQI^j>4M?89p$6J+VXJX>RQ2n0XbOg7~`tx?8mc%=WBLfNOqHyt(QD6(n!3> zmV_X0S?Ci9)H5%(B_YULfdq=0m)MdJ~zk`C0=Q{wzr_7;~>PfZ^5= z1cOoadIK14A3-n}H*YY2nOTzu0m0xJ-~t1fO-UHk`ET?CgL2*z42pJ7FsRHu!Jzu~ z1cM^m6AVgehKcFjLCckcjlo@CrRunEuq%JQ@_~N3-Dk?oaS{?T_ zzD7YrXjptcV1nj49@qOzNi?iMAGAQ*wAktox^CCQBp_C!519b=`i*+K>Lxr1h;`}1 z7Jyq<09T#@O=4n^`iKSQmKDt9Mb~jL35f;kqZW{xS0D#37A6s~c74nOak_PObVT@h zSiwGS0k(O*)oHF|faK4^V)h9O#Mwr@airQhSnVxF)x$0*BO%{lefy*ZvXLc?HAj$6zPLR$H$6S)D@Fo?kfdDRNCyWL}dIGM2?p`$6Vq8X;qe z{EQ!DUbzu6*2>TNLFUCAA!E_}oF8Of-w`sF&d>Wn=6x+f#tQ1mw*_RZq>LQP~8O$#B-P7l5GzQOSbVsfd)imHQdI9D< zLBNh8N(?lrjkz)%Q2O0B=bGqZ0p?7vQZ) zU{vMb_5!>u35*K;J6?ddCxKC|f7c7}jwCQD_wNyKtUcYJ9ycSmLUh+l2A_ems{J>$ zqWgWa9(yeTty>>et-M>K^8;UWgs*j^vX~AkgCF{$BYd|L=%8NskuN&J7d(Lus)!%^ zqLcQ0mnRFg#ZP?E5qyVKCDTF0@l#)P1m6+ppbq&@UvvcD5$K>g`5DoPeS#k3ovwR+ zHtjjanPA7@ueg-t9^D(gHAlJh?OJ;IxgqM7#i-tCEi{g_7yrMx^A3=tuJU;GPT1MJ zY(SW_f?_x`U`{BAps1MjJZ)>bduN*M>25ph>|oB9^*p`PyHh|x#c+rU7%*eb5m6LS zas~kv5$;zV-mCi7`*rnHz27nZg|jpD`PQ#qs#m|jyIBz#BgqwtRnmS_FF$v|#4A(TNtpUIZ1+VD*KhTOaFl`9qrb2FFnL;%VTXl)&`RDv@zfi8uhvrqqj`%swM!(eoeYA7fZSSO4kI)!VZ*zg}9M&5{V*vf5 z1N2z;DB&0z1LmJxu)8M^$JiJk|LlN0Vh*1s*QAGy;qZ0`WV@AP0CZvHb~=VUrb}UI z$!ynUaqtmuiz%qPA*NZLulkipAO4Xxr~V5Kwg!-cIsws@?@$GD-<^Qyz<*T*a=)E` z=(TsM0=dslKy=l+RDs-ICm?v}q^AnxzB&QHDJOHPK<=j#5d3g*jVh4)=mdm5`s9cz zko)HZg#P*Ds49^A<^+Vk`Q(@?ko)BXgns$txGIqQtQN2~{BX z#R&*~@yT_nK<j}6e{0d+)oiz`R`17Sm?t88!_f2j{eR0lnbaBXYlN(cC zoO2po9CF&^rqmbb{6!as{582b^~E_?(ZwNGO>Rkjan4J0am-6wQ(v5O5M3N|(0-{e z&iRHej`?O=>Wg!3p^IZ~*`E61oJZ*5m`8S`zBuO$x;W;HovAO*`GGEu`Cg`x|$TYj<7i!gFxmB*2m!DuJ5_crewPk=QS8{?zV6q&{8Pl%h1iipyIhbW;T*(RA zfyr_(FU`7=Gdh$U%w)S<$r&3;4(7glW|t#yEzU+w9P%v8mI|JgMGody1v!?Xh^yq{ zkVXeH@5}vq)n}i)&h~H*Q`aHPB;e>rI`DBHuC7CvMIh)v zLwLBl4q*m?pabpW5$ZYy&NiXvg6|5CRM#Qc2PbRNfiDS}NDE555gDa+W#m{xzqck(BzVr~A4uii(hQmy`q zuh>WFVr~A4uhLIZ#SZXSd}%&f6)gJ>z8UMVY zF)u$$g)R8Ez{cc!yb4?JZ-I>|`q?UM!M_DI=IQ6Cum%4X*qE%JtHKuiTVP|pex3?j z@Na>QdHeY)Y{9<;HsWMbe6a>N#RXS*zL@{t?}95lU(Ed< zaKROxFXsJIiMuUS*O&bHhTpW!%$)Exo5+#x{EEDkH}`s5yf{sTx4u|w&zZA$L#t32 zi7xv=RpeZa7V$C?z4b#X$o?S^6b)%q(Mx$$!*58P4W%mO`GuAx4AX@#vpufU=|&=~ej+Qz#6aHWlQ0-$&&-G!ZxMr}zLH+=CqJ1b|tQ7Q=>e91W{BPTNRf*uaO&U_{# zWo)kEoBm%cWaF#LXNhxgs6^>_gxWT!m)a83=bXW*81)E_$?EgY;8c+^9P`(?&frv* zG92^S7o5R)WeW{E=D069gO8E56C5+&mz=@rt(u1&^PxLy7vPvB86H|8*4)#sR4i4d zWolv0+fc3Li;Y@6x_030HXr{o4S6Q8X+S1`(Z9c<12)~q1TgycS9QRq^_T!gzy6vI z*z_F}!06NG>3~hsF#(MJ{PmTBfnYIm3M6FJ=*ug%>a<|=;}wG~w;0vK>5}dktKV;| zbf{%8_^|-Sdia|!ibim-p0vIdiZ|i`;j|DK6(BIJkgC7fEtf{}dQZSgW zY-^kr$*Qr;Ua?iD1!LVUgM;^XOFpKUbeb*Gevbw*G~2zoSZ*x@YX;3k0qYlo{Gb8HK6-5+xJ`1x8_V*RntXh3TA8p}irSi?v#7A>TW9)=aY~H*8-E zjF&B$EjNp%BsZHL6@pd0!52O=OQBtFmW!o)(ezFtm3r}eziPvK+y71UVRccz;}FIfCs7axm`PPPP-;bh;mRg3}W$ z-3;oGoNWssf1xXf*Zfy&O9@x>j<;R$4!UA^R;jsSzTz)i`!1$IRj8Ty4CdH~?gY?r zb0&kCr4+mt_V2=brj7YmZ6-YvW@5CvQ=3Wc7-nKfyGxr%eHms#+?w*Vnbe?RCIqJ` zGZ)w!t@>tGkdh5ir-qpjfu`1IGkMoRvReo;6_~~s2Kpy_g_#=D zW(xiZA7G}&wV8r{!nc>Hwc1R)Py!u@K5;SGPO>dDflORY?)fG%@q6-zOzhi z&}It$37=S|HWD+mXS>f5SluKAb1zSD_Bz9@*4)*;6aK?fGUyakhr4mo}ZIs zfU<6HJ4qQSXgtPDNCM0|*}LJkm=VWssnb!BPo3~R5Ks4GirXIPCLr>-omond|U z(#*m#T$Qe%^1{K1>eoqHQQw^GkjO4*fgF)-QV*Rf@Vw zO!c3jBzThvZAUnjccjEr`w2?0ANF!bN=$X1palD0zLFB*tua9f_PgdBDM_{y>~9qu zDM_{y>}M4nDM_{y>|d3Xln8HqVLRbI0>u;TSM7GB1nfjmg8iv^M@qm>1SQyyT5zNU z>_kw4{im{$l7x67D8YWy367K`+X?oU_Bc|KY$w=HsyI@TY$w=1S|laAV)aR9hETgv z%GWFQ8fC=WV&BEhk`_9Lr#=3))V=6Ex9@{20rC zy-vXE;$Y1BOHRP+<6unk`<#F`#KD-;mz{t&#=)4vPjmv_6bEC*ex(!e<~SG=^sAhJ zx5UAik6%sT_WE{JlFm z*YZTiSnv<-=v>ef9fQC>x}$SdPjvMDe{x6X(w^w(_W$gT&hXqLKQPvpYc>3O>bdvU`ZM=VTeklXCt8FGkY<&!7R>$s=|qcA z2nt%T5_q>0EkZpgXu-PRJx;U?dR5?OgjK?SIng563)hNdyI3>)w-YUby$D*cg7_aN zS_FF$v|v5)UKK5Ycfy*BA>s>G7w>bTMX(pakFeG_$%z)hUIZ;zd7SJ-i(oH;7OX=~ zaiV3o_<~i*`<-YJ>_zY+tWiGTM2lcAf)=b;PIaP1uopoK)-R`#mdRNC(wVdrd@Ho} zCbsVO3qb=T5?iP(ah9!6`Jg(K@06fek$gxU%1sD@V(IZ=btv~92#Phv>FQ8!IS>?! ziI1p5xzj*UtQtP54&@L_P%IDhtyh3z9l+4=_Xe{?dDUzUGG7^VuBm)#Fi3vp%0#seH7vJNCC9;IhF*%%J{6zAUw&EP+0h$of#E9 z%aTA?)t-|X1gBXN32WBRWG6+>vm_E$q@T@9ikxUk9IQ4!mze`+S`rCs$+qr(jA)p_zM@2nq%opl8vCjeEt1QKhPmu(Iy6jZ#KVMko(?aX)rf{!?dv);Ol`!& z)bUNpZE4fESKb!d>}2!~1TTS~ZSrXw6?x^L^?BI%A`nC`x#1B0ALILvw9C0ux3 zb}#2G_>E#IctIZK`TanRDdj)HV*dM~ z8WvL^Au$F1NDUdyf&|1Y_+vd_BoPu26X8$vfRS8CK+J_dRRdx=BqXN8pQ$0E8IgdP z5r3`*#H2__Op3oyLq_u=0WmM0uLgwFNJLDHztkf}vm+5PJ6@nhj3h|nVS@aX8V_Dd(U~mf%R^)V^My{p^sRxxm@t3i1Wex>7>rr- zw@$$H&4Iy~H!pGmrtc06#_V~q6EJ;yU@&IUOPqjdf+K@5oBqxTnC3Pz7_;i{oq%at zBZD!wUg`u)Ga4C;IrcIqV4BRxV9d0aI|0)?Mh0WXy}}8YrZ6%X6YrHyz%+Z2!I*!q zassA_iwwp@e6*^wbGk&DR>!uAnOxac1tKPKCT{CD5&y`04f zrzdDAQ(@McK6|y?D#bzId(-Q(fj0L*`R-xBaUOWy^!jYPwZ(F+A>J4`-1LTQpv^sy z^~TWMHfG~Zn6>1krg&%QW}C8+w)9EXTLUkf-b}#A#Gqg+s=0>AM0xEUGZt-bvBiNB zVL<}N0aAi~v(v( z9S)QTb|NT2FW%`uiC`y!63C&``;(IJDXpEY?ex#u^qyf0CihU4Va#LDQHm@BBgp}( zGK_5uCj-OCfvPf$VGJh&W5}ec4EdZq4rOE;7(k{}Wyr_m2{JHxOsA9~kABiCA&mxx zjd_lu5wWnm10S&y6jPNF2 zoq9uI?_KX`TY+&edJ2kMe)`14isIfbxZG7EE|w67xZrYcjks7d+{Xo%J8Z;EibHU~BX2iuZ;QlVS{NaqanD_t21(&~^5f>Bv16*+V(;0Cwvp>)Um%p76 z7gPCzTyXj08F4XpKiCDAzn&2nll4PfaQX8YaWOkT)CHHnpAi?+@xxqj`2!kpG5;P) z+#S#}&o?XnoaF;n&fD0k)y;3zTAib+C%i4a?eERsr$5+$${c)TnA;3$EW!4q7`utf6~hs(WLTpF)(%f{ zr63_nU@h@v(y>#jB@P|BnAooyrh@{cQ%vL!^){IkcJlF5ezvWiIMSh(&Z4e%gTgn7 zzT@ij0%bjAYYo6;+&5mAL5KAqV zgjLS-97@`+UNdvI7fgQW&y4GrIjjfEoaZ~#6PpUiGO)gRfkPQM)sj_US@S}NDz?(Y zftjBy2dkPFIh2DFYgq*rGcR_if(HfW`LY}=X8u-1j#SJH6JfBNd5J?cLq-@ZZvM`p zq+ucqRyQwosAoWg!LsIM4rSOQ3|2FFhbq{atPuu_nU_11V~;Rc!}tzW@Ss>D4AwAn zgXJ7u%1~^w4Z^oM$m$VOj%Kj7;6L#SiGE|s9|8N5wu_hvqw=&VyqGLU@cS8)RPoz z1U*>HXxeUKtP%8JS#x*m!McX^#8#_luX{VvR?94s&1h&4Rx`BU(ttHeLsf%d4}u1)OPZ=01bYxP zU@g)j4LG~4)2g?=_G}GRh~4RIYm24be!J4@zuS0ows_E1V~%w)NSuh?zgLa8w$Shk zdrCZ2jqVb?eMyZuQCKK9OBD%BQ6~ll78y2V-2$(t( z_SZ(aUJt(f70gM9e!fzhw|MM?x1nCHRQyKX-&byWx#fO@$gQ>c>g#EARfzlIMD)`) z=n`r2FyABk=o@v3!l z#E1A6RUkh@0^&2|Aw5X&#X_UJ*sN9a3(NHdzqC?+T=M|igM2I9X5_4op5^qZ%~ok~ zrOez7Hs(KSGueKKiT3kP+DtYfVxkHC^FU@WSuU^b?>S>PKp61)>E>(#9EQyHE^51lc{3MBpPx2kQ zM1GD$#OKJP8a^Mo)r)y)U2>i6A^tnvV0IioLBin^e5WFgA0OfH@x4nC$Ip&%`0RKv zC68#<8|^|m9~`wkzW<;bR3Y*cBqBb+|I{V&LnIsr_M&}~Ncp6EG#51OjhxzT1l|D%j#^C2Xf&wG`TY(IoV`*|NBBd6gQXKb|_ zW<$gQU7rbWN3#|A#ctnswCK0|{@a~*hi!aMazJkSdwJnBk#U$$c0jJwd~N{~8AtmR zee!sr)-Wd)#m5`{_Wk;6KU8F0eWEX*AYK+!4RbwoO>{=noP$ zT&OLTN@lNxQlqh)pKCW4EH^yjjn6k~ORWVj_}_@P#@wfu`+@BaKcs}>J~g56u0E`U z;^s7=Ffg62gyN1gp)d}8Lc9$B} zI1b(HOf6iqT3d?a(A7RkxUJ#G*O)K0EYGfg&D{022lOer=BCg!tF{Z~ybUH#S87F5 zOO{(^ddLp*Txv`Cw%H%NvE-XimYtvXx!!|q+_SQ9&6JQ~xo9D0XW`oJmx4dvFPh3Z zS-7_Q6}V_KpCN8&tNvEae21`@%!Idp=b!Vt%{Qm&e7;z2lnO0#c8IsOUEO2sl>OpR z+r#~=9&~ic?Ab%+L_~b7pHn23e2It;^z(Yev8pM2dG`XkNqm;)Dk7V;wuHo#`vpDZ zh}kbI{va{&eo+r-w^vNTiuP)UVlrmvwov44`1N9~*04Bd&YP&!OVv({HOJAiZ<ZI{KVp;HGT_QEqn20sNPjrdYS7Rb3{GaL)slCQT%*l)FbN2j92*L z@f&qjI99``!Z(rMs;fe~im4KwAikPhq^>G)tOQl~u5xj9RYpcuyTX^3OVm{*j+GFv z@NMRI>Z;P%6~5m5UR_nm>0s>u6JxxQrTtNcQ(W?SBdMOM5)5-~QasorR- zsV;M*1kFCK1na2F9Vs!d#R+4AwbK=jl$dwp1SME6U8$r*Xrv`5!5Zl*M@o|I1nZ)! z9Vtn+6Rd@KPO$#DR!NERQf#<}?Svy6#S^S~u5+XW>_kw4b1+X>buw~&(1&KqVH zcFU|yD$UPZIzSWNR{kBcUw*sV^411t*_%I^@HX{!rwGopZ|M$ zAe-q77KAm;U21{`n9pEIP~6OTYLe_GG*}T7IWuOWkvCfP7fasVlDx3exto(0mOFQQ z^1`a;?oM7<`*89Kts7}Am7A?#O6gv6Vv}vQ`G~hI`g?hQz7$@{v1Zm%;moWdn+>fR z2~A8^n)OP%3`z)_o{dXqs`?iR3FpY0$nR2^YDR;K??(UGN6jh#X({OKR8lsVf1Yl%2 z#GQahbRhv4UGC#d07Mv4fDz`t?i56$3@N}Ub3bPaB9Vsp7-{bBj34uM(ty#%ohR5e zV8pR#=ugrq)E4W0!#6R(5_96c;mu|tM%|nd5CoO(9G~sIpETQZX8K;C`(p}L@3IAo zzmXqNT4|;Um|7Z!kO$~WGhM;d(lEF@P*<916Q-7iQRhLr(#)6O;iPfrnQRTi(SvoR z4Q*?JG>lXa(Umr|tqIaFfIU=K+R(NpNW-}HFkNYJTQiS%$hZa#q?to?rNwP+cxli| znmJ5YTHMx#mxe8+!*!*_ZEbjI*jswIuC$?TO>hI~GtE3gSK83FCP;&x)664vr44Os zf;8wp%{)q1+R(NpNP|Yy%%e$K@k`mOl>uk2&};#t0}@%QA3HqYU^>DB22wBlnAV=9iV$r=5P|j2lQcz$HoZ9))%b;?sTMTj=RtHH=7up&8HQ-o*}f(WcVo~kKAvN5v{<~1l31A1pQ**-1(d|X%>67a7Hv@G5epOa@meg}p^RCWho7y*nxKX$ z-4~|Y=V-Ck#aWnDpR2`MA7^3me4Z9-L!5;<^7&ef1YkFtea@gN$@;HwX5A)bd zGW^Fljt zcKokdp0B3#zN2j3_i`G|%ry2rqM`5kdNlStqM_%_>CxElh=zVw(4(=}5e>brs7GU; zBO3Z#Nsq=JKs59?MVl08=xwy`lr>0Ms6*Zxp<=B) zXI85;EB>4%H1)5)X1(S5JJ!+lLx)56uD`ofE!f_i>B^qv$}{hzD~Haw3|~1vZ+iO{ z;bwyKfSnXKl&kq}Rb)1~B_(TYO5R0E;#RiXoJQ2P&35fyI(Mn<(x(l$bjnjX?r&p# zZ~&{iTq(B~ErUt7ai#6jrw_Pvz2aB*B#zL{wo8A6E*&~Jt!D-uCk+n1Fbu0H^wqDS zbBfGQ!ZUjZ+Hj**YbA=m$R_^tBt9M&2DqJB!ftj`HI7+}&JJ2bM`pn-%$!T0xQQws z6ra1(cDG+75uy2%y+>t4RExpv@PUQUPP4banc&&^C2p#P`)Rq`ZS-#tT^Q>$=jvTz zBmF{$#7E2!32UzNbx3@&43V(j`X!MMUm6wKjK~ZG0~vEuoqIJuMlF z=^ULqf*y1gLF4Jhu#F=QI9#V6V{*T<-4icx4sF!k*-_mRbVt06mGUdv=0uNTsUAJ< z!lP5W@FsZia%u{{2@nOXk{2eYrtlj8QP3iJ(Q#@DSN=r7%AXe$r>1blPZX^9d9iS6 z3Rn6>!Ak#DGU3z|?iUjUD|}w8m72nxVxnMW&ug$!Q@BS=6zmc6!m891?hX?LyTiO( zDm8`s!bHKo@a@^3K6iwPf*oOAotyezxED+m>;>PE{a&~WOcd+_^J3c6_rm>OqG12` z&g}QXonNA0=a-kgMtVVJ@>8W;S+?Yue%kVCmb5kNk@(R0AxovC_eIaPif@*`HHQn; zQmLN2a&SL$LKOcRE*#8VZo3EmvK)TQ3ub1RWmv>Bro6}6uFtKi6xZi;OV@{VJIl?f z6xZiOOV@`)JIn2;6xZhzOV@`KJIf8I6xZkEO4oLy*zBjoMn7G4#ikaaM{M+A zXLc^I(Z87;ZhVwm3#L`vs5NaZ(th&Koo{pA6KOz0v!Rx1wW1|Tn6{NUjI!L>kv>@K zHsP%ce!F|9+=w~vd%|q)SFTk2M&937ZhARBzxby%4X@PHFy1}4dI%X9OJ1cZV{ES6 zC@c)20;9^SHC2qCU|QFe(hxE*z`RCPhF>rzk@-W&z*zHIO&JqKzp*DjoQ-1Od7Y+^ zA^ijckgA^ysR08~Mh&?%@dDoHXJ4P~SwuAqA1~mQfA$TUGKP*9&=Qz^qo#`C;|25# zX5XYLW9WDRO@-MvYsy$jynw#L>{~R24C$-TmC*H*AvHkHBBUYQ3osQ!a0H(E*L&}6 zwi@FkdLAk|%(B2ivj|uR78xh&>M&~nhtq*&#wofw%!0q+bYPwFeq9}-!|K37;{&=n z#)j2_b;hY_b;!V^gQ3V@u+~WJFBx@Uy^&gn<<3QU+-RWjz?wsz#F09V$?-$bfklTr z!6UT}IerK_uRGHcGVF+bdwR~KC%z~W?qRNIFGpu8HUR2sK3!Va;@(Rj^8#AnI z&d5Aws4T6WVXgCJb!BPo46C0r)s>~SGpvWcnps&epJ>H)#+irW8CFQ2Qdc&Voe9dY zW;#z@*-&;SD8nl1EOli=*_ogW>neGsaznu+3Km!CPCTisn4cB+3Km! zra{^2sn2FW+3Km!WR9#@5sioq%~7 zA%U^;^dl!=o(D`|Y%KlQ3797c6BzqOKXC%)ipaZnAhzP7<)FnW>qs}@=_iGV@u|ICwI)NdkBmj7hch-dB?oqhrrlSxxmRC^BN!m zW548A1de}a7_izrHto)~{M@shK05nr1#)k)T{0Y#@`VcU?i9OZHsyqJ^ zn}4eT?@p&nhGTxdNC8fh=#uf6r7u>%2h-M)$(W`!Y<)N~=4nS{u6xP9F;QQlFxs+z z3vf)eNf|m(oOy3%| zJ{%eIHiS?E8{6esgM_afN%&k|ay^- z()jf;LtdNu`eu>!p7`}K4_=r0`tuEQv_^k#Q8HG{cGsu9{&=%o*;{JF37FM*PnH#0 z(r97Xug0&BiHmn*S>g4^>+MFpB0OVEPdB9b_L)0ea# zV#x-(a-{uW-t4}2X|09f7u(=#oWVK86CARX>0|egKi9r Date: Wed, 20 Oct 2021 13:40:37 -0300 Subject: [PATCH 231/394] Update ProtocolInfo.java --- src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index 3899da52ff2..2a89242c534 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -17,12 +17,12 @@ public interface ProtocolInfo { /** * Actual Minecraft: PE protocol version */ - int CURRENT_PROTOCOL = dynamic(465); + int CURRENT_PROTOCOL = dynamic(471); List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION = dynamic("v1.17.30"); - String MINECRAFT_VERSION_NETWORK = dynamic("1.17.30"); + String MINECRAFT_VERSION = dynamic("v1.17.40"); + String MINECRAFT_VERSION_NETWORK = dynamic("1.17.40"); byte LOGIN_PACKET = 0x01; byte PLAY_STATUS_PACKET = 0x02; From acc3f92d6ebfe1bf4b254c0fa9c5f34db8422f8f Mon Sep 17 00:00:00 2001 From: Gabriel8579 Date: Thu, 21 Oct 2021 16:09:32 -0300 Subject: [PATCH 232/394] Updates some blocks info --- src/main/resources/canonical_block_states.nbt | Bin 1174676 -> 1174943 bytes src/main/resources/runtime_item_ids.json | 5897 ++++------------- 2 files changed, 1229 insertions(+), 4668 deletions(-) diff --git a/src/main/resources/canonical_block_states.nbt b/src/main/resources/canonical_block_states.nbt index 411b69e1137690a129f3d69db626ff6407bcaded..f971910ed0ba6cd7afdb99f8c8a190693b954677 100644 GIT binary patch delta 218 zcmbPo(|!JJ_l6e6Elk3~(-Rg5a!V!WWTxho#22L&mZlb$#24fwCZ}fP=cJ?-O`q5& zs5;r9g}Yr&mUg%x3G=@EG)b46Kew{DB(*3r zzqB|$ttc^f`oRZ`3X>N|a*Lu#q{bKLC;9*Y diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index 31b47e9f9ee..453f4027900 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -1,4700 +1,1261 @@ [ + { "name": "minecraft:acacia_boat", "oldId": 379, "id": 379 }, + { "name": "minecraft:acacia_button", "oldId": -140, "id": -140 }, + { "name": "minecraft:acacia_door", "oldId": 556, "id": 556 }, + { "name": "minecraft:acacia_fence_gate", "oldId": 187, "id": 187 }, + { "name": "minecraft:acacia_pressure_plate", "oldId": -150, "id": -150 }, + { "name": "minecraft:acacia_sign", "oldId": 579, "id": 579 }, + { "name": "minecraft:acacia_stairs", "oldId": 163, "id": 163 }, + { "name": "minecraft:acacia_standing_sign", "oldId": -190, "id": -190 }, + { "name": "minecraft:acacia_trapdoor", "oldId": -145, "id": -145 }, + { "name": "minecraft:acacia_wall_sign", "oldId": -191, "id": -191 }, + { "name": "minecraft:activator_rail", "oldId": 126, "id": 126 }, + { "name": "minecraft:agent_spawn_egg", "oldId": 487, "id": 487 }, + { "name": "minecraft:air", "oldId": -158, "id": -158 }, + { "name": "minecraft:allow", "oldId": 210, "id": 210 }, + { "name": "minecraft:amethyst_block", "oldId": -327, "id": -327 }, + { "name": "minecraft:amethyst_cluster", "oldId": -329, "id": -329 }, + { "name": "minecraft:amethyst_shard", "oldId": 623, "id": 623 }, + { "name": "minecraft:ancient_debris", "oldId": -271, "id": -271 }, + { "name": "minecraft:andesite_stairs", "oldId": -171, "id": -171 }, + { "name": "minecraft:anvil", "oldId": 145, "id": 145 }, + { "name": "minecraft:apple", "oldId": 257, "id": 257 }, + { "name": "minecraft:armor_stand", "oldId": 552, "id": 552 }, + { "name": "minecraft:arrow", "oldId": 301, "id": 301 }, + { "name": "minecraft:axolotl_bucket", "oldId": 369, "id": 369 }, + { "name": "minecraft:axolotl_spawn_egg", "oldId": 500, "id": 500 }, + { "name": "minecraft:azalea", "oldId": -337, "id": -337 }, + { "name": "minecraft:azalea_leaves", "oldId": -324, "id": -324 }, + { "name": "minecraft:azalea_leaves_flowered", "oldId": -325, "id": -325 }, + { "name": "minecraft:baked_potato", "oldId": 281, "id": 281 }, + { "name": "minecraft:balloon", "oldId": 597, "id": 597 }, + { "name": "minecraft:bamboo", "oldId": -163, "id": -163 }, + { "name": "minecraft:bamboo_sapling", "oldId": -164, "id": -164 }, + { "name": "minecraft:banner", "oldId": 567, "id": 567 }, + { "name": "minecraft:banner_pattern", "oldId": 627, "id": 627 }, + { "name": "minecraft:barrel", "oldId": -203, "id": -203 }, + { "name": "minecraft:barrier", "oldId": -161, "id": -161 }, + { "name": "minecraft:basalt", "oldId": -234, "id": -234 }, + { "name": "minecraft:bat_spawn_egg", "oldId": 453, "id": 453 }, + { "name": "minecraft:beacon", "oldId": 138, "id": 138 }, + { "name": "minecraft:bed", "oldId": 418, "id": 418 }, + { "name": "minecraft:bedrock", "oldId": 7, "id": 7 }, + { "name": "minecraft:bee_nest", "oldId": -218, "id": -218 }, + { "name": "minecraft:bee_spawn_egg", "oldId": 494, "id": 494 }, + { "name": "minecraft:beef", "oldId": 273, "id": 273 }, + { "name": "minecraft:beehive", "oldId": -219, "id": -219 }, + { "name": "minecraft:beetroot", "oldId": 285, "id": 285 }, + { "name": "minecraft:beetroot_seeds", "oldId": 295, "id": 295 }, + { "name": "minecraft:beetroot_soup", "oldId": 286, "id": 286 }, + { "name": "minecraft:bell", "oldId": -206, "id": -206 }, + { "name": "minecraft:big_dripleaf", "oldId": -323, "id": -323 }, + { "name": "minecraft:birch_boat", "oldId": 376, "id": 376 }, + { "name": "minecraft:birch_button", "oldId": -141, "id": -141 }, + { "name": "minecraft:birch_door", "oldId": 554, "id": 554 }, + { "name": "minecraft:birch_fence_gate", "oldId": 184, "id": 184 }, + { "name": "minecraft:birch_pressure_plate", "oldId": -151, "id": -151 }, + { "name": "minecraft:birch_sign", "oldId": 577, "id": 577 }, + { "name": "minecraft:birch_stairs", "oldId": 135, "id": 135 }, + { "name": "minecraft:birch_standing_sign", "oldId": -186, "id": -186 }, + { "name": "minecraft:birch_trapdoor", "oldId": -146, "id": -146 }, + { "name": "minecraft:birch_wall_sign", "oldId": -187, "id": -187 }, + { "name": "minecraft:black_candle", "oldId": -428, "id": -428 }, + { "name": "minecraft:black_candle_cake", "oldId": -445, "id": -445 }, + { "name": "minecraft:black_dye", "oldId": 395, "id": 395 }, + { "name": "minecraft:black_glazed_terracotta", "oldId": 235, "id": 235 }, + { "name": "minecraft:blackstone", "oldId": -273, "id": -273 }, + { "name": "minecraft:blackstone_double_slab", "oldId": -283, "id": -283 }, + { "name": "minecraft:blackstone_slab", "oldId": -282, "id": -282 }, + { "name": "minecraft:blackstone_stairs", "oldId": -276, "id": -276 }, + { "name": "minecraft:blackstone_wall", "oldId": -277, "id": -277 }, + { "name": "minecraft:blast_furnace", "oldId": -196, "id": -196 }, + { "name": "minecraft:blaze_powder", "oldId": 429, "id": 429 }, + { "name": "minecraft:blaze_rod", "oldId": 423, "id": 423 }, + { "name": "minecraft:blaze_spawn_egg", "oldId": 456, "id": 456 }, + { "name": "minecraft:bleach", "oldId": 595, "id": 595 }, + { "name": "minecraft:blue_candle", "oldId": -424, "id": -424 }, + { "name": "minecraft:blue_candle_cake", "oldId": -441, "id": -441 }, + { "name": "minecraft:blue_dye", "oldId": 399, "id": 399 }, + { "name": "minecraft:blue_glazed_terracotta", "oldId": 231, "id": 231 }, + { "name": "minecraft:blue_ice", "oldId": -11, "id": -11 }, + { "name": "minecraft:boat", "oldId": 625, "id": 625 }, + { "name": "minecraft:bone", "oldId": 415, "id": 415 }, + { "name": "minecraft:bone_block", "oldId": 216, "id": 216 }, + { "name": "minecraft:bone_meal", "oldId": 411, "id": 411 }, + { "name": "minecraft:book", "oldId": 387, "id": 387 }, + { "name": "minecraft:bookshelf", "oldId": 47, "id": 47 }, + { "name": "minecraft:border_block", "oldId": 212, "id": 212 }, { - "name": "minecraft:unknown", - "id": -305 - }, - { - "name": "minecraft:quartz_bricks", - "id": -304, - "oldId": -304 - }, - { - "name": "minecraft:cracked_nether_bricks", - "id": -303, - "oldId": -303 - }, - { - "name": "minecraft:chiseled_nether_bricks", - "id": -302, - "oldId": -302 - }, - { - "name": "minecraft:stripped_warped_hyphae", - "id": -301, - "oldId": -301 - }, - { - "name": "minecraft:stripped_crimson_hyphae", - "id": -300, - "oldId": -300 - }, - { - "name": "minecraft:crimson_hyphae", - "id": -299, - "oldId": -299 - }, - { - "name": "minecraft:warped_hyphae", - "id": -298, - "oldId": -298 - }, - { - "name": "minecraft:polished_blackstone_wall", - "id": -297, - "oldId": -297 - }, - { - "name": "minecraft:polished_blackstone_button", - "id": -296, - "oldId": -296 - }, - { - "name": "minecraft:polished_blackstone_pressure_plate", - "id": -295, - "oldId": -295 - }, - { - "name": "minecraft:polished_blackstone_double_slab", - "id": -294, - "oldId": -294 - }, - { - "name": "minecraft:polished_blackstone_slab", - "id": -293, - "oldId": -293 - }, - { - "name": "minecraft:polished_blackstone_stairs", - "id": -292, - "oldId": -292 - }, + "name": "minecraft:bordure_indented_banner_pattern", + "oldId": 586, + "id": 586 + }, + { "name": "minecraft:bow", "oldId": 300, "id": 300 }, + { "name": "minecraft:bowl", "oldId": 321, "id": 321 }, + { "name": "minecraft:bread", "oldId": 261, "id": 261 }, + { "name": "minecraft:brewing_stand", "oldId": 431, "id": 431 }, + { "name": "minecraft:brewingstandblock", "oldId": 117, "id": 117 }, + { "name": "minecraft:brick", "oldId": 383, "id": 383 }, + { "name": "minecraft:brick_block", "oldId": 45, "id": 45 }, + { "name": "minecraft:brick_stairs", "oldId": 108, "id": 108 }, + { "name": "minecraft:brown_candle", "oldId": -425, "id": -425 }, + { "name": "minecraft:brown_candle_cake", "oldId": -442, "id": -442 }, + { "name": "minecraft:brown_dye", "oldId": 398, "id": 398 }, + { "name": "minecraft:brown_glazed_terracotta", "oldId": 232, "id": 232 }, + { "name": "minecraft:brown_mushroom", "oldId": 39, "id": 39 }, + { "name": "minecraft:brown_mushroom_block", "oldId": 99, "id": 99 }, + { "name": "minecraft:bubble_column", "oldId": -160, "id": -160 }, + { "name": "minecraft:bucket", "oldId": 360, "id": 360 }, + { "name": "minecraft:budding_amethyst", "oldId": -328, "id": -328 }, + { "name": "minecraft:cactus", "oldId": 81, "id": 81 }, + { "name": "minecraft:cake", "oldId": 417, "id": 417 }, + { "name": "minecraft:calcite", "oldId": -326, "id": -326 }, + { "name": "minecraft:camera", "oldId": 592, "id": 592 }, + { "name": "minecraft:campfire", "oldId": 588, "id": 588 }, + { "name": "minecraft:candle", "oldId": -412, "id": -412 }, + { "name": "minecraft:candle_cake", "oldId": -429, "id": -429 }, + { "name": "minecraft:carpet", "oldId": 171, "id": 171 }, + { "name": "minecraft:carrot", "oldId": 279, "id": 279 }, + { "name": "minecraft:carrot_on_a_stick", "oldId": 517, "id": 517 }, + { "name": "minecraft:carrots", "oldId": 141, "id": 141 }, + { "name": "minecraft:cartography_table", "oldId": -200, "id": -200 }, + { "name": "minecraft:carved_pumpkin", "oldId": -155, "id": -155 }, + { "name": "minecraft:cat_spawn_egg", "oldId": 488, "id": 488 }, + { "name": "minecraft:cauldron", "oldId": 432, "id": 432 }, + { "name": "minecraft:cave_spider_spawn_egg", "oldId": 457, "id": 457 }, + { "name": "minecraft:cave_vines", "oldId": -322, "id": -322 }, + { + "name": "minecraft:cave_vines_body_with_berries", + "oldId": -375, + "id": -375 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "oldId": -376, + "id": -376 + }, + { "name": "minecraft:chain", "oldId": 617, "id": 617 }, + { "name": "minecraft:chain_command_block", "oldId": 189, "id": 189 }, + { "name": "minecraft:chainmail_boots", "oldId": 342, "id": 342 }, + { "name": "minecraft:chainmail_chestplate", "oldId": 340, "id": 340 }, + { "name": "minecraft:chainmail_helmet", "oldId": 339, "id": 339 }, + { "name": "minecraft:chainmail_leggings", "oldId": 341, "id": 341 }, + { "name": "minecraft:charcoal", "oldId": 303, "id": 303 }, + { "name": "minecraft:chemical_heat", "oldId": 192, "id": 192 }, + { "name": "minecraft:chemistry_table", "oldId": 238, "id": 238 }, + { "name": "minecraft:chest", "oldId": 54, "id": 54 }, + { "name": "minecraft:chest_minecart", "oldId": 389, "id": 389 }, + { "name": "minecraft:chicken", "oldId": 275, "id": 275 }, + { "name": "minecraft:chicken_spawn_egg", "oldId": 435, "id": 435 }, + { "name": "minecraft:chiseled_deepslate", "oldId": -395, "id": -395 }, + { "name": "minecraft:chiseled_nether_bricks", "oldId": -302, "id": -302 }, { - "name": "minecraft:polished_blackstone", - "id": -291, - "oldId": -291 - }, + "name": "minecraft:chiseled_polished_blackstone", + "oldId": -279, + "id": -279 + }, + { "name": "minecraft:chorus_flower", "oldId": 200, "id": 200 }, + { "name": "minecraft:chorus_fruit", "oldId": 558, "id": 558 }, + { "name": "minecraft:chorus_plant", "oldId": 240, "id": 240 }, + { "name": "minecraft:clay", "oldId": 82, "id": 82 }, + { "name": "minecraft:clay_ball", "oldId": 384, "id": 384 }, + { + "name": "minecraft:client_request_placeholder_block", + "oldId": -465, + "id": -465 + }, + { "name": "minecraft:clock", "oldId": 393, "id": 393 }, + { "name": "minecraft:coal", "oldId": 302, "id": 302 }, + { "name": "minecraft:coal_block", "oldId": 173, "id": 173 }, + { "name": "minecraft:coal_ore", "oldId": 16, "id": 16 }, + { "name": "minecraft:cobbled_deepslate", "oldId": -379, "id": -379 }, + { + "name": "minecraft:cobbled_deepslate_double_slab", + "oldId": -396, + "id": -396 + }, + { "name": "minecraft:cobbled_deepslate_slab", "oldId": -380, "id": -380 }, + { "name": "minecraft:cobbled_deepslate_stairs", "oldId": -381, "id": -381 }, + { "name": "minecraft:cobbled_deepslate_wall", "oldId": -382, "id": -382 }, + { "name": "minecraft:cobblestone", "oldId": 4, "id": 4 }, + { "name": "minecraft:cobblestone_wall", "oldId": 139, "id": 139 }, + { "name": "minecraft:cocoa", "oldId": 127, "id": 127 }, + { "name": "minecraft:cocoa_beans", "oldId": 412, "id": 412 }, + { "name": "minecraft:cod", "oldId": 264, "id": 264 }, + { "name": "minecraft:cod_bucket", "oldId": 364, "id": 364 }, + { "name": "minecraft:cod_spawn_egg", "oldId": 480, "id": 480 }, + { "name": "minecraft:colored_torch_bp", "oldId": 204, "id": 204 }, + { "name": "minecraft:colored_torch_rg", "oldId": 202, "id": 202 }, + { "name": "minecraft:command_block", "oldId": 137, "id": 137 }, + { "name": "minecraft:command_block_minecart", "oldId": 563, "id": 563 }, + { "name": "minecraft:comparator", "oldId": 522, "id": 522 }, + { "name": "minecraft:compass", "oldId": 391, "id": 391 }, + { "name": "minecraft:composter", "oldId": -213, "id": -213 }, + { "name": "minecraft:compound", "oldId": 593, "id": 593 }, + { "name": "minecraft:concrete", "oldId": 236, "id": 236 }, + { "name": "minecraft:concrete_powder", "oldId": 237, "id": 237 }, + { "name": "minecraft:conduit", "oldId": -157, "id": -157 }, + { "name": "minecraft:cooked_beef", "oldId": 274, "id": 274 }, + { "name": "minecraft:cooked_chicken", "oldId": 276, "id": 276 }, + { "name": "minecraft:cooked_cod", "oldId": 268, "id": 268 }, + { "name": "minecraft:cooked_mutton", "oldId": 551, "id": 551 }, + { "name": "minecraft:cooked_porkchop", "oldId": 263, "id": 263 }, + { "name": "minecraft:cooked_rabbit", "oldId": 289, "id": 289 }, + { "name": "minecraft:cooked_salmon", "oldId": 269, "id": 269 }, + { "name": "minecraft:cookie", "oldId": 271, "id": 271 }, + { "name": "minecraft:copper_block", "oldId": -340, "id": -340 }, + { "name": "minecraft:copper_ingot", "oldId": 504, "id": 504 }, + { "name": "minecraft:copper_ore", "oldId": -311, "id": -311 }, + { "name": "minecraft:coral", "oldId": -131, "id": -131 }, + { "name": "minecraft:coral_block", "oldId": -132, "id": -132 }, + { "name": "minecraft:coral_fan", "oldId": -133, "id": -133 }, + { "name": "minecraft:coral_fan_dead", "oldId": -134, "id": -134 }, + { "name": "minecraft:coral_fan_hang", "oldId": -135, "id": -135 }, + { "name": "minecraft:coral_fan_hang2", "oldId": -136, "id": -136 }, + { "name": "minecraft:coral_fan_hang3", "oldId": -137, "id": -137 }, + { "name": "minecraft:cow_spawn_egg", "oldId": 436, "id": 436 }, + { "name": "minecraft:cracked_deepslate_bricks", "oldId": -410, "id": -410 }, + { "name": "minecraft:cracked_deepslate_tiles", "oldId": -409, "id": -409 }, + { "name": "minecraft:cracked_nether_bricks", "oldId": -303, "id": -303 }, { - "name": "minecraft:item.soul_campfire", - "id": -290, - "oldId": -290 - }, + "name": "minecraft:cracked_polished_blackstone_bricks", + "oldId": -280, + "id": -280 + }, + { "name": "minecraft:crafting_table", "oldId": 58, "id": 58 }, + { "name": "minecraft:creeper_banner_pattern", "oldId": 582, "id": 582 }, + { "name": "minecraft:creeper_spawn_egg", "oldId": 441, "id": 441 }, + { "name": "minecraft:crimson_button", "oldId": -260, "id": -260 }, + { "name": "minecraft:crimson_door", "oldId": 614, "id": 614 }, + { "name": "minecraft:crimson_double_slab", "oldId": -266, "id": -266 }, + { "name": "minecraft:crimson_fence", "oldId": -256, "id": -256 }, + { "name": "minecraft:crimson_fence_gate", "oldId": -258, "id": -258 }, + { "name": "minecraft:crimson_fungus", "oldId": -228, "id": -228 }, + { "name": "minecraft:crimson_hyphae", "oldId": -299, "id": -299 }, + { "name": "minecraft:crimson_nylium", "oldId": -232, "id": -232 }, + { "name": "minecraft:crimson_planks", "oldId": -242, "id": -242 }, + { "name": "minecraft:crimson_pressure_plate", "oldId": -262, "id": -262 }, + { "name": "minecraft:crimson_roots", "oldId": -223, "id": -223 }, + { "name": "minecraft:crimson_sign", "oldId": 612, "id": 612 }, + { "name": "minecraft:crimson_slab", "oldId": -264, "id": -264 }, + { "name": "minecraft:crimson_stairs", "oldId": -254, "id": -254 }, + { "name": "minecraft:crimson_standing_sign", "oldId": -250, "id": -250 }, + { "name": "minecraft:crimson_stem", "oldId": -225, "id": -225 }, + { "name": "minecraft:crimson_trapdoor", "oldId": -246, "id": -246 }, + { "name": "minecraft:crimson_wall_sign", "oldId": -252, "id": -252 }, + { "name": "minecraft:crossbow", "oldId": 575, "id": 575 }, + { "name": "minecraft:crying_obsidian", "oldId": -289, "id": -289 }, + { "name": "minecraft:cut_copper", "oldId": -347, "id": -347 }, + { "name": "minecraft:cut_copper_slab", "oldId": -361, "id": -361 }, + { "name": "minecraft:cut_copper_stairs", "oldId": -354, "id": -354 }, + { "name": "minecraft:cyan_candle", "oldId": -422, "id": -422 }, + { "name": "minecraft:cyan_candle_cake", "oldId": -439, "id": -439 }, + { "name": "minecraft:cyan_dye", "oldId": 401, "id": 401 }, + { "name": "minecraft:cyan_glazed_terracotta", "oldId": 229, "id": 229 }, + { "name": "minecraft:dark_oak_boat", "oldId": 380, "id": 380 }, + { "name": "minecraft:dark_oak_button", "oldId": -142, "id": -142 }, + { "name": "minecraft:dark_oak_door", "oldId": 557, "id": 557 }, + { "name": "minecraft:dark_oak_fence_gate", "oldId": 186, "id": 186 }, + { "name": "minecraft:dark_oak_pressure_plate", "oldId": -152, "id": -152 }, + { "name": "minecraft:dark_oak_sign", "oldId": 580, "id": 580 }, + { "name": "minecraft:dark_oak_stairs", "oldId": 164, "id": 164 }, + { "name": "minecraft:dark_oak_trapdoor", "oldId": -147, "id": -147 }, + { "name": "minecraft:dark_prismarine_stairs", "oldId": -3, "id": -3 }, + { "name": "minecraft:darkoak_standing_sign", "oldId": -192, "id": -192 }, + { "name": "minecraft:darkoak_wall_sign", "oldId": -193, "id": -193 }, + { "name": "minecraft:daylight_detector", "oldId": 151, "id": 151 }, + { "name": "minecraft:daylight_detector_inverted", "oldId": 178, "id": 178 }, + { "name": "minecraft:deadbush", "oldId": 32, "id": 32 }, + { "name": "minecraft:deepslate", "oldId": -378, "id": -378 }, + { + "name": "minecraft:deepslate_brick_double_slab", + "oldId": -399, + "id": -399 + }, + { "name": "minecraft:deepslate_brick_slab", "oldId": -392, "id": -392 }, + { "name": "minecraft:deepslate_brick_stairs", "oldId": -393, "id": -393 }, + { "name": "minecraft:deepslate_brick_wall", "oldId": -394, "id": -394 }, + { "name": "minecraft:deepslate_bricks", "oldId": -391, "id": -391 }, + { "name": "minecraft:deepslate_coal_ore", "oldId": -406, "id": -406 }, + { "name": "minecraft:deepslate_copper_ore", "oldId": -408, "id": -408 }, + { "name": "minecraft:deepslate_diamond_ore", "oldId": -405, "id": -405 }, + { "name": "minecraft:deepslate_emerald_ore", "oldId": -407, "id": -407 }, + { "name": "minecraft:deepslate_gold_ore", "oldId": -402, "id": -402 }, + { "name": "minecraft:deepslate_iron_ore", "oldId": -401, "id": -401 }, + { "name": "minecraft:deepslate_lapis_ore", "oldId": -400, "id": -400 }, + { "name": "minecraft:deepslate_redstone_ore", "oldId": -403, "id": -403 }, + { + "name": "minecraft:deepslate_tile_double_slab", + "oldId": -398, + "id": -398 + }, + { "name": "minecraft:deepslate_tile_slab", "oldId": -388, "id": -388 }, + { "name": "minecraft:deepslate_tile_stairs", "oldId": -389, "id": -389 }, + { "name": "minecraft:deepslate_tile_wall", "oldId": -390, "id": -390 }, + { "name": "minecraft:deepslate_tiles", "oldId": -387, "id": -387 }, + { "name": "minecraft:deny", "oldId": 211, "id": 211 }, + { "name": "minecraft:detector_rail", "oldId": 28, "id": 28 }, + { "name": "minecraft:diamond", "oldId": 304, "id": 304 }, + { "name": "minecraft:diamond_axe", "oldId": 319, "id": 319 }, + { "name": "minecraft:diamond_block", "oldId": 57, "id": 57 }, + { "name": "minecraft:diamond_boots", "oldId": 350, "id": 350 }, + { "name": "minecraft:diamond_chestplate", "oldId": 348, "id": 348 }, + { "name": "minecraft:diamond_helmet", "oldId": 347, "id": 347 }, + { "name": "minecraft:diamond_hoe", "oldId": 332, "id": 332 }, + { "name": "minecraft:diamond_horse_armor", "oldId": 533, "id": 533 }, + { "name": "minecraft:diamond_leggings", "oldId": 349, "id": 349 }, + { "name": "minecraft:diamond_ore", "oldId": 56, "id": 56 }, + { "name": "minecraft:diamond_pickaxe", "oldId": 318, "id": 318 }, + { "name": "minecraft:diamond_shovel", "oldId": 317, "id": 317 }, + { "name": "minecraft:diamond_sword", "oldId": 316, "id": 316 }, + { "name": "minecraft:diorite_stairs", "oldId": -170, "id": -170 }, + { "name": "minecraft:dirt", "oldId": 3, "id": 3 }, + { "name": "minecraft:dirt_with_roots", "oldId": -318, "id": -318 }, + { "name": "minecraft:dispenser", "oldId": 23, "id": 23 }, + { "name": "minecraft:dolphin_spawn_egg", "oldId": 484, "id": 484 }, + { "name": "minecraft:donkey_spawn_egg", "oldId": 465, "id": 465 }, + { "name": "minecraft:double_cut_copper_slab", "oldId": -368, "id": -368 }, + { "name": "minecraft:double_plant", "oldId": 175, "id": 175 }, + { "name": "minecraft:double_stone_slab", "oldId": 44, "id": 44 }, + { "name": "minecraft:double_stone_slab2", "oldId": 182, "id": 182 }, + { "name": "minecraft:double_stone_slab3", "oldId": -162, "id": -162 }, + { "name": "minecraft:double_stone_slab4", "oldId": -166, "id": -166 }, + { "name": "minecraft:double_wooden_slab", "oldId": 157, "id": 157 }, + { "name": "minecraft:dragon_breath", "oldId": 560, "id": 560 }, + { "name": "minecraft:dragon_egg", "oldId": 122, "id": 122 }, + { "name": "minecraft:dried_kelp", "oldId": 270, "id": 270 }, + { "name": "minecraft:dried_kelp_block", "oldId": -139, "id": -139 }, + { "name": "minecraft:dripstone_block", "oldId": -317, "id": -317 }, + { "name": "minecraft:dropper", "oldId": 125, "id": 125 }, + { "name": "minecraft:drowned_spawn_egg", "oldId": 483, "id": 483 }, + { "name": "minecraft:dye", "oldId": 626, "id": 626 }, + { "name": "minecraft:egg", "oldId": 390, "id": 390 }, + { "name": "minecraft:elder_guardian_spawn_egg", "oldId": 471, "id": 471 }, + { "name": "minecraft:element_0", "oldId": 36, "id": 36 }, + { "name": "minecraft:element_1", "oldId": -12, "id": -12 }, + { "name": "minecraft:element_10", "oldId": -21, "id": -21 }, + { "name": "minecraft:element_100", "oldId": -111, "id": -111 }, + { "name": "minecraft:element_101", "oldId": -112, "id": -112 }, + { "name": "minecraft:element_102", "oldId": -113, "id": -113 }, + { "name": "minecraft:element_103", "oldId": -114, "id": -114 }, + { "name": "minecraft:element_104", "oldId": -115, "id": -115 }, + { "name": "minecraft:element_105", "oldId": -116, "id": -116 }, + { "name": "minecraft:element_106", "oldId": -117, "id": -117 }, + { "name": "minecraft:element_107", "oldId": -118, "id": -118 }, + { "name": "minecraft:element_108", "oldId": -119, "id": -119 }, + { "name": "minecraft:element_109", "oldId": -120, "id": -120 }, + { "name": "minecraft:element_11", "oldId": -22, "id": -22 }, + { "name": "minecraft:element_110", "oldId": -121, "id": -121 }, + { "name": "minecraft:element_111", "oldId": -122, "id": -122 }, + { "name": "minecraft:element_112", "oldId": -123, "id": -123 }, + { "name": "minecraft:element_113", "oldId": -124, "id": -124 }, + { "name": "minecraft:element_114", "oldId": -125, "id": -125 }, + { "name": "minecraft:element_115", "oldId": -126, "id": -126 }, + { "name": "minecraft:element_116", "oldId": -127, "id": -127 }, + { "name": "minecraft:element_117", "oldId": -128, "id": -128 }, + { "name": "minecraft:element_118", "oldId": -129, "id": -129 }, + { "name": "minecraft:element_12", "oldId": -23, "id": -23 }, + { "name": "minecraft:element_13", "oldId": -24, "id": -24 }, + { "name": "minecraft:element_14", "oldId": -25, "id": -25 }, + { "name": "minecraft:element_15", "oldId": -26, "id": -26 }, + { "name": "minecraft:element_16", "oldId": -27, "id": -27 }, + { "name": "minecraft:element_17", "oldId": -28, "id": -28 }, + { "name": "minecraft:element_18", "oldId": -29, "id": -29 }, + { "name": "minecraft:element_19", "oldId": -30, "id": -30 }, + { "name": "minecraft:element_2", "oldId": -13, "id": -13 }, + { "name": "minecraft:element_20", "oldId": -31, "id": -31 }, + { "name": "minecraft:element_21", "oldId": -32, "id": -32 }, + { "name": "minecraft:element_22", "oldId": -33, "id": -33 }, + { "name": "minecraft:element_23", "oldId": -34, "id": -34 }, + { "name": "minecraft:element_24", "oldId": -35, "id": -35 }, + { "name": "minecraft:element_25", "oldId": -36, "id": -36 }, + { "name": "minecraft:element_26", "oldId": -37, "id": -37 }, + { "name": "minecraft:element_27", "oldId": -38, "id": -38 }, + { "name": "minecraft:element_28", "oldId": -39, "id": -39 }, + { "name": "minecraft:element_29", "oldId": -40, "id": -40 }, + { "name": "minecraft:element_3", "oldId": -14, "id": -14 }, + { "name": "minecraft:element_30", "oldId": -41, "id": -41 }, + { "name": "minecraft:element_31", "oldId": -42, "id": -42 }, + { "name": "minecraft:element_32", "oldId": -43, "id": -43 }, + { "name": "minecraft:element_33", "oldId": -44, "id": -44 }, + { "name": "minecraft:element_34", "oldId": -45, "id": -45 }, + { "name": "minecraft:element_35", "oldId": -46, "id": -46 }, + { "name": "minecraft:element_36", "oldId": -47, "id": -47 }, + { "name": "minecraft:element_37", "oldId": -48, "id": -48 }, + { "name": "minecraft:element_38", "oldId": -49, "id": -49 }, + { "name": "minecraft:element_39", "oldId": -50, "id": -50 }, + { "name": "minecraft:element_4", "oldId": -15, "id": -15 }, + { "name": "minecraft:element_40", "oldId": -51, "id": -51 }, + { "name": "minecraft:element_41", "oldId": -52, "id": -52 }, + { "name": "minecraft:element_42", "oldId": -53, "id": -53 }, + { "name": "minecraft:element_43", "oldId": -54, "id": -54 }, + { "name": "minecraft:element_44", "oldId": -55, "id": -55 }, + { "name": "minecraft:element_45", "oldId": -56, "id": -56 }, + { "name": "minecraft:element_46", "oldId": -57, "id": -57 }, + { "name": "minecraft:element_47", "oldId": -58, "id": -58 }, + { "name": "minecraft:element_48", "oldId": -59, "id": -59 }, + { "name": "minecraft:element_49", "oldId": -60, "id": -60 }, + { "name": "minecraft:element_5", "oldId": -16, "id": -16 }, + { "name": "minecraft:element_50", "oldId": -61, "id": -61 }, + { "name": "minecraft:element_51", "oldId": -62, "id": -62 }, + { "name": "minecraft:element_52", "oldId": -63, "id": -63 }, + { "name": "minecraft:element_53", "oldId": -64, "id": -64 }, + { "name": "minecraft:element_54", "oldId": -65, "id": -65 }, + { "name": "minecraft:element_55", "oldId": -66, "id": -66 }, + { "name": "minecraft:element_56", "oldId": -67, "id": -67 }, + { "name": "minecraft:element_57", "oldId": -68, "id": -68 }, + { "name": "minecraft:element_58", "oldId": -69, "id": -69 }, + { "name": "minecraft:element_59", "oldId": -70, "id": -70 }, + { "name": "minecraft:element_6", "oldId": -17, "id": -17 }, + { "name": "minecraft:element_60", "oldId": -71, "id": -71 }, + { "name": "minecraft:element_61", "oldId": -72, "id": -72 }, + { "name": "minecraft:element_62", "oldId": -73, "id": -73 }, + { "name": "minecraft:element_63", "oldId": -74, "id": -74 }, + { "name": "minecraft:element_64", "oldId": -75, "id": -75 }, + { "name": "minecraft:element_65", "oldId": -76, "id": -76 }, + { "name": "minecraft:element_66", "oldId": -77, "id": -77 }, + { "name": "minecraft:element_67", "oldId": -78, "id": -78 }, + { "name": "minecraft:element_68", "oldId": -79, "id": -79 }, + { "name": "minecraft:element_69", "oldId": -80, "id": -80 }, + { "name": "minecraft:element_7", "oldId": -18, "id": -18 }, + { "name": "minecraft:element_70", "oldId": -81, "id": -81 }, + { "name": "minecraft:element_71", "oldId": -82, "id": -82 }, + { "name": "minecraft:element_72", "oldId": -83, "id": -83 }, + { "name": "minecraft:element_73", "oldId": -84, "id": -84 }, + { "name": "minecraft:element_74", "oldId": -85, "id": -85 }, + { "name": "minecraft:element_75", "oldId": -86, "id": -86 }, + { "name": "minecraft:element_76", "oldId": -87, "id": -87 }, + { "name": "minecraft:element_77", "oldId": -88, "id": -88 }, + { "name": "minecraft:element_78", "oldId": -89, "id": -89 }, + { "name": "minecraft:element_79", "oldId": -90, "id": -90 }, + { "name": "minecraft:element_8", "oldId": -19, "id": -19 }, + { "name": "minecraft:element_80", "oldId": -91, "id": -91 }, + { "name": "minecraft:element_81", "oldId": -92, "id": -92 }, + { "name": "minecraft:element_82", "oldId": -93, "id": -93 }, + { "name": "minecraft:element_83", "oldId": -94, "id": -94 }, + { "name": "minecraft:element_84", "oldId": -95, "id": -95 }, + { "name": "minecraft:element_85", "oldId": -96, "id": -96 }, + { "name": "minecraft:element_86", "oldId": -97, "id": -97 }, + { "name": "minecraft:element_87", "oldId": -98, "id": -98 }, + { "name": "minecraft:element_88", "oldId": -99, "id": -99 }, + { "name": "minecraft:element_89", "oldId": -100, "id": -100 }, + { "name": "minecraft:element_9", "oldId": -20, "id": -20 }, + { "name": "minecraft:element_90", "oldId": -101, "id": -101 }, + { "name": "minecraft:element_91", "oldId": -102, "id": -102 }, + { "name": "minecraft:element_92", "oldId": -103, "id": -103 }, + { "name": "minecraft:element_93", "oldId": -104, "id": -104 }, + { "name": "minecraft:element_94", "oldId": -105, "id": -105 }, + { "name": "minecraft:element_95", "oldId": -106, "id": -106 }, + { "name": "minecraft:element_96", "oldId": -107, "id": -107 }, + { "name": "minecraft:element_97", "oldId": -108, "id": -108 }, + { "name": "minecraft:element_98", "oldId": -109, "id": -109 }, + { "name": "minecraft:element_99", "oldId": -110, "id": -110 }, + { "name": "minecraft:elytra", "oldId": 564, "id": 564 }, + { "name": "minecraft:emerald", "oldId": 512, "id": 512 }, + { "name": "minecraft:emerald_block", "oldId": 133, "id": 133 }, + { "name": "minecraft:emerald_ore", "oldId": 129, "id": 129 }, + { "name": "minecraft:empty_map", "oldId": 515, "id": 515 }, + { "name": "minecraft:enchanted_book", "oldId": 521, "id": 521 }, + { "name": "minecraft:enchanted_golden_apple", "oldId": 259, "id": 259 }, + { "name": "minecraft:enchanting_table", "oldId": 116, "id": 116 }, + { "name": "minecraft:end_brick_stairs", "oldId": -178, "id": -178 }, + { "name": "minecraft:end_bricks", "oldId": 206, "id": 206 }, + { "name": "minecraft:end_crystal", "oldId": 629, "id": 629 }, + { "name": "minecraft:end_gateway", "oldId": 209, "id": 209 }, + { "name": "minecraft:end_portal", "oldId": 119, "id": 119 }, + { "name": "minecraft:end_portal_frame", "oldId": 120, "id": 120 }, + { "name": "minecraft:end_rod", "oldId": 208, "id": 208 }, + { "name": "minecraft:end_stone", "oldId": 121, "id": 121 }, + { "name": "minecraft:ender_chest", "oldId": 130, "id": 130 }, + { "name": "minecraft:ender_eye", "oldId": 433, "id": 433 }, + { "name": "minecraft:ender_pearl", "oldId": 422, "id": 422 }, + { "name": "minecraft:enderman_spawn_egg", "oldId": 442, "id": 442 }, + { "name": "minecraft:endermite_spawn_egg", "oldId": 460, "id": 460 }, + { "name": "minecraft:evoker_spawn_egg", "oldId": 475, "id": 475 }, + { "name": "minecraft:experience_bottle", "oldId": 508, "id": 508 }, + { "name": "minecraft:exposed_copper", "oldId": -341, "id": -341 }, + { "name": "minecraft:exposed_cut_copper", "oldId": -348, "id": -348 }, + { "name": "minecraft:exposed_cut_copper_slab", "oldId": -362, "id": -362 }, + { + "name": "minecraft:exposed_cut_copper_stairs", + "oldId": -355, + "id": -355 + }, + { + "name": "minecraft:exposed_double_cut_copper_slab", + "oldId": -369, + "id": -369 + }, + { "name": "minecraft:farmland", "oldId": 60, "id": 60 }, + { "name": "minecraft:feather", "oldId": 327, "id": 327 }, + { "name": "minecraft:fence", "oldId": 85, "id": 85 }, + { "name": "minecraft:fence_gate", "oldId": 107, "id": 107 }, + { "name": "minecraft:fermented_spider_eye", "oldId": 428, "id": 428 }, { - "name": "minecraft:crying_obsidian", - "id": -289, - "oldId": -289 - }, + "name": "minecraft:field_masoned_banner_pattern", + "oldId": 585, + "id": 585 + }, + { "name": "minecraft:filled_map", "oldId": 420, "id": 420 }, + { "name": "minecraft:fire", "oldId": 51, "id": 51 }, + { "name": "minecraft:fire_charge", "oldId": 509, "id": 509 }, + { "name": "minecraft:firework_rocket", "oldId": 519, "id": 519 }, + { "name": "minecraft:firework_star", "oldId": 520, "id": 520 }, + { "name": "minecraft:fishing_rod", "oldId": 392, "id": 392 }, + { "name": "minecraft:fletching_table", "oldId": -201, "id": -201 }, + { "name": "minecraft:flint", "oldId": 356, "id": 356 }, + { "name": "minecraft:flint_and_steel", "oldId": 299, "id": 299 }, + { "name": "minecraft:flower_banner_pattern", "oldId": 581, "id": 581 }, + { "name": "minecraft:flower_pot", "oldId": 514, "id": 514 }, + { "name": "minecraft:flowering_azalea", "oldId": -338, "id": -338 }, + { "name": "minecraft:flowing_lava", "oldId": 10, "id": 10 }, + { "name": "minecraft:flowing_water", "oldId": 8, "id": 8 }, + { "name": "minecraft:fox_spawn_egg", "oldId": 490, "id": 490 }, + { "name": "minecraft:frame", "oldId": 513, "id": 513 }, + { "name": "minecraft:frosted_ice", "oldId": 207, "id": 207 }, + { "name": "minecraft:furnace", "oldId": 61, "id": 61 }, + { "name": "minecraft:ghast_spawn_egg", "oldId": 454, "id": 454 }, + { "name": "minecraft:ghast_tear", "oldId": 424, "id": 424 }, + { "name": "minecraft:gilded_blackstone", "oldId": -281, "id": -281 }, + { "name": "minecraft:glass", "oldId": 20, "id": 20 }, + { "name": "minecraft:glass_bottle", "oldId": 427, "id": 427 }, + { "name": "minecraft:glass_pane", "oldId": 102, "id": 102 }, + { "name": "minecraft:glistering_melon_slice", "oldId": 434, "id": 434 }, + { "name": "minecraft:glow_berries", "oldId": 630, "id": 630 }, + { "name": "minecraft:glow_frame", "oldId": 621, "id": 621 }, + { "name": "minecraft:glow_ink_sac", "oldId": 503, "id": 503 }, + { "name": "minecraft:glow_lichen", "oldId": -411, "id": -411 }, + { "name": "minecraft:glow_squid_spawn_egg", "oldId": 502, "id": 502 }, + { "name": "minecraft:glow_stick", "oldId": 166, "id": 166 }, + { "name": "minecraft:glowingobsidian", "oldId": 246, "id": 246 }, + { "name": "minecraft:glowstone", "oldId": 89, "id": 89 }, + { "name": "minecraft:glowstone_dust", "oldId": 394, "id": 394 }, + { "name": "minecraft:goat_horn", "oldId": 622, "id": 622 }, + { "name": "minecraft:goat_spawn_egg", "oldId": 501, "id": 501 }, + { "name": "minecraft:gold_block", "oldId": 41, "id": 41 }, + { "name": "minecraft:gold_ingot", "oldId": 306, "id": 306 }, + { "name": "minecraft:gold_nugget", "oldId": 425, "id": 425 }, + { "name": "minecraft:gold_ore", "oldId": 14, "id": 14 }, + { "name": "minecraft:golden_apple", "oldId": 258, "id": 258 }, + { "name": "minecraft:golden_axe", "oldId": 325, "id": 325 }, + { "name": "minecraft:golden_boots", "oldId": 354, "id": 354 }, + { "name": "minecraft:golden_carrot", "oldId": 283, "id": 283 }, + { "name": "minecraft:golden_chestplate", "oldId": 352, "id": 352 }, + { "name": "minecraft:golden_helmet", "oldId": 351, "id": 351 }, + { "name": "minecraft:golden_hoe", "oldId": 333, "id": 333 }, + { "name": "minecraft:golden_horse_armor", "oldId": 532, "id": 532 }, + { "name": "minecraft:golden_leggings", "oldId": 353, "id": 353 }, + { "name": "minecraft:golden_pickaxe", "oldId": 324, "id": 324 }, + { "name": "minecraft:golden_rail", "oldId": 27, "id": 27 }, + { "name": "minecraft:golden_shovel", "oldId": 323, "id": 323 }, + { "name": "minecraft:golden_sword", "oldId": 322, "id": 322 }, + { "name": "minecraft:granite_stairs", "oldId": -169, "id": -169 }, + { "name": "minecraft:grass", "oldId": 2, "id": 2 }, + { "name": "minecraft:grass_path", "oldId": 198, "id": 198 }, + { "name": "minecraft:gravel", "oldId": 13, "id": 13 }, + { "name": "minecraft:gray_candle", "oldId": -420, "id": -420 }, + { "name": "minecraft:gray_candle_cake", "oldId": -437, "id": -437 }, + { "name": "minecraft:gray_dye", "oldId": 403, "id": 403 }, + { "name": "minecraft:gray_glazed_terracotta", "oldId": 227, "id": 227 }, + { "name": "minecraft:green_candle", "oldId": -426, "id": -426 }, + { "name": "minecraft:green_candle_cake", "oldId": -443, "id": -443 }, + { "name": "minecraft:green_dye", "oldId": 397, "id": 397 }, + { "name": "minecraft:green_glazed_terracotta", "oldId": 233, "id": 233 }, + { "name": "minecraft:grindstone", "oldId": -195, "id": -195 }, + { "name": "minecraft:guardian_spawn_egg", "oldId": 461, "id": 461 }, + { "name": "minecraft:gunpowder", "oldId": 328, "id": 328 }, + { "name": "minecraft:hanging_roots", "oldId": -319, "id": -319 }, + { "name": "minecraft:hard_glass", "oldId": 253, "id": 253 }, + { "name": "minecraft:hard_glass_pane", "oldId": 190, "id": 190 }, + { "name": "minecraft:hard_stained_glass", "oldId": 254, "id": 254 }, + { "name": "minecraft:hard_stained_glass_pane", "oldId": 191, "id": 191 }, + { "name": "minecraft:hardened_clay", "oldId": 172, "id": 172 }, + { "name": "minecraft:hay_block", "oldId": 170, "id": 170 }, + { "name": "minecraft:heart_of_the_sea", "oldId": 571, "id": 571 }, { - "name": "minecraft:nether_gold_ore", - "id": -288, - "oldId": -288 - }, + "name": "minecraft:heavy_weighted_pressure_plate", + "oldId": 148, + "id": 148 + }, + { "name": "minecraft:hoglin_spawn_egg", "oldId": 496, "id": 496 }, + { "name": "minecraft:honey_block", "oldId": -220, "id": -220 }, + { "name": "minecraft:honey_bottle", "oldId": 591, "id": 591 }, + { "name": "minecraft:honeycomb", "oldId": 590, "id": 590 }, + { "name": "minecraft:honeycomb_block", "oldId": -221, "id": -221 }, + { "name": "minecraft:hopper", "oldId": 527, "id": 527 }, + { "name": "minecraft:hopper_minecart", "oldId": 526, "id": 526 }, + { "name": "minecraft:horse_spawn_egg", "oldId": 458, "id": 458 }, + { "name": "minecraft:husk_spawn_egg", "oldId": 463, "id": 463 }, + { "name": "minecraft:ice", "oldId": 79, "id": 79 }, + { "name": "minecraft:ice_bomb", "oldId": 594, "id": 594 }, + { "name": "minecraft:infested_deepslate", "oldId": -454, "id": -454 }, + { "name": "minecraft:info_update", "oldId": 248, "id": 248 }, + { "name": "minecraft:info_update2", "oldId": 249, "id": 249 }, + { "name": "minecraft:ink_sac", "oldId": 413, "id": 413 }, + { "name": "minecraft:invisiblebedrock", "oldId": 95, "id": 95 }, + { "name": "minecraft:iron_axe", "oldId": 298, "id": 298 }, + { "name": "minecraft:iron_bars", "oldId": 101, "id": 101 }, + { "name": "minecraft:iron_block", "oldId": 42, "id": 42 }, + { "name": "minecraft:iron_boots", "oldId": 346, "id": 346 }, + { "name": "minecraft:iron_chestplate", "oldId": 344, "id": 344 }, + { "name": "minecraft:iron_door", "oldId": 372, "id": 372 }, + { "name": "minecraft:iron_helmet", "oldId": 343, "id": 343 }, + { "name": "minecraft:iron_hoe", "oldId": 331, "id": 331 }, + { "name": "minecraft:iron_horse_armor", "oldId": 531, "id": 531 }, + { "name": "minecraft:iron_ingot", "oldId": 305, "id": 305 }, + { "name": "minecraft:iron_leggings", "oldId": 345, "id": 345 }, + { "name": "minecraft:iron_nugget", "oldId": 569, "id": 569 }, + { "name": "minecraft:iron_ore", "oldId": 15, "id": 15 }, + { "name": "minecraft:iron_pickaxe", "oldId": 297, "id": 297 }, + { "name": "minecraft:iron_shovel", "oldId": 296, "id": 296 }, + { "name": "minecraft:iron_sword", "oldId": 307, "id": 307 }, + { "name": "minecraft:iron_trapdoor", "oldId": 167, "id": 167 }, + { "name": "minecraft:item.acacia_door", "oldId": 196, "id": 196 }, + { "name": "minecraft:item.bed", "oldId": 26, "id": 26 }, + { "name": "minecraft:item.beetroot", "oldId": 244, "id": 244 }, + { "name": "minecraft:item.birch_door", "oldId": 194, "id": 194 }, + { "name": "minecraft:item.cake", "oldId": 92, "id": 92 }, + { "name": "minecraft:item.camera", "oldId": 242, "id": 242 }, + { "name": "minecraft:item.campfire", "oldId": -209, "id": -209 }, + { "name": "minecraft:item.cauldron", "oldId": 118, "id": 118 }, + { "name": "minecraft:item.chain", "oldId": -286, "id": -286 }, + { "name": "minecraft:item.crimson_door", "oldId": -244, "id": -244 }, + { "name": "minecraft:item.dark_oak_door", "oldId": 197, "id": 197 }, + { "name": "minecraft:item.flower_pot", "oldId": 140, "id": 140 }, + { "name": "minecraft:item.frame", "oldId": 199, "id": 199 }, + { "name": "minecraft:item.glow_frame", "oldId": -339, "id": -339 }, + { "name": "minecraft:item.hopper", "oldId": 154, "id": 154 }, + { "name": "minecraft:item.iron_door", "oldId": 71, "id": 71 }, + { "name": "minecraft:item.jungle_door", "oldId": 195, "id": 195 }, + { "name": "minecraft:item.kelp", "oldId": -138, "id": -138 }, + { "name": "minecraft:item.nether_sprouts", "oldId": -238, "id": -238 }, + { "name": "minecraft:item.nether_wart", "oldId": 115, "id": 115 }, + { "name": "minecraft:item.reeds", "oldId": 83, "id": 83 }, + { "name": "minecraft:item.skull", "oldId": 144, "id": 144 }, + { "name": "minecraft:item.soul_campfire", "oldId": -290, "id": -290 }, + { "name": "minecraft:item.spruce_door", "oldId": 193, "id": 193 }, + { "name": "minecraft:item.warped_door", "oldId": -245, "id": -245 }, + { "name": "minecraft:item.wheat", "oldId": 59, "id": 59 }, + { "name": "minecraft:item.wooden_door", "oldId": 64, "id": 64 }, + { "name": "minecraft:jigsaw", "oldId": -211, "id": -211 }, + { "name": "minecraft:jukebox", "oldId": 84, "id": 84 }, + { "name": "minecraft:jungle_boat", "oldId": 377, "id": 377 }, + { "name": "minecraft:jungle_button", "oldId": -143, "id": -143 }, + { "name": "minecraft:jungle_door", "oldId": 555, "id": 555 }, + { "name": "minecraft:jungle_fence_gate", "oldId": 185, "id": 185 }, + { "name": "minecraft:jungle_pressure_plate", "oldId": -153, "id": -153 }, + { "name": "minecraft:jungle_sign", "oldId": 578, "id": 578 }, + { "name": "minecraft:jungle_stairs", "oldId": 136, "id": 136 }, + { "name": "minecraft:jungle_standing_sign", "oldId": -188, "id": -188 }, + { "name": "minecraft:jungle_trapdoor", "oldId": -148, "id": -148 }, + { "name": "minecraft:jungle_wall_sign", "oldId": -189, "id": -189 }, + { "name": "minecraft:kelp", "oldId": 382, "id": 382 }, + { "name": "minecraft:ladder", "oldId": 65, "id": 65 }, + { "name": "minecraft:lantern", "oldId": -208, "id": -208 }, + { "name": "minecraft:lapis_block", "oldId": 22, "id": 22 }, + { "name": "minecraft:lapis_lazuli", "oldId": 414, "id": 414 }, + { "name": "minecraft:lapis_ore", "oldId": 21, "id": 21 }, + { "name": "minecraft:large_amethyst_bud", "oldId": -330, "id": -330 }, + { "name": "minecraft:lava", "oldId": 11, "id": 11 }, + { "name": "minecraft:lava_bucket", "oldId": 363, "id": 363 }, + { "name": "minecraft:lava_cauldron", "oldId": -210, "id": -210 }, + { "name": "minecraft:lead", "oldId": 547, "id": 547 }, + { "name": "minecraft:leather", "oldId": 381, "id": 381 }, + { "name": "minecraft:leather_boots", "oldId": 338, "id": 338 }, + { "name": "minecraft:leather_chestplate", "oldId": 336, "id": 336 }, + { "name": "minecraft:leather_helmet", "oldId": 335, "id": 335 }, + { "name": "minecraft:leather_horse_armor", "oldId": 530, "id": 530 }, + { "name": "minecraft:leather_leggings", "oldId": 337, "id": 337 }, + { "name": "minecraft:leaves", "oldId": 18, "id": 18 }, + { "name": "minecraft:leaves2", "oldId": 161, "id": 161 }, + { "name": "minecraft:lectern", "oldId": -194, "id": -194 }, + { "name": "minecraft:lever", "oldId": 69, "id": 69 }, + { "name": "minecraft:light_block", "oldId": -215, "id": -215 }, + { "name": "minecraft:light_blue_candle", "oldId": -416, "id": -416 }, + { "name": "minecraft:light_blue_candle_cake", "oldId": -433, "id": -433 }, + { "name": "minecraft:light_blue_dye", "oldId": 407, "id": 407 }, { - "name": "minecraft:twisting_vines", - "id": -287, - "oldId": -287 + "name": "minecraft:light_blue_glazed_terracotta", + "oldId": 223, + "id": 223 }, + { "name": "minecraft:light_gray_candle", "oldId": -421, "id": -421 }, + { "name": "minecraft:light_gray_candle_cake", "oldId": -438, "id": -438 }, + { "name": "minecraft:light_gray_dye", "oldId": 402, "id": 402 }, { - "name": "minecraft:item.chain", - "id": -286, - "oldId": -286 - }, + "name": "minecraft:light_weighted_pressure_plate", + "oldId": 147, + "id": 147 + }, + { "name": "minecraft:lightning_rod", "oldId": -312, "id": -312 }, + { "name": "minecraft:lime_candle", "oldId": -418, "id": -418 }, + { "name": "minecraft:lime_candle_cake", "oldId": -435, "id": -435 }, + { "name": "minecraft:lime_dye", "oldId": 405, "id": 405 }, + { "name": "minecraft:lime_glazed_terracotta", "oldId": 225, "id": 225 }, + { "name": "minecraft:lingering_potion", "oldId": 562, "id": 562 }, + { "name": "minecraft:lit_blast_furnace", "oldId": -214, "id": -214 }, + { + "name": "minecraft:lit_deepslate_redstone_ore", + "oldId": -404, + "id": -404 + }, + { "name": "minecraft:lit_furnace", "oldId": 62, "id": 62 }, + { "name": "minecraft:lit_pumpkin", "oldId": 91, "id": 91 }, + { "name": "minecraft:lit_redstone_lamp", "oldId": 124, "id": 124 }, + { "name": "minecraft:lit_redstone_ore", "oldId": 74, "id": 74 }, + { "name": "minecraft:lit_smoker", "oldId": -199, "id": -199 }, + { "name": "minecraft:llama_spawn_egg", "oldId": 473, "id": 473 }, + { "name": "minecraft:lodestone", "oldId": -222, "id": -222 }, + { "name": "minecraft:lodestone_compass", "oldId": 600, "id": 600 }, + { "name": "minecraft:log", "oldId": 17, "id": 17 }, + { "name": "minecraft:log2", "oldId": 162, "id": 162 }, + { "name": "minecraft:loom", "oldId": -204, "id": -204 }, + { "name": "minecraft:magenta_candle", "oldId": -415, "id": -415 }, + { "name": "minecraft:magenta_candle_cake", "oldId": -432, "id": -432 }, + { "name": "minecraft:magenta_dye", "oldId": 408, "id": 408 }, + { "name": "minecraft:magenta_glazed_terracotta", "oldId": 222, "id": 222 }, + { "name": "minecraft:magma", "oldId": 213, "id": 213 }, + { "name": "minecraft:magma_cream", "oldId": 430, "id": 430 }, + { "name": "minecraft:magma_cube_spawn_egg", "oldId": 455, "id": 455 }, + { "name": "minecraft:medicine", "oldId": 598, "id": 598 }, + { "name": "minecraft:medium_amethyst_bud", "oldId": -331, "id": -331 }, + { "name": "minecraft:melon_block", "oldId": 103, "id": 103 }, + { "name": "minecraft:melon_seeds", "oldId": 293, "id": 293 }, + { "name": "minecraft:melon_slice", "oldId": 272, "id": 272 }, + { "name": "minecraft:melon_stem", "oldId": 105, "id": 105 }, + { "name": "minecraft:milk_bucket", "oldId": 361, "id": 361 }, + { "name": "minecraft:minecart", "oldId": 370, "id": 370 }, + { "name": "minecraft:mob_spawner", "oldId": 52, "id": 52 }, + { "name": "minecraft:mojang_banner_pattern", "oldId": 584, "id": 584 }, + { "name": "minecraft:monster_egg", "oldId": 97, "id": 97 }, + { "name": "minecraft:mooshroom_spawn_egg", "oldId": 440, "id": 440 }, + { "name": "minecraft:moss_block", "oldId": -320, "id": -320 }, + { "name": "minecraft:moss_carpet", "oldId": -335, "id": -335 }, + { "name": "minecraft:mossy_cobblestone", "oldId": 48, "id": 48 }, + { "name": "minecraft:mossy_cobblestone_stairs", "oldId": -179, "id": -179 }, + { "name": "minecraft:mossy_stone_brick_stairs", "oldId": -175, "id": -175 }, + { "name": "minecraft:movingblock", "oldId": 250, "id": 250 }, + { "name": "minecraft:mule_spawn_egg", "oldId": 466, "id": 466 }, + { "name": "minecraft:mushroom_stew", "oldId": 260, "id": 260 }, + { "name": "minecraft:music_disc_11", "oldId": 544, "id": 544 }, + { "name": "minecraft:music_disc_13", "oldId": 534, "id": 534 }, + { "name": "minecraft:music_disc_blocks", "oldId": 536, "id": 536 }, + { "name": "minecraft:music_disc_cat", "oldId": 535, "id": 535 }, + { "name": "minecraft:music_disc_chirp", "oldId": 537, "id": 537 }, + { "name": "minecraft:music_disc_far", "oldId": 538, "id": 538 }, + { "name": "minecraft:music_disc_mall", "oldId": 539, "id": 539 }, + { "name": "minecraft:music_disc_mellohi", "oldId": 540, "id": 540 }, + { "name": "minecraft:music_disc_pigstep", "oldId": 618, "id": 618 }, + { "name": "minecraft:music_disc_stal", "oldId": 541, "id": 541 }, + { "name": "minecraft:music_disc_strad", "oldId": 542, "id": 542 }, + { "name": "minecraft:music_disc_wait", "oldId": 545, "id": 545 }, + { "name": "minecraft:music_disc_ward", "oldId": 543, "id": 543 }, + { "name": "minecraft:mutton", "oldId": 550, "id": 550 }, + { "name": "minecraft:mycelium", "oldId": 110, "id": 110 }, + { "name": "minecraft:mysterious_frame", "oldId": -466, "id": -466 }, + { "name": "minecraft:mysterious_frame_slot", "oldId": -467, "id": -467 }, + { "name": "minecraft:name_tag", "oldId": 548, "id": 548 }, + { "name": "minecraft:nautilus_shell", "oldId": 570, "id": 570 }, + { "name": "minecraft:nether_brick", "oldId": 112, "id": 112 }, + { "name": "minecraft:nether_brick_fence", "oldId": 113, "id": 113 }, + { "name": "minecraft:nether_brick_stairs", "oldId": 114, "id": 114 }, + { "name": "minecraft:nether_gold_ore", "oldId": -288, "id": -288 }, + { "name": "minecraft:nether_sprouts", "oldId": 619, "id": 619 }, + { "name": "minecraft:nether_star", "oldId": 518, "id": 518 }, + { "name": "minecraft:nether_wart", "oldId": 294, "id": 294 }, + { "name": "minecraft:nether_wart_block", "oldId": 214, "id": 214 }, + { "name": "minecraft:netherbrick", "oldId": 523, "id": 523 }, + { "name": "minecraft:netherite_axe", "oldId": 605, "id": 605 }, + { "name": "minecraft:netherite_block", "oldId": -270, "id": -270 }, + { "name": "minecraft:netherite_boots", "oldId": 610, "id": 610 }, + { "name": "minecraft:netherite_chestplate", "oldId": 608, "id": 608 }, + { "name": "minecraft:netherite_helmet", "oldId": 607, "id": 607 }, + { "name": "minecraft:netherite_hoe", "oldId": 606, "id": 606 }, + { "name": "minecraft:netherite_ingot", "oldId": 601, "id": 601 }, + { "name": "minecraft:netherite_leggings", "oldId": 609, "id": 609 }, + { "name": "minecraft:netherite_pickaxe", "oldId": 604, "id": 604 }, + { "name": "minecraft:netherite_scrap", "oldId": 611, "id": 611 }, + { "name": "minecraft:netherite_shovel", "oldId": 603, "id": 603 }, + { "name": "minecraft:netherite_sword", "oldId": 602, "id": 602 }, + { "name": "minecraft:netherrack", "oldId": 87, "id": 87 }, + { "name": "minecraft:netherreactor", "oldId": 247, "id": 247 }, + { "name": "minecraft:normal_stone_stairs", "oldId": -180, "id": -180 }, + { "name": "minecraft:noteblock", "oldId": 25, "id": 25 }, + { "name": "minecraft:npc_spawn_egg", "oldId": 470, "id": 470 }, + { "name": "minecraft:oak_boat", "oldId": 375, "id": 375 }, + { "name": "minecraft:oak_sign", "oldId": 358, "id": 358 }, + { "name": "minecraft:oak_stairs", "oldId": 53, "id": 53 }, + { "name": "minecraft:observer", "oldId": 251, "id": 251 }, + { "name": "minecraft:obsidian", "oldId": 49, "id": 49 }, + { "name": "minecraft:ocelot_spawn_egg", "oldId": 451, "id": 451 }, + { "name": "minecraft:orange_candle", "oldId": -414, "id": -414 }, + { "name": "minecraft:orange_candle_cake", "oldId": -431, "id": -431 }, + { "name": "minecraft:orange_dye", "oldId": 409, "id": 409 }, + { "name": "minecraft:orange_glazed_terracotta", "oldId": 221, "id": 221 }, + { "name": "minecraft:oxidized_copper", "oldId": -343, "id": -343 }, + { "name": "minecraft:oxidized_cut_copper", "oldId": -350, "id": -350 }, + { "name": "minecraft:oxidized_cut_copper_slab", "oldId": -364, "id": -364 }, + { + "name": "minecraft:oxidized_cut_copper_stairs", + "oldId": -357, + "id": -357 + }, + { + "name": "minecraft:oxidized_double_cut_copper_slab", + "oldId": -371, + "id": -371 + }, + { "name": "minecraft:packed_ice", "oldId": 174, "id": 174 }, + { "name": "minecraft:painting", "oldId": 357, "id": 357 }, + { "name": "minecraft:panda_spawn_egg", "oldId": 489, "id": 489 }, + { "name": "minecraft:paper", "oldId": 386, "id": 386 }, + { "name": "minecraft:parrot_spawn_egg", "oldId": 478, "id": 478 }, + { "name": "minecraft:phantom_membrane", "oldId": 574, "id": 574 }, + { "name": "minecraft:phantom_spawn_egg", "oldId": 486, "id": 486 }, + { "name": "minecraft:pig_spawn_egg", "oldId": 437, "id": 437 }, + { "name": "minecraft:piglin_banner_pattern", "oldId": 587, "id": 587 }, + { "name": "minecraft:piglin_brute_spawn_egg", "oldId": 499, "id": 499 }, + { "name": "minecraft:piglin_spawn_egg", "oldId": 497, "id": 497 }, + { "name": "minecraft:pillager_spawn_egg", "oldId": 491, "id": 491 }, + { "name": "minecraft:pink_candle", "oldId": -419, "id": -419 }, + { "name": "minecraft:pink_candle_cake", "oldId": -436, "id": -436 }, + { "name": "minecraft:pink_dye", "oldId": 404, "id": 404 }, + { "name": "minecraft:pink_glazed_terracotta", "oldId": 226, "id": 226 }, + { "name": "minecraft:piston", "oldId": 33, "id": 33 }, + { "name": "minecraft:pistonarmcollision", "oldId": 34, "id": 34 }, + { "name": "minecraft:planks", "oldId": 5, "id": 5 }, + { "name": "minecraft:podzol", "oldId": 243, "id": 243 }, + { "name": "minecraft:pointed_dripstone", "oldId": -308, "id": -308 }, + { "name": "minecraft:poisonous_potato", "oldId": 282, "id": 282 }, + { "name": "minecraft:polar_bear_spawn_egg", "oldId": 472, "id": 472 }, + { "name": "minecraft:polished_andesite_stairs", "oldId": -174, "id": -174 }, + { "name": "minecraft:polished_basalt", "oldId": -235, "id": -235 }, + { "name": "minecraft:polished_blackstone", "oldId": -291, "id": -291 }, { "name": "minecraft:polished_blackstone_brick_double_slab", - "id": -285, - "oldId": -285 + "oldId": -285, + "id": -285 }, { "name": "minecraft:polished_blackstone_brick_slab", - "id": -284, - "oldId": -284 - }, - { - "name": "minecraft:blackstone_double_slab", - "id": -283, - "oldId": -283 - }, - { - "name": "minecraft:blackstone_slab", - "id": -282, - "oldId": -282 - }, - { - "name": "minecraft:gilded_blackstone", - "id": -281, - "oldId": -281 - }, - { - "name": "minecraft:cracked_polished_blackstone_bricks", - "id": -280, - "oldId": -280 + "oldId": -284, + "id": -284 }, { - "name": "minecraft:chiseled_polished_blackstone", - "id": -279, - "oldId": -279 + "name": "minecraft:polished_blackstone_brick_stairs", + "oldId": -275, + "id": -275 }, { "name": "minecraft:polished_blackstone_brick_wall", - "id": -278, - "oldId": -278 - }, - { - "name": "minecraft:blackstone_wall", - "id": -277, - "oldId": -277 - }, - { - "name": "minecraft:blackstone_stairs", - "id": -276, - "oldId": -276 - }, - { - "name": "minecraft:polished_blackstone_brick_stairs", - "id": -275, - "oldId": -275 + "oldId": -278, + "id": -278 }, { "name": "minecraft:polished_blackstone_bricks", - "id": -274, - "oldId": -274 - }, - { - "name": "minecraft:blackstone", - "id": -273, - "oldId": -273 - }, - { - "name": "minecraft:respawn_anchor", - "id": -272, - "oldId": -272 - }, - { - "name": "minecraft:ancient_debris", - "id": -271, - "oldId": -271 - }, - { - "name": "minecraft:netherite_block", - "id": -270, - "oldId": -270 - }, - { - "name": "minecraft:soul_lantern", - "id": -269, - "oldId": -269 - }, - { - "name": "minecraft:soul_torch", - "id": -268, - "oldId": -268 - }, - { - "name": "minecraft:warped_double_slab", - "id": -267, - "oldId": -267 - }, - { - "name": "minecraft:crimson_double_slab", - "id": -266, - "oldId": -266 - }, - { - "name": "minecraft:warped_slab", - "id": -265, - "oldId": -265 - }, - { - "name": "minecraft:crimson_slab", - "id": -264, - "oldId": -264 - }, - { - "name": "minecraft:warped_pressure_plate", - "id": -263, - "oldId": -263 - }, - { - "name": "minecraft:crimson_pressure_plate", - "id": -262, - "oldId": -262 - }, - { - "name": "minecraft:warped_button", - "id": -261, - "oldId": -261 - }, - { - "name": "minecraft:crimson_button", - "id": -260, - "oldId": -260 - }, - { - "name": "minecraft:warped_fence_gate", - "id": -259, - "oldId": -259 - }, - { - "name": "minecraft:crimson_fence_gate", - "id": -258, - "oldId": -258 - }, - { - "name": "minecraft:warped_fence", - "id": -257, - "oldId": -257 - }, - { - "name": "minecraft:crimson_fence", - "id": -256, - "oldId": -256 - }, - { - "name": "minecraft:warped_stairs", - "id": -255, - "oldId": -255 - }, - { - "name": "minecraft:crimson_stairs", - "id": -254, - "oldId": -254 - }, - { - "name": "minecraft:warped_wall_sign", - "id": -253, - "oldId": -253 - }, - { - "name": "minecraft:crimson_wall_sign", - "id": -252, - "oldId": -252 - }, - { - "name": "minecraft:warped_standing_sign", - "id": -251, - "oldId": -251 - }, - { - "name": "minecraft:crimson_standing_sign", - "id": -250, - "oldId": -250 - }, - { - "name": "minecraft:warped_trapdoor", - "id": -247, - "oldId": -247 - }, - { - "name": "minecraft:crimson_trapdoor", - "id": -246, - "oldId": -246 - }, - { - "name": "minecraft:item.warped_door", - "id": -245, - "oldId": -245 - }, - { - "name": "minecraft:item.crimson_door", - "id": -244, - "oldId": -244 - }, - { - "name": "minecraft:warped_planks", - "id": -243, - "oldId": -243 - }, - { - "name": "minecraft:crimson_planks", - "id": -242, - "oldId": -242 - }, - { - "name": "minecraft:stripped_warped_stem", - "id": -241, - "oldId": -241 - }, - { - "name": "minecraft:stripped_crimson_stem", - "id": -240, - "oldId": -240 - }, - { - "name": "minecraft:target", - "id": -239, - "oldId": -239 - }, - { - "name": "minecraft:item.nether_sprouts", - "id": -238, - "oldId": -238 - }, - { - "name": "minecraft:soul_fire", - "id": -237, - "oldId": -237 - }, - { - "name": "minecraft:soul_soil", - "id": -236, - "oldId": -236 - }, - { - "name": "minecraft:polished_basalt", - "id": -235, - "oldId": -235 - }, - { - "name": "minecraft:basalt", - "id": -234, - "oldId": -234 - }, - { - "name": "minecraft:warped_nylium", - "id": -233, - "oldId": -233 - }, - { - "name": "minecraft:crimson_nylium", - "id": -232, - "oldId": -232 - }, - { - "name": "minecraft:weeping_vines", - "id": -231, - "oldId": -231 - }, - { - "name": "minecraft:shroomlight", - "id": -230, - "oldId": -230 - }, - { - "name": "minecraft:warped_fungus", - "id": -229, - "oldId": -229 - }, - { - "name": "minecraft:crimson_fungus", - "id": -228, - "oldId": -228 - }, - { - "name": "minecraft:warped_wart_block", - "id": -227, - "oldId": -227 - }, - { - "name": "minecraft:warped_stem", - "id": -226, - "oldId": -226 - }, - { - "name": "minecraft:crimson_stem", - "id": -225, - "oldId": -225 - }, - { - "name": "minecraft:warped_roots", - "id": -224, - "oldId": -224 - }, - { - "name": "minecraft:crimson_roots", - "id": -223, - "oldId": -223 - }, - { - "name": "minecraft:lodestone", - "id": -222, - "oldId": -222 - }, - { - "name": "minecraft:honeycomb_block", - "id": -221, - "oldId": -221 - }, - { - "name": "minecraft:honey_block", - "id": -220, - "oldId": -220 - }, - { - "name": "minecraft:beehive", - "id": -219, - "oldId": -219 - }, - { - "name": "minecraft:bee_nest", - "id": -218, - "oldId": -218 - }, - { - "name": "minecraft:stickypistonarmcollision", - "id": -217, - "oldId": -217 - }, - { - "name": "minecraft:wither_rose", - "id": -216, - "oldId": -216 - }, - { - "name": "minecraft:light_block", - "id": -215, - "oldId": -215 - }, - { - "name": "minecraft:lit_blast_furnace", - "id": -214, - "oldId": -214 - }, - { - "name": "minecraft:composter", - "id": -213, - "oldId": -213 - }, - { - "name": "minecraft:wood", - "id": -212, - "oldId": -212 - }, - { - "name": "minecraft:jigsaw", - "id": -211, - "oldId": -211 - }, - { - "name": "minecraft:lava_cauldron", - "id": -210, - "oldId": -210 - }, - { - "name": "minecraft:item.campfire", - "id": -209, - "oldId": -209 - }, - { - "name": "minecraft:lantern", - "id": -208, - "oldId": -208 - }, - { - "name": "minecraft:sweet_berry_bush", - "id": -207, - "oldId": -207 - }, - { - "name": "minecraft:bell", - "id": -206, - "oldId": -206 - }, - { - "name": "minecraft:loom", - "id": -204, - "oldId": -204 - }, - { - "name": "minecraft:barrel", - "id": -203, - "oldId": -203 - }, - { - "name": "minecraft:smithing_table", - "id": -202, - "oldId": -202 - }, - { - "name": "minecraft:fletching_table", - "id": -201, - "oldId": -201 - }, - { - "name": "minecraft:cartography_table", - "id": -200, - "oldId": -200 - }, - { - "name": "minecraft:lit_smoker", - "id": -199, - "oldId": -199 - }, - { - "name": "minecraft:smoker", - "id": -198, - "oldId": -198 - }, - { - "name": "minecraft:stonecutter_block", - "id": -197, - "oldId": -197 - }, - { - "name": "minecraft:blast_furnace", - "id": -196, - "oldId": -196 - }, - { - "name": "minecraft:grindstone", - "id": -195, - "oldId": -195 - }, - { - "name": "minecraft:lectern", - "id": -194, - "oldId": -194 - }, - { - "name": "minecraft:darkoak_wall_sign", - "id": -193, - "oldId": -193 - }, - { - "name": "minecraft:darkoak_standing_sign", - "id": -192, - "oldId": -192 - }, - { - "name": "minecraft:acacia_wall_sign", - "id": -191, - "oldId": -191 - }, - { - "name": "minecraft:acacia_standing_sign", - "id": -190, - "oldId": -190 - }, - { - "name": "minecraft:jungle_wall_sign", - "id": -189, - "oldId": -189 - }, - { - "name": "minecraft:jungle_standing_sign", - "id": -188, - "oldId": -188 - }, - { - "name": "minecraft:birch_wall_sign", - "id": -187, - "oldId": -187 - }, - { - "name": "minecraft:birch_standing_sign", - "id": -186, - "oldId": -186 - }, - { - "name": "minecraft:smooth_quartz_stairs", - "id": -185, - "oldId": -185 - }, - { - "name": "minecraft:red_nether_brick_stairs", - "id": -184, - "oldId": -184 - }, - { - "name": "minecraft:smooth_stone", - "id": -183, - "oldId": -183 - }, - { - "name": "minecraft:spruce_wall_sign", - "id": -182, - "oldId": -182 - }, - { - "name": "minecraft:spruce_standing_sign", - "id": -181, - "oldId": -181 + "oldId": -274, + "id": -274 }, { - "name": "minecraft:normal_stone_stairs", - "id": -180, - "oldId": -180 + "name": "minecraft:polished_blackstone_button", + "oldId": -296, + "id": -296 }, { - "name": "minecraft:mossy_cobblestone_stairs", - "id": -179, - "oldId": -179 + "name": "minecraft:polished_blackstone_double_slab", + "oldId": -294, + "id": -294 }, { - "name": "minecraft:end_brick_stairs", - "id": -178, - "oldId": -178 + "name": "minecraft:polished_blackstone_pressure_plate", + "oldId": -295, + "id": -295 }, + { "name": "minecraft:polished_blackstone_slab", "oldId": -293, "id": -293 }, { - "name": "minecraft:smooth_sandstone_stairs", - "id": -177, - "oldId": -177 - }, + "name": "minecraft:polished_blackstone_stairs", + "oldId": -292, + "id": -292 + }, + { "name": "minecraft:polished_blackstone_wall", "oldId": -297, "id": -297 }, + { "name": "minecraft:polished_deepslate", "oldId": -383, "id": -383 }, + { + "name": "minecraft:polished_deepslate_double_slab", + "oldId": -397, + "id": -397 + }, + { "name": "minecraft:polished_deepslate_slab", "oldId": -384, "id": -384 }, + { + "name": "minecraft:polished_deepslate_stairs", + "oldId": -385, + "id": -385 + }, + { "name": "minecraft:polished_deepslate_wall", "oldId": -386, "id": -386 }, + { "name": "minecraft:polished_diorite_stairs", "oldId": -173, "id": -173 }, + { "name": "minecraft:polished_granite_stairs", "oldId": -172, "id": -172 }, + { "name": "minecraft:popped_chorus_fruit", "oldId": 559, "id": 559 }, + { "name": "minecraft:porkchop", "oldId": 262, "id": 262 }, + { "name": "minecraft:portal", "oldId": 90, "id": 90 }, + { "name": "minecraft:potato", "oldId": 280, "id": 280 }, + { "name": "minecraft:potatoes", "oldId": 142, "id": 142 }, + { "name": "minecraft:potion", "oldId": 426, "id": 426 }, + { "name": "minecraft:powder_snow", "oldId": -306, "id": -306 }, + { "name": "minecraft:powder_snow_bucket", "oldId": 368, "id": 368 }, + { "name": "minecraft:powered_comparator", "oldId": 150, "id": 150 }, + { "name": "minecraft:powered_repeater", "oldId": 94, "id": 94 }, + { "name": "minecraft:prismarine", "oldId": 168, "id": 168 }, + { "name": "minecraft:prismarine_bricks_stairs", "oldId": -4, "id": -4 }, + { "name": "minecraft:prismarine_crystals", "oldId": 549, "id": 549 }, + { "name": "minecraft:prismarine_shard", "oldId": 565, "id": 565 }, + { "name": "minecraft:prismarine_stairs", "oldId": -2, "id": -2 }, + { "name": "minecraft:pufferfish", "oldId": 267, "id": 267 }, + { "name": "minecraft:pufferfish_bucket", "oldId": 367, "id": 367 }, + { "name": "minecraft:pufferfish_spawn_egg", "oldId": 481, "id": 481 }, + { "name": "minecraft:pumpkin", "oldId": 86, "id": 86 }, + { "name": "minecraft:pumpkin_pie", "oldId": 284, "id": 284 }, + { "name": "minecraft:pumpkin_seeds", "oldId": 292, "id": 292 }, + { "name": "minecraft:pumpkin_stem", "oldId": 104, "id": 104 }, + { "name": "minecraft:purple_candle", "oldId": -423, "id": -423 }, + { "name": "minecraft:purple_candle_cake", "oldId": -440, "id": -440 }, + { "name": "minecraft:purple_dye", "oldId": 400, "id": 400 }, + { "name": "minecraft:purple_glazed_terracotta", "oldId": 219, "id": 219 }, + { "name": "minecraft:purpur_block", "oldId": 201, "id": 201 }, + { "name": "minecraft:purpur_stairs", "oldId": 203, "id": 203 }, + { "name": "minecraft:quartz", "oldId": 524, "id": 524 }, + { "name": "minecraft:quartz_block", "oldId": 155, "id": 155 }, + { "name": "minecraft:quartz_bricks", "oldId": -304, "id": -304 }, + { "name": "minecraft:quartz_ore", "oldId": 153, "id": 153 }, + { "name": "minecraft:quartz_stairs", "oldId": 156, "id": 156 }, + { "name": "minecraft:rabbit", "oldId": 288, "id": 288 }, + { "name": "minecraft:rabbit_foot", "oldId": 528, "id": 528 }, + { "name": "minecraft:rabbit_hide", "oldId": 529, "id": 529 }, + { "name": "minecraft:rabbit_spawn_egg", "oldId": 459, "id": 459 }, + { "name": "minecraft:rabbit_stew", "oldId": 290, "id": 290 }, + { "name": "minecraft:rail", "oldId": 66, "id": 66 }, + { "name": "minecraft:rapid_fertilizer", "oldId": 596, "id": 596 }, + { "name": "minecraft:ravager_spawn_egg", "oldId": 493, "id": 493 }, + { "name": "minecraft:raw_copper", "oldId": 507, "id": 507 }, + { "name": "minecraft:raw_copper_block", "oldId": -452, "id": -452 }, + { "name": "minecraft:raw_gold", "oldId": 506, "id": 506 }, + { "name": "minecraft:raw_gold_block", "oldId": -453, "id": -453 }, + { "name": "minecraft:raw_iron", "oldId": 505, "id": 505 }, + { "name": "minecraft:raw_iron_block", "oldId": -451, "id": -451 }, + { "name": "minecraft:real_double_stone_slab", "oldId": 43, "id": 43 }, + { "name": "minecraft:real_double_stone_slab2", "oldId": 181, "id": 181 }, + { "name": "minecraft:real_double_stone_slab3", "oldId": -167, "id": -167 }, + { "name": "minecraft:real_double_stone_slab4", "oldId": -168, "id": -168 }, + { "name": "minecraft:red_candle", "oldId": -427, "id": -427 }, + { "name": "minecraft:red_candle_cake", "oldId": -444, "id": -444 }, + { "name": "minecraft:red_dye", "oldId": 396, "id": 396 }, + { "name": "minecraft:red_flower", "oldId": 38, "id": 38 }, + { "name": "minecraft:red_glazed_terracotta", "oldId": 234, "id": 234 }, + { "name": "minecraft:red_mushroom", "oldId": 40, "id": 40 }, + { "name": "minecraft:red_mushroom_block", "oldId": 100, "id": 100 }, + { "name": "minecraft:red_nether_brick", "oldId": 215, "id": 215 }, + { "name": "minecraft:red_nether_brick_stairs", "oldId": -184, "id": -184 }, + { "name": "minecraft:red_sandstone", "oldId": 179, "id": 179 }, + { "name": "minecraft:red_sandstone_stairs", "oldId": 180, "id": 180 }, + { "name": "minecraft:redstone", "oldId": 373, "id": 373 }, + { "name": "minecraft:redstone_block", "oldId": 152, "id": 152 }, + { "name": "minecraft:redstone_lamp", "oldId": 123, "id": 123 }, + { "name": "minecraft:redstone_ore", "oldId": 73, "id": 73 }, + { "name": "minecraft:redstone_torch", "oldId": 76, "id": 76 }, + { "name": "minecraft:redstone_wire", "oldId": 55, "id": 55 }, + { "name": "minecraft:repeater", "oldId": 419, "id": 419 }, + { "name": "minecraft:repeating_command_block", "oldId": 188, "id": 188 }, + { "name": "minecraft:reserved6", "oldId": 255, "id": 255 }, + { "name": "minecraft:respawn_anchor", "oldId": -272, "id": -272 }, + { "name": "minecraft:rotten_flesh", "oldId": 277, "id": 277 }, + { "name": "minecraft:saddle", "oldId": 371, "id": 371 }, + { "name": "minecraft:salmon", "oldId": 265, "id": 265 }, + { "name": "minecraft:salmon_bucket", "oldId": 365, "id": 365 }, + { "name": "minecraft:salmon_spawn_egg", "oldId": 482, "id": 482 }, + { "name": "minecraft:sand", "oldId": 12, "id": 12 }, + { "name": "minecraft:sandstone", "oldId": 24, "id": 24 }, + { "name": "minecraft:sandstone_stairs", "oldId": 128, "id": 128 }, + { "name": "minecraft:sapling", "oldId": 6, "id": 6 }, + { "name": "minecraft:scaffolding", "oldId": -165, "id": -165 }, + { "name": "minecraft:sculk", "oldId": -458, "id": -458 }, + { "name": "minecraft:sculk_catalyst", "oldId": -460, "id": -460 }, + { "name": "minecraft:sculk_sensor", "oldId": -307, "id": -307 }, + { "name": "minecraft:sculk_shrieker", "oldId": -461, "id": -461 }, + { "name": "minecraft:sculk_vein", "oldId": -459, "id": -459 }, + { "name": "minecraft:scute", "oldId": 572, "id": 572 }, + { "name": "minecraft:sea_pickle", "oldId": -156, "id": -156 }, + { "name": "minecraft:seagrass", "oldId": -130, "id": -130 }, + { "name": "minecraft:sealantern", "oldId": 169, "id": 169 }, + { "name": "minecraft:shears", "oldId": 421, "id": 421 }, + { "name": "minecraft:sheep_spawn_egg", "oldId": 438, "id": 438 }, + { "name": "minecraft:shield", "oldId": 355, "id": 355 }, + { "name": "minecraft:shroomlight", "oldId": -230, "id": -230 }, + { "name": "minecraft:shulker_box", "oldId": 218, "id": 218 }, + { "name": "minecraft:shulker_shell", "oldId": 566, "id": 566 }, + { "name": "minecraft:shulker_spawn_egg", "oldId": 469, "id": 469 }, + { "name": "minecraft:silver_glazed_terracotta", "oldId": 228, "id": 228 }, + { "name": "minecraft:silverfish_spawn_egg", "oldId": 443, "id": 443 }, + { "name": "minecraft:skeleton_horse_spawn_egg", "oldId": 467, "id": 467 }, + { "name": "minecraft:skeleton_spawn_egg", "oldId": 444, "id": 444 }, + { "name": "minecraft:skull", "oldId": 516, "id": 516 }, + { "name": "minecraft:skull_banner_pattern", "oldId": 583, "id": 583 }, + { "name": "minecraft:slime", "oldId": 165, "id": 165 }, + { "name": "minecraft:slime_ball", "oldId": 388, "id": 388 }, + { "name": "minecraft:slime_spawn_egg", "oldId": 445, "id": 445 }, + { "name": "minecraft:small_amethyst_bud", "oldId": -332, "id": -332 }, + { "name": "minecraft:small_dripleaf_block", "oldId": -336, "id": -336 }, + { "name": "minecraft:smithing_table", "oldId": -202, "id": -202 }, + { "name": "minecraft:smoker", "oldId": -198, "id": -198 }, + { "name": "minecraft:smooth_basalt", "oldId": -377, "id": -377 }, + { "name": "minecraft:smooth_quartz_stairs", "oldId": -185, "id": -185 }, { "name": "minecraft:smooth_red_sandstone_stairs", - "id": -176, - "oldId": -176 - }, - { - "name": "minecraft:mossy_stone_brick_stairs", - "id": -175, - "oldId": -175 - }, - { - "name": "minecraft:polished_andesite_stairs", - "id": -174, - "oldId": -174 - }, - { - "name": "minecraft:polished_diorite_stairs", - "id": -173, - "oldId": -173 - }, - { - "name": "minecraft:polished_granite_stairs", - "id": -172, - "oldId": -172 - }, - { - "name": "minecraft:andesite_stairs", - "id": -171, - "oldId": -171 - }, - { - "name": "minecraft:diorite_stairs", - "id": -170, - "oldId": -170 - }, - { - "name": "minecraft:granite_stairs", - "id": -169, - "oldId": -169 - }, - { - "name": "minecraft:real_double_stone_slab4", - "id": -168, - "oldId": -168 - }, - { - "name": "minecraft:real_double_stone_slab3", - "id": -167, - "oldId": -167 - }, - { - "name": "minecraft:double_stone_slab4", - "id": -166, - "oldId": -166 - }, - { - "name": "minecraft:scaffolding", - "id": -165, - "oldId": -165 - }, - { - "name": "minecraft:bamboo_sapling", - "id": -164, - "oldId": -164 - }, - { - "name": "minecraft:bamboo", - "id": -163, - "oldId": -163 - }, - { - "name": "minecraft:double_stone_slab3", - "id": -162, - "oldId": -162 - }, - { - "name": "minecraft:barrier", - "id": -161, - "oldId": -161 - }, - { - "name": "minecraft:bubble_column", - "id": -160, - "oldId": -160 - }, - { - "name": "minecraft:turtle_egg", - "id": -159, - "oldId": -159 - }, - { - "name": "minecraft:air", - "id": -158, - "oldId": -158 - }, - { - "name": "minecraft:conduit", - "id": -157, - "oldId": -157 - }, - { - "name": "minecraft:sea_pickle", - "id": -156, - "oldId": -156 - }, - { - "name": "minecraft:carved_pumpkin", - "id": -155, - "oldId": -155 - }, - { - "name": "minecraft:spruce_pressure_plate", - "id": -154, - "oldId": -154 - }, - { - "name": "minecraft:jungle_pressure_plate", - "id": -153, - "oldId": -153 - }, - { - "name": "minecraft:dark_oak_pressure_plate", - "id": -152, - "oldId": -152 - }, - { - "name": "minecraft:birch_pressure_plate", - "id": -151, - "oldId": -151 - }, - { - "name": "minecraft:acacia_pressure_plate", - "id": -150, - "oldId": -150 - }, - { - "name": "minecraft:spruce_trapdoor", - "id": -149, - "oldId": -149 - }, - { - "name": "minecraft:jungle_trapdoor", - "id": -148, - "oldId": -148 - }, - { - "name": "minecraft:dark_oak_trapdoor", - "id": -147, - "oldId": -147 - }, - { - "name": "minecraft:birch_trapdoor", - "id": -146, - "oldId": -146 - }, - { - "name": "minecraft:acacia_trapdoor", - "id": -145, - "oldId": -145 - }, - { - "name": "minecraft:spruce_button", - "id": -144, - "oldId": -144 - }, - { - "name": "minecraft:jungle_button", - "id": -143, - "oldId": -143 - }, - { - "name": "minecraft:dark_oak_button", - "id": -142, - "oldId": -142 - }, - { - "name": "minecraft:birch_button", - "id": -141, - "oldId": -141 - }, - { - "name": "minecraft:acacia_button", - "id": -140, - "oldId": -140 - }, - { - "name": "minecraft:dried_kelp_block", - "id": -139, - "oldId": -139 - }, - { - "name": "minecraft:item.kelp", - "id": -138, - "oldId": -138 - }, - { - "name": "minecraft:coral_fan_hang3", - "id": -137, - "oldId": -137 - }, - { - "name": "minecraft:coral_fan_hang2", - "id": -136, - "oldId": -136 - }, - { - "name": "minecraft:coral_fan_hang", - "id": -135, - "oldId": -135 - }, - { - "name": "minecraft:coral_fan_dead", - "id": -134, - "oldId": -134 - }, - { - "name": "minecraft:coral_fan", - "id": -133, - "oldId": -133 - }, - { - "name": "minecraft:coral_block", - "id": -132, - "oldId": -132 - }, - { - "name": "minecraft:coral", - "id": -131, - "oldId": -131 - }, - { - "name": "minecraft:seagrass", - "id": -130, - "oldId": -130 - }, - { - "name": "minecraft:element_118", - "id": -129, - "oldId": -129 - }, - { - "name": "minecraft:element_117", - "id": -128, - "oldId": -128 - }, - { - "name": "minecraft:element_116", - "id": -127, - "oldId": -127 - }, - { - "name": "minecraft:element_115", - "id": -126, - "oldId": -126 - }, - { - "name": "minecraft:element_114", - "id": -125, - "oldId": -125 - }, - { - "name": "minecraft:element_113", - "id": -124, - "oldId": -124 - }, - { - "name": "minecraft:element_112", - "id": -123, - "oldId": -123 - }, - { - "name": "minecraft:element_111", - "id": -122, - "oldId": -122 - }, - { - "name": "minecraft:element_110", - "id": -121, - "oldId": -121 - }, - { - "name": "minecraft:element_109", - "id": -120, - "oldId": -120 - }, - { - "name": "minecraft:element_108", - "id": -119, - "oldId": -119 - }, - { - "name": "minecraft:element_107", - "id": -118, - "oldId": -118 - }, - { - "name": "minecraft:element_106", - "id": -117, - "oldId": -117 - }, - { - "name": "minecraft:element_105", - "id": -116, - "oldId": -116 - }, - { - "name": "minecraft:element_104", - "id": -115, - "oldId": -115 - }, - { - "name": "minecraft:element_103", - "id": -114, - "oldId": -114 - }, - { - "name": "minecraft:element_102", - "id": -113, - "oldId": -113 - }, - { - "name": "minecraft:element_101", - "id": -112, - "oldId": -112 - }, - { - "name": "minecraft:element_100", - "id": -111, - "oldId": -111 - }, - { - "name": "minecraft:element_99", - "id": -110, - "oldId": -110 - }, - { - "name": "minecraft:element_98", - "id": -109, - "oldId": -109 - }, - { - "name": "minecraft:element_97", - "id": -108, - "oldId": -108 - }, - { - "name": "minecraft:element_96", - "id": -107, - "oldId": -107 - }, - { - "name": "minecraft:element_95", - "id": -106, - "oldId": -106 - }, - { - "name": "minecraft:element_94", - "id": -105, - "oldId": -105 - }, - { - "name": "minecraft:element_93", - "id": -104, - "oldId": -104 - }, - { - "name": "minecraft:element_92", - "id": -103, - "oldId": -103 - }, - { - "name": "minecraft:element_91", - "id": -102, - "oldId": -102 - }, - { - "name": "minecraft:element_90", - "id": -101, - "oldId": -101 - }, - { - "name": "minecraft:element_89", - "id": -100, - "oldId": -100 - }, - { - "name": "minecraft:element_88", - "id": -99, - "oldId": -99 - }, - { - "name": "minecraft:element_87", - "id": -98, - "oldId": -98 - }, - { - "name": "minecraft:element_86", - "id": -97, - "oldId": -97 - }, - { - "name": "minecraft:element_85", - "id": -96, - "oldId": -96 - }, - { - "name": "minecraft:element_84", - "id": -95, - "oldId": -95 - }, - { - "name": "minecraft:element_83", - "id": -94, - "oldId": -94 - }, - { - "name": "minecraft:element_82", - "id": -93, - "oldId": -93 - }, - { - "name": "minecraft:element_81", - "id": -92, - "oldId": -92 - }, - { - "name": "minecraft:element_80", - "id": -91, - "oldId": -91 - }, - { - "name": "minecraft:element_79", - "id": -90, - "oldId": -90 - }, - { - "name": "minecraft:element_78", - "id": -89, - "oldId": -89 - }, - { - "name": "minecraft:element_77", - "id": -88, - "oldId": -88 - }, - { - "name": "minecraft:element_76", - "id": -87, - "oldId": -87 - }, - { - "name": "minecraft:element_75", - "id": -86, - "oldId": -86 - }, - { - "name": "minecraft:element_74", - "id": -85, - "oldId": -85 - }, - { - "name": "minecraft:element_73", - "id": -84, - "oldId": -84 - }, - { - "name": "minecraft:element_72", - "id": -83, - "oldId": -83 - }, - { - "name": "minecraft:element_71", - "id": -82, - "oldId": -82 - }, - { - "name": "minecraft:element_70", - "id": -81, - "oldId": -81 - }, - { - "name": "minecraft:element_69", - "id": -80, - "oldId": -80 - }, - { - "name": "minecraft:element_68", - "id": -79, - "oldId": -79 - }, - { - "name": "minecraft:element_67", - "id": -78, - "oldId": -78 - }, - { - "name": "minecraft:element_66", - "id": -77, - "oldId": -77 - }, - { - "name": "minecraft:element_65", - "id": -76, - "oldId": -76 - }, - { - "name": "minecraft:element_64", - "id": -75, - "oldId": -75 - }, - { - "name": "minecraft:element_63", - "id": -74, - "oldId": -74 - }, - { - "name": "minecraft:element_62", - "id": -73, - "oldId": -73 - }, - { - "name": "minecraft:element_61", - "id": -72, - "oldId": -72 - }, - { - "name": "minecraft:element_60", - "id": -71, - "oldId": -71 - }, - { - "name": "minecraft:element_59", - "id": -70, - "oldId": -70 - }, - { - "name": "minecraft:element_58", - "id": -69, - "oldId": -69 - }, - { - "name": "minecraft:element_57", - "id": -68, - "oldId": -68 - }, - { - "name": "minecraft:element_56", - "id": -67, - "oldId": -67 - }, - { - "name": "minecraft:element_55", - "id": -66, - "oldId": -66 - }, - { - "name": "minecraft:element_54", - "id": -65, - "oldId": -65 - }, - { - "name": "minecraft:element_53", - "id": -64, - "oldId": -64 - }, - { - "name": "minecraft:element_52", - "id": -63, - "oldId": -63 - }, - { - "name": "minecraft:element_51", - "id": -62, - "oldId": -62 - }, - { - "name": "minecraft:element_50", - "id": -61, - "oldId": -61 - }, - { - "name": "minecraft:element_49", - "id": -60, - "oldId": -60 - }, - { - "name": "minecraft:element_48", - "id": -59, - "oldId": -59 - }, - { - "name": "minecraft:element_47", - "id": -58, - "oldId": -58 - }, - { - "name": "minecraft:element_46", - "id": -57, - "oldId": -57 - }, - { - "name": "minecraft:element_45", - "id": -56, - "oldId": -56 - }, - { - "name": "minecraft:element_44", - "id": -55, - "oldId": -55 - }, - { - "name": "minecraft:element_43", - "id": -54, - "oldId": -54 - }, - { - "name": "minecraft:element_42", - "id": -53, - "oldId": -53 - }, - { - "name": "minecraft:element_41", - "id": -52, - "oldId": -52 - }, - { - "name": "minecraft:element_40", - "id": -51, - "oldId": -51 - }, - { - "name": "minecraft:element_39", - "id": -50, - "oldId": -50 - }, - { - "name": "minecraft:element_38", - "id": -49, - "oldId": -49 - }, - { - "name": "minecraft:element_37", - "id": -48, - "oldId": -48 - }, - { - "name": "minecraft:element_36", - "id": -47, - "oldId": -47 - }, - { - "name": "minecraft:element_35", - "id": -46, - "oldId": -46 - }, - { - "name": "minecraft:element_34", - "id": -45, - "oldId": -45 - }, - { - "name": "minecraft:element_33", - "id": -44, - "oldId": -44 - }, - { - "name": "minecraft:element_32", - "id": -43, - "oldId": -43 - }, - { - "name": "minecraft:element_31", - "id": -42, - "oldId": -42 - }, - { - "name": "minecraft:element_30", - "id": -41, - "oldId": -41 - }, - { - "name": "minecraft:element_29", - "id": -40, - "oldId": -40 - }, - { - "name": "minecraft:element_28", - "id": -39, - "oldId": -39 - }, - { - "name": "minecraft:element_27", - "id": -38, - "oldId": -38 - }, - { - "name": "minecraft:element_26", - "id": -37, - "oldId": -37 - }, - { - "name": "minecraft:element_25", - "id": -36, - "oldId": -36 - }, - { - "name": "minecraft:element_24", - "id": -35, - "oldId": -35 - }, - { - "name": "minecraft:element_23", - "id": -34, - "oldId": -34 - }, - { - "name": "minecraft:element_22", - "id": -33, - "oldId": -33 - }, - { - "name": "minecraft:element_21", - "id": -32, - "oldId": -32 - }, - { - "name": "minecraft:element_20", - "id": -31, - "oldId": -31 - }, - { - "name": "minecraft:element_19", - "id": -30, - "oldId": -30 - }, - { - "name": "minecraft:element_18", - "id": -29, - "oldId": -29 - }, - { - "name": "minecraft:element_17", - "id": -28, - "oldId": -28 - }, - { - "name": "minecraft:element_16", - "id": -27, - "oldId": -27 - }, - { - "name": "minecraft:element_15", - "id": -26, - "oldId": -26 - }, - { - "name": "minecraft:element_14", - "id": -25, - "oldId": -25 - }, - { - "name": "minecraft:element_13", - "id": -24, - "oldId": -24 - }, - { - "name": "minecraft:element_12", - "id": -23, - "oldId": -23 - }, - { - "name": "minecraft:element_11", - "id": -22, - "oldId": -22 - }, - { - "name": "minecraft:element_10", - "id": -21, - "oldId": -21 - }, - { - "name": "minecraft:element_9", - "id": -20, - "oldId": -20 - }, - { - "name": "minecraft:element_8", - "id": -19, - "oldId": -19 - }, - { - "name": "minecraft:element_7", - "id": -18, - "oldId": -18 - }, - { - "name": "minecraft:element_6", - "id": -17, - "oldId": -17 - }, - { - "name": "minecraft:element_5", - "id": -16, - "oldId": -16 - }, - { - "name": "minecraft:element_4", - "id": -15, - "oldId": -15 - }, - { - "name": "minecraft:element_3", - "id": -14, - "oldId": -14 - }, - { - "name": "minecraft:element_2", - "id": -13, - "oldId": -13 - }, - { - "name": "minecraft:element_1", - "id": -12, - "oldId": -12 - }, - { - "name": "minecraft:blue_ice", - "id": -11, - "oldId": -11 - }, - { - "name": "minecraft:stripped_oak_log", - "id": -10, - "oldId": -10 - }, - { - "name": "minecraft:stripped_dark_oak_log", - "id": -9, - "oldId": -9 - }, - { - "name": "minecraft:stripped_acacia_log", - "id": -8, - "oldId": -8 - }, - { - "name": "minecraft:stripped_jungle_log", - "id": -7, - "oldId": -7 - }, - { - "name": "minecraft:stripped_birch_log", - "id": -6, - "oldId": -6 - }, - { - "name": "minecraft:stripped_spruce_log", - "id": -5, - "oldId": -5 - }, - { - "name": "minecraft:prismarine_bricks_stairs", - "id": -4, - "oldId": -4 - }, - { - "name": "minecraft:dark_prismarine_stairs", - "id": -3, - "oldId": -3 - }, - { - "name": "minecraft:prismarine_stairs", - "id": -2, - "oldId": -2 - }, - { - "name": "minecraft:stone", - "id": 1, - "oldId": 1 - }, - { - "name": "minecraft:grass", - "id": 2, - "oldId": 2 - }, - { - "name": "minecraft:dirt", - "id": 3, - "oldId": 3 - }, - { - "name": "minecraft:cobblestone", - "id": 4, - "oldId": 4 - }, - { - "name": "minecraft:planks", - "id": 5, - "oldId": 5 - }, - { - "name": "minecraft:sapling", - "id": 6, - "oldId": 6 - }, - { - "name": "minecraft:bedrock", - "id": 7, - "oldId": 7 - }, - { - "name": "minecraft:flowing_water", - "id": 8, - "oldId": 8 - }, - { - "name": "minecraft:water", - "id": 9, - "oldId": 9 - }, - { - "name": "minecraft:flowing_lava", - "id": 10, - "oldId": 10 - }, - { - "name": "minecraft:lava", - "id": 11, - "oldId": 11 - }, - { - "name": "minecraft:sand", - "id": 12, - "oldId": 12 - }, - { - "name": "minecraft:gravel", - "id": 13, - "oldId": 13 - }, - { - "name": "minecraft:gold_ore", - "id": 14, - "oldId": 14 - }, - { - "name": "minecraft:iron_ore", - "id": 15, - "oldId": 15 - }, - { - "name": "minecraft:coal_ore", - "id": 16, - "oldId": 16 - }, - { - "name": "minecraft:log", - "id": 17, - "oldId": 17 - }, - { - "name": "minecraft:leaves", - "id": 18, - "oldId": 18 - }, - { - "name": "minecraft:sponge", - "id": 19, - "oldId": 19 - }, - { - "name": "minecraft:glass", - "id": 20, - "oldId": 20 - }, - { - "name": "minecraft:lapis_ore", - "id": 21, - "oldId": 21 - }, - { - "name": "minecraft:lapis_block", - "id": 22, - "oldId": 22 - }, - { - "name": "minecraft:dispenser", - "id": 23, - "oldId": 23 - }, - { - "name": "minecraft:sandstone", - "id": 24, - "oldId": 24 - }, - { - "name": "minecraft:noteblock", - "id": 25, - "oldId": 25 - }, - { - "name": "minecraft:item.bed", - "id": 26, - "oldId": 26 - }, - { - "name": "minecraft:golden_rail", - "id": 27, - "oldId": 27 - }, - { - "name": "minecraft:detector_rail", - "id": 28, - "oldId": 28 - }, - { - "name": "minecraft:sticky_piston", - "id": 29, - "oldId": 29 - }, - { - "name": "minecraft:web", - "id": 30, - "oldId": 30 - }, - { - "name": "minecraft:tallgrass", - "id": 31, - "oldId": 31 - }, - { - "name": "minecraft:deadbush", - "id": 32, - "oldId": 32 - }, - { - "name": "minecraft:piston", - "id": 33, - "oldId": 33 - }, - { - "name": "minecraft:pistonarmcollision", - "id": 34, - "oldId": 34 - }, - { - "name": "minecraft:wool", - "id": 35, - "oldId": 35 - }, - { - "name": "minecraft:element_0", - "id": 36, - "oldId": 36 - }, - { - "name": "minecraft:yellow_flower", - "id": 37, - "oldId": 37 - }, - { - "name": "minecraft:red_flower", - "id": 38, - "oldId": 38 - }, - { - "name": "minecraft:brown_mushroom", - "id": 39, - "oldId": 39 - }, - { - "name": "minecraft:red_mushroom", - "id": 40, - "oldId": 40 - }, - { - "name": "minecraft:gold_block", - "id": 41, - "oldId": 41 - }, - { - "name": "minecraft:iron_block", - "id": 42, - "oldId": 42 - }, - { - "name": "minecraft:real_double_stone_slab", - "id": 43, - "oldId": 43 - }, - { - "name": "minecraft:double_stone_slab", - "id": 44, - "oldId": 44 - }, - { - "name": "minecraft:brick_block", - "id": 45, - "oldId": 45 - }, - { - "name": "minecraft:tnt", - "id": 46, - "oldId": 46 - }, - { - "name": "minecraft:bookshelf", - "id": 47, - "oldId": 47 - }, - { - "name": "minecraft:mossy_cobblestone", - "id": 48, - "oldId": 48 - }, - { - "name": "minecraft:obsidian", - "id": 49, - "oldId": 49 - }, - { - "name": "minecraft:torch", - "id": 50, - "oldId": 50 - }, - { - "name": "minecraft:fire", - "id": 51, - "oldId": 51 - }, - { - "name": "minecraft:mob_spawner", - "id": 52, - "oldId": 52 - }, - { - "name": "minecraft:oak_stairs", - "id": 53, - "oldId": 53 - }, - { - "name": "minecraft:chest", - "id": 54, - "oldId": 54 - }, - { - "name": "minecraft:redstone_wire", - "id": 55, - "oldId": 55 - }, - { - "name": "minecraft:diamond_ore", - "id": 56, - "oldId": 56 - }, - { - "name": "minecraft:diamond_block", - "id": 57, - "oldId": 57 - }, - { - "name": "minecraft:crafting_table", - "id": 58, - "oldId": 58 - }, - { - "name": "minecraft:item.wheat", - "id": 59, - "oldId": 59 - }, - { - "name": "minecraft:farmland", - "id": 60, - "oldId": 60 - }, - { - "name": "minecraft:furnace", - "id": 61, - "oldId": 61 - }, - { - "name": "minecraft:lit_furnace", - "id": 62, - "oldId": 62 - }, - { - "name": "minecraft:standing_sign", - "id": 63, - "oldId": 63 - }, - { - "name": "minecraft:item.wooden_door", - "id": 64, - "oldId": 64 - }, - { - "name": "minecraft:ladder", - "id": 65, - "oldId": 65 - }, - { - "name": "minecraft:rail", - "id": 66, - "oldId": 66 - }, - { - "name": "minecraft:stone_stairs", - "id": 67, - "oldId": 67 - }, - { - "name": "minecraft:wall_sign", - "id": 68, - "oldId": 68 - }, - { - "name": "minecraft:lever", - "id": 69, - "oldId": 69 - }, - { - "name": "minecraft:stone_pressure_plate", - "id": 70, - "oldId": 70 - }, - { - "name": "minecraft:item.iron_door", - "id": 71, - "oldId": 71 - }, - { - "name": "minecraft:wooden_pressure_plate", - "id": 72, - "oldId": 72 - }, - { - "name": "minecraft:redstone_ore", - "id": 73, - "oldId": 73 - }, - { - "name": "minecraft:lit_redstone_ore", - "id": 74, - "oldId": 74 - }, - { - "name": "minecraft:unlit_redstone_torch", - "id": 75, - "oldId": 75 - }, - { - "name": "minecraft:redstone_torch", - "id": 76, - "oldId": 76 - }, - { - "name": "minecraft:stone_button", - "id": 77, - "oldId": 77 - }, - { - "name": "minecraft:snow_layer", - "id": 78, - "oldId": 78 - }, - { - "name": "minecraft:ice", - "id": 79, - "oldId": 79 - }, - { - "name": "minecraft:snow", - "id": 80, - "oldId": 80 - }, - { - "name": "minecraft:cactus", - "id": 81, - "oldId": 81 - }, - { - "name": "minecraft:clay", - "id": 82, - "oldId": 82 - }, - { - "name": "minecraft:item.reeds", - "id": 83, - "oldId": 83 - }, - { - "name": "minecraft:jukebox", - "id": 84, - "oldId": 84 - }, - { - "name": "minecraft:fence", - "id": 85, - "oldId": 85 - }, - { - "name": "minecraft:pumpkin", - "id": 86, - "oldId": 86 - }, - { - "name": "minecraft:netherrack", - "id": 87, - "oldId": 87 - }, - { - "name": "minecraft:soul_sand", - "id": 88, - "oldId": 88 - }, - { - "name": "minecraft:glowstone", - "id": 89, - "oldId": 89 - }, - { - "name": "minecraft:portal", - "id": 90, - "oldId": 90 - }, - { - "name": "minecraft:lit_pumpkin", - "id": 91, - "oldId": 91 - }, - { - "name": "minecraft:item.cake", - "id": 92, - "oldId": 92 - }, - { - "name": "minecraft:unpowered_repeater", - "id": 93, - "oldId": 93 - }, - { - "name": "minecraft:powered_repeater", - "id": 94, - "oldId": 94 - }, - { - "name": "minecraft:invisiblebedrock", - "id": 95, - "oldId": 95 - }, - { - "name": "minecraft:trapdoor", - "id": 96, - "oldId": 96 - }, - { - "name": "minecraft:monster_egg", - "id": 97, - "oldId": 97 - }, - { - "name": "minecraft:stonebrick", - "id": 98, - "oldId": 98 - }, - { - "name": "minecraft:brown_mushroom_block", - "id": 99, - "oldId": 99 - }, - { - "name": "minecraft:red_mushroom_block", - "id": 100, - "oldId": 100 - }, - { - "name": "minecraft:iron_bars", - "id": 101, - "oldId": 101 - }, - { - "name": "minecraft:glass_pane", - "id": 102, - "oldId": 102 - }, - { - "name": "minecraft:melon_block", - "id": 103, - "oldId": 103 - }, - { - "name": "minecraft:pumpkin_stem", - "id": 104, - "oldId": 104 - }, - { - "name": "minecraft:melon_stem", - "id": 105, - "oldId": 105 - }, - { - "name": "minecraft:vine", - "id": 106, - "oldId": 106 - }, - { - "name": "minecraft:fence_gate", - "id": 107, - "oldId": 107 - }, - { - "name": "minecraft:brick_stairs", - "id": 108, - "oldId": 108 - }, - { - "name": "minecraft:stone_brick_stairs", - "id": 109, - "oldId": 109 - }, - { - "name": "minecraft:mycelium", - "id": 110, - "oldId": 110 - }, - { - "name": "minecraft:waterlily", - "id": 111, - "oldId": 111 - }, - { - "name": "minecraft:nether_brick", - "id": 112, - "oldId": 112 - }, - { - "name": "minecraft:nether_brick_fence", - "id": 113, - "oldId": 113 - }, - { - "name": "minecraft:nether_brick_stairs", - "id": 114, - "oldId": 114 - }, - { - "name": "minecraft:item.nether_wart", - "id": 115, - "oldId": 115 - }, - { - "name": "minecraft:enchanting_table", - "id": 116, - "oldId": 116 - }, - { - "name": "minecraft:brewingstandblock", - "id": 117, - "oldId": 117 - }, - { - "name": "minecraft:item.cauldron", - "id": 118, - "oldId": 118 - }, - { - "name": "minecraft:end_portal", - "id": 119, - "oldId": 119 - }, - { - "name": "minecraft:end_portal_frame", - "id": 120, - "oldId": 120 - }, - { - "name": "minecraft:end_stone", - "id": 121, - "oldId": 121 - }, - { - "name": "minecraft:dragon_egg", - "id": 122, - "oldId": 122 - }, - { - "name": "minecraft:redstone_lamp", - "id": 123, - "oldId": 123 - }, - { - "name": "minecraft:lit_redstone_lamp", - "id": 124, - "oldId": 124 - }, - { - "name": "minecraft:dropper", - "id": 125, - "oldId": 125 - }, - { - "name": "minecraft:activator_rail", - "id": 126, - "oldId": 126 - }, - { - "name": "minecraft:cocoa", - "id": 127, - "oldId": 127 - }, - { - "name": "minecraft:sandstone_stairs", - "id": 128, - "oldId": 128 - }, - { - "name": "minecraft:emerald_ore", - "id": 129, - "oldId": 129 - }, - { - "name": "minecraft:ender_chest", - "id": 130, - "oldId": 130 - }, - { - "name": "minecraft:tripwire_hook", - "id": 131, - "oldId": 131 - }, - { - "name": "minecraft:tripwire", - "id": 132, - "oldId": 132 - }, - { - "name": "minecraft:emerald_block", - "id": 133, - "oldId": 133 - }, - { - "name": "minecraft:spruce_stairs", - "id": 134, - "oldId": 134 - }, - { - "name": "minecraft:birch_stairs", - "id": 135, - "oldId": 135 - }, - { - "name": "minecraft:jungle_stairs", - "id": 136, - "oldId": 136 - }, - { - "name": "minecraft:command_block", - "id": 137, - "oldId": 137 - }, - { - "name": "minecraft:beacon", - "id": 138, - "oldId": 138 - }, - { - "name": "minecraft:cobblestone_wall", - "id": 139, - "oldId": 139 - }, - { - "name": "minecraft:item.flower_pot", - "id": 140, - "oldId": 140 - }, - { - "name": "minecraft:carrots", - "id": 141, - "oldId": 141 - }, - { - "name": "minecraft:potatoes", - "id": 142, - "oldId": 142 - }, - { - "name": "minecraft:wooden_button", - "id": 143, - "oldId": 143 - }, - { - "name": "minecraft:item.skull", - "id": 144, - "oldId": 144 - }, - { - "name": "minecraft:anvil", - "id": 145, - "oldId": 145 - }, - { - "name": "minecraft:trapped_chest", - "id": 146, - "oldId": 146 - }, - { - "name": "minecraft:light_weighted_pressure_plate", - "id": 147, - "oldId": 147 - }, - { - "name": "minecraft:heavy_weighted_pressure_plate", - "id": 148, - "oldId": 148 - }, - { - "name": "minecraft:unpowered_comparator", - "id": 149, - "oldId": 149 - }, - { - "name": "minecraft:powered_comparator", - "id": 150, - "oldId": 150 - }, - { - "name": "minecraft:daylight_detector", - "id": 151, - "oldId": 151 - }, - { - "name": "minecraft:redstone_block", - "id": 152, - "oldId": 152 - }, - { - "name": "minecraft:quartz_ore", - "id": 153, - "oldId": 153 - }, - { - "name": "minecraft:item.hopper", - "id": 154, - "oldId": 154 - }, - { - "name": "minecraft:quartz_block", - "id": 155, - "oldId": 155 - }, - { - "name": "minecraft:quartz_stairs", - "id": 156, - "oldId": 156 - }, - { - "name": "minecraft:double_wooden_slab", - "id": 157, - "oldId": 157 - }, - { - "name": "minecraft:wooden_slab", - "id": 158, - "oldId": 158 - }, - { - "name": "minecraft:stained_hardened_clay", - "id": 159, - "oldId": 159 - }, - { - "name": "minecraft:stained_glass_pane", - "id": 160, - "oldId": 160 - }, - { - "name": "minecraft:leaves2", - "id": 161, - "oldId": 161 - }, - { - "name": "minecraft:log2", - "id": 162, - "oldId": 162 - }, - { - "name": "minecraft:acacia_stairs", - "id": 163, - "oldId": 163 - }, - { - "name": "minecraft:dark_oak_stairs", - "id": 164, - "oldId": 164 - }, - { - "name": "minecraft:slime", - "id": 165, - "oldId": 165 - }, - { - "name": "minecraft:glow_stick", - "id": 166, - "oldId": 166 - }, - { - "name": "minecraft:iron_trapdoor", - "id": 167, - "oldId": 167 - }, - { - "name": "minecraft:prismarine", - "id": 168, - "oldId": 168 - }, - { - "name": "minecraft:sealantern", - "id": 169, - "oldId": 169 - }, - { - "name": "minecraft:hay_block", - "id": 170, - "oldId": 170 - }, - { - "name": "minecraft:carpet", - "id": 171, - "oldId": 171 - }, - { - "name": "minecraft:hardened_clay", - "id": 172, - "oldId": 172 - }, - { - "name": "minecraft:coal_block", - "id": 173, - "oldId": 173 - }, - { - "name": "minecraft:packed_ice", - "id": 174, - "oldId": 174 - }, - { - "name": "minecraft:double_plant", - "id": 175, - "oldId": 175 - }, - { - "name": "minecraft:standing_banner", - "id": 176, - "oldId": 176 - }, - { - "name": "minecraft:wall_banner", - "id": 177, - "oldId": 177 - }, - { - "name": "minecraft:daylight_detector_inverted", - "id": 178, - "oldId": 178 - }, - { - "name": "minecraft:red_sandstone", - "id": 179, - "oldId": 179 - }, - { - "name": "minecraft:red_sandstone_stairs", - "id": 180, - "oldId": 180 - }, - { - "name": "minecraft:real_double_stone_slab2", - "id": 181, - "oldId": 181 - }, - { - "name": "minecraft:double_stone_slab2", - "id": 182, - "oldId": 182 - }, - { - "name": "minecraft:spruce_fence_gate", - "id": 183, - "oldId": 183 - }, - { - "name": "minecraft:birch_fence_gate", - "id": 184, - "oldId": 184 - }, - { - "name": "minecraft:jungle_fence_gate", - "id": 185, - "oldId": 185 - }, - { - "name": "minecraft:dark_oak_fence_gate", - "id": 186, - "oldId": 186 - }, - { - "name": "minecraft:acacia_fence_gate", - "id": 187, - "oldId": 187 - }, - { - "name": "minecraft:repeating_command_block", - "id": 188, - "oldId": 188 - }, - { - "name": "minecraft:chain_command_block", - "id": 189, - "oldId": 189 - }, - { - "name": "minecraft:hard_glass_pane", - "id": 190, - "oldId": 190 - }, - { - "name": "minecraft:hard_stained_glass_pane", - "id": 191, - "oldId": 191 - }, - { - "name": "minecraft:chemical_heat", - "id": 192, - "oldId": 192 - }, - { - "name": "minecraft:item.spruce_door", - "id": 193, - "oldId": 193 - }, - { - "name": "minecraft:item.birch_door", - "id": 194, - "oldId": 194 - }, - { - "name": "minecraft:item.jungle_door", - "id": 195, - "oldId": 195 - }, - { - "name": "minecraft:item.acacia_door", - "id": 196, - "oldId": 196 - }, - { - "name": "minecraft:item.dark_oak_door", - "id": 197, - "oldId": 197 - }, - { - "name": "minecraft:grass_path", - "id": 198, - "oldId": 198 - }, - { - "name": "minecraft:item.frame", - "id": 199, - "oldId": 199 - }, - { - "name": "minecraft:chorus_flower", - "id": 200, - "oldId": 200 - }, - { - "name": "minecraft:purpur_block", - "id": 201, - "oldId": 201 - }, - { - "name": "minecraft:colored_torch_rg", - "id": 202, - "oldId": 202 - }, - { - "name": "minecraft:purpur_stairs", - "id": 203, - "oldId": 203 - }, - { - "name": "minecraft:colored_torch_bp", - "id": 204, - "oldId": 204 - }, - { - "name": "minecraft:undyed_shulker_box", - "id": 205, - "oldId": 205 - }, - { - "name": "minecraft:end_bricks", - "id": 206, - "oldId": 206 - }, - { - "name": "minecraft:frosted_ice", - "id": 207, - "oldId": 207 - }, - { - "name": "minecraft:end_rod", - "id": 208, - "oldId": 208 - }, - { - "name": "minecraft:end_gateway", - "id": 209, - "oldId": 209 - }, - { - "name": "minecraft:allow", - "id": 210, - "oldId": 210 - }, - { - "name": "minecraft:deny", - "id": 211, - "oldId": 211 - }, - { - "name": "minecraft:border_block", - "id": 212, - "oldId": 212 - }, - { - "name": "minecraft:magma", - "id": 213, - "oldId": 213 - }, - { - "name": "minecraft:nether_wart_block", - "id": 214, - "oldId": 214 - }, - { - "name": "minecraft:red_nether_brick", - "id": 215, - "oldId": 215 - }, - { - "name": "minecraft:bone_block", - "id": 216, - "oldId": 216 - }, - { - "name": "minecraft:structure_void", - "id": 217, - "oldId": 217 - }, - { - "name": "minecraft:shulker_box", - "id": 218, - "oldId": 218 - }, - { - "name": "minecraft:purple_glazed_terracotta", - "id": 219, - "oldId": 219 - }, - { - "name": "minecraft:white_glazed_terracotta", - "id": 220, - "oldId": 220 - }, - { - "name": "minecraft:orange_glazed_terracotta", - "id": 221, - "oldId": 221 - }, - { - "name": "minecraft:magenta_glazed_terracotta", - "id": 222, - "oldId": 222 - }, - { - "name": "minecraft:light_blue_glazed_terracotta", - "id": 223, - "oldId": 223 - }, - { - "name": "minecraft:yellow_glazed_terracotta", - "id": 224, - "oldId": 224 - }, - { - "name": "minecraft:lime_glazed_terracotta", - "id": 225, - "oldId": 225 - }, - { - "name": "minecraft:pink_glazed_terracotta", - "id": 226, - "oldId": 226 - }, - { - "name": "minecraft:gray_glazed_terracotta", - "id": 227, - "oldId": 227 - }, - { - "name": "minecraft:silver_glazed_terracotta", - "id": 228, - "oldId": 228 - }, - { - "name": "minecraft:cyan_glazed_terracotta", - "id": 229, - "oldId": 229 - }, - { - "name": "minecraft:blue_glazed_terracotta", - "id": 231, - "oldId": 231 - }, - { - "name": "minecraft:brown_glazed_terracotta", - "id": 232, - "oldId": 232 - }, - { - "name": "minecraft:green_glazed_terracotta", - "id": 233, - "oldId": 233 - }, - { - "name": "minecraft:red_glazed_terracotta", - "id": 234, - "oldId": 234 - }, - { - "name": "minecraft:black_glazed_terracotta", - "id": 235, - "oldId": 235 - }, - { - "name": "minecraft:concrete", - "id": 236, - "oldId": 236 - }, - { - "name": "minecraft:concrete_powder", - "id": 237, - "oldId": 237 - }, - { - "name": "minecraft:chemistry_table", - "id": 238, - "oldId": 238 - }, - { - "name": "minecraft:underwater_torch", - "id": 239, - "oldId": 239 - }, - { - "name": "minecraft:chorus_plant", - "id": 240, - "oldId": 240 - }, - { - "name": "minecraft:stained_glass", - "id": 241, - "oldId": 241 - }, - { - "name": "minecraft:item.camera", - "id": 242, - "oldId": 242 - }, - { - "name": "minecraft:podzol", - "id": 243, - "oldId": 243 - }, - { - "name": "minecraft:item.beetroot", - "id": 244, - "oldId": 244 - }, - { - "name": "minecraft:stonecutter", - "id": 245, - "oldId": 245 - }, - { - "name": "minecraft:glowingobsidian", - "id": 246, - "oldId": 246 - }, - { - "name": "minecraft:netherreactor", - "id": 247, - "oldId": 247 - }, - { - "name": "minecraft:info_update", - "id": 248, - "oldId": 248 - }, - { - "name": "minecraft:info_update2", - "id": 249, - "oldId": 249 - }, - { - "name": "minecraft:movingblock", - "id": 250, - "oldId": 250 - }, - { - "name": "minecraft:observer", - "id": 251, - "oldId": 251 - }, - { - "name": "minecraft:structure_block", - "id": 252, - "oldId": 252 - }, - { - "name": "minecraft:hard_glass", - "id": 253, - "oldId": 253 - }, - { - "name": "minecraft:hard_stained_glass", - "id": 254, - "oldId": 254 - }, - { - "name": "minecraft:reserved6", - "id": 255, - "oldId": 255 - }, - { - "name": "minecraft:apple", - "id": 257, - "oldId": 260 - }, - { - "name": "minecraft:golden_apple", - "id": 258, - "oldId": 322 - }, - { - "name": "minecraft:enchanted_golden_apple", - "id": 259, - "oldId": 466 - }, - { - "name": "minecraft:mushroom_stew", - "id": 260, - "oldId": 282 - }, - { - "name": "minecraft:bread", - "id": 261, - "oldId": 297 - }, - { - "name": "minecraft:porkchop", - "id": 262, - "oldId": 319 - }, - { - "name": "minecraft:cooked_porkchop", - "id": 263, - "oldId": 320 - }, - { - "name": "minecraft:cod", - "id": 264, - "oldId": 349 - }, - { - "name": "minecraft:salmon", - "id": 265, - "oldId": 460 - }, - { - "name": "minecraft:tropical_fish", - "id": 266, - "oldId": 461 - }, - { - "name": "minecraft:pufferfish", - "id": 267, - "oldId": 462 - }, - { - "name": "minecraft:cooked_cod", - "id": 268, - "oldId": 350 - }, - { - "name": "minecraft:cooked_salmon", - "id": 269, - "oldId": 463 - }, - { - "name": "minecraft:dried_kelp", - "id": 270, - "oldId": 464 - }, - { - "name": "minecraft:cookie", - "id": 271, - "oldId": 357 - }, - { - "name": "minecraft:melon_slice", - "id": 272, - "oldId": 360 - }, - { - "name": "minecraft:beef", - "id": 273, - "oldId": 363 - }, - { - "name": "minecraft:cooked_beef", - "id": 274, - "oldId": 364 - }, - { - "name": "minecraft:chicken", - "id": 275, - "oldId": 365 - }, - { - "name": "minecraft:cooked_chicken", - "id": 276, - "oldId": 366 - }, - { - "name": "minecraft:rotten_flesh", - "id": 277, - "oldId": 367 - }, - { - "name": "minecraft:spider_eye", - "id": 278, - "oldId": 375 - }, - { - "name": "minecraft:carrot", - "id": 279, - "oldId": 391 - }, - { - "name": "minecraft:potato", - "id": 280, - "oldId": 392 - }, - { - "name": "minecraft:baked_potato", - "id": 281, - "oldId": 393 - }, - { - "name": "minecraft:poisonous_potato", - "id": 282, - "oldId": 394 - }, - { - "name": "minecraft:golden_carrot", - "id": 283, - "oldId": 396 - }, - { - "name": "minecraft:pumpkin_pie", - "id": 284, - "oldId": 400 - }, - { - "name": "minecraft:beetroot", - "id": 285, - "oldId": 457 - }, - { - "name": "minecraft:beetroot_soup", - "id": 286, - "oldId": 459 - }, - { - "name": "minecraft:sweet_berries", - "id": 287, - "oldId": 477 - }, - { - "name": "minecraft:rabbit", - "id": 288, - "oldId": 411 - }, - { - "name": "minecraft:cooked_rabbit", - "id": 289, - "oldId": 412 - }, - { - "name": "minecraft:rabbit_stew", - "id": 290, - "oldId": 413 - }, - { - "name": "minecraft:wheat_seeds", - "id": 291, - "oldId": 295 - }, - { - "name": "minecraft:pumpkin_seeds", - "id": 292, - "oldId": 361 - }, - { - "name": "minecraft:melon_seeds", - "id": 293, - "oldId": 362 - }, - { - "name": "minecraft:nether_wart", - "id": 294, - "oldId": 372 - }, - { - "name": "minecraft:beetroot_seeds", - "id": 295, - "oldId": 458 - }, - { - "name": "minecraft:iron_shovel", - "id": 296, - "oldId": 256 - }, - { - "name": "minecraft:iron_pickaxe", - "id": 297, - "oldId": 257 - }, - { - "name": "minecraft:iron_axe", - "id": 298, - "oldId": 258 - }, - { - "name": "minecraft:flint_and_steel", - "id": 299, - "oldId": 259 - }, - { - "name": "minecraft:bow", - "id": 300, - "oldId": 261 - }, - { - "name": "minecraft:arrow", - "id": 301, - "oldId": 262 - }, - { - "name": "minecraft:coal", - "id": 302, - "oldId": 263, - "oldData": 0 - }, - { - "name": "minecraft:charcoal", - "id": 303, - "oldId": 263, - "oldData": 1 - }, - { - "name": "minecraft:diamond", - "id": 304, - "oldId": 264 - }, - { - "name": "minecraft:iron_ingot", - "id": 305, - "oldId": 265 - }, - { - "name": "minecraft:gold_ingot", - "id": 306, - "oldId": 266 - }, - { - "name": "minecraft:iron_sword", - "id": 307, - "oldId": 267 - }, - { - "name": "minecraft:wooden_sword", - "id": 308, - "oldId": 268 - }, - { - "name": "minecraft:wooden_shovel", - "id": 309, - "oldId": 269 - }, - { - "name": "minecraft:wooden_pickaxe", - "id": 310, - "oldId": 270 - }, - { - "name": "minecraft:wooden_axe", - "id": 311, - "oldId": 271 - }, - { - "name": "minecraft:stone_sword", - "id": 312, - "oldId": 272 - }, - { - "name": "minecraft:stone_shovel", - "id": 313, - "oldId": 273 - }, - { - "name": "minecraft:stone_pickaxe", - "id": 314, - "oldId": 274 - }, - { - "name": "minecraft:stone_axe", - "id": 315, - "oldId": 275 - }, - { - "name": "minecraft:diamond_sword", - "id": 316, - "oldId": 276 - }, - { - "name": "minecraft:diamond_shovel", - "id": 317, - "oldId": 277 - }, - { - "name": "minecraft:diamond_pickaxe", - "id": 318, - "oldId": 278 - }, - { - "name": "minecraft:diamond_axe", - "id": 319, - "oldId": 279 - }, - { - "name": "minecraft:stick", - "id": 320, - "oldId": 280 - }, - { - "name": "minecraft:bowl", - "id": 321, - "oldId": 281 - }, - { - "name": "minecraft:golden_sword", - "id": 322, - "oldId": 283 - }, - { - "name": "minecraft:golden_shovel", - "id": 323, - "oldId": 284 - }, - { - "name": "minecraft:golden_pickaxe", - "id": 324, - "oldId": 285 - }, - { - "name": "minecraft:golden_axe", - "id": 325, - "oldId": 286 - }, - { - "name": "minecraft:string", - "id": 326, - "oldId": 287 - }, - { - "name": "minecraft:feather", - "id": 327, - "oldId": 288 - }, - { - "name": "minecraft:gunpowder", - "id": 328, - "oldId": 289 - }, - { - "name": "minecraft:wooden_hoe", - "id": 329, - "oldId": 290 - }, - { - "name": "minecraft:stone_hoe", - "id": 330, - "oldId": 291 - }, - { - "name": "minecraft:iron_hoe", - "id": 331, - "oldId": 292 - }, - { - "name": "minecraft:diamond_hoe", - "id": 332, - "oldId": 293 - }, - { - "name": "minecraft:golden_hoe", - "id": 333, - "oldId": 294 - }, - { - "name": "minecraft:wheat", - "id": 334, - "oldId": 296 - }, - { - "name": "minecraft:leather_helmet", - "id": 335, - "oldId": 298 - }, - { - "name": "minecraft:leather_chestplate", - "id": 336, - "oldId": 299 - }, - { - "name": "minecraft:leather_leggings", - "id": 337, - "oldId": 300 - }, - { - "name": "minecraft:leather_boots", - "id": 338, - "oldId": 301 - }, - { - "name": "minecraft:chainmail_helmet", - "id": 339, - "oldId": 302 - }, - { - "name": "minecraft:chainmail_chestplate", - "id": 340, - "oldId": 303 - }, - { - "name": "minecraft:chainmail_leggings", - "id": 341, - "oldId": 304 - }, - { - "name": "minecraft:chainmail_boots", - "id": 342, - "oldId": 305 - }, - { - "name": "minecraft:iron_helmet", - "id": 343, - "oldId": 306 - }, - { - "name": "minecraft:iron_chestplate", - "id": 344, - "oldId": 307 - }, - { - "name": "minecraft:iron_leggings", - "id": 345, - "oldId": 308 - }, - { - "name": "minecraft:iron_boots", - "id": 346, - "oldId": 309 - }, - { - "name": "minecraft:diamond_helmet", - "id": 347, - "oldId": 310 - }, - { - "name": "minecraft:diamond_chestplate", - "id": 348, - "oldId": 311 - }, - { - "name": "minecraft:diamond_leggings", - "id": 349, - "oldId": 312 - }, - { - "name": "minecraft:diamond_boots", - "id": 350, - "oldId": 313 - }, - { - "name": "minecraft:golden_helmet", - "id": 351, - "oldId": 314 - }, - { - "name": "minecraft:golden_chestplate", - "id": 352, - "oldId": 315 - }, - { - "name": "minecraft:golden_leggings", - "id": 353, - "oldId": 316 - }, - { - "name": "minecraft:golden_boots", - "id": 354, - "oldId": 317 - }, - { - "name": "minecraft:shield", - "id": 355, - "oldId": 513 - }, - { - "name": "minecraft:flint", - "id": 356, - "oldId": 318 - }, - { - "name": "minecraft:painting", - "id": 357, - "oldId": 321 - }, - { - "name": "minecraft:oak_sign", - "id": 358, - "oldId": 323 - }, - { - "name": "minecraft:wooden_door", - "id": 359, - "oldId": 324 - }, - { - "name": "minecraft:bucket", - "id": 360, - "oldId": 325, - "oldData": 0 - }, - { - "name": "minecraft:milk_bucket", - "id": 361, - "oldId": 325, - "oldData": 1 - }, - { - "name": "minecraft:water_bucket", - "id": 362, - "oldId": 325, - "oldData": 8 - }, - { - "name": "minecraft:lava_bucket", - "id": 363, - "oldId": 325, - "oldData": 10 - }, - { - "name": "minecraft:cod_bucket", - "id": 364, - "oldId": 325, - "oldData": 2 - }, - { - "name": "minecraft:salmon_bucket", - "id": 365, - "oldId": 325, - "oldData": 3 - }, - { - "name": "minecraft:tropical_fish_bucket", - "id": 366, - "oldId": 325, - "oldData": 4 - }, - { - "name": "minecraft:pufferfish_bucket", - "id": 367, - "oldId": 325, - "oldData": 5 - }, - { - "name": "minecraft:minecart", - "id": 370, - "oldId": 328 - }, - { - "name": "minecraft:saddle", - "id": 371, - "oldId": 329 - }, - { - "name": "minecraft:iron_door", - "id": 372, - "oldId": 330 - }, - { - "name": "minecraft:redstone", - "id": 373, - "oldId": 331 - }, - { - "name": "minecraft:snowball", - "id": 374, - "oldId": 332 - }, - { - "name": "minecraft:oak_boat", - "id": 375, - "oldId": 333, - "oldData": 0 - }, - { - "name": "minecraft:birch_boat", - "id": 376, - "oldId": 333, - "oldData": 2 - }, - { - "name": "minecraft:jungle_boat", - "id": 377, - "oldId": 333, - "oldData": 3 - }, - { - "name": "minecraft:spruce_boat", - "id": 378, - "oldId": 333, - "oldData": 1 - }, - { - "name": "minecraft:acacia_boat", - "id": 379, - "oldId": 333, - "oldData": 4 - }, - { - "name": "minecraft:dark_oak_boat", - "id": 380, - "oldId": 333, - "oldData": 5 - }, - { - "name": "minecraft:leather", - "id": 381, - "oldId": 334 - }, - { - "name": "minecraft:kelp", - "id": 382, - "oldId": 335 - }, - { - "name": "minecraft:brick", - "id": 383, - "oldId": 336 - }, - { - "name": "minecraft:clay_ball", - "id": 384, - "oldId": 337 - }, - { - "name": "minecraft:sugar_cane", - "id": 385, - "oldId": 338 - }, - { - "name": "minecraft:paper", - "id": 386, - "oldId": 339 - }, - { - "name": "minecraft:book", - "id": 387, - "oldId": 340 - }, - { - "name": "minecraft:slime_ball", - "id": 388, - "oldId": 341 - }, - { - "name": "minecraft:chest_minecart", - "id": 389, - "oldId": 342 - }, - { - "name": "minecraft:egg", - "id": 390, - "oldId": 344 - }, - { - "name": "minecraft:compass", - "id": 391, - "oldId": 345 - }, - { - "name": "minecraft:fishing_rod", - "id": 392, - "oldId": 346 - }, - { - "name": "minecraft:clock", - "id": 393, - "oldId": 347 - }, - { - "name": "minecraft:glowstone_dust", - "id": 394, - "oldId": 348 - }, - { - "name": "minecraft:black_dye", - "id": 395, - "oldId": 351, - "oldData": 16 - }, - { - "name": "minecraft:red_dye", - "id": 396, - "oldId": 351, - "oldData": 1 - }, - { - "name": "minecraft:green_dye", - "id": 397, - "oldId": 351, - "oldData": 2 - }, - { - "name": "minecraft:brown_dye", - "id": 398, - "oldId": 351, - "oldData": 17 - }, - { - "name": "minecraft:blue_dye", - "id": 399, - "oldId": 351, - "oldData": 18 - }, - { - "name": "minecraft:purple_dye", - "id": 400, - "oldId": 351, - "oldData": 5 - }, - { - "name": "minecraft:cyan_dye", - "id": 401, - "oldId": 351, - "oldData": 6 - }, - { - "name": "minecraft:light_gray_dye", - "id": 402, - "oldId": 351, - "oldData": 7 - }, - { - "name": "minecraft:gray_dye", - "id": 403, - "oldId": 351, - "oldData": 8 - }, - { - "name": "minecraft:pink_dye", - "id": 404, - "oldId": 351, - "oldData": 9 - }, - { - "name": "minecraft:lime_dye", - "id": 405, - "oldId": 351, - "oldData": 10 - }, - { - "name": "minecraft:yellow_dye", - "id": 406, - "oldId": 351, - "oldData": 11 - }, - { - "name": "minecraft:light_blue_dye", - "id": 407, - "oldId": 351, - "oldData": 12 - }, - { - "name": "minecraft:magenta_dye", - "id": 408, - "oldId": 351, - "oldData": 13 - }, - { - "name": "minecraft:orange_dye", - "id": 409, - "oldId": 351, - "oldData": 14 - }, - { - "name": "minecraft:white_dye", - "id": 410, - "oldId": 351, - "oldData": 19 - }, - { - "name": "minecraft:bone_meal", - "id": 411, - "oldId": 351, - "oldData": 15 - }, - { - "name": "minecraft:cocoa_beans", - "id": 412, - "oldId": 351, - "oldData": 3 - }, - { - "name": "minecraft:ink_sac", - "id": 413, - "oldId": 351, - "oldData": 0 - }, - { - "name": "minecraft:lapis_lazuli", - "id": 414, - "oldId": 351, - "oldData": 4 - }, - { - "name": "minecraft:bone", - "id": 415, - "oldId": 352 - }, - { - "name": "minecraft:sugar", - "id": 416, - "oldId": 353 - }, - { - "name": "minecraft:cake", - "id": 417, - "oldId": 354 - }, - { - "name": "minecraft:bed", - "id": 418, - "oldId": 355 - }, - { - "name": "minecraft:repeater", - "id": 419, - "oldId": 356 - }, - { - "name": "minecraft:filled_map", - "id": 420, - "oldId": 358 - }, - { - "name": "minecraft:shears", - "id": 421, - "oldId": 359 - }, - { - "name": "minecraft:ender_pearl", - "id": 422, - "oldId": 368 - }, - { - "name": "minecraft:blaze_rod", - "id": 423, - "oldId": 369 - }, - { - "name": "minecraft:ghast_tear", - "id": 424, - "oldId": 370 - }, - { - "name": "minecraft:gold_nugget", - "id": 425, - "oldId": 371 - }, - { - "name": "minecraft:potion", - "id": 426, - "oldId": 373 - }, - { - "name": "minecraft:glass_bottle", - "id": 427, - "oldId": 374 - }, - { - "name": "minecraft:fermented_spider_eye", - "id": 428, - "oldId": 376 - }, - { - "name": "minecraft:blaze_powder", - "id": 429, - "oldId": 377 - }, - { - "name": "minecraft:magma_cream", - "id": 430, - "oldId": 378 - }, - { - "name": "minecraft:brewing_stand", - "id": 431, - "oldId": 379 - }, - { - "name": "minecraft:cauldron", - "id": 432, - "oldId": 380 - }, - { - "name": "minecraft:ender_eye", - "id": 433, - "oldId": 381 - }, - { - "name": "minecraft:glistering_melon_slice", - "id": 434, - "oldId": 382 - }, - { - "name": "minecraft:spawn_egg", - "id": 628, - "oldId": 383 - }, - { - "name": "minecraft:chicken_spawn_egg", - "id": 435, - "oldId": 383, - "oldData": 10 - }, - { - "name": "minecraft:cow_spawn_egg", - "id": 436, - "oldId": 383, - "oldData": 11 - }, - { - "name": "minecraft:pig_spawn_egg", - "id": 437, - "oldId": 383, - "oldData": 12 - }, - { - "name": "minecraft:sheep_spawn_egg", - "id": 438, - "oldId": 383, - "oldData": 13 - }, - { - "name": "minecraft:wolf_spawn_egg", - "id": 439, - "oldId": 383, - "oldData": 14 - }, - { - "name": "minecraft:mooshroom_spawn_egg", - "id": 440, - "oldId": 383, - "oldData": 16 - }, - { - "name": "minecraft:creeper_spawn_egg", - "id": 441, - "oldId": 383, - "oldData": 33 - }, - { - "name": "minecraft:enderman_spawn_egg", - "id": 442, - "oldId": 383, - "oldData": 38 - }, - { - "name": "minecraft:silverfish_spawn_egg", - "id": 443, - "oldId": 383, - "oldData": 39 - }, - { - "name": "minecraft:skeleton_spawn_egg", - "id": 444, - "oldId": 383, - "oldData": 34 - }, - { - "name": "minecraft:slime_spawn_egg", - "id": 445, - "oldId": 383, - "oldData": 37 - }, - { - "name": "minecraft:spider_spawn_egg", - "id": 446, - "oldId": 383, - "oldData": 35 - }, - { - "name": "minecraft:zombie_spawn_egg", - "id": 447, - "oldId": 383, - "oldData": 32 - }, - { - "name": "minecraft:zombie_pigman_spawn_egg", - "id": 448, - "oldId": 383, - "oldData": 36 - }, - { - "name": "minecraft:villager_spawn_egg", - "id": 449, - "oldId": 383, - "oldData": 15 - }, - { - "name": "minecraft:squid_spawn_egg", - "id": 450, - "oldId": 383, - "oldData": 17 - }, - { - "name": "minecraft:ocelot_spawn_egg", - "id": 451, - "oldId": 383, - "oldData": 22 - }, - { - "name": "minecraft:witch_spawn_egg", - "id": 452, - "oldId": 383, - "oldData": 45 - }, - { - "name": "minecraft:bat_spawn_egg", - "id": 453, - "oldId": 383, - "oldData": 19 - }, - { - "name": "minecraft:ghast_spawn_egg", - "id": 454, - "oldId": 383, - "oldData": 41 - }, - { - "name": "minecraft:magma_cube_spawn_egg", - "id": 455, - "oldId": 383, - "oldData": 42 - }, - { - "name": "minecraft:blaze_spawn_egg", - "id": 456, - "oldId": 383, - "oldData": 43 - }, - { - "name": "minecraft:cave_spider_spawn_egg", - "id": 457, - "oldId": 383, - "oldData": 40 - }, - { - "name": "minecraft:horse_spawn_egg", - "id": 458, - "oldId": 383, - "oldData": 23 - }, - { - "name": "minecraft:rabbit_spawn_egg", - "id": 459, - "oldId": 383, - "oldData": 18 - }, - { - "name": "minecraft:endermite_spawn_egg", - "id": 460, - "oldId": 383, - "oldData": 55 - }, - { - "name": "minecraft:guardian_spawn_egg", - "id": 461, - "oldId": 383, - "oldData": 49 - }, - { - "name": "minecraft:stray_spawn_egg", - "id": 462, - "oldId": 383, - "oldData": 46 - }, - { - "name": "minecraft:husk_spawn_egg", - "id": 463, - "oldId": 383, - "oldData": 47 - }, - { - "name": "minecraft:wither_skeleton_spawn_egg", - "id": 464, - "oldId": 383, - "oldData": 48 - }, - { - "name": "minecraft:donkey_spawn_egg", - "id": 465, - "oldId": 383, - "oldData": 24 - }, - { - "name": "minecraft:mule_spawn_egg", - "id": 466, - "oldId": 383, - "oldData": 25 - }, - { - "name": "minecraft:skeleton_horse_spawn_egg", - "id": 467, - "oldId": 383, - "oldData": 26 - }, - { - "name": "minecraft:zombie_horse_spawn_egg", - "id": 468, - "oldId": 383, - "oldData": 27 - }, - { - "name": "minecraft:shulker_spawn_egg", - "id": 469, - "oldId": 383, - "oldData": 54 - }, - { - "name": "minecraft:npc_spawn_egg", - "id": 470, - "oldId": 383, - "oldData": 51 - }, - { - "name": "minecraft:elder_guardian_spawn_egg", - "id": 471, - "oldId": 383, - "oldData": 50 - }, - { - "name": "minecraft:polar_bear_spawn_egg", - "id": 472, - "oldId": 383, - "oldData": 28 - }, - { - "name": "minecraft:llama_spawn_egg", - "id": 473, - "oldId": 383, - "oldData": 29 - }, - { - "name": "minecraft:vindicator_spawn_egg", - "id": 474, - "oldId": 383, - "oldData": 57 - }, - { - "name": "minecraft:evoker_spawn_egg", - "id": 475, - "oldId": 383, - "oldData": 104 - }, - { - "name": "minecraft:vex_spawn_egg", - "id": 476, - "oldId": 383, - "oldData": 105 - }, - { - "name": "minecraft:zombie_villager_spawn_egg", - "id": 477, - "oldId": 383, - "oldData": 44 - }, - { - "name": "minecraft:parrot_spawn_egg", - "id": 478, - "oldId": 383, - "oldData": 30 - }, - { - "name": "minecraft:tropical_fish_spawn_egg", - "id": 479, - "oldId": 383, - "oldData": 111 - }, - { - "name": "minecraft:cod_spawn_egg", - "id": 480, - "oldId": 383, - "oldData": 112 - }, - { - "name": "minecraft:pufferfish_spawn_egg", - "id": 481, - "oldId": 383, - "oldData": 108 - }, - { - "name": "minecraft:salmon_spawn_egg", - "id": 482, - "oldId": 383, - "oldData": 109 - }, - { - "name": "minecraft:drowned_spawn_egg", - "id": 483, - "oldId": 383, - "oldData": 110 - }, - { - "name": "minecraft:dolphin_spawn_egg", - "id": 484, - "oldId": 383, - "oldData": 31 - }, - { - "name": "minecraft:turtle_spawn_egg", - "id": 485, - "oldId": 383, - "oldData": 74 - }, - { - "name": "minecraft:phantom_spawn_egg", - "id": 486, - "oldId": 383, - "oldData": 58 - }, - { - "name": "minecraft:agent_spawn_egg", - "id": 487, - "oldId": 383, - "oldData": 56 - }, - { - "name": "minecraft:cat_spawn_egg", - "id": 488, - "oldId": 383, - "oldData": 75 - }, - { - "name": "minecraft:panda_spawn_egg", - "id": 489, - "oldId": 383, - "oldData": 113 - }, - { - "name": "minecraft:fox_spawn_egg", - "id": 490, - "oldId": 383, - "oldData": 121 - }, - { - "name": "minecraft:pillager_spawn_egg", - "id": 491, - "oldId": 383, - "oldData": 114 - }, - { - "name": "minecraft:wandering_trader_spawn_egg", - "id": 492, - "oldId": 383, - "oldData": 118 - }, - { - "name": "minecraft:ravager_spawn_egg", - "id": 493, - "oldId": 383, - "oldData": 59 - }, - { - "name": "minecraft:bee_spawn_egg", - "id": 494, - "oldId": 383, - "oldData": 122 - }, - { - "name": "minecraft:strider_spawn_egg", - "id": 495, - "oldId": 383, - "oldData": 125 - }, - { - "name": "minecraft:hoglin_spawn_egg", - "id": 496, - "oldId": 383, - "oldData": 124 - }, - { - "name": "minecraft:piglin_spawn_egg", - "id": 497, - "oldId": 383, - "oldData": 123 - }, - { - "name": "minecraft:zoglin_spawn_egg", - "id": 498, - "oldId": 383, - "oldData": 126 - }, - { - "name": "minecraft:piglin_brute_spawn_egg", - "id": 499, - "oldId": 383, - "oldData": 127 - }, - { - "name": "minecraft:axolotl_spawn_egg", - "id": 500, - "oldId": 383, - "oldData": 130 - }, - { - "name": "minecraft:goat_spawn_egg", - "id": 501, - "oldId": 383, - "oldData": 128 - }, - { - "name": "minecraft:glow_squid_spawn_egg", - "id": 502, - "oldId": 383, - "oldData": 129 - }, - { - "name": "minecraft:experience_bottle", - "id": 508, - "oldId": 384 - }, - { - "name": "minecraft:fire_charge", - "id": 509, - "oldId": 385 - }, - { - "name": "minecraft:writable_book", - "id": 510, - "oldId": 386 - }, - { - "name": "minecraft:written_book", - "id": 511, - "oldId": 387 - }, - { - "name": "minecraft:emerald", - "id": 512, - "oldId": 388 - }, - { - "name": "minecraft:frame", - "id": 513, - "oldId": 389 - }, - { - "name": "minecraft:flower_pot", - "id": 514, - "oldId": 390 - }, - { - "name": "minecraft:empty_map", - "id": 515, - "oldId": 395 - }, - { - "name": "minecraft:skull", - "id": 516, - "oldId": 397 - }, - { - "name": "minecraft:carrot_on_a_stick", - "id": 517, - "oldId": 398 - }, - { - "name": "minecraft:nether_star", - "id": 518, - "oldId": 399 - }, - { - "name": "minecraft:firework_rocket", - "id": 519, - "oldId": 401 - }, - { - "name": "minecraft:firework_star", - "id": 520, - "oldId": 402 - }, - { - "name": "minecraft:enchanted_book", - "id": 521, - "oldId": 403 - }, - { - "name": "minecraft:comparator", - "id": 522, - "oldId": 404 - }, - { - "name": "minecraft:netherbrick", - "id": 523, - "oldId": 405 - }, - { - "name": "minecraft:quartz", - "id": 524, - "oldId": 406 - }, - { - "name": "minecraft:tnt_minecart", - "id": 525, - "oldId": 407 - }, - { - "name": "minecraft:hopper_minecart", - "id": 526, - "oldId": 408 - }, - { - "name": "minecraft:hopper", - "id": 527, - "oldId": 410 - }, - { - "name": "minecraft:rabbit_foot", - "id": 528, - "oldId": 414 - }, - { - "name": "minecraft:rabbit_hide", - "id": 529, - "oldId": 415 - }, - { - "name": "minecraft:leather_horse_armor", - "id": 530, - "oldId": 416 - }, - { - "name": "minecraft:iron_horse_armor", - "id": 531, - "oldId": 417 - }, - { - "name": "minecraft:golden_horse_armor", - "id": 532, - "oldId": 418 - }, - { - "name": "minecraft:diamond_horse_armor", - "id": 533, - "oldId": 419 - }, - { - "name": "minecraft:music_disc_13", - "id": 534, - "oldId": 500 - }, - { - "name": "minecraft:music_disc_cat", - "id": 535, - "oldId": 501 - }, - { - "name": "minecraft:music_disc_blocks", - "id": 536, - "oldId": 502 - }, - { - "name": "minecraft:music_disc_chirp", - "id": 537, - "oldId": 503 - }, - { - "name": "minecraft:music_disc_far", - "id": 538, - "oldId": 504 - }, - { - "name": "minecraft:music_disc_mall", - "id": 539, - "oldId": 505 - }, - { - "name": "minecraft:music_disc_mellohi", - "id": 540, - "oldId": 506 - }, - { - "name": "minecraft:music_disc_stal", - "id": 541, - "oldId": 507 - }, - { - "name": "minecraft:music_disc_strad", - "id": 542, - "oldId": 508 - }, - { - "name": "minecraft:music_disc_ward", - "id": 543, - "oldId": 509 - }, - { - "name": "minecraft:music_disc_11", - "id": 544, - "oldId": 510 - }, - { - "name": "minecraft:music_disc_wait", - "id": 545, - "oldId": 511 - }, - { - "name": "minecraft:trident", - "id": 546, - "oldId": 455 - }, - { - "name": "minecraft:lead", - "id": 547, - "oldId": 420 - }, - { - "name": "minecraft:name_tag", - "id": 548, - "oldId": 421 - }, - { - "name": "minecraft:prismarine_crystals", - "id": 549, - "oldId": 422 - }, - { - "name": "minecraft:mutton", - "id": 550, - "oldId": 423 - }, - { - "name": "minecraft:cooked_mutton", - "id": 551, - "oldId": 424 - }, - { - "name": "minecraft:armor_stand", - "id": 552, - "oldId": 425 - }, - { - "name": "minecraft:spruce_door", - "id": 553, - "oldId": 427 - }, - { - "name": "minecraft:birch_door", - "id": 554, - "oldId": 428 - }, - { - "name": "minecraft:jungle_door", - "id": 555, - "oldId": 429 - }, - { - "name": "minecraft:acacia_door", - "id": 556, - "oldId": 430 - }, - { - "name": "minecraft:dark_oak_door", - "id": 557, - "oldId": 431 - }, - { - "name": "minecraft:chorus_fruit", - "id": 558, - "oldId": 432 - }, - { - "name": "minecraft:popped_chorus_fruit", - "id": 559, - "oldId": 433 - }, - { - "name": "minecraft:dragon_breath", - "id": 560, - "oldId": 437 - }, - { - "name": "minecraft:splash_potion", - "id": 561, - "oldId": 438 - }, - { - "name": "minecraft:lingering_potion", - "id": 562, - "oldId": 441 - }, - { - "name": "minecraft:command_block_minecart", - "id": 563, - "oldId": 443 - }, - { - "name": "minecraft:elytra", - "id": 564, - "oldId": 444 - }, - { - "name": "minecraft:prismarine_shard", - "id": 565, - "oldId": 409 - }, - { - "name": "minecraft:shulker_shell", - "id": 566, - "oldId": 445 - }, - { - "name": "minecraft:banner", - "id": 567, - "oldId": 446 - }, - { - "name": "minecraft:totem_of_undying", - "id": 568, - "oldId": 450 - }, - { - "name": "minecraft:iron_nugget", - "id": 569, - "oldId": 452 - }, - { - "name": "minecraft:nautilus_shell", - "id": 570, - "oldId": 465 - }, - { - "name": "minecraft:heart_of_the_sea", - "id": 571, - "oldId": 467 - }, - { - "name": "minecraft:scute", - "id": 572, - "oldId": 468 - }, - { - "name": "minecraft:turtle_helmet", - "id": 573, - "oldId": 469 - }, - { - "name": "minecraft:phantom_membrane", - "id": 574, - "oldId": 470 - }, - { - "name": "minecraft:crossbow", - "id": 575, - "oldId": 471 - }, - { - "name": "minecraft:spruce_sign", - "id": 576, - "oldId": 472 - }, - { - "name": "minecraft:birch_sign", - "id": 577, - "oldId": 473 - }, - { - "name": "minecraft:jungle_sign", - "id": 578, - "oldId": 474 - }, - { - "name": "minecraft:acacia_sign", - "id": 579, - "oldId": 475 - }, - { - "name": "minecraft:dark_oak_sign", - "id": 580, - "oldId": 476 - }, - { - "name": "minecraft:flower_banner_pattern", - "id": 581, - "oldId": 434, - "oldData": 2 - }, - { - "name": "minecraft:creeper_banner_pattern", - "id": 582, - "oldId": 434, - "oldData": 0 - }, - { - "name": "minecraft:skull_banner_pattern", - "id": 583, - "oldId": 434, - "oldData": 1 - }, - { - "name": "minecraft:mojang_banner_pattern", - "id": 584, - "oldId": 434, - "oldData": 3 - }, - { - "name": "minecraft:field_masoned_banner_pattern", - "id": 585, - "oldId": 434, - "oldData": 4 - }, - { - "name": "minecraft:bordure_indented_banner_pattern", - "id": 586, - "oldId": 434, - "oldData": 5 - }, - { - "name": "minecraft:piglin_banner_pattern", - "id": 587, - "oldId": 434, - "oldData": 6 - }, - { - "name": "minecraft:campfire", - "id": 588, - "oldId": 720 - }, - { - "name": "minecraft:suspicious_stew", - "id": 589, - "oldId": 734 - }, - { - "name": "minecraft:honeycomb", - "id": 590, - "oldId": 736 - }, - { - "name": "minecraft:honey_bottle", - "id": 591, - "oldId": 737 - }, - { - "name": "minecraft:camera", - "id": 592, - "oldId": 498 - }, - { - "name": "minecraft:compound", - "id": 593, - "oldId": 499 - }, - { - "name": "minecraft:ice_bomb", - "id": 594, - "oldId": 453 - }, - { - "name": "minecraft:bleach", - "id": 595, - "oldId": 451 - }, - { - "name": "minecraft:rapid_fertilizer", - "id": 596, - "oldId": 449 - }, - { - "name": "minecraft:balloon", - "id": 597, - "oldId": 448 - }, - { - "name": "minecraft:medicine", - "id": 598, - "oldId": 447 - }, - { - "name": "minecraft:sparkler", - "id": 599, - "oldId": 442 - }, - { - "name": "minecraft:lodestone_compass", - "id": 600, - "oldId": 741 - }, - { - "name": "minecraft:netherite_ingot", - "id": 601, - "oldId": 742 - }, - { - "name": "minecraft:netherite_sword", - "id": 602, - "oldId": 743 - }, - { - "name": "minecraft:netherite_shovel", - "id": 603, - "oldId": 744 - }, - { - "name": "minecraft:netherite_pickaxe", - "id": 604, - "oldId": 745 - }, - { - "name": "minecraft:netherite_axe", - "id": 605, - "oldId": 746 - }, - { - "name": "minecraft:netherite_hoe", - "id": 606, - "oldId": 747 - }, - { - "name": "minecraft:netherite_helmet", - "id": 607, - "oldId": 748 - }, - { - "name": "minecraft:netherite_chestplate", - "id": 608, - "oldId": 749 - }, - { - "name": "minecraft:netherite_leggings", - "id": 609, - "oldId": 750 - }, - { - "name": "minecraft:netherite_boots", - "id": 610, - "oldId": 751 - }, - { - "name": "minecraft:netherite_scrap", - "id": 611, - "oldId": 752 - }, - { - "name": "minecraft:crimson_sign", - "id": 612, - "oldId": 753 - }, - { - "name": "minecraft:warped_sign", - "id": 613, - "oldId": 754 - }, - { - "name": "minecraft:crimson_door", - "id": 614, - "oldId": 755 - }, - { - "name": "minecraft:warped_door", - "id": 615, - "oldId": 756 - }, - { - "name": "minecraft:warped_fungus_on_a_stick", - "id": 616, - "oldId": 757 - }, - { - "name": "minecraft:chain", - "id": 617, - "oldId": 758 - }, - { - "name": "minecraft:music_disc_pigstep", - "id": 618, - "oldId": 759 - }, - { - "name": "minecraft:nether_sprouts", - "id": 619, - "oldId": 760 - }, - { - "name": "minecraft:soul_campfire", - "id": 620, - "oldId": 801 - }, - { - "name": "minecraft:boat", - "id": 625, - "oldId": 333, - "deprecated": true - }, - { - "name": "minecraft:dye", - "id": 626, - "oldId": 351, - "deprecated": true - }, - { - "name": "minecraft:banner_pattern", - "id": 627, - "oldId": 434, - "deprecated": true - }, - { - "name": "minecraft:end_crystal", - "id": 629, - "oldId": 426 - } -] + "oldId": -176, + "id": -176 + }, + { "name": "minecraft:smooth_sandstone_stairs", "oldId": -177, "id": -177 }, + { "name": "minecraft:smooth_stone", "oldId": -183, "id": -183 }, + { "name": "minecraft:snow", "oldId": 80, "id": 80 }, + { "name": "minecraft:snow_layer", "oldId": 78, "id": 78 }, + { "name": "minecraft:snowball", "oldId": 374, "id": 374 }, + { "name": "minecraft:soul_campfire", "oldId": 620, "id": 620 }, + { "name": "minecraft:soul_fire", "oldId": -237, "id": -237 }, + { "name": "minecraft:soul_lantern", "oldId": -269, "id": -269 }, + { "name": "minecraft:soul_sand", "oldId": 88, "id": 88 }, + { "name": "minecraft:soul_soil", "oldId": -236, "id": -236 }, + { "name": "minecraft:soul_torch", "oldId": -268, "id": -268 }, + { "name": "minecraft:sparkler", "oldId": 599, "id": 599 }, + { "name": "minecraft:spawn_egg", "oldId": 628, "id": 628 }, + { "name": "minecraft:spider_eye", "oldId": 278, "id": 278 }, + { "name": "minecraft:spider_spawn_egg", "oldId": 446, "id": 446 }, + { "name": "minecraft:splash_potion", "oldId": 561, "id": 561 }, + { "name": "minecraft:sponge", "oldId": 19, "id": 19 }, + { "name": "minecraft:spore_blossom", "oldId": -321, "id": -321 }, + { "name": "minecraft:spruce_boat", "oldId": 378, "id": 378 }, + { "name": "minecraft:spruce_button", "oldId": -144, "id": -144 }, + { "name": "minecraft:spruce_door", "oldId": 553, "id": 553 }, + { "name": "minecraft:spruce_fence_gate", "oldId": 183, "id": 183 }, + { "name": "minecraft:spruce_pressure_plate", "oldId": -154, "id": -154 }, + { "name": "minecraft:spruce_sign", "oldId": 576, "id": 576 }, + { "name": "minecraft:spruce_stairs", "oldId": 134, "id": 134 }, + { "name": "minecraft:spruce_standing_sign", "oldId": -181, "id": -181 }, + { "name": "minecraft:spruce_trapdoor", "oldId": -149, "id": -149 }, + { "name": "minecraft:spruce_wall_sign", "oldId": -182, "id": -182 }, + { "name": "minecraft:spyglass", "oldId": 624, "id": 624 }, + { "name": "minecraft:squid_spawn_egg", "oldId": 450, "id": 450 }, + { "name": "minecraft:stained_glass", "oldId": 241, "id": 241 }, + { "name": "minecraft:stained_glass_pane", "oldId": 160, "id": 160 }, + { "name": "minecraft:stained_hardened_clay", "oldId": 159, "id": 159 }, + { "name": "minecraft:standing_banner", "oldId": 176, "id": 176 }, + { "name": "minecraft:standing_sign", "oldId": 63, "id": 63 }, + { "name": "minecraft:stick", "oldId": 320, "id": 320 }, + { "name": "minecraft:sticky_piston", "oldId": 29, "id": 29 }, + { "name": "minecraft:stickypistonarmcollision", "oldId": -217, "id": -217 }, + { "name": "minecraft:stone", "oldId": 1, "id": 1 }, + { "name": "minecraft:stone_axe", "oldId": 315, "id": 315 }, + { "name": "minecraft:stone_brick_stairs", "oldId": 109, "id": 109 }, + { "name": "minecraft:stone_button", "oldId": 77, "id": 77 }, + { "name": "minecraft:stone_hoe", "oldId": 330, "id": 330 }, + { "name": "minecraft:stone_pickaxe", "oldId": 314, "id": 314 }, + { "name": "minecraft:stone_pressure_plate", "oldId": 70, "id": 70 }, + { "name": "minecraft:stone_shovel", "oldId": 313, "id": 313 }, + { "name": "minecraft:stone_stairs", "oldId": 67, "id": 67 }, + { "name": "minecraft:stone_sword", "oldId": 312, "id": 312 }, + { "name": "minecraft:stonebrick", "oldId": 98, "id": 98 }, + { "name": "minecraft:stonecutter", "oldId": 245, "id": 245 }, + { "name": "minecraft:stonecutter_block", "oldId": -197, "id": -197 }, + { "name": "minecraft:stray_spawn_egg", "oldId": 462, "id": 462 }, + { "name": "minecraft:strider_spawn_egg", "oldId": 495, "id": 495 }, + { "name": "minecraft:string", "oldId": 326, "id": 326 }, + { "name": "minecraft:stripped_acacia_log", "oldId": -8, "id": -8 }, + { "name": "minecraft:stripped_birch_log", "oldId": -6, "id": -6 }, + { "name": "minecraft:stripped_crimson_hyphae", "oldId": -300, "id": -300 }, + { "name": "minecraft:stripped_crimson_stem", "oldId": -240, "id": -240 }, + { "name": "minecraft:stripped_dark_oak_log", "oldId": -9, "id": -9 }, + { "name": "minecraft:stripped_jungle_log", "oldId": -7, "id": -7 }, + { "name": "minecraft:stripped_oak_log", "oldId": -10, "id": -10 }, + { "name": "minecraft:stripped_spruce_log", "oldId": -5, "id": -5 }, + { "name": "minecraft:stripped_warped_hyphae", "oldId": -301, "id": -301 }, + { "name": "minecraft:stripped_warped_stem", "oldId": -241, "id": -241 }, + { "name": "minecraft:structure_block", "oldId": 252, "id": 252 }, + { "name": "minecraft:structure_void", "oldId": 217, "id": 217 }, + { "name": "minecraft:sugar", "oldId": 416, "id": 416 }, + { "name": "minecraft:sugar_cane", "oldId": 385, "id": 385 }, + { "name": "minecraft:suspicious_stew", "oldId": 589, "id": 589 }, + { "name": "minecraft:sweet_berries", "oldId": 287, "id": 287 }, + { "name": "minecraft:sweet_berry_bush", "oldId": -207, "id": -207 }, + { "name": "minecraft:tallgrass", "oldId": 31, "id": 31 }, + { "name": "minecraft:target", "oldId": -239, "id": -239 }, + { "name": "minecraft:tinted_glass", "oldId": -334, "id": -334 }, + { "name": "minecraft:tnt", "oldId": 46, "id": 46 }, + { "name": "minecraft:tnt_minecart", "oldId": 525, "id": 525 }, + { "name": "minecraft:torch", "oldId": 50, "id": 50 }, + { "name": "minecraft:totem_of_undying", "oldId": 568, "id": 568 }, + { "name": "minecraft:trapdoor", "oldId": 96, "id": 96 }, + { "name": "minecraft:trapped_chest", "oldId": 146, "id": 146 }, + { "name": "minecraft:trident", "oldId": 546, "id": 546 }, + { "name": "minecraft:tripwire", "oldId": 132, "id": 132 }, + { "name": "minecraft:tripwire_hook", "oldId": 131, "id": 131 }, + { "name": "minecraft:tropical_fish", "oldId": 266, "id": 266 }, + { "name": "minecraft:tropical_fish_bucket", "oldId": 366, "id": 366 }, + { "name": "minecraft:tropical_fish_spawn_egg", "oldId": 479, "id": 479 }, + { "name": "minecraft:tuff", "oldId": -333, "id": -333 }, + { "name": "minecraft:turtle_egg", "oldId": -159, "id": -159 }, + { "name": "minecraft:turtle_helmet", "oldId": 573, "id": 573 }, + { "name": "minecraft:turtle_spawn_egg", "oldId": 485, "id": 485 }, + { "name": "minecraft:twisting_vines", "oldId": -287, "id": -287 }, + { "name": "minecraft:underwater_torch", "oldId": 239, "id": 239 }, + { "name": "minecraft:undyed_shulker_box", "oldId": 205, "id": 205 }, + { "name": "minecraft:unknown", "oldId": -305, "id": -305 }, + { "name": "minecraft:unlit_redstone_torch", "oldId": 75, "id": 75 }, + { "name": "minecraft:unpowered_comparator", "oldId": 149, "id": 149 }, + { "name": "minecraft:unpowered_repeater", "oldId": 93, "id": 93 }, + { "name": "minecraft:vex_spawn_egg", "oldId": 476, "id": 476 }, + { "name": "minecraft:villager_spawn_egg", "oldId": 449, "id": 449 }, + { "name": "minecraft:vindicator_spawn_egg", "oldId": 474, "id": 474 }, + { "name": "minecraft:vine", "oldId": 106, "id": 106 }, + { "name": "minecraft:wall_banner", "oldId": 177, "id": 177 }, + { "name": "minecraft:wall_sign", "oldId": 68, "id": 68 }, + { "name": "minecraft:wandering_trader_spawn_egg", "oldId": 492, "id": 492 }, + { "name": "minecraft:warped_button", "oldId": -261, "id": -261 }, + { "name": "minecraft:warped_door", "oldId": 615, "id": 615 }, + { "name": "minecraft:warped_double_slab", "oldId": -267, "id": -267 }, + { "name": "minecraft:warped_fence", "oldId": -257, "id": -257 }, + { "name": "minecraft:warped_fence_gate", "oldId": -259, "id": -259 }, + { "name": "minecraft:warped_fungus", "oldId": -229, "id": -229 }, + { "name": "minecraft:warped_fungus_on_a_stick", "oldId": 616, "id": 616 }, + { "name": "minecraft:warped_hyphae", "oldId": -298, "id": -298 }, + { "name": "minecraft:warped_nylium", "oldId": -233, "id": -233 }, + { "name": "minecraft:warped_planks", "oldId": -243, "id": -243 }, + { "name": "minecraft:warped_pressure_plate", "oldId": -263, "id": -263 }, + { "name": "minecraft:warped_roots", "oldId": -224, "id": -224 }, + { "name": "minecraft:warped_sign", "oldId": 613, "id": 613 }, + { "name": "minecraft:warped_slab", "oldId": -265, "id": -265 }, + { "name": "minecraft:warped_stairs", "oldId": -255, "id": -255 }, + { "name": "minecraft:warped_standing_sign", "oldId": -251, "id": -251 }, + { "name": "minecraft:warped_stem", "oldId": -226, "id": -226 }, + { "name": "minecraft:warped_trapdoor", "oldId": -247, "id": -247 }, + { "name": "minecraft:warped_wall_sign", "oldId": -253, "id": -253 }, + { "name": "minecraft:warped_wart_block", "oldId": -227, "id": -227 }, + { "name": "minecraft:water", "oldId": 9, "id": 9 }, + { "name": "minecraft:water_bucket", "oldId": 362, "id": 362 }, + { "name": "minecraft:waterlily", "oldId": 111, "id": 111 }, + { "name": "minecraft:waxed_copper", "oldId": -344, "id": -344 }, + { "name": "minecraft:waxed_cut_copper", "oldId": -351, "id": -351 }, + { "name": "minecraft:waxed_cut_copper_slab", "oldId": -365, "id": -365 }, + { "name": "minecraft:waxed_cut_copper_stairs", "oldId": -358, "id": -358 }, + { + "name": "minecraft:waxed_double_cut_copper_slab", + "oldId": -372, + "id": -372 + }, + { "name": "minecraft:waxed_exposed_copper", "oldId": -345, "id": -345 }, + { "name": "minecraft:waxed_exposed_cut_copper", "oldId": -352, "id": -352 }, + { + "name": "minecraft:waxed_exposed_cut_copper_slab", + "oldId": -366, + "id": -366 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_stairs", + "oldId": -359, + "id": -359 + }, + { + "name": "minecraft:waxed_exposed_double_cut_copper_slab", + "oldId": -373, + "id": -373 + }, + { "name": "minecraft:waxed_oxidized_copper", "oldId": -446, "id": -446 }, + { + "name": "minecraft:waxed_oxidized_cut_copper", + "oldId": -447, + "id": -447 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_slab", + "oldId": -449, + "id": -449 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_stairs", + "oldId": -448, + "id": -448 + }, + { + "name": "minecraft:waxed_oxidized_double_cut_copper_slab", + "oldId": -450, + "id": -450 + }, + { "name": "minecraft:waxed_weathered_copper", "oldId": -346, "id": -346 }, + { + "name": "minecraft:waxed_weathered_cut_copper", + "oldId": -353, + "id": -353 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_slab", + "oldId": -367, + "id": -367 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_stairs", + "oldId": -360, + "id": -360 + }, + { + "name": "minecraft:waxed_weathered_double_cut_copper_slab", + "oldId": -374, + "id": -374 + }, + { "name": "minecraft:weathered_copper", "oldId": -342, "id": -342 }, + { "name": "minecraft:weathered_cut_copper", "oldId": -349, "id": -349 }, + { + "name": "minecraft:weathered_cut_copper_slab", + "oldId": -363, + "id": -363 + }, + { + "name": "minecraft:weathered_cut_copper_stairs", + "oldId": -356, + "id": -356 + }, + { + "name": "minecraft:weathered_double_cut_copper_slab", + "oldId": -370, + "id": -370 + }, + { "name": "minecraft:web", "oldId": 30, "id": 30 }, + { "name": "minecraft:weeping_vines", "oldId": -231, "id": -231 }, + { "name": "minecraft:wheat", "oldId": 334, "id": 334 }, + { "name": "minecraft:wheat_seeds", "oldId": 291, "id": 291 }, + { "name": "minecraft:white_candle", "oldId": -413, "id": -413 }, + { "name": "minecraft:white_candle_cake", "oldId": -430, "id": -430 }, + { "name": "minecraft:white_dye", "oldId": 410, "id": 410 }, + { "name": "minecraft:white_glazed_terracotta", "oldId": 220, "id": 220 }, + { "name": "minecraft:witch_spawn_egg", "oldId": 452, "id": 452 }, + { "name": "minecraft:wither_rose", "oldId": -216, "id": -216 }, + { "name": "minecraft:wither_skeleton_spawn_egg", "oldId": 464, "id": 464 }, + { "name": "minecraft:wolf_spawn_egg", "oldId": 439, "id": 439 }, + { "name": "minecraft:wood", "oldId": -212, "id": -212 }, + { "name": "minecraft:wooden_axe", "oldId": 311, "id": 311 }, + { "name": "minecraft:wooden_button", "oldId": 143, "id": 143 }, + { "name": "minecraft:wooden_door", "oldId": 359, "id": 359 }, + { "name": "minecraft:wooden_hoe", "oldId": 329, "id": 329 }, + { "name": "minecraft:wooden_pickaxe", "oldId": 310, "id": 310 }, + { "name": "minecraft:wooden_pressure_plate", "oldId": 72, "id": 72 }, + { "name": "minecraft:wooden_shovel", "oldId": 309, "id": 309 }, + { "name": "minecraft:wooden_slab", "oldId": 158, "id": 158 }, + { "name": "minecraft:wooden_sword", "oldId": 308, "id": 308 }, + { "name": "minecraft:wool", "oldId": 35, "id": 35 }, + { "name": "minecraft:writable_book", "oldId": 510, "id": 510 }, + { "name": "minecraft:written_book", "oldId": 511, "id": 511 }, + { "name": "minecraft:yellow_candle", "oldId": -417, "id": -417 }, + { "name": "minecraft:yellow_candle_cake", "oldId": -434, "id": -434 }, + { "name": "minecraft:yellow_dye", "oldId": 406, "id": 406 }, + { "name": "minecraft:yellow_flower", "oldId": 37, "id": 37 }, + { "name": "minecraft:yellow_glazed_terracotta", "oldId": 224, "id": 224 }, + { "name": "minecraft:zoglin_spawn_egg", "oldId": 498, "id": 498 }, + { "name": "minecraft:zombie_horse_spawn_egg", "oldId": 468, "id": 468 }, + { "name": "minecraft:zombie_pigman_spawn_egg", "oldId": 448, "id": 448 }, + { "name": "minecraft:zombie_spawn_egg", "oldId": 447, "id": 447 }, + { "name": "minecraft:zombie_villager_spawn_egg", "oldId": 477, "id": 477 } +] \ No newline at end of file From fbf7496ac4366e0b60334bd1f3ddf37a10915e90 Mon Sep 17 00:00:00 2001 From: zzz <1173572640@qq.com> Date: Thu, 21 Oct 2021 14:48:05 -0500 Subject: [PATCH 233/394] add headYaw field (#1905) * supported headYaw probably * update --- src/main/java/cn/nukkit/entity/Entity.java | 30 +++++++++++--- src/main/java/cn/nukkit/level/Location.java | 46 ++++++++++++++------- 2 files changed, 57 insertions(+), 19 deletions(-) diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 80aadf8586b..44b12362e34 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -327,11 +327,13 @@ public abstract class Entity extends Location implements Metadatable { public double lastMotionY; public double lastMotionZ; - public double lastYaw; public double lastPitch; + public double lastYaw; + public double lastHeadYaw; public double pitchDelta; public double yawDelta; + public double headYawDelta; public double entityCollisionReduction = 0; // Higher than 0.9 will result a fast collisions public AxisAlignedBB boundingBox; @@ -1438,9 +1440,11 @@ public void updateMovement() { this.lastY = this.y; this.lastZ = this.z; - this.lastYaw = this.yaw; this.lastPitch = this.pitch; + this.lastYaw = this.yaw; + this.lastHeadYaw = this.headYaw; + // If you want to achieve headYaw in movement. You can override it by yourself. Changing would break some mob plugins. this.addMovement(this.x, this.y + this.getBaseOffset(), this.z, this.yaw, this.pitch, this.yaw); } @@ -1830,7 +1834,7 @@ public Position getPosition() { } public Location getLocation() { - return new Location(this.x, this.y, this.z, this.yaw, this.pitch, this.level); + return new Location(this.x, this.y, this.z, this.yaw, this.pitch, this.headYaw, this.level); } public boolean isInsideOfWater() { @@ -2119,12 +2123,28 @@ public boolean setPositionAndRotation(Vector3 pos, double yaw, double pitch) { return false; } + public boolean setPositionAndRotation(Vector3 pos, double yaw, double pitch, double headYaw) { + if (this.setPosition(pos)) { + this.setRotation(yaw, pitch, headYaw); + return true; + } + + return false; + } + public void setRotation(double yaw, double pitch) { this.yaw = yaw; this.pitch = pitch; this.scheduleUpdate(); } + public void setRotation(double yaw, double pitch, double headYaw) { + this.yaw = yaw; + this.pitch = pitch; + this.headYaw = headYaw; + this.scheduleUpdate(); + } + /** * Whether the entity can active pressure plates. * Used for {@link cn.nukkit.entity.passive.EntityBat}s only. @@ -2233,7 +2253,7 @@ public boolean teleport(Vector3 pos) { } public boolean teleport(Vector3 pos, PlayerTeleportEvent.TeleportCause cause) { - return this.teleport(Location.fromObject(pos, this.level, this.yaw, this.pitch), cause); + return this.teleport(Location.fromObject(pos, this.level, this.yaw, this.pitch, this.headYaw), cause); } public boolean teleport(Position pos) { @@ -2241,7 +2261,7 @@ public boolean teleport(Position pos) { } public boolean teleport(Position pos, PlayerTeleportEvent.TeleportCause cause) { - return this.teleport(Location.fromObject(pos, pos.level, this.yaw, this.pitch), cause); + return this.teleport(Location.fromObject(pos, pos.level, this.yaw, this.pitch, this.headYaw), cause); } public boolean teleport(Location location) { diff --git a/src/main/java/cn/nukkit/level/Location.java b/src/main/java/cn/nukkit/level/Location.java index d6f0fc863ad..baa119cc08d 100644 --- a/src/main/java/cn/nukkit/level/Location.java +++ b/src/main/java/cn/nukkit/level/Location.java @@ -11,6 +11,7 @@ public class Location extends Position { public double yaw; public double pitch; + public double headYaw; public Location() { this(0); @@ -24,14 +25,14 @@ public Location(double x, double y) { this(x, y, 0); } - public Location(double x, double y, double z, Level level) { - this(x, y, z, 0, 0, level); - } - public Location(double x, double y, double z) { this(x, y, z, 0); } + public Location(double x, double y, double z, Level level) { + this(x, y, z, 0, 0, level); + } + public Location(double x, double y, double z, double yaw) { this(x, y, z, yaw, 0); } @@ -41,11 +42,20 @@ public Location(double x, double y, double z, double yaw, double pitch) { } public Location(double x, double y, double z, double yaw, double pitch, Level level) { + this(x, y, z, yaw, pitch, 0, level); + } + + public Location(double x, double y, double z, double yaw, double pitch, double headYaw) { + this(x, y, z, yaw, pitch, headYaw, null); + } + + public Location(double x, double y, double z, double yaw, double pitch, double headYaw, Level level) { this.x = x; this.y = y; this.z = z; this.yaw = yaw; this.pitch = pitch; + this.headYaw = headYaw; this.level = level; } @@ -65,6 +75,10 @@ public static Location fromObject(Vector3 pos, Level level, double yaw, double p return new Location(pos.x, pos.y, pos.z, yaw, pitch, (level == null) ? ((pos instanceof Position) ? ((Position) pos).level : null) : level); } + public static Location fromObject(Vector3 pos, Level level, double yaw, double pitch, double headYaw) { + return new Location(pos.x, pos.y, pos.z, yaw, pitch, headYaw, (level == null) ? ((pos instanceof Position) ? ((Position) pos).level : null) : level); + } + public double getYaw() { return this.yaw; } @@ -73,14 +87,18 @@ public double getPitch() { return this.pitch; } + public double getHeadYaw() { + return this.headYaw; + } + @Override public String toString() { - return "Location (level=" + (this.isValid() ? this.getLevel().getName() : "null") + ", x=" + this.x + ", y=" + this.y + ", z=" + this.z + ", yaw=" + this.yaw + ", pitch=" + this.pitch + ")"; + return "Location (level=" + (this.isValid() ? this.getLevel().getName() : "null") + ", x=" + this.x + ", y=" + this.y + ", z=" + this.z + ", yaw=" + this.yaw + ", pitch=" + this.pitch + ", headYaw=" + this.headYaw + ")"; } @Override public Location getLocation() { - if (this.isValid()) return new Location(this.x, this.y, this.z, this.yaw, this.pitch, this.level); + if (this.isValid()) return new Location(this.x, this.y, this.z, this.yaw, this.pitch, this.headYaw, this.level); else throw new LevelException("Undefined Level reference"); } @@ -96,12 +114,12 @@ public Location add(double x, double y) { @Override public Location add(double x, double y, double z) { - return new Location(this.x + x, this.y + y, this.z + z, this.yaw, this.pitch, this.level); + return new Location(this.x + x, this.y + y, this.z + z, this.yaw, this.pitch, this.headYaw, this.level); } @Override public Location add(Vector3 x) { - return new Location(this.x + x.getX(), this.y + x.getY(), this.z + x.getZ(), this.yaw, this.pitch, this.level); + return new Location(this.x + x.getX(), this.y + x.getY(), this.z + x.getZ(), this.yaw, this.pitch, this.headYaw, this.level); } @Override @@ -131,32 +149,32 @@ public Location subtract(Vector3 x) { @Override public Location multiply(double number) { - return new Location(this.x * number, this.y * number, this.z * number, this.yaw, this.pitch, this.level); + return new Location(this.x * number, this.y * number, this.z * number, this.yaw, this.pitch, this.headYaw, this.level); } @Override public Location divide(double number) { - return new Location(this.x / number, this.y / number, this.z / number, this.yaw, this.pitch, this.level); + return new Location(this.x / number, this.y / number, this.z / number, this.yaw, this.pitch, this.headYaw, this.level); } @Override public Location ceil() { - return new Location((int) Math.ceil(this.x), (int) Math.ceil(this.y), (int) Math.ceil(this.z), this.yaw, this.pitch, this.level); + return new Location((int) Math.ceil(this.x), (int) Math.ceil(this.y), (int) Math.ceil(this.z), this.yaw, this.pitch, this.headYaw, this.level); } @Override public Location floor() { - return new Location(this.getFloorX(), this.getFloorY(), this.getFloorZ(), this.yaw, this.pitch, this.level); + return new Location(this.getFloorX(), this.getFloorY(), this.getFloorZ(), this.yaw, this.pitch, this.headYaw, this.level); } @Override public Location round() { - return new Location(Math.round(this.x), Math.round(this.y), Math.round(this.z), this.yaw, this.pitch, this.level); + return new Location(Math.round(this.x), Math.round(this.y), Math.round(this.z), this.yaw, this.pitch, this.headYaw, this.level); } @Override public Location abs() { - return new Location((int) Math.abs(this.x), (int) Math.abs(this.y), (int) Math.abs(this.z), this.yaw, this.pitch, this.level); + return new Location((int) Math.abs(this.x), (int) Math.abs(this.y), (int) Math.abs(this.z), this.yaw, this.pitch, this.headYaw, this.level); } public Vector3 getDirectionVector() { From 4b5dfc9b2c228fbe7f78da078c143f15e70136c0 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 23 Oct 2021 15:45:27 -0300 Subject: [PATCH 234/394] Update translations and add French Help us to translate PowerNukkit at: https://translate.powernukkit.org --- src/main/resources/lang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/lang b/src/main/resources/lang index ad741024962..6e8b528d401 160000 --- a/src/main/resources/lang +++ b/src/main/resources/lang @@ -1 +1 @@ -Subproject commit ad7410249621d0c781ce246ffbf8641196b320e7 +Subproject commit 6e8b528d4010635d063f30c7ebb4003b5ffdcb8a From 449bc386f393285aa2437702996b73ea6fcb955b Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 23 Oct 2021 16:47:01 -0300 Subject: [PATCH 235/394] Update resources. NOT READY FOR USE YET! --- .idea/codeStyles/Project.xml | 18 - dumps/block-properties.ini | 1 + dumps/block-states.ini | 7 + dumps/runtime_block_states.dat.dump.txt | 14074 ++++++++-------- dumps/simple-blocks-nukkit.txt | 3 + src/main/java/cn/nukkit/block/BlockID.java | 1 - .../blockproperty/ArrayBlockProperty.java | 7 +- .../nukkit/blockstate/BlockStateRegistry.java | 6 +- .../cn/nukkit/inventory/CraftingManager.java | 4 + src/main/resources/block_ids.csv | 14 +- src/main/resources/creativeitems.json | 10408 ++++++------ src/main/resources/entity_identifiers.dat | Bin 7382 -> 7382 bytes src/main/resources/recipes.json | 2 +- src/main/resources/runtime_item_ids.json | 5897 +++++-- src/test/resources/required_item_list.json | 118 +- 15 files changed, 16807 insertions(+), 13753 deletions(-) diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml index a0a77b1b2f8..b66515b41bd 100644 --- a/.idea/codeStyles/Project.xml +++ b/.idea/codeStyles/Project.xml @@ -13,24 +13,6 @@ - - - - diff --git a/dumps/block-properties.ini b/dumps/block-properties.ini index b65a56f6384..7d8292e7269 100644 --- a/dumps/block-properties.ini +++ b/dumps/block-properties.ini @@ -16,6 +16,7 @@ big_dripleaf_head=0,1 big_dripleaf_tilt=full_tilt,none,partial_tilt,unstable bite_counter=0,1,2,3,4,5,6 block_light_level=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 +bloom=0,1 brewing_stand_slot_a_bit=0,1 brewing_stand_slot_b_bit=0,1 brewing_stand_slot_c_bit=0,1 diff --git a/dumps/block-states.ini b/dumps/block-states.ini index ffc220e4f2f..7f6b7977dd5 100644 --- a/dumps/block-states.ini +++ b/dumps/block-states.ini @@ -310,6 +310,8 @@ age=0,1,2,3,4,5 [minecraft:clay] +[minecraft:client_request_placeholder_block] + [minecraft:coal_block] [minecraft:coal_ore] @@ -1279,6 +1281,10 @@ weirdo_direction=0,1,2,3 [minecraft:mycelium] +[minecraft:mysterious_frame] + +[minecraft:mysterious_frame_slot] + [minecraft:nether_brick] [minecraft:nether_brick_fence] @@ -1598,6 +1604,7 @@ stability_check=0,1 [minecraft:sculk] [minecraft:sculk_catalyst] +bloom=0,1 [minecraft:sculk_sensor] powered_bit=0,1 diff --git a/dumps/runtime_block_states.dat.dump.txt b/dumps/runtime_block_states.dat.dump.txt index 54988f0ef00..413cf597e5f 100644 --- a/dumps/runtime_block_states.dat.dump.txt +++ b/dumps/runtime_block_states.dat.dump.txt @@ -856,16 +856,8 @@ minecraft:barrier blockId=416 runtimeId=213 -minecraft:basalt;pillar_axis=x -blockId=489 -runtimeId=215 - minecraft:basalt;pillar_axis=y blockId=489 -runtimeId=214 - -minecraft:basalt;pillar_axis=z -blockId=489 runtimeId=216 minecraft:beacon @@ -2768,52 +2760,20 @@ minecraft:blue_ice blockId=266 runtimeId=691 -minecraft:bone_block;deprecated=0;pillar_axis=x -blockId=216 -runtimeId=696 - minecraft:bone_block;deprecated=0;pillar_axis=y blockId=216 -runtimeId=692 - -minecraft:bone_block;deprecated=0;pillar_axis=z -blockId=216 runtimeId=700 -minecraft:bone_block;deprecated=1;pillar_axis=x -blockId=216 -runtimeId=697 - minecraft:bone_block;deprecated=1;pillar_axis=y blockId=216 -runtimeId=693 - -minecraft:bone_block;deprecated=1;pillar_axis=z -blockId=216 runtimeId=701 -minecraft:bone_block;deprecated=2;pillar_axis=x -blockId=216 -runtimeId=698 - minecraft:bone_block;deprecated=2;pillar_axis=y blockId=216 -runtimeId=694 - -minecraft:bone_block;deprecated=2;pillar_axis=z -blockId=216 runtimeId=702 -minecraft:bone_block;deprecated=3;pillar_axis=x -blockId=216 -runtimeId=699 - minecraft:bone_block;deprecated=3;pillar_axis=y blockId=216 -runtimeId=695 - -minecraft:bone_block;deprecated=3;pillar_axis=z -blockId=216 runtimeId=703 minecraft:bookshelf @@ -4364,16 +4324,8 @@ minecraft:cave_vines_head_with_berries;growing_plant_age=25 blockId=631 runtimeId=1090 -minecraft:chain;pillar_axis=x -blockId=541 -runtimeId=1092 - minecraft:chain;pillar_axis=y blockId=541 -runtimeId=1091 - -minecraft:chain;pillar_axis=z -blockId=541 runtimeId=1093 minecraft:chain_command_block;conditional_bit=0;facing_direction=0 @@ -4560,27219 +4512,26855 @@ minecraft:clay blockId=82 runtimeId=1139 +minecraft:client_request_placeholder_block +blockId=-1 +runtimeId=1140 + minecraft:coal_block blockId=173 -runtimeId=1140 +runtimeId=1141 minecraft:coal_ore blockId=16 -runtimeId=1141 +runtimeId=1142 minecraft:cobbled_deepslate blockId=634 -runtimeId=1142 +runtimeId=1143 minecraft:cobbled_deepslate_double_slab;top_slot_bit=0 blockId=651 -runtimeId=1143 +runtimeId=1144 minecraft:cobbled_deepslate_double_slab;top_slot_bit=1 blockId=651 -runtimeId=1144 +runtimeId=1145 minecraft:cobbled_deepslate_slab;top_slot_bit=0 blockId=635 -runtimeId=1145 +runtimeId=1146 minecraft:cobbled_deepslate_slab;top_slot_bit=1 blockId=635 -runtimeId=1146 +runtimeId=1147 minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=0 blockId=636 -runtimeId=1147 +runtimeId=1148 minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=1 blockId=636 -runtimeId=1148 +runtimeId=1149 minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=2 blockId=636 -runtimeId=1149 +runtimeId=1150 minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=3 blockId=636 -runtimeId=1150 +runtimeId=1151 minecraft:cobbled_deepslate_stairs;upside_down_bit=1;weirdo_direction=0 blockId=636 -runtimeId=1151 +runtimeId=1152 minecraft:cobbled_deepslate_stairs;upside_down_bit=1;weirdo_direction=1 blockId=636 -runtimeId=1152 +runtimeId=1153 minecraft:cobbled_deepslate_stairs;upside_down_bit=1;weirdo_direction=2 blockId=636 -runtimeId=1153 +runtimeId=1154 minecraft:cobbled_deepslate_stairs;upside_down_bit=1;weirdo_direction=3 blockId=636 -runtimeId=1154 +runtimeId=1155 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1155 +runtimeId=1156 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1157 +runtimeId=1158 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1159 +runtimeId=1160 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1209 +runtimeId=1210 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1211 +runtimeId=1212 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1213 +runtimeId=1214 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1263 +runtimeId=1264 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1265 +runtimeId=1266 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1267 +runtimeId=1268 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1173 +runtimeId=1174 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1175 +runtimeId=1176 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1177 +runtimeId=1178 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1227 +runtimeId=1228 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1229 +runtimeId=1230 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1231 +runtimeId=1232 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1281 +runtimeId=1282 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1283 +runtimeId=1284 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1285 +runtimeId=1286 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1191 +runtimeId=1192 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1193 +runtimeId=1194 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1195 +runtimeId=1196 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1245 +runtimeId=1246 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1247 +runtimeId=1248 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1249 +runtimeId=1250 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1299 +runtimeId=1300 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1301 +runtimeId=1302 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1303 +runtimeId=1304 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1156 +runtimeId=1157 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1158 +runtimeId=1159 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1160 +runtimeId=1161 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1210 +runtimeId=1211 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1212 +runtimeId=1213 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1214 +runtimeId=1215 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1264 +runtimeId=1265 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1266 +runtimeId=1267 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1268 +runtimeId=1269 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1174 +runtimeId=1175 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1176 +runtimeId=1177 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1178 +runtimeId=1179 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1228 +runtimeId=1229 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1230 +runtimeId=1231 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1232 +runtimeId=1233 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1282 +runtimeId=1283 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1284 +runtimeId=1285 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1286 +runtimeId=1287 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1192 +runtimeId=1193 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1194 +runtimeId=1195 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1196 +runtimeId=1197 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1246 +runtimeId=1247 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1248 +runtimeId=1249 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1250 +runtimeId=1251 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1300 +runtimeId=1301 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1302 +runtimeId=1303 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1304 +runtimeId=1305 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1161 +runtimeId=1162 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1163 +runtimeId=1164 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1165 +runtimeId=1166 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1215 +runtimeId=1216 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1217 +runtimeId=1218 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1219 +runtimeId=1220 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1269 +runtimeId=1270 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1271 +runtimeId=1272 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1273 +runtimeId=1274 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1179 +runtimeId=1180 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1181 +runtimeId=1182 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1183 +runtimeId=1184 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1233 +runtimeId=1234 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1235 +runtimeId=1236 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1237 +runtimeId=1238 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1287 +runtimeId=1288 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1289 +runtimeId=1290 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1291 +runtimeId=1292 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1197 +runtimeId=1198 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1199 +runtimeId=1200 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1201 +runtimeId=1202 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1251 +runtimeId=1252 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1253 +runtimeId=1254 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1255 +runtimeId=1256 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1305 +runtimeId=1306 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1307 +runtimeId=1308 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1309 +runtimeId=1310 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1162 +runtimeId=1163 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1164 +runtimeId=1165 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1166 +runtimeId=1167 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1216 +runtimeId=1217 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1218 +runtimeId=1219 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1220 +runtimeId=1221 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1270 +runtimeId=1271 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1272 +runtimeId=1273 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1274 +runtimeId=1275 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1180 +runtimeId=1181 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1182 +runtimeId=1183 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1184 +runtimeId=1185 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1234 +runtimeId=1235 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1236 +runtimeId=1237 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1238 +runtimeId=1239 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1288 +runtimeId=1289 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1290 +runtimeId=1291 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1292 +runtimeId=1293 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1198 +runtimeId=1199 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1200 +runtimeId=1201 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1202 +runtimeId=1203 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1252 +runtimeId=1253 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1254 +runtimeId=1255 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1256 +runtimeId=1257 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1306 +runtimeId=1307 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1308 +runtimeId=1309 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1310 +runtimeId=1311 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1167 +runtimeId=1168 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1169 +runtimeId=1170 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1171 +runtimeId=1172 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1221 +runtimeId=1222 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1223 +runtimeId=1224 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1225 +runtimeId=1226 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1275 +runtimeId=1276 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1277 +runtimeId=1278 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1279 +runtimeId=1280 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1185 +runtimeId=1186 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1187 +runtimeId=1188 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1189 +runtimeId=1190 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1239 +runtimeId=1240 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1241 +runtimeId=1242 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1243 +runtimeId=1244 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1293 +runtimeId=1294 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1295 +runtimeId=1296 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1297 +runtimeId=1298 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1203 +runtimeId=1204 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1205 +runtimeId=1206 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1207 +runtimeId=1208 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1257 +runtimeId=1258 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1259 +runtimeId=1260 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1261 +runtimeId=1262 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1311 +runtimeId=1312 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1313 +runtimeId=1314 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1315 +runtimeId=1316 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1168 +runtimeId=1169 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1170 +runtimeId=1171 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1172 +runtimeId=1173 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1222 +runtimeId=1223 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1224 +runtimeId=1225 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1226 +runtimeId=1227 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1276 +runtimeId=1277 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1278 +runtimeId=1279 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1280 +runtimeId=1281 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1186 +runtimeId=1187 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1188 +runtimeId=1189 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1190 +runtimeId=1191 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1240 +runtimeId=1241 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1242 +runtimeId=1243 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1244 +runtimeId=1245 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1294 +runtimeId=1295 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1296 +runtimeId=1297 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1298 +runtimeId=1299 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1204 +runtimeId=1205 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1206 +runtimeId=1207 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1208 +runtimeId=1209 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1258 +runtimeId=1259 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1260 +runtimeId=1261 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1262 +runtimeId=1263 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1312 +runtimeId=1313 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1314 +runtimeId=1315 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1316 +runtimeId=1317 minecraft:cobblestone blockId=4 -runtimeId=1317 +runtimeId=1318 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1322 +runtimeId=1323 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1324 +runtimeId=1325 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1318 +runtimeId=1319 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1321 +runtimeId=1322 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1328 +runtimeId=1329 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1320 +runtimeId=1321 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1319 +runtimeId=1320 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1326 +runtimeId=1327 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1327 +runtimeId=1328 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1329 +runtimeId=1330 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1331 +runtimeId=1332 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1330 +runtimeId=1331 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1323 +runtimeId=1324 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1325 +runtimeId=1326 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1350 +runtimeId=1351 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1352 +runtimeId=1353 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1346 +runtimeId=1347 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1349 +runtimeId=1350 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1356 +runtimeId=1357 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1348 +runtimeId=1349 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1347 +runtimeId=1348 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1354 +runtimeId=1355 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1355 +runtimeId=1356 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1357 +runtimeId=1358 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1359 +runtimeId=1360 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1358 +runtimeId=1359 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1351 +runtimeId=1352 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1353 +runtimeId=1354 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1378 +runtimeId=1379 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1380 +runtimeId=1381 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1374 +runtimeId=1375 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1377 +runtimeId=1378 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1384 +runtimeId=1385 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1376 +runtimeId=1377 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1375 +runtimeId=1376 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1382 +runtimeId=1383 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1383 +runtimeId=1384 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1385 +runtimeId=1386 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1387 +runtimeId=1388 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1386 +runtimeId=1387 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1379 +runtimeId=1380 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1381 +runtimeId=1382 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2078 +runtimeId=2079 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2080 +runtimeId=2081 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2074 +runtimeId=2075 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2077 +runtimeId=2078 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2084 +runtimeId=2085 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2076 +runtimeId=2077 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2075 +runtimeId=2076 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2082 +runtimeId=2083 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2083 +runtimeId=2084 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2085 +runtimeId=2086 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2087 +runtimeId=2088 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2086 +runtimeId=2087 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2079 +runtimeId=2080 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2081 +runtimeId=2082 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2106 +runtimeId=2107 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2108 +runtimeId=2109 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2102 +runtimeId=2103 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2105 +runtimeId=2106 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2112 +runtimeId=2113 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2104 +runtimeId=2105 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2103 +runtimeId=2104 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2110 +runtimeId=2111 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2111 +runtimeId=2112 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2113 +runtimeId=2114 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2115 +runtimeId=2116 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2114 +runtimeId=2115 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2107 +runtimeId=2108 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2109 +runtimeId=2110 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2134 +runtimeId=2135 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2136 +runtimeId=2137 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2130 +runtimeId=2131 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2133 +runtimeId=2134 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2140 +runtimeId=2141 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2132 +runtimeId=2133 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2131 +runtimeId=2132 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2138 +runtimeId=2139 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2139 +runtimeId=2140 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2141 +runtimeId=2142 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2143 +runtimeId=2144 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2142 +runtimeId=2143 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2135 +runtimeId=2136 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2137 +runtimeId=2138 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2834 +runtimeId=2835 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2836 +runtimeId=2837 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2830 +runtimeId=2831 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2833 +runtimeId=2834 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2840 +runtimeId=2841 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2832 +runtimeId=2833 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2831 +runtimeId=2832 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2838 +runtimeId=2839 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2839 +runtimeId=2840 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2841 +runtimeId=2842 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2843 +runtimeId=2844 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2842 +runtimeId=2843 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2835 +runtimeId=2836 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2837 +runtimeId=2838 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2862 +runtimeId=2863 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2864 +runtimeId=2865 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2858 +runtimeId=2859 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2861 +runtimeId=2862 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2868 +runtimeId=2869 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2860 +runtimeId=2861 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2859 +runtimeId=2860 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2866 +runtimeId=2867 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2867 +runtimeId=2868 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2869 +runtimeId=2870 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2871 +runtimeId=2872 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2870 +runtimeId=2871 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2863 +runtimeId=2864 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2865 +runtimeId=2866 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2890 +runtimeId=2891 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2892 +runtimeId=2893 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2886 +runtimeId=2887 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2889 +runtimeId=2890 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2896 +runtimeId=2897 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2888 +runtimeId=2889 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2887 +runtimeId=2888 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2894 +runtimeId=2895 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2895 +runtimeId=2896 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2897 +runtimeId=2898 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2899 +runtimeId=2900 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2898 +runtimeId=2899 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2891 +runtimeId=2892 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2893 +runtimeId=2894 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1574 +runtimeId=1575 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1576 +runtimeId=1577 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1570 +runtimeId=1571 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1573 +runtimeId=1574 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1580 +runtimeId=1581 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1572 +runtimeId=1573 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1571 +runtimeId=1572 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1578 +runtimeId=1579 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1579 +runtimeId=1580 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1581 +runtimeId=1582 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1583 +runtimeId=1584 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1582 +runtimeId=1583 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1575 +runtimeId=1576 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1577 +runtimeId=1578 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1602 +runtimeId=1603 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1604 +runtimeId=1605 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1598 +runtimeId=1599 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1601 +runtimeId=1602 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1608 +runtimeId=1609 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1600 +runtimeId=1601 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1599 +runtimeId=1600 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1606 +runtimeId=1607 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1607 +runtimeId=1608 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1609 +runtimeId=1610 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1611 +runtimeId=1612 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1610 +runtimeId=1611 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1603 +runtimeId=1604 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1605 +runtimeId=1606 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1630 +runtimeId=1631 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1632 +runtimeId=1633 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1626 +runtimeId=1627 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1629 +runtimeId=1630 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1636 +runtimeId=1637 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1628 +runtimeId=1629 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1627 +runtimeId=1628 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1634 +runtimeId=1635 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1635 +runtimeId=1636 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1637 +runtimeId=1638 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1639 +runtimeId=1640 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1638 +runtimeId=1639 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1631 +runtimeId=1632 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1633 +runtimeId=1634 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2330 +runtimeId=2331 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2332 +runtimeId=2333 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2326 +runtimeId=2327 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2329 +runtimeId=2330 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2336 +runtimeId=2337 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2328 +runtimeId=2329 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2327 +runtimeId=2328 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2334 +runtimeId=2335 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2335 +runtimeId=2336 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2337 +runtimeId=2338 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2339 +runtimeId=2340 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2338 +runtimeId=2339 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2331 +runtimeId=2332 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2333 +runtimeId=2334 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2358 +runtimeId=2359 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2360 +runtimeId=2361 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2354 +runtimeId=2355 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2357 +runtimeId=2358 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2364 +runtimeId=2365 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2356 +runtimeId=2357 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2355 +runtimeId=2356 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2362 +runtimeId=2363 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2363 +runtimeId=2364 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2365 +runtimeId=2366 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2367 +runtimeId=2368 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2366 +runtimeId=2367 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2359 +runtimeId=2360 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2361 +runtimeId=2362 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2386 +runtimeId=2387 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2388 +runtimeId=2389 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2382 +runtimeId=2383 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2385 +runtimeId=2386 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2392 +runtimeId=2393 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2384 +runtimeId=2385 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2383 +runtimeId=2384 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2390 +runtimeId=2391 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2391 +runtimeId=2392 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2393 +runtimeId=2394 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2395 +runtimeId=2396 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2394 +runtimeId=2395 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2387 +runtimeId=2388 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2389 +runtimeId=2390 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3086 +runtimeId=3087 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3088 +runtimeId=3089 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3082 +runtimeId=3083 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3085 +runtimeId=3086 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3092 +runtimeId=3093 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3084 +runtimeId=3085 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3083 +runtimeId=3084 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3090 +runtimeId=3091 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3091 +runtimeId=3092 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3093 +runtimeId=3094 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3095 +runtimeId=3096 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3094 +runtimeId=3095 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3087 +runtimeId=3088 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3089 +runtimeId=3090 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3114 +runtimeId=3115 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3116 +runtimeId=3117 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3110 +runtimeId=3111 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3113 +runtimeId=3114 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3120 +runtimeId=3121 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3112 +runtimeId=3113 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3111 +runtimeId=3112 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3118 +runtimeId=3119 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3119 +runtimeId=3120 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3121 +runtimeId=3122 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3123 +runtimeId=3124 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3122 +runtimeId=3123 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3115 +runtimeId=3116 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3117 +runtimeId=3118 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3142 +runtimeId=3143 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3144 +runtimeId=3145 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3138 +runtimeId=3139 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3141 +runtimeId=3142 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3148 +runtimeId=3149 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3140 +runtimeId=3141 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3139 +runtimeId=3140 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3146 +runtimeId=3147 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3147 +runtimeId=3148 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3149 +runtimeId=3150 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3151 +runtimeId=3152 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3150 +runtimeId=3151 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3143 +runtimeId=3144 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3145 +runtimeId=3146 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1826 +runtimeId=1827 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1828 +runtimeId=1829 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1822 +runtimeId=1823 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1825 +runtimeId=1826 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1832 +runtimeId=1833 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1824 +runtimeId=1825 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1823 +runtimeId=1824 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1830 +runtimeId=1831 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1831 +runtimeId=1832 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1833 +runtimeId=1834 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1835 +runtimeId=1836 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1834 +runtimeId=1835 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1827 +runtimeId=1828 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1829 +runtimeId=1830 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1854 +runtimeId=1855 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1856 +runtimeId=1857 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1850 +runtimeId=1851 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1853 +runtimeId=1854 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1860 +runtimeId=1861 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1852 +runtimeId=1853 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1851 +runtimeId=1852 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1858 +runtimeId=1859 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1859 +runtimeId=1860 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1861 +runtimeId=1862 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1863 +runtimeId=1864 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1862 +runtimeId=1863 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1855 +runtimeId=1856 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1857 +runtimeId=1858 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1882 +runtimeId=1883 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1884 +runtimeId=1885 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1878 +runtimeId=1879 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1881 +runtimeId=1882 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1888 +runtimeId=1889 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1880 +runtimeId=1881 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1879 +runtimeId=1880 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1886 +runtimeId=1887 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1887 +runtimeId=1888 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1889 +runtimeId=1890 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1891 +runtimeId=1892 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1890 +runtimeId=1891 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1883 +runtimeId=1884 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1885 +runtimeId=1886 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2582 +runtimeId=2583 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2584 +runtimeId=2585 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2578 +runtimeId=2579 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2581 +runtimeId=2582 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2588 +runtimeId=2589 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2580 +runtimeId=2581 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2579 +runtimeId=2580 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2586 +runtimeId=2587 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2587 +runtimeId=2588 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2589 +runtimeId=2590 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2591 +runtimeId=2592 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2590 +runtimeId=2591 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2583 +runtimeId=2584 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2585 +runtimeId=2586 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2610 +runtimeId=2611 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2612 +runtimeId=2613 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2606 +runtimeId=2607 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2609 +runtimeId=2610 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2616 +runtimeId=2617 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2608 +runtimeId=2609 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2607 +runtimeId=2608 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2614 +runtimeId=2615 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2615 +runtimeId=2616 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2617 +runtimeId=2618 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2619 +runtimeId=2620 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2618 +runtimeId=2619 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2611 +runtimeId=2612 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2613 +runtimeId=2614 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2638 +runtimeId=2639 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2640 +runtimeId=2641 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2634 +runtimeId=2635 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2637 +runtimeId=2638 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2644 +runtimeId=2645 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2636 +runtimeId=2637 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2635 +runtimeId=2636 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2642 +runtimeId=2643 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2643 +runtimeId=2644 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2645 +runtimeId=2646 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2647 +runtimeId=2648 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2646 +runtimeId=2647 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2639 +runtimeId=2640 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2641 +runtimeId=2642 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3338 +runtimeId=3339 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3340 +runtimeId=3341 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3334 +runtimeId=3335 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3337 +runtimeId=3338 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3344 +runtimeId=3345 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3336 +runtimeId=3337 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3335 +runtimeId=3336 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3342 +runtimeId=3343 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3343 +runtimeId=3344 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3345 +runtimeId=3346 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3347 +runtimeId=3348 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3346 +runtimeId=3347 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3339 +runtimeId=3340 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3341 +runtimeId=3342 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3366 +runtimeId=3367 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3368 +runtimeId=3369 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3362 +runtimeId=3363 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3365 +runtimeId=3366 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3372 +runtimeId=3373 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3364 +runtimeId=3365 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3363 +runtimeId=3364 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3370 +runtimeId=3371 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3371 +runtimeId=3372 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3373 +runtimeId=3374 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3375 +runtimeId=3376 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3374 +runtimeId=3375 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3367 +runtimeId=3368 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3369 +runtimeId=3370 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3394 +runtimeId=3395 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3396 +runtimeId=3397 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3390 +runtimeId=3391 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3393 +runtimeId=3394 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3400 +runtimeId=3401 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3392 +runtimeId=3393 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3391 +runtimeId=3392 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3398 +runtimeId=3399 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3399 +runtimeId=3400 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3401 +runtimeId=3402 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3403 +runtimeId=3404 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3402 +runtimeId=3403 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3395 +runtimeId=3396 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3397 +runtimeId=3398 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1336 +runtimeId=1337 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1338 +runtimeId=1339 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1332 +runtimeId=1333 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1335 +runtimeId=1336 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1342 +runtimeId=1343 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1334 +runtimeId=1335 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1333 +runtimeId=1334 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1340 +runtimeId=1341 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1341 +runtimeId=1342 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1343 +runtimeId=1344 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1345 +runtimeId=1346 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1344 +runtimeId=1345 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1337 +runtimeId=1338 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1339 +runtimeId=1340 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1364 +runtimeId=1365 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1366 +runtimeId=1367 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1360 +runtimeId=1361 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1363 +runtimeId=1364 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1370 +runtimeId=1371 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1362 +runtimeId=1363 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1361 +runtimeId=1362 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1368 +runtimeId=1369 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1369 +runtimeId=1370 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1371 +runtimeId=1372 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1373 +runtimeId=1374 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1372 +runtimeId=1373 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1365 +runtimeId=1366 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1367 +runtimeId=1368 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1392 +runtimeId=1393 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1394 +runtimeId=1395 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1388 +runtimeId=1389 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1391 +runtimeId=1392 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1398 +runtimeId=1399 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1390 +runtimeId=1391 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1389 +runtimeId=1390 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1396 +runtimeId=1397 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1397 +runtimeId=1398 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1399 +runtimeId=1400 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1401 +runtimeId=1402 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1400 +runtimeId=1401 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1393 +runtimeId=1394 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1395 +runtimeId=1396 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2092 +runtimeId=2093 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2094 +runtimeId=2095 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2088 +runtimeId=2089 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2091 +runtimeId=2092 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2098 +runtimeId=2099 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2090 +runtimeId=2091 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2089 +runtimeId=2090 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2096 +runtimeId=2097 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2097 +runtimeId=2098 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2099 +runtimeId=2100 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2101 +runtimeId=2102 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2100 +runtimeId=2101 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2093 +runtimeId=2094 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2095 +runtimeId=2096 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2120 +runtimeId=2121 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2122 +runtimeId=2123 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2116 +runtimeId=2117 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2119 +runtimeId=2120 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2126 +runtimeId=2127 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2118 +runtimeId=2119 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2117 +runtimeId=2118 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2124 +runtimeId=2125 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2125 +runtimeId=2126 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2127 +runtimeId=2128 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2129 +runtimeId=2130 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2128 +runtimeId=2129 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2121 +runtimeId=2122 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2123 +runtimeId=2124 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2148 +runtimeId=2149 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2150 +runtimeId=2151 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2144 +runtimeId=2145 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2147 +runtimeId=2148 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2154 +runtimeId=2155 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2146 +runtimeId=2147 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2145 +runtimeId=2146 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2152 +runtimeId=2153 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2153 +runtimeId=2154 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2155 +runtimeId=2156 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2157 +runtimeId=2158 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2156 +runtimeId=2157 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2149 +runtimeId=2150 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2151 +runtimeId=2152 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2848 +runtimeId=2849 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2850 +runtimeId=2851 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2844 +runtimeId=2845 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2847 +runtimeId=2848 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2854 +runtimeId=2855 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2846 +runtimeId=2847 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2845 +runtimeId=2846 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2852 +runtimeId=2853 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2853 +runtimeId=2854 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2855 +runtimeId=2856 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2857 +runtimeId=2858 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2856 +runtimeId=2857 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2849 +runtimeId=2850 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2851 +runtimeId=2852 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2876 +runtimeId=2877 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2878 +runtimeId=2879 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2872 +runtimeId=2873 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2875 +runtimeId=2876 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2882 +runtimeId=2883 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2874 +runtimeId=2875 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2873 +runtimeId=2874 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2880 +runtimeId=2881 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2881 +runtimeId=2882 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2883 +runtimeId=2884 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2885 +runtimeId=2886 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2884 +runtimeId=2885 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2877 +runtimeId=2878 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2879 +runtimeId=2880 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2904 +runtimeId=2905 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2906 +runtimeId=2907 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2900 +runtimeId=2901 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2903 +runtimeId=2904 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2910 +runtimeId=2911 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2902 +runtimeId=2903 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2901 +runtimeId=2902 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2908 +runtimeId=2909 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2909 +runtimeId=2910 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2911 +runtimeId=2912 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2913 +runtimeId=2914 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2912 +runtimeId=2913 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2905 +runtimeId=2906 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2907 +runtimeId=2908 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1588 +runtimeId=1589 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1590 +runtimeId=1591 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1584 +runtimeId=1585 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1587 +runtimeId=1588 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1594 +runtimeId=1595 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1586 +runtimeId=1587 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1585 +runtimeId=1586 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1592 +runtimeId=1593 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1593 +runtimeId=1594 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1595 +runtimeId=1596 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1597 +runtimeId=1598 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1596 +runtimeId=1597 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1589 +runtimeId=1590 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1591 +runtimeId=1592 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1616 +runtimeId=1617 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1618 +runtimeId=1619 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1612 +runtimeId=1613 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1615 +runtimeId=1616 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1622 +runtimeId=1623 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1614 +runtimeId=1615 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1613 +runtimeId=1614 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1620 +runtimeId=1621 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1621 +runtimeId=1622 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1623 +runtimeId=1624 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1625 +runtimeId=1626 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1624 +runtimeId=1625 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1617 +runtimeId=1618 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1619 +runtimeId=1620 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1644 +runtimeId=1645 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1646 +runtimeId=1647 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1640 +runtimeId=1641 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1643 +runtimeId=1644 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1650 +runtimeId=1651 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1642 +runtimeId=1643 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1641 +runtimeId=1642 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1648 +runtimeId=1649 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1649 +runtimeId=1650 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1651 +runtimeId=1652 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1653 +runtimeId=1654 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1652 +runtimeId=1653 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1645 +runtimeId=1646 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1647 +runtimeId=1648 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2344 +runtimeId=2345 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2346 +runtimeId=2347 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2340 +runtimeId=2341 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2343 +runtimeId=2344 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2350 +runtimeId=2351 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2342 +runtimeId=2343 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2341 +runtimeId=2342 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2348 +runtimeId=2349 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2349 +runtimeId=2350 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2351 +runtimeId=2352 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2353 +runtimeId=2354 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2352 +runtimeId=2353 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2345 +runtimeId=2346 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2347 +runtimeId=2348 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2372 +runtimeId=2373 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2374 +runtimeId=2375 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2368 +runtimeId=2369 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2371 +runtimeId=2372 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2378 +runtimeId=2379 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2370 +runtimeId=2371 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2369 +runtimeId=2370 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2376 +runtimeId=2377 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2377 +runtimeId=2378 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2379 +runtimeId=2380 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2381 +runtimeId=2382 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2380 +runtimeId=2381 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2373 +runtimeId=2374 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2375 +runtimeId=2376 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2400 +runtimeId=2401 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2402 +runtimeId=2403 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2396 +runtimeId=2397 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2399 +runtimeId=2400 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2406 +runtimeId=2407 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2398 +runtimeId=2399 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2397 +runtimeId=2398 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2404 +runtimeId=2405 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2405 +runtimeId=2406 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2407 +runtimeId=2408 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2409 +runtimeId=2410 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2408 +runtimeId=2409 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2401 +runtimeId=2402 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2403 +runtimeId=2404 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3100 +runtimeId=3101 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3102 +runtimeId=3103 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3096 +runtimeId=3097 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3099 +runtimeId=3100 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3106 +runtimeId=3107 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3098 +runtimeId=3099 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3097 +runtimeId=3098 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3104 +runtimeId=3105 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3105 +runtimeId=3106 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3107 +runtimeId=3108 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3109 +runtimeId=3110 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3108 +runtimeId=3109 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3101 +runtimeId=3102 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3103 +runtimeId=3104 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3128 +runtimeId=3129 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3130 +runtimeId=3131 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3124 +runtimeId=3125 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3127 +runtimeId=3128 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3134 +runtimeId=3135 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3126 +runtimeId=3127 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3125 +runtimeId=3126 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3132 +runtimeId=3133 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3133 +runtimeId=3134 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3135 +runtimeId=3136 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3137 +runtimeId=3138 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3136 +runtimeId=3137 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3129 +runtimeId=3130 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3131 +runtimeId=3132 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3156 +runtimeId=3157 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3158 +runtimeId=3159 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3152 +runtimeId=3153 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3155 +runtimeId=3156 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3162 +runtimeId=3163 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3154 +runtimeId=3155 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3153 +runtimeId=3154 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3160 +runtimeId=3161 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3161 +runtimeId=3162 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3163 +runtimeId=3164 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3165 +runtimeId=3166 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3164 +runtimeId=3165 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3157 +runtimeId=3158 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3159 +runtimeId=3160 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1840 +runtimeId=1841 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1842 +runtimeId=1843 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1836 +runtimeId=1837 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1839 +runtimeId=1840 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1846 +runtimeId=1847 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1838 +runtimeId=1839 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1837 +runtimeId=1838 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1844 +runtimeId=1845 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1845 +runtimeId=1846 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1847 +runtimeId=1848 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1849 +runtimeId=1850 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1848 +runtimeId=1849 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1841 +runtimeId=1842 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1843 +runtimeId=1844 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1868 +runtimeId=1869 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1870 +runtimeId=1871 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1864 +runtimeId=1865 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1867 +runtimeId=1868 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1874 +runtimeId=1875 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1866 +runtimeId=1867 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1865 +runtimeId=1866 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1872 +runtimeId=1873 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1873 +runtimeId=1874 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1875 +runtimeId=1876 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1877 +runtimeId=1878 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1876 +runtimeId=1877 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1869 +runtimeId=1870 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1871 +runtimeId=1872 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1896 +runtimeId=1897 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1898 +runtimeId=1899 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1892 +runtimeId=1893 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1895 +runtimeId=1896 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1902 +runtimeId=1903 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1894 +runtimeId=1895 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1893 +runtimeId=1894 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1900 +runtimeId=1901 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1901 +runtimeId=1902 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1903 +runtimeId=1904 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1905 +runtimeId=1906 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1904 +runtimeId=1905 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1897 +runtimeId=1898 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1899 +runtimeId=1900 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2596 +runtimeId=2597 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2598 +runtimeId=2599 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2592 +runtimeId=2593 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2595 +runtimeId=2596 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2602 +runtimeId=2603 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2594 +runtimeId=2595 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2593 +runtimeId=2594 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2600 +runtimeId=2601 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2601 +runtimeId=2602 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2603 +runtimeId=2604 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2605 +runtimeId=2606 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2604 +runtimeId=2605 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2597 +runtimeId=2598 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2599 +runtimeId=2600 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2624 +runtimeId=2625 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2626 +runtimeId=2627 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2620 +runtimeId=2621 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2623 +runtimeId=2624 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2630 +runtimeId=2631 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2622 +runtimeId=2623 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2621 +runtimeId=2622 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2628 +runtimeId=2629 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2629 +runtimeId=2630 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2631 +runtimeId=2632 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2633 +runtimeId=2634 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2632 +runtimeId=2633 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2625 +runtimeId=2626 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2627 +runtimeId=2628 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2652 +runtimeId=2653 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2654 +runtimeId=2655 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2648 +runtimeId=2649 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2651 +runtimeId=2652 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2658 +runtimeId=2659 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2650 +runtimeId=2651 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2649 +runtimeId=2650 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2656 +runtimeId=2657 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2657 +runtimeId=2658 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2659 +runtimeId=2660 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2661 +runtimeId=2662 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2660 +runtimeId=2661 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2653 +runtimeId=2654 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2655 +runtimeId=2656 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3352 +runtimeId=3353 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3354 +runtimeId=3355 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3348 +runtimeId=3349 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3351 +runtimeId=3352 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3358 +runtimeId=3359 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3350 +runtimeId=3351 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3349 +runtimeId=3350 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3356 +runtimeId=3357 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3357 +runtimeId=3358 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3359 +runtimeId=3360 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3361 +runtimeId=3362 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3360 +runtimeId=3361 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3353 +runtimeId=3354 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3355 +runtimeId=3356 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3380 +runtimeId=3381 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3382 +runtimeId=3383 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3376 +runtimeId=3377 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3379 +runtimeId=3380 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3386 +runtimeId=3387 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3378 +runtimeId=3379 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3377 +runtimeId=3378 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3384 +runtimeId=3385 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3385 +runtimeId=3386 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3387 +runtimeId=3388 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3389 +runtimeId=3390 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3388 +runtimeId=3389 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3381 +runtimeId=3382 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3383 +runtimeId=3384 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3408 +runtimeId=3409 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3410 +runtimeId=3411 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3404 +runtimeId=3405 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3407 +runtimeId=3408 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3414 +runtimeId=3415 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3406 +runtimeId=3407 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3405 +runtimeId=3406 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3412 +runtimeId=3413 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3413 +runtimeId=3414 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3415 +runtimeId=3416 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3417 +runtimeId=3418 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3416 +runtimeId=3417 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3409 +runtimeId=3410 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3411 +runtimeId=3412 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1406 +runtimeId=1407 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1408 +runtimeId=1409 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1402 +runtimeId=1403 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1405 +runtimeId=1406 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1412 +runtimeId=1413 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1404 +runtimeId=1405 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1403 +runtimeId=1404 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1410 +runtimeId=1411 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1411 +runtimeId=1412 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1413 +runtimeId=1414 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1415 +runtimeId=1416 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1414 +runtimeId=1415 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1407 +runtimeId=1408 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1409 +runtimeId=1410 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1434 +runtimeId=1435 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1436 +runtimeId=1437 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1430 +runtimeId=1431 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1433 +runtimeId=1434 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1440 +runtimeId=1441 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1432 +runtimeId=1433 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1431 +runtimeId=1432 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1438 +runtimeId=1439 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1439 +runtimeId=1440 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1441 +runtimeId=1442 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1443 +runtimeId=1444 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1442 +runtimeId=1443 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1435 +runtimeId=1436 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1437 +runtimeId=1438 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1462 +runtimeId=1463 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1464 +runtimeId=1465 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1458 +runtimeId=1459 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1461 +runtimeId=1462 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1468 +runtimeId=1469 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1460 +runtimeId=1461 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1459 +runtimeId=1460 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1466 +runtimeId=1467 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1467 +runtimeId=1468 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1469 +runtimeId=1470 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1471 +runtimeId=1472 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1470 +runtimeId=1471 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1463 +runtimeId=1464 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1465 +runtimeId=1466 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2162 +runtimeId=2163 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2164 +runtimeId=2165 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2158 +runtimeId=2159 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2161 +runtimeId=2162 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2168 +runtimeId=2169 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2160 +runtimeId=2161 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2159 +runtimeId=2160 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2166 +runtimeId=2167 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2167 +runtimeId=2168 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2169 +runtimeId=2170 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2171 +runtimeId=2172 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2170 +runtimeId=2171 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2163 +runtimeId=2164 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2165 +runtimeId=2166 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2190 +runtimeId=2191 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2192 +runtimeId=2193 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2186 +runtimeId=2187 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2189 +runtimeId=2190 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2196 +runtimeId=2197 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2188 +runtimeId=2189 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2187 +runtimeId=2188 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2194 +runtimeId=2195 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2195 +runtimeId=2196 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2197 +runtimeId=2198 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2199 +runtimeId=2200 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2198 +runtimeId=2199 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2191 +runtimeId=2192 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2193 +runtimeId=2194 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2218 +runtimeId=2219 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2220 +runtimeId=2221 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2214 +runtimeId=2215 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2217 +runtimeId=2218 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2224 +runtimeId=2225 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2216 +runtimeId=2217 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2215 +runtimeId=2216 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2222 +runtimeId=2223 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2223 +runtimeId=2224 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2225 +runtimeId=2226 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2227 +runtimeId=2228 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2226 +runtimeId=2227 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2219 +runtimeId=2220 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2221 +runtimeId=2222 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2918 +runtimeId=2919 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2920 +runtimeId=2921 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2914 +runtimeId=2915 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2917 +runtimeId=2918 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2924 +runtimeId=2925 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2916 +runtimeId=2917 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2915 +runtimeId=2916 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2922 +runtimeId=2923 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2923 +runtimeId=2924 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2925 +runtimeId=2926 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2927 +runtimeId=2928 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2926 +runtimeId=2927 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2919 +runtimeId=2920 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2921 +runtimeId=2922 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2946 +runtimeId=2947 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2948 +runtimeId=2949 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2942 +runtimeId=2943 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2945 +runtimeId=2946 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2952 +runtimeId=2953 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2944 +runtimeId=2945 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2943 +runtimeId=2944 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2950 +runtimeId=2951 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2951 +runtimeId=2952 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2953 +runtimeId=2954 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2955 +runtimeId=2956 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2954 +runtimeId=2955 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2947 +runtimeId=2948 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2949 +runtimeId=2950 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2974 +runtimeId=2975 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2976 +runtimeId=2977 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2970 +runtimeId=2971 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2973 +runtimeId=2974 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2980 +runtimeId=2981 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2972 +runtimeId=2973 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2971 +runtimeId=2972 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2978 +runtimeId=2979 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2979 +runtimeId=2980 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2981 +runtimeId=2982 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2983 +runtimeId=2984 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2982 +runtimeId=2983 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2975 +runtimeId=2976 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2977 +runtimeId=2978 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1658 +runtimeId=1659 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1660 +runtimeId=1661 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1654 +runtimeId=1655 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1657 +runtimeId=1658 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1664 +runtimeId=1665 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1656 +runtimeId=1657 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1655 +runtimeId=1656 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1662 +runtimeId=1663 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1663 +runtimeId=1664 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1665 +runtimeId=1666 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1667 +runtimeId=1668 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1666 +runtimeId=1667 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1659 +runtimeId=1660 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1661 +runtimeId=1662 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1686 +runtimeId=1687 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1688 +runtimeId=1689 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1682 +runtimeId=1683 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1685 +runtimeId=1686 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1692 +runtimeId=1693 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1684 +runtimeId=1685 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1683 +runtimeId=1684 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1690 +runtimeId=1691 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1691 +runtimeId=1692 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1693 +runtimeId=1694 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1695 +runtimeId=1696 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1694 +runtimeId=1695 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1687 +runtimeId=1688 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1689 +runtimeId=1690 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1714 +runtimeId=1715 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1716 +runtimeId=1717 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1710 +runtimeId=1711 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1713 +runtimeId=1714 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1720 +runtimeId=1721 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1712 +runtimeId=1713 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1711 +runtimeId=1712 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1718 +runtimeId=1719 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1719 +runtimeId=1720 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1721 +runtimeId=1722 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1723 +runtimeId=1724 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1722 +runtimeId=1723 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1715 +runtimeId=1716 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1717 +runtimeId=1718 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2414 +runtimeId=2415 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2416 +runtimeId=2417 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2410 +runtimeId=2411 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2413 +runtimeId=2414 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2420 +runtimeId=2421 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2412 +runtimeId=2413 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2411 +runtimeId=2412 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2418 +runtimeId=2419 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2419 +runtimeId=2420 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2421 +runtimeId=2422 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2423 +runtimeId=2424 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2422 +runtimeId=2423 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2415 +runtimeId=2416 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2417 +runtimeId=2418 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2442 +runtimeId=2443 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2444 +runtimeId=2445 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2438 +runtimeId=2439 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2441 +runtimeId=2442 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2448 +runtimeId=2449 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2440 +runtimeId=2441 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2439 +runtimeId=2440 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2446 +runtimeId=2447 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2447 +runtimeId=2448 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2449 +runtimeId=2450 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2451 +runtimeId=2452 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2450 +runtimeId=2451 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2443 +runtimeId=2444 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2445 +runtimeId=2446 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2470 +runtimeId=2471 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2472 +runtimeId=2473 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2466 +runtimeId=2467 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2469 +runtimeId=2470 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2476 +runtimeId=2477 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2468 +runtimeId=2469 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2467 +runtimeId=2468 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2474 +runtimeId=2475 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2475 +runtimeId=2476 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2477 +runtimeId=2478 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2479 +runtimeId=2480 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2478 +runtimeId=2479 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2471 +runtimeId=2472 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2473 +runtimeId=2474 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3170 +runtimeId=3171 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3172 +runtimeId=3173 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3166 +runtimeId=3167 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3169 +runtimeId=3170 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3176 +runtimeId=3177 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3168 +runtimeId=3169 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3167 +runtimeId=3168 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3174 +runtimeId=3175 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3175 +runtimeId=3176 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3177 +runtimeId=3178 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3179 +runtimeId=3180 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3178 +runtimeId=3179 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3171 +runtimeId=3172 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3173 +runtimeId=3174 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3198 +runtimeId=3199 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3200 +runtimeId=3201 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3194 +runtimeId=3195 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3197 +runtimeId=3198 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3204 +runtimeId=3205 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3196 +runtimeId=3197 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3195 +runtimeId=3196 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3202 +runtimeId=3203 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3203 +runtimeId=3204 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3205 +runtimeId=3206 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3207 +runtimeId=3208 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3206 +runtimeId=3207 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3199 +runtimeId=3200 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3201 +runtimeId=3202 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3226 +runtimeId=3227 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3228 +runtimeId=3229 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3222 +runtimeId=3223 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3225 +runtimeId=3226 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3232 +runtimeId=3233 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3224 +runtimeId=3225 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3223 +runtimeId=3224 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3230 +runtimeId=3231 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3231 +runtimeId=3232 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3233 +runtimeId=3234 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3235 +runtimeId=3236 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3234 +runtimeId=3235 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3227 +runtimeId=3228 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3229 +runtimeId=3230 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1910 +runtimeId=1911 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1912 +runtimeId=1913 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1906 +runtimeId=1907 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1909 +runtimeId=1910 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1916 +runtimeId=1917 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1908 +runtimeId=1909 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1907 +runtimeId=1908 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1914 +runtimeId=1915 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1915 +runtimeId=1916 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1917 +runtimeId=1918 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1919 +runtimeId=1920 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1918 +runtimeId=1919 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1911 +runtimeId=1912 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1913 +runtimeId=1914 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1938 +runtimeId=1939 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1940 +runtimeId=1941 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1934 +runtimeId=1935 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1937 +runtimeId=1938 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1944 +runtimeId=1945 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1936 +runtimeId=1937 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1935 +runtimeId=1936 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1942 +runtimeId=1943 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1943 +runtimeId=1944 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1945 +runtimeId=1946 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1947 +runtimeId=1948 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1946 +runtimeId=1947 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1939 +runtimeId=1940 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1941 +runtimeId=1942 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1966 +runtimeId=1967 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1968 +runtimeId=1969 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1962 +runtimeId=1963 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1965 +runtimeId=1966 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1972 +runtimeId=1973 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1964 +runtimeId=1965 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1963 +runtimeId=1964 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1970 +runtimeId=1971 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1971 +runtimeId=1972 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1973 +runtimeId=1974 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1975 +runtimeId=1976 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1974 +runtimeId=1975 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1967 +runtimeId=1968 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1969 +runtimeId=1970 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2666 +runtimeId=2667 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2668 +runtimeId=2669 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2662 +runtimeId=2663 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2665 +runtimeId=2666 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2672 +runtimeId=2673 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2664 +runtimeId=2665 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2663 +runtimeId=2664 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2670 +runtimeId=2671 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2671 +runtimeId=2672 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2673 +runtimeId=2674 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2675 +runtimeId=2676 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2674 +runtimeId=2675 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2667 +runtimeId=2668 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2669 +runtimeId=2670 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2694 +runtimeId=2695 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2696 +runtimeId=2697 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2690 +runtimeId=2691 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2693 +runtimeId=2694 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2700 +runtimeId=2701 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2692 +runtimeId=2693 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2691 +runtimeId=2692 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2698 +runtimeId=2699 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2699 +runtimeId=2700 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2701 +runtimeId=2702 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2703 +runtimeId=2704 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2702 +runtimeId=2703 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2695 +runtimeId=2696 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2697 +runtimeId=2698 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2722 +runtimeId=2723 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2724 +runtimeId=2725 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2718 +runtimeId=2719 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2721 +runtimeId=2722 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2728 +runtimeId=2729 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2720 +runtimeId=2721 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2719 +runtimeId=2720 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2726 +runtimeId=2727 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2727 +runtimeId=2728 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2729 +runtimeId=2730 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2731 +runtimeId=2732 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2730 +runtimeId=2731 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2723 +runtimeId=2724 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2725 +runtimeId=2726 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3422 +runtimeId=3423 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3424 +runtimeId=3425 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3418 +runtimeId=3419 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3421 +runtimeId=3422 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3428 +runtimeId=3429 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3420 +runtimeId=3421 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3419 +runtimeId=3420 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3426 +runtimeId=3427 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3427 +runtimeId=3428 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3429 +runtimeId=3430 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3431 +runtimeId=3432 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3430 +runtimeId=3431 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3423 +runtimeId=3424 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3425 +runtimeId=3426 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3450 +runtimeId=3451 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3452 +runtimeId=3453 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3446 +runtimeId=3447 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3449 +runtimeId=3450 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3456 +runtimeId=3457 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3448 +runtimeId=3449 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3447 +runtimeId=3448 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3454 +runtimeId=3455 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3455 +runtimeId=3456 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3457 +runtimeId=3458 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3459 +runtimeId=3460 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3458 +runtimeId=3459 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3451 +runtimeId=3452 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3453 +runtimeId=3454 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3478 +runtimeId=3479 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3480 +runtimeId=3481 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3474 +runtimeId=3475 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3477 +runtimeId=3478 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3484 +runtimeId=3485 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3476 +runtimeId=3477 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3475 +runtimeId=3476 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3482 +runtimeId=3483 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3483 +runtimeId=3484 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3485 +runtimeId=3486 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3487 +runtimeId=3488 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3486 +runtimeId=3487 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3479 +runtimeId=3480 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3481 +runtimeId=3482 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1420 +runtimeId=1421 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1422 +runtimeId=1423 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1416 +runtimeId=1417 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1419 +runtimeId=1420 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1426 +runtimeId=1427 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1418 +runtimeId=1419 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1417 +runtimeId=1418 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1424 +runtimeId=1425 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1425 +runtimeId=1426 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1427 +runtimeId=1428 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1429 +runtimeId=1430 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1428 +runtimeId=1429 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1421 +runtimeId=1422 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1423 +runtimeId=1424 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1448 +runtimeId=1449 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1450 +runtimeId=1451 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1444 +runtimeId=1445 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1447 +runtimeId=1448 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1454 +runtimeId=1455 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1446 +runtimeId=1447 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1445 +runtimeId=1446 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1452 +runtimeId=1453 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1453 +runtimeId=1454 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1455 +runtimeId=1456 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1457 +runtimeId=1458 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1456 +runtimeId=1457 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1449 +runtimeId=1450 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1451 +runtimeId=1452 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1476 +runtimeId=1477 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1478 +runtimeId=1479 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1472 +runtimeId=1473 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1475 +runtimeId=1476 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1482 +runtimeId=1483 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1474 +runtimeId=1475 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1473 +runtimeId=1474 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1480 +runtimeId=1481 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1481 +runtimeId=1482 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1483 +runtimeId=1484 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1485 +runtimeId=1486 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1484 +runtimeId=1485 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1477 +runtimeId=1478 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1479 +runtimeId=1480 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2176 +runtimeId=2177 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2178 +runtimeId=2179 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2172 +runtimeId=2173 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2175 +runtimeId=2176 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2182 +runtimeId=2183 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2174 +runtimeId=2175 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2173 +runtimeId=2174 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2180 +runtimeId=2181 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2181 +runtimeId=2182 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2183 +runtimeId=2184 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2185 +runtimeId=2186 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2184 +runtimeId=2185 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2177 +runtimeId=2178 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2179 +runtimeId=2180 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2204 +runtimeId=2205 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2206 +runtimeId=2207 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2200 +runtimeId=2201 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2203 +runtimeId=2204 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2210 +runtimeId=2211 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2202 +runtimeId=2203 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2201 +runtimeId=2202 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2208 +runtimeId=2209 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2209 +runtimeId=2210 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2211 +runtimeId=2212 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2213 +runtimeId=2214 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2212 +runtimeId=2213 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2205 +runtimeId=2206 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2207 +runtimeId=2208 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2232 +runtimeId=2233 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2234 +runtimeId=2235 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2228 +runtimeId=2229 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2231 +runtimeId=2232 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2238 +runtimeId=2239 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2230 +runtimeId=2231 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2229 +runtimeId=2230 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2236 +runtimeId=2237 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2237 +runtimeId=2238 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2239 +runtimeId=2240 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2241 +runtimeId=2242 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2240 +runtimeId=2241 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2233 +runtimeId=2234 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2235 +runtimeId=2236 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2932 +runtimeId=2933 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2934 +runtimeId=2935 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2928 +runtimeId=2929 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2931 +runtimeId=2932 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2938 +runtimeId=2939 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2930 +runtimeId=2931 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2929 +runtimeId=2930 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2936 +runtimeId=2937 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2937 +runtimeId=2938 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2939 +runtimeId=2940 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2941 +runtimeId=2942 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2940 +runtimeId=2941 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2933 +runtimeId=2934 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2935 +runtimeId=2936 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2960 +runtimeId=2961 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2962 +runtimeId=2963 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2956 +runtimeId=2957 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2959 +runtimeId=2960 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2966 +runtimeId=2967 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2958 +runtimeId=2959 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2957 +runtimeId=2958 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2964 +runtimeId=2965 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2965 +runtimeId=2966 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2967 +runtimeId=2968 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2969 +runtimeId=2970 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2968 +runtimeId=2969 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2961 +runtimeId=2962 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2963 +runtimeId=2964 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2988 +runtimeId=2989 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2990 +runtimeId=2991 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2984 +runtimeId=2985 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2987 +runtimeId=2988 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2994 +runtimeId=2995 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2986 +runtimeId=2987 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2985 +runtimeId=2986 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2992 +runtimeId=2993 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2993 +runtimeId=2994 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2995 +runtimeId=2996 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2997 +runtimeId=2998 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2996 +runtimeId=2997 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2989 +runtimeId=2990 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2991 +runtimeId=2992 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1672 +runtimeId=1673 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1674 +runtimeId=1675 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1668 +runtimeId=1669 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1671 +runtimeId=1672 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1678 +runtimeId=1679 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1670 +runtimeId=1671 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1669 +runtimeId=1670 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1676 +runtimeId=1677 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1677 +runtimeId=1678 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1679 +runtimeId=1680 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1681 +runtimeId=1682 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1680 +runtimeId=1681 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1673 +runtimeId=1674 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1675 +runtimeId=1676 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1700 +runtimeId=1701 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1702 +runtimeId=1703 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1696 +runtimeId=1697 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1699 +runtimeId=1700 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1706 +runtimeId=1707 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1698 +runtimeId=1699 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1697 +runtimeId=1698 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1704 +runtimeId=1705 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1705 +runtimeId=1706 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1707 +runtimeId=1708 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1709 +runtimeId=1710 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1708 +runtimeId=1709 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1701 +runtimeId=1702 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1703 +runtimeId=1704 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1728 +runtimeId=1729 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1730 +runtimeId=1731 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1724 +runtimeId=1725 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1727 +runtimeId=1728 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1734 +runtimeId=1735 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1726 +runtimeId=1727 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1725 +runtimeId=1726 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1732 +runtimeId=1733 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1733 +runtimeId=1734 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1735 +runtimeId=1736 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1737 +runtimeId=1738 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1736 +runtimeId=1737 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1729 +runtimeId=1730 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1731 +runtimeId=1732 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2428 +runtimeId=2429 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2430 +runtimeId=2431 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2424 +runtimeId=2425 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2427 +runtimeId=2428 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2434 +runtimeId=2435 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2426 +runtimeId=2427 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2425 +runtimeId=2426 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2432 +runtimeId=2433 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2433 +runtimeId=2434 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2435 +runtimeId=2436 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2437 +runtimeId=2438 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2436 +runtimeId=2437 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2429 +runtimeId=2430 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2431 +runtimeId=2432 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2456 +runtimeId=2457 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2458 +runtimeId=2459 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2452 +runtimeId=2453 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2455 +runtimeId=2456 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2462 +runtimeId=2463 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2454 +runtimeId=2455 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2453 +runtimeId=2454 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2460 +runtimeId=2461 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2461 +runtimeId=2462 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2463 +runtimeId=2464 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2465 +runtimeId=2466 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2464 +runtimeId=2465 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2457 +runtimeId=2458 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2459 +runtimeId=2460 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2484 +runtimeId=2485 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2486 +runtimeId=2487 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2480 +runtimeId=2481 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2483 +runtimeId=2484 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2490 +runtimeId=2491 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2482 +runtimeId=2483 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2481 +runtimeId=2482 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2488 +runtimeId=2489 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2489 +runtimeId=2490 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2491 +runtimeId=2492 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2493 +runtimeId=2494 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2492 +runtimeId=2493 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2485 +runtimeId=2486 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2487 +runtimeId=2488 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3184 +runtimeId=3185 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3186 +runtimeId=3187 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3180 +runtimeId=3181 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3183 +runtimeId=3184 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3190 +runtimeId=3191 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3182 +runtimeId=3183 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3181 +runtimeId=3182 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3188 +runtimeId=3189 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3189 +runtimeId=3190 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3191 +runtimeId=3192 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3193 +runtimeId=3194 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3192 +runtimeId=3193 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3185 +runtimeId=3186 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3187 +runtimeId=3188 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3212 +runtimeId=3213 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3214 +runtimeId=3215 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3208 +runtimeId=3209 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3211 +runtimeId=3212 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3218 +runtimeId=3219 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3210 +runtimeId=3211 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3209 +runtimeId=3210 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3216 +runtimeId=3217 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3217 +runtimeId=3218 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3219 +runtimeId=3220 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3221 +runtimeId=3222 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3220 +runtimeId=3221 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3213 +runtimeId=3214 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3215 +runtimeId=3216 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3240 +runtimeId=3241 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3242 +runtimeId=3243 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3236 +runtimeId=3237 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3239 +runtimeId=3240 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3246 +runtimeId=3247 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3238 +runtimeId=3239 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3237 +runtimeId=3238 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3244 +runtimeId=3245 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3245 +runtimeId=3246 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3247 +runtimeId=3248 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3249 +runtimeId=3250 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3248 +runtimeId=3249 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3241 +runtimeId=3242 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3243 +runtimeId=3244 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1924 +runtimeId=1925 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1926 +runtimeId=1927 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1920 +runtimeId=1921 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1923 +runtimeId=1924 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1930 +runtimeId=1931 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1922 +runtimeId=1923 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1921 +runtimeId=1922 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1928 +runtimeId=1929 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1929 +runtimeId=1930 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1931 +runtimeId=1932 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1933 +runtimeId=1934 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1932 +runtimeId=1933 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1925 +runtimeId=1926 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1927 +runtimeId=1928 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1952 +runtimeId=1953 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1954 +runtimeId=1955 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1948 +runtimeId=1949 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1951 +runtimeId=1952 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1958 +runtimeId=1959 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1950 +runtimeId=1951 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1949 +runtimeId=1950 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1956 +runtimeId=1957 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1957 +runtimeId=1958 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1959 +runtimeId=1960 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1961 +runtimeId=1962 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1960 +runtimeId=1961 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1953 +runtimeId=1954 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1955 +runtimeId=1956 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1980 +runtimeId=1981 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1982 +runtimeId=1983 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1976 +runtimeId=1977 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1979 +runtimeId=1980 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1986 +runtimeId=1987 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1978 +runtimeId=1979 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1977 +runtimeId=1978 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1984 +runtimeId=1985 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1985 +runtimeId=1986 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1987 +runtimeId=1988 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1989 +runtimeId=1990 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1988 +runtimeId=1989 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1981 +runtimeId=1982 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1983 +runtimeId=1984 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2680 +runtimeId=2681 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2682 +runtimeId=2683 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2676 +runtimeId=2677 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2679 +runtimeId=2680 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2686 +runtimeId=2687 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2678 +runtimeId=2679 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2677 +runtimeId=2678 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2684 +runtimeId=2685 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2685 +runtimeId=2686 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2687 +runtimeId=2688 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2689 +runtimeId=2690 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2688 +runtimeId=2689 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2681 +runtimeId=2682 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2683 +runtimeId=2684 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2708 +runtimeId=2709 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2710 +runtimeId=2711 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2704 +runtimeId=2705 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2707 +runtimeId=2708 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2714 +runtimeId=2715 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2706 +runtimeId=2707 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2705 +runtimeId=2706 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2712 +runtimeId=2713 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2713 +runtimeId=2714 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2715 +runtimeId=2716 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2717 +runtimeId=2718 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2716 +runtimeId=2717 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2709 +runtimeId=2710 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2711 +runtimeId=2712 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2736 +runtimeId=2737 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2738 +runtimeId=2739 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2732 +runtimeId=2733 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2735 +runtimeId=2736 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2742 +runtimeId=2743 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2734 +runtimeId=2735 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2733 +runtimeId=2734 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2740 +runtimeId=2741 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2741 +runtimeId=2742 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2743 +runtimeId=2744 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2745 +runtimeId=2746 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2744 +runtimeId=2745 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2737 +runtimeId=2738 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2739 +runtimeId=2740 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3436 +runtimeId=3437 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3438 +runtimeId=3439 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3432 +runtimeId=3433 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3435 +runtimeId=3436 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3442 +runtimeId=3443 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3434 +runtimeId=3435 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3433 +runtimeId=3434 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3440 +runtimeId=3441 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3441 +runtimeId=3442 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3443 +runtimeId=3444 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3445 +runtimeId=3446 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3444 +runtimeId=3445 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3437 +runtimeId=3438 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3439 +runtimeId=3440 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3464 +runtimeId=3465 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3466 +runtimeId=3467 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3460 +runtimeId=3461 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3463 +runtimeId=3464 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3470 +runtimeId=3471 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3462 +runtimeId=3463 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3461 +runtimeId=3462 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3468 +runtimeId=3469 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3469 +runtimeId=3470 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3471 +runtimeId=3472 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3473 +runtimeId=3474 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3472 +runtimeId=3473 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3465 +runtimeId=3466 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3467 +runtimeId=3468 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3492 +runtimeId=3493 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3494 +runtimeId=3495 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3488 +runtimeId=3489 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3491 +runtimeId=3492 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3498 +runtimeId=3499 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3490 +runtimeId=3491 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3489 +runtimeId=3490 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3496 +runtimeId=3497 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3497 +runtimeId=3498 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3499 +runtimeId=3500 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3501 +runtimeId=3502 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3500 +runtimeId=3501 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3493 +runtimeId=3494 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3495 +runtimeId=3496 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1490 +runtimeId=1491 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1492 +runtimeId=1493 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1486 +runtimeId=1487 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1489 +runtimeId=1490 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1496 +runtimeId=1497 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1488 +runtimeId=1489 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1487 +runtimeId=1488 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1494 +runtimeId=1495 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1495 +runtimeId=1496 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1497 +runtimeId=1498 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1499 +runtimeId=1500 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1498 +runtimeId=1499 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1491 +runtimeId=1492 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1493 +runtimeId=1494 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1518 +runtimeId=1519 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1520 +runtimeId=1521 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1514 +runtimeId=1515 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1517 +runtimeId=1518 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1524 +runtimeId=1525 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1516 +runtimeId=1517 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1515 +runtimeId=1516 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1522 +runtimeId=1523 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1523 +runtimeId=1524 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1525 +runtimeId=1526 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1527 +runtimeId=1528 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1526 +runtimeId=1527 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1519 +runtimeId=1520 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1521 +runtimeId=1522 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1546 +runtimeId=1547 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1548 +runtimeId=1549 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1542 +runtimeId=1543 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1545 +runtimeId=1546 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1552 +runtimeId=1553 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1544 +runtimeId=1545 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1543 +runtimeId=1544 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1550 +runtimeId=1551 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1551 +runtimeId=1552 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1553 +runtimeId=1554 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1555 +runtimeId=1556 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1554 +runtimeId=1555 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1547 +runtimeId=1548 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1549 +runtimeId=1550 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2246 +runtimeId=2247 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2248 +runtimeId=2249 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2242 +runtimeId=2243 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2245 +runtimeId=2246 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2252 +runtimeId=2253 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2244 +runtimeId=2245 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2243 +runtimeId=2244 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2250 +runtimeId=2251 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2251 +runtimeId=2252 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2253 +runtimeId=2254 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2255 +runtimeId=2256 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2254 +runtimeId=2255 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2247 +runtimeId=2248 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2249 +runtimeId=2250 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2274 +runtimeId=2275 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2276 +runtimeId=2277 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2270 +runtimeId=2271 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2273 +runtimeId=2274 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2280 +runtimeId=2281 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2272 +runtimeId=2273 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2271 +runtimeId=2272 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2278 +runtimeId=2279 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2279 +runtimeId=2280 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2281 +runtimeId=2282 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2283 +runtimeId=2284 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2282 +runtimeId=2283 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2275 +runtimeId=2276 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2277 +runtimeId=2278 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2302 +runtimeId=2303 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2304 +runtimeId=2305 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2298 +runtimeId=2299 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2301 +runtimeId=2302 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2308 +runtimeId=2309 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2300 +runtimeId=2301 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2299 +runtimeId=2300 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2306 +runtimeId=2307 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2307 +runtimeId=2308 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2309 +runtimeId=2310 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2311 +runtimeId=2312 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2310 +runtimeId=2311 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2303 +runtimeId=2304 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2305 +runtimeId=2306 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3002 +runtimeId=3003 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3004 +runtimeId=3005 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2998 +runtimeId=2999 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3001 +runtimeId=3002 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3008 +runtimeId=3009 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3000 +runtimeId=3001 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2999 +runtimeId=3000 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3006 +runtimeId=3007 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3007 +runtimeId=3008 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3009 +runtimeId=3010 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3011 +runtimeId=3012 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3010 +runtimeId=3011 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3003 +runtimeId=3004 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3005 +runtimeId=3006 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3030 +runtimeId=3031 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3032 +runtimeId=3033 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3026 +runtimeId=3027 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3029 +runtimeId=3030 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3036 +runtimeId=3037 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3028 +runtimeId=3029 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3027 +runtimeId=3028 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3034 +runtimeId=3035 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3035 +runtimeId=3036 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3037 +runtimeId=3038 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3039 +runtimeId=3040 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3038 +runtimeId=3039 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3031 +runtimeId=3032 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3033 +runtimeId=3034 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3058 +runtimeId=3059 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3060 +runtimeId=3061 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3054 +runtimeId=3055 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3057 +runtimeId=3058 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3064 +runtimeId=3065 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3056 +runtimeId=3057 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3055 +runtimeId=3056 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3062 +runtimeId=3063 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3063 +runtimeId=3064 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3065 +runtimeId=3066 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3067 +runtimeId=3068 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3066 +runtimeId=3067 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3059 +runtimeId=3060 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3061 +runtimeId=3062 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1742 +runtimeId=1743 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1744 +runtimeId=1745 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1738 +runtimeId=1739 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1741 +runtimeId=1742 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1748 +runtimeId=1749 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1740 +runtimeId=1741 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1739 +runtimeId=1740 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1746 +runtimeId=1747 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1747 +runtimeId=1748 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1749 +runtimeId=1750 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1751 +runtimeId=1752 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1750 +runtimeId=1751 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1743 +runtimeId=1744 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1745 +runtimeId=1746 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1770 +runtimeId=1771 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1772 +runtimeId=1773 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1766 +runtimeId=1767 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1769 +runtimeId=1770 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1776 +runtimeId=1777 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1768 +runtimeId=1769 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1767 +runtimeId=1768 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1774 +runtimeId=1775 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1775 +runtimeId=1776 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1777 +runtimeId=1778 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1779 +runtimeId=1780 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1778 +runtimeId=1779 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1771 +runtimeId=1772 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1773 +runtimeId=1774 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1798 +runtimeId=1799 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1800 +runtimeId=1801 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1794 +runtimeId=1795 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1797 +runtimeId=1798 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1804 +runtimeId=1805 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1796 +runtimeId=1797 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1795 +runtimeId=1796 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1802 +runtimeId=1803 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1803 +runtimeId=1804 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1805 +runtimeId=1806 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1807 +runtimeId=1808 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1806 +runtimeId=1807 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1799 +runtimeId=1800 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1801 +runtimeId=1802 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2498 +runtimeId=2499 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2500 +runtimeId=2501 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2494 +runtimeId=2495 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2497 +runtimeId=2498 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2504 +runtimeId=2505 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2496 +runtimeId=2497 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2495 +runtimeId=2496 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2502 +runtimeId=2503 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2503 +runtimeId=2504 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2505 +runtimeId=2506 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2507 +runtimeId=2508 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2506 +runtimeId=2507 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2499 +runtimeId=2500 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2501 +runtimeId=2502 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2526 +runtimeId=2527 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2528 +runtimeId=2529 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2522 +runtimeId=2523 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2525 +runtimeId=2526 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2532 +runtimeId=2533 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2524 +runtimeId=2525 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2523 +runtimeId=2524 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2530 +runtimeId=2531 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2531 +runtimeId=2532 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2533 +runtimeId=2534 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2535 +runtimeId=2536 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2534 +runtimeId=2535 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2527 +runtimeId=2528 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2529 +runtimeId=2530 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2554 +runtimeId=2555 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2556 +runtimeId=2557 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2550 +runtimeId=2551 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2553 +runtimeId=2554 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2560 +runtimeId=2561 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2552 +runtimeId=2553 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2551 +runtimeId=2552 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2558 +runtimeId=2559 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2559 +runtimeId=2560 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2561 +runtimeId=2562 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2563 +runtimeId=2564 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2562 +runtimeId=2563 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2555 +runtimeId=2556 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2557 +runtimeId=2558 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3254 +runtimeId=3255 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3256 +runtimeId=3257 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3250 +runtimeId=3251 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3253 +runtimeId=3254 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3260 +runtimeId=3261 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3252 +runtimeId=3253 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3251 +runtimeId=3252 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3258 +runtimeId=3259 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3259 +runtimeId=3260 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3261 +runtimeId=3262 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3263 +runtimeId=3264 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3262 +runtimeId=3263 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3255 +runtimeId=3256 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3257 +runtimeId=3258 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3282 +runtimeId=3283 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3284 +runtimeId=3285 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3278 +runtimeId=3279 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3281 +runtimeId=3282 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3288 +runtimeId=3289 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3280 +runtimeId=3281 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3279 +runtimeId=3280 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3286 +runtimeId=3287 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3287 +runtimeId=3288 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3289 +runtimeId=3290 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3291 +runtimeId=3292 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3290 +runtimeId=3291 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3283 +runtimeId=3284 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3285 +runtimeId=3286 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3310 +runtimeId=3311 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3312 +runtimeId=3313 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3306 +runtimeId=3307 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3309 +runtimeId=3310 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3316 +runtimeId=3317 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3308 +runtimeId=3309 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3307 +runtimeId=3308 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3314 +runtimeId=3315 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3315 +runtimeId=3316 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3317 +runtimeId=3318 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3319 +runtimeId=3320 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3318 +runtimeId=3319 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3311 +runtimeId=3312 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3313 +runtimeId=3314 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1994 +runtimeId=1995 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1996 +runtimeId=1997 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1990 +runtimeId=1991 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1993 +runtimeId=1994 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2000 +runtimeId=2001 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1992 +runtimeId=1993 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1991 +runtimeId=1992 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1998 +runtimeId=1999 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1999 +runtimeId=2000 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2001 +runtimeId=2002 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2003 +runtimeId=2004 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2002 +runtimeId=2003 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1995 +runtimeId=1996 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1997 +runtimeId=1998 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2022 +runtimeId=2023 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2024 +runtimeId=2025 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2018 +runtimeId=2019 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2021 +runtimeId=2022 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2028 +runtimeId=2029 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2020 +runtimeId=2021 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2019 +runtimeId=2020 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2026 +runtimeId=2027 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2027 +runtimeId=2028 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2029 +runtimeId=2030 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2031 +runtimeId=2032 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2030 +runtimeId=2031 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2023 +runtimeId=2024 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2025 +runtimeId=2026 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2050 +runtimeId=2051 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2052 +runtimeId=2053 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2046 +runtimeId=2047 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2049 +runtimeId=2050 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2056 +runtimeId=2057 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2048 +runtimeId=2049 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2047 +runtimeId=2048 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2054 +runtimeId=2055 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2055 +runtimeId=2056 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2057 +runtimeId=2058 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2059 +runtimeId=2060 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2058 +runtimeId=2059 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2051 +runtimeId=2052 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2053 +runtimeId=2054 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2750 +runtimeId=2751 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2752 +runtimeId=2753 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2746 +runtimeId=2747 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2749 +runtimeId=2750 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2756 +runtimeId=2757 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2748 +runtimeId=2749 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2747 +runtimeId=2748 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2754 +runtimeId=2755 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2755 +runtimeId=2756 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2757 +runtimeId=2758 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2759 +runtimeId=2760 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2758 +runtimeId=2759 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2751 +runtimeId=2752 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2753 +runtimeId=2754 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2778 +runtimeId=2779 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2780 +runtimeId=2781 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2774 +runtimeId=2775 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2777 +runtimeId=2778 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2784 +runtimeId=2785 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2776 +runtimeId=2777 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2775 +runtimeId=2776 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2782 +runtimeId=2783 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2783 +runtimeId=2784 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2785 +runtimeId=2786 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2787 +runtimeId=2788 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2786 +runtimeId=2787 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2779 +runtimeId=2780 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2781 +runtimeId=2782 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2806 +runtimeId=2807 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2808 +runtimeId=2809 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2802 +runtimeId=2803 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2805 +runtimeId=2806 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2812 +runtimeId=2813 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2804 +runtimeId=2805 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2803 +runtimeId=2804 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2810 +runtimeId=2811 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2811 +runtimeId=2812 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2813 +runtimeId=2814 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2815 +runtimeId=2816 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2814 +runtimeId=2815 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2807 +runtimeId=2808 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2809 +runtimeId=2810 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3506 +runtimeId=3507 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3508 +runtimeId=3509 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3502 +runtimeId=3503 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3505 +runtimeId=3506 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3512 +runtimeId=3513 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3504 +runtimeId=3505 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3503 +runtimeId=3504 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3510 +runtimeId=3511 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3511 +runtimeId=3512 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3513 +runtimeId=3514 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3515 +runtimeId=3516 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3514 +runtimeId=3515 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3507 +runtimeId=3508 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3509 +runtimeId=3510 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3534 +runtimeId=3535 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3536 +runtimeId=3537 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3530 +runtimeId=3531 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3533 +runtimeId=3534 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3540 +runtimeId=3541 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3532 +runtimeId=3533 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3531 +runtimeId=3532 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3538 +runtimeId=3539 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3539 +runtimeId=3540 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3541 +runtimeId=3542 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3543 +runtimeId=3544 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3542 +runtimeId=3543 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3535 +runtimeId=3536 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3537 +runtimeId=3538 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3562 +runtimeId=3563 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3564 +runtimeId=3565 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3558 +runtimeId=3559 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3561 +runtimeId=3562 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3568 +runtimeId=3569 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3560 +runtimeId=3561 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3559 +runtimeId=3560 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3566 +runtimeId=3567 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3567 +runtimeId=3568 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3569 +runtimeId=3570 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3571 +runtimeId=3572 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3570 +runtimeId=3571 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3563 +runtimeId=3564 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3565 +runtimeId=3566 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1504 +runtimeId=1505 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1506 +runtimeId=1507 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1500 +runtimeId=1501 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1503 +runtimeId=1504 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1510 +runtimeId=1511 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1502 +runtimeId=1503 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1501 +runtimeId=1502 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1508 +runtimeId=1509 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1509 +runtimeId=1510 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1511 +runtimeId=1512 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1513 +runtimeId=1514 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1512 +runtimeId=1513 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1505 +runtimeId=1506 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1507 +runtimeId=1508 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1532 +runtimeId=1533 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1534 +runtimeId=1535 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1528 +runtimeId=1529 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1531 +runtimeId=1532 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1538 +runtimeId=1539 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1530 +runtimeId=1531 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1529 +runtimeId=1530 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1536 +runtimeId=1537 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1537 +runtimeId=1538 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1539 +runtimeId=1540 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1541 +runtimeId=1542 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1540 +runtimeId=1541 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1533 +runtimeId=1534 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1535 +runtimeId=1536 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1560 +runtimeId=1561 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1562 +runtimeId=1563 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1556 +runtimeId=1557 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1559 +runtimeId=1560 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1566 +runtimeId=1567 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1558 +runtimeId=1559 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1557 +runtimeId=1558 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1564 +runtimeId=1565 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1565 +runtimeId=1566 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1567 +runtimeId=1568 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1569 +runtimeId=1570 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1568 +runtimeId=1569 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1561 +runtimeId=1562 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1563 +runtimeId=1564 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2260 +runtimeId=2261 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2262 +runtimeId=2263 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2256 +runtimeId=2257 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2259 +runtimeId=2260 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2266 +runtimeId=2267 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2258 +runtimeId=2259 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2257 +runtimeId=2258 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2264 +runtimeId=2265 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2265 +runtimeId=2266 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2267 +runtimeId=2268 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2269 +runtimeId=2270 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2268 +runtimeId=2269 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2261 +runtimeId=2262 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2263 +runtimeId=2264 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2288 +runtimeId=2289 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2290 +runtimeId=2291 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2284 +runtimeId=2285 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2287 +runtimeId=2288 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2294 +runtimeId=2295 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2286 +runtimeId=2287 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2285 +runtimeId=2286 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2292 +runtimeId=2293 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2293 +runtimeId=2294 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2295 +runtimeId=2296 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2297 +runtimeId=2298 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2296 +runtimeId=2297 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2289 +runtimeId=2290 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2291 +runtimeId=2292 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2316 +runtimeId=2317 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2318 +runtimeId=2319 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2312 +runtimeId=2313 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2315 +runtimeId=2316 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2322 +runtimeId=2323 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2314 +runtimeId=2315 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2313 +runtimeId=2314 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2320 +runtimeId=2321 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2321 +runtimeId=2322 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2323 +runtimeId=2324 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2325 +runtimeId=2326 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2324 +runtimeId=2325 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2317 +runtimeId=2318 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2319 +runtimeId=2320 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3016 +runtimeId=3017 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3018 +runtimeId=3019 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3012 +runtimeId=3013 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3015 +runtimeId=3016 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3022 +runtimeId=3023 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3014 +runtimeId=3015 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3013 +runtimeId=3014 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3020 +runtimeId=3021 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3021 +runtimeId=3022 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3023 +runtimeId=3024 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3025 +runtimeId=3026 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3024 +runtimeId=3025 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3017 +runtimeId=3018 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3019 +runtimeId=3020 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3044 +runtimeId=3045 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3046 +runtimeId=3047 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3040 +runtimeId=3041 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3043 +runtimeId=3044 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3050 +runtimeId=3051 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3042 +runtimeId=3043 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3041 +runtimeId=3042 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3048 +runtimeId=3049 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3049 +runtimeId=3050 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3051 +runtimeId=3052 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3053 +runtimeId=3054 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3052 +runtimeId=3053 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3045 +runtimeId=3046 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3047 +runtimeId=3048 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3072 +runtimeId=3073 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3074 +runtimeId=3075 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3068 +runtimeId=3069 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3071 +runtimeId=3072 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3078 +runtimeId=3079 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3070 +runtimeId=3071 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3069 +runtimeId=3070 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3076 +runtimeId=3077 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3077 +runtimeId=3078 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3079 +runtimeId=3080 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3081 +runtimeId=3082 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3080 +runtimeId=3081 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3073 +runtimeId=3074 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3075 +runtimeId=3076 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1756 +runtimeId=1757 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1758 +runtimeId=1759 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1752 +runtimeId=1753 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1755 +runtimeId=1756 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1762 +runtimeId=1763 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1754 +runtimeId=1755 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1753 +runtimeId=1754 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1760 +runtimeId=1761 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1761 +runtimeId=1762 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1763 +runtimeId=1764 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1765 +runtimeId=1766 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1764 +runtimeId=1765 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1757 +runtimeId=1758 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1759 +runtimeId=1760 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1784 +runtimeId=1785 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1786 +runtimeId=1787 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1780 +runtimeId=1781 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1783 +runtimeId=1784 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1790 +runtimeId=1791 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1782 +runtimeId=1783 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1781 +runtimeId=1782 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1788 +runtimeId=1789 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1789 +runtimeId=1790 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1791 +runtimeId=1792 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1793 +runtimeId=1794 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1792 +runtimeId=1793 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1785 +runtimeId=1786 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1787 +runtimeId=1788 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1812 +runtimeId=1813 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1814 +runtimeId=1815 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1808 +runtimeId=1809 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1811 +runtimeId=1812 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1818 +runtimeId=1819 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1810 +runtimeId=1811 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1809 +runtimeId=1810 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1816 +runtimeId=1817 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1817 +runtimeId=1818 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1819 +runtimeId=1820 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1821 +runtimeId=1822 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1820 +runtimeId=1821 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1813 +runtimeId=1814 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1815 +runtimeId=1816 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2512 +runtimeId=2513 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2514 +runtimeId=2515 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2508 +runtimeId=2509 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2511 +runtimeId=2512 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2518 +runtimeId=2519 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2510 +runtimeId=2511 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2509 +runtimeId=2510 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2516 +runtimeId=2517 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2517 +runtimeId=2518 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2519 +runtimeId=2520 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2521 +runtimeId=2522 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2520 +runtimeId=2521 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2513 +runtimeId=2514 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2515 +runtimeId=2516 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2540 +runtimeId=2541 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2542 +runtimeId=2543 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2536 +runtimeId=2537 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2539 +runtimeId=2540 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2546 +runtimeId=2547 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2538 +runtimeId=2539 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2537 +runtimeId=2538 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2544 +runtimeId=2545 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2545 +runtimeId=2546 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2547 +runtimeId=2548 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2549 +runtimeId=2550 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2548 +runtimeId=2549 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2541 +runtimeId=2542 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2543 +runtimeId=2544 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2568 +runtimeId=2569 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2570 +runtimeId=2571 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2564 +runtimeId=2565 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2567 +runtimeId=2568 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2574 +runtimeId=2575 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2566 +runtimeId=2567 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2565 +runtimeId=2566 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2572 +runtimeId=2573 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2573 +runtimeId=2574 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2575 +runtimeId=2576 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2577 +runtimeId=2578 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2576 +runtimeId=2577 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2569 +runtimeId=2570 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2571 +runtimeId=2572 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3268 +runtimeId=3269 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3270 +runtimeId=3271 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3264 +runtimeId=3265 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3267 +runtimeId=3268 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3274 +runtimeId=3275 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3266 +runtimeId=3267 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3265 +runtimeId=3266 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3272 +runtimeId=3273 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3273 +runtimeId=3274 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3275 +runtimeId=3276 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3277 +runtimeId=3278 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3276 +runtimeId=3277 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3269 +runtimeId=3270 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3271 +runtimeId=3272 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3296 +runtimeId=3297 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3298 +runtimeId=3299 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3292 +runtimeId=3293 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3295 +runtimeId=3296 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3302 +runtimeId=3303 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3294 +runtimeId=3295 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3293 +runtimeId=3294 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3300 +runtimeId=3301 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3301 +runtimeId=3302 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3303 +runtimeId=3304 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3305 +runtimeId=3306 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3304 +runtimeId=3305 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3297 +runtimeId=3298 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3299 +runtimeId=3300 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3324 +runtimeId=3325 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3326 +runtimeId=3327 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3320 +runtimeId=3321 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3323 +runtimeId=3324 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3330 +runtimeId=3331 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3322 +runtimeId=3323 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3321 +runtimeId=3322 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3328 +runtimeId=3329 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3329 +runtimeId=3330 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3331 +runtimeId=3332 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3333 +runtimeId=3334 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3332 +runtimeId=3333 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3325 +runtimeId=3326 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3327 +runtimeId=3328 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2008 +runtimeId=2009 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2010 +runtimeId=2011 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2004 +runtimeId=2005 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2007 +runtimeId=2008 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2014 +runtimeId=2015 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2006 +runtimeId=2007 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2005 +runtimeId=2006 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2012 +runtimeId=2013 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2013 +runtimeId=2014 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2015 +runtimeId=2016 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2017 +runtimeId=2018 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2016 +runtimeId=2017 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2009 +runtimeId=2010 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2011 +runtimeId=2012 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2036 +runtimeId=2037 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2038 +runtimeId=2039 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2032 +runtimeId=2033 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2035 +runtimeId=2036 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2042 +runtimeId=2043 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2034 +runtimeId=2035 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2033 +runtimeId=2034 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2040 +runtimeId=2041 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2041 +runtimeId=2042 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2043 +runtimeId=2044 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2045 +runtimeId=2046 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2044 +runtimeId=2045 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2037 +runtimeId=2038 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2039 +runtimeId=2040 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2064 +runtimeId=2065 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2066 +runtimeId=2067 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2060 +runtimeId=2061 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2063 +runtimeId=2064 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2070 +runtimeId=2071 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2062 +runtimeId=2063 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2061 +runtimeId=2062 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2068 +runtimeId=2069 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2069 +runtimeId=2070 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2071 +runtimeId=2072 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2073 +runtimeId=2074 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2072 +runtimeId=2073 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2065 +runtimeId=2066 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2067 +runtimeId=2068 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2764 +runtimeId=2765 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2766 +runtimeId=2767 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2760 +runtimeId=2761 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2763 +runtimeId=2764 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2770 +runtimeId=2771 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2762 +runtimeId=2763 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2761 +runtimeId=2762 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2768 +runtimeId=2769 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2769 +runtimeId=2770 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2771 +runtimeId=2772 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2773 +runtimeId=2774 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2772 +runtimeId=2773 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2765 +runtimeId=2766 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2767 +runtimeId=2768 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2792 +runtimeId=2793 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2794 +runtimeId=2795 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2788 +runtimeId=2789 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2791 +runtimeId=2792 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2798 +runtimeId=2799 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2790 +runtimeId=2791 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2789 +runtimeId=2790 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2796 +runtimeId=2797 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2797 +runtimeId=2798 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2799 +runtimeId=2800 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2801 +runtimeId=2802 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2800 +runtimeId=2801 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2793 +runtimeId=2794 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2795 +runtimeId=2796 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2820 +runtimeId=2821 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2822 +runtimeId=2823 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2816 +runtimeId=2817 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2819 +runtimeId=2820 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2826 +runtimeId=2827 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2818 +runtimeId=2819 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2817 +runtimeId=2818 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2824 +runtimeId=2825 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2825 +runtimeId=2826 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2827 +runtimeId=2828 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2829 +runtimeId=2830 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2828 +runtimeId=2829 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2821 +runtimeId=2822 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2823 +runtimeId=2824 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3520 +runtimeId=3521 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3522 +runtimeId=3523 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3516 +runtimeId=3517 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3519 +runtimeId=3520 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3526 +runtimeId=3527 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3518 +runtimeId=3519 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3517 +runtimeId=3518 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3524 +runtimeId=3525 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3525 +runtimeId=3526 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3527 +runtimeId=3528 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3529 +runtimeId=3530 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3528 +runtimeId=3529 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3521 +runtimeId=3522 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3523 +runtimeId=3524 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3548 +runtimeId=3549 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3550 +runtimeId=3551 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3544 +runtimeId=3545 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3547 +runtimeId=3548 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3554 +runtimeId=3555 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3546 +runtimeId=3547 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3545 +runtimeId=3546 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3552 +runtimeId=3553 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3553 +runtimeId=3554 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3555 +runtimeId=3556 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3557 +runtimeId=3558 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3556 +runtimeId=3557 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3549 +runtimeId=3550 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3551 +runtimeId=3552 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3576 +runtimeId=3577 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3578 +runtimeId=3579 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3572 +runtimeId=3573 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3575 +runtimeId=3576 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3582 +runtimeId=3583 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3574 +runtimeId=3575 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3573 +runtimeId=3574 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3580 +runtimeId=3581 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3581 +runtimeId=3582 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3583 +runtimeId=3584 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3585 +runtimeId=3586 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3584 +runtimeId=3585 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3577 +runtimeId=3578 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3579 +runtimeId=3580 minecraft:cocoa;age=0;direction=0 blockId=127 -runtimeId=3586 +runtimeId=3587 minecraft:cocoa;age=0;direction=1 blockId=127 -runtimeId=3587 +runtimeId=3588 minecraft:cocoa;age=0;direction=2 blockId=127 -runtimeId=3588 +runtimeId=3589 minecraft:cocoa;age=0;direction=3 blockId=127 -runtimeId=3589 +runtimeId=3590 minecraft:cocoa;age=1;direction=0 blockId=127 -runtimeId=3590 +runtimeId=3591 minecraft:cocoa;age=1;direction=1 blockId=127 -runtimeId=3591 +runtimeId=3592 minecraft:cocoa;age=1;direction=2 blockId=127 -runtimeId=3592 +runtimeId=3593 minecraft:cocoa;age=1;direction=3 blockId=127 -runtimeId=3593 +runtimeId=3594 minecraft:cocoa;age=2;direction=0 blockId=127 -runtimeId=3594 +runtimeId=3595 minecraft:cocoa;age=2;direction=1 blockId=127 -runtimeId=3595 +runtimeId=3596 minecraft:cocoa;age=2;direction=2 blockId=127 -runtimeId=3596 +runtimeId=3597 minecraft:cocoa;age=2;direction=3 blockId=127 -runtimeId=3597 +runtimeId=3598 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=east blockId=204 -runtimeId=3600 +runtimeId=3601 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=north blockId=204 -runtimeId=3601 +runtimeId=3602 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=south blockId=204 -runtimeId=3602 +runtimeId=3603 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=top blockId=204 -runtimeId=3603 +runtimeId=3604 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=unknown blockId=204 -runtimeId=3598 +runtimeId=3599 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=west blockId=204 -runtimeId=3599 +runtimeId=3600 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=east blockId=204 -runtimeId=3606 +runtimeId=3607 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=north blockId=204 -runtimeId=3607 +runtimeId=3608 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=south blockId=204 -runtimeId=3608 +runtimeId=3609 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=top blockId=204 -runtimeId=3609 +runtimeId=3610 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=unknown blockId=204 -runtimeId=3604 +runtimeId=3605 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=west blockId=204 -runtimeId=3605 +runtimeId=3606 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=east blockId=202 -runtimeId=3612 +runtimeId=3613 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=north blockId=202 -runtimeId=3613 +runtimeId=3614 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=south blockId=202 -runtimeId=3614 +runtimeId=3615 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=top blockId=202 -runtimeId=3615 +runtimeId=3616 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=unknown blockId=202 -runtimeId=3610 +runtimeId=3611 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=west blockId=202 -runtimeId=3611 +runtimeId=3612 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=east blockId=202 -runtimeId=3618 +runtimeId=3619 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=north blockId=202 -runtimeId=3619 +runtimeId=3620 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=south blockId=202 -runtimeId=3620 +runtimeId=3621 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=top blockId=202 -runtimeId=3621 +runtimeId=3622 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=unknown blockId=202 -runtimeId=3616 +runtimeId=3617 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=west blockId=202 -runtimeId=3617 +runtimeId=3618 minecraft:command_block;conditional_bit=0;facing_direction=0 blockId=137 -runtimeId=3622 +runtimeId=3623 minecraft:command_block;conditional_bit=0;facing_direction=1 blockId=137 -runtimeId=3623 +runtimeId=3624 minecraft:command_block;conditional_bit=0;facing_direction=2 blockId=137 -runtimeId=3624 +runtimeId=3625 minecraft:command_block;conditional_bit=0;facing_direction=3 blockId=137 -runtimeId=3625 +runtimeId=3626 minecraft:command_block;conditional_bit=0;facing_direction=4 blockId=137 -runtimeId=3626 +runtimeId=3627 minecraft:command_block;conditional_bit=0;facing_direction=5 blockId=137 -runtimeId=3627 +runtimeId=3628 minecraft:command_block;conditional_bit=1;facing_direction=0 blockId=137 -runtimeId=3628 +runtimeId=3629 minecraft:command_block;conditional_bit=1;facing_direction=1 blockId=137 -runtimeId=3629 +runtimeId=3630 minecraft:command_block;conditional_bit=1;facing_direction=2 blockId=137 -runtimeId=3630 +runtimeId=3631 minecraft:command_block;conditional_bit=1;facing_direction=3 blockId=137 -runtimeId=3631 +runtimeId=3632 minecraft:command_block;conditional_bit=1;facing_direction=4 blockId=137 -runtimeId=3632 +runtimeId=3633 minecraft:command_block;conditional_bit=1;facing_direction=5 blockId=137 -runtimeId=3633 +runtimeId=3634 minecraft:composter;composter_fill_level=0 blockId=468 -runtimeId=3634 +runtimeId=3635 minecraft:composter;composter_fill_level=1 blockId=468 -runtimeId=3635 +runtimeId=3636 minecraft:composter;composter_fill_level=2 blockId=468 -runtimeId=3636 +runtimeId=3637 minecraft:composter;composter_fill_level=3 blockId=468 -runtimeId=3637 +runtimeId=3638 minecraft:composter;composter_fill_level=4 blockId=468 -runtimeId=3638 +runtimeId=3639 minecraft:composter;composter_fill_level=5 blockId=468 -runtimeId=3639 +runtimeId=3640 minecraft:composter;composter_fill_level=6 blockId=468 -runtimeId=3640 +runtimeId=3641 minecraft:composter;composter_fill_level=7 blockId=468 -runtimeId=3641 +runtimeId=3642 minecraft:composter;composter_fill_level=8 blockId=468 -runtimeId=3642 +runtimeId=3643 minecraft:concrete;color=black blockId=236 -runtimeId=3658 +runtimeId=3659 minecraft:concrete;color=blue blockId=236 -runtimeId=3654 +runtimeId=3655 minecraft:concrete;color=brown blockId=236 -runtimeId=3655 +runtimeId=3656 minecraft:concrete;color=cyan blockId=236 -runtimeId=3652 +runtimeId=3653 minecraft:concrete;color=gray blockId=236 -runtimeId=3650 +runtimeId=3651 minecraft:concrete;color=green blockId=236 -runtimeId=3656 +runtimeId=3657 minecraft:concrete;color=light_blue blockId=236 -runtimeId=3646 +runtimeId=3647 minecraft:concrete;color=lime blockId=236 -runtimeId=3648 +runtimeId=3649 minecraft:concrete;color=magenta blockId=236 -runtimeId=3645 +runtimeId=3646 minecraft:concrete;color=orange blockId=236 -runtimeId=3644 +runtimeId=3645 minecraft:concrete;color=pink blockId=236 -runtimeId=3649 +runtimeId=3650 minecraft:concrete;color=purple blockId=236 -runtimeId=3653 +runtimeId=3654 minecraft:concrete;color=red blockId=236 -runtimeId=3657 +runtimeId=3658 minecraft:concrete;color=silver blockId=236 -runtimeId=3651 +runtimeId=3652 minecraft:concrete;color=white blockId=236 -runtimeId=3643 +runtimeId=3644 minecraft:concrete;color=yellow blockId=236 -runtimeId=3647 +runtimeId=3648 minecraft:concretePowder;color=black blockId=237 -runtimeId=3674 +runtimeId=3675 minecraft:concretePowder;color=blue blockId=237 -runtimeId=3670 +runtimeId=3671 minecraft:concretePowder;color=brown blockId=237 -runtimeId=3671 +runtimeId=3672 minecraft:concretePowder;color=cyan blockId=237 -runtimeId=3668 +runtimeId=3669 minecraft:concretePowder;color=gray blockId=237 -runtimeId=3666 +runtimeId=3667 minecraft:concretePowder;color=green blockId=237 -runtimeId=3672 +runtimeId=3673 minecraft:concretePowder;color=light_blue blockId=237 -runtimeId=3662 +runtimeId=3663 minecraft:concretePowder;color=lime blockId=237 -runtimeId=3664 +runtimeId=3665 minecraft:concretePowder;color=magenta blockId=237 -runtimeId=3661 +runtimeId=3662 minecraft:concretePowder;color=orange blockId=237 -runtimeId=3660 +runtimeId=3661 minecraft:concretePowder;color=pink blockId=237 -runtimeId=3665 +runtimeId=3666 minecraft:concretePowder;color=purple blockId=237 -runtimeId=3669 +runtimeId=3670 minecraft:concretePowder;color=red blockId=237 -runtimeId=3673 +runtimeId=3674 minecraft:concretePowder;color=silver blockId=237 -runtimeId=3667 +runtimeId=3668 minecraft:concretePowder;color=white blockId=237 -runtimeId=3659 +runtimeId=3660 minecraft:concretePowder;color=yellow blockId=237 -runtimeId=3663 +runtimeId=3664 minecraft:conduit blockId=412 -runtimeId=3675 +runtimeId=3676 minecraft:copper_block blockId=595 -runtimeId=3676 +runtimeId=3677 minecraft:copper_ore blockId=566 -runtimeId=3677 +runtimeId=3678 minecraft:coral;coral_color=blue;dead_bit=0 blockId=386 -runtimeId=3678 +runtimeId=3679 minecraft:coral;coral_color=blue;dead_bit=1 blockId=386 -runtimeId=3683 +runtimeId=3684 minecraft:coral;coral_color=pink;dead_bit=0 blockId=386 -runtimeId=3679 +runtimeId=3680 minecraft:coral;coral_color=pink;dead_bit=1 blockId=386 -runtimeId=3684 +runtimeId=3685 minecraft:coral;coral_color=purple;dead_bit=0 blockId=386 -runtimeId=3680 +runtimeId=3681 minecraft:coral;coral_color=purple;dead_bit=1 blockId=386 -runtimeId=3685 +runtimeId=3686 minecraft:coral;coral_color=red;dead_bit=0 blockId=386 -runtimeId=3681 +runtimeId=3682 minecraft:coral;coral_color=red;dead_bit=1 blockId=386 -runtimeId=3686 +runtimeId=3687 minecraft:coral;coral_color=yellow;dead_bit=0 blockId=386 -runtimeId=3682 +runtimeId=3683 minecraft:coral;coral_color=yellow;dead_bit=1 blockId=386 -runtimeId=3687 +runtimeId=3688 minecraft:coral_block;coral_color=blue;dead_bit=0 blockId=387 -runtimeId=3688 +runtimeId=3689 minecraft:coral_block;coral_color=blue;dead_bit=1 blockId=387 -runtimeId=3693 +runtimeId=3694 minecraft:coral_block;coral_color=pink;dead_bit=0 blockId=387 -runtimeId=3689 +runtimeId=3690 minecraft:coral_block;coral_color=pink;dead_bit=1 blockId=387 -runtimeId=3694 +runtimeId=3695 minecraft:coral_block;coral_color=purple;dead_bit=0 blockId=387 -runtimeId=3690 +runtimeId=3691 minecraft:coral_block;coral_color=purple;dead_bit=1 blockId=387 -runtimeId=3695 +runtimeId=3696 minecraft:coral_block;coral_color=red;dead_bit=0 blockId=387 -runtimeId=3691 +runtimeId=3692 minecraft:coral_block;coral_color=red;dead_bit=1 blockId=387 -runtimeId=3696 +runtimeId=3697 minecraft:coral_block;coral_color=yellow;dead_bit=0 blockId=387 -runtimeId=3692 +runtimeId=3693 minecraft:coral_block;coral_color=yellow;dead_bit=1 blockId=387 -runtimeId=3697 +runtimeId=3698 minecraft:coral_fan;coral_fan_direction=0;coral_color=blue blockId=388 -runtimeId=3698 +runtimeId=3699 minecraft:coral_fan;coral_fan_direction=0;coral_color=pink blockId=388 -runtimeId=3699 +runtimeId=3700 minecraft:coral_fan;coral_fan_direction=0;coral_color=purple blockId=388 -runtimeId=3700 +runtimeId=3701 minecraft:coral_fan;coral_fan_direction=0;coral_color=red blockId=388 -runtimeId=3701 +runtimeId=3702 minecraft:coral_fan;coral_fan_direction=0;coral_color=yellow blockId=388 -runtimeId=3702 +runtimeId=3703 minecraft:coral_fan;coral_fan_direction=1;coral_color=blue blockId=388 -runtimeId=3703 +runtimeId=3704 minecraft:coral_fan;coral_fan_direction=1;coral_color=pink blockId=388 -runtimeId=3704 +runtimeId=3705 minecraft:coral_fan;coral_fan_direction=1;coral_color=purple blockId=388 -runtimeId=3705 +runtimeId=3706 minecraft:coral_fan;coral_fan_direction=1;coral_color=red blockId=388 -runtimeId=3706 +runtimeId=3707 minecraft:coral_fan;coral_fan_direction=1;coral_color=yellow blockId=388 -runtimeId=3707 +runtimeId=3708 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=blue blockId=389 -runtimeId=3708 +runtimeId=3709 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=pink blockId=389 -runtimeId=3709 +runtimeId=3710 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=purple blockId=389 -runtimeId=3710 +runtimeId=3711 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=red blockId=389 -runtimeId=3711 +runtimeId=3712 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=yellow blockId=389 -runtimeId=3712 +runtimeId=3713 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=blue blockId=389 -runtimeId=3713 +runtimeId=3714 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=pink blockId=389 -runtimeId=3714 +runtimeId=3715 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=purple blockId=389 -runtimeId=3715 +runtimeId=3716 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=red blockId=389 -runtimeId=3716 +runtimeId=3717 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=yellow blockId=389 -runtimeId=3717 +runtimeId=3718 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=0;dead_bit=0 blockId=390 -runtimeId=3718 +runtimeId=3719 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=0;dead_bit=1 blockId=390 -runtimeId=3720 +runtimeId=3721 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=1;dead_bit=0 blockId=390 -runtimeId=3722 +runtimeId=3723 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=1;dead_bit=1 blockId=390 -runtimeId=3724 +runtimeId=3725 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=2;dead_bit=0 blockId=390 -runtimeId=3726 +runtimeId=3727 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=2;dead_bit=1 blockId=390 -runtimeId=3728 +runtimeId=3729 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=3;dead_bit=0 blockId=390 -runtimeId=3730 +runtimeId=3731 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=3;dead_bit=1 blockId=390 -runtimeId=3732 +runtimeId=3733 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=0;dead_bit=0 blockId=390 -runtimeId=3719 +runtimeId=3720 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=0;dead_bit=1 blockId=390 -runtimeId=3721 +runtimeId=3722 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=1;dead_bit=0 blockId=390 -runtimeId=3723 +runtimeId=3724 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=1;dead_bit=1 blockId=390 -runtimeId=3725 +runtimeId=3726 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=2;dead_bit=0 blockId=390 -runtimeId=3727 +runtimeId=3728 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=2;dead_bit=1 blockId=390 -runtimeId=3729 +runtimeId=3730 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=3;dead_bit=0 blockId=390 -runtimeId=3731 +runtimeId=3732 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=3;dead_bit=1 blockId=390 -runtimeId=3733 +runtimeId=3734 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=0;dead_bit=0 blockId=391 -runtimeId=3734 +runtimeId=3735 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=0;dead_bit=1 blockId=391 -runtimeId=3736 +runtimeId=3737 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=1;dead_bit=0 blockId=391 -runtimeId=3738 +runtimeId=3739 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=1;dead_bit=1 blockId=391 -runtimeId=3740 +runtimeId=3741 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=2;dead_bit=0 blockId=391 -runtimeId=3742 +runtimeId=3743 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=2;dead_bit=1 blockId=391 -runtimeId=3744 +runtimeId=3745 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=3;dead_bit=0 blockId=391 -runtimeId=3746 +runtimeId=3747 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=3;dead_bit=1 blockId=391 -runtimeId=3748 +runtimeId=3749 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=0;dead_bit=0 blockId=391 -runtimeId=3735 +runtimeId=3736 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=0;dead_bit=1 blockId=391 -runtimeId=3737 +runtimeId=3738 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=1;dead_bit=0 blockId=391 -runtimeId=3739 +runtimeId=3740 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=1;dead_bit=1 blockId=391 -runtimeId=3741 +runtimeId=3742 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=2;dead_bit=0 blockId=391 -runtimeId=3743 +runtimeId=3744 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=2;dead_bit=1 blockId=391 -runtimeId=3745 +runtimeId=3746 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=3;dead_bit=0 blockId=391 -runtimeId=3747 +runtimeId=3748 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=3;dead_bit=1 blockId=391 -runtimeId=3749 +runtimeId=3750 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=0;dead_bit=0 blockId=392 -runtimeId=3750 +runtimeId=3751 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=0;dead_bit=1 blockId=392 -runtimeId=3752 +runtimeId=3753 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=1;dead_bit=0 blockId=392 -runtimeId=3754 +runtimeId=3755 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=1;dead_bit=1 blockId=392 -runtimeId=3756 +runtimeId=3757 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=2;dead_bit=0 blockId=392 -runtimeId=3758 +runtimeId=3759 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=2;dead_bit=1 blockId=392 -runtimeId=3760 +runtimeId=3761 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=3;dead_bit=0 blockId=392 -runtimeId=3762 +runtimeId=3763 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=3;dead_bit=1 blockId=392 -runtimeId=3764 +runtimeId=3765 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=0;dead_bit=0 blockId=392 -runtimeId=3751 +runtimeId=3752 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=0;dead_bit=1 blockId=392 -runtimeId=3753 +runtimeId=3754 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=1;dead_bit=0 blockId=392 -runtimeId=3755 +runtimeId=3756 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=1;dead_bit=1 blockId=392 -runtimeId=3757 +runtimeId=3758 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=2;dead_bit=0 blockId=392 -runtimeId=3759 +runtimeId=3760 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=2;dead_bit=1 blockId=392 -runtimeId=3761 +runtimeId=3762 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=3;dead_bit=0 blockId=392 -runtimeId=3763 +runtimeId=3764 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=3;dead_bit=1 blockId=392 -runtimeId=3765 +runtimeId=3766 minecraft:cracked_deepslate_bricks blockId=665 -runtimeId=3766 +runtimeId=3767 minecraft:cracked_deepslate_tiles blockId=664 -runtimeId=3767 +runtimeId=3768 minecraft:cracked_nether_bricks blockId=558 -runtimeId=3768 +runtimeId=3769 minecraft:cracked_polished_blackstone_bricks blockId=535 -runtimeId=3769 +runtimeId=3770 minecraft:crafting_table blockId=58 -runtimeId=3770 +runtimeId=3771 minecraft:crimson_button;button_pressed_bit=0;facing_direction=0 blockId=515 -runtimeId=3771 +runtimeId=3772 minecraft:crimson_button;button_pressed_bit=0;facing_direction=1 blockId=515 -runtimeId=3772 +runtimeId=3773 minecraft:crimson_button;button_pressed_bit=0;facing_direction=2 blockId=515 -runtimeId=3773 +runtimeId=3774 minecraft:crimson_button;button_pressed_bit=0;facing_direction=3 blockId=515 -runtimeId=3774 +runtimeId=3775 minecraft:crimson_button;button_pressed_bit=0;facing_direction=4 blockId=515 -runtimeId=3775 +runtimeId=3776 minecraft:crimson_button;button_pressed_bit=0;facing_direction=5 blockId=515 -runtimeId=3776 +runtimeId=3777 minecraft:crimson_button;button_pressed_bit=1;facing_direction=0 blockId=515 -runtimeId=3777 +runtimeId=3778 minecraft:crimson_button;button_pressed_bit=1;facing_direction=1 blockId=515 -runtimeId=3778 +runtimeId=3779 minecraft:crimson_button;button_pressed_bit=1;facing_direction=2 blockId=515 -runtimeId=3779 +runtimeId=3780 minecraft:crimson_button;button_pressed_bit=1;facing_direction=3 blockId=515 -runtimeId=3780 +runtimeId=3781 minecraft:crimson_button;button_pressed_bit=1;facing_direction=4 blockId=515 -runtimeId=3781 +runtimeId=3782 minecraft:crimson_button;button_pressed_bit=1;facing_direction=5 blockId=515 -runtimeId=3782 +runtimeId=3783 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=499 -runtimeId=3783 +runtimeId=3784 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=499 -runtimeId=3784 +runtimeId=3785 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=499 -runtimeId=3785 +runtimeId=3786 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=499 -runtimeId=3786 +runtimeId=3787 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=499 -runtimeId=3799 +runtimeId=3800 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=499 -runtimeId=3800 +runtimeId=3801 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=499 -runtimeId=3801 +runtimeId=3802 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=499 -runtimeId=3802 +runtimeId=3803 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=499 -runtimeId=3791 +runtimeId=3792 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=499 -runtimeId=3792 +runtimeId=3793 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=499 -runtimeId=3793 +runtimeId=3794 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=499 -runtimeId=3794 +runtimeId=3795 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=499 -runtimeId=3807 +runtimeId=3808 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=499 -runtimeId=3808 +runtimeId=3809 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=499 -runtimeId=3809 +runtimeId=3810 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=499 -runtimeId=3810 +runtimeId=3811 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=499 -runtimeId=3787 +runtimeId=3788 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=499 -runtimeId=3788 +runtimeId=3789 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=499 -runtimeId=3789 +runtimeId=3790 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=499 -runtimeId=3790 +runtimeId=3791 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=499 -runtimeId=3803 +runtimeId=3804 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=499 -runtimeId=3804 +runtimeId=3805 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=499 -runtimeId=3805 +runtimeId=3806 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=499 -runtimeId=3806 +runtimeId=3807 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=499 -runtimeId=3795 +runtimeId=3796 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=499 -runtimeId=3796 +runtimeId=3797 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=499 -runtimeId=3797 +runtimeId=3798 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=499 -runtimeId=3798 +runtimeId=3799 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=499 -runtimeId=3811 +runtimeId=3812 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=499 -runtimeId=3812 +runtimeId=3813 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=499 -runtimeId=3813 +runtimeId=3814 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=499 -runtimeId=3814 +runtimeId=3815 minecraft:crimson_double_slab;top_slot_bit=0 blockId=521 -runtimeId=3815 +runtimeId=3816 minecraft:crimson_double_slab;top_slot_bit=1 blockId=521 -runtimeId=3816 +runtimeId=3817 minecraft:crimson_fence blockId=511 -runtimeId=3817 +runtimeId=3818 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=513 -runtimeId=3818 +runtimeId=3819 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=513 -runtimeId=3819 +runtimeId=3820 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=513 -runtimeId=3820 +runtimeId=3821 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=513 -runtimeId=3821 +runtimeId=3822 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=513 -runtimeId=3822 +runtimeId=3823 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=513 -runtimeId=3823 +runtimeId=3824 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=513 -runtimeId=3824 +runtimeId=3825 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=513 -runtimeId=3825 +runtimeId=3826 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=513 -runtimeId=3826 +runtimeId=3827 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=513 -runtimeId=3827 +runtimeId=3828 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=513 -runtimeId=3828 +runtimeId=3829 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=513 -runtimeId=3829 +runtimeId=3830 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=513 -runtimeId=3830 +runtimeId=3831 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=513 -runtimeId=3831 +runtimeId=3832 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=513 -runtimeId=3832 +runtimeId=3833 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=513 -runtimeId=3833 +runtimeId=3834 minecraft:crimson_fungus blockId=483 -runtimeId=3834 - -minecraft:crimson_hyphae;pillar_axis=x -blockId=554 -runtimeId=3836 - -minecraft:crimson_hyphae;pillar_axis=y -blockId=554 runtimeId=3835 -minecraft:crimson_hyphae;pillar_axis=z +minecraft:crimson_hyphae;pillar_axis=y blockId=554 -runtimeId=3837 +runtimeId=3838 minecraft:crimson_nylium blockId=487 -runtimeId=3838 +runtimeId=3839 minecraft:crimson_planks blockId=497 -runtimeId=3839 +runtimeId=3840 minecraft:crimson_pressure_plate;redstone_signal=0 blockId=517 -runtimeId=3840 +runtimeId=3841 minecraft:crimson_pressure_plate;redstone_signal=1 blockId=517 -runtimeId=3841 +runtimeId=3842 minecraft:crimson_pressure_plate;redstone_signal=2 blockId=517 -runtimeId=3842 +runtimeId=3843 minecraft:crimson_pressure_plate;redstone_signal=3 blockId=517 -runtimeId=3843 +runtimeId=3844 minecraft:crimson_pressure_plate;redstone_signal=4 blockId=517 -runtimeId=3844 +runtimeId=3845 minecraft:crimson_pressure_plate;redstone_signal=5 blockId=517 -runtimeId=3845 +runtimeId=3846 minecraft:crimson_pressure_plate;redstone_signal=6 blockId=517 -runtimeId=3846 +runtimeId=3847 minecraft:crimson_pressure_plate;redstone_signal=7 blockId=517 -runtimeId=3847 +runtimeId=3848 minecraft:crimson_pressure_plate;redstone_signal=8 blockId=517 -runtimeId=3848 +runtimeId=3849 minecraft:crimson_pressure_plate;redstone_signal=9 blockId=517 -runtimeId=3849 +runtimeId=3850 minecraft:crimson_pressure_plate;redstone_signal=10 blockId=517 -runtimeId=3850 +runtimeId=3851 minecraft:crimson_pressure_plate;redstone_signal=11 blockId=517 -runtimeId=3851 +runtimeId=3852 minecraft:crimson_pressure_plate;redstone_signal=12 blockId=517 -runtimeId=3852 +runtimeId=3853 minecraft:crimson_pressure_plate;redstone_signal=13 blockId=517 -runtimeId=3853 +runtimeId=3854 minecraft:crimson_pressure_plate;redstone_signal=14 blockId=517 -runtimeId=3854 +runtimeId=3855 minecraft:crimson_pressure_plate;redstone_signal=15 blockId=517 -runtimeId=3855 +runtimeId=3856 minecraft:crimson_roots blockId=478 -runtimeId=3856 +runtimeId=3857 minecraft:crimson_slab;top_slot_bit=0 blockId=519 -runtimeId=3857 +runtimeId=3858 minecraft:crimson_slab;top_slot_bit=1 blockId=519 -runtimeId=3858 +runtimeId=3859 minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=0 blockId=509 -runtimeId=3859 +runtimeId=3860 minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=1 blockId=509 -runtimeId=3860 +runtimeId=3861 minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=2 blockId=509 -runtimeId=3861 +runtimeId=3862 minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=3 blockId=509 -runtimeId=3862 +runtimeId=3863 minecraft:crimson_stairs;upside_down_bit=1;weirdo_direction=0 blockId=509 -runtimeId=3863 +runtimeId=3864 minecraft:crimson_stairs;upside_down_bit=1;weirdo_direction=1 blockId=509 -runtimeId=3864 +runtimeId=3865 minecraft:crimson_stairs;upside_down_bit=1;weirdo_direction=2 blockId=509 -runtimeId=3865 +runtimeId=3866 minecraft:crimson_stairs;upside_down_bit=1;weirdo_direction=3 blockId=509 -runtimeId=3866 +runtimeId=3867 minecraft:crimson_standing_sign;ground_sign_direction=0 blockId=505 -runtimeId=3867 +runtimeId=3868 minecraft:crimson_standing_sign;ground_sign_direction=1 blockId=505 -runtimeId=3868 +runtimeId=3869 minecraft:crimson_standing_sign;ground_sign_direction=2 blockId=505 -runtimeId=3869 +runtimeId=3870 minecraft:crimson_standing_sign;ground_sign_direction=3 blockId=505 -runtimeId=3870 +runtimeId=3871 minecraft:crimson_standing_sign;ground_sign_direction=4 blockId=505 -runtimeId=3871 +runtimeId=3872 minecraft:crimson_standing_sign;ground_sign_direction=5 blockId=505 -runtimeId=3872 +runtimeId=3873 minecraft:crimson_standing_sign;ground_sign_direction=6 blockId=505 -runtimeId=3873 +runtimeId=3874 minecraft:crimson_standing_sign;ground_sign_direction=7 blockId=505 -runtimeId=3874 +runtimeId=3875 minecraft:crimson_standing_sign;ground_sign_direction=8 blockId=505 -runtimeId=3875 +runtimeId=3876 minecraft:crimson_standing_sign;ground_sign_direction=9 blockId=505 -runtimeId=3876 +runtimeId=3877 minecraft:crimson_standing_sign;ground_sign_direction=10 blockId=505 -runtimeId=3877 +runtimeId=3878 minecraft:crimson_standing_sign;ground_sign_direction=11 blockId=505 -runtimeId=3878 +runtimeId=3879 minecraft:crimson_standing_sign;ground_sign_direction=12 blockId=505 -runtimeId=3879 +runtimeId=3880 minecraft:crimson_standing_sign;ground_sign_direction=13 blockId=505 -runtimeId=3880 +runtimeId=3881 minecraft:crimson_standing_sign;ground_sign_direction=14 blockId=505 -runtimeId=3881 +runtimeId=3882 minecraft:crimson_standing_sign;ground_sign_direction=15 blockId=505 -runtimeId=3882 - -minecraft:crimson_stem;pillar_axis=x -blockId=480 -runtimeId=3884 - -minecraft:crimson_stem;pillar_axis=y -blockId=480 runtimeId=3883 -minecraft:crimson_stem;pillar_axis=z +minecraft:crimson_stem;pillar_axis=y blockId=480 -runtimeId=3885 +runtimeId=3886 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=501 -runtimeId=3886 +runtimeId=3887 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=501 -runtimeId=3887 +runtimeId=3888 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=501 -runtimeId=3888 +runtimeId=3889 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=501 -runtimeId=3889 +runtimeId=3890 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=501 -runtimeId=3890 +runtimeId=3891 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=501 -runtimeId=3891 +runtimeId=3892 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=501 -runtimeId=3892 +runtimeId=3893 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=501 -runtimeId=3893 +runtimeId=3894 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=501 -runtimeId=3894 +runtimeId=3895 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=501 -runtimeId=3895 +runtimeId=3896 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=501 -runtimeId=3896 +runtimeId=3897 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=501 -runtimeId=3897 +runtimeId=3898 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=501 -runtimeId=3898 +runtimeId=3899 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=501 -runtimeId=3899 +runtimeId=3900 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=501 -runtimeId=3900 +runtimeId=3901 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=501 -runtimeId=3901 +runtimeId=3902 minecraft:crimson_wall_sign;facing_direction=0 blockId=507 -runtimeId=3902 +runtimeId=3903 minecraft:crimson_wall_sign;facing_direction=1 blockId=507 -runtimeId=3903 +runtimeId=3904 minecraft:crimson_wall_sign;facing_direction=2 blockId=507 -runtimeId=3904 +runtimeId=3905 minecraft:crimson_wall_sign;facing_direction=3 blockId=507 -runtimeId=3905 +runtimeId=3906 minecraft:crimson_wall_sign;facing_direction=4 blockId=507 -runtimeId=3906 +runtimeId=3907 minecraft:crimson_wall_sign;facing_direction=5 blockId=507 -runtimeId=3907 +runtimeId=3908 minecraft:crying_obsidian blockId=544 -runtimeId=3908 +runtimeId=3909 minecraft:cut_copper blockId=602 -runtimeId=3909 +runtimeId=3910 minecraft:cut_copper_slab;top_slot_bit=0 blockId=616 -runtimeId=3910 +runtimeId=3911 minecraft:cut_copper_slab;top_slot_bit=1 blockId=616 -runtimeId=3911 +runtimeId=3912 minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=609 -runtimeId=3912 +runtimeId=3913 minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=609 -runtimeId=3913 +runtimeId=3914 minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=609 -runtimeId=3914 +runtimeId=3915 minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=609 -runtimeId=3915 +runtimeId=3916 minecraft:cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=609 -runtimeId=3916 +runtimeId=3917 minecraft:cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=609 -runtimeId=3917 +runtimeId=3918 minecraft:cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=609 -runtimeId=3918 +runtimeId=3919 minecraft:cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=609 -runtimeId=3919 +runtimeId=3920 minecraft:cyan_candle;lit=0;candles=0 blockId=677 -runtimeId=3920 +runtimeId=3921 minecraft:cyan_candle;lit=0;candles=1 blockId=677 -runtimeId=3921 +runtimeId=3922 minecraft:cyan_candle;lit=0;candles=2 blockId=677 -runtimeId=3922 +runtimeId=3923 minecraft:cyan_candle;lit=0;candles=3 blockId=677 -runtimeId=3923 +runtimeId=3924 minecraft:cyan_candle;lit=1;candles=0 blockId=677 -runtimeId=3924 +runtimeId=3925 minecraft:cyan_candle;lit=1;candles=1 blockId=677 -runtimeId=3925 +runtimeId=3926 minecraft:cyan_candle;lit=1;candles=2 blockId=677 -runtimeId=3926 +runtimeId=3927 minecraft:cyan_candle;lit=1;candles=3 blockId=677 -runtimeId=3927 +runtimeId=3928 minecraft:cyan_candle_cake;lit=0 blockId=694 -runtimeId=3928 +runtimeId=3929 minecraft:cyan_candle_cake;lit=1 blockId=694 -runtimeId=3929 +runtimeId=3930 minecraft:cyan_glazed_terracotta;facing_direction=0 blockId=229 -runtimeId=3930 +runtimeId=3931 minecraft:cyan_glazed_terracotta;facing_direction=1 blockId=229 -runtimeId=3931 +runtimeId=3932 minecraft:cyan_glazed_terracotta;facing_direction=2 blockId=229 -runtimeId=3932 +runtimeId=3933 minecraft:cyan_glazed_terracotta;facing_direction=3 blockId=229 -runtimeId=3933 +runtimeId=3934 minecraft:cyan_glazed_terracotta;facing_direction=4 blockId=229 -runtimeId=3934 +runtimeId=3935 minecraft:cyan_glazed_terracotta;facing_direction=5 blockId=229 -runtimeId=3935 +runtimeId=3936 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=0 blockId=397 -runtimeId=3936 +runtimeId=3937 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=1 blockId=397 -runtimeId=3937 +runtimeId=3938 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=2 blockId=397 -runtimeId=3938 +runtimeId=3939 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=3 blockId=397 -runtimeId=3939 +runtimeId=3940 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=4 blockId=397 -runtimeId=3940 +runtimeId=3941 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=5 blockId=397 -runtimeId=3941 +runtimeId=3942 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=0 blockId=397 -runtimeId=3942 +runtimeId=3943 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=1 blockId=397 -runtimeId=3943 +runtimeId=3944 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=2 blockId=397 -runtimeId=3944 +runtimeId=3945 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=3 blockId=397 -runtimeId=3945 +runtimeId=3946 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=4 blockId=397 -runtimeId=3946 +runtimeId=3947 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=5 blockId=397 -runtimeId=3947 +runtimeId=3948 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=197 -runtimeId=3948 +runtimeId=3949 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=197 -runtimeId=3949 +runtimeId=3950 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=197 -runtimeId=3950 +runtimeId=3951 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=197 -runtimeId=3951 +runtimeId=3952 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=197 -runtimeId=3964 +runtimeId=3965 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=197 -runtimeId=3965 +runtimeId=3966 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=197 -runtimeId=3966 +runtimeId=3967 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=197 -runtimeId=3967 +runtimeId=3968 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=197 -runtimeId=3956 +runtimeId=3957 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=197 -runtimeId=3957 +runtimeId=3958 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=197 -runtimeId=3958 +runtimeId=3959 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=197 -runtimeId=3959 +runtimeId=3960 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=197 -runtimeId=3972 +runtimeId=3973 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=197 -runtimeId=3973 +runtimeId=3974 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=197 -runtimeId=3974 +runtimeId=3975 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=197 -runtimeId=3975 +runtimeId=3976 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=197 -runtimeId=3952 +runtimeId=3953 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=197 -runtimeId=3953 +runtimeId=3954 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=197 -runtimeId=3954 +runtimeId=3955 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=197 -runtimeId=3955 +runtimeId=3956 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=197 -runtimeId=3968 +runtimeId=3969 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=197 -runtimeId=3969 +runtimeId=3970 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=197 -runtimeId=3970 +runtimeId=3971 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=197 -runtimeId=3971 +runtimeId=3972 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=197 -runtimeId=3960 +runtimeId=3961 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=197 -runtimeId=3961 +runtimeId=3962 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=197 -runtimeId=3962 +runtimeId=3963 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=197 -runtimeId=3963 +runtimeId=3964 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=197 -runtimeId=3976 +runtimeId=3977 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=197 -runtimeId=3977 +runtimeId=3978 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=197 -runtimeId=3978 +runtimeId=3979 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=197 -runtimeId=3979 +runtimeId=3980 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=186 -runtimeId=3980 +runtimeId=3981 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=186 -runtimeId=3981 +runtimeId=3982 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=186 -runtimeId=3982 +runtimeId=3983 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=186 -runtimeId=3983 +runtimeId=3984 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=186 -runtimeId=3984 +runtimeId=3985 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=186 -runtimeId=3985 +runtimeId=3986 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=186 -runtimeId=3986 +runtimeId=3987 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=186 -runtimeId=3987 +runtimeId=3988 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=186 -runtimeId=3988 +runtimeId=3989 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=186 -runtimeId=3989 +runtimeId=3990 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=186 -runtimeId=3990 +runtimeId=3991 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=186 -runtimeId=3991 +runtimeId=3992 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=186 -runtimeId=3992 +runtimeId=3993 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=186 -runtimeId=3993 +runtimeId=3994 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=186 -runtimeId=3994 +runtimeId=3995 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=186 -runtimeId=3995 +runtimeId=3996 minecraft:dark_oak_pressure_plate;redstone_signal=0 blockId=407 -runtimeId=3996 +runtimeId=3997 minecraft:dark_oak_pressure_plate;redstone_signal=1 blockId=407 -runtimeId=3997 +runtimeId=3998 minecraft:dark_oak_pressure_plate;redstone_signal=2 blockId=407 -runtimeId=3998 +runtimeId=3999 minecraft:dark_oak_pressure_plate;redstone_signal=3 blockId=407 -runtimeId=3999 +runtimeId=4000 minecraft:dark_oak_pressure_plate;redstone_signal=4 blockId=407 -runtimeId=4000 +runtimeId=4001 minecraft:dark_oak_pressure_plate;redstone_signal=5 blockId=407 -runtimeId=4001 +runtimeId=4002 minecraft:dark_oak_pressure_plate;redstone_signal=6 blockId=407 -runtimeId=4002 +runtimeId=4003 minecraft:dark_oak_pressure_plate;redstone_signal=7 blockId=407 -runtimeId=4003 +runtimeId=4004 minecraft:dark_oak_pressure_plate;redstone_signal=8 blockId=407 -runtimeId=4004 +runtimeId=4005 minecraft:dark_oak_pressure_plate;redstone_signal=9 blockId=407 -runtimeId=4005 +runtimeId=4006 minecraft:dark_oak_pressure_plate;redstone_signal=10 blockId=407 -runtimeId=4006 +runtimeId=4007 minecraft:dark_oak_pressure_plate;redstone_signal=11 blockId=407 -runtimeId=4007 +runtimeId=4008 minecraft:dark_oak_pressure_plate;redstone_signal=12 blockId=407 -runtimeId=4008 +runtimeId=4009 minecraft:dark_oak_pressure_plate;redstone_signal=13 blockId=407 -runtimeId=4009 +runtimeId=4010 minecraft:dark_oak_pressure_plate;redstone_signal=14 blockId=407 -runtimeId=4010 +runtimeId=4011 minecraft:dark_oak_pressure_plate;redstone_signal=15 blockId=407 -runtimeId=4011 +runtimeId=4012 minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=0 blockId=164 -runtimeId=4012 +runtimeId=4013 minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=1 blockId=164 -runtimeId=4013 +runtimeId=4014 minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=2 blockId=164 -runtimeId=4014 +runtimeId=4015 minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=3 blockId=164 -runtimeId=4015 +runtimeId=4016 minecraft:dark_oak_stairs;upside_down_bit=1;weirdo_direction=0 blockId=164 -runtimeId=4016 +runtimeId=4017 minecraft:dark_oak_stairs;upside_down_bit=1;weirdo_direction=1 blockId=164 -runtimeId=4017 +runtimeId=4018 minecraft:dark_oak_stairs;upside_down_bit=1;weirdo_direction=2 blockId=164 -runtimeId=4018 +runtimeId=4019 minecraft:dark_oak_stairs;upside_down_bit=1;weirdo_direction=3 blockId=164 -runtimeId=4019 +runtimeId=4020 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=402 -runtimeId=4020 +runtimeId=4021 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=402 -runtimeId=4021 +runtimeId=4022 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=402 -runtimeId=4022 +runtimeId=4023 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=402 -runtimeId=4023 +runtimeId=4024 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=402 -runtimeId=4024 +runtimeId=4025 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=402 -runtimeId=4025 +runtimeId=4026 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=402 -runtimeId=4026 +runtimeId=4027 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=402 -runtimeId=4027 +runtimeId=4028 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=402 -runtimeId=4028 +runtimeId=4029 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=402 -runtimeId=4029 +runtimeId=4030 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=402 -runtimeId=4030 +runtimeId=4031 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=402 -runtimeId=4031 +runtimeId=4032 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=402 -runtimeId=4032 +runtimeId=4033 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=402 -runtimeId=4033 +runtimeId=4034 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=402 -runtimeId=4034 +runtimeId=4035 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=402 -runtimeId=4035 +runtimeId=4036 minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=0 blockId=258 -runtimeId=4036 +runtimeId=4037 minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=1 blockId=258 -runtimeId=4037 +runtimeId=4038 minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=2 blockId=258 -runtimeId=4038 +runtimeId=4039 minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=3 blockId=258 -runtimeId=4039 +runtimeId=4040 minecraft:dark_prismarine_stairs;upside_down_bit=1;weirdo_direction=0 blockId=258 -runtimeId=4040 +runtimeId=4041 minecraft:dark_prismarine_stairs;upside_down_bit=1;weirdo_direction=1 blockId=258 -runtimeId=4041 +runtimeId=4042 minecraft:dark_prismarine_stairs;upside_down_bit=1;weirdo_direction=2 blockId=258 -runtimeId=4042 +runtimeId=4043 minecraft:dark_prismarine_stairs;upside_down_bit=1;weirdo_direction=3 blockId=258 -runtimeId=4043 +runtimeId=4044 minecraft:darkoak_standing_sign;ground_sign_direction=0 blockId=447 -runtimeId=4044 +runtimeId=4045 minecraft:darkoak_standing_sign;ground_sign_direction=1 blockId=447 -runtimeId=4045 +runtimeId=4046 minecraft:darkoak_standing_sign;ground_sign_direction=2 blockId=447 -runtimeId=4046 +runtimeId=4047 minecraft:darkoak_standing_sign;ground_sign_direction=3 blockId=447 -runtimeId=4047 +runtimeId=4048 minecraft:darkoak_standing_sign;ground_sign_direction=4 blockId=447 -runtimeId=4048 +runtimeId=4049 minecraft:darkoak_standing_sign;ground_sign_direction=5 blockId=447 -runtimeId=4049 +runtimeId=4050 minecraft:darkoak_standing_sign;ground_sign_direction=6 blockId=447 -runtimeId=4050 +runtimeId=4051 minecraft:darkoak_standing_sign;ground_sign_direction=7 blockId=447 -runtimeId=4051 +runtimeId=4052 minecraft:darkoak_standing_sign;ground_sign_direction=8 blockId=447 -runtimeId=4052 +runtimeId=4053 minecraft:darkoak_standing_sign;ground_sign_direction=9 blockId=447 -runtimeId=4053 +runtimeId=4054 minecraft:darkoak_standing_sign;ground_sign_direction=10 blockId=447 -runtimeId=4054 +runtimeId=4055 minecraft:darkoak_standing_sign;ground_sign_direction=11 blockId=447 -runtimeId=4055 +runtimeId=4056 minecraft:darkoak_standing_sign;ground_sign_direction=12 blockId=447 -runtimeId=4056 +runtimeId=4057 minecraft:darkoak_standing_sign;ground_sign_direction=13 blockId=447 -runtimeId=4057 +runtimeId=4058 minecraft:darkoak_standing_sign;ground_sign_direction=14 blockId=447 -runtimeId=4058 +runtimeId=4059 minecraft:darkoak_standing_sign;ground_sign_direction=15 blockId=447 -runtimeId=4059 +runtimeId=4060 minecraft:darkoak_wall_sign;facing_direction=0 blockId=448 -runtimeId=4060 +runtimeId=4061 minecraft:darkoak_wall_sign;facing_direction=1 blockId=448 -runtimeId=4061 +runtimeId=4062 minecraft:darkoak_wall_sign;facing_direction=2 blockId=448 -runtimeId=4062 +runtimeId=4063 minecraft:darkoak_wall_sign;facing_direction=3 blockId=448 -runtimeId=4063 +runtimeId=4064 minecraft:darkoak_wall_sign;facing_direction=4 blockId=448 -runtimeId=4064 +runtimeId=4065 minecraft:darkoak_wall_sign;facing_direction=5 blockId=448 -runtimeId=4065 +runtimeId=4066 minecraft:daylight_detector;redstone_signal=0 blockId=151 -runtimeId=4066 +runtimeId=4067 minecraft:daylight_detector;redstone_signal=1 blockId=151 -runtimeId=4067 +runtimeId=4068 minecraft:daylight_detector;redstone_signal=2 blockId=151 -runtimeId=4068 +runtimeId=4069 minecraft:daylight_detector;redstone_signal=3 blockId=151 -runtimeId=4069 +runtimeId=4070 minecraft:daylight_detector;redstone_signal=4 blockId=151 -runtimeId=4070 +runtimeId=4071 minecraft:daylight_detector;redstone_signal=5 blockId=151 -runtimeId=4071 +runtimeId=4072 minecraft:daylight_detector;redstone_signal=6 blockId=151 -runtimeId=4072 +runtimeId=4073 minecraft:daylight_detector;redstone_signal=7 blockId=151 -runtimeId=4073 +runtimeId=4074 minecraft:daylight_detector;redstone_signal=8 blockId=151 -runtimeId=4074 +runtimeId=4075 minecraft:daylight_detector;redstone_signal=9 blockId=151 -runtimeId=4075 +runtimeId=4076 minecraft:daylight_detector;redstone_signal=10 blockId=151 -runtimeId=4076 +runtimeId=4077 minecraft:daylight_detector;redstone_signal=11 blockId=151 -runtimeId=4077 +runtimeId=4078 minecraft:daylight_detector;redstone_signal=12 blockId=151 -runtimeId=4078 +runtimeId=4079 minecraft:daylight_detector;redstone_signal=13 blockId=151 -runtimeId=4079 +runtimeId=4080 minecraft:daylight_detector;redstone_signal=14 blockId=151 -runtimeId=4080 +runtimeId=4081 minecraft:daylight_detector;redstone_signal=15 blockId=151 -runtimeId=4081 +runtimeId=4082 minecraft:daylight_detector_inverted;redstone_signal=0 blockId=178 -runtimeId=4082 +runtimeId=4083 minecraft:daylight_detector_inverted;redstone_signal=1 blockId=178 -runtimeId=4083 +runtimeId=4084 minecraft:daylight_detector_inverted;redstone_signal=2 blockId=178 -runtimeId=4084 +runtimeId=4085 minecraft:daylight_detector_inverted;redstone_signal=3 blockId=178 -runtimeId=4085 +runtimeId=4086 minecraft:daylight_detector_inverted;redstone_signal=4 blockId=178 -runtimeId=4086 +runtimeId=4087 minecraft:daylight_detector_inverted;redstone_signal=5 blockId=178 -runtimeId=4087 +runtimeId=4088 minecraft:daylight_detector_inverted;redstone_signal=6 blockId=178 -runtimeId=4088 +runtimeId=4089 minecraft:daylight_detector_inverted;redstone_signal=7 blockId=178 -runtimeId=4089 +runtimeId=4090 minecraft:daylight_detector_inverted;redstone_signal=8 blockId=178 -runtimeId=4090 +runtimeId=4091 minecraft:daylight_detector_inverted;redstone_signal=9 blockId=178 -runtimeId=4091 +runtimeId=4092 minecraft:daylight_detector_inverted;redstone_signal=10 blockId=178 -runtimeId=4092 +runtimeId=4093 minecraft:daylight_detector_inverted;redstone_signal=11 blockId=178 -runtimeId=4093 +runtimeId=4094 minecraft:daylight_detector_inverted;redstone_signal=12 blockId=178 -runtimeId=4094 +runtimeId=4095 minecraft:daylight_detector_inverted;redstone_signal=13 blockId=178 -runtimeId=4095 +runtimeId=4096 minecraft:daylight_detector_inverted;redstone_signal=14 blockId=178 -runtimeId=4096 +runtimeId=4097 minecraft:daylight_detector_inverted;redstone_signal=15 blockId=178 -runtimeId=4097 +runtimeId=4098 minecraft:deadbush blockId=32 -runtimeId=4098 - -minecraft:deepslate;pillar_axis=x -blockId=633 -runtimeId=4100 - -minecraft:deepslate;pillar_axis=y -blockId=633 runtimeId=4099 -minecraft:deepslate;pillar_axis=z +minecraft:deepslate;pillar_axis=y blockId=633 -runtimeId=4101 +runtimeId=4102 minecraft:deepslate_brick_double_slab;top_slot_bit=0 blockId=654 -runtimeId=4102 +runtimeId=4103 minecraft:deepslate_brick_double_slab;top_slot_bit=1 blockId=654 -runtimeId=4103 +runtimeId=4104 minecraft:deepslate_brick_slab;top_slot_bit=0 blockId=647 -runtimeId=4104 +runtimeId=4105 minecraft:deepslate_brick_slab;top_slot_bit=1 blockId=647 -runtimeId=4105 +runtimeId=4106 minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=648 -runtimeId=4106 +runtimeId=4107 minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=648 -runtimeId=4107 +runtimeId=4108 minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=648 -runtimeId=4108 +runtimeId=4109 minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=648 -runtimeId=4109 +runtimeId=4110 minecraft:deepslate_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=648 -runtimeId=4110 +runtimeId=4111 minecraft:deepslate_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=648 -runtimeId=4111 +runtimeId=4112 minecraft:deepslate_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=648 -runtimeId=4112 +runtimeId=4113 minecraft:deepslate_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=648 -runtimeId=4113 +runtimeId=4114 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4114 +runtimeId=4115 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4116 +runtimeId=4117 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4118 +runtimeId=4119 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4168 +runtimeId=4169 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4170 +runtimeId=4171 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4172 +runtimeId=4173 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4222 +runtimeId=4223 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4224 +runtimeId=4225 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4226 +runtimeId=4227 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4132 +runtimeId=4133 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4134 +runtimeId=4135 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4136 +runtimeId=4137 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4186 +runtimeId=4187 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4188 +runtimeId=4189 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4190 +runtimeId=4191 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4240 +runtimeId=4241 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4242 +runtimeId=4243 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4244 +runtimeId=4245 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4150 +runtimeId=4151 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4152 +runtimeId=4153 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4154 +runtimeId=4155 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4204 +runtimeId=4205 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4206 +runtimeId=4207 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4208 +runtimeId=4209 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4258 +runtimeId=4259 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4260 +runtimeId=4261 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4262 +runtimeId=4263 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4115 +runtimeId=4116 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4117 +runtimeId=4118 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4119 +runtimeId=4120 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4169 +runtimeId=4170 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4171 +runtimeId=4172 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4173 +runtimeId=4174 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4223 +runtimeId=4224 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4225 +runtimeId=4226 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4227 +runtimeId=4228 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4133 +runtimeId=4134 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4135 +runtimeId=4136 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4137 +runtimeId=4138 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4187 +runtimeId=4188 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4189 +runtimeId=4190 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4191 +runtimeId=4192 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4241 +runtimeId=4242 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4243 +runtimeId=4244 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4245 +runtimeId=4246 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4151 +runtimeId=4152 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4153 +runtimeId=4154 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4155 +runtimeId=4156 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4205 +runtimeId=4206 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4207 +runtimeId=4208 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4209 +runtimeId=4210 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4259 +runtimeId=4260 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4261 +runtimeId=4262 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4263 +runtimeId=4264 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4120 +runtimeId=4121 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4122 +runtimeId=4123 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4124 +runtimeId=4125 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4174 +runtimeId=4175 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4176 +runtimeId=4177 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4178 +runtimeId=4179 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4228 +runtimeId=4229 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4230 +runtimeId=4231 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4232 +runtimeId=4233 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4138 +runtimeId=4139 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4140 +runtimeId=4141 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4142 +runtimeId=4143 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4192 +runtimeId=4193 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4194 +runtimeId=4195 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4196 +runtimeId=4197 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4246 +runtimeId=4247 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4248 +runtimeId=4249 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4250 +runtimeId=4251 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4156 +runtimeId=4157 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4158 +runtimeId=4159 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4160 +runtimeId=4161 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4210 +runtimeId=4211 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4212 +runtimeId=4213 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4214 +runtimeId=4215 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4264 +runtimeId=4265 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4266 +runtimeId=4267 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4268 +runtimeId=4269 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4121 +runtimeId=4122 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4123 +runtimeId=4124 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4125 +runtimeId=4126 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4175 +runtimeId=4176 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4177 +runtimeId=4178 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4179 +runtimeId=4180 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4229 +runtimeId=4230 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4231 +runtimeId=4232 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4233 +runtimeId=4234 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4139 +runtimeId=4140 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4141 +runtimeId=4142 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4143 +runtimeId=4144 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4193 +runtimeId=4194 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4195 +runtimeId=4196 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4197 +runtimeId=4198 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4247 +runtimeId=4248 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4249 +runtimeId=4250 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4251 +runtimeId=4252 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4157 +runtimeId=4158 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4159 +runtimeId=4160 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4161 +runtimeId=4162 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4211 +runtimeId=4212 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4213 +runtimeId=4214 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4215 +runtimeId=4216 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4265 +runtimeId=4266 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4267 +runtimeId=4268 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4269 +runtimeId=4270 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4126 +runtimeId=4127 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4128 +runtimeId=4129 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4130 +runtimeId=4131 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4180 +runtimeId=4181 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4182 +runtimeId=4183 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4184 +runtimeId=4185 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4234 +runtimeId=4235 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4236 +runtimeId=4237 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4238 +runtimeId=4239 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4144 +runtimeId=4145 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4146 +runtimeId=4147 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4148 +runtimeId=4149 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4198 +runtimeId=4199 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4200 +runtimeId=4201 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4202 +runtimeId=4203 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4252 +runtimeId=4253 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4254 +runtimeId=4255 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4256 +runtimeId=4257 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4162 +runtimeId=4163 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4164 +runtimeId=4165 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4166 +runtimeId=4167 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4216 +runtimeId=4217 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4218 +runtimeId=4219 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4220 +runtimeId=4221 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4270 +runtimeId=4271 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4272 +runtimeId=4273 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4274 +runtimeId=4275 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4127 +runtimeId=4128 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4129 +runtimeId=4130 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4131 +runtimeId=4132 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4181 +runtimeId=4182 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4183 +runtimeId=4184 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4185 +runtimeId=4186 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4235 +runtimeId=4236 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4237 +runtimeId=4238 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4239 +runtimeId=4240 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4145 +runtimeId=4146 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4147 +runtimeId=4148 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4149 +runtimeId=4150 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4199 +runtimeId=4200 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4201 +runtimeId=4202 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4203 +runtimeId=4204 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4253 +runtimeId=4254 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4255 +runtimeId=4256 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4257 +runtimeId=4258 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4163 +runtimeId=4164 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4165 +runtimeId=4166 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4167 +runtimeId=4168 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4217 +runtimeId=4218 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4219 +runtimeId=4220 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4221 +runtimeId=4222 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4271 +runtimeId=4272 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4273 +runtimeId=4274 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4275 +runtimeId=4276 minecraft:deepslate_bricks blockId=646 -runtimeId=4276 +runtimeId=4277 minecraft:deepslate_coal_ore blockId=661 -runtimeId=4277 +runtimeId=4278 minecraft:deepslate_copper_ore blockId=663 -runtimeId=4278 +runtimeId=4279 minecraft:deepslate_diamond_ore blockId=660 -runtimeId=4279 +runtimeId=4280 minecraft:deepslate_emerald_ore blockId=662 -runtimeId=4280 +runtimeId=4281 minecraft:deepslate_gold_ore blockId=657 -runtimeId=4281 +runtimeId=4282 minecraft:deepslate_iron_ore blockId=656 -runtimeId=4282 +runtimeId=4283 minecraft:deepslate_lapis_ore blockId=655 -runtimeId=4283 +runtimeId=4284 minecraft:deepslate_redstone_ore blockId=658 -runtimeId=4284 +runtimeId=4285 minecraft:deepslate_tile_double_slab;top_slot_bit=0 blockId=653 -runtimeId=4285 +runtimeId=4286 minecraft:deepslate_tile_double_slab;top_slot_bit=1 blockId=653 -runtimeId=4286 +runtimeId=4287 minecraft:deepslate_tile_slab;top_slot_bit=0 blockId=643 -runtimeId=4287 +runtimeId=4288 minecraft:deepslate_tile_slab;top_slot_bit=1 blockId=643 -runtimeId=4288 +runtimeId=4289 minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=0 blockId=644 -runtimeId=4289 +runtimeId=4290 minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=1 blockId=644 -runtimeId=4290 +runtimeId=4291 minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=2 blockId=644 -runtimeId=4291 +runtimeId=4292 minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=3 blockId=644 -runtimeId=4292 +runtimeId=4293 minecraft:deepslate_tile_stairs;upside_down_bit=1;weirdo_direction=0 blockId=644 -runtimeId=4293 +runtimeId=4294 minecraft:deepslate_tile_stairs;upside_down_bit=1;weirdo_direction=1 blockId=644 -runtimeId=4294 +runtimeId=4295 minecraft:deepslate_tile_stairs;upside_down_bit=1;weirdo_direction=2 blockId=644 -runtimeId=4295 +runtimeId=4296 minecraft:deepslate_tile_stairs;upside_down_bit=1;weirdo_direction=3 blockId=644 -runtimeId=4296 +runtimeId=4297 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4297 +runtimeId=4298 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4299 +runtimeId=4300 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4301 +runtimeId=4302 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4351 +runtimeId=4352 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4353 +runtimeId=4354 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4355 +runtimeId=4356 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4405 +runtimeId=4406 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4407 +runtimeId=4408 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4409 +runtimeId=4410 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4315 +runtimeId=4316 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4317 +runtimeId=4318 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4319 +runtimeId=4320 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4369 +runtimeId=4370 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4371 +runtimeId=4372 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4373 +runtimeId=4374 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4423 +runtimeId=4424 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4425 +runtimeId=4426 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4427 +runtimeId=4428 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4333 +runtimeId=4334 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4335 +runtimeId=4336 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4337 +runtimeId=4338 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4387 +runtimeId=4388 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4389 +runtimeId=4390 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4391 +runtimeId=4392 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4441 +runtimeId=4442 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4443 +runtimeId=4444 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4445 +runtimeId=4446 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4298 +runtimeId=4299 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4300 +runtimeId=4301 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4302 +runtimeId=4303 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4352 +runtimeId=4353 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4354 +runtimeId=4355 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4356 +runtimeId=4357 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4406 +runtimeId=4407 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4408 +runtimeId=4409 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4410 +runtimeId=4411 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4316 +runtimeId=4317 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4318 +runtimeId=4319 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4320 +runtimeId=4321 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4370 +runtimeId=4371 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4372 +runtimeId=4373 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4374 +runtimeId=4375 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4424 +runtimeId=4425 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4426 +runtimeId=4427 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4428 +runtimeId=4429 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4334 +runtimeId=4335 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4336 +runtimeId=4337 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4338 +runtimeId=4339 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4388 +runtimeId=4389 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4390 +runtimeId=4391 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4392 +runtimeId=4393 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4442 +runtimeId=4443 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4444 +runtimeId=4445 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4446 +runtimeId=4447 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4303 +runtimeId=4304 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4305 +runtimeId=4306 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4307 +runtimeId=4308 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4357 +runtimeId=4358 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4359 +runtimeId=4360 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4361 +runtimeId=4362 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4411 +runtimeId=4412 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4413 +runtimeId=4414 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4415 +runtimeId=4416 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4321 +runtimeId=4322 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4323 +runtimeId=4324 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4325 +runtimeId=4326 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4375 +runtimeId=4376 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4377 +runtimeId=4378 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4379 +runtimeId=4380 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4429 +runtimeId=4430 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4431 +runtimeId=4432 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4433 +runtimeId=4434 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4339 +runtimeId=4340 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4341 +runtimeId=4342 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4343 +runtimeId=4344 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4393 +runtimeId=4394 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4395 +runtimeId=4396 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4397 +runtimeId=4398 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4447 +runtimeId=4448 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4449 +runtimeId=4450 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4451 +runtimeId=4452 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4304 +runtimeId=4305 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4306 +runtimeId=4307 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4308 +runtimeId=4309 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4358 +runtimeId=4359 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4360 +runtimeId=4361 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4362 +runtimeId=4363 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4412 +runtimeId=4413 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4414 +runtimeId=4415 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4416 +runtimeId=4417 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4322 +runtimeId=4323 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4324 +runtimeId=4325 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4326 +runtimeId=4327 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4376 +runtimeId=4377 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4378 +runtimeId=4379 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4380 +runtimeId=4381 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4430 +runtimeId=4431 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4432 +runtimeId=4433 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4434 +runtimeId=4435 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4340 +runtimeId=4341 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4342 +runtimeId=4343 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4344 +runtimeId=4345 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4394 +runtimeId=4395 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4396 +runtimeId=4397 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4398 +runtimeId=4399 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4448 +runtimeId=4449 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4450 +runtimeId=4451 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4452 +runtimeId=4453 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4309 +runtimeId=4310 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4311 +runtimeId=4312 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4313 +runtimeId=4314 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4363 +runtimeId=4364 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4365 +runtimeId=4366 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4367 +runtimeId=4368 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4417 +runtimeId=4418 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4419 +runtimeId=4420 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4421 +runtimeId=4422 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4327 +runtimeId=4328 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4329 +runtimeId=4330 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4331 +runtimeId=4332 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4381 +runtimeId=4382 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4383 +runtimeId=4384 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4385 +runtimeId=4386 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4435 +runtimeId=4436 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4437 +runtimeId=4438 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4439 +runtimeId=4440 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4345 +runtimeId=4346 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4347 +runtimeId=4348 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4349 +runtimeId=4350 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4399 +runtimeId=4400 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4401 +runtimeId=4402 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4403 +runtimeId=4404 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4453 +runtimeId=4454 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4455 +runtimeId=4456 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4457 +runtimeId=4458 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4310 +runtimeId=4311 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4312 +runtimeId=4313 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4314 +runtimeId=4315 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4364 +runtimeId=4365 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4366 +runtimeId=4367 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4368 +runtimeId=4369 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4418 +runtimeId=4419 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4420 +runtimeId=4421 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4422 +runtimeId=4423 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4328 +runtimeId=4329 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4330 +runtimeId=4331 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4332 +runtimeId=4333 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4382 +runtimeId=4383 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4384 +runtimeId=4385 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4386 +runtimeId=4387 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4436 +runtimeId=4437 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4438 +runtimeId=4439 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4440 +runtimeId=4441 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4346 +runtimeId=4347 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4348 +runtimeId=4349 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4350 +runtimeId=4351 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4400 +runtimeId=4401 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4402 +runtimeId=4403 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4404 +runtimeId=4405 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4454 +runtimeId=4455 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4456 +runtimeId=4457 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4458 +runtimeId=4459 minecraft:deepslate_tiles blockId=642 -runtimeId=4459 +runtimeId=4460 minecraft:deny blockId=211 -runtimeId=4460 +runtimeId=4461 minecraft:detector_rail;rail_direction=0;rail_data_bit=0 blockId=28 -runtimeId=4461 +runtimeId=4462 minecraft:detector_rail;rail_direction=0;rail_data_bit=1 blockId=28 -runtimeId=4467 +runtimeId=4468 minecraft:detector_rail;rail_direction=1;rail_data_bit=0 blockId=28 -runtimeId=4462 +runtimeId=4463 minecraft:detector_rail;rail_direction=1;rail_data_bit=1 blockId=28 -runtimeId=4468 +runtimeId=4469 minecraft:detector_rail;rail_direction=2;rail_data_bit=0 blockId=28 -runtimeId=4463 +runtimeId=4464 minecraft:detector_rail;rail_direction=2;rail_data_bit=1 blockId=28 -runtimeId=4469 +runtimeId=4470 minecraft:detector_rail;rail_direction=3;rail_data_bit=0 blockId=28 -runtimeId=4464 +runtimeId=4465 minecraft:detector_rail;rail_direction=3;rail_data_bit=1 blockId=28 -runtimeId=4470 +runtimeId=4471 minecraft:detector_rail;rail_direction=4;rail_data_bit=0 blockId=28 -runtimeId=4465 +runtimeId=4466 minecraft:detector_rail;rail_direction=4;rail_data_bit=1 blockId=28 -runtimeId=4471 +runtimeId=4472 minecraft:detector_rail;rail_direction=5;rail_data_bit=0 blockId=28 -runtimeId=4466 +runtimeId=4467 minecraft:detector_rail;rail_direction=5;rail_data_bit=1 blockId=28 -runtimeId=4472 +runtimeId=4473 minecraft:diamond_block blockId=57 -runtimeId=4473 +runtimeId=4474 minecraft:diamond_ore blockId=56 -runtimeId=4474 +runtimeId=4475 minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=425 -runtimeId=4475 +runtimeId=4476 minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=425 -runtimeId=4476 +runtimeId=4477 minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=425 -runtimeId=4477 +runtimeId=4478 minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=425 -runtimeId=4478 +runtimeId=4479 minecraft:diorite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=425 -runtimeId=4479 +runtimeId=4480 minecraft:diorite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=425 -runtimeId=4480 +runtimeId=4481 minecraft:diorite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=425 -runtimeId=4481 +runtimeId=4482 minecraft:diorite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=425 -runtimeId=4482 +runtimeId=4483 minecraft:dirt;dirt_type=coarse blockId=3 -runtimeId=4484 +runtimeId=4485 minecraft:dirt;dirt_type=normal blockId=3 -runtimeId=4483 +runtimeId=4484 minecraft:dirt_with_roots blockId=573 -runtimeId=4485 +runtimeId=4486 minecraft:dispenser;facing_direction=0;triggered_bit=0 blockId=23 -runtimeId=4486 +runtimeId=4487 minecraft:dispenser;facing_direction=0;triggered_bit=1 blockId=23 -runtimeId=4492 +runtimeId=4493 minecraft:dispenser;facing_direction=1;triggered_bit=0 blockId=23 -runtimeId=4487 +runtimeId=4488 minecraft:dispenser;facing_direction=1;triggered_bit=1 blockId=23 -runtimeId=4493 +runtimeId=4494 minecraft:dispenser;facing_direction=2;triggered_bit=0 blockId=23 -runtimeId=4488 +runtimeId=4489 minecraft:dispenser;facing_direction=2;triggered_bit=1 blockId=23 -runtimeId=4494 +runtimeId=4495 minecraft:dispenser;facing_direction=3;triggered_bit=0 blockId=23 -runtimeId=4489 +runtimeId=4490 minecraft:dispenser;facing_direction=3;triggered_bit=1 blockId=23 -runtimeId=4495 +runtimeId=4496 minecraft:dispenser;facing_direction=4;triggered_bit=0 blockId=23 -runtimeId=4490 +runtimeId=4491 minecraft:dispenser;facing_direction=4;triggered_bit=1 blockId=23 -runtimeId=4496 +runtimeId=4497 minecraft:dispenser;facing_direction=5;triggered_bit=0 blockId=23 -runtimeId=4491 +runtimeId=4492 minecraft:dispenser;facing_direction=5;triggered_bit=1 blockId=23 -runtimeId=4497 +runtimeId=4498 minecraft:double_cut_copper_slab;top_slot_bit=0 blockId=623 -runtimeId=4498 +runtimeId=4499 minecraft:double_cut_copper_slab;top_slot_bit=1 blockId=623 -runtimeId=4499 +runtimeId=4500 minecraft:double_plant;upper_block_bit=0;double_plant_type=fern blockId=175 -runtimeId=4503 +runtimeId=4504 minecraft:double_plant;upper_block_bit=0;double_plant_type=grass blockId=175 -runtimeId=4502 +runtimeId=4503 minecraft:double_plant;upper_block_bit=0;double_plant_type=paeonia blockId=175 -runtimeId=4505 +runtimeId=4506 minecraft:double_plant;upper_block_bit=0;double_plant_type=rose blockId=175 -runtimeId=4504 +runtimeId=4505 minecraft:double_plant;upper_block_bit=0;double_plant_type=sunflower blockId=175 -runtimeId=4500 +runtimeId=4501 minecraft:double_plant;upper_block_bit=0;double_plant_type=syringa blockId=175 -runtimeId=4501 +runtimeId=4502 minecraft:double_plant;upper_block_bit=1;double_plant_type=fern blockId=175 -runtimeId=4509 +runtimeId=4510 minecraft:double_plant;upper_block_bit=1;double_plant_type=grass blockId=175 -runtimeId=4508 +runtimeId=4509 minecraft:double_plant;upper_block_bit=1;double_plant_type=paeonia blockId=175 -runtimeId=4511 +runtimeId=4512 minecraft:double_plant;upper_block_bit=1;double_plant_type=rose blockId=175 -runtimeId=4510 +runtimeId=4511 minecraft:double_plant;upper_block_bit=1;double_plant_type=sunflower blockId=175 -runtimeId=4506 +runtimeId=4507 minecraft:double_plant;upper_block_bit=1;double_plant_type=syringa blockId=175 -runtimeId=4507 +runtimeId=4508 + +minecraft:double_stone_slab;stone_slab_type=brick;top_slot_bit=0 +blockId=43 +runtimeId=4517 + +minecraft:double_stone_slab;stone_slab_type=brick;top_slot_bit=1 +blockId=43 +runtimeId=4525 + +minecraft:double_stone_slab;stone_slab_type=cobblestone;top_slot_bit=0 +blockId=43 +runtimeId=4516 + +minecraft:double_stone_slab;stone_slab_type=cobblestone;top_slot_bit=1 +blockId=43 +runtimeId=4524 + +minecraft:double_stone_slab;stone_slab_type=nether_brick;top_slot_bit=0 +blockId=43 +runtimeId=4520 + +minecraft:double_stone_slab;stone_slab_type=nether_brick;top_slot_bit=1 +blockId=43 +runtimeId=4528 + +minecraft:double_stone_slab;stone_slab_type=quartz;top_slot_bit=0 +blockId=43 +runtimeId=4519 + +minecraft:double_stone_slab;stone_slab_type=quartz;top_slot_bit=1 +blockId=43 +runtimeId=4527 + +minecraft:double_stone_slab;stone_slab_type=sandstone;top_slot_bit=0 +blockId=43 +runtimeId=4514 + +minecraft:double_stone_slab;stone_slab_type=sandstone;top_slot_bit=1 +blockId=43 +runtimeId=4522 + +minecraft:double_stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0 +blockId=43 +runtimeId=4513 + +minecraft:double_stone_slab;stone_slab_type=smooth_stone;top_slot_bit=1 +blockId=43 +runtimeId=4521 + +minecraft:double_stone_slab;stone_slab_type=stone_brick;top_slot_bit=0 +blockId=43 +runtimeId=4518 + +minecraft:double_stone_slab;stone_slab_type=stone_brick;top_slot_bit=1 +blockId=43 +runtimeId=4526 + +minecraft:double_stone_slab;stone_slab_type=wood;top_slot_bit=0 +blockId=43 +runtimeId=4515 + +minecraft:double_stone_slab;stone_slab_type=wood;top_slot_bit=1 +blockId=43 +runtimeId=4523 minecraft:double_stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0 blockId=181 -runtimeId=4533 +runtimeId=4534 minecraft:double_stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=1 blockId=181 -runtimeId=4541 +runtimeId=4542 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0 blockId=181 -runtimeId=4532 +runtimeId=4533 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=1 blockId=181 -runtimeId=4540 +runtimeId=4541 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0 blockId=181 -runtimeId=4531 +runtimeId=4532 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=1 blockId=181 -runtimeId=4539 +runtimeId=4540 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0 blockId=181 -runtimeId=4530 +runtimeId=4531 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=1 blockId=181 -runtimeId=4538 +runtimeId=4539 minecraft:double_stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0 blockId=181 -runtimeId=4529 +runtimeId=4530 minecraft:double_stone_slab2;stone_slab_type_2=purpur;top_slot_bit=1 blockId=181 -runtimeId=4537 +runtimeId=4538 minecraft:double_stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0 blockId=181 -runtimeId=4535 +runtimeId=4536 minecraft:double_stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=1 blockId=181 -runtimeId=4543 +runtimeId=4544 minecraft:double_stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0 blockId=181 -runtimeId=4528 +runtimeId=4529 minecraft:double_stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=1 blockId=181 -runtimeId=4536 +runtimeId=4537 minecraft:double_stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0 blockId=181 -runtimeId=4534 +runtimeId=4535 minecraft:double_stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=1 blockId=181 -runtimeId=4542 +runtimeId=4543 minecraft:double_stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0 blockId=422 -runtimeId=4547 +runtimeId=4548 minecraft:double_stone_slab3;stone_slab_type_3=andesite;top_slot_bit=1 blockId=422 -runtimeId=4555 +runtimeId=4556 minecraft:double_stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0 blockId=422 -runtimeId=4548 +runtimeId=4549 minecraft:double_stone_slab3;stone_slab_type_3=diorite;top_slot_bit=1 blockId=422 -runtimeId=4556 +runtimeId=4557 minecraft:double_stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0 blockId=422 -runtimeId=4544 +runtimeId=4545 minecraft:double_stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=1 blockId=422 -runtimeId=4552 +runtimeId=4553 minecraft:double_stone_slab3;stone_slab_type_3=granite;top_slot_bit=0 blockId=422 -runtimeId=4550 +runtimeId=4551 minecraft:double_stone_slab3;stone_slab_type_3=granite;top_slot_bit=1 blockId=422 -runtimeId=4558 +runtimeId=4559 minecraft:double_stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0 blockId=422 -runtimeId=4546 +runtimeId=4547 minecraft:double_stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=1 blockId=422 -runtimeId=4554 +runtimeId=4555 minecraft:double_stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0 blockId=422 -runtimeId=4549 +runtimeId=4550 minecraft:double_stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=1 blockId=422 -runtimeId=4557 +runtimeId=4558 minecraft:double_stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0 blockId=422 -runtimeId=4551 +runtimeId=4552 minecraft:double_stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=1 blockId=422 -runtimeId=4559 +runtimeId=4560 minecraft:double_stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0 blockId=422 -runtimeId=4545 +runtimeId=4546 minecraft:double_stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=1 blockId=422 -runtimeId=4553 +runtimeId=4554 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_red_sandstone blockId=423 -runtimeId=4564 +runtimeId=4565 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_sandstone blockId=423 -runtimeId=4563 +runtimeId=4564 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=mossy_stone_brick blockId=423 -runtimeId=4560 +runtimeId=4561 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=smooth_quartz blockId=423 -runtimeId=4561 +runtimeId=4562 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=stone blockId=423 -runtimeId=4562 +runtimeId=4563 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_red_sandstone blockId=423 -runtimeId=4569 +runtimeId=4570 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_sandstone blockId=423 -runtimeId=4568 +runtimeId=4569 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=mossy_stone_brick blockId=423 -runtimeId=4565 +runtimeId=4566 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=smooth_quartz blockId=423 -runtimeId=4566 +runtimeId=4567 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=stone blockId=423 -runtimeId=4567 - -minecraft:double_stone_slab;stone_slab_type=brick;top_slot_bit=0 -blockId=43 -runtimeId=4516 - -minecraft:double_stone_slab;stone_slab_type=brick;top_slot_bit=1 -blockId=43 -runtimeId=4524 - -minecraft:double_stone_slab;stone_slab_type=cobblestone;top_slot_bit=0 -blockId=43 -runtimeId=4515 - -minecraft:double_stone_slab;stone_slab_type=cobblestone;top_slot_bit=1 -blockId=43 -runtimeId=4523 - -minecraft:double_stone_slab;stone_slab_type=nether_brick;top_slot_bit=0 -blockId=43 -runtimeId=4519 - -minecraft:double_stone_slab;stone_slab_type=nether_brick;top_slot_bit=1 -blockId=43 -runtimeId=4527 - -minecraft:double_stone_slab;stone_slab_type=quartz;top_slot_bit=0 -blockId=43 -runtimeId=4518 - -minecraft:double_stone_slab;stone_slab_type=quartz;top_slot_bit=1 -blockId=43 -runtimeId=4526 - -minecraft:double_stone_slab;stone_slab_type=sandstone;top_slot_bit=0 -blockId=43 -runtimeId=4513 - -minecraft:double_stone_slab;stone_slab_type=sandstone;top_slot_bit=1 -blockId=43 -runtimeId=4521 - -minecraft:double_stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0 -blockId=43 -runtimeId=4512 - -minecraft:double_stone_slab;stone_slab_type=smooth_stone;top_slot_bit=1 -blockId=43 -runtimeId=4520 - -minecraft:double_stone_slab;stone_slab_type=stone_brick;top_slot_bit=0 -blockId=43 -runtimeId=4517 - -minecraft:double_stone_slab;stone_slab_type=stone_brick;top_slot_bit=1 -blockId=43 -runtimeId=4525 - -minecraft:double_stone_slab;stone_slab_type=wood;top_slot_bit=0 -blockId=43 -runtimeId=4514 - -minecraft:double_stone_slab;stone_slab_type=wood;top_slot_bit=1 -blockId=43 -runtimeId=4522 +runtimeId=4568 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=acacia blockId=157 -runtimeId=4574 +runtimeId=4575 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=birch blockId=157 -runtimeId=4572 +runtimeId=4573 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=dark_oak blockId=157 -runtimeId=4575 +runtimeId=4576 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=jungle blockId=157 -runtimeId=4573 +runtimeId=4574 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=oak blockId=157 -runtimeId=4570 +runtimeId=4571 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=spruce blockId=157 -runtimeId=4571 +runtimeId=4572 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=acacia blockId=157 -runtimeId=4580 +runtimeId=4581 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=birch blockId=157 -runtimeId=4578 +runtimeId=4579 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=dark_oak blockId=157 -runtimeId=4581 +runtimeId=4582 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=jungle blockId=157 -runtimeId=4579 +runtimeId=4580 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=oak blockId=157 -runtimeId=4576 +runtimeId=4577 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=spruce blockId=157 -runtimeId=4577 +runtimeId=4578 minecraft:dragon_egg blockId=122 -runtimeId=4582 +runtimeId=4583 minecraft:dried_kelp_block blockId=394 -runtimeId=4583 +runtimeId=4584 minecraft:dripstone_block blockId=572 -runtimeId=4584 +runtimeId=4585 minecraft:dropper;facing_direction=0;triggered_bit=0 blockId=125 -runtimeId=4585 +runtimeId=4586 minecraft:dropper;facing_direction=0;triggered_bit=1 blockId=125 -runtimeId=4591 +runtimeId=4592 minecraft:dropper;facing_direction=1;triggered_bit=0 blockId=125 -runtimeId=4586 +runtimeId=4587 minecraft:dropper;facing_direction=1;triggered_bit=1 blockId=125 -runtimeId=4592 +runtimeId=4593 minecraft:dropper;facing_direction=2;triggered_bit=0 blockId=125 -runtimeId=4587 +runtimeId=4588 minecraft:dropper;facing_direction=2;triggered_bit=1 blockId=125 -runtimeId=4593 +runtimeId=4594 minecraft:dropper;facing_direction=3;triggered_bit=0 blockId=125 -runtimeId=4588 +runtimeId=4589 minecraft:dropper;facing_direction=3;triggered_bit=1 blockId=125 -runtimeId=4594 +runtimeId=4595 minecraft:dropper;facing_direction=4;triggered_bit=0 blockId=125 -runtimeId=4589 +runtimeId=4590 minecraft:dropper;facing_direction=4;triggered_bit=1 blockId=125 -runtimeId=4595 +runtimeId=4596 minecraft:dropper;facing_direction=5;triggered_bit=0 blockId=125 -runtimeId=4590 +runtimeId=4591 minecraft:dropper;facing_direction=5;triggered_bit=1 blockId=125 -runtimeId=4596 +runtimeId=4597 minecraft:element_0 blockId=36 -runtimeId=4597 +runtimeId=4598 minecraft:element_1 blockId=267 -runtimeId=4598 +runtimeId=4599 minecraft:element_2 blockId=268 -runtimeId=4628 +runtimeId=4629 minecraft:element_3 blockId=269 -runtimeId=4639 +runtimeId=4640 minecraft:element_4 blockId=270 -runtimeId=4650 +runtimeId=4651 minecraft:element_5 blockId=271 -runtimeId=4661 +runtimeId=4662 minecraft:element_6 blockId=272 -runtimeId=4672 +runtimeId=4673 minecraft:element_7 blockId=273 -runtimeId=4683 +runtimeId=4684 minecraft:element_8 blockId=274 -runtimeId=4694 +runtimeId=4695 minecraft:element_9 blockId=275 -runtimeId=4705 +runtimeId=4706 minecraft:element_10 blockId=276 -runtimeId=4599 +runtimeId=4600 minecraft:element_11 blockId=277 -runtimeId=4610 +runtimeId=4611 minecraft:element_12 blockId=278 -runtimeId=4620 +runtimeId=4621 minecraft:element_13 blockId=279 -runtimeId=4621 +runtimeId=4622 minecraft:element_14 blockId=280 -runtimeId=4622 +runtimeId=4623 minecraft:element_15 blockId=281 -runtimeId=4623 +runtimeId=4624 minecraft:element_16 blockId=282 -runtimeId=4624 +runtimeId=4625 minecraft:element_17 blockId=283 -runtimeId=4625 +runtimeId=4626 minecraft:element_18 blockId=284 -runtimeId=4626 +runtimeId=4627 minecraft:element_19 blockId=285 -runtimeId=4627 +runtimeId=4628 minecraft:element_20 blockId=286 -runtimeId=4629 +runtimeId=4630 minecraft:element_21 blockId=287 -runtimeId=4630 +runtimeId=4631 minecraft:element_22 blockId=288 -runtimeId=4631 +runtimeId=4632 minecraft:element_23 blockId=289 -runtimeId=4632 +runtimeId=4633 minecraft:element_24 blockId=290 -runtimeId=4633 +runtimeId=4634 minecraft:element_25 blockId=291 -runtimeId=4634 +runtimeId=4635 minecraft:element_26 blockId=292 -runtimeId=4635 +runtimeId=4636 minecraft:element_27 blockId=293 -runtimeId=4636 +runtimeId=4637 minecraft:element_28 blockId=294 -runtimeId=4637 +runtimeId=4638 minecraft:element_29 blockId=295 -runtimeId=4638 +runtimeId=4639 minecraft:element_30 blockId=296 -runtimeId=4640 +runtimeId=4641 minecraft:element_31 blockId=297 -runtimeId=4641 +runtimeId=4642 minecraft:element_32 blockId=298 -runtimeId=4642 +runtimeId=4643 minecraft:element_33 blockId=299 -runtimeId=4643 +runtimeId=4644 minecraft:element_34 blockId=300 -runtimeId=4644 +runtimeId=4645 minecraft:element_35 blockId=301 -runtimeId=4645 +runtimeId=4646 minecraft:element_36 blockId=302 -runtimeId=4646 +runtimeId=4647 minecraft:element_37 blockId=303 -runtimeId=4647 +runtimeId=4648 minecraft:element_38 blockId=304 -runtimeId=4648 +runtimeId=4649 minecraft:element_39 blockId=305 -runtimeId=4649 +runtimeId=4650 minecraft:element_40 blockId=306 -runtimeId=4651 +runtimeId=4652 minecraft:element_41 blockId=307 -runtimeId=4652 +runtimeId=4653 minecraft:element_42 blockId=308 -runtimeId=4653 +runtimeId=4654 minecraft:element_43 blockId=309 -runtimeId=4654 +runtimeId=4655 minecraft:element_44 blockId=310 -runtimeId=4655 +runtimeId=4656 minecraft:element_45 blockId=311 -runtimeId=4656 +runtimeId=4657 minecraft:element_46 blockId=312 -runtimeId=4657 +runtimeId=4658 minecraft:element_47 blockId=313 -runtimeId=4658 +runtimeId=4659 minecraft:element_48 blockId=314 -runtimeId=4659 +runtimeId=4660 minecraft:element_49 blockId=315 -runtimeId=4660 +runtimeId=4661 minecraft:element_50 blockId=316 -runtimeId=4662 +runtimeId=4663 minecraft:element_51 blockId=317 -runtimeId=4663 +runtimeId=4664 minecraft:element_52 blockId=318 -runtimeId=4664 +runtimeId=4665 minecraft:element_53 blockId=319 -runtimeId=4665 +runtimeId=4666 minecraft:element_54 blockId=320 -runtimeId=4666 +runtimeId=4667 minecraft:element_55 blockId=321 -runtimeId=4667 +runtimeId=4668 minecraft:element_56 blockId=322 -runtimeId=4668 +runtimeId=4669 minecraft:element_57 blockId=323 -runtimeId=4669 +runtimeId=4670 minecraft:element_58 blockId=324 -runtimeId=4670 +runtimeId=4671 minecraft:element_59 blockId=325 -runtimeId=4671 +runtimeId=4672 minecraft:element_60 blockId=326 -runtimeId=4673 +runtimeId=4674 minecraft:element_61 blockId=327 -runtimeId=4674 +runtimeId=4675 minecraft:element_62 blockId=328 -runtimeId=4675 +runtimeId=4676 minecraft:element_63 blockId=329 -runtimeId=4676 +runtimeId=4677 minecraft:element_64 blockId=330 -runtimeId=4677 +runtimeId=4678 minecraft:element_65 blockId=331 -runtimeId=4678 +runtimeId=4679 minecraft:element_66 blockId=332 -runtimeId=4679 +runtimeId=4680 minecraft:element_67 blockId=333 -runtimeId=4680 +runtimeId=4681 minecraft:element_68 blockId=334 -runtimeId=4681 +runtimeId=4682 minecraft:element_69 blockId=335 -runtimeId=4682 +runtimeId=4683 minecraft:element_70 blockId=336 -runtimeId=4684 +runtimeId=4685 minecraft:element_71 blockId=337 -runtimeId=4685 +runtimeId=4686 minecraft:element_72 blockId=338 -runtimeId=4686 +runtimeId=4687 minecraft:element_73 blockId=339 -runtimeId=4687 +runtimeId=4688 minecraft:element_74 blockId=340 -runtimeId=4688 +runtimeId=4689 minecraft:element_75 blockId=341 -runtimeId=4689 +runtimeId=4690 minecraft:element_76 blockId=342 -runtimeId=4690 +runtimeId=4691 minecraft:element_77 blockId=343 -runtimeId=4691 +runtimeId=4692 minecraft:element_78 blockId=344 -runtimeId=4692 +runtimeId=4693 minecraft:element_79 blockId=345 -runtimeId=4693 +runtimeId=4694 minecraft:element_80 blockId=346 -runtimeId=4695 +runtimeId=4696 minecraft:element_81 blockId=347 -runtimeId=4696 +runtimeId=4697 minecraft:element_82 blockId=348 -runtimeId=4697 +runtimeId=4698 minecraft:element_83 blockId=349 -runtimeId=4698 +runtimeId=4699 minecraft:element_84 blockId=350 -runtimeId=4699 +runtimeId=4700 minecraft:element_85 blockId=351 -runtimeId=4700 +runtimeId=4701 minecraft:element_86 blockId=352 -runtimeId=4701 +runtimeId=4702 minecraft:element_87 blockId=353 -runtimeId=4702 +runtimeId=4703 minecraft:element_88 blockId=354 -runtimeId=4703 +runtimeId=4704 minecraft:element_89 blockId=355 -runtimeId=4704 +runtimeId=4705 minecraft:element_90 blockId=356 -runtimeId=4706 +runtimeId=4707 minecraft:element_91 blockId=357 -runtimeId=4707 +runtimeId=4708 minecraft:element_92 blockId=358 -runtimeId=4708 +runtimeId=4709 minecraft:element_93 blockId=359 -runtimeId=4709 +runtimeId=4710 minecraft:element_94 blockId=360 -runtimeId=4710 +runtimeId=4711 minecraft:element_95 blockId=361 -runtimeId=4711 +runtimeId=4712 minecraft:element_96 blockId=362 -runtimeId=4712 +runtimeId=4713 minecraft:element_97 blockId=363 -runtimeId=4713 +runtimeId=4714 minecraft:element_98 blockId=364 -runtimeId=4714 +runtimeId=4715 minecraft:element_99 blockId=365 -runtimeId=4715 +runtimeId=4716 minecraft:element_100 blockId=366 -runtimeId=4600 +runtimeId=4601 minecraft:element_101 blockId=367 -runtimeId=4601 +runtimeId=4602 minecraft:element_102 blockId=368 -runtimeId=4602 +runtimeId=4603 minecraft:element_103 blockId=369 -runtimeId=4603 +runtimeId=4604 minecraft:element_104 blockId=370 -runtimeId=4604 +runtimeId=4605 minecraft:element_105 blockId=371 -runtimeId=4605 +runtimeId=4606 minecraft:element_106 blockId=372 -runtimeId=4606 +runtimeId=4607 minecraft:element_107 blockId=373 -runtimeId=4607 +runtimeId=4608 minecraft:element_108 blockId=374 -runtimeId=4608 +runtimeId=4609 minecraft:element_109 blockId=375 -runtimeId=4609 +runtimeId=4610 minecraft:element_110 blockId=376 -runtimeId=4611 +runtimeId=4612 minecraft:element_111 blockId=377 -runtimeId=4612 +runtimeId=4613 minecraft:element_112 blockId=378 -runtimeId=4613 +runtimeId=4614 minecraft:element_113 blockId=379 -runtimeId=4614 +runtimeId=4615 minecraft:element_114 blockId=380 -runtimeId=4615 +runtimeId=4616 minecraft:element_115 blockId=381 -runtimeId=4616 +runtimeId=4617 minecraft:element_116 blockId=382 -runtimeId=4617 +runtimeId=4618 minecraft:element_117 blockId=383 -runtimeId=4618 +runtimeId=4619 minecraft:element_118 blockId=384 -runtimeId=4619 +runtimeId=4620 minecraft:emerald_block blockId=133 -runtimeId=4716 +runtimeId=4717 minecraft:emerald_ore blockId=129 -runtimeId=4717 +runtimeId=4718 minecraft:enchanting_table blockId=116 -runtimeId=4718 +runtimeId=4719 minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=433 -runtimeId=4719 +runtimeId=4720 minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=433 -runtimeId=4720 +runtimeId=4721 minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=433 -runtimeId=4721 +runtimeId=4722 minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=433 -runtimeId=4722 +runtimeId=4723 minecraft:end_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=433 -runtimeId=4723 +runtimeId=4724 minecraft:end_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=433 -runtimeId=4724 +runtimeId=4725 minecraft:end_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=433 -runtimeId=4725 +runtimeId=4726 minecraft:end_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=433 -runtimeId=4726 +runtimeId=4727 minecraft:end_bricks blockId=206 -runtimeId=4727 +runtimeId=4728 minecraft:end_gateway blockId=209 -runtimeId=4728 +runtimeId=4729 minecraft:end_portal blockId=119 -runtimeId=4729 +runtimeId=4730 minecraft:end_portal_frame;end_portal_eye_bit=0;direction=0 blockId=120 -runtimeId=4730 +runtimeId=4731 minecraft:end_portal_frame;end_portal_eye_bit=0;direction=1 blockId=120 -runtimeId=4731 +runtimeId=4732 minecraft:end_portal_frame;end_portal_eye_bit=0;direction=2 blockId=120 -runtimeId=4732 +runtimeId=4733 minecraft:end_portal_frame;end_portal_eye_bit=0;direction=3 blockId=120 -runtimeId=4733 +runtimeId=4734 minecraft:end_portal_frame;end_portal_eye_bit=1;direction=0 blockId=120 -runtimeId=4734 +runtimeId=4735 minecraft:end_portal_frame;end_portal_eye_bit=1;direction=1 blockId=120 -runtimeId=4735 +runtimeId=4736 minecraft:end_portal_frame;end_portal_eye_bit=1;direction=2 blockId=120 -runtimeId=4736 +runtimeId=4737 minecraft:end_portal_frame;end_portal_eye_bit=1;direction=3 blockId=120 -runtimeId=4737 +runtimeId=4738 minecraft:end_rod;facing_direction=0 blockId=208 -runtimeId=4738 +runtimeId=4739 minecraft:end_rod;facing_direction=1 blockId=208 -runtimeId=4739 +runtimeId=4740 minecraft:end_rod;facing_direction=2 blockId=208 -runtimeId=4740 +runtimeId=4741 minecraft:end_rod;facing_direction=3 blockId=208 -runtimeId=4741 +runtimeId=4742 minecraft:end_rod;facing_direction=4 blockId=208 -runtimeId=4742 +runtimeId=4743 minecraft:end_rod;facing_direction=5 blockId=208 -runtimeId=4743 +runtimeId=4744 minecraft:end_stone blockId=121 -runtimeId=4744 +runtimeId=4745 minecraft:ender_chest;facing_direction=0 blockId=130 -runtimeId=4745 +runtimeId=4746 minecraft:ender_chest;facing_direction=1 blockId=130 -runtimeId=4746 +runtimeId=4747 minecraft:ender_chest;facing_direction=2 blockId=130 -runtimeId=4747 +runtimeId=4748 minecraft:ender_chest;facing_direction=3 blockId=130 -runtimeId=4748 +runtimeId=4749 minecraft:ender_chest;facing_direction=4 blockId=130 -runtimeId=4749 +runtimeId=4750 minecraft:ender_chest;facing_direction=5 blockId=130 -runtimeId=4750 +runtimeId=4751 minecraft:exposed_copper blockId=596 -runtimeId=4751 +runtimeId=4752 minecraft:exposed_cut_copper blockId=603 -runtimeId=4752 +runtimeId=4753 minecraft:exposed_cut_copper_slab;top_slot_bit=0 blockId=617 -runtimeId=4753 +runtimeId=4754 minecraft:exposed_cut_copper_slab;top_slot_bit=1 blockId=617 -runtimeId=4754 +runtimeId=4755 minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=610 -runtimeId=4755 +runtimeId=4756 minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=610 -runtimeId=4756 +runtimeId=4757 minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=610 -runtimeId=4757 +runtimeId=4758 minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=610 -runtimeId=4758 +runtimeId=4759 minecraft:exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=610 -runtimeId=4759 +runtimeId=4760 minecraft:exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=610 -runtimeId=4760 +runtimeId=4761 minecraft:exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=610 -runtimeId=4761 +runtimeId=4762 minecraft:exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=610 -runtimeId=4762 +runtimeId=4763 minecraft:exposed_double_cut_copper_slab;top_slot_bit=0 blockId=624 -runtimeId=4763 +runtimeId=4764 minecraft:exposed_double_cut_copper_slab;top_slot_bit=1 blockId=624 -runtimeId=4764 +runtimeId=4765 minecraft:farmland;moisturized_amount=0 blockId=60 -runtimeId=4765 +runtimeId=4766 minecraft:farmland;moisturized_amount=1 blockId=60 -runtimeId=4766 +runtimeId=4767 minecraft:farmland;moisturized_amount=2 blockId=60 -runtimeId=4767 +runtimeId=4768 minecraft:farmland;moisturized_amount=3 blockId=60 -runtimeId=4768 +runtimeId=4769 minecraft:farmland;moisturized_amount=4 blockId=60 -runtimeId=4769 +runtimeId=4770 minecraft:farmland;moisturized_amount=5 blockId=60 -runtimeId=4770 +runtimeId=4771 minecraft:farmland;moisturized_amount=6 blockId=60 -runtimeId=4771 +runtimeId=4772 minecraft:farmland;moisturized_amount=7 blockId=60 -runtimeId=4772 +runtimeId=4773 minecraft:fence;wood_type=acacia blockId=85 -runtimeId=4777 +runtimeId=4778 minecraft:fence;wood_type=birch blockId=85 -runtimeId=4775 +runtimeId=4776 minecraft:fence;wood_type=dark_oak blockId=85 -runtimeId=4778 +runtimeId=4779 minecraft:fence;wood_type=jungle blockId=85 -runtimeId=4776 +runtimeId=4777 minecraft:fence;wood_type=oak blockId=85 -runtimeId=4773 +runtimeId=4774 minecraft:fence;wood_type=spruce blockId=85 -runtimeId=4774 +runtimeId=4775 minecraft:fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=107 -runtimeId=4779 +runtimeId=4780 minecraft:fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=107 -runtimeId=4780 +runtimeId=4781 minecraft:fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=107 -runtimeId=4781 +runtimeId=4782 minecraft:fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=107 -runtimeId=4782 +runtimeId=4783 minecraft:fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=107 -runtimeId=4783 +runtimeId=4784 minecraft:fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=107 -runtimeId=4784 +runtimeId=4785 minecraft:fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=107 -runtimeId=4785 +runtimeId=4786 minecraft:fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=107 -runtimeId=4786 +runtimeId=4787 minecraft:fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=107 -runtimeId=4787 +runtimeId=4788 minecraft:fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=107 -runtimeId=4788 +runtimeId=4789 minecraft:fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=107 -runtimeId=4789 +runtimeId=4790 minecraft:fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=107 -runtimeId=4790 +runtimeId=4791 minecraft:fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=107 -runtimeId=4791 +runtimeId=4792 minecraft:fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=107 -runtimeId=4792 +runtimeId=4793 minecraft:fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=107 -runtimeId=4793 +runtimeId=4794 minecraft:fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=107 -runtimeId=4794 +runtimeId=4795 minecraft:fire;age=0 blockId=51 -runtimeId=4795 +runtimeId=4796 minecraft:fire;age=1 blockId=51 -runtimeId=4796 +runtimeId=4797 minecraft:fire;age=2 blockId=51 -runtimeId=4797 +runtimeId=4798 minecraft:fire;age=3 blockId=51 -runtimeId=4798 +runtimeId=4799 minecraft:fire;age=4 blockId=51 -runtimeId=4799 +runtimeId=4800 minecraft:fire;age=5 blockId=51 -runtimeId=4800 +runtimeId=4801 minecraft:fire;age=6 blockId=51 -runtimeId=4801 +runtimeId=4802 minecraft:fire;age=7 blockId=51 -runtimeId=4802 +runtimeId=4803 minecraft:fire;age=8 blockId=51 -runtimeId=4803 +runtimeId=4804 minecraft:fire;age=9 blockId=51 -runtimeId=4804 +runtimeId=4805 minecraft:fire;age=10 blockId=51 -runtimeId=4805 +runtimeId=4806 minecraft:fire;age=11 blockId=51 -runtimeId=4806 +runtimeId=4807 minecraft:fire;age=12 blockId=51 -runtimeId=4807 +runtimeId=4808 minecraft:fire;age=13 blockId=51 -runtimeId=4808 +runtimeId=4809 minecraft:fire;age=14 blockId=51 -runtimeId=4809 +runtimeId=4810 minecraft:fire;age=15 blockId=51 -runtimeId=4810 +runtimeId=4811 minecraft:fletching_table blockId=456 -runtimeId=4811 +runtimeId=4812 minecraft:flower_pot;update_bit=0 blockId=140 -runtimeId=4812 +runtimeId=4813 minecraft:flower_pot;update_bit=1 blockId=140 -runtimeId=4813 +runtimeId=4814 minecraft:flowering_azalea blockId=593 -runtimeId=4814 +runtimeId=4815 minecraft:flowing_lava;liquid_depth=0 blockId=10 -runtimeId=4815 +runtimeId=4816 minecraft:flowing_lava;liquid_depth=1 blockId=10 -runtimeId=4816 +runtimeId=4817 minecraft:flowing_lava;liquid_depth=2 blockId=10 -runtimeId=4817 +runtimeId=4818 minecraft:flowing_lava;liquid_depth=3 blockId=10 -runtimeId=4818 +runtimeId=4819 minecraft:flowing_lava;liquid_depth=4 blockId=10 -runtimeId=4819 +runtimeId=4820 minecraft:flowing_lava;liquid_depth=5 blockId=10 -runtimeId=4820 +runtimeId=4821 minecraft:flowing_lava;liquid_depth=6 blockId=10 -runtimeId=4821 +runtimeId=4822 minecraft:flowing_lava;liquid_depth=7 blockId=10 -runtimeId=4822 +runtimeId=4823 minecraft:flowing_lava;liquid_depth=8 blockId=10 -runtimeId=4823 +runtimeId=4824 minecraft:flowing_lava;liquid_depth=9 blockId=10 -runtimeId=4824 +runtimeId=4825 minecraft:flowing_lava;liquid_depth=10 blockId=10 -runtimeId=4825 +runtimeId=4826 minecraft:flowing_lava;liquid_depth=11 blockId=10 -runtimeId=4826 +runtimeId=4827 minecraft:flowing_lava;liquid_depth=12 blockId=10 -runtimeId=4827 +runtimeId=4828 minecraft:flowing_lava;liquid_depth=13 blockId=10 -runtimeId=4828 +runtimeId=4829 minecraft:flowing_lava;liquid_depth=14 blockId=10 -runtimeId=4829 +runtimeId=4830 minecraft:flowing_lava;liquid_depth=15 blockId=10 -runtimeId=4830 +runtimeId=4831 minecraft:flowing_water;liquid_depth=0 blockId=8 -runtimeId=4831 +runtimeId=4832 minecraft:flowing_water;liquid_depth=1 blockId=8 -runtimeId=4832 +runtimeId=4833 minecraft:flowing_water;liquid_depth=2 blockId=8 -runtimeId=4833 +runtimeId=4834 minecraft:flowing_water;liquid_depth=3 blockId=8 -runtimeId=4834 +runtimeId=4835 minecraft:flowing_water;liquid_depth=4 blockId=8 -runtimeId=4835 +runtimeId=4836 minecraft:flowing_water;liquid_depth=5 blockId=8 -runtimeId=4836 +runtimeId=4837 minecraft:flowing_water;liquid_depth=6 blockId=8 -runtimeId=4837 +runtimeId=4838 minecraft:flowing_water;liquid_depth=7 blockId=8 -runtimeId=4838 +runtimeId=4839 minecraft:flowing_water;liquid_depth=8 blockId=8 -runtimeId=4839 +runtimeId=4840 minecraft:flowing_water;liquid_depth=9 blockId=8 -runtimeId=4840 +runtimeId=4841 minecraft:flowing_water;liquid_depth=10 blockId=8 -runtimeId=4841 +runtimeId=4842 minecraft:flowing_water;liquid_depth=11 blockId=8 -runtimeId=4842 +runtimeId=4843 minecraft:flowing_water;liquid_depth=12 blockId=8 -runtimeId=4843 +runtimeId=4844 minecraft:flowing_water;liquid_depth=13 blockId=8 -runtimeId=4844 +runtimeId=4845 minecraft:flowing_water;liquid_depth=14 blockId=8 -runtimeId=4845 +runtimeId=4846 minecraft:flowing_water;liquid_depth=15 blockId=8 -runtimeId=4846 +runtimeId=4847 minecraft:frame;facing_direction=0;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=199 -runtimeId=4847 +runtimeId=4848 minecraft:frame;facing_direction=0;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=199 -runtimeId=4853 +runtimeId=4854 minecraft:frame;facing_direction=0;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=199 -runtimeId=4859 +runtimeId=4860 minecraft:frame;facing_direction=0;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 -runtimeId=4865 +runtimeId=4866 minecraft:frame;facing_direction=1;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=199 -runtimeId=4848 +runtimeId=4849 minecraft:frame;facing_direction=1;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=199 -runtimeId=4854 +runtimeId=4855 minecraft:frame;facing_direction=1;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=199 -runtimeId=4860 +runtimeId=4861 minecraft:frame;facing_direction=1;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 -runtimeId=4866 +runtimeId=4867 minecraft:frame;facing_direction=2;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=199 -runtimeId=4849 +runtimeId=4850 minecraft:frame;facing_direction=2;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=199 -runtimeId=4855 +runtimeId=4856 minecraft:frame;facing_direction=2;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=199 -runtimeId=4861 +runtimeId=4862 minecraft:frame;facing_direction=2;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 -runtimeId=4867 +runtimeId=4868 minecraft:frame;facing_direction=3;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=199 -runtimeId=4850 +runtimeId=4851 minecraft:frame;facing_direction=3;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=199 -runtimeId=4856 +runtimeId=4857 minecraft:frame;facing_direction=3;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=199 -runtimeId=4862 +runtimeId=4863 minecraft:frame;facing_direction=3;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 -runtimeId=4868 +runtimeId=4869 minecraft:frame;facing_direction=4;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=199 -runtimeId=4851 +runtimeId=4852 minecraft:frame;facing_direction=4;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=199 -runtimeId=4857 +runtimeId=4858 minecraft:frame;facing_direction=4;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=199 -runtimeId=4863 +runtimeId=4864 minecraft:frame;facing_direction=4;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 -runtimeId=4869 +runtimeId=4870 minecraft:frame;facing_direction=5;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=199 -runtimeId=4852 +runtimeId=4853 minecraft:frame;facing_direction=5;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=199 -runtimeId=4858 +runtimeId=4859 minecraft:frame;facing_direction=5;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=199 -runtimeId=4864 +runtimeId=4865 minecraft:frame;facing_direction=5;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 -runtimeId=4870 +runtimeId=4871 minecraft:frosted_ice;age=0 blockId=207 -runtimeId=4871 +runtimeId=4872 minecraft:frosted_ice;age=1 blockId=207 -runtimeId=4872 +runtimeId=4873 minecraft:frosted_ice;age=2 blockId=207 -runtimeId=4873 +runtimeId=4874 minecraft:frosted_ice;age=3 blockId=207 -runtimeId=4874 +runtimeId=4875 minecraft:furnace;facing_direction=0 blockId=61 -runtimeId=4875 +runtimeId=4876 minecraft:furnace;facing_direction=1 blockId=61 -runtimeId=4876 +runtimeId=4877 minecraft:furnace;facing_direction=2 blockId=61 -runtimeId=4877 +runtimeId=4878 minecraft:furnace;facing_direction=3 blockId=61 -runtimeId=4878 +runtimeId=4879 minecraft:furnace;facing_direction=4 blockId=61 -runtimeId=4879 +runtimeId=4880 minecraft:furnace;facing_direction=5 blockId=61 -runtimeId=4880 +runtimeId=4881 minecraft:gilded_blackstone blockId=536 -runtimeId=4881 +runtimeId=4882 minecraft:glass blockId=20 -runtimeId=4882 +runtimeId=4883 minecraft:glass_pane blockId=102 -runtimeId=4883 +runtimeId=4884 minecraft:glow_frame;facing_direction=0;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4884 +runtimeId=4885 minecraft:glow_frame;facing_direction=0;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4890 +runtimeId=4891 minecraft:glow_frame;facing_direction=0;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4896 +runtimeId=4897 minecraft:glow_frame;facing_direction=0;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4902 +runtimeId=4903 minecraft:glow_frame;facing_direction=1;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4885 +runtimeId=4886 minecraft:glow_frame;facing_direction=1;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4891 +runtimeId=4892 minecraft:glow_frame;facing_direction=1;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4897 +runtimeId=4898 minecraft:glow_frame;facing_direction=1;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4903 +runtimeId=4904 minecraft:glow_frame;facing_direction=2;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4886 +runtimeId=4887 minecraft:glow_frame;facing_direction=2;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4892 +runtimeId=4893 minecraft:glow_frame;facing_direction=2;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4898 +runtimeId=4899 minecraft:glow_frame;facing_direction=2;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4904 +runtimeId=4905 minecraft:glow_frame;facing_direction=3;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4887 +runtimeId=4888 minecraft:glow_frame;facing_direction=3;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4893 +runtimeId=4894 minecraft:glow_frame;facing_direction=3;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4899 +runtimeId=4900 minecraft:glow_frame;facing_direction=3;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4905 +runtimeId=4906 minecraft:glow_frame;facing_direction=4;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4888 +runtimeId=4889 minecraft:glow_frame;facing_direction=4;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4894 +runtimeId=4895 minecraft:glow_frame;facing_direction=4;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4900 +runtimeId=4901 minecraft:glow_frame;facing_direction=4;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4906 +runtimeId=4907 minecraft:glow_frame;facing_direction=5;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4889 +runtimeId=4890 minecraft:glow_frame;facing_direction=5;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4895 +runtimeId=4896 minecraft:glow_frame;facing_direction=5;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4901 +runtimeId=4902 minecraft:glow_frame;facing_direction=5;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4907 +runtimeId=4908 minecraft:glow_lichen;multi_face_direction_bits=0 blockId=666 -runtimeId=4908 +runtimeId=4909 minecraft:glow_lichen;multi_face_direction_bits=1 blockId=666 -runtimeId=4909 +runtimeId=4910 minecraft:glow_lichen;multi_face_direction_bits=2 blockId=666 -runtimeId=4910 +runtimeId=4911 minecraft:glow_lichen;multi_face_direction_bits=3 blockId=666 -runtimeId=4911 +runtimeId=4912 minecraft:glow_lichen;multi_face_direction_bits=4 blockId=666 -runtimeId=4912 +runtimeId=4913 minecraft:glow_lichen;multi_face_direction_bits=5 blockId=666 -runtimeId=4913 +runtimeId=4914 minecraft:glow_lichen;multi_face_direction_bits=6 blockId=666 -runtimeId=4914 +runtimeId=4915 minecraft:glow_lichen;multi_face_direction_bits=7 blockId=666 -runtimeId=4915 +runtimeId=4916 minecraft:glow_lichen;multi_face_direction_bits=8 blockId=666 -runtimeId=4916 +runtimeId=4917 minecraft:glow_lichen;multi_face_direction_bits=9 blockId=666 -runtimeId=4917 +runtimeId=4918 minecraft:glow_lichen;multi_face_direction_bits=10 blockId=666 -runtimeId=4918 +runtimeId=4919 minecraft:glow_lichen;multi_face_direction_bits=11 blockId=666 -runtimeId=4919 +runtimeId=4920 minecraft:glow_lichen;multi_face_direction_bits=12 blockId=666 -runtimeId=4920 +runtimeId=4921 minecraft:glow_lichen;multi_face_direction_bits=13 blockId=666 -runtimeId=4921 +runtimeId=4922 minecraft:glow_lichen;multi_face_direction_bits=14 blockId=666 -runtimeId=4922 +runtimeId=4923 minecraft:glow_lichen;multi_face_direction_bits=15 blockId=666 -runtimeId=4923 +runtimeId=4924 minecraft:glow_lichen;multi_face_direction_bits=16 blockId=666 -runtimeId=4924 +runtimeId=4925 minecraft:glow_lichen;multi_face_direction_bits=17 blockId=666 -runtimeId=4925 +runtimeId=4926 minecraft:glow_lichen;multi_face_direction_bits=18 blockId=666 -runtimeId=4926 +runtimeId=4927 minecraft:glow_lichen;multi_face_direction_bits=19 blockId=666 -runtimeId=4927 +runtimeId=4928 minecraft:glow_lichen;multi_face_direction_bits=20 blockId=666 -runtimeId=4928 +runtimeId=4929 minecraft:glow_lichen;multi_face_direction_bits=21 blockId=666 -runtimeId=4929 +runtimeId=4930 minecraft:glow_lichen;multi_face_direction_bits=22 blockId=666 -runtimeId=4930 +runtimeId=4931 minecraft:glow_lichen;multi_face_direction_bits=23 blockId=666 -runtimeId=4931 +runtimeId=4932 minecraft:glow_lichen;multi_face_direction_bits=24 blockId=666 -runtimeId=4932 +runtimeId=4933 minecraft:glow_lichen;multi_face_direction_bits=25 blockId=666 -runtimeId=4933 +runtimeId=4934 minecraft:glow_lichen;multi_face_direction_bits=26 blockId=666 -runtimeId=4934 +runtimeId=4935 minecraft:glow_lichen;multi_face_direction_bits=27 blockId=666 -runtimeId=4935 +runtimeId=4936 minecraft:glow_lichen;multi_face_direction_bits=28 blockId=666 -runtimeId=4936 +runtimeId=4937 minecraft:glow_lichen;multi_face_direction_bits=29 blockId=666 -runtimeId=4937 +runtimeId=4938 minecraft:glow_lichen;multi_face_direction_bits=30 blockId=666 -runtimeId=4938 +runtimeId=4939 minecraft:glow_lichen;multi_face_direction_bits=31 blockId=666 -runtimeId=4939 +runtimeId=4940 minecraft:glow_lichen;multi_face_direction_bits=32 blockId=666 -runtimeId=4940 +runtimeId=4941 minecraft:glow_lichen;multi_face_direction_bits=33 blockId=666 -runtimeId=4941 +runtimeId=4942 minecraft:glow_lichen;multi_face_direction_bits=34 blockId=666 -runtimeId=4942 +runtimeId=4943 minecraft:glow_lichen;multi_face_direction_bits=35 blockId=666 -runtimeId=4943 +runtimeId=4944 minecraft:glow_lichen;multi_face_direction_bits=36 blockId=666 -runtimeId=4944 +runtimeId=4945 minecraft:glow_lichen;multi_face_direction_bits=37 blockId=666 -runtimeId=4945 +runtimeId=4946 minecraft:glow_lichen;multi_face_direction_bits=38 blockId=666 -runtimeId=4946 +runtimeId=4947 minecraft:glow_lichen;multi_face_direction_bits=39 blockId=666 -runtimeId=4947 +runtimeId=4948 minecraft:glow_lichen;multi_face_direction_bits=40 blockId=666 -runtimeId=4948 +runtimeId=4949 minecraft:glow_lichen;multi_face_direction_bits=41 blockId=666 -runtimeId=4949 +runtimeId=4950 minecraft:glow_lichen;multi_face_direction_bits=42 blockId=666 -runtimeId=4950 +runtimeId=4951 minecraft:glow_lichen;multi_face_direction_bits=43 blockId=666 -runtimeId=4951 +runtimeId=4952 minecraft:glow_lichen;multi_face_direction_bits=44 blockId=666 -runtimeId=4952 +runtimeId=4953 minecraft:glow_lichen;multi_face_direction_bits=45 blockId=666 -runtimeId=4953 +runtimeId=4954 minecraft:glow_lichen;multi_face_direction_bits=46 blockId=666 -runtimeId=4954 +runtimeId=4955 minecraft:glow_lichen;multi_face_direction_bits=47 blockId=666 -runtimeId=4955 +runtimeId=4956 minecraft:glow_lichen;multi_face_direction_bits=48 blockId=666 -runtimeId=4956 +runtimeId=4957 minecraft:glow_lichen;multi_face_direction_bits=49 blockId=666 -runtimeId=4957 +runtimeId=4958 minecraft:glow_lichen;multi_face_direction_bits=50 blockId=666 -runtimeId=4958 +runtimeId=4959 minecraft:glow_lichen;multi_face_direction_bits=51 blockId=666 -runtimeId=4959 +runtimeId=4960 minecraft:glow_lichen;multi_face_direction_bits=52 blockId=666 -runtimeId=4960 +runtimeId=4961 minecraft:glow_lichen;multi_face_direction_bits=53 blockId=666 -runtimeId=4961 +runtimeId=4962 minecraft:glow_lichen;multi_face_direction_bits=54 blockId=666 -runtimeId=4962 +runtimeId=4963 minecraft:glow_lichen;multi_face_direction_bits=55 blockId=666 -runtimeId=4963 +runtimeId=4964 minecraft:glow_lichen;multi_face_direction_bits=56 blockId=666 -runtimeId=4964 +runtimeId=4965 minecraft:glow_lichen;multi_face_direction_bits=57 blockId=666 -runtimeId=4965 +runtimeId=4966 minecraft:glow_lichen;multi_face_direction_bits=58 blockId=666 -runtimeId=4966 +runtimeId=4967 minecraft:glow_lichen;multi_face_direction_bits=59 blockId=666 -runtimeId=4967 +runtimeId=4968 minecraft:glow_lichen;multi_face_direction_bits=60 blockId=666 -runtimeId=4968 +runtimeId=4969 minecraft:glow_lichen;multi_face_direction_bits=61 blockId=666 -runtimeId=4969 +runtimeId=4970 minecraft:glow_lichen;multi_face_direction_bits=62 blockId=666 -runtimeId=4970 +runtimeId=4971 minecraft:glow_lichen;multi_face_direction_bits=63 blockId=666 -runtimeId=4971 +runtimeId=4972 minecraft:glowingobsidian blockId=246 -runtimeId=4972 +runtimeId=4973 minecraft:glowstone blockId=89 -runtimeId=4973 +runtimeId=4974 minecraft:gold_block blockId=41 -runtimeId=4974 +runtimeId=4975 minecraft:gold_ore blockId=14 -runtimeId=4975 +runtimeId=4976 minecraft:golden_rail;rail_direction=0;rail_data_bit=0 blockId=27 -runtimeId=4976 +runtimeId=4977 minecraft:golden_rail;rail_direction=0;rail_data_bit=1 blockId=27 -runtimeId=4982 +runtimeId=4983 minecraft:golden_rail;rail_direction=1;rail_data_bit=0 blockId=27 -runtimeId=4977 +runtimeId=4978 minecraft:golden_rail;rail_direction=1;rail_data_bit=1 blockId=27 -runtimeId=4983 +runtimeId=4984 minecraft:golden_rail;rail_direction=2;rail_data_bit=0 blockId=27 -runtimeId=4978 +runtimeId=4979 minecraft:golden_rail;rail_direction=2;rail_data_bit=1 blockId=27 -runtimeId=4984 +runtimeId=4985 minecraft:golden_rail;rail_direction=3;rail_data_bit=0 blockId=27 -runtimeId=4979 +runtimeId=4980 minecraft:golden_rail;rail_direction=3;rail_data_bit=1 blockId=27 -runtimeId=4985 +runtimeId=4986 minecraft:golden_rail;rail_direction=4;rail_data_bit=0 blockId=27 -runtimeId=4980 +runtimeId=4981 minecraft:golden_rail;rail_direction=4;rail_data_bit=1 blockId=27 -runtimeId=4986 +runtimeId=4987 minecraft:golden_rail;rail_direction=5;rail_data_bit=0 blockId=27 -runtimeId=4981 +runtimeId=4982 minecraft:golden_rail;rail_direction=5;rail_data_bit=1 blockId=27 -runtimeId=4987 +runtimeId=4988 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=424 -runtimeId=4988 +runtimeId=4989 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=424 -runtimeId=4989 +runtimeId=4990 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=424 -runtimeId=4990 +runtimeId=4991 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=424 -runtimeId=4991 +runtimeId=4992 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=424 -runtimeId=4992 +runtimeId=4993 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=424 -runtimeId=4993 +runtimeId=4994 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=424 -runtimeId=4994 +runtimeId=4995 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=424 -runtimeId=4995 +runtimeId=4996 minecraft:grass blockId=2 -runtimeId=4996 +runtimeId=4997 minecraft:grass_path blockId=198 -runtimeId=4997 +runtimeId=4998 minecraft:gravel blockId=13 -runtimeId=4998 +runtimeId=4999 minecraft:gray_candle;lit=0;candles=0 blockId=675 -runtimeId=4999 +runtimeId=5000 minecraft:gray_candle;lit=0;candles=1 blockId=675 -runtimeId=5000 +runtimeId=5001 minecraft:gray_candle;lit=0;candles=2 blockId=675 -runtimeId=5001 +runtimeId=5002 minecraft:gray_candle;lit=0;candles=3 blockId=675 -runtimeId=5002 +runtimeId=5003 minecraft:gray_candle;lit=1;candles=0 blockId=675 -runtimeId=5003 +runtimeId=5004 minecraft:gray_candle;lit=1;candles=1 blockId=675 -runtimeId=5004 +runtimeId=5005 minecraft:gray_candle;lit=1;candles=2 blockId=675 -runtimeId=5005 +runtimeId=5006 minecraft:gray_candle;lit=1;candles=3 blockId=675 -runtimeId=5006 +runtimeId=5007 minecraft:gray_candle_cake;lit=0 blockId=692 -runtimeId=5007 +runtimeId=5008 minecraft:gray_candle_cake;lit=1 blockId=692 -runtimeId=5008 +runtimeId=5009 minecraft:gray_glazed_terracotta;facing_direction=0 blockId=227 -runtimeId=5009 +runtimeId=5010 minecraft:gray_glazed_terracotta;facing_direction=1 blockId=227 -runtimeId=5010 +runtimeId=5011 minecraft:gray_glazed_terracotta;facing_direction=2 blockId=227 -runtimeId=5011 +runtimeId=5012 minecraft:gray_glazed_terracotta;facing_direction=3 blockId=227 -runtimeId=5012 +runtimeId=5013 minecraft:gray_glazed_terracotta;facing_direction=4 blockId=227 -runtimeId=5013 +runtimeId=5014 minecraft:gray_glazed_terracotta;facing_direction=5 blockId=227 -runtimeId=5014 +runtimeId=5015 minecraft:green_candle;lit=0;candles=0 blockId=681 -runtimeId=5015 +runtimeId=5016 minecraft:green_candle;lit=0;candles=1 blockId=681 -runtimeId=5016 +runtimeId=5017 minecraft:green_candle;lit=0;candles=2 blockId=681 -runtimeId=5017 +runtimeId=5018 minecraft:green_candle;lit=0;candles=3 blockId=681 -runtimeId=5018 +runtimeId=5019 minecraft:green_candle;lit=1;candles=0 blockId=681 -runtimeId=5019 +runtimeId=5020 minecraft:green_candle;lit=1;candles=1 blockId=681 -runtimeId=5020 +runtimeId=5021 minecraft:green_candle;lit=1;candles=2 blockId=681 -runtimeId=5021 +runtimeId=5022 minecraft:green_candle;lit=1;candles=3 blockId=681 -runtimeId=5022 +runtimeId=5023 minecraft:green_candle_cake;lit=0 blockId=698 -runtimeId=5023 +runtimeId=5024 minecraft:green_candle_cake;lit=1 blockId=698 -runtimeId=5024 +runtimeId=5025 minecraft:green_glazed_terracotta;facing_direction=0 blockId=233 -runtimeId=5025 +runtimeId=5026 minecraft:green_glazed_terracotta;facing_direction=1 blockId=233 -runtimeId=5026 +runtimeId=5027 minecraft:green_glazed_terracotta;facing_direction=2 blockId=233 -runtimeId=5027 +runtimeId=5028 minecraft:green_glazed_terracotta;facing_direction=3 blockId=233 -runtimeId=5028 +runtimeId=5029 minecraft:green_glazed_terracotta;facing_direction=4 blockId=233 -runtimeId=5029 +runtimeId=5030 minecraft:green_glazed_terracotta;facing_direction=5 blockId=233 -runtimeId=5030 +runtimeId=5031 minecraft:grindstone;attachment=hanging;direction=0 blockId=450 -runtimeId=5035 +runtimeId=5036 minecraft:grindstone;attachment=hanging;direction=1 blockId=450 -runtimeId=5036 +runtimeId=5037 minecraft:grindstone;attachment=hanging;direction=2 blockId=450 -runtimeId=5037 +runtimeId=5038 minecraft:grindstone;attachment=hanging;direction=3 blockId=450 -runtimeId=5038 +runtimeId=5039 minecraft:grindstone;attachment=multiple;direction=0 blockId=450 -runtimeId=5043 +runtimeId=5044 minecraft:grindstone;attachment=multiple;direction=1 blockId=450 -runtimeId=5044 +runtimeId=5045 minecraft:grindstone;attachment=multiple;direction=2 blockId=450 -runtimeId=5045 +runtimeId=5046 minecraft:grindstone;attachment=multiple;direction=3 blockId=450 -runtimeId=5046 +runtimeId=5047 minecraft:grindstone;attachment=side;direction=0 blockId=450 -runtimeId=5039 +runtimeId=5040 minecraft:grindstone;attachment=side;direction=1 blockId=450 -runtimeId=5040 +runtimeId=5041 minecraft:grindstone;attachment=side;direction=2 blockId=450 -runtimeId=5041 +runtimeId=5042 minecraft:grindstone;attachment=side;direction=3 blockId=450 -runtimeId=5042 +runtimeId=5043 minecraft:grindstone;attachment=standing;direction=0 blockId=450 -runtimeId=5031 +runtimeId=5032 minecraft:grindstone;attachment=standing;direction=1 blockId=450 -runtimeId=5032 +runtimeId=5033 minecraft:grindstone;attachment=standing;direction=2 blockId=450 -runtimeId=5033 +runtimeId=5034 minecraft:grindstone;attachment=standing;direction=3 blockId=450 -runtimeId=5034 +runtimeId=5035 minecraft:hanging_roots blockId=574 -runtimeId=5047 +runtimeId=5048 minecraft:hard_glass blockId=253 -runtimeId=5048 +runtimeId=5049 minecraft:hard_glass_pane blockId=190 -runtimeId=5049 +runtimeId=5050 minecraft:hard_stained_glass;color=black blockId=254 -runtimeId=5065 +runtimeId=5066 minecraft:hard_stained_glass;color=blue blockId=254 -runtimeId=5061 +runtimeId=5062 minecraft:hard_stained_glass;color=brown blockId=254 -runtimeId=5062 +runtimeId=5063 minecraft:hard_stained_glass;color=cyan blockId=254 -runtimeId=5059 +runtimeId=5060 minecraft:hard_stained_glass;color=gray blockId=254 -runtimeId=5057 +runtimeId=5058 minecraft:hard_stained_glass;color=green blockId=254 -runtimeId=5063 +runtimeId=5064 minecraft:hard_stained_glass;color=light_blue blockId=254 -runtimeId=5053 +runtimeId=5054 minecraft:hard_stained_glass;color=lime blockId=254 -runtimeId=5055 +runtimeId=5056 minecraft:hard_stained_glass;color=magenta blockId=254 -runtimeId=5052 +runtimeId=5053 minecraft:hard_stained_glass;color=orange blockId=254 -runtimeId=5051 +runtimeId=5052 minecraft:hard_stained_glass;color=pink blockId=254 -runtimeId=5056 +runtimeId=5057 minecraft:hard_stained_glass;color=purple blockId=254 -runtimeId=5060 +runtimeId=5061 minecraft:hard_stained_glass;color=red blockId=254 -runtimeId=5064 +runtimeId=5065 minecraft:hard_stained_glass;color=silver blockId=254 -runtimeId=5058 +runtimeId=5059 minecraft:hard_stained_glass;color=white blockId=254 -runtimeId=5050 +runtimeId=5051 minecraft:hard_stained_glass;color=yellow blockId=254 -runtimeId=5054 +runtimeId=5055 minecraft:hard_stained_glass_pane;color=black blockId=191 -runtimeId=5081 +runtimeId=5082 minecraft:hard_stained_glass_pane;color=blue blockId=191 -runtimeId=5077 +runtimeId=5078 minecraft:hard_stained_glass_pane;color=brown blockId=191 -runtimeId=5078 +runtimeId=5079 minecraft:hard_stained_glass_pane;color=cyan blockId=191 -runtimeId=5075 +runtimeId=5076 minecraft:hard_stained_glass_pane;color=gray blockId=191 -runtimeId=5073 +runtimeId=5074 minecraft:hard_stained_glass_pane;color=green blockId=191 -runtimeId=5079 +runtimeId=5080 minecraft:hard_stained_glass_pane;color=light_blue blockId=191 -runtimeId=5069 +runtimeId=5070 minecraft:hard_stained_glass_pane;color=lime blockId=191 -runtimeId=5071 +runtimeId=5072 minecraft:hard_stained_glass_pane;color=magenta blockId=191 -runtimeId=5068 +runtimeId=5069 minecraft:hard_stained_glass_pane;color=orange blockId=191 -runtimeId=5067 +runtimeId=5068 minecraft:hard_stained_glass_pane;color=pink blockId=191 -runtimeId=5072 +runtimeId=5073 minecraft:hard_stained_glass_pane;color=purple blockId=191 -runtimeId=5076 +runtimeId=5077 minecraft:hard_stained_glass_pane;color=red blockId=191 -runtimeId=5080 +runtimeId=5081 minecraft:hard_stained_glass_pane;color=silver blockId=191 -runtimeId=5074 +runtimeId=5075 minecraft:hard_stained_glass_pane;color=white blockId=191 -runtimeId=5066 +runtimeId=5067 minecraft:hard_stained_glass_pane;color=yellow blockId=191 -runtimeId=5070 +runtimeId=5071 minecraft:hardened_clay blockId=172 -runtimeId=5082 - -minecraft:hay_block;deprecated=0;pillar_axis=x -blockId=170 -runtimeId=5087 - -minecraft:hay_block;deprecated=0;pillar_axis=y -blockId=170 runtimeId=5083 -minecraft:hay_block;deprecated=0;pillar_axis=z -blockId=170 -runtimeId=5091 - -minecraft:hay_block;deprecated=1;pillar_axis=x -blockId=170 -runtimeId=5088 - -minecraft:hay_block;deprecated=1;pillar_axis=y -blockId=170 -runtimeId=5084 - -minecraft:hay_block;deprecated=1;pillar_axis=z +minecraft:hay_block;deprecated=0;pillar_axis=y blockId=170 runtimeId=5092 -minecraft:hay_block;deprecated=2;pillar_axis=x -blockId=170 -runtimeId=5089 - -minecraft:hay_block;deprecated=2;pillar_axis=y -blockId=170 -runtimeId=5085 - -minecraft:hay_block;deprecated=2;pillar_axis=z +minecraft:hay_block;deprecated=1;pillar_axis=y blockId=170 runtimeId=5093 -minecraft:hay_block;deprecated=3;pillar_axis=x +minecraft:hay_block;deprecated=2;pillar_axis=y blockId=170 -runtimeId=5090 +runtimeId=5094 minecraft:hay_block;deprecated=3;pillar_axis=y blockId=170 -runtimeId=5086 - -minecraft:hay_block;deprecated=3;pillar_axis=z -blockId=170 -runtimeId=5094 +runtimeId=5095 minecraft:heavy_weighted_pressure_plate;redstone_signal=0 blockId=148 -runtimeId=5095 +runtimeId=5096 minecraft:heavy_weighted_pressure_plate;redstone_signal=1 blockId=148 -runtimeId=5096 +runtimeId=5097 minecraft:heavy_weighted_pressure_plate;redstone_signal=2 blockId=148 -runtimeId=5097 +runtimeId=5098 minecraft:heavy_weighted_pressure_plate;redstone_signal=3 blockId=148 -runtimeId=5098 +runtimeId=5099 minecraft:heavy_weighted_pressure_plate;redstone_signal=4 blockId=148 -runtimeId=5099 +runtimeId=5100 minecraft:heavy_weighted_pressure_plate;redstone_signal=5 blockId=148 -runtimeId=5100 +runtimeId=5101 minecraft:heavy_weighted_pressure_plate;redstone_signal=6 blockId=148 -runtimeId=5101 +runtimeId=5102 minecraft:heavy_weighted_pressure_plate;redstone_signal=7 blockId=148 -runtimeId=5102 +runtimeId=5103 minecraft:heavy_weighted_pressure_plate;redstone_signal=8 blockId=148 -runtimeId=5103 +runtimeId=5104 minecraft:heavy_weighted_pressure_plate;redstone_signal=9 blockId=148 -runtimeId=5104 +runtimeId=5105 minecraft:heavy_weighted_pressure_plate;redstone_signal=10 blockId=148 -runtimeId=5105 +runtimeId=5106 minecraft:heavy_weighted_pressure_plate;redstone_signal=11 blockId=148 -runtimeId=5106 +runtimeId=5107 minecraft:heavy_weighted_pressure_plate;redstone_signal=12 blockId=148 -runtimeId=5107 +runtimeId=5108 minecraft:heavy_weighted_pressure_plate;redstone_signal=13 blockId=148 -runtimeId=5108 +runtimeId=5109 minecraft:heavy_weighted_pressure_plate;redstone_signal=14 blockId=148 -runtimeId=5109 +runtimeId=5110 minecraft:heavy_weighted_pressure_plate;redstone_signal=15 blockId=148 -runtimeId=5110 +runtimeId=5111 minecraft:honey_block blockId=475 -runtimeId=5111 +runtimeId=5112 minecraft:honeycomb_block blockId=476 -runtimeId=5112 +runtimeId=5113 minecraft:hopper;facing_direction=0;toggle_bit=0 blockId=154 -runtimeId=5113 +runtimeId=5114 minecraft:hopper;facing_direction=0;toggle_bit=1 blockId=154 -runtimeId=5119 +runtimeId=5120 minecraft:hopper;facing_direction=1;toggle_bit=0 blockId=154 -runtimeId=5114 +runtimeId=5115 minecraft:hopper;facing_direction=1;toggle_bit=1 blockId=154 -runtimeId=5120 +runtimeId=5121 minecraft:hopper;facing_direction=2;toggle_bit=0 blockId=154 -runtimeId=5115 +runtimeId=5116 minecraft:hopper;facing_direction=2;toggle_bit=1 blockId=154 -runtimeId=5121 +runtimeId=5122 minecraft:hopper;facing_direction=3;toggle_bit=0 blockId=154 -runtimeId=5116 +runtimeId=5117 minecraft:hopper;facing_direction=3;toggle_bit=1 blockId=154 -runtimeId=5122 +runtimeId=5123 minecraft:hopper;facing_direction=4;toggle_bit=0 blockId=154 -runtimeId=5117 +runtimeId=5118 minecraft:hopper;facing_direction=4;toggle_bit=1 blockId=154 -runtimeId=5123 +runtimeId=5124 minecraft:hopper;facing_direction=5;toggle_bit=0 blockId=154 -runtimeId=5118 +runtimeId=5119 minecraft:hopper;facing_direction=5;toggle_bit=1 blockId=154 -runtimeId=5124 +runtimeId=5125 minecraft:ice blockId=79 -runtimeId=5125 - -minecraft:infested_deepslate;pillar_axis=x -blockId=709 -runtimeId=5127 - -minecraft:infested_deepslate;pillar_axis=y -blockId=709 runtimeId=5126 -minecraft:infested_deepslate;pillar_axis=z +minecraft:infested_deepslate;pillar_axis=y blockId=709 -runtimeId=5128 +runtimeId=5129 minecraft:info_update blockId=248 -runtimeId=5129 +runtimeId=5130 minecraft:info_update2 blockId=249 -runtimeId=5130 +runtimeId=5131 minecraft:invisibleBedrock blockId=95 -runtimeId=5131 +runtimeId=5132 minecraft:iron_bars blockId=101 -runtimeId=5132 +runtimeId=5133 minecraft:iron_block blockId=42 -runtimeId=5133 +runtimeId=5134 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5134 +runtimeId=5135 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5135 +runtimeId=5136 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5136 +runtimeId=5137 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5137 +runtimeId=5138 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5150 +runtimeId=5151 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5151 +runtimeId=5152 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5152 +runtimeId=5153 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5153 +runtimeId=5154 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5142 +runtimeId=5143 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5143 +runtimeId=5144 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5144 +runtimeId=5145 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5145 +runtimeId=5146 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5158 +runtimeId=5159 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5159 +runtimeId=5160 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5160 +runtimeId=5161 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5161 +runtimeId=5162 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5138 +runtimeId=5139 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5139 +runtimeId=5140 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5140 +runtimeId=5141 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5141 +runtimeId=5142 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5154 +runtimeId=5155 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5155 +runtimeId=5156 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5156 +runtimeId=5157 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5157 +runtimeId=5158 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5146 +runtimeId=5147 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5147 +runtimeId=5148 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5148 +runtimeId=5149 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5149 +runtimeId=5150 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5162 +runtimeId=5163 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5163 +runtimeId=5164 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5164 +runtimeId=5165 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5165 +runtimeId=5166 minecraft:iron_ore blockId=15 -runtimeId=5166 +runtimeId=5167 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=167 -runtimeId=5167 +runtimeId=5168 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=167 -runtimeId=5168 +runtimeId=5169 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=167 -runtimeId=5169 +runtimeId=5170 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=167 -runtimeId=5170 +runtimeId=5171 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=167 -runtimeId=5171 +runtimeId=5172 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=167 -runtimeId=5172 +runtimeId=5173 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=167 -runtimeId=5173 +runtimeId=5174 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=167 -runtimeId=5174 +runtimeId=5175 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=167 -runtimeId=5175 +runtimeId=5176 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=167 -runtimeId=5176 +runtimeId=5177 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=167 -runtimeId=5177 +runtimeId=5178 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=167 -runtimeId=5178 +runtimeId=5179 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=167 -runtimeId=5179 +runtimeId=5180 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=167 -runtimeId=5180 +runtimeId=5181 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=167 -runtimeId=5181 +runtimeId=5182 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=167 -runtimeId=5182 +runtimeId=5183 minecraft:jigsaw;facing_direction=0;rotation=0 blockId=466 -runtimeId=5183 +runtimeId=5184 minecraft:jigsaw;facing_direction=0;rotation=1 blockId=466 -runtimeId=5189 +runtimeId=5190 minecraft:jigsaw;facing_direction=0;rotation=2 blockId=466 -runtimeId=5195 +runtimeId=5196 minecraft:jigsaw;facing_direction=0;rotation=3 blockId=466 -runtimeId=5201 +runtimeId=5202 minecraft:jigsaw;facing_direction=1;rotation=0 blockId=466 -runtimeId=5184 +runtimeId=5185 minecraft:jigsaw;facing_direction=1;rotation=1 blockId=466 -runtimeId=5190 +runtimeId=5191 minecraft:jigsaw;facing_direction=1;rotation=2 blockId=466 -runtimeId=5196 +runtimeId=5197 minecraft:jigsaw;facing_direction=1;rotation=3 blockId=466 -runtimeId=5202 +runtimeId=5203 minecraft:jigsaw;facing_direction=2;rotation=0 blockId=466 -runtimeId=5185 +runtimeId=5186 minecraft:jigsaw;facing_direction=2;rotation=1 blockId=466 -runtimeId=5191 +runtimeId=5192 minecraft:jigsaw;facing_direction=2;rotation=2 blockId=466 -runtimeId=5197 +runtimeId=5198 minecraft:jigsaw;facing_direction=2;rotation=3 blockId=466 -runtimeId=5203 +runtimeId=5204 minecraft:jigsaw;facing_direction=3;rotation=0 blockId=466 -runtimeId=5186 +runtimeId=5187 minecraft:jigsaw;facing_direction=3;rotation=1 blockId=466 -runtimeId=5192 +runtimeId=5193 minecraft:jigsaw;facing_direction=3;rotation=2 blockId=466 -runtimeId=5198 +runtimeId=5199 minecraft:jigsaw;facing_direction=3;rotation=3 blockId=466 -runtimeId=5204 +runtimeId=5205 minecraft:jigsaw;facing_direction=4;rotation=0 blockId=466 -runtimeId=5187 +runtimeId=5188 minecraft:jigsaw;facing_direction=4;rotation=1 blockId=466 -runtimeId=5193 +runtimeId=5194 minecraft:jigsaw;facing_direction=4;rotation=2 blockId=466 -runtimeId=5199 +runtimeId=5200 minecraft:jigsaw;facing_direction=4;rotation=3 blockId=466 -runtimeId=5205 +runtimeId=5206 minecraft:jigsaw;facing_direction=5;rotation=0 blockId=466 -runtimeId=5188 +runtimeId=5189 minecraft:jigsaw;facing_direction=5;rotation=1 blockId=466 -runtimeId=5194 +runtimeId=5195 minecraft:jigsaw;facing_direction=5;rotation=2 blockId=466 -runtimeId=5200 +runtimeId=5201 minecraft:jigsaw;facing_direction=5;rotation=3 blockId=466 -runtimeId=5206 +runtimeId=5207 minecraft:jukebox blockId=84 -runtimeId=5207 +runtimeId=5208 minecraft:jungle_button;button_pressed_bit=0;facing_direction=0 blockId=398 -runtimeId=5208 +runtimeId=5209 minecraft:jungle_button;button_pressed_bit=0;facing_direction=1 blockId=398 -runtimeId=5209 +runtimeId=5210 minecraft:jungle_button;button_pressed_bit=0;facing_direction=2 blockId=398 -runtimeId=5210 +runtimeId=5211 minecraft:jungle_button;button_pressed_bit=0;facing_direction=3 blockId=398 -runtimeId=5211 +runtimeId=5212 minecraft:jungle_button;button_pressed_bit=0;facing_direction=4 blockId=398 -runtimeId=5212 +runtimeId=5213 minecraft:jungle_button;button_pressed_bit=0;facing_direction=5 blockId=398 -runtimeId=5213 +runtimeId=5214 minecraft:jungle_button;button_pressed_bit=1;facing_direction=0 blockId=398 -runtimeId=5214 +runtimeId=5215 minecraft:jungle_button;button_pressed_bit=1;facing_direction=1 blockId=398 -runtimeId=5215 +runtimeId=5216 minecraft:jungle_button;button_pressed_bit=1;facing_direction=2 blockId=398 -runtimeId=5216 +runtimeId=5217 minecraft:jungle_button;button_pressed_bit=1;facing_direction=3 blockId=398 -runtimeId=5217 +runtimeId=5218 minecraft:jungle_button;button_pressed_bit=1;facing_direction=4 blockId=398 -runtimeId=5218 +runtimeId=5219 minecraft:jungle_button;button_pressed_bit=1;facing_direction=5 blockId=398 -runtimeId=5219 +runtimeId=5220 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5220 +runtimeId=5221 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5221 +runtimeId=5222 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5222 +runtimeId=5223 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5223 +runtimeId=5224 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5236 +runtimeId=5237 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5237 +runtimeId=5238 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5238 +runtimeId=5239 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5239 +runtimeId=5240 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5228 +runtimeId=5229 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5229 +runtimeId=5230 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5230 +runtimeId=5231 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5231 +runtimeId=5232 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5244 +runtimeId=5245 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5245 +runtimeId=5246 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5246 +runtimeId=5247 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5247 +runtimeId=5248 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5224 +runtimeId=5225 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5225 +runtimeId=5226 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5226 +runtimeId=5227 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5227 +runtimeId=5228 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5240 +runtimeId=5241 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5241 +runtimeId=5242 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5242 +runtimeId=5243 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5243 +runtimeId=5244 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5232 +runtimeId=5233 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5233 +runtimeId=5234 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5234 +runtimeId=5235 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5235 +runtimeId=5236 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5248 +runtimeId=5249 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5249 +runtimeId=5250 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5250 +runtimeId=5251 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5251 +runtimeId=5252 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=185 -runtimeId=5252 +runtimeId=5253 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=185 -runtimeId=5253 +runtimeId=5254 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=185 -runtimeId=5254 +runtimeId=5255 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=185 -runtimeId=5255 +runtimeId=5256 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=185 -runtimeId=5256 +runtimeId=5257 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=185 -runtimeId=5257 +runtimeId=5258 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=185 -runtimeId=5258 +runtimeId=5259 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=185 -runtimeId=5259 +runtimeId=5260 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=185 -runtimeId=5260 +runtimeId=5261 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=185 -runtimeId=5261 +runtimeId=5262 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=185 -runtimeId=5262 +runtimeId=5263 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=185 -runtimeId=5263 +runtimeId=5264 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=185 -runtimeId=5264 +runtimeId=5265 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=185 -runtimeId=5265 +runtimeId=5266 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=185 -runtimeId=5266 +runtimeId=5267 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=185 -runtimeId=5267 +runtimeId=5268 minecraft:jungle_pressure_plate;redstone_signal=0 blockId=408 -runtimeId=5268 +runtimeId=5269 minecraft:jungle_pressure_plate;redstone_signal=1 blockId=408 -runtimeId=5269 +runtimeId=5270 minecraft:jungle_pressure_plate;redstone_signal=2 blockId=408 -runtimeId=5270 +runtimeId=5271 minecraft:jungle_pressure_plate;redstone_signal=3 blockId=408 -runtimeId=5271 +runtimeId=5272 minecraft:jungle_pressure_plate;redstone_signal=4 blockId=408 -runtimeId=5272 +runtimeId=5273 minecraft:jungle_pressure_plate;redstone_signal=5 blockId=408 -runtimeId=5273 +runtimeId=5274 minecraft:jungle_pressure_plate;redstone_signal=6 blockId=408 -runtimeId=5274 +runtimeId=5275 minecraft:jungle_pressure_plate;redstone_signal=7 blockId=408 -runtimeId=5275 +runtimeId=5276 minecraft:jungle_pressure_plate;redstone_signal=8 blockId=408 -runtimeId=5276 +runtimeId=5277 minecraft:jungle_pressure_plate;redstone_signal=9 blockId=408 -runtimeId=5277 +runtimeId=5278 minecraft:jungle_pressure_plate;redstone_signal=10 blockId=408 -runtimeId=5278 +runtimeId=5279 minecraft:jungle_pressure_plate;redstone_signal=11 blockId=408 -runtimeId=5279 +runtimeId=5280 minecraft:jungle_pressure_plate;redstone_signal=12 blockId=408 -runtimeId=5280 +runtimeId=5281 minecraft:jungle_pressure_plate;redstone_signal=13 blockId=408 -runtimeId=5281 +runtimeId=5282 minecraft:jungle_pressure_plate;redstone_signal=14 blockId=408 -runtimeId=5282 +runtimeId=5283 minecraft:jungle_pressure_plate;redstone_signal=15 blockId=408 -runtimeId=5283 +runtimeId=5284 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=0 blockId=136 -runtimeId=5284 +runtimeId=5285 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=1 blockId=136 -runtimeId=5285 +runtimeId=5286 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=2 blockId=136 -runtimeId=5286 +runtimeId=5287 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=3 blockId=136 -runtimeId=5287 +runtimeId=5288 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=0 blockId=136 -runtimeId=5288 +runtimeId=5289 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=1 blockId=136 -runtimeId=5289 +runtimeId=5290 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=2 blockId=136 -runtimeId=5290 +runtimeId=5291 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=3 blockId=136 -runtimeId=5291 +runtimeId=5292 minecraft:jungle_standing_sign;ground_sign_direction=0 blockId=443 -runtimeId=5292 +runtimeId=5293 minecraft:jungle_standing_sign;ground_sign_direction=1 blockId=443 -runtimeId=5293 +runtimeId=5294 minecraft:jungle_standing_sign;ground_sign_direction=2 blockId=443 -runtimeId=5294 +runtimeId=5295 minecraft:jungle_standing_sign;ground_sign_direction=3 blockId=443 -runtimeId=5295 +runtimeId=5296 minecraft:jungle_standing_sign;ground_sign_direction=4 blockId=443 -runtimeId=5296 +runtimeId=5297 minecraft:jungle_standing_sign;ground_sign_direction=5 blockId=443 -runtimeId=5297 +runtimeId=5298 minecraft:jungle_standing_sign;ground_sign_direction=6 blockId=443 -runtimeId=5298 +runtimeId=5299 minecraft:jungle_standing_sign;ground_sign_direction=7 blockId=443 -runtimeId=5299 +runtimeId=5300 minecraft:jungle_standing_sign;ground_sign_direction=8 blockId=443 -runtimeId=5300 +runtimeId=5301 minecraft:jungle_standing_sign;ground_sign_direction=9 blockId=443 -runtimeId=5301 +runtimeId=5302 minecraft:jungle_standing_sign;ground_sign_direction=10 blockId=443 -runtimeId=5302 +runtimeId=5303 minecraft:jungle_standing_sign;ground_sign_direction=11 blockId=443 -runtimeId=5303 +runtimeId=5304 minecraft:jungle_standing_sign;ground_sign_direction=12 blockId=443 -runtimeId=5304 +runtimeId=5305 minecraft:jungle_standing_sign;ground_sign_direction=13 blockId=443 -runtimeId=5305 +runtimeId=5306 minecraft:jungle_standing_sign;ground_sign_direction=14 blockId=443 -runtimeId=5306 +runtimeId=5307 minecraft:jungle_standing_sign;ground_sign_direction=15 blockId=443 -runtimeId=5307 +runtimeId=5308 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=403 -runtimeId=5308 +runtimeId=5309 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=403 -runtimeId=5309 +runtimeId=5310 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=403 -runtimeId=5310 +runtimeId=5311 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=403 -runtimeId=5311 +runtimeId=5312 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=403 -runtimeId=5312 +runtimeId=5313 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=403 -runtimeId=5313 +runtimeId=5314 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=403 -runtimeId=5314 +runtimeId=5315 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=403 -runtimeId=5315 +runtimeId=5316 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=403 -runtimeId=5316 +runtimeId=5317 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=403 -runtimeId=5317 +runtimeId=5318 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=403 -runtimeId=5318 +runtimeId=5319 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=403 -runtimeId=5319 +runtimeId=5320 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=403 -runtimeId=5320 +runtimeId=5321 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=403 -runtimeId=5321 +runtimeId=5322 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=403 -runtimeId=5322 +runtimeId=5323 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=403 -runtimeId=5323 +runtimeId=5324 minecraft:jungle_wall_sign;facing_direction=0 blockId=444 -runtimeId=5324 +runtimeId=5325 minecraft:jungle_wall_sign;facing_direction=1 blockId=444 -runtimeId=5325 +runtimeId=5326 minecraft:jungle_wall_sign;facing_direction=2 blockId=444 -runtimeId=5326 +runtimeId=5327 minecraft:jungle_wall_sign;facing_direction=3 blockId=444 -runtimeId=5327 +runtimeId=5328 minecraft:jungle_wall_sign;facing_direction=4 blockId=444 -runtimeId=5328 +runtimeId=5329 minecraft:jungle_wall_sign;facing_direction=5 blockId=444 -runtimeId=5329 +runtimeId=5330 minecraft:kelp;kelp_age=0 blockId=393 -runtimeId=5330 +runtimeId=5331 minecraft:kelp;kelp_age=1 blockId=393 -runtimeId=5331 +runtimeId=5332 minecraft:kelp;kelp_age=2 blockId=393 -runtimeId=5332 +runtimeId=5333 minecraft:kelp;kelp_age=3 blockId=393 -runtimeId=5333 +runtimeId=5334 minecraft:kelp;kelp_age=4 blockId=393 -runtimeId=5334 +runtimeId=5335 minecraft:kelp;kelp_age=5 blockId=393 -runtimeId=5335 +runtimeId=5336 minecraft:kelp;kelp_age=6 blockId=393 -runtimeId=5336 +runtimeId=5337 minecraft:kelp;kelp_age=7 blockId=393 -runtimeId=5337 +runtimeId=5338 minecraft:kelp;kelp_age=8 blockId=393 -runtimeId=5338 +runtimeId=5339 minecraft:kelp;kelp_age=9 blockId=393 -runtimeId=5339 +runtimeId=5340 minecraft:kelp;kelp_age=10 blockId=393 -runtimeId=5340 +runtimeId=5341 minecraft:kelp;kelp_age=11 blockId=393 -runtimeId=5341 +runtimeId=5342 minecraft:kelp;kelp_age=12 blockId=393 -runtimeId=5342 +runtimeId=5343 minecraft:kelp;kelp_age=13 blockId=393 -runtimeId=5343 +runtimeId=5344 minecraft:kelp;kelp_age=14 blockId=393 -runtimeId=5344 +runtimeId=5345 minecraft:kelp;kelp_age=15 blockId=393 -runtimeId=5345 +runtimeId=5346 minecraft:kelp;kelp_age=16 blockId=393 -runtimeId=5346 +runtimeId=5347 minecraft:kelp;kelp_age=17 blockId=393 -runtimeId=5347 +runtimeId=5348 minecraft:kelp;kelp_age=18 blockId=393 -runtimeId=5348 +runtimeId=5349 minecraft:kelp;kelp_age=19 blockId=393 -runtimeId=5349 +runtimeId=5350 minecraft:kelp;kelp_age=20 blockId=393 -runtimeId=5350 +runtimeId=5351 minecraft:kelp;kelp_age=21 blockId=393 -runtimeId=5351 +runtimeId=5352 minecraft:kelp;kelp_age=22 blockId=393 -runtimeId=5352 +runtimeId=5353 minecraft:kelp;kelp_age=23 blockId=393 -runtimeId=5353 +runtimeId=5354 minecraft:kelp;kelp_age=24 blockId=393 -runtimeId=5354 +runtimeId=5355 minecraft:kelp;kelp_age=25 blockId=393 -runtimeId=5355 +runtimeId=5356 minecraft:ladder;facing_direction=0 blockId=65 -runtimeId=5356 +runtimeId=5357 minecraft:ladder;facing_direction=1 blockId=65 -runtimeId=5357 +runtimeId=5358 minecraft:ladder;facing_direction=2 blockId=65 -runtimeId=5358 +runtimeId=5359 minecraft:ladder;facing_direction=3 blockId=65 -runtimeId=5359 +runtimeId=5360 minecraft:ladder;facing_direction=4 blockId=65 -runtimeId=5360 +runtimeId=5361 minecraft:ladder;facing_direction=5 blockId=65 -runtimeId=5361 +runtimeId=5362 minecraft:lantern;hanging=0 blockId=463 -runtimeId=5362 +runtimeId=5363 minecraft:lantern;hanging=1 blockId=463 -runtimeId=5363 +runtimeId=5364 minecraft:lapis_block blockId=22 -runtimeId=5364 +runtimeId=5365 minecraft:lapis_ore blockId=21 -runtimeId=5365 +runtimeId=5366 minecraft:large_amethyst_bud;facing_direction=0 blockId=585 -runtimeId=5366 +runtimeId=5367 minecraft:large_amethyst_bud;facing_direction=1 blockId=585 -runtimeId=5367 +runtimeId=5368 minecraft:large_amethyst_bud;facing_direction=2 blockId=585 -runtimeId=5368 +runtimeId=5369 minecraft:large_amethyst_bud;facing_direction=3 blockId=585 -runtimeId=5369 +runtimeId=5370 minecraft:large_amethyst_bud;facing_direction=4 blockId=585 -runtimeId=5370 +runtimeId=5371 minecraft:large_amethyst_bud;facing_direction=5 blockId=585 -runtimeId=5371 +runtimeId=5372 minecraft:lava;liquid_depth=0 blockId=11 -runtimeId=5372 +runtimeId=5373 minecraft:lava;liquid_depth=1 blockId=11 -runtimeId=5373 +runtimeId=5374 minecraft:lava;liquid_depth=2 blockId=11 -runtimeId=5374 +runtimeId=5375 minecraft:lava;liquid_depth=3 blockId=11 -runtimeId=5375 +runtimeId=5376 minecraft:lava;liquid_depth=4 blockId=11 -runtimeId=5376 +runtimeId=5377 minecraft:lava;liquid_depth=5 blockId=11 -runtimeId=5377 +runtimeId=5378 minecraft:lava;liquid_depth=6 blockId=11 -runtimeId=5378 +runtimeId=5379 minecraft:lava;liquid_depth=7 blockId=11 -runtimeId=5379 +runtimeId=5380 minecraft:lava;liquid_depth=8 blockId=11 -runtimeId=5380 +runtimeId=5381 minecraft:lava;liquid_depth=9 blockId=11 -runtimeId=5381 +runtimeId=5382 minecraft:lava;liquid_depth=10 blockId=11 -runtimeId=5382 +runtimeId=5383 minecraft:lava;liquid_depth=11 blockId=11 -runtimeId=5383 +runtimeId=5384 minecraft:lava;liquid_depth=12 blockId=11 -runtimeId=5384 +runtimeId=5385 minecraft:lava;liquid_depth=13 blockId=11 -runtimeId=5385 +runtimeId=5386 minecraft:lava;liquid_depth=14 blockId=11 -runtimeId=5386 +runtimeId=5387 minecraft:lava;liquid_depth=15 blockId=11 -runtimeId=5387 +runtimeId=5388 minecraft:lava_cauldron;fill_level=0;cauldron_liquid=lava blockId=465 -runtimeId=5395 +runtimeId=5396 minecraft:lava_cauldron;fill_level=0;cauldron_liquid=powder_snow blockId=465 -runtimeId=5402 +runtimeId=5403 minecraft:lava_cauldron;fill_level=0;cauldron_liquid=water blockId=465 -runtimeId=5388 +runtimeId=5389 minecraft:lava_cauldron;fill_level=1;cauldron_liquid=lava blockId=465 -runtimeId=5396 +runtimeId=5397 minecraft:lava_cauldron;fill_level=1;cauldron_liquid=powder_snow blockId=465 -runtimeId=5403 +runtimeId=5404 minecraft:lava_cauldron;fill_level=1;cauldron_liquid=water blockId=465 -runtimeId=5389 +runtimeId=5390 minecraft:lava_cauldron;fill_level=2;cauldron_liquid=lava blockId=465 -runtimeId=5397 +runtimeId=5398 minecraft:lava_cauldron;fill_level=2;cauldron_liquid=powder_snow blockId=465 -runtimeId=5404 +runtimeId=5405 minecraft:lava_cauldron;fill_level=2;cauldron_liquid=water blockId=465 -runtimeId=5390 +runtimeId=5391 minecraft:lava_cauldron;fill_level=3;cauldron_liquid=lava blockId=465 -runtimeId=5398 +runtimeId=5399 minecraft:lava_cauldron;fill_level=3;cauldron_liquid=powder_snow blockId=465 -runtimeId=5405 +runtimeId=5406 minecraft:lava_cauldron;fill_level=3;cauldron_liquid=water blockId=465 -runtimeId=5391 +runtimeId=5392 minecraft:lava_cauldron;fill_level=4;cauldron_liquid=lava blockId=465 -runtimeId=5399 +runtimeId=5400 minecraft:lava_cauldron;fill_level=4;cauldron_liquid=powder_snow blockId=465 -runtimeId=5406 +runtimeId=5407 minecraft:lava_cauldron;fill_level=4;cauldron_liquid=water blockId=465 -runtimeId=5392 +runtimeId=5393 minecraft:lava_cauldron;fill_level=5;cauldron_liquid=lava blockId=465 -runtimeId=5400 +runtimeId=5401 minecraft:lava_cauldron;fill_level=5;cauldron_liquid=powder_snow blockId=465 -runtimeId=5407 +runtimeId=5408 minecraft:lava_cauldron;fill_level=5;cauldron_liquid=water blockId=465 -runtimeId=5393 +runtimeId=5394 minecraft:lava_cauldron;fill_level=6;cauldron_liquid=lava blockId=465 -runtimeId=5401 +runtimeId=5402 minecraft:lava_cauldron;fill_level=6;cauldron_liquid=powder_snow blockId=465 -runtimeId=5408 +runtimeId=5409 minecraft:lava_cauldron;fill_level=6;cauldron_liquid=water blockId=465 -runtimeId=5394 +runtimeId=5395 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=birch blockId=18 -runtimeId=5411 +runtimeId=5412 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=jungle blockId=18 -runtimeId=5412 +runtimeId=5413 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=oak blockId=18 -runtimeId=5409 +runtimeId=5410 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=spruce blockId=18 -runtimeId=5410 +runtimeId=5411 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=birch blockId=18 -runtimeId=5415 +runtimeId=5416 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=jungle blockId=18 -runtimeId=5416 +runtimeId=5417 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=oak blockId=18 -runtimeId=5413 +runtimeId=5414 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=spruce blockId=18 -runtimeId=5414 +runtimeId=5415 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=birch blockId=18 -runtimeId=5419 +runtimeId=5420 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=jungle blockId=18 -runtimeId=5420 +runtimeId=5421 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=oak blockId=18 -runtimeId=5417 +runtimeId=5418 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=spruce blockId=18 -runtimeId=5418 +runtimeId=5419 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=birch blockId=18 -runtimeId=5423 +runtimeId=5424 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=jungle blockId=18 -runtimeId=5424 +runtimeId=5425 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=oak blockId=18 -runtimeId=5421 +runtimeId=5422 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=spruce blockId=18 -runtimeId=5422 +runtimeId=5423 minecraft:leaves2;persistent_bit=0;update_bit=0;new_leaf_type=acacia blockId=161 -runtimeId=5425 +runtimeId=5426 minecraft:leaves2;persistent_bit=0;update_bit=0;new_leaf_type=dark_oak blockId=161 -runtimeId=5426 +runtimeId=5427 minecraft:leaves2;persistent_bit=0;update_bit=1;new_leaf_type=acacia blockId=161 -runtimeId=5427 +runtimeId=5428 minecraft:leaves2;persistent_bit=0;update_bit=1;new_leaf_type=dark_oak blockId=161 -runtimeId=5428 +runtimeId=5429 minecraft:leaves2;persistent_bit=1;update_bit=0;new_leaf_type=acacia blockId=161 -runtimeId=5429 +runtimeId=5430 minecraft:leaves2;persistent_bit=1;update_bit=0;new_leaf_type=dark_oak blockId=161 -runtimeId=5430 +runtimeId=5431 minecraft:leaves2;persistent_bit=1;update_bit=1;new_leaf_type=acacia blockId=161 -runtimeId=5431 +runtimeId=5432 minecraft:leaves2;persistent_bit=1;update_bit=1;new_leaf_type=dark_oak blockId=161 -runtimeId=5432 +runtimeId=5433 minecraft:lectern;powered_bit=0;direction=0 blockId=449 -runtimeId=5433 +runtimeId=5434 minecraft:lectern;powered_bit=0;direction=1 blockId=449 -runtimeId=5434 +runtimeId=5435 minecraft:lectern;powered_bit=0;direction=2 blockId=449 -runtimeId=5435 +runtimeId=5436 minecraft:lectern;powered_bit=0;direction=3 blockId=449 -runtimeId=5436 +runtimeId=5437 minecraft:lectern;powered_bit=1;direction=0 blockId=449 -runtimeId=5437 +runtimeId=5438 minecraft:lectern;powered_bit=1;direction=1 blockId=449 -runtimeId=5438 +runtimeId=5439 minecraft:lectern;powered_bit=1;direction=2 blockId=449 -runtimeId=5439 +runtimeId=5440 minecraft:lectern;powered_bit=1;direction=3 blockId=449 -runtimeId=5440 +runtimeId=5441 minecraft:lever;open_bit=0;lever_direction=down_east_west blockId=69 -runtimeId=5441 +runtimeId=5442 minecraft:lever;open_bit=0;lever_direction=down_north_south blockId=69 -runtimeId=5448 +runtimeId=5449 minecraft:lever;open_bit=0;lever_direction=east blockId=69 -runtimeId=5442 +runtimeId=5443 minecraft:lever;open_bit=0;lever_direction=north blockId=69 -runtimeId=5445 +runtimeId=5446 minecraft:lever;open_bit=0;lever_direction=south blockId=69 -runtimeId=5444 +runtimeId=5445 minecraft:lever;open_bit=0;lever_direction=up_east_west blockId=69 -runtimeId=5447 +runtimeId=5448 minecraft:lever;open_bit=0;lever_direction=up_north_south blockId=69 -runtimeId=5446 +runtimeId=5447 minecraft:lever;open_bit=0;lever_direction=west blockId=69 -runtimeId=5443 +runtimeId=5444 minecraft:lever;open_bit=1;lever_direction=down_east_west blockId=69 -runtimeId=5449 +runtimeId=5450 minecraft:lever;open_bit=1;lever_direction=down_north_south blockId=69 -runtimeId=5456 +runtimeId=5457 minecraft:lever;open_bit=1;lever_direction=east blockId=69 -runtimeId=5450 +runtimeId=5451 minecraft:lever;open_bit=1;lever_direction=north blockId=69 -runtimeId=5453 +runtimeId=5454 minecraft:lever;open_bit=1;lever_direction=south blockId=69 -runtimeId=5452 +runtimeId=5453 minecraft:lever;open_bit=1;lever_direction=up_east_west blockId=69 -runtimeId=5455 +runtimeId=5456 minecraft:lever;open_bit=1;lever_direction=up_north_south blockId=69 -runtimeId=5454 +runtimeId=5455 minecraft:lever;open_bit=1;lever_direction=west blockId=69 -runtimeId=5451 +runtimeId=5452 minecraft:light_block;block_light_level=0 blockId=470 -runtimeId=5457 +runtimeId=5458 minecraft:light_block;block_light_level=1 blockId=470 -runtimeId=5458 +runtimeId=5459 minecraft:light_block;block_light_level=2 blockId=470 -runtimeId=5459 +runtimeId=5460 minecraft:light_block;block_light_level=3 blockId=470 -runtimeId=5460 +runtimeId=5461 minecraft:light_block;block_light_level=4 blockId=470 -runtimeId=5461 +runtimeId=5462 minecraft:light_block;block_light_level=5 blockId=470 -runtimeId=5462 +runtimeId=5463 minecraft:light_block;block_light_level=6 blockId=470 -runtimeId=5463 +runtimeId=5464 minecraft:light_block;block_light_level=7 blockId=470 -runtimeId=5464 +runtimeId=5465 minecraft:light_block;block_light_level=8 blockId=470 -runtimeId=5465 +runtimeId=5466 minecraft:light_block;block_light_level=9 blockId=470 -runtimeId=5466 +runtimeId=5467 minecraft:light_block;block_light_level=10 blockId=470 -runtimeId=5467 +runtimeId=5468 minecraft:light_block;block_light_level=11 blockId=470 -runtimeId=5468 +runtimeId=5469 minecraft:light_block;block_light_level=12 blockId=470 -runtimeId=5469 +runtimeId=5470 minecraft:light_block;block_light_level=13 blockId=470 -runtimeId=5470 +runtimeId=5471 minecraft:light_block;block_light_level=14 blockId=470 -runtimeId=5471 +runtimeId=5472 minecraft:light_block;block_light_level=15 blockId=470 -runtimeId=5472 +runtimeId=5473 minecraft:light_blue_candle;lit=0;candles=0 blockId=671 -runtimeId=5473 +runtimeId=5474 minecraft:light_blue_candle;lit=0;candles=1 blockId=671 -runtimeId=5474 +runtimeId=5475 minecraft:light_blue_candle;lit=0;candles=2 blockId=671 -runtimeId=5475 +runtimeId=5476 minecraft:light_blue_candle;lit=0;candles=3 blockId=671 -runtimeId=5476 +runtimeId=5477 minecraft:light_blue_candle;lit=1;candles=0 blockId=671 -runtimeId=5477 +runtimeId=5478 minecraft:light_blue_candle;lit=1;candles=1 blockId=671 -runtimeId=5478 +runtimeId=5479 minecraft:light_blue_candle;lit=1;candles=2 blockId=671 -runtimeId=5479 +runtimeId=5480 minecraft:light_blue_candle;lit=1;candles=3 blockId=671 -runtimeId=5480 +runtimeId=5481 minecraft:light_blue_candle_cake;lit=0 blockId=688 -runtimeId=5481 +runtimeId=5482 minecraft:light_blue_candle_cake;lit=1 blockId=688 -runtimeId=5482 +runtimeId=5483 minecraft:light_blue_glazed_terracotta;facing_direction=0 blockId=223 -runtimeId=5483 +runtimeId=5484 minecraft:light_blue_glazed_terracotta;facing_direction=1 blockId=223 -runtimeId=5484 +runtimeId=5485 minecraft:light_blue_glazed_terracotta;facing_direction=2 blockId=223 -runtimeId=5485 +runtimeId=5486 minecraft:light_blue_glazed_terracotta;facing_direction=3 blockId=223 -runtimeId=5486 +runtimeId=5487 minecraft:light_blue_glazed_terracotta;facing_direction=4 blockId=223 -runtimeId=5487 +runtimeId=5488 minecraft:light_blue_glazed_terracotta;facing_direction=5 blockId=223 -runtimeId=5488 +runtimeId=5489 minecraft:light_gray_candle;lit=0;candles=0 blockId=676 -runtimeId=5489 +runtimeId=5490 minecraft:light_gray_candle;lit=0;candles=1 blockId=676 -runtimeId=5490 +runtimeId=5491 minecraft:light_gray_candle;lit=0;candles=2 blockId=676 -runtimeId=5491 +runtimeId=5492 minecraft:light_gray_candle;lit=0;candles=3 blockId=676 -runtimeId=5492 +runtimeId=5493 minecraft:light_gray_candle;lit=1;candles=0 blockId=676 -runtimeId=5493 +runtimeId=5494 minecraft:light_gray_candle;lit=1;candles=1 blockId=676 -runtimeId=5494 +runtimeId=5495 minecraft:light_gray_candle;lit=1;candles=2 blockId=676 -runtimeId=5495 +runtimeId=5496 minecraft:light_gray_candle;lit=1;candles=3 blockId=676 -runtimeId=5496 +runtimeId=5497 minecraft:light_gray_candle_cake;lit=0 blockId=693 -runtimeId=5497 +runtimeId=5498 minecraft:light_gray_candle_cake;lit=1 blockId=693 -runtimeId=5498 +runtimeId=5499 minecraft:light_weighted_pressure_plate;redstone_signal=0 blockId=147 -runtimeId=5499 +runtimeId=5500 minecraft:light_weighted_pressure_plate;redstone_signal=1 blockId=147 -runtimeId=5500 +runtimeId=5501 minecraft:light_weighted_pressure_plate;redstone_signal=2 blockId=147 -runtimeId=5501 +runtimeId=5502 minecraft:light_weighted_pressure_plate;redstone_signal=3 blockId=147 -runtimeId=5502 +runtimeId=5503 minecraft:light_weighted_pressure_plate;redstone_signal=4 blockId=147 -runtimeId=5503 +runtimeId=5504 minecraft:light_weighted_pressure_plate;redstone_signal=5 blockId=147 -runtimeId=5504 +runtimeId=5505 minecraft:light_weighted_pressure_plate;redstone_signal=6 blockId=147 -runtimeId=5505 +runtimeId=5506 minecraft:light_weighted_pressure_plate;redstone_signal=7 blockId=147 -runtimeId=5506 +runtimeId=5507 minecraft:light_weighted_pressure_plate;redstone_signal=8 blockId=147 -runtimeId=5507 +runtimeId=5508 minecraft:light_weighted_pressure_plate;redstone_signal=9 blockId=147 -runtimeId=5508 +runtimeId=5509 minecraft:light_weighted_pressure_plate;redstone_signal=10 blockId=147 -runtimeId=5509 +runtimeId=5510 minecraft:light_weighted_pressure_plate;redstone_signal=11 blockId=147 -runtimeId=5510 +runtimeId=5511 minecraft:light_weighted_pressure_plate;redstone_signal=12 blockId=147 -runtimeId=5511 +runtimeId=5512 minecraft:light_weighted_pressure_plate;redstone_signal=13 blockId=147 -runtimeId=5512 +runtimeId=5513 minecraft:light_weighted_pressure_plate;redstone_signal=14 blockId=147 -runtimeId=5513 +runtimeId=5514 minecraft:light_weighted_pressure_plate;redstone_signal=15 blockId=147 -runtimeId=5514 +runtimeId=5515 minecraft:lightning_rod;facing_direction=0 blockId=567 -runtimeId=5515 +runtimeId=5516 minecraft:lightning_rod;facing_direction=1 blockId=567 -runtimeId=5516 +runtimeId=5517 minecraft:lightning_rod;facing_direction=2 blockId=567 -runtimeId=5517 +runtimeId=5518 minecraft:lightning_rod;facing_direction=3 blockId=567 -runtimeId=5518 +runtimeId=5519 minecraft:lightning_rod;facing_direction=4 blockId=567 -runtimeId=5519 +runtimeId=5520 minecraft:lightning_rod;facing_direction=5 blockId=567 -runtimeId=5520 +runtimeId=5521 minecraft:lime_candle;lit=0;candles=0 blockId=673 -runtimeId=5521 +runtimeId=5522 minecraft:lime_candle;lit=0;candles=1 blockId=673 -runtimeId=5522 +runtimeId=5523 minecraft:lime_candle;lit=0;candles=2 blockId=673 -runtimeId=5523 +runtimeId=5524 minecraft:lime_candle;lit=0;candles=3 blockId=673 -runtimeId=5524 +runtimeId=5525 minecraft:lime_candle;lit=1;candles=0 blockId=673 -runtimeId=5525 +runtimeId=5526 minecraft:lime_candle;lit=1;candles=1 blockId=673 -runtimeId=5526 +runtimeId=5527 minecraft:lime_candle;lit=1;candles=2 blockId=673 -runtimeId=5527 +runtimeId=5528 minecraft:lime_candle;lit=1;candles=3 blockId=673 -runtimeId=5528 +runtimeId=5529 minecraft:lime_candle_cake;lit=0 blockId=690 -runtimeId=5529 +runtimeId=5530 minecraft:lime_candle_cake;lit=1 blockId=690 -runtimeId=5530 +runtimeId=5531 minecraft:lime_glazed_terracotta;facing_direction=0 blockId=225 -runtimeId=5531 +runtimeId=5532 minecraft:lime_glazed_terracotta;facing_direction=1 blockId=225 -runtimeId=5532 +runtimeId=5533 minecraft:lime_glazed_terracotta;facing_direction=2 blockId=225 -runtimeId=5533 +runtimeId=5534 minecraft:lime_glazed_terracotta;facing_direction=3 blockId=225 -runtimeId=5534 +runtimeId=5535 minecraft:lime_glazed_terracotta;facing_direction=4 blockId=225 -runtimeId=5535 +runtimeId=5536 minecraft:lime_glazed_terracotta;facing_direction=5 blockId=225 -runtimeId=5536 +runtimeId=5537 minecraft:lit_blast_furnace;facing_direction=0 blockId=469 -runtimeId=5537 +runtimeId=5538 minecraft:lit_blast_furnace;facing_direction=1 blockId=469 -runtimeId=5538 +runtimeId=5539 minecraft:lit_blast_furnace;facing_direction=2 blockId=469 -runtimeId=5539 +runtimeId=5540 minecraft:lit_blast_furnace;facing_direction=3 blockId=469 -runtimeId=5540 +runtimeId=5541 minecraft:lit_blast_furnace;facing_direction=4 blockId=469 -runtimeId=5541 +runtimeId=5542 minecraft:lit_blast_furnace;facing_direction=5 blockId=469 -runtimeId=5542 +runtimeId=5543 minecraft:lit_deepslate_redstone_ore blockId=659 -runtimeId=5543 +runtimeId=5544 minecraft:lit_furnace;facing_direction=0 blockId=62 -runtimeId=5544 +runtimeId=5545 minecraft:lit_furnace;facing_direction=1 blockId=62 -runtimeId=5545 +runtimeId=5546 minecraft:lit_furnace;facing_direction=2 blockId=62 -runtimeId=5546 +runtimeId=5547 minecraft:lit_furnace;facing_direction=3 blockId=62 -runtimeId=5547 +runtimeId=5548 minecraft:lit_furnace;facing_direction=4 blockId=62 -runtimeId=5548 +runtimeId=5549 minecraft:lit_furnace;facing_direction=5 blockId=62 -runtimeId=5549 +runtimeId=5550 minecraft:lit_pumpkin;direction=0 blockId=91 -runtimeId=5550 +runtimeId=5551 minecraft:lit_pumpkin;direction=1 blockId=91 -runtimeId=5551 +runtimeId=5552 minecraft:lit_pumpkin;direction=2 blockId=91 -runtimeId=5552 +runtimeId=5553 minecraft:lit_pumpkin;direction=3 blockId=91 -runtimeId=5553 +runtimeId=5554 minecraft:lit_redstone_lamp blockId=124 -runtimeId=5554 +runtimeId=5555 minecraft:lit_redstone_ore blockId=74 -runtimeId=5555 +runtimeId=5556 minecraft:lit_smoker;facing_direction=0 blockId=454 -runtimeId=5556 +runtimeId=5557 minecraft:lit_smoker;facing_direction=1 blockId=454 -runtimeId=5557 +runtimeId=5558 minecraft:lit_smoker;facing_direction=2 blockId=454 -runtimeId=5558 +runtimeId=5559 minecraft:lit_smoker;facing_direction=3 blockId=454 -runtimeId=5559 +runtimeId=5560 minecraft:lit_smoker;facing_direction=4 blockId=454 -runtimeId=5560 +runtimeId=5561 minecraft:lit_smoker;facing_direction=5 blockId=454 -runtimeId=5561 +runtimeId=5562 minecraft:lodestone blockId=477 -runtimeId=5562 - -minecraft:log2;new_log_type=acacia;pillar_axis=x -blockId=162 -runtimeId=5577 - -minecraft:log2;new_log_type=acacia;pillar_axis=y -blockId=162 -runtimeId=5575 - -minecraft:log2;new_log_type=acacia;pillar_axis=z -blockId=162 -runtimeId=5579 - -minecraft:log2;new_log_type=dark_oak;pillar_axis=x -blockId=162 -runtimeId=5578 - -minecraft:log2;new_log_type=dark_oak;pillar_axis=y -blockId=162 -runtimeId=5576 - -minecraft:log2;new_log_type=dark_oak;pillar_axis=z -blockId=162 -runtimeId=5580 - -minecraft:log;old_log_type=birch;pillar_axis=x -blockId=17 -runtimeId=5569 +runtimeId=5563 minecraft:log;old_log_type=birch;pillar_axis=y blockId=17 -runtimeId=5565 - -minecraft:log;old_log_type=birch;pillar_axis=z -blockId=17 -runtimeId=5573 - -minecraft:log;old_log_type=jungle;pillar_axis=x -blockId=17 -runtimeId=5570 - -minecraft:log;old_log_type=jungle;pillar_axis=y -blockId=17 -runtimeId=5566 - -minecraft:log;old_log_type=jungle;pillar_axis=z -blockId=17 runtimeId=5574 -minecraft:log;old_log_type=oak;pillar_axis=x +minecraft:log;old_log_type=jungle;pillar_axis=y blockId=17 -runtimeId=5567 +runtimeId=5575 minecraft:log;old_log_type=oak;pillar_axis=y blockId=17 -runtimeId=5563 - -minecraft:log;old_log_type=oak;pillar_axis=z -blockId=17 -runtimeId=5571 - -minecraft:log;old_log_type=spruce;pillar_axis=x -blockId=17 -runtimeId=5568 +runtimeId=5572 minecraft:log;old_log_type=spruce;pillar_axis=y blockId=17 -runtimeId=5564 +runtimeId=5573 -minecraft:log;old_log_type=spruce;pillar_axis=z -blockId=17 -runtimeId=5572 +minecraft:log2;new_log_type=acacia;pillar_axis=y +blockId=162 +runtimeId=5580 + +minecraft:log2;new_log_type=dark_oak;pillar_axis=y +blockId=162 +runtimeId=5581 minecraft:loom;direction=0 blockId=459 -runtimeId=5581 +runtimeId=5582 minecraft:loom;direction=1 blockId=459 -runtimeId=5582 +runtimeId=5583 minecraft:loom;direction=2 blockId=459 -runtimeId=5583 +runtimeId=5584 minecraft:loom;direction=3 blockId=459 -runtimeId=5584 +runtimeId=5585 minecraft:magenta_candle;lit=0;candles=0 blockId=670 -runtimeId=5585 +runtimeId=5586 minecraft:magenta_candle;lit=0;candles=1 blockId=670 -runtimeId=5586 +runtimeId=5587 minecraft:magenta_candle;lit=0;candles=2 blockId=670 -runtimeId=5587 +runtimeId=5588 minecraft:magenta_candle;lit=0;candles=3 blockId=670 -runtimeId=5588 +runtimeId=5589 minecraft:magenta_candle;lit=1;candles=0 blockId=670 -runtimeId=5589 +runtimeId=5590 minecraft:magenta_candle;lit=1;candles=1 blockId=670 -runtimeId=5590 +runtimeId=5591 minecraft:magenta_candle;lit=1;candles=2 blockId=670 -runtimeId=5591 +runtimeId=5592 minecraft:magenta_candle;lit=1;candles=3 blockId=670 -runtimeId=5592 +runtimeId=5593 minecraft:magenta_candle_cake;lit=0 blockId=687 -runtimeId=5593 +runtimeId=5594 minecraft:magenta_candle_cake;lit=1 blockId=687 -runtimeId=5594 +runtimeId=5595 minecraft:magenta_glazed_terracotta;facing_direction=0 blockId=222 -runtimeId=5595 +runtimeId=5596 minecraft:magenta_glazed_terracotta;facing_direction=1 blockId=222 -runtimeId=5596 +runtimeId=5597 minecraft:magenta_glazed_terracotta;facing_direction=2 blockId=222 -runtimeId=5597 +runtimeId=5598 minecraft:magenta_glazed_terracotta;facing_direction=3 blockId=222 -runtimeId=5598 +runtimeId=5599 minecraft:magenta_glazed_terracotta;facing_direction=4 blockId=222 -runtimeId=5599 +runtimeId=5600 minecraft:magenta_glazed_terracotta;facing_direction=5 blockId=222 -runtimeId=5600 +runtimeId=5601 minecraft:magma blockId=213 -runtimeId=5601 +runtimeId=5602 minecraft:medium_amethyst_bud;facing_direction=0 blockId=586 -runtimeId=5602 +runtimeId=5603 minecraft:medium_amethyst_bud;facing_direction=1 blockId=586 -runtimeId=5603 +runtimeId=5604 minecraft:medium_amethyst_bud;facing_direction=2 blockId=586 -runtimeId=5604 +runtimeId=5605 minecraft:medium_amethyst_bud;facing_direction=3 blockId=586 -runtimeId=5605 +runtimeId=5606 minecraft:medium_amethyst_bud;facing_direction=4 blockId=586 -runtimeId=5606 +runtimeId=5607 minecraft:medium_amethyst_bud;facing_direction=5 blockId=586 -runtimeId=5607 +runtimeId=5608 minecraft:melon_block blockId=103 -runtimeId=5608 +runtimeId=5609 minecraft:melon_stem;facing_direction=0;growth=0 blockId=105 -runtimeId=5609 +runtimeId=5610 minecraft:melon_stem;facing_direction=0;growth=1 blockId=105 -runtimeId=5610 +runtimeId=5611 minecraft:melon_stem;facing_direction=0;growth=2 blockId=105 -runtimeId=5611 +runtimeId=5612 minecraft:melon_stem;facing_direction=0;growth=3 blockId=105 -runtimeId=5612 +runtimeId=5613 minecraft:melon_stem;facing_direction=0;growth=4 blockId=105 -runtimeId=5613 +runtimeId=5614 minecraft:melon_stem;facing_direction=0;growth=5 blockId=105 -runtimeId=5614 +runtimeId=5615 minecraft:melon_stem;facing_direction=0;growth=6 blockId=105 -runtimeId=5615 +runtimeId=5616 minecraft:melon_stem;facing_direction=0;growth=7 blockId=105 -runtimeId=5616 +runtimeId=5617 minecraft:melon_stem;facing_direction=1;growth=0 blockId=105 -runtimeId=5617 +runtimeId=5618 minecraft:melon_stem;facing_direction=1;growth=1 blockId=105 -runtimeId=5618 +runtimeId=5619 minecraft:melon_stem;facing_direction=1;growth=2 blockId=105 -runtimeId=5619 +runtimeId=5620 minecraft:melon_stem;facing_direction=1;growth=3 blockId=105 -runtimeId=5620 +runtimeId=5621 minecraft:melon_stem;facing_direction=1;growth=4 blockId=105 -runtimeId=5621 +runtimeId=5622 minecraft:melon_stem;facing_direction=1;growth=5 blockId=105 -runtimeId=5622 +runtimeId=5623 minecraft:melon_stem;facing_direction=1;growth=6 blockId=105 -runtimeId=5623 +runtimeId=5624 minecraft:melon_stem;facing_direction=1;growth=7 blockId=105 -runtimeId=5624 +runtimeId=5625 minecraft:melon_stem;facing_direction=2;growth=0 blockId=105 -runtimeId=5625 +runtimeId=5626 minecraft:melon_stem;facing_direction=2;growth=1 blockId=105 -runtimeId=5626 +runtimeId=5627 minecraft:melon_stem;facing_direction=2;growth=2 blockId=105 -runtimeId=5627 +runtimeId=5628 minecraft:melon_stem;facing_direction=2;growth=3 blockId=105 -runtimeId=5628 +runtimeId=5629 minecraft:melon_stem;facing_direction=2;growth=4 blockId=105 -runtimeId=5629 +runtimeId=5630 minecraft:melon_stem;facing_direction=2;growth=5 blockId=105 -runtimeId=5630 +runtimeId=5631 minecraft:melon_stem;facing_direction=2;growth=6 blockId=105 -runtimeId=5631 +runtimeId=5632 minecraft:melon_stem;facing_direction=2;growth=7 blockId=105 -runtimeId=5632 +runtimeId=5633 minecraft:melon_stem;facing_direction=3;growth=0 blockId=105 -runtimeId=5633 +runtimeId=5634 minecraft:melon_stem;facing_direction=3;growth=1 blockId=105 -runtimeId=5634 +runtimeId=5635 minecraft:melon_stem;facing_direction=3;growth=2 blockId=105 -runtimeId=5635 +runtimeId=5636 minecraft:melon_stem;facing_direction=3;growth=3 blockId=105 -runtimeId=5636 +runtimeId=5637 minecraft:melon_stem;facing_direction=3;growth=4 blockId=105 -runtimeId=5637 +runtimeId=5638 minecraft:melon_stem;facing_direction=3;growth=5 blockId=105 -runtimeId=5638 +runtimeId=5639 minecraft:melon_stem;facing_direction=3;growth=6 blockId=105 -runtimeId=5639 +runtimeId=5640 minecraft:melon_stem;facing_direction=3;growth=7 blockId=105 -runtimeId=5640 +runtimeId=5641 minecraft:melon_stem;facing_direction=4;growth=0 blockId=105 -runtimeId=5641 +runtimeId=5642 minecraft:melon_stem;facing_direction=4;growth=1 blockId=105 -runtimeId=5642 +runtimeId=5643 minecraft:melon_stem;facing_direction=4;growth=2 blockId=105 -runtimeId=5643 +runtimeId=5644 minecraft:melon_stem;facing_direction=4;growth=3 blockId=105 -runtimeId=5644 +runtimeId=5645 minecraft:melon_stem;facing_direction=4;growth=4 blockId=105 -runtimeId=5645 +runtimeId=5646 minecraft:melon_stem;facing_direction=4;growth=5 blockId=105 -runtimeId=5646 +runtimeId=5647 minecraft:melon_stem;facing_direction=4;growth=6 blockId=105 -runtimeId=5647 +runtimeId=5648 minecraft:melon_stem;facing_direction=4;growth=7 blockId=105 -runtimeId=5648 +runtimeId=5649 minecraft:melon_stem;facing_direction=5;growth=0 blockId=105 -runtimeId=5649 +runtimeId=5650 minecraft:melon_stem;facing_direction=5;growth=1 blockId=105 -runtimeId=5650 +runtimeId=5651 minecraft:melon_stem;facing_direction=5;growth=2 blockId=105 -runtimeId=5651 +runtimeId=5652 minecraft:melon_stem;facing_direction=5;growth=3 blockId=105 -runtimeId=5652 +runtimeId=5653 minecraft:melon_stem;facing_direction=5;growth=4 blockId=105 -runtimeId=5653 +runtimeId=5654 minecraft:melon_stem;facing_direction=5;growth=5 blockId=105 -runtimeId=5654 +runtimeId=5655 minecraft:melon_stem;facing_direction=5;growth=6 blockId=105 -runtimeId=5655 +runtimeId=5656 minecraft:melon_stem;facing_direction=5;growth=7 blockId=105 -runtimeId=5656 +runtimeId=5657 minecraft:mob_spawner blockId=52 -runtimeId=5657 +runtimeId=5658 minecraft:monster_egg;monster_egg_stone_type=chiseled_stone_brick blockId=97 -runtimeId=5663 +runtimeId=5664 minecraft:monster_egg;monster_egg_stone_type=cobblestone blockId=97 -runtimeId=5659 +runtimeId=5660 minecraft:monster_egg;monster_egg_stone_type=cracked_stone_brick blockId=97 -runtimeId=5662 +runtimeId=5663 minecraft:monster_egg;monster_egg_stone_type=mossy_stone_brick blockId=97 -runtimeId=5661 +runtimeId=5662 minecraft:monster_egg;monster_egg_stone_type=stone blockId=97 -runtimeId=5658 +runtimeId=5659 minecraft:monster_egg;monster_egg_stone_type=stone_brick blockId=97 -runtimeId=5660 +runtimeId=5661 minecraft:moss_block blockId=575 -runtimeId=5664 +runtimeId=5665 minecraft:moss_carpet blockId=590 -runtimeId=5665 +runtimeId=5666 minecraft:mossy_cobblestone blockId=48 -runtimeId=5666 +runtimeId=5667 minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=434 -runtimeId=5667 +runtimeId=5668 minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=434 -runtimeId=5668 +runtimeId=5669 minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=434 -runtimeId=5669 +runtimeId=5670 minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=434 -runtimeId=5670 +runtimeId=5671 minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=434 -runtimeId=5671 +runtimeId=5672 minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=434 -runtimeId=5672 +runtimeId=5673 minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=434 -runtimeId=5673 +runtimeId=5674 minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=434 -runtimeId=5674 +runtimeId=5675 minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=430 -runtimeId=5675 +runtimeId=5676 minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=430 -runtimeId=5676 +runtimeId=5677 minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=430 -runtimeId=5677 +runtimeId=5678 minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=430 -runtimeId=5678 +runtimeId=5679 minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=430 -runtimeId=5679 +runtimeId=5680 minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=430 -runtimeId=5680 +runtimeId=5681 minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=430 -runtimeId=5681 +runtimeId=5682 minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=430 -runtimeId=5682 +runtimeId=5683 minecraft:movingBlock blockId=250 -runtimeId=5683 +runtimeId=5684 minecraft:mycelium blockId=110 -runtimeId=5684 +runtimeId=5685 + +minecraft:mysterious_frame +blockId=-1 +runtimeId=5686 + +minecraft:mysterious_frame_slot +blockId=-1 +runtimeId=5687 minecraft:nether_brick blockId=112 -runtimeId=5685 +runtimeId=5688 minecraft:nether_brick_fence blockId=113 -runtimeId=5686 +runtimeId=5689 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=114 -runtimeId=5687 +runtimeId=5690 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=114 -runtimeId=5688 +runtimeId=5691 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=114 -runtimeId=5689 +runtimeId=5692 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=114 -runtimeId=5690 +runtimeId=5693 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=114 -runtimeId=5691 +runtimeId=5694 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=114 -runtimeId=5692 +runtimeId=5695 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=114 -runtimeId=5693 +runtimeId=5696 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=114 -runtimeId=5694 +runtimeId=5697 minecraft:nether_gold_ore blockId=543 -runtimeId=5695 +runtimeId=5698 minecraft:nether_sprouts blockId=493 -runtimeId=5696 +runtimeId=5699 minecraft:nether_wart;age=0 blockId=115 -runtimeId=5697 +runtimeId=5700 minecraft:nether_wart;age=1 blockId=115 -runtimeId=5698 +runtimeId=5701 minecraft:nether_wart;age=2 blockId=115 -runtimeId=5699 +runtimeId=5702 minecraft:nether_wart;age=3 blockId=115 -runtimeId=5700 +runtimeId=5703 minecraft:nether_wart_block blockId=214 -runtimeId=5701 +runtimeId=5704 minecraft:netherite_block blockId=525 -runtimeId=5702 +runtimeId=5705 minecraft:netherrack blockId=87 -runtimeId=5703 +runtimeId=5706 minecraft:netherreactor blockId=247 -runtimeId=5704 +runtimeId=5707 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=435 -runtimeId=5705 +runtimeId=5708 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=435 -runtimeId=5706 +runtimeId=5709 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=435 -runtimeId=5707 +runtimeId=5710 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=435 -runtimeId=5708 +runtimeId=5711 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=435 -runtimeId=5709 +runtimeId=5712 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=435 -runtimeId=5710 +runtimeId=5713 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=435 -runtimeId=5711 +runtimeId=5714 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=435 -runtimeId=5712 +runtimeId=5715 minecraft:noteblock blockId=25 -runtimeId=5713 +runtimeId=5716 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=0 blockId=53 -runtimeId=5714 +runtimeId=5717 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=1 blockId=53 -runtimeId=5715 +runtimeId=5718 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=2 blockId=53 -runtimeId=5716 +runtimeId=5719 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=3 blockId=53 -runtimeId=5717 +runtimeId=5720 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=0 blockId=53 -runtimeId=5718 +runtimeId=5721 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=1 blockId=53 -runtimeId=5719 +runtimeId=5722 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=2 blockId=53 -runtimeId=5720 +runtimeId=5723 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=3 blockId=53 -runtimeId=5721 +runtimeId=5724 minecraft:observer;facing_direction=0;powered_bit=0 blockId=251 -runtimeId=5722 +runtimeId=5725 minecraft:observer;facing_direction=0;powered_bit=1 blockId=251 -runtimeId=5728 +runtimeId=5731 minecraft:observer;facing_direction=1;powered_bit=0 blockId=251 -runtimeId=5723 +runtimeId=5726 minecraft:observer;facing_direction=1;powered_bit=1 blockId=251 -runtimeId=5729 +runtimeId=5732 minecraft:observer;facing_direction=2;powered_bit=0 blockId=251 -runtimeId=5724 +runtimeId=5727 minecraft:observer;facing_direction=2;powered_bit=1 blockId=251 -runtimeId=5730 +runtimeId=5733 minecraft:observer;facing_direction=3;powered_bit=0 blockId=251 -runtimeId=5725 +runtimeId=5728 minecraft:observer;facing_direction=3;powered_bit=1 blockId=251 -runtimeId=5731 +runtimeId=5734 minecraft:observer;facing_direction=4;powered_bit=0 blockId=251 -runtimeId=5726 +runtimeId=5729 minecraft:observer;facing_direction=4;powered_bit=1 blockId=251 -runtimeId=5732 +runtimeId=5735 minecraft:observer;facing_direction=5;powered_bit=0 blockId=251 -runtimeId=5727 +runtimeId=5730 minecraft:observer;facing_direction=5;powered_bit=1 blockId=251 -runtimeId=5733 +runtimeId=5736 minecraft:obsidian blockId=49 -runtimeId=5734 +runtimeId=5737 minecraft:orange_candle;lit=0;candles=0 blockId=669 -runtimeId=5735 +runtimeId=5738 minecraft:orange_candle;lit=0;candles=1 blockId=669 -runtimeId=5736 +runtimeId=5739 minecraft:orange_candle;lit=0;candles=2 blockId=669 -runtimeId=5737 +runtimeId=5740 minecraft:orange_candle;lit=0;candles=3 blockId=669 -runtimeId=5738 +runtimeId=5741 minecraft:orange_candle;lit=1;candles=0 blockId=669 -runtimeId=5739 +runtimeId=5742 minecraft:orange_candle;lit=1;candles=1 blockId=669 -runtimeId=5740 +runtimeId=5743 minecraft:orange_candle;lit=1;candles=2 blockId=669 -runtimeId=5741 +runtimeId=5744 minecraft:orange_candle;lit=1;candles=3 blockId=669 -runtimeId=5742 +runtimeId=5745 minecraft:orange_candle_cake;lit=0 blockId=686 -runtimeId=5743 +runtimeId=5746 minecraft:orange_candle_cake;lit=1 blockId=686 -runtimeId=5744 +runtimeId=5747 minecraft:orange_glazed_terracotta;facing_direction=0 blockId=221 -runtimeId=5745 +runtimeId=5748 minecraft:orange_glazed_terracotta;facing_direction=1 blockId=221 -runtimeId=5746 +runtimeId=5749 minecraft:orange_glazed_terracotta;facing_direction=2 blockId=221 -runtimeId=5747 +runtimeId=5750 minecraft:orange_glazed_terracotta;facing_direction=3 blockId=221 -runtimeId=5748 +runtimeId=5751 minecraft:orange_glazed_terracotta;facing_direction=4 blockId=221 -runtimeId=5749 +runtimeId=5752 minecraft:orange_glazed_terracotta;facing_direction=5 blockId=221 -runtimeId=5750 +runtimeId=5753 minecraft:oxidized_copper blockId=598 -runtimeId=5751 +runtimeId=5754 minecraft:oxidized_cut_copper blockId=605 -runtimeId=5752 +runtimeId=5755 minecraft:oxidized_cut_copper_slab;top_slot_bit=0 blockId=619 -runtimeId=5753 +runtimeId=5756 minecraft:oxidized_cut_copper_slab;top_slot_bit=1 blockId=619 -runtimeId=5754 +runtimeId=5757 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=612 -runtimeId=5755 +runtimeId=5758 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=612 -runtimeId=5756 +runtimeId=5759 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=612 -runtimeId=5757 +runtimeId=5760 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=612 -runtimeId=5758 +runtimeId=5761 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=612 -runtimeId=5759 +runtimeId=5762 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=612 -runtimeId=5760 +runtimeId=5763 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=612 -runtimeId=5761 +runtimeId=5764 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=612 -runtimeId=5762 +runtimeId=5765 minecraft:oxidized_double_cut_copper_slab;top_slot_bit=0 blockId=626 -runtimeId=5763 +runtimeId=5766 minecraft:oxidized_double_cut_copper_slab;top_slot_bit=1 blockId=626 -runtimeId=5764 +runtimeId=5767 minecraft:packed_ice blockId=174 -runtimeId=5765 +runtimeId=5768 minecraft:pink_candle;lit=0;candles=0 blockId=674 -runtimeId=5766 +runtimeId=5769 minecraft:pink_candle;lit=0;candles=1 blockId=674 -runtimeId=5767 +runtimeId=5770 minecraft:pink_candle;lit=0;candles=2 blockId=674 -runtimeId=5768 +runtimeId=5771 minecraft:pink_candle;lit=0;candles=3 blockId=674 -runtimeId=5769 +runtimeId=5772 minecraft:pink_candle;lit=1;candles=0 blockId=674 -runtimeId=5770 +runtimeId=5773 minecraft:pink_candle;lit=1;candles=1 blockId=674 -runtimeId=5771 +runtimeId=5774 minecraft:pink_candle;lit=1;candles=2 blockId=674 -runtimeId=5772 +runtimeId=5775 minecraft:pink_candle;lit=1;candles=3 blockId=674 -runtimeId=5773 +runtimeId=5776 minecraft:pink_candle_cake;lit=0 blockId=691 -runtimeId=5774 +runtimeId=5777 minecraft:pink_candle_cake;lit=1 blockId=691 -runtimeId=5775 +runtimeId=5778 minecraft:pink_glazed_terracotta;facing_direction=0 blockId=226 -runtimeId=5776 +runtimeId=5779 minecraft:pink_glazed_terracotta;facing_direction=1 blockId=226 -runtimeId=5777 +runtimeId=5780 minecraft:pink_glazed_terracotta;facing_direction=2 blockId=226 -runtimeId=5778 +runtimeId=5781 minecraft:pink_glazed_terracotta;facing_direction=3 blockId=226 -runtimeId=5779 +runtimeId=5782 minecraft:pink_glazed_terracotta;facing_direction=4 blockId=226 -runtimeId=5780 +runtimeId=5783 minecraft:pink_glazed_terracotta;facing_direction=5 blockId=226 -runtimeId=5781 +runtimeId=5784 minecraft:piston;facing_direction=0 blockId=33 -runtimeId=5782 +runtimeId=5785 minecraft:piston;facing_direction=1 blockId=33 -runtimeId=5783 +runtimeId=5786 minecraft:piston;facing_direction=2 blockId=33 -runtimeId=5784 +runtimeId=5787 minecraft:piston;facing_direction=3 blockId=33 -runtimeId=5785 +runtimeId=5788 minecraft:piston;facing_direction=4 blockId=33 -runtimeId=5786 +runtimeId=5789 minecraft:piston;facing_direction=5 blockId=33 -runtimeId=5787 +runtimeId=5790 minecraft:pistonArmCollision;facing_direction=0 blockId=34 -runtimeId=5788 +runtimeId=5791 minecraft:pistonArmCollision;facing_direction=1 blockId=34 -runtimeId=5789 +runtimeId=5792 minecraft:pistonArmCollision;facing_direction=2 blockId=34 -runtimeId=5790 +runtimeId=5793 minecraft:pistonArmCollision;facing_direction=3 blockId=34 -runtimeId=5791 +runtimeId=5794 minecraft:pistonArmCollision;facing_direction=4 blockId=34 -runtimeId=5792 +runtimeId=5795 minecraft:pistonArmCollision;facing_direction=5 blockId=34 -runtimeId=5793 +runtimeId=5796 minecraft:planks;wood_type=acacia blockId=5 -runtimeId=5798 +runtimeId=5801 minecraft:planks;wood_type=birch blockId=5 -runtimeId=5796 +runtimeId=5799 minecraft:planks;wood_type=dark_oak blockId=5 -runtimeId=5799 +runtimeId=5802 minecraft:planks;wood_type=jungle blockId=5 -runtimeId=5797 +runtimeId=5800 minecraft:planks;wood_type=oak blockId=5 -runtimeId=5794 +runtimeId=5797 minecraft:planks;wood_type=spruce blockId=5 -runtimeId=5795 +runtimeId=5798 minecraft:podzol blockId=243 -runtimeId=5800 +runtimeId=5803 minecraft:pointed_dripstone;dripstone_thickness=base;hanging=0 blockId=563 -runtimeId=5804 +runtimeId=5807 minecraft:pointed_dripstone;dripstone_thickness=base;hanging=1 blockId=563 -runtimeId=5809 +runtimeId=5812 minecraft:pointed_dripstone;dripstone_thickness=frustum;hanging=0 blockId=563 -runtimeId=5802 +runtimeId=5805 minecraft:pointed_dripstone;dripstone_thickness=frustum;hanging=1 blockId=563 -runtimeId=5807 +runtimeId=5810 minecraft:pointed_dripstone;dripstone_thickness=merge;hanging=0 blockId=563 -runtimeId=5805 +runtimeId=5808 minecraft:pointed_dripstone;dripstone_thickness=merge;hanging=1 blockId=563 -runtimeId=5810 +runtimeId=5813 minecraft:pointed_dripstone;dripstone_thickness=middle;hanging=0 blockId=563 -runtimeId=5803 +runtimeId=5806 minecraft:pointed_dripstone;dripstone_thickness=middle;hanging=1 blockId=563 -runtimeId=5808 +runtimeId=5811 minecraft:pointed_dripstone;dripstone_thickness=tip;hanging=0 blockId=563 -runtimeId=5801 +runtimeId=5804 minecraft:pointed_dripstone;dripstone_thickness=tip;hanging=1 blockId=563 -runtimeId=5806 +runtimeId=5809 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=429 -runtimeId=5811 +runtimeId=5814 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=429 -runtimeId=5812 +runtimeId=5815 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=429 -runtimeId=5813 +runtimeId=5816 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=429 -runtimeId=5814 +runtimeId=5817 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=429 -runtimeId=5815 +runtimeId=5818 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=429 -runtimeId=5816 +runtimeId=5819 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=429 -runtimeId=5817 +runtimeId=5820 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=429 -runtimeId=5818 - -minecraft:polished_basalt;pillar_axis=x -blockId=490 -runtimeId=5820 +runtimeId=5821 minecraft:polished_basalt;pillar_axis=y blockId=490 -runtimeId=5819 - -minecraft:polished_basalt;pillar_axis=z -blockId=490 -runtimeId=5821 +runtimeId=5824 minecraft:polished_blackstone blockId=546 -runtimeId=5822 +runtimeId=5825 minecraft:polished_blackstone_brick_double_slab;top_slot_bit=0 blockId=540 -runtimeId=5823 +runtimeId=5826 minecraft:polished_blackstone_brick_double_slab;top_slot_bit=1 blockId=540 -runtimeId=5824 +runtimeId=5827 minecraft:polished_blackstone_brick_slab;top_slot_bit=0 blockId=539 -runtimeId=5825 +runtimeId=5828 minecraft:polished_blackstone_brick_slab;top_slot_bit=1 blockId=539 -runtimeId=5826 +runtimeId=5829 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=530 -runtimeId=5827 +runtimeId=5830 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=530 -runtimeId=5828 +runtimeId=5831 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=530 -runtimeId=5829 +runtimeId=5832 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=530 -runtimeId=5830 +runtimeId=5833 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=530 -runtimeId=5831 +runtimeId=5834 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=530 -runtimeId=5832 +runtimeId=5835 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=530 -runtimeId=5833 +runtimeId=5836 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=530 -runtimeId=5834 +runtimeId=5837 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5835 +runtimeId=5838 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5837 +runtimeId=5840 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5839 +runtimeId=5842 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5889 +runtimeId=5892 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5891 +runtimeId=5894 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5893 +runtimeId=5896 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5943 +runtimeId=5946 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5945 +runtimeId=5948 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5947 +runtimeId=5950 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5853 +runtimeId=5856 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5855 +runtimeId=5858 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5857 +runtimeId=5860 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5907 +runtimeId=5910 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5909 +runtimeId=5912 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5911 +runtimeId=5914 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5961 +runtimeId=5964 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5963 +runtimeId=5966 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5965 +runtimeId=5968 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5871 +runtimeId=5874 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5873 +runtimeId=5876 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5875 +runtimeId=5878 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5925 +runtimeId=5928 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5927 +runtimeId=5930 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5929 +runtimeId=5932 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5979 +runtimeId=5982 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5981 +runtimeId=5984 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5983 +runtimeId=5986 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5836 +runtimeId=5839 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5838 +runtimeId=5841 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5840 +runtimeId=5843 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5890 +runtimeId=5893 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5892 +runtimeId=5895 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5894 +runtimeId=5897 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5944 +runtimeId=5947 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5946 +runtimeId=5949 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5948 +runtimeId=5951 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5854 +runtimeId=5857 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5856 +runtimeId=5859 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5858 +runtimeId=5861 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5908 +runtimeId=5911 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5910 +runtimeId=5913 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5912 +runtimeId=5915 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5962 +runtimeId=5965 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5964 +runtimeId=5967 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5966 +runtimeId=5969 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5872 +runtimeId=5875 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5874 +runtimeId=5877 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5876 +runtimeId=5879 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5926 +runtimeId=5929 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5928 +runtimeId=5931 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5930 +runtimeId=5933 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5980 +runtimeId=5983 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5982 +runtimeId=5985 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5984 +runtimeId=5987 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5841 +runtimeId=5844 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5843 +runtimeId=5846 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5845 +runtimeId=5848 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5895 +runtimeId=5898 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5897 +runtimeId=5900 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5899 +runtimeId=5902 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5949 +runtimeId=5952 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5951 +runtimeId=5954 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5953 +runtimeId=5956 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5859 +runtimeId=5862 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5861 +runtimeId=5864 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5863 +runtimeId=5866 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5913 +runtimeId=5916 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5915 +runtimeId=5918 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5917 +runtimeId=5920 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5967 +runtimeId=5970 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5969 +runtimeId=5972 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5971 +runtimeId=5974 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5877 +runtimeId=5880 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5879 +runtimeId=5882 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5881 +runtimeId=5884 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5931 +runtimeId=5934 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5933 +runtimeId=5936 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5935 +runtimeId=5938 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5985 +runtimeId=5988 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5987 +runtimeId=5990 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5989 +runtimeId=5992 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5842 +runtimeId=5845 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5844 +runtimeId=5847 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5846 +runtimeId=5849 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5896 +runtimeId=5899 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5898 +runtimeId=5901 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5900 +runtimeId=5903 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5950 +runtimeId=5953 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5952 +runtimeId=5955 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5954 +runtimeId=5957 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5860 +runtimeId=5863 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5862 +runtimeId=5865 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5864 +runtimeId=5867 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5914 +runtimeId=5917 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5916 +runtimeId=5919 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5918 +runtimeId=5921 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5968 +runtimeId=5971 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5970 +runtimeId=5973 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5972 +runtimeId=5975 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5878 +runtimeId=5881 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5880 +runtimeId=5883 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5882 +runtimeId=5885 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5932 +runtimeId=5935 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5934 +runtimeId=5937 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5936 +runtimeId=5939 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5986 +runtimeId=5989 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5988 +runtimeId=5991 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5990 +runtimeId=5993 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5847 +runtimeId=5850 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5849 +runtimeId=5852 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5851 +runtimeId=5854 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5901 +runtimeId=5904 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5903 +runtimeId=5906 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5905 +runtimeId=5908 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5955 +runtimeId=5958 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5957 +runtimeId=5960 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5959 +runtimeId=5962 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5865 +runtimeId=5868 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5867 +runtimeId=5870 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5869 +runtimeId=5872 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5919 +runtimeId=5922 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5921 +runtimeId=5924 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5923 +runtimeId=5926 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5973 +runtimeId=5976 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5975 +runtimeId=5978 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5977 +runtimeId=5980 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5883 +runtimeId=5886 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5885 +runtimeId=5888 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5887 +runtimeId=5890 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5937 +runtimeId=5940 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5939 +runtimeId=5942 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5941 +runtimeId=5944 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5991 +runtimeId=5994 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5993 +runtimeId=5996 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5995 +runtimeId=5998 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5848 +runtimeId=5851 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5850 +runtimeId=5853 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5852 +runtimeId=5855 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5902 +runtimeId=5905 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5904 +runtimeId=5907 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5906 +runtimeId=5909 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5956 +runtimeId=5959 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5958 +runtimeId=5961 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5960 +runtimeId=5963 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5866 +runtimeId=5869 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5868 +runtimeId=5871 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5870 +runtimeId=5873 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5920 +runtimeId=5923 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5922 +runtimeId=5925 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5924 +runtimeId=5927 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5974 +runtimeId=5977 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5976 +runtimeId=5979 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5978 +runtimeId=5981 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5884 +runtimeId=5887 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5886 +runtimeId=5889 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5888 +runtimeId=5891 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5938 +runtimeId=5941 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5940 +runtimeId=5943 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5942 +runtimeId=5945 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5992 +runtimeId=5995 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5994 +runtimeId=5997 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5996 +runtimeId=5999 minecraft:polished_blackstone_bricks blockId=529 -runtimeId=5997 +runtimeId=6000 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=0 blockId=551 -runtimeId=5998 +runtimeId=6001 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=1 blockId=551 -runtimeId=5999 +runtimeId=6002 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=2 blockId=551 -runtimeId=6000 +runtimeId=6003 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=3 blockId=551 -runtimeId=6001 +runtimeId=6004 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=4 blockId=551 -runtimeId=6002 +runtimeId=6005 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=5 blockId=551 -runtimeId=6003 +runtimeId=6006 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=0 blockId=551 -runtimeId=6004 +runtimeId=6007 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=1 blockId=551 -runtimeId=6005 +runtimeId=6008 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=2 blockId=551 -runtimeId=6006 +runtimeId=6009 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=3 blockId=551 -runtimeId=6007 +runtimeId=6010 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=4 blockId=551 -runtimeId=6008 +runtimeId=6011 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=5 blockId=551 -runtimeId=6009 +runtimeId=6012 minecraft:polished_blackstone_double_slab;top_slot_bit=0 blockId=549 -runtimeId=6010 +runtimeId=6013 minecraft:polished_blackstone_double_slab;top_slot_bit=1 blockId=549 -runtimeId=6011 +runtimeId=6014 minecraft:polished_blackstone_pressure_plate;redstone_signal=0 blockId=550 -runtimeId=6012 +runtimeId=6015 minecraft:polished_blackstone_pressure_plate;redstone_signal=1 blockId=550 -runtimeId=6013 +runtimeId=6016 minecraft:polished_blackstone_pressure_plate;redstone_signal=2 blockId=550 -runtimeId=6014 +runtimeId=6017 minecraft:polished_blackstone_pressure_plate;redstone_signal=3 blockId=550 -runtimeId=6015 +runtimeId=6018 minecraft:polished_blackstone_pressure_plate;redstone_signal=4 blockId=550 -runtimeId=6016 +runtimeId=6019 minecraft:polished_blackstone_pressure_plate;redstone_signal=5 blockId=550 -runtimeId=6017 +runtimeId=6020 minecraft:polished_blackstone_pressure_plate;redstone_signal=6 blockId=550 -runtimeId=6018 +runtimeId=6021 minecraft:polished_blackstone_pressure_plate;redstone_signal=7 blockId=550 -runtimeId=6019 +runtimeId=6022 minecraft:polished_blackstone_pressure_plate;redstone_signal=8 blockId=550 -runtimeId=6020 +runtimeId=6023 minecraft:polished_blackstone_pressure_plate;redstone_signal=9 blockId=550 -runtimeId=6021 +runtimeId=6024 minecraft:polished_blackstone_pressure_plate;redstone_signal=10 blockId=550 -runtimeId=6022 +runtimeId=6025 minecraft:polished_blackstone_pressure_plate;redstone_signal=11 blockId=550 -runtimeId=6023 +runtimeId=6026 minecraft:polished_blackstone_pressure_plate;redstone_signal=12 blockId=550 -runtimeId=6024 +runtimeId=6027 minecraft:polished_blackstone_pressure_plate;redstone_signal=13 blockId=550 -runtimeId=6025 +runtimeId=6028 minecraft:polished_blackstone_pressure_plate;redstone_signal=14 blockId=550 -runtimeId=6026 +runtimeId=6029 minecraft:polished_blackstone_pressure_plate;redstone_signal=15 blockId=550 -runtimeId=6027 +runtimeId=6030 minecraft:polished_blackstone_slab;top_slot_bit=0 blockId=548 -runtimeId=6028 +runtimeId=6031 minecraft:polished_blackstone_slab;top_slot_bit=1 blockId=548 -runtimeId=6029 +runtimeId=6032 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=547 -runtimeId=6030 +runtimeId=6033 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=547 -runtimeId=6031 +runtimeId=6034 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=547 -runtimeId=6032 +runtimeId=6035 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=547 -runtimeId=6033 +runtimeId=6036 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=547 -runtimeId=6034 +runtimeId=6037 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=547 -runtimeId=6035 +runtimeId=6038 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=547 -runtimeId=6036 +runtimeId=6039 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=547 -runtimeId=6037 +runtimeId=6040 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6038 +runtimeId=6041 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6040 +runtimeId=6043 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6042 +runtimeId=6045 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6092 +runtimeId=6095 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6094 +runtimeId=6097 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6096 +runtimeId=6099 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6146 +runtimeId=6149 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6148 +runtimeId=6151 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6150 +runtimeId=6153 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6056 +runtimeId=6059 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6058 +runtimeId=6061 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6060 +runtimeId=6063 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6110 +runtimeId=6113 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6112 +runtimeId=6115 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6114 +runtimeId=6117 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6164 +runtimeId=6167 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6166 +runtimeId=6169 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6168 +runtimeId=6171 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6074 +runtimeId=6077 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6076 +runtimeId=6079 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6078 +runtimeId=6081 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6128 +runtimeId=6131 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6130 +runtimeId=6133 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6132 +runtimeId=6135 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6182 +runtimeId=6185 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6184 +runtimeId=6187 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6186 +runtimeId=6189 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6039 +runtimeId=6042 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6041 +runtimeId=6044 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6043 +runtimeId=6046 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6093 +runtimeId=6096 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6095 +runtimeId=6098 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6097 +runtimeId=6100 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6147 +runtimeId=6150 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6149 +runtimeId=6152 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6151 +runtimeId=6154 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6057 +runtimeId=6060 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6059 +runtimeId=6062 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6061 +runtimeId=6064 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6111 +runtimeId=6114 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6113 +runtimeId=6116 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6115 +runtimeId=6118 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6165 +runtimeId=6168 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6167 +runtimeId=6170 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6169 +runtimeId=6172 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6075 +runtimeId=6078 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6077 +runtimeId=6080 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6079 +runtimeId=6082 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6129 +runtimeId=6132 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6131 +runtimeId=6134 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6133 +runtimeId=6136 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6183 +runtimeId=6186 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6185 +runtimeId=6188 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6187 +runtimeId=6190 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6044 +runtimeId=6047 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6046 +runtimeId=6049 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6048 +runtimeId=6051 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6098 +runtimeId=6101 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6100 +runtimeId=6103 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6102 +runtimeId=6105 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6152 +runtimeId=6155 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6154 +runtimeId=6157 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6156 +runtimeId=6159 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6062 +runtimeId=6065 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6064 +runtimeId=6067 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6066 +runtimeId=6069 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6116 +runtimeId=6119 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6118 +runtimeId=6121 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6120 +runtimeId=6123 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6170 +runtimeId=6173 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6172 +runtimeId=6175 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6174 +runtimeId=6177 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6080 +runtimeId=6083 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6082 +runtimeId=6085 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6084 +runtimeId=6087 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6134 +runtimeId=6137 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6136 +runtimeId=6139 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6138 +runtimeId=6141 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6188 +runtimeId=6191 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6190 +runtimeId=6193 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6192 +runtimeId=6195 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6045 +runtimeId=6048 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6047 +runtimeId=6050 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6049 +runtimeId=6052 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6099 +runtimeId=6102 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6101 +runtimeId=6104 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6103 +runtimeId=6106 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6153 +runtimeId=6156 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6155 +runtimeId=6158 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6157 +runtimeId=6160 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6063 +runtimeId=6066 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6065 +runtimeId=6068 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6067 +runtimeId=6070 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6117 +runtimeId=6120 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6119 +runtimeId=6122 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6121 +runtimeId=6124 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6171 +runtimeId=6174 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6173 +runtimeId=6176 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6175 +runtimeId=6178 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6081 +runtimeId=6084 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6083 +runtimeId=6086 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6085 +runtimeId=6088 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6135 +runtimeId=6138 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6137 +runtimeId=6140 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6139 +runtimeId=6142 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6189 +runtimeId=6192 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6191 +runtimeId=6194 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6193 +runtimeId=6196 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6050 +runtimeId=6053 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6052 +runtimeId=6055 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6054 +runtimeId=6057 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6104 +runtimeId=6107 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6106 +runtimeId=6109 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6108 +runtimeId=6111 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6158 +runtimeId=6161 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6160 +runtimeId=6163 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6162 +runtimeId=6165 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6068 +runtimeId=6071 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6070 +runtimeId=6073 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6072 +runtimeId=6075 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6122 +runtimeId=6125 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6124 +runtimeId=6127 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6126 +runtimeId=6129 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6176 +runtimeId=6179 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6178 +runtimeId=6181 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6180 +runtimeId=6183 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6086 +runtimeId=6089 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6088 +runtimeId=6091 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6090 +runtimeId=6093 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6140 +runtimeId=6143 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6142 +runtimeId=6145 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6144 +runtimeId=6147 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6194 +runtimeId=6197 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6196 +runtimeId=6199 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6198 +runtimeId=6201 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6051 +runtimeId=6054 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6053 +runtimeId=6056 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6055 +runtimeId=6058 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6105 +runtimeId=6108 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6107 +runtimeId=6110 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6109 +runtimeId=6112 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6159 +runtimeId=6162 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6161 +runtimeId=6164 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6163 +runtimeId=6166 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6069 +runtimeId=6072 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6071 +runtimeId=6074 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6073 +runtimeId=6076 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6123 +runtimeId=6126 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6125 +runtimeId=6128 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6127 +runtimeId=6130 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6177 +runtimeId=6180 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6179 +runtimeId=6182 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6181 +runtimeId=6184 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6087 +runtimeId=6090 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6089 +runtimeId=6092 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6091 +runtimeId=6094 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6141 +runtimeId=6144 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6143 +runtimeId=6146 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6145 +runtimeId=6148 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6195 +runtimeId=6198 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6197 +runtimeId=6200 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6199 +runtimeId=6202 minecraft:polished_deepslate blockId=638 -runtimeId=6200 +runtimeId=6203 minecraft:polished_deepslate_double_slab;top_slot_bit=0 blockId=652 -runtimeId=6201 +runtimeId=6204 minecraft:polished_deepslate_double_slab;top_slot_bit=1 blockId=652 -runtimeId=6202 +runtimeId=6205 minecraft:polished_deepslate_slab;top_slot_bit=0 blockId=639 -runtimeId=6203 +runtimeId=6206 minecraft:polished_deepslate_slab;top_slot_bit=1 blockId=639 -runtimeId=6204 +runtimeId=6207 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=0 blockId=640 -runtimeId=6205 +runtimeId=6208 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=1 blockId=640 -runtimeId=6206 +runtimeId=6209 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=2 blockId=640 -runtimeId=6207 +runtimeId=6210 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=3 blockId=640 -runtimeId=6208 +runtimeId=6211 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=0 blockId=640 -runtimeId=6209 +runtimeId=6212 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=1 blockId=640 -runtimeId=6210 +runtimeId=6213 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=2 blockId=640 -runtimeId=6211 +runtimeId=6214 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=3 blockId=640 -runtimeId=6212 +runtimeId=6215 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6213 +runtimeId=6216 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6215 +runtimeId=6218 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6217 +runtimeId=6220 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6267 +runtimeId=6270 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6269 +runtimeId=6272 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6271 +runtimeId=6274 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6321 +runtimeId=6324 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6323 +runtimeId=6326 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6325 +runtimeId=6328 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6231 +runtimeId=6234 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6233 +runtimeId=6236 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6235 +runtimeId=6238 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6285 +runtimeId=6288 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6287 +runtimeId=6290 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6289 +runtimeId=6292 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6339 +runtimeId=6342 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6341 +runtimeId=6344 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6343 +runtimeId=6346 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6249 +runtimeId=6252 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6251 +runtimeId=6254 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6253 +runtimeId=6256 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6303 +runtimeId=6306 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6305 +runtimeId=6308 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6307 +runtimeId=6310 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6357 +runtimeId=6360 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6359 +runtimeId=6362 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6361 +runtimeId=6364 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6214 +runtimeId=6217 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6216 +runtimeId=6219 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6218 +runtimeId=6221 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6268 +runtimeId=6271 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6270 +runtimeId=6273 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6272 +runtimeId=6275 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6322 +runtimeId=6325 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6324 +runtimeId=6327 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6326 +runtimeId=6329 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6232 +runtimeId=6235 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6234 +runtimeId=6237 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6236 +runtimeId=6239 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6286 +runtimeId=6289 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6288 +runtimeId=6291 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6290 +runtimeId=6293 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6340 +runtimeId=6343 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6342 +runtimeId=6345 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6344 +runtimeId=6347 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6250 +runtimeId=6253 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6252 +runtimeId=6255 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6254 +runtimeId=6257 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6304 +runtimeId=6307 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6306 +runtimeId=6309 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6308 +runtimeId=6311 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6358 +runtimeId=6361 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6360 +runtimeId=6363 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6362 +runtimeId=6365 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6219 +runtimeId=6222 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6221 +runtimeId=6224 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6223 +runtimeId=6226 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6273 +runtimeId=6276 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6275 +runtimeId=6278 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6277 +runtimeId=6280 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6327 +runtimeId=6330 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6329 +runtimeId=6332 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6331 +runtimeId=6334 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6237 +runtimeId=6240 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6239 +runtimeId=6242 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6241 +runtimeId=6244 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6291 +runtimeId=6294 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6293 +runtimeId=6296 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6295 +runtimeId=6298 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6345 +runtimeId=6348 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6347 +runtimeId=6350 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6349 +runtimeId=6352 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6255 +runtimeId=6258 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6257 +runtimeId=6260 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6259 +runtimeId=6262 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6309 +runtimeId=6312 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6311 +runtimeId=6314 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6313 +runtimeId=6316 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6363 +runtimeId=6366 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6365 +runtimeId=6368 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6367 +runtimeId=6370 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6220 +runtimeId=6223 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6222 +runtimeId=6225 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6224 +runtimeId=6227 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6274 +runtimeId=6277 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6276 +runtimeId=6279 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6278 +runtimeId=6281 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6328 +runtimeId=6331 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6330 +runtimeId=6333 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6332 +runtimeId=6335 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6238 +runtimeId=6241 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6240 +runtimeId=6243 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6242 +runtimeId=6245 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6292 +runtimeId=6295 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6294 +runtimeId=6297 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6296 +runtimeId=6299 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6346 +runtimeId=6349 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6348 +runtimeId=6351 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6350 +runtimeId=6353 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6256 +runtimeId=6259 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6258 +runtimeId=6261 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6260 +runtimeId=6263 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6310 +runtimeId=6313 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6312 +runtimeId=6315 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6314 +runtimeId=6317 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6364 +runtimeId=6367 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6366 +runtimeId=6369 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6368 +runtimeId=6371 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6225 +runtimeId=6228 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6227 +runtimeId=6230 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6229 +runtimeId=6232 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6279 +runtimeId=6282 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6281 +runtimeId=6284 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6283 +runtimeId=6286 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6333 +runtimeId=6336 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6335 +runtimeId=6338 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6337 +runtimeId=6340 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6243 +runtimeId=6246 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6245 +runtimeId=6248 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6247 +runtimeId=6250 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6297 +runtimeId=6300 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6299 +runtimeId=6302 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6301 +runtimeId=6304 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6351 +runtimeId=6354 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6353 +runtimeId=6356 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6355 +runtimeId=6358 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6261 +runtimeId=6264 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6263 +runtimeId=6266 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6265 +runtimeId=6268 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6315 +runtimeId=6318 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6317 +runtimeId=6320 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6319 +runtimeId=6322 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6369 +runtimeId=6372 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6371 +runtimeId=6374 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6373 +runtimeId=6376 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6226 +runtimeId=6229 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6228 +runtimeId=6231 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6230 +runtimeId=6233 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6280 +runtimeId=6283 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6282 +runtimeId=6285 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6284 +runtimeId=6287 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6334 +runtimeId=6337 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6336 +runtimeId=6339 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6338 +runtimeId=6341 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6244 +runtimeId=6247 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6246 +runtimeId=6249 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6248 +runtimeId=6251 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6298 +runtimeId=6301 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6300 +runtimeId=6303 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6302 +runtimeId=6305 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6352 +runtimeId=6355 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6354 +runtimeId=6357 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6356 +runtimeId=6359 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6262 +runtimeId=6265 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6264 +runtimeId=6267 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6266 +runtimeId=6269 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6316 +runtimeId=6319 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6318 +runtimeId=6321 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6320 +runtimeId=6323 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6370 +runtimeId=6373 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6372 +runtimeId=6375 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6374 +runtimeId=6377 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=428 -runtimeId=6375 +runtimeId=6378 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=428 -runtimeId=6376 +runtimeId=6379 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=428 -runtimeId=6377 +runtimeId=6380 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=428 -runtimeId=6378 +runtimeId=6381 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=428 -runtimeId=6379 +runtimeId=6382 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=428 -runtimeId=6380 +runtimeId=6383 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=428 -runtimeId=6381 +runtimeId=6384 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=428 -runtimeId=6382 +runtimeId=6385 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=427 -runtimeId=6383 +runtimeId=6386 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=427 -runtimeId=6384 +runtimeId=6387 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=427 -runtimeId=6385 +runtimeId=6388 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=427 -runtimeId=6386 +runtimeId=6389 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=427 -runtimeId=6387 +runtimeId=6390 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=427 -runtimeId=6388 +runtimeId=6391 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=427 -runtimeId=6389 +runtimeId=6392 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=427 -runtimeId=6390 - -minecraft:portal;portal_axis=unknown -blockId=90 -runtimeId=6391 +runtimeId=6393 minecraft:portal;portal_axis=x blockId=90 -runtimeId=6392 +runtimeId=6396 -minecraft:portal;portal_axis=z +minecraft:portal;portal_axis=unknown blockId=90 -runtimeId=6393 +runtimeId=6394 minecraft:potatoes;growth=0 blockId=142 -runtimeId=6394 +runtimeId=6397 minecraft:potatoes;growth=1 blockId=142 -runtimeId=6395 +runtimeId=6398 minecraft:potatoes;growth=2 blockId=142 -runtimeId=6396 +runtimeId=6399 minecraft:potatoes;growth=3 blockId=142 -runtimeId=6397 +runtimeId=6400 minecraft:potatoes;growth=4 blockId=142 -runtimeId=6398 +runtimeId=6401 minecraft:potatoes;growth=5 blockId=142 -runtimeId=6399 +runtimeId=6402 minecraft:potatoes;growth=6 blockId=142 -runtimeId=6400 +runtimeId=6403 minecraft:potatoes;growth=7 blockId=142 -runtimeId=6401 +runtimeId=6404 minecraft:powder_snow blockId=561 -runtimeId=6402 +runtimeId=6405 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=0 blockId=150 -runtimeId=6403 +runtimeId=6406 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=1 blockId=150 -runtimeId=6404 +runtimeId=6407 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=2 blockId=150 -runtimeId=6405 +runtimeId=6408 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=3 blockId=150 -runtimeId=6406 +runtimeId=6409 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=0 blockId=150 -runtimeId=6411 +runtimeId=6414 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=1 blockId=150 -runtimeId=6412 +runtimeId=6415 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=2 blockId=150 -runtimeId=6413 +runtimeId=6416 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=3 blockId=150 -runtimeId=6414 +runtimeId=6417 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=0 blockId=150 -runtimeId=6407 +runtimeId=6410 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=1 blockId=150 -runtimeId=6408 +runtimeId=6411 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=2 blockId=150 -runtimeId=6409 +runtimeId=6412 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=3 blockId=150 -runtimeId=6410 +runtimeId=6413 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=0 blockId=150 -runtimeId=6415 +runtimeId=6418 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=1 blockId=150 -runtimeId=6416 +runtimeId=6419 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=2 blockId=150 -runtimeId=6417 +runtimeId=6420 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=3 blockId=150 -runtimeId=6418 +runtimeId=6421 minecraft:powered_repeater;repeater_delay=0;direction=0 blockId=94 -runtimeId=6419 +runtimeId=6422 minecraft:powered_repeater;repeater_delay=0;direction=1 blockId=94 -runtimeId=6420 +runtimeId=6423 minecraft:powered_repeater;repeater_delay=0;direction=2 blockId=94 -runtimeId=6421 +runtimeId=6424 minecraft:powered_repeater;repeater_delay=0;direction=3 blockId=94 -runtimeId=6422 +runtimeId=6425 minecraft:powered_repeater;repeater_delay=1;direction=0 blockId=94 -runtimeId=6423 +runtimeId=6426 minecraft:powered_repeater;repeater_delay=1;direction=1 blockId=94 -runtimeId=6424 +runtimeId=6427 minecraft:powered_repeater;repeater_delay=1;direction=2 blockId=94 -runtimeId=6425 +runtimeId=6428 minecraft:powered_repeater;repeater_delay=1;direction=3 blockId=94 -runtimeId=6426 +runtimeId=6429 minecraft:powered_repeater;repeater_delay=2;direction=0 blockId=94 -runtimeId=6427 +runtimeId=6430 minecraft:powered_repeater;repeater_delay=2;direction=1 blockId=94 -runtimeId=6428 +runtimeId=6431 minecraft:powered_repeater;repeater_delay=2;direction=2 blockId=94 -runtimeId=6429 +runtimeId=6432 minecraft:powered_repeater;repeater_delay=2;direction=3 blockId=94 -runtimeId=6430 +runtimeId=6433 minecraft:powered_repeater;repeater_delay=3;direction=0 blockId=94 -runtimeId=6431 +runtimeId=6434 minecraft:powered_repeater;repeater_delay=3;direction=1 blockId=94 -runtimeId=6432 +runtimeId=6435 minecraft:powered_repeater;repeater_delay=3;direction=2 blockId=94 -runtimeId=6433 +runtimeId=6436 minecraft:powered_repeater;repeater_delay=3;direction=3 blockId=94 -runtimeId=6434 +runtimeId=6437 minecraft:prismarine;prismarine_block_type=bricks blockId=168 -runtimeId=6437 +runtimeId=6440 minecraft:prismarine;prismarine_block_type=dark blockId=168 -runtimeId=6436 +runtimeId=6439 minecraft:prismarine;prismarine_block_type=default blockId=168 -runtimeId=6435 +runtimeId=6438 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=0 blockId=259 -runtimeId=6438 +runtimeId=6441 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=1 blockId=259 -runtimeId=6439 +runtimeId=6442 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=2 blockId=259 -runtimeId=6440 +runtimeId=6443 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=3 blockId=259 -runtimeId=6441 +runtimeId=6444 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=0 blockId=259 -runtimeId=6442 +runtimeId=6445 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=1 blockId=259 -runtimeId=6443 +runtimeId=6446 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=2 blockId=259 -runtimeId=6444 +runtimeId=6447 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=3 blockId=259 -runtimeId=6445 +runtimeId=6448 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=0 blockId=257 -runtimeId=6446 +runtimeId=6449 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=1 blockId=257 -runtimeId=6447 +runtimeId=6450 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=2 blockId=257 -runtimeId=6448 +runtimeId=6451 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=3 blockId=257 -runtimeId=6449 +runtimeId=6452 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=0 blockId=257 -runtimeId=6450 +runtimeId=6453 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=1 blockId=257 -runtimeId=6451 +runtimeId=6454 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=2 blockId=257 -runtimeId=6452 +runtimeId=6455 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=3 blockId=257 -runtimeId=6453 +runtimeId=6456 minecraft:pumpkin;direction=0 blockId=86 -runtimeId=6454 +runtimeId=6457 minecraft:pumpkin;direction=1 blockId=86 -runtimeId=6455 +runtimeId=6458 minecraft:pumpkin;direction=2 blockId=86 -runtimeId=6456 +runtimeId=6459 minecraft:pumpkin;direction=3 blockId=86 -runtimeId=6457 +runtimeId=6460 minecraft:pumpkin_stem;facing_direction=0;growth=0 blockId=104 -runtimeId=6458 +runtimeId=6461 minecraft:pumpkin_stem;facing_direction=0;growth=1 blockId=104 -runtimeId=6459 +runtimeId=6462 minecraft:pumpkin_stem;facing_direction=0;growth=2 blockId=104 -runtimeId=6460 +runtimeId=6463 minecraft:pumpkin_stem;facing_direction=0;growth=3 blockId=104 -runtimeId=6461 +runtimeId=6464 minecraft:pumpkin_stem;facing_direction=0;growth=4 blockId=104 -runtimeId=6462 +runtimeId=6465 minecraft:pumpkin_stem;facing_direction=0;growth=5 blockId=104 -runtimeId=6463 +runtimeId=6466 minecraft:pumpkin_stem;facing_direction=0;growth=6 blockId=104 -runtimeId=6464 +runtimeId=6467 minecraft:pumpkin_stem;facing_direction=0;growth=7 blockId=104 -runtimeId=6465 +runtimeId=6468 minecraft:pumpkin_stem;facing_direction=1;growth=0 blockId=104 -runtimeId=6466 +runtimeId=6469 minecraft:pumpkin_stem;facing_direction=1;growth=1 blockId=104 -runtimeId=6467 +runtimeId=6470 minecraft:pumpkin_stem;facing_direction=1;growth=2 blockId=104 -runtimeId=6468 +runtimeId=6471 minecraft:pumpkin_stem;facing_direction=1;growth=3 blockId=104 -runtimeId=6469 +runtimeId=6472 minecraft:pumpkin_stem;facing_direction=1;growth=4 blockId=104 -runtimeId=6470 +runtimeId=6473 minecraft:pumpkin_stem;facing_direction=1;growth=5 blockId=104 -runtimeId=6471 +runtimeId=6474 minecraft:pumpkin_stem;facing_direction=1;growth=6 blockId=104 -runtimeId=6472 +runtimeId=6475 minecraft:pumpkin_stem;facing_direction=1;growth=7 blockId=104 -runtimeId=6473 +runtimeId=6476 minecraft:pumpkin_stem;facing_direction=2;growth=0 blockId=104 -runtimeId=6474 +runtimeId=6477 minecraft:pumpkin_stem;facing_direction=2;growth=1 blockId=104 -runtimeId=6475 +runtimeId=6478 minecraft:pumpkin_stem;facing_direction=2;growth=2 blockId=104 -runtimeId=6476 +runtimeId=6479 minecraft:pumpkin_stem;facing_direction=2;growth=3 blockId=104 -runtimeId=6477 +runtimeId=6480 minecraft:pumpkin_stem;facing_direction=2;growth=4 blockId=104 -runtimeId=6478 +runtimeId=6481 minecraft:pumpkin_stem;facing_direction=2;growth=5 blockId=104 -runtimeId=6479 +runtimeId=6482 minecraft:pumpkin_stem;facing_direction=2;growth=6 blockId=104 -runtimeId=6480 +runtimeId=6483 minecraft:pumpkin_stem;facing_direction=2;growth=7 blockId=104 -runtimeId=6481 +runtimeId=6484 minecraft:pumpkin_stem;facing_direction=3;growth=0 blockId=104 -runtimeId=6482 +runtimeId=6485 minecraft:pumpkin_stem;facing_direction=3;growth=1 blockId=104 -runtimeId=6483 +runtimeId=6486 minecraft:pumpkin_stem;facing_direction=3;growth=2 blockId=104 -runtimeId=6484 +runtimeId=6487 minecraft:pumpkin_stem;facing_direction=3;growth=3 blockId=104 -runtimeId=6485 +runtimeId=6488 minecraft:pumpkin_stem;facing_direction=3;growth=4 blockId=104 -runtimeId=6486 +runtimeId=6489 minecraft:pumpkin_stem;facing_direction=3;growth=5 blockId=104 -runtimeId=6487 +runtimeId=6490 minecraft:pumpkin_stem;facing_direction=3;growth=6 blockId=104 -runtimeId=6488 +runtimeId=6491 minecraft:pumpkin_stem;facing_direction=3;growth=7 blockId=104 -runtimeId=6489 +runtimeId=6492 minecraft:pumpkin_stem;facing_direction=4;growth=0 blockId=104 -runtimeId=6490 +runtimeId=6493 minecraft:pumpkin_stem;facing_direction=4;growth=1 blockId=104 -runtimeId=6491 +runtimeId=6494 minecraft:pumpkin_stem;facing_direction=4;growth=2 blockId=104 -runtimeId=6492 +runtimeId=6495 minecraft:pumpkin_stem;facing_direction=4;growth=3 blockId=104 -runtimeId=6493 +runtimeId=6496 minecraft:pumpkin_stem;facing_direction=4;growth=4 blockId=104 -runtimeId=6494 +runtimeId=6497 minecraft:pumpkin_stem;facing_direction=4;growth=5 blockId=104 -runtimeId=6495 +runtimeId=6498 minecraft:pumpkin_stem;facing_direction=4;growth=6 blockId=104 -runtimeId=6496 +runtimeId=6499 minecraft:pumpkin_stem;facing_direction=4;growth=7 blockId=104 -runtimeId=6497 +runtimeId=6500 minecraft:pumpkin_stem;facing_direction=5;growth=0 blockId=104 -runtimeId=6498 +runtimeId=6501 minecraft:pumpkin_stem;facing_direction=5;growth=1 blockId=104 -runtimeId=6499 +runtimeId=6502 minecraft:pumpkin_stem;facing_direction=5;growth=2 blockId=104 -runtimeId=6500 +runtimeId=6503 minecraft:pumpkin_stem;facing_direction=5;growth=3 blockId=104 -runtimeId=6501 +runtimeId=6504 minecraft:pumpkin_stem;facing_direction=5;growth=4 blockId=104 -runtimeId=6502 +runtimeId=6505 minecraft:pumpkin_stem;facing_direction=5;growth=5 blockId=104 -runtimeId=6503 +runtimeId=6506 minecraft:pumpkin_stem;facing_direction=5;growth=6 blockId=104 -runtimeId=6504 +runtimeId=6507 minecraft:pumpkin_stem;facing_direction=5;growth=7 blockId=104 -runtimeId=6505 +runtimeId=6508 minecraft:purple_candle;lit=0;candles=0 blockId=678 -runtimeId=6506 +runtimeId=6509 minecraft:purple_candle;lit=0;candles=1 blockId=678 -runtimeId=6507 +runtimeId=6510 minecraft:purple_candle;lit=0;candles=2 blockId=678 -runtimeId=6508 +runtimeId=6511 minecraft:purple_candle;lit=0;candles=3 blockId=678 -runtimeId=6509 +runtimeId=6512 minecraft:purple_candle;lit=1;candles=0 blockId=678 -runtimeId=6510 +runtimeId=6513 minecraft:purple_candle;lit=1;candles=1 blockId=678 -runtimeId=6511 +runtimeId=6514 minecraft:purple_candle;lit=1;candles=2 blockId=678 -runtimeId=6512 +runtimeId=6515 minecraft:purple_candle;lit=1;candles=3 blockId=678 -runtimeId=6513 +runtimeId=6516 minecraft:purple_candle_cake;lit=0 blockId=695 -runtimeId=6514 +runtimeId=6517 minecraft:purple_candle_cake;lit=1 blockId=695 -runtimeId=6515 +runtimeId=6518 minecraft:purple_glazed_terracotta;facing_direction=0 blockId=219 -runtimeId=6516 +runtimeId=6519 minecraft:purple_glazed_terracotta;facing_direction=1 blockId=219 -runtimeId=6517 +runtimeId=6520 minecraft:purple_glazed_terracotta;facing_direction=2 blockId=219 -runtimeId=6518 +runtimeId=6521 minecraft:purple_glazed_terracotta;facing_direction=3 blockId=219 -runtimeId=6519 +runtimeId=6522 minecraft:purple_glazed_terracotta;facing_direction=4 blockId=219 -runtimeId=6520 +runtimeId=6523 minecraft:purple_glazed_terracotta;facing_direction=5 blockId=219 -runtimeId=6521 - -minecraft:purpur_block;chisel_type=chiseled;pillar_axis=x -blockId=201 -runtimeId=6527 +runtimeId=6524 minecraft:purpur_block;chisel_type=chiseled;pillar_axis=y blockId=201 -runtimeId=6523 - -minecraft:purpur_block;chisel_type=chiseled;pillar_axis=z -blockId=201 -runtimeId=6531 - -minecraft:purpur_block;chisel_type=default;pillar_axis=x -blockId=201 -runtimeId=6526 +runtimeId=6534 minecraft:purpur_block;chisel_type=default;pillar_axis=y blockId=201 -runtimeId=6522 - -minecraft:purpur_block;chisel_type=default;pillar_axis=z -blockId=201 -runtimeId=6530 - -minecraft:purpur_block;chisel_type=lines;pillar_axis=x -blockId=201 -runtimeId=6528 +runtimeId=6533 minecraft:purpur_block;chisel_type=lines;pillar_axis=y blockId=201 -runtimeId=6524 - -minecraft:purpur_block;chisel_type=lines;pillar_axis=z -blockId=201 -runtimeId=6532 - -minecraft:purpur_block;chisel_type=smooth;pillar_axis=x -blockId=201 -runtimeId=6529 +runtimeId=6535 minecraft:purpur_block;chisel_type=smooth;pillar_axis=y blockId=201 -runtimeId=6525 - -minecraft:purpur_block;chisel_type=smooth;pillar_axis=z -blockId=201 -runtimeId=6533 +runtimeId=6536 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=0 blockId=203 -runtimeId=6534 +runtimeId=6537 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=1 blockId=203 -runtimeId=6535 +runtimeId=6538 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=2 blockId=203 -runtimeId=6536 +runtimeId=6539 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=3 blockId=203 -runtimeId=6537 +runtimeId=6540 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=0 blockId=203 -runtimeId=6538 +runtimeId=6541 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=1 blockId=203 -runtimeId=6539 +runtimeId=6542 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=2 blockId=203 -runtimeId=6540 +runtimeId=6543 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=3 blockId=203 -runtimeId=6541 - -minecraft:quartz_block;chisel_type=chiseled;pillar_axis=x -blockId=155 -runtimeId=6547 +runtimeId=6544 minecraft:quartz_block;chisel_type=chiseled;pillar_axis=y blockId=155 -runtimeId=6543 - -minecraft:quartz_block;chisel_type=chiseled;pillar_axis=z -blockId=155 -runtimeId=6551 - -minecraft:quartz_block;chisel_type=default;pillar_axis=x -blockId=155 -runtimeId=6546 +runtimeId=6554 minecraft:quartz_block;chisel_type=default;pillar_axis=y blockId=155 -runtimeId=6542 - -minecraft:quartz_block;chisel_type=default;pillar_axis=z -blockId=155 -runtimeId=6550 - -minecraft:quartz_block;chisel_type=lines;pillar_axis=x -blockId=155 -runtimeId=6548 +runtimeId=6553 minecraft:quartz_block;chisel_type=lines;pillar_axis=y blockId=155 -runtimeId=6544 - -minecraft:quartz_block;chisel_type=lines;pillar_axis=z -blockId=155 -runtimeId=6552 - -minecraft:quartz_block;chisel_type=smooth;pillar_axis=x -blockId=155 -runtimeId=6549 +runtimeId=6555 minecraft:quartz_block;chisel_type=smooth;pillar_axis=y blockId=155 -runtimeId=6545 - -minecraft:quartz_block;chisel_type=smooth;pillar_axis=z -blockId=155 -runtimeId=6553 +runtimeId=6556 minecraft:quartz_bricks blockId=559 -runtimeId=6554 +runtimeId=6557 minecraft:quartz_ore blockId=153 -runtimeId=6555 +runtimeId=6558 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=0 blockId=156 -runtimeId=6556 +runtimeId=6559 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=1 blockId=156 -runtimeId=6557 +runtimeId=6560 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=2 blockId=156 -runtimeId=6558 +runtimeId=6561 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=3 blockId=156 -runtimeId=6559 +runtimeId=6562 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=0 blockId=156 -runtimeId=6560 +runtimeId=6563 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=1 blockId=156 -runtimeId=6561 +runtimeId=6564 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=2 blockId=156 -runtimeId=6562 +runtimeId=6565 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=3 blockId=156 -runtimeId=6563 +runtimeId=6566 minecraft:rail;rail_direction=0 blockId=66 -runtimeId=6564 +runtimeId=6567 minecraft:rail;rail_direction=1 blockId=66 -runtimeId=6565 +runtimeId=6568 minecraft:rail;rail_direction=2 blockId=66 -runtimeId=6566 +runtimeId=6569 minecraft:rail;rail_direction=3 blockId=66 -runtimeId=6567 +runtimeId=6570 minecraft:rail;rail_direction=4 blockId=66 -runtimeId=6568 +runtimeId=6571 minecraft:rail;rail_direction=5 blockId=66 -runtimeId=6569 +runtimeId=6572 minecraft:rail;rail_direction=6 blockId=66 -runtimeId=6570 +runtimeId=6573 minecraft:rail;rail_direction=7 blockId=66 -runtimeId=6571 +runtimeId=6574 minecraft:rail;rail_direction=8 blockId=66 -runtimeId=6572 +runtimeId=6575 minecraft:rail;rail_direction=9 blockId=66 -runtimeId=6573 +runtimeId=6576 minecraft:raw_copper_block blockId=707 -runtimeId=6574 +runtimeId=6577 minecraft:raw_gold_block blockId=708 -runtimeId=6575 +runtimeId=6578 minecraft:raw_iron_block blockId=706 -runtimeId=6576 +runtimeId=6579 minecraft:red_candle;lit=0;candles=0 blockId=682 -runtimeId=6577 +runtimeId=6580 minecraft:red_candle;lit=0;candles=1 blockId=682 -runtimeId=6578 +runtimeId=6581 minecraft:red_candle;lit=0;candles=2 blockId=682 -runtimeId=6579 +runtimeId=6582 minecraft:red_candle;lit=0;candles=3 blockId=682 -runtimeId=6580 +runtimeId=6583 minecraft:red_candle;lit=1;candles=0 blockId=682 -runtimeId=6581 +runtimeId=6584 minecraft:red_candle;lit=1;candles=1 blockId=682 -runtimeId=6582 +runtimeId=6585 minecraft:red_candle;lit=1;candles=2 blockId=682 -runtimeId=6583 +runtimeId=6586 minecraft:red_candle;lit=1;candles=3 blockId=682 -runtimeId=6584 +runtimeId=6587 minecraft:red_candle_cake;lit=0 blockId=699 -runtimeId=6585 +runtimeId=6588 minecraft:red_candle_cake;lit=1 blockId=699 -runtimeId=6586 +runtimeId=6589 minecraft:red_flower;flower_type=allium blockId=38 -runtimeId=6589 +runtimeId=6592 minecraft:red_flower;flower_type=cornflower blockId=38 -runtimeId=6596 +runtimeId=6599 minecraft:red_flower;flower_type=houstonia blockId=38 -runtimeId=6590 +runtimeId=6593 minecraft:red_flower;flower_type=lily_of_the_valley blockId=38 -runtimeId=6597 +runtimeId=6600 minecraft:red_flower;flower_type=orchid blockId=38 -runtimeId=6588 +runtimeId=6591 minecraft:red_flower;flower_type=oxeye blockId=38 -runtimeId=6595 +runtimeId=6598 minecraft:red_flower;flower_type=poppy blockId=38 -runtimeId=6587 +runtimeId=6590 minecraft:red_flower;flower_type=tulip_orange blockId=38 -runtimeId=6592 +runtimeId=6595 minecraft:red_flower;flower_type=tulip_pink blockId=38 -runtimeId=6594 +runtimeId=6597 minecraft:red_flower;flower_type=tulip_red blockId=38 -runtimeId=6591 +runtimeId=6594 minecraft:red_flower;flower_type=tulip_white blockId=38 -runtimeId=6593 +runtimeId=6596 minecraft:red_glazed_terracotta;facing_direction=0 blockId=234 -runtimeId=6598 +runtimeId=6601 minecraft:red_glazed_terracotta;facing_direction=1 blockId=234 -runtimeId=6599 +runtimeId=6602 minecraft:red_glazed_terracotta;facing_direction=2 blockId=234 -runtimeId=6600 +runtimeId=6603 minecraft:red_glazed_terracotta;facing_direction=3 blockId=234 -runtimeId=6601 +runtimeId=6604 minecraft:red_glazed_terracotta;facing_direction=4 blockId=234 -runtimeId=6602 +runtimeId=6605 minecraft:red_glazed_terracotta;facing_direction=5 blockId=234 -runtimeId=6603 +runtimeId=6606 minecraft:red_mushroom blockId=40 -runtimeId=6604 +runtimeId=6607 minecraft:red_mushroom_block;huge_mushroom_bits=0 blockId=100 -runtimeId=6605 +runtimeId=6608 minecraft:red_mushroom_block;huge_mushroom_bits=1 blockId=100 -runtimeId=6606 +runtimeId=6609 minecraft:red_mushroom_block;huge_mushroom_bits=2 blockId=100 -runtimeId=6607 +runtimeId=6610 minecraft:red_mushroom_block;huge_mushroom_bits=3 blockId=100 -runtimeId=6608 +runtimeId=6611 minecraft:red_mushroom_block;huge_mushroom_bits=4 blockId=100 -runtimeId=6609 +runtimeId=6612 minecraft:red_mushroom_block;huge_mushroom_bits=5 blockId=100 -runtimeId=6610 +runtimeId=6613 minecraft:red_mushroom_block;huge_mushroom_bits=6 blockId=100 -runtimeId=6611 +runtimeId=6614 minecraft:red_mushroom_block;huge_mushroom_bits=7 blockId=100 -runtimeId=6612 +runtimeId=6615 minecraft:red_mushroom_block;huge_mushroom_bits=8 blockId=100 -runtimeId=6613 +runtimeId=6616 minecraft:red_mushroom_block;huge_mushroom_bits=9 blockId=100 -runtimeId=6614 +runtimeId=6617 minecraft:red_mushroom_block;huge_mushroom_bits=10 blockId=100 -runtimeId=6615 +runtimeId=6618 minecraft:red_mushroom_block;huge_mushroom_bits=11 blockId=100 -runtimeId=6616 +runtimeId=6619 minecraft:red_mushroom_block;huge_mushroom_bits=12 blockId=100 -runtimeId=6617 +runtimeId=6620 minecraft:red_mushroom_block;huge_mushroom_bits=13 blockId=100 -runtimeId=6618 +runtimeId=6621 minecraft:red_mushroom_block;huge_mushroom_bits=14 blockId=100 -runtimeId=6619 +runtimeId=6622 minecraft:red_mushroom_block;huge_mushroom_bits=15 blockId=100 -runtimeId=6620 +runtimeId=6623 minecraft:red_nether_brick blockId=215 -runtimeId=6621 +runtimeId=6624 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=439 -runtimeId=6622 +runtimeId=6625 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=439 -runtimeId=6623 +runtimeId=6626 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=439 -runtimeId=6624 +runtimeId=6627 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=439 -runtimeId=6625 +runtimeId=6628 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=439 -runtimeId=6626 +runtimeId=6629 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=439 -runtimeId=6627 +runtimeId=6630 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=439 -runtimeId=6628 +runtimeId=6631 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=439 -runtimeId=6629 +runtimeId=6632 minecraft:red_sandstone;sand_stone_type=cut blockId=179 -runtimeId=6632 +runtimeId=6635 minecraft:red_sandstone;sand_stone_type=default blockId=179 -runtimeId=6630 +runtimeId=6633 minecraft:red_sandstone;sand_stone_type=heiroglyphs blockId=179 -runtimeId=6631 +runtimeId=6634 minecraft:red_sandstone;sand_stone_type=smooth blockId=179 -runtimeId=6633 +runtimeId=6636 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=180 -runtimeId=6634 +runtimeId=6637 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=180 -runtimeId=6635 +runtimeId=6638 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=180 -runtimeId=6636 +runtimeId=6639 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=180 -runtimeId=6637 +runtimeId=6640 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=180 -runtimeId=6638 +runtimeId=6641 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=180 -runtimeId=6639 +runtimeId=6642 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=180 -runtimeId=6640 +runtimeId=6643 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=180 -runtimeId=6641 +runtimeId=6644 minecraft:redstone_block blockId=152 -runtimeId=6642 +runtimeId=6645 minecraft:redstone_lamp blockId=123 -runtimeId=6643 +runtimeId=6646 minecraft:redstone_ore blockId=73 -runtimeId=6644 +runtimeId=6647 minecraft:redstone_torch;torch_facing_direction=east blockId=76 -runtimeId=6647 +runtimeId=6650 minecraft:redstone_torch;torch_facing_direction=north blockId=76 -runtimeId=6648 +runtimeId=6651 minecraft:redstone_torch;torch_facing_direction=south blockId=76 -runtimeId=6649 +runtimeId=6652 minecraft:redstone_torch;torch_facing_direction=top blockId=76 -runtimeId=6650 +runtimeId=6653 minecraft:redstone_torch;torch_facing_direction=unknown blockId=76 -runtimeId=6645 +runtimeId=6648 minecraft:redstone_torch;torch_facing_direction=west blockId=76 -runtimeId=6646 +runtimeId=6649 minecraft:redstone_wire;redstone_signal=0 blockId=55 -runtimeId=6651 +runtimeId=6654 minecraft:redstone_wire;redstone_signal=1 blockId=55 -runtimeId=6652 +runtimeId=6655 minecraft:redstone_wire;redstone_signal=2 blockId=55 -runtimeId=6653 +runtimeId=6656 minecraft:redstone_wire;redstone_signal=3 blockId=55 -runtimeId=6654 +runtimeId=6657 minecraft:redstone_wire;redstone_signal=4 blockId=55 -runtimeId=6655 +runtimeId=6658 minecraft:redstone_wire;redstone_signal=5 blockId=55 -runtimeId=6656 +runtimeId=6659 minecraft:redstone_wire;redstone_signal=6 blockId=55 -runtimeId=6657 +runtimeId=6660 minecraft:redstone_wire;redstone_signal=7 blockId=55 -runtimeId=6658 +runtimeId=6661 minecraft:redstone_wire;redstone_signal=8 blockId=55 -runtimeId=6659 +runtimeId=6662 minecraft:redstone_wire;redstone_signal=9 blockId=55 -runtimeId=6660 +runtimeId=6663 minecraft:redstone_wire;redstone_signal=10 blockId=55 -runtimeId=6661 +runtimeId=6664 minecraft:redstone_wire;redstone_signal=11 blockId=55 -runtimeId=6662 +runtimeId=6665 minecraft:redstone_wire;redstone_signal=12 blockId=55 -runtimeId=6663 +runtimeId=6666 minecraft:redstone_wire;redstone_signal=13 blockId=55 -runtimeId=6664 +runtimeId=6667 minecraft:redstone_wire;redstone_signal=14 blockId=55 -runtimeId=6665 +runtimeId=6668 minecraft:redstone_wire;redstone_signal=15 blockId=55 -runtimeId=6666 +runtimeId=6669 minecraft:reeds;age=0 blockId=83 -runtimeId=6667 +runtimeId=6670 minecraft:reeds;age=1 blockId=83 -runtimeId=6668 +runtimeId=6671 minecraft:reeds;age=2 blockId=83 -runtimeId=6669 +runtimeId=6672 minecraft:reeds;age=3 blockId=83 -runtimeId=6670 +runtimeId=6673 minecraft:reeds;age=4 blockId=83 -runtimeId=6671 +runtimeId=6674 minecraft:reeds;age=5 blockId=83 -runtimeId=6672 +runtimeId=6675 minecraft:reeds;age=6 blockId=83 -runtimeId=6673 +runtimeId=6676 minecraft:reeds;age=7 blockId=83 -runtimeId=6674 +runtimeId=6677 minecraft:reeds;age=8 blockId=83 -runtimeId=6675 +runtimeId=6678 minecraft:reeds;age=9 blockId=83 -runtimeId=6676 +runtimeId=6679 minecraft:reeds;age=10 blockId=83 -runtimeId=6677 +runtimeId=6680 minecraft:reeds;age=11 blockId=83 -runtimeId=6678 +runtimeId=6681 minecraft:reeds;age=12 blockId=83 -runtimeId=6679 +runtimeId=6682 minecraft:reeds;age=13 blockId=83 -runtimeId=6680 +runtimeId=6683 minecraft:reeds;age=14 blockId=83 -runtimeId=6681 +runtimeId=6684 minecraft:reeds;age=15 blockId=83 -runtimeId=6682 +runtimeId=6685 minecraft:repeating_command_block;conditional_bit=0;facing_direction=0 blockId=188 -runtimeId=6683 +runtimeId=6686 minecraft:repeating_command_block;conditional_bit=0;facing_direction=1 blockId=188 -runtimeId=6684 +runtimeId=6687 minecraft:repeating_command_block;conditional_bit=0;facing_direction=2 blockId=188 -runtimeId=6685 +runtimeId=6688 minecraft:repeating_command_block;conditional_bit=0;facing_direction=3 blockId=188 -runtimeId=6686 +runtimeId=6689 minecraft:repeating_command_block;conditional_bit=0;facing_direction=4 blockId=188 -runtimeId=6687 +runtimeId=6690 minecraft:repeating_command_block;conditional_bit=0;facing_direction=5 blockId=188 -runtimeId=6688 +runtimeId=6691 minecraft:repeating_command_block;conditional_bit=1;facing_direction=0 blockId=188 -runtimeId=6689 +runtimeId=6692 minecraft:repeating_command_block;conditional_bit=1;facing_direction=1 blockId=188 -runtimeId=6690 +runtimeId=6693 minecraft:repeating_command_block;conditional_bit=1;facing_direction=2 blockId=188 -runtimeId=6691 +runtimeId=6694 minecraft:repeating_command_block;conditional_bit=1;facing_direction=3 blockId=188 -runtimeId=6692 +runtimeId=6695 minecraft:repeating_command_block;conditional_bit=1;facing_direction=4 blockId=188 -runtimeId=6693 +runtimeId=6696 minecraft:repeating_command_block;conditional_bit=1;facing_direction=5 blockId=188 -runtimeId=6694 +runtimeId=6697 minecraft:reserved6 blockId=255 -runtimeId=6695 +runtimeId=6698 minecraft:respawn_anchor;respawn_anchor_charge=0 blockId=527 -runtimeId=6696 +runtimeId=6699 minecraft:respawn_anchor;respawn_anchor_charge=1 blockId=527 -runtimeId=6697 +runtimeId=6700 minecraft:respawn_anchor;respawn_anchor_charge=2 blockId=527 -runtimeId=6698 +runtimeId=6701 minecraft:respawn_anchor;respawn_anchor_charge=3 blockId=527 -runtimeId=6699 +runtimeId=6702 minecraft:respawn_anchor;respawn_anchor_charge=4 blockId=527 -runtimeId=6700 +runtimeId=6703 minecraft:sand;sand_type=normal blockId=12 -runtimeId=6701 +runtimeId=6704 minecraft:sand;sand_type=red blockId=12 -runtimeId=6702 +runtimeId=6705 minecraft:sandstone;sand_stone_type=cut blockId=24 -runtimeId=6705 +runtimeId=6708 minecraft:sandstone;sand_stone_type=default blockId=24 -runtimeId=6703 +runtimeId=6706 minecraft:sandstone;sand_stone_type=heiroglyphs blockId=24 -runtimeId=6704 +runtimeId=6707 minecraft:sandstone;sand_stone_type=smooth blockId=24 -runtimeId=6706 +runtimeId=6709 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=128 -runtimeId=6707 +runtimeId=6710 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=128 -runtimeId=6708 +runtimeId=6711 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=128 -runtimeId=6709 +runtimeId=6712 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=128 -runtimeId=6710 +runtimeId=6713 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=128 -runtimeId=6711 +runtimeId=6714 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=128 -runtimeId=6712 +runtimeId=6715 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=128 -runtimeId=6713 +runtimeId=6716 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=128 -runtimeId=6714 +runtimeId=6717 minecraft:sapling;sapling_type=acacia;age_bit=0 blockId=6 -runtimeId=6719 +runtimeId=6722 minecraft:sapling;sapling_type=acacia;age_bit=1 blockId=6 -runtimeId=6725 +runtimeId=6728 minecraft:sapling;sapling_type=birch;age_bit=0 blockId=6 -runtimeId=6717 +runtimeId=6720 minecraft:sapling;sapling_type=birch;age_bit=1 blockId=6 -runtimeId=6723 +runtimeId=6726 minecraft:sapling;sapling_type=dark_oak;age_bit=0 blockId=6 -runtimeId=6720 +runtimeId=6723 minecraft:sapling;sapling_type=dark_oak;age_bit=1 blockId=6 -runtimeId=6726 +runtimeId=6729 minecraft:sapling;sapling_type=jungle;age_bit=0 blockId=6 -runtimeId=6718 +runtimeId=6721 minecraft:sapling;sapling_type=jungle;age_bit=1 blockId=6 -runtimeId=6724 +runtimeId=6727 minecraft:sapling;sapling_type=oak;age_bit=0 blockId=6 -runtimeId=6715 +runtimeId=6718 minecraft:sapling;sapling_type=oak;age_bit=1 blockId=6 -runtimeId=6721 +runtimeId=6724 minecraft:sapling;sapling_type=spruce;age_bit=0 blockId=6 -runtimeId=6716 +runtimeId=6719 minecraft:sapling;sapling_type=spruce;age_bit=1 blockId=6 -runtimeId=6722 +runtimeId=6725 minecraft:scaffolding;stability=0;stability_check=0 blockId=420 -runtimeId=6727 +runtimeId=6730 minecraft:scaffolding;stability=0;stability_check=1 blockId=420 -runtimeId=6735 +runtimeId=6738 minecraft:scaffolding;stability=1;stability_check=0 blockId=420 -runtimeId=6728 +runtimeId=6731 minecraft:scaffolding;stability=1;stability_check=1 blockId=420 -runtimeId=6736 +runtimeId=6739 minecraft:scaffolding;stability=2;stability_check=0 blockId=420 -runtimeId=6729 +runtimeId=6732 minecraft:scaffolding;stability=2;stability_check=1 blockId=420 -runtimeId=6737 +runtimeId=6740 minecraft:scaffolding;stability=3;stability_check=0 blockId=420 -runtimeId=6730 +runtimeId=6733 minecraft:scaffolding;stability=3;stability_check=1 blockId=420 -runtimeId=6738 +runtimeId=6741 minecraft:scaffolding;stability=4;stability_check=0 blockId=420 -runtimeId=6731 +runtimeId=6734 minecraft:scaffolding;stability=4;stability_check=1 blockId=420 -runtimeId=6739 +runtimeId=6742 minecraft:scaffolding;stability=5;stability_check=0 blockId=420 -runtimeId=6732 +runtimeId=6735 minecraft:scaffolding;stability=5;stability_check=1 blockId=420 -runtimeId=6740 +runtimeId=6743 minecraft:scaffolding;stability=6;stability_check=0 blockId=420 -runtimeId=6733 +runtimeId=6736 minecraft:scaffolding;stability=6;stability_check=1 blockId=420 -runtimeId=6741 +runtimeId=6744 minecraft:scaffolding;stability=7;stability_check=0 blockId=420 -runtimeId=6734 +runtimeId=6737 minecraft:scaffolding;stability=7;stability_check=1 blockId=420 -runtimeId=6742 +runtimeId=6745 minecraft:sculk blockId=-1 -runtimeId=6743 +runtimeId=6746 -minecraft:sculk_catalyst +minecraft:sculk_catalyst;bloom=0 blockId=-1 -runtimeId=6744 +runtimeId=6747 + +minecraft:sculk_catalyst;bloom=1 +blockId=-1 +runtimeId=6748 minecraft:sculk_sensor;powered_bit=0 blockId=562 -runtimeId=6745 +runtimeId=6749 minecraft:sculk_sensor;powered_bit=1 blockId=562 -runtimeId=6746 +runtimeId=6750 minecraft:sculk_shrieker;active=0 blockId=-1 -runtimeId=6747 +runtimeId=6751 minecraft:sculk_shrieker;active=1 blockId=-1 -runtimeId=6748 +runtimeId=6752 minecraft:sculk_vein;multi_face_direction_bits=0 blockId=-1 -runtimeId=6749 +runtimeId=6753 minecraft:sculk_vein;multi_face_direction_bits=1 blockId=-1 -runtimeId=6750 +runtimeId=6754 minecraft:sculk_vein;multi_face_direction_bits=2 blockId=-1 -runtimeId=6751 +runtimeId=6755 minecraft:sculk_vein;multi_face_direction_bits=3 blockId=-1 -runtimeId=6752 +runtimeId=6756 minecraft:sculk_vein;multi_face_direction_bits=4 blockId=-1 -runtimeId=6753 +runtimeId=6757 minecraft:sculk_vein;multi_face_direction_bits=5 blockId=-1 -runtimeId=6754 +runtimeId=6758 minecraft:sculk_vein;multi_face_direction_bits=6 blockId=-1 -runtimeId=6755 +runtimeId=6759 minecraft:sculk_vein;multi_face_direction_bits=7 blockId=-1 -runtimeId=6756 +runtimeId=6760 minecraft:sculk_vein;multi_face_direction_bits=8 blockId=-1 -runtimeId=6757 +runtimeId=6761 minecraft:sculk_vein;multi_face_direction_bits=9 blockId=-1 -runtimeId=6758 +runtimeId=6762 minecraft:sculk_vein;multi_face_direction_bits=10 blockId=-1 -runtimeId=6759 +runtimeId=6763 minecraft:sculk_vein;multi_face_direction_bits=11 blockId=-1 -runtimeId=6760 +runtimeId=6764 minecraft:sculk_vein;multi_face_direction_bits=12 blockId=-1 -runtimeId=6761 +runtimeId=6765 minecraft:sculk_vein;multi_face_direction_bits=13 blockId=-1 -runtimeId=6762 +runtimeId=6766 minecraft:sculk_vein;multi_face_direction_bits=14 blockId=-1 -runtimeId=6763 +runtimeId=6767 minecraft:sculk_vein;multi_face_direction_bits=15 blockId=-1 -runtimeId=6764 +runtimeId=6768 minecraft:sculk_vein;multi_face_direction_bits=16 blockId=-1 -runtimeId=6765 +runtimeId=6769 minecraft:sculk_vein;multi_face_direction_bits=17 blockId=-1 -runtimeId=6766 +runtimeId=6770 minecraft:sculk_vein;multi_face_direction_bits=18 blockId=-1 -runtimeId=6767 +runtimeId=6771 minecraft:sculk_vein;multi_face_direction_bits=19 blockId=-1 -runtimeId=6768 +runtimeId=6772 minecraft:sculk_vein;multi_face_direction_bits=20 blockId=-1 -runtimeId=6769 +runtimeId=6773 minecraft:sculk_vein;multi_face_direction_bits=21 blockId=-1 -runtimeId=6770 +runtimeId=6774 minecraft:sculk_vein;multi_face_direction_bits=22 blockId=-1 -runtimeId=6771 +runtimeId=6775 minecraft:sculk_vein;multi_face_direction_bits=23 blockId=-1 -runtimeId=6772 +runtimeId=6776 minecraft:sculk_vein;multi_face_direction_bits=24 blockId=-1 -runtimeId=6773 +runtimeId=6777 minecraft:sculk_vein;multi_face_direction_bits=25 blockId=-1 -runtimeId=6774 +runtimeId=6778 minecraft:sculk_vein;multi_face_direction_bits=26 blockId=-1 -runtimeId=6775 +runtimeId=6779 minecraft:sculk_vein;multi_face_direction_bits=27 blockId=-1 -runtimeId=6776 +runtimeId=6780 minecraft:sculk_vein;multi_face_direction_bits=28 blockId=-1 -runtimeId=6777 +runtimeId=6781 minecraft:sculk_vein;multi_face_direction_bits=29 blockId=-1 -runtimeId=6778 +runtimeId=6782 minecraft:sculk_vein;multi_face_direction_bits=30 blockId=-1 -runtimeId=6779 +runtimeId=6783 minecraft:sculk_vein;multi_face_direction_bits=31 blockId=-1 -runtimeId=6780 +runtimeId=6784 minecraft:sculk_vein;multi_face_direction_bits=32 blockId=-1 -runtimeId=6781 +runtimeId=6785 minecraft:sculk_vein;multi_face_direction_bits=33 blockId=-1 -runtimeId=6782 +runtimeId=6786 minecraft:sculk_vein;multi_face_direction_bits=34 blockId=-1 -runtimeId=6783 +runtimeId=6787 minecraft:sculk_vein;multi_face_direction_bits=35 blockId=-1 -runtimeId=6784 +runtimeId=6788 minecraft:sculk_vein;multi_face_direction_bits=36 blockId=-1 -runtimeId=6785 +runtimeId=6789 minecraft:sculk_vein;multi_face_direction_bits=37 blockId=-1 -runtimeId=6786 +runtimeId=6790 minecraft:sculk_vein;multi_face_direction_bits=38 blockId=-1 -runtimeId=6787 +runtimeId=6791 minecraft:sculk_vein;multi_face_direction_bits=39 blockId=-1 -runtimeId=6788 +runtimeId=6792 minecraft:sculk_vein;multi_face_direction_bits=40 blockId=-1 -runtimeId=6789 +runtimeId=6793 minecraft:sculk_vein;multi_face_direction_bits=41 blockId=-1 -runtimeId=6790 +runtimeId=6794 minecraft:sculk_vein;multi_face_direction_bits=42 blockId=-1 -runtimeId=6791 +runtimeId=6795 minecraft:sculk_vein;multi_face_direction_bits=43 blockId=-1 -runtimeId=6792 +runtimeId=6796 minecraft:sculk_vein;multi_face_direction_bits=44 blockId=-1 -runtimeId=6793 +runtimeId=6797 minecraft:sculk_vein;multi_face_direction_bits=45 blockId=-1 -runtimeId=6794 +runtimeId=6798 minecraft:sculk_vein;multi_face_direction_bits=46 blockId=-1 -runtimeId=6795 +runtimeId=6799 minecraft:sculk_vein;multi_face_direction_bits=47 blockId=-1 -runtimeId=6796 +runtimeId=6800 minecraft:sculk_vein;multi_face_direction_bits=48 blockId=-1 -runtimeId=6797 +runtimeId=6801 minecraft:sculk_vein;multi_face_direction_bits=49 blockId=-1 -runtimeId=6798 +runtimeId=6802 minecraft:sculk_vein;multi_face_direction_bits=50 blockId=-1 -runtimeId=6799 +runtimeId=6803 minecraft:sculk_vein;multi_face_direction_bits=51 blockId=-1 -runtimeId=6800 +runtimeId=6804 minecraft:sculk_vein;multi_face_direction_bits=52 blockId=-1 -runtimeId=6801 +runtimeId=6805 minecraft:sculk_vein;multi_face_direction_bits=53 blockId=-1 -runtimeId=6802 +runtimeId=6806 minecraft:sculk_vein;multi_face_direction_bits=54 blockId=-1 -runtimeId=6803 +runtimeId=6807 minecraft:sculk_vein;multi_face_direction_bits=55 blockId=-1 -runtimeId=6804 +runtimeId=6808 minecraft:sculk_vein;multi_face_direction_bits=56 blockId=-1 -runtimeId=6805 +runtimeId=6809 minecraft:sculk_vein;multi_face_direction_bits=57 blockId=-1 -runtimeId=6806 +runtimeId=6810 minecraft:sculk_vein;multi_face_direction_bits=58 blockId=-1 -runtimeId=6807 +runtimeId=6811 minecraft:sculk_vein;multi_face_direction_bits=59 blockId=-1 -runtimeId=6808 +runtimeId=6812 minecraft:sculk_vein;multi_face_direction_bits=60 blockId=-1 -runtimeId=6809 +runtimeId=6813 minecraft:sculk_vein;multi_face_direction_bits=61 blockId=-1 -runtimeId=6810 +runtimeId=6814 minecraft:sculk_vein;multi_face_direction_bits=62 blockId=-1 -runtimeId=6811 +runtimeId=6815 minecraft:sculk_vein;multi_face_direction_bits=63 blockId=-1 -runtimeId=6812 +runtimeId=6816 minecraft:seaLantern blockId=169 -runtimeId=6824 +runtimeId=6828 minecraft:sea_pickle;cluster_count=0;dead_bit=0 blockId=411 -runtimeId=6813 +runtimeId=6817 minecraft:sea_pickle;cluster_count=0;dead_bit=1 blockId=411 -runtimeId=6817 +runtimeId=6821 minecraft:sea_pickle;cluster_count=1;dead_bit=0 blockId=411 -runtimeId=6814 +runtimeId=6818 minecraft:sea_pickle;cluster_count=1;dead_bit=1 blockId=411 -runtimeId=6818 +runtimeId=6822 minecraft:sea_pickle;cluster_count=2;dead_bit=0 blockId=411 -runtimeId=6815 +runtimeId=6819 minecraft:sea_pickle;cluster_count=2;dead_bit=1 blockId=411 -runtimeId=6819 +runtimeId=6823 minecraft:sea_pickle;cluster_count=3;dead_bit=0 blockId=411 -runtimeId=6816 +runtimeId=6820 minecraft:sea_pickle;cluster_count=3;dead_bit=1 blockId=411 -runtimeId=6820 +runtimeId=6824 minecraft:seagrass;sea_grass_type=default blockId=385 -runtimeId=6821 +runtimeId=6825 minecraft:seagrass;sea_grass_type=double_bot blockId=385 -runtimeId=6823 +runtimeId=6827 minecraft:seagrass;sea_grass_type=double_top blockId=385 -runtimeId=6822 +runtimeId=6826 minecraft:shroomlight blockId=485 -runtimeId=6825 +runtimeId=6829 minecraft:shulker_box;color=black blockId=218 -runtimeId=6841 +runtimeId=6845 minecraft:shulker_box;color=blue blockId=218 -runtimeId=6837 +runtimeId=6841 minecraft:shulker_box;color=brown blockId=218 -runtimeId=6838 +runtimeId=6842 minecraft:shulker_box;color=cyan blockId=218 -runtimeId=6835 +runtimeId=6839 minecraft:shulker_box;color=gray blockId=218 -runtimeId=6833 +runtimeId=6837 minecraft:shulker_box;color=green blockId=218 -runtimeId=6839 +runtimeId=6843 minecraft:shulker_box;color=light_blue blockId=218 -runtimeId=6829 +runtimeId=6833 minecraft:shulker_box;color=lime blockId=218 -runtimeId=6831 +runtimeId=6835 minecraft:shulker_box;color=magenta blockId=218 -runtimeId=6828 +runtimeId=6832 minecraft:shulker_box;color=orange blockId=218 -runtimeId=6827 +runtimeId=6831 minecraft:shulker_box;color=pink blockId=218 -runtimeId=6832 +runtimeId=6836 minecraft:shulker_box;color=purple blockId=218 -runtimeId=6836 +runtimeId=6840 minecraft:shulker_box;color=red blockId=218 -runtimeId=6840 +runtimeId=6844 minecraft:shulker_box;color=silver blockId=218 -runtimeId=6834 +runtimeId=6838 minecraft:shulker_box;color=white blockId=218 -runtimeId=6826 +runtimeId=6830 minecraft:shulker_box;color=yellow blockId=218 -runtimeId=6830 +runtimeId=6834 minecraft:silver_glazed_terracotta;facing_direction=0 blockId=228 -runtimeId=6842 +runtimeId=6846 minecraft:silver_glazed_terracotta;facing_direction=1 blockId=228 -runtimeId=6843 +runtimeId=6847 minecraft:silver_glazed_terracotta;facing_direction=2 blockId=228 -runtimeId=6844 +runtimeId=6848 minecraft:silver_glazed_terracotta;facing_direction=3 blockId=228 -runtimeId=6845 +runtimeId=6849 minecraft:silver_glazed_terracotta;facing_direction=4 blockId=228 -runtimeId=6846 +runtimeId=6850 minecraft:silver_glazed_terracotta;facing_direction=5 blockId=228 -runtimeId=6847 +runtimeId=6851 minecraft:skull;facing_direction=0;no_drop_bit=0 blockId=144 -runtimeId=6848 +runtimeId=6852 minecraft:skull;facing_direction=0;no_drop_bit=1 blockId=144 -runtimeId=6854 +runtimeId=6858 minecraft:skull;facing_direction=1;no_drop_bit=0 blockId=144 -runtimeId=6849 +runtimeId=6853 minecraft:skull;facing_direction=1;no_drop_bit=1 blockId=144 -runtimeId=6855 +runtimeId=6859 minecraft:skull;facing_direction=2;no_drop_bit=0 blockId=144 -runtimeId=6850 +runtimeId=6854 minecraft:skull;facing_direction=2;no_drop_bit=1 blockId=144 -runtimeId=6856 +runtimeId=6860 minecraft:skull;facing_direction=3;no_drop_bit=0 blockId=144 -runtimeId=6851 +runtimeId=6855 minecraft:skull;facing_direction=3;no_drop_bit=1 blockId=144 -runtimeId=6857 +runtimeId=6861 minecraft:skull;facing_direction=4;no_drop_bit=0 blockId=144 -runtimeId=6852 +runtimeId=6856 minecraft:skull;facing_direction=4;no_drop_bit=1 blockId=144 -runtimeId=6858 +runtimeId=6862 minecraft:skull;facing_direction=5;no_drop_bit=0 blockId=144 -runtimeId=6853 +runtimeId=6857 minecraft:skull;facing_direction=5;no_drop_bit=1 blockId=144 -runtimeId=6859 +runtimeId=6863 minecraft:slime blockId=165 -runtimeId=6860 +runtimeId=6864 minecraft:small_amethyst_bud;facing_direction=0 blockId=587 -runtimeId=6861 +runtimeId=6865 minecraft:small_amethyst_bud;facing_direction=1 blockId=587 -runtimeId=6862 +runtimeId=6866 minecraft:small_amethyst_bud;facing_direction=2 blockId=587 -runtimeId=6863 +runtimeId=6867 minecraft:small_amethyst_bud;facing_direction=3 blockId=587 -runtimeId=6864 +runtimeId=6868 minecraft:small_amethyst_bud;facing_direction=4 blockId=587 -runtimeId=6865 +runtimeId=6869 minecraft:small_amethyst_bud;facing_direction=5 blockId=587 -runtimeId=6866 +runtimeId=6870 minecraft:small_dripleaf_block;upper_block_bit=0;direction=0 blockId=591 -runtimeId=6867 +runtimeId=6871 minecraft:small_dripleaf_block;upper_block_bit=0;direction=1 blockId=591 -runtimeId=6869 +runtimeId=6873 minecraft:small_dripleaf_block;upper_block_bit=0;direction=2 blockId=591 -runtimeId=6871 +runtimeId=6875 minecraft:small_dripleaf_block;upper_block_bit=0;direction=3 blockId=591 -runtimeId=6873 +runtimeId=6877 minecraft:small_dripleaf_block;upper_block_bit=1;direction=0 blockId=591 -runtimeId=6868 +runtimeId=6872 minecraft:small_dripleaf_block;upper_block_bit=1;direction=1 blockId=591 -runtimeId=6870 +runtimeId=6874 minecraft:small_dripleaf_block;upper_block_bit=1;direction=2 blockId=591 -runtimeId=6872 +runtimeId=6876 minecraft:small_dripleaf_block;upper_block_bit=1;direction=3 blockId=591 -runtimeId=6874 +runtimeId=6878 minecraft:smithing_table blockId=457 -runtimeId=6875 +runtimeId=6879 minecraft:smoker;facing_direction=0 blockId=453 -runtimeId=6876 +runtimeId=6880 minecraft:smoker;facing_direction=1 blockId=453 -runtimeId=6877 +runtimeId=6881 minecraft:smoker;facing_direction=2 blockId=453 -runtimeId=6878 +runtimeId=6882 minecraft:smoker;facing_direction=3 blockId=453 -runtimeId=6879 +runtimeId=6883 minecraft:smoker;facing_direction=4 blockId=453 -runtimeId=6880 +runtimeId=6884 minecraft:smoker;facing_direction=5 blockId=453 -runtimeId=6881 +runtimeId=6885 minecraft:smooth_basalt blockId=632 -runtimeId=6882 +runtimeId=6886 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=0 blockId=440 -runtimeId=6883 +runtimeId=6887 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=1 blockId=440 -runtimeId=6884 +runtimeId=6888 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=2 blockId=440 -runtimeId=6885 +runtimeId=6889 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=3 blockId=440 -runtimeId=6886 +runtimeId=6890 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=0 blockId=440 -runtimeId=6887 +runtimeId=6891 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=1 blockId=440 -runtimeId=6888 +runtimeId=6892 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=2 blockId=440 -runtimeId=6889 +runtimeId=6893 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=3 blockId=440 -runtimeId=6890 +runtimeId=6894 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=431 -runtimeId=6891 +runtimeId=6895 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=431 -runtimeId=6892 +runtimeId=6896 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=431 -runtimeId=6893 +runtimeId=6897 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=431 -runtimeId=6894 +runtimeId=6898 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=431 -runtimeId=6895 +runtimeId=6899 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=431 -runtimeId=6896 +runtimeId=6900 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=431 -runtimeId=6897 +runtimeId=6901 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=431 -runtimeId=6898 +runtimeId=6902 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=432 -runtimeId=6899 +runtimeId=6903 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=432 -runtimeId=6900 +runtimeId=6904 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=432 -runtimeId=6901 +runtimeId=6905 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=432 -runtimeId=6902 +runtimeId=6906 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=432 -runtimeId=6903 +runtimeId=6907 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=432 -runtimeId=6904 +runtimeId=6908 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=432 -runtimeId=6905 +runtimeId=6909 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=432 -runtimeId=6906 +runtimeId=6910 minecraft:smooth_stone blockId=438 -runtimeId=6907 +runtimeId=6911 minecraft:snow blockId=80 -runtimeId=6908 +runtimeId=6912 minecraft:snow_layer;covered_bit=0;height=0 blockId=78 -runtimeId=6909 +runtimeId=6913 minecraft:snow_layer;covered_bit=0;height=1 blockId=78 -runtimeId=6910 +runtimeId=6914 minecraft:snow_layer;covered_bit=0;height=2 blockId=78 -runtimeId=6911 +runtimeId=6915 minecraft:snow_layer;covered_bit=0;height=3 blockId=78 -runtimeId=6912 +runtimeId=6916 minecraft:snow_layer;covered_bit=0;height=4 blockId=78 -runtimeId=6913 +runtimeId=6917 minecraft:snow_layer;covered_bit=0;height=5 blockId=78 -runtimeId=6914 +runtimeId=6918 minecraft:snow_layer;covered_bit=0;height=6 blockId=78 -runtimeId=6915 +runtimeId=6919 minecraft:snow_layer;covered_bit=0;height=7 blockId=78 -runtimeId=6916 +runtimeId=6920 minecraft:snow_layer;covered_bit=1;height=0 blockId=78 -runtimeId=6917 +runtimeId=6921 minecraft:snow_layer;covered_bit=1;height=1 blockId=78 -runtimeId=6918 +runtimeId=6922 minecraft:snow_layer;covered_bit=1;height=2 blockId=78 -runtimeId=6919 +runtimeId=6923 minecraft:snow_layer;covered_bit=1;height=3 blockId=78 -runtimeId=6920 +runtimeId=6924 minecraft:snow_layer;covered_bit=1;height=4 blockId=78 -runtimeId=6921 +runtimeId=6925 minecraft:snow_layer;covered_bit=1;height=5 blockId=78 -runtimeId=6922 +runtimeId=6926 minecraft:snow_layer;covered_bit=1;height=6 blockId=78 -runtimeId=6923 +runtimeId=6927 minecraft:snow_layer;covered_bit=1;height=7 blockId=78 -runtimeId=6924 +runtimeId=6928 minecraft:soul_campfire;extinguished=0;direction=0 blockId=545 -runtimeId=6925 +runtimeId=6929 minecraft:soul_campfire;extinguished=0;direction=1 blockId=545 -runtimeId=6926 +runtimeId=6930 minecraft:soul_campfire;extinguished=0;direction=2 blockId=545 -runtimeId=6927 +runtimeId=6931 minecraft:soul_campfire;extinguished=0;direction=3 blockId=545 -runtimeId=6928 +runtimeId=6932 minecraft:soul_campfire;extinguished=1;direction=0 blockId=545 -runtimeId=6929 +runtimeId=6933 minecraft:soul_campfire;extinguished=1;direction=1 blockId=545 -runtimeId=6930 +runtimeId=6934 minecraft:soul_campfire;extinguished=1;direction=2 blockId=545 -runtimeId=6931 +runtimeId=6935 minecraft:soul_campfire;extinguished=1;direction=3 blockId=545 -runtimeId=6932 +runtimeId=6936 minecraft:soul_fire;age=0 blockId=492 -runtimeId=6933 +runtimeId=6937 minecraft:soul_fire;age=1 blockId=492 -runtimeId=6934 +runtimeId=6938 minecraft:soul_fire;age=2 blockId=492 -runtimeId=6935 +runtimeId=6939 minecraft:soul_fire;age=3 blockId=492 -runtimeId=6936 +runtimeId=6940 minecraft:soul_fire;age=4 blockId=492 -runtimeId=6937 +runtimeId=6941 minecraft:soul_fire;age=5 blockId=492 -runtimeId=6938 +runtimeId=6942 minecraft:soul_fire;age=6 blockId=492 -runtimeId=6939 +runtimeId=6943 minecraft:soul_fire;age=7 blockId=492 -runtimeId=6940 +runtimeId=6944 minecraft:soul_fire;age=8 blockId=492 -runtimeId=6941 +runtimeId=6945 minecraft:soul_fire;age=9 blockId=492 -runtimeId=6942 +runtimeId=6946 minecraft:soul_fire;age=10 blockId=492 -runtimeId=6943 +runtimeId=6947 minecraft:soul_fire;age=11 blockId=492 -runtimeId=6944 +runtimeId=6948 minecraft:soul_fire;age=12 blockId=492 -runtimeId=6945 +runtimeId=6949 minecraft:soul_fire;age=13 blockId=492 -runtimeId=6946 +runtimeId=6950 minecraft:soul_fire;age=14 blockId=492 -runtimeId=6947 +runtimeId=6951 minecraft:soul_fire;age=15 blockId=492 -runtimeId=6948 +runtimeId=6952 minecraft:soul_lantern;hanging=0 blockId=524 -runtimeId=6949 +runtimeId=6953 minecraft:soul_lantern;hanging=1 blockId=524 -runtimeId=6950 +runtimeId=6954 minecraft:soul_sand blockId=88 -runtimeId=6951 +runtimeId=6955 minecraft:soul_soil blockId=491 -runtimeId=6952 +runtimeId=6956 minecraft:soul_torch;torch_facing_direction=east blockId=523 -runtimeId=6955 +runtimeId=6959 minecraft:soul_torch;torch_facing_direction=north blockId=523 -runtimeId=6956 +runtimeId=6960 minecraft:soul_torch;torch_facing_direction=south blockId=523 -runtimeId=6957 +runtimeId=6961 minecraft:soul_torch;torch_facing_direction=top blockId=523 -runtimeId=6958 +runtimeId=6962 minecraft:soul_torch;torch_facing_direction=unknown blockId=523 -runtimeId=6953 +runtimeId=6957 minecraft:soul_torch;torch_facing_direction=west blockId=523 -runtimeId=6954 +runtimeId=6958 minecraft:sponge;sponge_type=dry blockId=19 -runtimeId=6959 +runtimeId=6963 minecraft:sponge;sponge_type=wet blockId=19 -runtimeId=6960 +runtimeId=6964 minecraft:spore_blossom blockId=576 -runtimeId=6961 +runtimeId=6965 minecraft:spruce_button;button_pressed_bit=0;facing_direction=0 blockId=399 -runtimeId=6962 +runtimeId=6966 minecraft:spruce_button;button_pressed_bit=0;facing_direction=1 blockId=399 -runtimeId=6963 +runtimeId=6967 minecraft:spruce_button;button_pressed_bit=0;facing_direction=2 blockId=399 -runtimeId=6964 +runtimeId=6968 minecraft:spruce_button;button_pressed_bit=0;facing_direction=3 blockId=399 -runtimeId=6965 +runtimeId=6969 minecraft:spruce_button;button_pressed_bit=0;facing_direction=4 blockId=399 -runtimeId=6966 +runtimeId=6970 minecraft:spruce_button;button_pressed_bit=0;facing_direction=5 blockId=399 -runtimeId=6967 +runtimeId=6971 minecraft:spruce_button;button_pressed_bit=1;facing_direction=0 blockId=399 -runtimeId=6968 +runtimeId=6972 minecraft:spruce_button;button_pressed_bit=1;facing_direction=1 blockId=399 -runtimeId=6969 +runtimeId=6973 minecraft:spruce_button;button_pressed_bit=1;facing_direction=2 blockId=399 -runtimeId=6970 +runtimeId=6974 minecraft:spruce_button;button_pressed_bit=1;facing_direction=3 blockId=399 -runtimeId=6971 +runtimeId=6975 minecraft:spruce_button;button_pressed_bit=1;facing_direction=4 blockId=399 -runtimeId=6972 +runtimeId=6976 minecraft:spruce_button;button_pressed_bit=1;facing_direction=5 blockId=399 -runtimeId=6973 +runtimeId=6977 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6974 +runtimeId=6978 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6975 +runtimeId=6979 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6976 +runtimeId=6980 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6977 +runtimeId=6981 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=6990 +runtimeId=6994 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=6991 +runtimeId=6995 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=6992 +runtimeId=6996 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=6993 +runtimeId=6997 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6982 +runtimeId=6986 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6983 +runtimeId=6987 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6984 +runtimeId=6988 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6985 +runtimeId=6989 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=6998 +runtimeId=7002 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=6999 +runtimeId=7003 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=7000 +runtimeId=7004 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=7001 +runtimeId=7005 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6978 +runtimeId=6982 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6979 +runtimeId=6983 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6980 +runtimeId=6984 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6981 +runtimeId=6985 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=6994 +runtimeId=6998 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=6995 +runtimeId=6999 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=6996 +runtimeId=7000 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=6997 +runtimeId=7001 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6986 +runtimeId=6990 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6987 +runtimeId=6991 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6988 +runtimeId=6992 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6989 +runtimeId=6993 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=7002 +runtimeId=7006 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=7003 +runtimeId=7007 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=7004 +runtimeId=7008 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=7005 +runtimeId=7009 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=183 -runtimeId=7006 +runtimeId=7010 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=183 -runtimeId=7007 +runtimeId=7011 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=183 -runtimeId=7008 +runtimeId=7012 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=183 -runtimeId=7009 +runtimeId=7013 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=183 -runtimeId=7010 +runtimeId=7014 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=183 -runtimeId=7011 +runtimeId=7015 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=183 -runtimeId=7012 +runtimeId=7016 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=183 -runtimeId=7013 +runtimeId=7017 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=183 -runtimeId=7014 +runtimeId=7018 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=183 -runtimeId=7015 +runtimeId=7019 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=183 -runtimeId=7016 +runtimeId=7020 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=183 -runtimeId=7017 +runtimeId=7021 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=183 -runtimeId=7018 +runtimeId=7022 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=183 -runtimeId=7019 +runtimeId=7023 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=183 -runtimeId=7020 +runtimeId=7024 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=183 -runtimeId=7021 +runtimeId=7025 minecraft:spruce_pressure_plate;redstone_signal=0 blockId=409 -runtimeId=7022 +runtimeId=7026 minecraft:spruce_pressure_plate;redstone_signal=1 blockId=409 -runtimeId=7023 +runtimeId=7027 minecraft:spruce_pressure_plate;redstone_signal=2 blockId=409 -runtimeId=7024 +runtimeId=7028 minecraft:spruce_pressure_plate;redstone_signal=3 blockId=409 -runtimeId=7025 +runtimeId=7029 minecraft:spruce_pressure_plate;redstone_signal=4 blockId=409 -runtimeId=7026 +runtimeId=7030 minecraft:spruce_pressure_plate;redstone_signal=5 blockId=409 -runtimeId=7027 +runtimeId=7031 minecraft:spruce_pressure_plate;redstone_signal=6 blockId=409 -runtimeId=7028 +runtimeId=7032 minecraft:spruce_pressure_plate;redstone_signal=7 blockId=409 -runtimeId=7029 +runtimeId=7033 minecraft:spruce_pressure_plate;redstone_signal=8 blockId=409 -runtimeId=7030 +runtimeId=7034 minecraft:spruce_pressure_plate;redstone_signal=9 blockId=409 -runtimeId=7031 +runtimeId=7035 minecraft:spruce_pressure_plate;redstone_signal=10 blockId=409 -runtimeId=7032 +runtimeId=7036 minecraft:spruce_pressure_plate;redstone_signal=11 blockId=409 -runtimeId=7033 +runtimeId=7037 minecraft:spruce_pressure_plate;redstone_signal=12 blockId=409 -runtimeId=7034 +runtimeId=7038 minecraft:spruce_pressure_plate;redstone_signal=13 blockId=409 -runtimeId=7035 +runtimeId=7039 minecraft:spruce_pressure_plate;redstone_signal=14 blockId=409 -runtimeId=7036 +runtimeId=7040 minecraft:spruce_pressure_plate;redstone_signal=15 blockId=409 -runtimeId=7037 +runtimeId=7041 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=0 blockId=134 -runtimeId=7038 +runtimeId=7042 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=1 blockId=134 -runtimeId=7039 +runtimeId=7043 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=2 blockId=134 -runtimeId=7040 +runtimeId=7044 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=3 blockId=134 -runtimeId=7041 +runtimeId=7045 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=0 blockId=134 -runtimeId=7042 +runtimeId=7046 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=1 blockId=134 -runtimeId=7043 +runtimeId=7047 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=2 blockId=134 -runtimeId=7044 +runtimeId=7048 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=3 blockId=134 -runtimeId=7045 +runtimeId=7049 minecraft:spruce_standing_sign;ground_sign_direction=0 blockId=436 -runtimeId=7046 +runtimeId=7050 minecraft:spruce_standing_sign;ground_sign_direction=1 blockId=436 -runtimeId=7047 +runtimeId=7051 minecraft:spruce_standing_sign;ground_sign_direction=2 blockId=436 -runtimeId=7048 +runtimeId=7052 minecraft:spruce_standing_sign;ground_sign_direction=3 blockId=436 -runtimeId=7049 +runtimeId=7053 minecraft:spruce_standing_sign;ground_sign_direction=4 blockId=436 -runtimeId=7050 +runtimeId=7054 minecraft:spruce_standing_sign;ground_sign_direction=5 blockId=436 -runtimeId=7051 +runtimeId=7055 minecraft:spruce_standing_sign;ground_sign_direction=6 blockId=436 -runtimeId=7052 +runtimeId=7056 minecraft:spruce_standing_sign;ground_sign_direction=7 blockId=436 -runtimeId=7053 +runtimeId=7057 minecraft:spruce_standing_sign;ground_sign_direction=8 blockId=436 -runtimeId=7054 +runtimeId=7058 minecraft:spruce_standing_sign;ground_sign_direction=9 blockId=436 -runtimeId=7055 +runtimeId=7059 minecraft:spruce_standing_sign;ground_sign_direction=10 blockId=436 -runtimeId=7056 +runtimeId=7060 minecraft:spruce_standing_sign;ground_sign_direction=11 blockId=436 -runtimeId=7057 +runtimeId=7061 minecraft:spruce_standing_sign;ground_sign_direction=12 blockId=436 -runtimeId=7058 +runtimeId=7062 minecraft:spruce_standing_sign;ground_sign_direction=13 blockId=436 -runtimeId=7059 +runtimeId=7063 minecraft:spruce_standing_sign;ground_sign_direction=14 blockId=436 -runtimeId=7060 +runtimeId=7064 minecraft:spruce_standing_sign;ground_sign_direction=15 blockId=436 -runtimeId=7061 +runtimeId=7065 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=404 -runtimeId=7062 +runtimeId=7066 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=404 -runtimeId=7063 +runtimeId=7067 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=404 -runtimeId=7064 +runtimeId=7068 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=404 -runtimeId=7065 +runtimeId=7069 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=404 -runtimeId=7066 +runtimeId=7070 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=404 -runtimeId=7067 +runtimeId=7071 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=404 -runtimeId=7068 +runtimeId=7072 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=404 -runtimeId=7069 +runtimeId=7073 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=404 -runtimeId=7070 +runtimeId=7074 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=404 -runtimeId=7071 +runtimeId=7075 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=404 -runtimeId=7072 +runtimeId=7076 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=404 -runtimeId=7073 +runtimeId=7077 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=404 -runtimeId=7074 +runtimeId=7078 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=404 -runtimeId=7075 +runtimeId=7079 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=404 -runtimeId=7076 +runtimeId=7080 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=404 -runtimeId=7077 +runtimeId=7081 minecraft:spruce_wall_sign;facing_direction=0 blockId=437 -runtimeId=7078 +runtimeId=7082 minecraft:spruce_wall_sign;facing_direction=1 blockId=437 -runtimeId=7079 +runtimeId=7083 minecraft:spruce_wall_sign;facing_direction=2 blockId=437 -runtimeId=7080 +runtimeId=7084 minecraft:spruce_wall_sign;facing_direction=3 blockId=437 -runtimeId=7081 +runtimeId=7085 minecraft:spruce_wall_sign;facing_direction=4 blockId=437 -runtimeId=7082 +runtimeId=7086 minecraft:spruce_wall_sign;facing_direction=5 blockId=437 -runtimeId=7083 +runtimeId=7087 minecraft:stained_glass;color=black blockId=241 -runtimeId=7099 +runtimeId=7103 minecraft:stained_glass;color=blue blockId=241 -runtimeId=7095 +runtimeId=7099 minecraft:stained_glass;color=brown blockId=241 -runtimeId=7096 +runtimeId=7100 minecraft:stained_glass;color=cyan blockId=241 -runtimeId=7093 +runtimeId=7097 minecraft:stained_glass;color=gray blockId=241 -runtimeId=7091 +runtimeId=7095 minecraft:stained_glass;color=green blockId=241 -runtimeId=7097 +runtimeId=7101 minecraft:stained_glass;color=light_blue blockId=241 -runtimeId=7087 +runtimeId=7091 minecraft:stained_glass;color=lime blockId=241 -runtimeId=7089 +runtimeId=7093 minecraft:stained_glass;color=magenta blockId=241 -runtimeId=7086 +runtimeId=7090 minecraft:stained_glass;color=orange blockId=241 -runtimeId=7085 +runtimeId=7089 minecraft:stained_glass;color=pink blockId=241 -runtimeId=7090 +runtimeId=7094 minecraft:stained_glass;color=purple blockId=241 -runtimeId=7094 +runtimeId=7098 minecraft:stained_glass;color=red blockId=241 -runtimeId=7098 +runtimeId=7102 minecraft:stained_glass;color=silver blockId=241 -runtimeId=7092 +runtimeId=7096 minecraft:stained_glass;color=white blockId=241 -runtimeId=7084 +runtimeId=7088 minecraft:stained_glass;color=yellow blockId=241 -runtimeId=7088 +runtimeId=7092 minecraft:stained_glass_pane;color=black blockId=160 -runtimeId=7115 +runtimeId=7119 minecraft:stained_glass_pane;color=blue blockId=160 -runtimeId=7111 +runtimeId=7115 minecraft:stained_glass_pane;color=brown blockId=160 -runtimeId=7112 +runtimeId=7116 minecraft:stained_glass_pane;color=cyan blockId=160 -runtimeId=7109 +runtimeId=7113 minecraft:stained_glass_pane;color=gray blockId=160 -runtimeId=7107 +runtimeId=7111 minecraft:stained_glass_pane;color=green blockId=160 -runtimeId=7113 +runtimeId=7117 minecraft:stained_glass_pane;color=light_blue blockId=160 -runtimeId=7103 +runtimeId=7107 minecraft:stained_glass_pane;color=lime blockId=160 -runtimeId=7105 +runtimeId=7109 minecraft:stained_glass_pane;color=magenta blockId=160 -runtimeId=7102 +runtimeId=7106 minecraft:stained_glass_pane;color=orange blockId=160 -runtimeId=7101 +runtimeId=7105 minecraft:stained_glass_pane;color=pink blockId=160 -runtimeId=7106 +runtimeId=7110 minecraft:stained_glass_pane;color=purple blockId=160 -runtimeId=7110 +runtimeId=7114 minecraft:stained_glass_pane;color=red blockId=160 -runtimeId=7114 +runtimeId=7118 minecraft:stained_glass_pane;color=silver blockId=160 -runtimeId=7108 +runtimeId=7112 minecraft:stained_glass_pane;color=white blockId=160 -runtimeId=7100 +runtimeId=7104 minecraft:stained_glass_pane;color=yellow blockId=160 -runtimeId=7104 +runtimeId=7108 minecraft:stained_hardened_clay;color=black blockId=159 -runtimeId=7131 +runtimeId=7135 minecraft:stained_hardened_clay;color=blue blockId=159 -runtimeId=7127 +runtimeId=7131 minecraft:stained_hardened_clay;color=brown blockId=159 -runtimeId=7128 +runtimeId=7132 minecraft:stained_hardened_clay;color=cyan blockId=159 -runtimeId=7125 +runtimeId=7129 minecraft:stained_hardened_clay;color=gray blockId=159 -runtimeId=7123 +runtimeId=7127 minecraft:stained_hardened_clay;color=green blockId=159 -runtimeId=7129 +runtimeId=7133 minecraft:stained_hardened_clay;color=light_blue blockId=159 -runtimeId=7119 +runtimeId=7123 minecraft:stained_hardened_clay;color=lime blockId=159 -runtimeId=7121 +runtimeId=7125 minecraft:stained_hardened_clay;color=magenta blockId=159 -runtimeId=7118 +runtimeId=7122 minecraft:stained_hardened_clay;color=orange blockId=159 -runtimeId=7117 +runtimeId=7121 minecraft:stained_hardened_clay;color=pink blockId=159 -runtimeId=7122 +runtimeId=7126 minecraft:stained_hardened_clay;color=purple blockId=159 -runtimeId=7126 +runtimeId=7130 minecraft:stained_hardened_clay;color=red blockId=159 -runtimeId=7130 +runtimeId=7134 minecraft:stained_hardened_clay;color=silver blockId=159 -runtimeId=7124 +runtimeId=7128 minecraft:stained_hardened_clay;color=white blockId=159 -runtimeId=7116 +runtimeId=7120 minecraft:stained_hardened_clay;color=yellow blockId=159 -runtimeId=7120 +runtimeId=7124 minecraft:standing_banner;ground_sign_direction=0 blockId=176 -runtimeId=7132 +runtimeId=7136 minecraft:standing_banner;ground_sign_direction=1 blockId=176 -runtimeId=7133 +runtimeId=7137 minecraft:standing_banner;ground_sign_direction=2 blockId=176 -runtimeId=7134 +runtimeId=7138 minecraft:standing_banner;ground_sign_direction=3 blockId=176 -runtimeId=7135 +runtimeId=7139 minecraft:standing_banner;ground_sign_direction=4 blockId=176 -runtimeId=7136 +runtimeId=7140 minecraft:standing_banner;ground_sign_direction=5 blockId=176 -runtimeId=7137 +runtimeId=7141 minecraft:standing_banner;ground_sign_direction=6 blockId=176 -runtimeId=7138 +runtimeId=7142 minecraft:standing_banner;ground_sign_direction=7 blockId=176 -runtimeId=7139 +runtimeId=7143 minecraft:standing_banner;ground_sign_direction=8 blockId=176 -runtimeId=7140 +runtimeId=7144 minecraft:standing_banner;ground_sign_direction=9 blockId=176 -runtimeId=7141 +runtimeId=7145 minecraft:standing_banner;ground_sign_direction=10 blockId=176 -runtimeId=7142 +runtimeId=7146 minecraft:standing_banner;ground_sign_direction=11 blockId=176 -runtimeId=7143 +runtimeId=7147 minecraft:standing_banner;ground_sign_direction=12 blockId=176 -runtimeId=7144 +runtimeId=7148 minecraft:standing_banner;ground_sign_direction=13 blockId=176 -runtimeId=7145 +runtimeId=7149 minecraft:standing_banner;ground_sign_direction=14 blockId=176 -runtimeId=7146 +runtimeId=7150 minecraft:standing_banner;ground_sign_direction=15 blockId=176 -runtimeId=7147 +runtimeId=7151 minecraft:standing_sign;ground_sign_direction=0 blockId=63 -runtimeId=7148 +runtimeId=7152 minecraft:standing_sign;ground_sign_direction=1 blockId=63 -runtimeId=7149 +runtimeId=7153 minecraft:standing_sign;ground_sign_direction=2 blockId=63 -runtimeId=7150 +runtimeId=7154 minecraft:standing_sign;ground_sign_direction=3 blockId=63 -runtimeId=7151 +runtimeId=7155 minecraft:standing_sign;ground_sign_direction=4 blockId=63 -runtimeId=7152 +runtimeId=7156 minecraft:standing_sign;ground_sign_direction=5 blockId=63 -runtimeId=7153 +runtimeId=7157 minecraft:standing_sign;ground_sign_direction=6 blockId=63 -runtimeId=7154 +runtimeId=7158 minecraft:standing_sign;ground_sign_direction=7 blockId=63 -runtimeId=7155 +runtimeId=7159 minecraft:standing_sign;ground_sign_direction=8 blockId=63 -runtimeId=7156 +runtimeId=7160 minecraft:standing_sign;ground_sign_direction=9 blockId=63 -runtimeId=7157 +runtimeId=7161 minecraft:standing_sign;ground_sign_direction=10 blockId=63 -runtimeId=7158 +runtimeId=7162 minecraft:standing_sign;ground_sign_direction=11 blockId=63 -runtimeId=7159 +runtimeId=7163 minecraft:standing_sign;ground_sign_direction=12 blockId=63 -runtimeId=7160 +runtimeId=7164 minecraft:standing_sign;ground_sign_direction=13 blockId=63 -runtimeId=7161 +runtimeId=7165 minecraft:standing_sign;ground_sign_direction=14 blockId=63 -runtimeId=7162 +runtimeId=7166 minecraft:standing_sign;ground_sign_direction=15 blockId=63 -runtimeId=7163 +runtimeId=7167 minecraft:stickyPistonArmCollision;facing_direction=0 blockId=472 -runtimeId=7170 +runtimeId=7174 minecraft:stickyPistonArmCollision;facing_direction=1 blockId=472 -runtimeId=7171 +runtimeId=7175 minecraft:stickyPistonArmCollision;facing_direction=2 blockId=472 -runtimeId=7172 +runtimeId=7176 minecraft:stickyPistonArmCollision;facing_direction=3 blockId=472 -runtimeId=7173 +runtimeId=7177 minecraft:stickyPistonArmCollision;facing_direction=4 blockId=472 -runtimeId=7174 +runtimeId=7178 minecraft:stickyPistonArmCollision;facing_direction=5 blockId=472 -runtimeId=7175 +runtimeId=7179 minecraft:sticky_piston;facing_direction=0 blockId=29 -runtimeId=7164 +runtimeId=7168 minecraft:sticky_piston;facing_direction=1 blockId=29 -runtimeId=7165 +runtimeId=7169 minecraft:sticky_piston;facing_direction=2 blockId=29 -runtimeId=7166 +runtimeId=7170 minecraft:sticky_piston;facing_direction=3 blockId=29 -runtimeId=7167 +runtimeId=7171 minecraft:sticky_piston;facing_direction=4 blockId=29 -runtimeId=7168 +runtimeId=7172 minecraft:sticky_piston;facing_direction=5 blockId=29 -runtimeId=7169 +runtimeId=7173 minecraft:stone;stone_type=andesite blockId=1 -runtimeId=7181 +runtimeId=7185 minecraft:stone;stone_type=andesite_smooth blockId=1 -runtimeId=7182 +runtimeId=7186 minecraft:stone;stone_type=diorite blockId=1 -runtimeId=7179 +runtimeId=7183 minecraft:stone;stone_type=diorite_smooth blockId=1 -runtimeId=7180 +runtimeId=7184 minecraft:stone;stone_type=granite blockId=1 -runtimeId=7177 +runtimeId=7181 minecraft:stone;stone_type=granite_smooth blockId=1 -runtimeId=7178 +runtimeId=7182 minecraft:stone;stone_type=stone blockId=1 -runtimeId=7176 +runtimeId=7180 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=109 -runtimeId=7183 +runtimeId=7187 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=109 -runtimeId=7184 +runtimeId=7188 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=109 -runtimeId=7185 +runtimeId=7189 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=109 -runtimeId=7186 +runtimeId=7190 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=109 -runtimeId=7187 +runtimeId=7191 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=109 -runtimeId=7188 +runtimeId=7192 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=109 -runtimeId=7189 +runtimeId=7193 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=109 -runtimeId=7190 +runtimeId=7194 minecraft:stone_button;button_pressed_bit=0;facing_direction=0 blockId=77 -runtimeId=7191 +runtimeId=7195 minecraft:stone_button;button_pressed_bit=0;facing_direction=1 blockId=77 -runtimeId=7192 +runtimeId=7196 minecraft:stone_button;button_pressed_bit=0;facing_direction=2 blockId=77 -runtimeId=7193 +runtimeId=7197 minecraft:stone_button;button_pressed_bit=0;facing_direction=3 blockId=77 -runtimeId=7194 +runtimeId=7198 minecraft:stone_button;button_pressed_bit=0;facing_direction=4 blockId=77 -runtimeId=7195 +runtimeId=7199 minecraft:stone_button;button_pressed_bit=0;facing_direction=5 blockId=77 -runtimeId=7196 +runtimeId=7200 minecraft:stone_button;button_pressed_bit=1;facing_direction=0 blockId=77 -runtimeId=7197 +runtimeId=7201 minecraft:stone_button;button_pressed_bit=1;facing_direction=1 blockId=77 -runtimeId=7198 +runtimeId=7202 minecraft:stone_button;button_pressed_bit=1;facing_direction=2 blockId=77 -runtimeId=7199 +runtimeId=7203 minecraft:stone_button;button_pressed_bit=1;facing_direction=3 blockId=77 -runtimeId=7200 +runtimeId=7204 minecraft:stone_button;button_pressed_bit=1;facing_direction=4 blockId=77 -runtimeId=7201 +runtimeId=7205 minecraft:stone_button;button_pressed_bit=1;facing_direction=5 blockId=77 -runtimeId=7202 +runtimeId=7206 minecraft:stone_pressure_plate;redstone_signal=0 blockId=70 -runtimeId=7203 +runtimeId=7207 minecraft:stone_pressure_plate;redstone_signal=1 blockId=70 -runtimeId=7204 +runtimeId=7208 minecraft:stone_pressure_plate;redstone_signal=2 blockId=70 -runtimeId=7205 +runtimeId=7209 minecraft:stone_pressure_plate;redstone_signal=3 blockId=70 -runtimeId=7206 +runtimeId=7210 minecraft:stone_pressure_plate;redstone_signal=4 blockId=70 -runtimeId=7207 +runtimeId=7211 minecraft:stone_pressure_plate;redstone_signal=5 blockId=70 -runtimeId=7208 +runtimeId=7212 minecraft:stone_pressure_plate;redstone_signal=6 blockId=70 -runtimeId=7209 +runtimeId=7213 minecraft:stone_pressure_plate;redstone_signal=7 blockId=70 -runtimeId=7210 +runtimeId=7214 minecraft:stone_pressure_plate;redstone_signal=8 blockId=70 -runtimeId=7211 +runtimeId=7215 minecraft:stone_pressure_plate;redstone_signal=9 blockId=70 -runtimeId=7212 +runtimeId=7216 minecraft:stone_pressure_plate;redstone_signal=10 blockId=70 -runtimeId=7213 +runtimeId=7217 minecraft:stone_pressure_plate;redstone_signal=11 blockId=70 -runtimeId=7214 +runtimeId=7218 minecraft:stone_pressure_plate;redstone_signal=12 blockId=70 -runtimeId=7215 +runtimeId=7219 minecraft:stone_pressure_plate;redstone_signal=13 blockId=70 -runtimeId=7216 +runtimeId=7220 minecraft:stone_pressure_plate;redstone_signal=14 blockId=70 -runtimeId=7217 +runtimeId=7221 minecraft:stone_pressure_plate;redstone_signal=15 blockId=70 -runtimeId=7218 +runtimeId=7222 + +minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=0 +blockId=44 +runtimeId=7227 + +minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=1 +blockId=44 +runtimeId=7235 + +minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=0 +blockId=44 +runtimeId=7226 + +minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=1 +blockId=44 +runtimeId=7234 + +minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0 +blockId=44 +runtimeId=7230 + +minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=1 +blockId=44 +runtimeId=7238 + +minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0 +blockId=44 +runtimeId=7229 + +minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=1 +blockId=44 +runtimeId=7237 + +minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0 +blockId=44 +runtimeId=7224 + +minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=1 +blockId=44 +runtimeId=7232 + +minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0 +blockId=44 +runtimeId=7223 + +minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=1 +blockId=44 +runtimeId=7231 + +minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0 +blockId=44 +runtimeId=7228 + +minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=1 +blockId=44 +runtimeId=7236 + +minecraft:stone_slab;stone_slab_type=wood;top_slot_bit=0 +blockId=44 +runtimeId=7225 + +minecraft:stone_slab;stone_slab_type=wood;top_slot_bit=1 +blockId=44 +runtimeId=7233 minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0 blockId=182 -runtimeId=7240 +runtimeId=7244 minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=1 blockId=182 -runtimeId=7248 +runtimeId=7252 minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0 blockId=182 -runtimeId=7239 +runtimeId=7243 minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=1 blockId=182 -runtimeId=7247 +runtimeId=7251 minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0 blockId=182 -runtimeId=7238 +runtimeId=7242 minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=1 blockId=182 -runtimeId=7246 +runtimeId=7250 minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0 blockId=182 -runtimeId=7237 +runtimeId=7241 minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=1 blockId=182 -runtimeId=7245 +runtimeId=7249 minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0 blockId=182 -runtimeId=7236 +runtimeId=7240 minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=1 blockId=182 -runtimeId=7244 +runtimeId=7248 minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0 blockId=182 -runtimeId=7242 +runtimeId=7246 minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=1 blockId=182 -runtimeId=7250 +runtimeId=7254 minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0 blockId=182 -runtimeId=7235 +runtimeId=7239 minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=1 blockId=182 -runtimeId=7243 +runtimeId=7247 minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0 blockId=182 -runtimeId=7241 +runtimeId=7245 minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=1 blockId=182 -runtimeId=7249 +runtimeId=7253 minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0 blockId=417 -runtimeId=7254 +runtimeId=7258 minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=1 blockId=417 -runtimeId=7262 +runtimeId=7266 minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0 blockId=417 -runtimeId=7255 +runtimeId=7259 minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=1 blockId=417 -runtimeId=7263 +runtimeId=7267 minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0 blockId=417 -runtimeId=7251 +runtimeId=7255 minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=1 blockId=417 -runtimeId=7259 +runtimeId=7263 minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=0 blockId=417 -runtimeId=7257 +runtimeId=7261 minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=1 blockId=417 -runtimeId=7265 +runtimeId=7269 minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0 blockId=417 -runtimeId=7253 +runtimeId=7257 minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=1 blockId=417 -runtimeId=7261 +runtimeId=7265 minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0 blockId=417 -runtimeId=7256 +runtimeId=7260 minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=1 blockId=417 -runtimeId=7264 +runtimeId=7268 minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0 blockId=417 -runtimeId=7258 +runtimeId=7262 minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=1 blockId=417 -runtimeId=7266 +runtimeId=7270 minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0 blockId=417 -runtimeId=7252 +runtimeId=7256 minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=1 blockId=417 -runtimeId=7260 +runtimeId=7264 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_red_sandstone blockId=421 -runtimeId=7271 +runtimeId=7275 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_sandstone blockId=421 -runtimeId=7270 +runtimeId=7274 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=mossy_stone_brick blockId=421 -runtimeId=7267 +runtimeId=7271 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=smooth_quartz blockId=421 -runtimeId=7268 +runtimeId=7272 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=stone blockId=421 -runtimeId=7269 +runtimeId=7273 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_red_sandstone blockId=421 -runtimeId=7276 +runtimeId=7280 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_sandstone blockId=421 -runtimeId=7275 +runtimeId=7279 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=mossy_stone_brick blockId=421 -runtimeId=7272 +runtimeId=7276 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=smooth_quartz blockId=421 -runtimeId=7273 +runtimeId=7277 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=stone blockId=421 -runtimeId=7274 - -minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=0 -blockId=44 -runtimeId=7223 - -minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=1 -blockId=44 -runtimeId=7231 - -minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=0 -blockId=44 -runtimeId=7222 - -minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=1 -blockId=44 -runtimeId=7230 - -minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0 -blockId=44 -runtimeId=7226 - -minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=1 -blockId=44 -runtimeId=7234 - -minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0 -blockId=44 -runtimeId=7225 - -minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=1 -blockId=44 -runtimeId=7233 - -minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0 -blockId=44 -runtimeId=7220 - -minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=1 -blockId=44 -runtimeId=7228 - -minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0 -blockId=44 -runtimeId=7219 - -minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=1 -blockId=44 -runtimeId=7227 - -minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0 -blockId=44 -runtimeId=7224 - -minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=1 -blockId=44 -runtimeId=7232 - -minecraft:stone_slab;stone_slab_type=wood;top_slot_bit=0 -blockId=44 -runtimeId=7221 - -minecraft:stone_slab;stone_slab_type=wood;top_slot_bit=1 -blockId=44 -runtimeId=7229 +runtimeId=7278 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=67 -runtimeId=7277 +runtimeId=7281 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=67 -runtimeId=7278 +runtimeId=7282 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=67 -runtimeId=7279 +runtimeId=7283 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=67 -runtimeId=7280 +runtimeId=7284 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=67 -runtimeId=7281 +runtimeId=7285 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=67 -runtimeId=7282 +runtimeId=7286 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=67 -runtimeId=7283 +runtimeId=7287 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=67 -runtimeId=7284 +runtimeId=7288 minecraft:stonebrick;stone_brick_type=chiseled blockId=98 -runtimeId=7288 +runtimeId=7292 minecraft:stonebrick;stone_brick_type=cracked blockId=98 -runtimeId=7287 +runtimeId=7291 minecraft:stonebrick;stone_brick_type=default blockId=98 -runtimeId=7285 +runtimeId=7289 minecraft:stonebrick;stone_brick_type=mossy blockId=98 -runtimeId=7286 +runtimeId=7290 minecraft:stonebrick;stone_brick_type=smooth blockId=98 -runtimeId=7289 +runtimeId=7293 minecraft:stonecutter blockId=245 -runtimeId=7290 +runtimeId=7294 minecraft:stonecutter_block;facing_direction=0 blockId=452 -runtimeId=7291 +runtimeId=7295 minecraft:stonecutter_block;facing_direction=1 blockId=452 -runtimeId=7292 +runtimeId=7296 minecraft:stonecutter_block;facing_direction=2 blockId=452 -runtimeId=7293 +runtimeId=7297 minecraft:stonecutter_block;facing_direction=3 blockId=452 -runtimeId=7294 +runtimeId=7298 minecraft:stonecutter_block;facing_direction=4 blockId=452 -runtimeId=7295 +runtimeId=7299 minecraft:stonecutter_block;facing_direction=5 blockId=452 -runtimeId=7296 - -minecraft:stripped_acacia_log;pillar_axis=x -blockId=263 -runtimeId=7298 +runtimeId=7300 minecraft:stripped_acacia_log;pillar_axis=y blockId=263 -runtimeId=7297 - -minecraft:stripped_acacia_log;pillar_axis=z -blockId=263 -runtimeId=7299 - -minecraft:stripped_birch_log;pillar_axis=x -blockId=261 -runtimeId=7301 +runtimeId=7303 minecraft:stripped_birch_log;pillar_axis=y blockId=261 -runtimeId=7300 - -minecraft:stripped_birch_log;pillar_axis=z -blockId=261 -runtimeId=7302 - -minecraft:stripped_crimson_hyphae;pillar_axis=x -blockId=555 -runtimeId=7304 +runtimeId=7306 minecraft:stripped_crimson_hyphae;pillar_axis=y blockId=555 -runtimeId=7303 - -minecraft:stripped_crimson_hyphae;pillar_axis=z -blockId=555 -runtimeId=7305 - -minecraft:stripped_crimson_stem;pillar_axis=x -blockId=495 -runtimeId=7307 +runtimeId=7309 minecraft:stripped_crimson_stem;pillar_axis=y blockId=495 -runtimeId=7306 - -minecraft:stripped_crimson_stem;pillar_axis=z -blockId=495 -runtimeId=7308 - -minecraft:stripped_dark_oak_log;pillar_axis=x -blockId=264 -runtimeId=7310 +runtimeId=7312 minecraft:stripped_dark_oak_log;pillar_axis=y blockId=264 -runtimeId=7309 - -minecraft:stripped_dark_oak_log;pillar_axis=z -blockId=264 -runtimeId=7311 - -minecraft:stripped_jungle_log;pillar_axis=x -blockId=262 -runtimeId=7313 +runtimeId=7315 minecraft:stripped_jungle_log;pillar_axis=y blockId=262 -runtimeId=7312 - -minecraft:stripped_jungle_log;pillar_axis=z -blockId=262 -runtimeId=7314 - -minecraft:stripped_oak_log;pillar_axis=x -blockId=265 -runtimeId=7316 +runtimeId=7318 minecraft:stripped_oak_log;pillar_axis=y blockId=265 -runtimeId=7315 - -minecraft:stripped_oak_log;pillar_axis=z -blockId=265 -runtimeId=7317 - -minecraft:stripped_spruce_log;pillar_axis=x -blockId=260 -runtimeId=7319 +runtimeId=7321 minecraft:stripped_spruce_log;pillar_axis=y blockId=260 -runtimeId=7318 - -minecraft:stripped_spruce_log;pillar_axis=z -blockId=260 -runtimeId=7320 - -minecraft:stripped_warped_hyphae;pillar_axis=x -blockId=556 -runtimeId=7322 +runtimeId=7324 minecraft:stripped_warped_hyphae;pillar_axis=y blockId=556 -runtimeId=7321 - -minecraft:stripped_warped_hyphae;pillar_axis=z -blockId=556 -runtimeId=7323 - -minecraft:stripped_warped_stem;pillar_axis=x -blockId=496 -runtimeId=7325 +runtimeId=7327 minecraft:stripped_warped_stem;pillar_axis=y blockId=496 -runtimeId=7324 - -minecraft:stripped_warped_stem;pillar_axis=z -blockId=496 -runtimeId=7326 +runtimeId=7330 minecraft:structure_block;structure_block_type=corner blockId=252 -runtimeId=7330 +runtimeId=7334 minecraft:structure_block;structure_block_type=data blockId=252 -runtimeId=7327 +runtimeId=7331 minecraft:structure_block;structure_block_type=export blockId=252 -runtimeId=7332 +runtimeId=7336 minecraft:structure_block;structure_block_type=invalid blockId=252 -runtimeId=7331 +runtimeId=7335 minecraft:structure_block;structure_block_type=load blockId=252 -runtimeId=7329 +runtimeId=7333 minecraft:structure_block;structure_block_type=save blockId=252 -runtimeId=7328 +runtimeId=7332 minecraft:structure_void;structure_void_type=air blockId=217 -runtimeId=7334 +runtimeId=7338 minecraft:structure_void;structure_void_type=void blockId=217 -runtimeId=7333 +runtimeId=7337 minecraft:sweet_berry_bush;growth=0 blockId=462 -runtimeId=7335 +runtimeId=7339 minecraft:sweet_berry_bush;growth=1 blockId=462 -runtimeId=7336 +runtimeId=7340 minecraft:sweet_berry_bush;growth=2 blockId=462 -runtimeId=7337 +runtimeId=7341 minecraft:sweet_berry_bush;growth=3 blockId=462 -runtimeId=7338 +runtimeId=7342 minecraft:sweet_berry_bush;growth=4 blockId=462 -runtimeId=7339 +runtimeId=7343 minecraft:sweet_berry_bush;growth=5 blockId=462 -runtimeId=7340 +runtimeId=7344 minecraft:sweet_berry_bush;growth=6 blockId=462 -runtimeId=7341 +runtimeId=7345 minecraft:sweet_berry_bush;growth=7 blockId=462 -runtimeId=7342 +runtimeId=7346 minecraft:tallgrass;tall_grass_type=default blockId=31 -runtimeId=7343 +runtimeId=7347 minecraft:tallgrass;tall_grass_type=fern blockId=31 -runtimeId=7345 +runtimeId=7349 minecraft:tallgrass;tall_grass_type=snow blockId=31 -runtimeId=7346 +runtimeId=7350 minecraft:tallgrass;tall_grass_type=tall blockId=31 -runtimeId=7344 +runtimeId=7348 minecraft:target blockId=494 -runtimeId=7347 +runtimeId=7351 minecraft:tinted_glass blockId=589 -runtimeId=7348 +runtimeId=7352 minecraft:tnt;explode_bit=0;allow_underwater_bit=0 blockId=46 -runtimeId=7349 +runtimeId=7353 minecraft:tnt;explode_bit=0;allow_underwater_bit=1 blockId=46 -runtimeId=7351 +runtimeId=7355 minecraft:tnt;explode_bit=1;allow_underwater_bit=0 blockId=46 -runtimeId=7350 +runtimeId=7354 minecraft:tnt;explode_bit=1;allow_underwater_bit=1 blockId=46 -runtimeId=7352 +runtimeId=7356 minecraft:torch;torch_facing_direction=east blockId=50 -runtimeId=7355 +runtimeId=7359 minecraft:torch;torch_facing_direction=north blockId=50 -runtimeId=7356 +runtimeId=7360 minecraft:torch;torch_facing_direction=south blockId=50 -runtimeId=7357 +runtimeId=7361 minecraft:torch;torch_facing_direction=top blockId=50 -runtimeId=7358 +runtimeId=7362 minecraft:torch;torch_facing_direction=unknown blockId=50 -runtimeId=7353 +runtimeId=7357 minecraft:torch;torch_facing_direction=west blockId=50 -runtimeId=7354 +runtimeId=7358 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=96 -runtimeId=7359 +runtimeId=7363 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=96 -runtimeId=7360 +runtimeId=7364 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=96 -runtimeId=7361 +runtimeId=7365 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=96 -runtimeId=7362 +runtimeId=7366 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=96 -runtimeId=7363 +runtimeId=7367 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=96 -runtimeId=7364 +runtimeId=7368 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=96 -runtimeId=7365 +runtimeId=7369 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=96 -runtimeId=7366 +runtimeId=7370 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=96 -runtimeId=7367 +runtimeId=7371 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=96 -runtimeId=7368 +runtimeId=7372 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=96 -runtimeId=7369 +runtimeId=7373 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=96 -runtimeId=7370 +runtimeId=7374 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=96 -runtimeId=7371 +runtimeId=7375 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=96 -runtimeId=7372 +runtimeId=7376 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=96 -runtimeId=7373 +runtimeId=7377 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=96 -runtimeId=7374 +runtimeId=7378 minecraft:trapped_chest;facing_direction=0 blockId=146 -runtimeId=7375 +runtimeId=7379 minecraft:trapped_chest;facing_direction=1 blockId=146 -runtimeId=7376 +runtimeId=7380 minecraft:trapped_chest;facing_direction=2 blockId=146 -runtimeId=7377 +runtimeId=7381 minecraft:trapped_chest;facing_direction=3 blockId=146 -runtimeId=7378 +runtimeId=7382 minecraft:trapped_chest;facing_direction=4 blockId=146 -runtimeId=7379 +runtimeId=7383 minecraft:trapped_chest;facing_direction=5 blockId=146 -runtimeId=7380 +runtimeId=7384 minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7381 +runtimeId=7385 minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7385 +runtimeId=7389 minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7389 +runtimeId=7393 minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7393 +runtimeId=7397 minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7383 +runtimeId=7387 minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7387 +runtimeId=7391 minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7391 +runtimeId=7395 minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7395 +runtimeId=7399 minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7382 +runtimeId=7386 minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7386 +runtimeId=7390 minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7390 +runtimeId=7394 minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7394 +runtimeId=7398 minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7384 +runtimeId=7388 minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7388 +runtimeId=7392 minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7392 +runtimeId=7396 minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7396 +runtimeId=7400 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=0 blockId=131 -runtimeId=7397 +runtimeId=7401 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=1 blockId=131 -runtimeId=7398 +runtimeId=7402 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=2 blockId=131 -runtimeId=7399 +runtimeId=7403 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=3 blockId=131 -runtimeId=7400 +runtimeId=7404 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=0 blockId=131 -runtimeId=7401 +runtimeId=7405 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=1 blockId=131 -runtimeId=7402 +runtimeId=7406 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=2 blockId=131 -runtimeId=7403 +runtimeId=7407 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=3 blockId=131 -runtimeId=7404 +runtimeId=7408 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=0 blockId=131 -runtimeId=7405 +runtimeId=7409 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=1 blockId=131 -runtimeId=7406 +runtimeId=7410 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=2 blockId=131 -runtimeId=7407 +runtimeId=7411 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=3 blockId=131 -runtimeId=7408 +runtimeId=7412 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=0 blockId=131 -runtimeId=7409 +runtimeId=7413 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=1 blockId=131 -runtimeId=7410 +runtimeId=7414 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=2 blockId=131 -runtimeId=7411 +runtimeId=7415 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=3 blockId=131 -runtimeId=7412 +runtimeId=7416 minecraft:tuff blockId=588 -runtimeId=7413 +runtimeId=7417 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=four_egg blockId=414 -runtimeId=7421 +runtimeId=7425 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=one_egg blockId=414 -runtimeId=7418 +runtimeId=7422 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=three_egg blockId=414 -runtimeId=7420 +runtimeId=7424 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=two_egg blockId=414 -runtimeId=7419 +runtimeId=7423 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=four_egg blockId=414 -runtimeId=7425 +runtimeId=7429 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=one_egg blockId=414 -runtimeId=7422 +runtimeId=7426 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=three_egg blockId=414 -runtimeId=7424 +runtimeId=7428 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=two_egg blockId=414 -runtimeId=7423 +runtimeId=7427 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=four_egg blockId=414 -runtimeId=7417 +runtimeId=7421 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=one_egg blockId=414 -runtimeId=7414 +runtimeId=7418 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=three_egg blockId=414 -runtimeId=7416 +runtimeId=7420 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=two_egg blockId=414 -runtimeId=7415 +runtimeId=7419 minecraft:twisting_vines;twisting_vines_age=0 blockId=542 -runtimeId=7426 +runtimeId=7430 minecraft:twisting_vines;twisting_vines_age=1 blockId=542 -runtimeId=7427 +runtimeId=7431 minecraft:twisting_vines;twisting_vines_age=2 blockId=542 -runtimeId=7428 +runtimeId=7432 minecraft:twisting_vines;twisting_vines_age=3 blockId=542 -runtimeId=7429 +runtimeId=7433 minecraft:twisting_vines;twisting_vines_age=4 blockId=542 -runtimeId=7430 +runtimeId=7434 minecraft:twisting_vines;twisting_vines_age=5 blockId=542 -runtimeId=7431 +runtimeId=7435 minecraft:twisting_vines;twisting_vines_age=6 blockId=542 -runtimeId=7432 +runtimeId=7436 minecraft:twisting_vines;twisting_vines_age=7 blockId=542 -runtimeId=7433 +runtimeId=7437 minecraft:twisting_vines;twisting_vines_age=8 blockId=542 -runtimeId=7434 +runtimeId=7438 minecraft:twisting_vines;twisting_vines_age=9 blockId=542 -runtimeId=7435 +runtimeId=7439 minecraft:twisting_vines;twisting_vines_age=10 blockId=542 -runtimeId=7436 +runtimeId=7440 minecraft:twisting_vines;twisting_vines_age=11 blockId=542 -runtimeId=7437 +runtimeId=7441 minecraft:twisting_vines;twisting_vines_age=12 blockId=542 -runtimeId=7438 +runtimeId=7442 minecraft:twisting_vines;twisting_vines_age=13 blockId=542 -runtimeId=7439 +runtimeId=7443 minecraft:twisting_vines;twisting_vines_age=14 blockId=542 -runtimeId=7440 +runtimeId=7444 minecraft:twisting_vines;twisting_vines_age=15 blockId=542 -runtimeId=7441 +runtimeId=7445 minecraft:twisting_vines;twisting_vines_age=16 blockId=542 -runtimeId=7442 +runtimeId=7446 minecraft:twisting_vines;twisting_vines_age=17 blockId=542 -runtimeId=7443 +runtimeId=7447 minecraft:twisting_vines;twisting_vines_age=18 blockId=542 -runtimeId=7444 +runtimeId=7448 minecraft:twisting_vines;twisting_vines_age=19 blockId=542 -runtimeId=7445 +runtimeId=7449 minecraft:twisting_vines;twisting_vines_age=20 blockId=542 -runtimeId=7446 +runtimeId=7450 minecraft:twisting_vines;twisting_vines_age=21 blockId=542 -runtimeId=7447 +runtimeId=7451 minecraft:twisting_vines;twisting_vines_age=22 blockId=542 -runtimeId=7448 +runtimeId=7452 minecraft:twisting_vines;twisting_vines_age=23 blockId=542 -runtimeId=7449 +runtimeId=7453 minecraft:twisting_vines;twisting_vines_age=24 blockId=542 -runtimeId=7450 +runtimeId=7454 minecraft:twisting_vines;twisting_vines_age=25 blockId=542 -runtimeId=7451 +runtimeId=7455 minecraft:underwater_torch;torch_facing_direction=east blockId=239 -runtimeId=7454 +runtimeId=7458 minecraft:underwater_torch;torch_facing_direction=north blockId=239 -runtimeId=7455 +runtimeId=7459 minecraft:underwater_torch;torch_facing_direction=south blockId=239 -runtimeId=7456 +runtimeId=7460 minecraft:underwater_torch;torch_facing_direction=top blockId=239 -runtimeId=7457 +runtimeId=7461 minecraft:underwater_torch;torch_facing_direction=unknown blockId=239 -runtimeId=7452 +runtimeId=7456 minecraft:underwater_torch;torch_facing_direction=west blockId=239 -runtimeId=7453 +runtimeId=7457 minecraft:undyed_shulker_box blockId=205 -runtimeId=7458 +runtimeId=7462 minecraft:unknown blockId=560 -runtimeId=7459 +runtimeId=7463 minecraft:unlit_redstone_torch;torch_facing_direction=east blockId=75 -runtimeId=7462 +runtimeId=7466 minecraft:unlit_redstone_torch;torch_facing_direction=north blockId=75 -runtimeId=7463 +runtimeId=7467 minecraft:unlit_redstone_torch;torch_facing_direction=south blockId=75 -runtimeId=7464 +runtimeId=7468 minecraft:unlit_redstone_torch;torch_facing_direction=top blockId=75 -runtimeId=7465 +runtimeId=7469 minecraft:unlit_redstone_torch;torch_facing_direction=unknown blockId=75 -runtimeId=7460 +runtimeId=7464 minecraft:unlit_redstone_torch;torch_facing_direction=west blockId=75 -runtimeId=7461 +runtimeId=7465 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=0 blockId=149 -runtimeId=7466 +runtimeId=7470 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=1 blockId=149 -runtimeId=7467 +runtimeId=7471 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=2 blockId=149 -runtimeId=7468 +runtimeId=7472 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=3 blockId=149 -runtimeId=7469 +runtimeId=7473 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=0 blockId=149 -runtimeId=7474 +runtimeId=7478 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=1 blockId=149 -runtimeId=7475 +runtimeId=7479 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=2 blockId=149 -runtimeId=7476 +runtimeId=7480 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=3 blockId=149 -runtimeId=7477 +runtimeId=7481 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=0 blockId=149 -runtimeId=7470 +runtimeId=7474 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=1 blockId=149 -runtimeId=7471 +runtimeId=7475 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=2 blockId=149 -runtimeId=7472 +runtimeId=7476 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=3 blockId=149 -runtimeId=7473 +runtimeId=7477 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=0 blockId=149 -runtimeId=7478 +runtimeId=7482 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=1 blockId=149 -runtimeId=7479 +runtimeId=7483 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=2 blockId=149 -runtimeId=7480 +runtimeId=7484 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=3 blockId=149 -runtimeId=7481 +runtimeId=7485 minecraft:unpowered_repeater;repeater_delay=0;direction=0 blockId=93 -runtimeId=7482 +runtimeId=7486 minecraft:unpowered_repeater;repeater_delay=0;direction=1 blockId=93 -runtimeId=7483 +runtimeId=7487 minecraft:unpowered_repeater;repeater_delay=0;direction=2 blockId=93 -runtimeId=7484 +runtimeId=7488 minecraft:unpowered_repeater;repeater_delay=0;direction=3 blockId=93 -runtimeId=7485 +runtimeId=7489 minecraft:unpowered_repeater;repeater_delay=1;direction=0 blockId=93 -runtimeId=7486 +runtimeId=7490 minecraft:unpowered_repeater;repeater_delay=1;direction=1 blockId=93 -runtimeId=7487 +runtimeId=7491 minecraft:unpowered_repeater;repeater_delay=1;direction=2 blockId=93 -runtimeId=7488 +runtimeId=7492 minecraft:unpowered_repeater;repeater_delay=1;direction=3 blockId=93 -runtimeId=7489 +runtimeId=7493 minecraft:unpowered_repeater;repeater_delay=2;direction=0 blockId=93 -runtimeId=7490 +runtimeId=7494 minecraft:unpowered_repeater;repeater_delay=2;direction=1 blockId=93 -runtimeId=7491 +runtimeId=7495 minecraft:unpowered_repeater;repeater_delay=2;direction=2 blockId=93 -runtimeId=7492 +runtimeId=7496 minecraft:unpowered_repeater;repeater_delay=2;direction=3 blockId=93 -runtimeId=7493 +runtimeId=7497 minecraft:unpowered_repeater;repeater_delay=3;direction=0 blockId=93 -runtimeId=7494 +runtimeId=7498 minecraft:unpowered_repeater;repeater_delay=3;direction=1 blockId=93 -runtimeId=7495 +runtimeId=7499 minecraft:unpowered_repeater;repeater_delay=3;direction=2 blockId=93 -runtimeId=7496 +runtimeId=7500 minecraft:unpowered_repeater;repeater_delay=3;direction=3 blockId=93 -runtimeId=7497 +runtimeId=7501 minecraft:vine;vine_direction_bits=0 blockId=106 -runtimeId=7498 +runtimeId=7502 minecraft:vine;vine_direction_bits=1 blockId=106 -runtimeId=7499 +runtimeId=7503 minecraft:vine;vine_direction_bits=2 blockId=106 -runtimeId=7500 +runtimeId=7504 minecraft:vine;vine_direction_bits=3 blockId=106 -runtimeId=7501 +runtimeId=7505 minecraft:vine;vine_direction_bits=4 blockId=106 -runtimeId=7502 +runtimeId=7506 minecraft:vine;vine_direction_bits=5 blockId=106 -runtimeId=7503 +runtimeId=7507 minecraft:vine;vine_direction_bits=6 blockId=106 -runtimeId=7504 +runtimeId=7508 minecraft:vine;vine_direction_bits=7 blockId=106 -runtimeId=7505 +runtimeId=7509 minecraft:vine;vine_direction_bits=8 blockId=106 -runtimeId=7506 +runtimeId=7510 minecraft:vine;vine_direction_bits=9 blockId=106 -runtimeId=7507 +runtimeId=7511 minecraft:vine;vine_direction_bits=10 blockId=106 -runtimeId=7508 +runtimeId=7512 minecraft:vine;vine_direction_bits=11 blockId=106 -runtimeId=7509 +runtimeId=7513 minecraft:vine;vine_direction_bits=12 blockId=106 -runtimeId=7510 +runtimeId=7514 minecraft:vine;vine_direction_bits=13 blockId=106 -runtimeId=7511 +runtimeId=7515 minecraft:vine;vine_direction_bits=14 blockId=106 -runtimeId=7512 +runtimeId=7516 minecraft:vine;vine_direction_bits=15 blockId=106 -runtimeId=7513 +runtimeId=7517 minecraft:wall_banner;facing_direction=0 blockId=177 -runtimeId=7514 +runtimeId=7518 minecraft:wall_banner;facing_direction=1 blockId=177 -runtimeId=7515 +runtimeId=7519 minecraft:wall_banner;facing_direction=2 blockId=177 -runtimeId=7516 +runtimeId=7520 minecraft:wall_banner;facing_direction=3 blockId=177 -runtimeId=7517 +runtimeId=7521 minecraft:wall_banner;facing_direction=4 blockId=177 -runtimeId=7518 +runtimeId=7522 minecraft:wall_banner;facing_direction=5 blockId=177 -runtimeId=7519 +runtimeId=7523 minecraft:wall_sign;facing_direction=0 blockId=68 -runtimeId=7520 +runtimeId=7524 minecraft:wall_sign;facing_direction=1 blockId=68 -runtimeId=7521 +runtimeId=7525 minecraft:wall_sign;facing_direction=2 blockId=68 -runtimeId=7522 +runtimeId=7526 minecraft:wall_sign;facing_direction=3 blockId=68 -runtimeId=7523 +runtimeId=7527 minecraft:wall_sign;facing_direction=4 blockId=68 -runtimeId=7524 +runtimeId=7528 minecraft:wall_sign;facing_direction=5 blockId=68 -runtimeId=7525 +runtimeId=7529 minecraft:warped_button;button_pressed_bit=0;facing_direction=0 blockId=516 -runtimeId=7526 +runtimeId=7530 minecraft:warped_button;button_pressed_bit=0;facing_direction=1 blockId=516 -runtimeId=7527 +runtimeId=7531 minecraft:warped_button;button_pressed_bit=0;facing_direction=2 blockId=516 -runtimeId=7528 +runtimeId=7532 minecraft:warped_button;button_pressed_bit=0;facing_direction=3 blockId=516 -runtimeId=7529 +runtimeId=7533 minecraft:warped_button;button_pressed_bit=0;facing_direction=4 blockId=516 -runtimeId=7530 +runtimeId=7534 minecraft:warped_button;button_pressed_bit=0;facing_direction=5 blockId=516 -runtimeId=7531 +runtimeId=7535 minecraft:warped_button;button_pressed_bit=1;facing_direction=0 blockId=516 -runtimeId=7532 +runtimeId=7536 minecraft:warped_button;button_pressed_bit=1;facing_direction=1 blockId=516 -runtimeId=7533 +runtimeId=7537 minecraft:warped_button;button_pressed_bit=1;facing_direction=2 blockId=516 -runtimeId=7534 +runtimeId=7538 minecraft:warped_button;button_pressed_bit=1;facing_direction=3 blockId=516 -runtimeId=7535 +runtimeId=7539 minecraft:warped_button;button_pressed_bit=1;facing_direction=4 blockId=516 -runtimeId=7536 +runtimeId=7540 minecraft:warped_button;button_pressed_bit=1;facing_direction=5 blockId=516 -runtimeId=7537 +runtimeId=7541 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7538 +runtimeId=7542 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7539 +runtimeId=7543 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7540 +runtimeId=7544 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7541 +runtimeId=7545 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7554 +runtimeId=7558 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7555 +runtimeId=7559 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7556 +runtimeId=7560 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7557 +runtimeId=7561 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7546 +runtimeId=7550 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7547 +runtimeId=7551 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7548 +runtimeId=7552 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7549 +runtimeId=7553 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7562 +runtimeId=7566 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7563 +runtimeId=7567 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7564 +runtimeId=7568 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7565 +runtimeId=7569 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7542 +runtimeId=7546 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7543 +runtimeId=7547 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7544 +runtimeId=7548 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7545 +runtimeId=7549 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7558 +runtimeId=7562 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7559 +runtimeId=7563 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7560 +runtimeId=7564 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7561 +runtimeId=7565 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7550 +runtimeId=7554 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7551 +runtimeId=7555 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7552 +runtimeId=7556 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7553 +runtimeId=7557 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7566 +runtimeId=7570 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7567 +runtimeId=7571 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7568 +runtimeId=7572 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7569 +runtimeId=7573 minecraft:warped_double_slab;top_slot_bit=0 blockId=522 -runtimeId=7570 +runtimeId=7574 minecraft:warped_double_slab;top_slot_bit=1 blockId=522 -runtimeId=7571 +runtimeId=7575 minecraft:warped_fence blockId=512 -runtimeId=7572 +runtimeId=7576 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=514 -runtimeId=7573 +runtimeId=7577 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=514 -runtimeId=7574 +runtimeId=7578 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=514 -runtimeId=7575 +runtimeId=7579 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=514 -runtimeId=7576 +runtimeId=7580 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=514 -runtimeId=7577 +runtimeId=7581 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=514 -runtimeId=7578 +runtimeId=7582 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=514 -runtimeId=7579 +runtimeId=7583 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=514 -runtimeId=7580 +runtimeId=7584 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=514 -runtimeId=7581 +runtimeId=7585 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=514 -runtimeId=7582 +runtimeId=7586 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=514 -runtimeId=7583 +runtimeId=7587 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=514 -runtimeId=7584 +runtimeId=7588 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=514 -runtimeId=7585 +runtimeId=7589 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=514 -runtimeId=7586 +runtimeId=7590 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=514 -runtimeId=7587 +runtimeId=7591 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=514 -runtimeId=7588 +runtimeId=7592 minecraft:warped_fungus blockId=484 -runtimeId=7589 - -minecraft:warped_hyphae;pillar_axis=x -blockId=553 -runtimeId=7591 +runtimeId=7593 minecraft:warped_hyphae;pillar_axis=y blockId=553 -runtimeId=7590 - -minecraft:warped_hyphae;pillar_axis=z -blockId=553 -runtimeId=7592 +runtimeId=7596 minecraft:warped_nylium blockId=488 -runtimeId=7593 +runtimeId=7597 minecraft:warped_planks blockId=498 -runtimeId=7594 +runtimeId=7598 minecraft:warped_pressure_plate;redstone_signal=0 blockId=518 -runtimeId=7595 +runtimeId=7599 minecraft:warped_pressure_plate;redstone_signal=1 blockId=518 -runtimeId=7596 +runtimeId=7600 minecraft:warped_pressure_plate;redstone_signal=2 blockId=518 -runtimeId=7597 +runtimeId=7601 minecraft:warped_pressure_plate;redstone_signal=3 blockId=518 -runtimeId=7598 +runtimeId=7602 minecraft:warped_pressure_plate;redstone_signal=4 blockId=518 -runtimeId=7599 +runtimeId=7603 minecraft:warped_pressure_plate;redstone_signal=5 blockId=518 -runtimeId=7600 +runtimeId=7604 minecraft:warped_pressure_plate;redstone_signal=6 blockId=518 -runtimeId=7601 +runtimeId=7605 minecraft:warped_pressure_plate;redstone_signal=7 blockId=518 -runtimeId=7602 +runtimeId=7606 minecraft:warped_pressure_plate;redstone_signal=8 blockId=518 -runtimeId=7603 +runtimeId=7607 minecraft:warped_pressure_plate;redstone_signal=9 blockId=518 -runtimeId=7604 +runtimeId=7608 minecraft:warped_pressure_plate;redstone_signal=10 blockId=518 -runtimeId=7605 +runtimeId=7609 minecraft:warped_pressure_plate;redstone_signal=11 blockId=518 -runtimeId=7606 +runtimeId=7610 minecraft:warped_pressure_plate;redstone_signal=12 blockId=518 -runtimeId=7607 +runtimeId=7611 minecraft:warped_pressure_plate;redstone_signal=13 blockId=518 -runtimeId=7608 +runtimeId=7612 minecraft:warped_pressure_plate;redstone_signal=14 blockId=518 -runtimeId=7609 +runtimeId=7613 minecraft:warped_pressure_plate;redstone_signal=15 blockId=518 -runtimeId=7610 +runtimeId=7614 minecraft:warped_roots blockId=479 -runtimeId=7611 +runtimeId=7615 minecraft:warped_slab;top_slot_bit=0 blockId=520 -runtimeId=7612 +runtimeId=7616 minecraft:warped_slab;top_slot_bit=1 blockId=520 -runtimeId=7613 +runtimeId=7617 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=0 blockId=510 -runtimeId=7614 +runtimeId=7618 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=1 blockId=510 -runtimeId=7615 +runtimeId=7619 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=2 blockId=510 -runtimeId=7616 +runtimeId=7620 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=3 blockId=510 -runtimeId=7617 +runtimeId=7621 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=0 blockId=510 -runtimeId=7618 +runtimeId=7622 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=1 blockId=510 -runtimeId=7619 +runtimeId=7623 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=2 blockId=510 -runtimeId=7620 +runtimeId=7624 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=3 blockId=510 -runtimeId=7621 +runtimeId=7625 minecraft:warped_standing_sign;ground_sign_direction=0 blockId=506 -runtimeId=7622 +runtimeId=7626 minecraft:warped_standing_sign;ground_sign_direction=1 blockId=506 -runtimeId=7623 +runtimeId=7627 minecraft:warped_standing_sign;ground_sign_direction=2 blockId=506 -runtimeId=7624 +runtimeId=7628 minecraft:warped_standing_sign;ground_sign_direction=3 blockId=506 -runtimeId=7625 +runtimeId=7629 minecraft:warped_standing_sign;ground_sign_direction=4 blockId=506 -runtimeId=7626 +runtimeId=7630 minecraft:warped_standing_sign;ground_sign_direction=5 blockId=506 -runtimeId=7627 +runtimeId=7631 minecraft:warped_standing_sign;ground_sign_direction=6 blockId=506 -runtimeId=7628 +runtimeId=7632 minecraft:warped_standing_sign;ground_sign_direction=7 blockId=506 -runtimeId=7629 +runtimeId=7633 minecraft:warped_standing_sign;ground_sign_direction=8 blockId=506 -runtimeId=7630 +runtimeId=7634 minecraft:warped_standing_sign;ground_sign_direction=9 blockId=506 -runtimeId=7631 +runtimeId=7635 minecraft:warped_standing_sign;ground_sign_direction=10 blockId=506 -runtimeId=7632 +runtimeId=7636 minecraft:warped_standing_sign;ground_sign_direction=11 blockId=506 -runtimeId=7633 +runtimeId=7637 minecraft:warped_standing_sign;ground_sign_direction=12 blockId=506 -runtimeId=7634 +runtimeId=7638 minecraft:warped_standing_sign;ground_sign_direction=13 blockId=506 -runtimeId=7635 +runtimeId=7639 minecraft:warped_standing_sign;ground_sign_direction=14 blockId=506 -runtimeId=7636 +runtimeId=7640 minecraft:warped_standing_sign;ground_sign_direction=15 blockId=506 -runtimeId=7637 - -minecraft:warped_stem;pillar_axis=x -blockId=481 -runtimeId=7639 +runtimeId=7641 minecraft:warped_stem;pillar_axis=y blockId=481 -runtimeId=7638 - -minecraft:warped_stem;pillar_axis=z -blockId=481 -runtimeId=7640 +runtimeId=7644 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=502 -runtimeId=7641 +runtimeId=7645 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=502 -runtimeId=7642 +runtimeId=7646 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=502 -runtimeId=7643 +runtimeId=7647 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=502 -runtimeId=7644 +runtimeId=7648 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=502 -runtimeId=7645 +runtimeId=7649 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=502 -runtimeId=7646 +runtimeId=7650 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=502 -runtimeId=7647 +runtimeId=7651 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=502 -runtimeId=7648 +runtimeId=7652 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=502 -runtimeId=7649 +runtimeId=7653 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=502 -runtimeId=7650 +runtimeId=7654 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=502 -runtimeId=7651 +runtimeId=7655 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=502 -runtimeId=7652 +runtimeId=7656 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=502 -runtimeId=7653 +runtimeId=7657 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=502 -runtimeId=7654 +runtimeId=7658 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=502 -runtimeId=7655 +runtimeId=7659 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=502 -runtimeId=7656 +runtimeId=7660 minecraft:warped_wall_sign;facing_direction=0 blockId=508 -runtimeId=7657 +runtimeId=7661 minecraft:warped_wall_sign;facing_direction=1 blockId=508 -runtimeId=7658 +runtimeId=7662 minecraft:warped_wall_sign;facing_direction=2 blockId=508 -runtimeId=7659 +runtimeId=7663 minecraft:warped_wall_sign;facing_direction=3 blockId=508 -runtimeId=7660 +runtimeId=7664 minecraft:warped_wall_sign;facing_direction=4 blockId=508 -runtimeId=7661 +runtimeId=7665 minecraft:warped_wall_sign;facing_direction=5 blockId=508 -runtimeId=7662 +runtimeId=7666 minecraft:warped_wart_block blockId=482 -runtimeId=7663 +runtimeId=7667 minecraft:water;liquid_depth=0 blockId=9 -runtimeId=7664 +runtimeId=7668 minecraft:water;liquid_depth=1 blockId=9 -runtimeId=7665 +runtimeId=7669 minecraft:water;liquid_depth=2 blockId=9 -runtimeId=7666 +runtimeId=7670 minecraft:water;liquid_depth=3 blockId=9 -runtimeId=7667 +runtimeId=7671 minecraft:water;liquid_depth=4 blockId=9 -runtimeId=7668 +runtimeId=7672 minecraft:water;liquid_depth=5 blockId=9 -runtimeId=7669 +runtimeId=7673 minecraft:water;liquid_depth=6 blockId=9 -runtimeId=7670 +runtimeId=7674 minecraft:water;liquid_depth=7 blockId=9 -runtimeId=7671 +runtimeId=7675 minecraft:water;liquid_depth=8 blockId=9 -runtimeId=7672 +runtimeId=7676 minecraft:water;liquid_depth=9 blockId=9 -runtimeId=7673 +runtimeId=7677 minecraft:water;liquid_depth=10 blockId=9 -runtimeId=7674 +runtimeId=7678 minecraft:water;liquid_depth=11 blockId=9 -runtimeId=7675 +runtimeId=7679 minecraft:water;liquid_depth=12 blockId=9 -runtimeId=7676 +runtimeId=7680 minecraft:water;liquid_depth=13 blockId=9 -runtimeId=7677 +runtimeId=7681 minecraft:water;liquid_depth=14 blockId=9 -runtimeId=7678 +runtimeId=7682 minecraft:water;liquid_depth=15 blockId=9 -runtimeId=7679 +runtimeId=7683 minecraft:waterlily blockId=111 -runtimeId=7680 +runtimeId=7684 minecraft:waxed_copper blockId=599 -runtimeId=7681 +runtimeId=7685 minecraft:waxed_cut_copper blockId=606 -runtimeId=7682 +runtimeId=7686 minecraft:waxed_cut_copper_slab;top_slot_bit=0 blockId=620 -runtimeId=7683 +runtimeId=7687 minecraft:waxed_cut_copper_slab;top_slot_bit=1 blockId=620 -runtimeId=7684 +runtimeId=7688 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=613 -runtimeId=7685 +runtimeId=7689 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=613 -runtimeId=7686 +runtimeId=7690 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=613 -runtimeId=7687 +runtimeId=7691 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=613 -runtimeId=7688 +runtimeId=7692 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=613 -runtimeId=7689 +runtimeId=7693 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=613 -runtimeId=7690 +runtimeId=7694 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=613 -runtimeId=7691 +runtimeId=7695 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=613 -runtimeId=7692 +runtimeId=7696 minecraft:waxed_double_cut_copper_slab;top_slot_bit=0 blockId=627 -runtimeId=7693 +runtimeId=7697 minecraft:waxed_double_cut_copper_slab;top_slot_bit=1 blockId=627 -runtimeId=7694 +runtimeId=7698 minecraft:waxed_exposed_copper blockId=600 -runtimeId=7695 +runtimeId=7699 minecraft:waxed_exposed_cut_copper blockId=607 -runtimeId=7696 +runtimeId=7700 minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=0 blockId=621 -runtimeId=7697 +runtimeId=7701 minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=1 blockId=621 -runtimeId=7698 +runtimeId=7702 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=614 -runtimeId=7699 +runtimeId=7703 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=614 -runtimeId=7700 +runtimeId=7704 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=614 -runtimeId=7701 +runtimeId=7705 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=614 -runtimeId=7702 +runtimeId=7706 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=614 -runtimeId=7703 +runtimeId=7707 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=614 -runtimeId=7704 +runtimeId=7708 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=614 -runtimeId=7705 +runtimeId=7709 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=614 -runtimeId=7706 +runtimeId=7710 minecraft:waxed_exposed_double_cut_copper_slab;top_slot_bit=0 blockId=628 -runtimeId=7707 +runtimeId=7711 minecraft:waxed_exposed_double_cut_copper_slab;top_slot_bit=1 blockId=628 -runtimeId=7708 +runtimeId=7712 minecraft:waxed_oxidized_copper blockId=701 -runtimeId=7709 +runtimeId=7713 minecraft:waxed_oxidized_cut_copper blockId=702 -runtimeId=7710 +runtimeId=7714 minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=0 blockId=704 -runtimeId=7711 +runtimeId=7715 minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=1 blockId=704 -runtimeId=7712 +runtimeId=7716 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=703 -runtimeId=7713 +runtimeId=7717 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=703 -runtimeId=7714 +runtimeId=7718 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=703 -runtimeId=7715 +runtimeId=7719 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=703 -runtimeId=7716 +runtimeId=7720 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=703 -runtimeId=7717 +runtimeId=7721 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=703 -runtimeId=7718 +runtimeId=7722 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=703 -runtimeId=7719 +runtimeId=7723 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=703 -runtimeId=7720 +runtimeId=7724 minecraft:waxed_oxidized_double_cut_copper_slab;top_slot_bit=0 blockId=705 -runtimeId=7721 +runtimeId=7725 minecraft:waxed_oxidized_double_cut_copper_slab;top_slot_bit=1 blockId=705 -runtimeId=7722 +runtimeId=7726 minecraft:waxed_weathered_copper blockId=601 -runtimeId=7723 +runtimeId=7727 minecraft:waxed_weathered_cut_copper blockId=608 -runtimeId=7724 +runtimeId=7728 minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=0 blockId=622 -runtimeId=7725 +runtimeId=7729 minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=1 blockId=622 -runtimeId=7726 +runtimeId=7730 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=615 -runtimeId=7727 +runtimeId=7731 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=615 -runtimeId=7728 +runtimeId=7732 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=615 -runtimeId=7729 +runtimeId=7733 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=615 -runtimeId=7730 +runtimeId=7734 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=615 -runtimeId=7731 +runtimeId=7735 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=615 -runtimeId=7732 +runtimeId=7736 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=615 -runtimeId=7733 +runtimeId=7737 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=615 -runtimeId=7734 +runtimeId=7738 minecraft:waxed_weathered_double_cut_copper_slab;top_slot_bit=0 blockId=629 -runtimeId=7735 +runtimeId=7739 minecraft:waxed_weathered_double_cut_copper_slab;top_slot_bit=1 blockId=629 -runtimeId=7736 +runtimeId=7740 minecraft:weathered_copper blockId=597 -runtimeId=7737 +runtimeId=7741 minecraft:weathered_cut_copper blockId=604 -runtimeId=7738 +runtimeId=7742 minecraft:weathered_cut_copper_slab;top_slot_bit=0 blockId=618 -runtimeId=7739 +runtimeId=7743 minecraft:weathered_cut_copper_slab;top_slot_bit=1 blockId=618 -runtimeId=7740 +runtimeId=7744 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=611 -runtimeId=7741 +runtimeId=7745 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=611 -runtimeId=7742 +runtimeId=7746 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=611 -runtimeId=7743 +runtimeId=7747 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=611 -runtimeId=7744 +runtimeId=7748 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=611 -runtimeId=7745 +runtimeId=7749 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=611 -runtimeId=7746 +runtimeId=7750 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=611 -runtimeId=7747 +runtimeId=7751 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=611 -runtimeId=7748 +runtimeId=7752 minecraft:weathered_double_cut_copper_slab;top_slot_bit=0 blockId=625 -runtimeId=7749 +runtimeId=7753 minecraft:weathered_double_cut_copper_slab;top_slot_bit=1 blockId=625 -runtimeId=7750 +runtimeId=7754 minecraft:web blockId=30 -runtimeId=7751 +runtimeId=7755 minecraft:weeping_vines;weeping_vines_age=0 blockId=486 -runtimeId=7752 +runtimeId=7756 minecraft:weeping_vines;weeping_vines_age=1 blockId=486 -runtimeId=7753 +runtimeId=7757 minecraft:weeping_vines;weeping_vines_age=2 blockId=486 -runtimeId=7754 +runtimeId=7758 minecraft:weeping_vines;weeping_vines_age=3 blockId=486 -runtimeId=7755 +runtimeId=7759 minecraft:weeping_vines;weeping_vines_age=4 blockId=486 -runtimeId=7756 +runtimeId=7760 minecraft:weeping_vines;weeping_vines_age=5 blockId=486 -runtimeId=7757 +runtimeId=7761 minecraft:weeping_vines;weeping_vines_age=6 blockId=486 -runtimeId=7758 +runtimeId=7762 minecraft:weeping_vines;weeping_vines_age=7 blockId=486 -runtimeId=7759 +runtimeId=7763 minecraft:weeping_vines;weeping_vines_age=8 blockId=486 -runtimeId=7760 +runtimeId=7764 minecraft:weeping_vines;weeping_vines_age=9 blockId=486 -runtimeId=7761 +runtimeId=7765 minecraft:weeping_vines;weeping_vines_age=10 blockId=486 -runtimeId=7762 +runtimeId=7766 minecraft:weeping_vines;weeping_vines_age=11 blockId=486 -runtimeId=7763 +runtimeId=7767 minecraft:weeping_vines;weeping_vines_age=12 blockId=486 -runtimeId=7764 +runtimeId=7768 minecraft:weeping_vines;weeping_vines_age=13 blockId=486 -runtimeId=7765 +runtimeId=7769 minecraft:weeping_vines;weeping_vines_age=14 blockId=486 -runtimeId=7766 +runtimeId=7770 minecraft:weeping_vines;weeping_vines_age=15 blockId=486 -runtimeId=7767 +runtimeId=7771 minecraft:weeping_vines;weeping_vines_age=16 blockId=486 -runtimeId=7768 +runtimeId=7772 minecraft:weeping_vines;weeping_vines_age=17 blockId=486 -runtimeId=7769 +runtimeId=7773 minecraft:weeping_vines;weeping_vines_age=18 blockId=486 -runtimeId=7770 +runtimeId=7774 minecraft:weeping_vines;weeping_vines_age=19 blockId=486 -runtimeId=7771 +runtimeId=7775 minecraft:weeping_vines;weeping_vines_age=20 blockId=486 -runtimeId=7772 +runtimeId=7776 minecraft:weeping_vines;weeping_vines_age=21 blockId=486 -runtimeId=7773 +runtimeId=7777 minecraft:weeping_vines;weeping_vines_age=22 blockId=486 -runtimeId=7774 +runtimeId=7778 minecraft:weeping_vines;weeping_vines_age=23 blockId=486 -runtimeId=7775 +runtimeId=7779 minecraft:weeping_vines;weeping_vines_age=24 blockId=486 -runtimeId=7776 +runtimeId=7780 minecraft:weeping_vines;weeping_vines_age=25 blockId=486 -runtimeId=7777 +runtimeId=7781 minecraft:wheat;growth=0 blockId=59 -runtimeId=7778 +runtimeId=7782 minecraft:wheat;growth=1 blockId=59 -runtimeId=7779 +runtimeId=7783 minecraft:wheat;growth=2 blockId=59 -runtimeId=7780 +runtimeId=7784 minecraft:wheat;growth=3 blockId=59 -runtimeId=7781 +runtimeId=7785 minecraft:wheat;growth=4 blockId=59 -runtimeId=7782 +runtimeId=7786 minecraft:wheat;growth=5 blockId=59 -runtimeId=7783 +runtimeId=7787 minecraft:wheat;growth=6 blockId=59 -runtimeId=7784 +runtimeId=7788 minecraft:wheat;growth=7 blockId=59 -runtimeId=7785 +runtimeId=7789 minecraft:white_candle;lit=0;candles=0 blockId=668 -runtimeId=7786 +runtimeId=7790 minecraft:white_candle;lit=0;candles=1 blockId=668 -runtimeId=7787 +runtimeId=7791 minecraft:white_candle;lit=0;candles=2 blockId=668 -runtimeId=7788 +runtimeId=7792 minecraft:white_candle;lit=0;candles=3 blockId=668 -runtimeId=7789 +runtimeId=7793 minecraft:white_candle;lit=1;candles=0 blockId=668 -runtimeId=7790 +runtimeId=7794 minecraft:white_candle;lit=1;candles=1 blockId=668 -runtimeId=7791 +runtimeId=7795 minecraft:white_candle;lit=1;candles=2 blockId=668 -runtimeId=7792 +runtimeId=7796 minecraft:white_candle;lit=1;candles=3 blockId=668 -runtimeId=7793 +runtimeId=7797 minecraft:white_candle_cake;lit=0 blockId=685 -runtimeId=7794 +runtimeId=7798 minecraft:white_candle_cake;lit=1 blockId=685 -runtimeId=7795 +runtimeId=7799 minecraft:white_glazed_terracotta;facing_direction=0 blockId=220 -runtimeId=7796 +runtimeId=7800 minecraft:white_glazed_terracotta;facing_direction=1 blockId=220 -runtimeId=7797 +runtimeId=7801 minecraft:white_glazed_terracotta;facing_direction=2 blockId=220 -runtimeId=7798 +runtimeId=7802 minecraft:white_glazed_terracotta;facing_direction=3 blockId=220 -runtimeId=7799 +runtimeId=7803 minecraft:white_glazed_terracotta;facing_direction=4 blockId=220 -runtimeId=7800 +runtimeId=7804 minecraft:white_glazed_terracotta;facing_direction=5 blockId=220 -runtimeId=7801 +runtimeId=7805 minecraft:wither_rose blockId=471 -runtimeId=7802 - -minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=x -blockId=467 -runtimeId=7819 +runtimeId=7806 minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7807 - -minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=z -blockId=467 -runtimeId=7831 - -minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=x -blockId=467 -runtimeId=7825 - -minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=y -blockId=467 -runtimeId=7813 - -minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=z -blockId=467 -runtimeId=7837 - -minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=x -blockId=467 -runtimeId=7817 - -minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=y -blockId=467 -runtimeId=7805 - -minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=z -blockId=467 -runtimeId=7829 - -minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=x -blockId=467 -runtimeId=7823 - -minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=y -blockId=467 -runtimeId=7811 - -minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=z -blockId=467 runtimeId=7835 -minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=x +minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7820 +runtimeId=7841 -minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=y +minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7808 +runtimeId=7833 -minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=z +minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7832 +runtimeId=7839 -minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=x +minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7826 +runtimeId=7836 minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7814 - -minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=z -blockId=467 -runtimeId=7838 - -minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=x -blockId=467 -runtimeId=7818 +runtimeId=7842 minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7806 - -minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=z -blockId=467 -runtimeId=7830 - -minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=x -blockId=467 -runtimeId=7824 +runtimeId=7834 minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7812 - -minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=z -blockId=467 -runtimeId=7836 - -minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=x -blockId=467 -runtimeId=7815 +runtimeId=7840 minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7803 - -minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=z -blockId=467 -runtimeId=7827 - -minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=x -blockId=467 -runtimeId=7821 +runtimeId=7831 minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7809 - -minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=z -blockId=467 -runtimeId=7833 - -minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=x -blockId=467 -runtimeId=7816 +runtimeId=7837 minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7804 - -minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=z -blockId=467 -runtimeId=7828 - -minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=x -blockId=467 -runtimeId=7822 +runtimeId=7832 minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7810 - -minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=z -blockId=467 -runtimeId=7834 +runtimeId=7838 minecraft:wooden_button;button_pressed_bit=0;facing_direction=0 blockId=143 -runtimeId=7839 +runtimeId=7843 minecraft:wooden_button;button_pressed_bit=0;facing_direction=1 blockId=143 -runtimeId=7840 +runtimeId=7844 minecraft:wooden_button;button_pressed_bit=0;facing_direction=2 blockId=143 -runtimeId=7841 +runtimeId=7845 minecraft:wooden_button;button_pressed_bit=0;facing_direction=3 blockId=143 -runtimeId=7842 +runtimeId=7846 minecraft:wooden_button;button_pressed_bit=0;facing_direction=4 blockId=143 -runtimeId=7843 +runtimeId=7847 minecraft:wooden_button;button_pressed_bit=0;facing_direction=5 blockId=143 -runtimeId=7844 +runtimeId=7848 minecraft:wooden_button;button_pressed_bit=1;facing_direction=0 blockId=143 -runtimeId=7845 +runtimeId=7849 minecraft:wooden_button;button_pressed_bit=1;facing_direction=1 blockId=143 -runtimeId=7846 +runtimeId=7850 minecraft:wooden_button;button_pressed_bit=1;facing_direction=2 blockId=143 -runtimeId=7847 +runtimeId=7851 minecraft:wooden_button;button_pressed_bit=1;facing_direction=3 blockId=143 -runtimeId=7848 +runtimeId=7852 minecraft:wooden_button;button_pressed_bit=1;facing_direction=4 blockId=143 -runtimeId=7849 +runtimeId=7853 minecraft:wooden_button;button_pressed_bit=1;facing_direction=5 blockId=143 -runtimeId=7850 +runtimeId=7854 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7851 +runtimeId=7855 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7852 +runtimeId=7856 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7853 +runtimeId=7857 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7854 +runtimeId=7858 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7867 +runtimeId=7871 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7868 +runtimeId=7872 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7869 +runtimeId=7873 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7870 +runtimeId=7874 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7859 +runtimeId=7863 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7860 +runtimeId=7864 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7861 +runtimeId=7865 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7862 +runtimeId=7866 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7875 +runtimeId=7879 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7876 +runtimeId=7880 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7877 +runtimeId=7881 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7878 +runtimeId=7882 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7855 +runtimeId=7859 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7856 +runtimeId=7860 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7857 +runtimeId=7861 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7858 +runtimeId=7862 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7871 +runtimeId=7875 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7872 +runtimeId=7876 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7873 +runtimeId=7877 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7874 +runtimeId=7878 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7863 +runtimeId=7867 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7864 +runtimeId=7868 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7865 +runtimeId=7869 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7866 +runtimeId=7870 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7879 +runtimeId=7883 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7880 +runtimeId=7884 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7881 +runtimeId=7885 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7882 +runtimeId=7886 minecraft:wooden_pressure_plate;redstone_signal=0 blockId=72 -runtimeId=7883 +runtimeId=7887 minecraft:wooden_pressure_plate;redstone_signal=1 blockId=72 -runtimeId=7884 +runtimeId=7888 minecraft:wooden_pressure_plate;redstone_signal=2 blockId=72 -runtimeId=7885 +runtimeId=7889 minecraft:wooden_pressure_plate;redstone_signal=3 blockId=72 -runtimeId=7886 +runtimeId=7890 minecraft:wooden_pressure_plate;redstone_signal=4 blockId=72 -runtimeId=7887 +runtimeId=7891 minecraft:wooden_pressure_plate;redstone_signal=5 blockId=72 -runtimeId=7888 +runtimeId=7892 minecraft:wooden_pressure_plate;redstone_signal=6 blockId=72 -runtimeId=7889 +runtimeId=7893 minecraft:wooden_pressure_plate;redstone_signal=7 blockId=72 -runtimeId=7890 +runtimeId=7894 minecraft:wooden_pressure_plate;redstone_signal=8 blockId=72 -runtimeId=7891 +runtimeId=7895 minecraft:wooden_pressure_plate;redstone_signal=9 blockId=72 -runtimeId=7892 +runtimeId=7896 minecraft:wooden_pressure_plate;redstone_signal=10 blockId=72 -runtimeId=7893 +runtimeId=7897 minecraft:wooden_pressure_plate;redstone_signal=11 blockId=72 -runtimeId=7894 +runtimeId=7898 minecraft:wooden_pressure_plate;redstone_signal=12 blockId=72 -runtimeId=7895 +runtimeId=7899 minecraft:wooden_pressure_plate;redstone_signal=13 blockId=72 -runtimeId=7896 +runtimeId=7900 minecraft:wooden_pressure_plate;redstone_signal=14 blockId=72 -runtimeId=7897 +runtimeId=7901 minecraft:wooden_pressure_plate;redstone_signal=15 blockId=72 -runtimeId=7898 +runtimeId=7902 minecraft:wooden_slab;top_slot_bit=0;wood_type=acacia blockId=158 -runtimeId=7903 +runtimeId=7907 minecraft:wooden_slab;top_slot_bit=0;wood_type=birch blockId=158 -runtimeId=7901 +runtimeId=7905 minecraft:wooden_slab;top_slot_bit=0;wood_type=dark_oak blockId=158 -runtimeId=7904 +runtimeId=7908 minecraft:wooden_slab;top_slot_bit=0;wood_type=jungle blockId=158 -runtimeId=7902 +runtimeId=7906 minecraft:wooden_slab;top_slot_bit=0;wood_type=oak blockId=158 -runtimeId=7899 +runtimeId=7903 minecraft:wooden_slab;top_slot_bit=0;wood_type=spruce blockId=158 -runtimeId=7900 +runtimeId=7904 minecraft:wooden_slab;top_slot_bit=1;wood_type=acacia blockId=158 -runtimeId=7909 +runtimeId=7913 minecraft:wooden_slab;top_slot_bit=1;wood_type=birch blockId=158 -runtimeId=7907 +runtimeId=7911 minecraft:wooden_slab;top_slot_bit=1;wood_type=dark_oak blockId=158 -runtimeId=7910 +runtimeId=7914 minecraft:wooden_slab;top_slot_bit=1;wood_type=jungle blockId=158 -runtimeId=7908 +runtimeId=7912 minecraft:wooden_slab;top_slot_bit=1;wood_type=oak blockId=158 -runtimeId=7905 +runtimeId=7909 minecraft:wooden_slab;top_slot_bit=1;wood_type=spruce blockId=158 -runtimeId=7906 +runtimeId=7910 minecraft:wool;color=black blockId=35 -runtimeId=7926 +runtimeId=7930 minecraft:wool;color=blue blockId=35 -runtimeId=7922 +runtimeId=7926 minecraft:wool;color=brown blockId=35 -runtimeId=7923 +runtimeId=7927 minecraft:wool;color=cyan blockId=35 -runtimeId=7920 +runtimeId=7924 minecraft:wool;color=gray blockId=35 -runtimeId=7918 +runtimeId=7922 minecraft:wool;color=green blockId=35 -runtimeId=7924 +runtimeId=7928 minecraft:wool;color=light_blue blockId=35 -runtimeId=7914 +runtimeId=7918 minecraft:wool;color=lime blockId=35 -runtimeId=7916 +runtimeId=7920 minecraft:wool;color=magenta blockId=35 -runtimeId=7913 +runtimeId=7917 minecraft:wool;color=orange blockId=35 -runtimeId=7912 +runtimeId=7916 minecraft:wool;color=pink blockId=35 -runtimeId=7917 +runtimeId=7921 minecraft:wool;color=purple blockId=35 -runtimeId=7921 +runtimeId=7925 minecraft:wool;color=red blockId=35 -runtimeId=7925 +runtimeId=7929 minecraft:wool;color=silver blockId=35 -runtimeId=7919 +runtimeId=7923 minecraft:wool;color=white blockId=35 -runtimeId=7911 +runtimeId=7915 minecraft:wool;color=yellow blockId=35 -runtimeId=7915 +runtimeId=7919 minecraft:yellow_candle;lit=0;candles=0 blockId=672 -runtimeId=7927 +runtimeId=7931 minecraft:yellow_candle;lit=0;candles=1 blockId=672 -runtimeId=7928 +runtimeId=7932 minecraft:yellow_candle;lit=0;candles=2 blockId=672 -runtimeId=7929 +runtimeId=7933 minecraft:yellow_candle;lit=0;candles=3 blockId=672 -runtimeId=7930 +runtimeId=7934 minecraft:yellow_candle;lit=1;candles=0 blockId=672 -runtimeId=7931 +runtimeId=7935 minecraft:yellow_candle;lit=1;candles=1 blockId=672 -runtimeId=7932 +runtimeId=7936 minecraft:yellow_candle;lit=1;candles=2 blockId=672 -runtimeId=7933 +runtimeId=7937 minecraft:yellow_candle;lit=1;candles=3 blockId=672 -runtimeId=7934 +runtimeId=7938 minecraft:yellow_candle_cake;lit=0 blockId=689 -runtimeId=7935 +runtimeId=7939 minecraft:yellow_candle_cake;lit=1 blockId=689 -runtimeId=7936 +runtimeId=7940 minecraft:yellow_flower blockId=37 -runtimeId=7937 +runtimeId=7941 minecraft:yellow_glazed_terracotta;facing_direction=0 blockId=224 -runtimeId=7938 +runtimeId=7942 minecraft:yellow_glazed_terracotta;facing_direction=1 blockId=224 -runtimeId=7939 +runtimeId=7943 minecraft:yellow_glazed_terracotta;facing_direction=2 blockId=224 -runtimeId=7940 +runtimeId=7944 minecraft:yellow_glazed_terracotta;facing_direction=3 blockId=224 -runtimeId=7941 +runtimeId=7945 minecraft:yellow_glazed_terracotta;facing_direction=4 blockId=224 -runtimeId=7942 +runtimeId=7946 minecraft:yellow_glazed_terracotta;facing_direction=5 blockId=224 -runtimeId=7943 +runtimeId=7947 diff --git a/dumps/simple-blocks-nukkit.txt b/dumps/simple-blocks-nukkit.txt index b1744081574..2a08a73f0a2 100644 --- a/dumps/simple-blocks-nukkit.txt +++ b/dumps/simple-blocks-nukkit.txt @@ -92,6 +92,7 @@ minecraft:chiseled_polished_blackstone minecraft:chorus_flower minecraft:chorus_plant minecraft:clay +minecraft:client_request_placeholder_block minecraft:coal_block minecraft:coal_ore minecraft:cobbled_deepslate @@ -446,6 +447,8 @@ minecraft:mossy_cobblestone_stairs minecraft:mossy_stone_brick_stairs minecraft:movingBlock minecraft:mycelium +minecraft:mysterious_frame +minecraft:mysterious_frame_slot minecraft:nether_brick minecraft:nether_brick_fence minecraft:nether_brick_stairs diff --git a/src/main/java/cn/nukkit/block/BlockID.java b/src/main/java/cn/nukkit/block/BlockID.java index 517570bab49..367693ec36b 100644 --- a/src/main/java/cn/nukkit/block/BlockID.java +++ b/src/main/java/cn/nukkit/block/BlockID.java @@ -519,5 +519,4 @@ public interface BlockID { @Since("1.4.0.0-PN") @PowerNukkitOnly int CHISELED_NETHER_BRICKS = 557; @Since("1.4.0.0-PN") @PowerNukkitOnly int CRACKED_NETHER_BRICKS = 558; @Since("1.4.0.0-PN") @PowerNukkitOnly int QUARTZ_BRICKS = 559; - //int UNKNOWN = 600; } diff --git a/src/main/java/cn/nukkit/blockproperty/ArrayBlockProperty.java b/src/main/java/cn/nukkit/blockproperty/ArrayBlockProperty.java index 171ed7987ae..6e6e6509d22 100644 --- a/src/main/java/cn/nukkit/blockproperty/ArrayBlockProperty.java +++ b/src/main/java/cn/nukkit/blockproperty/ArrayBlockProperty.java @@ -25,7 +25,10 @@ public final class ArrayBlockProperty extends BlockPrope @Nonnull private final E[] universe; - + + /** + * Nullable when {@link #ordinal} is {@code true. + */ private final String[] persistenceNames; private final Class eClass; @@ -177,7 +180,7 @@ public int getMetaForPersistenceValue(String persistenceValue) { validateMetaDirectly(meta); } catch (IndexOutOfBoundsException|IllegalArgumentException e) { throw new InvalidBlockPropertyPersistenceValueException(this, null, persistenceValue, - "Expected a number from 0 to " + persistenceNames.length, e); + "Expected a number from 0 to " + (universe.length - 1), e); } return meta; } diff --git a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java index a7db25f58e3..e7038826dc8 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java +++ b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java @@ -115,11 +115,7 @@ public class BlockStateRegistry { // Integer infoUpdateRuntimeId = null; - // Special cases, these blocks was partially published by Mojang, we must ignore them: - Set warned = new HashSet<>(Arrays.asList( - "minecraft:sculk", "minecraft:sculk_catalyst", - "minecraft:sculk_shrieker", "minecraft:sculk_vein" - )); + Set warned = new HashSet<>(); for (CompoundTag state : tags) { int blockId = state.getInt("blockId"); diff --git a/src/main/java/cn/nukkit/inventory/CraftingManager.java b/src/main/java/cn/nukkit/inventory/CraftingManager.java index efff224f709..c80da058001 100644 --- a/src/main/java/cn/nukkit/inventory/CraftingManager.java +++ b/src/main/java/cn/nukkit/inventory/CraftingManager.java @@ -129,6 +129,10 @@ private void registerSmithingRecipes() { private void loadRecipes(Config config) { List recipes = config.getMapList("recipes"); log.info("Loading recipes..."); + if (true) { + log.fatal("Recipes are disabled"); + return; + } toNextRecipe: for (Map recipe : recipes) { try { diff --git a/src/main/resources/block_ids.csv b/src/main/resources/block_ids.csv index 686f9e67ebb..23f47d7d802 100644 --- a/src/main/resources/block_ids.csv +++ b/src/main/resources/block_ids.csv @@ -711,16 +711,16 @@ 710, 711, 712, -713, -714, -715, -716, +713,minecraft:sculk +714,minecraft:sculk_vein +715,minecraft:sculk_catalyst +716,minecraft:sculk_shrieker 717, 718, 719, -720, -721, -722, +720,minecraft:client_request_placeholder_block +721,minecraft:mysterious_frame +722,minecraft:mysterious_frame_slot 723, 724, 725, diff --git a/src/main/resources/creativeitems.json b/src/main/resources/creativeitems.json index dce183cee09..5bdc412a55a 100644 --- a/src/main/resources/creativeitems.json +++ b/src/main/resources/creativeitems.json @@ -1,5207 +1,5203 @@ { - "items" : [ - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5794 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5795 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5796 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5797 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5798 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5799 - }, - { - "id" : "minecraft:crimson_planks", - "blockRuntimeId" : 3839 - }, - { - "id" : "minecraft:warped_planks", - "blockRuntimeId" : 7594 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1318 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1319 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1320 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1321 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1322 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1323 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1330 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1325 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1326 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1324 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1327 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1331 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1328 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1329 - }, - { - "id" : "minecraft:blackstone_wall", - "blockRuntimeId" : 507 - }, - { - "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6038 - }, - { - "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5835 - }, - { - "id" : "minecraft:cobbled_deepslate_wall", - "blockRuntimeId" : 1155 - }, - { - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4297 - }, - { - "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6213 - }, - { - "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4114 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4773 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4774 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4775 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4776 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4777 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4778 - }, - { - "id" : "minecraft:nether_brick_fence", - "blockRuntimeId" : 5686 - }, - { - "id" : "minecraft:crimson_fence", - "blockRuntimeId" : 3817 - }, - { - "id" : "minecraft:warped_fence", - "blockRuntimeId" : 7572 - }, - { - "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4779 - }, - { - "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 7006 - }, - { - "id" : "minecraft:birch_fence_gate", - "blockRuntimeId" : 400 - }, - { - "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5252 - }, - { - "id" : "minecraft:acacia_fence_gate", - "blockRuntimeId" : 44 - }, - { - "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3980 - }, - { - "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3818 - }, - { - "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7573 - }, - { - "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5705 - }, - { - "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7277 - }, - { - "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5667 - }, - { - "id" : "minecraft:oak_stairs", - "blockRuntimeId" : 5714 - }, - { - "id" : "minecraft:spruce_stairs", - "blockRuntimeId" : 7038 - }, - { - "id" : "minecraft:birch_stairs", - "blockRuntimeId" : 432 - }, - { - "id" : "minecraft:jungle_stairs", - "blockRuntimeId" : 5284 - }, - { - "id" : "minecraft:acacia_stairs", - "blockRuntimeId" : 76 - }, - { - "id" : "minecraft:dark_oak_stairs", - "blockRuntimeId" : 4012 - }, - { - "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7183 - }, - { - "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5675 - }, - { - "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6707 - }, - { - "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6899 - }, - { - "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6634 - }, - { - "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6891 - }, - { - "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4988 - }, - { - "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6383 - }, - { - "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 4475 - }, - { - "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6375 - }, - { - "id" : "minecraft:andesite_stairs", - "blockRuntimeId" : 144 - }, - { - "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5811 - }, - { - "id" : "minecraft:brick_stairs", - "blockRuntimeId" : 876 - }, - { - "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5687 - }, - { - "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6622 - }, - { - "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4719 - }, - { - "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6556 - }, - { - "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6883 - }, - { - "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6534 - }, - { - "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6446 - }, - { - "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 4036 - }, - { - "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6438 - }, - { - "id" : "minecraft:crimson_stairs", - "blockRuntimeId" : 3859 - }, - { - "id" : "minecraft:warped_stairs", - "blockRuntimeId" : 7614 - }, - { - "id" : "minecraft:blackstone_stairs", - "blockRuntimeId" : 499 - }, - { - "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6030 - }, - { - "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5827 - }, - { - "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3912 - }, - { - "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4755 - }, - { - "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7741 - }, - { - "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5755 - }, - { - "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7685 - }, - { - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7699 - }, - { - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7727 - }, - { - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7713 - }, - { - "id" : "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId" : 1147 - }, - { - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4289 - }, - { - "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6205 - }, - { - "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4106 - }, - { - "id" : "minecraft:wooden_door" - }, - { - "id" : "minecraft:spruce_door" - }, - { - "id" : "minecraft:birch_door" - }, - { - "id" : "minecraft:jungle_door" - }, - { - "id" : "minecraft:acacia_door" - }, - { - "id" : "minecraft:dark_oak_door" - }, - { - "id" : "minecraft:iron_door" - }, - { - "id" : "minecraft:crimson_door" - }, - { - "id" : "minecraft:warped_door" - }, - { - "id" : "minecraft:trapdoor", - "blockRuntimeId" : 7359 - }, - { - "id" : "minecraft:spruce_trapdoor", - "blockRuntimeId" : 7062 - }, - { - "id" : "minecraft:birch_trapdoor", - "blockRuntimeId" : 456 - }, - { - "id" : "minecraft:jungle_trapdoor", - "blockRuntimeId" : 5308 - }, - { - "id" : "minecraft:acacia_trapdoor", - "blockRuntimeId" : 100 - }, - { - "id" : "minecraft:dark_oak_trapdoor", - "blockRuntimeId" : 4020 - }, - { - "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5167 - }, - { - "id" : "minecraft:crimson_trapdoor", - "blockRuntimeId" : 3886 - }, - { - "id" : "minecraft:warped_trapdoor", - "blockRuntimeId" : 7641 - }, - { - "id" : "minecraft:iron_bars", - "blockRuntimeId" : 5132 - }, - { - "id" : "minecraft:glass", - "blockRuntimeId" : 4882 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7084 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7092 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7091 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7099 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7096 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7098 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7085 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7088 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7089 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7097 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7093 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7087 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7095 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7094 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7086 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7090 - }, - { - "id" : "minecraft:tinted_glass", - "blockRuntimeId" : 7348 - }, - { - "id" : "minecraft:glass_pane", - "blockRuntimeId" : 4883 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7100 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7108 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7107 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7115 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7112 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7114 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7101 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7104 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7105 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7113 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7109 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7103 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7111 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7110 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7102 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7106 - }, - { - "id" : "minecraft:ladder", - "blockRuntimeId" : 5356 - }, - { - "id" : "minecraft:scaffolding", - "blockRuntimeId" : 6727 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7219 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7269 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7222 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7240 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7899 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7900 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7901 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7902 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7903 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7904 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7224 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7267 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7220 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7270 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7241 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7235 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7271 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7252 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7257 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7258 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7255 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7256 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7254 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7253 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7223 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7226 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7242 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7251 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7225 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7268 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7236 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7237 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7238 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7239 - }, - { - "id" : "minecraft:crimson_slab", - "blockRuntimeId" : 3857 - }, - { - "id" : "minecraft:warped_slab", - "blockRuntimeId" : 7612 - }, - { - "id" : "minecraft:blackstone_slab", - "blockRuntimeId" : 497 - }, - { - "id" : "minecraft:polished_blackstone_slab", - "blockRuntimeId" : 6028 - }, - { - "id" : "minecraft:polished_blackstone_brick_slab", - "blockRuntimeId" : 5825 - }, - { - "id" : "minecraft:cut_copper_slab", - "blockRuntimeId" : 3910 - }, - { - "id" : "minecraft:exposed_cut_copper_slab", - "blockRuntimeId" : 4753 - }, - { - "id" : "minecraft:weathered_cut_copper_slab", - "blockRuntimeId" : 7739 - }, - { - "id" : "minecraft:oxidized_cut_copper_slab", - "blockRuntimeId" : 5753 - }, - { - "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7683 - }, - { - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7697 - }, - { - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7725 - }, - { - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7711 - }, - { - "id" : "minecraft:cobbled_deepslate_slab", - "blockRuntimeId" : 1145 - }, - { - "id" : "minecraft:polished_deepslate_slab", - "blockRuntimeId" : 6203 - }, - { - "id" : "minecraft:deepslate_tile_slab", - "blockRuntimeId" : 4287 - }, - { - "id" : "minecraft:deepslate_brick_slab", - "blockRuntimeId" : 4104 - }, - { - "id" : "minecraft:brick_block", - "blockRuntimeId" : 875 - }, - { - "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1130 - }, - { - "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3768 - }, - { - "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6554 - }, - { - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7285 - }, - { - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7286 - }, - { - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7287 - }, - { - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7288 - }, - { - "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4727 - }, - { - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6437 - }, - { - "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5997 - }, - { - "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3769 - }, - { - "id" : "minecraft:gilded_blackstone", - "blockRuntimeId" : 4881 - }, - { - "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 - }, - { - "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4459 - }, - { - "id" : "minecraft:cracked_deepslate_tiles", - "blockRuntimeId" : 3767 - }, - { - "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4276 - }, - { - "id" : "minecraft:cracked_deepslate_bricks", - "blockRuntimeId" : 3766 - }, - { - "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1129 - }, - { - "id" : "minecraft:cobblestone", - "blockRuntimeId" : 1317 - }, - { - "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5666 - }, - { - "id" : "minecraft:cobbled_deepslate", - "blockRuntimeId" : 1142 - }, - { - "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6907 - }, - { - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6703 - }, - { - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6704 - }, - { - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6705 - }, - { - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6706 - }, - { - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6630 - }, - { - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6631 - }, - { - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6632 - }, - { - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6633 - }, - { - "id" : "minecraft:coal_block", - "blockRuntimeId" : 1140 - }, - { - "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 4583 - }, - { - "id" : "minecraft:gold_block", - "blockRuntimeId" : 4974 - }, - { - "id" : "minecraft:iron_block", - "blockRuntimeId" : 5133 - }, - { - "id" : "minecraft:copper_block", - "blockRuntimeId" : 3676 - }, - { - "id" : "minecraft:exposed_copper", - "blockRuntimeId" : 4751 - }, - { - "id" : "minecraft:weathered_copper", - "blockRuntimeId" : 7737 - }, - { - "id" : "minecraft:oxidized_copper", - "blockRuntimeId" : 5751 - }, - { - "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7681 - }, - { - "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7695 - }, - { - "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7723 - }, - { - "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7709 - }, - { - "id" : "minecraft:cut_copper", - "blockRuntimeId" : 3909 - }, - { - "id" : "minecraft:exposed_cut_copper", - "blockRuntimeId" : 4752 - }, - { - "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7738 - }, - { - "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5752 - }, - { - "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7682 - }, - { - "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7696 - }, - { - "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7724 - }, - { - "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7710 - }, - { - "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4716 - }, - { - "id" : "minecraft:diamond_block", - "blockRuntimeId" : 4473 - }, - { - "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5364 - }, - { - "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6576 - }, - { - "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6574 - }, - { - "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6575 - }, - { - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6542 - }, - { - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6544 - }, - { - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6543 - }, - { - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6545 - }, - { - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6435 - }, - { - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6436 - }, - { - "id" : "minecraft:slime", - "blockRuntimeId" : 6860 - }, - { - "id" : "minecraft:honey_block", - "blockRuntimeId" : 5111 - }, - { - "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5112 - }, - { - "id" : "minecraft:hay_block", - "blockRuntimeId" : 5083 - }, - { - "id" : "minecraft:bone_block", - "blockRuntimeId" : 692 - }, - { - "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5685 - }, - { - "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6621 - }, - { - "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5702 - }, - { - "id" : "minecraft:lodestone", - "blockRuntimeId" : 5562 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 963 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 971 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 970 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 978 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 975 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 977 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 964 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 967 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 968 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 976 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 972 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 966 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 974 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 973 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 965 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 969 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3659 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3667 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3666 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3674 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3671 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3673 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3660 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3663 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3664 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3672 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3668 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3662 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3670 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3669 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3661 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3665 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3643 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3651 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3650 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3658 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3655 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3657 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3644 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3647 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3648 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3656 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3652 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3646 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3654 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3653 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3645 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3649 - }, - { - "id" : "minecraft:clay", - "blockRuntimeId" : 1139 - }, - { - "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5082 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7116 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7124 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7123 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7131 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7128 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7130 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7117 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7120 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7121 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7129 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7125 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7119 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7127 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7126 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7118 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7122 - }, - { - "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7796 - }, - { - "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6842 - }, - { - "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 5009 - }, - { - "id" : "minecraft:black_glazed_terracotta", - "blockRuntimeId" : 488 - }, - { - "id" : "minecraft:brown_glazed_terracotta", - "blockRuntimeId" : 894 - }, - { - "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6598 - }, - { - "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5745 - }, - { - "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7938 - }, - { - "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5531 - }, - { - "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5025 - }, - { - "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3930 - }, - { - "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5483 - }, - { - "id" : "minecraft:blue_glazed_terracotta", - "blockRuntimeId" : 685 - }, - { - "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6516 - }, - { - "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5595 - }, - { - "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5776 - }, - { - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6522 - }, - { - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6524 - }, - { - "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5701 - }, - { - "id" : "minecraft:warped_wart_block", - "blockRuntimeId" : 7663 - }, - { - "id" : "minecraft:shroomlight", - "blockRuntimeId" : 6825 - }, - { - "id" : "minecraft:crimson_nylium", - "blockRuntimeId" : 3838 - }, - { - "id" : "minecraft:warped_nylium", - "blockRuntimeId" : 7593 - }, - { - "id" : "minecraft:basalt", - "blockRuntimeId" : 214 - }, - { - "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5819 - }, - { - "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6882 - }, - { - "id" : "minecraft:soul_soil", - "blockRuntimeId" : 6952 - }, - { - "id" : "minecraft:dirt", - "blockRuntimeId" : 4483 - }, - { - "id" : "minecraft:dirt", - "blockRuntimeId" : 4484 - }, - { - "id" : "minecraft:farmland", - "blockRuntimeId" : 4765 - }, - { - "id" : "minecraft:grass", - "blockRuntimeId" : 4996 - }, - { - "id" : "minecraft:grass_path", - "blockRuntimeId" : 4997 - }, - { - "id" : "minecraft:podzol", - "blockRuntimeId" : 5800 - }, - { - "id" : "minecraft:mycelium", - "blockRuntimeId" : 5684 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7176 - }, - { - "id" : "minecraft:iron_ore", - "blockRuntimeId" : 5166 - }, - { - "id" : "minecraft:gold_ore", - "blockRuntimeId" : 4975 - }, - { - "id" : "minecraft:diamond_ore", - "blockRuntimeId" : 4474 - }, - { - "id" : "minecraft:lapis_ore", - "blockRuntimeId" : 5365 - }, - { - "id" : "minecraft:redstone_ore", - "blockRuntimeId" : 6644 - }, - { - "id" : "minecraft:coal_ore", - "blockRuntimeId" : 1141 - }, - { - "id" : "minecraft:copper_ore", - "blockRuntimeId" : 3677 - }, - { - "id" : "minecraft:emerald_ore", - "blockRuntimeId" : 4717 - }, - { - "id" : "minecraft:quartz_ore", - "blockRuntimeId" : 6555 - }, - { - "id" : "minecraft:nether_gold_ore", - "blockRuntimeId" : 5695 - }, - { - "id" : "minecraft:ancient_debris", - "blockRuntimeId" : 143 - }, - { - "id" : "minecraft:deepslate_iron_ore", - "blockRuntimeId" : 4282 - }, - { - "id" : "minecraft:deepslate_gold_ore", - "blockRuntimeId" : 4281 - }, - { - "id" : "minecraft:deepslate_diamond_ore", - "blockRuntimeId" : 4279 - }, - { - "id" : "minecraft:deepslate_lapis_ore", - "blockRuntimeId" : 4283 - }, - { - "id" : "minecraft:deepslate_redstone_ore", - "blockRuntimeId" : 4284 - }, - { - "id" : "minecraft:deepslate_emerald_ore", - "blockRuntimeId" : 4280 - }, - { - "id" : "minecraft:deepslate_coal_ore", - "blockRuntimeId" : 4277 - }, - { - "id" : "minecraft:deepslate_copper_ore", - "blockRuntimeId" : 4278 - }, - { - "id" : "minecraft:gravel", - "blockRuntimeId" : 4998 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7177 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7179 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7181 - }, - { - "id" : "minecraft:blackstone", - "blockRuntimeId" : 494 - }, - { - "id" : "minecraft:deepslate", - "blockRuntimeId" : 4099 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7178 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7180 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7182 - }, - { - "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5822 - }, - { - "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6200 - }, - { - "id" : "minecraft:sand", - "blockRuntimeId" : 6701 - }, - { - "id" : "minecraft:sand", - "blockRuntimeId" : 6702 - }, - { - "id" : "minecraft:cactus", - "blockRuntimeId" : 920 - }, - { - "id" : "minecraft:log", - "blockRuntimeId" : 5563 - }, - { - "id" : "minecraft:stripped_oak_log", - "blockRuntimeId" : 7315 - }, - { - "id" : "minecraft:log", - "blockRuntimeId" : 5564 - }, - { - "id" : "minecraft:stripped_spruce_log", - "blockRuntimeId" : 7318 - }, - { - "id" : "minecraft:log", - "blockRuntimeId" : 5565 - }, - { - "id" : "minecraft:stripped_birch_log", - "blockRuntimeId" : 7300 - }, - { - "id" : "minecraft:log", - "blockRuntimeId" : 5566 - }, - { - "id" : "minecraft:stripped_jungle_log", - "blockRuntimeId" : 7312 - }, - { - "id" : "minecraft:log2", - "blockRuntimeId" : 5575 - }, - { - "id" : "minecraft:stripped_acacia_log", - "blockRuntimeId" : 7297 - }, - { - "id" : "minecraft:log2", - "blockRuntimeId" : 5576 - }, - { - "id" : "minecraft:stripped_dark_oak_log", - "blockRuntimeId" : 7309 - }, - { - "id" : "minecraft:crimson_stem", - "blockRuntimeId" : 3883 - }, - { - "id" : "minecraft:stripped_crimson_stem", - "blockRuntimeId" : 7306 - }, - { - "id" : "minecraft:warped_stem", - "blockRuntimeId" : 7638 - }, - { - "id" : "minecraft:stripped_warped_stem", - "blockRuntimeId" : 7324 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7803 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7809 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7804 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7810 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7805 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7811 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7806 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7812 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7807 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7813 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7808 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7814 - }, - { - "id" : "minecraft:crimson_hyphae", - "blockRuntimeId" : 3835 - }, - { - "id" : "minecraft:stripped_crimson_hyphae", - "blockRuntimeId" : 7303 - }, - { - "id" : "minecraft:warped_hyphae", - "blockRuntimeId" : 7590 - }, - { - "id" : "minecraft:stripped_warped_hyphae", - "blockRuntimeId" : 7321 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5409 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5410 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5411 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5412 - }, - { - "id" : "minecraft:leaves2", - "blockRuntimeId" : 5425 - }, - { - "id" : "minecraft:leaves2", - "blockRuntimeId" : 5426 - }, - { - "id" : "minecraft:azalea_leaves", - "blockRuntimeId" : 169 - }, - { - "id" : "minecraft:azalea_leaves_flowered", - "blockRuntimeId" : 173 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6715 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6716 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6717 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6718 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6719 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6720 - }, - { - "id" : "minecraft:bee_nest", - "blockRuntimeId" : 236 - }, - { - "id" : "minecraft:wheat_seeds" - }, - { - "id" : "minecraft:pumpkin_seeds" - }, - { - "id" : "minecraft:melon_seeds" - }, - { - "id" : "minecraft:beetroot_seeds" - }, - { - "id" : "minecraft:wheat" - }, - { - "id" : "minecraft:beetroot" - }, - { - "id" : "minecraft:potato" - }, - { - "id" : "minecraft:poisonous_potato" - }, - { - "id" : "minecraft:carrot" - }, - { - "id" : "minecraft:golden_carrot" - }, - { - "id" : "minecraft:apple" - }, - { - "id" : "minecraft:golden_apple" - }, - { - "id" : "minecraft:enchanted_golden_apple" - }, - { - "id" : "minecraft:melon_block", - "blockRuntimeId" : 5608 - }, - { - "id" : "minecraft:melon_slice" - }, - { - "id" : "minecraft:glistering_melon_slice" - }, - { - "id" : "minecraft:sweet_berries" - }, - { - "id" : "minecraft:glow_berries" - }, - { - "id" : "minecraft:pumpkin", - "blockRuntimeId" : 6454 - }, - { - "id" : "minecraft:carved_pumpkin", - "blockRuntimeId" : 988 - }, - { - "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5550 - }, - { - "id" : "minecraft:honeycomb" - }, - { - "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7345 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4503 - }, - { - "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7344 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4502 - }, - { - "id" : "minecraft:nether_sprouts" - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3681 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3679 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3680 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3678 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3682 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3686 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3684 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3685 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3683 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3687 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3701 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3699 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3700 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3698 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3702 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3711 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3709 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3710 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3708 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3712 - }, - { - "id" : "minecraft:kelp" - }, - { - "id" : "minecraft:seagrass", - "blockRuntimeId" : 6821 - }, - { - "id" : "minecraft:crimson_roots", - "blockRuntimeId" : 3856 - }, - { - "id" : "minecraft:warped_roots", - "blockRuntimeId" : 7611 - }, - { - "id" : "minecraft:yellow_flower", - "blockRuntimeId" : 7937 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6587 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6588 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6589 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6590 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6591 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6592 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6593 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6594 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6595 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6596 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6597 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4500 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4501 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4504 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4505 - }, - { - "id" : "minecraft:wither_rose", - "blockRuntimeId" : 7802 - }, - { - "id" : "minecraft:white_dye" - }, - { - "id" : "minecraft:light_gray_dye" - }, - { - "id" : "minecraft:gray_dye" - }, - { - "id" : "minecraft:black_dye" - }, - { - "id" : "minecraft:brown_dye" - }, - { - "id" : "minecraft:red_dye" - }, - { - "id" : "minecraft:orange_dye" - }, - { - "id" : "minecraft:yellow_dye" - }, - { - "id" : "minecraft:lime_dye" - }, - { - "id" : "minecraft:green_dye" - }, - { - "id" : "minecraft:cyan_dye" - }, - { - "id" : "minecraft:light_blue_dye" - }, - { - "id" : "minecraft:blue_dye" - }, - { - "id" : "minecraft:purple_dye" - }, - { - "id" : "minecraft:magenta_dye" - }, - { - "id" : "minecraft:pink_dye" - }, - { - "id" : "minecraft:ink_sac" - }, - { - "id" : "minecraft:glow_ink_sac" - }, - { - "id" : "minecraft:cocoa_beans" - }, - { - "id" : "minecraft:lapis_lazuli" - }, - { - "id" : "minecraft:bone_meal" - }, - { - "id" : "minecraft:vine", - "blockRuntimeId" : 7498 - }, - { - "id" : "minecraft:weeping_vines", - "blockRuntimeId" : 7752 - }, - { - "id" : "minecraft:twisting_vines", - "blockRuntimeId" : 7426 - }, - { - "id" : "minecraft:waterlily", - "blockRuntimeId" : 7680 - }, - { - "id" : "minecraft:deadbush", - "blockRuntimeId" : 4098 - }, - { - "id" : "minecraft:bamboo", - "blockRuntimeId" : 177 - }, - { - "id" : "minecraft:snow", - "blockRuntimeId" : 6908 - }, - { - "id" : "minecraft:ice", - "blockRuntimeId" : 5125 - }, - { - "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5765 - }, - { - "id" : "minecraft:blue_ice", - "blockRuntimeId" : 691 - }, - { - "id" : "minecraft:snow_layer", - "blockRuntimeId" : 6909 - }, - { - "id" : "minecraft:pointed_dripstone", - "blockRuntimeId" : 5806 - }, - { - "id" : "minecraft:sculk_sensor", - "blockRuntimeId" : 6745 - }, - { - "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4584 - }, - { - "id" : "minecraft:moss_carpet", - "blockRuntimeId" : 5665 - }, - { - "id" : "minecraft:moss_block", - "blockRuntimeId" : 5664 - }, - { - "id" : "minecraft:dirt_with_roots", - "blockRuntimeId" : 4485 - }, - { - "id" : "minecraft:hanging_roots", - "blockRuntimeId" : 5047 - }, - { - "id" : "minecraft:big_dripleaf", - "blockRuntimeId" : 328 - }, - { - "id" : "minecraft:small_dripleaf_block", - "blockRuntimeId" : 6874 - }, - { - "id" : "minecraft:spore_blossom", - "blockRuntimeId" : 6961 - }, - { - "id" : "minecraft:azalea", - "blockRuntimeId" : 168 - }, - { - "id" : "minecraft:flowering_azalea", - "blockRuntimeId" : 4814 - }, - { - "id" : "minecraft:glow_lichen", - "blockRuntimeId" : 4971 - }, - { - "id" : "minecraft:amethyst_block", - "blockRuntimeId" : 136 - }, - { - "id" : "minecraft:budding_amethyst", - "blockRuntimeId" : 919 - }, - { - "id" : "minecraft:amethyst_cluster", - "blockRuntimeId" : 137 - }, - { - "id" : "minecraft:large_amethyst_bud", - "blockRuntimeId" : 5366 - }, - { - "id" : "minecraft:medium_amethyst_bud", - "blockRuntimeId" : 5602 - }, - { - "id" : "minecraft:small_amethyst_bud", - "blockRuntimeId" : 6861 - }, - { - "id" : "minecraft:tuff", - "blockRuntimeId" : 7413 - }, - { - "id" : "minecraft:calcite", - "blockRuntimeId" : 943 - }, - { - "id" : "minecraft:chicken" - }, - { - "id" : "minecraft:porkchop" - }, - { - "id" : "minecraft:beef" - }, - { - "id" : "minecraft:mutton" - }, - { - "id" : "minecraft:rabbit" - }, - { - "id" : "minecraft:cod" - }, - { - "id" : "minecraft:salmon" - }, - { - "id" : "minecraft:tropical_fish" - }, - { - "id" : "minecraft:pufferfish" - }, - { - "id" : "minecraft:brown_mushroom", - "blockRuntimeId" : 900 - }, - { - "id" : "minecraft:red_mushroom", - "blockRuntimeId" : 6604 - }, - { - "id" : "minecraft:crimson_fungus", - "blockRuntimeId" : 3834 - }, - { - "id" : "minecraft:warped_fungus", - "blockRuntimeId" : 7589 - }, - { - "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 915 - }, - { - "id" : "minecraft:red_mushroom_block", - "blockRuntimeId" : 6619 - }, - { - "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 916 - }, - { - "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 901 - }, - { - "id" : "minecraft:egg" - }, - { - "id" : "minecraft:sugar_cane" - }, - { - "id" : "minecraft:sugar" - }, - { - "id" : "minecraft:rotten_flesh" - }, - { - "id" : "minecraft:bone" - }, - { - "id" : "minecraft:web", - "blockRuntimeId" : 7751 - }, - { - "id" : "minecraft:spider_eye" - }, - { - "id" : "minecraft:mob_spawner", - "blockRuntimeId" : 5657 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5658 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5659 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5660 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5661 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5662 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5663 - }, - { - "id" : "minecraft:infested_deepslate", - "blockRuntimeId" : 5126 - }, - { - "id" : "minecraft:dragon_egg", - "blockRuntimeId" : 4582 - }, - { - "id" : "minecraft:turtle_egg", - "blockRuntimeId" : 7414 - }, - { - "id" : "minecraft:chicken_spawn_egg" - }, - { - "id" : "minecraft:bee_spawn_egg" - }, - { - "id" : "minecraft:cow_spawn_egg" - }, - { - "id" : "minecraft:pig_spawn_egg" - }, - { - "id" : "minecraft:sheep_spawn_egg" - }, - { - "id" : "minecraft:wolf_spawn_egg" - }, - { - "id" : "minecraft:polar_bear_spawn_egg" - }, - { - "id" : "minecraft:ocelot_spawn_egg" - }, - { - "id" : "minecraft:cat_spawn_egg" - }, - { - "id" : "minecraft:mooshroom_spawn_egg" - }, - { - "id" : "minecraft:bat_spawn_egg" - }, - { - "id" : "minecraft:parrot_spawn_egg" - }, - { - "id" : "minecraft:rabbit_spawn_egg" - }, - { - "id" : "minecraft:llama_spawn_egg" - }, - { - "id" : "minecraft:horse_spawn_egg" - }, - { - "id" : "minecraft:donkey_spawn_egg" - }, - { - "id" : "minecraft:mule_spawn_egg" - }, - { - "id" : "minecraft:skeleton_horse_spawn_egg" - }, - { - "id" : "minecraft:zombie_horse_spawn_egg" - }, - { - "id" : "minecraft:tropical_fish_spawn_egg" - }, - { - "id" : "minecraft:cod_spawn_egg" - }, - { - "id" : "minecraft:pufferfish_spawn_egg" - }, - { - "id" : "minecraft:salmon_spawn_egg" - }, - { - "id" : "minecraft:dolphin_spawn_egg" - }, - { - "id" : "minecraft:turtle_spawn_egg" - }, - { - "id" : "minecraft:panda_spawn_egg" - }, - { - "id" : "minecraft:fox_spawn_egg" - }, - { - "id" : "minecraft:creeper_spawn_egg" - }, - { - "id" : "minecraft:enderman_spawn_egg" - }, - { - "id" : "minecraft:silverfish_spawn_egg" - }, - { - "id" : "minecraft:skeleton_spawn_egg" - }, - { - "id" : "minecraft:wither_skeleton_spawn_egg" - }, - { - "id" : "minecraft:stray_spawn_egg" - }, - { - "id" : "minecraft:slime_spawn_egg" - }, - { - "id" : "minecraft:spider_spawn_egg" - }, - { - "id" : "minecraft:zombie_spawn_egg" - }, - { - "id" : "minecraft:zombie_pigman_spawn_egg" - }, - { - "id" : "minecraft:husk_spawn_egg" - }, - { - "id" : "minecraft:drowned_spawn_egg" - }, - { - "id" : "minecraft:squid_spawn_egg" - }, - { - "id" : "minecraft:glow_squid_spawn_egg" - }, - { - "id" : "minecraft:cave_spider_spawn_egg" - }, - { - "id" : "minecraft:witch_spawn_egg" - }, - { - "id" : "minecraft:guardian_spawn_egg" - }, - { - "id" : "minecraft:elder_guardian_spawn_egg" - }, - { - "id" : "minecraft:endermite_spawn_egg" - }, - { - "id" : "minecraft:magma_cube_spawn_egg" - }, - { - "id" : "minecraft:strider_spawn_egg" - }, - { - "id" : "minecraft:hoglin_spawn_egg" - }, - { - "id" : "minecraft:piglin_spawn_egg" - }, - { - "id" : "minecraft:zoglin_spawn_egg" - }, - { - "id" : "minecraft:piglin_brute_spawn_egg" - }, - { - "id" : "minecraft:goat_spawn_egg" - }, - { - "id" : "minecraft:axolotl_spawn_egg" - }, - { - "id" : "minecraft:ghast_spawn_egg" - }, - { - "id" : "minecraft:blaze_spawn_egg" - }, - { - "id" : "minecraft:shulker_spawn_egg" - }, - { - "id" : "minecraft:vindicator_spawn_egg" - }, - { - "id" : "minecraft:evoker_spawn_egg" - }, - { - "id" : "minecraft:vex_spawn_egg" - }, - { - "id" : "minecraft:villager_spawn_egg" - }, - { - "id" : "minecraft:wandering_trader_spawn_egg" - }, - { - "id" : "minecraft:zombie_villager_spawn_egg" - }, - { - "id" : "minecraft:phantom_spawn_egg" - }, - { - "id" : "minecraft:pillager_spawn_egg" - }, - { - "id" : "minecraft:ravager_spawn_egg" - }, - { - "id" : "minecraft:obsidian", - "blockRuntimeId" : 5734 - }, - { - "id" : "minecraft:crying_obsidian", - "blockRuntimeId" : 3908 - }, - { - "id" : "minecraft:bedrock", - "blockRuntimeId" : 234 - }, - { - "id" : "minecraft:soul_sand", - "blockRuntimeId" : 6951 - }, - { - "id" : "minecraft:netherrack", - "blockRuntimeId" : 5703 - }, - { - "id" : "minecraft:magma", - "blockRuntimeId" : 5601 - }, - { - "id" : "minecraft:nether_wart" - }, - { - "id" : "minecraft:end_stone", - "blockRuntimeId" : 4744 - }, - { - "id" : "minecraft:chorus_flower", - "blockRuntimeId" : 1132 - }, - { - "id" : "minecraft:chorus_plant", - "blockRuntimeId" : 1138 - }, - { - "id" : "minecraft:chorus_fruit" - }, - { - "id" : "minecraft:popped_chorus_fruit" - }, - { - "id" : "minecraft:sponge", - "blockRuntimeId" : 6959 - }, - { - "id" : "minecraft:sponge", - "blockRuntimeId" : 6960 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3688 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3689 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3690 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3691 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3692 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3693 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3694 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3695 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3696 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3697 - }, - { - "id" : "minecraft:leather_helmet" - }, - { - "id" : "minecraft:chainmail_helmet" - }, - { - "id" : "minecraft:iron_helmet" - }, - { - "id" : "minecraft:golden_helmet" - }, - { - "id" : "minecraft:diamond_helmet" - }, - { - "id" : "minecraft:netherite_helmet" - }, - { - "id" : "minecraft:leather_chestplate" - }, - { - "id" : "minecraft:chainmail_chestplate" - }, - { - "id" : "minecraft:iron_chestplate" - }, - { - "id" : "minecraft:golden_chestplate" - }, - { - "id" : "minecraft:diamond_chestplate" - }, - { - "id" : "minecraft:netherite_chestplate" - }, - { - "id" : "minecraft:leather_leggings" - }, - { - "id" : "minecraft:chainmail_leggings" - }, - { - "id" : "minecraft:iron_leggings" - }, - { - "id" : "minecraft:golden_leggings" - }, - { - "id" : "minecraft:diamond_leggings" - }, - { - "id" : "minecraft:netherite_leggings" - }, - { - "id" : "minecraft:leather_boots" - }, - { - "id" : "minecraft:chainmail_boots" - }, - { - "id" : "minecraft:iron_boots" - }, - { - "id" : "minecraft:golden_boots" - }, - { - "id" : "minecraft:diamond_boots" - }, - { - "id" : "minecraft:netherite_boots" - }, - { - "id" : "minecraft:wooden_sword" - }, - { - "id" : "minecraft:stone_sword" - }, - { - "id" : "minecraft:iron_sword" - }, - { - "id" : "minecraft:golden_sword" - }, - { - "id" : "minecraft:diamond_sword" - }, - { - "id" : "minecraft:netherite_sword" - }, - { - "id" : "minecraft:wooden_axe" - }, - { - "id" : "minecraft:stone_axe" - }, - { - "id" : "minecraft:iron_axe" - }, - { - "id" : "minecraft:golden_axe" - }, - { - "id" : "minecraft:diamond_axe" - }, - { - "id" : "minecraft:netherite_axe" - }, - { - "id" : "minecraft:wooden_pickaxe" - }, - { - "id" : "minecraft:stone_pickaxe" - }, - { - "id" : "minecraft:iron_pickaxe" - }, - { - "id" : "minecraft:golden_pickaxe" - }, - { - "id" : "minecraft:diamond_pickaxe" - }, - { - "id" : "minecraft:netherite_pickaxe" - }, - { - "id" : "minecraft:wooden_shovel" - }, - { - "id" : "minecraft:stone_shovel" - }, - { - "id" : "minecraft:iron_shovel" - }, - { - "id" : "minecraft:golden_shovel" - }, - { - "id" : "minecraft:diamond_shovel" - }, - { - "id" : "minecraft:netherite_shovel" - }, - { - "id" : "minecraft:wooden_hoe" - }, - { - "id" : "minecraft:stone_hoe" - }, - { - "id" : "minecraft:iron_hoe" - }, - { - "id" : "minecraft:golden_hoe" - }, - { - "id" : "minecraft:diamond_hoe" - }, - { - "id" : "minecraft:netherite_hoe" - }, - { - "id" : "minecraft:bow" - }, - { - "id" : "minecraft:crossbow" - }, - { - "id" : "minecraft:arrow" - }, - { - "id" : "minecraft:arrow", - "damage" : 6 - }, - { - "id" : "minecraft:arrow", - "damage" : 7 - }, - { - "id" : "minecraft:arrow", - "damage" : 8 - }, - { - "id" : "minecraft:arrow", - "damage" : 9 - }, - { - "id" : "minecraft:arrow", - "damage" : 10 - }, - { - "id" : "minecraft:arrow", - "damage" : 11 - }, - { - "id" : "minecraft:arrow", - "damage" : 12 - }, - { - "id" : "minecraft:arrow", - "damage" : 13 - }, - { - "id" : "minecraft:arrow", - "damage" : 14 - }, - { - "id" : "minecraft:arrow", - "damage" : 15 - }, - { - "id" : "minecraft:arrow", - "damage" : 16 - }, - { - "id" : "minecraft:arrow", - "damage" : 17 - }, - { - "id" : "minecraft:arrow", - "damage" : 18 - }, - { - "id" : "minecraft:arrow", - "damage" : 19 - }, - { - "id" : "minecraft:arrow", - "damage" : 20 - }, - { - "id" : "minecraft:arrow", - "damage" : 21 - }, - { - "id" : "minecraft:arrow", - "damage" : 22 - }, - { - "id" : "minecraft:arrow", - "damage" : 23 - }, - { - "id" : "minecraft:arrow", - "damage" : 24 - }, - { - "id" : "minecraft:arrow", - "damage" : 25 - }, - { - "id" : "minecraft:arrow", - "damage" : 26 - }, - { - "id" : "minecraft:arrow", - "damage" : 27 - }, - { - "id" : "minecraft:arrow", - "damage" : 28 - }, - { - "id" : "minecraft:arrow", - "damage" : 29 - }, - { - "id" : "minecraft:arrow", - "damage" : 30 - }, - { - "id" : "minecraft:arrow", - "damage" : 31 - }, - { - "id" : "minecraft:arrow", - "damage" : 32 - }, - { - "id" : "minecraft:arrow", - "damage" : 33 - }, - { - "id" : "minecraft:arrow", - "damage" : 34 - }, - { - "id" : "minecraft:arrow", - "damage" : 35 - }, - { - "id" : "minecraft:arrow", - "damage" : 36 - }, - { - "id" : "minecraft:arrow", - "damage" : 37 - }, - { - "id" : "minecraft:arrow", - "damage" : 38 - }, - { - "id" : "minecraft:arrow", - "damage" : 39 - }, - { - "id" : "minecraft:arrow", - "damage" : 40 - }, - { - "id" : "minecraft:arrow", - "damage" : 41 - }, - { - "id" : "minecraft:arrow", - "damage" : 42 - }, - { - "id" : "minecraft:arrow", - "damage" : 43 - }, - { - "id" : "minecraft:shield" - }, - { - "id" : "minecraft:cooked_chicken" - }, - { - "id" : "minecraft:cooked_porkchop" - }, - { - "id" : "minecraft:cooked_beef" - }, - { - "id" : "minecraft:cooked_mutton" - }, - { - "id" : "minecraft:cooked_rabbit" - }, - { - "id" : "minecraft:cooked_cod" - }, - { - "id" : "minecraft:cooked_salmon" - }, - { - "id" : "minecraft:bread" - }, - { - "id" : "minecraft:mushroom_stew" - }, - { - "id" : "minecraft:beetroot_soup" - }, - { - "id" : "minecraft:rabbit_stew" - }, - { - "id" : "minecraft:baked_potato" - }, - { - "id" : "minecraft:cookie" - }, - { - "id" : "minecraft:pumpkin_pie" - }, - { - "id" : "minecraft:cake" - }, - { - "id" : "minecraft:dried_kelp" - }, - { - "id" : "minecraft:fishing_rod" - }, - { - "id" : "minecraft:carrot_on_a_stick" - }, - { - "id" : "minecraft:warped_fungus_on_a_stick" - }, - { - "id" : "minecraft:snowball" - }, - { - "id" : "minecraft:shears" - }, - { - "id" : "minecraft:flint_and_steel" - }, - { - "id" : "minecraft:lead" - }, - { - "id" : "minecraft:clock" - }, - { - "id" : "minecraft:compass" - }, - { - "id" : "minecraft:empty_map" - }, - { - "id" : "minecraft:empty_map", - "damage" : 2 - }, - { - "id" : "minecraft:saddle" - }, - { - "id" : "minecraft:leather_horse_armor" - }, - { - "id" : "minecraft:iron_horse_armor" - }, - { - "id" : "minecraft:golden_horse_armor" - }, - { - "id" : "minecraft:diamond_horse_armor" - }, - { - "id" : "minecraft:trident" - }, - { - "id" : "minecraft:turtle_helmet" - }, - { - "id" : "minecraft:elytra" - }, - { - "id" : "minecraft:totem_of_undying" - }, - { - "id" : "minecraft:glass_bottle" - }, - { - "id" : "minecraft:experience_bottle" - }, - { - "id" : "minecraft:potion" - }, - { - "id" : "minecraft:potion", - "damage" : 1 - }, - { - "id" : "minecraft:potion", - "damage" : 2 - }, - { - "id" : "minecraft:potion", - "damage" : 3 - }, - { - "id" : "minecraft:potion", - "damage" : 4 - }, - { - "id" : "minecraft:potion", - "damage" : 5 - }, - { - "id" : "minecraft:potion", - "damage" : 6 - }, - { - "id" : "minecraft:potion", - "damage" : 7 - }, - { - "id" : "minecraft:potion", - "damage" : 8 - }, - { - "id" : "minecraft:potion", - "damage" : 9 - }, - { - "id" : "minecraft:potion", - "damage" : 10 - }, - { - "id" : "minecraft:potion", - "damage" : 11 - }, - { - "id" : "minecraft:potion", - "damage" : 12 - }, - { - "id" : "minecraft:potion", - "damage" : 13 - }, - { - "id" : "minecraft:potion", - "damage" : 14 - }, - { - "id" : "minecraft:potion", - "damage" : 15 - }, - { - "id" : "minecraft:potion", - "damage" : 16 - }, - { - "id" : "minecraft:potion", - "damage" : 17 - }, - { - "id" : "minecraft:potion", - "damage" : 18 - }, - { - "id" : "minecraft:potion", - "damage" : 19 - }, - { - "id" : "minecraft:potion", - "damage" : 20 - }, - { - "id" : "minecraft:potion", - "damage" : 21 - }, - { - "id" : "minecraft:potion", - "damage" : 22 - }, - { - "id" : "minecraft:potion", - "damage" : 23 - }, - { - "id" : "minecraft:potion", - "damage" : 24 - }, - { - "id" : "minecraft:potion", - "damage" : 25 - }, - { - "id" : "minecraft:potion", - "damage" : 26 - }, - { - "id" : "minecraft:potion", - "damage" : 27 - }, - { - "id" : "minecraft:potion", - "damage" : 28 - }, - { - "id" : "minecraft:potion", - "damage" : 29 - }, - { - "id" : "minecraft:potion", - "damage" : 30 - }, - { - "id" : "minecraft:potion", - "damage" : 31 - }, - { - "id" : "minecraft:potion", - "damage" : 32 - }, - { - "id" : "minecraft:potion", - "damage" : 33 - }, - { - "id" : "minecraft:potion", - "damage" : 34 - }, - { - "id" : "minecraft:potion", - "damage" : 35 - }, - { - "id" : "minecraft:potion", - "damage" : 36 - }, - { - "id" : "minecraft:potion", - "damage" : 37 - }, - { - "id" : "minecraft:potion", - "damage" : 38 - }, - { - "id" : "minecraft:potion", - "damage" : 39 - }, - { - "id" : "minecraft:potion", - "damage" : 40 - }, - { - "id" : "minecraft:potion", - "damage" : 41 - }, - { - "id" : "minecraft:potion", - "damage" : 42 - }, - { - "id" : "minecraft:splash_potion" - }, - { - "id" : "minecraft:splash_potion", - "damage" : 1 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 2 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 3 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 4 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 5 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 6 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 7 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 8 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 9 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 10 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 11 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 12 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 13 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 14 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 15 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 16 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 17 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 18 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 19 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 20 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 21 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 22 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 23 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 24 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 25 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 26 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 27 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 28 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 29 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 30 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 31 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 32 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 33 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 34 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 35 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 36 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 37 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 38 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 39 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 40 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 41 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 42 - }, - { - "id" : "minecraft:lingering_potion" - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 1 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 2 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 3 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 4 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 5 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 6 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 7 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 8 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 9 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 10 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 11 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 12 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 13 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 14 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 15 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 16 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 17 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 18 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 19 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 20 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 21 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 22 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 23 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 24 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 25 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 26 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 27 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 28 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 29 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 30 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 31 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 32 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 33 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 34 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 35 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 36 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 37 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 38 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 39 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 40 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 41 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 42 - }, - { - "id" : "minecraft:spyglass" - }, - { - "id" : "minecraft:stick" - }, - { - "id" : "minecraft:bed" - }, - { - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "id" : "minecraft:torch", - "blockRuntimeId" : 7353 - }, - { - "id" : "minecraft:soul_torch", - "blockRuntimeId" : 6953 - }, - { - "id" : "minecraft:sea_pickle", - "blockRuntimeId" : 6813 - }, - { - "id" : "minecraft:lantern", - "blockRuntimeId" : 5362 - }, - { - "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6949 - }, - { - "id" : "minecraft:candle", - "blockRuntimeId" : 953 - }, - { - "id" : "minecraft:white_candle", - "blockRuntimeId" : 7786 - }, - { - "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5735 - }, - { - "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5585 - }, - { - "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5473 - }, - { - "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7927 - }, - { - "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5521 - }, - { - "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5766 - }, - { - "id" : "minecraft:gray_candle", - "blockRuntimeId" : 4999 - }, - { - "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5489 - }, - { - "id" : "minecraft:cyan_candle", - "blockRuntimeId" : 3920 - }, - { - "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6506 - }, - { - "id" : "minecraft:blue_candle", - "blockRuntimeId" : 675 - }, - { - "id" : "minecraft:brown_candle", - "blockRuntimeId" : 884 - }, - { - "id" : "minecraft:green_candle", - "blockRuntimeId" : 5015 - }, - { - "id" : "minecraft:red_candle", - "blockRuntimeId" : 6577 - }, - { - "id" : "minecraft:black_candle", - "blockRuntimeId" : 478 - }, - { - "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3770 - }, - { - "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 - }, - { - "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4811 - }, - { - "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6875 - }, - { - "id" : "minecraft:beehive", - "blockRuntimeId" : 260 - }, - { - "id" : "minecraft:campfire" - }, - { - "id" : "minecraft:soul_campfire" - }, - { - "id" : "minecraft:furnace", - "blockRuntimeId" : 4875 - }, - { - "id" : "minecraft:blast_furnace", - "blockRuntimeId" : 669 - }, - { - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - }, - { - "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6696 - }, - { - "id" : "minecraft:brewing_stand" - }, - { - "id" : "minecraft:anvil", - "blockRuntimeId" : 152 - }, - { - "id" : "minecraft:anvil", - "blockRuntimeId" : 156 - }, - { - "id" : "minecraft:anvil", - "blockRuntimeId" : 160 - }, - { - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5031 - }, - { - "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4718 - }, - { - "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 - }, - { - "id" : "minecraft:lectern", - "blockRuntimeId" : 5433 - }, - { - "id" : "minecraft:cauldron" - }, - { - "id" : "minecraft:composter", - "blockRuntimeId" : 3634 - }, - { - "id" : "minecraft:chest", - "blockRuntimeId" : 1123 - }, - { - "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7375 - }, - { - "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4745 - }, - { - "id" : "minecraft:barrel", - "blockRuntimeId" : 201 - }, - { - "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7458 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - }, - { - "id" : "minecraft:armor_stand" - }, - { - "id" : "minecraft:noteblock", - "blockRuntimeId" : 5713 - }, - { - "id" : "minecraft:jukebox", - "blockRuntimeId" : 5207 - }, - { - "id" : "minecraft:music_disc_13" - }, - { - "id" : "minecraft:music_disc_cat" - }, - { - "id" : "minecraft:music_disc_blocks" - }, - { - "id" : "minecraft:music_disc_chirp" - }, - { - "id" : "minecraft:music_disc_far" - }, - { - "id" : "minecraft:music_disc_mall" - }, - { - "id" : "minecraft:music_disc_mellohi" - }, - { - "id" : "minecraft:music_disc_stal" - }, - { - "id" : "minecraft:music_disc_strad" - }, - { - "id" : "minecraft:music_disc_ward" - }, - { - "id" : "minecraft:music_disc_11" - }, - { - "id" : "minecraft:music_disc_wait" - }, - { - "id" : "minecraft:music_disc_pigstep" - }, - { - "id" : "minecraft:glowstone_dust" - }, - { - "id" : "minecraft:glowstone", - "blockRuntimeId" : 4973 - }, - { - "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6643 - }, - { - "id" : "minecraft:sealantern", - "blockRuntimeId" : 6824 - }, - { - "id" : "minecraft:oak_sign" - }, - { - "id" : "minecraft:spruce_sign" - }, - { - "id" : "minecraft:birch_sign" - }, - { - "id" : "minecraft:jungle_sign" - }, - { - "id" : "minecraft:acacia_sign" - }, - { - "id" : "minecraft:dark_oak_sign" - }, - { - "id" : "minecraft:crimson_sign" - }, - { - "id" : "minecraft:warped_sign" - }, - { - "id" : "minecraft:painting" - }, - { - "id" : "minecraft:frame" - }, - { - "id" : "minecraft:glow_frame" - }, - { - "id" : "minecraft:honey_bottle" - }, - { - "id" : "minecraft:flower_pot" - }, - { - "id" : "minecraft:bowl" - }, - { - "id" : "minecraft:bucket" - }, - { - "id" : "minecraft:milk_bucket" - }, - { - "id" : "minecraft:water_bucket" - }, - { - "id" : "minecraft:lava_bucket" - }, - { - "id" : "minecraft:cod_bucket" - }, - { - "id" : "minecraft:salmon_bucket" - }, - { - "id" : "minecraft:tropical_fish_bucket" - }, - { - "id" : "minecraft:pufferfish_bucket" - }, - { - "id" : "minecraft:powder_snow_bucket" - }, - { - "id" : "minecraft:axolotl_bucket" - }, - { - "id" : "minecraft:skull", - "damage" : 3 - }, - { - "id" : "minecraft:skull", - "damage" : 2 - }, - { - "id" : "minecraft:skull", - "damage" : 4 - }, - { - "id" : "minecraft:skull", - "damage" : 5 - }, - { - "id" : "minecraft:skull" - }, - { - "id" : "minecraft:skull", - "damage" : 1 - }, - { - "id" : "minecraft:beacon", - "blockRuntimeId" : 217 - }, - { - "id" : "minecraft:bell", - "blockRuntimeId" : 292 - }, - { - "id" : "minecraft:conduit", - "blockRuntimeId" : 3675 - }, - { - "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7291 - }, - { - "id" : "minecraft:end_portal_frame", - "blockRuntimeId" : 4730 - }, - { - "id" : "minecraft:coal" - }, - { - "id" : "minecraft:charcoal" - }, - { - "id" : "minecraft:diamond" - }, - { - "id" : "minecraft:iron_nugget" - }, - { - "id" : "minecraft:raw_iron" - }, - { - "id" : "minecraft:raw_gold" - }, - { - "id" : "minecraft:raw_copper" - }, - { - "id" : "minecraft:copper_ingot" - }, - { - "id" : "minecraft:iron_ingot" - }, - { - "id" : "minecraft:netherite_scrap" - }, - { - "id" : "minecraft:netherite_ingot" - }, - { - "id" : "minecraft:gold_nugget" - }, - { - "id" : "minecraft:gold_ingot" - }, - { - "id" : "minecraft:emerald" - }, - { - "id" : "minecraft:quartz" - }, - { - "id" : "minecraft:clay_ball" - }, - { - "id" : "minecraft:brick" - }, - { - "id" : "minecraft:netherbrick" - }, - { - "id" : "minecraft:prismarine_shard" - }, - { - "id" : "minecraft:amethyst_shard" - }, - { - "id" : "minecraft:prismarine_crystals" - }, - { - "id" : "minecraft:nautilus_shell" - }, - { - "id" : "minecraft:heart_of_the_sea" - }, - { - "id" : "minecraft:scute" - }, - { - "id" : "minecraft:phantom_membrane" - }, - { - "id" : "minecraft:string" - }, - { - "id" : "minecraft:feather" - }, - { - "id" : "minecraft:flint" - }, - { - "id" : "minecraft:gunpowder" - }, - { - "id" : "minecraft:leather" - }, - { - "id" : "minecraft:rabbit_hide" - }, - { - "id" : "minecraft:rabbit_foot" - }, - { - "id" : "minecraft:fire_charge" - }, - { - "id" : "minecraft:blaze_rod" - }, - { - "id" : "minecraft:blaze_powder" - }, - { - "id" : "minecraft:magma_cream" - }, - { - "id" : "minecraft:fermented_spider_eye" - }, - { - "id" : "minecraft:dragon_breath" - }, - { - "id" : "minecraft:shulker_shell" - }, - { - "id" : "minecraft:ghast_tear" - }, - { - "id" : "minecraft:slime_ball" - }, - { - "id" : "minecraft:ender_pearl" - }, - { - "id" : "minecraft:ender_eye" - }, - { - "id" : "minecraft:nether_star" - }, - { - "id" : "minecraft:end_rod", - "blockRuntimeId" : 4738 - }, - { - "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5515 - }, - { - "id" : "minecraft:end_crystal" - }, - { - "id" : "minecraft:paper" - }, - { - "id" : "minecraft:book" - }, - { - "id" : "minecraft:writable_book" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:oak_boat" - }, - { - "id" : "minecraft:spruce_boat" - }, - { - "id" : "minecraft:birch_boat" - }, - { - "id" : "minecraft:jungle_boat" - }, - { - "id" : "minecraft:acacia_boat" - }, - { - "id" : "minecraft:dark_oak_boat" - }, - { - "id" : "minecraft:rail", - "blockRuntimeId" : 6564 - }, - { - "id" : "minecraft:golden_rail", - "blockRuntimeId" : 4976 - }, - { - "id" : "minecraft:detector_rail", - "blockRuntimeId" : 4461 - }, - { - "id" : "minecraft:activator_rail", - "blockRuntimeId" : 122 - }, - { - "id" : "minecraft:minecart" - }, - { - "id" : "minecraft:chest_minecart" - }, - { - "id" : "minecraft:hopper_minecart" - }, - { - "id" : "minecraft:tnt_minecart" - }, - { - "id" : "minecraft:redstone" - }, - { - "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6642 - }, - { - "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6645 - }, - { - "id" : "minecraft:lever", - "blockRuntimeId" : 5441 - }, - { - "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7839 - }, - { - "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6962 - }, - { - "id" : "minecraft:birch_button", - "blockRuntimeId" : 356 - }, - { - "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5208 - }, - { - "id" : "minecraft:acacia_button" - }, - { - "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3936 - }, - { - "id" : "minecraft:stone_button", - "blockRuntimeId" : 7191 - }, - { - "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3771 - }, - { - "id" : "minecraft:warped_button", - "blockRuntimeId" : 7526 - }, - { - "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 5998 - }, - { - "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7397 - }, - { - "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7883 - }, - { - "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 7022 - }, - { - "id" : "minecraft:birch_pressure_plate", - "blockRuntimeId" : 416 - }, - { - "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5268 - }, - { - "id" : "minecraft:acacia_pressure_plate", - "blockRuntimeId" : 60 - }, - { - "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3996 - }, - { - "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3840 - }, - { - "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7595 - }, - { - "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7203 - }, - { - "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5499 - }, - { - "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5095 - }, - { - "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 6012 - }, - { - "id" : "minecraft:observer", - "blockRuntimeId" : 5722 - }, - { - "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4066 - }, - { - "id" : "minecraft:repeater" - }, - { - "id" : "minecraft:comparator" - }, - { - "id" : "minecraft:hopper" - }, - { - "id" : "minecraft:dropper", - "blockRuntimeId" : 4588 - }, - { - "id" : "minecraft:dispenser", - "blockRuntimeId" : 4489 - }, - { - "id" : "minecraft:piston", - "blockRuntimeId" : 5783 - }, - { - "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7165 - }, - { - "id" : "minecraft:tnt", - "blockRuntimeId" : 7349 - }, - { - "id" : "minecraft:name_tag" - }, - { - "id" : "minecraft:loom", - "blockRuntimeId" : 5581 - }, - { - "id" : "minecraft:banner" - }, - { - "id" : "minecraft:banner", - "damage" : 8 - }, - { - "id" : "minecraft:banner", - "damage" : 7 - }, - { - "id" : "minecraft:banner", - "damage" : 15 - }, - { - "id" : "minecraft:banner", - "damage" : 12 - }, - { - "id" : "minecraft:banner", - "damage" : 14 - }, - { - "id" : "minecraft:banner", - "damage" : 1 - }, - { - "id" : "minecraft:banner", - "damage" : 4 - }, - { - "id" : "minecraft:banner", - "damage" : 5 - }, - { - "id" : "minecraft:banner", - "damage" : 13 - }, - { - "id" : "minecraft:banner", - "damage" : 9 - }, - { - "id" : "minecraft:banner", - "damage" : 3 - }, - { - "id" : "minecraft:banner", - "damage" : 11 - }, - { - "id" : "minecraft:banner", - "damage" : 10 - }, - { - "id" : "minecraft:banner", - "damage" : 2 - }, - { - "id" : "minecraft:banner", - "damage" : 6 - }, - { - "id" : "minecraft:banner", - "damage" : 15, - "nbt_b64" : "CgAAAwQAVHlwZQEAAAAA" - }, - { - "id" : "minecraft:creeper_banner_pattern" - }, - { - "id" : "minecraft:skull_banner_pattern" - }, - { - "id" : "minecraft:flower_banner_pattern" - }, - { - "id" : "minecraft:mojang_banner_pattern" - }, - { - "id" : "minecraft:field_masoned_banner_pattern" - }, - { - "id" : "minecraft:bordure_indented_banner_pattern" - }, - { - "id" : "minecraft:piglin_banner_pattern" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_star", - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 8, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 7, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 15, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 12, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 14, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 1, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 4, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 5, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 13, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 9, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 3, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 11, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 10, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 2, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 6, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" - }, - { - "id" : "minecraft:chain" - }, - { - "id" : "minecraft:target", - "blockRuntimeId" : 7347 - }, - { - "id" : "minecraft:lodestone_compass" - } - ] -} \ No newline at end of file + "items" : [ + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5797 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5798 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5799 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5800 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5801 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5802 + }, + { + "id" : "minecraft:crimson_planks", + "blockRuntimeId" : 3840 + }, + { + "id" : "minecraft:warped_planks", + "blockRuntimeId" : 7598 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1319 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1320 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1321 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1322 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1323 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1324 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1331 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1326 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1327 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1325 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1328 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1332 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1329 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1330 + }, + { + "id" : "minecraft:blackstone_wall", + "blockRuntimeId" : 507 + }, + { + "id" : "minecraft:polished_blackstone_wall", + "blockRuntimeId" : 6041 + }, + { + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5838 + }, + { + "id" : "minecraft:cobbled_deepslate_wall", + "blockRuntimeId" : 1156 + }, + { + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4298 + }, + { + "id" : "minecraft:polished_deepslate_wall", + "blockRuntimeId" : 6216 + }, + { + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4115 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4774 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4775 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4776 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4777 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4778 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4779 + }, + { + "id" : "minecraft:nether_brick_fence", + "blockRuntimeId" : 5689 + }, + { + "id" : "minecraft:crimson_fence", + "blockRuntimeId" : 3818 + }, + { + "id" : "minecraft:warped_fence", + "blockRuntimeId" : 7576 + }, + { + "id" : "minecraft:fence_gate", + "blockRuntimeId" : 4780 + }, + { + "id" : "minecraft:spruce_fence_gate", + "blockRuntimeId" : 7010 + }, + { + "id" : "minecraft:birch_fence_gate", + "blockRuntimeId" : 400 + }, + { + "id" : "minecraft:jungle_fence_gate", + "blockRuntimeId" : 5253 + }, + { + "id" : "minecraft:acacia_fence_gate", + "blockRuntimeId" : 44 + }, + { + "id" : "minecraft:dark_oak_fence_gate", + "blockRuntimeId" : 3981 + }, + { + "id" : "minecraft:crimson_fence_gate", + "blockRuntimeId" : 3819 + }, + { + "id" : "minecraft:warped_fence_gate", + "blockRuntimeId" : 7577 + }, + { + "id" : "minecraft:normal_stone_stairs", + "blockRuntimeId" : 5708 + }, + { + "id" : "minecraft:stone_stairs", + "blockRuntimeId" : 7281 + }, + { + "id" : "minecraft:mossy_cobblestone_stairs", + "blockRuntimeId" : 5668 + }, + { + "id" : "minecraft:oak_stairs", + "blockRuntimeId" : 5717 + }, + { + "id" : "minecraft:spruce_stairs", + "blockRuntimeId" : 7042 + }, + { + "id" : "minecraft:birch_stairs", + "blockRuntimeId" : 432 + }, + { + "id" : "minecraft:jungle_stairs", + "blockRuntimeId" : 5285 + }, + { + "id" : "minecraft:acacia_stairs", + "blockRuntimeId" : 76 + }, + { + "id" : "minecraft:dark_oak_stairs", + "blockRuntimeId" : 4013 + }, + { + "id" : "minecraft:stone_brick_stairs", + "blockRuntimeId" : 7187 + }, + { + "id" : "minecraft:mossy_stone_brick_stairs", + "blockRuntimeId" : 5676 + }, + { + "id" : "minecraft:sandstone_stairs", + "blockRuntimeId" : 6710 + }, + { + "id" : "minecraft:smooth_sandstone_stairs", + "blockRuntimeId" : 6903 + }, + { + "id" : "minecraft:red_sandstone_stairs", + "blockRuntimeId" : 6637 + }, + { + "id" : "minecraft:smooth_red_sandstone_stairs", + "blockRuntimeId" : 6895 + }, + { + "id" : "minecraft:granite_stairs", + "blockRuntimeId" : 4989 + }, + { + "id" : "minecraft:polished_granite_stairs", + "blockRuntimeId" : 6386 + }, + { + "id" : "minecraft:diorite_stairs", + "blockRuntimeId" : 4476 + }, + { + "id" : "minecraft:polished_diorite_stairs", + "blockRuntimeId" : 6378 + }, + { + "id" : "minecraft:andesite_stairs", + "blockRuntimeId" : 144 + }, + { + "id" : "minecraft:polished_andesite_stairs", + "blockRuntimeId" : 5814 + }, + { + "id" : "minecraft:brick_stairs", + "blockRuntimeId" : 876 + }, + { + "id" : "minecraft:nether_brick_stairs", + "blockRuntimeId" : 5690 + }, + { + "id" : "minecraft:red_nether_brick_stairs", + "blockRuntimeId" : 6625 + }, + { + "id" : "minecraft:end_brick_stairs", + "blockRuntimeId" : 4720 + }, + { + "id" : "minecraft:quartz_stairs", + "blockRuntimeId" : 6559 + }, + { + "id" : "minecraft:smooth_quartz_stairs", + "blockRuntimeId" : 6887 + }, + { + "id" : "minecraft:purpur_stairs", + "blockRuntimeId" : 6537 + }, + { + "id" : "minecraft:prismarine_stairs", + "blockRuntimeId" : 6449 + }, + { + "id" : "minecraft:dark_prismarine_stairs", + "blockRuntimeId" : 4037 + }, + { + "id" : "minecraft:prismarine_bricks_stairs", + "blockRuntimeId" : 6441 + }, + { + "id" : "minecraft:crimson_stairs", + "blockRuntimeId" : 3860 + }, + { + "id" : "minecraft:warped_stairs", + "blockRuntimeId" : 7618 + }, + { + "id" : "minecraft:blackstone_stairs", + "blockRuntimeId" : 499 + }, + { + "id" : "minecraft:polished_blackstone_stairs", + "blockRuntimeId" : 6033 + }, + { + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5830 + }, + { + "id" : "minecraft:cut_copper_stairs", + "blockRuntimeId" : 3913 + }, + { + "id" : "minecraft:exposed_cut_copper_stairs", + "blockRuntimeId" : 4756 + }, + { + "id" : "minecraft:weathered_cut_copper_stairs", + "blockRuntimeId" : 7745 + }, + { + "id" : "minecraft:oxidized_cut_copper_stairs", + "blockRuntimeId" : 5758 + }, + { + "id" : "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId" : 7689 + }, + { + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId" : 7703 + }, + { + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId" : 7731 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7717 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs", + "blockRuntimeId" : 1148 + }, + { + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4290 + }, + { + "id" : "minecraft:polished_deepslate_stairs", + "blockRuntimeId" : 6208 + }, + { + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4107 + }, + { + "id" : "minecraft:wooden_door" + }, + { + "id" : "minecraft:spruce_door" + }, + { + "id" : "minecraft:birch_door" + }, + { + "id" : "minecraft:jungle_door" + }, + { + "id" : "minecraft:acacia_door" + }, + { + "id" : "minecraft:dark_oak_door" + }, + { + "id" : "minecraft:iron_door" + }, + { + "id" : "minecraft:crimson_door" + }, + { + "id" : "minecraft:warped_door" + }, + { + "id" : "minecraft:trapdoor", + "blockRuntimeId" : 7363 + }, + { + "id" : "minecraft:spruce_trapdoor", + "blockRuntimeId" : 7066 + }, + { + "id" : "minecraft:birch_trapdoor", + "blockRuntimeId" : 456 + }, + { + "id" : "minecraft:jungle_trapdoor", + "blockRuntimeId" : 5309 + }, + { + "id" : "minecraft:acacia_trapdoor", + "blockRuntimeId" : 100 + }, + { + "id" : "minecraft:dark_oak_trapdoor", + "blockRuntimeId" : 4021 + }, + { + "id" : "minecraft:iron_trapdoor", + "blockRuntimeId" : 5168 + }, + { + "id" : "minecraft:crimson_trapdoor", + "blockRuntimeId" : 3887 + }, + { + "id" : "minecraft:warped_trapdoor", + "blockRuntimeId" : 7645 + }, + { + "id" : "minecraft:iron_bars", + "blockRuntimeId" : 5133 + }, + { + "id" : "minecraft:glass", + "blockRuntimeId" : 4883 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7088 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7096 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7095 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7103 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7100 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7102 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7089 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7092 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7093 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7101 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7097 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7091 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7099 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7098 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7090 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7094 + }, + { + "id" : "minecraft:tinted_glass", + "blockRuntimeId" : 7352 + }, + { + "id" : "minecraft:glass_pane", + "blockRuntimeId" : 4884 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7104 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7112 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7111 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7119 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7116 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7118 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7105 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7108 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7109 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7117 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7113 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7107 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7115 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7114 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7106 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7110 + }, + { + "id" : "minecraft:ladder", + "blockRuntimeId" : 5357 + }, + { + "id" : "minecraft:scaffolding", + "blockRuntimeId" : 6730 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7223 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7273 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7226 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7244 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7903 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7904 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7905 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7906 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7907 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7908 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7228 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7271 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7224 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7274 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7245 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7239 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7275 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7256 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7261 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7262 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7259 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7260 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7258 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7257 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7227 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7230 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7246 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7255 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7229 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7272 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7240 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7241 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7242 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7243 + }, + { + "id" : "minecraft:crimson_slab", + "blockRuntimeId" : 3858 + }, + { + "id" : "minecraft:warped_slab", + "blockRuntimeId" : 7616 + }, + { + "id" : "minecraft:blackstone_slab", + "blockRuntimeId" : 497 + }, + { + "id" : "minecraft:polished_blackstone_slab", + "blockRuntimeId" : 6031 + }, + { + "id" : "minecraft:polished_blackstone_brick_slab", + "blockRuntimeId" : 5828 + }, + { + "id" : "minecraft:cut_copper_slab", + "blockRuntimeId" : 3911 + }, + { + "id" : "minecraft:exposed_cut_copper_slab", + "blockRuntimeId" : 4754 + }, + { + "id" : "minecraft:weathered_cut_copper_slab", + "blockRuntimeId" : 7743 + }, + { + "id" : "minecraft:oxidized_cut_copper_slab", + "blockRuntimeId" : 5756 + }, + { + "id" : "minecraft:waxed_cut_copper_slab", + "blockRuntimeId" : 7687 + }, + { + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "blockRuntimeId" : 7701 + }, + { + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "blockRuntimeId" : 7729 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId" : 7715 + }, + { + "id" : "minecraft:cobbled_deepslate_slab", + "blockRuntimeId" : 1146 + }, + { + "id" : "minecraft:polished_deepslate_slab", + "blockRuntimeId" : 6206 + }, + { + "id" : "minecraft:deepslate_tile_slab", + "blockRuntimeId" : 4288 + }, + { + "id" : "minecraft:deepslate_brick_slab", + "blockRuntimeId" : 4105 + }, + { + "id" : "minecraft:brick_block", + "blockRuntimeId" : 875 + }, + { + "id" : "minecraft:chiseled_nether_bricks", + "blockRuntimeId" : 1130 + }, + { + "id" : "minecraft:cracked_nether_bricks", + "blockRuntimeId" : 3769 + }, + { + "id" : "minecraft:quartz_bricks", + "blockRuntimeId" : 6557 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7289 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7290 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7291 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7292 + }, + { + "id" : "minecraft:end_bricks", + "blockRuntimeId" : 4728 + }, + { + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6440 + }, + { + "id" : "minecraft:polished_blackstone_bricks", + "blockRuntimeId" : 6000 + }, + { + "id" : "minecraft:cracked_polished_blackstone_bricks", + "blockRuntimeId" : 3770 + }, + { + "id" : "minecraft:gilded_blackstone", + "blockRuntimeId" : 4882 + }, + { + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1131 + }, + { + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4460 + }, + { + "id" : "minecraft:cracked_deepslate_tiles", + "blockRuntimeId" : 3768 + }, + { + "id" : "minecraft:deepslate_bricks", + "blockRuntimeId" : 4277 + }, + { + "id" : "minecraft:cracked_deepslate_bricks", + "blockRuntimeId" : 3767 + }, + { + "id" : "minecraft:chiseled_deepslate", + "blockRuntimeId" : 1129 + }, + { + "id" : "minecraft:cobblestone", + "blockRuntimeId" : 1318 + }, + { + "id" : "minecraft:mossy_cobblestone", + "blockRuntimeId" : 5667 + }, + { + "id" : "minecraft:cobbled_deepslate", + "blockRuntimeId" : 1143 + }, + { + "id" : "minecraft:smooth_stone", + "blockRuntimeId" : 6911 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6706 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6707 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6708 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6709 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6633 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6634 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6635 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6636 + }, + { + "id" : "minecraft:coal_block", + "blockRuntimeId" : 1141 + }, + { + "id" : "minecraft:dried_kelp_block", + "blockRuntimeId" : 4584 + }, + { + "id" : "minecraft:gold_block", + "blockRuntimeId" : 4975 + }, + { + "id" : "minecraft:iron_block", + "blockRuntimeId" : 5134 + }, + { + "id" : "minecraft:copper_block", + "blockRuntimeId" : 3677 + }, + { + "id" : "minecraft:exposed_copper", + "blockRuntimeId" : 4752 + }, + { + "id" : "minecraft:weathered_copper", + "blockRuntimeId" : 7741 + }, + { + "id" : "minecraft:oxidized_copper", + "blockRuntimeId" : 5754 + }, + { + "id" : "minecraft:waxed_copper", + "blockRuntimeId" : 7685 + }, + { + "id" : "minecraft:waxed_exposed_copper", + "blockRuntimeId" : 7699 + }, + { + "id" : "minecraft:waxed_weathered_copper", + "blockRuntimeId" : 7727 + }, + { + "id" : "minecraft:waxed_oxidized_copper", + "blockRuntimeId" : 7713 + }, + { + "id" : "minecraft:cut_copper", + "blockRuntimeId" : 3910 + }, + { + "id" : "minecraft:exposed_cut_copper", + "blockRuntimeId" : 4753 + }, + { + "id" : "minecraft:weathered_cut_copper", + "blockRuntimeId" : 7742 + }, + { + "id" : "minecraft:oxidized_cut_copper", + "blockRuntimeId" : 5755 + }, + { + "id" : "minecraft:waxed_cut_copper", + "blockRuntimeId" : 7686 + }, + { + "id" : "minecraft:waxed_exposed_cut_copper", + "blockRuntimeId" : 7700 + }, + { + "id" : "minecraft:waxed_weathered_cut_copper", + "blockRuntimeId" : 7728 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId" : 7714 + }, + { + "id" : "minecraft:emerald_block", + "blockRuntimeId" : 4717 + }, + { + "id" : "minecraft:diamond_block", + "blockRuntimeId" : 4474 + }, + { + "id" : "minecraft:lapis_block", + "blockRuntimeId" : 5365 + }, + { + "id" : "minecraft:raw_iron_block", + "blockRuntimeId" : 6579 + }, + { + "id" : "minecraft:raw_copper_block", + "blockRuntimeId" : 6577 + }, + { + "id" : "minecraft:raw_gold_block", + "blockRuntimeId" : 6578 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6545 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6547 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6546 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6548 + }, + { + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6438 + }, + { + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6439 + }, + { + "id" : "minecraft:slime", + "blockRuntimeId" : 6864 + }, + { + "id" : "minecraft:honey_block", + "blockRuntimeId" : 5112 + }, + { + "id" : "minecraft:honeycomb_block", + "blockRuntimeId" : 5113 + }, + { + "id" : "minecraft:hay_block", + "blockRuntimeId" : 5084 + }, + { + "id" : "minecraft:bone_block", + "blockRuntimeId" : 692 + }, + { + "id" : "minecraft:nether_brick", + "blockRuntimeId" : 5688 + }, + { + "id" : "minecraft:red_nether_brick", + "blockRuntimeId" : 6624 + }, + { + "id" : "minecraft:netherite_block", + "blockRuntimeId" : 5705 + }, + { + "id" : "minecraft:lodestone", + "blockRuntimeId" : 5563 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 963 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 971 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 970 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 978 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 975 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 977 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 964 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 967 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 968 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 976 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 972 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 966 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 974 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 973 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 965 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 969 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3660 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3668 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3667 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3675 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3672 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3674 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3661 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3664 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3665 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3673 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3669 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3663 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3671 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3670 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3662 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3666 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3644 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3652 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3651 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3659 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3656 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3658 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3645 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3648 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3649 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3657 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3653 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3647 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3655 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3654 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3646 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3650 + }, + { + "id" : "minecraft:clay", + "blockRuntimeId" : 1139 + }, + { + "id" : "minecraft:hardened_clay", + "blockRuntimeId" : 5083 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7120 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7128 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7127 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7135 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7132 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7134 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7121 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7124 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7125 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7133 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7129 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7123 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7131 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7130 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7122 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7126 + }, + { + "id" : "minecraft:white_glazed_terracotta", + "blockRuntimeId" : 7800 + }, + { + "id" : "minecraft:silver_glazed_terracotta", + "blockRuntimeId" : 6846 + }, + { + "id" : "minecraft:gray_glazed_terracotta", + "blockRuntimeId" : 5010 + }, + { + "id" : "minecraft:black_glazed_terracotta", + "blockRuntimeId" : 488 + }, + { + "id" : "minecraft:brown_glazed_terracotta", + "blockRuntimeId" : 894 + }, + { + "id" : "minecraft:red_glazed_terracotta", + "blockRuntimeId" : 6601 + }, + { + "id" : "minecraft:orange_glazed_terracotta", + "blockRuntimeId" : 5748 + }, + { + "id" : "minecraft:yellow_glazed_terracotta", + "blockRuntimeId" : 7942 + }, + { + "id" : "minecraft:lime_glazed_terracotta", + "blockRuntimeId" : 5532 + }, + { + "id" : "minecraft:green_glazed_terracotta", + "blockRuntimeId" : 5026 + }, + { + "id" : "minecraft:cyan_glazed_terracotta", + "blockRuntimeId" : 3931 + }, + { + "id" : "minecraft:light_blue_glazed_terracotta", + "blockRuntimeId" : 5484 + }, + { + "id" : "minecraft:blue_glazed_terracotta", + "blockRuntimeId" : 685 + }, + { + "id" : "minecraft:purple_glazed_terracotta", + "blockRuntimeId" : 6519 + }, + { + "id" : "minecraft:magenta_glazed_terracotta", + "blockRuntimeId" : 5596 + }, + { + "id" : "minecraft:pink_glazed_terracotta", + "blockRuntimeId" : 5779 + }, + { + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6525 + }, + { + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6527 + }, + { + "id" : "minecraft:nether_wart_block", + "blockRuntimeId" : 5704 + }, + { + "id" : "minecraft:warped_wart_block", + "blockRuntimeId" : 7667 + }, + { + "id" : "minecraft:shroomlight", + "blockRuntimeId" : 6829 + }, + { + "id" : "minecraft:crimson_nylium", + "blockRuntimeId" : 3839 + }, + { + "id" : "minecraft:warped_nylium", + "blockRuntimeId" : 7597 + }, + { + "id" : "minecraft:basalt", + "blockRuntimeId" : 214 + }, + { + "id" : "minecraft:polished_basalt", + "blockRuntimeId" : 5822 + }, + { + "id" : "minecraft:smooth_basalt", + "blockRuntimeId" : 6886 + }, + { + "id" : "minecraft:soul_soil", + "blockRuntimeId" : 6956 + }, + { + "id" : "minecraft:dirt", + "blockRuntimeId" : 4484 + }, + { + "id" : "minecraft:dirt", + "blockRuntimeId" : 4485 + }, + { + "id" : "minecraft:farmland", + "blockRuntimeId" : 4766 + }, + { + "id" : "minecraft:grass", + "blockRuntimeId" : 4997 + }, + { + "id" : "minecraft:grass_path", + "blockRuntimeId" : 4998 + }, + { + "id" : "minecraft:podzol", + "blockRuntimeId" : 5803 + }, + { + "id" : "minecraft:mycelium", + "blockRuntimeId" : 5685 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7180 + }, + { + "id" : "minecraft:iron_ore", + "blockRuntimeId" : 5167 + }, + { + "id" : "minecraft:gold_ore", + "blockRuntimeId" : 4976 + }, + { + "id" : "minecraft:diamond_ore", + "blockRuntimeId" : 4475 + }, + { + "id" : "minecraft:lapis_ore", + "blockRuntimeId" : 5366 + }, + { + "id" : "minecraft:redstone_ore", + "blockRuntimeId" : 6647 + }, + { + "id" : "minecraft:coal_ore", + "blockRuntimeId" : 1142 + }, + { + "id" : "minecraft:copper_ore", + "blockRuntimeId" : 3678 + }, + { + "id" : "minecraft:emerald_ore", + "blockRuntimeId" : 4718 + }, + { + "id" : "minecraft:quartz_ore", + "blockRuntimeId" : 6558 + }, + { + "id" : "minecraft:nether_gold_ore", + "blockRuntimeId" : 5698 + }, + { + "id" : "minecraft:ancient_debris", + "blockRuntimeId" : 143 + }, + { + "id" : "minecraft:deepslate_iron_ore", + "blockRuntimeId" : 4283 + }, + { + "id" : "minecraft:deepslate_gold_ore", + "blockRuntimeId" : 4282 + }, + { + "id" : "minecraft:deepslate_diamond_ore", + "blockRuntimeId" : 4280 + }, + { + "id" : "minecraft:deepslate_lapis_ore", + "blockRuntimeId" : 4284 + }, + { + "id" : "minecraft:deepslate_redstone_ore", + "blockRuntimeId" : 4285 + }, + { + "id" : "minecraft:deepslate_emerald_ore", + "blockRuntimeId" : 4281 + }, + { + "id" : "minecraft:deepslate_coal_ore", + "blockRuntimeId" : 4278 + }, + { + "id" : "minecraft:deepslate_copper_ore", + "blockRuntimeId" : 4279 + }, + { + "id" : "minecraft:gravel", + "blockRuntimeId" : 4999 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7181 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7183 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7185 + }, + { + "id" : "minecraft:blackstone", + "blockRuntimeId" : 494 + }, + { + "id" : "minecraft:deepslate", + "blockRuntimeId" : 4100 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7182 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7184 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7186 + }, + { + "id" : "minecraft:polished_blackstone", + "blockRuntimeId" : 5825 + }, + { + "id" : "minecraft:polished_deepslate", + "blockRuntimeId" : 6203 + }, + { + "id" : "minecraft:sand", + "blockRuntimeId" : 6704 + }, + { + "id" : "minecraft:sand", + "blockRuntimeId" : 6705 + }, + { + "id" : "minecraft:cactus", + "blockRuntimeId" : 920 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5564 + }, + { + "id" : "minecraft:stripped_oak_log", + "blockRuntimeId" : 7319 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5565 + }, + { + "id" : "minecraft:stripped_spruce_log", + "blockRuntimeId" : 7322 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5566 + }, + { + "id" : "minecraft:stripped_birch_log", + "blockRuntimeId" : 7304 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5567 + }, + { + "id" : "minecraft:stripped_jungle_log", + "blockRuntimeId" : 7316 + }, + { + "id" : "minecraft:log2", + "blockRuntimeId" : 5576 + }, + { + "id" : "minecraft:stripped_acacia_log", + "blockRuntimeId" : 7301 + }, + { + "id" : "minecraft:log2", + "blockRuntimeId" : 5577 + }, + { + "id" : "minecraft:stripped_dark_oak_log", + "blockRuntimeId" : 7313 + }, + { + "id" : "minecraft:crimson_stem", + "blockRuntimeId" : 3884 + }, + { + "id" : "minecraft:stripped_crimson_stem", + "blockRuntimeId" : 7310 + }, + { + "id" : "minecraft:warped_stem", + "blockRuntimeId" : 7642 + }, + { + "id" : "minecraft:stripped_warped_stem", + "blockRuntimeId" : 7328 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7807 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7813 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7808 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7814 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7809 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7815 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7810 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7816 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7811 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7817 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7812 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7818 + }, + { + "id" : "minecraft:crimson_hyphae", + "blockRuntimeId" : 3836 + }, + { + "id" : "minecraft:stripped_crimson_hyphae", + "blockRuntimeId" : 7307 + }, + { + "id" : "minecraft:warped_hyphae", + "blockRuntimeId" : 7594 + }, + { + "id" : "minecraft:stripped_warped_hyphae", + "blockRuntimeId" : 7325 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5410 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5411 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5412 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5413 + }, + { + "id" : "minecraft:leaves2", + "blockRuntimeId" : 5426 + }, + { + "id" : "minecraft:leaves2", + "blockRuntimeId" : 5427 + }, + { + "id" : "minecraft:azalea_leaves", + "blockRuntimeId" : 169 + }, + { + "id" : "minecraft:azalea_leaves_flowered", + "blockRuntimeId" : 173 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6718 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6719 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6720 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6721 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6722 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6723 + }, + { + "id" : "minecraft:bee_nest", + "blockRuntimeId" : 236 + }, + { + "id" : "minecraft:wheat_seeds" + }, + { + "id" : "minecraft:pumpkin_seeds" + }, + { + "id" : "minecraft:melon_seeds" + }, + { + "id" : "minecraft:beetroot_seeds" + }, + { + "id" : "minecraft:wheat" + }, + { + "id" : "minecraft:beetroot" + }, + { + "id" : "minecraft:potato" + }, + { + "id" : "minecraft:poisonous_potato" + }, + { + "id" : "minecraft:carrot" + }, + { + "id" : "minecraft:golden_carrot" + }, + { + "id" : "minecraft:apple" + }, + { + "id" : "minecraft:golden_apple" + }, + { + "id" : "minecraft:enchanted_golden_apple" + }, + { + "id" : "minecraft:melon_block", + "blockRuntimeId" : 5609 + }, + { + "id" : "minecraft:melon_slice" + }, + { + "id" : "minecraft:glistering_melon_slice" + }, + { + "id" : "minecraft:sweet_berries" + }, + { + "id" : "minecraft:glow_berries" + }, + { + "id" : "minecraft:pumpkin", + "blockRuntimeId" : 6457 + }, + { + "id" : "minecraft:carved_pumpkin", + "blockRuntimeId" : 988 + }, + { + "id" : "minecraft:lit_pumpkin", + "blockRuntimeId" : 5551 + }, + { + "id" : "minecraft:honeycomb" + }, + { + "id" : "minecraft:tallgrass", + "blockRuntimeId" : 7349 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4504 + }, + { + "id" : "minecraft:tallgrass", + "blockRuntimeId" : 7348 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4503 + }, + { + "id" : "minecraft:nether_sprouts" + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3682 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3680 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3681 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3679 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3683 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3687 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3685 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3686 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3684 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3688 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3702 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3700 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3701 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3699 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3703 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3712 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3710 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3711 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3709 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3713 + }, + { + "id" : "minecraft:kelp" + }, + { + "id" : "minecraft:seagrass", + "blockRuntimeId" : 6825 + }, + { + "id" : "minecraft:crimson_roots", + "blockRuntimeId" : 3857 + }, + { + "id" : "minecraft:warped_roots", + "blockRuntimeId" : 7615 + }, + { + "id" : "minecraft:yellow_flower", + "blockRuntimeId" : 7941 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6590 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6591 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6592 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6593 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6594 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6595 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6596 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6597 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6598 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6599 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6600 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4501 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4502 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4505 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4506 + }, + { + "id" : "minecraft:wither_rose", + "blockRuntimeId" : 7806 + }, + { + "id" : "minecraft:white_dye" + }, + { + "id" : "minecraft:light_gray_dye" + }, + { + "id" : "minecraft:gray_dye" + }, + { + "id" : "minecraft:black_dye" + }, + { + "id" : "minecraft:brown_dye" + }, + { + "id" : "minecraft:red_dye" + }, + { + "id" : "minecraft:orange_dye" + }, + { + "id" : "minecraft:yellow_dye" + }, + { + "id" : "minecraft:lime_dye" + }, + { + "id" : "minecraft:green_dye" + }, + { + "id" : "minecraft:cyan_dye" + }, + { + "id" : "minecraft:light_blue_dye" + }, + { + "id" : "minecraft:blue_dye" + }, + { + "id" : "minecraft:purple_dye" + }, + { + "id" : "minecraft:magenta_dye" + }, + { + "id" : "minecraft:pink_dye" + }, + { + "id" : "minecraft:ink_sac" + }, + { + "id" : "minecraft:glow_ink_sac" + }, + { + "id" : "minecraft:cocoa_beans" + }, + { + "id" : "minecraft:lapis_lazuli" + }, + { + "id" : "minecraft:bone_meal" + }, + { + "id" : "minecraft:vine", + "blockRuntimeId" : 7502 + }, + { + "id" : "minecraft:weeping_vines", + "blockRuntimeId" : 7756 + }, + { + "id" : "minecraft:twisting_vines", + "blockRuntimeId" : 7430 + }, + { + "id" : "minecraft:waterlily", + "blockRuntimeId" : 7684 + }, + { + "id" : "minecraft:deadbush", + "blockRuntimeId" : 4099 + }, + { + "id" : "minecraft:bamboo", + "blockRuntimeId" : 177 + }, + { + "id" : "minecraft:snow", + "blockRuntimeId" : 6912 + }, + { + "id" : "minecraft:ice", + "blockRuntimeId" : 5126 + }, + { + "id" : "minecraft:packed_ice", + "blockRuntimeId" : 5768 + }, + { + "id" : "minecraft:blue_ice", + "blockRuntimeId" : 691 + }, + { + "id" : "minecraft:snow_layer", + "blockRuntimeId" : 6913 + }, + { + "id" : "minecraft:pointed_dripstone", + "blockRuntimeId" : 5809 + }, + { + "id" : "minecraft:dripstone_block", + "blockRuntimeId" : 4585 + }, + { + "id" : "minecraft:moss_carpet", + "blockRuntimeId" : 5666 + }, + { + "id" : "minecraft:moss_block", + "blockRuntimeId" : 5665 + }, + { + "id" : "minecraft:dirt_with_roots", + "blockRuntimeId" : 4486 + }, + { + "id" : "minecraft:hanging_roots", + "blockRuntimeId" : 5048 + }, + { + "id" : "minecraft:big_dripleaf", + "blockRuntimeId" : 328 + }, + { + "id" : "minecraft:small_dripleaf_block", + "blockRuntimeId" : 6878 + }, + { + "id" : "minecraft:spore_blossom", + "blockRuntimeId" : 6965 + }, + { + "id" : "minecraft:azalea", + "blockRuntimeId" : 168 + }, + { + "id" : "minecraft:flowering_azalea", + "blockRuntimeId" : 4815 + }, + { + "id" : "minecraft:glow_lichen", + "blockRuntimeId" : 4972 + }, + { + "id" : "minecraft:amethyst_block", + "blockRuntimeId" : 136 + }, + { + "id" : "minecraft:budding_amethyst", + "blockRuntimeId" : 919 + }, + { + "id" : "minecraft:amethyst_cluster", + "blockRuntimeId" : 137 + }, + { + "id" : "minecraft:large_amethyst_bud", + "blockRuntimeId" : 5367 + }, + { + "id" : "minecraft:medium_amethyst_bud", + "blockRuntimeId" : 5603 + }, + { + "id" : "minecraft:small_amethyst_bud", + "blockRuntimeId" : 6865 + }, + { + "id" : "minecraft:tuff", + "blockRuntimeId" : 7417 + }, + { + "id" : "minecraft:calcite", + "blockRuntimeId" : 943 + }, + { + "id" : "minecraft:chicken" + }, + { + "id" : "minecraft:porkchop" + }, + { + "id" : "minecraft:beef" + }, + { + "id" : "minecraft:mutton" + }, + { + "id" : "minecraft:rabbit" + }, + { + "id" : "minecraft:cod" + }, + { + "id" : "minecraft:salmon" + }, + { + "id" : "minecraft:tropical_fish" + }, + { + "id" : "minecraft:pufferfish" + }, + { + "id" : "minecraft:brown_mushroom", + "blockRuntimeId" : 900 + }, + { + "id" : "minecraft:red_mushroom", + "blockRuntimeId" : 6607 + }, + { + "id" : "minecraft:crimson_fungus", + "blockRuntimeId" : 3835 + }, + { + "id" : "minecraft:warped_fungus", + "blockRuntimeId" : 7593 + }, + { + "id" : "minecraft:brown_mushroom_block", + "blockRuntimeId" : 915 + }, + { + "id" : "minecraft:red_mushroom_block", + "blockRuntimeId" : 6622 + }, + { + "id" : "minecraft:brown_mushroom_block", + "blockRuntimeId" : 916 + }, + { + "id" : "minecraft:brown_mushroom_block", + "blockRuntimeId" : 901 + }, + { + "id" : "minecraft:egg" + }, + { + "id" : "minecraft:sugar_cane" + }, + { + "id" : "minecraft:sugar" + }, + { + "id" : "minecraft:rotten_flesh" + }, + { + "id" : "minecraft:bone" + }, + { + "id" : "minecraft:web", + "blockRuntimeId" : 7755 + }, + { + "id" : "minecraft:spider_eye" + }, + { + "id" : "minecraft:mob_spawner", + "blockRuntimeId" : 5658 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5659 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5660 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5661 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5662 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5663 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5664 + }, + { + "id" : "minecraft:infested_deepslate", + "blockRuntimeId" : 5127 + }, + { + "id" : "minecraft:dragon_egg", + "blockRuntimeId" : 4583 + }, + { + "id" : "minecraft:turtle_egg", + "blockRuntimeId" : 7418 + }, + { + "id" : "minecraft:chicken_spawn_egg" + }, + { + "id" : "minecraft:bee_spawn_egg" + }, + { + "id" : "minecraft:cow_spawn_egg" + }, + { + "id" : "minecraft:pig_spawn_egg" + }, + { + "id" : "minecraft:sheep_spawn_egg" + }, + { + "id" : "minecraft:wolf_spawn_egg" + }, + { + "id" : "minecraft:polar_bear_spawn_egg" + }, + { + "id" : "minecraft:ocelot_spawn_egg" + }, + { + "id" : "minecraft:cat_spawn_egg" + }, + { + "id" : "minecraft:mooshroom_spawn_egg" + }, + { + "id" : "minecraft:bat_spawn_egg" + }, + { + "id" : "minecraft:parrot_spawn_egg" + }, + { + "id" : "minecraft:rabbit_spawn_egg" + }, + { + "id" : "minecraft:llama_spawn_egg" + }, + { + "id" : "minecraft:horse_spawn_egg" + }, + { + "id" : "minecraft:donkey_spawn_egg" + }, + { + "id" : "minecraft:mule_spawn_egg" + }, + { + "id" : "minecraft:skeleton_horse_spawn_egg" + }, + { + "id" : "minecraft:zombie_horse_spawn_egg" + }, + { + "id" : "minecraft:tropical_fish_spawn_egg" + }, + { + "id" : "minecraft:cod_spawn_egg" + }, + { + "id" : "minecraft:pufferfish_spawn_egg" + }, + { + "id" : "minecraft:salmon_spawn_egg" + }, + { + "id" : "minecraft:dolphin_spawn_egg" + }, + { + "id" : "minecraft:turtle_spawn_egg" + }, + { + "id" : "minecraft:panda_spawn_egg" + }, + { + "id" : "minecraft:fox_spawn_egg" + }, + { + "id" : "minecraft:creeper_spawn_egg" + }, + { + "id" : "minecraft:enderman_spawn_egg" + }, + { + "id" : "minecraft:silverfish_spawn_egg" + }, + { + "id" : "minecraft:skeleton_spawn_egg" + }, + { + "id" : "minecraft:wither_skeleton_spawn_egg" + }, + { + "id" : "minecraft:stray_spawn_egg" + }, + { + "id" : "minecraft:slime_spawn_egg" + }, + { + "id" : "minecraft:spider_spawn_egg" + }, + { + "id" : "minecraft:zombie_spawn_egg" + }, + { + "id" : "minecraft:zombie_pigman_spawn_egg" + }, + { + "id" : "minecraft:husk_spawn_egg" + }, + { + "id" : "minecraft:drowned_spawn_egg" + }, + { + "id" : "minecraft:squid_spawn_egg" + }, + { + "id" : "minecraft:glow_squid_spawn_egg" + }, + { + "id" : "minecraft:cave_spider_spawn_egg" + }, + { + "id" : "minecraft:witch_spawn_egg" + }, + { + "id" : "minecraft:guardian_spawn_egg" + }, + { + "id" : "minecraft:elder_guardian_spawn_egg" + }, + { + "id" : "minecraft:endermite_spawn_egg" + }, + { + "id" : "minecraft:magma_cube_spawn_egg" + }, + { + "id" : "minecraft:strider_spawn_egg" + }, + { + "id" : "minecraft:hoglin_spawn_egg" + }, + { + "id" : "minecraft:piglin_spawn_egg" + }, + { + "id" : "minecraft:zoglin_spawn_egg" + }, + { + "id" : "minecraft:piglin_brute_spawn_egg" + }, + { + "id" : "minecraft:goat_spawn_egg" + }, + { + "id" : "minecraft:axolotl_spawn_egg" + }, + { + "id" : "minecraft:ghast_spawn_egg" + }, + { + "id" : "minecraft:blaze_spawn_egg" + }, + { + "id" : "minecraft:shulker_spawn_egg" + }, + { + "id" : "minecraft:vindicator_spawn_egg" + }, + { + "id" : "minecraft:evoker_spawn_egg" + }, + { + "id" : "minecraft:vex_spawn_egg" + }, + { + "id" : "minecraft:villager_spawn_egg" + }, + { + "id" : "minecraft:wandering_trader_spawn_egg" + }, + { + "id" : "minecraft:zombie_villager_spawn_egg" + }, + { + "id" : "minecraft:phantom_spawn_egg" + }, + { + "id" : "minecraft:pillager_spawn_egg" + }, + { + "id" : "minecraft:ravager_spawn_egg" + }, + { + "id" : "minecraft:obsidian", + "blockRuntimeId" : 5737 + }, + { + "id" : "minecraft:crying_obsidian", + "blockRuntimeId" : 3909 + }, + { + "id" : "minecraft:bedrock", + "blockRuntimeId" : 234 + }, + { + "id" : "minecraft:soul_sand", + "blockRuntimeId" : 6955 + }, + { + "id" : "minecraft:netherrack", + "blockRuntimeId" : 5706 + }, + { + "id" : "minecraft:magma", + "blockRuntimeId" : 5602 + }, + { + "id" : "minecraft:nether_wart" + }, + { + "id" : "minecraft:end_stone", + "blockRuntimeId" : 4745 + }, + { + "id" : "minecraft:chorus_flower", + "blockRuntimeId" : 1132 + }, + { + "id" : "minecraft:chorus_plant", + "blockRuntimeId" : 1138 + }, + { + "id" : "minecraft:chorus_fruit" + }, + { + "id" : "minecraft:popped_chorus_fruit" + }, + { + "id" : "minecraft:sponge", + "blockRuntimeId" : 6963 + }, + { + "id" : "minecraft:sponge", + "blockRuntimeId" : 6964 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3689 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3690 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3691 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3692 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3693 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3694 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3695 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3696 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3697 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3698 + }, + { + "id" : "minecraft:leather_helmet" + }, + { + "id" : "minecraft:chainmail_helmet" + }, + { + "id" : "minecraft:iron_helmet" + }, + { + "id" : "minecraft:golden_helmet" + }, + { + "id" : "minecraft:diamond_helmet" + }, + { + "id" : "minecraft:netherite_helmet" + }, + { + "id" : "minecraft:leather_chestplate" + }, + { + "id" : "minecraft:chainmail_chestplate" + }, + { + "id" : "minecraft:iron_chestplate" + }, + { + "id" : "minecraft:golden_chestplate" + }, + { + "id" : "minecraft:diamond_chestplate" + }, + { + "id" : "minecraft:netherite_chestplate" + }, + { + "id" : "minecraft:leather_leggings" + }, + { + "id" : "minecraft:chainmail_leggings" + }, + { + "id" : "minecraft:iron_leggings" + }, + { + "id" : "minecraft:golden_leggings" + }, + { + "id" : "minecraft:diamond_leggings" + }, + { + "id" : "minecraft:netherite_leggings" + }, + { + "id" : "minecraft:leather_boots" + }, + { + "id" : "minecraft:chainmail_boots" + }, + { + "id" : "minecraft:iron_boots" + }, + { + "id" : "minecraft:golden_boots" + }, + { + "id" : "minecraft:diamond_boots" + }, + { + "id" : "minecraft:netherite_boots" + }, + { + "id" : "minecraft:wooden_sword" + }, + { + "id" : "minecraft:stone_sword" + }, + { + "id" : "minecraft:iron_sword" + }, + { + "id" : "minecraft:golden_sword" + }, + { + "id" : "minecraft:diamond_sword" + }, + { + "id" : "minecraft:netherite_sword" + }, + { + "id" : "minecraft:wooden_axe" + }, + { + "id" : "minecraft:stone_axe" + }, + { + "id" : "minecraft:iron_axe" + }, + { + "id" : "minecraft:golden_axe" + }, + { + "id" : "minecraft:diamond_axe" + }, + { + "id" : "minecraft:netherite_axe" + }, + { + "id" : "minecraft:wooden_pickaxe" + }, + { + "id" : "minecraft:stone_pickaxe" + }, + { + "id" : "minecraft:iron_pickaxe" + }, + { + "id" : "minecraft:golden_pickaxe" + }, + { + "id" : "minecraft:diamond_pickaxe" + }, + { + "id" : "minecraft:netherite_pickaxe" + }, + { + "id" : "minecraft:wooden_shovel" + }, + { + "id" : "minecraft:stone_shovel" + }, + { + "id" : "minecraft:iron_shovel" + }, + { + "id" : "minecraft:golden_shovel" + }, + { + "id" : "minecraft:diamond_shovel" + }, + { + "id" : "minecraft:netherite_shovel" + }, + { + "id" : "minecraft:wooden_hoe" + }, + { + "id" : "minecraft:stone_hoe" + }, + { + "id" : "minecraft:iron_hoe" + }, + { + "id" : "minecraft:golden_hoe" + }, + { + "id" : "minecraft:diamond_hoe" + }, + { + "id" : "minecraft:netherite_hoe" + }, + { + "id" : "minecraft:bow" + }, + { + "id" : "minecraft:crossbow" + }, + { + "id" : "minecraft:arrow" + }, + { + "id" : "minecraft:arrow", + "damage" : 6 + }, + { + "id" : "minecraft:arrow", + "damage" : 7 + }, + { + "id" : "minecraft:arrow", + "damage" : 8 + }, + { + "id" : "minecraft:arrow", + "damage" : 9 + }, + { + "id" : "minecraft:arrow", + "damage" : 10 + }, + { + "id" : "minecraft:arrow", + "damage" : 11 + }, + { + "id" : "minecraft:arrow", + "damage" : 12 + }, + { + "id" : "minecraft:arrow", + "damage" : 13 + }, + { + "id" : "minecraft:arrow", + "damage" : 14 + }, + { + "id" : "minecraft:arrow", + "damage" : 15 + }, + { + "id" : "minecraft:arrow", + "damage" : 16 + }, + { + "id" : "minecraft:arrow", + "damage" : 17 + }, + { + "id" : "minecraft:arrow", + "damage" : 18 + }, + { + "id" : "minecraft:arrow", + "damage" : 19 + }, + { + "id" : "minecraft:arrow", + "damage" : 20 + }, + { + "id" : "minecraft:arrow", + "damage" : 21 + }, + { + "id" : "minecraft:arrow", + "damage" : 22 + }, + { + "id" : "minecraft:arrow", + "damage" : 23 + }, + { + "id" : "minecraft:arrow", + "damage" : 24 + }, + { + "id" : "minecraft:arrow", + "damage" : 25 + }, + { + "id" : "minecraft:arrow", + "damage" : 26 + }, + { + "id" : "minecraft:arrow", + "damage" : 27 + }, + { + "id" : "minecraft:arrow", + "damage" : 28 + }, + { + "id" : "minecraft:arrow", + "damage" : 29 + }, + { + "id" : "minecraft:arrow", + "damage" : 30 + }, + { + "id" : "minecraft:arrow", + "damage" : 31 + }, + { + "id" : "minecraft:arrow", + "damage" : 32 + }, + { + "id" : "minecraft:arrow", + "damage" : 33 + }, + { + "id" : "minecraft:arrow", + "damage" : 34 + }, + { + "id" : "minecraft:arrow", + "damage" : 35 + }, + { + "id" : "minecraft:arrow", + "damage" : 36 + }, + { + "id" : "minecraft:arrow", + "damage" : 37 + }, + { + "id" : "minecraft:arrow", + "damage" : 38 + }, + { + "id" : "minecraft:arrow", + "damage" : 39 + }, + { + "id" : "minecraft:arrow", + "damage" : 40 + }, + { + "id" : "minecraft:arrow", + "damage" : 41 + }, + { + "id" : "minecraft:arrow", + "damage" : 42 + }, + { + "id" : "minecraft:arrow", + "damage" : 43 + }, + { + "id" : "minecraft:shield" + }, + { + "id" : "minecraft:cooked_chicken" + }, + { + "id" : "minecraft:cooked_porkchop" + }, + { + "id" : "minecraft:cooked_beef" + }, + { + "id" : "minecraft:cooked_mutton" + }, + { + "id" : "minecraft:cooked_rabbit" + }, + { + "id" : "minecraft:cooked_cod" + }, + { + "id" : "minecraft:cooked_salmon" + }, + { + "id" : "minecraft:bread" + }, + { + "id" : "minecraft:mushroom_stew" + }, + { + "id" : "minecraft:beetroot_soup" + }, + { + "id" : "minecraft:rabbit_stew" + }, + { + "id" : "minecraft:baked_potato" + }, + { + "id" : "minecraft:cookie" + }, + { + "id" : "minecraft:pumpkin_pie" + }, + { + "id" : "minecraft:cake" + }, + { + "id" : "minecraft:dried_kelp" + }, + { + "id" : "minecraft:fishing_rod" + }, + { + "id" : "minecraft:carrot_on_a_stick" + }, + { + "id" : "minecraft:warped_fungus_on_a_stick" + }, + { + "id" : "minecraft:snowball" + }, + { + "id" : "minecraft:shears" + }, + { + "id" : "minecraft:flint_and_steel" + }, + { + "id" : "minecraft:lead" + }, + { + "id" : "minecraft:clock" + }, + { + "id" : "minecraft:compass" + }, + { + "id" : "minecraft:empty_map" + }, + { + "id" : "minecraft:empty_map", + "damage" : 2 + }, + { + "id" : "minecraft:saddle" + }, + { + "id" : "minecraft:leather_horse_armor" + }, + { + "id" : "minecraft:iron_horse_armor" + }, + { + "id" : "minecraft:golden_horse_armor" + }, + { + "id" : "minecraft:diamond_horse_armor" + }, + { + "id" : "minecraft:trident" + }, + { + "id" : "minecraft:turtle_helmet" + }, + { + "id" : "minecraft:elytra" + }, + { + "id" : "minecraft:totem_of_undying" + }, + { + "id" : "minecraft:glass_bottle" + }, + { + "id" : "minecraft:experience_bottle" + }, + { + "id" : "minecraft:potion" + }, + { + "id" : "minecraft:potion", + "damage" : 1 + }, + { + "id" : "minecraft:potion", + "damage" : 2 + }, + { + "id" : "minecraft:potion", + "damage" : 3 + }, + { + "id" : "minecraft:potion", + "damage" : 4 + }, + { + "id" : "minecraft:potion", + "damage" : 5 + }, + { + "id" : "minecraft:potion", + "damage" : 6 + }, + { + "id" : "minecraft:potion", + "damage" : 7 + }, + { + "id" : "minecraft:potion", + "damage" : 8 + }, + { + "id" : "minecraft:potion", + "damage" : 9 + }, + { + "id" : "minecraft:potion", + "damage" : 10 + }, + { + "id" : "minecraft:potion", + "damage" : 11 + }, + { + "id" : "minecraft:potion", + "damage" : 12 + }, + { + "id" : "minecraft:potion", + "damage" : 13 + }, + { + "id" : "minecraft:potion", + "damage" : 14 + }, + { + "id" : "minecraft:potion", + "damage" : 15 + }, + { + "id" : "minecraft:potion", + "damage" : 16 + }, + { + "id" : "minecraft:potion", + "damage" : 17 + }, + { + "id" : "minecraft:potion", + "damage" : 18 + }, + { + "id" : "minecraft:potion", + "damage" : 19 + }, + { + "id" : "minecraft:potion", + "damage" : 20 + }, + { + "id" : "minecraft:potion", + "damage" : 21 + }, + { + "id" : "minecraft:potion", + "damage" : 22 + }, + { + "id" : "minecraft:potion", + "damage" : 23 + }, + { + "id" : "minecraft:potion", + "damage" : 24 + }, + { + "id" : "minecraft:potion", + "damage" : 25 + }, + { + "id" : "minecraft:potion", + "damage" : 26 + }, + { + "id" : "minecraft:potion", + "damage" : 27 + }, + { + "id" : "minecraft:potion", + "damage" : 28 + }, + { + "id" : "minecraft:potion", + "damage" : 29 + }, + { + "id" : "minecraft:potion", + "damage" : 30 + }, + { + "id" : "minecraft:potion", + "damage" : 31 + }, + { + "id" : "minecraft:potion", + "damage" : 32 + }, + { + "id" : "minecraft:potion", + "damage" : 33 + }, + { + "id" : "minecraft:potion", + "damage" : 34 + }, + { + "id" : "minecraft:potion", + "damage" : 35 + }, + { + "id" : "minecraft:potion", + "damage" : 36 + }, + { + "id" : "minecraft:potion", + "damage" : 37 + }, + { + "id" : "minecraft:potion", + "damage" : 38 + }, + { + "id" : "minecraft:potion", + "damage" : 39 + }, + { + "id" : "minecraft:potion", + "damage" : 40 + }, + { + "id" : "minecraft:potion", + "damage" : 41 + }, + { + "id" : "minecraft:potion", + "damage" : 42 + }, + { + "id" : "minecraft:splash_potion" + }, + { + "id" : "minecraft:splash_potion", + "damage" : 1 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 2 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 3 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 4 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 5 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 6 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 7 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 8 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 9 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 10 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 11 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 12 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 13 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 14 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 15 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 16 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 17 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 18 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 19 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 20 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 21 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 22 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 23 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 24 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 25 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 26 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 27 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 28 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 29 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 30 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 31 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 32 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 33 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 34 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 35 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 36 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 37 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 38 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 39 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 40 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 41 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 42 + }, + { + "id" : "minecraft:lingering_potion" + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 1 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 2 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 3 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 4 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 5 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 6 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 7 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 8 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 9 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 10 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 11 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 12 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 13 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 14 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 15 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 16 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 17 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 18 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 19 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 20 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 21 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 22 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 23 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 24 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 25 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 26 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 27 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 28 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 29 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 30 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 31 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 32 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 33 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 34 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 35 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 36 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 37 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 38 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 39 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 40 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 41 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 42 + }, + { + "id" : "minecraft:spyglass" + }, + { + "id" : "minecraft:stick" + }, + { + "id" : "minecraft:bed" + }, + { + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "id" : "minecraft:torch", + "blockRuntimeId" : 7357 + }, + { + "id" : "minecraft:soul_torch", + "blockRuntimeId" : 6957 + }, + { + "id" : "minecraft:sea_pickle", + "blockRuntimeId" : 6817 + }, + { + "id" : "minecraft:lantern", + "blockRuntimeId" : 5363 + }, + { + "id" : "minecraft:soul_lantern", + "blockRuntimeId" : 6953 + }, + { + "id" : "minecraft:candle", + "blockRuntimeId" : 953 + }, + { + "id" : "minecraft:white_candle", + "blockRuntimeId" : 7790 + }, + { + "id" : "minecraft:orange_candle", + "blockRuntimeId" : 5738 + }, + { + "id" : "minecraft:magenta_candle", + "blockRuntimeId" : 5586 + }, + { + "id" : "minecraft:light_blue_candle", + "blockRuntimeId" : 5474 + }, + { + "id" : "minecraft:yellow_candle", + "blockRuntimeId" : 7931 + }, + { + "id" : "minecraft:lime_candle", + "blockRuntimeId" : 5522 + }, + { + "id" : "minecraft:pink_candle", + "blockRuntimeId" : 5769 + }, + { + "id" : "minecraft:gray_candle", + "blockRuntimeId" : 5000 + }, + { + "id" : "minecraft:light_gray_candle", + "blockRuntimeId" : 5490 + }, + { + "id" : "minecraft:cyan_candle", + "blockRuntimeId" : 3921 + }, + { + "id" : "minecraft:purple_candle", + "blockRuntimeId" : 6509 + }, + { + "id" : "minecraft:blue_candle", + "blockRuntimeId" : 675 + }, + { + "id" : "minecraft:brown_candle", + "blockRuntimeId" : 884 + }, + { + "id" : "minecraft:green_candle", + "blockRuntimeId" : 5016 + }, + { + "id" : "minecraft:red_candle", + "blockRuntimeId" : 6580 + }, + { + "id" : "minecraft:black_candle", + "blockRuntimeId" : 478 + }, + { + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3771 + }, + { + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 987 + }, + { + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4812 + }, + { + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6879 + }, + { + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + }, + { + "id" : "minecraft:campfire" + }, + { + "id" : "minecraft:soul_campfire" + }, + { + "id" : "minecraft:furnace", + "blockRuntimeId" : 4876 + }, + { + "id" : "minecraft:blast_furnace", + "blockRuntimeId" : 669 + }, + { + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + }, + { + "id" : "minecraft:respawn_anchor", + "blockRuntimeId" : 6699 + }, + { + "id" : "minecraft:brewing_stand" + }, + { + "id" : "minecraft:anvil", + "blockRuntimeId" : 152 + }, + { + "id" : "minecraft:anvil", + "blockRuntimeId" : 156 + }, + { + "id" : "minecraft:anvil", + "blockRuntimeId" : 160 + }, + { + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5032 + }, + { + "id" : "minecraft:enchanting_table", + "blockRuntimeId" : 4719 + }, + { + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 704 + }, + { + "id" : "minecraft:lectern", + "blockRuntimeId" : 5434 + }, + { + "id" : "minecraft:cauldron" + }, + { + "id" : "minecraft:composter", + "blockRuntimeId" : 3635 + }, + { + "id" : "minecraft:chest", + "blockRuntimeId" : 1123 + }, + { + "id" : "minecraft:trapped_chest", + "blockRuntimeId" : 7379 + }, + { + "id" : "minecraft:ender_chest", + "blockRuntimeId" : 4746 + }, + { + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + }, + { + "id" : "minecraft:undyed_shulker_box", + "blockRuntimeId" : 7462 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + }, + { + "id" : "minecraft:armor_stand" + }, + { + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5716 + }, + { + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5208 + }, + { + "id" : "minecraft:music_disc_13" + }, + { + "id" : "minecraft:music_disc_cat" + }, + { + "id" : "minecraft:music_disc_blocks" + }, + { + "id" : "minecraft:music_disc_chirp" + }, + { + "id" : "minecraft:music_disc_far" + }, + { + "id" : "minecraft:music_disc_mall" + }, + { + "id" : "minecraft:music_disc_mellohi" + }, + { + "id" : "minecraft:music_disc_stal" + }, + { + "id" : "minecraft:music_disc_strad" + }, + { + "id" : "minecraft:music_disc_ward" + }, + { + "id" : "minecraft:music_disc_11" + }, + { + "id" : "minecraft:music_disc_wait" + }, + { + "id" : "minecraft:music_disc_pigstep" + }, + { + "id" : "minecraft:glowstone_dust" + }, + { + "id" : "minecraft:glowstone", + "blockRuntimeId" : 4974 + }, + { + "id" : "minecraft:redstone_lamp", + "blockRuntimeId" : 6646 + }, + { + "id" : "minecraft:sealantern", + "blockRuntimeId" : 6828 + }, + { + "id" : "minecraft:oak_sign" + }, + { + "id" : "minecraft:spruce_sign" + }, + { + "id" : "minecraft:birch_sign" + }, + { + "id" : "minecraft:jungle_sign" + }, + { + "id" : "minecraft:acacia_sign" + }, + { + "id" : "minecraft:dark_oak_sign" + }, + { + "id" : "minecraft:crimson_sign" + }, + { + "id" : "minecraft:warped_sign" + }, + { + "id" : "minecraft:painting" + }, + { + "id" : "minecraft:frame" + }, + { + "id" : "minecraft:glow_frame" + }, + { + "id" : "minecraft:honey_bottle" + }, + { + "id" : "minecraft:flower_pot" + }, + { + "id" : "minecraft:bowl" + }, + { + "id" : "minecraft:bucket" + }, + { + "id" : "minecraft:milk_bucket" + }, + { + "id" : "minecraft:water_bucket" + }, + { + "id" : "minecraft:lava_bucket" + }, + { + "id" : "minecraft:cod_bucket" + }, + { + "id" : "minecraft:salmon_bucket" + }, + { + "id" : "minecraft:tropical_fish_bucket" + }, + { + "id" : "minecraft:pufferfish_bucket" + }, + { + "id" : "minecraft:powder_snow_bucket" + }, + { + "id" : "minecraft:axolotl_bucket" + }, + { + "id" : "minecraft:skull", + "damage" : 3 + }, + { + "id" : "minecraft:skull", + "damage" : 2 + }, + { + "id" : "minecraft:skull", + "damage" : 4 + }, + { + "id" : "minecraft:skull", + "damage" : 5 + }, + { + "id" : "minecraft:skull" + }, + { + "id" : "minecraft:skull", + "damage" : 1 + }, + { + "id" : "minecraft:beacon", + "blockRuntimeId" : 217 + }, + { + "id" : "minecraft:bell", + "blockRuntimeId" : 292 + }, + { + "id" : "minecraft:conduit", + "blockRuntimeId" : 3676 + }, + { + "id" : "minecraft:stonecutter_block", + "blockRuntimeId" : 7295 + }, + { + "id" : "minecraft:end_portal_frame", + "blockRuntimeId" : 4731 + }, + { + "id" : "minecraft:coal" + }, + { + "id" : "minecraft:charcoal" + }, + { + "id" : "minecraft:diamond" + }, + { + "id" : "minecraft:iron_nugget" + }, + { + "id" : "minecraft:raw_iron" + }, + { + "id" : "minecraft:raw_gold" + }, + { + "id" : "minecraft:raw_copper" + }, + { + "id" : "minecraft:copper_ingot" + }, + { + "id" : "minecraft:iron_ingot" + }, + { + "id" : "minecraft:netherite_scrap" + }, + { + "id" : "minecraft:netherite_ingot" + }, + { + "id" : "minecraft:gold_nugget" + }, + { + "id" : "minecraft:gold_ingot" + }, + { + "id" : "minecraft:emerald" + }, + { + "id" : "minecraft:quartz" + }, + { + "id" : "minecraft:clay_ball" + }, + { + "id" : "minecraft:brick" + }, + { + "id" : "minecraft:netherbrick" + }, + { + "id" : "minecraft:prismarine_shard" + }, + { + "id" : "minecraft:amethyst_shard" + }, + { + "id" : "minecraft:prismarine_crystals" + }, + { + "id" : "minecraft:nautilus_shell" + }, + { + "id" : "minecraft:heart_of_the_sea" + }, + { + "id" : "minecraft:scute" + }, + { + "id" : "minecraft:phantom_membrane" + }, + { + "id" : "minecraft:string" + }, + { + "id" : "minecraft:feather" + }, + { + "id" : "minecraft:flint" + }, + { + "id" : "minecraft:gunpowder" + }, + { + "id" : "minecraft:leather" + }, + { + "id" : "minecraft:rabbit_hide" + }, + { + "id" : "minecraft:rabbit_foot" + }, + { + "id" : "minecraft:fire_charge" + }, + { + "id" : "minecraft:blaze_rod" + }, + { + "id" : "minecraft:blaze_powder" + }, + { + "id" : "minecraft:magma_cream" + }, + { + "id" : "minecraft:fermented_spider_eye" + }, + { + "id" : "minecraft:dragon_breath" + }, + { + "id" : "minecraft:shulker_shell" + }, + { + "id" : "minecraft:ghast_tear" + }, + { + "id" : "minecraft:slime_ball" + }, + { + "id" : "minecraft:ender_pearl" + }, + { + "id" : "minecraft:ender_eye" + }, + { + "id" : "minecraft:nether_star" + }, + { + "id" : "minecraft:end_rod", + "blockRuntimeId" : 4739 + }, + { + "id" : "minecraft:lightning_rod", + "blockRuntimeId" : 5516 + }, + { + "id" : "minecraft:end_crystal" + }, + { + "id" : "minecraft:paper" + }, + { + "id" : "minecraft:book" + }, + { + "id" : "minecraft:writable_book" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:oak_boat" + }, + { + "id" : "minecraft:spruce_boat" + }, + { + "id" : "minecraft:birch_boat" + }, + { + "id" : "minecraft:jungle_boat" + }, + { + "id" : "minecraft:acacia_boat" + }, + { + "id" : "minecraft:dark_oak_boat" + }, + { + "id" : "minecraft:rail", + "blockRuntimeId" : 6567 + }, + { + "id" : "minecraft:golden_rail", + "blockRuntimeId" : 4977 + }, + { + "id" : "minecraft:detector_rail", + "blockRuntimeId" : 4462 + }, + { + "id" : "minecraft:activator_rail", + "blockRuntimeId" : 122 + }, + { + "id" : "minecraft:minecart" + }, + { + "id" : "minecraft:chest_minecart" + }, + { + "id" : "minecraft:hopper_minecart" + }, + { + "id" : "minecraft:tnt_minecart" + }, + { + "id" : "minecraft:redstone" + }, + { + "id" : "minecraft:redstone_block", + "blockRuntimeId" : 6645 + }, + { + "id" : "minecraft:redstone_torch", + "blockRuntimeId" : 6648 + }, + { + "id" : "minecraft:lever", + "blockRuntimeId" : 5442 + }, + { + "id" : "minecraft:wooden_button", + "blockRuntimeId" : 7843 + }, + { + "id" : "minecraft:spruce_button", + "blockRuntimeId" : 6966 + }, + { + "id" : "minecraft:birch_button", + "blockRuntimeId" : 356 + }, + { + "id" : "minecraft:jungle_button", + "blockRuntimeId" : 5209 + }, + { + "id" : "minecraft:acacia_button" + }, + { + "id" : "minecraft:dark_oak_button", + "blockRuntimeId" : 3937 + }, + { + "id" : "minecraft:stone_button", + "blockRuntimeId" : 7195 + }, + { + "id" : "minecraft:crimson_button", + "blockRuntimeId" : 3772 + }, + { + "id" : "minecraft:warped_button", + "blockRuntimeId" : 7530 + }, + { + "id" : "minecraft:polished_blackstone_button", + "blockRuntimeId" : 6001 + }, + { + "id" : "minecraft:tripwire_hook", + "blockRuntimeId" : 7401 + }, + { + "id" : "minecraft:wooden_pressure_plate", + "blockRuntimeId" : 7887 + }, + { + "id" : "minecraft:spruce_pressure_plate", + "blockRuntimeId" : 7026 + }, + { + "id" : "minecraft:birch_pressure_plate", + "blockRuntimeId" : 416 + }, + { + "id" : "minecraft:jungle_pressure_plate", + "blockRuntimeId" : 5269 + }, + { + "id" : "minecraft:acacia_pressure_plate", + "blockRuntimeId" : 60 + }, + { + "id" : "minecraft:dark_oak_pressure_plate", + "blockRuntimeId" : 3997 + }, + { + "id" : "minecraft:crimson_pressure_plate", + "blockRuntimeId" : 3841 + }, + { + "id" : "minecraft:warped_pressure_plate", + "blockRuntimeId" : 7599 + }, + { + "id" : "minecraft:stone_pressure_plate", + "blockRuntimeId" : 7207 + }, + { + "id" : "minecraft:light_weighted_pressure_plate", + "blockRuntimeId" : 5500 + }, + { + "id" : "minecraft:heavy_weighted_pressure_plate", + "blockRuntimeId" : 5096 + }, + { + "id" : "minecraft:polished_blackstone_pressure_plate", + "blockRuntimeId" : 6015 + }, + { + "id" : "minecraft:observer", + "blockRuntimeId" : 5725 + }, + { + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4067 + }, + { + "id" : "minecraft:repeater" + }, + { + "id" : "minecraft:comparator" + }, + { + "id" : "minecraft:hopper" + }, + { + "id" : "minecraft:dropper", + "blockRuntimeId" : 4589 + }, + { + "id" : "minecraft:dispenser", + "blockRuntimeId" : 4490 + }, + { + "id" : "minecraft:piston", + "blockRuntimeId" : 5786 + }, + { + "id" : "minecraft:sticky_piston", + "blockRuntimeId" : 7169 + }, + { + "id" : "minecraft:tnt", + "blockRuntimeId" : 7353 + }, + { + "id" : "minecraft:name_tag" + }, + { + "id" : "minecraft:loom", + "blockRuntimeId" : 5582 + }, + { + "id" : "minecraft:banner" + }, + { + "id" : "minecraft:banner", + "damage" : 8 + }, + { + "id" : "minecraft:banner", + "damage" : 7 + }, + { + "id" : "minecraft:banner", + "damage" : 15 + }, + { + "id" : "minecraft:banner", + "damage" : 12 + }, + { + "id" : "minecraft:banner", + "damage" : 14 + }, + { + "id" : "minecraft:banner", + "damage" : 1 + }, + { + "id" : "minecraft:banner", + "damage" : 4 + }, + { + "id" : "minecraft:banner", + "damage" : 5 + }, + { + "id" : "minecraft:banner", + "damage" : 13 + }, + { + "id" : "minecraft:banner", + "damage" : 9 + }, + { + "id" : "minecraft:banner", + "damage" : 3 + }, + { + "id" : "minecraft:banner", + "damage" : 11 + }, + { + "id" : "minecraft:banner", + "damage" : 10 + }, + { + "id" : "minecraft:banner", + "damage" : 2 + }, + { + "id" : "minecraft:banner", + "damage" : 6 + }, + { + "id" : "minecraft:banner", + "damage" : 15, + "nbt_b64" : "CgAAAwQAVHlwZQEAAAAA" + }, + { + "id" : "minecraft:creeper_banner_pattern" + }, + { + "id" : "minecraft:skull_banner_pattern" + }, + { + "id" : "minecraft:flower_banner_pattern" + }, + { + "id" : "minecraft:mojang_banner_pattern" + }, + { + "id" : "minecraft:field_masoned_banner_pattern" + }, + { + "id" : "minecraft:bordure_indented_banner_pattern" + }, + { + "id" : "minecraft:piglin_banner_pattern" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_star", + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 8, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 7, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 15, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 12, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 14, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 1, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 4, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 5, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 13, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 9, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 3, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 11, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 10, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 2, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 6, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" + }, + { + "id" : "minecraft:chain" + }, + { + "id" : "minecraft:target", + "blockRuntimeId" : 7351 + }, + { + "id" : "minecraft:lodestone_compass" + } + ] +} diff --git a/src/main/resources/entity_identifiers.dat b/src/main/resources/entity_identifiers.dat index b9da310f5006930506c26435b7f1bf8960006021..e4fe549112a2adf9bfd1b7926dbcb48add8765e6 100644 GIT binary patch delta 16 Xcmca+dChV|so>;3VX4jig6`Y^K9mMX delta 16 Xcmca+dChV|so>;u!cv?21>Ly;K$HfE diff --git a/src/main/resources/recipes.json b/src/main/resources/recipes.json index 99dc59e4c27..358c4601153 100644 --- a/src/main/resources/recipes.json +++ b/src/main/resources/recipes.json @@ -59294,4 +59294,4 @@ "outputId" : "minecraft:lingering_potion" } ] -} \ No newline at end of file +} diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index 453f4027900..31b47e9f9ee 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -1,1261 +1,4700 @@ [ - { "name": "minecraft:acacia_boat", "oldId": 379, "id": 379 }, - { "name": "minecraft:acacia_button", "oldId": -140, "id": -140 }, - { "name": "minecraft:acacia_door", "oldId": 556, "id": 556 }, - { "name": "minecraft:acacia_fence_gate", "oldId": 187, "id": 187 }, - { "name": "minecraft:acacia_pressure_plate", "oldId": -150, "id": -150 }, - { "name": "minecraft:acacia_sign", "oldId": 579, "id": 579 }, - { "name": "minecraft:acacia_stairs", "oldId": 163, "id": 163 }, - { "name": "minecraft:acacia_standing_sign", "oldId": -190, "id": -190 }, - { "name": "minecraft:acacia_trapdoor", "oldId": -145, "id": -145 }, - { "name": "minecraft:acacia_wall_sign", "oldId": -191, "id": -191 }, - { "name": "minecraft:activator_rail", "oldId": 126, "id": 126 }, - { "name": "minecraft:agent_spawn_egg", "oldId": 487, "id": 487 }, - { "name": "minecraft:air", "oldId": -158, "id": -158 }, - { "name": "minecraft:allow", "oldId": 210, "id": 210 }, - { "name": "minecraft:amethyst_block", "oldId": -327, "id": -327 }, - { "name": "minecraft:amethyst_cluster", "oldId": -329, "id": -329 }, - { "name": "minecraft:amethyst_shard", "oldId": 623, "id": 623 }, - { "name": "minecraft:ancient_debris", "oldId": -271, "id": -271 }, - { "name": "minecraft:andesite_stairs", "oldId": -171, "id": -171 }, - { "name": "minecraft:anvil", "oldId": 145, "id": 145 }, - { "name": "minecraft:apple", "oldId": 257, "id": 257 }, - { "name": "minecraft:armor_stand", "oldId": 552, "id": 552 }, - { "name": "minecraft:arrow", "oldId": 301, "id": 301 }, - { "name": "minecraft:axolotl_bucket", "oldId": 369, "id": 369 }, - { "name": "minecraft:axolotl_spawn_egg", "oldId": 500, "id": 500 }, - { "name": "minecraft:azalea", "oldId": -337, "id": -337 }, - { "name": "minecraft:azalea_leaves", "oldId": -324, "id": -324 }, - { "name": "minecraft:azalea_leaves_flowered", "oldId": -325, "id": -325 }, - { "name": "minecraft:baked_potato", "oldId": 281, "id": 281 }, - { "name": "minecraft:balloon", "oldId": 597, "id": 597 }, - { "name": "minecraft:bamboo", "oldId": -163, "id": -163 }, - { "name": "minecraft:bamboo_sapling", "oldId": -164, "id": -164 }, - { "name": "minecraft:banner", "oldId": 567, "id": 567 }, - { "name": "minecraft:banner_pattern", "oldId": 627, "id": 627 }, - { "name": "minecraft:barrel", "oldId": -203, "id": -203 }, - { "name": "minecraft:barrier", "oldId": -161, "id": -161 }, - { "name": "minecraft:basalt", "oldId": -234, "id": -234 }, - { "name": "minecraft:bat_spawn_egg", "oldId": 453, "id": 453 }, - { "name": "minecraft:beacon", "oldId": 138, "id": 138 }, - { "name": "minecraft:bed", "oldId": 418, "id": 418 }, - { "name": "minecraft:bedrock", "oldId": 7, "id": 7 }, - { "name": "minecraft:bee_nest", "oldId": -218, "id": -218 }, - { "name": "minecraft:bee_spawn_egg", "oldId": 494, "id": 494 }, - { "name": "minecraft:beef", "oldId": 273, "id": 273 }, - { "name": "minecraft:beehive", "oldId": -219, "id": -219 }, - { "name": "minecraft:beetroot", "oldId": 285, "id": 285 }, - { "name": "minecraft:beetroot_seeds", "oldId": 295, "id": 295 }, - { "name": "minecraft:beetroot_soup", "oldId": 286, "id": 286 }, - { "name": "minecraft:bell", "oldId": -206, "id": -206 }, - { "name": "minecraft:big_dripleaf", "oldId": -323, "id": -323 }, - { "name": "minecraft:birch_boat", "oldId": 376, "id": 376 }, - { "name": "minecraft:birch_button", "oldId": -141, "id": -141 }, - { "name": "minecraft:birch_door", "oldId": 554, "id": 554 }, - { "name": "minecraft:birch_fence_gate", "oldId": 184, "id": 184 }, - { "name": "minecraft:birch_pressure_plate", "oldId": -151, "id": -151 }, - { "name": "minecraft:birch_sign", "oldId": 577, "id": 577 }, - { "name": "minecraft:birch_stairs", "oldId": 135, "id": 135 }, - { "name": "minecraft:birch_standing_sign", "oldId": -186, "id": -186 }, - { "name": "minecraft:birch_trapdoor", "oldId": -146, "id": -146 }, - { "name": "minecraft:birch_wall_sign", "oldId": -187, "id": -187 }, - { "name": "minecraft:black_candle", "oldId": -428, "id": -428 }, - { "name": "minecraft:black_candle_cake", "oldId": -445, "id": -445 }, - { "name": "minecraft:black_dye", "oldId": 395, "id": 395 }, - { "name": "minecraft:black_glazed_terracotta", "oldId": 235, "id": 235 }, - { "name": "minecraft:blackstone", "oldId": -273, "id": -273 }, - { "name": "minecraft:blackstone_double_slab", "oldId": -283, "id": -283 }, - { "name": "minecraft:blackstone_slab", "oldId": -282, "id": -282 }, - { "name": "minecraft:blackstone_stairs", "oldId": -276, "id": -276 }, - { "name": "minecraft:blackstone_wall", "oldId": -277, "id": -277 }, - { "name": "minecraft:blast_furnace", "oldId": -196, "id": -196 }, - { "name": "minecraft:blaze_powder", "oldId": 429, "id": 429 }, - { "name": "minecraft:blaze_rod", "oldId": 423, "id": 423 }, - { "name": "minecraft:blaze_spawn_egg", "oldId": 456, "id": 456 }, - { "name": "minecraft:bleach", "oldId": 595, "id": 595 }, - { "name": "minecraft:blue_candle", "oldId": -424, "id": -424 }, - { "name": "minecraft:blue_candle_cake", "oldId": -441, "id": -441 }, - { "name": "minecraft:blue_dye", "oldId": 399, "id": 399 }, - { "name": "minecraft:blue_glazed_terracotta", "oldId": 231, "id": 231 }, - { "name": "minecraft:blue_ice", "oldId": -11, "id": -11 }, - { "name": "minecraft:boat", "oldId": 625, "id": 625 }, - { "name": "minecraft:bone", "oldId": 415, "id": 415 }, - { "name": "minecraft:bone_block", "oldId": 216, "id": 216 }, - { "name": "minecraft:bone_meal", "oldId": 411, "id": 411 }, - { "name": "minecraft:book", "oldId": 387, "id": 387 }, - { "name": "minecraft:bookshelf", "oldId": 47, "id": 47 }, - { "name": "minecraft:border_block", "oldId": 212, "id": 212 }, { - "name": "minecraft:bordure_indented_banner_pattern", - "oldId": 586, - "id": 586 - }, - { "name": "minecraft:bow", "oldId": 300, "id": 300 }, - { "name": "minecraft:bowl", "oldId": 321, "id": 321 }, - { "name": "minecraft:bread", "oldId": 261, "id": 261 }, - { "name": "minecraft:brewing_stand", "oldId": 431, "id": 431 }, - { "name": "minecraft:brewingstandblock", "oldId": 117, "id": 117 }, - { "name": "minecraft:brick", "oldId": 383, "id": 383 }, - { "name": "minecraft:brick_block", "oldId": 45, "id": 45 }, - { "name": "minecraft:brick_stairs", "oldId": 108, "id": 108 }, - { "name": "minecraft:brown_candle", "oldId": -425, "id": -425 }, - { "name": "minecraft:brown_candle_cake", "oldId": -442, "id": -442 }, - { "name": "minecraft:brown_dye", "oldId": 398, "id": 398 }, - { "name": "minecraft:brown_glazed_terracotta", "oldId": 232, "id": 232 }, - { "name": "minecraft:brown_mushroom", "oldId": 39, "id": 39 }, - { "name": "minecraft:brown_mushroom_block", "oldId": 99, "id": 99 }, - { "name": "minecraft:bubble_column", "oldId": -160, "id": -160 }, - { "name": "minecraft:bucket", "oldId": 360, "id": 360 }, - { "name": "minecraft:budding_amethyst", "oldId": -328, "id": -328 }, - { "name": "minecraft:cactus", "oldId": 81, "id": 81 }, - { "name": "minecraft:cake", "oldId": 417, "id": 417 }, - { "name": "minecraft:calcite", "oldId": -326, "id": -326 }, - { "name": "minecraft:camera", "oldId": 592, "id": 592 }, - { "name": "minecraft:campfire", "oldId": 588, "id": 588 }, - { "name": "minecraft:candle", "oldId": -412, "id": -412 }, - { "name": "minecraft:candle_cake", "oldId": -429, "id": -429 }, - { "name": "minecraft:carpet", "oldId": 171, "id": 171 }, - { "name": "minecraft:carrot", "oldId": 279, "id": 279 }, - { "name": "minecraft:carrot_on_a_stick", "oldId": 517, "id": 517 }, - { "name": "minecraft:carrots", "oldId": 141, "id": 141 }, - { "name": "minecraft:cartography_table", "oldId": -200, "id": -200 }, - { "name": "minecraft:carved_pumpkin", "oldId": -155, "id": -155 }, - { "name": "minecraft:cat_spawn_egg", "oldId": 488, "id": 488 }, - { "name": "minecraft:cauldron", "oldId": 432, "id": 432 }, - { "name": "minecraft:cave_spider_spawn_egg", "oldId": 457, "id": 457 }, - { "name": "minecraft:cave_vines", "oldId": -322, "id": -322 }, - { - "name": "minecraft:cave_vines_body_with_berries", - "oldId": -375, - "id": -375 - }, - { - "name": "minecraft:cave_vines_head_with_berries", - "oldId": -376, - "id": -376 - }, - { "name": "minecraft:chain", "oldId": 617, "id": 617 }, - { "name": "minecraft:chain_command_block", "oldId": 189, "id": 189 }, - { "name": "minecraft:chainmail_boots", "oldId": 342, "id": 342 }, - { "name": "minecraft:chainmail_chestplate", "oldId": 340, "id": 340 }, - { "name": "minecraft:chainmail_helmet", "oldId": 339, "id": 339 }, - { "name": "minecraft:chainmail_leggings", "oldId": 341, "id": 341 }, - { "name": "minecraft:charcoal", "oldId": 303, "id": 303 }, - { "name": "minecraft:chemical_heat", "oldId": 192, "id": 192 }, - { "name": "minecraft:chemistry_table", "oldId": 238, "id": 238 }, - { "name": "minecraft:chest", "oldId": 54, "id": 54 }, - { "name": "minecraft:chest_minecart", "oldId": 389, "id": 389 }, - { "name": "minecraft:chicken", "oldId": 275, "id": 275 }, - { "name": "minecraft:chicken_spawn_egg", "oldId": 435, "id": 435 }, - { "name": "minecraft:chiseled_deepslate", "oldId": -395, "id": -395 }, - { "name": "minecraft:chiseled_nether_bricks", "oldId": -302, "id": -302 }, + "name": "minecraft:unknown", + "id": -305 + }, { - "name": "minecraft:chiseled_polished_blackstone", - "oldId": -279, - "id": -279 - }, - { "name": "minecraft:chorus_flower", "oldId": 200, "id": 200 }, - { "name": "minecraft:chorus_fruit", "oldId": 558, "id": 558 }, - { "name": "minecraft:chorus_plant", "oldId": 240, "id": 240 }, - { "name": "minecraft:clay", "oldId": 82, "id": 82 }, - { "name": "minecraft:clay_ball", "oldId": 384, "id": 384 }, - { - "name": "minecraft:client_request_placeholder_block", - "oldId": -465, - "id": -465 - }, - { "name": "minecraft:clock", "oldId": 393, "id": 393 }, - { "name": "minecraft:coal", "oldId": 302, "id": 302 }, - { "name": "minecraft:coal_block", "oldId": 173, "id": 173 }, - { "name": "minecraft:coal_ore", "oldId": 16, "id": 16 }, - { "name": "minecraft:cobbled_deepslate", "oldId": -379, "id": -379 }, - { - "name": "minecraft:cobbled_deepslate_double_slab", - "oldId": -396, - "id": -396 - }, - { "name": "minecraft:cobbled_deepslate_slab", "oldId": -380, "id": -380 }, - { "name": "minecraft:cobbled_deepslate_stairs", "oldId": -381, "id": -381 }, - { "name": "minecraft:cobbled_deepslate_wall", "oldId": -382, "id": -382 }, - { "name": "minecraft:cobblestone", "oldId": 4, "id": 4 }, - { "name": "minecraft:cobblestone_wall", "oldId": 139, "id": 139 }, - { "name": "minecraft:cocoa", "oldId": 127, "id": 127 }, - { "name": "minecraft:cocoa_beans", "oldId": 412, "id": 412 }, - { "name": "minecraft:cod", "oldId": 264, "id": 264 }, - { "name": "minecraft:cod_bucket", "oldId": 364, "id": 364 }, - { "name": "minecraft:cod_spawn_egg", "oldId": 480, "id": 480 }, - { "name": "minecraft:colored_torch_bp", "oldId": 204, "id": 204 }, - { "name": "minecraft:colored_torch_rg", "oldId": 202, "id": 202 }, - { "name": "minecraft:command_block", "oldId": 137, "id": 137 }, - { "name": "minecraft:command_block_minecart", "oldId": 563, "id": 563 }, - { "name": "minecraft:comparator", "oldId": 522, "id": 522 }, - { "name": "minecraft:compass", "oldId": 391, "id": 391 }, - { "name": "minecraft:composter", "oldId": -213, "id": -213 }, - { "name": "minecraft:compound", "oldId": 593, "id": 593 }, - { "name": "minecraft:concrete", "oldId": 236, "id": 236 }, - { "name": "minecraft:concrete_powder", "oldId": 237, "id": 237 }, - { "name": "minecraft:conduit", "oldId": -157, "id": -157 }, - { "name": "minecraft:cooked_beef", "oldId": 274, "id": 274 }, - { "name": "minecraft:cooked_chicken", "oldId": 276, "id": 276 }, - { "name": "minecraft:cooked_cod", "oldId": 268, "id": 268 }, - { "name": "minecraft:cooked_mutton", "oldId": 551, "id": 551 }, - { "name": "minecraft:cooked_porkchop", "oldId": 263, "id": 263 }, - { "name": "minecraft:cooked_rabbit", "oldId": 289, "id": 289 }, - { "name": "minecraft:cooked_salmon", "oldId": 269, "id": 269 }, - { "name": "minecraft:cookie", "oldId": 271, "id": 271 }, - { "name": "minecraft:copper_block", "oldId": -340, "id": -340 }, - { "name": "minecraft:copper_ingot", "oldId": 504, "id": 504 }, - { "name": "minecraft:copper_ore", "oldId": -311, "id": -311 }, - { "name": "minecraft:coral", "oldId": -131, "id": -131 }, - { "name": "minecraft:coral_block", "oldId": -132, "id": -132 }, - { "name": "minecraft:coral_fan", "oldId": -133, "id": -133 }, - { "name": "minecraft:coral_fan_dead", "oldId": -134, "id": -134 }, - { "name": "minecraft:coral_fan_hang", "oldId": -135, "id": -135 }, - { "name": "minecraft:coral_fan_hang2", "oldId": -136, "id": -136 }, - { "name": "minecraft:coral_fan_hang3", "oldId": -137, "id": -137 }, - { "name": "minecraft:cow_spawn_egg", "oldId": 436, "id": 436 }, - { "name": "minecraft:cracked_deepslate_bricks", "oldId": -410, "id": -410 }, - { "name": "minecraft:cracked_deepslate_tiles", "oldId": -409, "id": -409 }, - { "name": "minecraft:cracked_nether_bricks", "oldId": -303, "id": -303 }, + "name": "minecraft:quartz_bricks", + "id": -304, + "oldId": -304 + }, { - "name": "minecraft:cracked_polished_blackstone_bricks", - "oldId": -280, - "id": -280 - }, - { "name": "minecraft:crafting_table", "oldId": 58, "id": 58 }, - { "name": "minecraft:creeper_banner_pattern", "oldId": 582, "id": 582 }, - { "name": "minecraft:creeper_spawn_egg", "oldId": 441, "id": 441 }, - { "name": "minecraft:crimson_button", "oldId": -260, "id": -260 }, - { "name": "minecraft:crimson_door", "oldId": 614, "id": 614 }, - { "name": "minecraft:crimson_double_slab", "oldId": -266, "id": -266 }, - { "name": "minecraft:crimson_fence", "oldId": -256, "id": -256 }, - { "name": "minecraft:crimson_fence_gate", "oldId": -258, "id": -258 }, - { "name": "minecraft:crimson_fungus", "oldId": -228, "id": -228 }, - { "name": "minecraft:crimson_hyphae", "oldId": -299, "id": -299 }, - { "name": "minecraft:crimson_nylium", "oldId": -232, "id": -232 }, - { "name": "minecraft:crimson_planks", "oldId": -242, "id": -242 }, - { "name": "minecraft:crimson_pressure_plate", "oldId": -262, "id": -262 }, - { "name": "minecraft:crimson_roots", "oldId": -223, "id": -223 }, - { "name": "minecraft:crimson_sign", "oldId": 612, "id": 612 }, - { "name": "minecraft:crimson_slab", "oldId": -264, "id": -264 }, - { "name": "minecraft:crimson_stairs", "oldId": -254, "id": -254 }, - { "name": "minecraft:crimson_standing_sign", "oldId": -250, "id": -250 }, - { "name": "minecraft:crimson_stem", "oldId": -225, "id": -225 }, - { "name": "minecraft:crimson_trapdoor", "oldId": -246, "id": -246 }, - { "name": "minecraft:crimson_wall_sign", "oldId": -252, "id": -252 }, - { "name": "minecraft:crossbow", "oldId": 575, "id": 575 }, - { "name": "minecraft:crying_obsidian", "oldId": -289, "id": -289 }, - { "name": "minecraft:cut_copper", "oldId": -347, "id": -347 }, - { "name": "minecraft:cut_copper_slab", "oldId": -361, "id": -361 }, - { "name": "minecraft:cut_copper_stairs", "oldId": -354, "id": -354 }, - { "name": "minecraft:cyan_candle", "oldId": -422, "id": -422 }, - { "name": "minecraft:cyan_candle_cake", "oldId": -439, "id": -439 }, - { "name": "minecraft:cyan_dye", "oldId": 401, "id": 401 }, - { "name": "minecraft:cyan_glazed_terracotta", "oldId": 229, "id": 229 }, - { "name": "minecraft:dark_oak_boat", "oldId": 380, "id": 380 }, - { "name": "minecraft:dark_oak_button", "oldId": -142, "id": -142 }, - { "name": "minecraft:dark_oak_door", "oldId": 557, "id": 557 }, - { "name": "minecraft:dark_oak_fence_gate", "oldId": 186, "id": 186 }, - { "name": "minecraft:dark_oak_pressure_plate", "oldId": -152, "id": -152 }, - { "name": "minecraft:dark_oak_sign", "oldId": 580, "id": 580 }, - { "name": "minecraft:dark_oak_stairs", "oldId": 164, "id": 164 }, - { "name": "minecraft:dark_oak_trapdoor", "oldId": -147, "id": -147 }, - { "name": "minecraft:dark_prismarine_stairs", "oldId": -3, "id": -3 }, - { "name": "minecraft:darkoak_standing_sign", "oldId": -192, "id": -192 }, - { "name": "minecraft:darkoak_wall_sign", "oldId": -193, "id": -193 }, - { "name": "minecraft:daylight_detector", "oldId": 151, "id": 151 }, - { "name": "minecraft:daylight_detector_inverted", "oldId": 178, "id": 178 }, - { "name": "minecraft:deadbush", "oldId": 32, "id": 32 }, - { "name": "minecraft:deepslate", "oldId": -378, "id": -378 }, - { - "name": "minecraft:deepslate_brick_double_slab", - "oldId": -399, - "id": -399 - }, - { "name": "minecraft:deepslate_brick_slab", "oldId": -392, "id": -392 }, - { "name": "minecraft:deepslate_brick_stairs", "oldId": -393, "id": -393 }, - { "name": "minecraft:deepslate_brick_wall", "oldId": -394, "id": -394 }, - { "name": "minecraft:deepslate_bricks", "oldId": -391, "id": -391 }, - { "name": "minecraft:deepslate_coal_ore", "oldId": -406, "id": -406 }, - { "name": "minecraft:deepslate_copper_ore", "oldId": -408, "id": -408 }, - { "name": "minecraft:deepslate_diamond_ore", "oldId": -405, "id": -405 }, - { "name": "minecraft:deepslate_emerald_ore", "oldId": -407, "id": -407 }, - { "name": "minecraft:deepslate_gold_ore", "oldId": -402, "id": -402 }, - { "name": "minecraft:deepslate_iron_ore", "oldId": -401, "id": -401 }, - { "name": "minecraft:deepslate_lapis_ore", "oldId": -400, "id": -400 }, - { "name": "minecraft:deepslate_redstone_ore", "oldId": -403, "id": -403 }, - { - "name": "minecraft:deepslate_tile_double_slab", - "oldId": -398, - "id": -398 - }, - { "name": "minecraft:deepslate_tile_slab", "oldId": -388, "id": -388 }, - { "name": "minecraft:deepslate_tile_stairs", "oldId": -389, "id": -389 }, - { "name": "minecraft:deepslate_tile_wall", "oldId": -390, "id": -390 }, - { "name": "minecraft:deepslate_tiles", "oldId": -387, "id": -387 }, - { "name": "minecraft:deny", "oldId": 211, "id": 211 }, - { "name": "minecraft:detector_rail", "oldId": 28, "id": 28 }, - { "name": "minecraft:diamond", "oldId": 304, "id": 304 }, - { "name": "minecraft:diamond_axe", "oldId": 319, "id": 319 }, - { "name": "minecraft:diamond_block", "oldId": 57, "id": 57 }, - { "name": "minecraft:diamond_boots", "oldId": 350, "id": 350 }, - { "name": "minecraft:diamond_chestplate", "oldId": 348, "id": 348 }, - { "name": "minecraft:diamond_helmet", "oldId": 347, "id": 347 }, - { "name": "minecraft:diamond_hoe", "oldId": 332, "id": 332 }, - { "name": "minecraft:diamond_horse_armor", "oldId": 533, "id": 533 }, - { "name": "minecraft:diamond_leggings", "oldId": 349, "id": 349 }, - { "name": "minecraft:diamond_ore", "oldId": 56, "id": 56 }, - { "name": "minecraft:diamond_pickaxe", "oldId": 318, "id": 318 }, - { "name": "minecraft:diamond_shovel", "oldId": 317, "id": 317 }, - { "name": "minecraft:diamond_sword", "oldId": 316, "id": 316 }, - { "name": "minecraft:diorite_stairs", "oldId": -170, "id": -170 }, - { "name": "minecraft:dirt", "oldId": 3, "id": 3 }, - { "name": "minecraft:dirt_with_roots", "oldId": -318, "id": -318 }, - { "name": "minecraft:dispenser", "oldId": 23, "id": 23 }, - { "name": "minecraft:dolphin_spawn_egg", "oldId": 484, "id": 484 }, - { "name": "minecraft:donkey_spawn_egg", "oldId": 465, "id": 465 }, - { "name": "minecraft:double_cut_copper_slab", "oldId": -368, "id": -368 }, - { "name": "minecraft:double_plant", "oldId": 175, "id": 175 }, - { "name": "minecraft:double_stone_slab", "oldId": 44, "id": 44 }, - { "name": "minecraft:double_stone_slab2", "oldId": 182, "id": 182 }, - { "name": "minecraft:double_stone_slab3", "oldId": -162, "id": -162 }, - { "name": "minecraft:double_stone_slab4", "oldId": -166, "id": -166 }, - { "name": "minecraft:double_wooden_slab", "oldId": 157, "id": 157 }, - { "name": "minecraft:dragon_breath", "oldId": 560, "id": 560 }, - { "name": "minecraft:dragon_egg", "oldId": 122, "id": 122 }, - { "name": "minecraft:dried_kelp", "oldId": 270, "id": 270 }, - { "name": "minecraft:dried_kelp_block", "oldId": -139, "id": -139 }, - { "name": "minecraft:dripstone_block", "oldId": -317, "id": -317 }, - { "name": "minecraft:dropper", "oldId": 125, "id": 125 }, - { "name": "minecraft:drowned_spawn_egg", "oldId": 483, "id": 483 }, - { "name": "minecraft:dye", "oldId": 626, "id": 626 }, - { "name": "minecraft:egg", "oldId": 390, "id": 390 }, - { "name": "minecraft:elder_guardian_spawn_egg", "oldId": 471, "id": 471 }, - { "name": "minecraft:element_0", "oldId": 36, "id": 36 }, - { "name": "minecraft:element_1", "oldId": -12, "id": -12 }, - { "name": "minecraft:element_10", "oldId": -21, "id": -21 }, - { "name": "minecraft:element_100", "oldId": -111, "id": -111 }, - { "name": "minecraft:element_101", "oldId": -112, "id": -112 }, - { "name": "minecraft:element_102", "oldId": -113, "id": -113 }, - { "name": "minecraft:element_103", "oldId": -114, "id": -114 }, - { "name": "minecraft:element_104", "oldId": -115, "id": -115 }, - { "name": "minecraft:element_105", "oldId": -116, "id": -116 }, - { "name": "minecraft:element_106", "oldId": -117, "id": -117 }, - { "name": "minecraft:element_107", "oldId": -118, "id": -118 }, - { "name": "minecraft:element_108", "oldId": -119, "id": -119 }, - { "name": "minecraft:element_109", "oldId": -120, "id": -120 }, - { "name": "minecraft:element_11", "oldId": -22, "id": -22 }, - { "name": "minecraft:element_110", "oldId": -121, "id": -121 }, - { "name": "minecraft:element_111", "oldId": -122, "id": -122 }, - { "name": "minecraft:element_112", "oldId": -123, "id": -123 }, - { "name": "minecraft:element_113", "oldId": -124, "id": -124 }, - { "name": "minecraft:element_114", "oldId": -125, "id": -125 }, - { "name": "minecraft:element_115", "oldId": -126, "id": -126 }, - { "name": "minecraft:element_116", "oldId": -127, "id": -127 }, - { "name": "minecraft:element_117", "oldId": -128, "id": -128 }, - { "name": "minecraft:element_118", "oldId": -129, "id": -129 }, - { "name": "minecraft:element_12", "oldId": -23, "id": -23 }, - { "name": "minecraft:element_13", "oldId": -24, "id": -24 }, - { "name": "minecraft:element_14", "oldId": -25, "id": -25 }, - { "name": "minecraft:element_15", "oldId": -26, "id": -26 }, - { "name": "minecraft:element_16", "oldId": -27, "id": -27 }, - { "name": "minecraft:element_17", "oldId": -28, "id": -28 }, - { "name": "minecraft:element_18", "oldId": -29, "id": -29 }, - { "name": "minecraft:element_19", "oldId": -30, "id": -30 }, - { "name": "minecraft:element_2", "oldId": -13, "id": -13 }, - { "name": "minecraft:element_20", "oldId": -31, "id": -31 }, - { "name": "minecraft:element_21", "oldId": -32, "id": -32 }, - { "name": "minecraft:element_22", "oldId": -33, "id": -33 }, - { "name": "minecraft:element_23", "oldId": -34, "id": -34 }, - { "name": "minecraft:element_24", "oldId": -35, "id": -35 }, - { "name": "minecraft:element_25", "oldId": -36, "id": -36 }, - { "name": "minecraft:element_26", "oldId": -37, "id": -37 }, - { "name": "minecraft:element_27", "oldId": -38, "id": -38 }, - { "name": "minecraft:element_28", "oldId": -39, "id": -39 }, - { "name": "minecraft:element_29", "oldId": -40, "id": -40 }, - { "name": "minecraft:element_3", "oldId": -14, "id": -14 }, - { "name": "minecraft:element_30", "oldId": -41, "id": -41 }, - { "name": "minecraft:element_31", "oldId": -42, "id": -42 }, - { "name": "minecraft:element_32", "oldId": -43, "id": -43 }, - { "name": "minecraft:element_33", "oldId": -44, "id": -44 }, - { "name": "minecraft:element_34", "oldId": -45, "id": -45 }, - { "name": "minecraft:element_35", "oldId": -46, "id": -46 }, - { "name": "minecraft:element_36", "oldId": -47, "id": -47 }, - { "name": "minecraft:element_37", "oldId": -48, "id": -48 }, - { "name": "minecraft:element_38", "oldId": -49, "id": -49 }, - { "name": "minecraft:element_39", "oldId": -50, "id": -50 }, - { "name": "minecraft:element_4", "oldId": -15, "id": -15 }, - { "name": "minecraft:element_40", "oldId": -51, "id": -51 }, - { "name": "minecraft:element_41", "oldId": -52, "id": -52 }, - { "name": "minecraft:element_42", "oldId": -53, "id": -53 }, - { "name": "minecraft:element_43", "oldId": -54, "id": -54 }, - { "name": "minecraft:element_44", "oldId": -55, "id": -55 }, - { "name": "minecraft:element_45", "oldId": -56, "id": -56 }, - { "name": "minecraft:element_46", "oldId": -57, "id": -57 }, - { "name": "minecraft:element_47", "oldId": -58, "id": -58 }, - { "name": "minecraft:element_48", "oldId": -59, "id": -59 }, - { "name": "minecraft:element_49", "oldId": -60, "id": -60 }, - { "name": "minecraft:element_5", "oldId": -16, "id": -16 }, - { "name": "minecraft:element_50", "oldId": -61, "id": -61 }, - { "name": "minecraft:element_51", "oldId": -62, "id": -62 }, - { "name": "minecraft:element_52", "oldId": -63, "id": -63 }, - { "name": "minecraft:element_53", "oldId": -64, "id": -64 }, - { "name": "minecraft:element_54", "oldId": -65, "id": -65 }, - { "name": "minecraft:element_55", "oldId": -66, "id": -66 }, - { "name": "minecraft:element_56", "oldId": -67, "id": -67 }, - { "name": "minecraft:element_57", "oldId": -68, "id": -68 }, - { "name": "minecraft:element_58", "oldId": -69, "id": -69 }, - { "name": "minecraft:element_59", "oldId": -70, "id": -70 }, - { "name": "minecraft:element_6", "oldId": -17, "id": -17 }, - { "name": "minecraft:element_60", "oldId": -71, "id": -71 }, - { "name": "minecraft:element_61", "oldId": -72, "id": -72 }, - { "name": "minecraft:element_62", "oldId": -73, "id": -73 }, - { "name": "minecraft:element_63", "oldId": -74, "id": -74 }, - { "name": "minecraft:element_64", "oldId": -75, "id": -75 }, - { "name": "minecraft:element_65", "oldId": -76, "id": -76 }, - { "name": "minecraft:element_66", "oldId": -77, "id": -77 }, - { "name": "minecraft:element_67", "oldId": -78, "id": -78 }, - { "name": "minecraft:element_68", "oldId": -79, "id": -79 }, - { "name": "minecraft:element_69", "oldId": -80, "id": -80 }, - { "name": "minecraft:element_7", "oldId": -18, "id": -18 }, - { "name": "minecraft:element_70", "oldId": -81, "id": -81 }, - { "name": "minecraft:element_71", "oldId": -82, "id": -82 }, - { "name": "minecraft:element_72", "oldId": -83, "id": -83 }, - { "name": "minecraft:element_73", "oldId": -84, "id": -84 }, - { "name": "minecraft:element_74", "oldId": -85, "id": -85 }, - { "name": "minecraft:element_75", "oldId": -86, "id": -86 }, - { "name": "minecraft:element_76", "oldId": -87, "id": -87 }, - { "name": "minecraft:element_77", "oldId": -88, "id": -88 }, - { "name": "minecraft:element_78", "oldId": -89, "id": -89 }, - { "name": "minecraft:element_79", "oldId": -90, "id": -90 }, - { "name": "minecraft:element_8", "oldId": -19, "id": -19 }, - { "name": "minecraft:element_80", "oldId": -91, "id": -91 }, - { "name": "minecraft:element_81", "oldId": -92, "id": -92 }, - { "name": "minecraft:element_82", "oldId": -93, "id": -93 }, - { "name": "minecraft:element_83", "oldId": -94, "id": -94 }, - { "name": "minecraft:element_84", "oldId": -95, "id": -95 }, - { "name": "minecraft:element_85", "oldId": -96, "id": -96 }, - { "name": "minecraft:element_86", "oldId": -97, "id": -97 }, - { "name": "minecraft:element_87", "oldId": -98, "id": -98 }, - { "name": "minecraft:element_88", "oldId": -99, "id": -99 }, - { "name": "minecraft:element_89", "oldId": -100, "id": -100 }, - { "name": "minecraft:element_9", "oldId": -20, "id": -20 }, - { "name": "minecraft:element_90", "oldId": -101, "id": -101 }, - { "name": "minecraft:element_91", "oldId": -102, "id": -102 }, - { "name": "minecraft:element_92", "oldId": -103, "id": -103 }, - { "name": "minecraft:element_93", "oldId": -104, "id": -104 }, - { "name": "minecraft:element_94", "oldId": -105, "id": -105 }, - { "name": "minecraft:element_95", "oldId": -106, "id": -106 }, - { "name": "minecraft:element_96", "oldId": -107, "id": -107 }, - { "name": "minecraft:element_97", "oldId": -108, "id": -108 }, - { "name": "minecraft:element_98", "oldId": -109, "id": -109 }, - { "name": "minecraft:element_99", "oldId": -110, "id": -110 }, - { "name": "minecraft:elytra", "oldId": 564, "id": 564 }, - { "name": "minecraft:emerald", "oldId": 512, "id": 512 }, - { "name": "minecraft:emerald_block", "oldId": 133, "id": 133 }, - { "name": "minecraft:emerald_ore", "oldId": 129, "id": 129 }, - { "name": "minecraft:empty_map", "oldId": 515, "id": 515 }, - { "name": "minecraft:enchanted_book", "oldId": 521, "id": 521 }, - { "name": "minecraft:enchanted_golden_apple", "oldId": 259, "id": 259 }, - { "name": "minecraft:enchanting_table", "oldId": 116, "id": 116 }, - { "name": "minecraft:end_brick_stairs", "oldId": -178, "id": -178 }, - { "name": "minecraft:end_bricks", "oldId": 206, "id": 206 }, - { "name": "minecraft:end_crystal", "oldId": 629, "id": 629 }, - { "name": "minecraft:end_gateway", "oldId": 209, "id": 209 }, - { "name": "minecraft:end_portal", "oldId": 119, "id": 119 }, - { "name": "minecraft:end_portal_frame", "oldId": 120, "id": 120 }, - { "name": "minecraft:end_rod", "oldId": 208, "id": 208 }, - { "name": "minecraft:end_stone", "oldId": 121, "id": 121 }, - { "name": "minecraft:ender_chest", "oldId": 130, "id": 130 }, - { "name": "minecraft:ender_eye", "oldId": 433, "id": 433 }, - { "name": "minecraft:ender_pearl", "oldId": 422, "id": 422 }, - { "name": "minecraft:enderman_spawn_egg", "oldId": 442, "id": 442 }, - { "name": "minecraft:endermite_spawn_egg", "oldId": 460, "id": 460 }, - { "name": "minecraft:evoker_spawn_egg", "oldId": 475, "id": 475 }, - { "name": "minecraft:experience_bottle", "oldId": 508, "id": 508 }, - { "name": "minecraft:exposed_copper", "oldId": -341, "id": -341 }, - { "name": "minecraft:exposed_cut_copper", "oldId": -348, "id": -348 }, - { "name": "minecraft:exposed_cut_copper_slab", "oldId": -362, "id": -362 }, - { - "name": "minecraft:exposed_cut_copper_stairs", - "oldId": -355, - "id": -355 - }, - { - "name": "minecraft:exposed_double_cut_copper_slab", - "oldId": -369, - "id": -369 - }, - { "name": "minecraft:farmland", "oldId": 60, "id": 60 }, - { "name": "minecraft:feather", "oldId": 327, "id": 327 }, - { "name": "minecraft:fence", "oldId": 85, "id": 85 }, - { "name": "minecraft:fence_gate", "oldId": 107, "id": 107 }, - { "name": "minecraft:fermented_spider_eye", "oldId": 428, "id": 428 }, + "name": "minecraft:cracked_nether_bricks", + "id": -303, + "oldId": -303 + }, { - "name": "minecraft:field_masoned_banner_pattern", - "oldId": 585, - "id": 585 - }, - { "name": "minecraft:filled_map", "oldId": 420, "id": 420 }, - { "name": "minecraft:fire", "oldId": 51, "id": 51 }, - { "name": "minecraft:fire_charge", "oldId": 509, "id": 509 }, - { "name": "minecraft:firework_rocket", "oldId": 519, "id": 519 }, - { "name": "minecraft:firework_star", "oldId": 520, "id": 520 }, - { "name": "minecraft:fishing_rod", "oldId": 392, "id": 392 }, - { "name": "minecraft:fletching_table", "oldId": -201, "id": -201 }, - { "name": "minecraft:flint", "oldId": 356, "id": 356 }, - { "name": "minecraft:flint_and_steel", "oldId": 299, "id": 299 }, - { "name": "minecraft:flower_banner_pattern", "oldId": 581, "id": 581 }, - { "name": "minecraft:flower_pot", "oldId": 514, "id": 514 }, - { "name": "minecraft:flowering_azalea", "oldId": -338, "id": -338 }, - { "name": "minecraft:flowing_lava", "oldId": 10, "id": 10 }, - { "name": "minecraft:flowing_water", "oldId": 8, "id": 8 }, - { "name": "minecraft:fox_spawn_egg", "oldId": 490, "id": 490 }, - { "name": "minecraft:frame", "oldId": 513, "id": 513 }, - { "name": "minecraft:frosted_ice", "oldId": 207, "id": 207 }, - { "name": "minecraft:furnace", "oldId": 61, "id": 61 }, - { "name": "minecraft:ghast_spawn_egg", "oldId": 454, "id": 454 }, - { "name": "minecraft:ghast_tear", "oldId": 424, "id": 424 }, - { "name": "minecraft:gilded_blackstone", "oldId": -281, "id": -281 }, - { "name": "minecraft:glass", "oldId": 20, "id": 20 }, - { "name": "minecraft:glass_bottle", "oldId": 427, "id": 427 }, - { "name": "minecraft:glass_pane", "oldId": 102, "id": 102 }, - { "name": "minecraft:glistering_melon_slice", "oldId": 434, "id": 434 }, - { "name": "minecraft:glow_berries", "oldId": 630, "id": 630 }, - { "name": "minecraft:glow_frame", "oldId": 621, "id": 621 }, - { "name": "minecraft:glow_ink_sac", "oldId": 503, "id": 503 }, - { "name": "minecraft:glow_lichen", "oldId": -411, "id": -411 }, - { "name": "minecraft:glow_squid_spawn_egg", "oldId": 502, "id": 502 }, - { "name": "minecraft:glow_stick", "oldId": 166, "id": 166 }, - { "name": "minecraft:glowingobsidian", "oldId": 246, "id": 246 }, - { "name": "minecraft:glowstone", "oldId": 89, "id": 89 }, - { "name": "minecraft:glowstone_dust", "oldId": 394, "id": 394 }, - { "name": "minecraft:goat_horn", "oldId": 622, "id": 622 }, - { "name": "minecraft:goat_spawn_egg", "oldId": 501, "id": 501 }, - { "name": "minecraft:gold_block", "oldId": 41, "id": 41 }, - { "name": "minecraft:gold_ingot", "oldId": 306, "id": 306 }, - { "name": "minecraft:gold_nugget", "oldId": 425, "id": 425 }, - { "name": "minecraft:gold_ore", "oldId": 14, "id": 14 }, - { "name": "minecraft:golden_apple", "oldId": 258, "id": 258 }, - { "name": "minecraft:golden_axe", "oldId": 325, "id": 325 }, - { "name": "minecraft:golden_boots", "oldId": 354, "id": 354 }, - { "name": "minecraft:golden_carrot", "oldId": 283, "id": 283 }, - { "name": "minecraft:golden_chestplate", "oldId": 352, "id": 352 }, - { "name": "minecraft:golden_helmet", "oldId": 351, "id": 351 }, - { "name": "minecraft:golden_hoe", "oldId": 333, "id": 333 }, - { "name": "minecraft:golden_horse_armor", "oldId": 532, "id": 532 }, - { "name": "minecraft:golden_leggings", "oldId": 353, "id": 353 }, - { "name": "minecraft:golden_pickaxe", "oldId": 324, "id": 324 }, - { "name": "minecraft:golden_rail", "oldId": 27, "id": 27 }, - { "name": "minecraft:golden_shovel", "oldId": 323, "id": 323 }, - { "name": "minecraft:golden_sword", "oldId": 322, "id": 322 }, - { "name": "minecraft:granite_stairs", "oldId": -169, "id": -169 }, - { "name": "minecraft:grass", "oldId": 2, "id": 2 }, - { "name": "minecraft:grass_path", "oldId": 198, "id": 198 }, - { "name": "minecraft:gravel", "oldId": 13, "id": 13 }, - { "name": "minecraft:gray_candle", "oldId": -420, "id": -420 }, - { "name": "minecraft:gray_candle_cake", "oldId": -437, "id": -437 }, - { "name": "minecraft:gray_dye", "oldId": 403, "id": 403 }, - { "name": "minecraft:gray_glazed_terracotta", "oldId": 227, "id": 227 }, - { "name": "minecraft:green_candle", "oldId": -426, "id": -426 }, - { "name": "minecraft:green_candle_cake", "oldId": -443, "id": -443 }, - { "name": "minecraft:green_dye", "oldId": 397, "id": 397 }, - { "name": "minecraft:green_glazed_terracotta", "oldId": 233, "id": 233 }, - { "name": "minecraft:grindstone", "oldId": -195, "id": -195 }, - { "name": "minecraft:guardian_spawn_egg", "oldId": 461, "id": 461 }, - { "name": "minecraft:gunpowder", "oldId": 328, "id": 328 }, - { "name": "minecraft:hanging_roots", "oldId": -319, "id": -319 }, - { "name": "minecraft:hard_glass", "oldId": 253, "id": 253 }, - { "name": "minecraft:hard_glass_pane", "oldId": 190, "id": 190 }, - { "name": "minecraft:hard_stained_glass", "oldId": 254, "id": 254 }, - { "name": "minecraft:hard_stained_glass_pane", "oldId": 191, "id": 191 }, - { "name": "minecraft:hardened_clay", "oldId": 172, "id": 172 }, - { "name": "minecraft:hay_block", "oldId": 170, "id": 170 }, - { "name": "minecraft:heart_of_the_sea", "oldId": 571, "id": 571 }, + "name": "minecraft:chiseled_nether_bricks", + "id": -302, + "oldId": -302 + }, { - "name": "minecraft:heavy_weighted_pressure_plate", - "oldId": 148, - "id": 148 - }, - { "name": "minecraft:hoglin_spawn_egg", "oldId": 496, "id": 496 }, - { "name": "minecraft:honey_block", "oldId": -220, "id": -220 }, - { "name": "minecraft:honey_bottle", "oldId": 591, "id": 591 }, - { "name": "minecraft:honeycomb", "oldId": 590, "id": 590 }, - { "name": "minecraft:honeycomb_block", "oldId": -221, "id": -221 }, - { "name": "minecraft:hopper", "oldId": 527, "id": 527 }, - { "name": "minecraft:hopper_minecart", "oldId": 526, "id": 526 }, - { "name": "minecraft:horse_spawn_egg", "oldId": 458, "id": 458 }, - { "name": "minecraft:husk_spawn_egg", "oldId": 463, "id": 463 }, - { "name": "minecraft:ice", "oldId": 79, "id": 79 }, - { "name": "minecraft:ice_bomb", "oldId": 594, "id": 594 }, - { "name": "minecraft:infested_deepslate", "oldId": -454, "id": -454 }, - { "name": "minecraft:info_update", "oldId": 248, "id": 248 }, - { "name": "minecraft:info_update2", "oldId": 249, "id": 249 }, - { "name": "minecraft:ink_sac", "oldId": 413, "id": 413 }, - { "name": "minecraft:invisiblebedrock", "oldId": 95, "id": 95 }, - { "name": "minecraft:iron_axe", "oldId": 298, "id": 298 }, - { "name": "minecraft:iron_bars", "oldId": 101, "id": 101 }, - { "name": "minecraft:iron_block", "oldId": 42, "id": 42 }, - { "name": "minecraft:iron_boots", "oldId": 346, "id": 346 }, - { "name": "minecraft:iron_chestplate", "oldId": 344, "id": 344 }, - { "name": "minecraft:iron_door", "oldId": 372, "id": 372 }, - { "name": "minecraft:iron_helmet", "oldId": 343, "id": 343 }, - { "name": "minecraft:iron_hoe", "oldId": 331, "id": 331 }, - { "name": "minecraft:iron_horse_armor", "oldId": 531, "id": 531 }, - { "name": "minecraft:iron_ingot", "oldId": 305, "id": 305 }, - { "name": "minecraft:iron_leggings", "oldId": 345, "id": 345 }, - { "name": "minecraft:iron_nugget", "oldId": 569, "id": 569 }, - { "name": "minecraft:iron_ore", "oldId": 15, "id": 15 }, - { "name": "minecraft:iron_pickaxe", "oldId": 297, "id": 297 }, - { "name": "minecraft:iron_shovel", "oldId": 296, "id": 296 }, - { "name": "minecraft:iron_sword", "oldId": 307, "id": 307 }, - { "name": "minecraft:iron_trapdoor", "oldId": 167, "id": 167 }, - { "name": "minecraft:item.acacia_door", "oldId": 196, "id": 196 }, - { "name": "minecraft:item.bed", "oldId": 26, "id": 26 }, - { "name": "minecraft:item.beetroot", "oldId": 244, "id": 244 }, - { "name": "minecraft:item.birch_door", "oldId": 194, "id": 194 }, - { "name": "minecraft:item.cake", "oldId": 92, "id": 92 }, - { "name": "minecraft:item.camera", "oldId": 242, "id": 242 }, - { "name": "minecraft:item.campfire", "oldId": -209, "id": -209 }, - { "name": "minecraft:item.cauldron", "oldId": 118, "id": 118 }, - { "name": "minecraft:item.chain", "oldId": -286, "id": -286 }, - { "name": "minecraft:item.crimson_door", "oldId": -244, "id": -244 }, - { "name": "minecraft:item.dark_oak_door", "oldId": 197, "id": 197 }, - { "name": "minecraft:item.flower_pot", "oldId": 140, "id": 140 }, - { "name": "minecraft:item.frame", "oldId": 199, "id": 199 }, - { "name": "minecraft:item.glow_frame", "oldId": -339, "id": -339 }, - { "name": "minecraft:item.hopper", "oldId": 154, "id": 154 }, - { "name": "minecraft:item.iron_door", "oldId": 71, "id": 71 }, - { "name": "minecraft:item.jungle_door", "oldId": 195, "id": 195 }, - { "name": "minecraft:item.kelp", "oldId": -138, "id": -138 }, - { "name": "minecraft:item.nether_sprouts", "oldId": -238, "id": -238 }, - { "name": "minecraft:item.nether_wart", "oldId": 115, "id": 115 }, - { "name": "minecraft:item.reeds", "oldId": 83, "id": 83 }, - { "name": "minecraft:item.skull", "oldId": 144, "id": 144 }, - { "name": "minecraft:item.soul_campfire", "oldId": -290, "id": -290 }, - { "name": "minecraft:item.spruce_door", "oldId": 193, "id": 193 }, - { "name": "minecraft:item.warped_door", "oldId": -245, "id": -245 }, - { "name": "minecraft:item.wheat", "oldId": 59, "id": 59 }, - { "name": "minecraft:item.wooden_door", "oldId": 64, "id": 64 }, - { "name": "minecraft:jigsaw", "oldId": -211, "id": -211 }, - { "name": "minecraft:jukebox", "oldId": 84, "id": 84 }, - { "name": "minecraft:jungle_boat", "oldId": 377, "id": 377 }, - { "name": "minecraft:jungle_button", "oldId": -143, "id": -143 }, - { "name": "minecraft:jungle_door", "oldId": 555, "id": 555 }, - { "name": "minecraft:jungle_fence_gate", "oldId": 185, "id": 185 }, - { "name": "minecraft:jungle_pressure_plate", "oldId": -153, "id": -153 }, - { "name": "minecraft:jungle_sign", "oldId": 578, "id": 578 }, - { "name": "minecraft:jungle_stairs", "oldId": 136, "id": 136 }, - { "name": "minecraft:jungle_standing_sign", "oldId": -188, "id": -188 }, - { "name": "minecraft:jungle_trapdoor", "oldId": -148, "id": -148 }, - { "name": "minecraft:jungle_wall_sign", "oldId": -189, "id": -189 }, - { "name": "minecraft:kelp", "oldId": 382, "id": 382 }, - { "name": "minecraft:ladder", "oldId": 65, "id": 65 }, - { "name": "minecraft:lantern", "oldId": -208, "id": -208 }, - { "name": "minecraft:lapis_block", "oldId": 22, "id": 22 }, - { "name": "minecraft:lapis_lazuli", "oldId": 414, "id": 414 }, - { "name": "minecraft:lapis_ore", "oldId": 21, "id": 21 }, - { "name": "minecraft:large_amethyst_bud", "oldId": -330, "id": -330 }, - { "name": "minecraft:lava", "oldId": 11, "id": 11 }, - { "name": "minecraft:lava_bucket", "oldId": 363, "id": 363 }, - { "name": "minecraft:lava_cauldron", "oldId": -210, "id": -210 }, - { "name": "minecraft:lead", "oldId": 547, "id": 547 }, - { "name": "minecraft:leather", "oldId": 381, "id": 381 }, - { "name": "minecraft:leather_boots", "oldId": 338, "id": 338 }, - { "name": "minecraft:leather_chestplate", "oldId": 336, "id": 336 }, - { "name": "minecraft:leather_helmet", "oldId": 335, "id": 335 }, - { "name": "minecraft:leather_horse_armor", "oldId": 530, "id": 530 }, - { "name": "minecraft:leather_leggings", "oldId": 337, "id": 337 }, - { "name": "minecraft:leaves", "oldId": 18, "id": 18 }, - { "name": "minecraft:leaves2", "oldId": 161, "id": 161 }, - { "name": "minecraft:lectern", "oldId": -194, "id": -194 }, - { "name": "minecraft:lever", "oldId": 69, "id": 69 }, - { "name": "minecraft:light_block", "oldId": -215, "id": -215 }, - { "name": "minecraft:light_blue_candle", "oldId": -416, "id": -416 }, - { "name": "minecraft:light_blue_candle_cake", "oldId": -433, "id": -433 }, - { "name": "minecraft:light_blue_dye", "oldId": 407, "id": 407 }, + "name": "minecraft:stripped_warped_hyphae", + "id": -301, + "oldId": -301 + }, { - "name": "minecraft:light_blue_glazed_terracotta", - "oldId": 223, - "id": 223 + "name": "minecraft:stripped_crimson_hyphae", + "id": -300, + "oldId": -300 }, - { "name": "minecraft:light_gray_candle", "oldId": -421, "id": -421 }, - { "name": "minecraft:light_gray_candle_cake", "oldId": -438, "id": -438 }, - { "name": "minecraft:light_gray_dye", "oldId": 402, "id": 402 }, { - "name": "minecraft:light_weighted_pressure_plate", - "oldId": 147, - "id": 147 - }, - { "name": "minecraft:lightning_rod", "oldId": -312, "id": -312 }, - { "name": "minecraft:lime_candle", "oldId": -418, "id": -418 }, - { "name": "minecraft:lime_candle_cake", "oldId": -435, "id": -435 }, - { "name": "minecraft:lime_dye", "oldId": 405, "id": 405 }, - { "name": "minecraft:lime_glazed_terracotta", "oldId": 225, "id": 225 }, - { "name": "minecraft:lingering_potion", "oldId": 562, "id": 562 }, - { "name": "minecraft:lit_blast_furnace", "oldId": -214, "id": -214 }, - { - "name": "minecraft:lit_deepslate_redstone_ore", - "oldId": -404, - "id": -404 - }, - { "name": "minecraft:lit_furnace", "oldId": 62, "id": 62 }, - { "name": "minecraft:lit_pumpkin", "oldId": 91, "id": 91 }, - { "name": "minecraft:lit_redstone_lamp", "oldId": 124, "id": 124 }, - { "name": "minecraft:lit_redstone_ore", "oldId": 74, "id": 74 }, - { "name": "minecraft:lit_smoker", "oldId": -199, "id": -199 }, - { "name": "minecraft:llama_spawn_egg", "oldId": 473, "id": 473 }, - { "name": "minecraft:lodestone", "oldId": -222, "id": -222 }, - { "name": "minecraft:lodestone_compass", "oldId": 600, "id": 600 }, - { "name": "minecraft:log", "oldId": 17, "id": 17 }, - { "name": "minecraft:log2", "oldId": 162, "id": 162 }, - { "name": "minecraft:loom", "oldId": -204, "id": -204 }, - { "name": "minecraft:magenta_candle", "oldId": -415, "id": -415 }, - { "name": "minecraft:magenta_candle_cake", "oldId": -432, "id": -432 }, - { "name": "minecraft:magenta_dye", "oldId": 408, "id": 408 }, - { "name": "minecraft:magenta_glazed_terracotta", "oldId": 222, "id": 222 }, - { "name": "minecraft:magma", "oldId": 213, "id": 213 }, - { "name": "minecraft:magma_cream", "oldId": 430, "id": 430 }, - { "name": "minecraft:magma_cube_spawn_egg", "oldId": 455, "id": 455 }, - { "name": "minecraft:medicine", "oldId": 598, "id": 598 }, - { "name": "minecraft:medium_amethyst_bud", "oldId": -331, "id": -331 }, - { "name": "minecraft:melon_block", "oldId": 103, "id": 103 }, - { "name": "minecraft:melon_seeds", "oldId": 293, "id": 293 }, - { "name": "minecraft:melon_slice", "oldId": 272, "id": 272 }, - { "name": "minecraft:melon_stem", "oldId": 105, "id": 105 }, - { "name": "minecraft:milk_bucket", "oldId": 361, "id": 361 }, - { "name": "minecraft:minecart", "oldId": 370, "id": 370 }, - { "name": "minecraft:mob_spawner", "oldId": 52, "id": 52 }, - { "name": "minecraft:mojang_banner_pattern", "oldId": 584, "id": 584 }, - { "name": "minecraft:monster_egg", "oldId": 97, "id": 97 }, - { "name": "minecraft:mooshroom_spawn_egg", "oldId": 440, "id": 440 }, - { "name": "minecraft:moss_block", "oldId": -320, "id": -320 }, - { "name": "minecraft:moss_carpet", "oldId": -335, "id": -335 }, - { "name": "minecraft:mossy_cobblestone", "oldId": 48, "id": 48 }, - { "name": "minecraft:mossy_cobblestone_stairs", "oldId": -179, "id": -179 }, - { "name": "minecraft:mossy_stone_brick_stairs", "oldId": -175, "id": -175 }, - { "name": "minecraft:movingblock", "oldId": 250, "id": 250 }, - { "name": "minecraft:mule_spawn_egg", "oldId": 466, "id": 466 }, - { "name": "minecraft:mushroom_stew", "oldId": 260, "id": 260 }, - { "name": "minecraft:music_disc_11", "oldId": 544, "id": 544 }, - { "name": "minecraft:music_disc_13", "oldId": 534, "id": 534 }, - { "name": "minecraft:music_disc_blocks", "oldId": 536, "id": 536 }, - { "name": "minecraft:music_disc_cat", "oldId": 535, "id": 535 }, - { "name": "minecraft:music_disc_chirp", "oldId": 537, "id": 537 }, - { "name": "minecraft:music_disc_far", "oldId": 538, "id": 538 }, - { "name": "minecraft:music_disc_mall", "oldId": 539, "id": 539 }, - { "name": "minecraft:music_disc_mellohi", "oldId": 540, "id": 540 }, - { "name": "minecraft:music_disc_pigstep", "oldId": 618, "id": 618 }, - { "name": "minecraft:music_disc_stal", "oldId": 541, "id": 541 }, - { "name": "minecraft:music_disc_strad", "oldId": 542, "id": 542 }, - { "name": "minecraft:music_disc_wait", "oldId": 545, "id": 545 }, - { "name": "minecraft:music_disc_ward", "oldId": 543, "id": 543 }, - { "name": "minecraft:mutton", "oldId": 550, "id": 550 }, - { "name": "minecraft:mycelium", "oldId": 110, "id": 110 }, - { "name": "minecraft:mysterious_frame", "oldId": -466, "id": -466 }, - { "name": "minecraft:mysterious_frame_slot", "oldId": -467, "id": -467 }, - { "name": "minecraft:name_tag", "oldId": 548, "id": 548 }, - { "name": "minecraft:nautilus_shell", "oldId": 570, "id": 570 }, - { "name": "minecraft:nether_brick", "oldId": 112, "id": 112 }, - { "name": "minecraft:nether_brick_fence", "oldId": 113, "id": 113 }, - { "name": "minecraft:nether_brick_stairs", "oldId": 114, "id": 114 }, - { "name": "minecraft:nether_gold_ore", "oldId": -288, "id": -288 }, - { "name": "minecraft:nether_sprouts", "oldId": 619, "id": 619 }, - { "name": "minecraft:nether_star", "oldId": 518, "id": 518 }, - { "name": "minecraft:nether_wart", "oldId": 294, "id": 294 }, - { "name": "minecraft:nether_wart_block", "oldId": 214, "id": 214 }, - { "name": "minecraft:netherbrick", "oldId": 523, "id": 523 }, - { "name": "minecraft:netherite_axe", "oldId": 605, "id": 605 }, - { "name": "minecraft:netherite_block", "oldId": -270, "id": -270 }, - { "name": "minecraft:netherite_boots", "oldId": 610, "id": 610 }, - { "name": "minecraft:netherite_chestplate", "oldId": 608, "id": 608 }, - { "name": "minecraft:netherite_helmet", "oldId": 607, "id": 607 }, - { "name": "minecraft:netherite_hoe", "oldId": 606, "id": 606 }, - { "name": "minecraft:netherite_ingot", "oldId": 601, "id": 601 }, - { "name": "minecraft:netherite_leggings", "oldId": 609, "id": 609 }, - { "name": "minecraft:netherite_pickaxe", "oldId": 604, "id": 604 }, - { "name": "minecraft:netherite_scrap", "oldId": 611, "id": 611 }, - { "name": "minecraft:netherite_shovel", "oldId": 603, "id": 603 }, - { "name": "minecraft:netherite_sword", "oldId": 602, "id": 602 }, - { "name": "minecraft:netherrack", "oldId": 87, "id": 87 }, - { "name": "minecraft:netherreactor", "oldId": 247, "id": 247 }, - { "name": "minecraft:normal_stone_stairs", "oldId": -180, "id": -180 }, - { "name": "minecraft:noteblock", "oldId": 25, "id": 25 }, - { "name": "minecraft:npc_spawn_egg", "oldId": 470, "id": 470 }, - { "name": "minecraft:oak_boat", "oldId": 375, "id": 375 }, - { "name": "minecraft:oak_sign", "oldId": 358, "id": 358 }, - { "name": "minecraft:oak_stairs", "oldId": 53, "id": 53 }, - { "name": "minecraft:observer", "oldId": 251, "id": 251 }, - { "name": "minecraft:obsidian", "oldId": 49, "id": 49 }, - { "name": "minecraft:ocelot_spawn_egg", "oldId": 451, "id": 451 }, - { "name": "minecraft:orange_candle", "oldId": -414, "id": -414 }, - { "name": "minecraft:orange_candle_cake", "oldId": -431, "id": -431 }, - { "name": "minecraft:orange_dye", "oldId": 409, "id": 409 }, - { "name": "minecraft:orange_glazed_terracotta", "oldId": 221, "id": 221 }, - { "name": "minecraft:oxidized_copper", "oldId": -343, "id": -343 }, - { "name": "minecraft:oxidized_cut_copper", "oldId": -350, "id": -350 }, - { "name": "minecraft:oxidized_cut_copper_slab", "oldId": -364, "id": -364 }, - { - "name": "minecraft:oxidized_cut_copper_stairs", - "oldId": -357, - "id": -357 - }, - { - "name": "minecraft:oxidized_double_cut_copper_slab", - "oldId": -371, - "id": -371 - }, - { "name": "minecraft:packed_ice", "oldId": 174, "id": 174 }, - { "name": "minecraft:painting", "oldId": 357, "id": 357 }, - { "name": "minecraft:panda_spawn_egg", "oldId": 489, "id": 489 }, - { "name": "minecraft:paper", "oldId": 386, "id": 386 }, - { "name": "minecraft:parrot_spawn_egg", "oldId": 478, "id": 478 }, - { "name": "minecraft:phantom_membrane", "oldId": 574, "id": 574 }, - { "name": "minecraft:phantom_spawn_egg", "oldId": 486, "id": 486 }, - { "name": "minecraft:pig_spawn_egg", "oldId": 437, "id": 437 }, - { "name": "minecraft:piglin_banner_pattern", "oldId": 587, "id": 587 }, - { "name": "minecraft:piglin_brute_spawn_egg", "oldId": 499, "id": 499 }, - { "name": "minecraft:piglin_spawn_egg", "oldId": 497, "id": 497 }, - { "name": "minecraft:pillager_spawn_egg", "oldId": 491, "id": 491 }, - { "name": "minecraft:pink_candle", "oldId": -419, "id": -419 }, - { "name": "minecraft:pink_candle_cake", "oldId": -436, "id": -436 }, - { "name": "minecraft:pink_dye", "oldId": 404, "id": 404 }, - { "name": "minecraft:pink_glazed_terracotta", "oldId": 226, "id": 226 }, - { "name": "minecraft:piston", "oldId": 33, "id": 33 }, - { "name": "minecraft:pistonarmcollision", "oldId": 34, "id": 34 }, - { "name": "minecraft:planks", "oldId": 5, "id": 5 }, - { "name": "minecraft:podzol", "oldId": 243, "id": 243 }, - { "name": "minecraft:pointed_dripstone", "oldId": -308, "id": -308 }, - { "name": "minecraft:poisonous_potato", "oldId": 282, "id": 282 }, - { "name": "minecraft:polar_bear_spawn_egg", "oldId": 472, "id": 472 }, - { "name": "minecraft:polished_andesite_stairs", "oldId": -174, "id": -174 }, - { "name": "minecraft:polished_basalt", "oldId": -235, "id": -235 }, - { "name": "minecraft:polished_blackstone", "oldId": -291, "id": -291 }, + "name": "minecraft:crimson_hyphae", + "id": -299, + "oldId": -299 + }, + { + "name": "minecraft:warped_hyphae", + "id": -298, + "oldId": -298 + }, + { + "name": "minecraft:polished_blackstone_wall", + "id": -297, + "oldId": -297 + }, + { + "name": "minecraft:polished_blackstone_button", + "id": -296, + "oldId": -296 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "id": -295, + "oldId": -295 + }, + { + "name": "minecraft:polished_blackstone_double_slab", + "id": -294, + "oldId": -294 + }, + { + "name": "minecraft:polished_blackstone_slab", + "id": -293, + "oldId": -293 + }, + { + "name": "minecraft:polished_blackstone_stairs", + "id": -292, + "oldId": -292 + }, + { + "name": "minecraft:polished_blackstone", + "id": -291, + "oldId": -291 + }, + { + "name": "minecraft:item.soul_campfire", + "id": -290, + "oldId": -290 + }, + { + "name": "minecraft:crying_obsidian", + "id": -289, + "oldId": -289 + }, + { + "name": "minecraft:nether_gold_ore", + "id": -288, + "oldId": -288 + }, + { + "name": "minecraft:twisting_vines", + "id": -287, + "oldId": -287 + }, + { + "name": "minecraft:item.chain", + "id": -286, + "oldId": -286 + }, { "name": "minecraft:polished_blackstone_brick_double_slab", - "oldId": -285, - "id": -285 + "id": -285, + "oldId": -285 }, { "name": "minecraft:polished_blackstone_brick_slab", - "oldId": -284, - "id": -284 + "id": -284, + "oldId": -284 }, { - "name": "minecraft:polished_blackstone_brick_stairs", - "oldId": -275, - "id": -275 + "name": "minecraft:blackstone_double_slab", + "id": -283, + "oldId": -283 + }, + { + "name": "minecraft:blackstone_slab", + "id": -282, + "oldId": -282 + }, + { + "name": "minecraft:gilded_blackstone", + "id": -281, + "oldId": -281 + }, + { + "name": "minecraft:cracked_polished_blackstone_bricks", + "id": -280, + "oldId": -280 + }, + { + "name": "minecraft:chiseled_polished_blackstone", + "id": -279, + "oldId": -279 }, { "name": "minecraft:polished_blackstone_brick_wall", - "oldId": -278, - "id": -278 + "id": -278, + "oldId": -278 + }, + { + "name": "minecraft:blackstone_wall", + "id": -277, + "oldId": -277 + }, + { + "name": "minecraft:blackstone_stairs", + "id": -276, + "oldId": -276 + }, + { + "name": "minecraft:polished_blackstone_brick_stairs", + "id": -275, + "oldId": -275 }, { "name": "minecraft:polished_blackstone_bricks", - "oldId": -274, - "id": -274 + "id": -274, + "oldId": -274 }, { - "name": "minecraft:polished_blackstone_button", - "oldId": -296, - "id": -296 + "name": "minecraft:blackstone", + "id": -273, + "oldId": -273 }, { - "name": "minecraft:polished_blackstone_double_slab", - "oldId": -294, - "id": -294 + "name": "minecraft:respawn_anchor", + "id": -272, + "oldId": -272 }, { - "name": "minecraft:polished_blackstone_pressure_plate", - "oldId": -295, - "id": -295 + "name": "minecraft:ancient_debris", + "id": -271, + "oldId": -271 }, - { "name": "minecraft:polished_blackstone_slab", "oldId": -293, "id": -293 }, { - "name": "minecraft:polished_blackstone_stairs", - "oldId": -292, - "id": -292 - }, - { "name": "minecraft:polished_blackstone_wall", "oldId": -297, "id": -297 }, - { "name": "minecraft:polished_deepslate", "oldId": -383, "id": -383 }, - { - "name": "minecraft:polished_deepslate_double_slab", - "oldId": -397, - "id": -397 - }, - { "name": "minecraft:polished_deepslate_slab", "oldId": -384, "id": -384 }, - { - "name": "minecraft:polished_deepslate_stairs", - "oldId": -385, - "id": -385 - }, - { "name": "minecraft:polished_deepslate_wall", "oldId": -386, "id": -386 }, - { "name": "minecraft:polished_diorite_stairs", "oldId": -173, "id": -173 }, - { "name": "minecraft:polished_granite_stairs", "oldId": -172, "id": -172 }, - { "name": "minecraft:popped_chorus_fruit", "oldId": 559, "id": 559 }, - { "name": "minecraft:porkchop", "oldId": 262, "id": 262 }, - { "name": "minecraft:portal", "oldId": 90, "id": 90 }, - { "name": "minecraft:potato", "oldId": 280, "id": 280 }, - { "name": "minecraft:potatoes", "oldId": 142, "id": 142 }, - { "name": "minecraft:potion", "oldId": 426, "id": 426 }, - { "name": "minecraft:powder_snow", "oldId": -306, "id": -306 }, - { "name": "minecraft:powder_snow_bucket", "oldId": 368, "id": 368 }, - { "name": "minecraft:powered_comparator", "oldId": 150, "id": 150 }, - { "name": "minecraft:powered_repeater", "oldId": 94, "id": 94 }, - { "name": "minecraft:prismarine", "oldId": 168, "id": 168 }, - { "name": "minecraft:prismarine_bricks_stairs", "oldId": -4, "id": -4 }, - { "name": "minecraft:prismarine_crystals", "oldId": 549, "id": 549 }, - { "name": "minecraft:prismarine_shard", "oldId": 565, "id": 565 }, - { "name": "minecraft:prismarine_stairs", "oldId": -2, "id": -2 }, - { "name": "minecraft:pufferfish", "oldId": 267, "id": 267 }, - { "name": "minecraft:pufferfish_bucket", "oldId": 367, "id": 367 }, - { "name": "minecraft:pufferfish_spawn_egg", "oldId": 481, "id": 481 }, - { "name": "minecraft:pumpkin", "oldId": 86, "id": 86 }, - { "name": "minecraft:pumpkin_pie", "oldId": 284, "id": 284 }, - { "name": "minecraft:pumpkin_seeds", "oldId": 292, "id": 292 }, - { "name": "minecraft:pumpkin_stem", "oldId": 104, "id": 104 }, - { "name": "minecraft:purple_candle", "oldId": -423, "id": -423 }, - { "name": "minecraft:purple_candle_cake", "oldId": -440, "id": -440 }, - { "name": "minecraft:purple_dye", "oldId": 400, "id": 400 }, - { "name": "minecraft:purple_glazed_terracotta", "oldId": 219, "id": 219 }, - { "name": "minecraft:purpur_block", "oldId": 201, "id": 201 }, - { "name": "minecraft:purpur_stairs", "oldId": 203, "id": 203 }, - { "name": "minecraft:quartz", "oldId": 524, "id": 524 }, - { "name": "minecraft:quartz_block", "oldId": 155, "id": 155 }, - { "name": "minecraft:quartz_bricks", "oldId": -304, "id": -304 }, - { "name": "minecraft:quartz_ore", "oldId": 153, "id": 153 }, - { "name": "minecraft:quartz_stairs", "oldId": 156, "id": 156 }, - { "name": "minecraft:rabbit", "oldId": 288, "id": 288 }, - { "name": "minecraft:rabbit_foot", "oldId": 528, "id": 528 }, - { "name": "minecraft:rabbit_hide", "oldId": 529, "id": 529 }, - { "name": "minecraft:rabbit_spawn_egg", "oldId": 459, "id": 459 }, - { "name": "minecraft:rabbit_stew", "oldId": 290, "id": 290 }, - { "name": "minecraft:rail", "oldId": 66, "id": 66 }, - { "name": "minecraft:rapid_fertilizer", "oldId": 596, "id": 596 }, - { "name": "minecraft:ravager_spawn_egg", "oldId": 493, "id": 493 }, - { "name": "minecraft:raw_copper", "oldId": 507, "id": 507 }, - { "name": "minecraft:raw_copper_block", "oldId": -452, "id": -452 }, - { "name": "minecraft:raw_gold", "oldId": 506, "id": 506 }, - { "name": "minecraft:raw_gold_block", "oldId": -453, "id": -453 }, - { "name": "minecraft:raw_iron", "oldId": 505, "id": 505 }, - { "name": "minecraft:raw_iron_block", "oldId": -451, "id": -451 }, - { "name": "minecraft:real_double_stone_slab", "oldId": 43, "id": 43 }, - { "name": "minecraft:real_double_stone_slab2", "oldId": 181, "id": 181 }, - { "name": "minecraft:real_double_stone_slab3", "oldId": -167, "id": -167 }, - { "name": "minecraft:real_double_stone_slab4", "oldId": -168, "id": -168 }, - { "name": "minecraft:red_candle", "oldId": -427, "id": -427 }, - { "name": "minecraft:red_candle_cake", "oldId": -444, "id": -444 }, - { "name": "minecraft:red_dye", "oldId": 396, "id": 396 }, - { "name": "minecraft:red_flower", "oldId": 38, "id": 38 }, - { "name": "minecraft:red_glazed_terracotta", "oldId": 234, "id": 234 }, - { "name": "minecraft:red_mushroom", "oldId": 40, "id": 40 }, - { "name": "minecraft:red_mushroom_block", "oldId": 100, "id": 100 }, - { "name": "minecraft:red_nether_brick", "oldId": 215, "id": 215 }, - { "name": "minecraft:red_nether_brick_stairs", "oldId": -184, "id": -184 }, - { "name": "minecraft:red_sandstone", "oldId": 179, "id": 179 }, - { "name": "minecraft:red_sandstone_stairs", "oldId": 180, "id": 180 }, - { "name": "minecraft:redstone", "oldId": 373, "id": 373 }, - { "name": "minecraft:redstone_block", "oldId": 152, "id": 152 }, - { "name": "minecraft:redstone_lamp", "oldId": 123, "id": 123 }, - { "name": "minecraft:redstone_ore", "oldId": 73, "id": 73 }, - { "name": "minecraft:redstone_torch", "oldId": 76, "id": 76 }, - { "name": "minecraft:redstone_wire", "oldId": 55, "id": 55 }, - { "name": "minecraft:repeater", "oldId": 419, "id": 419 }, - { "name": "minecraft:repeating_command_block", "oldId": 188, "id": 188 }, - { "name": "minecraft:reserved6", "oldId": 255, "id": 255 }, - { "name": "minecraft:respawn_anchor", "oldId": -272, "id": -272 }, - { "name": "minecraft:rotten_flesh", "oldId": 277, "id": 277 }, - { "name": "minecraft:saddle", "oldId": 371, "id": 371 }, - { "name": "minecraft:salmon", "oldId": 265, "id": 265 }, - { "name": "minecraft:salmon_bucket", "oldId": 365, "id": 365 }, - { "name": "minecraft:salmon_spawn_egg", "oldId": 482, "id": 482 }, - { "name": "minecraft:sand", "oldId": 12, "id": 12 }, - { "name": "minecraft:sandstone", "oldId": 24, "id": 24 }, - { "name": "minecraft:sandstone_stairs", "oldId": 128, "id": 128 }, - { "name": "minecraft:sapling", "oldId": 6, "id": 6 }, - { "name": "minecraft:scaffolding", "oldId": -165, "id": -165 }, - { "name": "minecraft:sculk", "oldId": -458, "id": -458 }, - { "name": "minecraft:sculk_catalyst", "oldId": -460, "id": -460 }, - { "name": "minecraft:sculk_sensor", "oldId": -307, "id": -307 }, - { "name": "minecraft:sculk_shrieker", "oldId": -461, "id": -461 }, - { "name": "minecraft:sculk_vein", "oldId": -459, "id": -459 }, - { "name": "minecraft:scute", "oldId": 572, "id": 572 }, - { "name": "minecraft:sea_pickle", "oldId": -156, "id": -156 }, - { "name": "minecraft:seagrass", "oldId": -130, "id": -130 }, - { "name": "minecraft:sealantern", "oldId": 169, "id": 169 }, - { "name": "minecraft:shears", "oldId": 421, "id": 421 }, - { "name": "minecraft:sheep_spawn_egg", "oldId": 438, "id": 438 }, - { "name": "minecraft:shield", "oldId": 355, "id": 355 }, - { "name": "minecraft:shroomlight", "oldId": -230, "id": -230 }, - { "name": "minecraft:shulker_box", "oldId": 218, "id": 218 }, - { "name": "minecraft:shulker_shell", "oldId": 566, "id": 566 }, - { "name": "minecraft:shulker_spawn_egg", "oldId": 469, "id": 469 }, - { "name": "minecraft:silver_glazed_terracotta", "oldId": 228, "id": 228 }, - { "name": "minecraft:silverfish_spawn_egg", "oldId": 443, "id": 443 }, - { "name": "minecraft:skeleton_horse_spawn_egg", "oldId": 467, "id": 467 }, - { "name": "minecraft:skeleton_spawn_egg", "oldId": 444, "id": 444 }, - { "name": "minecraft:skull", "oldId": 516, "id": 516 }, - { "name": "minecraft:skull_banner_pattern", "oldId": 583, "id": 583 }, - { "name": "minecraft:slime", "oldId": 165, "id": 165 }, - { "name": "minecraft:slime_ball", "oldId": 388, "id": 388 }, - { "name": "minecraft:slime_spawn_egg", "oldId": 445, "id": 445 }, - { "name": "minecraft:small_amethyst_bud", "oldId": -332, "id": -332 }, - { "name": "minecraft:small_dripleaf_block", "oldId": -336, "id": -336 }, - { "name": "minecraft:smithing_table", "oldId": -202, "id": -202 }, - { "name": "minecraft:smoker", "oldId": -198, "id": -198 }, - { "name": "minecraft:smooth_basalt", "oldId": -377, "id": -377 }, - { "name": "minecraft:smooth_quartz_stairs", "oldId": -185, "id": -185 }, + "name": "minecraft:netherite_block", + "id": -270, + "oldId": -270 + }, + { + "name": "minecraft:soul_lantern", + "id": -269, + "oldId": -269 + }, + { + "name": "minecraft:soul_torch", + "id": -268, + "oldId": -268 + }, + { + "name": "minecraft:warped_double_slab", + "id": -267, + "oldId": -267 + }, + { + "name": "minecraft:crimson_double_slab", + "id": -266, + "oldId": -266 + }, + { + "name": "minecraft:warped_slab", + "id": -265, + "oldId": -265 + }, + { + "name": "minecraft:crimson_slab", + "id": -264, + "oldId": -264 + }, + { + "name": "minecraft:warped_pressure_plate", + "id": -263, + "oldId": -263 + }, + { + "name": "minecraft:crimson_pressure_plate", + "id": -262, + "oldId": -262 + }, + { + "name": "minecraft:warped_button", + "id": -261, + "oldId": -261 + }, + { + "name": "minecraft:crimson_button", + "id": -260, + "oldId": -260 + }, + { + "name": "minecraft:warped_fence_gate", + "id": -259, + "oldId": -259 + }, + { + "name": "minecraft:crimson_fence_gate", + "id": -258, + "oldId": -258 + }, + { + "name": "minecraft:warped_fence", + "id": -257, + "oldId": -257 + }, + { + "name": "minecraft:crimson_fence", + "id": -256, + "oldId": -256 + }, + { + "name": "minecraft:warped_stairs", + "id": -255, + "oldId": -255 + }, + { + "name": "minecraft:crimson_stairs", + "id": -254, + "oldId": -254 + }, + { + "name": "minecraft:warped_wall_sign", + "id": -253, + "oldId": -253 + }, + { + "name": "minecraft:crimson_wall_sign", + "id": -252, + "oldId": -252 + }, + { + "name": "minecraft:warped_standing_sign", + "id": -251, + "oldId": -251 + }, + { + "name": "minecraft:crimson_standing_sign", + "id": -250, + "oldId": -250 + }, + { + "name": "minecraft:warped_trapdoor", + "id": -247, + "oldId": -247 + }, + { + "name": "minecraft:crimson_trapdoor", + "id": -246, + "oldId": -246 + }, + { + "name": "minecraft:item.warped_door", + "id": -245, + "oldId": -245 + }, + { + "name": "minecraft:item.crimson_door", + "id": -244, + "oldId": -244 + }, + { + "name": "minecraft:warped_planks", + "id": -243, + "oldId": -243 + }, + { + "name": "minecraft:crimson_planks", + "id": -242, + "oldId": -242 + }, + { + "name": "minecraft:stripped_warped_stem", + "id": -241, + "oldId": -241 + }, + { + "name": "minecraft:stripped_crimson_stem", + "id": -240, + "oldId": -240 + }, + { + "name": "minecraft:target", + "id": -239, + "oldId": -239 + }, + { + "name": "minecraft:item.nether_sprouts", + "id": -238, + "oldId": -238 + }, + { + "name": "minecraft:soul_fire", + "id": -237, + "oldId": -237 + }, + { + "name": "minecraft:soul_soil", + "id": -236, + "oldId": -236 + }, + { + "name": "minecraft:polished_basalt", + "id": -235, + "oldId": -235 + }, + { + "name": "minecraft:basalt", + "id": -234, + "oldId": -234 + }, + { + "name": "minecraft:warped_nylium", + "id": -233, + "oldId": -233 + }, + { + "name": "minecraft:crimson_nylium", + "id": -232, + "oldId": -232 + }, + { + "name": "minecraft:weeping_vines", + "id": -231, + "oldId": -231 + }, + { + "name": "minecraft:shroomlight", + "id": -230, + "oldId": -230 + }, + { + "name": "minecraft:warped_fungus", + "id": -229, + "oldId": -229 + }, + { + "name": "minecraft:crimson_fungus", + "id": -228, + "oldId": -228 + }, + { + "name": "minecraft:warped_wart_block", + "id": -227, + "oldId": -227 + }, + { + "name": "minecraft:warped_stem", + "id": -226, + "oldId": -226 + }, + { + "name": "minecraft:crimson_stem", + "id": -225, + "oldId": -225 + }, + { + "name": "minecraft:warped_roots", + "id": -224, + "oldId": -224 + }, + { + "name": "minecraft:crimson_roots", + "id": -223, + "oldId": -223 + }, + { + "name": "minecraft:lodestone", + "id": -222, + "oldId": -222 + }, + { + "name": "minecraft:honeycomb_block", + "id": -221, + "oldId": -221 + }, + { + "name": "minecraft:honey_block", + "id": -220, + "oldId": -220 + }, + { + "name": "minecraft:beehive", + "id": -219, + "oldId": -219 + }, + { + "name": "minecraft:bee_nest", + "id": -218, + "oldId": -218 + }, + { + "name": "minecraft:stickypistonarmcollision", + "id": -217, + "oldId": -217 + }, + { + "name": "minecraft:wither_rose", + "id": -216, + "oldId": -216 + }, + { + "name": "minecraft:light_block", + "id": -215, + "oldId": -215 + }, + { + "name": "minecraft:lit_blast_furnace", + "id": -214, + "oldId": -214 + }, + { + "name": "minecraft:composter", + "id": -213, + "oldId": -213 + }, + { + "name": "minecraft:wood", + "id": -212, + "oldId": -212 + }, + { + "name": "minecraft:jigsaw", + "id": -211, + "oldId": -211 + }, + { + "name": "minecraft:lava_cauldron", + "id": -210, + "oldId": -210 + }, + { + "name": "minecraft:item.campfire", + "id": -209, + "oldId": -209 + }, + { + "name": "minecraft:lantern", + "id": -208, + "oldId": -208 + }, + { + "name": "minecraft:sweet_berry_bush", + "id": -207, + "oldId": -207 + }, + { + "name": "minecraft:bell", + "id": -206, + "oldId": -206 + }, + { + "name": "minecraft:loom", + "id": -204, + "oldId": -204 + }, + { + "name": "minecraft:barrel", + "id": -203, + "oldId": -203 + }, + { + "name": "minecraft:smithing_table", + "id": -202, + "oldId": -202 + }, + { + "name": "minecraft:fletching_table", + "id": -201, + "oldId": -201 + }, + { + "name": "minecraft:cartography_table", + "id": -200, + "oldId": -200 + }, + { + "name": "minecraft:lit_smoker", + "id": -199, + "oldId": -199 + }, + { + "name": "minecraft:smoker", + "id": -198, + "oldId": -198 + }, + { + "name": "minecraft:stonecutter_block", + "id": -197, + "oldId": -197 + }, + { + "name": "minecraft:blast_furnace", + "id": -196, + "oldId": -196 + }, + { + "name": "minecraft:grindstone", + "id": -195, + "oldId": -195 + }, + { + "name": "minecraft:lectern", + "id": -194, + "oldId": -194 + }, + { + "name": "minecraft:darkoak_wall_sign", + "id": -193, + "oldId": -193 + }, + { + "name": "minecraft:darkoak_standing_sign", + "id": -192, + "oldId": -192 + }, + { + "name": "minecraft:acacia_wall_sign", + "id": -191, + "oldId": -191 + }, + { + "name": "minecraft:acacia_standing_sign", + "id": -190, + "oldId": -190 + }, + { + "name": "minecraft:jungle_wall_sign", + "id": -189, + "oldId": -189 + }, + { + "name": "minecraft:jungle_standing_sign", + "id": -188, + "oldId": -188 + }, + { + "name": "minecraft:birch_wall_sign", + "id": -187, + "oldId": -187 + }, + { + "name": "minecraft:birch_standing_sign", + "id": -186, + "oldId": -186 + }, + { + "name": "minecraft:smooth_quartz_stairs", + "id": -185, + "oldId": -185 + }, + { + "name": "minecraft:red_nether_brick_stairs", + "id": -184, + "oldId": -184 + }, + { + "name": "minecraft:smooth_stone", + "id": -183, + "oldId": -183 + }, + { + "name": "minecraft:spruce_wall_sign", + "id": -182, + "oldId": -182 + }, + { + "name": "minecraft:spruce_standing_sign", + "id": -181, + "oldId": -181 + }, + { + "name": "minecraft:normal_stone_stairs", + "id": -180, + "oldId": -180 + }, + { + "name": "minecraft:mossy_cobblestone_stairs", + "id": -179, + "oldId": -179 + }, + { + "name": "minecraft:end_brick_stairs", + "id": -178, + "oldId": -178 + }, + { + "name": "minecraft:smooth_sandstone_stairs", + "id": -177, + "oldId": -177 + }, { "name": "minecraft:smooth_red_sandstone_stairs", - "oldId": -176, - "id": -176 - }, - { "name": "minecraft:smooth_sandstone_stairs", "oldId": -177, "id": -177 }, - { "name": "minecraft:smooth_stone", "oldId": -183, "id": -183 }, - { "name": "minecraft:snow", "oldId": 80, "id": 80 }, - { "name": "minecraft:snow_layer", "oldId": 78, "id": 78 }, - { "name": "minecraft:snowball", "oldId": 374, "id": 374 }, - { "name": "minecraft:soul_campfire", "oldId": 620, "id": 620 }, - { "name": "minecraft:soul_fire", "oldId": -237, "id": -237 }, - { "name": "minecraft:soul_lantern", "oldId": -269, "id": -269 }, - { "name": "minecraft:soul_sand", "oldId": 88, "id": 88 }, - { "name": "minecraft:soul_soil", "oldId": -236, "id": -236 }, - { "name": "minecraft:soul_torch", "oldId": -268, "id": -268 }, - { "name": "minecraft:sparkler", "oldId": 599, "id": 599 }, - { "name": "minecraft:spawn_egg", "oldId": 628, "id": 628 }, - { "name": "minecraft:spider_eye", "oldId": 278, "id": 278 }, - { "name": "minecraft:spider_spawn_egg", "oldId": 446, "id": 446 }, - { "name": "minecraft:splash_potion", "oldId": 561, "id": 561 }, - { "name": "minecraft:sponge", "oldId": 19, "id": 19 }, - { "name": "minecraft:spore_blossom", "oldId": -321, "id": -321 }, - { "name": "minecraft:spruce_boat", "oldId": 378, "id": 378 }, - { "name": "minecraft:spruce_button", "oldId": -144, "id": -144 }, - { "name": "minecraft:spruce_door", "oldId": 553, "id": 553 }, - { "name": "minecraft:spruce_fence_gate", "oldId": 183, "id": 183 }, - { "name": "minecraft:spruce_pressure_plate", "oldId": -154, "id": -154 }, - { "name": "minecraft:spruce_sign", "oldId": 576, "id": 576 }, - { "name": "minecraft:spruce_stairs", "oldId": 134, "id": 134 }, - { "name": "minecraft:spruce_standing_sign", "oldId": -181, "id": -181 }, - { "name": "minecraft:spruce_trapdoor", "oldId": -149, "id": -149 }, - { "name": "minecraft:spruce_wall_sign", "oldId": -182, "id": -182 }, - { "name": "minecraft:spyglass", "oldId": 624, "id": 624 }, - { "name": "minecraft:squid_spawn_egg", "oldId": 450, "id": 450 }, - { "name": "minecraft:stained_glass", "oldId": 241, "id": 241 }, - { "name": "minecraft:stained_glass_pane", "oldId": 160, "id": 160 }, - { "name": "minecraft:stained_hardened_clay", "oldId": 159, "id": 159 }, - { "name": "minecraft:standing_banner", "oldId": 176, "id": 176 }, - { "name": "minecraft:standing_sign", "oldId": 63, "id": 63 }, - { "name": "minecraft:stick", "oldId": 320, "id": 320 }, - { "name": "minecraft:sticky_piston", "oldId": 29, "id": 29 }, - { "name": "minecraft:stickypistonarmcollision", "oldId": -217, "id": -217 }, - { "name": "minecraft:stone", "oldId": 1, "id": 1 }, - { "name": "minecraft:stone_axe", "oldId": 315, "id": 315 }, - { "name": "minecraft:stone_brick_stairs", "oldId": 109, "id": 109 }, - { "name": "minecraft:stone_button", "oldId": 77, "id": 77 }, - { "name": "minecraft:stone_hoe", "oldId": 330, "id": 330 }, - { "name": "minecraft:stone_pickaxe", "oldId": 314, "id": 314 }, - { "name": "minecraft:stone_pressure_plate", "oldId": 70, "id": 70 }, - { "name": "minecraft:stone_shovel", "oldId": 313, "id": 313 }, - { "name": "minecraft:stone_stairs", "oldId": 67, "id": 67 }, - { "name": "minecraft:stone_sword", "oldId": 312, "id": 312 }, - { "name": "minecraft:stonebrick", "oldId": 98, "id": 98 }, - { "name": "minecraft:stonecutter", "oldId": 245, "id": 245 }, - { "name": "minecraft:stonecutter_block", "oldId": -197, "id": -197 }, - { "name": "minecraft:stray_spawn_egg", "oldId": 462, "id": 462 }, - { "name": "minecraft:strider_spawn_egg", "oldId": 495, "id": 495 }, - { "name": "minecraft:string", "oldId": 326, "id": 326 }, - { "name": "minecraft:stripped_acacia_log", "oldId": -8, "id": -8 }, - { "name": "minecraft:stripped_birch_log", "oldId": -6, "id": -6 }, - { "name": "minecraft:stripped_crimson_hyphae", "oldId": -300, "id": -300 }, - { "name": "minecraft:stripped_crimson_stem", "oldId": -240, "id": -240 }, - { "name": "minecraft:stripped_dark_oak_log", "oldId": -9, "id": -9 }, - { "name": "minecraft:stripped_jungle_log", "oldId": -7, "id": -7 }, - { "name": "minecraft:stripped_oak_log", "oldId": -10, "id": -10 }, - { "name": "minecraft:stripped_spruce_log", "oldId": -5, "id": -5 }, - { "name": "minecraft:stripped_warped_hyphae", "oldId": -301, "id": -301 }, - { "name": "minecraft:stripped_warped_stem", "oldId": -241, "id": -241 }, - { "name": "minecraft:structure_block", "oldId": 252, "id": 252 }, - { "name": "minecraft:structure_void", "oldId": 217, "id": 217 }, - { "name": "minecraft:sugar", "oldId": 416, "id": 416 }, - { "name": "minecraft:sugar_cane", "oldId": 385, "id": 385 }, - { "name": "minecraft:suspicious_stew", "oldId": 589, "id": 589 }, - { "name": "minecraft:sweet_berries", "oldId": 287, "id": 287 }, - { "name": "minecraft:sweet_berry_bush", "oldId": -207, "id": -207 }, - { "name": "minecraft:tallgrass", "oldId": 31, "id": 31 }, - { "name": "minecraft:target", "oldId": -239, "id": -239 }, - { "name": "minecraft:tinted_glass", "oldId": -334, "id": -334 }, - { "name": "minecraft:tnt", "oldId": 46, "id": 46 }, - { "name": "minecraft:tnt_minecart", "oldId": 525, "id": 525 }, - { "name": "minecraft:torch", "oldId": 50, "id": 50 }, - { "name": "minecraft:totem_of_undying", "oldId": 568, "id": 568 }, - { "name": "minecraft:trapdoor", "oldId": 96, "id": 96 }, - { "name": "minecraft:trapped_chest", "oldId": 146, "id": 146 }, - { "name": "minecraft:trident", "oldId": 546, "id": 546 }, - { "name": "minecraft:tripwire", "oldId": 132, "id": 132 }, - { "name": "minecraft:tripwire_hook", "oldId": 131, "id": 131 }, - { "name": "minecraft:tropical_fish", "oldId": 266, "id": 266 }, - { "name": "minecraft:tropical_fish_bucket", "oldId": 366, "id": 366 }, - { "name": "minecraft:tropical_fish_spawn_egg", "oldId": 479, "id": 479 }, - { "name": "minecraft:tuff", "oldId": -333, "id": -333 }, - { "name": "minecraft:turtle_egg", "oldId": -159, "id": -159 }, - { "name": "minecraft:turtle_helmet", "oldId": 573, "id": 573 }, - { "name": "minecraft:turtle_spawn_egg", "oldId": 485, "id": 485 }, - { "name": "minecraft:twisting_vines", "oldId": -287, "id": -287 }, - { "name": "minecraft:underwater_torch", "oldId": 239, "id": 239 }, - { "name": "minecraft:undyed_shulker_box", "oldId": 205, "id": 205 }, - { "name": "minecraft:unknown", "oldId": -305, "id": -305 }, - { "name": "minecraft:unlit_redstone_torch", "oldId": 75, "id": 75 }, - { "name": "minecraft:unpowered_comparator", "oldId": 149, "id": 149 }, - { "name": "minecraft:unpowered_repeater", "oldId": 93, "id": 93 }, - { "name": "minecraft:vex_spawn_egg", "oldId": 476, "id": 476 }, - { "name": "minecraft:villager_spawn_egg", "oldId": 449, "id": 449 }, - { "name": "minecraft:vindicator_spawn_egg", "oldId": 474, "id": 474 }, - { "name": "minecraft:vine", "oldId": 106, "id": 106 }, - { "name": "minecraft:wall_banner", "oldId": 177, "id": 177 }, - { "name": "minecraft:wall_sign", "oldId": 68, "id": 68 }, - { "name": "minecraft:wandering_trader_spawn_egg", "oldId": 492, "id": 492 }, - { "name": "minecraft:warped_button", "oldId": -261, "id": -261 }, - { "name": "minecraft:warped_door", "oldId": 615, "id": 615 }, - { "name": "minecraft:warped_double_slab", "oldId": -267, "id": -267 }, - { "name": "minecraft:warped_fence", "oldId": -257, "id": -257 }, - { "name": "minecraft:warped_fence_gate", "oldId": -259, "id": -259 }, - { "name": "minecraft:warped_fungus", "oldId": -229, "id": -229 }, - { "name": "minecraft:warped_fungus_on_a_stick", "oldId": 616, "id": 616 }, - { "name": "minecraft:warped_hyphae", "oldId": -298, "id": -298 }, - { "name": "minecraft:warped_nylium", "oldId": -233, "id": -233 }, - { "name": "minecraft:warped_planks", "oldId": -243, "id": -243 }, - { "name": "minecraft:warped_pressure_plate", "oldId": -263, "id": -263 }, - { "name": "minecraft:warped_roots", "oldId": -224, "id": -224 }, - { "name": "minecraft:warped_sign", "oldId": 613, "id": 613 }, - { "name": "minecraft:warped_slab", "oldId": -265, "id": -265 }, - { "name": "minecraft:warped_stairs", "oldId": -255, "id": -255 }, - { "name": "minecraft:warped_standing_sign", "oldId": -251, "id": -251 }, - { "name": "minecraft:warped_stem", "oldId": -226, "id": -226 }, - { "name": "minecraft:warped_trapdoor", "oldId": -247, "id": -247 }, - { "name": "minecraft:warped_wall_sign", "oldId": -253, "id": -253 }, - { "name": "minecraft:warped_wart_block", "oldId": -227, "id": -227 }, - { "name": "minecraft:water", "oldId": 9, "id": 9 }, - { "name": "minecraft:water_bucket", "oldId": 362, "id": 362 }, - { "name": "minecraft:waterlily", "oldId": 111, "id": 111 }, - { "name": "minecraft:waxed_copper", "oldId": -344, "id": -344 }, - { "name": "minecraft:waxed_cut_copper", "oldId": -351, "id": -351 }, - { "name": "minecraft:waxed_cut_copper_slab", "oldId": -365, "id": -365 }, - { "name": "minecraft:waxed_cut_copper_stairs", "oldId": -358, "id": -358 }, - { - "name": "minecraft:waxed_double_cut_copper_slab", - "oldId": -372, - "id": -372 - }, - { "name": "minecraft:waxed_exposed_copper", "oldId": -345, "id": -345 }, - { "name": "minecraft:waxed_exposed_cut_copper", "oldId": -352, "id": -352 }, - { - "name": "minecraft:waxed_exposed_cut_copper_slab", - "oldId": -366, - "id": -366 - }, - { - "name": "minecraft:waxed_exposed_cut_copper_stairs", - "oldId": -359, - "id": -359 - }, - { - "name": "minecraft:waxed_exposed_double_cut_copper_slab", - "oldId": -373, - "id": -373 - }, - { "name": "minecraft:waxed_oxidized_copper", "oldId": -446, "id": -446 }, - { - "name": "minecraft:waxed_oxidized_cut_copper", - "oldId": -447, - "id": -447 - }, - { - "name": "minecraft:waxed_oxidized_cut_copper_slab", - "oldId": -449, - "id": -449 - }, - { - "name": "minecraft:waxed_oxidized_cut_copper_stairs", - "oldId": -448, - "id": -448 - }, - { - "name": "minecraft:waxed_oxidized_double_cut_copper_slab", - "oldId": -450, - "id": -450 - }, - { "name": "minecraft:waxed_weathered_copper", "oldId": -346, "id": -346 }, - { - "name": "minecraft:waxed_weathered_cut_copper", - "oldId": -353, - "id": -353 - }, - { - "name": "minecraft:waxed_weathered_cut_copper_slab", - "oldId": -367, - "id": -367 - }, - { - "name": "minecraft:waxed_weathered_cut_copper_stairs", - "oldId": -360, - "id": -360 - }, - { - "name": "minecraft:waxed_weathered_double_cut_copper_slab", - "oldId": -374, - "id": -374 - }, - { "name": "minecraft:weathered_copper", "oldId": -342, "id": -342 }, - { "name": "minecraft:weathered_cut_copper", "oldId": -349, "id": -349 }, - { - "name": "minecraft:weathered_cut_copper_slab", - "oldId": -363, - "id": -363 - }, - { - "name": "minecraft:weathered_cut_copper_stairs", - "oldId": -356, - "id": -356 - }, - { - "name": "minecraft:weathered_double_cut_copper_slab", - "oldId": -370, - "id": -370 - }, - { "name": "minecraft:web", "oldId": 30, "id": 30 }, - { "name": "minecraft:weeping_vines", "oldId": -231, "id": -231 }, - { "name": "minecraft:wheat", "oldId": 334, "id": 334 }, - { "name": "minecraft:wheat_seeds", "oldId": 291, "id": 291 }, - { "name": "minecraft:white_candle", "oldId": -413, "id": -413 }, - { "name": "minecraft:white_candle_cake", "oldId": -430, "id": -430 }, - { "name": "minecraft:white_dye", "oldId": 410, "id": 410 }, - { "name": "minecraft:white_glazed_terracotta", "oldId": 220, "id": 220 }, - { "name": "minecraft:witch_spawn_egg", "oldId": 452, "id": 452 }, - { "name": "minecraft:wither_rose", "oldId": -216, "id": -216 }, - { "name": "minecraft:wither_skeleton_spawn_egg", "oldId": 464, "id": 464 }, - { "name": "minecraft:wolf_spawn_egg", "oldId": 439, "id": 439 }, - { "name": "minecraft:wood", "oldId": -212, "id": -212 }, - { "name": "minecraft:wooden_axe", "oldId": 311, "id": 311 }, - { "name": "minecraft:wooden_button", "oldId": 143, "id": 143 }, - { "name": "minecraft:wooden_door", "oldId": 359, "id": 359 }, - { "name": "minecraft:wooden_hoe", "oldId": 329, "id": 329 }, - { "name": "minecraft:wooden_pickaxe", "oldId": 310, "id": 310 }, - { "name": "minecraft:wooden_pressure_plate", "oldId": 72, "id": 72 }, - { "name": "minecraft:wooden_shovel", "oldId": 309, "id": 309 }, - { "name": "minecraft:wooden_slab", "oldId": 158, "id": 158 }, - { "name": "minecraft:wooden_sword", "oldId": 308, "id": 308 }, - { "name": "minecraft:wool", "oldId": 35, "id": 35 }, - { "name": "minecraft:writable_book", "oldId": 510, "id": 510 }, - { "name": "minecraft:written_book", "oldId": 511, "id": 511 }, - { "name": "minecraft:yellow_candle", "oldId": -417, "id": -417 }, - { "name": "minecraft:yellow_candle_cake", "oldId": -434, "id": -434 }, - { "name": "minecraft:yellow_dye", "oldId": 406, "id": 406 }, - { "name": "minecraft:yellow_flower", "oldId": 37, "id": 37 }, - { "name": "minecraft:yellow_glazed_terracotta", "oldId": 224, "id": 224 }, - { "name": "minecraft:zoglin_spawn_egg", "oldId": 498, "id": 498 }, - { "name": "minecraft:zombie_horse_spawn_egg", "oldId": 468, "id": 468 }, - { "name": "minecraft:zombie_pigman_spawn_egg", "oldId": 448, "id": 448 }, - { "name": "minecraft:zombie_spawn_egg", "oldId": 447, "id": 447 }, - { "name": "minecraft:zombie_villager_spawn_egg", "oldId": 477, "id": 477 } -] \ No newline at end of file + "id": -176, + "oldId": -176 + }, + { + "name": "minecraft:mossy_stone_brick_stairs", + "id": -175, + "oldId": -175 + }, + { + "name": "minecraft:polished_andesite_stairs", + "id": -174, + "oldId": -174 + }, + { + "name": "minecraft:polished_diorite_stairs", + "id": -173, + "oldId": -173 + }, + { + "name": "minecraft:polished_granite_stairs", + "id": -172, + "oldId": -172 + }, + { + "name": "minecraft:andesite_stairs", + "id": -171, + "oldId": -171 + }, + { + "name": "minecraft:diorite_stairs", + "id": -170, + "oldId": -170 + }, + { + "name": "minecraft:granite_stairs", + "id": -169, + "oldId": -169 + }, + { + "name": "minecraft:real_double_stone_slab4", + "id": -168, + "oldId": -168 + }, + { + "name": "minecraft:real_double_stone_slab3", + "id": -167, + "oldId": -167 + }, + { + "name": "minecraft:double_stone_slab4", + "id": -166, + "oldId": -166 + }, + { + "name": "minecraft:scaffolding", + "id": -165, + "oldId": -165 + }, + { + "name": "minecraft:bamboo_sapling", + "id": -164, + "oldId": -164 + }, + { + "name": "minecraft:bamboo", + "id": -163, + "oldId": -163 + }, + { + "name": "minecraft:double_stone_slab3", + "id": -162, + "oldId": -162 + }, + { + "name": "minecraft:barrier", + "id": -161, + "oldId": -161 + }, + { + "name": "minecraft:bubble_column", + "id": -160, + "oldId": -160 + }, + { + "name": "minecraft:turtle_egg", + "id": -159, + "oldId": -159 + }, + { + "name": "minecraft:air", + "id": -158, + "oldId": -158 + }, + { + "name": "minecraft:conduit", + "id": -157, + "oldId": -157 + }, + { + "name": "minecraft:sea_pickle", + "id": -156, + "oldId": -156 + }, + { + "name": "minecraft:carved_pumpkin", + "id": -155, + "oldId": -155 + }, + { + "name": "minecraft:spruce_pressure_plate", + "id": -154, + "oldId": -154 + }, + { + "name": "minecraft:jungle_pressure_plate", + "id": -153, + "oldId": -153 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "id": -152, + "oldId": -152 + }, + { + "name": "minecraft:birch_pressure_plate", + "id": -151, + "oldId": -151 + }, + { + "name": "minecraft:acacia_pressure_plate", + "id": -150, + "oldId": -150 + }, + { + "name": "minecraft:spruce_trapdoor", + "id": -149, + "oldId": -149 + }, + { + "name": "minecraft:jungle_trapdoor", + "id": -148, + "oldId": -148 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "id": -147, + "oldId": -147 + }, + { + "name": "minecraft:birch_trapdoor", + "id": -146, + "oldId": -146 + }, + { + "name": "minecraft:acacia_trapdoor", + "id": -145, + "oldId": -145 + }, + { + "name": "minecraft:spruce_button", + "id": -144, + "oldId": -144 + }, + { + "name": "minecraft:jungle_button", + "id": -143, + "oldId": -143 + }, + { + "name": "minecraft:dark_oak_button", + "id": -142, + "oldId": -142 + }, + { + "name": "minecraft:birch_button", + "id": -141, + "oldId": -141 + }, + { + "name": "minecraft:acacia_button", + "id": -140, + "oldId": -140 + }, + { + "name": "minecraft:dried_kelp_block", + "id": -139, + "oldId": -139 + }, + { + "name": "minecraft:item.kelp", + "id": -138, + "oldId": -138 + }, + { + "name": "minecraft:coral_fan_hang3", + "id": -137, + "oldId": -137 + }, + { + "name": "minecraft:coral_fan_hang2", + "id": -136, + "oldId": -136 + }, + { + "name": "minecraft:coral_fan_hang", + "id": -135, + "oldId": -135 + }, + { + "name": "minecraft:coral_fan_dead", + "id": -134, + "oldId": -134 + }, + { + "name": "minecraft:coral_fan", + "id": -133, + "oldId": -133 + }, + { + "name": "minecraft:coral_block", + "id": -132, + "oldId": -132 + }, + { + "name": "minecraft:coral", + "id": -131, + "oldId": -131 + }, + { + "name": "minecraft:seagrass", + "id": -130, + "oldId": -130 + }, + { + "name": "minecraft:element_118", + "id": -129, + "oldId": -129 + }, + { + "name": "minecraft:element_117", + "id": -128, + "oldId": -128 + }, + { + "name": "minecraft:element_116", + "id": -127, + "oldId": -127 + }, + { + "name": "minecraft:element_115", + "id": -126, + "oldId": -126 + }, + { + "name": "minecraft:element_114", + "id": -125, + "oldId": -125 + }, + { + "name": "minecraft:element_113", + "id": -124, + "oldId": -124 + }, + { + "name": "minecraft:element_112", + "id": -123, + "oldId": -123 + }, + { + "name": "minecraft:element_111", + "id": -122, + "oldId": -122 + }, + { + "name": "minecraft:element_110", + "id": -121, + "oldId": -121 + }, + { + "name": "minecraft:element_109", + "id": -120, + "oldId": -120 + }, + { + "name": "minecraft:element_108", + "id": -119, + "oldId": -119 + }, + { + "name": "minecraft:element_107", + "id": -118, + "oldId": -118 + }, + { + "name": "minecraft:element_106", + "id": -117, + "oldId": -117 + }, + { + "name": "minecraft:element_105", + "id": -116, + "oldId": -116 + }, + { + "name": "minecraft:element_104", + "id": -115, + "oldId": -115 + }, + { + "name": "minecraft:element_103", + "id": -114, + "oldId": -114 + }, + { + "name": "minecraft:element_102", + "id": -113, + "oldId": -113 + }, + { + "name": "minecraft:element_101", + "id": -112, + "oldId": -112 + }, + { + "name": "minecraft:element_100", + "id": -111, + "oldId": -111 + }, + { + "name": "minecraft:element_99", + "id": -110, + "oldId": -110 + }, + { + "name": "minecraft:element_98", + "id": -109, + "oldId": -109 + }, + { + "name": "minecraft:element_97", + "id": -108, + "oldId": -108 + }, + { + "name": "minecraft:element_96", + "id": -107, + "oldId": -107 + }, + { + "name": "minecraft:element_95", + "id": -106, + "oldId": -106 + }, + { + "name": "minecraft:element_94", + "id": -105, + "oldId": -105 + }, + { + "name": "minecraft:element_93", + "id": -104, + "oldId": -104 + }, + { + "name": "minecraft:element_92", + "id": -103, + "oldId": -103 + }, + { + "name": "minecraft:element_91", + "id": -102, + "oldId": -102 + }, + { + "name": "minecraft:element_90", + "id": -101, + "oldId": -101 + }, + { + "name": "minecraft:element_89", + "id": -100, + "oldId": -100 + }, + { + "name": "minecraft:element_88", + "id": -99, + "oldId": -99 + }, + { + "name": "minecraft:element_87", + "id": -98, + "oldId": -98 + }, + { + "name": "minecraft:element_86", + "id": -97, + "oldId": -97 + }, + { + "name": "minecraft:element_85", + "id": -96, + "oldId": -96 + }, + { + "name": "minecraft:element_84", + "id": -95, + "oldId": -95 + }, + { + "name": "minecraft:element_83", + "id": -94, + "oldId": -94 + }, + { + "name": "minecraft:element_82", + "id": -93, + "oldId": -93 + }, + { + "name": "minecraft:element_81", + "id": -92, + "oldId": -92 + }, + { + "name": "minecraft:element_80", + "id": -91, + "oldId": -91 + }, + { + "name": "minecraft:element_79", + "id": -90, + "oldId": -90 + }, + { + "name": "minecraft:element_78", + "id": -89, + "oldId": -89 + }, + { + "name": "minecraft:element_77", + "id": -88, + "oldId": -88 + }, + { + "name": "minecraft:element_76", + "id": -87, + "oldId": -87 + }, + { + "name": "minecraft:element_75", + "id": -86, + "oldId": -86 + }, + { + "name": "minecraft:element_74", + "id": -85, + "oldId": -85 + }, + { + "name": "minecraft:element_73", + "id": -84, + "oldId": -84 + }, + { + "name": "minecraft:element_72", + "id": -83, + "oldId": -83 + }, + { + "name": "minecraft:element_71", + "id": -82, + "oldId": -82 + }, + { + "name": "minecraft:element_70", + "id": -81, + "oldId": -81 + }, + { + "name": "minecraft:element_69", + "id": -80, + "oldId": -80 + }, + { + "name": "minecraft:element_68", + "id": -79, + "oldId": -79 + }, + { + "name": "minecraft:element_67", + "id": -78, + "oldId": -78 + }, + { + "name": "minecraft:element_66", + "id": -77, + "oldId": -77 + }, + { + "name": "minecraft:element_65", + "id": -76, + "oldId": -76 + }, + { + "name": "minecraft:element_64", + "id": -75, + "oldId": -75 + }, + { + "name": "minecraft:element_63", + "id": -74, + "oldId": -74 + }, + { + "name": "minecraft:element_62", + "id": -73, + "oldId": -73 + }, + { + "name": "minecraft:element_61", + "id": -72, + "oldId": -72 + }, + { + "name": "minecraft:element_60", + "id": -71, + "oldId": -71 + }, + { + "name": "minecraft:element_59", + "id": -70, + "oldId": -70 + }, + { + "name": "minecraft:element_58", + "id": -69, + "oldId": -69 + }, + { + "name": "minecraft:element_57", + "id": -68, + "oldId": -68 + }, + { + "name": "minecraft:element_56", + "id": -67, + "oldId": -67 + }, + { + "name": "minecraft:element_55", + "id": -66, + "oldId": -66 + }, + { + "name": "minecraft:element_54", + "id": -65, + "oldId": -65 + }, + { + "name": "minecraft:element_53", + "id": -64, + "oldId": -64 + }, + { + "name": "minecraft:element_52", + "id": -63, + "oldId": -63 + }, + { + "name": "minecraft:element_51", + "id": -62, + "oldId": -62 + }, + { + "name": "minecraft:element_50", + "id": -61, + "oldId": -61 + }, + { + "name": "minecraft:element_49", + "id": -60, + "oldId": -60 + }, + { + "name": "minecraft:element_48", + "id": -59, + "oldId": -59 + }, + { + "name": "minecraft:element_47", + "id": -58, + "oldId": -58 + }, + { + "name": "minecraft:element_46", + "id": -57, + "oldId": -57 + }, + { + "name": "minecraft:element_45", + "id": -56, + "oldId": -56 + }, + { + "name": "minecraft:element_44", + "id": -55, + "oldId": -55 + }, + { + "name": "minecraft:element_43", + "id": -54, + "oldId": -54 + }, + { + "name": "minecraft:element_42", + "id": -53, + "oldId": -53 + }, + { + "name": "minecraft:element_41", + "id": -52, + "oldId": -52 + }, + { + "name": "minecraft:element_40", + "id": -51, + "oldId": -51 + }, + { + "name": "minecraft:element_39", + "id": -50, + "oldId": -50 + }, + { + "name": "minecraft:element_38", + "id": -49, + "oldId": -49 + }, + { + "name": "minecraft:element_37", + "id": -48, + "oldId": -48 + }, + { + "name": "minecraft:element_36", + "id": -47, + "oldId": -47 + }, + { + "name": "minecraft:element_35", + "id": -46, + "oldId": -46 + }, + { + "name": "minecraft:element_34", + "id": -45, + "oldId": -45 + }, + { + "name": "minecraft:element_33", + "id": -44, + "oldId": -44 + }, + { + "name": "minecraft:element_32", + "id": -43, + "oldId": -43 + }, + { + "name": "minecraft:element_31", + "id": -42, + "oldId": -42 + }, + { + "name": "minecraft:element_30", + "id": -41, + "oldId": -41 + }, + { + "name": "minecraft:element_29", + "id": -40, + "oldId": -40 + }, + { + "name": "minecraft:element_28", + "id": -39, + "oldId": -39 + }, + { + "name": "minecraft:element_27", + "id": -38, + "oldId": -38 + }, + { + "name": "minecraft:element_26", + "id": -37, + "oldId": -37 + }, + { + "name": "minecraft:element_25", + "id": -36, + "oldId": -36 + }, + { + "name": "minecraft:element_24", + "id": -35, + "oldId": -35 + }, + { + "name": "minecraft:element_23", + "id": -34, + "oldId": -34 + }, + { + "name": "minecraft:element_22", + "id": -33, + "oldId": -33 + }, + { + "name": "minecraft:element_21", + "id": -32, + "oldId": -32 + }, + { + "name": "minecraft:element_20", + "id": -31, + "oldId": -31 + }, + { + "name": "minecraft:element_19", + "id": -30, + "oldId": -30 + }, + { + "name": "minecraft:element_18", + "id": -29, + "oldId": -29 + }, + { + "name": "minecraft:element_17", + "id": -28, + "oldId": -28 + }, + { + "name": "minecraft:element_16", + "id": -27, + "oldId": -27 + }, + { + "name": "minecraft:element_15", + "id": -26, + "oldId": -26 + }, + { + "name": "minecraft:element_14", + "id": -25, + "oldId": -25 + }, + { + "name": "minecraft:element_13", + "id": -24, + "oldId": -24 + }, + { + "name": "minecraft:element_12", + "id": -23, + "oldId": -23 + }, + { + "name": "minecraft:element_11", + "id": -22, + "oldId": -22 + }, + { + "name": "minecraft:element_10", + "id": -21, + "oldId": -21 + }, + { + "name": "minecraft:element_9", + "id": -20, + "oldId": -20 + }, + { + "name": "minecraft:element_8", + "id": -19, + "oldId": -19 + }, + { + "name": "minecraft:element_7", + "id": -18, + "oldId": -18 + }, + { + "name": "minecraft:element_6", + "id": -17, + "oldId": -17 + }, + { + "name": "minecraft:element_5", + "id": -16, + "oldId": -16 + }, + { + "name": "minecraft:element_4", + "id": -15, + "oldId": -15 + }, + { + "name": "minecraft:element_3", + "id": -14, + "oldId": -14 + }, + { + "name": "minecraft:element_2", + "id": -13, + "oldId": -13 + }, + { + "name": "minecraft:element_1", + "id": -12, + "oldId": -12 + }, + { + "name": "minecraft:blue_ice", + "id": -11, + "oldId": -11 + }, + { + "name": "minecraft:stripped_oak_log", + "id": -10, + "oldId": -10 + }, + { + "name": "minecraft:stripped_dark_oak_log", + "id": -9, + "oldId": -9 + }, + { + "name": "minecraft:stripped_acacia_log", + "id": -8, + "oldId": -8 + }, + { + "name": "minecraft:stripped_jungle_log", + "id": -7, + "oldId": -7 + }, + { + "name": "minecraft:stripped_birch_log", + "id": -6, + "oldId": -6 + }, + { + "name": "minecraft:stripped_spruce_log", + "id": -5, + "oldId": -5 + }, + { + "name": "minecraft:prismarine_bricks_stairs", + "id": -4, + "oldId": -4 + }, + { + "name": "minecraft:dark_prismarine_stairs", + "id": -3, + "oldId": -3 + }, + { + "name": "minecraft:prismarine_stairs", + "id": -2, + "oldId": -2 + }, + { + "name": "minecraft:stone", + "id": 1, + "oldId": 1 + }, + { + "name": "minecraft:grass", + "id": 2, + "oldId": 2 + }, + { + "name": "minecraft:dirt", + "id": 3, + "oldId": 3 + }, + { + "name": "minecraft:cobblestone", + "id": 4, + "oldId": 4 + }, + { + "name": "minecraft:planks", + "id": 5, + "oldId": 5 + }, + { + "name": "minecraft:sapling", + "id": 6, + "oldId": 6 + }, + { + "name": "minecraft:bedrock", + "id": 7, + "oldId": 7 + }, + { + "name": "minecraft:flowing_water", + "id": 8, + "oldId": 8 + }, + { + "name": "minecraft:water", + "id": 9, + "oldId": 9 + }, + { + "name": "minecraft:flowing_lava", + "id": 10, + "oldId": 10 + }, + { + "name": "minecraft:lava", + "id": 11, + "oldId": 11 + }, + { + "name": "minecraft:sand", + "id": 12, + "oldId": 12 + }, + { + "name": "minecraft:gravel", + "id": 13, + "oldId": 13 + }, + { + "name": "minecraft:gold_ore", + "id": 14, + "oldId": 14 + }, + { + "name": "minecraft:iron_ore", + "id": 15, + "oldId": 15 + }, + { + "name": "minecraft:coal_ore", + "id": 16, + "oldId": 16 + }, + { + "name": "minecraft:log", + "id": 17, + "oldId": 17 + }, + { + "name": "minecraft:leaves", + "id": 18, + "oldId": 18 + }, + { + "name": "minecraft:sponge", + "id": 19, + "oldId": 19 + }, + { + "name": "minecraft:glass", + "id": 20, + "oldId": 20 + }, + { + "name": "minecraft:lapis_ore", + "id": 21, + "oldId": 21 + }, + { + "name": "minecraft:lapis_block", + "id": 22, + "oldId": 22 + }, + { + "name": "minecraft:dispenser", + "id": 23, + "oldId": 23 + }, + { + "name": "minecraft:sandstone", + "id": 24, + "oldId": 24 + }, + { + "name": "minecraft:noteblock", + "id": 25, + "oldId": 25 + }, + { + "name": "minecraft:item.bed", + "id": 26, + "oldId": 26 + }, + { + "name": "minecraft:golden_rail", + "id": 27, + "oldId": 27 + }, + { + "name": "minecraft:detector_rail", + "id": 28, + "oldId": 28 + }, + { + "name": "minecraft:sticky_piston", + "id": 29, + "oldId": 29 + }, + { + "name": "minecraft:web", + "id": 30, + "oldId": 30 + }, + { + "name": "minecraft:tallgrass", + "id": 31, + "oldId": 31 + }, + { + "name": "minecraft:deadbush", + "id": 32, + "oldId": 32 + }, + { + "name": "minecraft:piston", + "id": 33, + "oldId": 33 + }, + { + "name": "minecraft:pistonarmcollision", + "id": 34, + "oldId": 34 + }, + { + "name": "minecraft:wool", + "id": 35, + "oldId": 35 + }, + { + "name": "minecraft:element_0", + "id": 36, + "oldId": 36 + }, + { + "name": "minecraft:yellow_flower", + "id": 37, + "oldId": 37 + }, + { + "name": "minecraft:red_flower", + "id": 38, + "oldId": 38 + }, + { + "name": "minecraft:brown_mushroom", + "id": 39, + "oldId": 39 + }, + { + "name": "minecraft:red_mushroom", + "id": 40, + "oldId": 40 + }, + { + "name": "minecraft:gold_block", + "id": 41, + "oldId": 41 + }, + { + "name": "minecraft:iron_block", + "id": 42, + "oldId": 42 + }, + { + "name": "minecraft:real_double_stone_slab", + "id": 43, + "oldId": 43 + }, + { + "name": "minecraft:double_stone_slab", + "id": 44, + "oldId": 44 + }, + { + "name": "minecraft:brick_block", + "id": 45, + "oldId": 45 + }, + { + "name": "minecraft:tnt", + "id": 46, + "oldId": 46 + }, + { + "name": "minecraft:bookshelf", + "id": 47, + "oldId": 47 + }, + { + "name": "minecraft:mossy_cobblestone", + "id": 48, + "oldId": 48 + }, + { + "name": "minecraft:obsidian", + "id": 49, + "oldId": 49 + }, + { + "name": "minecraft:torch", + "id": 50, + "oldId": 50 + }, + { + "name": "minecraft:fire", + "id": 51, + "oldId": 51 + }, + { + "name": "minecraft:mob_spawner", + "id": 52, + "oldId": 52 + }, + { + "name": "minecraft:oak_stairs", + "id": 53, + "oldId": 53 + }, + { + "name": "minecraft:chest", + "id": 54, + "oldId": 54 + }, + { + "name": "minecraft:redstone_wire", + "id": 55, + "oldId": 55 + }, + { + "name": "minecraft:diamond_ore", + "id": 56, + "oldId": 56 + }, + { + "name": "minecraft:diamond_block", + "id": 57, + "oldId": 57 + }, + { + "name": "minecraft:crafting_table", + "id": 58, + "oldId": 58 + }, + { + "name": "minecraft:item.wheat", + "id": 59, + "oldId": 59 + }, + { + "name": "minecraft:farmland", + "id": 60, + "oldId": 60 + }, + { + "name": "minecraft:furnace", + "id": 61, + "oldId": 61 + }, + { + "name": "minecraft:lit_furnace", + "id": 62, + "oldId": 62 + }, + { + "name": "minecraft:standing_sign", + "id": 63, + "oldId": 63 + }, + { + "name": "minecraft:item.wooden_door", + "id": 64, + "oldId": 64 + }, + { + "name": "minecraft:ladder", + "id": 65, + "oldId": 65 + }, + { + "name": "minecraft:rail", + "id": 66, + "oldId": 66 + }, + { + "name": "minecraft:stone_stairs", + "id": 67, + "oldId": 67 + }, + { + "name": "minecraft:wall_sign", + "id": 68, + "oldId": 68 + }, + { + "name": "minecraft:lever", + "id": 69, + "oldId": 69 + }, + { + "name": "minecraft:stone_pressure_plate", + "id": 70, + "oldId": 70 + }, + { + "name": "minecraft:item.iron_door", + "id": 71, + "oldId": 71 + }, + { + "name": "minecraft:wooden_pressure_plate", + "id": 72, + "oldId": 72 + }, + { + "name": "minecraft:redstone_ore", + "id": 73, + "oldId": 73 + }, + { + "name": "minecraft:lit_redstone_ore", + "id": 74, + "oldId": 74 + }, + { + "name": "minecraft:unlit_redstone_torch", + "id": 75, + "oldId": 75 + }, + { + "name": "minecraft:redstone_torch", + "id": 76, + "oldId": 76 + }, + { + "name": "minecraft:stone_button", + "id": 77, + "oldId": 77 + }, + { + "name": "minecraft:snow_layer", + "id": 78, + "oldId": 78 + }, + { + "name": "minecraft:ice", + "id": 79, + "oldId": 79 + }, + { + "name": "minecraft:snow", + "id": 80, + "oldId": 80 + }, + { + "name": "minecraft:cactus", + "id": 81, + "oldId": 81 + }, + { + "name": "minecraft:clay", + "id": 82, + "oldId": 82 + }, + { + "name": "minecraft:item.reeds", + "id": 83, + "oldId": 83 + }, + { + "name": "minecraft:jukebox", + "id": 84, + "oldId": 84 + }, + { + "name": "minecraft:fence", + "id": 85, + "oldId": 85 + }, + { + "name": "minecraft:pumpkin", + "id": 86, + "oldId": 86 + }, + { + "name": "minecraft:netherrack", + "id": 87, + "oldId": 87 + }, + { + "name": "minecraft:soul_sand", + "id": 88, + "oldId": 88 + }, + { + "name": "minecraft:glowstone", + "id": 89, + "oldId": 89 + }, + { + "name": "minecraft:portal", + "id": 90, + "oldId": 90 + }, + { + "name": "minecraft:lit_pumpkin", + "id": 91, + "oldId": 91 + }, + { + "name": "minecraft:item.cake", + "id": 92, + "oldId": 92 + }, + { + "name": "minecraft:unpowered_repeater", + "id": 93, + "oldId": 93 + }, + { + "name": "minecraft:powered_repeater", + "id": 94, + "oldId": 94 + }, + { + "name": "minecraft:invisiblebedrock", + "id": 95, + "oldId": 95 + }, + { + "name": "minecraft:trapdoor", + "id": 96, + "oldId": 96 + }, + { + "name": "minecraft:monster_egg", + "id": 97, + "oldId": 97 + }, + { + "name": "minecraft:stonebrick", + "id": 98, + "oldId": 98 + }, + { + "name": "minecraft:brown_mushroom_block", + "id": 99, + "oldId": 99 + }, + { + "name": "minecraft:red_mushroom_block", + "id": 100, + "oldId": 100 + }, + { + "name": "minecraft:iron_bars", + "id": 101, + "oldId": 101 + }, + { + "name": "minecraft:glass_pane", + "id": 102, + "oldId": 102 + }, + { + "name": "minecraft:melon_block", + "id": 103, + "oldId": 103 + }, + { + "name": "minecraft:pumpkin_stem", + "id": 104, + "oldId": 104 + }, + { + "name": "minecraft:melon_stem", + "id": 105, + "oldId": 105 + }, + { + "name": "minecraft:vine", + "id": 106, + "oldId": 106 + }, + { + "name": "minecraft:fence_gate", + "id": 107, + "oldId": 107 + }, + { + "name": "minecraft:brick_stairs", + "id": 108, + "oldId": 108 + }, + { + "name": "minecraft:stone_brick_stairs", + "id": 109, + "oldId": 109 + }, + { + "name": "minecraft:mycelium", + "id": 110, + "oldId": 110 + }, + { + "name": "minecraft:waterlily", + "id": 111, + "oldId": 111 + }, + { + "name": "minecraft:nether_brick", + "id": 112, + "oldId": 112 + }, + { + "name": "minecraft:nether_brick_fence", + "id": 113, + "oldId": 113 + }, + { + "name": "minecraft:nether_brick_stairs", + "id": 114, + "oldId": 114 + }, + { + "name": "minecraft:item.nether_wart", + "id": 115, + "oldId": 115 + }, + { + "name": "minecraft:enchanting_table", + "id": 116, + "oldId": 116 + }, + { + "name": "minecraft:brewingstandblock", + "id": 117, + "oldId": 117 + }, + { + "name": "minecraft:item.cauldron", + "id": 118, + "oldId": 118 + }, + { + "name": "minecraft:end_portal", + "id": 119, + "oldId": 119 + }, + { + "name": "minecraft:end_portal_frame", + "id": 120, + "oldId": 120 + }, + { + "name": "minecraft:end_stone", + "id": 121, + "oldId": 121 + }, + { + "name": "minecraft:dragon_egg", + "id": 122, + "oldId": 122 + }, + { + "name": "minecraft:redstone_lamp", + "id": 123, + "oldId": 123 + }, + { + "name": "minecraft:lit_redstone_lamp", + "id": 124, + "oldId": 124 + }, + { + "name": "minecraft:dropper", + "id": 125, + "oldId": 125 + }, + { + "name": "minecraft:activator_rail", + "id": 126, + "oldId": 126 + }, + { + "name": "minecraft:cocoa", + "id": 127, + "oldId": 127 + }, + { + "name": "minecraft:sandstone_stairs", + "id": 128, + "oldId": 128 + }, + { + "name": "minecraft:emerald_ore", + "id": 129, + "oldId": 129 + }, + { + "name": "minecraft:ender_chest", + "id": 130, + "oldId": 130 + }, + { + "name": "minecraft:tripwire_hook", + "id": 131, + "oldId": 131 + }, + { + "name": "minecraft:tripwire", + "id": 132, + "oldId": 132 + }, + { + "name": "minecraft:emerald_block", + "id": 133, + "oldId": 133 + }, + { + "name": "minecraft:spruce_stairs", + "id": 134, + "oldId": 134 + }, + { + "name": "minecraft:birch_stairs", + "id": 135, + "oldId": 135 + }, + { + "name": "minecraft:jungle_stairs", + "id": 136, + "oldId": 136 + }, + { + "name": "minecraft:command_block", + "id": 137, + "oldId": 137 + }, + { + "name": "minecraft:beacon", + "id": 138, + "oldId": 138 + }, + { + "name": "minecraft:cobblestone_wall", + "id": 139, + "oldId": 139 + }, + { + "name": "minecraft:item.flower_pot", + "id": 140, + "oldId": 140 + }, + { + "name": "minecraft:carrots", + "id": 141, + "oldId": 141 + }, + { + "name": "minecraft:potatoes", + "id": 142, + "oldId": 142 + }, + { + "name": "minecraft:wooden_button", + "id": 143, + "oldId": 143 + }, + { + "name": "minecraft:item.skull", + "id": 144, + "oldId": 144 + }, + { + "name": "minecraft:anvil", + "id": 145, + "oldId": 145 + }, + { + "name": "minecraft:trapped_chest", + "id": 146, + "oldId": 146 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "id": 147, + "oldId": 147 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "id": 148, + "oldId": 148 + }, + { + "name": "minecraft:unpowered_comparator", + "id": 149, + "oldId": 149 + }, + { + "name": "minecraft:powered_comparator", + "id": 150, + "oldId": 150 + }, + { + "name": "minecraft:daylight_detector", + "id": 151, + "oldId": 151 + }, + { + "name": "minecraft:redstone_block", + "id": 152, + "oldId": 152 + }, + { + "name": "minecraft:quartz_ore", + "id": 153, + "oldId": 153 + }, + { + "name": "minecraft:item.hopper", + "id": 154, + "oldId": 154 + }, + { + "name": "minecraft:quartz_block", + "id": 155, + "oldId": 155 + }, + { + "name": "minecraft:quartz_stairs", + "id": 156, + "oldId": 156 + }, + { + "name": "minecraft:double_wooden_slab", + "id": 157, + "oldId": 157 + }, + { + "name": "minecraft:wooden_slab", + "id": 158, + "oldId": 158 + }, + { + "name": "minecraft:stained_hardened_clay", + "id": 159, + "oldId": 159 + }, + { + "name": "minecraft:stained_glass_pane", + "id": 160, + "oldId": 160 + }, + { + "name": "minecraft:leaves2", + "id": 161, + "oldId": 161 + }, + { + "name": "minecraft:log2", + "id": 162, + "oldId": 162 + }, + { + "name": "minecraft:acacia_stairs", + "id": 163, + "oldId": 163 + }, + { + "name": "minecraft:dark_oak_stairs", + "id": 164, + "oldId": 164 + }, + { + "name": "minecraft:slime", + "id": 165, + "oldId": 165 + }, + { + "name": "minecraft:glow_stick", + "id": 166, + "oldId": 166 + }, + { + "name": "minecraft:iron_trapdoor", + "id": 167, + "oldId": 167 + }, + { + "name": "minecraft:prismarine", + "id": 168, + "oldId": 168 + }, + { + "name": "minecraft:sealantern", + "id": 169, + "oldId": 169 + }, + { + "name": "minecraft:hay_block", + "id": 170, + "oldId": 170 + }, + { + "name": "minecraft:carpet", + "id": 171, + "oldId": 171 + }, + { + "name": "minecraft:hardened_clay", + "id": 172, + "oldId": 172 + }, + { + "name": "minecraft:coal_block", + "id": 173, + "oldId": 173 + }, + { + "name": "minecraft:packed_ice", + "id": 174, + "oldId": 174 + }, + { + "name": "minecraft:double_plant", + "id": 175, + "oldId": 175 + }, + { + "name": "minecraft:standing_banner", + "id": 176, + "oldId": 176 + }, + { + "name": "minecraft:wall_banner", + "id": 177, + "oldId": 177 + }, + { + "name": "minecraft:daylight_detector_inverted", + "id": 178, + "oldId": 178 + }, + { + "name": "minecraft:red_sandstone", + "id": 179, + "oldId": 179 + }, + { + "name": "minecraft:red_sandstone_stairs", + "id": 180, + "oldId": 180 + }, + { + "name": "minecraft:real_double_stone_slab2", + "id": 181, + "oldId": 181 + }, + { + "name": "minecraft:double_stone_slab2", + "id": 182, + "oldId": 182 + }, + { + "name": "minecraft:spruce_fence_gate", + "id": 183, + "oldId": 183 + }, + { + "name": "minecraft:birch_fence_gate", + "id": 184, + "oldId": 184 + }, + { + "name": "minecraft:jungle_fence_gate", + "id": 185, + "oldId": 185 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "id": 186, + "oldId": 186 + }, + { + "name": "minecraft:acacia_fence_gate", + "id": 187, + "oldId": 187 + }, + { + "name": "minecraft:repeating_command_block", + "id": 188, + "oldId": 188 + }, + { + "name": "minecraft:chain_command_block", + "id": 189, + "oldId": 189 + }, + { + "name": "minecraft:hard_glass_pane", + "id": 190, + "oldId": 190 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "id": 191, + "oldId": 191 + }, + { + "name": "minecraft:chemical_heat", + "id": 192, + "oldId": 192 + }, + { + "name": "minecraft:item.spruce_door", + "id": 193, + "oldId": 193 + }, + { + "name": "minecraft:item.birch_door", + "id": 194, + "oldId": 194 + }, + { + "name": "minecraft:item.jungle_door", + "id": 195, + "oldId": 195 + }, + { + "name": "minecraft:item.acacia_door", + "id": 196, + "oldId": 196 + }, + { + "name": "minecraft:item.dark_oak_door", + "id": 197, + "oldId": 197 + }, + { + "name": "minecraft:grass_path", + "id": 198, + "oldId": 198 + }, + { + "name": "minecraft:item.frame", + "id": 199, + "oldId": 199 + }, + { + "name": "minecraft:chorus_flower", + "id": 200, + "oldId": 200 + }, + { + "name": "minecraft:purpur_block", + "id": 201, + "oldId": 201 + }, + { + "name": "minecraft:colored_torch_rg", + "id": 202, + "oldId": 202 + }, + { + "name": "minecraft:purpur_stairs", + "id": 203, + "oldId": 203 + }, + { + "name": "minecraft:colored_torch_bp", + "id": 204, + "oldId": 204 + }, + { + "name": "minecraft:undyed_shulker_box", + "id": 205, + "oldId": 205 + }, + { + "name": "minecraft:end_bricks", + "id": 206, + "oldId": 206 + }, + { + "name": "minecraft:frosted_ice", + "id": 207, + "oldId": 207 + }, + { + "name": "minecraft:end_rod", + "id": 208, + "oldId": 208 + }, + { + "name": "minecraft:end_gateway", + "id": 209, + "oldId": 209 + }, + { + "name": "minecraft:allow", + "id": 210, + "oldId": 210 + }, + { + "name": "minecraft:deny", + "id": 211, + "oldId": 211 + }, + { + "name": "minecraft:border_block", + "id": 212, + "oldId": 212 + }, + { + "name": "minecraft:magma", + "id": 213, + "oldId": 213 + }, + { + "name": "minecraft:nether_wart_block", + "id": 214, + "oldId": 214 + }, + { + "name": "minecraft:red_nether_brick", + "id": 215, + "oldId": 215 + }, + { + "name": "minecraft:bone_block", + "id": 216, + "oldId": 216 + }, + { + "name": "minecraft:structure_void", + "id": 217, + "oldId": 217 + }, + { + "name": "minecraft:shulker_box", + "id": 218, + "oldId": 218 + }, + { + "name": "minecraft:purple_glazed_terracotta", + "id": 219, + "oldId": 219 + }, + { + "name": "minecraft:white_glazed_terracotta", + "id": 220, + "oldId": 220 + }, + { + "name": "minecraft:orange_glazed_terracotta", + "id": 221, + "oldId": 221 + }, + { + "name": "minecraft:magenta_glazed_terracotta", + "id": 222, + "oldId": 222 + }, + { + "name": "minecraft:light_blue_glazed_terracotta", + "id": 223, + "oldId": 223 + }, + { + "name": "minecraft:yellow_glazed_terracotta", + "id": 224, + "oldId": 224 + }, + { + "name": "minecraft:lime_glazed_terracotta", + "id": 225, + "oldId": 225 + }, + { + "name": "minecraft:pink_glazed_terracotta", + "id": 226, + "oldId": 226 + }, + { + "name": "minecraft:gray_glazed_terracotta", + "id": 227, + "oldId": 227 + }, + { + "name": "minecraft:silver_glazed_terracotta", + "id": 228, + "oldId": 228 + }, + { + "name": "minecraft:cyan_glazed_terracotta", + "id": 229, + "oldId": 229 + }, + { + "name": "minecraft:blue_glazed_terracotta", + "id": 231, + "oldId": 231 + }, + { + "name": "minecraft:brown_glazed_terracotta", + "id": 232, + "oldId": 232 + }, + { + "name": "minecraft:green_glazed_terracotta", + "id": 233, + "oldId": 233 + }, + { + "name": "minecraft:red_glazed_terracotta", + "id": 234, + "oldId": 234 + }, + { + "name": "minecraft:black_glazed_terracotta", + "id": 235, + "oldId": 235 + }, + { + "name": "minecraft:concrete", + "id": 236, + "oldId": 236 + }, + { + "name": "minecraft:concrete_powder", + "id": 237, + "oldId": 237 + }, + { + "name": "minecraft:chemistry_table", + "id": 238, + "oldId": 238 + }, + { + "name": "minecraft:underwater_torch", + "id": 239, + "oldId": 239 + }, + { + "name": "minecraft:chorus_plant", + "id": 240, + "oldId": 240 + }, + { + "name": "minecraft:stained_glass", + "id": 241, + "oldId": 241 + }, + { + "name": "minecraft:item.camera", + "id": 242, + "oldId": 242 + }, + { + "name": "minecraft:podzol", + "id": 243, + "oldId": 243 + }, + { + "name": "minecraft:item.beetroot", + "id": 244, + "oldId": 244 + }, + { + "name": "minecraft:stonecutter", + "id": 245, + "oldId": 245 + }, + { + "name": "minecraft:glowingobsidian", + "id": 246, + "oldId": 246 + }, + { + "name": "minecraft:netherreactor", + "id": 247, + "oldId": 247 + }, + { + "name": "minecraft:info_update", + "id": 248, + "oldId": 248 + }, + { + "name": "minecraft:info_update2", + "id": 249, + "oldId": 249 + }, + { + "name": "minecraft:movingblock", + "id": 250, + "oldId": 250 + }, + { + "name": "minecraft:observer", + "id": 251, + "oldId": 251 + }, + { + "name": "minecraft:structure_block", + "id": 252, + "oldId": 252 + }, + { + "name": "minecraft:hard_glass", + "id": 253, + "oldId": 253 + }, + { + "name": "minecraft:hard_stained_glass", + "id": 254, + "oldId": 254 + }, + { + "name": "minecraft:reserved6", + "id": 255, + "oldId": 255 + }, + { + "name": "minecraft:apple", + "id": 257, + "oldId": 260 + }, + { + "name": "minecraft:golden_apple", + "id": 258, + "oldId": 322 + }, + { + "name": "minecraft:enchanted_golden_apple", + "id": 259, + "oldId": 466 + }, + { + "name": "minecraft:mushroom_stew", + "id": 260, + "oldId": 282 + }, + { + "name": "minecraft:bread", + "id": 261, + "oldId": 297 + }, + { + "name": "minecraft:porkchop", + "id": 262, + "oldId": 319 + }, + { + "name": "minecraft:cooked_porkchop", + "id": 263, + "oldId": 320 + }, + { + "name": "minecraft:cod", + "id": 264, + "oldId": 349 + }, + { + "name": "minecraft:salmon", + "id": 265, + "oldId": 460 + }, + { + "name": "minecraft:tropical_fish", + "id": 266, + "oldId": 461 + }, + { + "name": "minecraft:pufferfish", + "id": 267, + "oldId": 462 + }, + { + "name": "minecraft:cooked_cod", + "id": 268, + "oldId": 350 + }, + { + "name": "minecraft:cooked_salmon", + "id": 269, + "oldId": 463 + }, + { + "name": "minecraft:dried_kelp", + "id": 270, + "oldId": 464 + }, + { + "name": "minecraft:cookie", + "id": 271, + "oldId": 357 + }, + { + "name": "minecraft:melon_slice", + "id": 272, + "oldId": 360 + }, + { + "name": "minecraft:beef", + "id": 273, + "oldId": 363 + }, + { + "name": "minecraft:cooked_beef", + "id": 274, + "oldId": 364 + }, + { + "name": "minecraft:chicken", + "id": 275, + "oldId": 365 + }, + { + "name": "minecraft:cooked_chicken", + "id": 276, + "oldId": 366 + }, + { + "name": "minecraft:rotten_flesh", + "id": 277, + "oldId": 367 + }, + { + "name": "minecraft:spider_eye", + "id": 278, + "oldId": 375 + }, + { + "name": "minecraft:carrot", + "id": 279, + "oldId": 391 + }, + { + "name": "minecraft:potato", + "id": 280, + "oldId": 392 + }, + { + "name": "minecraft:baked_potato", + "id": 281, + "oldId": 393 + }, + { + "name": "minecraft:poisonous_potato", + "id": 282, + "oldId": 394 + }, + { + "name": "minecraft:golden_carrot", + "id": 283, + "oldId": 396 + }, + { + "name": "minecraft:pumpkin_pie", + "id": 284, + "oldId": 400 + }, + { + "name": "minecraft:beetroot", + "id": 285, + "oldId": 457 + }, + { + "name": "minecraft:beetroot_soup", + "id": 286, + "oldId": 459 + }, + { + "name": "minecraft:sweet_berries", + "id": 287, + "oldId": 477 + }, + { + "name": "minecraft:rabbit", + "id": 288, + "oldId": 411 + }, + { + "name": "minecraft:cooked_rabbit", + "id": 289, + "oldId": 412 + }, + { + "name": "minecraft:rabbit_stew", + "id": 290, + "oldId": 413 + }, + { + "name": "minecraft:wheat_seeds", + "id": 291, + "oldId": 295 + }, + { + "name": "minecraft:pumpkin_seeds", + "id": 292, + "oldId": 361 + }, + { + "name": "minecraft:melon_seeds", + "id": 293, + "oldId": 362 + }, + { + "name": "minecraft:nether_wart", + "id": 294, + "oldId": 372 + }, + { + "name": "minecraft:beetroot_seeds", + "id": 295, + "oldId": 458 + }, + { + "name": "minecraft:iron_shovel", + "id": 296, + "oldId": 256 + }, + { + "name": "minecraft:iron_pickaxe", + "id": 297, + "oldId": 257 + }, + { + "name": "minecraft:iron_axe", + "id": 298, + "oldId": 258 + }, + { + "name": "minecraft:flint_and_steel", + "id": 299, + "oldId": 259 + }, + { + "name": "minecraft:bow", + "id": 300, + "oldId": 261 + }, + { + "name": "minecraft:arrow", + "id": 301, + "oldId": 262 + }, + { + "name": "minecraft:coal", + "id": 302, + "oldId": 263, + "oldData": 0 + }, + { + "name": "minecraft:charcoal", + "id": 303, + "oldId": 263, + "oldData": 1 + }, + { + "name": "minecraft:diamond", + "id": 304, + "oldId": 264 + }, + { + "name": "minecraft:iron_ingot", + "id": 305, + "oldId": 265 + }, + { + "name": "minecraft:gold_ingot", + "id": 306, + "oldId": 266 + }, + { + "name": "minecraft:iron_sword", + "id": 307, + "oldId": 267 + }, + { + "name": "minecraft:wooden_sword", + "id": 308, + "oldId": 268 + }, + { + "name": "minecraft:wooden_shovel", + "id": 309, + "oldId": 269 + }, + { + "name": "minecraft:wooden_pickaxe", + "id": 310, + "oldId": 270 + }, + { + "name": "minecraft:wooden_axe", + "id": 311, + "oldId": 271 + }, + { + "name": "minecraft:stone_sword", + "id": 312, + "oldId": 272 + }, + { + "name": "minecraft:stone_shovel", + "id": 313, + "oldId": 273 + }, + { + "name": "minecraft:stone_pickaxe", + "id": 314, + "oldId": 274 + }, + { + "name": "minecraft:stone_axe", + "id": 315, + "oldId": 275 + }, + { + "name": "minecraft:diamond_sword", + "id": 316, + "oldId": 276 + }, + { + "name": "minecraft:diamond_shovel", + "id": 317, + "oldId": 277 + }, + { + "name": "minecraft:diamond_pickaxe", + "id": 318, + "oldId": 278 + }, + { + "name": "minecraft:diamond_axe", + "id": 319, + "oldId": 279 + }, + { + "name": "minecraft:stick", + "id": 320, + "oldId": 280 + }, + { + "name": "minecraft:bowl", + "id": 321, + "oldId": 281 + }, + { + "name": "minecraft:golden_sword", + "id": 322, + "oldId": 283 + }, + { + "name": "minecraft:golden_shovel", + "id": 323, + "oldId": 284 + }, + { + "name": "minecraft:golden_pickaxe", + "id": 324, + "oldId": 285 + }, + { + "name": "minecraft:golden_axe", + "id": 325, + "oldId": 286 + }, + { + "name": "minecraft:string", + "id": 326, + "oldId": 287 + }, + { + "name": "minecraft:feather", + "id": 327, + "oldId": 288 + }, + { + "name": "minecraft:gunpowder", + "id": 328, + "oldId": 289 + }, + { + "name": "minecraft:wooden_hoe", + "id": 329, + "oldId": 290 + }, + { + "name": "minecraft:stone_hoe", + "id": 330, + "oldId": 291 + }, + { + "name": "minecraft:iron_hoe", + "id": 331, + "oldId": 292 + }, + { + "name": "minecraft:diamond_hoe", + "id": 332, + "oldId": 293 + }, + { + "name": "minecraft:golden_hoe", + "id": 333, + "oldId": 294 + }, + { + "name": "minecraft:wheat", + "id": 334, + "oldId": 296 + }, + { + "name": "minecraft:leather_helmet", + "id": 335, + "oldId": 298 + }, + { + "name": "minecraft:leather_chestplate", + "id": 336, + "oldId": 299 + }, + { + "name": "minecraft:leather_leggings", + "id": 337, + "oldId": 300 + }, + { + "name": "minecraft:leather_boots", + "id": 338, + "oldId": 301 + }, + { + "name": "minecraft:chainmail_helmet", + "id": 339, + "oldId": 302 + }, + { + "name": "minecraft:chainmail_chestplate", + "id": 340, + "oldId": 303 + }, + { + "name": "minecraft:chainmail_leggings", + "id": 341, + "oldId": 304 + }, + { + "name": "minecraft:chainmail_boots", + "id": 342, + "oldId": 305 + }, + { + "name": "minecraft:iron_helmet", + "id": 343, + "oldId": 306 + }, + { + "name": "minecraft:iron_chestplate", + "id": 344, + "oldId": 307 + }, + { + "name": "minecraft:iron_leggings", + "id": 345, + "oldId": 308 + }, + { + "name": "minecraft:iron_boots", + "id": 346, + "oldId": 309 + }, + { + "name": "minecraft:diamond_helmet", + "id": 347, + "oldId": 310 + }, + { + "name": "minecraft:diamond_chestplate", + "id": 348, + "oldId": 311 + }, + { + "name": "minecraft:diamond_leggings", + "id": 349, + "oldId": 312 + }, + { + "name": "minecraft:diamond_boots", + "id": 350, + "oldId": 313 + }, + { + "name": "minecraft:golden_helmet", + "id": 351, + "oldId": 314 + }, + { + "name": "minecraft:golden_chestplate", + "id": 352, + "oldId": 315 + }, + { + "name": "minecraft:golden_leggings", + "id": 353, + "oldId": 316 + }, + { + "name": "minecraft:golden_boots", + "id": 354, + "oldId": 317 + }, + { + "name": "minecraft:shield", + "id": 355, + "oldId": 513 + }, + { + "name": "minecraft:flint", + "id": 356, + "oldId": 318 + }, + { + "name": "minecraft:painting", + "id": 357, + "oldId": 321 + }, + { + "name": "minecraft:oak_sign", + "id": 358, + "oldId": 323 + }, + { + "name": "minecraft:wooden_door", + "id": 359, + "oldId": 324 + }, + { + "name": "minecraft:bucket", + "id": 360, + "oldId": 325, + "oldData": 0 + }, + { + "name": "minecraft:milk_bucket", + "id": 361, + "oldId": 325, + "oldData": 1 + }, + { + "name": "minecraft:water_bucket", + "id": 362, + "oldId": 325, + "oldData": 8 + }, + { + "name": "minecraft:lava_bucket", + "id": 363, + "oldId": 325, + "oldData": 10 + }, + { + "name": "minecraft:cod_bucket", + "id": 364, + "oldId": 325, + "oldData": 2 + }, + { + "name": "minecraft:salmon_bucket", + "id": 365, + "oldId": 325, + "oldData": 3 + }, + { + "name": "minecraft:tropical_fish_bucket", + "id": 366, + "oldId": 325, + "oldData": 4 + }, + { + "name": "minecraft:pufferfish_bucket", + "id": 367, + "oldId": 325, + "oldData": 5 + }, + { + "name": "minecraft:minecart", + "id": 370, + "oldId": 328 + }, + { + "name": "minecraft:saddle", + "id": 371, + "oldId": 329 + }, + { + "name": "minecraft:iron_door", + "id": 372, + "oldId": 330 + }, + { + "name": "minecraft:redstone", + "id": 373, + "oldId": 331 + }, + { + "name": "minecraft:snowball", + "id": 374, + "oldId": 332 + }, + { + "name": "minecraft:oak_boat", + "id": 375, + "oldId": 333, + "oldData": 0 + }, + { + "name": "minecraft:birch_boat", + "id": 376, + "oldId": 333, + "oldData": 2 + }, + { + "name": "minecraft:jungle_boat", + "id": 377, + "oldId": 333, + "oldData": 3 + }, + { + "name": "minecraft:spruce_boat", + "id": 378, + "oldId": 333, + "oldData": 1 + }, + { + "name": "minecraft:acacia_boat", + "id": 379, + "oldId": 333, + "oldData": 4 + }, + { + "name": "minecraft:dark_oak_boat", + "id": 380, + "oldId": 333, + "oldData": 5 + }, + { + "name": "minecraft:leather", + "id": 381, + "oldId": 334 + }, + { + "name": "minecraft:kelp", + "id": 382, + "oldId": 335 + }, + { + "name": "minecraft:brick", + "id": 383, + "oldId": 336 + }, + { + "name": "minecraft:clay_ball", + "id": 384, + "oldId": 337 + }, + { + "name": "minecraft:sugar_cane", + "id": 385, + "oldId": 338 + }, + { + "name": "minecraft:paper", + "id": 386, + "oldId": 339 + }, + { + "name": "minecraft:book", + "id": 387, + "oldId": 340 + }, + { + "name": "minecraft:slime_ball", + "id": 388, + "oldId": 341 + }, + { + "name": "minecraft:chest_minecart", + "id": 389, + "oldId": 342 + }, + { + "name": "minecraft:egg", + "id": 390, + "oldId": 344 + }, + { + "name": "minecraft:compass", + "id": 391, + "oldId": 345 + }, + { + "name": "minecraft:fishing_rod", + "id": 392, + "oldId": 346 + }, + { + "name": "minecraft:clock", + "id": 393, + "oldId": 347 + }, + { + "name": "minecraft:glowstone_dust", + "id": 394, + "oldId": 348 + }, + { + "name": "minecraft:black_dye", + "id": 395, + "oldId": 351, + "oldData": 16 + }, + { + "name": "minecraft:red_dye", + "id": 396, + "oldId": 351, + "oldData": 1 + }, + { + "name": "minecraft:green_dye", + "id": 397, + "oldId": 351, + "oldData": 2 + }, + { + "name": "minecraft:brown_dye", + "id": 398, + "oldId": 351, + "oldData": 17 + }, + { + "name": "minecraft:blue_dye", + "id": 399, + "oldId": 351, + "oldData": 18 + }, + { + "name": "minecraft:purple_dye", + "id": 400, + "oldId": 351, + "oldData": 5 + }, + { + "name": "minecraft:cyan_dye", + "id": 401, + "oldId": 351, + "oldData": 6 + }, + { + "name": "minecraft:light_gray_dye", + "id": 402, + "oldId": 351, + "oldData": 7 + }, + { + "name": "minecraft:gray_dye", + "id": 403, + "oldId": 351, + "oldData": 8 + }, + { + "name": "minecraft:pink_dye", + "id": 404, + "oldId": 351, + "oldData": 9 + }, + { + "name": "minecraft:lime_dye", + "id": 405, + "oldId": 351, + "oldData": 10 + }, + { + "name": "minecraft:yellow_dye", + "id": 406, + "oldId": 351, + "oldData": 11 + }, + { + "name": "minecraft:light_blue_dye", + "id": 407, + "oldId": 351, + "oldData": 12 + }, + { + "name": "minecraft:magenta_dye", + "id": 408, + "oldId": 351, + "oldData": 13 + }, + { + "name": "minecraft:orange_dye", + "id": 409, + "oldId": 351, + "oldData": 14 + }, + { + "name": "minecraft:white_dye", + "id": 410, + "oldId": 351, + "oldData": 19 + }, + { + "name": "minecraft:bone_meal", + "id": 411, + "oldId": 351, + "oldData": 15 + }, + { + "name": "minecraft:cocoa_beans", + "id": 412, + "oldId": 351, + "oldData": 3 + }, + { + "name": "minecraft:ink_sac", + "id": 413, + "oldId": 351, + "oldData": 0 + }, + { + "name": "minecraft:lapis_lazuli", + "id": 414, + "oldId": 351, + "oldData": 4 + }, + { + "name": "minecraft:bone", + "id": 415, + "oldId": 352 + }, + { + "name": "minecraft:sugar", + "id": 416, + "oldId": 353 + }, + { + "name": "minecraft:cake", + "id": 417, + "oldId": 354 + }, + { + "name": "minecraft:bed", + "id": 418, + "oldId": 355 + }, + { + "name": "minecraft:repeater", + "id": 419, + "oldId": 356 + }, + { + "name": "minecraft:filled_map", + "id": 420, + "oldId": 358 + }, + { + "name": "minecraft:shears", + "id": 421, + "oldId": 359 + }, + { + "name": "minecraft:ender_pearl", + "id": 422, + "oldId": 368 + }, + { + "name": "minecraft:blaze_rod", + "id": 423, + "oldId": 369 + }, + { + "name": "minecraft:ghast_tear", + "id": 424, + "oldId": 370 + }, + { + "name": "minecraft:gold_nugget", + "id": 425, + "oldId": 371 + }, + { + "name": "minecraft:potion", + "id": 426, + "oldId": 373 + }, + { + "name": "minecraft:glass_bottle", + "id": 427, + "oldId": 374 + }, + { + "name": "minecraft:fermented_spider_eye", + "id": 428, + "oldId": 376 + }, + { + "name": "minecraft:blaze_powder", + "id": 429, + "oldId": 377 + }, + { + "name": "minecraft:magma_cream", + "id": 430, + "oldId": 378 + }, + { + "name": "minecraft:brewing_stand", + "id": 431, + "oldId": 379 + }, + { + "name": "minecraft:cauldron", + "id": 432, + "oldId": 380 + }, + { + "name": "minecraft:ender_eye", + "id": 433, + "oldId": 381 + }, + { + "name": "minecraft:glistering_melon_slice", + "id": 434, + "oldId": 382 + }, + { + "name": "minecraft:spawn_egg", + "id": 628, + "oldId": 383 + }, + { + "name": "minecraft:chicken_spawn_egg", + "id": 435, + "oldId": 383, + "oldData": 10 + }, + { + "name": "minecraft:cow_spawn_egg", + "id": 436, + "oldId": 383, + "oldData": 11 + }, + { + "name": "minecraft:pig_spawn_egg", + "id": 437, + "oldId": 383, + "oldData": 12 + }, + { + "name": "minecraft:sheep_spawn_egg", + "id": 438, + "oldId": 383, + "oldData": 13 + }, + { + "name": "minecraft:wolf_spawn_egg", + "id": 439, + "oldId": 383, + "oldData": 14 + }, + { + "name": "minecraft:mooshroom_spawn_egg", + "id": 440, + "oldId": 383, + "oldData": 16 + }, + { + "name": "minecraft:creeper_spawn_egg", + "id": 441, + "oldId": 383, + "oldData": 33 + }, + { + "name": "minecraft:enderman_spawn_egg", + "id": 442, + "oldId": 383, + "oldData": 38 + }, + { + "name": "minecraft:silverfish_spawn_egg", + "id": 443, + "oldId": 383, + "oldData": 39 + }, + { + "name": "minecraft:skeleton_spawn_egg", + "id": 444, + "oldId": 383, + "oldData": 34 + }, + { + "name": "minecraft:slime_spawn_egg", + "id": 445, + "oldId": 383, + "oldData": 37 + }, + { + "name": "minecraft:spider_spawn_egg", + "id": 446, + "oldId": 383, + "oldData": 35 + }, + { + "name": "minecraft:zombie_spawn_egg", + "id": 447, + "oldId": 383, + "oldData": 32 + }, + { + "name": "minecraft:zombie_pigman_spawn_egg", + "id": 448, + "oldId": 383, + "oldData": 36 + }, + { + "name": "minecraft:villager_spawn_egg", + "id": 449, + "oldId": 383, + "oldData": 15 + }, + { + "name": "minecraft:squid_spawn_egg", + "id": 450, + "oldId": 383, + "oldData": 17 + }, + { + "name": "minecraft:ocelot_spawn_egg", + "id": 451, + "oldId": 383, + "oldData": 22 + }, + { + "name": "minecraft:witch_spawn_egg", + "id": 452, + "oldId": 383, + "oldData": 45 + }, + { + "name": "minecraft:bat_spawn_egg", + "id": 453, + "oldId": 383, + "oldData": 19 + }, + { + "name": "minecraft:ghast_spawn_egg", + "id": 454, + "oldId": 383, + "oldData": 41 + }, + { + "name": "minecraft:magma_cube_spawn_egg", + "id": 455, + "oldId": 383, + "oldData": 42 + }, + { + "name": "minecraft:blaze_spawn_egg", + "id": 456, + "oldId": 383, + "oldData": 43 + }, + { + "name": "minecraft:cave_spider_spawn_egg", + "id": 457, + "oldId": 383, + "oldData": 40 + }, + { + "name": "minecraft:horse_spawn_egg", + "id": 458, + "oldId": 383, + "oldData": 23 + }, + { + "name": "minecraft:rabbit_spawn_egg", + "id": 459, + "oldId": 383, + "oldData": 18 + }, + { + "name": "minecraft:endermite_spawn_egg", + "id": 460, + "oldId": 383, + "oldData": 55 + }, + { + "name": "minecraft:guardian_spawn_egg", + "id": 461, + "oldId": 383, + "oldData": 49 + }, + { + "name": "minecraft:stray_spawn_egg", + "id": 462, + "oldId": 383, + "oldData": 46 + }, + { + "name": "minecraft:husk_spawn_egg", + "id": 463, + "oldId": 383, + "oldData": 47 + }, + { + "name": "minecraft:wither_skeleton_spawn_egg", + "id": 464, + "oldId": 383, + "oldData": 48 + }, + { + "name": "minecraft:donkey_spawn_egg", + "id": 465, + "oldId": 383, + "oldData": 24 + }, + { + "name": "minecraft:mule_spawn_egg", + "id": 466, + "oldId": 383, + "oldData": 25 + }, + { + "name": "minecraft:skeleton_horse_spawn_egg", + "id": 467, + "oldId": 383, + "oldData": 26 + }, + { + "name": "minecraft:zombie_horse_spawn_egg", + "id": 468, + "oldId": 383, + "oldData": 27 + }, + { + "name": "minecraft:shulker_spawn_egg", + "id": 469, + "oldId": 383, + "oldData": 54 + }, + { + "name": "minecraft:npc_spawn_egg", + "id": 470, + "oldId": 383, + "oldData": 51 + }, + { + "name": "minecraft:elder_guardian_spawn_egg", + "id": 471, + "oldId": 383, + "oldData": 50 + }, + { + "name": "minecraft:polar_bear_spawn_egg", + "id": 472, + "oldId": 383, + "oldData": 28 + }, + { + "name": "minecraft:llama_spawn_egg", + "id": 473, + "oldId": 383, + "oldData": 29 + }, + { + "name": "minecraft:vindicator_spawn_egg", + "id": 474, + "oldId": 383, + "oldData": 57 + }, + { + "name": "minecraft:evoker_spawn_egg", + "id": 475, + "oldId": 383, + "oldData": 104 + }, + { + "name": "minecraft:vex_spawn_egg", + "id": 476, + "oldId": 383, + "oldData": 105 + }, + { + "name": "minecraft:zombie_villager_spawn_egg", + "id": 477, + "oldId": 383, + "oldData": 44 + }, + { + "name": "minecraft:parrot_spawn_egg", + "id": 478, + "oldId": 383, + "oldData": 30 + }, + { + "name": "minecraft:tropical_fish_spawn_egg", + "id": 479, + "oldId": 383, + "oldData": 111 + }, + { + "name": "minecraft:cod_spawn_egg", + "id": 480, + "oldId": 383, + "oldData": 112 + }, + { + "name": "minecraft:pufferfish_spawn_egg", + "id": 481, + "oldId": 383, + "oldData": 108 + }, + { + "name": "minecraft:salmon_spawn_egg", + "id": 482, + "oldId": 383, + "oldData": 109 + }, + { + "name": "minecraft:drowned_spawn_egg", + "id": 483, + "oldId": 383, + "oldData": 110 + }, + { + "name": "minecraft:dolphin_spawn_egg", + "id": 484, + "oldId": 383, + "oldData": 31 + }, + { + "name": "minecraft:turtle_spawn_egg", + "id": 485, + "oldId": 383, + "oldData": 74 + }, + { + "name": "minecraft:phantom_spawn_egg", + "id": 486, + "oldId": 383, + "oldData": 58 + }, + { + "name": "minecraft:agent_spawn_egg", + "id": 487, + "oldId": 383, + "oldData": 56 + }, + { + "name": "minecraft:cat_spawn_egg", + "id": 488, + "oldId": 383, + "oldData": 75 + }, + { + "name": "minecraft:panda_spawn_egg", + "id": 489, + "oldId": 383, + "oldData": 113 + }, + { + "name": "minecraft:fox_spawn_egg", + "id": 490, + "oldId": 383, + "oldData": 121 + }, + { + "name": "minecraft:pillager_spawn_egg", + "id": 491, + "oldId": 383, + "oldData": 114 + }, + { + "name": "minecraft:wandering_trader_spawn_egg", + "id": 492, + "oldId": 383, + "oldData": 118 + }, + { + "name": "minecraft:ravager_spawn_egg", + "id": 493, + "oldId": 383, + "oldData": 59 + }, + { + "name": "minecraft:bee_spawn_egg", + "id": 494, + "oldId": 383, + "oldData": 122 + }, + { + "name": "minecraft:strider_spawn_egg", + "id": 495, + "oldId": 383, + "oldData": 125 + }, + { + "name": "minecraft:hoglin_spawn_egg", + "id": 496, + "oldId": 383, + "oldData": 124 + }, + { + "name": "minecraft:piglin_spawn_egg", + "id": 497, + "oldId": 383, + "oldData": 123 + }, + { + "name": "minecraft:zoglin_spawn_egg", + "id": 498, + "oldId": 383, + "oldData": 126 + }, + { + "name": "minecraft:piglin_brute_spawn_egg", + "id": 499, + "oldId": 383, + "oldData": 127 + }, + { + "name": "minecraft:axolotl_spawn_egg", + "id": 500, + "oldId": 383, + "oldData": 130 + }, + { + "name": "minecraft:goat_spawn_egg", + "id": 501, + "oldId": 383, + "oldData": 128 + }, + { + "name": "minecraft:glow_squid_spawn_egg", + "id": 502, + "oldId": 383, + "oldData": 129 + }, + { + "name": "minecraft:experience_bottle", + "id": 508, + "oldId": 384 + }, + { + "name": "minecraft:fire_charge", + "id": 509, + "oldId": 385 + }, + { + "name": "minecraft:writable_book", + "id": 510, + "oldId": 386 + }, + { + "name": "minecraft:written_book", + "id": 511, + "oldId": 387 + }, + { + "name": "minecraft:emerald", + "id": 512, + "oldId": 388 + }, + { + "name": "minecraft:frame", + "id": 513, + "oldId": 389 + }, + { + "name": "minecraft:flower_pot", + "id": 514, + "oldId": 390 + }, + { + "name": "minecraft:empty_map", + "id": 515, + "oldId": 395 + }, + { + "name": "minecraft:skull", + "id": 516, + "oldId": 397 + }, + { + "name": "minecraft:carrot_on_a_stick", + "id": 517, + "oldId": 398 + }, + { + "name": "minecraft:nether_star", + "id": 518, + "oldId": 399 + }, + { + "name": "minecraft:firework_rocket", + "id": 519, + "oldId": 401 + }, + { + "name": "minecraft:firework_star", + "id": 520, + "oldId": 402 + }, + { + "name": "minecraft:enchanted_book", + "id": 521, + "oldId": 403 + }, + { + "name": "minecraft:comparator", + "id": 522, + "oldId": 404 + }, + { + "name": "minecraft:netherbrick", + "id": 523, + "oldId": 405 + }, + { + "name": "minecraft:quartz", + "id": 524, + "oldId": 406 + }, + { + "name": "minecraft:tnt_minecart", + "id": 525, + "oldId": 407 + }, + { + "name": "minecraft:hopper_minecart", + "id": 526, + "oldId": 408 + }, + { + "name": "minecraft:hopper", + "id": 527, + "oldId": 410 + }, + { + "name": "minecraft:rabbit_foot", + "id": 528, + "oldId": 414 + }, + { + "name": "minecraft:rabbit_hide", + "id": 529, + "oldId": 415 + }, + { + "name": "minecraft:leather_horse_armor", + "id": 530, + "oldId": 416 + }, + { + "name": "minecraft:iron_horse_armor", + "id": 531, + "oldId": 417 + }, + { + "name": "minecraft:golden_horse_armor", + "id": 532, + "oldId": 418 + }, + { + "name": "minecraft:diamond_horse_armor", + "id": 533, + "oldId": 419 + }, + { + "name": "minecraft:music_disc_13", + "id": 534, + "oldId": 500 + }, + { + "name": "minecraft:music_disc_cat", + "id": 535, + "oldId": 501 + }, + { + "name": "minecraft:music_disc_blocks", + "id": 536, + "oldId": 502 + }, + { + "name": "minecraft:music_disc_chirp", + "id": 537, + "oldId": 503 + }, + { + "name": "minecraft:music_disc_far", + "id": 538, + "oldId": 504 + }, + { + "name": "minecraft:music_disc_mall", + "id": 539, + "oldId": 505 + }, + { + "name": "minecraft:music_disc_mellohi", + "id": 540, + "oldId": 506 + }, + { + "name": "minecraft:music_disc_stal", + "id": 541, + "oldId": 507 + }, + { + "name": "minecraft:music_disc_strad", + "id": 542, + "oldId": 508 + }, + { + "name": "minecraft:music_disc_ward", + "id": 543, + "oldId": 509 + }, + { + "name": "minecraft:music_disc_11", + "id": 544, + "oldId": 510 + }, + { + "name": "minecraft:music_disc_wait", + "id": 545, + "oldId": 511 + }, + { + "name": "minecraft:trident", + "id": 546, + "oldId": 455 + }, + { + "name": "minecraft:lead", + "id": 547, + "oldId": 420 + }, + { + "name": "minecraft:name_tag", + "id": 548, + "oldId": 421 + }, + { + "name": "minecraft:prismarine_crystals", + "id": 549, + "oldId": 422 + }, + { + "name": "minecraft:mutton", + "id": 550, + "oldId": 423 + }, + { + "name": "minecraft:cooked_mutton", + "id": 551, + "oldId": 424 + }, + { + "name": "minecraft:armor_stand", + "id": 552, + "oldId": 425 + }, + { + "name": "minecraft:spruce_door", + "id": 553, + "oldId": 427 + }, + { + "name": "minecraft:birch_door", + "id": 554, + "oldId": 428 + }, + { + "name": "minecraft:jungle_door", + "id": 555, + "oldId": 429 + }, + { + "name": "minecraft:acacia_door", + "id": 556, + "oldId": 430 + }, + { + "name": "minecraft:dark_oak_door", + "id": 557, + "oldId": 431 + }, + { + "name": "minecraft:chorus_fruit", + "id": 558, + "oldId": 432 + }, + { + "name": "minecraft:popped_chorus_fruit", + "id": 559, + "oldId": 433 + }, + { + "name": "minecraft:dragon_breath", + "id": 560, + "oldId": 437 + }, + { + "name": "minecraft:splash_potion", + "id": 561, + "oldId": 438 + }, + { + "name": "minecraft:lingering_potion", + "id": 562, + "oldId": 441 + }, + { + "name": "minecraft:command_block_minecart", + "id": 563, + "oldId": 443 + }, + { + "name": "minecraft:elytra", + "id": 564, + "oldId": 444 + }, + { + "name": "minecraft:prismarine_shard", + "id": 565, + "oldId": 409 + }, + { + "name": "minecraft:shulker_shell", + "id": 566, + "oldId": 445 + }, + { + "name": "minecraft:banner", + "id": 567, + "oldId": 446 + }, + { + "name": "minecraft:totem_of_undying", + "id": 568, + "oldId": 450 + }, + { + "name": "minecraft:iron_nugget", + "id": 569, + "oldId": 452 + }, + { + "name": "minecraft:nautilus_shell", + "id": 570, + "oldId": 465 + }, + { + "name": "minecraft:heart_of_the_sea", + "id": 571, + "oldId": 467 + }, + { + "name": "minecraft:scute", + "id": 572, + "oldId": 468 + }, + { + "name": "minecraft:turtle_helmet", + "id": 573, + "oldId": 469 + }, + { + "name": "minecraft:phantom_membrane", + "id": 574, + "oldId": 470 + }, + { + "name": "minecraft:crossbow", + "id": 575, + "oldId": 471 + }, + { + "name": "minecraft:spruce_sign", + "id": 576, + "oldId": 472 + }, + { + "name": "minecraft:birch_sign", + "id": 577, + "oldId": 473 + }, + { + "name": "minecraft:jungle_sign", + "id": 578, + "oldId": 474 + }, + { + "name": "minecraft:acacia_sign", + "id": 579, + "oldId": 475 + }, + { + "name": "minecraft:dark_oak_sign", + "id": 580, + "oldId": 476 + }, + { + "name": "minecraft:flower_banner_pattern", + "id": 581, + "oldId": 434, + "oldData": 2 + }, + { + "name": "minecraft:creeper_banner_pattern", + "id": 582, + "oldId": 434, + "oldData": 0 + }, + { + "name": "minecraft:skull_banner_pattern", + "id": 583, + "oldId": 434, + "oldData": 1 + }, + { + "name": "minecraft:mojang_banner_pattern", + "id": 584, + "oldId": 434, + "oldData": 3 + }, + { + "name": "minecraft:field_masoned_banner_pattern", + "id": 585, + "oldId": 434, + "oldData": 4 + }, + { + "name": "minecraft:bordure_indented_banner_pattern", + "id": 586, + "oldId": 434, + "oldData": 5 + }, + { + "name": "minecraft:piglin_banner_pattern", + "id": 587, + "oldId": 434, + "oldData": 6 + }, + { + "name": "minecraft:campfire", + "id": 588, + "oldId": 720 + }, + { + "name": "minecraft:suspicious_stew", + "id": 589, + "oldId": 734 + }, + { + "name": "minecraft:honeycomb", + "id": 590, + "oldId": 736 + }, + { + "name": "minecraft:honey_bottle", + "id": 591, + "oldId": 737 + }, + { + "name": "minecraft:camera", + "id": 592, + "oldId": 498 + }, + { + "name": "minecraft:compound", + "id": 593, + "oldId": 499 + }, + { + "name": "minecraft:ice_bomb", + "id": 594, + "oldId": 453 + }, + { + "name": "minecraft:bleach", + "id": 595, + "oldId": 451 + }, + { + "name": "minecraft:rapid_fertilizer", + "id": 596, + "oldId": 449 + }, + { + "name": "minecraft:balloon", + "id": 597, + "oldId": 448 + }, + { + "name": "minecraft:medicine", + "id": 598, + "oldId": 447 + }, + { + "name": "minecraft:sparkler", + "id": 599, + "oldId": 442 + }, + { + "name": "minecraft:lodestone_compass", + "id": 600, + "oldId": 741 + }, + { + "name": "minecraft:netherite_ingot", + "id": 601, + "oldId": 742 + }, + { + "name": "minecraft:netherite_sword", + "id": 602, + "oldId": 743 + }, + { + "name": "minecraft:netherite_shovel", + "id": 603, + "oldId": 744 + }, + { + "name": "minecraft:netherite_pickaxe", + "id": 604, + "oldId": 745 + }, + { + "name": "minecraft:netherite_axe", + "id": 605, + "oldId": 746 + }, + { + "name": "minecraft:netherite_hoe", + "id": 606, + "oldId": 747 + }, + { + "name": "minecraft:netherite_helmet", + "id": 607, + "oldId": 748 + }, + { + "name": "minecraft:netherite_chestplate", + "id": 608, + "oldId": 749 + }, + { + "name": "minecraft:netherite_leggings", + "id": 609, + "oldId": 750 + }, + { + "name": "minecraft:netherite_boots", + "id": 610, + "oldId": 751 + }, + { + "name": "minecraft:netherite_scrap", + "id": 611, + "oldId": 752 + }, + { + "name": "minecraft:crimson_sign", + "id": 612, + "oldId": 753 + }, + { + "name": "minecraft:warped_sign", + "id": 613, + "oldId": 754 + }, + { + "name": "minecraft:crimson_door", + "id": 614, + "oldId": 755 + }, + { + "name": "minecraft:warped_door", + "id": 615, + "oldId": 756 + }, + { + "name": "minecraft:warped_fungus_on_a_stick", + "id": 616, + "oldId": 757 + }, + { + "name": "minecraft:chain", + "id": 617, + "oldId": 758 + }, + { + "name": "minecraft:music_disc_pigstep", + "id": 618, + "oldId": 759 + }, + { + "name": "minecraft:nether_sprouts", + "id": 619, + "oldId": 760 + }, + { + "name": "minecraft:soul_campfire", + "id": 620, + "oldId": 801 + }, + { + "name": "minecraft:boat", + "id": 625, + "oldId": 333, + "deprecated": true + }, + { + "name": "minecraft:dye", + "id": 626, + "oldId": 351, + "deprecated": true + }, + { + "name": "minecraft:banner_pattern", + "id": 627, + "oldId": 434, + "deprecated": true + }, + { + "name": "minecraft:end_crystal", + "id": 629, + "oldId": 426 + } +] diff --git a/src/test/resources/required_item_list.json b/src/test/resources/required_item_list.json index 0e2c06b89cd..7594a09d1b6 100644 --- a/src/test/resources/required_item_list.json +++ b/src/test/resources/required_item_list.json @@ -64,7 +64,7 @@ "component_based": false }, "minecraft:amethyst_shard": { - "runtime_id": 624, + "runtime_id": 623, "component_based": false }, "minecraft:ancient_debris": { @@ -116,7 +116,7 @@ "component_based": false }, "minecraft:balloon": { - "runtime_id": 598, + "runtime_id": 597, "component_based": false }, "minecraft:bamboo": { @@ -132,7 +132,7 @@ "component_based": false }, "minecraft:banner_pattern": { - "runtime_id": 628, + "runtime_id": 627, "component_based": false }, "minecraft:barrel": { @@ -292,7 +292,15 @@ "component_based": false }, "minecraft:bleach": { - "runtime_id": 596, + "runtime_id": 595, + "component_based": false + }, + "minecraft:blue_candle": { + "runtime_id": -424, + "component_based": false + }, + "minecraft:blue_candle_cake": { + "runtime_id": -441, "component_based": false }, "minecraft:blue_candle": { @@ -316,7 +324,7 @@ "component_based": false }, "minecraft:boat": { - "runtime_id": 626, + "runtime_id": 625, "component_based": false }, "minecraft:bone": { @@ -428,7 +436,7 @@ "component_based": false }, "minecraft:camera": { - "runtime_id": 593, + "runtime_id": 592, "component_based": false }, "minecraft:campfire": { @@ -492,7 +500,7 @@ "component_based": false }, "minecraft:chain": { - "runtime_id": 618, + "runtime_id": 617, "component_based": false }, "minecraft:chain_command_block": { @@ -575,6 +583,10 @@ "runtime_id": 384, "component_based": false }, + "minecraft:client_request_placeholder_block": { + "runtime_id": -465, + "component_based": false + }, "minecraft:clock": { "runtime_id": 393, "component_based": false @@ -668,7 +680,7 @@ "component_based": false }, "minecraft:compound": { - "runtime_id": 594, + "runtime_id": 593, "component_based": false }, "minecraft:concrete": { @@ -792,7 +804,7 @@ "component_based": false }, "minecraft:crimson_door": { - "runtime_id": 615, + "runtime_id": 614, "component_based": false }, "minecraft:crimson_double_slab": { @@ -832,7 +844,7 @@ "component_based": false }, "minecraft:crimson_sign": { - "runtime_id": 613, + "runtime_id": 612, "component_based": false }, "minecraft:crimson_slab": { @@ -1168,7 +1180,7 @@ "component_based": false }, "minecraft:dye": { - "runtime_id": 627, + "runtime_id": 626, "component_based": false }, "minecraft:egg": { @@ -1696,7 +1708,7 @@ "component_based": false }, "minecraft:end_crystal": { - "runtime_id": 630, + "runtime_id": 629, "component_based": false }, "minecraft:end_gateway": { @@ -1892,11 +1904,11 @@ "component_based": false }, "minecraft:glow_berries": { - "runtime_id": 631, + "runtime_id": 630, "component_based": false }, "minecraft:glow_frame": { - "runtime_id": 622, + "runtime_id": 621, "component_based": false }, "minecraft:glow_ink_sac": { @@ -1928,7 +1940,7 @@ "component_based": false }, "minecraft:goat_horn": { - "runtime_id": 623, + "runtime_id": 622, "component_based": false }, "minecraft:goat_spawn_egg": { @@ -2108,11 +2120,11 @@ "component_based": false }, "minecraft:honey_bottle": { - "runtime_id": 592, + "runtime_id": 591, "component_based": false }, "minecraft:honeycomb": { - "runtime_id": 591, + "runtime_id": 590, "component_based": false }, "minecraft:honeycomb_block": { @@ -2140,7 +2152,7 @@ "component_based": false }, "minecraft:ice_bomb": { - "runtime_id": 595, + "runtime_id": 594, "component_based": false }, "minecraft:infested_deepslate": { @@ -2568,7 +2580,7 @@ "component_based": false }, "minecraft:lodestone_compass": { - "runtime_id": 601, + "runtime_id": 600, "component_based": false }, "minecraft:log": { @@ -2612,7 +2624,7 @@ "component_based": false }, "minecraft:medicine": { - "runtime_id": 599, + "runtime_id": 598, "component_based": false }, "minecraft:medium_amethyst_bud": { @@ -2724,7 +2736,7 @@ "component_based": false }, "minecraft:music_disc_pigstep": { - "runtime_id": 619, + "runtime_id": 618, "component_based": false }, "minecraft:music_disc_stal": { @@ -2751,6 +2763,14 @@ "runtime_id": 110, "component_based": false }, + "minecraft:mysterious_frame": { + "runtime_id": -466, + "component_based": false + }, + "minecraft:mysterious_frame_slot": { + "runtime_id": -467, + "component_based": false + }, "minecraft:name_tag": { "runtime_id": 548, "component_based": false @@ -2776,7 +2796,7 @@ "component_based": false }, "minecraft:nether_sprouts": { - "runtime_id": 620, + "runtime_id": 619, "component_based": false }, "minecraft:nether_star": { @@ -2796,7 +2816,7 @@ "component_based": false }, "minecraft:netherite_axe": { - "runtime_id": 606, + "runtime_id": 605, "component_based": false }, "minecraft:netherite_block": { @@ -2804,43 +2824,43 @@ "component_based": false }, "minecraft:netherite_boots": { - "runtime_id": 611, + "runtime_id": 610, "component_based": false }, "minecraft:netherite_chestplate": { - "runtime_id": 609, + "runtime_id": 608, "component_based": false }, "minecraft:netherite_helmet": { - "runtime_id": 608, + "runtime_id": 607, "component_based": false }, "minecraft:netherite_hoe": { - "runtime_id": 607, + "runtime_id": 606, "component_based": false }, "minecraft:netherite_ingot": { - "runtime_id": 602, + "runtime_id": 601, "component_based": false }, "minecraft:netherite_leggings": { - "runtime_id": 610, + "runtime_id": 609, "component_based": false }, "minecraft:netherite_pickaxe": { - "runtime_id": 605, + "runtime_id": 604, "component_based": false }, "minecraft:netherite_scrap": { - "runtime_id": 612, + "runtime_id": 611, "component_based": false }, "minecraft:netherite_shovel": { - "runtime_id": 604, + "runtime_id": 603, "component_based": false }, "minecraft:netherite_sword": { - "runtime_id": 603, + "runtime_id": 602, "component_based": false }, "minecraft:netherrack": { @@ -3256,7 +3276,7 @@ "component_based": false }, "minecraft:rapid_fertilizer": { - "runtime_id": 597, + "runtime_id": 596, "component_based": false }, "minecraft:ravager_spawn_egg": { @@ -3427,10 +3447,26 @@ "runtime_id": -165, "component_based": false }, + "minecraft:sculk": { + "runtime_id": -458, + "component_based": false + }, + "minecraft:sculk_catalyst": { + "runtime_id": -460, + "component_based": false + }, "minecraft:sculk_sensor": { "runtime_id": -307, "component_based": false }, + "minecraft:sculk_shrieker": { + "runtime_id": -461, + "component_based": false + }, + "minecraft:sculk_vein": { + "runtime_id": -459, + "component_based": false + }, "minecraft:scute": { "runtime_id": 572, "component_based": false @@ -3560,7 +3596,7 @@ "component_based": false }, "minecraft:soul_campfire": { - "runtime_id": 621, + "runtime_id": 620, "component_based": false }, "minecraft:soul_fire": { @@ -3584,11 +3620,11 @@ "component_based": false }, "minecraft:sparkler": { - "runtime_id": 600, + "runtime_id": 599, "component_based": false }, "minecraft:spawn_egg": { - "runtime_id": 629, + "runtime_id": 628, "component_based": false }, "minecraft:spider_eye": { @@ -3652,7 +3688,7 @@ "component_based": false }, "minecraft:spyglass": { - "runtime_id": 625, + "runtime_id": 624, "component_based": false }, "minecraft:squid_spawn_egg": { @@ -3960,7 +3996,7 @@ "component_based": false }, "minecraft:warped_door": { - "runtime_id": 616, + "runtime_id": 615, "component_based": false }, "minecraft:warped_double_slab": { @@ -3980,7 +4016,7 @@ "component_based": false }, "minecraft:warped_fungus_on_a_stick": { - "runtime_id": 617, + "runtime_id": 616, "component_based": false }, "minecraft:warped_hyphae": { @@ -4004,7 +4040,7 @@ "component_based": false }, "minecraft:warped_sign": { - "runtime_id": 614, + "runtime_id": 613, "component_based": false }, "minecraft:warped_slab": { From 459f28f3b03835dfb9fd7eeefcca721b9edc5240 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 23 Oct 2021 17:58:18 -0300 Subject: [PATCH 236/394] Fixes HumanStringComparator not comparing last token when it has 1 char --- dumps/runtime_block_states.dat.dump.txt | 578 +++++++++++++++--- src/main/java/cn/nukkit/command/Command.java | 18 +- .../nukkit/utils/HumanStringComparator.java | 2 +- src/main/resources/command_default.json | 19 - src/main/resources/runtime_item_ids.json | 3 +- .../utils/HumanStringComparatorTest.java | 8 + 6 files changed, 526 insertions(+), 102 deletions(-) delete mode 100644 src/main/resources/command_default.json diff --git a/dumps/runtime_block_states.dat.dump.txt b/dumps/runtime_block_states.dat.dump.txt index 413cf597e5f..121d650dd0b 100644 --- a/dumps/runtime_block_states.dat.dump.txt +++ b/dumps/runtime_block_states.dat.dump.txt @@ -856,8 +856,16 @@ minecraft:barrier blockId=416 runtimeId=213 +minecraft:basalt;pillar_axis=x +blockId=489 +runtimeId=215 + minecraft:basalt;pillar_axis=y blockId=489 +runtimeId=214 + +minecraft:basalt;pillar_axis=z +blockId=489 runtimeId=216 minecraft:beacon @@ -2760,20 +2768,52 @@ minecraft:blue_ice blockId=266 runtimeId=691 +minecraft:bone_block;deprecated=0;pillar_axis=x +blockId=216 +runtimeId=696 + minecraft:bone_block;deprecated=0;pillar_axis=y blockId=216 +runtimeId=692 + +minecraft:bone_block;deprecated=0;pillar_axis=z +blockId=216 runtimeId=700 +minecraft:bone_block;deprecated=1;pillar_axis=x +blockId=216 +runtimeId=697 + minecraft:bone_block;deprecated=1;pillar_axis=y blockId=216 +runtimeId=693 + +minecraft:bone_block;deprecated=1;pillar_axis=z +blockId=216 runtimeId=701 +minecraft:bone_block;deprecated=2;pillar_axis=x +blockId=216 +runtimeId=698 + minecraft:bone_block;deprecated=2;pillar_axis=y blockId=216 +runtimeId=694 + +minecraft:bone_block;deprecated=2;pillar_axis=z +blockId=216 runtimeId=702 +minecraft:bone_block;deprecated=3;pillar_axis=x +blockId=216 +runtimeId=699 + minecraft:bone_block;deprecated=3;pillar_axis=y blockId=216 +runtimeId=695 + +minecraft:bone_block;deprecated=3;pillar_axis=z +blockId=216 runtimeId=703 minecraft:bookshelf @@ -4324,8 +4364,16 @@ minecraft:cave_vines_head_with_berries;growing_plant_age=25 blockId=631 runtimeId=1090 +minecraft:chain;pillar_axis=x +blockId=541 +runtimeId=1092 + minecraft:chain;pillar_axis=y blockId=541 +runtimeId=1091 + +minecraft:chain;pillar_axis=z +blockId=541 runtimeId=1093 minecraft:chain_command_block;conditional_bit=0;facing_direction=0 @@ -4513,7 +4561,7 @@ blockId=82 runtimeId=1139 minecraft:client_request_placeholder_block -blockId=-1 +blockId=720 runtimeId=1140 minecraft:coal_block @@ -15296,8 +15344,16 @@ minecraft:crimson_fungus blockId=483 runtimeId=3835 +minecraft:crimson_hyphae;pillar_axis=x +blockId=554 +runtimeId=3837 + minecraft:crimson_hyphae;pillar_axis=y blockId=554 +runtimeId=3836 + +minecraft:crimson_hyphae;pillar_axis=z +blockId=554 runtimeId=3838 minecraft:crimson_nylium @@ -15480,8 +15536,16 @@ minecraft:crimson_standing_sign;ground_sign_direction=15 blockId=505 runtimeId=3883 +minecraft:crimson_stem;pillar_axis=x +blockId=480 +runtimeId=3885 + minecraft:crimson_stem;pillar_axis=y blockId=480 +runtimeId=3884 + +minecraft:crimson_stem;pillar_axis=z +blockId=480 runtimeId=3886 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=0 @@ -16336,8 +16400,16 @@ minecraft:deadbush blockId=32 runtimeId=4099 +minecraft:deepslate;pillar_axis=x +blockId=633 +runtimeId=4101 + minecraft:deepslate;pillar_axis=y blockId=633 +runtimeId=4100 + +minecraft:deepslate;pillar_axis=z +blockId=633 runtimeId=4102 minecraft:deepslate_brick_double_slab;top_slot_bit=0 @@ -20264,20 +20336,52 @@ minecraft:hardened_clay blockId=172 runtimeId=5083 +minecraft:hay_block;deprecated=0;pillar_axis=x +blockId=170 +runtimeId=5088 + minecraft:hay_block;deprecated=0;pillar_axis=y blockId=170 +runtimeId=5084 + +minecraft:hay_block;deprecated=0;pillar_axis=z +blockId=170 runtimeId=5092 +minecraft:hay_block;deprecated=1;pillar_axis=x +blockId=170 +runtimeId=5089 + minecraft:hay_block;deprecated=1;pillar_axis=y blockId=170 +runtimeId=5085 + +minecraft:hay_block;deprecated=1;pillar_axis=z +blockId=170 runtimeId=5093 +minecraft:hay_block;deprecated=2;pillar_axis=x +blockId=170 +runtimeId=5090 + minecraft:hay_block;deprecated=2;pillar_axis=y blockId=170 +runtimeId=5086 + +minecraft:hay_block;deprecated=2;pillar_axis=z +blockId=170 runtimeId=5094 +minecraft:hay_block;deprecated=3;pillar_axis=x +blockId=170 +runtimeId=5091 + minecraft:hay_block;deprecated=3;pillar_axis=y blockId=170 +runtimeId=5087 + +minecraft:hay_block;deprecated=3;pillar_axis=z +blockId=170 runtimeId=5095 minecraft:heavy_weighted_pressure_plate;redstone_signal=0 @@ -20404,8 +20508,16 @@ minecraft:ice blockId=79 runtimeId=5126 +minecraft:infested_deepslate;pillar_axis=x +blockId=709 +runtimeId=5128 + minecraft:infested_deepslate;pillar_axis=y blockId=709 +runtimeId=5127 + +minecraft:infested_deepslate;pillar_axis=z +blockId=709 runtimeId=5129 minecraft:info_update @@ -22144,28 +22256,76 @@ minecraft:lodestone blockId=477 runtimeId=5563 +minecraft:log;old_log_type=birch;pillar_axis=x +blockId=17 +runtimeId=5570 + minecraft:log;old_log_type=birch;pillar_axis=y blockId=17 +runtimeId=5566 + +minecraft:log;old_log_type=birch;pillar_axis=z +blockId=17 runtimeId=5574 +minecraft:log;old_log_type=jungle;pillar_axis=x +blockId=17 +runtimeId=5571 + minecraft:log;old_log_type=jungle;pillar_axis=y blockId=17 +runtimeId=5567 + +minecraft:log;old_log_type=jungle;pillar_axis=z +blockId=17 runtimeId=5575 +minecraft:log;old_log_type=oak;pillar_axis=x +blockId=17 +runtimeId=5568 + minecraft:log;old_log_type=oak;pillar_axis=y blockId=17 +runtimeId=5564 + +minecraft:log;old_log_type=oak;pillar_axis=z +blockId=17 runtimeId=5572 +minecraft:log;old_log_type=spruce;pillar_axis=x +blockId=17 +runtimeId=5569 + minecraft:log;old_log_type=spruce;pillar_axis=y blockId=17 +runtimeId=5565 + +minecraft:log;old_log_type=spruce;pillar_axis=z +blockId=17 runtimeId=5573 +minecraft:log2;new_log_type=acacia;pillar_axis=x +blockId=162 +runtimeId=5578 + minecraft:log2;new_log_type=acacia;pillar_axis=y blockId=162 +runtimeId=5576 + +minecraft:log2;new_log_type=acacia;pillar_axis=z +blockId=162 runtimeId=5580 +minecraft:log2;new_log_type=dark_oak;pillar_axis=x +blockId=162 +runtimeId=5579 + minecraft:log2;new_log_type=dark_oak;pillar_axis=y blockId=162 +runtimeId=5577 + +minecraft:log2;new_log_type=dark_oak;pillar_axis=z +blockId=162 runtimeId=5581 minecraft:loom;direction=0 @@ -22585,11 +22745,11 @@ blockId=110 runtimeId=5685 minecraft:mysterious_frame -blockId=-1 +blockId=721 runtimeId=5686 minecraft:mysterious_frame_slot -blockId=-1 +blockId=722 runtimeId=5687 minecraft:nether_brick @@ -23128,8 +23288,16 @@ minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=429 runtimeId=5821 +minecraft:polished_basalt;pillar_axis=x +blockId=490 +runtimeId=5823 + minecraft:polished_basalt;pillar_axis=y blockId=490 +runtimeId=5822 + +minecraft:polished_basalt;pillar_axis=z +blockId=490 runtimeId=5824 minecraft:polished_blackstone @@ -25408,13 +25576,17 @@ minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=427 runtimeId=6393 +minecraft:portal;portal_axis=unknown +blockId=90 +runtimeId=6394 + minecraft:portal;portal_axis=x blockId=90 -runtimeId=6396 +runtimeId=6395 -minecraft:portal;portal_axis=unknown +minecraft:portal;portal_axis=z blockId=90 -runtimeId=6394 +runtimeId=6396 minecraft:potatoes;growth=0 blockId=142 @@ -25928,20 +26100,52 @@ minecraft:purple_glazed_terracotta;facing_direction=5 blockId=219 runtimeId=6524 +minecraft:purpur_block;chisel_type=chiseled;pillar_axis=x +blockId=201 +runtimeId=6530 + minecraft:purpur_block;chisel_type=chiseled;pillar_axis=y blockId=201 +runtimeId=6526 + +minecraft:purpur_block;chisel_type=chiseled;pillar_axis=z +blockId=201 runtimeId=6534 +minecraft:purpur_block;chisel_type=default;pillar_axis=x +blockId=201 +runtimeId=6529 + minecraft:purpur_block;chisel_type=default;pillar_axis=y blockId=201 +runtimeId=6525 + +minecraft:purpur_block;chisel_type=default;pillar_axis=z +blockId=201 runtimeId=6533 +minecraft:purpur_block;chisel_type=lines;pillar_axis=x +blockId=201 +runtimeId=6531 + minecraft:purpur_block;chisel_type=lines;pillar_axis=y blockId=201 +runtimeId=6527 + +minecraft:purpur_block;chisel_type=lines;pillar_axis=z +blockId=201 runtimeId=6535 +minecraft:purpur_block;chisel_type=smooth;pillar_axis=x +blockId=201 +runtimeId=6532 + minecraft:purpur_block;chisel_type=smooth;pillar_axis=y blockId=201 +runtimeId=6528 + +minecraft:purpur_block;chisel_type=smooth;pillar_axis=z +blockId=201 runtimeId=6536 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=0 @@ -25976,20 +26180,52 @@ minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=3 blockId=203 runtimeId=6544 +minecraft:quartz_block;chisel_type=chiseled;pillar_axis=x +blockId=155 +runtimeId=6550 + minecraft:quartz_block;chisel_type=chiseled;pillar_axis=y blockId=155 +runtimeId=6546 + +minecraft:quartz_block;chisel_type=chiseled;pillar_axis=z +blockId=155 runtimeId=6554 +minecraft:quartz_block;chisel_type=default;pillar_axis=x +blockId=155 +runtimeId=6549 + minecraft:quartz_block;chisel_type=default;pillar_axis=y blockId=155 +runtimeId=6545 + +minecraft:quartz_block;chisel_type=default;pillar_axis=z +blockId=155 runtimeId=6553 +minecraft:quartz_block;chisel_type=lines;pillar_axis=x +blockId=155 +runtimeId=6551 + minecraft:quartz_block;chisel_type=lines;pillar_axis=y blockId=155 +runtimeId=6547 + +minecraft:quartz_block;chisel_type=lines;pillar_axis=z +blockId=155 runtimeId=6555 +minecraft:quartz_block;chisel_type=smooth;pillar_axis=x +blockId=155 +runtimeId=6552 + minecraft:quartz_block;chisel_type=smooth;pillar_axis=y blockId=155 +runtimeId=6548 + +minecraft:quartz_block;chisel_type=smooth;pillar_axis=z +blockId=155 runtimeId=6556 minecraft:quartz_bricks @@ -26749,15 +26985,15 @@ blockId=420 runtimeId=6745 minecraft:sculk -blockId=-1 +blockId=713 runtimeId=6746 minecraft:sculk_catalyst;bloom=0 -blockId=-1 +blockId=715 runtimeId=6747 minecraft:sculk_catalyst;bloom=1 -blockId=-1 +blockId=715 runtimeId=6748 minecraft:sculk_sensor;powered_bit=0 @@ -26769,267 +27005,267 @@ blockId=562 runtimeId=6750 minecraft:sculk_shrieker;active=0 -blockId=-1 +blockId=716 runtimeId=6751 minecraft:sculk_shrieker;active=1 -blockId=-1 +blockId=716 runtimeId=6752 minecraft:sculk_vein;multi_face_direction_bits=0 -blockId=-1 +blockId=714 runtimeId=6753 minecraft:sculk_vein;multi_face_direction_bits=1 -blockId=-1 +blockId=714 runtimeId=6754 minecraft:sculk_vein;multi_face_direction_bits=2 -blockId=-1 +blockId=714 runtimeId=6755 minecraft:sculk_vein;multi_face_direction_bits=3 -blockId=-1 +blockId=714 runtimeId=6756 minecraft:sculk_vein;multi_face_direction_bits=4 -blockId=-1 +blockId=714 runtimeId=6757 minecraft:sculk_vein;multi_face_direction_bits=5 -blockId=-1 +blockId=714 runtimeId=6758 minecraft:sculk_vein;multi_face_direction_bits=6 -blockId=-1 +blockId=714 runtimeId=6759 minecraft:sculk_vein;multi_face_direction_bits=7 -blockId=-1 +blockId=714 runtimeId=6760 minecraft:sculk_vein;multi_face_direction_bits=8 -blockId=-1 +blockId=714 runtimeId=6761 minecraft:sculk_vein;multi_face_direction_bits=9 -blockId=-1 +blockId=714 runtimeId=6762 minecraft:sculk_vein;multi_face_direction_bits=10 -blockId=-1 +blockId=714 runtimeId=6763 minecraft:sculk_vein;multi_face_direction_bits=11 -blockId=-1 +blockId=714 runtimeId=6764 minecraft:sculk_vein;multi_face_direction_bits=12 -blockId=-1 +blockId=714 runtimeId=6765 minecraft:sculk_vein;multi_face_direction_bits=13 -blockId=-1 +blockId=714 runtimeId=6766 minecraft:sculk_vein;multi_face_direction_bits=14 -blockId=-1 +blockId=714 runtimeId=6767 minecraft:sculk_vein;multi_face_direction_bits=15 -blockId=-1 +blockId=714 runtimeId=6768 minecraft:sculk_vein;multi_face_direction_bits=16 -blockId=-1 +blockId=714 runtimeId=6769 minecraft:sculk_vein;multi_face_direction_bits=17 -blockId=-1 +blockId=714 runtimeId=6770 minecraft:sculk_vein;multi_face_direction_bits=18 -blockId=-1 +blockId=714 runtimeId=6771 minecraft:sculk_vein;multi_face_direction_bits=19 -blockId=-1 +blockId=714 runtimeId=6772 minecraft:sculk_vein;multi_face_direction_bits=20 -blockId=-1 +blockId=714 runtimeId=6773 minecraft:sculk_vein;multi_face_direction_bits=21 -blockId=-1 +blockId=714 runtimeId=6774 minecraft:sculk_vein;multi_face_direction_bits=22 -blockId=-1 +blockId=714 runtimeId=6775 minecraft:sculk_vein;multi_face_direction_bits=23 -blockId=-1 +blockId=714 runtimeId=6776 minecraft:sculk_vein;multi_face_direction_bits=24 -blockId=-1 +blockId=714 runtimeId=6777 minecraft:sculk_vein;multi_face_direction_bits=25 -blockId=-1 +blockId=714 runtimeId=6778 minecraft:sculk_vein;multi_face_direction_bits=26 -blockId=-1 +blockId=714 runtimeId=6779 minecraft:sculk_vein;multi_face_direction_bits=27 -blockId=-1 +blockId=714 runtimeId=6780 minecraft:sculk_vein;multi_face_direction_bits=28 -blockId=-1 +blockId=714 runtimeId=6781 minecraft:sculk_vein;multi_face_direction_bits=29 -blockId=-1 +blockId=714 runtimeId=6782 minecraft:sculk_vein;multi_face_direction_bits=30 -blockId=-1 +blockId=714 runtimeId=6783 minecraft:sculk_vein;multi_face_direction_bits=31 -blockId=-1 +blockId=714 runtimeId=6784 minecraft:sculk_vein;multi_face_direction_bits=32 -blockId=-1 +blockId=714 runtimeId=6785 minecraft:sculk_vein;multi_face_direction_bits=33 -blockId=-1 +blockId=714 runtimeId=6786 minecraft:sculk_vein;multi_face_direction_bits=34 -blockId=-1 +blockId=714 runtimeId=6787 minecraft:sculk_vein;multi_face_direction_bits=35 -blockId=-1 +blockId=714 runtimeId=6788 minecraft:sculk_vein;multi_face_direction_bits=36 -blockId=-1 +blockId=714 runtimeId=6789 minecraft:sculk_vein;multi_face_direction_bits=37 -blockId=-1 +blockId=714 runtimeId=6790 minecraft:sculk_vein;multi_face_direction_bits=38 -blockId=-1 +blockId=714 runtimeId=6791 minecraft:sculk_vein;multi_face_direction_bits=39 -blockId=-1 +blockId=714 runtimeId=6792 minecraft:sculk_vein;multi_face_direction_bits=40 -blockId=-1 +blockId=714 runtimeId=6793 minecraft:sculk_vein;multi_face_direction_bits=41 -blockId=-1 +blockId=714 runtimeId=6794 minecraft:sculk_vein;multi_face_direction_bits=42 -blockId=-1 +blockId=714 runtimeId=6795 minecraft:sculk_vein;multi_face_direction_bits=43 -blockId=-1 +blockId=714 runtimeId=6796 minecraft:sculk_vein;multi_face_direction_bits=44 -blockId=-1 +blockId=714 runtimeId=6797 minecraft:sculk_vein;multi_face_direction_bits=45 -blockId=-1 +blockId=714 runtimeId=6798 minecraft:sculk_vein;multi_face_direction_bits=46 -blockId=-1 +blockId=714 runtimeId=6799 minecraft:sculk_vein;multi_face_direction_bits=47 -blockId=-1 +blockId=714 runtimeId=6800 minecraft:sculk_vein;multi_face_direction_bits=48 -blockId=-1 +blockId=714 runtimeId=6801 minecraft:sculk_vein;multi_face_direction_bits=49 -blockId=-1 +blockId=714 runtimeId=6802 minecraft:sculk_vein;multi_face_direction_bits=50 -blockId=-1 +blockId=714 runtimeId=6803 minecraft:sculk_vein;multi_face_direction_bits=51 -blockId=-1 +blockId=714 runtimeId=6804 minecraft:sculk_vein;multi_face_direction_bits=52 -blockId=-1 +blockId=714 runtimeId=6805 minecraft:sculk_vein;multi_face_direction_bits=53 -blockId=-1 +blockId=714 runtimeId=6806 minecraft:sculk_vein;multi_face_direction_bits=54 -blockId=-1 +blockId=714 runtimeId=6807 minecraft:sculk_vein;multi_face_direction_bits=55 -blockId=-1 +blockId=714 runtimeId=6808 minecraft:sculk_vein;multi_face_direction_bits=56 -blockId=-1 +blockId=714 runtimeId=6809 minecraft:sculk_vein;multi_face_direction_bits=57 -blockId=-1 +blockId=714 runtimeId=6810 minecraft:sculk_vein;multi_face_direction_bits=58 -blockId=-1 +blockId=714 runtimeId=6811 minecraft:sculk_vein;multi_face_direction_bits=59 -blockId=-1 +blockId=714 runtimeId=6812 minecraft:sculk_vein;multi_face_direction_bits=60 -blockId=-1 +blockId=714 runtimeId=6813 minecraft:sculk_vein;multi_face_direction_bits=61 -blockId=-1 +blockId=714 runtimeId=6814 minecraft:sculk_vein;multi_face_direction_bits=62 -blockId=-1 +blockId=714 runtimeId=6815 minecraft:sculk_vein;multi_face_direction_bits=63 -blockId=-1 +blockId=714 runtimeId=6816 minecraft:seaLantern @@ -28968,44 +29204,124 @@ minecraft:stonecutter_block;facing_direction=5 blockId=452 runtimeId=7300 +minecraft:stripped_acacia_log;pillar_axis=x +blockId=263 +runtimeId=7302 + minecraft:stripped_acacia_log;pillar_axis=y blockId=263 +runtimeId=7301 + +minecraft:stripped_acacia_log;pillar_axis=z +blockId=263 runtimeId=7303 +minecraft:stripped_birch_log;pillar_axis=x +blockId=261 +runtimeId=7305 + minecraft:stripped_birch_log;pillar_axis=y blockId=261 +runtimeId=7304 + +minecraft:stripped_birch_log;pillar_axis=z +blockId=261 runtimeId=7306 +minecraft:stripped_crimson_hyphae;pillar_axis=x +blockId=555 +runtimeId=7308 + minecraft:stripped_crimson_hyphae;pillar_axis=y blockId=555 +runtimeId=7307 + +minecraft:stripped_crimson_hyphae;pillar_axis=z +blockId=555 runtimeId=7309 +minecraft:stripped_crimson_stem;pillar_axis=x +blockId=495 +runtimeId=7311 + minecraft:stripped_crimson_stem;pillar_axis=y blockId=495 +runtimeId=7310 + +minecraft:stripped_crimson_stem;pillar_axis=z +blockId=495 runtimeId=7312 +minecraft:stripped_dark_oak_log;pillar_axis=x +blockId=264 +runtimeId=7314 + minecraft:stripped_dark_oak_log;pillar_axis=y blockId=264 +runtimeId=7313 + +minecraft:stripped_dark_oak_log;pillar_axis=z +blockId=264 runtimeId=7315 +minecraft:stripped_jungle_log;pillar_axis=x +blockId=262 +runtimeId=7317 + minecraft:stripped_jungle_log;pillar_axis=y blockId=262 +runtimeId=7316 + +minecraft:stripped_jungle_log;pillar_axis=z +blockId=262 runtimeId=7318 +minecraft:stripped_oak_log;pillar_axis=x +blockId=265 +runtimeId=7320 + minecraft:stripped_oak_log;pillar_axis=y blockId=265 +runtimeId=7319 + +minecraft:stripped_oak_log;pillar_axis=z +blockId=265 runtimeId=7321 +minecraft:stripped_spruce_log;pillar_axis=x +blockId=260 +runtimeId=7323 + minecraft:stripped_spruce_log;pillar_axis=y blockId=260 +runtimeId=7322 + +minecraft:stripped_spruce_log;pillar_axis=z +blockId=260 runtimeId=7324 +minecraft:stripped_warped_hyphae;pillar_axis=x +blockId=556 +runtimeId=7326 + minecraft:stripped_warped_hyphae;pillar_axis=y blockId=556 +runtimeId=7325 + +minecraft:stripped_warped_hyphae;pillar_axis=z +blockId=556 runtimeId=7327 +minecraft:stripped_warped_stem;pillar_axis=x +blockId=496 +runtimeId=7329 + minecraft:stripped_warped_stem;pillar_axis=y blockId=496 +runtimeId=7328 + +minecraft:stripped_warped_stem;pillar_axis=z +blockId=496 runtimeId=7330 minecraft:structure_block;structure_block_type=corner @@ -30060,8 +30376,16 @@ minecraft:warped_fungus blockId=484 runtimeId=7593 +minecraft:warped_hyphae;pillar_axis=x +blockId=553 +runtimeId=7595 + minecraft:warped_hyphae;pillar_axis=y blockId=553 +runtimeId=7594 + +minecraft:warped_hyphae;pillar_axis=z +blockId=553 runtimeId=7596 minecraft:warped_nylium @@ -30244,8 +30568,16 @@ minecraft:warped_standing_sign;ground_sign_direction=15 blockId=506 runtimeId=7641 +minecraft:warped_stem;pillar_axis=x +blockId=481 +runtimeId=7643 + minecraft:warped_stem;pillar_axis=y blockId=481 +runtimeId=7642 + +minecraft:warped_stem;pillar_axis=z +blockId=481 runtimeId=7644 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=0 @@ -30896,52 +31228,148 @@ minecraft:wither_rose blockId=471 runtimeId=7806 +minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=x +blockId=467 +runtimeId=7823 + minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=y blockId=467 +runtimeId=7811 + +minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=z +blockId=467 runtimeId=7835 +minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=x +blockId=467 +runtimeId=7829 + minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=y blockId=467 +runtimeId=7817 + +minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=z +blockId=467 runtimeId=7841 +minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=x +blockId=467 +runtimeId=7821 + minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=y blockId=467 +runtimeId=7809 + +minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=z +blockId=467 runtimeId=7833 +minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=x +blockId=467 +runtimeId=7827 + minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=y blockId=467 +runtimeId=7815 + +minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=z +blockId=467 runtimeId=7839 +minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=x +blockId=467 +runtimeId=7824 + minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=y blockId=467 +runtimeId=7812 + +minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=z +blockId=467 runtimeId=7836 +minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=x +blockId=467 +runtimeId=7830 + minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=y blockId=467 +runtimeId=7818 + +minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=z +blockId=467 runtimeId=7842 +minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=x +blockId=467 +runtimeId=7822 + minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=y blockId=467 +runtimeId=7810 + +minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=z +blockId=467 runtimeId=7834 +minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=x +blockId=467 +runtimeId=7828 + minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=y blockId=467 +runtimeId=7816 + +minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=z +blockId=467 runtimeId=7840 +minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=x +blockId=467 +runtimeId=7819 + minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=y blockId=467 +runtimeId=7807 + +minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=z +blockId=467 runtimeId=7831 +minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=x +blockId=467 +runtimeId=7825 + minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=y blockId=467 +runtimeId=7813 + +minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=z +blockId=467 runtimeId=7837 +minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=x +blockId=467 +runtimeId=7820 + minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=y blockId=467 +runtimeId=7808 + +minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=z +blockId=467 runtimeId=7832 +minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=x +blockId=467 +runtimeId=7826 + minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=y blockId=467 +runtimeId=7814 + +minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=z +blockId=467 runtimeId=7838 minecraft:wooden_button;button_pressed_bit=0;facing_direction=0 diff --git a/src/main/java/cn/nukkit/command/Command.java b/src/main/java/cn/nukkit/command/Command.java index f9307be8ccb..697685bde43 100644 --- a/src/main/java/cn/nukkit/command/Command.java +++ b/src/main/java/cn/nukkit/command/Command.java @@ -2,6 +2,8 @@ import cn.nukkit.Player; import cn.nukkit.Server; +import cn.nukkit.api.DeprecationDetails; +import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.command.data.*; import cn.nukkit.lang.TextContainer; import cn.nukkit.lang.TranslationContainer; @@ -18,8 +20,6 @@ */ public abstract class Command { - private static CommandData defaultDataTemplate; - protected CommandData commandData; private final String name; @@ -263,11 +263,17 @@ public void setUsage(String usageMessage) { this.usageMessage = usageMessage; } + @Deprecated + @DeprecationDetails( + by = "PowerNukkit", + since = "FUTURE", + reason = "Unused and always throws an exception even in Cloudburst Nukkit") + @PowerNukkitDifference( + since = "FUTURE", + info = "Throws UnsupportedOperationException instead of NullPointerException" + ) public static CommandData generateDefaultData() { - if (defaultDataTemplate == null) { - //defaultDataTemplate = new Gson().fromJson(new InputStreamReader(Server.class.getClassLoader().getResourceAsStream("command_default.json"))); - } - return defaultDataTemplate.clone(); + throw new UnsupportedOperationException(); } public static void broadcastCommandMessage(CommandSender source, String message) { diff --git a/src/main/java/cn/nukkit/utils/HumanStringComparator.java b/src/main/java/cn/nukkit/utils/HumanStringComparator.java index a0c4ef4ee2f..d78cb21def7 100644 --- a/src/main/java/cn/nukkit/utils/HumanStringComparator.java +++ b/src/main/java/cn/nukkit/utils/HumanStringComparator.java @@ -54,7 +54,7 @@ private List splitSymbols(List list) { result.set(i, Character.toString(c)); indexToAddLast = i + 1; } - if (j + 2 < length) { + if (j + 2 <= length) { result.add(indexToAddLast, str.substring(j + 1, lastPart)); } lastPart = j; diff --git a/src/main/resources/command_default.json b/src/main/resources/command_default.json deleted file mode 100644 index 99f67e9c6f8..00000000000 --- a/src/main/resources/command_default.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "aliases": [], - "description": "insert_description_here", - "overloads": { - "default": { - "input": { - "parameters": [ - { - "name": "args", - "type": "rawtext", - "optional": true - } - ] - }, - "output": {} - } - }, - "permission": "any" -} \ No newline at end of file diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index 31b47e9f9ee..335969ae974 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -1,7 +1,8 @@ [ { "name": "minecraft:unknown", - "id": -305 + "id": -305, + "oldId": -305 }, { "name": "minecraft:quartz_bricks", diff --git a/src/test/java/cn/nukkit/utils/HumanStringComparatorTest.java b/src/test/java/cn/nukkit/utils/HumanStringComparatorTest.java index b20e86cbfbf..9e1244ef4c1 100644 --- a/src/test/java/cn/nukkit/utils/HumanStringComparatorTest.java +++ b/src/test/java/cn/nukkit/utils/HumanStringComparatorTest.java @@ -12,6 +12,14 @@ class HumanStringComparatorTest { private final HumanStringComparator comparator = HumanStringComparator.getInstance(); + @SuppressWarnings("EqualsWithItself") + @Test + void pillars() { + assertEquals(-1, comparator.compare("minecraft:basalt;pillar_axis=x", "minecraft:basalt;pillar_axis=y")); + assertEquals(0, comparator.compare("minecraft:basalt;pillar_axis=y", "minecraft:basalt;pillar_axis=y")); + assertEquals(1, comparator.compare("minecraft:basalt;pillar_axis=z", "minecraft:basalt;pillar_axis=y")); + } + @SuppressWarnings("EqualsWithItself") @Test void compare() { From 2f2e5c5ba97895efe609a121191881e432267983 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 23 Oct 2021 18:15:54 -0300 Subject: [PATCH 237/394] Update more resources --- src/main/resources/runtime_item_ids.json | 2 +- src/test/resources/runtime_item_states.json | 1003 ++++++++++--------- 2 files changed, 520 insertions(+), 485 deletions(-) diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index 335969ae974..98a8185ed2a 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -4698,4 +4698,4 @@ "id": 629, "oldId": 426 } -] +] \ No newline at end of file diff --git a/src/test/resources/runtime_item_states.json b/src/test/resources/runtime_item_states.json index b7f41f42991..5de5a49efec 100644 --- a/src/test/resources/runtime_item_states.json +++ b/src/test/resources/runtime_item_states.json @@ -1,8 +1,43 @@ [ + { + "name" : "minecraft:mysterious_frame_slot", + "id" : -467, + "runtimeId" : 775 + }, + { + "name" : "minecraft:mysterious_frame", + "id" : -466, + "runtimeId" : 410 + }, + { + "name" : "minecraft:client_request_placeholder_block", + "id" : -465, + "runtimeId" : 732 + }, + { + "name" : "minecraft:sculk_shrieker", + "id" : -461, + "runtimeId" : 953 + }, + { + "name" : "minecraft:sculk_catalyst", + "id" : -460, + "runtimeId" : 1012 + }, + { + "name" : "minecraft:sculk_vein", + "id" : -459, + "runtimeId" : 522 + }, + { + "name" : "minecraft:sculk", + "id" : -458, + "runtimeId" : 1011 + }, { "name" : "minecraft:infested_deepslate", "id" : -454, - "runtimeId" : 772 + "runtimeId" : 773 }, { "name" : "minecraft:raw_gold_block", @@ -17,12 +52,12 @@ { "name" : "minecraft:raw_iron_block", "id" : -451, - "runtimeId" : 1001 + "runtimeId" : 1004 }, { "name" : "minecraft:waxed_oxidized_double_cut_copper_slab", "id" : -450, - "runtimeId" : 1059 + "runtimeId" : 1066 }, { "name" : "minecraft:waxed_oxidized_cut_copper_slab", @@ -32,17 +67,17 @@ { "name" : "minecraft:waxed_oxidized_cut_copper_stairs", "id" : -448, - "runtimeId" : 1030 + "runtimeId" : 1035 }, { "name" : "minecraft:waxed_oxidized_cut_copper", "id" : -447, - "runtimeId" : 1058 + "runtimeId" : 1065 }, { "name" : "minecraft:waxed_oxidized_copper", "id" : -446, - "runtimeId" : 1057 + "runtimeId" : 1064 }, { "name" : "minecraft:black_candle_cake", @@ -57,12 +92,12 @@ { "name" : "minecraft:green_candle_cake", "id" : -443, - "runtimeId" : 406 + "runtimeId" : 404 }, { "name" : "minecraft:brown_candle_cake", "id" : -442, - "runtimeId" : 863 + "runtimeId" : 865 }, { "name" : "minecraft:blue_candle_cake", @@ -82,32 +117,32 @@ { "name" : "minecraft:light_gray_candle_cake", "id" : -438, - "runtimeId" : 764 + "runtimeId" : 765 }, { "name" : "minecraft:gray_candle_cake", "id" : -437, - "runtimeId" : 944 + "runtimeId" : 946 }, { "name" : "minecraft:pink_candle_cake", "id" : -436, - "runtimeId" : 452 + "runtimeId" : 451 }, { "name" : "minecraft:lime_candle_cake", "id" : -435, - "runtimeId" : 967 + "runtimeId" : 970 }, { "name" : "minecraft:yellow_candle_cake", "id" : -434, - "runtimeId" : 1071 + "runtimeId" : 1078 }, { "name" : "minecraft:light_blue_candle_cake", "id" : -433, - "runtimeId" : 966 + "runtimeId" : 969 }, { "name" : "minecraft:magenta_candle_cake", @@ -117,17 +152,17 @@ { "name" : "minecraft:orange_candle_cake", "id" : -431, - "runtimeId" : 513 + "runtimeId" : 512 }, { "name" : "minecraft:white_candle_cake", "id" : -430, - "runtimeId" : 814 + "runtimeId" : 816 }, { "name" : "minecraft:candle_cake", "id" : -429, - "runtimeId" : 869 + "runtimeId" : 871 }, { "name" : "minecraft:black_candle", @@ -152,7 +187,7 @@ { "name" : "minecraft:blue_candle", "id" : -424, - "runtimeId" : 392 + "runtimeId" : 391 }, { "name" : "minecraft:purple_candle", @@ -217,7 +252,7 @@ { "name" : "minecraft:glow_lichen", "id" : -411, - "runtimeId" : 938 + "runtimeId" : 940 }, { "name" : "minecraft:cracked_deepslate_bricks", @@ -227,12 +262,12 @@ { "name" : "minecraft:cracked_deepslate_tiles", "id" : -409, - "runtimeId" : 806 + "runtimeId" : 808 }, { "name" : "minecraft:deepslate_copper_ore", "id" : -408, - "runtimeId" : 912 + "runtimeId" : 914 }, { "name" : "minecraft:deepslate_emerald_ore", @@ -242,12 +277,12 @@ { "name" : "minecraft:deepslate_coal_ore", "id" : -406, - "runtimeId" : 493 + "runtimeId" : 492 }, { "name" : "minecraft:deepslate_diamond_ore", "id" : -405, - "runtimeId" : 879 + "runtimeId" : 881 }, { "name" : "minecraft:lit_deepslate_redstone_ore", @@ -257,17 +292,17 @@ { "name" : "minecraft:deepslate_redstone_ore", "id" : -403, - "runtimeId" : 846 + "runtimeId" : 848 }, { "name" : "minecraft:deepslate_gold_ore", "id" : -402, - "runtimeId" : 871 + "runtimeId" : 873 }, { "name" : "minecraft:deepslate_iron_ore", "id" : -401, - "runtimeId" : 913 + "runtimeId" : 915 }, { "name" : "minecraft:deepslate_lapis_ore", @@ -282,7 +317,7 @@ { "name" : "minecraft:deepslate_tile_double_slab", "id" : -398, - "runtimeId" : 914 + "runtimeId" : 916 }, { "name" : "minecraft:polished_deepslate_double_slab", @@ -292,12 +327,12 @@ { "name" : "minecraft:cobbled_deepslate_double_slab", "id" : -396, - "runtimeId" : 886 + "runtimeId" : 888 }, { "name" : "minecraft:chiseled_deepslate", "id" : -395, - "runtimeId" : 880 + "runtimeId" : 882 }, { "name" : "minecraft:deepslate_brick_wall", @@ -307,7 +342,7 @@ { "name" : "minecraft:deepslate_brick_stairs", "id" : -393, - "runtimeId" : 906 + "runtimeId" : 908 }, { "name" : "minecraft:deepslate_brick_slab", @@ -327,7 +362,7 @@ { "name" : "minecraft:deepslate_tile_stairs", "id" : -389, - "runtimeId" : 915 + "runtimeId" : 917 }, { "name" : "minecraft:deepslate_tile_slab", @@ -337,7 +372,7 @@ { "name" : "minecraft:deepslate_tiles", "id" : -387, - "runtimeId" : 916 + "runtimeId" : 918 }, { "name" : "minecraft:polished_deepslate_wall", @@ -357,7 +392,7 @@ { "name" : "minecraft:polished_deepslate", "id" : -383, - "runtimeId" : 996 + "runtimeId" : 999 }, { "name" : "minecraft:cobbled_deepslate_wall", @@ -367,7 +402,7 @@ { "name" : "minecraft:cobbled_deepslate_stairs", "id" : -381, - "runtimeId" : 887 + "runtimeId" : 889 }, { "name" : "minecraft:cobbled_deepslate_slab", @@ -377,17 +412,17 @@ { "name" : "minecraft:cobbled_deepslate", "id" : -379, - "runtimeId" : 885 + "runtimeId" : 887 }, { "name" : "minecraft:deepslate", "id" : -378, - "runtimeId" : 911 + "runtimeId" : 913 }, { "name" : "minecraft:smooth_basalt", "id" : -377, - "runtimeId" : 820 + "runtimeId" : 822 }, { "name" : "minecraft:cave_vines_head_with_berries", @@ -397,42 +432,42 @@ { "name" : "minecraft:cave_vines_body_with_berries", "id" : -375, - "runtimeId" : 875 + "runtimeId" : 877 }, { "name" : "minecraft:waxed_weathered_double_cut_copper_slab", "id" : -374, - "runtimeId" : 1063 + "runtimeId" : 1070 }, { "name" : "minecraft:waxed_exposed_double_cut_copper_slab", "id" : -373, - "runtimeId" : 1056 + "runtimeId" : 1063 }, { "name" : "minecraft:waxed_double_cut_copper_slab", "id" : -372, - "runtimeId" : 1053 + "runtimeId" : 1060 }, { "name" : "minecraft:oxidized_double_cut_copper_slab", "id" : -371, - "runtimeId" : 986 + "runtimeId" : 989 }, { "name" : "minecraft:weathered_double_cut_copper_slab", "id" : -370, - "runtimeId" : 979 + "runtimeId" : 982 }, { "name" : "minecraft:exposed_double_cut_copper_slab", "id" : -369, - "runtimeId" : 929 + "runtimeId" : 931 }, { "name" : "minecraft:double_cut_copper_slab", "id" : -368, - "runtimeId" : 496 + "runtimeId" : 495 }, { "name" : "minecraft:waxed_weathered_cut_copper_slab", @@ -447,17 +482,17 @@ { "name" : "minecraft:waxed_cut_copper_slab", "id" : -365, - "runtimeId" : 522 + "runtimeId" : 521 }, { "name" : "minecraft:oxidized_cut_copper_slab", "id" : -364, - "runtimeId" : 498 + "runtimeId" : 497 }, { "name" : "minecraft:weathered_cut_copper_slab", "id" : -363, - "runtimeId" : 521 + "runtimeId" : 520 }, { "name" : "minecraft:exposed_cut_copper_slab", @@ -472,17 +507,17 @@ { "name" : "minecraft:waxed_weathered_cut_copper_stairs", "id" : -360, - "runtimeId" : 1062 + "runtimeId" : 1069 }, { "name" : "minecraft:waxed_exposed_cut_copper_stairs", "id" : -359, - "runtimeId" : 792 + "runtimeId" : 794 }, { "name" : "minecraft:waxed_cut_copper_stairs", "id" : -358, - "runtimeId" : 1052 + "runtimeId" : 1059 }, { "name" : "minecraft:oxidized_cut_copper_stairs", @@ -492,62 +527,62 @@ { "name" : "minecraft:weathered_cut_copper_stairs", "id" : -356, - "runtimeId" : 478 + "runtimeId" : 477 }, { "name" : "minecraft:exposed_cut_copper_stairs", "id" : -355, - "runtimeId" : 928 + "runtimeId" : 930 }, { "name" : "minecraft:cut_copper_stairs", "id" : -354, - "runtimeId" : 519 + "runtimeId" : 518 }, { "name" : "minecraft:waxed_weathered_cut_copper", "id" : -353, - "runtimeId" : 1061 + "runtimeId" : 1068 }, { "name" : "minecraft:waxed_exposed_cut_copper", "id" : -352, - "runtimeId" : 1055 + "runtimeId" : 1062 }, { "name" : "minecraft:waxed_cut_copper", "id" : -351, - "runtimeId" : 1051 + "runtimeId" : 1058 }, { "name" : "minecraft:oxidized_cut_copper", "id" : -350, - "runtimeId" : 509 + "runtimeId" : 508 }, { "name" : "minecraft:weathered_cut_copper", "id" : -349, - "runtimeId" : 840 + "runtimeId" : 842 }, { "name" : "minecraft:exposed_cut_copper", "id" : -348, - "runtimeId" : 927 + "runtimeId" : 929 }, { "name" : "minecraft:cut_copper", "id" : -347, - "runtimeId" : 515 + "runtimeId" : 514 }, { "name" : "minecraft:waxed_weathered_copper", "id" : -346, - "runtimeId" : 1060 + "runtimeId" : 1067 }, { "name" : "minecraft:waxed_exposed_copper", "id" : -345, - "runtimeId" : 1054 + "runtimeId" : 1061 }, { "name" : "minecraft:waxed_copper", @@ -557,12 +592,12 @@ { "name" : "minecraft:oxidized_copper", "id" : -343, - "runtimeId" : 985 + "runtimeId" : 988 }, { "name" : "minecraft:weathered_copper", "id" : -342, - "runtimeId" : 1064 + "runtimeId" : 1071 }, { "name" : "minecraft:exposed_copper", @@ -572,22 +607,22 @@ { "name" : "minecraft:copper_block", "id" : -340, - "runtimeId" : 512 + "runtimeId" : 511 }, { "name" : "minecraft:item.glow_frame", "id" : -339, - "runtimeId" : 937 + "runtimeId" : 939 }, { "name" : "minecraft:flowering_azalea", "id" : -338, - "runtimeId" : 462 + "runtimeId" : 461 }, { "name" : "minecraft:azalea", "id" : -337, - "runtimeId" : 833 + "runtimeId" : 835 }, { "name" : "minecraft:small_dripleaf_block", @@ -607,7 +642,7 @@ { "name" : "minecraft:tuff", "id" : -333, - "runtimeId" : 1033 + "runtimeId" : 1038 }, { "name" : "minecraft:small_amethyst_bud", @@ -617,7 +652,7 @@ { "name" : "minecraft:medium_amethyst_bud", "id" : -331, - "runtimeId" : 384 + "runtimeId" : 383 }, { "name" : "minecraft:large_amethyst_bud", @@ -627,22 +662,22 @@ { "name" : "minecraft:amethyst_cluster", "id" : -329, - "runtimeId" : 751 + "runtimeId" : 752 }, { "name" : "minecraft:budding_amethyst", "id" : -328, - "runtimeId" : 866 + "runtimeId" : 868 }, { "name" : "minecraft:amethyst_block", "id" : -327, - "runtimeId" : 832 + "runtimeId" : 834 }, { "name" : "minecraft:calcite", "id" : -326, - "runtimeId" : 867 + "runtimeId" : 869 }, { "name" : "minecraft:azalea_leaves_flowered", @@ -657,27 +692,27 @@ { "name" : "minecraft:big_dripleaf", "id" : -323, - "runtimeId" : 844 + "runtimeId" : 846 }, { "name" : "minecraft:cave_vines", "id" : -322, - "runtimeId" : 873 + "runtimeId" : 875 }, { "name" : "minecraft:spore_blossom", "id" : -321, - "runtimeId" : 910 + "runtimeId" : 912 }, { "name" : "minecraft:moss_block", "id" : -320, - "runtimeId" : 931 + "runtimeId" : 933 }, { "name" : "minecraft:hanging_roots", "id" : -319, - "runtimeId" : 947 + "runtimeId" : 949 }, { "name" : "minecraft:dirt_with_roots", @@ -687,37 +722,37 @@ { "name" : "minecraft:dripstone_block", "id" : -317, - "runtimeId" : 921 + "runtimeId" : 923 }, { "name" : "minecraft:lightning_rod", "id" : -312, - "runtimeId" : 930 + "runtimeId" : 932 }, { "name" : "minecraft:copper_ore", "id" : -311, - "runtimeId" : 889 + "runtimeId" : 891 }, { "name" : "minecraft:pointed_dripstone", "id" : -308, - "runtimeId" : 989 + "runtimeId" : 992 }, { "name" : "minecraft:sculk_sensor", "id" : -307, - "runtimeId" : 1008 + "runtimeId" : 1013 }, { "name" : "minecraft:powder_snow", "id" : -306, - "runtimeId" : 466 + "runtimeId" : 465 }, { "name" : "minecraft:unknown", "id" : -305, - "runtimeId" : 378 + "runtimeId" : 1040 }, { "name" : "minecraft:quartz_bricks", @@ -727,37 +762,37 @@ { "name" : "minecraft:cracked_nether_bricks", "id" : -303, - "runtimeId" : 893 + "runtimeId" : 895 }, { "name" : "minecraft:chiseled_nether_bricks", "id" : -302, - "runtimeId" : 441 + "runtimeId" : 440 }, { "name" : "minecraft:stripped_warped_hyphae", "id" : -301, - "runtimeId" : 1025 + "runtimeId" : 1030 }, { "name" : "minecraft:stripped_crimson_hyphae", "id" : -300, - "runtimeId" : 1022 + "runtimeId" : 1027 }, { "name" : "minecraft:crimson_hyphae", "id" : -299, - "runtimeId" : 898 + "runtimeId" : 900 }, { "name" : "minecraft:warped_hyphae", "id" : -298, - "runtimeId" : 1043 + "runtimeId" : 1050 }, { "name" : "minecraft:polished_blackstone_wall", "id" : -297, - "runtimeId" : 782 + "runtimeId" : 784 }, { "name" : "minecraft:polished_blackstone_button", @@ -767,7 +802,7 @@ { "name" : "minecraft:polished_blackstone_pressure_plate", "id" : -295, - "runtimeId" : 994 + "runtimeId" : 997 }, { "name" : "minecraft:polished_blackstone_double_slab", @@ -782,42 +817,42 @@ { "name" : "minecraft:polished_blackstone_stairs", "id" : -292, - "runtimeId" : 995 + "runtimeId" : 998 }, { "name" : "minecraft:polished_blackstone", "id" : -291, - "runtimeId" : 990 + "runtimeId" : 993 }, { "name" : "minecraft:item.soul_campfire", "id" : -290, - "runtimeId" : 1012 + "runtimeId" : 1017 }, { "name" : "minecraft:crying_obsidian", "id" : -289, - "runtimeId" : 816 + "runtimeId" : 818 }, { "name" : "minecraft:nether_gold_ore", "id" : -288, - "runtimeId" : 978 + "runtimeId" : 981 }, { "name" : "minecraft:twisting_vines", "id" : -287, - "runtimeId" : 476 + "runtimeId" : 475 }, { "name" : "minecraft:item.chain", "id" : -286, - "runtimeId" : 877 + "runtimeId" : 879 }, { "name" : "minecraft:polished_blackstone_brick_double_slab", "id" : -285, - "runtimeId" : 991 + "runtimeId" : 994 }, { "name" : "minecraft:polished_blackstone_brick_slab", @@ -837,37 +872,37 @@ { "name" : "minecraft:gilded_blackstone", "id" : -281, - "runtimeId" : 933 + "runtimeId" : 935 }, { "name" : "minecraft:cracked_polished_blackstone_bricks", "id" : -280, - "runtimeId" : 894 + "runtimeId" : 896 }, { "name" : "minecraft:chiseled_polished_blackstone", "id" : -279, - "runtimeId" : 849 + "runtimeId" : 851 }, { "name" : "minecraft:polished_blackstone_brick_wall", "id" : -278, - "runtimeId" : 993 + "runtimeId" : 996 }, { "name" : "minecraft:blackstone_wall", "id" : -277, - "runtimeId" : 856 + "runtimeId" : 858 }, { "name" : "minecraft:blackstone_stairs", "id" : -276, - "runtimeId" : 854 + "runtimeId" : 856 }, { "name" : "minecraft:polished_blackstone_brick_stairs", "id" : -275, - "runtimeId" : 408 + "runtimeId" : 406 }, { "name" : "minecraft:polished_blackstone_bricks", @@ -877,12 +912,12 @@ { "name" : "minecraft:blackstone", "id" : -273, - "runtimeId" : 852 + "runtimeId" : 854 }, { "name" : "minecraft:respawn_anchor", "id" : -272, - "runtimeId" : 815 + "runtimeId" : 817 }, { "name" : "minecraft:ancient_debris", @@ -892,32 +927,32 @@ { "name" : "minecraft:netherite_block", "id" : -270, - "runtimeId" : 813 + "runtimeId" : 815 }, { "name" : "minecraft:soul_lantern", "id" : -269, - "runtimeId" : 1013 + "runtimeId" : 1018 }, { "name" : "minecraft:soul_torch", "id" : -268, - "runtimeId" : 1014 + "runtimeId" : 1019 }, { "name" : "minecraft:warped_double_slab", "id" : -267, - "runtimeId" : 1040 + "runtimeId" : 1047 }, { "name" : "minecraft:crimson_double_slab", "id" : -266, - "runtimeId" : 896 + "runtimeId" : 898 }, { "name" : "minecraft:warped_slab", "id" : -265, - "runtimeId" : 488 + "runtimeId" : 487 }, { "name" : "minecraft:crimson_slab", @@ -927,7 +962,7 @@ { "name" : "minecraft:warped_pressure_plate", "id" : -263, - "runtimeId" : 1046 + "runtimeId" : 1053 }, { "name" : "minecraft:crimson_pressure_plate", @@ -937,37 +972,37 @@ { "name" : "minecraft:warped_button", "id" : -261, - "runtimeId" : 804 + "runtimeId" : 806 }, { "name" : "minecraft:crimson_button", "id" : -260, - "runtimeId" : 895 + "runtimeId" : 897 }, { "name" : "minecraft:warped_fence_gate", "id" : -259, - "runtimeId" : 1042 + "runtimeId" : 1049 }, { "name" : "minecraft:crimson_fence_gate", "id" : -258, - "runtimeId" : 897 + "runtimeId" : 899 }, { "name" : "minecraft:warped_fence", "id" : -257, - "runtimeId" : 1041 + "runtimeId" : 1048 }, { "name" : "minecraft:crimson_fence", "id" : -256, - "runtimeId" : 447 + "runtimeId" : 446 }, { "name" : "minecraft:warped_stairs", "id" : -255, - "runtimeId" : 1047 + "runtimeId" : 1054 }, { "name" : "minecraft:crimson_stairs", @@ -977,27 +1012,27 @@ { "name" : "minecraft:warped_wall_sign", "id" : -253, - "runtimeId" : 1049 + "runtimeId" : 1056 }, { "name" : "minecraft:crimson_wall_sign", "id" : -252, - "runtimeId" : 903 + "runtimeId" : 905 }, { "name" : "minecraft:warped_standing_sign", "id" : -251, - "runtimeId" : 992 + "runtimeId" : 995 }, { "name" : "minecraft:crimson_standing_sign", "id" : -250, - "runtimeId" : 901 + "runtimeId" : 903 }, { "name" : "minecraft:warped_trapdoor", "id" : -247, - "runtimeId" : 474 + "runtimeId" : 473 }, { "name" : "minecraft:crimson_trapdoor", @@ -1007,7 +1042,7 @@ { "name" : "minecraft:item.warped_door", "id" : -245, - "runtimeId" : 1039 + "runtimeId" : 1046 }, { "name" : "minecraft:item.crimson_door", @@ -1017,22 +1052,22 @@ { "name" : "minecraft:warped_planks", "id" : -243, - "runtimeId" : 1045 + "runtimeId" : 1052 }, { "name" : "minecraft:crimson_planks", "id" : -242, - "runtimeId" : 900 + "runtimeId" : 902 }, { "name" : "minecraft:stripped_warped_stem", "id" : -241, - "runtimeId" : 1026 + "runtimeId" : 1031 }, { "name" : "minecraft:stripped_crimson_stem", "id" : -240, - "runtimeId" : 382 + "runtimeId" : 381 }, { "name" : "minecraft:target", @@ -1042,7 +1077,7 @@ { "name" : "minecraft:item.nether_sprouts", "id" : -238, - "runtimeId" : 971 + "runtimeId" : 974 }, { "name" : "minecraft:soul_fire", @@ -1057,17 +1092,17 @@ { "name" : "minecraft:polished_basalt", "id" : -235, - "runtimeId" : 936 + "runtimeId" : 938 }, { "name" : "minecraft:basalt", "id" : -234, - "runtimeId" : 838 + "runtimeId" : 840 }, { "name" : "minecraft:warped_nylium", "id" : -233, - "runtimeId" : 1044 + "runtimeId" : 1051 }, { "name" : "minecraft:crimson_nylium", @@ -1077,12 +1112,12 @@ { "name" : "minecraft:weeping_vines", "id" : -231, - "runtimeId" : 450 + "runtimeId" : 449 }, { "name" : "minecraft:shroomlight", "id" : -230, - "runtimeId" : 1009 + "runtimeId" : 1014 }, { "name" : "minecraft:warped_fungus", @@ -1092,22 +1127,22 @@ { "name" : "minecraft:crimson_fungus", "id" : -228, - "runtimeId" : 484 + "runtimeId" : 483 }, { "name" : "minecraft:warped_wart_block", "id" : -227, - "runtimeId" : 1036 + "runtimeId" : 1043 }, { "name" : "minecraft:warped_stem", "id" : -226, - "runtimeId" : 1048 + "runtimeId" : 1055 }, { "name" : "minecraft:crimson_stem", "id" : -225, - "runtimeId" : 902 + "runtimeId" : 904 }, { "name" : "minecraft:warped_roots", @@ -1127,7 +1162,7 @@ { "name" : "minecraft:honeycomb_block", "id" : -221, - "runtimeId" : 410 + "runtimeId" : 408 }, { "name" : "minecraft:honey_block", @@ -1137,12 +1172,12 @@ { "name" : "minecraft:beehive", "id" : -219, - "runtimeId" : 843 + "runtimeId" : 845 }, { "name" : "minecraft:bee_nest", "id" : -218, - "runtimeId" : 842 + "runtimeId" : 844 }, { "name" : "minecraft:stickypistonarmcollision", @@ -1152,7 +1187,7 @@ { "name" : "minecraft:wither_rose", "id" : -216, - "runtimeId" : 1067 + "runtimeId" : 1074 }, { "name" : "minecraft:light_block", @@ -1167,7 +1202,7 @@ { "name" : "minecraft:composter", "id" : -213, - "runtimeId" : 432 + "runtimeId" : 431 }, { "name" : "minecraft:wood", @@ -1177,12 +1212,12 @@ { "name" : "minecraft:jigsaw", "id" : -211, - "runtimeId" : 414 + "runtimeId" : 413 }, { "name" : "minecraft:lava_cauldron", "id" : -210, - "runtimeId" : 920 + "runtimeId" : 922 }, { "name" : "minecraft:item.campfire", @@ -1197,7 +1232,7 @@ { "name" : "minecraft:sweet_berry_bush", "id" : -207, - "runtimeId" : 1029 + "runtimeId" : 1034 }, { "name" : "minecraft:bell", @@ -1232,7 +1267,7 @@ { "name" : "minecraft:lit_smoker", "id" : -199, - "runtimeId" : 969 + "runtimeId" : 972 }, { "name" : "minecraft:smoker", @@ -1257,37 +1292,37 @@ { "name" : "minecraft:lectern", "id" : -194, - "runtimeId" : 963 + "runtimeId" : 966 }, { "name" : "minecraft:darkoak_wall_sign", "id" : -193, - "runtimeId" : 908 + "runtimeId" : 910 }, { "name" : "minecraft:darkoak_standing_sign", "id" : -192, - "runtimeId" : 907 + "runtimeId" : 909 }, { "name" : "minecraft:acacia_wall_sign", "id" : -191, - "runtimeId" : 829 + "runtimeId" : 831 }, { "name" : "minecraft:acacia_standing_sign", "id" : -190, - "runtimeId" : 827 + "runtimeId" : 829 }, { "name" : "minecraft:jungle_wall_sign", "id" : -189, - "runtimeId" : 957 + "runtimeId" : 960 }, { "name" : "minecraft:jungle_standing_sign", "id" : -188, - "runtimeId" : 955 + "runtimeId" : 958 }, { "name" : "minecraft:birch_wall_sign", @@ -1297,7 +1332,7 @@ { "name" : "minecraft:birch_standing_sign", "id" : -186, - "runtimeId" : 850 + "runtimeId" : 852 }, { "name" : "minecraft:smooth_quartz_stairs", @@ -1307,7 +1342,7 @@ { "name" : "minecraft:red_nether_brick_stairs", "id" : -184, - "runtimeId" : 1003 + "runtimeId" : 1006 }, { "name" : "minecraft:smooth_stone", @@ -1317,7 +1352,7 @@ { "name" : "minecraft:spruce_wall_sign", "id" : -182, - "runtimeId" : 473 + "runtimeId" : 472 }, { "name" : "minecraft:spruce_standing_sign", @@ -1327,7 +1362,7 @@ { "name" : "minecraft:normal_stone_stairs", "id" : -180, - "runtimeId" : 982 + "runtimeId" : 985 }, { "name" : "minecraft:mossy_cobblestone_stairs", @@ -1337,12 +1372,12 @@ { "name" : "minecraft:end_brick_stairs", "id" : -178, - "runtimeId" : 926 + "runtimeId" : 928 }, { "name" : "minecraft:smooth_sandstone_stairs", "id" : -177, - "runtimeId" : 1011 + "runtimeId" : 1016 }, { "name" : "minecraft:smooth_red_sandstone_stairs", @@ -1352,12 +1387,12 @@ { "name" : "minecraft:mossy_stone_brick_stairs", "id" : -175, - "runtimeId" : 972 + "runtimeId" : 975 }, { "name" : "minecraft:polished_andesite_stairs", "id" : -174, - "runtimeId" : 395 + "runtimeId" : 394 }, { "name" : "minecraft:polished_diorite_stairs", @@ -1377,7 +1412,7 @@ { "name" : "minecraft:diorite_stairs", "id" : -170, - "runtimeId" : 779 + "runtimeId" : 781 }, { "name" : "minecraft:granite_stairs", @@ -1407,7 +1442,7 @@ { "name" : "minecraft:bamboo_sapling", "id" : -164, - "runtimeId" : 834 + "runtimeId" : 836 }, { "name" : "minecraft:bamboo", @@ -1417,17 +1452,17 @@ { "name" : "minecraft:double_stone_slab3", "id" : -162, - "runtimeId" : 421 + "runtimeId" : 420 }, { "name" : "minecraft:barrier", "id" : -161, - "runtimeId" : 836 + "runtimeId" : 838 }, { "name" : "minecraft:bubble_column", "id" : -160, - "runtimeId" : 865 + "runtimeId" : 867 }, { "name" : "minecraft:turtle_egg", @@ -1452,27 +1487,27 @@ { "name" : "minecraft:carved_pumpkin", "id" : -155, - "runtimeId" : 400 + "runtimeId" : 398 }, { "name" : "minecraft:spruce_pressure_plate", "id" : -154, - "runtimeId" : 1017 + "runtimeId" : 1022 }, { "name" : "minecraft:jungle_pressure_plate", "id" : -153, - "runtimeId" : 407 + "runtimeId" : 405 }, { "name" : "minecraft:dark_oak_pressure_plate", "id" : -152, - "runtimeId" : 517 + "runtimeId" : 516 }, { "name" : "minecraft:birch_pressure_plate", "id" : -151, - "runtimeId" : 848 + "runtimeId" : 850 }, { "name" : "minecraft:acacia_pressure_plate", @@ -1482,7 +1517,7 @@ { "name" : "minecraft:spruce_trapdoor", "id" : -149, - "runtimeId" : 1018 + "runtimeId" : 1023 }, { "name" : "minecraft:jungle_trapdoor", @@ -1492,17 +1527,17 @@ { "name" : "minecraft:dark_oak_trapdoor", "id" : -147, - "runtimeId" : 904 + "runtimeId" : 906 }, { "name" : "minecraft:birch_trapdoor", "id" : -146, - "runtimeId" : 851 + "runtimeId" : 853 }, { "name" : "minecraft:acacia_trapdoor", "id" : -145, - "runtimeId" : 828 + "runtimeId" : 830 }, { "name" : "minecraft:spruce_button", @@ -1512,37 +1547,37 @@ { "name" : "minecraft:jungle_button", "id" : -143, - "runtimeId" : 953 + "runtimeId" : 956 }, { "name" : "minecraft:dark_oak_button", "id" : -142, - "runtimeId" : 775 + "runtimeId" : 777 }, { "name" : "minecraft:birch_button", "id" : -141, - "runtimeId" : 845 + "runtimeId" : 847 }, { "name" : "minecraft:acacia_button", "id" : -140, - "runtimeId" : 822 + "runtimeId" : 824 }, { "name" : "minecraft:dried_kelp_block", "id" : -139, - "runtimeId" : 855 + "runtimeId" : 857 }, { "name" : "minecraft:item.kelp", "id" : -138, - "runtimeId" : 884 + "runtimeId" : 886 }, { "name" : "minecraft:coral_fan_hang3", "id" : -137, - "runtimeId" : 892 + "runtimeId" : 894 }, { "name" : "minecraft:coral_fan_hang2", @@ -1552,7 +1587,7 @@ { "name" : "minecraft:coral_fan_hang", "id" : -135, - "runtimeId" : 891 + "runtimeId" : 893 }, { "name" : "minecraft:coral_fan_dead", @@ -1577,17 +1612,17 @@ { "name" : "minecraft:seagrass", "id" : -130, - "runtimeId" : 516 + "runtimeId" : 515 }, { "name" : "minecraft:element_118", "id" : -129, - "runtimeId" : 812 + "runtimeId" : 814 }, { "name" : "minecraft:element_117", "id" : -128, - "runtimeId" : 811 + "runtimeId" : 813 }, { "name" : "minecraft:element_116", @@ -1597,57 +1632,57 @@ { "name" : "minecraft:element_115", "id" : -126, - "runtimeId" : 810 + "runtimeId" : 812 }, { "name" : "minecraft:element_114", "id" : -125, - "runtimeId" : 807 + "runtimeId" : 809 }, { "name" : "minecraft:element_113", "id" : -124, - "runtimeId" : 805 + "runtimeId" : 807 }, { "name" : "minecraft:element_112", "id" : -123, - "runtimeId" : 803 + "runtimeId" : 805 }, { "name" : "minecraft:element_111", "id" : -122, - "runtimeId" : 415 + "runtimeId" : 414 }, { "name" : "minecraft:element_110", "id" : -121, - "runtimeId" : 802 + "runtimeId" : 804 }, { "name" : "minecraft:element_109", "id" : -120, - "runtimeId" : 460 + "runtimeId" : 459 }, { "name" : "minecraft:element_108", "id" : -119, - "runtimeId" : 801 + "runtimeId" : 803 }, { "name" : "minecraft:element_107", "id" : -118, - "runtimeId" : 800 + "runtimeId" : 802 }, { "name" : "minecraft:element_106", "id" : -117, - "runtimeId" : 798 + "runtimeId" : 800 }, { "name" : "minecraft:element_105", "id" : -116, - "runtimeId" : 797 + "runtimeId" : 799 }, { "name" : "minecraft:element_104", @@ -1677,12 +1712,12 @@ { "name" : "minecraft:element_99", "id" : -110, - "runtimeId" : 795 + "runtimeId" : 797 }, { "name" : "minecraft:element_98", "id" : -109, - "runtimeId" : 794 + "runtimeId" : 796 }, { "name" : "minecraft:element_97", @@ -1692,22 +1727,22 @@ { "name" : "minecraft:element_96", "id" : -107, - "runtimeId" : 793 + "runtimeId" : 795 }, { "name" : "minecraft:element_95", "id" : -106, - "runtimeId" : 791 + "runtimeId" : 793 }, { "name" : "minecraft:element_94", "id" : -105, - "runtimeId" : 790 + "runtimeId" : 792 }, { "name" : "minecraft:element_93", "id" : -104, - "runtimeId" : 789 + "runtimeId" : 791 }, { "name" : "minecraft:element_92", @@ -1717,27 +1752,27 @@ { "name" : "minecraft:element_91", "id" : -102, - "runtimeId" : 788 + "runtimeId" : 790 }, { "name" : "minecraft:element_90", "id" : -101, - "runtimeId" : 787 + "runtimeId" : 789 }, { "name" : "minecraft:element_89", "id" : -100, - "runtimeId" : 786 + "runtimeId" : 788 }, { "name" : "minecraft:element_88", "id" : -99, - "runtimeId" : 785 + "runtimeId" : 787 }, { "name" : "minecraft:element_87", "id" : -98, - "runtimeId" : 784 + "runtimeId" : 786 }, { "name" : "minecraft:element_86", @@ -1747,7 +1782,7 @@ { "name" : "minecraft:element_85", "id" : -96, - "runtimeId" : 783 + "runtimeId" : 785 }, { "name" : "minecraft:element_84", @@ -1762,22 +1797,22 @@ { "name" : "minecraft:element_82", "id" : -93, - "runtimeId" : 781 + "runtimeId" : 783 }, { "name" : "minecraft:element_81", "id" : -92, - "runtimeId" : 780 + "runtimeId" : 782 }, { "name" : "minecraft:element_80", "id" : -91, - "runtimeId" : 468 + "runtimeId" : 467 }, { "name" : "minecraft:element_79", "id" : -90, - "runtimeId" : 777 + "runtimeId" : 779 }, { "name" : "minecraft:element_78", @@ -1787,7 +1822,7 @@ { "name" : "minecraft:element_77", "id" : -88, - "runtimeId" : 776 + "runtimeId" : 778 }, { "name" : "minecraft:element_76", @@ -1797,7 +1832,7 @@ { "name" : "minecraft:element_75", "id" : -86, - "runtimeId" : 774 + "runtimeId" : 776 }, { "name" : "minecraft:element_74", @@ -1812,17 +1847,17 @@ { "name" : "minecraft:element_72", "id" : -83, - "runtimeId" : 773 + "runtimeId" : 774 }, { "name" : "minecraft:element_71", "id" : -82, - "runtimeId" : 771 + "runtimeId" : 772 }, { "name" : "minecraft:element_70", "id" : -81, - "runtimeId" : 770 + "runtimeId" : 771 }, { "name" : "minecraft:element_69", @@ -1832,27 +1867,27 @@ { "name" : "minecraft:element_68", "id" : -79, - "runtimeId" : 769 + "runtimeId" : 770 }, { "name" : "minecraft:element_67", "id" : -78, - "runtimeId" : 768 + "runtimeId" : 769 }, { "name" : "minecraft:element_66", "id" : -77, - "runtimeId" : 767 + "runtimeId" : 768 }, { "name" : "minecraft:element_65", "id" : -76, - "runtimeId" : 766 + "runtimeId" : 767 }, { "name" : "minecraft:element_64", "id" : -75, - "runtimeId" : 765 + "runtimeId" : 766 }, { "name" : "minecraft:element_63", @@ -1872,27 +1907,27 @@ { "name" : "minecraft:element_60", "id" : -71, - "runtimeId" : 763 + "runtimeId" : 764 }, { "name" : "minecraft:element_59", "id" : -70, - "runtimeId" : 762 + "runtimeId" : 763 }, { "name" : "minecraft:element_58", "id" : -69, - "runtimeId" : 761 + "runtimeId" : 762 }, { "name" : "minecraft:element_57", "id" : -68, - "runtimeId" : 759 + "runtimeId" : 760 }, { "name" : "minecraft:element_56", "id" : -67, - "runtimeId" : 756 + "runtimeId" : 757 }, { "name" : "minecraft:element_55", @@ -1902,7 +1937,7 @@ { "name" : "minecraft:element_54", "id" : -65, - "runtimeId" : 755 + "runtimeId" : 756 }, { "name" : "minecraft:element_53", @@ -1932,7 +1967,7 @@ { "name" : "minecraft:element_48", "id" : -59, - "runtimeId" : 754 + "runtimeId" : 755 }, { "name" : "minecraft:element_47", @@ -1942,17 +1977,17 @@ { "name" : "minecraft:element_46", "id" : -57, - "runtimeId" : 753 + "runtimeId" : 754 }, { "name" : "minecraft:element_45", "id" : -56, - "runtimeId" : 752 + "runtimeId" : 753 }, { "name" : "minecraft:element_44", "id" : -55, - "runtimeId" : 404 + "runtimeId" : 402 }, { "name" : "minecraft:element_43", @@ -1972,27 +2007,27 @@ { "name" : "minecraft:element_40", "id" : -51, - "runtimeId" : 750 + "runtimeId" : 751 }, { "name" : "minecraft:element_39", "id" : -50, - "runtimeId" : 749 + "runtimeId" : 750 }, { "name" : "minecraft:element_38", "id" : -49, - "runtimeId" : 748 + "runtimeId" : 749 }, { "name" : "minecraft:element_37", "id" : -48, - "runtimeId" : 747 + "runtimeId" : 748 }, { "name" : "minecraft:element_36", "id" : -47, - "runtimeId" : 745 + "runtimeId" : 746 }, { "name" : "minecraft:element_35", @@ -2002,57 +2037,57 @@ { "name" : "minecraft:element_34", "id" : -45, - "runtimeId" : 744 + "runtimeId" : 745 }, { "name" : "minecraft:element_33", "id" : -44, - "runtimeId" : 743 + "runtimeId" : 744 }, { "name" : "minecraft:element_32", "id" : -43, - "runtimeId" : 742 + "runtimeId" : 743 }, { "name" : "minecraft:element_31", "id" : -42, - "runtimeId" : 741 + "runtimeId" : 742 }, { "name" : "minecraft:element_30", "id" : -41, - "runtimeId" : 740 + "runtimeId" : 741 }, { "name" : "minecraft:element_29", "id" : -40, - "runtimeId" : 739 + "runtimeId" : 740 }, { "name" : "minecraft:element_28", "id" : -39, - "runtimeId" : 497 + "runtimeId" : 496 }, { "name" : "minecraft:element_27", "id" : -38, - "runtimeId" : 738 + "runtimeId" : 739 }, { "name" : "minecraft:element_26", "id" : -37, - "runtimeId" : 737 + "runtimeId" : 738 }, { "name" : "minecraft:element_25", "id" : -36, - "runtimeId" : 736 + "runtimeId" : 737 }, { "name" : "minecraft:element_24", "id" : -35, - "runtimeId" : 735 + "runtimeId" : 736 }, { "name" : "minecraft:element_23", @@ -2067,22 +2102,22 @@ { "name" : "minecraft:element_21", "id" : -32, - "runtimeId" : 428 + "runtimeId" : 427 }, { "name" : "minecraft:element_20", "id" : -31, - "runtimeId" : 734 + "runtimeId" : 735 }, { "name" : "minecraft:element_19", "id" : -30, - "runtimeId" : 733 + "runtimeId" : 734 }, { "name" : "minecraft:element_18", "id" : -29, - "runtimeId" : 732 + "runtimeId" : 733 }, { "name" : "minecraft:element_17", @@ -2127,7 +2162,7 @@ { "name" : "minecraft:element_9", "id" : -20, - "runtimeId" : 492 + "runtimeId" : 491 }, { "name" : "minecraft:element_8", @@ -2182,7 +2217,7 @@ { "name" : "minecraft:stripped_dark_oak_log", "id" : -9, - "runtimeId" : 1023 + "runtimeId" : 1028 }, { "name" : "minecraft:stripped_acacia_log", @@ -2192,17 +2227,17 @@ { "name" : "minecraft:stripped_jungle_log", "id" : -7, - "runtimeId" : 514 + "runtimeId" : 513 }, { "name" : "minecraft:stripped_birch_log", "id" : -6, - "runtimeId" : 874 + "runtimeId" : 876 }, { "name" : "minecraft:stripped_spruce_log", "id" : -5, - "runtimeId" : 1024 + "runtimeId" : 1029 }, { "name" : "minecraft:prismarine_bricks_stairs", @@ -2212,12 +2247,12 @@ { "name" : "minecraft:dark_prismarine_stairs", "id" : -3, - "runtimeId" : 905 + "runtimeId" : 907 }, { "name" : "minecraft:prismarine_stairs", "id" : -2, - "runtimeId" : 998 + "runtimeId" : 1001 }, { "name" : "minecraft:stone", @@ -2227,7 +2262,7 @@ { "name" : "minecraft:grass", "id" : 2, - "runtimeId" : 941 + "runtimeId" : 943 }, { "name" : "minecraft:dirt", @@ -2252,7 +2287,7 @@ { "name" : "minecraft:bedrock", "id" : 7, - "runtimeId" : 841 + "runtimeId" : 843 }, { "name" : "minecraft:flowing_water", @@ -2262,7 +2297,7 @@ { "name" : "minecraft:water", "id" : 9, - "runtimeId" : 1050 + "runtimeId" : 1057 }, { "name" : "minecraft:flowing_lava", @@ -2272,7 +2307,7 @@ { "name" : "minecraft:lava", "id" : 11, - "runtimeId" : 962 + "runtimeId" : 965 }, { "name" : "minecraft:sand", @@ -2282,12 +2317,12 @@ { "name" : "minecraft:gravel", "id" : 13, - "runtimeId" : 943 + "runtimeId" : 945 }, { "name" : "minecraft:gold_ore", "id" : 14, - "runtimeId" : 939 + "runtimeId" : 941 }, { "name" : "minecraft:iron_ore", @@ -2317,22 +2352,22 @@ { "name" : "minecraft:glass", "id" : 20, - "runtimeId" : 934 + "runtimeId" : 936 }, { "name" : "minecraft:lapis_ore", "id" : 21, - "runtimeId" : 961 + "runtimeId" : 964 }, { "name" : "minecraft:lapis_block", "id" : 22, - "runtimeId" : 960 + "runtimeId" : 963 }, { "name" : "minecraft:dispenser", "id" : 23, - "runtimeId" : 918 + "runtimeId" : 920 }, { "name" : "minecraft:sandstone", @@ -2342,22 +2377,22 @@ { "name" : "minecraft:noteblock", "id" : 25, - "runtimeId" : 983 + "runtimeId" : 986 }, { "name" : "minecraft:item.bed", "id" : 26, - "runtimeId" : 839 + "runtimeId" : 841 }, { "name" : "minecraft:golden_rail", "id" : 27, - "runtimeId" : 940 + "runtimeId" : 942 }, { "name" : "minecraft:detector_rail", "id" : 28, - "runtimeId" : 824 + "runtimeId" : 826 }, { "name" : "minecraft:sticky_piston", @@ -2367,7 +2402,7 @@ { "name" : "minecraft:web", "id" : 30, - "runtimeId" : 1065 + "runtimeId" : 1072 }, { "name" : "minecraft:tallgrass", @@ -2377,7 +2412,7 @@ { "name" : "minecraft:deadbush", "id" : 32, - "runtimeId" : 909 + "runtimeId" : 911 }, { "name" : "minecraft:piston", @@ -2387,7 +2422,7 @@ { "name" : "minecraft:pistonarmcollision", "id" : 34, - "runtimeId" : 987 + "runtimeId" : 990 }, { "name" : "minecraft:wool", @@ -2397,7 +2432,7 @@ { "name" : "minecraft:element_0", "id" : 36, - "runtimeId" : 436 + "runtimeId" : 435 }, { "name" : "minecraft:yellow_flower", @@ -2422,12 +2457,12 @@ { "name" : "minecraft:gold_block", "id" : 41, - "runtimeId" : 881 + "runtimeId" : 883 }, { "name" : "minecraft:iron_block", "id" : 42, - "runtimeId" : 952 + "runtimeId" : 955 }, { "name" : "minecraft:real_double_stone_slab", @@ -2442,7 +2477,7 @@ { "name" : "minecraft:brick_block", "id" : 45, - "runtimeId" : 424 + "runtimeId" : 423 }, { "name" : "minecraft:tnt", @@ -2457,7 +2492,7 @@ { "name" : "minecraft:mossy_cobblestone", "id" : 48, - "runtimeId" : 964 + "runtimeId" : 967 }, { "name" : "minecraft:obsidian", @@ -2467,7 +2502,7 @@ { "name" : "minecraft:torch", "id" : 50, - "runtimeId" : 1031 + "runtimeId" : 1036 }, { "name" : "minecraft:fire", @@ -2477,12 +2512,12 @@ { "name" : "minecraft:mob_spawner", "id" : 52, - "runtimeId" : 438 + "runtimeId" : 437 }, { "name" : "minecraft:oak_stairs", "id" : 53, - "runtimeId" : 984 + "runtimeId" : 987 }, { "name" : "minecraft:chest", @@ -2492,12 +2527,12 @@ { "name" : "minecraft:redstone_wire", "id" : 55, - "runtimeId" : 1006 + "runtimeId" : 1009 }, { "name" : "minecraft:diamond_ore", "id" : 56, - "runtimeId" : 917 + "runtimeId" : 919 }, { "name" : "minecraft:diamond_block", @@ -2507,12 +2542,12 @@ { "name" : "minecraft:crafting_table", "id" : 58, - "runtimeId" : 760 + "runtimeId" : 761 }, { "name" : "minecraft:item.wheat", "id" : 59, - "runtimeId" : 1015 + "runtimeId" : 1020 }, { "name" : "minecraft:farmland", @@ -2522,27 +2557,27 @@ { "name" : "minecraft:furnace", "id" : 61, - "runtimeId" : 932 + "runtimeId" : 934 }, { "name" : "minecraft:lit_furnace", "id" : 62, - "runtimeId" : 956 + "runtimeId" : 959 }, { "name" : "minecraft:standing_sign", "id" : 63, - "runtimeId" : 482 + "runtimeId" : 481 }, { "name" : "minecraft:item.wooden_door", "id" : 64, - "runtimeId" : 1069 + "runtimeId" : 1076 }, { "name" : "minecraft:ladder", "id" : 65, - "runtimeId" : 958 + "runtimeId" : 962 }, { "name" : "minecraft:rail", @@ -2552,17 +2587,17 @@ { "name" : "minecraft:stone_stairs", "id" : 67, - "runtimeId" : 1020 + "runtimeId" : 1025 }, { "name" : "minecraft:wall_sign", "id" : 68, - "runtimeId" : 861 + "runtimeId" : 863 }, { "name" : "minecraft:lever", "id" : 69, - "runtimeId" : 965 + "runtimeId" : 968 }, { "name" : "minecraft:stone_pressure_plate", @@ -2577,32 +2612,32 @@ { "name" : "minecraft:wooden_pressure_plate", "id" : 72, - "runtimeId" : 1070 + "runtimeId" : 1077 }, { "name" : "minecraft:redstone_ore", "id" : 73, - "runtimeId" : 1005 + "runtimeId" : 1008 }, { "name" : "minecraft:lit_redstone_ore", "id" : 74, - "runtimeId" : 758 + "runtimeId" : 759 }, { "name" : "minecraft:unlit_redstone_torch", "id" : 75, - "runtimeId" : 959 + "runtimeId" : 961 }, { "name" : "minecraft:redstone_torch", "id" : 76, - "runtimeId" : 778 + "runtimeId" : 780 }, { "name" : "minecraft:stone_button", "id" : 77, - "runtimeId" : 1019 + "runtimeId" : 1024 }, { "name" : "minecraft:snow_layer", @@ -2612,22 +2647,22 @@ { "name" : "minecraft:ice", "id" : 79, - "runtimeId" : 746 + "runtimeId" : 747 }, { "name" : "minecraft:snow", "id" : 80, - "runtimeId" : 823 + "runtimeId" : 825 }, { "name" : "minecraft:cactus", "id" : 81, - "runtimeId" : 796 + "runtimeId" : 798 }, { "name" : "minecraft:clay", "id" : 82, - "runtimeId" : 481 + "runtimeId" : 480 }, { "name" : "minecraft:item.reeds", @@ -2637,7 +2672,7 @@ { "name" : "minecraft:jukebox", "id" : 84, - "runtimeId" : 464 + "runtimeId" : 463 }, { "name" : "minecraft:fence", @@ -2652,7 +2687,7 @@ { "name" : "minecraft:netherrack", "id" : 87, - "runtimeId" : 980 + "runtimeId" : 983 }, { "name" : "minecraft:soul_sand", @@ -2682,12 +2717,12 @@ { "name" : "minecraft:unpowered_repeater", "id" : 93, - "runtimeId" : 1035 + "runtimeId" : 1042 }, { "name" : "minecraft:powered_repeater", "id" : 94, - "runtimeId" : 997 + "runtimeId" : 1000 }, { "name" : "minecraft:invisiblebedrock", @@ -2697,7 +2732,7 @@ { "name" : "minecraft:trapdoor", "id" : 96, - "runtimeId" : 506 + "runtimeId" : 505 }, { "name" : "minecraft:monster_egg", @@ -2717,17 +2752,17 @@ { "name" : "minecraft:red_mushroom_block", "id" : 100, - "runtimeId" : 486 + "runtimeId" : 485 }, { "name" : "minecraft:iron_bars", "id" : 101, - "runtimeId" : 469 + "runtimeId" : 468 }, { "name" : "minecraft:glass_pane", "id" : 102, - "runtimeId" : 935 + "runtimeId" : 937 }, { "name" : "minecraft:melon_block", @@ -2737,27 +2772,27 @@ { "name" : "minecraft:pumpkin_stem", "id" : 104, - "runtimeId" : 999 + "runtimeId" : 1002 }, { "name" : "minecraft:melon_stem", "id" : 105, - "runtimeId" : 970 + "runtimeId" : 973 }, { "name" : "minecraft:vine", "id" : 106, - "runtimeId" : 1037 + "runtimeId" : 1044 }, { "name" : "minecraft:fence_gate", "id" : 107, - "runtimeId" : 423 + "runtimeId" : 422 }, { "name" : "minecraft:brick_stairs", "id" : 108, - "runtimeId" : 860 + "runtimeId" : 864 }, { "name" : "minecraft:stone_brick_stairs", @@ -2767,27 +2802,27 @@ { "name" : "minecraft:mycelium", "id" : 110, - "runtimeId" : 974 + "runtimeId" : 977 }, { "name" : "minecraft:waterlily", "id" : 111, - "runtimeId" : 520 + "runtimeId" : 519 }, { "name" : "minecraft:nether_brick", "id" : 112, - "runtimeId" : 975 + "runtimeId" : 978 }, { "name" : "minecraft:nether_brick_fence", "id" : 113, - "runtimeId" : 976 + "runtimeId" : 979 }, { "name" : "minecraft:nether_brick_stairs", "id" : 114, - "runtimeId" : 977 + "runtimeId" : 980 }, { "name" : "minecraft:item.nether_wart", @@ -2797,7 +2832,7 @@ { "name" : "minecraft:enchanting_table", "id" : 116, - "runtimeId" : 925 + "runtimeId" : 927 }, { "name" : "minecraft:brewingstandblock", @@ -2807,7 +2842,7 @@ { "name" : "minecraft:item.cauldron", "id" : 118, - "runtimeId" : 872 + "runtimeId" : 874 }, { "name" : "minecraft:end_portal", @@ -2822,17 +2857,17 @@ { "name" : "minecraft:end_stone", "id" : 121, - "runtimeId" : 471 + "runtimeId" : 470 }, { "name" : "minecraft:dragon_egg", "id" : 122, - "runtimeId" : 919 + "runtimeId" : 921 }, { "name" : "minecraft:redstone_lamp", "id" : 123, - "runtimeId" : 1004 + "runtimeId" : 1007 }, { "name" : "minecraft:lit_redstone_lamp", @@ -2842,7 +2877,7 @@ { "name" : "minecraft:dropper", "id" : 125, - "runtimeId" : 922 + "runtimeId" : 924 }, { "name" : "minecraft:activator_rail", @@ -2852,17 +2887,17 @@ { "name" : "minecraft:cocoa", "id" : 127, - "runtimeId" : 888 + "runtimeId" : 890 }, { "name" : "minecraft:sandstone_stairs", "id" : 128, - "runtimeId" : 876 + "runtimeId" : 878 }, { "name" : "minecraft:emerald_ore", "id" : 129, - "runtimeId" : 899 + "runtimeId" : 901 }, { "name" : "minecraft:ender_chest", @@ -2872,7 +2907,7 @@ { "name" : "minecraft:tripwire_hook", "id" : 131, - "runtimeId" : 1032 + "runtimeId" : 1037 }, { "name" : "minecraft:tripwire", @@ -2882,7 +2917,7 @@ { "name" : "minecraft:emerald_block", "id" : 133, - "runtimeId" : 924 + "runtimeId" : 926 }, { "name" : "minecraft:spruce_stairs", @@ -2892,12 +2927,12 @@ { "name" : "minecraft:birch_stairs", "id" : 135, - "runtimeId" : 808 + "runtimeId" : 810 }, { "name" : "minecraft:jungle_stairs", "id" : 136, - "runtimeId" : 923 + "runtimeId" : 925 }, { "name" : "minecraft:command_block", @@ -2907,12 +2942,12 @@ { "name" : "minecraft:beacon", "id" : 138, - "runtimeId" : 390 + "runtimeId" : 389 }, { "name" : "minecraft:cobblestone_wall", "id" : 139, - "runtimeId" : 501 + "runtimeId" : 500 }, { "name" : "minecraft:item.flower_pot", @@ -2932,12 +2967,12 @@ { "name" : "minecraft:wooden_button", "id" : 143, - "runtimeId" : 1068 + "runtimeId" : 1075 }, { "name" : "minecraft:item.skull", "id" : 144, - "runtimeId" : 1010 + "runtimeId" : 1015 }, { "name" : "minecraft:anvil", @@ -2957,17 +2992,17 @@ { "name" : "minecraft:heavy_weighted_pressure_plate", "id" : 148, - "runtimeId" : 950 + "runtimeId" : 952 }, { "name" : "minecraft:unpowered_comparator", "id" : 149, - "runtimeId" : 397 + "runtimeId" : 1041 }, { "name" : "minecraft:powered_comparator", "id" : 150, - "runtimeId" : 433 + "runtimeId" : 432 }, { "name" : "minecraft:daylight_detector", @@ -2997,7 +3032,7 @@ { "name" : "minecraft:quartz_stairs", "id" : 156, - "runtimeId" : 825 + "runtimeId" : 827 }, { "name" : "minecraft:double_wooden_slab", @@ -3022,7 +3057,7 @@ { "name" : "minecraft:leaves2", "id" : 161, - "runtimeId" : 454 + "runtimeId" : 453 }, { "name" : "minecraft:log2", @@ -3077,37 +3112,37 @@ { "name" : "minecraft:hardened_clay", "id" : 172, - "runtimeId" : 949 + "runtimeId" : 951 }, { "name" : "minecraft:coal_block", "id" : 173, - "runtimeId" : 883 + "runtimeId" : 885 }, { "name" : "minecraft:packed_ice", "id" : 174, - "runtimeId" : 890 + "runtimeId" : 892 }, { "name" : "minecraft:double_plant", "id" : 175, - "runtimeId" : 458 + "runtimeId" : 457 }, { "name" : "minecraft:standing_banner", "id" : 176, - "runtimeId" : 835 + "runtimeId" : 837 }, { "name" : "minecraft:wall_banner", "id" : 177, - "runtimeId" : 1038 + "runtimeId" : 1045 }, { "name" : "minecraft:daylight_detector_inverted", "id" : 178, - "runtimeId" : 475 + "runtimeId" : 474 }, { "name" : "minecraft:red_sandstone", @@ -3117,7 +3152,7 @@ { "name" : "minecraft:red_sandstone_stairs", "id" : 180, - "runtimeId" : 401 + "runtimeId" : 399 }, { "name" : "minecraft:real_double_stone_slab2", @@ -3127,7 +3162,7 @@ { "name" : "minecraft:double_stone_slab2", "id" : 182, - "runtimeId" : 490 + "runtimeId" : 489 }, { "name" : "minecraft:spruce_fence_gate", @@ -3137,7 +3172,7 @@ { "name" : "minecraft:birch_fence_gate", "id" : 184, - "runtimeId" : 847 + "runtimeId" : 849 }, { "name" : "minecraft:jungle_fence_gate", @@ -3147,17 +3182,17 @@ { "name" : "minecraft:dark_oak_fence_gate", "id" : 186, - "runtimeId" : 809 + "runtimeId" : 811 }, { "name" : "minecraft:acacia_fence_gate", "id" : 187, - "runtimeId" : 826 + "runtimeId" : 828 }, { "name" : "minecraft:repeating_command_block", "id" : 188, - "runtimeId" : 1007 + "runtimeId" : 1010 }, { "name" : "minecraft:chain_command_block", @@ -3167,7 +3202,7 @@ { "name" : "minecraft:hard_glass_pane", "id" : 190, - "runtimeId" : 948 + "runtimeId" : 950 }, { "name" : "minecraft:hard_stained_glass_pane", @@ -3177,12 +3212,12 @@ { "name" : "minecraft:chemical_heat", "id" : 192, - "runtimeId" : 878 + "runtimeId" : 880 }, { "name" : "minecraft:item.spruce_door", "id" : 193, - "runtimeId" : 1016 + "runtimeId" : 1021 }, { "name" : "minecraft:item.birch_door", @@ -3192,12 +3227,12 @@ { "name" : "minecraft:item.jungle_door", "id" : 195, - "runtimeId" : 954 + "runtimeId" : 957 }, { "name" : "minecraft:item.acacia_door", "id" : 196, - "runtimeId" : 500 + "runtimeId" : 499 }, { "name" : "minecraft:item.dark_oak_door", @@ -3207,17 +3242,17 @@ { "name" : "minecraft:grass_path", "id" : 198, - "runtimeId" : 942 + "runtimeId" : 944 }, { "name" : "minecraft:item.frame", "id" : 199, - "runtimeId" : 485 + "runtimeId" : 484 }, { "name" : "minecraft:chorus_flower", "id" : 200, - "runtimeId" : 853 + "runtimeId" : 855 }, { "name" : "minecraft:purpur_block", @@ -3227,12 +3262,12 @@ { "name" : "minecraft:colored_torch_rg", "id" : 202, - "runtimeId" : 425 + "runtimeId" : 424 }, { "name" : "minecraft:purpur_stairs", "id" : 203, - "runtimeId" : 830 + "runtimeId" : 832 }, { "name" : "minecraft:colored_torch_bp", @@ -3252,7 +3287,7 @@ { "name" : "minecraft:frosted_ice", "id" : 207, - "runtimeId" : 837 + "runtimeId" : 839 }, { "name" : "minecraft:end_rod", @@ -3267,7 +3302,7 @@ { "name" : "minecraft:allow", "id" : 210, - "runtimeId" : 831 + "runtimeId" : 833 }, { "name" : "minecraft:deny", @@ -3277,7 +3312,7 @@ { "name" : "minecraft:border_block", "id" : 212, - "runtimeId" : 859 + "runtimeId" : 861 }, { "name" : "minecraft:magma", @@ -3297,12 +3332,12 @@ { "name" : "minecraft:bone_block", "id" : 216, - "runtimeId" : 858 + "runtimeId" : 860 }, { "name" : "minecraft:structure_void", "id" : 217, - "runtimeId" : 1028 + "runtimeId" : 1033 }, { "name" : "minecraft:shulker_box", @@ -3312,12 +3347,12 @@ { "name" : "minecraft:purple_glazed_terracotta", "id" : 219, - "runtimeId" : 1000 + "runtimeId" : 1003 }, { "name" : "minecraft:white_glazed_terracotta", "id" : 220, - "runtimeId" : 1066 + "runtimeId" : 1073 }, { "name" : "minecraft:orange_glazed_terracotta", @@ -3342,17 +3377,17 @@ { "name" : "minecraft:lime_glazed_terracotta", "id" : 225, - "runtimeId" : 968 + "runtimeId" : 971 }, { "name" : "minecraft:pink_glazed_terracotta", "id" : 226, - "runtimeId" : 870 + "runtimeId" : 872 }, { "name" : "minecraft:gray_glazed_terracotta", "id" : 227, - "runtimeId" : 945 + "runtimeId" : 947 }, { "name" : "minecraft:silver_glazed_terracotta", @@ -3362,32 +3397,32 @@ { "name" : "minecraft:cyan_glazed_terracotta", "id" : 229, - "runtimeId" : 799 + "runtimeId" : 801 }, { "name" : "minecraft:blue_glazed_terracotta", "id" : 231, - "runtimeId" : 857 + "runtimeId" : 859 }, { "name" : "minecraft:brown_glazed_terracotta", "id" : 232, - "runtimeId" : 864 + "runtimeId" : 866 }, { "name" : "minecraft:green_glazed_terracotta", "id" : 233, - "runtimeId" : 946 + "runtimeId" : 948 }, { "name" : "minecraft:red_glazed_terracotta", "id" : 234, - "runtimeId" : 1002 + "runtimeId" : 1005 }, { "name" : "minecraft:black_glazed_terracotta", "id" : 235, - "runtimeId" : 757 + "runtimeId" : 758 }, { "name" : "minecraft:concrete", @@ -3407,12 +3442,12 @@ { "name" : "minecraft:underwater_torch", "id" : 239, - "runtimeId" : 1034 + "runtimeId" : 1039 }, { "name" : "minecraft:chorus_plant", "id" : 240, - "runtimeId" : 882 + "runtimeId" : 884 }, { "name" : "minecraft:stained_glass", @@ -3422,12 +3457,12 @@ { "name" : "minecraft:item.camera", "id" : 242, - "runtimeId" : 868 + "runtimeId" : 870 }, { "name" : "minecraft:podzol", "id" : 243, - "runtimeId" : 988 + "runtimeId" : 991 }, { "name" : "minecraft:item.beetroot", @@ -3437,22 +3472,22 @@ { "name" : "minecraft:stonecutter", "id" : 245, - "runtimeId" : 1021 + "runtimeId" : 1026 }, { "name" : "minecraft:glowingobsidian", "id" : 246, - "runtimeId" : 453 + "runtimeId" : 452 }, { "name" : "minecraft:netherreactor", "id" : 247, - "runtimeId" : 981 + "runtimeId" : 984 }, { "name" : "minecraft:info_update", "id" : 248, - "runtimeId" : 951 + "runtimeId" : 954 }, { "name" : "minecraft:info_update2", @@ -3462,7 +3497,7 @@ { "name" : "minecraft:movingblock", "id" : 250, - "runtimeId" : 973 + "runtimeId" : 976 }, { "name" : "minecraft:observer", @@ -3472,7 +3507,7 @@ { "name" : "minecraft:structure_block", "id" : 252, - "runtimeId" : 1027 + "runtimeId" : 1032 }, { "name" : "minecraft:hard_glass", @@ -4272,12 +4307,12 @@ { "name" : "minecraft:ink_sac", "id" : 413, - "runtimeId" : 379 + "runtimeId" : 378 }, { "name" : "minecraft:lapis_lazuli", "id" : 414, - "runtimeId" : 383 + "runtimeId" : 382 }, { "name" : "minecraft:bone", @@ -4287,12 +4322,12 @@ { "name" : "minecraft:sugar", "id" : 416, - "runtimeId" : 386 + "runtimeId" : 385 }, { "name" : "minecraft:cake", "id" : 417, - "runtimeId" : 389 + "runtimeId" : 388 }, { "name" : "minecraft:bed", @@ -4302,22 +4337,22 @@ { "name" : "minecraft:repeater", "id" : 419, - "runtimeId" : 391 + "runtimeId" : 390 }, { "name" : "minecraft:filled_map", "id" : 420, - "runtimeId" : 394 + "runtimeId" : 393 }, { "name" : "minecraft:shears", "id" : 421, - "runtimeId" : 398 + "runtimeId" : 396 }, { "name" : "minecraft:ender_pearl", "id" : 422, - "runtimeId" : 399 + "runtimeId" : 397 }, { "name" : "minecraft:blaze_rod", @@ -4327,7 +4362,7 @@ { "name" : "minecraft:ghast_tear", "id" : 424, - "runtimeId" : 402 + "runtimeId" : 400 }, { "name" : "minecraft:gold_nugget", @@ -4342,32 +4377,32 @@ { "name" : "minecraft:glass_bottle", "id" : 427, - "runtimeId" : 403 + "runtimeId" : 401 }, { "name" : "minecraft:fermented_spider_eye", "id" : 428, - "runtimeId" : 409 + "runtimeId" : 407 }, { "name" : "minecraft:blaze_powder", "id" : 429, - "runtimeId" : 411 + "runtimeId" : 409 }, { "name" : "minecraft:magma_cream", "id" : 430, - "runtimeId" : 412 + "runtimeId" : 411 }, { "name" : "minecraft:brewing_stand", "id" : 431, - "runtimeId" : 413 + "runtimeId" : 412 }, { "name" : "minecraft:cauldron", "id" : 432, - "runtimeId" : 416 + "runtimeId" : 415 }, { "name" : "minecraft:ender_eye", @@ -4382,7 +4417,7 @@ { "name" : "minecraft:chicken_spawn_egg", "id" : 435, - "runtimeId" : 417 + "runtimeId" : 416 }, { "name" : "minecraft:cow_spawn_egg", @@ -4392,12 +4427,12 @@ { "name" : "minecraft:pig_spawn_egg", "id" : 437, - "runtimeId" : 418 + "runtimeId" : 417 }, { "name" : "minecraft:sheep_spawn_egg", "id" : 438, - "runtimeId" : 419 + "runtimeId" : 418 }, { "name" : "minecraft:wolf_spawn_egg", @@ -4407,12 +4442,12 @@ { "name" : "minecraft:mooshroom_spawn_egg", "id" : 440, - "runtimeId" : 420 + "runtimeId" : 419 }, { "name" : "minecraft:creeper_spawn_egg", "id" : 441, - "runtimeId" : 388 + "runtimeId" : 387 }, { "name" : "minecraft:enderman_spawn_egg", @@ -4427,7 +4462,7 @@ { "name" : "minecraft:skeleton_spawn_egg", "id" : 444, - "runtimeId" : 422 + "runtimeId" : 421 }, { "name" : "minecraft:slime_spawn_egg", @@ -4437,12 +4472,12 @@ { "name" : "minecraft:spider_spawn_egg", "id" : 446, - "runtimeId" : 427 + "runtimeId" : 426 }, { "name" : "minecraft:zombie_spawn_egg", "id" : 447, - "runtimeId" : 429 + "runtimeId" : 428 }, { "name" : "minecraft:zombie_pigman_spawn_egg", @@ -4452,12 +4487,12 @@ { "name" : "minecraft:villager_spawn_egg", "id" : 449, - "runtimeId" : 430 + "runtimeId" : 429 }, { "name" : "minecraft:squid_spawn_egg", "id" : 450, - "runtimeId" : 431 + "runtimeId" : 430 }, { "name" : "minecraft:ocelot_spawn_egg", @@ -4472,17 +4507,17 @@ { "name" : "minecraft:bat_spawn_egg", "id" : 453, - "runtimeId" : 434 + "runtimeId" : 433 }, { "name" : "minecraft:ghast_spawn_egg", "id" : 454, - "runtimeId" : 435 + "runtimeId" : 434 }, { "name" : "minecraft:magma_cube_spawn_egg", "id" : 455, - "runtimeId" : 440 + "runtimeId" : 439 }, { "name" : "minecraft:blaze_spawn_egg", @@ -4492,7 +4527,7 @@ { "name" : "minecraft:cave_spider_spawn_egg", "id" : 457, - "runtimeId" : 444 + "runtimeId" : 443 }, { "name" : "minecraft:horse_spawn_egg", @@ -4507,12 +4542,12 @@ { "name" : "minecraft:endermite_spawn_egg", "id" : 460, - "runtimeId" : 445 + "runtimeId" : 444 }, { "name" : "minecraft:guardian_spawn_egg", "id" : 461, - "runtimeId" : 446 + "runtimeId" : 445 }, { "name" : "minecraft:stray_spawn_egg", @@ -4522,32 +4557,32 @@ { "name" : "minecraft:husk_spawn_egg", "id" : 463, - "runtimeId" : 448 + "runtimeId" : 447 }, { "name" : "minecraft:wither_skeleton_spawn_egg", "id" : 464, - "runtimeId" : 451 + "runtimeId" : 450 }, { "name" : "minecraft:donkey_spawn_egg", "id" : 465, - "runtimeId" : 456 + "runtimeId" : 455 }, { "name" : "minecraft:mule_spawn_egg", "id" : 466, - "runtimeId" : 457 + "runtimeId" : 456 }, { "name" : "minecraft:skeleton_horse_spawn_egg", "id" : 467, - "runtimeId" : 459 + "runtimeId" : 458 }, { "name" : "minecraft:zombie_horse_spawn_egg", "id" : 468, - "runtimeId" : 463 + "runtimeId" : 462 }, { "name" : "minecraft:shulker_spawn_egg", @@ -4557,7 +4592,7 @@ { "name" : "minecraft:npc_spawn_egg", "id" : 470, - "runtimeId" : 465 + "runtimeId" : 464 }, { "name" : "minecraft:elder_guardian_spawn_egg", @@ -4567,12 +4602,12 @@ { "name" : "minecraft:polar_bear_spawn_egg", "id" : 472, - "runtimeId" : 467 + "runtimeId" : 466 }, { "name" : "minecraft:llama_spawn_egg", "id" : 473, - "runtimeId" : 470 + "runtimeId" : 469 }, { "name" : "minecraft:vindicator_spawn_egg", @@ -4587,12 +4622,12 @@ { "name" : "minecraft:vex_spawn_egg", "id" : 476, - "runtimeId" : 472 + "runtimeId" : 471 }, { "name" : "minecraft:zombie_villager_spawn_egg", "id" : 477, - "runtimeId" : 477 + "runtimeId" : 476 }, { "name" : "minecraft:parrot_spawn_egg", @@ -4602,42 +4637,42 @@ { "name" : "minecraft:tropical_fish_spawn_egg", "id" : 479, - "runtimeId" : 480 + "runtimeId" : 479 }, { "name" : "minecraft:cod_spawn_egg", "id" : 480, - "runtimeId" : 483 + "runtimeId" : 482 }, { "name" : "minecraft:pufferfish_spawn_egg", "id" : 481, - "runtimeId" : 487 + "runtimeId" : 486 }, { "name" : "minecraft:salmon_spawn_egg", "id" : 482, - "runtimeId" : 489 + "runtimeId" : 488 }, { "name" : "minecraft:drowned_spawn_egg", "id" : 483, - "runtimeId" : 396 + "runtimeId" : 395 }, { "name" : "minecraft:dolphin_spawn_egg", "id" : 484, - "runtimeId" : 491 + "runtimeId" : 490 }, { "name" : "minecraft:turtle_spawn_egg", "id" : 485, - "runtimeId" : 494 + "runtimeId" : 493 }, { "name" : "minecraft:phantom_spawn_egg", "id" : 486, - "runtimeId" : 495 + "runtimeId" : 494 }, { "name" : "minecraft:agent_spawn_egg", @@ -4647,7 +4682,7 @@ { "name" : "minecraft:cat_spawn_egg", "id" : 488, - "runtimeId" : 499 + "runtimeId" : 498 }, { "name" : "minecraft:panda_spawn_egg", @@ -4657,7 +4692,7 @@ { "name" : "minecraft:fox_spawn_egg", "id" : 490, - "runtimeId" : 502 + "runtimeId" : 501 }, { "name" : "minecraft:pillager_spawn_egg", @@ -4667,7 +4702,7 @@ { "name" : "minecraft:wandering_trader_spawn_egg", "id" : 492, - "runtimeId" : 505 + "runtimeId" : 504 }, { "name" : "minecraft:ravager_spawn_egg", @@ -4687,12 +4722,12 @@ { "name" : "minecraft:hoglin_spawn_egg", "id" : 496, - "runtimeId" : 507 + "runtimeId" : 506 }, { "name" : "minecraft:piglin_spawn_egg", "id" : 497, - "runtimeId" : 449 + "runtimeId" : 448 }, { "name" : "minecraft:zoglin_spawn_egg", @@ -4712,7 +4747,7 @@ { "name" : "minecraft:goat_spawn_egg", "id" : 501, - "runtimeId" : 508 + "runtimeId" : 507 }, { "name" : "minecraft:glow_squid_spawn_egg", @@ -4722,12 +4757,12 @@ { "name" : "minecraft:glow_ink_sac", "id" : 503, - "runtimeId" : 510 + "runtimeId" : 509 }, { "name" : "minecraft:copper_ingot", "id" : 504, - "runtimeId" : 511 + "runtimeId" : 510 }, { "name" : "minecraft:raw_iron", @@ -4792,7 +4827,7 @@ { "name" : "minecraft:carrot_on_a_stick", "id" : 517, - "runtimeId" : 504 + "runtimeId" : 503 }, { "name" : "minecraft:nether_star", @@ -4827,7 +4862,7 @@ { "name" : "minecraft:quartz", "id" : 524, - "runtimeId" : 503 + "runtimeId" : 502 }, { "name" : "minecraft:tnt_minecart", @@ -4947,7 +4982,7 @@ { "name" : "minecraft:name_tag", "id" : 548, - "runtimeId" : 387 + "runtimeId" : 386 }, { "name" : "minecraft:prismarine_crystals", @@ -4962,7 +4997,7 @@ { "name" : "minecraft:cooked_mutton", "id" : 551, - "runtimeId" : 405 + "runtimeId" : 403 }, { "name" : "minecraft:armor_stand", @@ -4997,7 +5032,7 @@ { "name" : "minecraft:chorus_fruit", "id" : 558, - "runtimeId" : 381 + "runtimeId" : 380 }, { "name" : "minecraft:popped_chorus_fruit", @@ -5032,7 +5067,7 @@ { "name" : "minecraft:prismarine_shard", "id" : 565, - "runtimeId" : 518 + "runtimeId" : 517 }, { "name" : "minecraft:shulker_shell", @@ -5087,7 +5122,7 @@ { "name" : "minecraft:spruce_sign", "id" : 576, - "runtimeId" : 455 + "runtimeId" : 454 }, { "name" : "minecraft:birch_sign", @@ -5152,7 +5187,7 @@ { "name" : "minecraft:suspicious_stew", "id" : 589, - "runtimeId" : 385 + "runtimeId" : 384 }, { "name" : "minecraft:honeycomb", @@ -5167,7 +5202,7 @@ { "name" : "minecraft:camera", "id" : 592, - "runtimeId" : 380 + "runtimeId" : 379 }, { "name" : "minecraft:compound", @@ -5182,12 +5217,12 @@ { "name" : "minecraft:bleach", "id" : 595, - "runtimeId" : 426 + "runtimeId" : 425 }, { "name" : "minecraft:rapid_fertilizer", "id" : 596, - "runtimeId" : 479 + "runtimeId" : 478 }, { "name" : "minecraft:balloon", @@ -5227,7 +5262,7 @@ { "name" : "minecraft:netherite_pickaxe", "id" : 604, - "runtimeId" : 461 + "runtimeId" : 460 }, { "name" : "minecraft:netherite_axe", @@ -5247,7 +5282,7 @@ { "name" : "minecraft:netherite_chestplate", "id" : 608, - "runtimeId" : 393 + "runtimeId" : 392 }, { "name" : "minecraft:netherite_leggings", @@ -5272,7 +5307,7 @@ { "name" : "minecraft:warped_sign", "id" : 613, - "runtimeId" : 437 + "runtimeId" : 436 }, { "name" : "minecraft:crimson_door", @@ -5287,12 +5322,12 @@ { "name" : "minecraft:warped_fungus_on_a_stick", "id" : 616, - "runtimeId" : 442 + "runtimeId" : 441 }, { "name" : "minecraft:chain", "id" : 617, - "runtimeId" : 439 + "runtimeId" : 438 }, { "name" : "minecraft:music_disc_pigstep", @@ -5307,7 +5342,7 @@ { "name" : "minecraft:soul_campfire", "id" : 620, - "runtimeId" : 443 + "runtimeId" : 442 }, { "name" : "minecraft:glow_frame", @@ -5332,7 +5367,7 @@ { "name" : "minecraft:boat", "id" : 625, - "runtimeId" : 817 + "runtimeId" : 819 }, { "name" : "minecraft:dye", @@ -5342,7 +5377,7 @@ { "name" : "minecraft:banner_pattern", "id" : 627, - "runtimeId" : 818 + "runtimeId" : 820 }, { "name" : "minecraft:spawn_egg", @@ -5352,11 +5387,11 @@ { "name" : "minecraft:end_crystal", "id" : 629, - "runtimeId" : 819 + "runtimeId" : 821 }, { "name" : "minecraft:glow_berries", "id" : 630, - "runtimeId" : 821 + "runtimeId" : 823 } ] \ No newline at end of file From 01e7a3512fe14afb0456dba0525ec130ee066e6f Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 23 Oct 2021 20:32:31 -0300 Subject: [PATCH 238/394] Changes add support to load persisted state ids from the recipes.json --- .gitignore | 4 ++ .../java/cn/nukkit/blockstate/BlockState.java | 68 +++++++++++++++++++ .../cn/nukkit/inventory/CraftingManager.java | 15 +++- .../tools/RuntimeItemIdUpdater.java | 2 +- .../updater/AllResourceUpdates.java | 51 ++++++++++++++ .../dumps/pmmp}/required_item_list.json | 0 .../updater/dumps/proxypass}/recipes.json | 0 .../dumps/proxypass}/runtime_item_states.json | 0 8 files changed, 138 insertions(+), 2 deletions(-) create mode 100644 src/test/java/org/powernukkit/updater/AllResourceUpdates.java rename src/test/resources/{ => org/powernukkit/updater/dumps/pmmp}/required_item_list.json (100%) rename src/{main/resources => test/resources/org/powernukkit/updater/dumps/proxypass}/recipes.json (100%) rename src/test/resources/{ => org/powernukkit/updater/dumps/proxypass}/runtime_item_states.json (100%) diff --git a/.gitignore b/.gitignore index 7db4d2e93fd..4167682c346 100644 --- a/.gitignore +++ b/.gitignore @@ -234,6 +234,10 @@ data/ data/* /src/main/resources/rebel.xml /run +!/src/main/resources/* +!/src/main/resources/**/* +!/src/test/resources/* +!/src/test/resources/**/* ### Add the codestyle to the repo !/.idea/codeStyles diff --git a/src/main/java/cn/nukkit/blockstate/BlockState.java b/src/main/java/cn/nukkit/blockstate/BlockState.java index 5cf42cdaad8..08b6f72cbd2 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockState.java +++ b/src/main/java/cn/nukkit/blockstate/BlockState.java @@ -154,6 +154,74 @@ public static BlockState of(@Nonnegative int blockId, @Nonnegative Number blockD throw new InvalidBlockStateDataTypeException(blockData); } } + + /** + *

Returns the {@link BlockState} object that represents the given {@code persistedStateId}. + * + *

Same as {@code of(persistedStateid, true}. + * + * @param persistedStateId Must follow the same syntax returned by {@link #getStateId()} or {@link #getLegacyStateId()} + * @throws InvalidBlockPropertyValueException If any property value in the given {@code persistedStateId} is not valid for the state. + * + * @return The block state, never null + */ + @Nonnull + public static BlockState of(@Nonnull String persistedStateId) { + return of(persistedStateId, true); + } + + /** + * Returns the {@link BlockState} object that represents the given {@code persistedStateId}. + * + * @param persistedStateId Must follow the same syntax returned by {@link #getStateId()} or {@link #getLegacyStateId()} + * @param useDefaultPropertyValues When {@code true}, the default value will be used for any missing {@link BlockProperty} + * in {@code persistedStateId}. + * @throws IllegalArgumentException If {@code useDefaultPropertyValues} is false and there are missing properties + * @throws InvalidBlockPropertyValueException If any property value in the given {@code persistedStateId} is not valid for the state. + * @throws NoSuchElementException If there are no block registered with the given id. + * + * @return The block state, never null + */ + @Nonnull + public static BlockState of(@Nonnull String persistedStateId, boolean useDefaultPropertyValues) { + String[] parts = persistedStateId.split(";"); + String namespacedId = parts[0]; + int id = Optional.ofNullable(BlockStateRegistry.getBlockId(namespacedId)) + .map(OptionalInt::of) + .orElse(OptionalInt.empty()) + .orElseThrow(()-> new NoSuchElementException("Block " + namespacedId + " not found.")); + + // Fast path + BlockState state = BlockState.of(id); + if (parts.length == 1 && useDefaultPropertyValues) { + return state; + } + + if (parts.length == 1 && state.getPropertyNames().isEmpty()) { + return state; + } + + if (useDefaultPropertyValues) { + for (int i = 1; i < parts.length; i++) { + state = state.withProperty(parts[0], parts[1]); + } + return state; + } else { + Set defined = new LinkedHashSet<>(); + Set needed = new LinkedHashSet<>(state.getPropertyNames()); + for (int i = 1; i < parts.length; i++) { + state = state.withProperty(parts[0], parts[1]); + defined.add(parts[0]); + } + needed.removeAll(defined); + if (needed.isEmpty()) { + return state; + } + throw new IllegalArgumentException( + "The state id " + persistedStateId + " is missing the following properties: " + needed + ); + } + } @Getter @Nonnegative diff --git a/src/main/java/cn/nukkit/inventory/CraftingManager.java b/src/main/java/cn/nukkit/inventory/CraftingManager.java index c80da058001..86033a22884 100644 --- a/src/main/java/cn/nukkit/inventory/CraftingManager.java +++ b/src/main/java/cn/nukkit/inventory/CraftingManager.java @@ -320,12 +320,25 @@ private Item parseRecipeItem(Map data) { byte[] nbtBytes = nbt != null ? Base64.getDecoder().decode(nbt) : EmptyArrays.EMPTY_BYTES; int count = data.containsKey("count")? ((Number)data.get("count")).intValue() : 1; + + Item item; + if (data.containsKey("blockState")) { + try { + BlockState state = BlockState.of(data.get("blockState").toString()); + item = state.asItemBlock(count); + item.setCompoundTag(nbtBytes); + return item; + } catch (Exception e) { + log.error("Failed to load the block state {}", data.get("blockState"), e); + return Item.getBlock(BlockID.AIR); + } + } + Integer legacyId = null; if (data.containsKey("legacyId")) { legacyId = Utils.toInt(data.get("legacyId")); } - Item item; if (data.containsKey("blockRuntimeId")) { int blockRuntimeId = Utils.toInt(data.get("blockRuntimeId")); try { diff --git a/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java b/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java index 4f137974bd5..38694638d7f 100644 --- a/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java +++ b/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java @@ -53,7 +53,7 @@ public static void main(String[] args) throws IOException { } JsonArray requiredItems; - try(InputStream resourceAsStream = Server.class.getClassLoader().getResourceAsStream("runtime_item_states.json"); + try(InputStream resourceAsStream = Server.class.getClassLoader().getResourceAsStream("org/powernukkit/dumps/proxypass/runtime_item_states.json"); Reader reader = new InputStreamReader(Objects.requireNonNull(resourceAsStream), StandardCharsets.UTF_8); BufferedReader bufferedReader = new BufferedReader(reader); ) { diff --git a/src/test/java/org/powernukkit/updater/AllResourceUpdates.java b/src/test/java/org/powernukkit/updater/AllResourceUpdates.java new file mode 100644 index 00000000000..49418676545 --- /dev/null +++ b/src/test/java/org/powernukkit/updater/AllResourceUpdates.java @@ -0,0 +1,51 @@ +package org.powernukkit.updater; + +import cn.nukkit.block.Block; +import cn.nukkit.item.Item; +import cn.nukkit.item.enchantment.Enchantment; + +/** + * @author joserobjr + * @since 2021-10-23 + */ +public class AllResourceUpdates { + public static void main(String[] args) { + /* + Pre-requisites: + - Download: https://github.com/pmmp/BedrockData/blob/master/canonical_block_states.nbt + into: src/main/resources/canonical_block_states.nbt + - Download: https://github.com/pmmp/BedrockData/blob/master/required_item_list.json + into: src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json + - Run ProxyPass with export-data in config.yml set to true, the proxy pass must be + pointing to a vanilla BDS server from https://www.minecraft.net/en-us/download/server/bedrock + - Connect to the ProxyPass server with the last Minecraft Bedrock Edition client + - Copy data/biome_definitions.dat from the proxy pass dump + into: src/main/resources/biome_definitions.dat + - Copy data/entity_identifiers.dat from the proxy pass dump + into: src/main/resources/entity_identifiers.dat + - Copy data/creativeitems.json from the proxy pass dump + into: src/main/resources/creativeitems.json + - Copy data/runtime_item_states.json from the proxy pass dump + into: src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json + - Copy data/recipes.json from the proxy pass dump + into: src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json + - Run src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java + - Run src/test/java/org/powernukkit/dumps/ItemIdDumper.java + - Run src/test/java/org/powernukkit/dumps/RuntimeBlockStateDumper.java + */ + + new AllResourceUpdates().execute(); + } + + private void execute() { + init(); + } + + private void init() { + Block.init(); + Enchantment.init(); + Item.init(); + + + } +} diff --git a/src/test/resources/required_item_list.json b/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json similarity index 100% rename from src/test/resources/required_item_list.json rename to src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json diff --git a/src/main/resources/recipes.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json similarity index 100% rename from src/main/resources/recipes.json rename to src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json diff --git a/src/test/resources/runtime_item_states.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json similarity index 100% rename from src/test/resources/runtime_item_states.json rename to src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json From 9bf75642ee41356c468d256b002e49ef12dc5e34 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 23 Oct 2021 23:42:54 -0300 Subject: [PATCH 239/394] Changes the strucutre of recipes.json and fixes recipes --- .../java/cn/nukkit/blockstate/BlockState.java | 20 +- .../nukkit/blockstate/BlockStateRegistry.java | 59 +- .../cn/nukkit/inventory/CraftingManager.java | 62 +- src/main/java/cn/nukkit/utils/Config.java | 69 +- src/main/resources/recipes.json | 50911 +++++++ .../updater/AllResourceUpdates.java | 217 +- .../updater/dumps/proxypass/recipes.json | 118232 +++++++-------- 7 files changed, 110415 insertions(+), 59155 deletions(-) create mode 100644 src/main/resources/recipes.json diff --git a/src/main/java/cn/nukkit/blockstate/BlockState.java b/src/main/java/cn/nukkit/blockstate/BlockState.java index 08b6f72cbd2..6e318a53599 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockState.java +++ b/src/main/java/cn/nukkit/blockstate/BlockState.java @@ -184,8 +184,8 @@ public static BlockState of(@Nonnull String persistedStateId) { */ @Nonnull public static BlockState of(@Nonnull String persistedStateId, boolean useDefaultPropertyValues) { - String[] parts = persistedStateId.split(";"); - String namespacedId = parts[0]; + String[] stateParts = persistedStateId.split(";"); + String namespacedId = stateParts[0]; int id = Optional.ofNullable(BlockStateRegistry.getBlockId(namespacedId)) .map(OptionalInt::of) .orElse(OptionalInt.empty()) @@ -193,25 +193,27 @@ public static BlockState of(@Nonnull String persistedStateId, boolean useDefault // Fast path BlockState state = BlockState.of(id); - if (parts.length == 1 && useDefaultPropertyValues) { + if (stateParts.length == 1 && useDefaultPropertyValues) { return state; } - if (parts.length == 1 && state.getPropertyNames().isEmpty()) { + if (stateParts.length == 1 && state.getPropertyNames().isEmpty()) { return state; } if (useDefaultPropertyValues) { - for (int i = 1; i < parts.length; i++) { - state = state.withProperty(parts[0], parts[1]); + for (int i = 1; i < stateParts.length; i++) { + String[] propertyKeyValue = stateParts[i].split("=", 2); + state = state.withProperty(propertyKeyValue[0], propertyKeyValue[1]); } return state; } else { Set defined = new LinkedHashSet<>(); Set needed = new LinkedHashSet<>(state.getPropertyNames()); - for (int i = 1; i < parts.length; i++) { - state = state.withProperty(parts[0], parts[1]); - defined.add(parts[0]); + for (int i = 1; i < stateParts.length; i++) { + String[] propertyKeyValue = stateParts[i].split("=", 2); + state = state.withProperty(propertyKeyValue[0], propertyKeyValue[1]); + defined.add(propertyKeyValue[0]); } needed.removeAll(defined); if (needed.isEmpty()) { diff --git a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java index e7038826dc8..c54f8c06517 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java +++ b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java @@ -8,6 +8,7 @@ import cn.nukkit.block.BlockID; import cn.nukkit.block.BlockUnknown; import cn.nukkit.blockproperty.BlockProperties; +import cn.nukkit.blockproperty.exception.BlockPropertyNotFoundException; import cn.nukkit.blockstate.exception.InvalidBlockStateException; import cn.nukkit.nbt.NBTIO; import cn.nukkit.nbt.tag.CompoundTag; @@ -15,6 +16,7 @@ import cn.nukkit.utils.BinaryStream; import cn.nukkit.utils.HumanStringComparator; import com.google.common.base.Preconditions; +import io.netty.util.internal.EmptyArrays; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; import lombok.AllArgsConstructor; @@ -58,6 +60,8 @@ public class BlockStateRegistry { private final byte[] blockPaletteBytes; + private final List knownStateIds; + // static { @@ -95,6 +99,7 @@ public class BlockStateRegistry { // List tags = new ArrayList<>(); + List loadingKnownStateIds = new ArrayList<>(); try (InputStream stream = Server.class.getClassLoader().getResourceAsStream("canonical_block_states.nbt")) { if (stream == null) { throw new AssertionError("Unable to locate block state nbt"); @@ -107,8 +112,10 @@ public class BlockStateRegistry { tag.putInt("runtimeId", runtimeId++); tag.putInt("blockId", persistenceNameToBlockId.getOrDefault(tag.getString("name").toLowerCase(), -1)); tags.add(tag); + loadingKnownStateIds.add(getStateId(tag)); } } + knownStateIds = Arrays.asList(loadingKnownStateIds.toArray(EmptyArrays.EMPTY_STRINGS)); } catch (IOException e) { throw new AssertionError(e); } @@ -152,7 +159,7 @@ public class BlockStateRegistry { } // - + private boolean isNameOwnerOfId(String name, int blockId) { return blockId != -1 && !name.equals("minecraft:wood") || blockId == BlockID.WOOD_BARK; } @@ -176,6 +183,22 @@ private static Registration findRegistrationByRuntimeId(int runtimeId) { return runtimeIdRegistration.get(runtimeId); } + @PowerNukkitOnly + @Since("FUTURE") + @Nullable + public String getKnownBlockStateIdByRuntimeId(int runtimeId) { + if (runtimeId >= 0 && runtimeId < knownStateIds.size()) { + return knownStateIds.get(runtimeId); + } + return null; + } + + @PowerNukkitOnly + @Since("FUTURE") + public int getKnownRuntimeIdByBlockStateId(String stateId) { + return knownStateIds.indexOf(stateId); + } + /** * @return {@code null} if the runtime id does not matches any known block state. */ @@ -220,6 +243,40 @@ private BlockState buildStateFromCompound(CompoundTag block) { return state; } + @PowerNukkitOnly + @Since("FUTURE") + public int getBlockIdByRuntimeId(int runtimeId) { + Registration registration = findRegistrationByRuntimeId(runtimeId); + if (registration == null) { + throw new NoSuchElementException("The block id for the runtime id "+runtimeId+" is not registered"); + } + BlockState state = registration.state; + if (state != null) { + return state.getBlockId(); + } + CompoundTag originalBlock = registration.originalBlock; + if (originalBlock == null) { + throw new NoSuchElementException("The block id for the runtime id "+runtimeId+" is not registered"); + } + try { + state = buildStateFromCompound(originalBlock); + } catch (BlockPropertyNotFoundException e) { + String name = originalBlock.getString("name").toLowerCase(Locale.ENGLISH); + Integer id = getBlockId(name); + if (id == null) { + throw new NoSuchElementException("The block id for the runtime id "+runtimeId+" is not registered"); + } + return id; + } + if (state != null) { + registration.state = state; + registration.originalBlock = null; + } else { + throw new NoSuchElementException("The block id for the runtime id "+runtimeId+" is not registered"); + } + return state.getBlockId(); + } + @PowerNukkitOnly @Since("1.4.0.0-PN") public int getRuntimeId(BlockState state) { diff --git a/src/main/java/cn/nukkit/inventory/CraftingManager.java b/src/main/java/cn/nukkit/inventory/CraftingManager.java index 86033a22884..d67e79b010d 100644 --- a/src/main/java/cn/nukkit/inventory/CraftingManager.java +++ b/src/main/java/cn/nukkit/inventory/CraftingManager.java @@ -3,8 +3,10 @@ import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; import cn.nukkit.block.BlockUnknown; +import cn.nukkit.blockproperty.UnknownRuntimeIdException; import cn.nukkit.blockproperty.exception.BlockPropertyNotFoundException; import cn.nukkit.blockstate.BlockState; import cn.nukkit.blockstate.BlockStateRegistry; @@ -27,7 +29,9 @@ import javax.annotation.Nonnull; import javax.annotation.Nullable; import java.io.File; +import java.io.IOException; import java.io.InputStream; +import java.io.UncheckedIOException; import java.util.*; import java.util.zip.Deflater; @@ -81,15 +85,19 @@ public static DataPacket getCraftingPacket() { } public CraftingManager() { - InputStream recipesStream = Server.class.getClassLoader().getResourceAsStream("recipes.json"); - if (recipesStream == null) { - throw new AssertionError("Unable to find recipes.json"); - } - registerSmithingRecipes(); Config recipesConfig = new Config(Config.JSON); - recipesConfig.load(recipesStream); + try(InputStream recipesStream = Server.class.getClassLoader().getResourceAsStream("recipes.json")) { + if (recipesStream == null) { + throw new AssertionError("Unable to find recipes.json"); + } + + recipesConfig.load(recipesStream); + } catch (IOException e) { + throw new UncheckedIOException(e); + } + this.loadRecipes(recipesConfig); String path = Server.getInstance().getDataPath() + "custom_recipes.json"; @@ -129,10 +137,6 @@ private void registerSmithingRecipes() { private void loadRecipes(Config config) { List recipes = config.getMapList("recipes"); log.info("Loading recipes..."); - if (true) { - log.fatal("Recipes are disabled"); - return; - } toNextRecipe: for (Map recipe : recipes) { try { @@ -317,6 +321,7 @@ private void loadRecipes(Config config) { private Item parseRecipeItem(Map data) { String nbt = (String) data.get("nbt_b64"); + boolean fuzzy = data.containsKey("fuzzy") && Boolean.parseBoolean(data.get("fuzzy").toString()); byte[] nbtBytes = nbt != null ? Base64.getDecoder().decode(nbt) : EmptyArrays.EMPTY_BYTES; int count = data.containsKey("count")? ((Number)data.get("count")).intValue() : 1; @@ -327,18 +332,30 @@ private Item parseRecipeItem(Map data) { BlockState state = BlockState.of(data.get("blockState").toString()); item = state.asItemBlock(count); item.setCompoundTag(nbtBytes); + if (fuzzy) { + item = item.createFuzzyCraftingRecipe(); + } return item; + } catch (BlockPropertyNotFoundException | UnknownRuntimeIdException e) { + int runtimeId = BlockStateRegistry.getKnownRuntimeIdByBlockStateId(data.get("blockState").toString()); + if (runtimeId == -1) { + log.warn("Unsupported block found in recipes.json: {}", data.get("blockState")); + return Item.get(BlockID.AIR); + } + int blockId = BlockStateRegistry.getBlockIdByRuntimeId(runtimeId); + BlockState defaultBlockState = BlockState.of(blockId); + if (defaultBlockState.getProperties().equals(BlockUnknown.PROPERTIES)) { + log.warn("Unsupported block found in recipes.json: {}", data.get("blockState")); + return Item.get(BlockID.AIR); + } + log.error("Failed to load a recipe with {}", data.get("blockState"), e); + return Item.get(Block.AIR); } catch (Exception e) { log.error("Failed to load the block state {}", data.get("blockState"), e); return Item.getBlock(BlockID.AIR); } } - Integer legacyId = null; - if (data.containsKey("legacyId")) { - legacyId = Utils.toInt(data.get("legacyId")); - } - if (data.containsKey("blockRuntimeId")) { int blockRuntimeId = Utils.toInt(data.get("blockRuntimeId")); try { @@ -351,12 +368,19 @@ private Item parseRecipeItem(Map data) { } item = state.asItemBlock(count); item.setCompoundTag(nbtBytes); + if (fuzzy) { + item = item.createFuzzyCraftingRecipe(); + } return item; } catch (BlockPropertyNotFoundException e) { log.debug("Failed to load the block runtime id {}", blockRuntimeId, e); } } + Integer legacyId = null; + if (data.containsKey("legacyId")) { + legacyId = Utils.toInt(data.get("legacyId")); + } if (legacyId != null && legacyId > 255) { try { int fullId = RuntimeItems.getRuntimeMapping().getLegacyFullId(legacyId); @@ -366,7 +390,6 @@ private Item parseRecipeItem(Map data) { meta = RuntimeItems.getData(fullId); } - boolean fuzzy = false; if (data.containsKey("damage")) { int damage = Utils.toInt(data.get("damage")); if (damage == Short.MAX_VALUE) { @@ -392,7 +415,8 @@ private Item parseRecipeItem(Map data) { if (data.containsKey("damage")) { int meta = Utils.toInt(data.get("damage")); if (meta == Short.MAX_VALUE) { - item = Item.fromString(id).createFuzzyCraftingRecipe(); + item = Item.fromString(id); + fuzzy = true; } else { item = Item.fromString(id + ":" + meta); } @@ -401,6 +425,10 @@ private Item parseRecipeItem(Map data) { } item.setCount(count); item.setCompoundTag(nbtBytes); + if (fuzzy) { + item = item.createFuzzyCraftingRecipe(); + } + return item; } diff --git a/src/main/java/cn/nukkit/utils/Config.java b/src/main/java/cn/nukkit/utils/Config.java index 166d06b8bd5..ab79eb60a64 100644 --- a/src/main/java/cn/nukkit/utils/Config.java +++ b/src/main/java/cn/nukkit/utils/Config.java @@ -1,6 +1,8 @@ package cn.nukkit.utils; import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.scheduler.FileWriteTask; import com.google.gson.Gson; import com.google.gson.GsonBuilder; @@ -184,6 +186,23 @@ public boolean load(InputStream inputStream) { return correct; } + @PowerNukkitOnly + @Since("FUTURE") + public boolean loadAsJson(InputStream inputStream, Gson gson) { + if (inputStream == null) return false; + if (this.correct) { + String content; + try { + content = Utils.readFile(inputStream); + } catch (IOException e) { + log.error("An error occurred while loading a config from an input stream, input: {}", inputStream, e); + return false; + } + this.parseContentAsJson(content, gson); + } + return correct; + } + public boolean check() { return this.correct; } @@ -209,10 +228,27 @@ public boolean save(File file) { return save(); } + @PowerNukkitOnly + @Since("FUTURE") + public boolean saveAsJson(File file, boolean async, Gson gson) { + this.file = file; + return saveAsJson(async, gson); + } + public boolean save() { return this.save(false); } + @PowerNukkitOnly + @Since("FUTURE") + public boolean saveAsJson(Boolean async, Gson gson) { + if (!this.correct) { + return false; + } + save0(async, new StringBuilder(gson.toJson(this.config))); + return true; + } + public boolean save(Boolean async) { if (this.file == null) throw new IllegalStateException("Failed to save Config. File object is undefined."); if (this.correct) { @@ -237,22 +273,25 @@ public boolean save(Boolean async) { } break; } - if (async) { - Server.getInstance().getScheduler().scheduleAsyncTask(new FileWriteTask(this.file, content.toString())); - - } else { - try { - Utils.writeFile(this.file, content.toString()); - } catch (IOException e) { - log.error("Failed to save the config file {}", file, e); - } - } + save0(async, content); return true; } else { return false; } } + private void save0(Boolean async, StringBuilder content) { + if (async) { + Server.getInstance().getScheduler().scheduleAsyncTask(new FileWriteTask(this.file, content.toString())); + } else { + try { + Utils.writeFile(this.file, content.toString()); + } catch (IOException e) { + log.error("Failed to save the config file {}", file, e); + } + } + } + public void set(final String key, Object value) { this.config.set(key, value); } @@ -535,6 +574,16 @@ public void removeNested(String key) { remove(key); } + private void parseContentAsJson(String content, Gson gson) { + try { + this.config = new ConfigSection(gson.fromJson(content, new TypeToken>() { + }.getType())); + } catch (Exception e) { + log.warn("Failed to parse the config file {}", file, e); + throw e; + } + } + private void parseContent(String content) { try { switch (this.type) { diff --git a/src/main/resources/recipes.json b/src/main/resources/recipes.json new file mode 100644 index 00000000000..ce7b998572f --- /dev/null +++ b/src/main/resources/recipes.json @@ -0,0 +1,50911 @@ +{ + "version": 471, + "recipes": [ + { + "type": 4, + "uuid": "442d85ed-8272-4543-a6f1-418f90ded05d" + }, + { + "type": 4, + "uuid": "8b36268c-1829-483c-a0f1-993b7156a8f2" + }, + { + "type": 4, + "uuid": "602234e4-cac1-4353-8bb7-b1ebff70024b" + }, + { + "id": "minecraft:cartography_table_locator_map", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:compass", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:empty_map", + "damage": 2 + } + ], + "block": "cartography_table", + "priority": 0 + }, + { + "id": "minecraft:cartography_table_map", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:empty_map" + } + ], + "block": "cartography_table", + "priority": 0 + }, + { + "type": 4, + "uuid": "98c84b38-1085-46bd-b1ce-dd38c159e6cc" + }, + { + "id": "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:chiseled_deepslate" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:cobbled_deepslate_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:deepslate_brick_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:deepslate_brick_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:deepslate_brick_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecut", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_bricks" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_bricks" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:deepslate_tile_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:deepslate_tile_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:deepslate_tile_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:deepslate_tile_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_tiles" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_tiles" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:deepslate_tiles" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:polished_deepslate" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecut", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:polished_deepslate_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:polished_deepslate_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecut", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecut", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_andesite_slab", + "type": 0, + "input": [ + { + "damage": 5, + "blockState": "minecraft:stone;stone_type=andesite" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_andesite_stairs", + "type": 0, + "input": [ + { + "damage": 5, + "blockState": "minecraft:stone;stone_type=andesite" + } + ], + "output": [ + { + "blockState": "minecraft:andesite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_andesite_wall", + "type": 0, + "input": [ + { + "damage": 5, + "blockState": "minecraft:stone;stone_type=andesite" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=andesite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_blackstone_slab_from_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:blackstone" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:blackstone_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_blackstone_stairs_from_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_blackstone_wall_from_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_brick_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:brick_block" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_brick_slab_from_polished_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:polished_blackstone" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:polished_blackstone_brick_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_brick_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:brick_block" + } + ], + "output": [ + { + "blockState": "minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_brick_stairs_from_polished_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:polished_blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_brick_wall", + "type": 0, + "input": [ + { + "blockState": "minecraft:brick_block" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_brick_wall_from_polished_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:polished_blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_bricks_from_polished_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:polished_blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone_bricks" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_chiseled_from_polished_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:polished_blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:chiseled_polished_blackstone" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_chiseled_nether_bricks_from_nether_brick", + "type": 0, + "input": [ + { + "blockState": "minecraft:nether_brick" + } + ], + "output": [ + { + "blockState": "minecraft:chiseled_nether_bricks" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_chiseled_polished_from_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:chiseled_polished_blackstone" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_cobbledouble_stone_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:cobblestone" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_cobblestone_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:cobblestone" + } + ], + "output": [ + { + "blockState": "minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_cobblestone_wall", + "type": 0, + "input": [ + { + "blockState": "minecraft:cobblestone" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=cobblestone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_copper_block_to_cut_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:cut_copper" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_copper_block_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_copper_block_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_dark_prismarine_slab", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:prismarine;prismarine_block_type=dark" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_dark_prismarine_stairs", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:prismarine;prismarine_block_type=dark" + } + ], + "output": [ + { + "blockState": "minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_diorite_slab", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:stone;stone_type=diorite" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_diorite_stairs", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:stone;stone_type=diorite" + } + ], + "output": [ + { + "blockState": "minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_diorite_wall", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:stone;stone_type=diorite" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=diorite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_double_stone_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:stone;stone_type=stone" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab4;stone_slab_type_4=stone;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 5 + }, + { + "id": "minecraft:stonecutter_endbrick_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:end_stone" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_endbrick_slab2", + "type": 0, + "input": [ + { + "blockState": "minecraft:end_bricks" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_endbrick_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:end_stone" + } + ], + "output": [ + { + "blockState": "minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_endbrick_stairs2", + "type": 0, + "input": [ + { + "blockState": "minecraft:end_bricks" + } + ], + "output": [ + { + "blockState": "minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_endbrick_wall", + "type": 0, + "input": [ + { + "blockState": "minecraft:end_stone" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=end_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_endbrick_wall2", + "type": 0, + "input": [ + { + "blockState": "minecraft:end_bricks" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=end_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_endbricks", + "type": 0, + "input": [ + { + "blockState": "minecraft:end_stone" + } + ], + "output": [ + { + "blockState": "minecraft:end_bricks" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_exposed_copper_to_cut_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:exposed_cut_copper" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_exposed_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_exposed_copper_to_exposed_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:exposed_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:exposed_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_granite_slab", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:stone;stone_type=granite" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_granite_stairs", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:stone;stone_type=granite" + } + ], + "output": [ + { + "blockState": "minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_granite_wall", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:stone;stone_type=granite" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=granite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_mossy_cobbledouble_stone_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:mossy_cobblestone" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_mossy_cobblestone_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:mossy_cobblestone" + } + ], + "output": [ + { + "blockState": "minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_mossy_cobblestone_wall", + "type": 0, + "input": [ + { + "blockState": "minecraft:mossy_cobblestone" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_cobblestone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_mossy_stonebrick_slab", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:stonebrick;stone_brick_type=mossy" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab4;stone_slab_type_4=mossy_stone_brick;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_mossy_stonebrick_stairs", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:stonebrick;stone_brick_type=mossy" + } + ], + "output": [ + { + "blockState": "minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_mossy_stonebrick_wall", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:stonebrick;stone_brick_type=mossy" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_nether_brick_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:nether_brick" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_nether_brick_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:nether_brick" + } + ], + "output": [ + { + "blockState": "minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_nether_brick_wall", + "type": 0, + "input": [ + { + "blockState": "minecraft:nether_brick" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=nether_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_oxidized_copper_to_cut_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:oxidized_cut_copper" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_oxidized_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:oxidized_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_oxidized_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:oxidized_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_andesite", + "type": 0, + "input": [ + { + "damage": 5, + "blockState": "minecraft:stone;stone_type=andesite" + } + ], + "output": [ + { + "blockState": "minecraft:stone;stone_type=andesite_smooth" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_polished_andesite_slab", + "type": 0, + "input": [ + { + "damage": 5, + "blockState": "minecraft:stone;stone_type=andesite" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_polished_andesite_slab2", + "type": 0, + "input": [ + { + "damage": 6, + "blockState": "minecraft:stone;stone_type=andesite_smooth" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_andesite_stairs", + "type": 0, + "input": [ + { + "damage": 5, + "blockState": "minecraft:stone;stone_type=andesite" + } + ], + "output": [ + { + "blockState": "minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 5 + }, + { + "id": "minecraft:stonecutter_polished_andesite_stairs2", + "type": 0, + "input": [ + { + "damage": 6, + "blockState": "minecraft:stone;stone_type=andesite_smooth" + } + ], + "output": [ + { + "blockState": "minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_polished_basalt_from_basalt", + "type": 0, + "input": [ + { + "blockState": "minecraft:basalt;pillar_axis=y" + } + ], + "output": [ + { + "blockState": "minecraft:polished_basalt;pillar_axis=y" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_brick_slab_from_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:blackstone" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:polished_blackstone_brick_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_brick_stairs_from_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_brick_wall_from_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_bricks_from_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone_bricks" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_diorite", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:stone;stone_type=diorite" + } + ], + "output": [ + { + "blockState": "minecraft:stone;stone_type=diorite_smooth" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_polished_diorite_slab", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:stone;stone_type=diorite" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_polished_diorite_slab2", + "type": 0, + "input": [ + { + "damage": 4, + "blockState": "minecraft:stone;stone_type=diorite_smooth" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_diorite_stairs", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:stone;stone_type=diorite" + } + ], + "output": [ + { + "blockState": "minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 5 + }, + { + "id": "minecraft:stonecutter_polished_diorite_stairs2", + "type": 0, + "input": [ + { + "damage": 4, + "blockState": "minecraft:stone;stone_type=diorite_smooth" + } + ], + "output": [ + { + "blockState": "minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_polished_from_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_granite", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:stone;stone_type=granite" + } + ], + "output": [ + { + "blockState": "minecraft:stone;stone_type=granite_smooth" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_polished_granite_slab", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:stone;stone_type=granite" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_polished_granite_slab2", + "type": 0, + "input": [ + { + "damage": 2, + "blockState": "minecraft:stone;stone_type=granite_smooth" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_granite_stairs", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:stone;stone_type=granite" + } + ], + "output": [ + { + "blockState": "minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 5 + }, + { + "id": "minecraft:stonecutter_polished_granite_stairs2", + "type": 0, + "input": [ + { + "damage": 2, + "blockState": "minecraft:stone;stone_type=granite_smooth" + } + ], + "output": [ + { + "blockState": "minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_polished_slab_from_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:blackstone" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:polished_blackstone_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_stairs_from_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_wall_from_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_prismarine_brick_slab", + "type": 0, + "input": [ + { + "damage": 2, + "blockState": "minecraft:prismarine;prismarine_block_type=bricks" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_prismarine_brick_stairs", + "type": 0, + "input": [ + { + "damage": 2, + "blockState": "minecraft:prismarine;prismarine_block_type=bricks" + } + ], + "output": [ + { + "blockState": "minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_prismarine_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:prismarine;prismarine_block_type=default" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_prismarine_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:prismarine;prismarine_block_type=default" + } + ], + "output": [ + { + "blockState": "minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_prismarine_wall", + "type": 0, + "input": [ + { + "blockState": "minecraft:prismarine;prismarine_block_type=default" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=prismarine;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_purpur_lines", + "type": 0, + "input": [ + { + "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + } + ], + "output": [ + { + "blockState": "minecraft:purpur_block;chisel_type=lines;pillar_axis=y" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_purpur_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_purpur_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + } + ], + "output": [ + { + "blockState": "minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_quartz_bricks_from_quartz_block", + "type": 0, + "input": [ + { + "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + } + ], + "output": [ + { + "blockState": "minecraft:quartz_bricks" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_quartz_chiseled", + "type": 0, + "input": [ + { + "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + } + ], + "output": [ + { + "blockState": "minecraft:quartz_block;chisel_type=chiseled;pillar_axis=y" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_quartz_lines", + "type": 0, + "input": [ + { + "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + } + ], + "output": [ + { + "blockState": "minecraft:quartz_block;chisel_type=lines;pillar_axis=y" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_quartz_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_quartz_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + } + ], + "output": [ + { + "blockState": "minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_red_nether_brick_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:red_nether_brick" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_red_nether_brick_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:red_nether_brick" + } + ], + "output": [ + { + "blockState": "minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_red_nether_brick_wall", + "type": 0, + "input": [ + { + "blockState": "minecraft:red_nether_brick" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=red_nether_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_red_sanddouble_stone_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:red_sandstone;sand_stone_type=default" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_red_sandstone_cut", + "type": 0, + "input": [ + { + "blockState": "minecraft:red_sandstone;sand_stone_type=default" + } + ], + "output": [ + { + "blockState": "minecraft:red_sandstone;sand_stone_type=cut" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_red_sandstone_heiroglyphs", + "type": 0, + "input": [ + { + "blockState": "minecraft:red_sandstone;sand_stone_type=default" + } + ], + "output": [ + { + "blockState": "minecraft:red_sandstone;sand_stone_type=heiroglyphs" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_red_sandstone_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:red_sandstone;sand_stone_type=default" + } + ], + "output": [ + { + "blockState": "minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_red_sandstone_wall", + "type": 0, + "input": [ + { + "blockState": "minecraft:red_sandstone;sand_stone_type=default" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=red_sandstone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_sanddouble_stone_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:sandstone;sand_stone_type=default" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_sandstone_cut", + "type": 0, + "input": [ + { + "blockState": "minecraft:sandstone;sand_stone_type=default" + } + ], + "output": [ + { + "blockState": "minecraft:sandstone;sand_stone_type=cut" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_sandstone_heiroglyphs", + "type": 0, + "input": [ + { + "blockState": "minecraft:sandstone;sand_stone_type=default" + } + ], + "output": [ + { + "blockState": "minecraft:sandstone;sand_stone_type=heiroglyphs" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_sandstone_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:sandstone;sand_stone_type=default" + } + ], + "output": [ + { + "blockState": "minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_sandstone_wall", + "type": 0, + "input": [ + { + "blockState": "minecraft:sandstone;sand_stone_type=default" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=sandstone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_slab_from_polished_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:polished_blackstone" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:polished_blackstone_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_slab_from_polished_blackstone_bricks", + "type": 0, + "input": [ + { + "blockState": "minecraft:polished_blackstone_bricks" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:polished_blackstone_brick_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_smooth_double_stone_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:smooth_stone" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_smooth_quartz_slab", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab4;stone_slab_type_4=smooth_quartz;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_smooth_quartz_stairs", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" + } + ], + "output": [ + { + "blockState": "minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_smooth_red_sanddouble_stone_slab", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:red_sandstone;sand_stone_type=smooth" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_smooth_red_sandstone_stairs", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:red_sandstone;sand_stone_type=smooth" + } + ], + "output": [ + { + "blockState": "minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_smooth_sanddouble_stone_slab", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:sandstone;sand_stone_type=smooth" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_smooth_sandstone_stairs", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:sandstone;sand_stone_type=smooth" + } + ], + "output": [ + { + "blockState": "minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_stairs_from_polished_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:polished_blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_stone_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:stone;stone_type=stone" + } + ], + "output": [ + { + "blockState": "minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 6 + }, + { + "id": "minecraft:stonecutter_stonebrick", + "type": 0, + "input": [ + { + "blockState": "minecraft:stone;stone_type=stone" + } + ], + "output": [ + { + "blockState": "minecraft:stonebrick;stone_brick_type=default" + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_stonebrick_chiseled", + "type": 0, + "input": [ + { + "blockState": "minecraft:stone;stone_type=stone" + } + ], + "output": [ + { + "blockState": "minecraft:stonebrick;stone_brick_type=chiseled" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_stonebrick_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:stone;stone_type=stone" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_stonebrick_slab2", + "type": 0, + "input": [ + { + "blockState": "minecraft:stonebrick;stone_brick_type=default" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_stonebrick_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:stone;stone_type=stone" + } + ], + "output": [ + { + "blockState": "minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_stonebrick_stairs2", + "type": 0, + "input": [ + { + "blockState": "minecraft:stonebrick;stone_brick_type=default" + } + ], + "output": [ + { + "blockState": "minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_stonebrick_wall", + "type": 0, + "input": [ + { + "blockState": "minecraft:stone;stone_type=stone" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_stonebrick_wall2", + "type": 0, + "input": [ + { + "blockState": "minecraft:stonebrick;stone_brick_type=default" + } + ], + "output": [ + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_wall_from_polished_blackstone", + "type": 0, + "input": [ + { + "blockState": "minecraft:polished_blackstone" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_wall_from_polished_blackstone_bricks", + "type": 0, + "input": [ + { + "blockState": "minecraft:polished_blackstone_bricks" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_copper_to_cut_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_cut_copper" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_waxed_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:waxed_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_copper_to_exposed_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:waxed_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_exposed_cut_copper" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_oxidized_cut_copper" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_weathered_cut_copper" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_weathered_copper_to_cut_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:weathered_cut_copper" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_weathered_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:weathered_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_weathered_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:weathered_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "stonecutter_stairs_from_polished_blackstone_bricks", + "type": 0, + "input": [ + { + "blockState": "minecraft:polished_blackstone_bricks" + } + ], + "output": [ + { + "blockState": "minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "Bookshelf_woodplanks_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:book", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:bookshelf" + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "Bowl_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bowl", + "count": 4 + } + ], + "shape": [ + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "ButtonAcacia_recipeId", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:planks;wood_type=acacia" + } + }, + "output": [ + { + "blockState": "minecraft:acacia_button;button_pressed_bit=0;facing_direction=0" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "ButtonBirch_recipeId", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:planks;wood_type=birch" + } + }, + "output": [ + { + "blockState": "minecraft:birch_button;button_pressed_bit=0;facing_direction=0" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "ButtonDarkOak_recipeId", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:planks;wood_type=dark_oak" + } + }, + "output": [ + { + "blockState": "minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=0" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "ButtonJungle_recipeId", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:planks;wood_type=jungle" + } + }, + "output": [ + { + "blockState": "minecraft:jungle_button;button_pressed_bit=0;facing_direction=0" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "ButtonSpruce_recipeId", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:planks;wood_type=spruce" + } + }, + "output": [ + { + "blockState": "minecraft:spruce_button;button_pressed_bit=0;facing_direction=0" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Chest_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:chest;facing_direction=0" + } + ], + "shape": [ + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "DaylightDetector_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:quartz", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:daylight_detector;redstone_signal=0" + } + ], + "shape": [ + "AAA", + "BBB", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "FireCharge_blaze_powder_coal_sulphur_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:blaze_powder", + "fuzzy": true + }, + { + "id": "minecraft:charcoal", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:fire_charge", + "count": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "FireCharge_coal_sulphur_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:blaze_powder", + "fuzzy": true + }, + { + "id": "minecraft:coal" + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:fire_charge", + "count": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Jukebox_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:diamond", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:jukebox" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "Note_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:noteblock" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "Painting_Cobblestone_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Painting_NetherBrick_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:nether_brick" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Painting_VanillaBlocks_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:sandstone;sand_stone_type=default" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Painting_recipeId", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:wool;color=white" + } + }, + "output": [ + { + "id": "minecraft:painting" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Piston_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "blockState": "minecraft:cobblestone" + }, + "C": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "D": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:piston;facing_direction=1" + } + ], + "shape": [ + "AAA", + "BCB", + "BDB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "PressurePlateAcacia_recipeId", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:planks;wood_type=acacia" + } + }, + "output": [ + { + "blockState": "minecraft:acacia_pressure_plate;redstone_signal=0" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "PressurePlateBirch_recipeId", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:planks;wood_type=birch" + } + }, + "output": [ + { + "blockState": "minecraft:birch_pressure_plate;redstone_signal=0" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "PressurePlateDarkOak_recipeId", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:planks;wood_type=dark_oak" + } + }, + "output": [ + { + "blockState": "minecraft:dark_oak_pressure_plate;redstone_signal=0" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "PressurePlateJungle_recipeId", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:planks;wood_type=jungle" + } + }, + "output": [ + { + "blockState": "minecraft:jungle_pressure_plate;redstone_signal=0" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "PressurePlateSpruce_recipeId", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:planks;wood_type=spruce" + } + }, + "output": [ + { + "blockState": "minecraft:spruce_pressure_plate;redstone_signal=0" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Stick_bamboo_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:bamboo;age_bit=0;bamboo_leaf_size=no_leaves;bamboo_stalk_thickness=thin" + } + }, + "output": [ + { + "id": "minecraft:stick" + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "StoneSlab4_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stone;stone_type=stone" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab4;stone_slab_type_4=stone;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "StoneSlab4_stoneBrick_recipeId", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:stonebrick;stone_brick_type=mossy" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab4;stone_slab_type_4=mossy_stone_brick;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "StoneSlab_Brick_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:brick_block" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "StoneSlab_StoneBrick_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stonebrick;stone_brick_type=default" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "StoneSlab_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:smooth_stone" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Torch_charcoal_recipeId", + "type": 1, + "input": { + "A": { + "id": "minecraft:charcoal", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:torch;torch_facing_direction=unknown" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Torch_recipeId", + "type": 1, + "input": { + "A": { + "id": "minecraft:coal" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:torch;torch_facing_direction=unknown" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "TrapdoorAcacia_recipeId", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:planks;wood_type=acacia" + } + }, + "output": [ + { + "count": 2, + "blockState": "minecraft:acacia_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "TrapdoorBirch_recipeId", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:planks;wood_type=birch" + } + }, + "output": [ + { + "count": 2, + "blockState": "minecraft:birch_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "TrapdoorDarkOak_recipeId", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:planks;wood_type=dark_oak" + } + }, + "output": [ + { + "count": 2, + "blockState": "minecraft:dark_oak_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "TrapdoorJungle_recipeId", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:planks;wood_type=jungle" + } + }, + "output": [ + { + "count": 2, + "blockState": "minecraft:jungle_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "TrapdoorSpruce_recipeId", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:planks;wood_type=spruce" + } + }, + "output": [ + { + "count": 2, + "blockState": "minecraft:spruce_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Trapdoor_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "count": 2, + "blockState": "minecraft:trapdoor;direction=0;open_bit=0;upside_down_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "TripwireHook_recipeId", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "count": 2, + "blockState": "minecraft:tripwire_hook;attached_bit=0;direction=0;powered_bit=0" + } + ], + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "WoodButton_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:wooden_button;button_pressed_bit=0;facing_direction=0" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "WoodPressurePlate_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:wooden_pressure_plate;redstone_signal=0" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "WorkBench_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:crafting_table" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "acacia_stairs_acacia_recipeId", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:planks;wood_type=acacia" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:acacia_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "type": 4, + "uuid": "d81aaeaf-e172-4440-9225-868df030d27b" + }, + { + "type": 4, + "uuid": "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" + }, + { + "type": 4, + "uuid": "00000000-0000-0000-0000-000000000002" + }, + { + "id": "bed_color_0", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:wool;color=white" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed" + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_1", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_10", + "type": 1, + "input": { + "A": { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_11", + "type": 1, + "input": { + "A": { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_12", + "type": 1, + "input": { + "A": { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_13", + "type": 1, + "input": { + "A": { + "damage": 13, + "blockState": "minecraft:wool;color=green" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_14", + "type": 1, + "input": { + "A": { + "damage": 14, + "blockState": "minecraft:wool;color=red" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_15", + "type": 1, + "input": { + "A": { + "damage": 15, + "blockState": "minecraft:wool;color=black" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_2", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_3", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_4", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_5", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_6", + "type": 1, + "input": { + "A": { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_7", + "type": 1, + "input": { + "A": { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_8", + "type": 1, + "input": { + "A": { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_9", + "type": 1, + "input": { + "A": { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_crimson_0", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:wool;color=white" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed" + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_1", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_10", + "type": 1, + "input": { + "A": { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_11", + "type": 1, + "input": { + "A": { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_12", + "type": 1, + "input": { + "A": { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_13", + "type": 1, + "input": { + "A": { + "damage": 13, + "blockState": "minecraft:wool;color=green" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_14", + "type": 1, + "input": { + "A": { + "damage": 14, + "blockState": "minecraft:wool;color=red" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_15", + "type": 1, + "input": { + "A": { + "damage": 15, + "blockState": "minecraft:wool;color=black" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_2", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_3", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_4", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_5", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_6", + "type": 1, + "input": { + "A": { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_7", + "type": 1, + "input": { + "A": { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_8", + "type": 1, + "input": { + "A": { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_9", + "type": 1, + "input": { + "A": { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_0", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:wool;color=white" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed" + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_1", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_10", + "type": 1, + "input": { + "A": { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_11", + "type": 1, + "input": { + "A": { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_12", + "type": 1, + "input": { + "A": { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_13", + "type": 1, + "input": { + "A": { + "damage": 13, + "blockState": "minecraft:wool;color=green" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_14", + "type": 1, + "input": { + "A": { + "damage": 14, + "blockState": "minecraft:wool;color=red" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_15", + "type": 1, + "input": { + "A": { + "damage": 15, + "blockState": "minecraft:wool;color=black" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_2", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_3", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_4", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_5", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_6", + "type": 1, + "input": { + "A": { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_7", + "type": 1, + "input": { + "A": { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_8", + "type": 1, + "input": { + "A": { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_9", + "type": 1, + "input": { + "A": { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_dye_0_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_9", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_0", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_1", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_10", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_11", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_12", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_13", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_14", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_15", + "type": 0, + "input": [ + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_2", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_3", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_4", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_5", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_6", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_7", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_8", + "type": 0, + "input": [ + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "birch_stairs_birch_recipeId", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:planks;wood_type=birch" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:birch_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "type": 4, + "uuid": "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" + }, + { + "id": "chiseled_quartz_recipeId", + "type": 1, + "input": { + "A": { + "damage": 6, + "blockState": "minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:quartz_block;chisel_type=chiseled;pillar_axis=y" + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "chiseled_stonebrick_recipeId", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:stonebrick;stone_brick_type=chiseled" + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "type": 4, + "uuid": "85939755-ba10-4d9d-a4cc-efb7a8e943c4" + }, + { + "id": "dark_oak_stairs_dark_oak_recipeId", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:planks;wood_type=dark_oak" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "type": 4, + "uuid": "d392b075-4ba1-40ae-8789-af868d56f6ce" + }, + { + "id": "heiroglyphs_redsandstone_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:red_sandstone;sand_stone_type=heiroglyphs" + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "heiroglyphs_sandstone_recipeId", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:sandstone;sand_stone_type=heiroglyphs" + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "jungle_stairs_jungle_recipeId", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:planks;wood_type=jungle" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "lines_purpur_recipeId", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:purpur_block;chisel_type=lines;pillar_axis=y" + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "loom_block_wood_planks_recipeId", + "type": 1, + "input": { + "A": { + "id": "minecraft:string", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:loom;direction=0" + } + ], + "shape": [ + "AA", + "BB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_boat", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:planks;wood_type=acacia" + }, + "B": { + "id": "minecraft:wooden_shovel", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:acacia_boat", + "damage": 4 + } + ], + "shape": [ + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_door", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:planks;wood_type=acacia" + } + }, + "output": [ + { + "id": "minecraft:acacia_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_fence", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:planks;wood_type=acacia" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:fence;wood_type=acacia" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_fence_gate", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "damage": 4, + "blockState": "minecraft:planks;wood_type=acacia" + } + }, + "output": [ + { + "blockState": "minecraft:acacia_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=acacia" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_planks_from_stripped", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=acacia" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "damage": 12, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=acacia" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=acacia" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_planks_from_wood", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=acacia" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=acacia" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_stairs", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:planks;wood_type=acacia" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:acacia_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_wood", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=acacia" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_wood_stripped", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=acacia" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_wooden_slab", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:planks;wood_type=acacia" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=acacia" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:activator_rail", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:redstone_torch;torch_facing_direction=unknown" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:activator_rail;rail_data_bit=0;rail_direction=0" + } + ], + "shape": [ + "ABA", + "ACA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:amethyst_block", + "type": 1, + "input": { + "A": { + "legacyId": 623, + "id": "minecraft:amethyst_shard", + "damage": 32767 + } + }, + "output": [ + { + "blockState": "minecraft:amethyst_block" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:andesite", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:stone;stone_type=diorite" + }, + { + "blockState": "minecraft:cobblestone" + } + ], + "output": [ + { + "count": 2, + "blockState": "minecraft:stone;stone_type=andesite" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:andesite_stairs", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:stone;stone_type=andesite" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:andesite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:andesite_wall", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:stone;stone_type=andesite" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=andesite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:anvil", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:iron_block" + }, + "B": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:anvil;damage=undamaged;direction=0" + } + ], + "shape": [ + "AAA", + " B ", + "BBB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:armor_stand", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0" + } + }, + "output": [ + { + "id": "minecraft:armor_stand" + } + ], + "shape": [ + "AAA", + " A ", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:arrow", + "type": 1, + "input": { + "A": { + "id": "minecraft:flint", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + }, + "C": { + "id": "minecraft:feather", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 4 + } + ], + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:banner_pattern_bricks", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "blockState": "minecraft:brick_block" + } + ], + "output": [ + { + "id": "minecraft:field_masoned_banner_pattern", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:banner_pattern_creeper", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:skull", + "damage": 4 + } + ], + "output": [ + { + "id": "minecraft:creeper_banner_pattern" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:banner_pattern_flower", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:red_flower;flower_type=oxeye" + } + ], + "output": [ + { + "id": "minecraft:flower_banner_pattern", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:banner_pattern_skull", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:skull", + "damage": 1 + } + ], + "output": [ + { + "id": "minecraft:skull_banner_pattern", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:banner_pattern_thing", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:enchanted_golden_apple", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:mojang_banner_pattern", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:banner_pattern_vines", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "blockState": "minecraft:vine;vine_direction_bits=0" + } + ], + "output": [ + { + "id": "minecraft:bordure_indented_banner_pattern", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:barrel", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:barrel;facing_direction=0;open_bit=0" + } + ], + "shape": [ + "ABA", + "A A", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:barrel_from_crimson_slab", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:crimson_slab;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:barrel;facing_direction=0;open_bit=0" + } + ], + "shape": [ + "ABA", + "A A", + "ABA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:barrel_from_warped_slab", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:warped_slab;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:barrel;facing_direction=0;open_bit=0" + } + ], + "shape": [ + "ABA", + "A A", + "ABA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:basic_map_to_enhanced", + "type": 0, + "input": [ + { + "id": "minecraft:empty_map", + "damage": 1 + }, + { + "id": "minecraft:compass", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:empty_map", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:beacon", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:nether_star", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:obsidian" + } + }, + "output": [ + { + "blockState": "minecraft:beacon" + } + ], + "shape": [ + "AAA", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:beehive", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:honeycomb", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:beehive;direction=0;honey_level=0" + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:beehive_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "id": "minecraft:honeycomb", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:beehive;direction=0;honey_level=0" + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:beehive_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "id": "minecraft:honeycomb", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:beehive;direction=0;honey_level=0" + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:beetroot_soup", + "type": 0, + "input": [ + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "id": "minecraft:beetroot", + "fuzzy": true + }, + { + "id": "minecraft:beetroot", + "fuzzy": true + }, + { + "id": "minecraft:beetroot", + "fuzzy": true + }, + { + "id": "minecraft:beetroot", + "fuzzy": true + }, + { + "id": "minecraft:beetroot", + "fuzzy": true + }, + { + "id": "minecraft:beetroot", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:beetroot_soup" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_boat", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:planks;wood_type=birch" + }, + "B": { + "id": "minecraft:wooden_shovel", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:birch_boat", + "damage": 2 + } + ], + "shape": [ + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_door", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:planks;wood_type=birch" + } + }, + "output": [ + { + "id": "minecraft:birch_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_fence", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:planks;wood_type=birch" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:fence;wood_type=birch" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_fence_gate", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "damage": 2, + "blockState": "minecraft:planks;wood_type=birch" + } + }, + "output": [ + { + "blockState": "minecraft:birch_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_planks", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:log;old_log_type=birch;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=birch" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_planks_from_stripped", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=birch" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "damage": 10, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=birch" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=birch" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_planks_from_wood", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=birch" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=birch" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_stairs", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:planks;wood_type=birch" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:birch_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_wood", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:log;old_log_type=birch;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=birch" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_wood_stripped", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=birch" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_wooden_slab", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:planks;wood_type=birch" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=birch" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_banner", + "type": 1, + "input": { + "A": { + "damage": 15, + "blockState": "minecraft:wool;color=black" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner" + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:black_dye", + "damage": 16 + } + ], + "output": [ + { + "blockState": "minecraft:black_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_candle_from_ink_sac", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:ink_sac" + } + ], + "output": [ + { + "blockState": "minecraft:black_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_carpet", + "type": 1, + "input": { + "A": { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=black" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:black_dye", + "damage": 16 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=black" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:black_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "damage": 16 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_concrete_powder_from_ink_sac", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=black" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:black_dye_from_ink_sac", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac" + } + ], + "output": [ + { + "id": "minecraft:black_dye", + "damage": 16 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_dye_from_wither_rose", + "type": 0, + "input": [ + { + "blockState": "minecraft:wither_rose" + } + ], + "output": [ + { + "id": "minecraft:black_dye", + "damage": 16 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:black_dye", + "damage": 16 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=black" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_stained_glass_from_ink_sac", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:ink_sac" + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=black" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:black_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 15, + "blockState": "minecraft:stained_glass;color=black" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=black" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:black_dye", + "damage": 16 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=black" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:black_dye", + "damage": 16 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=black" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_stained_hardened_clay_from_ink_sac", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:ink_sac" + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=black" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:blackstone_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:blackstone" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:blackstone_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blackstone_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:blackstone" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blackstone_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:blackstone" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blast_furnace", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + }, + "C": { + "blockState": "minecraft:smooth_stone" + } + }, + "output": [ + { + "blockState": "minecraft:blast_furnace;facing_direction=0" + } + ], + "shape": [ + "AAA", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blaze_powder", + "type": 0, + "input": [ + { + "id": "minecraft:blaze_rod", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:blaze_powder", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_banner", + "type": 1, + "input": { + "A": { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 4 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:blue_dye", + "damage": 18 + } + ], + "output": [ + { + "blockState": "minecraft:blue_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_candle_from_lapis_lazuli", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:lapis_lazuli", + "damage": 4 + } + ], + "output": [ + { + "blockState": "minecraft:blue_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_carpet", + "type": 1, + "input": { + "A": { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=blue" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:blue_dye", + "damage": 18 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=blue" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "damage": 18 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_concrete_powder_from_lapis_lazuli", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "damage": 4 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=blue" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:blue_dye_from_cornflower", + "type": 0, + "input": [ + { + "damage": 9, + "blockState": "minecraft:red_flower;flower_type=cornflower" + } + ], + "output": [ + { + "id": "minecraft:blue_dye", + "damage": 18 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_dye_from_lapis_lazuli", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "damage": 4 + } + ], + "output": [ + { + "id": "minecraft:blue_dye", + "damage": 18 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_ice", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:packed_ice" + } + }, + "output": [ + { + "blockState": "minecraft:blue_ice" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:blue_dye", + "damage": 18 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=blue" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_stained_glass_from_lapis_lazuli", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:lapis_lazuli", + "damage": 4 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=blue" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:blue_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 11, + "blockState": "minecraft:stained_glass;color=blue" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=blue" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:blue_dye", + "damage": 18 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=blue" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:blue_dye", + "damage": 18 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=blue" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_stained_hardened_clay_from_lapis_lazuli", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:lapis_lazuli", + "damage": 4 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=blue" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:boat", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:wooden_shovel", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:oak_boat" + } + ], + "shape": [ + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:bone_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:bone_meal", + "damage": 15 + } + }, + "output": [ + { + "blockState": "minecraft:bone_block;deprecated=0;pillar_axis=y" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:bone_meal_from_block", + "type": 0, + "input": [ + { + "blockState": "minecraft:bone_block;deprecated=0;pillar_axis=y" + } + ], + "output": [ + { + "id": "minecraft:bone_meal", + "count": 9, + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:bone_meal_from_bone", + "type": 0, + "input": [ + { + "id": "minecraft:bone", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:bone_meal", + "count": 3, + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:book", + "type": 0, + "input": [ + { + "id": "minecraft:paper" + }, + { + "id": "minecraft:paper" + }, + { + "id": "minecraft:paper" + }, + { + "id": "minecraft:leather" + } + ], + "output": [ + { + "id": "minecraft:book" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:bookshelf_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "id": "minecraft:book", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:bookshelf" + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:bookshelf_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "id": "minecraft:book", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:bookshelf" + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:bow", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:string", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:bow" + } + ], + "shape": [ + " AB", + "A B", + " AB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:bowl_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:bowl", + "count": 4 + } + ], + "shape": [ + "A A", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:bowl_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:bowl", + "count": 4 + } + ], + "shape": [ + "A A", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:bread", + "type": 1, + "input": { + "A": { + "id": "minecraft:wheat", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:bread" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brewing_stand", + "type": 1, + "input": { + "A": { + "id": "minecraft:blaze_rod", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:cobblestone" + } + }, + "output": [ + { + "id": "minecraft:brewing_stand" + } + ], + "shape": [ + " A ", + "BBB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brewing_stand_from_blackstone", + "type": 1, + "input": { + "A": { + "id": "minecraft:blaze_rod", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:blackstone" + } + }, + "output": [ + { + "id": "minecraft:brewing_stand" + } + ], + "shape": [ + " A ", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:brewing_stand_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "id": "minecraft:blaze_rod", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "id": "minecraft:brewing_stand" + } + ], + "shape": [ + " A ", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:brick_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:brick", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:brick_block" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brick_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:brick_block" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brick_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:brick_block" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_banner", + "type": 1, + "input": { + "A": { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:brown_dye", + "damage": 17 + } + ], + "output": [ + { + "blockState": "minecraft:brown_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_candle_from_cocoa_beans", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:cocoa_beans", + "damage": 3 + } + ], + "output": [ + { + "blockState": "minecraft:brown_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_carpet", + "type": 1, + "input": { + "A": { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=brown" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:brown_dye", + "damage": 17 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=brown" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "damage": 17 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_concrete_powder_from_cocoa_beans", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "damage": 3 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=brown" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:brown_dye_from_cocoa_beans", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "damage": 3 + } + ], + "output": [ + { + "id": "minecraft:brown_dye", + "damage": 17 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:brown_dye", + "damage": 17 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=brown" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_stained_glass_from_cocoa_beans", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:cocoa_beans", + "damage": 3 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=brown" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:brown_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 12, + "blockState": "minecraft:stained_glass;color=brown" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=brown" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:brown_dye", + "damage": 17 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=brown" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:brown_dye", + "damage": 17 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=brown" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_stained_hardened_clay_from_cocoa_beans", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:cocoa_beans", + "damage": 3 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=brown" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:bucket", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:bucket" + } + ], + "shape": [ + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cake", + "type": 1, + "input": { + "A": { + "id": "minecraft:milk_bucket", + "damage": 1 + }, + "B": { + "id": "minecraft:sugar", + "fuzzy": true + }, + "C": { + "id": "minecraft:egg", + "fuzzy": true + }, + "D": { + "id": "minecraft:wheat", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:cake" + }, + { + "id": "minecraft:bucket", + "count": 3 + } + ], + "shape": [ + "AAA", + "BCB", + "DDD" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:campfire_from_charcoal", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:charcoal", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_log2", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:charcoal", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_stripped_acacia_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:charcoal", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_stripped_birch_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:charcoal", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_stripped_dark_oak_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:charcoal", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_stripped_jungle_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:charcoal", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_stripped_oak_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:charcoal", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_stripped_spruce_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:charcoal", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_wood", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:charcoal", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_crimson_stem", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:crimson_stem;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_log2", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_acacia_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_birch_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_crimson_stem", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_dark_oak_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_jungle_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_oak_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_spruce_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_warped_stem", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_warped_stem", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:warped_stem;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_wood", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:coal" + }, + "C": { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:candle", + "type": 1, + "input": { + "A": { + "id": "minecraft:string", + "fuzzy": true + }, + "B": { + "id": "minecraft:honeycomb", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:candle;candles=0;lit=0" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:carrot_on_a_stick", + "type": 1, + "input": { + "A": { + "id": "minecraft:fishing_rod", + "fuzzy": true + }, + "B": { + "id": "minecraft:carrot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:carrot_on_a_stick" + } + ], + "shape": [ + "A ", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cartography_table", + "type": 1, + "input": { + "A": { + "id": "minecraft:paper", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:cartography_table" + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cartography_table_from_crimson_planks", + "type": 1, + "input": { + "A": { + "id": "minecraft:paper", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:cartography_table" + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:cartography_table_from_warped_planks", + "type": 1, + "input": { + "A": { + "id": "minecraft:paper", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:cartography_table" + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:cauldron", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:cauldron" + } + ], + "shape": [ + "A A", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:chain", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "B": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:chain" + } + ], + "shape": [ + "A", + "B", + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:chest_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:chest;facing_direction=0" + } + ], + "shape": [ + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:chest_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:chest;facing_direction=0" + } + ], + "shape": [ + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:chest_minecart", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:chest;facing_direction=0" + }, + "B": { + "id": "minecraft:minecart", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:chest_minecart" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:chiseled_deepslate", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "blockState": "minecraft:chiseled_deepslate" + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:chiseled_nether_bricks", + "type": 1, + "input": { + "A": { + "damage": 7, + "blockState": "minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:chiseled_nether_bricks" + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:chiseled_polished_blackstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:polished_blackstone_slab;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:chiseled_polished_blackstone" + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:clay", + "type": 1, + "input": { + "A": { + "id": "minecraft:clay_ball", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:clay" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:clock", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:clock" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:coal", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:coal_block" + } + }, + "output": [ + { + "id": "minecraft:coal", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:coal_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:coal" + } + }, + "output": [ + { + "blockState": "minecraft:coal_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:coarse_dirt", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:dirt;dirt_type=normal" + }, + "B": { + "blockState": "minecraft:gravel" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:dirt;dirt_type=coarse" + } + ], + "shape": [ + "AB", + "BA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cobbled_deepslate_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobbled_deepslate_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:cobbled_deepslate_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:cobbled_deepslate_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:cobblestone_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cobblestone_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=cobblestone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cobweb_to_string", + "type": 0, + "input": [ + { + "blockState": "minecraft:web" + } + ], + "output": [ + { + "id": "minecraft:string", + "count": 9 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:comparator", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:redstone_torch;torch_facing_direction=unknown" + }, + "B": { + "id": "minecraft:quartz", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:stone;stone_type=stone" + } + }, + "output": [ + { + "id": "minecraft:comparator" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:compass", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:compass" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:composter", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:composter;composter_fill_level=0" + } + ], + "shape": [ + "A A", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:composter_from_crimson_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_slab;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:composter;composter_fill_level=0" + } + ], + "shape": [ + "A A", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:composter_from_warped_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_slab;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:composter;composter_fill_level=0" + } + ], + "shape": [ + "A A", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:conduit", + "type": 1, + "input": { + "A": { + "id": "minecraft:nautilus_shell", + "fuzzy": true + }, + "B": { + "id": "minecraft:heart_of_the_sea", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:conduit" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cookie", + "type": 1, + "input": { + "A": { + "id": "minecraft:wheat", + "fuzzy": true + }, + "B": { + "id": "minecraft:cocoa_beans", + "damage": 3 + } + }, + "output": [ + { + "id": "minecraft:cookie", + "count": 8 + } + ], + "shape": [ + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:copper_block_from_ingots", + "type": 1, + "input": { + "A": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + } + }, + "output": [ + { + "blockState": "minecraft:copper_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_cut_copper", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:cut_copper" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_cut_copper_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cut_copper_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_exposed_cut_copper", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:exposed_cut_copper" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_exposed_cut_copper_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:exposed_cut_copper_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_exposed_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:crafting_table" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:crafting_table_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:crafting_table" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:crafting_table_oxidized_cut_copper", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:oxidized_cut_copper" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_oxidized_cut_copper_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:oxidized_cut_copper_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_oxidized_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_cut_copper", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:waxed_cut_copper" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_cut_copper_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:waxed_cut_copper_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_exposed_cut_copper", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:waxed_exposed_cut_copper" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_exposed_cut_copper_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_exposed_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_oxidized_cut_copper", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:waxed_oxidized_cut_copper" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_oxidized_cut_copper_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_oxidized_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_weathered_cut_copper", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:waxed_weathered_cut_copper" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_weathered_cut_copper_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_weathered_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_weathered_cut_copper", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:weathered_cut_copper" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_weathered_cut_copper_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:weathered_cut_copper_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_weathered_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crimson_button", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:crimson_button;button_pressed_bit=0;facing_direction=0" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_door", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:crimson_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_fence", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:crimson_fence" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_fence_gate", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:crimson_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_hyphae", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_stem;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:crimson_hyphae;pillar_axis=y" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_stem;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:crimson_planks" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_planks_from_crimson_hyphae", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_hyphae;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:crimson_planks" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_planks_from_stripped_crimson_hyphae", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_crimson_hyphae;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:crimson_planks" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_planks_from_stripped_log", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:crimson_planks" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_pressure_plate", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:crimson_pressure_plate;redstone_signal=0" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_sign", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:crimson_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:crimson_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_trapdoor", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "count": 2, + "blockState": "minecraft:crimson_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crossbow", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "C": { + "id": "minecraft:string", + "fuzzy": true + }, + "D": { + "blockState": "minecraft:tripwire_hook;attached_bit=0;direction=0;powered_bit=0" + } + }, + "output": [ + { + "id": "minecraft:crossbow" + } + ], + "shape": [ + "ABA", + "CDC", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_banner", + "type": 1, + "input": { + "A": { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 6 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:cyan_dye", + "damage": 6 + } + ], + "output": [ + { + "blockState": "minecraft:cyan_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_carpet", + "type": 1, + "input": { + "A": { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=cyan" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:cyan_dye", + "damage": 6 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=cyan" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "damage": 6 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_dye", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "damage": 18 + }, + { + "id": "minecraft:green_dye", + "damage": 2 + } + ], + "output": [ + { + "id": "minecraft:cyan_dye", + "count": 2, + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_dye_from_lapis_lazuli", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "damage": 4 + }, + { + "id": "minecraft:green_dye", + "damage": 2 + } + ], + "output": [ + { + "id": "minecraft:cyan_dye", + "count": 2, + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:cyan_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:cyan_dye", + "damage": 6 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=cyan" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 9, + "blockState": "minecraft:stained_glass;color=cyan" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=cyan" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:cyan_dye", + "damage": 6 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=cyan" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:cyan_dye", + "damage": 6 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=cyan" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_boat", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:planks;wood_type=dark_oak" + }, + "B": { + "id": "minecraft:wooden_shovel", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:dark_oak_boat", + "damage": 5 + } + ], + "shape": [ + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_door", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:planks;wood_type=dark_oak" + } + }, + "output": [ + { + "id": "minecraft:dark_oak_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_fence", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:planks;wood_type=dark_oak" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:fence;wood_type=dark_oak" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_fence_gate", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "damage": 5, + "blockState": "minecraft:planks;wood_type=dark_oak" + } + }, + "output": [ + { + "blockState": "minecraft:dark_oak_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_planks", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:log2;new_log_type=dark_oak;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=dark_oak" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_planks_from_stripped", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=dark_oak" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "damage": 13, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=dark_oak" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=dark_oak" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_planks_from_wood", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=dark_oak" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=dark_oak" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_stairs", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:planks;wood_type=dark_oak" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_wood", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:log2;new_log_type=dark_oak;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=dark_oak" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_wood_stripped", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=dark_oak" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_wooden_slab", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:planks;wood_type=dark_oak" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=dark_oak" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_prismarine", + "type": 1, + "input": { + "A": { + "id": "minecraft:prismarine_shard", + "fuzzy": true + }, + "B": { + "id": "minecraft:black_dye", + "damage": 16 + } + }, + "output": [ + { + "blockState": "minecraft:prismarine;prismarine_block_type=dark" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_prismarine_from_ink_sac", + "type": 1, + "input": { + "A": { + "id": "minecraft:prismarine_shard", + "fuzzy": true + }, + "B": { + "id": "minecraft:ink_sac" + } + }, + "output": [ + { + "blockState": "minecraft:prismarine;prismarine_block_type=dark" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:daylight_detector_from_crimson_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:quartz", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:crimson_slab;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:daylight_detector;redstone_signal=0" + } + ], + "shape": [ + "AAA", + "BBB", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:daylight_detector_from_warped_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:quartz", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:warped_slab;top_slot_bit=0" + } + }, + "output": [ + { + "blockState": "minecraft:daylight_detector;redstone_signal=0" + } + ], + "shape": [ + "AAA", + "BBB", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:deepslate_brick_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:deepslate_brick_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_brick_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_brick_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_bricks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:deepslate_bricks" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_tile_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:deepslate_tile_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_tile_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_tile_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_tiles", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:deepslate_tiles" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:detector_rail", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:stone_pressure_plate;redstone_signal=0" + }, + "C": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:detector_rail;rail_data_bit=0;rail_direction=0" + } + ], + "shape": [ + "A A", + "ABA", + "ACA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:diamond_block" + } + }, + "output": [ + { + "id": "minecraft:diamond", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_axe", + "type": 1, + "input": { + "A": { + "id": "minecraft:diamond", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:diamond_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:diamond", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:diamond_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_boots", + "type": 1, + "input": { + "A": { + "id": "minecraft:diamond", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:diamond_boots" + } + ], + "shape": [ + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_chestplate", + "type": 1, + "input": { + "A": { + "id": "minecraft:diamond", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:diamond_chestplate" + } + ], + "shape": [ + "A A", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_helmet", + "type": 1, + "input": { + "A": { + "id": "minecraft:diamond", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:diamond_helmet" + } + ], + "shape": [ + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_hoe", + "type": 1, + "input": { + "A": { + "id": "minecraft:diamond", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:diamond_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_leggings", + "type": 1, + "input": { + "A": { + "id": "minecraft:diamond", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:diamond_leggings" + } + ], + "shape": [ + "AAA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_pickaxe", + "type": 1, + "input": { + "A": { + "id": "minecraft:diamond", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:diamond_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_shovel", + "type": 1, + "input": { + "A": { + "id": "minecraft:diamond", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:diamond_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_sword", + "type": 1, + "input": { + "A": { + "id": "minecraft:diamond", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:diamond_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diorite", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + }, + "B": { + "id": "minecraft:quartz", + "fuzzy": true + } + }, + "output": [ + { + "count": 2, + "blockState": "minecraft:stone;stone_type=diorite" + } + ], + "shape": [ + "AB", + "BA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diorite_stairs", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:stone;stone_type=diorite" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diorite_wall", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:stone;stone_type=diorite" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=diorite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dispenser", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + }, + "B": { + "id": "minecraft:bow", + "fuzzy": true + }, + "C": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:dispenser;facing_direction=3;triggered_bit=0" + } + ], + "shape": [ + "AAA", + "ABA", + "ACA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dried_kelp", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:dried_kelp_block" + } + }, + "output": [ + { + "id": "minecraft:dried_kelp", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dried_kelp_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:dried_kelp", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:dried_kelp_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dripstone_block", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "blockState": "minecraft:dripstone_block" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dripstone_block_from_pointed_dripstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "blockState": "minecraft:dripstone_block" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dropper", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + }, + "B": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:dropper;facing_direction=3;triggered_bit=0" + } + ], + "shape": [ + "AAA", + "A A", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:emerald", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:emerald_block" + } + }, + "output": [ + { + "id": "minecraft:emerald", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:emerald_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:emerald", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:emerald_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:empty_map_to_enhanced", + "type": 0, + "input": [ + { + "id": "minecraft:empty_map" + }, + { + "id": "minecraft:compass", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:empty_map", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:enchanting_table", + "type": 1, + "input": { + "A": { + "id": "minecraft:book", + "fuzzy": true + }, + "B": { + "id": "minecraft:diamond", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:obsidian" + } + }, + "output": [ + { + "blockState": "minecraft:enchanting_table" + } + ], + "shape": [ + " A ", + "BCB", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:end_brick_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:end_bricks" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:end_brick_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:end_bricks" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=end_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:end_bricks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:end_stone" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:end_bricks" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:end_crystal", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:ender_eye", + "fuzzy": true + }, + "C": { + "id": "minecraft:ghast_tear", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:end_crystal" + } + ], + "shape": [ + "AAA", + "ABA", + "ACA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:end_rod", + "type": 1, + "input": { + "A": { + "id": "minecraft:blaze_rod", + "fuzzy": true + }, + "B": { + "id": "minecraft:popped_chorus_fruit", + "fuzzy": true + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:end_rod;facing_direction=0" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:ender_chest", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:obsidian" + }, + "B": { + "id": "minecraft:ender_eye", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:ender_chest;facing_direction=0" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:ender_eye", + "type": 0, + "input": [ + { + "id": "minecraft:ender_pearl", + "fuzzy": true + }, + { + "id": "minecraft:blaze_powder", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:ender_eye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:fence", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:fence;wood_type=oak" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:fence_gate", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:fence_gate;direction=0;in_wall_bit=0;open_bit=0" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:fermented_spider_eye", + "type": 0, + "input": [ + { + "id": "minecraft:spider_eye", + "fuzzy": true + }, + { + "blockState": "minecraft:brown_mushroom" + }, + { + "id": "minecraft:sugar", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:fermented_spider_eye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:fishing_rod", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:string", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:fishing_rod" + } + ], + "shape": [ + " A", + " AB", + "A B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:fletching_table", + "type": 1, + "input": { + "A": { + "id": "minecraft:flint", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:fletching_table" + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:fletching_table_from_crimson_planks", + "type": 1, + "input": { + "A": { + "id": "minecraft:flint", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:fletching_table" + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:fletching_table_from_warped_planks", + "type": 1, + "input": { + "A": { + "id": "minecraft:flint", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:fletching_table" + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:flint_and_steel", + "type": 0, + "input": [ + { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + { + "id": "minecraft:flint", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:flint_and_steel" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:flower_pot", + "type": 1, + "input": { + "A": { + "id": "minecraft:brick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:flower_pot" + } + ], + "shape": [ + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:furnace", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + } + }, + "output": [ + { + "blockState": "minecraft:furnace;facing_direction=0" + } + ], + "shape": [ + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:furnace_from_blackstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:blackstone" + } + }, + "output": [ + { + "blockState": "minecraft:furnace;facing_direction=0" + } + ], + "shape": [ + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:furnace_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "blockState": "minecraft:furnace;facing_direction=0" + } + ], + "shape": [ + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:glass_bottle", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + } + }, + "output": [ + { + "id": "minecraft:glass_bottle", + "count": 3 + } + ], + "shape": [ + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:glass_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:glass_pane" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:glow_frame", + "type": 0, + "input": [ + { + "id": "minecraft:frame", + "fuzzy": true + }, + { + "legacyId": 503, + "id": "minecraft:glow_ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 621, + "id": "minecraft:glow_frame" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:glowstone", + "type": 1, + "input": { + "A": { + "id": "minecraft:glowstone_dust", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:glowstone" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gold_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:gold_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gold_ingot_from_block", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:gold_block" + } + }, + "output": [ + { + "id": "minecraft:gold_ingot", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gold_ingot_from_nuggets", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_nugget", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:gold_ingot" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gold_nugget", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:gold_nugget", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_apple", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:apple", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:golden_apple" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_axe", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:golden_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_boots", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:golden_boots" + } + ], + "shape": [ + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_carrot", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "B": { + "id": "minecraft:carrot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:golden_carrot" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_chestplate", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:golden_chestplate" + } + ], + "shape": [ + "A A", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_helmet", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:golden_helmet" + } + ], + "shape": [ + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_hoe", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:golden_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_leggings", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:golden_leggings" + } + ], + "shape": [ + "AAA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_pickaxe", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:golden_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_rail", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + }, + "C": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:golden_rail;rail_data_bit=0;rail_direction=0" + } + ], + "shape": [ + "A A", + "ABA", + "ACA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_shovel", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:golden_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_sword", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:golden_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:granite", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:stone;stone_type=diorite" + }, + { + "id": "minecraft:quartz", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:stone;stone_type=granite" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:granite_stairs", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:stone;stone_type=granite" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:granite_wall", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:stone;stone_type=granite" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=granite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_banner", + "type": 1, + "input": { + "A": { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 8 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:gray_dye", + "damage": 8 + } + ], + "output": [ + { + "blockState": "minecraft:gray_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_carpet", + "type": 1, + "input": { + "A": { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=gray" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:gray_dye", + "damage": 8 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=gray" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "damage": 8 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_dye", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "damage": 16 + }, + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "output": [ + { + "id": "minecraft:gray_dye", + "count": 2, + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_dye_from_black_bonemeal", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "damage": 16 + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:gray_dye", + "count": 2, + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:gray_dye_from_ink_bonemeal", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac" + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:gray_dye", + "count": 2, + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 3 + }, + { + "id": "minecraft:gray_dye_from_ink_white", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac" + }, + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "output": [ + { + "id": "minecraft:gray_dye", + "count": 2, + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:gray_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:gray_dye", + "damage": 8 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=gray" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 7, + "blockState": "minecraft:stained_glass;color=gray" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=gray" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:gray_dye", + "damage": 8 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=gray" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:gray_dye", + "damage": 8 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=gray" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_banner", + "type": 1, + "input": { + "A": { + "damage": 13, + "blockState": "minecraft:wool;color=green" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 2 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:green_dye", + "damage": 2 + } + ], + "output": [ + { + "blockState": "minecraft:green_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_carpet", + "type": 1, + "input": { + "A": { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=green" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:green_dye", + "damage": 2 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=green" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "damage": 2 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:green_dye", + "damage": 2 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=green" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 13, + "blockState": "minecraft:stained_glass;color=green" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=green" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:green_dye", + "damage": 2 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=green" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:green_dye", + "damage": 2 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=green" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:grindstone", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "damage": 2, + "blockState": "minecraft:stone_slab4;stone_slab_type_4=stone;top_slot_bit=0" + }, + "C": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:grindstone;attachment=standing;direction=0" + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:grindstone_from_crimson_planks", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0" + }, + "C": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:grindstone;attachment=standing;direction=0" + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_crimson_planks2", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + }, + "C": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:grindstone;attachment=standing;direction=0" + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_crimson_planks3", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0" + }, + "C": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:grindstone;attachment=standing;direction=0" + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_crimson_planks4", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:stone_slab4;stone_slab_type_4=mossy_stone_brick;top_slot_bit=0" + }, + "C": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:grindstone;attachment=standing;direction=0" + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_warped_planks", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0" + }, + "C": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:grindstone;attachment=standing;direction=0" + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_warped_planks2", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + }, + "C": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:grindstone;attachment=standing;direction=0" + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_warped_planks3", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0" + }, + "C": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:grindstone;attachment=standing;direction=0" + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_warped_planks4", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:stone_slab4;stone_slab_type_4=mossy_stone_brick;top_slot_bit=0" + }, + "C": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:grindstone;attachment=standing;direction=0" + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:hay_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:wheat", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:hay_block;deprecated=0;pillar_axis=y" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:heavy_weighted_pressure_plate", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:heavy_weighted_pressure_plate;redstone_signal=0" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:honey_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:honey_bottle", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:honey_block" + }, + { + "id": "minecraft:glass_bottle", + "count": 4 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:honey_bottle", + "type": 0, + "input": [ + { + "blockState": "minecraft:honey_block" + }, + { + "id": "minecraft:glass_bottle", + "fuzzy": true + }, + { + "id": "minecraft:glass_bottle", + "fuzzy": true + }, + { + "id": "minecraft:glass_bottle", + "fuzzy": true + }, + { + "id": "minecraft:glass_bottle", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:honey_bottle", + "count": 4 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:honey_bottle_to_sugar", + "type": 1, + "input": { + "A": { + "id": "minecraft:honey_bottle", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:sugar", + "count": 3 + }, + { + "id": "minecraft:glass_bottle" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:honeycomb_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:honeycomb", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:honeycomb_block" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:hopper", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:chest;facing_direction=0" + } + }, + "output": [ + { + "id": "minecraft:hopper" + } + ], + "shape": [ + "A A", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:hopper_minecart", + "type": 1, + "input": { + "A": { + "id": "minecraft:hopper", + "fuzzy": true + }, + "B": { + "id": "minecraft:minecart", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:hopper_minecart" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:ingots_from_copper", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:ingots_from_waxed_copper", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:iron_axe", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:iron_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_bars", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:iron_bars" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:iron_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_boots", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:iron_boots" + } + ], + "shape": [ + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_chestplate", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:iron_chestplate" + } + ], + "shape": [ + "A A", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_door", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:iron_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_helmet", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:iron_helmet" + } + ], + "shape": [ + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_hoe", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:iron_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_ingot_from_block", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:iron_block" + } + }, + "output": [ + { + "id": "minecraft:iron_ingot", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_ingot_from_nuggets", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_nugget", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:iron_ingot" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_leggings", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:iron_leggings" + } + ], + "shape": [ + "AAA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_nugget", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:iron_nugget", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_pickaxe", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:iron_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_shovel", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:iron_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_sword", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:iron_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_trapdoor", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:iron_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:item_frame", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "id": "minecraft:leather", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:frame" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jukebox_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "id": "minecraft:diamond", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:jukebox" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:jukebox_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "id": "minecraft:diamond", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:jukebox" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:jungle_boat", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:planks;wood_type=jungle" + }, + "B": { + "id": "minecraft:wooden_shovel", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:jungle_boat", + "damage": 3 + } + ], + "shape": [ + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_door", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:planks;wood_type=jungle" + } + }, + "output": [ + { + "id": "minecraft:jungle_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_fence", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:planks;wood_type=jungle" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:fence;wood_type=jungle" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_fence_gate", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "damage": 3, + "blockState": "minecraft:planks;wood_type=jungle" + } + }, + "output": [ + { + "blockState": "minecraft:jungle_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_planks", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:log;old_log_type=jungle;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=jungle" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_planks_from_stripped", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=jungle" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "damage": 11, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=jungle" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=jungle" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_planks_from_wood", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=jungle" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=jungle" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_stairs", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:planks;wood_type=jungle" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_wood", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:log;old_log_type=jungle;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=jungle" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_wood_stripped", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=jungle" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_wooden_slab", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:planks;wood_type=jungle" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=jungle" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:ladder", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:ladder;facing_direction=0" + } + ], + "shape": [ + "A A", + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lantern", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:torch;torch_facing_direction=unknown" + } + }, + "output": [ + { + "blockState": "minecraft:lantern;hanging=0" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lapis_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:lapis_lazuli", + "damage": 4 + } + }, + "output": [ + { + "blockState": "minecraft:lapis_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lapis_lazuli", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:lapis_block" + } + }, + "output": [ + { + "id": "minecraft:lapis_lazuli", + "count": 9, + "damage": 4 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lead", + "type": 1, + "input": { + "A": { + "id": "minecraft:string", + "fuzzy": true + }, + "B": { + "id": "minecraft:slime_ball", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:lead", + "count": 2 + } + ], + "shape": [ + "AA ", + "AB ", + " A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:leather", + "type": 1, + "input": { + "A": { + "id": "minecraft:rabbit_hide", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:leather" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:leather_boots", + "type": 1, + "input": { + "A": { + "id": "minecraft:leather", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:leather_boots" + } + ], + "shape": [ + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:leather_chestplate", + "type": 1, + "input": { + "A": { + "id": "minecraft:leather", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:leather_chestplate" + } + ], + "shape": [ + "A A", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:leather_helmet", + "type": 1, + "input": { + "A": { + "id": "minecraft:leather", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:leather_helmet" + } + ], + "shape": [ + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:leather_horse_armor", + "type": 1, + "input": { + "A": { + "id": "minecraft:leather", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:leather_horse_armor" + } + ], + "shape": [ + "A A", + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:leather_leggings", + "type": 1, + "input": { + "A": { + "id": "minecraft:leather", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:leather_leggings" + } + ], + "shape": [ + "AAA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lectern", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=oak" + }, + "B": { + "blockState": "minecraft:bookshelf" + } + }, + "output": [ + { + "blockState": "minecraft:lectern;direction=0;powered_bit=0" + } + ], + "shape": [ + "AAA", + " B ", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lectern_from_crimson_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_slab;top_slot_bit=0" + }, + "B": { + "blockState": "minecraft:bookshelf" + } + }, + "output": [ + { + "blockState": "minecraft:lectern;direction=0;powered_bit=0" + } + ], + "shape": [ + "AAA", + " B ", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:lectern_from_warped_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_slab;top_slot_bit=0" + }, + "B": { + "blockState": "minecraft:bookshelf" + } + }, + "output": [ + { + "blockState": "minecraft:lectern;direction=0;powered_bit=0" + } + ], + "shape": [ + "AAA", + " B ", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:lever", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:cobblestone" + } + }, + "output": [ + { + "blockState": "minecraft:lever;lever_direction=down_east_west;open_bit=0" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_banner", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 12 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:light_blue_dye", + "damage": 12 + } + ], + "output": [ + { + "blockState": "minecraft:light_blue_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_carpet", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=light_blue" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:light_blue_dye", + "damage": 12 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=light_blue" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "damage": 12 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_dye", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "damage": 18 + }, + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "output": [ + { + "id": "minecraft:light_blue_dye", + "count": 2, + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:light_blue_dye_from_blue_bonemeal", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "damage": 18 + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:light_blue_dye", + "count": 2, + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:light_blue_dye_from_blue_orchid", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:red_flower;flower_type=orchid" + } + ], + "output": [ + { + "id": "minecraft:light_blue_dye", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_dye_from_lapis_bonemeal", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "damage": 4 + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:light_blue_dye", + "count": 2, + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 4 + }, + { + "id": "minecraft:light_blue_dye_from_lapis_white", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "damage": 4 + }, + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "output": [ + { + "id": "minecraft:light_blue_dye", + "count": 2, + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 3 + }, + { + "id": "minecraft:light_blue_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:light_blue_dye", + "damage": 12 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=light_blue" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:stained_glass;color=light_blue" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=light_blue" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:light_blue_dye", + "damage": 12 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=light_blue" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:light_blue_dye", + "damage": 12 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=light_blue" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray__carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:light_gray_dye", + "damage": 7 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=silver" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_banner", + "type": 1, + "input": { + "A": { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 7 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:light_gray_dye", + "damage": 7 + } + ], + "output": [ + { + "blockState": "minecraft:light_gray_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_carpet", + "type": 1, + "input": { + "A": { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=silver" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "damage": 7 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_dye", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "damage": 16 + }, + { + "id": "minecraft:white_dye", + "damage": 19 + }, + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "output": [ + { + "id": "minecraft:light_gray_dye", + "count": 3, + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 3 + }, + { + "id": "minecraft:light_gray_dye_from_azure_bluet", + "type": 0, + "input": [ + { + "damage": 3, + "blockState": "minecraft:red_flower;flower_type=houstonia" + } + ], + "output": [ + { + "id": "minecraft:light_gray_dye", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:light_gray_dye_from_black_bonemeal", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "damage": 16 + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:light_gray_dye", + "count": 3, + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 7 + }, + { + "id": "minecraft:light_gray_dye_from_gray_bonemeal", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "damage": 8 + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:light_gray_dye", + "count": 2, + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 6 + }, + { + "id": "minecraft:light_gray_dye_from_gray_white", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "damage": 8 + }, + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "output": [ + { + "id": "minecraft:light_gray_dye", + "count": 2, + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 4 + }, + { + "id": "minecraft:light_gray_dye_from_ink_bonemeal", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac" + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:light_gray_dye", + "count": 3, + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 8 + }, + { + "id": "minecraft:light_gray_dye_from_ink_white", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac" + }, + { + "id": "minecraft:white_dye", + "damage": 19 + }, + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "output": [ + { + "id": "minecraft:light_gray_dye", + "count": 3, + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 5 + }, + { + "id": "minecraft:light_gray_dye_from_oxeye_daisy", + "type": 0, + "input": [ + { + "damage": 8, + "blockState": "minecraft:red_flower;flower_type=oxeye" + } + ], + "output": [ + { + "id": "minecraft:light_gray_dye", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:light_gray_dye_from_white_tulip", + "type": 0, + "input": [ + { + "damage": 6, + "blockState": "minecraft:red_flower;flower_type=tulip_white" + } + ], + "output": [ + { + "id": "minecraft:light_gray_dye", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:light_gray_dye", + "damage": 7 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=silver" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 8, + "blockState": "minecraft:stained_glass;color=silver" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=silver" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:light_gray_dye", + "damage": 7 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=silver" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:light_gray_dye", + "damage": 7 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=silver" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_weighted_pressure_plate", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_ingot", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:light_weighted_pressure_plate;redstone_signal=0" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lightning_rod", + "type": 1, + "input": { + "A": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + } + }, + "output": [ + { + "blockState": "minecraft:lightning_rod;facing_direction=0" + } + ], + "shape": [ + "A", + "A", + "A" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:lime__carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:lime_dye", + "damage": 10 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=lime" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_banner", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 10 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:lime_dye", + "damage": 10 + } + ], + "output": [ + { + "blockState": "minecraft:lime_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_carpet", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=lime" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "damage": 10 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_dye", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "damage": 2 + }, + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "output": [ + { + "id": "minecraft:lime_dye", + "count": 2, + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_dye_from_bonemeal", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "damage": 2 + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:lime_dye", + "count": 2, + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:lime_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:lime_dye", + "damage": 10 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=lime" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:stained_glass;color=lime" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=lime" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:lime_dye", + "damage": 10 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=lime" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:lime_dye", + "damage": 10 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=lime" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lit_pumpkin", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carved_pumpkin;direction=0" + }, + "B": { + "blockState": "minecraft:torch;torch_facing_direction=unknown" + } + }, + "output": [ + { + "blockState": "minecraft:lit_pumpkin;direction=0" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:locator_map", + "type": 1, + "input": { + "A": { + "id": "minecraft:paper", + "fuzzy": true + }, + "B": { + "id": "minecraft:compass", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:empty_map", + "damage": 2 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lodestone", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:stonebrick;stone_brick_type=chiseled" + }, + "B": { + "id": "minecraft:netherite_ingot", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:lodestone" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:loom_from_crimson_planks", + "type": 1, + "input": { + "A": { + "id": "minecraft:string", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:loom;direction=0" + } + ], + "shape": [ + "AA", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:loom_from_warped_planks", + "type": 1, + "input": { + "A": { + "id": "minecraft:string", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:loom;direction=0" + } + ], + "shape": [ + "AA", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:magenta_banner", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 13 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:magenta_dye", + "damage": 13 + } + ], + "output": [ + { + "blockState": "minecraft:magenta_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_carpet", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=magenta" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:magenta_dye", + "damage": 13 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=magenta" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "damage": 13 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_dye", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "damage": 18 + }, + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:pink_dye", + "damage": 9 + } + ], + "output": [ + { + "id": "minecraft:magenta_dye", + "count": 3, + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:magenta_dye_from_allium", + "type": 0, + "input": [ + { + "damage": 2, + "blockState": "minecraft:red_flower;flower_type=allium" + } + ], + "output": [ + { + "id": "minecraft:magenta_dye", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:magenta_dye_from_blue_ink_bonemeal", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "damage": 18 + }, + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:magenta_dye", + "count": 4, + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 6 + }, + { + "id": "minecraft:magenta_dye_from_blue_ink_white", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "damage": 18 + }, + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "output": [ + { + "id": "minecraft:magenta_dye", + "count": 4, + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 4 + }, + { + "id": "minecraft:magenta_dye_from_lapis_ink_bonemeal", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "damage": 4 + }, + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:magenta_dye", + "count": 4, + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 8 + }, + { + "id": "minecraft:magenta_dye_from_lapis_ink_white", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "damage": 4 + }, + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "output": [ + { + "id": "minecraft:magenta_dye", + "count": 4, + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 7 + }, + { + "id": "minecraft:magenta_dye_from_lapis_red_pink", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "damage": 4 + }, + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:pink_dye", + "damage": 9 + } + ], + "output": [ + { + "id": "minecraft:magenta_dye", + "count": 3, + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 5 + }, + { + "id": "minecraft:magenta_dye_from_lilac", + "type": 0, + "input": [ + { + "damage": 1, + "blockState": "minecraft:double_plant;double_plant_type=syringa;upper_block_bit=0" + } + ], + "output": [ + { + "id": "minecraft:magenta_dye", + "count": 2, + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_dye_from_purple_and_pink", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "damage": 5 + }, + { + "id": "minecraft:pink_dye", + "damage": 9 + } + ], + "output": [ + { + "id": "minecraft:magenta_dye", + "count": 2, + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 3 + }, + { + "id": "minecraft:magenta_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:magenta_dye", + "damage": 13 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=magenta" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:stained_glass;color=magenta" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=magenta" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:magenta_dye", + "damage": 13 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=magenta" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:magenta_dye", + "damage": 13 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=magenta" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magma", + "type": 1, + "input": { + "A": { + "id": "minecraft:magma_cream", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:magma" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magma_cream", + "type": 0, + "input": [ + { + "id": "minecraft:blaze_powder", + "fuzzy": true + }, + { + "id": "minecraft:slime_ball", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:magma_cream" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:map", + "type": 1, + "input": { + "A": { + "id": "minecraft:paper", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:empty_map" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:melon_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:melon_slice", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:melon_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:melon_seeds", + "type": 1, + "input": { + "A": { + "id": "minecraft:melon_slice", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:melon_seeds" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:minecart", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:minecart" + } + ], + "shape": [ + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:moss_carpet", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:moss_carpet" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_cobblestone", + "type": 0, + "input": [ + { + "blockState": "minecraft:cobblestone" + }, + { + "blockState": "minecraft:vine;vine_direction_bits=0" + } + ], + "output": [ + { + "blockState": "minecraft:mossy_cobblestone" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_cobblestone_from_moss", + "type": 0, + "input": [ + { + "blockState": "minecraft:cobblestone" + }, + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:mossy_cobblestone" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_cobblestone_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:mossy_cobblestone" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_cobblestone_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:mossy_cobblestone" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_cobblestone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_stone_brick_stairs", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:stonebrick;stone_brick_type=mossy" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_stone_brick_wall", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:stonebrick;stone_brick_type=mossy" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_stonebrick", + "type": 0, + "input": [ + { + "blockState": "minecraft:stonebrick;stone_brick_type=default" + }, + { + "blockState": "minecraft:vine;vine_direction_bits=0" + } + ], + "output": [ + { + "blockState": "minecraft:stonebrick;stone_brick_type=mossy" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_stonebrick_from_moss", + "type": 0, + "input": [ + { + "blockState": "minecraft:stonebrick;stone_brick_type=default" + }, + { + "blockState": "minecraft:air" + } + ], + "output": [ + { + "blockState": "minecraft:stonebrick;stone_brick_type=mossy" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mushroom_stew", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:mushroom_stew" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:nether_brick", + "type": 1, + "input": { + "A": { + "id": "minecraft:netherbrick", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:nether_brick" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:nether_brick_fence", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:nether_brick" + }, + "B": { + "id": "minecraft:netherbrick", + "fuzzy": true + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:nether_brick_fence" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:nether_brick_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:nether_brick" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:nether_brick_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:nether_brick" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=nether_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:nether_wart_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:nether_wart", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:nether_wart_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:netherite_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:netherite_ingot", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:netherite_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:netherite_ingot", + "type": 0, + "input": [ + { + "id": "minecraft:netherite_scrap", + "fuzzy": true + }, + { + "id": "minecraft:netherite_scrap", + "fuzzy": true + }, + { + "id": "minecraft:netherite_scrap", + "fuzzy": true + }, + { + "id": "minecraft:netherite_scrap", + "fuzzy": true + }, + { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + { + "id": "minecraft:gold_ingot", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:netherite_ingot" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:netherite_ingot_from_block", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:netherite_block" + } + }, + "output": [ + { + "id": "minecraft:netherite_ingot", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:noteblock_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:noteblock" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:noteblock_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:noteblock" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:oak_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=oak" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_planks_from_stripped", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=oak" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "damage": 8, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=oak" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=oak" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_planks_from_wood", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=oak" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_wood", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_wood_stripped", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=oak" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_wooden_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=oak" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:observer", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + }, + "B": { + "id": "minecraft:redstone", + "fuzzy": true + }, + "C": { + "id": "minecraft:quartz", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:observer;facing_direction=0;powered_bit=0" + } + ], + "shape": [ + "AAA", + "BBC", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_banner", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 14 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:orange_dye", + "damage": 14 + } + ], + "output": [ + { + "blockState": "minecraft:orange_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_carpet", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=orange" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:orange_dye", + "damage": 14 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=orange" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "damage": 14 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_dye_from_orange_tulip", + "type": 0, + "input": [ + { + "damage": 5, + "blockState": "minecraft:red_flower;flower_type=tulip_orange" + } + ], + "output": [ + { + "id": "minecraft:orange_dye", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_dye_from_red_yellow", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:yellow_dye", + "damage": 11 + } + ], + "output": [ + { + "id": "minecraft:orange_dye", + "count": 2, + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:orange_dye", + "damage": 14 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=orange" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:stained_glass;color=orange" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=orange" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:orange_dye", + "damage": 14 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=orange" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:orange_dye", + "damage": 14 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=orange" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:packed_ice", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:ice" + } + }, + "output": [ + { + "blockState": "minecraft:packed_ice" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:paper", + "type": 1, + "input": { + "A": { + "id": "minecraft:sugar_cane", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:paper", + "count": 3 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pillar_quartz_block", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + } + }, + "output": [ + { + "count": 2, + "blockState": "minecraft:quartz_block;chisel_type=lines;pillar_axis=y" + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_banner", + "type": 1, + "input": { + "A": { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 9 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:pink_dye", + "damage": 9 + } + ], + "output": [ + { + "blockState": "minecraft:pink_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_carpet", + "type": 1, + "input": { + "A": { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=pink" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:pink_dye", + "damage": 9 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=pink" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "damage": 9 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_dye", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "output": [ + { + "id": "minecraft:pink_dye", + "count": 2, + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_dye_from_peony", + "type": 0, + "input": [ + { + "damage": 5, + "blockState": "minecraft:double_plant;double_plant_type=paeonia;upper_block_bit=0" + } + ], + "output": [ + { + "id": "minecraft:pink_dye", + "count": 2, + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_dye_from_pink_tulip", + "type": 0, + "input": [ + { + "damage": 7, + "blockState": "minecraft:red_flower;flower_type=tulip_pink" + } + ], + "output": [ + { + "id": "minecraft:pink_dye", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_dye_from_red_bonemeal", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:pink_dye", + "count": 2, + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:pink_dye", + "damage": 9 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=pink" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 6, + "blockState": "minecraft:stained_glass;color=pink" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=pink" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:pink_dye", + "damage": 9 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=pink" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:pink_dye", + "damage": 9 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=pink" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:piston_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "blockState": "minecraft:cobblestone" + }, + "C": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "D": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:piston;facing_direction=1" + } + ], + "shape": [ + "AAA", + "BCB", + "BDB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:piston_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "blockState": "minecraft:cobblestone" + }, + "C": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "D": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:piston;facing_direction=1" + } + ], + "shape": [ + "AAA", + "BCB", + "BDB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:polished_andesite", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:stone;stone_type=andesite" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:stone;stone_type=andesite_smooth" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_andesite_stairs", + "type": 1, + "input": { + "A": { + "damage": 6, + "blockState": "minecraft:stone;stone_type=andesite_smooth" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_basalt", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:basalt;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:polished_basalt;pillar_axis=y" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:blackstone" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:polished_blackstone" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_brick_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:polished_blackstone_bricks" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:polished_blackstone_brick_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_brick_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:polished_blackstone_bricks" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_brick_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:polished_blackstone_bricks" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_bricks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:polished_blackstone" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:polished_blackstone_bricks" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_button", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:polished_blackstone" + } + }, + "output": [ + { + "blockState": "minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=0" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_pressure_plate", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:polished_blackstone" + } + }, + "output": [ + { + "blockState": "minecraft:polished_blackstone_pressure_plate;redstone_signal=0" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:polished_blackstone" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:polished_blackstone_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:polished_blackstone" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:polished_blackstone" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:polished_deepslate" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:polished_deepslate_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:polished_deepslate_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:polished_deepslate_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:polished_deepslate_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:polished_diorite", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:stone;stone_type=diorite" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:stone;stone_type=diorite_smooth" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_diorite_stairs", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:stone;stone_type=diorite_smooth" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_granite", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:stone;stone_type=granite" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:stone;stone_type=granite_smooth" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_granite_stairs", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:stone;stone_type=granite_smooth" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:prismarine", + "type": 1, + "input": { + "A": { + "id": "minecraft:prismarine_shard", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:prismarine;prismarine_block_type=default" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:prismarine_bricks", + "type": 1, + "input": { + "A": { + "id": "minecraft:prismarine_shard", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:prismarine;prismarine_block_type=bricks" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:prismarine_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:prismarine;prismarine_block_type=default" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:prismarine_stairs_bricks", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:prismarine;prismarine_block_type=bricks" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:prismarine_stairs_dark", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:prismarine;prismarine_block_type=dark" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:prismarine_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:prismarine;prismarine_block_type=default" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=prismarine;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pumpkin_pie", + "type": 0, + "input": [ + { + "blockState": "minecraft:pumpkin;direction=0" + }, + { + "id": "minecraft:sugar", + "fuzzy": true + }, + { + "id": "minecraft:egg", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:pumpkin_pie" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pumpkin_seeds", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:pumpkin;direction=0" + } + }, + "output": [ + { + "id": "minecraft:pumpkin_seeds", + "count": 4 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_banner", + "type": 1, + "input": { + "A": { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 5 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:purple_dye", + "damage": 5 + } + ], + "output": [ + { + "blockState": "minecraft:purple_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_carpet", + "type": 1, + "input": { + "A": { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=purple" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:purple_dye", + "damage": 5 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=purple" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "damage": 5 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_dye", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "damage": 18 + }, + { + "id": "minecraft:red_dye", + "damage": 1 + } + ], + "output": [ + { + "id": "minecraft:purple_dye", + "count": 2, + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_dye_from_lapis_lazuli", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "damage": 4 + }, + { + "id": "minecraft:red_dye", + "damage": 1 + } + ], + "output": [ + { + "id": "minecraft:purple_dye", + "count": 2, + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:purple_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:purple_dye", + "damage": 5 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=purple" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 10, + "blockState": "minecraft:stained_glass;color=purple" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=purple" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:purple_dye", + "damage": 5 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=purple" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:purple_dye", + "damage": 5 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=purple" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purpur_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:popped_chorus_fruit", + "fuzzy": true + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purpur_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:quartz_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:quartz", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:quartz_bricks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + } + }, + "output": [ + { + "blockState": "minecraft:quartz_bricks" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:quartz_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:rabbit_stew_from_brown_mushroom", + "type": 0, + "input": [ + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "id": "minecraft:baked_potato", + "fuzzy": true + }, + { + "id": "minecraft:carrot", + "fuzzy": true + }, + { + "blockState": "minecraft:brown_mushroom" + }, + { + "id": "minecraft:cooked_rabbit", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:rabbit_stew" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:rabbit_stew_from_red_mushroom", + "type": 0, + "input": [ + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "id": "minecraft:baked_potato", + "fuzzy": true + }, + { + "id": "minecraft:carrot", + "fuzzy": true + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:cooked_rabbit", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:rabbit_stew" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:rail", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:rail;rail_direction=0" + } + ], + "shape": [ + "A A", + "ABA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:raw_copper", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "legacyId": 507, + "id": "minecraft:raw_copper", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:raw_copper_block", + "type": 1, + "input": { + "A": { + "legacyId": 507, + "id": "minecraft:raw_copper", + "damage": 32767 + } + }, + "output": [ + { + "blockState": "minecraft:raw_copper_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:raw_gold", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "legacyId": 506, + "id": "minecraft:raw_gold", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:raw_gold_block", + "type": 1, + "input": { + "A": { + "legacyId": 506, + "id": "minecraft:raw_gold", + "damage": 32767 + } + }, + "output": [ + { + "blockState": "minecraft:raw_gold_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:raw_iron", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + } + }, + "output": [ + { + "legacyId": 505, + "id": "minecraft:raw_iron", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:raw_iron_block", + "type": 1, + "input": { + "A": { + "legacyId": 505, + "id": "minecraft:raw_iron", + "damage": 32767 + } + }, + "output": [ + { + "blockState": "minecraft:raw_iron_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_banner", + "type": 1, + "input": { + "A": { + "damage": 14, + "blockState": "minecraft:wool;color=red" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 1 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:red_dye", + "damage": 1 + } + ], + "output": [ + { + "blockState": "minecraft:red_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_carpet", + "type": 1, + "input": { + "A": { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=red" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:red_dye", + "damage": 1 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=red" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "damage": 1 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_dye_from_beetroot", + "type": 0, + "input": [ + { + "id": "minecraft:beetroot", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:red_dye", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_dye_from_poppy", + "type": 0, + "input": [ + { + "blockState": "minecraft:red_flower;flower_type=poppy" + } + ], + "output": [ + { + "id": "minecraft:red_dye", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_dye_from_rose_bush", + "type": 0, + "input": [ + { + "damage": 4, + "blockState": "minecraft:double_plant;double_plant_type=rose;upper_block_bit=0" + } + ], + "output": [ + { + "id": "minecraft:red_dye", + "count": 2, + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_dye_from_tulip", + "type": 0, + "input": [ + { + "damage": 4, + "blockState": "minecraft:red_flower;flower_type=tulip_red" + } + ], + "output": [ + { + "id": "minecraft:red_dye", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_nether_brick", + "type": 1, + "input": { + "A": { + "id": "minecraft:netherbrick", + "fuzzy": true + }, + "B": { + "id": "minecraft:nether_wart", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:red_nether_brick" + } + ], + "shape": [ + "AB", + "BA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_nether_brick_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:red_nether_brick" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_nether_brick_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:red_nether_brick" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=red_nether_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_sandstone", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:sand;sand_type=red" + } + }, + "output": [ + { + "blockState": "minecraft:red_sandstone;sand_stone_type=default" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_sandstone_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:red_sandstone;sand_stone_type=default" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_sandstone_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:red_sandstone;sand_stone_type=default" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=red_sandstone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:red_dye", + "damage": 1 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=red" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 14, + "blockState": "minecraft:stained_glass;color=red" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=red" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:red_dye", + "damage": 1 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=red" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:red_dye", + "damage": 1 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=red" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:redstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:redstone_block" + } + }, + "output": [ + { + "id": "minecraft:redstone", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:redstone_block", + "type": 1, + "input": { + "A": { + "id": "minecraft:redstone", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:redstone_block" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:redstone_lamp", + "type": 1, + "input": { + "A": { + "id": "minecraft:redstone", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:glowstone" + } + }, + "output": [ + { + "blockState": "minecraft:redstone_lamp" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:redstone_torch", + "type": 1, + "input": { + "A": { + "id": "minecraft:redstone", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:redstone_torch;torch_facing_direction=unknown" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:repeater", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:redstone_torch;torch_facing_direction=unknown" + }, + "B": { + "id": "minecraft:redstone", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:stone;stone_type=stone" + } + }, + "output": [ + { + "id": "minecraft:repeater" + } + ], + "shape": [ + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:respawn_anchor", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crying_obsidian" + }, + "B": { + "blockState": "minecraft:glowstone" + } + }, + "output": [ + { + "blockState": "minecraft:respawn_anchor;respawn_anchor_charge=0" + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sandstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:sand;sand_type=normal" + } + }, + "output": [ + { + "blockState": "minecraft:sandstone;sand_stone_type=default" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sandstone_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:sandstone;sand_stone_type=default" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sandstone_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:sandstone;sand_stone_type=default" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=sandstone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:scaffolding", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:bamboo;age_bit=0;bamboo_leaf_size=no_leaves;bamboo_stalk_thickness=thin" + }, + "B": { + "id": "minecraft:string", + "fuzzy": true + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:scaffolding;stability=0;stability_check=0" + } + ], + "shape": [ + "ABA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sealantern", + "type": 1, + "input": { + "A": { + "id": "minecraft:prismarine_shard", + "fuzzy": true + }, + "B": { + "id": "minecraft:prismarine_crystals", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:sealantern" + } + ], + "shape": [ + "ABA", + "BBB", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:shears", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:shears" + } + ], + "shape": [ + " A", + "A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:shield", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:shield" + } + ], + "shape": [ + "ABA", + "AAA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:shield_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:shield" + } + ], + "shape": [ + "ABA", + "AAA", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:shield_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "id": "minecraft:iron_ingot", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:shield" + } + ], + "shape": [ + "ABA", + "AAA", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:shulker_box", + "type": 1, + "input": { + "A": { + "id": "minecraft:shulker_shell", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:chest;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:undyed_shulker_box" + } + ], + "shape": [ + "A", + "B", + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sign_acacia", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:planks;wood_type=acacia" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:acacia_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sign_birch", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:planks;wood_type=birch" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:birch_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sign_darkoak", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:planks;wood_type=dark_oak" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:dark_oak_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sign_jungle", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:planks;wood_type=jungle" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:jungle_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sign_oak", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:oak_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sign_spruce", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:planks;wood_type=spruce" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:spruce_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:slime", + "type": 1, + "input": { + "A": { + "id": "minecraft:slime_ball", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:slime" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:slime_ball", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:slime" + } + }, + "output": [ + { + "id": "minecraft:slime_ball", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smithing_table", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "blockState": "minecraft:smithing_table" + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smithing_table_from_crimson_planks", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:smithing_table" + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:smithing_table_from_warped_planks", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:smithing_table" + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:smoker", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:smoker;facing_direction=0" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_crimson_stem", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_stem;pillar_axis=y" + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:smoker;facing_direction=0" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:smoker_from_log2", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:smoker;facing_direction=0" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_acacia", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:smoker;facing_direction=0" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_birch", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:smoker;facing_direction=0" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_crimson_stem", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:smoker;facing_direction=0" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:smoker_from_stripped_dark_oak", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:smoker;facing_direction=0" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_jungle", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:smoker;facing_direction=0" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_oak", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:smoker;facing_direction=0" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_spruce", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:smoker;facing_direction=0" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_warped_stem", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:smoker;facing_direction=0" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:smoker_from_warped_stem", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_stem;pillar_axis=y" + }, + "B": { + "blockState": "minecraft:furnace;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:smoker;facing_direction=0" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:smooth_quartz_stairs", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smooth_red_sandstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:red_sandstone;sand_stone_type=default" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:red_sandstone;sand_stone_type=cut" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smooth_red_sandstone_stairs", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:red_sandstone;sand_stone_type=smooth" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smooth_sandstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:sandstone;sand_stone_type=default" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:sandstone;sand_stone_type=cut" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smooth_sandstone_stairs", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:sandstone;sand_stone_type=smooth" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:snow", + "type": 1, + "input": { + "A": { + "id": "minecraft:snowball", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:snow" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:snow_layer", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:snow" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:snow_layer;covered_bit=0;height=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:soul_campfire_from_crimson_stem", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:crimson_stem;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_crimson_stem2", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:crimson_stem;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_log2", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_acacia_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_birch_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_dark_oak_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_jungle_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_oak_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_spruce_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_wood", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_log2", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_acacia_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_birch_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_dark_oak_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_jungle_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_oak_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_spruce_log", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_wood", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_stripped_crimson_stem", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_stripped_crimson_stem2", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_stripped_warped_stem", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_stripped_warped_stem2", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_warped_stem", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_soil" + }, + "C": { + "blockState": "minecraft:warped_stem;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_warped_stem2", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_sand" + }, + "C": { + "blockState": "minecraft:warped_stem;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_lantern", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:soul_torch;torch_facing_direction=unknown" + } + }, + "output": [ + { + "blockState": "minecraft:soul_lantern;hanging=0" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:soul_torch_from_soul_sand", + "type": 1, + "input": { + "A": { + "id": "minecraft:coal" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:soul_sand" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:soul_torch;torch_facing_direction=unknown" + } + ], + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:soul_torch_from_soul_soil", + "type": 1, + "input": { + "A": { + "id": "minecraft:coal" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:soul_soil" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:soul_torch;torch_facing_direction=unknown" + } + ], + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:speckled_melon", + "type": 1, + "input": { + "A": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "B": { + "id": "minecraft:melon_slice", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:glistering_melon_slice" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_boat", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:planks;wood_type=spruce" + }, + "B": { + "id": "minecraft:wooden_shovel", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:spruce_boat", + "damage": 1 + } + ], + "shape": [ + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_door", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:planks;wood_type=spruce" + } + }, + "output": [ + { + "id": "minecraft:spruce_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_fence", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:planks;wood_type=spruce" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:fence;wood_type=spruce" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_fence_gate", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "damage": 1, + "blockState": "minecraft:planks;wood_type=spruce" + } + }, + "output": [ + { + "blockState": "minecraft:spruce_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_planks", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:log;old_log_type=spruce;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=spruce" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_planks_from_stripped", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=spruce" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "damage": 9, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=spruce" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=spruce" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_planks_from_wood", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=spruce" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:planks;wood_type=spruce" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_stairs", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:planks;wood_type=spruce" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_wood", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:log;old_log_type=spruce;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=spruce" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_wood_stripped", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=spruce" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_wooden_slab", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:planks;wood_type=spruce" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=spruce" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spyglass", + "type": 1, + "input": { + "A": { + "legacyId": 623, + "id": "minecraft:amethyst_shard", + "damage": 32767 + }, + "B": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 624, + "id": "minecraft:spyglass" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:stick_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "id": "minecraft:stick", + "count": 4 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stick_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:stick", + "count": 4 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:sticky_piston", + "type": 1, + "input": { + "A": { + "id": "minecraft:slime_ball", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:piston;facing_direction=0" + } + }, + "output": [ + { + "blockState": "minecraft:sticky_piston;facing_direction=1" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_axe", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_axe_from_blackstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:blackstone" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_axe_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_brick_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stonebrick;stone_brick_type=default" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_brick_wall", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stonebrick;stone_brick_type=default" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:cobblestone_wall;wall_block_type=stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_button", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stone;stone_type=stone" + } + }, + "output": [ + { + "blockState": "minecraft:stone_button;button_pressed_bit=0;facing_direction=0" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_hoe", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_hoe_from_blackstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:blackstone" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_hoe_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_pickaxe", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_pickaxe_from_blackstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:blackstone" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_pickaxe_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_pressure_plate", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stone;stone_type=stone" + } + }, + "output": [ + { + "blockState": "minecraft:stone_pressure_plate;redstone_signal=0" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_shovel", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_shovel_from_blackstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:blackstone" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_shovel_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stone;stone_type=stone" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_sword", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:cobblestone" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_sword_from_blackstone", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:blackstone" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_sword_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:air" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:stone_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stonebrick", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stone;stone_type=stone" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:stonebrick;stone_brick_type=default" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stonecutter", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:stone;stone_type=stone" + } + }, + "output": [ + { + "blockState": "minecraft:stonecutter_block;facing_direction=0" + } + ], + "shape": [ + " A ", + "BBB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:string_to_wool", + "type": 1, + "input": { + "A": { + "id": "minecraft:string", + "fuzzy": true + } + }, + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stripped_crimson_hyphae", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:stripped_crimson_hyphae;pillar_axis=y" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stripped_warped_hyphae", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:stripped_warped_hyphae;pillar_axis=y" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sugar", + "type": 1, + "input": { + "A": { + "id": "minecraft:sugar_cane", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:sugar" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_allium", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:red_flower;flower_type=allium" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_azure_bluet", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:red_flower;flower_type=houstonia" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_blue_orchid", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:red_flower;flower_type=orchid" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_cornflower", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:red_flower;flower_type=cornflower" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_dandelion", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "blockState": "minecraft:yellow_flower" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_lily_of_the_valley", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:red_flower;flower_type=lily_of_the_valley" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_oxeye_daisy", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:red_flower;flower_type=oxeye" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_poppy", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "blockState": "minecraft:red_flower;flower_type=poppy" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_tulip_orange", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:red_flower;flower_type=tulip_orange" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_tulip_pink", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:red_flower;flower_type=tulip_pink" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_tulip_red", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:red_flower;flower_type=tulip_red" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_tulip_white", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:red_flower;flower_type=tulip_white" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_wither_rose", + "type": 0, + "input": [ + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "id": "minecraft:bowl", + "fuzzy": true + }, + { + "blockState": "minecraft:wither_rose" + } + ], + "output": [ + { + "id": "minecraft:suspicious_stew", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:target", + "type": 1, + "input": { + "A": { + "id": "minecraft:redstone", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:hay_block;deprecated=0;pillar_axis=y" + } + }, + "output": [ + { + "blockState": "minecraft:target" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:tinted_glass", + "type": 1, + "input": { + "A": { + "legacyId": 623, + "id": "minecraft:amethyst_shard", + "damage": 32767 + }, + "B": { + "blockState": "minecraft:glass" + } + }, + "output": [ + { + "count": 2, + "blockState": "minecraft:tinted_glass" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:tnt", + "type": 1, + "input": { + "A": { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:sand;sand_type=normal" + } + }, + "output": [ + { + "blockState": "minecraft:tnt;allow_underwater_bit=0;explode_bit=0" + } + ], + "shape": [ + "ABA", + "BAB", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:tnt_minecart", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:tnt;allow_underwater_bit=0;explode_bit=0" + }, + "B": { + "id": "minecraft:minecart", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:tnt_minecart" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:trapped_chest", + "type": 0, + "input": [ + { + "blockState": "minecraft:chest;facing_direction=0" + }, + { + "blockState": "minecraft:tripwire_hook;attached_bit=0;direction=0;powered_bit=0" + } + ], + "output": [ + { + "blockState": "minecraft:trapped_chest;facing_direction=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:tripwire_hook_from_crimson_planks", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:crimson_planks" + } + }, + "output": [ + { + "blockState": "minecraft:tripwire_hook;attached_bit=0;direction=0;powered_bit=0" + } + ], + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:tripwire_hook_from_warped_planks", + "type": 1, + "input": { + "A": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + }, + "C": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:tripwire_hook;attached_bit=0;direction=0;powered_bit=0" + } + ], + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:turtle_helmet", + "type": 1, + "input": { + "A": { + "id": "minecraft:scute", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:turtle_helmet" + } + ], + "shape": [ + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_button", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:warped_button;button_pressed_bit=0;facing_direction=0" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_door", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "id": "minecraft:warped_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_fence", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:warped_fence" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_fence_gate", + "type": 1, + "input": { + "A": { + "id": "minecraft:stick", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:warped_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_fungus_on_a_stick", + "type": 1, + "input": { + "A": { + "id": "minecraft:fishing_rod", + "fuzzy": true + }, + "B": { + "blockState": "minecraft:warped_fungus" + } + }, + "output": [ + { + "id": "minecraft:warped_fungus_on_a_stick" + } + ], + "shape": [ + "A ", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_hyphae", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_stem;pillar_axis=y" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:warped_hyphae;pillar_axis=y" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_stem;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:warped_planks" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_planks_from_stripped_log", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:warped_planks" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_planks_from_stripped_warped_hyphae", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stripped_warped_hyphae;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:warped_planks" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_planks_from_warped_hyphae", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_hyphae;pillar_axis=y" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:warped_planks" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_pressure_plate", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "blockState": "minecraft:warped_pressure_plate;redstone_signal=0" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_sign", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:warped_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_slab", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:warped_slab;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_stairs", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_trapdoor", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + } + }, + "output": [ + { + "count": 2, + "blockState": "minecraft:warped_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:waxing_copper_block", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_copper" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_cut_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_cut_copper" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_exposed_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_exposed_copper" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_exposed_cut_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_exposed_cut_copper" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_exposed_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_exposed_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_oxidized_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_oxidized_copper" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_oxidized_cut_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_oxidized_cut_copper" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_oxidized_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_oxidized_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_weathered_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_weathered_copper" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_weathered_cut_copper", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_weathered_cut_copper" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_weathered_cut_copper_slab", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=0" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_weathered_cut_copper_stairs", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:honeycomb", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:wheat", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hay_block;deprecated=0;pillar_axis=y" + } + }, + "output": [ + { + "id": "minecraft:wheat", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_banner", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:wool;color=white" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 15 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "output": [ + { + "blockState": "minecraft:white_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_candle_from_bonemeal", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "blockState": "minecraft:white_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_carpet", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:wool;color=white" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=white" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "damage": 19 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_concrete_powder_from_bonemeal", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "damage": 15 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=white" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:white_dye_from_bone_meal", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_dye_from_lily_of_the_valley", + "type": 0, + "input": [ + { + "damage": 10, + "blockState": "minecraft:red_flower;flower_type=lily_of_the_valley" + } + ], + "output": [ + { + "id": "minecraft:white_dye", + "damage": 19 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:white_dye", + "damage": 19 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=white" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_stained_glass_from_bonemeal", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:bone_meal", + "damage": 15 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=white" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:white_stained_glass_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:stained_glass;color=white" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=white" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:white_dye", + "damage": 19 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=white" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:white_dye", + "damage": 19 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=white" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_stained_hardened_clay_from_bonemeal", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:bone_meal", + "damage": 15 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=white" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:wooden_axe_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_axe_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_door", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:wooden_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:wooden_hoe_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_hoe" + } + ], + "shape": [ + "AA ", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_hoe_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_hoe" + } + ], + "shape": [ + "AA ", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_pickaxe_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_pickaxe_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_shovel_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_shovel_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_sword_from_crimson_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:crimson_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_sword_from_warped_planks", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:warped_planks" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:writable_book", + "type": 0, + "input": [ + { + "id": "minecraft:book", + "fuzzy": true + }, + { + "id": "minecraft:ink_sac" + }, + { + "id": "minecraft:feather", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:writable_book" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_banner", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:banner", + "damage": 11 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_candle", + "type": 0, + "input": [ + { + "blockState": "minecraft:air" + }, + { + "id": "minecraft:yellow_dye", + "damage": 11 + } + ], + "output": [ + { + "blockState": "minecraft:yellow_candle;candles=0;lit=0" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_carpet", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + }, + "output": [ + { + "count": 3, + "blockState": "minecraft:carpet;color=yellow" + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_carpet_from_white", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:carpet;color=white" + }, + "B": { + "id": "minecraft:yellow_dye", + "damage": 11 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:carpet;color=yellow" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_concrete_powder", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "damage": 11 + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:gravel" + } + ], + "output": [ + { + "count": 8, + "blockState": "minecraft:concretepowder;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_dye_from_dandelion", + "type": 0, + "input": [ + { + "blockState": "minecraft:yellow_flower" + } + ], + "output": [ + { + "id": "minecraft:yellow_dye", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_dye_from_sunflower", + "type": 0, + "input": [ + { + "blockState": "minecraft:double_plant;double_plant_type=sunflower;upper_block_bit=0" + } + ], + "output": [ + { + "id": "minecraft:yellow_dye", + "count": 2, + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_stained_glass", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass" + }, + "B": { + "id": "minecraft:yellow_dye", + "damage": 11 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass;color=yellow" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_stained_glass_pane", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:stained_glass;color=yellow" + } + }, + "output": [ + { + "count": 16, + "blockState": "minecraft:stained_glass_pane;color=yellow" + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:glass_pane" + }, + "B": { + "id": "minecraft:yellow_dye", + "damage": 11 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_glass_pane;color=yellow" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:hardened_clay" + }, + "B": { + "id": "minecraft:yellow_dye", + "damage": 11 + } + }, + "output": [ + { + "count": 8, + "blockState": "minecraft:stained_hardened_clay;color=yellow" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "oak_stairs_oak_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_0_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star" + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_10_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 10 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_11_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 11 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_12_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 12 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_13_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 13 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_14_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 14 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_15_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_16_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star" + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_17_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 3 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_18_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 4 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_19_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 15 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_1_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 1 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_2_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 2 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_3_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 3 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_4_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 4 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_5_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 5 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_6_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 6 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_7_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 7 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_8_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 8 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_9_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:firework_star", + "damage": 9 + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_0_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_10_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_11_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_12_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_13_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_14_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_15_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_16_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_17_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_18_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_19_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_1_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_2_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_3_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_4_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_5_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_6_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_7_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_8_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_9_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:gunpowder", + "fuzzy": true + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_recipeId", + "type": 0, + "input": [ + { + "id": "minecraft:paper", + "fuzzy": true + }, + { + "id": "minecraft:gunpowder", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "type": 4, + "uuid": "00000000-0000-0000-0000-000000000001" + }, + { + "id": "shulkerBox_shulker_box_color_block_0_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_9_0", + "type": 5, + "input": [ + { + "damage": 6, + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_0_0", + "type": 5, + "input": [ + { + "damage": 15, + "blockState": "minecraft:shulker_box;color=black" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_10_0", + "type": 5, + "input": [ + { + "damage": 5, + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_11_0", + "type": 5, + "input": [ + { + "damage": 4, + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_12_0", + "type": 5, + "input": [ + { + "damage": 3, + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_13_0", + "type": 5, + "input": [ + { + "damage": 2, + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_14_0", + "type": 5, + "input": [ + { + "damage": 1, + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_1_0", + "type": 5, + "input": [ + { + "damage": 14, + "blockState": "minecraft:shulker_box;color=red" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_2_0", + "type": 5, + "input": [ + { + "damage": 13, + "blockState": "minecraft:shulker_box;color=green" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_3_0", + "type": 5, + "input": [ + { + "damage": 12, + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_4_0", + "type": 5, + "input": [ + { + "damage": 11, + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_5_0", + "type": 5, + "input": [ + { + "damage": 10, + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_6_0", + "type": 5, + "input": [ + { + "damage": 9, + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_7_0", + "type": 5, + "input": [ + { + "damage": 8, + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_8_0", + "type": 5, + "input": [ + { + "damage": 7, + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_0_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:ink_sac", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_10_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:lime_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=lime" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_11_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:yellow_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=yellow" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_12_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_13_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:magenta_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=magenta" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_14_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:orange_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=orange" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_15_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:bone_meal", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_16_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:black_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=black" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_17_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:brown_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_18_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:blue_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_19_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:white_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=white" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_1_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:red_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=red" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_2_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:green_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=green" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_3_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=brown" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_4_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=blue" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_5_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:purple_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=purple" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_6_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:cyan_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=cyan" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_7_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=silver" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_8_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:gray_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=gray" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_9_0", + "type": 5, + "input": [ + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "id": "minecraft:pink_dye", + "fuzzy": true + } + ], + "output": [ + { + "blockState": "minecraft:shulker_box;color=pink" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "slab3_endstonebrick_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:end_bricks" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "spruce_stairs_spruce_recipeId", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:planks;wood_type=spruce" + } + }, + "output": [ + { + "count": 4, + "blockState": "minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=0" + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stick_wood_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + } + }, + "output": [ + { + "id": "minecraft:stick", + "count": 4 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "stoneslab2_RedSandstone_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:red_sandstone;sand_stone_type=default" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_prismarine_bricks_recipeId", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:prismarine;prismarine_block_type=bricks" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_prismarine_recipeId", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:prismarine;prismarine_block_type=dark" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_purpur_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:mossy_cobblestone" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_rednetherbrick_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:red_nether_brick" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_redsandstone_heiroglyphs_recipeId", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:red_sandstone;sand_stone_type=heiroglyphs" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_smoothsandstone_smooth_recipeId", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:sandstone;sand_stone_type=smooth" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_andesite_recipeId", + "type": 1, + "input": { + "A": { + "damage": 5, + "blockState": "minecraft:stone;stone_type=andesite" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_diorite_recipeId", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:stone;stone_type=diorite" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_granite", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:stone;stone_type=granite" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_polishedGranite_GraniteSmooth_recipeId", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:stone;stone_type=granite_smooth" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_polished_andesite_andesitesmooth_recipeId", + "type": 1, + "input": { + "A": { + "damage": 6, + "blockState": "minecraft:stone;stone_type=andesite_smooth" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_polished_diorite_dioritesmooth_recipeId", + "type": 1, + "input": { + "A": { + "damage": 4, + "blockState": "minecraft:stone;stone_type=diorite_smooth" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_smooth_recipeId", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:red_sandstone;sand_stone_type=smooth" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab4_cut_redsandstone_cut_recipeId", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:red_sandstone;sand_stone_type=cut" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab4;stone_slab_type_4=cut_red_sandstone;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab4_cut_sandstone_cut_recipeId", + "type": 1, + "input": { + "A": { + "damage": 2, + "blockState": "minecraft:sandstone;sand_stone_type=cut" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab4;stone_slab_type_4=cut_sandstone;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab4_smoothquartz_smooth_recipeId", + "type": 1, + "input": { + "A": { + "damage": 3, + "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab4;stone_slab_type_4=smooth_quartz;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab_quartz_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab_recipeId", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:prismarine;prismarine_block_type=default" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab_sandstone_heiroglyphs_recipeId", + "type": 1, + "input": { + "A": { + "damage": 1, + "blockState": "minecraft:sandstone;sand_stone_type=heiroglyphs" + } + }, + "output": [ + { + "count": 6, + "blockState": "minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "tool_material_recipe_0_0", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "tool_material_recipe_0_1", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "tool_material_recipe_0_2", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "tool_material_recipe_0_3", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "type": 4, + "uuid": "aecd2294-4b94-434b-8667-4499bb2c9327" + }, + { + "id": "weapon_arrow_recipe_10", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 10 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 11 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_11", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 11 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 12 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_12", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 12 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 13 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_13", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 13 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 14 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_14", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 14 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 15 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_15", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 15 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 16 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_16", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 16 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 17 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_17", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 17 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 18 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_18", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 18 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 19 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_19", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 19 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 20 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_20", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 20 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 21 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_21", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 21 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 22 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_22", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 22 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 23 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_23", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 23 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 24 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_24", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 24 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 25 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_25", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 25 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 26 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_26", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 26 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 27 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_27", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 27 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 28 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_28", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 28 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 29 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_29", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 29 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 30 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_30", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 30 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 31 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_31", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 31 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 32 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_32", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 32 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 33 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_33", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 33 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 34 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_34", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 34 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 35 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_35", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 35 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 36 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_36", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 36 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 37 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_37", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 37 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 38 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_38", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 38 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 39 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_39", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 39 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 40 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_40", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 40 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 41 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_41", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 41 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 42 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_42", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 42 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 43 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_5", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 5 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 6 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_6", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 6 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 7 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_7", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 7 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_8", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 8 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 9 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_9", + "type": 1, + "input": { + "A": { + "id": "minecraft:arrow" + }, + "B": { + "id": "minecraft:lingering_potion", + "damage": 9 + } + }, + "output": [ + { + "id": "minecraft:arrow", + "count": 8, + "damage": 10 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_stick_recipe_0_0", + "type": 1, + "input": { + "A": { + "blockState": "minecraft:planks;wood_type=oak" + }, + "B": { + "id": "minecraft:stick", + "fuzzy": true + } + }, + "output": [ + { + "id": "minecraft:wooden_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "wool_dye_wool_0_1", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_10", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_11", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_12", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_13", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_14", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_15", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_2", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_3", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_4", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_5", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_6", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_7", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_8", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_9", + "type": 0, + "input": [ + { + "id": "minecraft:ink_sac", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_0", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_1", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_11", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_12", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_13", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_14", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_15", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_2", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_3", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_4", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_5", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_6", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_7", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_8", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_9", + "type": 0, + "input": [ + { + "id": "minecraft:lime_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=lime" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_0", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_1", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_10", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_12", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_13", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_14", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_15", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_2", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_3", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_4", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_5", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_6", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_7", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_8", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_9", + "type": 0, + "input": [ + { + "id": "minecraft:yellow_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=yellow" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_0", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_1", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_10", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_11", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_13", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_14", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_15", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_2", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_3", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_4", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_5", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_6", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_7", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_8", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_9", + "type": 0, + "input": [ + { + "id": "minecraft:light_blue_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=light_blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_0", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_1", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_10", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_11", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_12", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_14", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_15", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_2", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_3", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_4", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_5", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_6", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_7", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_8", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_9", + "type": 0, + "input": [ + { + "id": "minecraft:magenta_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=magenta" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_0", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_1", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_10", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_11", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_12", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_13", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_15", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_2", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_3", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_4", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_5", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_6", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_7", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_8", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_9", + "type": 0, + "input": [ + { + "id": "minecraft:orange_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=orange" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_0", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_1", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_10", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_11", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_12", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_13", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_14", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_2", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_3", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_4", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_5", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_6", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_7", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_8", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_9", + "type": 0, + "input": [ + { + "id": "minecraft:bone_meal", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_1", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_10", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_11", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_12", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_13", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_14", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_15", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_2", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_3", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_4", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_5", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_6", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_7", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_8", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_9", + "type": 0, + "input": [ + { + "id": "minecraft:black_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=black" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_0", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_1", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_10", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_11", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_12", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_13", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_14", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_15", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_2", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_4", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_5", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_6", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_7", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_8", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_9", + "type": 0, + "input": [ + { + "id": "minecraft:brown_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_0", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_1", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_10", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_11", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_12", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_13", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_14", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_15", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_2", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_3", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_5", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_6", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_7", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_8", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_9", + "type": 0, + "input": [ + { + "id": "minecraft:blue_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_0", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_1", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_10", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_11", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_12", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_13", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_14", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_2", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_3", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_4", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_5", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_6", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_7", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_8", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_9", + "type": 0, + "input": [ + { + "id": "minecraft:white_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=white" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_0", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_10", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_11", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_12", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_13", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_14", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_15", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_2", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_3", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_4", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_5", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_6", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_7", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_8", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_9", + "type": 0, + "input": [ + { + "id": "minecraft:red_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=red" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_0", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_1", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_10", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_11", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_12", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_13", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_14", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_15", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_3", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_4", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_5", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_6", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_7", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_8", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_9", + "type": 0, + "input": [ + { + "id": "minecraft:green_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=green" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_0", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_1", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_10", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_11", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_12", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_13", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_14", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_15", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_2", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_4", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_5", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_6", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_7", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_8", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_9", + "type": 0, + "input": [ + { + "id": "minecraft:cocoa_beans", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=brown" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_0", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_1", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_10", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_11", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_12", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_13", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_14", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_15", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_2", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_3", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_5", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_6", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_7", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_8", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_9", + "type": 0, + "input": [ + { + "id": "minecraft:lapis_lazuli", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=blue" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_0", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_1", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_10", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_11", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_12", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_13", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_14", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_15", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_2", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_3", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_4", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_6", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_7", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_8", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_9", + "type": 0, + "input": [ + { + "id": "minecraft:purple_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=purple" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_0", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_1", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_10", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_11", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_12", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_13", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_14", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_15", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_2", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_3", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_4", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_5", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_7", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_8", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_9", + "type": 0, + "input": [ + { + "id": "minecraft:cyan_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=cyan" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_0", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_1", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_10", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_11", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_12", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_13", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_14", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_15", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_2", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_3", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_4", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_5", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_6", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_8", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_9", + "type": 0, + "input": [ + { + "id": "minecraft:light_gray_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=silver" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_0", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_1", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_10", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_11", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_12", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_13", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_14", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_15", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_2", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_3", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_4", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_5", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_6", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_7", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_9", + "type": 0, + "input": [ + { + "id": "minecraft:gray_dye", + "fuzzy": true + }, + { + "damage": 6, + "blockState": "minecraft:wool;color=pink" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=gray" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_0", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 15, + "blockState": "minecraft:wool;color=black" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_1", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 14, + "blockState": "minecraft:wool;color=red" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_10", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 5, + "blockState": "minecraft:wool;color=lime" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_11", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 4, + "blockState": "minecraft:wool;color=yellow" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_12", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 3, + "blockState": "minecraft:wool;color=light_blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_13", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 2, + "blockState": "minecraft:wool;color=magenta" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_14", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 1, + "blockState": "minecraft:wool;color=orange" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_15", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "blockState": "minecraft:wool;color=white" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_2", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 13, + "blockState": "minecraft:wool;color=green" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_3", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 12, + "blockState": "minecraft:wool;color=brown" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_4", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 11, + "blockState": "minecraft:wool;color=blue" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_5", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 10, + "blockState": "minecraft:wool;color=purple" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_6", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 9, + "blockState": "minecraft:wool;color=cyan" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_7", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 8, + "blockState": "minecraft:wool;color=silver" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_8", + "type": 0, + "input": [ + { + "id": "minecraft:pink_dye", + "fuzzy": true + }, + { + "damage": 7, + "blockState": "minecraft:wool;color=gray" + } + ], + "output": [ + { + "blockState": "minecraft:wool;color=pink" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:emerald", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:emerald", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:coal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:coal" + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:diamond", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:diamond", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:redstone", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:redstone", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:lapis_lazuli", + "damage": 4 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "id": "minecraft:lapis_lazuli", + "damage": 4 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "blockState": "minecraft:cracked_deepslate_bricks" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "blockState": "minecraft:cracked_deepslate_tiles" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "blockState": "minecraft:deepslate;pillar_axis=y" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:air" + }, + "output": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:nether_gold_ore" + }, + "output": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:nether_gold_ore" + }, + "output": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:polished_blackstone_bricks" + }, + "output": { + "blockState": "minecraft:cracked_polished_blackstone_bricks" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:ancient_debris" + }, + "output": { + "id": "minecraft:netherite_scrap", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:ancient_debris" + }, + "output": { + "id": "minecraft:netherite_scrap", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:basalt;pillar_axis=y" + }, + "output": { + "blockState": "minecraft:smooth_basalt" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 1, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=spruce" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 2, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=birch" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 3, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=jungle" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 4, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=acacia" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 5, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=dark_oak" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 8, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=oak" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 9, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=spruce" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 10, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=birch" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 11, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=jungle" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 12, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=acacia" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 13, + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=dark_oak" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:sea_pickle;cluster_count=0;dead_bit=0" + }, + "output": { + "id": "minecraft:lime_dye", + "damage": 10 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "blockState": "minecraft:stone;stone_type=stone" + }, + "output": { + "blockState": "minecraft:smooth_stone" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:cobblestone" + }, + "output": { + "blockState": "minecraft:stone;stone_type=stone" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:sand;sand_type=normal" + }, + "output": { + "blockState": "minecraft:glass" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:gold_ore" + }, + "output": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:gold_ore" + }, + "output": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:iron_ore" + }, + "output": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:iron_ore" + }, + "output": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:coal_ore" + }, + "output": { + "id": "minecraft:coal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:coal_ore" + }, + "output": { + "id": "minecraft:coal" + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 1, + "blockState": "minecraft:log;old_log_type=spruce;pillar_axis=y" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 2, + "blockState": "minecraft:log;old_log_type=birch;pillar_axis=y" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 3, + "blockState": "minecraft:log;old_log_type=jungle;pillar_axis=y" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 1, + "blockState": "minecraft:sponge;sponge_type=wet" + }, + "output": { + "blockState": "minecraft:sponge;sponge_type=dry" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:lapis_ore" + }, + "output": { + "id": "minecraft:lapis_lazuli", + "damage": 4 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:lapis_ore" + }, + "output": { + "id": "minecraft:lapis_lazuli", + "damage": 4 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:sandstone;sand_stone_type=default" + }, + "output": { + "blockState": "minecraft:sandstone;sand_stone_type=smooth" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:diamond_ore" + }, + "output": { + "id": "minecraft:diamond", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:diamond_ore" + }, + "output": { + "id": "minecraft:diamond", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:redstone_ore" + }, + "output": { + "id": "minecraft:redstone", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:redstone_ore" + }, + "output": { + "id": "minecraft:redstone", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:cactus;age=0" + }, + "output": { + "id": "minecraft:green_dye", + "damage": 2 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:clay" + }, + "output": { + "blockState": "minecraft:hardened_clay" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:netherrack" + }, + "output": { + "id": "minecraft:netherbrick", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "blockState": "minecraft:stonebrick;stone_brick_type=default" + }, + "output": { + "blockState": "minecraft:stonebrick;stone_brick_type=cracked" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:nether_brick" + }, + "output": { + "blockState": "minecraft:cracked_nether_bricks" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:emerald_ore" + }, + "output": { + "id": "minecraft:emerald", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:emerald_ore" + }, + "output": { + "id": "minecraft:emerald", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:quartz_ore" + }, + "output": { + "id": "minecraft:quartz", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:quartz_ore" + }, + "output": { + "id": "minecraft:quartz", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + }, + "output": { + "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "blockState": "minecraft:stained_hardened_clay;color=white" + }, + "output": { + "blockState": "minecraft:white_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 1, + "blockState": "minecraft:stained_hardened_clay;color=orange" + }, + "output": { + "blockState": "minecraft:orange_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 2, + "blockState": "minecraft:stained_hardened_clay;color=magenta" + }, + "output": { + "blockState": "minecraft:magenta_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 3, + "blockState": "minecraft:stained_hardened_clay;color=light_blue" + }, + "output": { + "blockState": "minecraft:light_blue_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 4, + "blockState": "minecraft:stained_hardened_clay;color=yellow" + }, + "output": { + "blockState": "minecraft:yellow_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 5, + "blockState": "minecraft:stained_hardened_clay;color=lime" + }, + "output": { + "blockState": "minecraft:lime_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 6, + "blockState": "minecraft:stained_hardened_clay;color=pink" + }, + "output": { + "blockState": "minecraft:pink_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 7, + "blockState": "minecraft:stained_hardened_clay;color=gray" + }, + "output": { + "blockState": "minecraft:gray_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 8, + "blockState": "minecraft:stained_hardened_clay;color=silver" + }, + "output": { + "blockState": "minecraft:silver_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 9, + "blockState": "minecraft:stained_hardened_clay;color=cyan" + }, + "output": { + "blockState": "minecraft:cyan_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 10, + "blockState": "minecraft:stained_hardened_clay;color=purple" + }, + "output": { + "blockState": "minecraft:purple_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 11, + "blockState": "minecraft:stained_hardened_clay;color=blue" + }, + "output": { + "blockState": "minecraft:blue_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 12, + "blockState": "minecraft:stained_hardened_clay;color=brown" + }, + "output": { + "blockState": "minecraft:brown_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 13, + "blockState": "minecraft:stained_hardened_clay;color=green" + }, + "output": { + "blockState": "minecraft:green_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 14, + "blockState": "minecraft:stained_hardened_clay;color=red" + }, + "output": { + "blockState": "minecraft:red_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 15, + "blockState": "minecraft:stained_hardened_clay;color=black" + }, + "output": { + "blockState": "minecraft:black_glazed_terracotta;facing_direction=0" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": 1, + "blockState": "minecraft:log2;new_log_type=dark_oak;pillar_axis=y" + }, + "output": { + "id": "minecraft:charcoal", + "damage": 1 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "damage": -1, + "blockState": "minecraft:red_sandstone;sand_stone_type=default" + }, + "output": { + "blockState": "minecraft:red_sandstone;sand_stone_type=smooth" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:porkchop" + }, + "output": { + "id": "minecraft:cooked_porkchop", + "fuzzy": true + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "id": "minecraft:porkchop" + }, + "output": { + "id": "minecraft:cooked_porkchop", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:porkchop" + }, + "output": { + "id": "minecraft:cooked_porkchop", + "fuzzy": true + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:porkchop" + }, + "output": { + "id": "minecraft:cooked_porkchop", + "fuzzy": true + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:cod" + }, + "output": { + "id": "minecraft:cooked_cod", + "fuzzy": true + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "id": "minecraft:cod" + }, + "output": { + "id": "minecraft:cooked_cod", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:cod" + }, + "output": { + "id": "minecraft:cooked_cod", + "fuzzy": true + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:cod" + }, + "output": { + "id": "minecraft:cooked_cod", + "fuzzy": true + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:salmon" + }, + "output": { + "id": "minecraft:cooked_salmon", + "fuzzy": true + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "id": "minecraft:salmon" + }, + "output": { + "id": "minecraft:cooked_salmon", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:salmon" + }, + "output": { + "id": "minecraft:cooked_salmon", + "fuzzy": true + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:salmon" + }, + "output": { + "id": "minecraft:cooked_salmon", + "fuzzy": true + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:beef" + }, + "output": { + "id": "minecraft:cooked_beef", + "fuzzy": true + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "id": "minecraft:beef" + }, + "output": { + "id": "minecraft:cooked_beef", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:beef" + }, + "output": { + "id": "minecraft:cooked_beef", + "fuzzy": true + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:beef" + }, + "output": { + "id": "minecraft:cooked_beef", + "fuzzy": true + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:chicken" + }, + "output": { + "id": "minecraft:cooked_chicken", + "fuzzy": true + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "id": "minecraft:chicken" + }, + "output": { + "id": "minecraft:cooked_chicken", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:chicken" + }, + "output": { + "id": "minecraft:cooked_chicken", + "fuzzy": true + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:chicken" + }, + "output": { + "id": "minecraft:cooked_chicken", + "fuzzy": true + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:potato" + }, + "output": { + "id": "minecraft:baked_potato", + "fuzzy": true + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "id": "minecraft:potato" + }, + "output": { + "id": "minecraft:baked_potato", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:potato" + }, + "output": { + "id": "minecraft:baked_potato", + "fuzzy": true + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:potato" + }, + "output": { + "id": "minecraft:baked_potato", + "fuzzy": true + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:rabbit" + }, + "output": { + "id": "minecraft:cooked_rabbit", + "fuzzy": true + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "id": "minecraft:rabbit" + }, + "output": { + "id": "minecraft:cooked_rabbit", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:rabbit" + }, + "output": { + "id": "minecraft:cooked_rabbit", + "fuzzy": true + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:rabbit" + }, + "output": { + "id": "minecraft:cooked_rabbit", + "fuzzy": true + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_shovel" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_shovel" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_pickaxe" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_pickaxe" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_axe" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_axe" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_sword" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_sword" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_sword" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_sword" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_shovel" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_shovel" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_pickaxe" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_pickaxe" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_axe" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_axe" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_hoe" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_hoe" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_hoe" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_hoe" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:chainmail_helmet" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:chainmail_helmet" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:chainmail_chestplate" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:chainmail_chestplate" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:chainmail_leggings" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:chainmail_leggings" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:chainmail_boots" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:chainmail_boots" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_helmet" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_helmet" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_chestplate" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_chestplate" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_leggings" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_leggings" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_boots" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_boots" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_helmet" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_helmet" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_chestplate" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_chestplate" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_leggings" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_leggings" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_boots" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_boots" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:kelp" + }, + "output": { + "id": "minecraft:dried_kelp", + "fuzzy": true + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "id": "minecraft:kelp" + }, + "output": { + "id": "minecraft:dried_kelp", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:kelp" + }, + "output": { + "id": "minecraft:dried_kelp", + "fuzzy": true + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:kelp" + }, + "output": { + "id": "minecraft:dried_kelp", + "fuzzy": true + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:clay_ball" + }, + "output": { + "id": "minecraft:brick", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 505, + "id": "minecraft:raw_iron", + "damage": -1 + }, + "output": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 505, + "id": "minecraft:raw_iron", + "damage": -1 + }, + "output": { + "id": "minecraft:iron_ingot", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 506, + "id": "minecraft:raw_gold", + "damage": -1 + }, + "output": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 506, + "id": "minecraft:raw_gold", + "damage": -1 + }, + "output": { + "id": "minecraft:gold_ingot", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 507, + "id": "minecraft:raw_copper", + "damage": -1 + }, + "output": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 507, + "id": "minecraft:raw_copper", + "damage": -1 + }, + "output": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_horse_armor" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:iron_horse_armor" + }, + "output": { + "id": "minecraft:iron_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_horse_armor" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:golden_horse_armor" + }, + "output": { + "id": "minecraft:gold_nugget", + "fuzzy": true + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:mutton" + }, + "output": { + "id": "minecraft:cooked_mutton", + "fuzzy": true + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "id": "minecraft:mutton" + }, + "output": { + "id": "minecraft:cooked_mutton", + "fuzzy": true + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "id": "minecraft:mutton" + }, + "output": { + "id": "minecraft:cooked_mutton", + "fuzzy": true + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:mutton" + }, + "output": { + "id": "minecraft:cooked_mutton", + "fuzzy": true + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "id": "minecraft:chorus_fruit" + }, + "output": { + "id": "minecraft:popped_chorus_fruit", + "fuzzy": true + }, + "block": "furnace" + } + ], + "potionMixes": [ + { + "inputId": "minecraft:potion", + "inputMeta": 17, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 42 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 17, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 42 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 17, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 42 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 27, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 27, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 27, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 31 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 31 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 31 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 28 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 28 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 28 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:golden_carrot", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 5 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:golden_carrot", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 5 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:golden_carrot", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 5 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 12 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 12 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 12 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:phantom_membrane", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 40 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:phantom_membrane", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 40 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:phantom_membrane", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 40 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:pufferfish", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 19 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:pufferfish", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 19 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:pufferfish", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 19 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 9 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 9 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 9 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 21 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 21 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 21 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 25 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 25 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 25 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 14 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 14 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 14 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:turtle_helmet", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 37 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:turtle_helmet", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 37 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:turtle_helmet", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 37 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 12, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 13 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 12, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 13 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 12, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 13 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 23, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 23, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 23, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 21, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 22 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 21, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 22 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 21, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 22 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 7, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 7, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 7, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 9, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 9, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 9, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 9, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 11 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 9, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 11 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 9, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 11 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 9, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 10 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 9, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 10 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 9, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 10 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 6, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 6, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 6, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 15, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 15, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 15, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 10, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 10, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 10, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 2, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 2, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 2, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 26, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 26, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 26, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 32, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 32, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 32, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 1, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 1, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 1, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 5, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 7 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 5, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 7 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 5, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 7 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 25, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 25, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 25, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 25, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 27 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 25, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 27 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 25, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 27 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 25, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 26 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 25, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 26 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 25, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 26 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 28, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 30 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 28, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 30 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 28, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 30 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 28, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 29 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 28, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 29 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 28, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 29 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 17, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 17, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 17, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 40, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 41 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 40, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 41 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 40, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 41 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 31, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 31, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 31, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 31, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 33 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 31, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 33 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 31, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 33 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 31, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 32 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 31, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 32 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 31, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 32 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 22, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 22, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 22, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 33, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 33, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 33, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 14, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 14, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 14, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 14, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 16 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 14, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 16 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 14, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 16 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 14, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 15 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 14, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 15 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 14, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 15 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 3, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 3, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 3, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 37, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 39 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 37, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 39 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 37, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 39 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 37, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 38 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 37, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 38 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 37, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 38 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 19, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 20 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 19, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 20 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 19, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 20 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 3 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 3 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 3 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:nether_wart", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 4 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:nether_wart", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 4 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:nether_wart", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 4 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 34, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 34, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 34, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 35 + } + ], + "containerMixes": [ + { + "inputId": "minecraft:potion", + "reagentId": "minecraft:gunpowder", + "outputId": "minecraft:splash_potion" + }, + { + "inputId": "minecraft:splash_potion", + "reagentId": "minecraft:dragon_breath", + "outputId": "minecraft:lingering_potion" + } + ] +} \ No newline at end of file diff --git a/src/test/java/org/powernukkit/updater/AllResourceUpdates.java b/src/test/java/org/powernukkit/updater/AllResourceUpdates.java index 49418676545..61818280d02 100644 --- a/src/test/java/org/powernukkit/updater/AllResourceUpdates.java +++ b/src/test/java/org/powernukkit/updater/AllResourceUpdates.java @@ -1,8 +1,25 @@ package org.powernukkit.updater; import cn.nukkit.block.Block; +import cn.nukkit.block.BlockUnknown; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.blockstate.BlockStateRegistry; import cn.nukkit.item.Item; +import cn.nukkit.item.RuntimeItems; import cn.nukkit.item.enchantment.Enchantment; +import cn.nukkit.utils.Config; +import cn.nukkit.utils.Utils; +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; +import com.google.gson.JsonPrimitive; +import com.google.gson.JsonSerializer; +import lombok.var; + +import java.io.File; +import java.io.IOException; +import java.io.InputStream; +import java.io.UncheckedIOException; +import java.util.*; /** * @author joserobjr @@ -39,13 +56,209 @@ public static void main(String[] args) { private void execute() { init(); + updateRecipes(); + System.exit(0); + } + + @SuppressWarnings("unchecked") + private void updateRecipes() { + Gson gson = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting() + .registerTypeAdapter(Double.class, (JsonSerializer) (src, typeOfSrc, context) -> { + if (src == src.longValue()) + return new JsonPrimitive(src.longValue()); + return new JsonPrimitive(src); + }).create(); + + Config config = new Config(Config.JSON); + try(InputStream recipesStream = getClass().getClassLoader() + .getResourceAsStream("org/powernukkit/updater/dumps/proxypass/recipes.json") + ) { + if (recipesStream == null) { + throw new AssertionError("Unable to find recipes.json"); + } + config.loadAsJson(recipesStream, gson); + } catch (IOException e) { + throw new UncheckedIOException(e); + } + var newRecipes = config.getMapList("recipes"); + var recipesIterator = newRecipes.listIterator(); + while (recipesIterator.hasNext()) { + var recipe = new LinkedHashMap(recipesIterator.next()); + var type = Utils.toInt(recipe.get("type")); + Object inputObject = recipe.get("input"); + if (inputObject != null) { + if (type == 3) { + inputObject = updateItemEntry((Map) inputObject); + } else { + if (inputObject instanceof Map) { + var inputs = (Map>) inputObject; + inputs = new LinkedHashMap<>(inputs); + for (var itemEntry : inputs.entrySet()) { + itemEntry.setValue(updateItemEntry(itemEntry.getValue())); + } + inputObject = inputs; + } else if (inputObject instanceof List) { + var inputs = (List>) inputObject; + inputObject = updateItemEntryList(inputs); + } + } + recipe.put("input", inputObject); + } + + Object outputObject = recipe.get("output"); + if (outputObject != null) { + if (type == 3) { + outputObject = updateItemEntry((Map) outputObject); + } else { + var outputList = (List>) outputObject; + outputObject = updateItemEntryList(outputList); + } + recipe.put("output", outputObject); + } + + recipesIterator.set(recipe); + } + config.set("recipes", newRecipes); + + config.saveAsJson(new File("src/main/resources/recipes.json"), false, gson); + } + + private List> updateItemEntryList(List> inputs) { + inputs = new ArrayList<>(inputs); + var inputIterator = inputs.listIterator(); + while (inputIterator.hasNext()) { + inputIterator.set(updateItemEntry(inputIterator.next())); + } + return inputs; + } + + private Map updateItemEntry(Map itemEntry) { + itemEntry = new LinkedHashMap<>(itemEntry); + Integer damage = itemEntry.containsKey("damage")? Utils.toInt(itemEntry.get("damage")) : null; + boolean fuzzy = damage != null && damage.equals((int)Short.MAX_VALUE); + if (itemEntry.containsKey("blockState")) { + itemEntry.remove("legacyId"); + itemEntry.remove("blockRuntimeId"); + itemEntry.remove("id"); + itemEntry.remove("damage"); + return itemEntry; + } + + if (itemEntry.containsKey("blockRuntimeId")) { + int blockRuntimeId = Utils.toInt(itemEntry.get("blockRuntimeId")); + BlockState state; + String stateId; + boolean unknown = false; + try { + state = BlockStateRegistry.getBlockStateByRuntimeId(blockRuntimeId); + if (state == null || state.equals(BlockState.AIR)) { + throw new NoSuchElementException("State not found for blockRuntimeId: "+blockRuntimeId); + } + if (state.getProperties().equals(BlockUnknown.PROPERTIES)) { + unknown = true; + stateId = BlockStateRegistry.getKnownBlockStateIdByRuntimeId(blockRuntimeId); + } else { + stateId = state.getStateId(); + } + } catch (Exception e) { + try { + int blockId = BlockStateRegistry.getBlockIdByRuntimeId(blockRuntimeId); + BlockState baseState = BlockState.of(blockId); + if (baseState.equals(BlockState.AIR)) { + throw new NoSuchElementException("State not found for blockRuntimeId: "+blockRuntimeId); + } + if (baseState.getProperties().equals(BlockUnknown.PROPERTIES)) { + unknown = true; + stateId = BlockStateRegistry.getKnownBlockStateIdByRuntimeId(blockRuntimeId); + } else { + throw e; + } + } catch (Exception e2) { + e2.addSuppressed(e); + throw e2; + } + } + if (unknown) { + if (stateId != null) { + System.out.println("State of unimplemented block found for blockRuntimeId: " + blockRuntimeId + ", using " + stateId); + } else { + throw new NoSuchElementException("State unknown for blockRuntimeId: " + blockRuntimeId); + } + } + itemEntry.remove("legacyId"); + itemEntry.remove("blockRuntimeId"); + itemEntry.remove("id"); + itemEntry.remove("damage"); + itemEntry.put("blockState", stateId); + if (fuzzy) { + itemEntry.put("fuzzy", true); + } + return itemEntry; + } + + if (itemEntry.containsKey("legacyId")) { + int legacyId = Utils.toInt(itemEntry.get("legacyId")); + if (legacyId > 255) { + int fullId; + try { + fullId = RuntimeItems.getRuntimeMapping().getLegacyFullId(legacyId); + } catch (Exception e) { + System.out.println("Could not update " + legacyId + " " + itemEntry.get("id") + " : " + itemEntry.get("damage")); + return itemEntry; + } + int itemId = RuntimeItems.getId(fullId); + Integer meta = null; + if (RuntimeItems.hasData(fullId)) { + meta = RuntimeItems.getData(fullId); + } + + if (itemEntry.containsKey("damage")) { + int damage2 = Utils.toInt(itemEntry.get("damage")); + if (damage2 == Short.MAX_VALUE) { + fuzzy = true; + } else if (meta == null) { + meta = damage; + } + } + + Item item = Item.get(itemId, meta == null ? 0 : meta); + itemEntry.remove("legacyId"); + itemEntry.remove("blockRuntimeId"); + itemEntry.remove("damage"); + itemEntry.remove("blockState"); + itemEntry.put("id", item.getNamespaceId()); + if (fuzzy) { + itemEntry.put("fuzzy", true); + } else if (item.getDamage() != 0) { + itemEntry.put("damage", item.getDamage()); + } + return itemEntry; + } + } + + String id = itemEntry.get("id").toString(); + Item item; + if (damage != null && !fuzzy) { + item = Item.fromString(id + ":" + damage); + } else { + item = Item.fromString(id); + damage = item.getDamage(); + } + if (damage != 0) { + itemEntry.put("damage", damage); + } else { + itemEntry.remove("damage"); + } + itemEntry.remove("legacyId"); + itemEntry.remove("blockRuntimeId"); + itemEntry.remove("id"); + itemEntry.put("blockState", item.getBlock().getStateId()); + return itemEntry; } private void init() { Block.init(); Enchantment.init(); Item.init(); - - } } diff --git a/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json index 358c4601153..085a61aaa4e 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json +++ b/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json @@ -1,59297 +1,59297 @@ { - "version" : 465, - "recipes" : [ - { - "type" : 4, - "uuid" : "442d85ed-8272-4543-a6f1-418f90ded05d" - }, - { - "type" : 4, - "uuid" : "8b36268c-1829-483c-a0f1-993b7156a8f2" - }, - { - "type" : 4, - "uuid" : "602234e4-cac1-4353-8bb7-b1ebff70024b" - }, - { - "id" : "minecraft:cartography_table_locator_map", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "block" : "cartography_table", - "priority" : 0 - }, - { - "id" : "minecraft:cartography_table_map", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map" - } - ], - "block" : "cartography_table", - "priority" : 0 - }, - { - "type" : 4, - "uuid" : "98c84b38-1085-46bd-b1ce-dd38c159e6cc" - }, - { - "id" : "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -395, - "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1129 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -380, - "id" : "minecraft:cobbled_deepslate_slab", - "count" : 2, - "blockRuntimeId" : 1145 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -381, - "id" : "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId" : 1147 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -382, - "id" : "minecraft:cobbled_deepslate_wall", - "blockRuntimeId" : 1155 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 2, - "blockRuntimeId" : 4104 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 2, - "blockRuntimeId" : 4104 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 2, - "blockRuntimeId" : 4104 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4106 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4106 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4106 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4114 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4114 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4114 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4276 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4276 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2, - "blockRuntimeId" : 4287 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2, - "blockRuntimeId" : 4287 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2, - "blockRuntimeId" : 4287 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 2, - "blockRuntimeId" : 4287 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4289 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4289 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4289 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4289 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4297 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4297 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4297 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4297 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4459 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks" - } - ], - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4459 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4459 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6200 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -384, - "id" : "minecraft:polished_deepslate_slab", - "count" : 2, - "blockRuntimeId" : 6203 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -384, - "id" : "minecraft:polished_deepslate_slab", - "count" : 2, - "blockRuntimeId" : 6203 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -385, - "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6205 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -385, - "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6205 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate" - } - ], - "output" : [ - { - "legacyId" : -386, - "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6213 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecut", - "type" : 0, - "input" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate" - } - ], - "output" : [ - { - "legacyId" : -386, - "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6213 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_andesite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7254 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_andesite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -171, - "id" : "minecraft:andesite_stairs", - "blockRuntimeId" : 144 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_andesite_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1322 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_blackstone_slab_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -282, - "id" : "minecraft:blackstone_slab", - "count" : 2, - "blockRuntimeId" : 497 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_blackstone_stairs_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -276, - "id" : "minecraft:blackstone_stairs", - "blockRuntimeId" : 499 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_blackstone_wall_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -277, - "id" : "minecraft:blackstone_wall", - "blockRuntimeId" : 507 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7223 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_brick_slab_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 2, - "blockRuntimeId" : 5825 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "output" : [ - { - "legacyId" : 108, - "id" : "minecraft:brick_stairs", - "blockRuntimeId" : 876 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_brick_stairs_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5827 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1324 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_brick_wall_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5835 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_bricks_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5997 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_chiseled_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -279, - "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_chiseled_nether_bricks_from_nether_brick", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -302, - "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1130 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_chiseled_polished_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -279, - "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_cobbledouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7222 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_cobblestone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - ], - "output" : [ - { - "legacyId" : 67, - "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7277 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_cobblestone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1318 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_copper_block_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "blockRuntimeId" : 3909 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_copper_block_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 3910 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_copper_block_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3912 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 3910 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3912 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_dark_prismarine_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7238 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_dark_prismarine_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -3, - "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 4036 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_diorite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7255 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_diorite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -170, - "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 4475 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_diorite_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1321 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_double_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 2, - "blockRuntimeId" : 7269 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_endbrick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7251 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_endbrick_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7251 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_endbrick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : -178, - "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4719 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_endbrick_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "output" : [ - { - "legacyId" : -178, - "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4719 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_endbrick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1328 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_endbrick_wall2", - "type" : 0, - "input" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1328 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_endbricks", - "type" : 0, - "input" : [ - { - "legacyId" : 121, - "id" : "minecraft:end_stone" - } - ], - "output" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4727 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "blockRuntimeId" : 4752 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4755 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_exposed_copper_to_exposed_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 4753 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 4753 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4755 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_granite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7257 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_granite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -169, - "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4988 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_granite_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1320 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_mossy_cobbledouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7240 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_mossy_cobblestone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "output" : [ - { - "legacyId" : -179, - "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5667 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_mossy_cobblestone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1319 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_mossy_stonebrick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 2, - "blockRuntimeId" : 7267 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_mossy_stonebrick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -175, - "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5675 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_mossy_stonebrick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1326 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_nether_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7226 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_nether_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "output" : [ - { - "legacyId" : 114, - "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5687 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_nether_brick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1327 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5752 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 5753 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5755 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 5753 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5755 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_andesite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 7182 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7253 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7253 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : -174, - "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5811 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_polished_andesite_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : -174, - "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5811 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_polished_basalt_from_basalt", - "type" : 0, - "input" : [ - { - "legacyId" : -234, - "id" : "minecraft:basalt", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -235, - "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5819 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_brick_slab_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 2, - "blockRuntimeId" : 5825 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_brick_stairs_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5827 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_brick_wall_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5835 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_bricks_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5997 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_diorite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 7180 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7256 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7256 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -173, - "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6375 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_polished_diorite_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : -173, - "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6375 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_polished_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5822 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_granite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 7178 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_polished_granite_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7258 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_polished_granite_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7258 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_polished_granite_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : -172, - "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6383 - } - ], - "block" : "stonecutter", - "priority" : 5 - }, - { - "id" : "minecraft:stonecutter_polished_granite_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : -172, - "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6383 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_polished_slab_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "count" : 2, - "blockRuntimeId" : 6028 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_stairs_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -292, - "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6030 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_polished_wall_from_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -297, - "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6038 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_prismarine_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7239 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_prismarine_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : -4, - "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6438 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_prismarine_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7237 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_prismarine_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "output" : [ - { - "legacyId" : -2, - "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6446 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_prismarine_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1329 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_purpur_lines", - "type" : 0, - "input" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "output" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6524 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_purpur_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7236 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_purpur_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - ], - "output" : [ - { - "legacyId" : 203, - "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6534 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_quartz_bricks_from_quartz_block", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : -304, - "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6554 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_quartz_chiseled", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6543 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_quartz_lines", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6544 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_quartz_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7225 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_quartz_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - ], - "output" : [ - { - "legacyId" : 156, - "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6556 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_red_nether_brick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7242 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_red_nether_brick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "output" : [ - { - "legacyId" : -184, - "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6622 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_red_nether_brick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1331 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_red_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7235 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_cut", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6632 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_heiroglyphs", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6631 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 180, - "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6634 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_red_sandstone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1330 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7220 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_sandstone_cut", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6705 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_sandstone_heiroglyphs", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6704 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 128, - "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6707 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_sandstone_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1323 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_slab_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "count" : 2, - "blockRuntimeId" : 6028 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_slab_from_polished_blackstone_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 2, - "blockRuntimeId" : 5825 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_smooth_double_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -183, - "id" : "minecraft:smooth_stone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7219 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_quartz_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 2, - "blockRuntimeId" : 7268 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_quartz_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -185, - "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6883 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_smooth_red_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 2, - "blockRuntimeId" : 7252 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_red_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -176, - "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6891 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_smooth_sanddouble_stone_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 2, - "blockRuntimeId" : 7241 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_smooth_sandstone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : -177, - "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6899 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_stairs_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -292, - "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6030 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_stone_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : -180, - "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5705 - } - ], - "block" : "stonecutter", - "priority" : 6 - }, - { - "id" : "minecraft:stonecutter_stonebrick", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7285 - } - ], - "block" : "stonecutter", - "priority" : 4 - }, - { - "id" : "minecraft:stonecutter_stonebrick_chiseled", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7288 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_stonebrick_slab", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7224 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_stonebrick_slab2", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 2, - "blockRuntimeId" : 7224 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_stonebrick_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 109, - "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7183 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_stonebrick_stairs2", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "output" : [ - { - "legacyId" : 109, - "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7183 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_stonebrick_wall", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1325 - } - ], - "block" : "stonecutter", - "priority" : 3 - }, - { - "id" : "minecraft:stonecutter_stonebrick_wall2", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - ], - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1325 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_wall_from_polished_blackstone", - "type" : 0, - "input" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -297, - "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6038 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_wall_from_polished_blackstone_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5835 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7682 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7683 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7685 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_copper_to_exposed_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7697 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7683 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7685 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7696 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7699 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7697 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7699 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7710 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7711 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7713 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7711 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7713 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7724 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7725 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7727 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7725 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7727 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7738 - } - ], - "block" : "stonecutter", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7739 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7741 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "count" : 2, - "blockRuntimeId" : 7739 - } - ], - "block" : "stonecutter", - "priority" : 1 - }, - { - "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7741 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "stonecutter_stairs_from_polished_blackstone_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5827 - } - ], - "block" : "stonecutter", - "priority" : 2 - }, - { - "id" : "Bookshelf_woodplanks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "Bowl_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "count" : 4 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "ButtonAcacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -140, - "id" : "minecraft:acacia_button" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonBirch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -141, - "id" : "minecraft:birch_button", - "blockRuntimeId" : 356 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonDarkOak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -142, - "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3936 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonJungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -143, - "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5208 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "ButtonSpruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -144, - "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6962 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Chest_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "blockRuntimeId" : 1123 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "DaylightDetector_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass" - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 151, - "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4066 - } - ], - "shape" : [ - "AAA", - "BBB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "FireCharge_blaze_powder_coal_sulphur_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - }, - { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 509, - "id" : "minecraft:fire_charge", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "FireCharge_coal_sulphur_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - }, - { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 509, - "id" : "minecraft:fire_charge", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Jukebox_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 84, - "id" : "minecraft:jukebox", - "blockRuntimeId" : 5207 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "Note_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 25, - "id" : "minecraft:noteblock", - "blockRuntimeId" : 5713 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "Painting_Cobblestone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7222 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Painting_NetherBrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7226 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Painting_VanillaBlocks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7220 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Painting_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 357, - "id" : "minecraft:painting" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Piston_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone" - }, - "C" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "D" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 33, - "id" : "minecraft:piston", - "blockRuntimeId" : 5783 - } - ], - "shape" : [ - "AAA", - "BCB", - "BDB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "PressurePlateAcacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -150, - "id" : "minecraft:acacia_pressure_plate", - "blockRuntimeId" : 60 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateBirch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -151, - "id" : "minecraft:birch_pressure_plate", - "blockRuntimeId" : 416 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateDarkOak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -152, - "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3996 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateJungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -153, - "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5268 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "PressurePlateSpruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -154, - "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 7022 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Stick_bamboo_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -163, - "id" : "minecraft:bamboo" - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick" - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "StoneSlab4_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7269 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab4_stoneBrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7267 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab_Brick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 45, - "id" : "minecraft:brick_block" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7223 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab_StoneBrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7224 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "StoneSlab_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -183, - "id" : "minecraft:smooth_stone" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7219 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Torch_charcoal_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 50, - "id" : "minecraft:torch", - "count" : 4, - "blockRuntimeId" : 7353 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Torch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 50, - "id" : "minecraft:torch", - "count" : 4, - "blockRuntimeId" : 7353 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorAcacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -145, - "id" : "minecraft:acacia_trapdoor", - "count" : 2, - "blockRuntimeId" : 100 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorBirch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -146, - "id" : "minecraft:birch_trapdoor", - "count" : 2, - "blockRuntimeId" : 456 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorDarkOak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -147, - "id" : "minecraft:dark_oak_trapdoor", - "count" : 2, - "blockRuntimeId" : 4020 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorJungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -148, - "id" : "minecraft:jungle_trapdoor", - "count" : 2, - "blockRuntimeId" : 5308 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TrapdoorSpruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -149, - "id" : "minecraft:spruce_trapdoor", - "count" : 2, - "blockRuntimeId" : 7062 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "Trapdoor_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 96, - "id" : "minecraft:trapdoor", - "count" : 2, - "blockRuntimeId" : 7359 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "TripwireHook_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "count" : 2, - "blockRuntimeId" : 7397 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "WoodButton_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 143, - "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7839 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "WoodPressurePlate_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 72, - "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7883 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "WorkBench_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 58, - "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3770 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "acacia_stairs_acacia_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 163, - "id" : "minecraft:acacia_stairs", - "count" : 4, - "blockRuntimeId" : 76 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "d81aaeaf-e172-4440-9225-868df030d27b" - }, - { - "type" : 4, - "uuid" : "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" - }, - { - "type" : 4, - "uuid" : "00000000-0000-0000-0000-000000000002" - }, - { - "id" : "bed_color_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "bed_color_crimson_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_crimson_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_color_warped_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "bed_dye_0_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_0_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_10_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_11_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_12_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_13_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_14_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_15_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_16_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_17_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_18_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_19_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_1_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_2_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_3_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_4_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_5_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_6_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_7_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_8_9", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_0", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_1", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_10", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_11", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_12", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_13", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_14", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_15", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_2", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_3", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_4", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_5", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_6", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_7", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "bed_dye_9_8", - "type" : 0, - "input" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 418, - "id" : "minecraft:bed", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "birch_stairs_birch_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 135, - "id" : "minecraft:birch_stairs", - "count" : 4, - "blockRuntimeId" : 432 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" - }, - { - "id" : "chiseled_quartz_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6543 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "chiseled_stonebrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7288 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "85939755-ba10-4d9d-a4cc-efb7a8e943c4" - }, - { - "id" : "dark_oak_stairs_dark_oak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 164, - "id" : "minecraft:dark_oak_stairs", - "count" : 4, - "blockRuntimeId" : 4012 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "d392b075-4ba1-40ae-8789-af868d56f6ce" - }, - { - "id" : "heiroglyphs_redsandstone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2" - } - }, - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6631 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "heiroglyphs_sandstone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6704 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "jungle_stairs_jungle_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 136, - "id" : "minecraft:jungle_stairs", - "count" : 4, - "blockRuntimeId" : 5284 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "lines_purpur_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6524 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "loom_block_wood_planks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -204, - "id" : "minecraft:loom", - "blockRuntimeId" : 5581 - } - ], - "shape" : [ - "AA", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 379, - "id" : "minecraft:acacia_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 556, - "id" : "minecraft:acacia_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4777 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 187, - "id" : "minecraft:acacia_fence_gate", - "blockRuntimeId" : 44 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2" - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5798 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5798 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5798 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5798 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 163, - "id" : "minecraft:acacia_stairs", - "count" : 4, - "blockRuntimeId" : 76 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2" - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7807 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7813 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:acacia_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7903 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:activator_rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 126, - "id" : "minecraft:activator_rail", - "count" : 6, - "blockRuntimeId" : 122 - } - ], - "shape" : [ - "ABA", - "ACA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:amethyst_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 623, - "id" : "minecraft:amethyst_shard", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -327, - "id" : "minecraft:amethyst_block", - "blockRuntimeId" : 136 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:andesite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - }, - { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 2, - "blockRuntimeId" : 7181 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:andesite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -171, - "id" : "minecraft:andesite_stairs", - "count" : 4, - "blockRuntimeId" : 144 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:andesite_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1322 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:anvil", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 42, - "id" : "minecraft:iron_block", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 145, - "id" : "minecraft:anvil", - "blockRuntimeId" : 152 - } - ], - "shape" : [ - "AAA", - " B ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:armor_stand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab" - } - }, - "output" : [ - { - "legacyId" : 552, - "id" : "minecraft:armor_stand" - } - ], - "shape" : [ - "AAA", - " A ", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:arrow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 327, - "id" : "minecraft:feather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "count" : 4 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_bricks", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 585, - "id" : "minecraft:field_masoned_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_creeper", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 516, - "id" : "minecraft:skull", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 582, - "id" : "minecraft:creeper_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_flower", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 581, - "id" : "minecraft:flower_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_skull", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 516, - "id" : "minecraft:skull", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 583, - "id" : "minecraft:skull_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_thing", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 259, - "id" : "minecraft:enchanted_golden_apple", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 584, - "id" : "minecraft:mojang_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:banner_pattern_vines", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 106, - "id" : "minecraft:vine", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 586, - "id" : "minecraft:bordure_indented_banner_pattern" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:barrel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -203, - "id" : "minecraft:barrel", - "blockRuntimeId" : 201 - } - ], - "shape" : [ - "ABA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:barrel_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -203, - "id" : "minecraft:barrel", - "blockRuntimeId" : 201 - } - ], - "shape" : [ - "ABA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:barrel_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -203, - "id" : "minecraft:barrel", - "blockRuntimeId" : 201 - } - ], - "shape" : [ - "ABA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:basic_map_to_enhanced", - "type" : 0, - "input" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 1 - }, - { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:beacon", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 518, - "id" : "minecraft:nether_star", - "damage" : 32767 - }, - "C" : { - "legacyId" : 49, - "id" : "minecraft:obsidian", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 138, - "id" : "minecraft:beacon", - "blockRuntimeId" : 217 - } - ], - "shape" : [ - "AAA", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:beehive", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -219, - "id" : "minecraft:beehive", - "blockRuntimeId" : 260 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:beehive_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -219, - "id" : "minecraft:beehive", - "blockRuntimeId" : 260 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:beehive_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -219, - "id" : "minecraft:beehive", - "blockRuntimeId" : 260 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:beetroot_soup", - "type" : 0, - "input" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - }, - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 286, - "id" : "minecraft:beetroot_soup" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 376, - "id" : "minecraft:birch_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 554, - "id" : "minecraft:birch_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4775 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 184, - "id" : "minecraft:birch_fence_gate", - "blockRuntimeId" : 400 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5796 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5796 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5796 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5796 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 135, - "id" : "minecraft:birch_stairs", - "count" : 4, - "blockRuntimeId" : 432 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7805 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7811 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:birch_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7901 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner" - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - ], - "output" : [ - { - "legacyId" : -428, - "id" : "minecraft:black_candle", - "blockRuntimeId" : 478 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_candle_from_ink_sac", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - ], - "output" : [ - { - "legacyId" : -428, - "id" : "minecraft:black_candle", - "blockRuntimeId" : 478 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 978 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 978 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:black_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3674 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_concrete_powder_from_ink_sac", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3674 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:black_dye_from_ink_sac", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - ], - "output" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_dye_from_wither_rose", - "type" : 0, - "input" : [ - { - "legacyId" : -216, - "id" : "minecraft:wither_rose", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7099 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_glass_from_ink_sac", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7099 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:black_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 15 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7115 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7115 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7131 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:black_stained_hardened_clay_from_ink_sac", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7131 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:blackstone_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -282, - "id" : "minecraft:blackstone_slab", - "count" : 6, - "blockRuntimeId" : 497 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blackstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -276, - "id" : "minecraft:blackstone_stairs", - "count" : 4, - "blockRuntimeId" : 499 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blackstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -277, - "id" : "minecraft:blackstone_wall", - "count" : 6, - "blockRuntimeId" : 507 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blast_furnace", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - }, - "C" : { - "legacyId" : -183, - "id" : "minecraft:smooth_stone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -196, - "id" : "minecraft:blast_furnace", - "blockRuntimeId" : 669 - } - ], - "shape" : [ - "AAA", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blaze_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 4 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - ], - "output" : [ - { - "legacyId" : -424, - "id" : "minecraft:blue_candle", - "blockRuntimeId" : 675 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_candle_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - ], - "output" : [ - { - "legacyId" : -424, - "id" : "minecraft:blue_candle", - "blockRuntimeId" : 675 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 974 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 974 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3670 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_concrete_powder_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3670 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:blue_dye_from_cornflower", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_dye_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - ], - "output" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_ice", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 174, - "id" : "minecraft:packed_ice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -11, - "id" : "minecraft:blue_ice", - "blockRuntimeId" : 691 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7095 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_glass_from_lapis_lazuli", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7095 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:blue_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7111 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7111 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7127 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:blue_stained_hardened_clay_from_lapis_lazuli", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7127 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 375, - "id" : "minecraft:oak_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bone_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - }, - "output" : [ - { - "legacyId" : 216, - "id" : "minecraft:bone_block", - "blockRuntimeId" : 692 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bone_meal_from_block", - "type" : 0, - "input" : [ - { - "legacyId" : 216, - "id" : "minecraft:bone_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "count" : 9 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bone_meal_from_bone", - "type" : 0, - "input" : [ - { - "legacyId" : 415, - "id" : "minecraft:bone", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:book", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper" - }, - { - "legacyId" : 386, - "id" : "minecraft:paper" - }, - { - "legacyId" : 386, - "id" : "minecraft:paper" - }, - { - "legacyId" : 381, - "id" : "minecraft:leather" - } - ], - "output" : [ - { - "legacyId" : 387, - "id" : "minecraft:book" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bookshelf_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bookshelf_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 300, - "id" : "minecraft:bow" - } - ], - "shape" : [ - " AB", - "A B", - " AB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:bowl_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "count" : 4 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bowl_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "count" : 4 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:bread", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 261, - "id" : "minecraft:bread" - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brewing_stand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 431, - "id" : "minecraft:brewing_stand" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brewing_stand_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 431, - "id" : "minecraft:brewing_stand" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:brewing_stand_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 431, - "id" : "minecraft:brewing_stand" - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:brick_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 383, - "id" : "minecraft:brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "blockRuntimeId" : 875 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 108, - "id" : "minecraft:brick_stairs", - "count" : 4, - "blockRuntimeId" : 876 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 45, - "id" : "minecraft:brick_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1324 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - ], - "output" : [ - { - "legacyId" : -425, - "id" : "minecraft:brown_candle", - "blockRuntimeId" : 884 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_candle_from_cocoa_beans", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - ], - "output" : [ - { - "legacyId" : -425, - "id" : "minecraft:brown_candle", - "blockRuntimeId" : 884 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 975 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 975 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3671 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_concrete_powder_from_cocoa_beans", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3671 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:brown_dye_from_cocoa_beans", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - ], - "output" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7096 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_glass_from_cocoa_beans", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7096 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:brown_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7112 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7112 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 398, - "id" : "minecraft:brown_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7128 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:brown_stained_hardened_clay_from_cocoa_beans", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7128 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:bucket", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 360, - "id" : "minecraft:bucket" - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cake", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 361, - "id" : "minecraft:milk_bucket" - }, - "B" : { - "legacyId" : 416, - "id" : "minecraft:sugar", - "damage" : 32767 - }, - "C" : { - "legacyId" : 390, - "id" : "minecraft:egg", - "damage" : 32767 - }, - "D" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 417, - "id" : "minecraft:cake" - }, - { - "legacyId" : 360, - "id" : "minecraft:bucket", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "BCB", - "DDD" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:campfire_from_charcoal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_charcoal_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 303, - "id" : "minecraft:charcoal", - "damage" : 32767 - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:campfire_from_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_stripped_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:campfire_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 588, - "id" : "minecraft:campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:candle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "blockRuntimeId" : 953 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:carrot_on_a_stick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 392, - "id" : "minecraft:fishing_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 517, - "id" : "minecraft:carrot_on_a_stick" - } - ], - "shape" : [ - "A ", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cartography_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -200, - "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cartography_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -200, - "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:cartography_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -200, - "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:cauldron", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 432, - "id" : "minecraft:cauldron" - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chain", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 617, - "id" : "minecraft:chain" - } - ], - "shape" : [ - "A", - "B", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chest_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "blockRuntimeId" : 1123 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:chest_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "blockRuntimeId" : 1123 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:chest_minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - }, - "B" : { - "legacyId" : 370, - "id" : "minecraft:minecart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 389, - "id" : "minecraft:chest_minecart" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chiseled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -380, - "id" : "minecraft:cobbled_deepslate_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -395, - "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1129 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:chiseled_nether_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : -302, - "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1130 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:chiseled_polished_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -279, - "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 384, - "id" : "minecraft:clay_ball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 82, - "id" : "minecraft:clay", - "blockRuntimeId" : 1139 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:clock", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 393, - "id" : "minecraft:clock" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:coal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 173, - "id" : "minecraft:coal_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 302, - "id" : "minecraft:coal", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:coal_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - } - }, - "output" : [ - { - "legacyId" : 173, - "id" : "minecraft:coal_block", - "blockRuntimeId" : 1140 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:coarse_dirt", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 3, - "id" : "minecraft:dirt" - }, - "B" : { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 3, - "id" : "minecraft:dirt", - "count" : 4, - "blockRuntimeId" : 4484 - } - ], - "shape" : [ - "AB", - "BA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cobbled_deepslate_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -380, - "id" : "minecraft:cobbled_deepslate_slab", - "count" : 6, - "blockRuntimeId" : 1145 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cobbled_deepslate_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -381, - "id" : "minecraft:cobbled_deepslate_stairs", - "count" : 4, - "blockRuntimeId" : 1147 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cobbled_deepslate_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -382, - "id" : "minecraft:cobbled_deepslate_wall", - "count" : 6, - "blockRuntimeId" : 1155 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cobblestone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 67, - "id" : "minecraft:stone_stairs", - "count" : 4, - "blockRuntimeId" : 7277 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cobblestone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1318 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cobweb_to_string", - "type" : 0, - "input" : [ - { - "legacyId" : 30, - "id" : "minecraft:web", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 326, - "id" : "minecraft:string", - "count" : 9 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:comparator", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 522, - "id" : "minecraft:comparator" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:compass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 391, - "id" : "minecraft:compass" - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:composter", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -213, - "id" : "minecraft:composter", - "blockRuntimeId" : 3634 - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:composter_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -213, - "id" : "minecraft:composter", - "blockRuntimeId" : 3634 - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:composter_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -213, - "id" : "minecraft:composter", - "blockRuntimeId" : 3634 - } - ], - "shape" : [ - "A A", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:conduit", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 570, - "id" : "minecraft:nautilus_shell", - "damage" : 32767 - }, - "B" : { - "legacyId" : 571, - "id" : "minecraft:heart_of_the_sea", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -157, - "id" : "minecraft:conduit", - "blockRuntimeId" : 3675 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cookie", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - }, - "B" : { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans" - } - }, - "output" : [ - { - "legacyId" : 271, - "id" : "minecraft:cookie", - "count" : 8 - } - ], - "shape" : [ - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:copper_block_from_ingots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "blockRuntimeId" : 3676 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "count" : 4, - "blockRuntimeId" : 3909 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 3910 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 3912 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_exposed_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "count" : 4, - "blockRuntimeId" : 4752 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_exposed_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 4753 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_exposed_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 4755 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 58, - "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3770 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:crafting_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 58, - "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3770 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:crafting_table_oxidized_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "count" : 4, - "blockRuntimeId" : 5752 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_oxidized_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 5753 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_oxidized_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 5755 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "count" : 4, - "blockRuntimeId" : 7682 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7683 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7685 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_exposed_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "count" : 4, - "blockRuntimeId" : 7696 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7697 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7699 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "count" : 4, - "blockRuntimeId" : 7710 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7711 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7713 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_weathered_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "count" : 4, - "blockRuntimeId" : 7724 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7725 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7727 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_weathered_cut_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "count" : 4, - "blockRuntimeId" : 7738 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_weathered_cut_copper_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "count" : 6, - "blockRuntimeId" : 7739 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crafting_table_weathered_cut_copper_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "count" : 4, - "blockRuntimeId" : 7741 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:crimson_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -260, - "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3771 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 614, - "id" : "minecraft:crimson_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -256, - "id" : "minecraft:crimson_fence", - "count" : 3, - "blockRuntimeId" : 3817 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -258, - "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3818 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -299, - "id" : "minecraft:crimson_hyphae", - "count" : 3, - "blockRuntimeId" : 3835 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4, - "blockRuntimeId" : 3839 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks_from_crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -299, - "id" : "minecraft:crimson_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4, - "blockRuntimeId" : 3839 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks_from_stripped_crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -300, - "id" : "minecraft:stripped_crimson_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4, - "blockRuntimeId" : 3839 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_planks_from_stripped_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "count" : 4, - "blockRuntimeId" : 3839 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -262, - "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3840 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_sign", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 612, - "id" : "minecraft:crimson_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "count" : 6, - "blockRuntimeId" : 3857 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -254, - "id" : "minecraft:crimson_stairs", - "count" : 4, - "blockRuntimeId" : 3859 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crimson_trapdoor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -246, - "id" : "minecraft:crimson_trapdoor", - "count" : 2, - "blockRuntimeId" : 3886 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:crossbow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "C" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "D" : { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 575, - "id" : "minecraft:crossbow" - } - ], - "shape" : [ - "ABA", - "CDC", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 6 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - ], - "output" : [ - { - "legacyId" : -422, - "id" : "minecraft:cyan_candle", - "blockRuntimeId" : 3920 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 972 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 972 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3668 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - ], - "output" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_dye_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - ], - "output" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:cyan_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7093 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7109 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7109 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:cyan_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 401, - "id" : "minecraft:cyan_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7125 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 380, - "id" : "minecraft:dark_oak_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 557, - "id" : "minecraft:dark_oak_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4778 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 186, - "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3980 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5799 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5799 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5799 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5799 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 164, - "id" : "minecraft:dark_oak_stairs", - "count" : 4, - "blockRuntimeId" : 4012 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7808 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7814 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_oak_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7904 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_prismarine", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 395, - "id" : "minecraft:black_dye" - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6436 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dark_prismarine_from_ink_sac", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6436 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:daylight_detector_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 151, - "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4066 - } - ], - "shape" : [ - "AAA", - "BBB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:daylight_detector_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "C" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 151, - "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4066 - } - ], - "shape" : [ - "AAA", - "BBB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:deepslate_brick_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -392, - "id" : "minecraft:deepslate_brick_slab", - "count" : 6, - "blockRuntimeId" : 4104 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -393, - "id" : "minecraft:deepslate_brick_stairs", - "count" : 4, - "blockRuntimeId" : 4106 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -394, - "id" : "minecraft:deepslate_brick_wall", - "count" : 6, - "blockRuntimeId" : 4114 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "count" : 4, - "blockRuntimeId" : 4276 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tile_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -388, - "id" : "minecraft:deepslate_tile_slab", - "count" : 6, - "blockRuntimeId" : 4287 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tile_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -389, - "id" : "minecraft:deepslate_tile_stairs", - "count" : 4, - "blockRuntimeId" : 4289 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tile_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -390, - "id" : "minecraft:deepslate_tile_wall", - "count" : 6, - "blockRuntimeId" : 4297 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:deepslate_tiles", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "count" : 4, - "blockRuntimeId" : 4459 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:detector_rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 70, - "id" : "minecraft:stone_pressure_plate", - "damage" : 32767 - }, - "C" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 28, - "id" : "minecraft:detector_rail", - "count" : 6, - "blockRuntimeId" : 4461 - } - ], - "shape" : [ - "A A", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 57, - "id" : "minecraft:diamond_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 304, - "id" : "minecraft:diamond", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 319, - "id" : "minecraft:diamond_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 57, - "id" : "minecraft:diamond_block", - "blockRuntimeId" : 4473 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 350, - "id" : "minecraft:diamond_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 348, - "id" : "minecraft:diamond_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 347, - "id" : "minecraft:diamond_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 332, - "id" : "minecraft:diamond_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 349, - "id" : "minecraft:diamond_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 318, - "id" : "minecraft:diamond_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 317, - "id" : "minecraft:diamond_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diamond_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 316, - "id" : "minecraft:diamond_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diorite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 2, - "blockRuntimeId" : 7179 - } - ], - "shape" : [ - "AB", - "BA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diorite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -170, - "id" : "minecraft:diorite_stairs", - "count" : 4, - "blockRuntimeId" : 4475 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:diorite_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1321 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dispenser", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 300, - "id" : "minecraft:bow", - "damage" : 32767 - }, - "C" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 23, - "id" : "minecraft:dispenser", - "blockRuntimeId" : 4489 - } - ], - "shape" : [ - "AAA", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dried_kelp", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -139, - "id" : "minecraft:dried_kelp_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dried_kelp_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -139, - "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 4583 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dripstone_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -308, - "id" : "minecraft:pointed_dripstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -317, - "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4584 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dripstone_block_from_pointed_dripstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -308, - "id" : "minecraft:pointed_dripstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -317, - "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4584 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:dropper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 125, - "id" : "minecraft:dropper", - "blockRuntimeId" : 4588 - } - ], - "shape" : [ - "AAA", - "A A", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:emerald", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 133, - "id" : "minecraft:emerald_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 512, - "id" : "minecraft:emerald", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:emerald_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 133, - "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4716 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:empty_map_to_enhanced", - "type" : 0, - "input" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map" - }, - { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:enchanting_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "C" : { - "legacyId" : 49, - "id" : "minecraft:obsidian", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 116, - "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4718 - } - ], - "shape" : [ - " A ", - "BCB", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -178, - "id" : "minecraft:end_brick_stairs", - "count" : 4, - "blockRuntimeId" : 4719 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1328 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 121, - "id" : "minecraft:end_stone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 206, - "id" : "minecraft:end_bricks", - "count" : 4, - "blockRuntimeId" : 4727 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_crystal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 433, - "id" : "minecraft:ender_eye", - "damage" : 32767 - }, - "C" : { - "legacyId" : 424, - "id" : "minecraft:ghast_tear", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 629, - "id" : "minecraft:end_crystal" - } - ], - "shape" : [ - "AAA", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:end_rod", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 423, - "id" : "minecraft:blaze_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : 559, - "id" : "minecraft:popped_chorus_fruit", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 208, - "id" : "minecraft:end_rod", - "count" : 4, - "blockRuntimeId" : 4738 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ender_chest", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 49, - "id" : "minecraft:obsidian", - "damage" : 32767 - }, - "B" : { - "legacyId" : 433, - "id" : "minecraft:ender_eye", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 130, - "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4745 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ender_eye", - "type" : 0, - "input" : [ - { - "legacyId" : 422, - "id" : "minecraft:ender_pearl", - "damage" : 32767 - }, - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 433, - "id" : "minecraft:ender_eye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4773 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 107, - "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4779 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fermented_spider_eye", - "type" : 0, - "input" : [ - { - "legacyId" : 278, - "id" : "minecraft:spider_eye", - "damage" : 32767 - }, - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 416, - "id" : "minecraft:sugar", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 428, - "id" : "minecraft:fermented_spider_eye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fishing_rod", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 392, - "id" : "minecraft:fishing_rod" - } - ], - "shape" : [ - " A", - " AB", - "A B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fletching_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -201, - "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4811 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:fletching_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -201, - "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4811 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:fletching_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -201, - "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4811 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:flint_and_steel", - "type" : 0, - "input" : [ - { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - { - "legacyId" : 356, - "id" : "minecraft:flint", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 299, - "id" : "minecraft:flint_and_steel" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:flower_pot", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 383, - "id" : "minecraft:brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 514, - "id" : "minecraft:flower_pot" - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:furnace", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 61, - "id" : "minecraft:furnace", - "blockRuntimeId" : 4875 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:furnace_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 61, - "id" : "minecraft:furnace", - "blockRuntimeId" : 4875 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:furnace_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 61, - "id" : "minecraft:furnace", - "blockRuntimeId" : 4875 - } - ], - "shape" : [ - "AAA", - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:glass_bottle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "count" : 3 - } - ], - "shape" : [ - "A A", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "count" : 16, - "blockRuntimeId" : 4883 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:glow_frame", - "type" : 0, - "input" : [ - { - "legacyId" : 513, - "id" : "minecraft:frame", - "damage" : 32767 - }, - { - "legacyId" : 503, - "id" : "minecraft:glow_ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 621, - "id" : "minecraft:glow_frame" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:glowstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 394, - "id" : "minecraft:glowstone_dust", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 89, - "id" : "minecraft:glowstone", - "blockRuntimeId" : 4973 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 41, - "id" : "minecraft:gold_block", - "blockRuntimeId" : 4974 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_ingot_from_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 41, - "id" : "minecraft:gold_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_ingot_from_nuggets", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gold_nugget", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_apple", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 257, - "id" : "minecraft:apple", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 258, - "id" : "minecraft:golden_apple" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 325, - "id" : "minecraft:golden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 354, - "id" : "minecraft:golden_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_carrot", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 283, - "id" : "minecraft:golden_carrot" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 352, - "id" : "minecraft:golden_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 351, - "id" : "minecraft:golden_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 333, - "id" : "minecraft:golden_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 353, - "id" : "minecraft:golden_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 324, - "id" : "minecraft:golden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 27, - "id" : "minecraft:golden_rail", - "count" : 6, - "blockRuntimeId" : 4976 - } - ], - "shape" : [ - "A A", - "ABA", - "ACA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 323, - "id" : "minecraft:golden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:golden_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 322, - "id" : "minecraft:golden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:granite", - "type" : 0, - "input" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - }, - { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 7177 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:granite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -169, - "id" : "minecraft:granite_stairs", - "count" : 4, - "blockRuntimeId" : 4988 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:granite_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1320 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 8 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - ], - "output" : [ - { - "legacyId" : -420, - "id" : "minecraft:gray_candle", - "blockRuntimeId" : 4999 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 970 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 970 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3666 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_dye_from_black_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:gray_dye_from_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:gray_dye_from_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:gray_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7091 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7107 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7107 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:gray_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7123 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - ], - "output" : [ - { - "legacyId" : -426, - "id" : "minecraft:green_candle", - "blockRuntimeId" : 5015 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 976 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 976 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3672 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7097 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7113 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7113 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:green_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7129 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:grindstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "damage" : 2 - }, - "C" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5031 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5031 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5031 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5031 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_crimson_planks4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5031 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5031 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5031 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5031 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:grindstone_from_warped_planks4", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -195, - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5031 - } - ], - "shape" : [ - "ABA", - "C C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:hay_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 334, - "id" : "minecraft:wheat", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 170, - "id" : "minecraft:hay_block", - "blockRuntimeId" : 5083 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:heavy_weighted_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 148, - "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5095 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honey_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 591, - "id" : "minecraft:honey_bottle", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -220, - "id" : "minecraft:honey_block", - "blockRuntimeId" : 5111 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "count" : 4 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honey_bottle", - "type" : 0, - "input" : [ - { - "legacyId" : -220, - "id" : "minecraft:honey_block", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 591, - "id" : "minecraft:honey_bottle", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honey_bottle_to_sugar", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 591, - "id" : "minecraft:honey_bottle", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 416, - "id" : "minecraft:sugar", - "count" : 3 - }, - { - "legacyId" : 427, - "id" : "minecraft:glass_bottle" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:honeycomb_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -221, - "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5112 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:hopper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 527, - "id" : "minecraft:hopper" - } - ], - "shape" : [ - "A A", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:hopper_minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 527, - "id" : "minecraft:hopper", - "damage" : 32767 - }, - "B" : { - "legacyId" : 370, - "id" : "minecraft:minecart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 526, - "id" : "minecraft:hopper_minecart" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ingots_from_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:ingots_from_waxed_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:iron_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 298, - "id" : "minecraft:iron_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_bars", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 101, - "id" : "minecraft:iron_bars", - "count" : 16, - "blockRuntimeId" : 5132 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 42, - "id" : "minecraft:iron_block", - "blockRuntimeId" : 5133 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 346, - "id" : "minecraft:iron_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 344, - "id" : "minecraft:iron_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 372, - "id" : "minecraft:iron_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 343, - "id" : "minecraft:iron_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 331, - "id" : "minecraft:iron_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_ingot_from_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 42, - "id" : "minecraft:iron_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_ingot_from_nuggets", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 305, - "id" : "minecraft:iron_ingot" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 345, - "id" : "minecraft:iron_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_nugget", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 297, - "id" : "minecraft:iron_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 296, - "id" : "minecraft:iron_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 307, - "id" : "minecraft:iron_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:iron_trapdoor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 167, - "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5167 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:item_frame", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 513, - "id" : "minecraft:frame" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jukebox_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 84, - "id" : "minecraft:jukebox", - "blockRuntimeId" : 5207 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:jukebox_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 84, - "id" : "minecraft:jukebox", - "blockRuntimeId" : 5207 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:jungle_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 377, - "id" : "minecraft:jungle_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 555, - "id" : "minecraft:jungle_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4776 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 185, - "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5252 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5797 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5797 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5797 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5797 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 136, - "id" : "minecraft:jungle_stairs", - "count" : 4, - "blockRuntimeId" : 5284 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7806 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7812 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:jungle_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7902 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:ladder", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 65, - "id" : "minecraft:ladder", - "count" : 3, - "blockRuntimeId" : 5356 - } - ], - "shape" : [ - "A A", - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lantern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 50, - "id" : "minecraft:torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -208, - "id" : "minecraft:lantern", - "blockRuntimeId" : 5362 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lapis_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - } - }, - "output" : [ - { - "legacyId" : 22, - "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5364 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lapis_lazuli", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 22, - "id" : "minecraft:lapis_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lead", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 547, - "id" : "minecraft:lead", - "count" : 2 - } - ], - "shape" : [ - "AA ", - "AB ", - " A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 529, - "id" : "minecraft:rabbit_hide", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 381, - "id" : "minecraft:leather" - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_boots", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 338, - "id" : "minecraft:leather_boots" - } - ], - "shape" : [ - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_chestplate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 336, - "id" : "minecraft:leather_chestplate" - } - ], - "shape" : [ - "A A", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 335, - "id" : "minecraft:leather_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_horse_armor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 530, - "id" : "minecraft:leather_horse_armor" - } - ], - "shape" : [ - "A A", - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:leather_leggings", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 381, - "id" : "minecraft:leather", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 337, - "id" : "minecraft:leather_leggings" - } - ], - "shape" : [ - "AAA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lectern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "damage" : 32767 - }, - "B" : { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -194, - "id" : "minecraft:lectern", - "blockRuntimeId" : 5433 - } - ], - "shape" : [ - "AAA", - " B ", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lectern_from_crimson_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -264, - "id" : "minecraft:crimson_slab", - "damage" : 32767 - }, - "B" : { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -194, - "id" : "minecraft:lectern", - "blockRuntimeId" : 5433 - } - ], - "shape" : [ - "AAA", - " B ", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:lectern_from_warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "damage" : 32767 - }, - "B" : { - "legacyId" : 47, - "id" : "minecraft:bookshelf", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -194, - "id" : "minecraft:lectern", - "blockRuntimeId" : 5433 - } - ], - "shape" : [ - "AAA", - " B ", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:lever", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 69, - "id" : "minecraft:lever", - "blockRuntimeId" : 5441 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 12 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - ], - "output" : [ - { - "legacyId" : -416, - "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5473 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 966 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 966 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3662 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:light_blue_dye_from_blue_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:light_blue_dye_from_blue_orchid", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_dye_from_lapis_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 4 - }, - { - "id" : "minecraft:light_blue_dye_from_lapis_white", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:light_blue_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7087 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7103 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7103 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_blue_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7119 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray__carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 971 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 7 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "output" : [ - { - "legacyId" : -421, - "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5489 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 971 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3667 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:light_gray_dye_from_azure_bluet", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:light_gray_dye_from_black_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 7 - }, - { - "id" : "minecraft:light_gray_dye_from_gray_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 6 - }, - { - "id" : "minecraft:light_gray_dye_from_gray_white", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 4 - }, - { - "id" : "minecraft:light_gray_dye_from_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 8 - }, - { - "id" : "minecraft:light_gray_dye_from_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 5 - }, - { - "id" : "minecraft:light_gray_dye_from_oxeye_daisy", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:light_gray_dye_from_white_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7092 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7108 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7108 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_gray_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7124 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:light_weighted_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 147, - "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5499 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lightning_rod", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -312, - "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5515 - } - ], - "shape" : [ - "A", - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:lime__carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 968 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 10 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - ], - "output" : [ - { - "legacyId" : -418, - "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5521 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 968 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3664 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_dye_from_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:lime_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7089 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7105 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7105 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lime_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7121 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lit_pumpkin", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -155, - "id" : "minecraft:carved_pumpkin", - "damage" : 32767 - }, - "B" : { - "legacyId" : 50, - "id" : "minecraft:torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 91, - "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5550 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:locator_map", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - "B" : { - "legacyId" : 391, - "id" : "minecraft:compass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map", - "damage" : 2 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:lodestone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 3 - }, - "B" : { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -222, - "id" : "minecraft:lodestone", - "blockRuntimeId" : 5562 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:loom_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -204, - "id" : "minecraft:loom", - "blockRuntimeId" : 5581 - } - ], - "shape" : [ - "AA", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:loom_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -204, - "id" : "minecraft:loom", - "blockRuntimeId" : 5581 - } - ], - "shape" : [ - "AA", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:magenta_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 13 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - ], - "output" : [ - { - "legacyId" : -415, - "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5585 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 965 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 965 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3661 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:magenta_dye_from_allium", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:magenta_dye_from_blue_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 6 - }, - { - "id" : "minecraft:magenta_dye_from_blue_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 4 - }, - { - "id" : "minecraft:magenta_dye_from_lapis_ink_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 8 - }, - { - "id" : "minecraft:magenta_dye_from_lapis_ink_white", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 4 - } - ], - "block" : "crafting_table", - "priority" : 7 - }, - { - "id" : "minecraft:magenta_dye_from_lapis_red_pink", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 3 - } - ], - "block" : "crafting_table", - "priority" : 5 - }, - { - "id" : "minecraft:magenta_dye_from_lilac", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_dye_from_purple_and_pink", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 3 - }, - { - "id" : "minecraft:magenta_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7086 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7102 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7102 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magenta_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 408, - "id" : "minecraft:magenta_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7118 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magma", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 430, - "id" : "minecraft:magma_cream", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 213, - "id" : "minecraft:magma", - "blockRuntimeId" : 5601 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:magma_cream", - "type" : 0, - "input" : [ - { - "legacyId" : 429, - "id" : "minecraft:blaze_powder", - "damage" : 32767 - }, - { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 430, - "id" : "minecraft:magma_cream" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:map", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 515, - "id" : "minecraft:empty_map" - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:melon_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 272, - "id" : "minecraft:melon_slice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 103, - "id" : "minecraft:melon_block", - "blockRuntimeId" : 5608 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:melon_seeds", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 272, - "id" : "minecraft:melon_slice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 293, - "id" : "minecraft:melon_seeds" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 370, - "id" : "minecraft:minecart" - } - ], - "shape" : [ - "A A", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:moss_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -320, - "id" : "minecraft:moss_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -335, - "id" : "minecraft:moss_carpet", - "count" : 3, - "blockRuntimeId" : 5665 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - { - "legacyId" : 106, - "id" : "minecraft:vine", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5666 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone_from_moss", - "type" : 0, - "input" : [ - { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - { - "legacyId" : -320, - "id" : "minecraft:moss_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5666 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -179, - "id" : "minecraft:mossy_cobblestone_stairs", - "count" : 4, - "blockRuntimeId" : 5667 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_cobblestone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1319 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stone_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -175, - "id" : "minecraft:mossy_stone_brick_stairs", - "count" : 4, - "blockRuntimeId" : 5675 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stone_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1326 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stonebrick", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - { - "legacyId" : 106, - "id" : "minecraft:vine", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7286 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mossy_stonebrick_from_moss", - "type" : 0, - "input" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - { - "legacyId" : -320, - "id" : "minecraft:moss_block", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7286 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:mushroom_stew", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 260, - "id" : "minecraft:mushroom_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5685 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 113, - "id" : "minecraft:nether_brick_fence", - "count" : 6, - "blockRuntimeId" : 5686 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 114, - "id" : "minecraft:nether_brick_stairs", - "count" : 4, - "blockRuntimeId" : 5687 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1327 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:nether_wart_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 294, - "id" : "minecraft:nether_wart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 214, - "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5701 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:netherite_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -270, - "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5702 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:netherite_ingot", - "type" : 0, - "input" : [ - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:netherite_ingot_from_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -270, - "id" : "minecraft:netherite_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 601, - "id" : "minecraft:netherite_ingot", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:noteblock_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 25, - "id" : "minecraft:noteblock", - "blockRuntimeId" : 5713 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:noteblock_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 25, - "id" : "minecraft:noteblock", - "blockRuntimeId" : 5713 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:oak_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log" - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5794 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5794 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5794 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood" - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5794 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 53, - "id" : "minecraft:oak_stairs", - "count" : 4, - "blockRuntimeId" : 5714 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log" - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7803 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7809 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:oak_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7899 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:observer", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 251, - "id" : "minecraft:observer", - "blockRuntimeId" : 5722 - } - ], - "shape" : [ - "AAA", - "BBC", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 14 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - ], - "output" : [ - { - "legacyId" : -414, - "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5735 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 964 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 964 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3660 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_dye_from_orange_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_dye_from_red_yellow", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - ], - "output" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7085 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7101 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7101 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:orange_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 409, - "id" : "minecraft:orange_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7117 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:packed_ice", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 79, - "id" : "minecraft:ice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 174, - "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5765 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:paper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 385, - "id" : "minecraft:sugar_cane", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "count" : 3 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pillar_quartz_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "count" : 2, - "blockRuntimeId" : 6544 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 9 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "output" : [ - { - "legacyId" : -419, - "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5766 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 969 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 969 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3665 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye_from_peony", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye_from_pink_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_dye_from_red_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7090 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7106 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7106 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pink_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 404, - "id" : "minecraft:pink_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7122 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:piston_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "D" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 33, - "id" : "minecraft:piston", - "blockRuntimeId" : 5783 - } - ], - "shape" : [ - "AAA", - "BCB", - "BDB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:piston_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "D" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 33, - "id" : "minecraft:piston", - "blockRuntimeId" : 5783 - } - ], - "shape" : [ - "AAA", - "BCB", - "BDB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:polished_andesite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 4, - "blockRuntimeId" : 7182 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_andesite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : -174, - "id" : "minecraft:polished_andesite_stairs", - "count" : 4, - "blockRuntimeId" : 5811 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_basalt", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -234, - "id" : "minecraft:basalt", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -235, - "id" : "minecraft:polished_basalt", - "count" : 4, - "blockRuntimeId" : 5819 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "count" : 4, - "blockRuntimeId" : 5822 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_brick_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -284, - "id" : "minecraft:polished_blackstone_brick_slab", - "count" : 6, - "blockRuntimeId" : 5825 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -275, - "id" : "minecraft:polished_blackstone_brick_stairs", - "count" : 4, - "blockRuntimeId" : 5827 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -278, - "id" : "minecraft:polished_blackstone_brick_wall", - "count" : 6, - "blockRuntimeId" : 5835 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "count" : 4, - "blockRuntimeId" : 5997 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -296, - "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 5998 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -295, - "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 6012 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -293, - "id" : "minecraft:polished_blackstone_slab", - "count" : 6, - "blockRuntimeId" : 6028 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -292, - "id" : "minecraft:polished_blackstone_stairs", - "count" : 4, - "blockRuntimeId" : 6030 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_blackstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -291, - "id" : "minecraft:polished_blackstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -297, - "id" : "minecraft:polished_blackstone_wall", - "count" : 6, - "blockRuntimeId" : 6038 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "count" : 4, - "blockRuntimeId" : 6200 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_deepslate_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -384, - "id" : "minecraft:polished_deepslate_slab", - "count" : 6, - "blockRuntimeId" : 6203 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_deepslate_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -385, - "id" : "minecraft:polished_deepslate_stairs", - "count" : 4, - "blockRuntimeId" : 6205 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_deepslate_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -383, - "id" : "minecraft:polished_deepslate", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -386, - "id" : "minecraft:polished_deepslate_wall", - "count" : 6, - "blockRuntimeId" : 6213 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:polished_diorite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 4, - "blockRuntimeId" : 7180 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_diorite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -173, - "id" : "minecraft:polished_diorite_stairs", - "count" : 4, - "blockRuntimeId" : 6375 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_granite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 1, - "id" : "minecraft:stone", - "count" : 4, - "blockRuntimeId" : 7178 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:polished_granite_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -172, - "id" : "minecraft:polished_granite_stairs", - "count" : 4, - "blockRuntimeId" : 6383 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6435 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6437 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - }, - "output" : [ - { - "legacyId" : -2, - "id" : "minecraft:prismarine_stairs", - "count" : 4, - "blockRuntimeId" : 6446 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_stairs_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -4, - "id" : "minecraft:prismarine_bricks_stairs", - "count" : 4, - "blockRuntimeId" : 6438 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_stairs_dark", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -3, - "id" : "minecraft:dark_prismarine_stairs", - "count" : 4, - "blockRuntimeId" : 4036 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:prismarine_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1329 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pumpkin_pie", - "type" : 0, - "input" : [ - { - "legacyId" : 86, - "id" : "minecraft:pumpkin", - "damage" : 32767 - }, - { - "legacyId" : 416, - "id" : "minecraft:sugar", - "damage" : 32767 - }, - { - "legacyId" : 390, - "id" : "minecraft:egg", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 284, - "id" : "minecraft:pumpkin_pie" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:pumpkin_seeds", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 86, - "id" : "minecraft:pumpkin", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 292, - "id" : "minecraft:pumpkin_seeds", - "count" : 4 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 5 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - ], - "output" : [ - { - "legacyId" : -423, - "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6506 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 973 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 973 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3669 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_dye", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "output" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_dye_from_lapis_lazuli", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "output" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:purple_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7094 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7110 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7110 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purple_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 400, - "id" : "minecraft:purple_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7126 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purpur_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 559, - "id" : "minecraft:popped_chorus_fruit", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "count" : 4, - "blockRuntimeId" : 6522 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:purpur_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 201, - "id" : "minecraft:purpur_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 203, - "id" : "minecraft:purpur_stairs", - "count" : 4, - "blockRuntimeId" : 6534 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:quartz_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6542 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:quartz_bricks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : -304, - "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6554 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:quartz_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : 156, - "id" : "minecraft:quartz_stairs", - "count" : 4, - "blockRuntimeId" : 6556 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:rabbit_stew_from_brown_mushroom", - "type" : 0, - "input" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - }, - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 290, - "id" : "minecraft:rabbit_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:rabbit_stew_from_red_mushroom", - "type" : 0, - "input" : [ - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - { - "legacyId" : 279, - "id" : "minecraft:carrot", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 290, - "id" : "minecraft:rabbit_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:rail", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 66, - "id" : "minecraft:rail", - "count" : 16, - "blockRuntimeId" : 6564 - } - ], - "shape" : [ - "A A", - "ABA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_copper", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -452, - "id" : "minecraft:raw_copper_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_copper_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -452, - "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6574 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_gold", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -453, - "id" : "minecraft:raw_gold_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_gold_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -453, - "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6575 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_iron", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -451, - "id" : "minecraft:raw_iron_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:raw_iron_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -451, - "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6576 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 1 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "output" : [ - { - "legacyId" : -427, - "id" : "minecraft:red_candle", - "blockRuntimeId" : 6577 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 977 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 977 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3673 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_beetroot", - "type" : 0, - "input" : [ - { - "legacyId" : 285, - "id" : "minecraft:beetroot", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_poppy", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower" - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_rose_bush", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_dye_from_tulip", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_nether_brick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 294, - "id" : "minecraft:nether_wart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6621 - } - ], - "shape" : [ - "AB", - "BA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_nether_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -184, - "id" : "minecraft:red_nether_brick_stairs", - "count" : 4, - "blockRuntimeId" : 6622 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_nether_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1331 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 12, - "id" : "minecraft:sand", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6630 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 180, - "id" : "minecraft:red_sandstone_stairs", - "count" : 4, - "blockRuntimeId" : 6634 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_sandstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1330 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7098 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 14 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7114 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7114 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:red_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 396, - "id" : "minecraft:red_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7130 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 152, - "id" : "minecraft:redstone_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 373, - "id" : "minecraft:redstone", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone_block", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 152, - "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6642 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone_lamp", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 89, - "id" : "minecraft:glowstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 123, - "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6643 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:redstone_torch", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6645 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:repeater", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 76, - "id" : "minecraft:redstone_torch", - "damage" : 32767 - }, - "B" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "C" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 419, - "id" : "minecraft:repeater" - } - ], - "shape" : [ - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:respawn_anchor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -289, - "id" : "minecraft:crying_obsidian", - "damage" : 32767 - }, - "B" : { - "legacyId" : 89, - "id" : "minecraft:glowstone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -272, - "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6696 - } - ], - "shape" : [ - "AAA", - "BBB", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 12, - "id" : "minecraft:sand" - } - }, - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6703 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 128, - "id" : "minecraft:sandstone_stairs", - "count" : 4, - "blockRuntimeId" : 6707 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sandstone_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1323 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:scaffolding", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -163, - "id" : "minecraft:bamboo", - "damage" : 32767 - }, - "B" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -165, - "id" : "minecraft:scaffolding", - "count" : 6, - "blockRuntimeId" : 6727 - } - ], - "shape" : [ - "ABA", - "A A", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sealantern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 565, - "id" : "minecraft:prismarine_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 549, - "id" : "minecraft:prismarine_crystals", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 169, - "id" : "minecraft:sealantern", - "blockRuntimeId" : 6824 - } - ], - "shape" : [ - "ABA", - "BBB", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:shears", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 421, - "id" : "minecraft:shears" - } - ], - "shape" : [ - " A", - "A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:shield", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 355, - "id" : "minecraft:shield" - } - ], - "shape" : [ - "ABA", - "AAA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:shield_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 355, - "id" : "minecraft:shield" - } - ], - "shape" : [ - "ABA", - "AAA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:shield_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 355, - "id" : "minecraft:shield" - } - ], - "shape" : [ - "ABA", - "AAA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:shulker_box", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 566, - "id" : "minecraft:shulker_shell", - "damage" : 32767 - }, - "B" : { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7458 - } - ], - "shape" : [ - "A", - "B", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_acacia", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 4 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 579, - "id" : "minecraft:acacia_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_birch", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 2 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 577, - "id" : "minecraft:birch_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_darkoak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 5 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 580, - "id" : "minecraft:dark_oak_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_jungle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 3 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 578, - "id" : "minecraft:jungle_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_oak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 358, - "id" : "minecraft:oak_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sign_spruce", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 576, - "id" : "minecraft:spruce_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:slime", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 165, - "id" : "minecraft:slime", - "blockRuntimeId" : 6860 - } - ], - "shape" : [ - "AAA", - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:slime_ball", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 165, - "id" : "minecraft:slime", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smithing_table", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -202, - "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6875 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smithing_table_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -202, - "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6875 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smithing_table_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -202, - "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6875 - } - ], - "shape" : [ - "AA", - "BB", - "BB" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker_from_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_acacia", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_birch", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker_from_stripped_dark_oak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_jungle", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_oak", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_spruce", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smoker_from_stripped_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smoker_from_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - }, - "B" : { - "legacyId" : 61, - "id" : "minecraft:furnace", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -198, - "id" : "minecraft:smoker", - "blockRuntimeId" : 6876 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:smooth_quartz_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -185, - "id" : "minecraft:smooth_quartz_stairs", - "count" : 4, - "blockRuntimeId" : 6883 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_red_sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "count" : 4, - "blockRuntimeId" : 6632 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_red_sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -176, - "id" : "minecraft:smooth_red_sandstone_stairs", - "count" : 4, - "blockRuntimeId" : 6891 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_sandstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone" - } - }, - "output" : [ - { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "count" : 4, - "blockRuntimeId" : 6705 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:smooth_sandstone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -177, - "id" : "minecraft:smooth_sandstone_stairs", - "count" : 4, - "blockRuntimeId" : 6899 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:snow", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 374, - "id" : "minecraft:snowball", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 80, - "id" : "minecraft:snow", - "blockRuntimeId" : 6908 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:snow_layer", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 80, - "id" : "minecraft:snow", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 78, - "id" : "minecraft:snow_layer", - "count" : 6, - "blockRuntimeId" : 6909 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:soul_campfire_from_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_crimson_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -225, - "id" : "minecraft:crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_sand_and_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_log2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_acacia_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_birch_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_dark_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_jungle_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_oak_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_spruce_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_soul_soil_and_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_crimson_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_crimson_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_stripped_warped_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_warped_stem", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - }, - "C" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_campfire_from_warped_stem2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - }, - "C" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 620, - "id" : "minecraft:soul_campfire" - } - ], - "shape" : [ - " A ", - "ABA", - "CCC" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:soul_lantern", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : -268, - "id" : "minecraft:soul_torch", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -269, - "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6949 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:soul_torch_from_soul_sand", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : 88, - "id" : "minecraft:soul_sand", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -268, - "id" : "minecraft:soul_torch", - "count" : 4, - "blockRuntimeId" : 6953 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:soul_torch_from_soul_soil", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : -236, - "id" : "minecraft:soul_soil", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -268, - "id" : "minecraft:soul_torch", - "count" : 4, - "blockRuntimeId" : 6953 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:speckled_melon", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "B" : { - "legacyId" : 272, - "id" : "minecraft:melon_slice", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 434, - "id" : "minecraft:glistering_melon_slice" - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_boat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - }, - "B" : { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 378, - "id" : "minecraft:spruce_boat" - } - ], - "shape" : [ - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 553, - "id" : "minecraft:spruce_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 85, - "id" : "minecraft:fence", - "count" : 3, - "blockRuntimeId" : 4774 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 183, - "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 7006 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5795 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks_from_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5795 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks_from_stripped_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5795 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_planks_from_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 5, - "id" : "minecraft:planks", - "count" : 4, - "blockRuntimeId" : 5795 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 134, - "id" : "minecraft:spruce_stairs", - "count" : 4, - "blockRuntimeId" : 7038 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_wood", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7804 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_wood_stripped", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -212, - "id" : "minecraft:wood", - "count" : 3, - "blockRuntimeId" : 7810 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spruce_wooden_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 158, - "id" : "minecraft:wooden_slab", - "count" : 6, - "blockRuntimeId" : 7900 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:spyglass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 623, - "id" : "minecraft:amethyst_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 624, - "id" : "minecraft:spyglass" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:stick_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick", - "count" : 4 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stick_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick", - "count" : 4 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:sticky_piston", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 388, - "id" : "minecraft:slime_ball", - "damage" : 32767 - }, - "B" : { - "legacyId" : 33, - "id" : "minecraft:piston", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 29, - "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7165 - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_axe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 315, - "id" : "minecraft:stone_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_axe_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 315, - "id" : "minecraft:stone_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_axe_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 315, - "id" : "minecraft:stone_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_brick_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - }, - "output" : [ - { - "legacyId" : 109, - "id" : "minecraft:stone_brick_stairs", - "count" : 4, - "blockRuntimeId" : 7183 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_brick_wall", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - } - }, - "output" : [ - { - "legacyId" : 139, - "id" : "minecraft:cobblestone_wall", - "count" : 6, - "blockRuntimeId" : 1325 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 77, - "id" : "minecraft:stone_button", - "blockRuntimeId" : 7191 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_hoe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 330, - "id" : "minecraft:stone_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_hoe_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 330, - "id" : "minecraft:stone_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_hoe_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 330, - "id" : "minecraft:stone_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_pickaxe", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 314, - "id" : "minecraft:stone_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_pickaxe_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 314, - "id" : "minecraft:stone_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_pickaxe_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 314, - "id" : "minecraft:stone_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 70, - "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7203 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_shovel", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 313, - "id" : "minecraft:stone_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_shovel_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 313, - "id" : "minecraft:stone_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_shovel_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 313, - "id" : "minecraft:stone_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : -180, - "id" : "minecraft:normal_stone_stairs", - "count" : 4, - "blockRuntimeId" : 5705 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_sword", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 312, - "id" : "minecraft:stone_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stone_sword_from_blackstone", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -273, - "id" : "minecraft:blackstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 312, - "id" : "minecraft:stone_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stone_sword_from_cobbled_deepslate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 312, - "id" : "minecraft:stone_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:stonebrick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone" - } - }, - "output" : [ - { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "count" : 4, - "blockRuntimeId" : 7285 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stonecutter", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -197, - "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7291 - } - ], - "shape" : [ - " A ", - "BBB" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:string_to_wool", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 326, - "id" : "minecraft:string", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stripped_crimson_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -240, - "id" : "minecraft:stripped_crimson_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -300, - "id" : "minecraft:stripped_crimson_hyphae", - "count" : 3, - "blockRuntimeId" : 7303 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:stripped_warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -301, - "id" : "minecraft:stripped_warped_hyphae", - "count" : 3, - "blockRuntimeId" : 7321 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:sugar", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 385, - "id" : "minecraft:sugar_cane", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 416, - "id" : "minecraft:sugar" - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_allium", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 7 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_azure_bluet", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 3 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_blue_orchid", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 6 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_cornflower", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 1 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_dandelion", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 37, - "id" : "minecraft:yellow_flower", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 5 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_lily_of_the_valley", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 4 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_oxeye_daisy", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 8 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_poppy", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower" - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_orange", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_pink", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_red", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_tulip_white", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:suspicious_stew_from_wither_rose", - "type" : 0, - "input" : [ - { - "legacyId" : 39, - "id" : "minecraft:brown_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 40, - "id" : "minecraft:red_mushroom", - "damage" : 32767 - }, - { - "legacyId" : 321, - "id" : "minecraft:bowl", - "damage" : 32767 - }, - { - "legacyId" : -216, - "id" : "minecraft:wither_rose", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 589, - "id" : "minecraft:suspicious_stew", - "damage" : 9 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:target", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "B" : { - "legacyId" : 170, - "id" : "minecraft:hay_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -239, - "id" : "minecraft:target", - "blockRuntimeId" : 7347 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:tinted_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 623, - "id" : "minecraft:amethyst_shard", - "damage" : 32767 - }, - "B" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -334, - "id" : "minecraft:tinted_glass", - "count" : 2, - "blockRuntimeId" : 7348 - } - ], - "shape" : [ - " A ", - "ABA", - " A " - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:tnt", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - "B" : { - "legacyId" : 12, - "id" : "minecraft:sand", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 46, - "id" : "minecraft:tnt", - "blockRuntimeId" : 7349 - } - ], - "shape" : [ - "ABA", - "BAB", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:tnt_minecart", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 46, - "id" : "minecraft:tnt" - }, - "B" : { - "legacyId" : 370, - "id" : "minecraft:minecart", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 525, - "id" : "minecraft:tnt_minecart" - } - ], - "shape" : [ - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:trapped_chest", - "type" : 0, - "input" : [ - { - "legacyId" : 54, - "id" : "minecraft:chest", - "damage" : 32767 - }, - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 146, - "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7375 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:tripwire_hook_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7397 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:tripwire_hook_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "C" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 131, - "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7397 - } - ], - "shape" : [ - "A", - "B", - "C" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:turtle_helmet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 572, - "id" : "minecraft:scute", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 573, - "id" : "minecraft:turtle_helmet" - } - ], - "shape" : [ - "AAA", - "A A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_button", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -261, - "id" : "minecraft:warped_button", - "blockRuntimeId" : 7526 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 615, - "id" : "minecraft:warped_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_fence", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -257, - "id" : "minecraft:warped_fence", - "count" : 3, - "blockRuntimeId" : 7572 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_fence_gate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - }, - "B" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -259, - "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7573 - } - ], - "shape" : [ - "ABA", - "ABA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_fungus_on_a_stick", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 392, - "id" : "minecraft:fishing_rod", - "damage" : 32767 - }, - "B" : { - "legacyId" : -229, - "id" : "minecraft:warped_fungus", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 616, - "id" : "minecraft:warped_fungus_on_a_stick" - } - ], - "shape" : [ - "A ", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -298, - "id" : "minecraft:warped_hyphae", - "count" : 3, - "blockRuntimeId" : 7590 - } - ], - "shape" : [ - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -226, - "id" : "minecraft:warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4, - "blockRuntimeId" : 7594 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks_from_stripped_log", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -241, - "id" : "minecraft:stripped_warped_stem", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4, - "blockRuntimeId" : 7594 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks_from_stripped_warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -301, - "id" : "minecraft:stripped_warped_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4, - "blockRuntimeId" : 7594 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_planks_from_warped_hyphae", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -298, - "id" : "minecraft:warped_hyphae", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "count" : 4, - "blockRuntimeId" : 7594 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_pressure_plate", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -263, - "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7595 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_sign", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 613, - "id" : "minecraft:warped_sign", - "count" : 3 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_slab", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -265, - "id" : "minecraft:warped_slab", - "count" : 6, - "blockRuntimeId" : 7612 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_stairs", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -255, - "id" : "minecraft:warped_stairs", - "count" : 4, - "blockRuntimeId" : 7614 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:warped_trapdoor", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : -247, - "id" : "minecraft:warped_trapdoor", - "count" : 2, - "blockRuntimeId" : 7641 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:waxing_copper_block", - "type" : 0, - "input" : [ - { - "legacyId" : -340, - "id" : "minecraft:copper_block", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -344, - "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7681 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -347, - "id" : "minecraft:cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -351, - "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7682 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -361, - "id" : "minecraft:cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -365, - "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7683 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -354, - "id" : "minecraft:cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -358, - "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7685 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -341, - "id" : "minecraft:exposed_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -345, - "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7695 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -348, - "id" : "minecraft:exposed_cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -352, - "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7696 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -362, - "id" : "minecraft:exposed_cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -366, - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7697 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_exposed_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -355, - "id" : "minecraft:exposed_cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -359, - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7699 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -343, - "id" : "minecraft:oxidized_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -446, - "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7709 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -350, - "id" : "minecraft:oxidized_cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -447, - "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7710 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -364, - "id" : "minecraft:oxidized_cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -449, - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7711 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_oxidized_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -357, - "id" : "minecraft:oxidized_cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -448, - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7713 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -342, - "id" : "minecraft:weathered_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -346, - "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7723 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_cut_copper", - "type" : 0, - "input" : [ - { - "legacyId" : -349, - "id" : "minecraft:weathered_cut_copper", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -353, - "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7724 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_cut_copper_slab", - "type" : 0, - "input" : [ - { - "legacyId" : -363, - "id" : "minecraft:weathered_cut_copper_slab", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -367, - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7725 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:waxing_weathered_cut_copper_stairs", - "type" : 0, - "input" : [ - { - "legacyId" : -356, - "id" : "minecraft:weathered_cut_copper_stairs", - "damage" : 32767 - }, - { - "legacyId" : 590, - "id" : "minecraft:honeycomb", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : -360, - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7727 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:wheat", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 170, - "id" : "minecraft:hay_block", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 334, - "id" : "minecraft:wheat", - "count" : 9 - } - ], - "shape" : [ - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 15 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "output" : [ - { - "legacyId" : -413, - "id" : "minecraft:white_candle", - "blockRuntimeId" : 7786 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_candle_from_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : -413, - "id" : "minecraft:white_candle", - "blockRuntimeId" : 7786 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 963 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3659 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_concrete_powder_from_bonemeal", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3659 - } - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:white_dye_from_bone_meal", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - ], - "output" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_dye_from_lily_of_the_valley", - "type" : 0, - "input" : [ - { - "legacyId" : 38, - "id" : "minecraft:red_flower", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7084 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_glass_from_bonemeal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7084 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:white_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7100 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7100 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 410, - "id" : "minecraft:white_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7116 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:white_stained_hardened_clay_from_bonemeal", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 411, - "id" : "minecraft:bone_meal" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7116 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 1 - }, - { - "id" : "minecraft:wooden_axe_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 311, - "id" : "minecraft:wooden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_axe_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 311, - "id" : "minecraft:wooden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_door", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 359, - "id" : "minecraft:wooden_door", - "count" : 3 - } - ], - "shape" : [ - "AA", - "AA", - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:wooden_hoe_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 329, - "id" : "minecraft:wooden_hoe" - } - ], - "shape" : [ - "AA ", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_hoe_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 329, - "id" : "minecraft:wooden_hoe" - } - ], - "shape" : [ - "AA ", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_pickaxe_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 310, - "id" : "minecraft:wooden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_pickaxe_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 310, - "id" : "minecraft:wooden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_shovel_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_shovel_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_sword_from_crimson_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -242, - "id" : "minecraft:crimson_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 308, - "id" : "minecraft:wooden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:wooden_sword_from_warped_planks", - "type" : 1, - "input" : { - "A" : { - "legacyId" : -243, - "id" : "minecraft:warped_planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 308, - "id" : "minecraft:wooden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 2 - }, - { - "id" : "minecraft:writable_book", - "type" : 0, - "input" : [ - { - "legacyId" : 387, - "id" : "minecraft:book", - "damage" : 32767 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac" - }, - { - "legacyId" : 327, - "id" : "minecraft:feather", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 510, - "id" : "minecraft:writable_book" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_banner", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 567, - "id" : "minecraft:banner", - "damage" : 11 - } - ], - "shape" : [ - "AAA", - "AAA", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_candle", - "type" : 0, - "input" : [ - { - "legacyId" : -412, - "id" : "minecraft:candle", - "damage" : 32767 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - ], - "output" : [ - { - "legacyId" : -417, - "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7927 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_carpet", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 3, - "blockRuntimeId" : 967 - } - ], - "shape" : [ - "AA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_carpet_from_white", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 171, - "id" : "minecraft:carpet" - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 171, - "id" : "minecraft:carpet", - "count" : 8, - "blockRuntimeId" : 967 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_concrete_powder", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 12, - "id" : "minecraft:sand" - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - }, - { - "legacyId" : 13, - "id" : "minecraft:gravel", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 237, - "id" : "minecraft:concrete_powder", - "count" : 8, - "blockRuntimeId" : 3663 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_dye_from_dandelion", - "type" : 0, - "input" : [ - { - "legacyId" : 37, - "id" : "minecraft:yellow_flower" - } - ], - "output" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_dye_from_sunflower", - "type" : 0, - "input" : [ - { - "legacyId" : 175, - "id" : "minecraft:double_plant" - } - ], - "output" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "count" : 2 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_glass", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "damage" : 32767 - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "count" : 8, - "blockRuntimeId" : 7088 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_glass_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 241, - "id" : "minecraft:stained_glass", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 16, - "blockRuntimeId" : 7104 - } - ], - "shape" : [ - "AAA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_glass_pane_from_pane", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 102, - "id" : "minecraft:glass_pane", - "damage" : 32767 - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 160, - "id" : "minecraft:stained_glass_pane", - "count" : 8, - "blockRuntimeId" : 7104 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "minecraft:yellow_stained_hardened_clay", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "damage" : 32767 - }, - "B" : { - "legacyId" : 406, - "id" : "minecraft:yellow_dye" - } - }, - "output" : [ - { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "count" : 8, - "blockRuntimeId" : 7120 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "oak_stairs_oak_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks" - } - }, - "output" : [ - { - "legacyId" : 53, - "id" : "minecraft:oak_stairs", - "count" : 4, - "blockRuntimeId" : 5714 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_0_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star" - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_10_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_11_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_12_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_13_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_14_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_15_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_16_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star" - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_17_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_18_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_19_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_1_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_2_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_3_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_4_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_5_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_6_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_7_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_8_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_charge_9_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_0_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_10_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 10, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_11_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 11, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_12_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 12, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_13_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 13, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_14_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 14, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_15_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_16_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_17_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_18_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_19_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 15, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_1_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 1, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_2_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 2, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_3_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 3, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_4_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 4, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_5_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 5, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_6_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 6, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_7_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 7, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_8_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 8, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_dye_9_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 520, - "id" : "minecraft:firework_star", - "damage" : 9, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "paper_sulphur_recipeId", - "type" : 0, - "input" : [ - { - "legacyId" : 386, - "id" : "minecraft:paper", - "damage" : 32767 - }, - { - "legacyId" : 328, - "id" : "minecraft:gunpowder", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 519, - "id" : "minecraft:firework_rocket", - "count" : 3, - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 4, - "uuid" : "00000000-0000-0000-0000-000000000001" - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_0_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_10_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_11_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_12_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_13_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_14_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_15_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_16_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_17_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_18_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_19_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_1_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_2_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_3_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_4_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_5_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_6_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_7_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_8_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 6 - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 15 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 5 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 4 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 3 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 2 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 1 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 14 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 13 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 12 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 11 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 10 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 9 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 8 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_block_9_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "damage" : 7 - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_0_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_10_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_11_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_12_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6829 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_13_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6828 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_14_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6827 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_15_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_16_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_17_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_18_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_19_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6826 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_1_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_2_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_3_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_4_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_5_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_6_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_7_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_8_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "shulkerBox_shulker_box_color_dye_9_0", - "type" : 5, - "input" : [ - { - "legacyId" : 205, - "id" : "minecraft:undyed_shulker_box" - }, - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - } - ], - "output" : [ - { - "legacyId" : 218, - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - } - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "slab3_endstonebrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 206, - "id" : "minecraft:end_bricks" - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7251 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "spruce_stairs_spruce_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 134, - "id" : "minecraft:spruce_stairs", - "count" : 4, - "blockRuntimeId" : 7038 - } - ], - "shape" : [ - "A ", - "AA ", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stick_wood_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 320, - "id" : "minecraft:stick", - "count" : 4 - } - ], - "shape" : [ - "A", - "A" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "stoneslab2_RedSandstone_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7235 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_prismarine_bricks_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7239 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_prismarine_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7238 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_purpur_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 201, - "id" : "minecraft:purpur_block" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7236 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 48, - "id" : "minecraft:mossy_cobblestone" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7240 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_rednetherbrick_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 215, - "id" : "minecraft:red_nether_brick" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7242 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_redsandstone_heiroglyphs_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7235 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab2_smoothsandstone_smooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7241 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_andesite_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7254 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_diorite_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7255 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_granite", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7257 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_polishedGranite_GraniteSmooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7258 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_polished_andesite_andesitesmooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7253 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_polished_diorite_dioritesmooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "damage" : 4 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7256 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab3_smooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -162, - "id" : "minecraft:double_stone_slab3", - "count" : 6, - "blockRuntimeId" : 7252 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab4_cut_redsandstone_cut_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7271 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab4_cut_sandstone_cut_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 2 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7270 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab4_smoothquartz_smooth_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "damage" : 3 - } - }, - "output" : [ - { - "legacyId" : -166, - "id" : "minecraft:double_stone_slab4", - "count" : 6, - "blockRuntimeId" : 7268 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab_quartz_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7225 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 168, - "id" : "minecraft:prismarine" - } - }, - "output" : [ - { - "legacyId" : 182, - "id" : "minecraft:double_stone_slab2", - "count" : 6, - "blockRuntimeId" : 7237 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "stoneslab_sandstone_heiroglyphs_recipeId", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : 1 - } - }, - "output" : [ - { - "legacyId" : 44, - "id" : "minecraft:double_stone_slab", - "count" : 6, - "blockRuntimeId" : 7220 - } - ], - "shape" : [ - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "tool_material_recipe_0_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 310, - "id" : "minecraft:wooden_pickaxe" - } - ], - "shape" : [ - "AAA", - " B ", - " B " - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "tool_material_recipe_0_1", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 309, - "id" : "minecraft:wooden_shovel" - } - ], - "shape" : [ - "A", - "B", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "tool_material_recipe_0_2", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 311, - "id" : "minecraft:wooden_axe" - } - ], - "shape" : [ - "AA", - "AB", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "tool_material_recipe_0_3", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 329, - "id" : "minecraft:wooden_hoe" - } - ], - "shape" : [ - "AA", - " B", - " B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "type" : 4, - "uuid" : "aecd2294-4b94-434b-8667-4499bb2c9327" - }, - { - "id" : "weapon_arrow_recipe_10", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 10 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 11, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_11", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 11 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 12, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_12", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 12 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 13, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_13", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 13 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 14, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_14", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 14 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 15, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_15", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 15 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 16, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_16", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 16 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 17, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_17", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 17 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 18, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_18", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 18 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 19, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_19", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 19 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 20, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_20", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 20 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 21, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_21", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 21 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 22, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_22", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 22 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 23, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_23", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 23 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 24, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_24", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 24 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 25, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_25", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 25 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 26, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_26", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 26 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 27, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_27", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 27 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 28, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_28", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 28 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 29, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_29", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 29 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 30, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_30", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 30 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 31, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_31", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 31 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 32, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_32", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 32 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 33, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_33", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 33 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 34, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_34", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 34 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 35, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_35", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 35 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 36, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_36", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 36 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 37, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_37", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 37 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 38, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_38", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 38 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 39, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_39", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 39 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 40, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_40", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 40 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 41, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_41", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 41 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 42, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_42", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 42 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 43, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_5", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 5 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 6, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_6", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 6 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 7, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_7", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 7 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 8, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_8", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 8 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 9, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_arrow_recipe_9", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 301, - "id" : "minecraft:arrow" - }, - "B" : { - "legacyId" : 562, - "id" : "minecraft:lingering_potion", - "damage" : 9 - } - }, - "output" : [ - { - "legacyId" : 301, - "id" : "minecraft:arrow", - "damage" : 10, - "count" : 8 - } - ], - "shape" : [ - "AAA", - "ABA", - "AAA" - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "weapon_stick_recipe_0_0", - "type" : 1, - "input" : { - "A" : { - "legacyId" : 5, - "id" : "minecraft:planks", - "damage" : 32767 - }, - "B" : { - "legacyId" : 320, - "id" : "minecraft:stick", - "damage" : 32767 - } - }, - "output" : [ - { - "legacyId" : 308, - "id" : "minecraft:wooden_sword" - } - ], - "shape" : [ - "A", - "A", - "B" - ], - "block" : "crafting_table", - "priority" : 0 - }, - { - "id" : "wool_dye_wool_0_1", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_10", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_11", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_12", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_13", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_14", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_15", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_2", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_3", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_4", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_5", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_6", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_7", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_8", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_0_9", - "type" : 0, - "input" : [ - { - "legacyId" : 413, - "id" : "minecraft:ink_sac", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_0", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_1", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_11", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_12", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_13", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_14", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_15", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_2", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_3", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_4", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_5", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_6", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_7", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_8", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_10_9", - "type" : 0, - "input" : [ - { - "legacyId" : 405, - "id" : "minecraft:lime_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_0", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_1", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_10", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_12", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_13", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_14", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_15", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_2", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_3", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_4", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_5", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_6", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_7", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_8", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_11_9", - "type" : 0, - "input" : [ - { - "legacyId" : 406, - "id" : "minecraft:yellow_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_0", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_1", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_10", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_11", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_13", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_14", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_15", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_2", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_3", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_4", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_5", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_6", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_7", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_8", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_12_9", - "type" : 0, - "input" : [ - { - "legacyId" : 407, - "id" : "minecraft:light_blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7914 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_0", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_1", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_10", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_11", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_12", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_14", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_15", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_2", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_3", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_4", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_5", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_6", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_7", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_8", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_13_9", - "type" : 0, - "input" : [ - { - "legacyId" : 408, - "id" : "minecraft:magenta_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7913 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_0", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_1", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_10", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_11", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_12", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_13", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_15", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_2", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_3", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_4", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_5", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_6", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_7", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_8", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_14_9", - "type" : 0, - "input" : [ - { - "legacyId" : 409, - "id" : "minecraft:orange_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7912 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_0", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_1", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_10", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_11", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_12", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_13", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_14", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_2", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_3", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_4", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_5", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_6", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_7", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_8", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_15_9", - "type" : 0, - "input" : [ - { - "legacyId" : 411, - "id" : "minecraft:bone_meal", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_1", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_10", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_11", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_12", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_13", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_14", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_15", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_2", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_3", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_4", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_5", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_6", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_7", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_8", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_16_9", - "type" : 0, - "input" : [ - { - "legacyId" : 395, - "id" : "minecraft:black_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_0", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_1", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_10", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_11", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_12", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_13", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_14", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_15", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_2", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_4", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_5", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_6", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_7", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_8", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_17_9", - "type" : 0, - "input" : [ - { - "legacyId" : 398, - "id" : "minecraft:brown_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_0", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_1", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_10", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_11", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_12", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_13", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_14", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_15", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_2", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_3", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_5", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_6", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_7", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_8", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_18_9", - "type" : 0, - "input" : [ - { - "legacyId" : 399, - "id" : "minecraft:blue_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_0", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_1", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_10", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_11", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_12", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_13", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_14", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_2", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_3", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_4", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_5", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_6", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_7", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_8", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_19_9", - "type" : 0, - "input" : [ - { - "legacyId" : 410, - "id" : "minecraft:white_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7911 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_0", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_10", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_11", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_12", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_13", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_14", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_15", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_2", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_3", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_4", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_5", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_6", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_7", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_8", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_1_9", - "type" : 0, - "input" : [ - { - "legacyId" : 396, - "id" : "minecraft:red_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_0", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_1", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_10", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_11", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_12", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_13", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_14", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_15", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_3", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_4", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_5", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_6", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_7", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_8", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_2_9", - "type" : 0, - "input" : [ - { - "legacyId" : 397, - "id" : "minecraft:green_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_0", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_1", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_10", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_11", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_12", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_13", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_14", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_15", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_2", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_4", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_5", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_6", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_7", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_8", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_3_9", - "type" : 0, - "input" : [ - { - "legacyId" : 412, - "id" : "minecraft:cocoa_beans", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_0", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_1", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_10", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_11", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_12", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_13", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_14", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_15", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_2", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_3", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_5", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_6", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_7", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_8", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_4_9", - "type" : 0, - "input" : [ - { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_0", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_1", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_10", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_11", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_12", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_13", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_14", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_15", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_2", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_3", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_4", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_6", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_7", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_8", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_5_9", - "type" : 0, - "input" : [ - { - "legacyId" : 400, - "id" : "minecraft:purple_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_0", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_1", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_10", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_11", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_12", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_13", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_14", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_15", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_2", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_3", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_4", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_5", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_7", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_8", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_6_9", - "type" : 0, - "input" : [ - { - "legacyId" : 401, - "id" : "minecraft:cyan_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_0", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_1", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_10", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_11", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_12", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_13", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_14", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_15", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_2", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_3", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_4", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_5", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_6", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_8", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_7_9", - "type" : 0, - "input" : [ - { - "legacyId" : 402, - "id" : "minecraft:light_gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_0", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_1", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_10", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_11", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_12", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_13", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_14", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_15", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_2", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_3", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_4", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_5", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_6", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_7", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_8_9", - "type" : 0, - "input" : [ - { - "legacyId" : 403, - "id" : "minecraft:gray_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 6 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_0", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 15 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_1", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 14 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_10", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 5 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_11", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 4 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_12", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 3 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_13", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 2 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_14", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 1 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_15", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool" - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_2", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 13 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_3", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 12 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_4", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 11 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_5", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 10 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_6", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 9 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_7", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 8 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "id" : "wool_dye_wool_9_8", - "type" : 0, - "input" : [ - { - "legacyId" : 404, - "id" : "minecraft:pink_dye", - "damage" : 32767 - }, - { - "legacyId" : 35, - "id" : "minecraft:wool", - "damage" : 7 - } - ], - "output" : [ - { - "legacyId" : 35, - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - } - ], - "block" : "crafting_table", - "priority" : 50 - }, - { - "type" : 3, - "input" : { - "legacyId" : -408, - "id" : "minecraft:deepslate_copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -408, - "id" : "minecraft:deepslate_copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -407, - "id" : "minecraft:deepslate_emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -407, - "id" : "minecraft:deepslate_emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -406, - "id" : "minecraft:deepslate_coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -406, - "id" : "minecraft:deepslate_coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -405, - "id" : "minecraft:deepslate_diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -405, - "id" : "minecraft:deepslate_diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -403, - "id" : "minecraft:deepslate_redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -403, - "id" : "minecraft:deepslate_redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -402, - "id" : "minecraft:deepslate_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -402, - "id" : "minecraft:deepslate_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -401, - "id" : "minecraft:deepslate_iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -401, - "id" : "minecraft:deepslate_iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -400, - "id" : "minecraft:deepslate_lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -400, - "id" : "minecraft:deepslate_lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -391, - "id" : "minecraft:deepslate_bricks", - "damage" : -1 - }, - "output" : { - "legacyId" : -410, - "id" : "minecraft:cracked_deepslate_bricks", - "blockRuntimeId" : 3766 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -387, - "id" : "minecraft:deepslate_tiles", - "damage" : -1 - }, - "output" : { - "legacyId" : -409, - "id" : "minecraft:cracked_deepslate_tiles", - "blockRuntimeId" : 3767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -379, - "id" : "minecraft:cobbled_deepslate", - "damage" : -1 - }, - "output" : { - "legacyId" : -378, - "id" : "minecraft:deepslate", - "blockRuntimeId" : 4099 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -311, - "id" : "minecraft:copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -311, - "id" : "minecraft:copper_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -288, - "id" : "minecraft:nether_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -288, - "id" : "minecraft:nether_gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -274, - "id" : "minecraft:polished_blackstone_bricks", - "damage" : -1 - }, - "output" : { - "legacyId" : -280, - "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3769 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -271, - "id" : "minecraft:ancient_debris", - "damage" : -1 - }, - "output" : { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -271, - "id" : "minecraft:ancient_debris", - "damage" : -1 - }, - "output" : { - "legacyId" : 611, - "id" : "minecraft:netherite_scrap", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -234, - "id" : "minecraft:basalt", - "damage" : -1 - }, - "output" : { - "legacyId" : -377, - "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6882 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood" - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 2 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 3 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 4 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 5 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 8 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 9 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 10 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 11 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 12 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -212, - "id" : "minecraft:wood", - "damage" : 13 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -156, - "id" : "minecraft:sea_pickle", - "damage" : -1 - }, - "output" : { - "legacyId" : 405, - "id" : "minecraft:lime_dye" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -10, - "id" : "minecraft:stripped_oak_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -9, - "id" : "minecraft:stripped_dark_oak_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -8, - "id" : "minecraft:stripped_acacia_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -7, - "id" : "minecraft:stripped_jungle_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -6, - "id" : "minecraft:stripped_birch_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : -5, - "id" : "minecraft:stripped_spruce_log", - "damage" : -1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 1, - "id" : "minecraft:stone" - }, - "output" : { - "legacyId" : -183, - "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6907 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 4, - "id" : "minecraft:cobblestone", - "damage" : -1 - }, - "output" : { - "legacyId" : 1, - "id" : "minecraft:stone", - "blockRuntimeId" : 7176 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 12, - "id" : "minecraft:sand", - "damage" : -1 - }, - "output" : { - "legacyId" : 20, - "id" : "minecraft:glass", - "blockRuntimeId" : 4882 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 14, - "id" : "minecraft:gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 14, - "id" : "minecraft:gold_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 15, - "id" : "minecraft:iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 15, - "id" : "minecraft:iron_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 16, - "id" : "minecraft:coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 16, - "id" : "minecraft:coal_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 302, - "id" : "minecraft:coal" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log" - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 2 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 17, - "id" : "minecraft:log", - "damage" : 3 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 19, - "id" : "minecraft:sponge", - "damage" : 1 - }, - "output" : { - "legacyId" : 19, - "id" : "minecraft:sponge", - "blockRuntimeId" : 6959 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 21, - "id" : "minecraft:lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 21, - "id" : "minecraft:lapis_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 414, - "id" : "minecraft:lapis_lazuli" - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "damage" : -1 - }, - "output" : { - "legacyId" : 24, - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6706 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 56, - "id" : "minecraft:diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 56, - "id" : "minecraft:diamond_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 304, - "id" : "minecraft:diamond", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 73, - "id" : "minecraft:redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 73, - "id" : "minecraft:redstone_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 373, - "id" : "minecraft:redstone", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 81, - "id" : "minecraft:cactus", - "damage" : -1 - }, - "output" : { - "legacyId" : 397, - "id" : "minecraft:green_dye" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 82, - "id" : "minecraft:clay", - "damage" : -1 - }, - "output" : { - "legacyId" : 172, - "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5082 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 87, - "id" : "minecraft:netherrack", - "damage" : -1 - }, - "output" : { - "legacyId" : 523, - "id" : "minecraft:netherbrick", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick" - }, - "output" : { - "legacyId" : 98, - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7287 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 112, - "id" : "minecraft:nether_brick", - "damage" : -1 - }, - "output" : { - "legacyId" : -303, - "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3768 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 129, - "id" : "minecraft:emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 129, - "id" : "minecraft:emerald_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 512, - "id" : "minecraft:emerald", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 153, - "id" : "minecraft:quartz_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 153, - "id" : "minecraft:quartz_ore", - "damage" : -1 - }, - "output" : { - "legacyId" : 524, - "id" : "minecraft:quartz", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block" - }, - "output" : { - "legacyId" : 155, - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6545 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay" - }, - "output" : { - "legacyId" : 220, - "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7796 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 1 - }, - "output" : { - "legacyId" : 221, - "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5745 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 2 - }, - "output" : { - "legacyId" : 222, - "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5595 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 3 - }, - "output" : { - "legacyId" : 223, - "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5483 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 4 - }, - "output" : { - "legacyId" : 224, - "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7938 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 5 - }, - "output" : { - "legacyId" : 225, - "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5531 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 6 - }, - "output" : { - "legacyId" : 226, - "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5776 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 7 - }, - "output" : { - "legacyId" : 227, - "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 5009 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 8 - }, - "output" : { - "legacyId" : 228, - "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6842 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 9 - }, - "output" : { - "legacyId" : 229, - "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3930 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 10 - }, - "output" : { - "legacyId" : 219, - "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6516 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 11 - }, - "output" : { - "legacyId" : 231, - "id" : "minecraft:blue_glazed_terracotta", - "blockRuntimeId" : 685 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 12 - }, - "output" : { - "legacyId" : 232, - "id" : "minecraft:brown_glazed_terracotta", - "blockRuntimeId" : 894 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 13 - }, - "output" : { - "legacyId" : 233, - "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5025 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 14 - }, - "output" : { - "legacyId" : 234, - "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6598 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 159, - "id" : "minecraft:stained_hardened_clay", - "damage" : 15 - }, - "output" : { - "legacyId" : 235, - "id" : "minecraft:black_glazed_terracotta", - "blockRuntimeId" : 488 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 162, - "id" : "minecraft:log2" - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 162, - "id" : "minecraft:log2", - "damage" : 1 - }, - "output" : { - "legacyId" : 303, - "id" : "minecraft:charcoal" - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "damage" : -1 - }, - "output" : { - "legacyId" : 179, - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6633 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 262, - "id" : "minecraft:porkchop", - "damage" : -1 - }, - "output" : { - "legacyId" : 263, - "id" : "minecraft:cooked_porkchop", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 264, - "id" : "minecraft:cod", - "damage" : -1 - }, - "output" : { - "legacyId" : 268, - "id" : "minecraft:cooked_cod", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 265, - "id" : "minecraft:salmon", - "damage" : -1 - }, - "output" : { - "legacyId" : 269, - "id" : "minecraft:cooked_salmon", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 273, - "id" : "minecraft:beef", - "damage" : -1 - }, - "output" : { - "legacyId" : 274, - "id" : "minecraft:cooked_beef", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 275, - "id" : "minecraft:chicken", - "damage" : -1 - }, - "output" : { - "legacyId" : 276, - "id" : "minecraft:cooked_chicken", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 280, - "id" : "minecraft:potato", - "damage" : -1 - }, - "output" : { - "legacyId" : 281, - "id" : "minecraft:baked_potato", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 288, - "id" : "minecraft:rabbit", - "damage" : -1 - }, - "output" : { - "legacyId" : 289, - "id" : "minecraft:cooked_rabbit", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 296, - "id" : "minecraft:iron_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 296, - "id" : "minecraft:iron_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 297, - "id" : "minecraft:iron_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 297, - "id" : "minecraft:iron_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 298, - "id" : "minecraft:iron_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 298, - "id" : "minecraft:iron_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 307, - "id" : "minecraft:iron_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 307, - "id" : "minecraft:iron_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 322, - "id" : "minecraft:golden_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 322, - "id" : "minecraft:golden_sword", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 323, - "id" : "minecraft:golden_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 323, - "id" : "minecraft:golden_shovel", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 324, - "id" : "minecraft:golden_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 324, - "id" : "minecraft:golden_pickaxe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 325, - "id" : "minecraft:golden_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 325, - "id" : "minecraft:golden_axe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 331, - "id" : "minecraft:iron_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 331, - "id" : "minecraft:iron_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 333, - "id" : "minecraft:golden_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 333, - "id" : "minecraft:golden_hoe", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 339, - "id" : "minecraft:chainmail_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 339, - "id" : "minecraft:chainmail_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 340, - "id" : "minecraft:chainmail_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 340, - "id" : "minecraft:chainmail_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 341, - "id" : "minecraft:chainmail_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 341, - "id" : "minecraft:chainmail_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 342, - "id" : "minecraft:chainmail_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 342, - "id" : "minecraft:chainmail_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 343, - "id" : "minecraft:iron_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 343, - "id" : "minecraft:iron_helmet" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 344, - "id" : "minecraft:iron_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 344, - "id" : "minecraft:iron_chestplate" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 345, - "id" : "minecraft:iron_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 345, - "id" : "minecraft:iron_leggings" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 346, - "id" : "minecraft:iron_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 346, - "id" : "minecraft:iron_boots" - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 351, - "id" : "minecraft:golden_helmet" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 351, - "id" : "minecraft:golden_helmet" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 352, - "id" : "minecraft:golden_chestplate" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 352, - "id" : "minecraft:golden_chestplate" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 353, - "id" : "minecraft:golden_leggings" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 353, - "id" : "minecraft:golden_leggings" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 354, - "id" : "minecraft:golden_boots" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 354, - "id" : "minecraft:golden_boots" - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 382, - "id" : "minecraft:kelp", - "damage" : -1 - }, - "output" : { - "legacyId" : 270, - "id" : "minecraft:dried_kelp", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 384, - "id" : "minecraft:clay_ball", - "damage" : -1 - }, - "output" : { - "legacyId" : 383, - "id" : "minecraft:brick", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 505, - "id" : "minecraft:raw_iron", - "damage" : -1 - }, - "output" : { - "legacyId" : 305, - "id" : "minecraft:iron_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 506, - "id" : "minecraft:raw_gold", - "damage" : -1 - }, - "output" : { - "legacyId" : 306, - "id" : "minecraft:gold_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 507, - "id" : "minecraft:raw_copper", - "damage" : -1 - }, - "output" : { - "legacyId" : 504, - "id" : "minecraft:copper_ingot", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 531, - "id" : "minecraft:iron_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 531, - "id" : "minecraft:iron_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 569, - "id" : "minecraft:iron_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 532, - "id" : "minecraft:golden_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 532, - "id" : "minecraft:golden_horse_armor", - "damage" : -1 - }, - "output" : { - "legacyId" : 425, - "id" : "minecraft:gold_nugget", - "damage" : 32767 - }, - "block" : "blast_furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "smoker" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "furnace" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "soul_campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 550, - "id" : "minecraft:mutton", - "damage" : -1 - }, - "output" : { - "legacyId" : 551, - "id" : "minecraft:cooked_mutton", - "damage" : 32767 - }, - "block" : "campfire" - }, - { - "type" : 3, - "input" : { - "legacyId" : 558, - "id" : "minecraft:chorus_fruit", - "damage" : -1 - }, - "output" : { - "legacyId" : 559, - "id" : "minecraft:popped_chorus_fruit", - "damage" : 32767 - }, - "block" : "furnace" - } - ], - "potionMixes" : [ - { - "inputId" : "minecraft:potion", - "inputMeta" : 17, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 42 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 42 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 42 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 31 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 31 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 31 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 + "version": 471, + "recipes": [ + { + "type": 4, + "uuid": "442d85ed-8272-4543-a6f1-418f90ded05d" + }, + { + "type": 4, + "uuid": "8b36268c-1829-483c-a0f1-993b7156a8f2" + }, + { + "type": 4, + "uuid": "602234e4-cac1-4353-8bb7-b1ebff70024b" + }, + { + "id": "minecraft:cartography_table_locator_map", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 391, + "id": "minecraft:compass", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 515, + "id": "minecraft:empty_map", + "damage": 2 + } + ], + "block": "cartography_table", + "priority": 0 + }, + { + "id": "minecraft:cartography_table_map", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 515, + "id": "minecraft:empty_map" + } + ], + "block": "cartography_table", + "priority": 0 + }, + { + "type": 4, + "uuid": "98c84b38-1085-46bd-b1ce-dd38c159e6cc" + }, + { + "id": "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -395, + "id": "minecraft:chiseled_deepslate", + "blockRuntimeId": 1129 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -380, + "id": "minecraft:cobbled_deepslate_slab", + "count": 2, + "blockRuntimeId": 1146 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -381, + "id": "minecraft:cobbled_deepslate_stairs", + "blockRuntimeId": 1148 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -382, + "id": "minecraft:cobbled_deepslate_wall", + "blockRuntimeId": 1156 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -392, + "id": "minecraft:deepslate_brick_slab", + "count": 2, + "blockRuntimeId": 4105 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -391, + "id": "minecraft:deepslate_bricks" + } + ], + "output": [ + { + "legacyId": -392, + "id": "minecraft:deepslate_brick_slab", + "count": 2, + "blockRuntimeId": 4105 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate" + } + ], + "output": [ + { + "legacyId": -392, + "id": "minecraft:deepslate_brick_slab", + "count": 2, + "blockRuntimeId": 4105 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -393, + "id": "minecraft:deepslate_brick_stairs", + "blockRuntimeId": 4107 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -391, + "id": "minecraft:deepslate_bricks" + } + ], + "output": [ + { + "legacyId": -393, + "id": "minecraft:deepslate_brick_stairs", + "blockRuntimeId": 4107 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecut", + "type": 0, + "input": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate" + } + ], + "output": [ + { + "legacyId": -393, + "id": "minecraft:deepslate_brick_stairs", + "blockRuntimeId": 4107 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -394, + "id": "minecraft:deepslate_brick_wall", + "blockRuntimeId": 4115 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -391, + "id": "minecraft:deepslate_bricks" + } + ], + "output": [ + { + "legacyId": -394, + "id": "minecraft:deepslate_brick_wall", + "blockRuntimeId": 4115 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate" + } + ], + "output": [ + { + "legacyId": -394, + "id": "minecraft:deepslate_brick_wall", + "blockRuntimeId": 4115 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -391, + "id": "minecraft:deepslate_bricks", + "blockRuntimeId": 4277 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate" + } + ], + "output": [ + { + "legacyId": -391, + "id": "minecraft:deepslate_bricks", + "blockRuntimeId": 4277 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -388, + "id": "minecraft:deepslate_tile_slab", + "count": 2, + "blockRuntimeId": 4288 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -391, + "id": "minecraft:deepslate_bricks" + } + ], + "output": [ + { + "legacyId": -388, + "id": "minecraft:deepslate_tile_slab", + "count": 2, + "blockRuntimeId": 4288 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -387, + "id": "minecraft:deepslate_tiles" + } + ], + "output": [ + { + "legacyId": -388, + "id": "minecraft:deepslate_tile_slab", + "count": 2, + "blockRuntimeId": 4288 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate" + } + ], + "output": [ + { + "legacyId": -388, + "id": "minecraft:deepslate_tile_slab", + "count": 2, + "blockRuntimeId": 4288 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -389, + "id": "minecraft:deepslate_tile_stairs", + "blockRuntimeId": 4290 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -391, + "id": "minecraft:deepslate_bricks" + } + ], + "output": [ + { + "legacyId": -389, + "id": "minecraft:deepslate_tile_stairs", + "blockRuntimeId": 4290 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -387, + "id": "minecraft:deepslate_tiles" + } + ], + "output": [ + { + "legacyId": -389, + "id": "minecraft:deepslate_tile_stairs", + "blockRuntimeId": 4290 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate" + } + ], + "output": [ + { + "legacyId": -389, + "id": "minecraft:deepslate_tile_stairs", + "blockRuntimeId": 4290 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -390, + "id": "minecraft:deepslate_tile_wall", + "blockRuntimeId": 4298 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -391, + "id": "minecraft:deepslate_bricks" + } + ], + "output": [ + { + "legacyId": -390, + "id": "minecraft:deepslate_tile_wall", + "blockRuntimeId": 4298 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -387, + "id": "minecraft:deepslate_tiles" + } + ], + "output": [ + { + "legacyId": -390, + "id": "minecraft:deepslate_tile_wall", + "blockRuntimeId": 4298 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate" + } + ], + "output": [ + { + "legacyId": -390, + "id": "minecraft:deepslate_tile_wall", + "blockRuntimeId": 4298 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -387, + "id": "minecraft:deepslate_tiles", + "blockRuntimeId": 4460 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -391, + "id": "minecraft:deepslate_bricks" + } + ], + "output": [ + { + "legacyId": -387, + "id": "minecraft:deepslate_tiles", + "blockRuntimeId": 4460 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate" + } + ], + "output": [ + { + "legacyId": -387, + "id": "minecraft:deepslate_tiles", + "blockRuntimeId": 4460 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate", + "blockRuntimeId": 6203 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecut", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -384, + "id": "minecraft:polished_deepslate_slab", + "count": 2, + "blockRuntimeId": 6206 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate" + } + ], + "output": [ + { + "legacyId": -384, + "id": "minecraft:polished_deepslate_slab", + "count": 2, + "blockRuntimeId": 6206 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -385, + "id": "minecraft:polished_deepslate_stairs", + "blockRuntimeId": 6208 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate" + } + ], + "output": [ + { + "legacyId": -385, + "id": "minecraft:polished_deepslate_stairs", + "blockRuntimeId": 6208 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecut", + "type": 0, + "input": [ + { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate" + } + ], + "output": [ + { + "legacyId": -386, + "id": "minecraft:polished_deepslate_wall", + "blockRuntimeId": 6216 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecut", + "type": 0, + "input": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate" + } + ], + "output": [ + { + "legacyId": -386, + "id": "minecraft:polished_deepslate_wall", + "blockRuntimeId": 6216 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_andesite_slab", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 5 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 2, + "blockRuntimeId": 7258 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_andesite_stairs", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 5 + } + ], + "output": [ + { + "legacyId": -171, + "id": "minecraft:andesite_stairs", + "blockRuntimeId": 144 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_andesite_wall", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1323 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_blackstone_slab_from_blackstone", + "type": 0, + "input": [ + { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -282, + "id": "minecraft:blackstone_slab", + "count": 2, + "blockRuntimeId": 497 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_blackstone_stairs_from_blackstone", + "type": 0, + "input": [ + { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -276, + "id": "minecraft:blackstone_stairs", + "blockRuntimeId": 499 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_blackstone_wall_from_blackstone", + "type": 0, + "input": [ + { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -277, + "id": "minecraft:blackstone_wall", + "blockRuntimeId": 507 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_brick_slab", + "type": 0, + "input": [ + { + "legacyId": 45, + "id": "minecraft:brick_block" + } + ], + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 2, + "blockRuntimeId": 7227 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_brick_slab_from_polished_blackstone", + "type": 0, + "input": [ + { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -284, + "id": "minecraft:polished_blackstone_brick_slab", + "count": 2, + "blockRuntimeId": 5828 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_brick_stairs", + "type": 0, + "input": [ + { + "legacyId": 45, + "id": "minecraft:brick_block" + } + ], + "output": [ + { + "legacyId": 108, + "id": "minecraft:brick_stairs", + "blockRuntimeId": 876 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_brick_stairs_from_polished_blackstone", + "type": 0, + "input": [ + { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -275, + "id": "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId": 5830 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_brick_wall", + "type": 0, + "input": [ + { + "legacyId": 45, + "id": "minecraft:brick_block" + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1325 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_brick_wall_from_polished_blackstone", + "type": 0, + "input": [ + { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -278, + "id": "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId": 5838 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_bricks_from_polished_blackstone", + "type": 0, + "input": [ + { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks", + "blockRuntimeId": 6000 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_chiseled_from_polished_blackstone", + "type": 0, + "input": [ + { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -279, + "id": "minecraft:chiseled_polished_blackstone", + "blockRuntimeId": 1131 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_chiseled_nether_bricks_from_nether_brick", + "type": 0, + "input": [ + { + "legacyId": 112, + "id": "minecraft:nether_brick", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -302, + "id": "minecraft:chiseled_nether_bricks", + "blockRuntimeId": 1130 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_chiseled_polished_from_blackstone", + "type": 0, + "input": [ + { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -279, + "id": "minecraft:chiseled_polished_blackstone", + "blockRuntimeId": 1131 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_cobbledouble_stone_slab", + "type": 0, + "input": [ + { + "legacyId": 4, + "id": "minecraft:cobblestone" + } + ], + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 2, + "blockRuntimeId": 7226 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_cobblestone_stairs", + "type": 0, + "input": [ + { + "legacyId": 4, + "id": "minecraft:cobblestone" + } + ], + "output": [ + { + "legacyId": 67, + "id": "minecraft:stone_stairs", + "blockRuntimeId": 7281 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_cobblestone_wall", + "type": 0, + "input": [ + { + "legacyId": 4, + "id": "minecraft:cobblestone" + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1319 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_copper_block_to_cut_copper", + "type": 0, + "input": [ + { + "legacyId": -340, + "id": "minecraft:copper_block", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -347, + "id": "minecraft:cut_copper", + "blockRuntimeId": 3910 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_copper_block_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -340, + "id": "minecraft:copper_block", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -361, + "id": "minecraft:cut_copper_slab", + "count": 2, + "blockRuntimeId": 3911 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_copper_block_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -340, + "id": "minecraft:copper_block", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -354, + "id": "minecraft:cut_copper_stairs", + "blockRuntimeId": 3913 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -347, + "id": "minecraft:cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -361, + "id": "minecraft:cut_copper_slab", + "count": 2, + "blockRuntimeId": 3911 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -347, + "id": "minecraft:cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -354, + "id": "minecraft:cut_copper_stairs", + "blockRuntimeId": 3913 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_dark_prismarine_slab", + "type": 0, + "input": [ + { + "legacyId": 168, + "id": "minecraft:prismarine", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 2, + "blockRuntimeId": 7242 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_dark_prismarine_stairs", + "type": 0, + "input": [ + { + "legacyId": 168, + "id": "minecraft:prismarine", + "damage": 1 + } + ], + "output": [ + { + "legacyId": -3, + "id": "minecraft:dark_prismarine_stairs", + "blockRuntimeId": 4037 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_diorite_slab", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 3 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 2, + "blockRuntimeId": 7259 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_diorite_stairs", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 3 + } + ], + "output": [ + { + "legacyId": -170, + "id": "minecraft:diorite_stairs", + "blockRuntimeId": 4476 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_diorite_wall", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1322 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_double_stone_slab", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone" + } + ], + "output": [ + { + "legacyId": -166, + "id": "minecraft:double_stone_slab4", + "count": 2, + "blockRuntimeId": 7273 + } + ], + "block": "stonecutter", + "priority": 5 + }, + { + "id": "minecraft:stonecutter_endbrick_slab", + "type": 0, + "input": [ + { + "legacyId": 121, + "id": "minecraft:end_stone" + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 2, + "blockRuntimeId": 7255 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_endbrick_slab2", + "type": 0, + "input": [ + { + "legacyId": 206, + "id": "minecraft:end_bricks" + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 2, + "blockRuntimeId": 7255 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_endbrick_stairs", + "type": 0, + "input": [ + { + "legacyId": 121, + "id": "minecraft:end_stone" + } + ], + "output": [ + { + "legacyId": -178, + "id": "minecraft:end_brick_stairs", + "blockRuntimeId": 4720 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_endbrick_stairs2", + "type": 0, + "input": [ + { + "legacyId": 206, + "id": "minecraft:end_bricks" + } + ], + "output": [ + { + "legacyId": -178, + "id": "minecraft:end_brick_stairs", + "blockRuntimeId": 4720 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_endbrick_wall", + "type": 0, + "input": [ + { + "legacyId": 121, + "id": "minecraft:end_stone" + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1329 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_endbrick_wall2", + "type": 0, + "input": [ + { + "legacyId": 206, + "id": "minecraft:end_bricks" + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1329 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_endbricks", + "type": 0, + "input": [ + { + "legacyId": 121, + "id": "minecraft:end_stone" + } + ], + "output": [ + { + "legacyId": 206, + "id": "minecraft:end_bricks", + "blockRuntimeId": 4728 + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_exposed_copper_to_cut_copper", + "type": 0, + "input": [ + { + "legacyId": -341, + "id": "minecraft:exposed_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -348, + "id": "minecraft:exposed_cut_copper", + "blockRuntimeId": 4753 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_exposed_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -341, + "id": "minecraft:exposed_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -355, + "id": "minecraft:exposed_cut_copper_stairs", + "blockRuntimeId": 4756 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_exposed_copper_to_exposed_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -341, + "id": "minecraft:exposed_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -362, + "id": "minecraft:exposed_cut_copper_slab", + "count": 2, + "blockRuntimeId": 4754 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -348, + "id": "minecraft:exposed_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -362, + "id": "minecraft:exposed_cut_copper_slab", + "count": 2, + "blockRuntimeId": 4754 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -348, + "id": "minecraft:exposed_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -355, + "id": "minecraft:exposed_cut_copper_stairs", + "blockRuntimeId": 4756 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_granite_slab", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 1 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 2, + "blockRuntimeId": 7261 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_granite_stairs", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 1 + } + ], + "output": [ + { + "legacyId": -169, + "id": "minecraft:granite_stairs", + "blockRuntimeId": 4989 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_granite_wall", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1321 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_mossy_cobbledouble_stone_slab", + "type": 0, + "input": [ + { + "legacyId": 48, + "id": "minecraft:mossy_cobblestone" + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 2, + "blockRuntimeId": 7244 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_mossy_cobblestone_stairs", + "type": 0, + "input": [ + { + "legacyId": 48, + "id": "minecraft:mossy_cobblestone" + } + ], + "output": [ + { + "legacyId": -179, + "id": "minecraft:mossy_cobblestone_stairs", + "blockRuntimeId": 5668 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_mossy_cobblestone_wall", + "type": 0, + "input": [ + { + "legacyId": 48, + "id": "minecraft:mossy_cobblestone" + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1320 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_mossy_stonebrick_slab", + "type": 0, + "input": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick", + "damage": 1 + } + ], + "output": [ + { + "legacyId": -166, + "id": "minecraft:double_stone_slab4", + "count": 2, + "blockRuntimeId": 7271 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_mossy_stonebrick_stairs", + "type": 0, + "input": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick", + "damage": 1 + } + ], + "output": [ + { + "legacyId": -175, + "id": "minecraft:mossy_stone_brick_stairs", + "blockRuntimeId": 5676 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_mossy_stonebrick_wall", + "type": 0, + "input": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1327 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_nether_brick_slab", + "type": 0, + "input": [ + { + "legacyId": 112, + "id": "minecraft:nether_brick" + } + ], + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 2, + "blockRuntimeId": 7230 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_nether_brick_stairs", + "type": 0, + "input": [ + { + "legacyId": 112, + "id": "minecraft:nether_brick" + } + ], + "output": [ + { + "legacyId": 114, + "id": "minecraft:nether_brick_stairs", + "blockRuntimeId": 5690 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_nether_brick_wall", + "type": 0, + "input": [ + { + "legacyId": 112, + "id": "minecraft:nether_brick" + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1328 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_oxidized_copper_to_cut_copper", + "type": 0, + "input": [ + { + "legacyId": -343, + "id": "minecraft:oxidized_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -350, + "id": "minecraft:oxidized_cut_copper", + "blockRuntimeId": 5755 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_oxidized_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -343, + "id": "minecraft:oxidized_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -364, + "id": "minecraft:oxidized_cut_copper_slab", + "count": 2, + "blockRuntimeId": 5756 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_oxidized_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -343, + "id": "minecraft:oxidized_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -357, + "id": "minecraft:oxidized_cut_copper_stairs", + "blockRuntimeId": 5758 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -350, + "id": "minecraft:oxidized_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -364, + "id": "minecraft:oxidized_cut_copper_slab", + "count": 2, + "blockRuntimeId": 5756 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -350, + "id": "minecraft:oxidized_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -357, + "id": "minecraft:oxidized_cut_copper_stairs", + "blockRuntimeId": 5758 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_andesite", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "blockRuntimeId": 7186 + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_polished_andesite_slab", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 5 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 2, + "blockRuntimeId": 7257 + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_polished_andesite_slab2", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 6 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 2, + "blockRuntimeId": 7257 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_andesite_stairs", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 5 + } + ], + "output": [ + { + "legacyId": -174, + "id": "minecraft:polished_andesite_stairs", + "blockRuntimeId": 5814 + } + ], + "block": "stonecutter", + "priority": 5 + }, + { + "id": "minecraft:stonecutter_polished_andesite_stairs2", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 6 + } + ], + "output": [ + { + "legacyId": -174, + "id": "minecraft:polished_andesite_stairs", + "blockRuntimeId": 5814 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_polished_basalt_from_basalt", + "type": 0, + "input": [ + { + "legacyId": -234, + "id": "minecraft:basalt", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -235, + "id": "minecraft:polished_basalt", + "blockRuntimeId": 5822 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_brick_slab_from_blackstone", + "type": 0, + "input": [ + { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -284, + "id": "minecraft:polished_blackstone_brick_slab", + "count": 2, + "blockRuntimeId": 5828 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_brick_stairs_from_blackstone", + "type": 0, + "input": [ + { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -275, + "id": "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId": 5830 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_brick_wall_from_blackstone", + "type": 0, + "input": [ + { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -278, + "id": "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId": 5838 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_bricks_from_blackstone", + "type": 0, + "input": [ + { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks", + "blockRuntimeId": 6000 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_diorite", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "blockRuntimeId": 7184 + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_polished_diorite_slab", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 3 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 2, + "blockRuntimeId": 7260 + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_polished_diorite_slab2", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 4 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 2, + "blockRuntimeId": 7260 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_diorite_stairs", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 3 + } + ], + "output": [ + { + "legacyId": -173, + "id": "minecraft:polished_diorite_stairs", + "blockRuntimeId": 6378 + } + ], + "block": "stonecutter", + "priority": 5 + }, + { + "id": "minecraft:stonecutter_polished_diorite_stairs2", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 4 + } + ], + "output": [ + { + "legacyId": -173, + "id": "minecraft:polished_diorite_stairs", + "blockRuntimeId": 6378 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_polished_from_blackstone", + "type": 0, + "input": [ + { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "blockRuntimeId": 5825 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_granite", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "blockRuntimeId": 7182 + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_polished_granite_slab", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 1 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 2, + "blockRuntimeId": 7262 + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_polished_granite_slab2", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 2 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 2, + "blockRuntimeId": 7262 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_granite_stairs", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 1 + } + ], + "output": [ + { + "legacyId": -172, + "id": "minecraft:polished_granite_stairs", + "blockRuntimeId": 6386 + } + ], + "block": "stonecutter", + "priority": 5 + }, + { + "id": "minecraft:stonecutter_polished_granite_stairs2", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 2 + } + ], + "output": [ + { + "legacyId": -172, + "id": "minecraft:polished_granite_stairs", + "blockRuntimeId": 6386 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_polished_slab_from_blackstone", + "type": 0, + "input": [ + { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -293, + "id": "minecraft:polished_blackstone_slab", + "count": 2, + "blockRuntimeId": 6031 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_stairs_from_blackstone", + "type": 0, + "input": [ + { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -292, + "id": "minecraft:polished_blackstone_stairs", + "blockRuntimeId": 6033 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_wall_from_blackstone", + "type": 0, + "input": [ + { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -297, + "id": "minecraft:polished_blackstone_wall", + "blockRuntimeId": 6041 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_prismarine_brick_slab", + "type": 0, + "input": [ + { + "legacyId": 168, + "id": "minecraft:prismarine", + "damage": 2 + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 2, + "blockRuntimeId": 7243 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_prismarine_brick_stairs", + "type": 0, + "input": [ + { + "legacyId": 168, + "id": "minecraft:prismarine", + "damage": 2 + } + ], + "output": [ + { + "legacyId": -4, + "id": "minecraft:prismarine_bricks_stairs", + "blockRuntimeId": 6441 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_prismarine_slab", + "type": 0, + "input": [ + { + "legacyId": 168, + "id": "minecraft:prismarine" + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 2, + "blockRuntimeId": 7241 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_prismarine_stairs", + "type": 0, + "input": [ + { + "legacyId": 168, + "id": "minecraft:prismarine" + } + ], + "output": [ + { + "legacyId": -2, + "id": "minecraft:prismarine_stairs", + "blockRuntimeId": 6449 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_prismarine_wall", + "type": 0, + "input": [ + { + "legacyId": 168, + "id": "minecraft:prismarine" + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1330 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_purpur_lines", + "type": 0, + "input": [ + { + "legacyId": 201, + "id": "minecraft:purpur_block" + } + ], + "output": [ + { + "legacyId": 201, + "id": "minecraft:purpur_block", + "blockRuntimeId": 6527 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_purpur_slab", + "type": 0, + "input": [ + { + "legacyId": 201, + "id": "minecraft:purpur_block" + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 2, + "blockRuntimeId": 7240 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_purpur_stairs", + "type": 0, + "input": [ + { + "legacyId": 201, + "id": "minecraft:purpur_block" + } + ], + "output": [ + { + "legacyId": 203, + "id": "minecraft:purpur_stairs", + "blockRuntimeId": 6537 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_quartz_bricks_from_quartz_block", + "type": 0, + "input": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block" + } + ], + "output": [ + { + "legacyId": -304, + "id": "minecraft:quartz_bricks", + "blockRuntimeId": 6557 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_quartz_chiseled", + "type": 0, + "input": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block" + } + ], + "output": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block", + "blockRuntimeId": 6546 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_quartz_lines", + "type": 0, + "input": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block" + } + ], + "output": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block", + "blockRuntimeId": 6547 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_quartz_slab", + "type": 0, + "input": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block" + } + ], + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 2, + "blockRuntimeId": 7229 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_quartz_stairs", + "type": 0, + "input": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block" + } + ], + "output": [ + { + "legacyId": 156, + "id": "minecraft:quartz_stairs", + "blockRuntimeId": 6559 + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_red_nether_brick_slab", + "type": 0, + "input": [ + { + "legacyId": 215, + "id": "minecraft:red_nether_brick" + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 2, + "blockRuntimeId": 7246 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_red_nether_brick_stairs", + "type": 0, + "input": [ + { + "legacyId": 215, + "id": "minecraft:red_nether_brick" + } + ], + "output": [ + { + "legacyId": -184, + "id": "minecraft:red_nether_brick_stairs", + "blockRuntimeId": 6625 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_red_nether_brick_wall", + "type": 0, + "input": [ + { + "legacyId": 215, + "id": "minecraft:red_nether_brick" + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1332 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_red_sanddouble_stone_slab", + "type": 0, + "input": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone" + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 2, + "blockRuntimeId": 7239 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_red_sandstone_cut", + "type": 0, + "input": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone" + } + ], + "output": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "blockRuntimeId": 6635 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_red_sandstone_heiroglyphs", + "type": 0, + "input": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone" + } + ], + "output": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "blockRuntimeId": 6634 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_red_sandstone_stairs", + "type": 0, + "input": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone" + } + ], + "output": [ + { + "legacyId": 180, + "id": "minecraft:red_sandstone_stairs", + "blockRuntimeId": 6637 + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_red_sandstone_wall", + "type": 0, + "input": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone" + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1331 + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_sanddouble_stone_slab", + "type": 0, + "input": [ + { + "legacyId": 24, + "id": "minecraft:sandstone" + } + ], + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 2, + "blockRuntimeId": 7224 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_sandstone_cut", + "type": 0, + "input": [ + { + "legacyId": 24, + "id": "minecraft:sandstone" + } + ], + "output": [ + { + "legacyId": 24, + "id": "minecraft:sandstone", + "blockRuntimeId": 6708 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_sandstone_heiroglyphs", + "type": 0, + "input": [ + { + "legacyId": 24, + "id": "minecraft:sandstone" + } + ], + "output": [ + { + "legacyId": 24, + "id": "minecraft:sandstone", + "blockRuntimeId": 6707 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_sandstone_stairs", + "type": 0, + "input": [ + { + "legacyId": 24, + "id": "minecraft:sandstone" + } + ], + "output": [ + { + "legacyId": 128, + "id": "minecraft:sandstone_stairs", + "blockRuntimeId": 6710 + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_sandstone_wall", + "type": 0, + "input": [ + { + "legacyId": 24, + "id": "minecraft:sandstone" + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1324 + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_slab_from_polished_blackstone", + "type": 0, + "input": [ + { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -293, + "id": "minecraft:polished_blackstone_slab", + "count": 2, + "blockRuntimeId": 6031 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_slab_from_polished_blackstone_bricks", + "type": 0, + "input": [ + { + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -284, + "id": "minecraft:polished_blackstone_brick_slab", + "count": 2, + "blockRuntimeId": 5828 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_smooth_double_stone_slab", + "type": 0, + "input": [ + { + "legacyId": -183, + "id": "minecraft:smooth_stone" + } + ], + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 2, + "blockRuntimeId": 7223 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_smooth_quartz_slab", + "type": 0, + "input": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block", + "damage": 3 + } + ], + "output": [ + { + "legacyId": -166, + "id": "minecraft:double_stone_slab4", + "count": 2, + "blockRuntimeId": 7272 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_smooth_quartz_stairs", + "type": 0, + "input": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block", + "damage": 3 + } + ], + "output": [ + { + "legacyId": -185, + "id": "minecraft:smooth_quartz_stairs", + "blockRuntimeId": 6887 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_smooth_red_sanddouble_stone_slab", + "type": 0, + "input": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "damage": 3 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 2, + "blockRuntimeId": 7256 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_smooth_red_sandstone_stairs", + "type": 0, + "input": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "damage": 3 + } + ], + "output": [ + { + "legacyId": -176, + "id": "minecraft:smooth_red_sandstone_stairs", + "blockRuntimeId": 6895 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_smooth_sanddouble_stone_slab", + "type": 0, + "input": [ + { + "legacyId": 24, + "id": "minecraft:sandstone", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 2, + "blockRuntimeId": 7245 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_smooth_sandstone_stairs", + "type": 0, + "input": [ + { + "legacyId": 24, + "id": "minecraft:sandstone", + "damage": 3 + } + ], + "output": [ + { + "legacyId": -177, + "id": "minecraft:smooth_sandstone_stairs", + "blockRuntimeId": 6903 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_stairs_from_polished_blackstone", + "type": 0, + "input": [ + { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -292, + "id": "minecraft:polished_blackstone_stairs", + "blockRuntimeId": 6033 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_stone_stairs", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone" + } + ], + "output": [ + { + "legacyId": -180, + "id": "minecraft:normal_stone_stairs", + "blockRuntimeId": 5708 + } + ], + "block": "stonecutter", + "priority": 6 + }, + { + "id": "minecraft:stonecutter_stonebrick", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone" + } + ], + "output": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick", + "blockRuntimeId": 7289 + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_stonebrick_chiseled", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone" + } + ], + "output": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick", + "blockRuntimeId": 7292 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_stonebrick_slab", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone" + } + ], + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 2, + "blockRuntimeId": 7228 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_stonebrick_slab2", + "type": 0, + "input": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick" + } + ], + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 2, + "blockRuntimeId": 7228 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_stonebrick_stairs", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone" + } + ], + "output": [ + { + "legacyId": 109, + "id": "minecraft:stone_brick_stairs", + "blockRuntimeId": 7187 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_stonebrick_stairs2", + "type": 0, + "input": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick" + } + ], + "output": [ + { + "legacyId": 109, + "id": "minecraft:stone_brick_stairs", + "blockRuntimeId": 7187 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_stonebrick_wall", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone" + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1326 + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_stonebrick_wall2", + "type": 0, + "input": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick" + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 1326 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_wall_from_polished_blackstone", + "type": 0, + "input": [ + { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -297, + "id": "minecraft:polished_blackstone_wall", + "blockRuntimeId": 6041 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_wall_from_polished_blackstone_bricks", + "type": 0, + "input": [ + { + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -278, + "id": "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId": 5838 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_copper_to_cut_copper", + "type": 0, + "input": [ + { + "legacyId": -344, + "id": "minecraft:waxed_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -351, + "id": "minecraft:waxed_cut_copper", + "blockRuntimeId": 7686 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_waxed_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -344, + "id": "minecraft:waxed_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -365, + "id": "minecraft:waxed_cut_copper_slab", + "count": 2, + "blockRuntimeId": 7687 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -344, + "id": "minecraft:waxed_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -358, + "id": "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId": 7689 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_copper_to_exposed_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -345, + "id": "minecraft:waxed_exposed_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -366, + "id": "minecraft:waxed_exposed_cut_copper_slab", + "count": 2, + "blockRuntimeId": 7701 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -351, + "id": "minecraft:waxed_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -365, + "id": "minecraft:waxed_cut_copper_slab", + "count": 2, + "blockRuntimeId": 7687 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -351, + "id": "minecraft:waxed_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -358, + "id": "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId": 7689 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper", + "type": 0, + "input": [ + { + "legacyId": -345, + "id": "minecraft:waxed_exposed_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -352, + "id": "minecraft:waxed_exposed_cut_copper", + "blockRuntimeId": 7700 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -345, + "id": "minecraft:waxed_exposed_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -359, + "id": "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId": 7703 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -352, + "id": "minecraft:waxed_exposed_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -366, + "id": "minecraft:waxed_exposed_cut_copper_slab", + "count": 2, + "blockRuntimeId": 7701 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -352, + "id": "minecraft:waxed_exposed_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -359, + "id": "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId": 7703 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper", + "type": 0, + "input": [ + { + "legacyId": -446, + "id": "minecraft:waxed_oxidized_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -447, + "id": "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId": 7714 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -446, + "id": "minecraft:waxed_oxidized_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -449, + "id": "minecraft:waxed_oxidized_cut_copper_slab", + "count": 2, + "blockRuntimeId": 7715 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -446, + "id": "minecraft:waxed_oxidized_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -448, + "id": "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId": 7717 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -447, + "id": "minecraft:waxed_oxidized_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -449, + "id": "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId": 7715 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -447, + "id": "minecraft:waxed_oxidized_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -448, + "id": "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId": 7717 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper", + "type": 0, + "input": [ + { + "legacyId": -346, + "id": "minecraft:waxed_weathered_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -353, + "id": "minecraft:waxed_weathered_cut_copper", + "blockRuntimeId": 7728 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -346, + "id": "minecraft:waxed_weathered_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -367, + "id": "minecraft:waxed_weathered_cut_copper_slab", + "count": 2, + "blockRuntimeId": 7729 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -346, + "id": "minecraft:waxed_weathered_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -360, + "id": "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId": 7731 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -353, + "id": "minecraft:waxed_weathered_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -367, + "id": "minecraft:waxed_weathered_cut_copper_slab", + "count": 2, + "blockRuntimeId": 7729 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -353, + "id": "minecraft:waxed_weathered_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -360, + "id": "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId": 7731 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_weathered_copper_to_cut_copper", + "type": 0, + "input": [ + { + "legacyId": -342, + "id": "minecraft:weathered_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -349, + "id": "minecraft:weathered_cut_copper", + "blockRuntimeId": 7742 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_weathered_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -342, + "id": "minecraft:weathered_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -363, + "id": "minecraft:weathered_cut_copper_slab", + "count": 2, + "blockRuntimeId": 7743 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_weathered_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -342, + "id": "minecraft:weathered_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -356, + "id": "minecraft:weathered_cut_copper_stairs", + "blockRuntimeId": 7745 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -349, + "id": "minecraft:weathered_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -363, + "id": "minecraft:weathered_cut_copper_slab", + "count": 2, + "blockRuntimeId": 7743 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -349, + "id": "minecraft:weathered_cut_copper", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -356, + "id": "minecraft:weathered_cut_copper_stairs", + "blockRuntimeId": 7745 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "stonecutter_stairs_from_polished_blackstone_bricks", + "type": 0, + "input": [ + { + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -275, + "id": "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId": 5830 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "Bookshelf_woodplanks_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + }, + "B": { + "legacyId": 387, + "id": "minecraft:book", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 47, + "id": "minecraft:bookshelf", + "blockRuntimeId": 704 + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "Bowl_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 321, + "id": "minecraft:bowl", + "count": 4 + } + ], + "shape": [ + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "ButtonAcacia_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 4 + } + }, + "output": [ + { + "legacyId": -140, + "id": "minecraft:acacia_button" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "ButtonBirch_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 2 + } + }, + "output": [ + { + "legacyId": -141, + "id": "minecraft:birch_button", + "blockRuntimeId": 356 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "ButtonDarkOak_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 5 + } + }, + "output": [ + { + "legacyId": -142, + "id": "minecraft:dark_oak_button", + "blockRuntimeId": 3937 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "ButtonJungle_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 3 + } + }, + "output": [ + { + "legacyId": -143, + "id": "minecraft:jungle_button", + "blockRuntimeId": 5209 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "ButtonSpruce_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 1 + } + }, + "output": [ + { + "legacyId": -144, + "id": "minecraft:spruce_button", + "blockRuntimeId": 6966 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Chest_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 54, + "id": "minecraft:chest", + "blockRuntimeId": 1123 + } + ], + "shape": [ + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "DaylightDetector_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass" + }, + "B": { + "legacyId": 524, + "id": "minecraft:quartz", + "damage": 32767 + }, + "C": { + "legacyId": 158, + "id": "minecraft:wooden_slab", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 151, + "id": "minecraft:daylight_detector", + "blockRuntimeId": 4067 + } + ], + "shape": [ + "AAA", + "BBB", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "FireCharge_blaze_powder_coal_sulphur_recipeId", + "type": 0, + "input": [ + { + "legacyId": 429, + "id": "minecraft:blaze_powder", + "damage": 32767 + }, + { + "legacyId": 303, + "id": "minecraft:charcoal", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 509, + "id": "minecraft:fire_charge", + "count": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "FireCharge_coal_sulphur_recipeId", + "type": 0, + "input": [ + { + "legacyId": 429, + "id": "minecraft:blaze_powder", + "damage": 32767 + }, + { + "legacyId": 302, + "id": "minecraft:coal" + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 509, + "id": "minecraft:fire_charge", + "count": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Jukebox_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + }, + "B": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 84, + "id": "minecraft:jukebox", + "blockRuntimeId": 5208 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "Note_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + }, + "B": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 25, + "id": "minecraft:noteblock", + "blockRuntimeId": 5716 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "Painting_Cobblestone_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone" + } + }, + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 6, + "blockRuntimeId": 7226 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Painting_NetherBrick_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 112, + "id": "minecraft:nether_brick" + } + }, + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 6, + "blockRuntimeId": 7230 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Painting_VanillaBlocks_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 24, + "id": "minecraft:sandstone" + } + }, + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 6, + "blockRuntimeId": 7224 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Painting_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 357, + "id": "minecraft:painting" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Piston_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + }, + "B": { + "legacyId": 4, + "id": "minecraft:cobblestone" + }, + "C": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "D": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 33, + "id": "minecraft:piston", + "blockRuntimeId": 5786 + } + ], + "shape": [ + "AAA", + "BCB", + "BDB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "PressurePlateAcacia_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 4 + } + }, + "output": [ + { + "legacyId": -150, + "id": "minecraft:acacia_pressure_plate", + "blockRuntimeId": 60 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "PressurePlateBirch_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 2 + } + }, + "output": [ + { + "legacyId": -151, + "id": "minecraft:birch_pressure_plate", + "blockRuntimeId": 416 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "PressurePlateDarkOak_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 5 + } + }, + "output": [ + { + "legacyId": -152, + "id": "minecraft:dark_oak_pressure_plate", + "blockRuntimeId": 3997 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "PressurePlateJungle_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 3 + } + }, + "output": [ + { + "legacyId": -153, + "id": "minecraft:jungle_pressure_plate", + "blockRuntimeId": 5269 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "PressurePlateSpruce_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 1 + } + }, + "output": [ + { + "legacyId": -154, + "id": "minecraft:spruce_pressure_plate", + "blockRuntimeId": 7026 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Stick_bamboo_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": -163, + "id": "minecraft:bamboo" + } + }, + "output": [ + { + "legacyId": 320, + "id": "minecraft:stick" + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "StoneSlab4_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone" + } + }, + "output": [ + { + "legacyId": -166, + "id": "minecraft:double_stone_slab4", + "count": 6, + "blockRuntimeId": 7273 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "StoneSlab4_stoneBrick_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 98, + "id": "minecraft:stonebrick", + "damage": 1 + } + }, + "output": [ + { + "legacyId": -166, + "id": "minecraft:double_stone_slab4", + "count": 6, + "blockRuntimeId": 7271 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "StoneSlab_Brick_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 45, + "id": "minecraft:brick_block" + } + }, + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 6, + "blockRuntimeId": 7227 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "StoneSlab_StoneBrick_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 98, + "id": "minecraft:stonebrick" + } + }, + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 6, + "blockRuntimeId": 7228 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "StoneSlab_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": -183, + "id": "minecraft:smooth_stone" + } + }, + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 6, + "blockRuntimeId": 7223 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Torch_charcoal_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 303, + "id": "minecraft:charcoal", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 50, + "id": "minecraft:torch", + "count": 4, + "blockRuntimeId": 7357 + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Torch_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 50, + "id": "minecraft:torch", + "count": 4, + "blockRuntimeId": 7357 + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "TrapdoorAcacia_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 4 + } + }, + "output": [ + { + "legacyId": -145, + "id": "minecraft:acacia_trapdoor", + "count": 2, + "blockRuntimeId": 100 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "TrapdoorBirch_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 2 + } + }, + "output": [ + { + "legacyId": -146, + "id": "minecraft:birch_trapdoor", + "count": 2, + "blockRuntimeId": 456 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "TrapdoorDarkOak_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 5 + } + }, + "output": [ + { + "legacyId": -147, + "id": "minecraft:dark_oak_trapdoor", + "count": 2, + "blockRuntimeId": 4021 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "TrapdoorJungle_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 3 + } + }, + "output": [ + { + "legacyId": -148, + "id": "minecraft:jungle_trapdoor", + "count": 2, + "blockRuntimeId": 5309 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "TrapdoorSpruce_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 1 + } + }, + "output": [ + { + "legacyId": -149, + "id": "minecraft:spruce_trapdoor", + "count": 2, + "blockRuntimeId": 7066 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "Trapdoor_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks" + } + }, + "output": [ + { + "legacyId": 96, + "id": "minecraft:trapdoor", + "count": 2, + "blockRuntimeId": 7363 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "TripwireHook_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "C": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 131, + "id": "minecraft:tripwire_hook", + "count": 2, + "blockRuntimeId": 7401 + } + ], + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "WoodButton_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks" + } + }, + "output": [ + { + "legacyId": 143, + "id": "minecraft:wooden_button", + "blockRuntimeId": 7843 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "WoodPressurePlate_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks" + } + }, + "output": [ + { + "legacyId": 72, + "id": "minecraft:wooden_pressure_plate", + "blockRuntimeId": 7887 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "WorkBench_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 58, + "id": "minecraft:crafting_table", + "blockRuntimeId": 3771 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "acacia_stairs_acacia_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 4 + } + }, + "output": [ + { + "legacyId": 163, + "id": "minecraft:acacia_stairs", + "count": 4, + "blockRuntimeId": 76 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "type": 4, + "uuid": "d81aaeaf-e172-4440-9225-868df030d27b" + }, + { + "type": 4, + "uuid": "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" + }, + { + "type": 4, + "uuid": "00000000-0000-0000-0000-000000000002" + }, + { + "id": "bed_color_0", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool" + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_1", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_10", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_11", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_12", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_13", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_14", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_15", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_2", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_3", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_4", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_5", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_6", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_7", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_8", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_9", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "bed_color_crimson_0", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool" + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_1", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_10", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_11", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_12", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_13", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_14", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_15", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_2", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_3", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_4", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_5", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_6", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_7", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_8", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_crimson_9", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_0", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool" + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_1", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_10", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_11", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_12", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_13", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_14", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_15", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_2", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_3", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_4", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_5", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_6", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_7", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_8", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_color_warped_9", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "shape": [ + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "bed_dye_0_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_0_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_10_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_11_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_12_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_13_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_14_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_15_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_16_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_17_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_18_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_19_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_1_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_2_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_3_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_4_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_5_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_6_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_7_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_8_9", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_0", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 15 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_1", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 14 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_10", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 5 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_11", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 4 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_12", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 3 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_13", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 2 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_14", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 1 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_15", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed" + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_2", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 13 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_3", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 12 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_4", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 11 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_5", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 10 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_6", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 9 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_7", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 8 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "bed_dye_9_8", + "type": 0, + "input": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 7 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 418, + "id": "minecraft:bed", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "birch_stairs_birch_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 2 + } + }, + "output": [ + { + "legacyId": 135, + "id": "minecraft:birch_stairs", + "count": 4, + "blockRuntimeId": 432 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "type": 4, + "uuid": "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" + }, + { + "id": "chiseled_quartz_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "damage": 6 + } + }, + "output": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block", + "blockRuntimeId": 6546 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "chiseled_stonebrick_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "damage": 5 + } + }, + "output": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick", + "blockRuntimeId": 7292 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "type": 4, + "uuid": "85939755-ba10-4d9d-a4cc-efb7a8e943c4" + }, + { + "id": "dark_oak_stairs_dark_oak_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 5 + } + }, + "output": [ + { + "legacyId": 164, + "id": "minecraft:dark_oak_stairs", + "count": 4, + "blockRuntimeId": 4013 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "type": 4, + "uuid": "d392b075-4ba1-40ae-8789-af868d56f6ce" + }, + { + "id": "heiroglyphs_redsandstone_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 182, + "id": "minecraft:double_stone_slab2" + } + }, + "output": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "blockRuntimeId": 6634 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "heiroglyphs_sandstone_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 24, + "id": "minecraft:sandstone", + "blockRuntimeId": 6707 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "jungle_stairs_jungle_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 3 + } + }, + "output": [ + { + "legacyId": 136, + "id": "minecraft:jungle_stairs", + "count": 4, + "blockRuntimeId": 5285 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "lines_purpur_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 201, + "id": "minecraft:purpur_block", + "blockRuntimeId": 6527 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "loom_block_wood_planks_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 326, + "id": "minecraft:string", + "damage": 32767 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -204, + "id": "minecraft:loom", + "blockRuntimeId": 5582 + } + ], + "shape": [ + "AA", + "BB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_boat", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 4 + }, + "B": { + "legacyId": 309, + "id": "minecraft:wooden_shovel", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 379, + "id": "minecraft:acacia_boat" + } + ], + "shape": [ + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_door", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 4 + } + }, + "output": [ + { + "legacyId": 556, + "id": "minecraft:acacia_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_fence", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 4 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 85, + "id": "minecraft:fence", + "count": 3, + "blockRuntimeId": 4778 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_fence_gate", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 4 + } + }, + "output": [ + { + "legacyId": 187, + "id": "minecraft:acacia_fence_gate", + "blockRuntimeId": 44 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_planks", + "type": 1, + "input": { + "A": { + "legacyId": 162, + "id": "minecraft:log2" + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5801 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_planks_from_stripped", + "type": 1, + "input": { + "A": { + "legacyId": -8, + "id": "minecraft:stripped_acacia_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5801 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 12 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5801 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_planks_from_wood", + "type": 1, + "input": { + "A": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 4 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5801 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 4 + } + }, + "output": [ + { + "legacyId": 163, + "id": "minecraft:acacia_stairs", + "count": 4, + "blockRuntimeId": 76 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_wood", + "type": 1, + "input": { + "A": { + "legacyId": 162, + "id": "minecraft:log2" + } + }, + "output": [ + { + "legacyId": -212, + "id": "minecraft:wood", + "count": 3, + "blockRuntimeId": 7811 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_wood_stripped", + "type": 1, + "input": { + "A": { + "legacyId": -8, + "id": "minecraft:stripped_acacia_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -212, + "id": "minecraft:wood", + "count": 3, + "blockRuntimeId": 7817 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:acacia_wooden_slab", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 4 + } + }, + "output": [ + { + "legacyId": 158, + "id": "minecraft:wooden_slab", + "count": 6, + "blockRuntimeId": 7907 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:activator_rail", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "C": { + "legacyId": 76, + "id": "minecraft:redstone_torch", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 126, + "id": "minecraft:activator_rail", + "count": 6, + "blockRuntimeId": 122 + } + ], + "shape": [ + "ABA", + "ACA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:amethyst_block", + "type": 1, + "input": { + "A": { + "legacyId": 623, + "id": "minecraft:amethyst_shard", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -327, + "id": "minecraft:amethyst_block", + "blockRuntimeId": 136 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:andesite", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 3 + }, + { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "count": 2, + "blockRuntimeId": 7185 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:andesite_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 5 + } + }, + "output": [ + { + "legacyId": -171, + "id": "minecraft:andesite_stairs", + "count": 4, + "blockRuntimeId": 144 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:andesite_wall", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 5 + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1323 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:anvil", + "type": 1, + "input": { + "A": { + "legacyId": 42, + "id": "minecraft:iron_block", + "damage": 32767 + }, + "B": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 145, + "id": "minecraft:anvil", + "blockRuntimeId": 152 + } + ], + "shape": [ + "AAA", + " B ", + "BBB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:armor_stand", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 44, + "id": "minecraft:double_stone_slab" + } + }, + "output": [ + { + "legacyId": 552, + "id": "minecraft:armor_stand" + } + ], + "shape": [ + "AAA", + " A ", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:arrow", + "type": 1, + "input": { + "A": { + "legacyId": 356, + "id": "minecraft:flint", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "C": { + "legacyId": 327, + "id": "minecraft:feather", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "count": 4 + } + ], + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:banner_pattern_bricks", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 45, + "id": "minecraft:brick_block", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 585, + "id": "minecraft:field_masoned_banner_pattern" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:banner_pattern_creeper", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 516, + "id": "minecraft:skull", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 582, + "id": "minecraft:creeper_banner_pattern" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:banner_pattern_flower", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 8 + } + ], + "output": [ + { + "legacyId": 581, + "id": "minecraft:flower_banner_pattern" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:banner_pattern_skull", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 516, + "id": "minecraft:skull", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 583, + "id": "minecraft:skull_banner_pattern" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:banner_pattern_thing", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 259, + "id": "minecraft:enchanted_golden_apple", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 584, + "id": "minecraft:mojang_banner_pattern" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:banner_pattern_vines", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 106, + "id": "minecraft:vine", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 586, + "id": "minecraft:bordure_indented_banner_pattern" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:barrel", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 158, + "id": "minecraft:wooden_slab", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -203, + "id": "minecraft:barrel", + "blockRuntimeId": 201 + } + ], + "shape": [ + "ABA", + "A A", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:barrel_from_crimson_slab", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -264, + "id": "minecraft:crimson_slab", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -203, + "id": "minecraft:barrel", + "blockRuntimeId": 201 + } + ], + "shape": [ + "ABA", + "A A", + "ABA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:barrel_from_warped_slab", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -265, + "id": "minecraft:warped_slab", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -203, + "id": "minecraft:barrel", + "blockRuntimeId": 201 + } + ], + "shape": [ + "ABA", + "A A", + "ABA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:basic_map_to_enhanced", + "type": 0, + "input": [ + { + "legacyId": 515, + "id": "minecraft:empty_map", + "damage": 1 + }, + { + "legacyId": 391, + "id": "minecraft:compass", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 515, + "id": "minecraft:empty_map", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:beacon", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 518, + "id": "minecraft:nether_star", + "damage": 32767 + }, + "C": { + "legacyId": 49, + "id": "minecraft:obsidian", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 138, + "id": "minecraft:beacon", + "blockRuntimeId": 217 + } + ], + "shape": [ + "AAA", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:beehive", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + }, + "B": { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -219, + "id": "minecraft:beehive", + "blockRuntimeId": 260 + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:beehive_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -219, + "id": "minecraft:beehive", + "blockRuntimeId": 260 + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:beehive_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -219, + "id": "minecraft:beehive", + "blockRuntimeId": 260 + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:beetroot_soup", + "type": 0, + "input": [ + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 285, + "id": "minecraft:beetroot", + "damage": 32767 + }, + { + "legacyId": 285, + "id": "minecraft:beetroot", + "damage": 32767 + }, + { + "legacyId": 285, + "id": "minecraft:beetroot", + "damage": 32767 + }, + { + "legacyId": 285, + "id": "minecraft:beetroot", + "damage": 32767 + }, + { + "legacyId": 285, + "id": "minecraft:beetroot", + "damage": 32767 + }, + { + "legacyId": 285, + "id": "minecraft:beetroot", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 286, + "id": "minecraft:beetroot_soup" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_boat", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 2 + }, + "B": { + "legacyId": 309, + "id": "minecraft:wooden_shovel", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 376, + "id": "minecraft:birch_boat" + } + ], + "shape": [ + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_door", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 2 + } + }, + "output": [ + { + "legacyId": 554, + "id": "minecraft:birch_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_fence", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 2 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 85, + "id": "minecraft:fence", + "count": 3, + "blockRuntimeId": 4776 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_fence_gate", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 2 + } + }, + "output": [ + { + "legacyId": 184, + "id": "minecraft:birch_fence_gate", + "blockRuntimeId": 400 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_planks", + "type": 1, + "input": { + "A": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 2 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5799 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_planks_from_stripped", + "type": 1, + "input": { + "A": { + "legacyId": -6, + "id": "minecraft:stripped_birch_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5799 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 10 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5799 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_planks_from_wood", + "type": 1, + "input": { + "A": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 2 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5799 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 2 + } + }, + "output": [ + { + "legacyId": 135, + "id": "minecraft:birch_stairs", + "count": 4, + "blockRuntimeId": 432 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_wood", + "type": 1, + "input": { + "A": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 2 + } + }, + "output": [ + { + "legacyId": -212, + "id": "minecraft:wood", + "count": 3, + "blockRuntimeId": 7809 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_wood_stripped", + "type": 1, + "input": { + "A": { + "legacyId": -6, + "id": "minecraft:stripped_birch_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -212, + "id": "minecraft:wood", + "count": 3, + "blockRuntimeId": 7815 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:birch_wooden_slab", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 2 + } + }, + "output": [ + { + "legacyId": 158, + "id": "minecraft:wooden_slab", + "count": 6, + "blockRuntimeId": 7905 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner" + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye" + } + ], + "output": [ + { + "legacyId": -428, + "id": "minecraft:black_candle", + "blockRuntimeId": 478 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_candle_from_ink_sac", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac" + } + ], + "output": [ + { + "legacyId": -428, + "id": "minecraft:black_candle", + "blockRuntimeId": 478 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 978 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 395, + "id": "minecraft:black_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 978 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:black_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3675 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_concrete_powder_from_ink_sac", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3675 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:black_dye_from_ink_sac", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac" + } + ], + "output": [ + { + "legacyId": 395, + "id": "minecraft:black_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_dye_from_wither_rose", + "type": 0, + "input": [ + { + "legacyId": -216, + "id": "minecraft:wither_rose", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 395, + "id": "minecraft:black_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 395, + "id": "minecraft:black_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7103 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_stained_glass_from_ink_sac", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 413, + "id": "minecraft:ink_sac" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7103 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:black_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 15 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7119 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 395, + "id": "minecraft:black_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7119 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 395, + "id": "minecraft:black_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7135 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:black_stained_hardened_clay_from_ink_sac", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 413, + "id": "minecraft:ink_sac" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7135 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:blackstone_slab", + "type": 1, + "input": { + "A": { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -282, + "id": "minecraft:blackstone_slab", + "count": 6, + "blockRuntimeId": 497 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blackstone_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -276, + "id": "minecraft:blackstone_stairs", + "count": 4, + "blockRuntimeId": 499 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blackstone_wall", + "type": 1, + "input": { + "A": { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -277, + "id": "minecraft:blackstone_wall", + "count": 6, + "blockRuntimeId": 507 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blast_furnace", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + }, + "C": { + "legacyId": -183, + "id": "minecraft:smooth_stone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -196, + "id": "minecraft:blast_furnace", + "blockRuntimeId": 669 + } + ], + "shape": [ + "AAA", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blaze_powder", + "type": 0, + "input": [ + { + "legacyId": 423, + "id": "minecraft:blaze_rod", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 429, + "id": "minecraft:blaze_powder", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 4 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye" + } + ], + "output": [ + { + "legacyId": -424, + "id": "minecraft:blue_candle", + "blockRuntimeId": 675 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_candle_from_lapis_lazuli", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + } + ], + "output": [ + { + "legacyId": -424, + "id": "minecraft:blue_candle", + "blockRuntimeId": 675 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 974 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 399, + "id": "minecraft:blue_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 974 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3671 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_concrete_powder_from_lapis_lazuli", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3671 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:blue_dye_from_cornflower", + "type": 0, + "input": [ + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 9 + } + ], + "output": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_dye_from_lapis_lazuli", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + } + ], + "output": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_ice", + "type": 1, + "input": { + "A": { + "legacyId": 174, + "id": "minecraft:packed_ice", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -11, + "id": "minecraft:blue_ice", + "blockRuntimeId": 691 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 399, + "id": "minecraft:blue_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7099 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_stained_glass_from_lapis_lazuli", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7099 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:blue_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 11 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7115 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 399, + "id": "minecraft:blue_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7115 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 399, + "id": "minecraft:blue_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7131 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_stained_hardened_clay_from_lapis_lazuli", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7131 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:boat", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks" + }, + "B": { + "legacyId": 309, + "id": "minecraft:wooden_shovel", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 375, + "id": "minecraft:oak_boat" + } + ], + "shape": [ + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:bone_block", + "type": 1, + "input": { + "A": { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + }, + "output": [ + { + "legacyId": 216, + "id": "minecraft:bone_block", + "blockRuntimeId": 692 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:bone_meal_from_block", + "type": 0, + "input": [ + { + "legacyId": 216, + "id": "minecraft:bone_block", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "count": 9 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:bone_meal_from_bone", + "type": 0, + "input": [ + { + "legacyId": 415, + "id": "minecraft:bone", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "count": 3 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:book", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper" + }, + { + "legacyId": 386, + "id": "minecraft:paper" + }, + { + "legacyId": 386, + "id": "minecraft:paper" + }, + { + "legacyId": 381, + "id": "minecraft:leather" + } + ], + "output": [ + { + "legacyId": 387, + "id": "minecraft:book" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:bookshelf_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 387, + "id": "minecraft:book", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 47, + "id": "minecraft:bookshelf", + "blockRuntimeId": 704 + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:bookshelf_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 387, + "id": "minecraft:book", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 47, + "id": "minecraft:bookshelf", + "blockRuntimeId": 704 + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:bow", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 326, + "id": "minecraft:string", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 300, + "id": "minecraft:bow" + } + ], + "shape": [ + " AB", + "A B", + " AB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:bowl_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 321, + "id": "minecraft:bowl", + "count": 4 + } + ], + "shape": [ + "A A", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:bowl_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 321, + "id": "minecraft:bowl", + "count": 4 + } + ], + "shape": [ + "A A", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:bread", + "type": 1, + "input": { + "A": { + "legacyId": 334, + "id": "minecraft:wheat", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 261, + "id": "minecraft:bread" + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brewing_stand", + "type": 1, + "input": { + "A": { + "legacyId": 423, + "id": "minecraft:blaze_rod", + "damage": 32767 + }, + "B": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 431, + "id": "minecraft:brewing_stand" + } + ], + "shape": [ + " A ", + "BBB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brewing_stand_from_blackstone", + "type": 1, + "input": { + "A": { + "legacyId": 423, + "id": "minecraft:blaze_rod", + "damage": 32767 + }, + "B": { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 431, + "id": "minecraft:brewing_stand" + } + ], + "shape": [ + " A ", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:brewing_stand_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "legacyId": 423, + "id": "minecraft:blaze_rod", + "damage": 32767 + }, + "B": { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 431, + "id": "minecraft:brewing_stand" + } + ], + "shape": [ + " A ", + "BBB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:brick_block", + "type": 1, + "input": { + "A": { + "legacyId": 383, + "id": "minecraft:brick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 45, + "id": "minecraft:brick_block", + "blockRuntimeId": 875 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brick_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 45, + "id": "minecraft:brick_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 108, + "id": "minecraft:brick_stairs", + "count": 4, + "blockRuntimeId": 876 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brick_wall", + "type": 1, + "input": { + "A": { + "legacyId": 45, + "id": "minecraft:brick_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1325 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye" + } + ], + "output": [ + { + "legacyId": -425, + "id": "minecraft:brown_candle", + "blockRuntimeId": 884 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_candle_from_cocoa_beans", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans" + } + ], + "output": [ + { + "legacyId": -425, + "id": "minecraft:brown_candle", + "blockRuntimeId": 884 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 975 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 398, + "id": "minecraft:brown_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 975 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3672 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_concrete_powder_from_cocoa_beans", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3672 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:brown_dye_from_cocoa_beans", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans" + } + ], + "output": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 398, + "id": "minecraft:brown_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7100 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_stained_glass_from_cocoa_beans", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 412, + "id": "minecraft:cocoa_beans" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7100 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:brown_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 12 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7116 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 398, + "id": "minecraft:brown_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7116 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 398, + "id": "minecraft:brown_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7132 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:brown_stained_hardened_clay_from_cocoa_beans", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 412, + "id": "minecraft:cocoa_beans" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7132 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:bucket", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 360, + "id": "minecraft:bucket" + } + ], + "shape": [ + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cake", + "type": 1, + "input": { + "A": { + "legacyId": 361, + "id": "minecraft:milk_bucket" + }, + "B": { + "legacyId": 416, + "id": "minecraft:sugar", + "damage": 32767 + }, + "C": { + "legacyId": 390, + "id": "minecraft:egg", + "damage": 32767 + }, + "D": { + "legacyId": 334, + "id": "minecraft:wheat", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 417, + "id": "minecraft:cake" + }, + { + "legacyId": 360, + "id": "minecraft:bucket", + "count": 3 + } + ], + "shape": [ + "AAA", + "BCB", + "DDD" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:campfire_from_charcoal", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 303, + "id": "minecraft:charcoal", + "damage": 32767 + }, + "C": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_log2", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 303, + "id": "minecraft:charcoal", + "damage": 32767 + }, + "C": { + "legacyId": 162, + "id": "minecraft:log2", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_stripped_acacia_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 303, + "id": "minecraft:charcoal", + "damage": 32767 + }, + "C": { + "legacyId": -8, + "id": "minecraft:stripped_acacia_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_stripped_birch_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 303, + "id": "minecraft:charcoal", + "damage": 32767 + }, + "C": { + "legacyId": -6, + "id": "minecraft:stripped_birch_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_stripped_dark_oak_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 303, + "id": "minecraft:charcoal", + "damage": 32767 + }, + "C": { + "legacyId": -9, + "id": "minecraft:stripped_dark_oak_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_stripped_jungle_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 303, + "id": "minecraft:charcoal", + "damage": 32767 + }, + "C": { + "legacyId": -7, + "id": "minecraft:stripped_jungle_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_stripped_oak_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 303, + "id": "minecraft:charcoal", + "damage": 32767 + }, + "C": { + "legacyId": -10, + "id": "minecraft:stripped_oak_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_stripped_spruce_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 303, + "id": "minecraft:charcoal", + "damage": 32767 + }, + "C": { + "legacyId": -5, + "id": "minecraft:stripped_spruce_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_charcoal_wood", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 303, + "id": "minecraft:charcoal", + "damage": 32767 + }, + "C": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:campfire_from_crimson_stem", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": -225, + "id": "minecraft:crimson_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_log2", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": 162, + "id": "minecraft:log2", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_acacia_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": -8, + "id": "minecraft:stripped_acacia_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_birch_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": -6, + "id": "minecraft:stripped_birch_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_crimson_stem", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": -240, + "id": "minecraft:stripped_crimson_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_dark_oak_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": -9, + "id": "minecraft:stripped_dark_oak_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_jungle_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": -7, + "id": "minecraft:stripped_jungle_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_oak_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": -10, + "id": "minecraft:stripped_oak_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_spruce_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": -5, + "id": "minecraft:stripped_spruce_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_stripped_warped_stem", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": -241, + "id": "minecraft:stripped_warped_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_warped_stem", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": -226, + "id": "minecraft:warped_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:campfire_from_wood", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "C": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 588, + "id": "minecraft:campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:candle", + "type": 1, + "input": { + "A": { + "legacyId": 326, + "id": "minecraft:string", + "damage": 32767 + }, + "B": { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "blockRuntimeId": 953 + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:carrot_on_a_stick", + "type": 1, + "input": { + "A": { + "legacyId": 392, + "id": "minecraft:fishing_rod", + "damage": 32767 + }, + "B": { + "legacyId": 279, + "id": "minecraft:carrot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 517, + "id": "minecraft:carrot_on_a_stick" + } + ], + "shape": [ + "A ", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cartography_table", + "type": 1, + "input": { + "A": { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -200, + "id": "minecraft:cartography_table", + "blockRuntimeId": 987 + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cartography_table_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -200, + "id": "minecraft:cartography_table", + "blockRuntimeId": 987 + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:cartography_table_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -200, + "id": "minecraft:cartography_table", + "blockRuntimeId": 987 + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:cauldron", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 432, + "id": "minecraft:cauldron" + } + ], + "shape": [ + "A A", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:chain", + "type": 1, + "input": { + "A": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "B": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 617, + "id": "minecraft:chain" + } + ], + "shape": [ + "A", + "B", + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:chest_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 54, + "id": "minecraft:chest", + "blockRuntimeId": 1123 + } + ], + "shape": [ + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:chest_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 54, + "id": "minecraft:chest", + "blockRuntimeId": 1123 + } + ], + "shape": [ + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:chest_minecart", + "type": 1, + "input": { + "A": { + "legacyId": 54, + "id": "minecraft:chest", + "damage": 32767 + }, + "B": { + "legacyId": 370, + "id": "minecraft:minecart", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 389, + "id": "minecraft:chest_minecart" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:chiseled_deepslate", + "type": 1, + "input": { + "A": { + "legacyId": -380, + "id": "minecraft:cobbled_deepslate_slab", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -395, + "id": "minecraft:chiseled_deepslate", + "blockRuntimeId": 1129 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:chiseled_nether_bricks", + "type": 1, + "input": { + "A": { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "damage": 7 + } + }, + "output": [ + { + "legacyId": -302, + "id": "minecraft:chiseled_nether_bricks", + "blockRuntimeId": 1130 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:chiseled_polished_blackstone", + "type": 1, + "input": { + "A": { + "legacyId": -293, + "id": "minecraft:polished_blackstone_slab", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -279, + "id": "minecraft:chiseled_polished_blackstone", + "blockRuntimeId": 1131 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:clay", + "type": 1, + "input": { + "A": { + "legacyId": 384, + "id": "minecraft:clay_ball", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 82, + "id": "minecraft:clay", + "blockRuntimeId": 1139 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:clock", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 393, + "id": "minecraft:clock" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:coal", + "type": 1, + "input": { + "A": { + "legacyId": 173, + "id": "minecraft:coal_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 302, + "id": "minecraft:coal", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:coal_block", + "type": 1, + "input": { + "A": { + "legacyId": 302, + "id": "minecraft:coal" + } + }, + "output": [ + { + "legacyId": 173, + "id": "minecraft:coal_block", + "blockRuntimeId": 1141 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:coarse_dirt", + "type": 1, + "input": { + "A": { + "legacyId": 3, + "id": "minecraft:dirt" + }, + "B": { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 3, + "id": "minecraft:dirt", + "count": 4, + "blockRuntimeId": 4485 + } + ], + "shape": [ + "AB", + "BA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cobbled_deepslate_slab", + "type": 1, + "input": { + "A": { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -380, + "id": "minecraft:cobbled_deepslate_slab", + "count": 6, + "blockRuntimeId": 1146 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:cobbled_deepslate_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -381, + "id": "minecraft:cobbled_deepslate_stairs", + "count": 4, + "blockRuntimeId": 1148 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:cobbled_deepslate_wall", + "type": 1, + "input": { + "A": { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -382, + "id": "minecraft:cobbled_deepslate_wall", + "count": 6, + "blockRuntimeId": 1156 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:cobblestone_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 67, + "id": "minecraft:stone_stairs", + "count": 4, + "blockRuntimeId": 7281 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cobblestone_wall", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1319 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cobweb_to_string", + "type": 0, + "input": [ + { + "legacyId": 30, + "id": "minecraft:web", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 326, + "id": "minecraft:string", + "count": 9 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:comparator", + "type": 1, + "input": { + "A": { + "legacyId": 76, + "id": "minecraft:redstone_torch", + "damage": 32767 + }, + "B": { + "legacyId": 524, + "id": "minecraft:quartz", + "damage": 32767 + }, + "C": { + "legacyId": 1, + "id": "minecraft:stone" + } + }, + "output": [ + { + "legacyId": 522, + "id": "minecraft:comparator" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:compass", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 391, + "id": "minecraft:compass" + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:composter", + "type": 1, + "input": { + "A": { + "legacyId": 158, + "id": "minecraft:wooden_slab", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -213, + "id": "minecraft:composter", + "blockRuntimeId": 3635 + } + ], + "shape": [ + "A A", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:composter_from_crimson_slab", + "type": 1, + "input": { + "A": { + "legacyId": -264, + "id": "minecraft:crimson_slab", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -213, + "id": "minecraft:composter", + "blockRuntimeId": 3635 + } + ], + "shape": [ + "A A", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:composter_from_warped_slab", + "type": 1, + "input": { + "A": { + "legacyId": -265, + "id": "minecraft:warped_slab", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -213, + "id": "minecraft:composter", + "blockRuntimeId": 3635 + } + ], + "shape": [ + "A A", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:conduit", + "type": 1, + "input": { + "A": { + "legacyId": 570, + "id": "minecraft:nautilus_shell", + "damage": 32767 + }, + "B": { + "legacyId": 571, + "id": "minecraft:heart_of_the_sea", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -157, + "id": "minecraft:conduit", + "blockRuntimeId": 3676 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cookie", + "type": 1, + "input": { + "A": { + "legacyId": 334, + "id": "minecraft:wheat", + "damage": 32767 + }, + "B": { + "legacyId": 412, + "id": "minecraft:cocoa_beans" + } + }, + "output": [ + { + "legacyId": 271, + "id": "minecraft:cookie", + "count": 8 + } + ], + "shape": [ + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:copper_block_from_ingots", + "type": 1, + "input": { + "A": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -340, + "id": "minecraft:copper_block", + "blockRuntimeId": 3677 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_cut_copper", + "type": 1, + "input": { + "A": { + "legacyId": -340, + "id": "minecraft:copper_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -347, + "id": "minecraft:cut_copper", + "count": 4, + "blockRuntimeId": 3910 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_cut_copper_slab", + "type": 1, + "input": { + "A": { + "legacyId": -347, + "id": "minecraft:cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -361, + "id": "minecraft:cut_copper_slab", + "count": 6, + "blockRuntimeId": 3911 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -347, + "id": "minecraft:cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -354, + "id": "minecraft:cut_copper_stairs", + "count": 4, + "blockRuntimeId": 3913 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_exposed_cut_copper", + "type": 1, + "input": { + "A": { + "legacyId": -341, + "id": "minecraft:exposed_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -348, + "id": "minecraft:exposed_cut_copper", + "count": 4, + "blockRuntimeId": 4753 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_exposed_cut_copper_slab", + "type": 1, + "input": { + "A": { + "legacyId": -348, + "id": "minecraft:exposed_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -362, + "id": "minecraft:exposed_cut_copper_slab", + "count": 6, + "blockRuntimeId": 4754 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_exposed_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -348, + "id": "minecraft:exposed_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -355, + "id": "minecraft:exposed_cut_copper_stairs", + "count": 4, + "blockRuntimeId": 4756 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 58, + "id": "minecraft:crafting_table", + "blockRuntimeId": 3771 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:crafting_table_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 58, + "id": "minecraft:crafting_table", + "blockRuntimeId": 3771 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:crafting_table_oxidized_cut_copper", + "type": 1, + "input": { + "A": { + "legacyId": -343, + "id": "minecraft:oxidized_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -350, + "id": "minecraft:oxidized_cut_copper", + "count": 4, + "blockRuntimeId": 5755 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_oxidized_cut_copper_slab", + "type": 1, + "input": { + "A": { + "legacyId": -350, + "id": "minecraft:oxidized_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -364, + "id": "minecraft:oxidized_cut_copper_slab", + "count": 6, + "blockRuntimeId": 5756 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_oxidized_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -350, + "id": "minecraft:oxidized_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -357, + "id": "minecraft:oxidized_cut_copper_stairs", + "count": 4, + "blockRuntimeId": 5758 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_cut_copper", + "type": 1, + "input": { + "A": { + "legacyId": -344, + "id": "minecraft:waxed_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -351, + "id": "minecraft:waxed_cut_copper", + "count": 4, + "blockRuntimeId": 7686 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_cut_copper_slab", + "type": 1, + "input": { + "A": { + "legacyId": -351, + "id": "minecraft:waxed_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -365, + "id": "minecraft:waxed_cut_copper_slab", + "count": 6, + "blockRuntimeId": 7687 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -351, + "id": "minecraft:waxed_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -358, + "id": "minecraft:waxed_cut_copper_stairs", + "count": 4, + "blockRuntimeId": 7689 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_exposed_cut_copper", + "type": 1, + "input": { + "A": { + "legacyId": -345, + "id": "minecraft:waxed_exposed_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -352, + "id": "minecraft:waxed_exposed_cut_copper", + "count": 4, + "blockRuntimeId": 7700 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_exposed_cut_copper_slab", + "type": 1, + "input": { + "A": { + "legacyId": -352, + "id": "minecraft:waxed_exposed_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -366, + "id": "minecraft:waxed_exposed_cut_copper_slab", + "count": 6, + "blockRuntimeId": 7701 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_exposed_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -352, + "id": "minecraft:waxed_exposed_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -359, + "id": "minecraft:waxed_exposed_cut_copper_stairs", + "count": 4, + "blockRuntimeId": 7703 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_oxidized_cut_copper", + "type": 1, + "input": { + "A": { + "legacyId": -446, + "id": "minecraft:waxed_oxidized_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -447, + "id": "minecraft:waxed_oxidized_cut_copper", + "count": 4, + "blockRuntimeId": 7714 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_oxidized_cut_copper_slab", + "type": 1, + "input": { + "A": { + "legacyId": -447, + "id": "minecraft:waxed_oxidized_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -449, + "id": "minecraft:waxed_oxidized_cut_copper_slab", + "count": 6, + "blockRuntimeId": 7715 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_oxidized_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -447, + "id": "minecraft:waxed_oxidized_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -448, + "id": "minecraft:waxed_oxidized_cut_copper_stairs", + "count": 4, + "blockRuntimeId": 7717 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_weathered_cut_copper", + "type": 1, + "input": { + "A": { + "legacyId": -346, + "id": "minecraft:waxed_weathered_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -353, + "id": "minecraft:waxed_weathered_cut_copper", + "count": 4, + "blockRuntimeId": 7728 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_weathered_cut_copper_slab", + "type": 1, + "input": { + "A": { + "legacyId": -353, + "id": "minecraft:waxed_weathered_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -367, + "id": "minecraft:waxed_weathered_cut_copper_slab", + "count": 6, + "blockRuntimeId": 7729 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_waxed_weathered_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -353, + "id": "minecraft:waxed_weathered_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -360, + "id": "minecraft:waxed_weathered_cut_copper_stairs", + "count": 4, + "blockRuntimeId": 7731 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_weathered_cut_copper", + "type": 1, + "input": { + "A": { + "legacyId": -342, + "id": "minecraft:weathered_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -349, + "id": "minecraft:weathered_cut_copper", + "count": 4, + "blockRuntimeId": 7742 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_weathered_cut_copper_slab", + "type": 1, + "input": { + "A": { + "legacyId": -349, + "id": "minecraft:weathered_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -363, + "id": "minecraft:weathered_cut_copper_slab", + "count": 6, + "blockRuntimeId": 7743 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crafting_table_weathered_cut_copper_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -349, + "id": "minecraft:weathered_cut_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -356, + "id": "minecraft:weathered_cut_copper_stairs", + "count": 4, + "blockRuntimeId": 7745 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:crimson_button", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -260, + "id": "minecraft:crimson_button", + "blockRuntimeId": 3772 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_door", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 614, + "id": "minecraft:crimson_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_fence", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -256, + "id": "minecraft:crimson_fence", + "count": 3, + "blockRuntimeId": 3818 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_fence_gate", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -258, + "id": "minecraft:crimson_fence_gate", + "blockRuntimeId": 3819 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_hyphae", + "type": 1, + "input": { + "A": { + "legacyId": -225, + "id": "minecraft:crimson_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -299, + "id": "minecraft:crimson_hyphae", + "count": 3, + "blockRuntimeId": 3836 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -225, + "id": "minecraft:crimson_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "count": 4, + "blockRuntimeId": 3840 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_planks_from_crimson_hyphae", + "type": 1, + "input": { + "A": { + "legacyId": -299, + "id": "minecraft:crimson_hyphae", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "count": 4, + "blockRuntimeId": 3840 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_planks_from_stripped_crimson_hyphae", + "type": 1, + "input": { + "A": { + "legacyId": -300, + "id": "minecraft:stripped_crimson_hyphae", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "count": 4, + "blockRuntimeId": 3840 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_planks_from_stripped_log", + "type": 1, + "input": { + "A": { + "legacyId": -240, + "id": "minecraft:stripped_crimson_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "count": 4, + "blockRuntimeId": 3840 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_pressure_plate", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -262, + "id": "minecraft:crimson_pressure_plate", + "blockRuntimeId": 3841 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_sign", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 612, + "id": "minecraft:crimson_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_slab", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -264, + "id": "minecraft:crimson_slab", + "count": 6, + "blockRuntimeId": 3858 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -254, + "id": "minecraft:crimson_stairs", + "count": 4, + "blockRuntimeId": 3860 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crimson_trapdoor", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -246, + "id": "minecraft:crimson_trapdoor", + "count": 2, + "blockRuntimeId": 3887 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:crossbow", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "C": { + "legacyId": 326, + "id": "minecraft:string", + "damage": 32767 + }, + "D": { + "legacyId": 131, + "id": "minecraft:tripwire_hook", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 575, + "id": "minecraft:crossbow" + } + ], + "shape": [ + "ABA", + "CDC", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 6 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye" + } + ], + "output": [ + { + "legacyId": -422, + "id": "minecraft:cyan_candle", + "blockRuntimeId": 3921 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 972 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 401, + "id": "minecraft:cyan_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 972 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3669 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_dye", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye" + }, + { + "legacyId": 397, + "id": "minecraft:green_dye" + } + ], + "output": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_dye_from_lapis_lazuli", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + }, + { + "legacyId": 397, + "id": "minecraft:green_dye" + } + ], + "output": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:cyan_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 401, + "id": "minecraft:cyan_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7097 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 9 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7113 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 401, + "id": "minecraft:cyan_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7113 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:cyan_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 401, + "id": "minecraft:cyan_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7129 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_boat", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 5 + }, + "B": { + "legacyId": 309, + "id": "minecraft:wooden_shovel", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 380, + "id": "minecraft:dark_oak_boat" + } + ], + "shape": [ + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_door", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 5 + } + }, + "output": [ + { + "legacyId": 557, + "id": "minecraft:dark_oak_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_fence", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 5 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 85, + "id": "minecraft:fence", + "count": 3, + "blockRuntimeId": 4779 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_fence_gate", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 5 + } + }, + "output": [ + { + "legacyId": 186, + "id": "minecraft:dark_oak_fence_gate", + "blockRuntimeId": 3981 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_planks", + "type": 1, + "input": { + "A": { + "legacyId": 162, + "id": "minecraft:log2", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5802 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_planks_from_stripped", + "type": 1, + "input": { + "A": { + "legacyId": -9, + "id": "minecraft:stripped_dark_oak_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5802 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 13 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5802 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_planks_from_wood", + "type": 1, + "input": { + "A": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 5 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5802 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 5 + } + }, + "output": [ + { + "legacyId": 164, + "id": "minecraft:dark_oak_stairs", + "count": 4, + "blockRuntimeId": 4013 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_wood", + "type": 1, + "input": { + "A": { + "legacyId": 162, + "id": "minecraft:log2", + "damage": 1 + } + }, + "output": [ + { + "legacyId": -212, + "id": "minecraft:wood", + "count": 3, + "blockRuntimeId": 7812 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_wood_stripped", + "type": 1, + "input": { + "A": { + "legacyId": -9, + "id": "minecraft:stripped_dark_oak_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -212, + "id": "minecraft:wood", + "count": 3, + "blockRuntimeId": 7818 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_oak_wooden_slab", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 5 + } + }, + "output": [ + { + "legacyId": 158, + "id": "minecraft:wooden_slab", + "count": 6, + "blockRuntimeId": 7908 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_prismarine", + "type": 1, + "input": { + "A": { + "legacyId": 565, + "id": "minecraft:prismarine_shard", + "damage": 32767 + }, + "B": { + "legacyId": 395, + "id": "minecraft:black_dye" + } + }, + "output": [ + { + "legacyId": 168, + "id": "minecraft:prismarine", + "blockRuntimeId": 6439 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dark_prismarine_from_ink_sac", + "type": 1, + "input": { + "A": { + "legacyId": 565, + "id": "minecraft:prismarine_shard", + "damage": 32767 + }, + "B": { + "legacyId": 413, + "id": "minecraft:ink_sac" + } + }, + "output": [ + { + "legacyId": 168, + "id": "minecraft:prismarine", + "blockRuntimeId": 6439 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:daylight_detector_from_crimson_slab", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 524, + "id": "minecraft:quartz", + "damage": 32767 + }, + "C": { + "legacyId": -264, + "id": "minecraft:crimson_slab", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 151, + "id": "minecraft:daylight_detector", + "blockRuntimeId": 4067 + } + ], + "shape": [ + "AAA", + "BBB", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:daylight_detector_from_warped_slab", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 524, + "id": "minecraft:quartz", + "damage": 32767 + }, + "C": { + "legacyId": -265, + "id": "minecraft:warped_slab", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 151, + "id": "minecraft:daylight_detector", + "blockRuntimeId": 4067 + } + ], + "shape": [ + "AAA", + "BBB", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:deepslate_brick_slab", + "type": 1, + "input": { + "A": { + "legacyId": -391, + "id": "minecraft:deepslate_bricks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -392, + "id": "minecraft:deepslate_brick_slab", + "count": 6, + "blockRuntimeId": 4105 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_brick_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -391, + "id": "minecraft:deepslate_bricks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -393, + "id": "minecraft:deepslate_brick_stairs", + "count": 4, + "blockRuntimeId": 4107 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_brick_wall", + "type": 1, + "input": { + "A": { + "legacyId": -391, + "id": "minecraft:deepslate_bricks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -394, + "id": "minecraft:deepslate_brick_wall", + "count": 6, + "blockRuntimeId": 4115 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_bricks", + "type": 1, + "input": { + "A": { + "legacyId": -383, + "id": "minecraft:polished_deepslate", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -391, + "id": "minecraft:deepslate_bricks", + "count": 4, + "blockRuntimeId": 4277 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_tile_slab", + "type": 1, + "input": { + "A": { + "legacyId": -387, + "id": "minecraft:deepslate_tiles", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -388, + "id": "minecraft:deepslate_tile_slab", + "count": 6, + "blockRuntimeId": 4288 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_tile_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -387, + "id": "minecraft:deepslate_tiles", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -389, + "id": "minecraft:deepslate_tile_stairs", + "count": 4, + "blockRuntimeId": 4290 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_tile_wall", + "type": 1, + "input": { + "A": { + "legacyId": -387, + "id": "minecraft:deepslate_tiles", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -390, + "id": "minecraft:deepslate_tile_wall", + "count": 6, + "blockRuntimeId": 4298 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:deepslate_tiles", + "type": 1, + "input": { + "A": { + "legacyId": -391, + "id": "minecraft:deepslate_bricks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -387, + "id": "minecraft:deepslate_tiles", + "count": 4, + "blockRuntimeId": 4460 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:detector_rail", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 70, + "id": "minecraft:stone_pressure_plate", + "damage": 32767 + }, + "C": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 28, + "id": "minecraft:detector_rail", + "count": 6, + "blockRuntimeId": 4462 + } + ], + "shape": [ + "A A", + "ABA", + "ACA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond", + "type": 1, + "input": { + "A": { + "legacyId": 57, + "id": "minecraft:diamond_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 304, + "id": "minecraft:diamond", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_axe", + "type": 1, + "input": { + "A": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 319, + "id": "minecraft:diamond_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_block", + "type": 1, + "input": { + "A": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 57, + "id": "minecraft:diamond_block", + "blockRuntimeId": 4474 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_boots", + "type": 1, + "input": { + "A": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 350, + "id": "minecraft:diamond_boots" + } + ], + "shape": [ + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_chestplate", + "type": 1, + "input": { + "A": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 348, + "id": "minecraft:diamond_chestplate" + } + ], + "shape": [ + "A A", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_helmet", + "type": 1, + "input": { + "A": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 347, + "id": "minecraft:diamond_helmet" + } + ], + "shape": [ + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_hoe", + "type": 1, + "input": { + "A": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 332, + "id": "minecraft:diamond_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_leggings", + "type": 1, + "input": { + "A": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 349, + "id": "minecraft:diamond_leggings" + } + ], + "shape": [ + "AAA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_pickaxe", + "type": 1, + "input": { + "A": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 318, + "id": "minecraft:diamond_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_shovel", + "type": 1, + "input": { + "A": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 317, + "id": "minecraft:diamond_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diamond_sword", + "type": 1, + "input": { + "A": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 316, + "id": "minecraft:diamond_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diorite", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + "B": { + "legacyId": 524, + "id": "minecraft:quartz", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "count": 2, + "blockRuntimeId": 7183 + } + ], + "shape": [ + "AB", + "BA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diorite_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 3 + } + }, + "output": [ + { + "legacyId": -170, + "id": "minecraft:diorite_stairs", + "count": 4, + "blockRuntimeId": 4476 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:diorite_wall", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 3 + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1322 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dispenser", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + "B": { + "legacyId": 300, + "id": "minecraft:bow", + "damage": 32767 + }, + "C": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 23, + "id": "minecraft:dispenser", + "blockRuntimeId": 4490 + } + ], + "shape": [ + "AAA", + "ABA", + "ACA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dried_kelp", + "type": 1, + "input": { + "A": { + "legacyId": -139, + "id": "minecraft:dried_kelp_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 270, + "id": "minecraft:dried_kelp", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dried_kelp_block", + "type": 1, + "input": { + "A": { + "legacyId": 270, + "id": "minecraft:dried_kelp", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -139, + "id": "minecraft:dried_kelp_block", + "blockRuntimeId": 4584 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dripstone_block", + "type": 1, + "input": { + "A": { + "legacyId": -308, + "id": "minecraft:pointed_dripstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -317, + "id": "minecraft:dripstone_block", + "blockRuntimeId": 4585 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dripstone_block_from_pointed_dripstone", + "type": 1, + "input": { + "A": { + "legacyId": -308, + "id": "minecraft:pointed_dripstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -317, + "id": "minecraft:dripstone_block", + "blockRuntimeId": 4585 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dropper", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + "B": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 125, + "id": "minecraft:dropper", + "blockRuntimeId": 4589 + } + ], + "shape": [ + "AAA", + "A A", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:emerald", + "type": 1, + "input": { + "A": { + "legacyId": 133, + "id": "minecraft:emerald_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 512, + "id": "minecraft:emerald", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:emerald_block", + "type": 1, + "input": { + "A": { + "legacyId": 512, + "id": "minecraft:emerald", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 133, + "id": "minecraft:emerald_block", + "blockRuntimeId": 4717 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:empty_map_to_enhanced", + "type": 0, + "input": [ + { + "legacyId": 515, + "id": "minecraft:empty_map" + }, + { + "legacyId": 391, + "id": "minecraft:compass", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 515, + "id": "minecraft:empty_map", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:enchanting_table", + "type": 1, + "input": { + "A": { + "legacyId": 387, + "id": "minecraft:book", + "damage": 32767 + }, + "B": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + }, + "C": { + "legacyId": 49, + "id": "minecraft:obsidian", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 116, + "id": "minecraft:enchanting_table", + "blockRuntimeId": 4719 + } + ], + "shape": [ + " A ", + "BCB", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:end_brick_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 206, + "id": "minecraft:end_bricks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -178, + "id": "minecraft:end_brick_stairs", + "count": 4, + "blockRuntimeId": 4720 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:end_brick_wall", + "type": 1, + "input": { + "A": { + "legacyId": 206, + "id": "minecraft:end_bricks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1329 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:end_bricks", + "type": 1, + "input": { + "A": { + "legacyId": 121, + "id": "minecraft:end_stone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 206, + "id": "minecraft:end_bricks", + "count": 4, + "blockRuntimeId": 4728 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:end_crystal", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 433, + "id": "minecraft:ender_eye", + "damage": 32767 + }, + "C": { + "legacyId": 424, + "id": "minecraft:ghast_tear", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 629, + "id": "minecraft:end_crystal" + } + ], + "shape": [ + "AAA", + "ABA", + "ACA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:end_rod", + "type": 1, + "input": { + "A": { + "legacyId": 423, + "id": "minecraft:blaze_rod", + "damage": 32767 + }, + "B": { + "legacyId": 559, + "id": "minecraft:popped_chorus_fruit", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 208, + "id": "minecraft:end_rod", + "count": 4, + "blockRuntimeId": 4739 + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:ender_chest", + "type": 1, + "input": { + "A": { + "legacyId": 49, + "id": "minecraft:obsidian", + "damage": 32767 + }, + "B": { + "legacyId": 433, + "id": "minecraft:ender_eye", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 130, + "id": "minecraft:ender_chest", + "blockRuntimeId": 4746 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:ender_eye", + "type": 0, + "input": [ + { + "legacyId": 422, + "id": "minecraft:ender_pearl", + "damage": 32767 + }, + { + "legacyId": 429, + "id": "minecraft:blaze_powder", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 433, + "id": "minecraft:ender_eye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:fence", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks" + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 85, + "id": "minecraft:fence", + "count": 3, + "blockRuntimeId": 4774 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:fence_gate", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks" + } + }, + "output": [ + { + "legacyId": 107, + "id": "minecraft:fence_gate", + "blockRuntimeId": 4780 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:fermented_spider_eye", + "type": 0, + "input": [ + { + "legacyId": 278, + "id": "minecraft:spider_eye", + "damage": 32767 + }, + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 416, + "id": "minecraft:sugar", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 428, + "id": "minecraft:fermented_spider_eye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:fishing_rod", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 326, + "id": "minecraft:string", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 392, + "id": "minecraft:fishing_rod" + } + ], + "shape": [ + " A", + " AB", + "A B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:fletching_table", + "type": 1, + "input": { + "A": { + "legacyId": 356, + "id": "minecraft:flint", + "damage": 32767 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -201, + "id": "minecraft:fletching_table", + "blockRuntimeId": 4812 + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:fletching_table_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": 356, + "id": "minecraft:flint", + "damage": 32767 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -201, + "id": "minecraft:fletching_table", + "blockRuntimeId": 4812 + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:fletching_table_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": 356, + "id": "minecraft:flint", + "damage": 32767 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -201, + "id": "minecraft:fletching_table", + "blockRuntimeId": 4812 + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:flint_and_steel", + "type": 0, + "input": [ + { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + { + "legacyId": 356, + "id": "minecraft:flint", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 299, + "id": "minecraft:flint_and_steel" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:flower_pot", + "type": 1, + "input": { + "A": { + "legacyId": 383, + "id": "minecraft:brick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 514, + "id": "minecraft:flower_pot" + } + ], + "shape": [ + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:furnace", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 61, + "id": "minecraft:furnace", + "blockRuntimeId": 4876 + } + ], + "shape": [ + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:furnace_from_blackstone", + "type": 1, + "input": { + "A": { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 61, + "id": "minecraft:furnace", + "blockRuntimeId": 4876 + } + ], + "shape": [ + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:furnace_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 61, + "id": "minecraft:furnace", + "blockRuntimeId": 4876 + } + ], + "shape": [ + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:glass_bottle", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 427, + "id": "minecraft:glass_bottle", + "count": 3 + } + ], + "shape": [ + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 102, + "id": "minecraft:glass_pane", + "count": 16, + "blockRuntimeId": 4884 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:glow_frame", + "type": 0, + "input": [ + { + "legacyId": 513, + "id": "minecraft:frame", + "damage": 32767 + }, + { + "legacyId": 503, + "id": "minecraft:glow_ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 621, + "id": "minecraft:glow_frame" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:glowstone", + "type": 1, + "input": { + "A": { + "legacyId": 394, + "id": "minecraft:glowstone_dust", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 89, + "id": "minecraft:glowstone", + "blockRuntimeId": 4974 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gold_block", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 41, + "id": "minecraft:gold_block", + "blockRuntimeId": 4975 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gold_ingot_from_block", + "type": 1, + "input": { + "A": { + "legacyId": 41, + "id": "minecraft:gold_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gold_ingot_from_nuggets", + "type": 1, + "input": { + "A": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 306, + "id": "minecraft:gold_ingot" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gold_nugget", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_apple", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 257, + "id": "minecraft:apple", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 258, + "id": "minecraft:golden_apple" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_axe", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 325, + "id": "minecraft:golden_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_boots", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 354, + "id": "minecraft:golden_boots" + } + ], + "shape": [ + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_carrot", + "type": 1, + "input": { + "A": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "B": { + "legacyId": 279, + "id": "minecraft:carrot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 283, + "id": "minecraft:golden_carrot" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_chestplate", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 352, + "id": "minecraft:golden_chestplate" + } + ], + "shape": [ + "A A", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_helmet", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 351, + "id": "minecraft:golden_helmet" + } + ], + "shape": [ + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_hoe", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 333, + "id": "minecraft:golden_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_leggings", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 353, + "id": "minecraft:golden_leggings" + } + ], + "shape": [ + "AAA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_pickaxe", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 324, + "id": "minecraft:golden_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_rail", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "C": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 27, + "id": "minecraft:golden_rail", + "count": 6, + "blockRuntimeId": 4977 + } + ], + "shape": [ + "A A", + "ABA", + "ACA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_shovel", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 323, + "id": "minecraft:golden_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:golden_sword", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 322, + "id": "minecraft:golden_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:granite", + "type": 0, + "input": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 3 + }, + { + "legacyId": 524, + "id": "minecraft:quartz", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "blockRuntimeId": 7181 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:granite_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 1 + } + }, + "output": [ + { + "legacyId": -169, + "id": "minecraft:granite_stairs", + "count": 4, + "blockRuntimeId": 4989 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:granite_wall", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1321 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 8 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye" + } + ], + "output": [ + { + "legacyId": -420, + "id": "minecraft:gray_candle", + "blockRuntimeId": 5000 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 970 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 403, + "id": "minecraft:gray_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 970 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3667 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_dye", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "output": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_dye_from_black_bonemeal", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:gray_dye_from_ink_bonemeal", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 3 + }, + { + "id": "minecraft:gray_dye_from_ink_white", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "output": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:gray_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 403, + "id": "minecraft:gray_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7095 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 7 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7111 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 403, + "id": "minecraft:gray_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7111 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:gray_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 403, + "id": "minecraft:gray_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7127 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 2 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye" + } + ], + "output": [ + { + "legacyId": -426, + "id": "minecraft:green_candle", + "blockRuntimeId": 5016 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 976 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 397, + "id": "minecraft:green_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 976 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3673 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 397, + "id": "minecraft:green_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7101 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 13 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7117 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 397, + "id": "minecraft:green_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7117 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 397, + "id": "minecraft:green_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7133 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:grindstone", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -166, + "id": "minecraft:double_stone_slab4", + "damage": 2 + }, + "C": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone", + "blockRuntimeId": 5032 + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:grindstone_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "damage": 32767 + }, + "C": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone", + "blockRuntimeId": 5032 + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_crimson_planks2", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "damage": 32767 + }, + "C": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone", + "blockRuntimeId": 5032 + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_crimson_planks3", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "damage": 32767 + }, + "C": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone", + "blockRuntimeId": 5032 + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_crimson_planks4", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -166, + "id": "minecraft:double_stone_slab4", + "damage": 32767 + }, + "C": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone", + "blockRuntimeId": 5032 + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "damage": 32767 + }, + "C": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone", + "blockRuntimeId": 5032 + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_warped_planks2", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "damage": 32767 + }, + "C": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone", + "blockRuntimeId": 5032 + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_warped_planks3", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "damage": 32767 + }, + "C": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone", + "blockRuntimeId": 5032 + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:grindstone_from_warped_planks4", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -166, + "id": "minecraft:double_stone_slab4", + "damage": 32767 + }, + "C": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone", + "blockRuntimeId": 5032 + } + ], + "shape": [ + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:hay_block", + "type": 1, + "input": { + "A": { + "legacyId": 334, + "id": "minecraft:wheat", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 170, + "id": "minecraft:hay_block", + "blockRuntimeId": 5084 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:heavy_weighted_pressure_plate", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 148, + "id": "minecraft:heavy_weighted_pressure_plate", + "blockRuntimeId": 5096 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:honey_block", + "type": 1, + "input": { + "A": { + "legacyId": 591, + "id": "minecraft:honey_bottle", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -220, + "id": "minecraft:honey_block", + "blockRuntimeId": 5112 + }, + { + "legacyId": 427, + "id": "minecraft:glass_bottle", + "count": 4 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:honey_bottle", + "type": 0, + "input": [ + { + "legacyId": -220, + "id": "minecraft:honey_block", + "damage": 32767 + }, + { + "legacyId": 427, + "id": "minecraft:glass_bottle", + "damage": 32767 + }, + { + "legacyId": 427, + "id": "minecraft:glass_bottle", + "damage": 32767 + }, + { + "legacyId": 427, + "id": "minecraft:glass_bottle", + "damage": 32767 + }, + { + "legacyId": 427, + "id": "minecraft:glass_bottle", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 591, + "id": "minecraft:honey_bottle", + "count": 4 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:honey_bottle_to_sugar", + "type": 1, + "input": { + "A": { + "legacyId": 591, + "id": "minecraft:honey_bottle", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 416, + "id": "minecraft:sugar", + "count": 3 + }, + { + "legacyId": 427, + "id": "minecraft:glass_bottle" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:honeycomb_block", + "type": 1, + "input": { + "A": { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -221, + "id": "minecraft:honeycomb_block", + "blockRuntimeId": 5113 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:hopper", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 54, + "id": "minecraft:chest", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 527, + "id": "minecraft:hopper" + } + ], + "shape": [ + "A A", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:hopper_minecart", + "type": 1, + "input": { + "A": { + "legacyId": 527, + "id": "minecraft:hopper", + "damage": 32767 + }, + "B": { + "legacyId": 370, + "id": "minecraft:minecart", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 526, + "id": "minecraft:hopper_minecart" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:ingots_from_copper", + "type": 1, + "input": { + "A": { + "legacyId": -340, + "id": "minecraft:copper_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:ingots_from_waxed_copper", + "type": 1, + "input": { + "A": { + "legacyId": -344, + "id": "minecraft:waxed_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:iron_axe", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 298, + "id": "minecraft:iron_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_bars", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 101, + "id": "minecraft:iron_bars", + "count": 16, + "blockRuntimeId": 5133 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_block", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 42, + "id": "minecraft:iron_block", + "blockRuntimeId": 5134 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_boots", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 346, + "id": "minecraft:iron_boots" + } + ], + "shape": [ + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_chestplate", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 344, + "id": "minecraft:iron_chestplate" + } + ], + "shape": [ + "A A", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_door", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 372, + "id": "minecraft:iron_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_helmet", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 343, + "id": "minecraft:iron_helmet" + } + ], + "shape": [ + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_hoe", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 331, + "id": "minecraft:iron_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_ingot_from_block", + "type": 1, + "input": { + "A": { + "legacyId": 42, + "id": "minecraft:iron_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_ingot_from_nuggets", + "type": 1, + "input": { + "A": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 305, + "id": "minecraft:iron_ingot" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_leggings", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 345, + "id": "minecraft:iron_leggings" + } + ], + "shape": [ + "AAA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_nugget", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_pickaxe", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 297, + "id": "minecraft:iron_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_shovel", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 296, + "id": "minecraft:iron_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_sword", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 307, + "id": "minecraft:iron_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:iron_trapdoor", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 167, + "id": "minecraft:iron_trapdoor", + "blockRuntimeId": 5168 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:item_frame", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 381, + "id": "minecraft:leather", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 513, + "id": "minecraft:frame" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jukebox_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 84, + "id": "minecraft:jukebox", + "blockRuntimeId": 5208 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:jukebox_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 84, + "id": "minecraft:jukebox", + "blockRuntimeId": 5208 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:jungle_boat", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 3 + }, + "B": { + "legacyId": 309, + "id": "minecraft:wooden_shovel", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 377, + "id": "minecraft:jungle_boat" + } + ], + "shape": [ + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_door", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 3 + } + }, + "output": [ + { + "legacyId": 555, + "id": "minecraft:jungle_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_fence", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 3 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 85, + "id": "minecraft:fence", + "count": 3, + "blockRuntimeId": 4777 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_fence_gate", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 3 + } + }, + "output": [ + { + "legacyId": 185, + "id": "minecraft:jungle_fence_gate", + "blockRuntimeId": 5253 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_planks", + "type": 1, + "input": { + "A": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 3 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5800 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_planks_from_stripped", + "type": 1, + "input": { + "A": { + "legacyId": -7, + "id": "minecraft:stripped_jungle_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5800 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 11 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5800 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_planks_from_wood", + "type": 1, + "input": { + "A": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 3 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5800 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 3 + } + }, + "output": [ + { + "legacyId": 136, + "id": "minecraft:jungle_stairs", + "count": 4, + "blockRuntimeId": 5285 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_wood", + "type": 1, + "input": { + "A": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 3 + } + }, + "output": [ + { + "legacyId": -212, + "id": "minecraft:wood", + "count": 3, + "blockRuntimeId": 7810 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_wood_stripped", + "type": 1, + "input": { + "A": { + "legacyId": -7, + "id": "minecraft:stripped_jungle_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -212, + "id": "minecraft:wood", + "count": 3, + "blockRuntimeId": 7816 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:jungle_wooden_slab", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 3 + } + }, + "output": [ + { + "legacyId": 158, + "id": "minecraft:wooden_slab", + "count": 6, + "blockRuntimeId": 7906 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:ladder", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 65, + "id": "minecraft:ladder", + "count": 3, + "blockRuntimeId": 5357 + } + ], + "shape": [ + "A A", + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lantern", + "type": 1, + "input": { + "A": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "B": { + "legacyId": 50, + "id": "minecraft:torch", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -208, + "id": "minecraft:lantern", + "blockRuntimeId": 5363 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lapis_block", + "type": 1, + "input": { + "A": { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + } + }, + "output": [ + { + "legacyId": 22, + "id": "minecraft:lapis_block", + "blockRuntimeId": 5365 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lapis_lazuli", + "type": 1, + "input": { + "A": { + "legacyId": 22, + "id": "minecraft:lapis_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lead", + "type": 1, + "input": { + "A": { + "legacyId": 326, + "id": "minecraft:string", + "damage": 32767 + }, + "B": { + "legacyId": 388, + "id": "minecraft:slime_ball", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 547, + "id": "minecraft:lead", + "count": 2 + } + ], + "shape": [ + "AA ", + "AB ", + " A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:leather", + "type": 1, + "input": { + "A": { + "legacyId": 529, + "id": "minecraft:rabbit_hide", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 381, + "id": "minecraft:leather" + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:leather_boots", + "type": 1, + "input": { + "A": { + "legacyId": 381, + "id": "minecraft:leather", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 338, + "id": "minecraft:leather_boots" + } + ], + "shape": [ + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:leather_chestplate", + "type": 1, + "input": { + "A": { + "legacyId": 381, + "id": "minecraft:leather", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 336, + "id": "minecraft:leather_chestplate" + } + ], + "shape": [ + "A A", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:leather_helmet", + "type": 1, + "input": { + "A": { + "legacyId": 381, + "id": "minecraft:leather", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 335, + "id": "minecraft:leather_helmet" + } + ], + "shape": [ + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:leather_horse_armor", + "type": 1, + "input": { + "A": { + "legacyId": 381, + "id": "minecraft:leather", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 530, + "id": "minecraft:leather_horse_armor" + } + ], + "shape": [ + "A A", + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:leather_leggings", + "type": 1, + "input": { + "A": { + "legacyId": 381, + "id": "minecraft:leather", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 337, + "id": "minecraft:leather_leggings" + } + ], + "shape": [ + "AAA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lectern", + "type": 1, + "input": { + "A": { + "legacyId": 158, + "id": "minecraft:wooden_slab", + "damage": 32767 + }, + "B": { + "legacyId": 47, + "id": "minecraft:bookshelf", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -194, + "id": "minecraft:lectern", + "blockRuntimeId": 5434 + } + ], + "shape": [ + "AAA", + " B ", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lectern_from_crimson_slab", + "type": 1, + "input": { + "A": { + "legacyId": -264, + "id": "minecraft:crimson_slab", + "damage": 32767 + }, + "B": { + "legacyId": 47, + "id": "minecraft:bookshelf", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -194, + "id": "minecraft:lectern", + "blockRuntimeId": 5434 + } + ], + "shape": [ + "AAA", + " B ", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:lectern_from_warped_slab", + "type": 1, + "input": { + "A": { + "legacyId": -265, + "id": "minecraft:warped_slab", + "damage": 32767 + }, + "B": { + "legacyId": 47, + "id": "minecraft:bookshelf", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -194, + "id": "minecraft:lectern", + "blockRuntimeId": 5434 + } + ], + "shape": [ + "AAA", + " B ", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:lever", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 69, + "id": "minecraft:lever", + "blockRuntimeId": 5442 + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 12 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye" + } + ], + "output": [ + { + "legacyId": -416, + "id": "minecraft:light_blue_candle", + "blockRuntimeId": 5474 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 966 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 407, + "id": "minecraft:light_blue_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 966 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3663 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_dye", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "output": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:light_blue_dye_from_blue_bonemeal", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:light_blue_dye_from_blue_orchid", + "type": 0, + "input": [ + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_dye_from_lapis_bonemeal", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 4 + }, + { + "id": "minecraft:light_blue_dye_from_lapis_white", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "output": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 3 + }, + { + "id": "minecraft:light_blue_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 407, + "id": "minecraft:light_blue_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7091 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 3 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7107 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 407, + "id": "minecraft:light_blue_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7107 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_blue_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 407, + "id": "minecraft:light_blue_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7123 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray__carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 402, + "id": "minecraft:light_gray_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 971 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 7 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye" + } + ], + "output": [ + { + "legacyId": -421, + "id": "minecraft:light_gray_candle", + "blockRuntimeId": 5490 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 971 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3668 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_dye", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "output": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "count": 3 + } + ], + "block": "crafting_table", + "priority": 3 + }, + { + "id": "minecraft:light_gray_dye_from_azure_bluet", + "type": 0, + "input": [ + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye" + } + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:light_gray_dye_from_black_bonemeal", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "count": 3 + } + ], + "block": "crafting_table", + "priority": 7 + }, + { + "id": "minecraft:light_gray_dye_from_gray_bonemeal", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 6 + }, + { + "id": "minecraft:light_gray_dye_from_gray_white", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "output": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 4 + }, + { + "id": "minecraft:light_gray_dye_from_ink_bonemeal", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "count": 3 + } + ], + "block": "crafting_table", + "priority": 8 + }, + { + "id": "minecraft:light_gray_dye_from_ink_white", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "output": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "count": 3 + } + ], + "block": "crafting_table", + "priority": 5 + }, + { + "id": "minecraft:light_gray_dye_from_oxeye_daisy", + "type": 0, + "input": [ + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 8 + } + ], + "output": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:light_gray_dye_from_white_tulip", + "type": 0, + "input": [ + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 6 + } + ], + "output": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 402, + "id": "minecraft:light_gray_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7096 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 8 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7112 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 402, + "id": "minecraft:light_gray_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7112 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_gray_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 402, + "id": "minecraft:light_gray_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7128 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_weighted_pressure_plate", + "type": 1, + "input": { + "A": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 147, + "id": "minecraft:light_weighted_pressure_plate", + "blockRuntimeId": 5500 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lightning_rod", + "type": 1, + "input": { + "A": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -312, + "id": "minecraft:lightning_rod", + "blockRuntimeId": 5516 + } + ], + "shape": [ + "A", + "A", + "A" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:lime__carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 405, + "id": "minecraft:lime_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 968 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 10 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye" + } + ], + "output": [ + { + "legacyId": -418, + "id": "minecraft:lime_candle", + "blockRuntimeId": 5522 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 968 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3665 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_dye", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "output": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_dye_from_bonemeal", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:lime_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 405, + "id": "minecraft:lime_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7093 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 5 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7109 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 405, + "id": "minecraft:lime_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7109 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 405, + "id": "minecraft:lime_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7125 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lit_pumpkin", + "type": 1, + "input": { + "A": { + "legacyId": -155, + "id": "minecraft:carved_pumpkin", + "damage": 32767 + }, + "B": { + "legacyId": 50, + "id": "minecraft:torch", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 91, + "id": "minecraft:lit_pumpkin", + "blockRuntimeId": 5551 + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:locator_map", + "type": 1, + "input": { + "A": { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + "B": { + "legacyId": 391, + "id": "minecraft:compass", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 515, + "id": "minecraft:empty_map", + "damage": 2 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lodestone", + "type": 1, + "input": { + "A": { + "legacyId": 98, + "id": "minecraft:stonebrick", + "damage": 3 + }, + "B": { + "legacyId": 601, + "id": "minecraft:netherite_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -222, + "id": "minecraft:lodestone", + "blockRuntimeId": 5563 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:loom_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": 326, + "id": "minecraft:string", + "damage": 32767 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -204, + "id": "minecraft:loom", + "blockRuntimeId": 5582 + } + ], + "shape": [ + "AA", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:loom_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": 326, + "id": "minecraft:string", + "damage": 32767 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -204, + "id": "minecraft:loom", + "blockRuntimeId": 5582 + } + ], + "shape": [ + "AA", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:magenta_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 13 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye" + } + ], + "output": [ + { + "legacyId": -415, + "id": "minecraft:magenta_candle", + "blockRuntimeId": 5586 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 965 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 408, + "id": "minecraft:magenta_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 965 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3662 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_dye", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye" + } + ], + "output": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "count": 3 + } + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:magenta_dye_from_allium", + "type": 0, + "input": [ + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 2 + } + ], + "output": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye" + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:magenta_dye_from_blue_ink_bonemeal", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "count": 4 + } + ], + "block": "crafting_table", + "priority": 6 + }, + { + "id": "minecraft:magenta_dye_from_blue_ink_white", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "output": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "count": 4 + } + ], + "block": "crafting_table", + "priority": 4 + }, + { + "id": "minecraft:magenta_dye_from_lapis_ink_bonemeal", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "count": 4 + } + ], + "block": "crafting_table", + "priority": 8 + }, + { + "id": "minecraft:magenta_dye_from_lapis_ink_white", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "output": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "count": 4 + } + ], + "block": "crafting_table", + "priority": 7 + }, + { + "id": "minecraft:magenta_dye_from_lapis_red_pink", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye" + } + ], + "output": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "count": 3 + } + ], + "block": "crafting_table", + "priority": 5 + }, + { + "id": "minecraft:magenta_dye_from_lilac", + "type": 0, + "input": [ + { + "legacyId": 175, + "id": "minecraft:double_plant", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_dye_from_purple_and_pink", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye" + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye" + } + ], + "output": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 3 + }, + { + "id": "minecraft:magenta_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 408, + "id": "minecraft:magenta_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7090 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 2 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7106 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 408, + "id": "minecraft:magenta_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7106 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magenta_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 408, + "id": "minecraft:magenta_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7122 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magma", + "type": 1, + "input": { + "A": { + "legacyId": 430, + "id": "minecraft:magma_cream", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 213, + "id": "minecraft:magma", + "blockRuntimeId": 5602 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:magma_cream", + "type": 0, + "input": [ + { + "legacyId": 429, + "id": "minecraft:blaze_powder", + "damage": 32767 + }, + { + "legacyId": 388, + "id": "minecraft:slime_ball", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 430, + "id": "minecraft:magma_cream" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:map", + "type": 1, + "input": { + "A": { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 515, + "id": "minecraft:empty_map" + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:melon_block", + "type": 1, + "input": { + "A": { + "legacyId": 272, + "id": "minecraft:melon_slice", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 103, + "id": "minecraft:melon_block", + "blockRuntimeId": 5609 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:melon_seeds", + "type": 1, + "input": { + "A": { + "legacyId": 272, + "id": "minecraft:melon_slice", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 293, + "id": "minecraft:melon_seeds" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:minecart", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 370, + "id": "minecraft:minecart" + } + ], + "shape": [ + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:moss_carpet", + "type": 1, + "input": { + "A": { + "legacyId": -320, + "id": "minecraft:moss_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -335, + "id": "minecraft:moss_carpet", + "count": 3, + "blockRuntimeId": 5666 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_cobblestone", + "type": 0, + "input": [ + { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + { + "legacyId": 106, + "id": "minecraft:vine", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 48, + "id": "minecraft:mossy_cobblestone", + "blockRuntimeId": 5667 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_cobblestone_from_moss", + "type": 0, + "input": [ + { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + { + "legacyId": -320, + "id": "minecraft:moss_block", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 48, + "id": "minecraft:mossy_cobblestone", + "blockRuntimeId": 5667 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_cobblestone_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 48, + "id": "minecraft:mossy_cobblestone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -179, + "id": "minecraft:mossy_cobblestone_stairs", + "count": 4, + "blockRuntimeId": 5668 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_cobblestone_wall", + "type": 1, + "input": { + "A": { + "legacyId": 48, + "id": "minecraft:mossy_cobblestone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1320 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_stone_brick_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 98, + "id": "minecraft:stonebrick", + "damage": 1 + } + }, + "output": [ + { + "legacyId": -175, + "id": "minecraft:mossy_stone_brick_stairs", + "count": 4, + "blockRuntimeId": 5676 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_stone_brick_wall", + "type": 1, + "input": { + "A": { + "legacyId": 98, + "id": "minecraft:stonebrick", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1327 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_stonebrick", + "type": 0, + "input": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick" + }, + { + "legacyId": 106, + "id": "minecraft:vine", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick", + "blockRuntimeId": 7290 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_stonebrick_from_moss", + "type": 0, + "input": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick" + }, + { + "legacyId": -320, + "id": "minecraft:moss_block", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick", + "blockRuntimeId": 7290 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mushroom_stew", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 260, + "id": "minecraft:mushroom_stew" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:nether_brick", + "type": 1, + "input": { + "A": { + "legacyId": 523, + "id": "minecraft:netherbrick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 112, + "id": "minecraft:nether_brick", + "blockRuntimeId": 5688 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:nether_brick_fence", + "type": 1, + "input": { + "A": { + "legacyId": 112, + "id": "minecraft:nether_brick", + "damage": 32767 + }, + "B": { + "legacyId": 523, + "id": "minecraft:netherbrick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 113, + "id": "minecraft:nether_brick_fence", + "count": 6, + "blockRuntimeId": 5689 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:nether_brick_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 112, + "id": "minecraft:nether_brick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 114, + "id": "minecraft:nether_brick_stairs", + "count": 4, + "blockRuntimeId": 5690 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:nether_brick_wall", + "type": 1, + "input": { + "A": { + "legacyId": 112, + "id": "minecraft:nether_brick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1328 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:nether_wart_block", + "type": 1, + "input": { + "A": { + "legacyId": 294, + "id": "minecraft:nether_wart", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 214, + "id": "minecraft:nether_wart_block", + "blockRuntimeId": 5704 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:netherite_block", + "type": 1, + "input": { + "A": { + "legacyId": 601, + "id": "minecraft:netherite_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -270, + "id": "minecraft:netherite_block", + "blockRuntimeId": 5705 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:netherite_ingot", + "type": 0, + "input": [ + { + "legacyId": 611, + "id": "minecraft:netherite_scrap", + "damage": 32767 + }, + { + "legacyId": 611, + "id": "minecraft:netherite_scrap", + "damage": 32767 + }, + { + "legacyId": 611, + "id": "minecraft:netherite_scrap", + "damage": 32767 + }, + { + "legacyId": 611, + "id": "minecraft:netherite_scrap", + "damage": 32767 + }, + { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 601, + "id": "minecraft:netherite_ingot" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:netherite_ingot_from_block", + "type": 1, + "input": { + "A": { + "legacyId": -270, + "id": "minecraft:netherite_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 601, + "id": "minecraft:netherite_ingot", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:noteblock_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 25, + "id": "minecraft:noteblock", + "blockRuntimeId": 5716 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:noteblock_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 25, + "id": "minecraft:noteblock", + "blockRuntimeId": 5716 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:oak_planks", + "type": 1, + "input": { + "A": { + "legacyId": 17, + "id": "minecraft:log" + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5797 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_planks_from_stripped", + "type": 1, + "input": { + "A": { + "legacyId": -10, + "id": "minecraft:stripped_oak_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5797 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 8 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5797 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_planks_from_wood", + "type": 1, + "input": { + "A": { + "legacyId": -212, + "id": "minecraft:wood" + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5797 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks" + } + }, + "output": [ + { + "legacyId": 53, + "id": "minecraft:oak_stairs", + "count": 4, + "blockRuntimeId": 5717 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_wood", + "type": 1, + "input": { + "A": { + "legacyId": 17, + "id": "minecraft:log" + } + }, + "output": [ + { + "legacyId": -212, + "id": "minecraft:wood", + "count": 3, + "blockRuntimeId": 7807 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_wood_stripped", + "type": 1, + "input": { + "A": { + "legacyId": -10, + "id": "minecraft:stripped_oak_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -212, + "id": "minecraft:wood", + "count": 3, + "blockRuntimeId": 7813 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_wooden_slab", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks" + } + }, + "output": [ + { + "legacyId": 158, + "id": "minecraft:wooden_slab", + "count": 6, + "blockRuntimeId": 7903 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:observer", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + "B": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + }, + "C": { + "legacyId": 524, + "id": "minecraft:quartz", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 251, + "id": "minecraft:observer", + "blockRuntimeId": 5725 + } + ], + "shape": [ + "AAA", + "BBC", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 14 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye" + } + ], + "output": [ + { + "legacyId": -414, + "id": "minecraft:orange_candle", + "blockRuntimeId": 5738 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 964 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 409, + "id": "minecraft:orange_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 964 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3661 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_dye_from_orange_tulip", + "type": 0, + "input": [ + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_dye_from_red_yellow", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye" + } + ], + "output": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 409, + "id": "minecraft:orange_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7089 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7105 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 409, + "id": "minecraft:orange_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7105 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:orange_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 409, + "id": "minecraft:orange_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7121 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:packed_ice", + "type": 1, + "input": { + "A": { + "legacyId": 79, + "id": "minecraft:ice", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 174, + "id": "minecraft:packed_ice", + "blockRuntimeId": 5768 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:paper", + "type": 1, + "input": { + "A": { + "legacyId": 385, + "id": "minecraft:sugar_cane", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "count": 3 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pillar_quartz_block", + "type": 1, + "input": { + "A": { + "legacyId": 155, + "id": "minecraft:quartz_block" + } + }, + "output": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block", + "count": 2, + "blockRuntimeId": 6547 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 9 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye" + } + ], + "output": [ + { + "legacyId": -419, + "id": "minecraft:pink_candle", + "blockRuntimeId": 5769 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 969 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 404, + "id": "minecraft:pink_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 969 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3666 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_dye", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "output": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_dye_from_peony", + "type": 0, + "input": [ + { + "legacyId": 175, + "id": "minecraft:double_plant", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_dye_from_pink_tulip", + "type": 0, + "input": [ + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 7 + } + ], + "output": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_dye_from_red_bonemeal", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 404, + "id": "minecraft:pink_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7094 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 6 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7110 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 404, + "id": "minecraft:pink_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7110 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pink_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 404, + "id": "minecraft:pink_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7126 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:piston_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + "C": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "D": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 33, + "id": "minecraft:piston", + "blockRuntimeId": 5786 + } + ], + "shape": [ + "AAA", + "BCB", + "BDB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:piston_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + "C": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "D": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 33, + "id": "minecraft:piston", + "blockRuntimeId": 5786 + } + ], + "shape": [ + "AAA", + "BCB", + "BDB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:polished_andesite", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 5 + } + }, + "output": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "count": 4, + "blockRuntimeId": 7186 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_andesite_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 6 + } + }, + "output": [ + { + "legacyId": -174, + "id": "minecraft:polished_andesite_stairs", + "count": 4, + "blockRuntimeId": 5814 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_basalt", + "type": 1, + "input": { + "A": { + "legacyId": -234, + "id": "minecraft:basalt", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -235, + "id": "minecraft:polished_basalt", + "count": 4, + "blockRuntimeId": 5822 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone", + "type": 1, + "input": { + "A": { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "count": 4, + "blockRuntimeId": 5825 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_brick_slab", + "type": 1, + "input": { + "A": { + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -284, + "id": "minecraft:polished_blackstone_brick_slab", + "count": 6, + "blockRuntimeId": 5828 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_brick_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -275, + "id": "minecraft:polished_blackstone_brick_stairs", + "count": 4, + "blockRuntimeId": 5830 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_brick_wall", + "type": 1, + "input": { + "A": { + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -278, + "id": "minecraft:polished_blackstone_brick_wall", + "count": 6, + "blockRuntimeId": 5838 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_bricks", + "type": 1, + "input": { + "A": { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks", + "count": 4, + "blockRuntimeId": 6000 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_button", + "type": 1, + "input": { + "A": { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -296, + "id": "minecraft:polished_blackstone_button", + "blockRuntimeId": 6001 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_pressure_plate", + "type": 1, + "input": { + "A": { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -295, + "id": "minecraft:polished_blackstone_pressure_plate", + "blockRuntimeId": 6015 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_slab", + "type": 1, + "input": { + "A": { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -293, + "id": "minecraft:polished_blackstone_slab", + "count": 6, + "blockRuntimeId": 6031 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -292, + "id": "minecraft:polished_blackstone_stairs", + "count": 4, + "blockRuntimeId": 6033 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_wall", + "type": 1, + "input": { + "A": { + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -297, + "id": "minecraft:polished_blackstone_wall", + "count": 6, + "blockRuntimeId": 6041 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate", + "type": 1, + "input": { + "A": { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate", + "count": 4, + "blockRuntimeId": 6203 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:polished_deepslate_slab", + "type": 1, + "input": { + "A": { + "legacyId": -383, + "id": "minecraft:polished_deepslate", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -384, + "id": "minecraft:polished_deepslate_slab", + "count": 6, + "blockRuntimeId": 6206 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:polished_deepslate_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -383, + "id": "minecraft:polished_deepslate", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -385, + "id": "minecraft:polished_deepslate_stairs", + "count": 4, + "blockRuntimeId": 6208 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:polished_deepslate_wall", + "type": 1, + "input": { + "A": { + "legacyId": -383, + "id": "minecraft:polished_deepslate", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -386, + "id": "minecraft:polished_deepslate_wall", + "count": 6, + "blockRuntimeId": 6216 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:polished_diorite", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 3 + } + }, + "output": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "count": 4, + "blockRuntimeId": 7184 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_diorite_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 4 + } + }, + "output": [ + { + "legacyId": -173, + "id": "minecraft:polished_diorite_stairs", + "count": 4, + "blockRuntimeId": 6378 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_granite", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 1, + "id": "minecraft:stone", + "count": 4, + "blockRuntimeId": 7182 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_granite_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 2 + } + }, + "output": [ + { + "legacyId": -172, + "id": "minecraft:polished_granite_stairs", + "count": 4, + "blockRuntimeId": 6386 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:prismarine", + "type": 1, + "input": { + "A": { + "legacyId": 565, + "id": "minecraft:prismarine_shard", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 168, + "id": "minecraft:prismarine", + "blockRuntimeId": 6438 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:prismarine_bricks", + "type": 1, + "input": { + "A": { + "legacyId": 565, + "id": "minecraft:prismarine_shard", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 168, + "id": "minecraft:prismarine", + "blockRuntimeId": 6440 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:prismarine_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 168, + "id": "minecraft:prismarine" + } + }, + "output": [ + { + "legacyId": -2, + "id": "minecraft:prismarine_stairs", + "count": 4, + "blockRuntimeId": 6449 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:prismarine_stairs_bricks", + "type": 1, + "input": { + "A": { + "legacyId": 168, + "id": "minecraft:prismarine", + "damage": 2 + } + }, + "output": [ + { + "legacyId": -4, + "id": "minecraft:prismarine_bricks_stairs", + "count": 4, + "blockRuntimeId": 6441 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:prismarine_stairs_dark", + "type": 1, + "input": { + "A": { + "legacyId": 168, + "id": "minecraft:prismarine", + "damage": 1 + } + }, + "output": [ + { + "legacyId": -3, + "id": "minecraft:dark_prismarine_stairs", + "count": 4, + "blockRuntimeId": 4037 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:prismarine_wall", + "type": 1, + "input": { + "A": { + "legacyId": 168, + "id": "minecraft:prismarine" + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1330 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pumpkin_pie", + "type": 0, + "input": [ + { + "legacyId": 86, + "id": "minecraft:pumpkin", + "damage": 32767 + }, + { + "legacyId": 416, + "id": "minecraft:sugar", + "damage": 32767 + }, + { + "legacyId": 390, + "id": "minecraft:egg", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 284, + "id": "minecraft:pumpkin_pie" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:pumpkin_seeds", + "type": 1, + "input": { + "A": { + "legacyId": 86, + "id": "minecraft:pumpkin", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 292, + "id": "minecraft:pumpkin_seeds", + "count": 4 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 5 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye" + } + ], + "output": [ + { + "legacyId": -423, + "id": "minecraft:purple_candle", + "blockRuntimeId": 6509 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 973 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 400, + "id": "minecraft:purple_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 973 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3670 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_dye", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + } + ], + "output": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_dye_from_lapis_lazuli", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + } + ], + "output": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:purple_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 400, + "id": "minecraft:purple_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7098 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 10 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7114 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 400, + "id": "minecraft:purple_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7114 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 400, + "id": "minecraft:purple_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7130 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purpur_block", + "type": 1, + "input": { + "A": { + "legacyId": 559, + "id": "minecraft:popped_chorus_fruit", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 201, + "id": "minecraft:purpur_block", + "count": 4, + "blockRuntimeId": 6525 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purpur_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 201, + "id": "minecraft:purpur_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 203, + "id": "minecraft:purpur_stairs", + "count": 4, + "blockRuntimeId": 6537 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:quartz_block", + "type": 1, + "input": { + "A": { + "legacyId": 524, + "id": "minecraft:quartz", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block", + "blockRuntimeId": 6545 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:quartz_bricks", + "type": 1, + "input": { + "A": { + "legacyId": 155, + "id": "minecraft:quartz_block" + } + }, + "output": [ + { + "legacyId": -304, + "id": "minecraft:quartz_bricks", + "blockRuntimeId": 6557 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:quartz_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 155, + "id": "minecraft:quartz_block" + } + }, + "output": [ + { + "legacyId": 156, + "id": "minecraft:quartz_stairs", + "count": 4, + "blockRuntimeId": 6559 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:rabbit_stew_from_brown_mushroom", + "type": 0, + "input": [ + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 281, + "id": "minecraft:baked_potato", + "damage": 32767 + }, + { + "legacyId": 279, + "id": "minecraft:carrot", + "damage": 32767 + }, + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 289, + "id": "minecraft:cooked_rabbit", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 290, + "id": "minecraft:rabbit_stew" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:rabbit_stew_from_red_mushroom", + "type": 0, + "input": [ + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 281, + "id": "minecraft:baked_potato", + "damage": 32767 + }, + { + "legacyId": 279, + "id": "minecraft:carrot", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 289, + "id": "minecraft:cooked_rabbit", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 290, + "id": "minecraft:rabbit_stew" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:rail", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 66, + "id": "minecraft:rail", + "count": 16, + "blockRuntimeId": 6567 + } + ], + "shape": [ + "A A", + "ABA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:raw_copper", + "type": 1, + "input": { + "A": { + "legacyId": -452, + "id": "minecraft:raw_copper_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 507, + "id": "minecraft:raw_copper", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:raw_copper_block", + "type": 1, + "input": { + "A": { + "legacyId": 507, + "id": "minecraft:raw_copper", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -452, + "id": "minecraft:raw_copper_block", + "blockRuntimeId": 6577 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:raw_gold", + "type": 1, + "input": { + "A": { + "legacyId": -453, + "id": "minecraft:raw_gold_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 506, + "id": "minecraft:raw_gold", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:raw_gold_block", + "type": 1, + "input": { + "A": { + "legacyId": 506, + "id": "minecraft:raw_gold", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -453, + "id": "minecraft:raw_gold_block", + "blockRuntimeId": 6578 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:raw_iron", + "type": 1, + "input": { + "A": { + "legacyId": -451, + "id": "minecraft:raw_iron_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 505, + "id": "minecraft:raw_iron", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:raw_iron_block", + "type": 1, + "input": { + "A": { + "legacyId": 505, + "id": "minecraft:raw_iron", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -451, + "id": "minecraft:raw_iron_block", + "blockRuntimeId": 6579 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 1 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye" + } + ], + "output": [ + { + "legacyId": -427, + "id": "minecraft:red_candle", + "blockRuntimeId": 6580 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 977 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 396, + "id": "minecraft:red_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 977 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3674 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_dye_from_beetroot", + "type": 0, + "input": [ + { + "legacyId": 285, + "id": "minecraft:beetroot", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 396, + "id": "minecraft:red_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_dye_from_poppy", + "type": 0, + "input": [ + { + "legacyId": 38, + "id": "minecraft:red_flower" + } + ], + "output": [ + { + "legacyId": 396, + "id": "minecraft:red_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_dye_from_rose_bush", + "type": 0, + "input": [ + { + "legacyId": 175, + "id": "minecraft:double_plant", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_dye_from_tulip", + "type": 0, + "input": [ + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 396, + "id": "minecraft:red_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_nether_brick", + "type": 1, + "input": { + "A": { + "legacyId": 523, + "id": "minecraft:netherbrick", + "damage": 32767 + }, + "B": { + "legacyId": 294, + "id": "minecraft:nether_wart", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 215, + "id": "minecraft:red_nether_brick", + "blockRuntimeId": 6624 + } + ], + "shape": [ + "AB", + "BA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_nether_brick_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 215, + "id": "minecraft:red_nether_brick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -184, + "id": "minecraft:red_nether_brick_stairs", + "count": 4, + "blockRuntimeId": 6625 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_nether_brick_wall", + "type": 1, + "input": { + "A": { + "legacyId": 215, + "id": "minecraft:red_nether_brick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1332 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_sandstone", + "type": 1, + "input": { + "A": { + "legacyId": 12, + "id": "minecraft:sand", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "blockRuntimeId": 6633 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_sandstone_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 179, + "id": "minecraft:red_sandstone" + } + }, + "output": [ + { + "legacyId": 180, + "id": "minecraft:red_sandstone_stairs", + "count": 4, + "blockRuntimeId": 6637 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_sandstone_wall", + "type": 1, + "input": { + "A": { + "legacyId": 179, + "id": "minecraft:red_sandstone" + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1331 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 396, + "id": "minecraft:red_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7102 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 14 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7118 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 396, + "id": "minecraft:red_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7118 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:red_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 396, + "id": "minecraft:red_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7134 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:redstone", + "type": 1, + "input": { + "A": { + "legacyId": 152, + "id": "minecraft:redstone_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 373, + "id": "minecraft:redstone", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:redstone_block", + "type": 1, + "input": { + "A": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 152, + "id": "minecraft:redstone_block", + "blockRuntimeId": 6645 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:redstone_lamp", + "type": 1, + "input": { + "A": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + }, + "B": { + "legacyId": 89, + "id": "minecraft:glowstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 123, + "id": "minecraft:redstone_lamp", + "blockRuntimeId": 6646 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:redstone_torch", + "type": 1, + "input": { + "A": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 76, + "id": "minecraft:redstone_torch", + "blockRuntimeId": 6648 + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:repeater", + "type": 1, + "input": { + "A": { + "legacyId": 76, + "id": "minecraft:redstone_torch", + "damage": 32767 + }, + "B": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + }, + "C": { + "legacyId": 1, + "id": "minecraft:stone" + } + }, + "output": [ + { + "legacyId": 419, + "id": "minecraft:repeater" + } + ], + "shape": [ + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:respawn_anchor", + "type": 1, + "input": { + "A": { + "legacyId": -289, + "id": "minecraft:crying_obsidian", + "damage": 32767 + }, + "B": { + "legacyId": 89, + "id": "minecraft:glowstone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -272, + "id": "minecraft:respawn_anchor", + "blockRuntimeId": 6699 + } + ], + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sandstone", + "type": 1, + "input": { + "A": { + "legacyId": 12, + "id": "minecraft:sand" + } + }, + "output": [ + { + "legacyId": 24, + "id": "minecraft:sandstone", + "blockRuntimeId": 6706 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sandstone_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 24, + "id": "minecraft:sandstone" + } + }, + "output": [ + { + "legacyId": 128, + "id": "minecraft:sandstone_stairs", + "count": 4, + "blockRuntimeId": 6710 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sandstone_wall", + "type": 1, + "input": { + "A": { + "legacyId": 24, + "id": "minecraft:sandstone" + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1324 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:scaffolding", + "type": 1, + "input": { + "A": { + "legacyId": -163, + "id": "minecraft:bamboo", + "damage": 32767 + }, + "B": { + "legacyId": 326, + "id": "minecraft:string", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -165, + "id": "minecraft:scaffolding", + "count": 6, + "blockRuntimeId": 6730 + } + ], + "shape": [ + "ABA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sealantern", + "type": 1, + "input": { + "A": { + "legacyId": 565, + "id": "minecraft:prismarine_shard", + "damage": 32767 + }, + "B": { + "legacyId": 549, + "id": "minecraft:prismarine_crystals", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 169, + "id": "minecraft:sealantern", + "blockRuntimeId": 6828 + } + ], + "shape": [ + "ABA", + "BBB", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:shears", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 421, + "id": "minecraft:shears" + } + ], + "shape": [ + " A", + "A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:shield", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + }, + "B": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 355, + "id": "minecraft:shield" + } + ], + "shape": [ + "ABA", + "AAA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:shield_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 355, + "id": "minecraft:shield" + } + ], + "shape": [ + "ABA", + "AAA", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:shield_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 355, + "id": "minecraft:shield" + } + ], + "shape": [ + "ABA", + "AAA", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:shulker_box", + "type": 1, + "input": { + "A": { + "legacyId": 566, + "id": "minecraft:shulker_shell", + "damage": 32767 + }, + "B": { + "legacyId": 54, + "id": "minecraft:chest", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box", + "blockRuntimeId": 7462 + } + ], + "shape": [ + "A", + "B", + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sign_acacia", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 4 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 579, + "id": "minecraft:acacia_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sign_birch", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 2 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 577, + "id": "minecraft:birch_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sign_darkoak", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 5 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 580, + "id": "minecraft:dark_oak_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sign_jungle", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 3 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 578, + "id": "minecraft:jungle_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sign_oak", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks" + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 358, + "id": "minecraft:oak_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sign_spruce", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 1 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 576, + "id": "minecraft:spruce_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:slime", + "type": 1, + "input": { + "A": { + "legacyId": 388, + "id": "minecraft:slime_ball", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 165, + "id": "minecraft:slime", + "blockRuntimeId": 6864 + } + ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:slime_ball", + "type": 1, + "input": { + "A": { + "legacyId": 165, + "id": "minecraft:slime", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 388, + "id": "minecraft:slime_ball", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smithing_table", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -202, + "id": "minecraft:smithing_table", + "blockRuntimeId": 6879 + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smithing_table_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -202, + "id": "minecraft:smithing_table", + "blockRuntimeId": 6879 + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:smithing_table_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -202, + "id": "minecraft:smithing_table", + "blockRuntimeId": 6879 + } + ], + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:smoker", + "type": 1, + "input": { + "A": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -198, + "id": "minecraft:smoker", + "blockRuntimeId": 6880 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_crimson_stem", + "type": 1, + "input": { + "A": { + "legacyId": -225, + "id": "minecraft:crimson_stem", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -198, + "id": "minecraft:smoker", + "blockRuntimeId": 6880 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:smoker_from_log2", + "type": 1, + "input": { + "A": { + "legacyId": 162, + "id": "minecraft:log2", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -198, + "id": "minecraft:smoker", + "blockRuntimeId": 6880 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_acacia", + "type": 1, + "input": { + "A": { + "legacyId": -8, + "id": "minecraft:stripped_acacia_log", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -198, + "id": "minecraft:smoker", + "blockRuntimeId": 6880 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_birch", + "type": 1, + "input": { + "A": { + "legacyId": -6, + "id": "minecraft:stripped_birch_log", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -198, + "id": "minecraft:smoker", + "blockRuntimeId": 6880 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_crimson_stem", + "type": 1, + "input": { + "A": { + "legacyId": -240, + "id": "minecraft:stripped_crimson_stem", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -198, + "id": "minecraft:smoker", + "blockRuntimeId": 6880 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:smoker_from_stripped_dark_oak", + "type": 1, + "input": { + "A": { + "legacyId": -9, + "id": "minecraft:stripped_dark_oak_log", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -198, + "id": "minecraft:smoker", + "blockRuntimeId": 6880 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_jungle", + "type": 1, + "input": { + "A": { + "legacyId": -7, + "id": "minecraft:stripped_jungle_log", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -198, + "id": "minecraft:smoker", + "blockRuntimeId": 6880 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_oak", + "type": 1, + "input": { + "A": { + "legacyId": -10, + "id": "minecraft:stripped_oak_log", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -198, + "id": "minecraft:smoker", + "blockRuntimeId": 6880 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_spruce", + "type": 1, + "input": { + "A": { + "legacyId": -5, + "id": "minecraft:stripped_spruce_log", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -198, + "id": "minecraft:smoker", + "blockRuntimeId": 6880 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smoker_from_stripped_warped_stem", + "type": 1, + "input": { + "A": { + "legacyId": -241, + "id": "minecraft:stripped_warped_stem", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -198, + "id": "minecraft:smoker", + "blockRuntimeId": 6880 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:smoker_from_warped_stem", + "type": 1, + "input": { + "A": { + "legacyId": -226, + "id": "minecraft:warped_stem", + "damage": 32767 + }, + "B": { + "legacyId": 61, + "id": "minecraft:furnace", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -198, + "id": "minecraft:smoker", + "blockRuntimeId": 6880 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:smooth_quartz_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 155, + "id": "minecraft:quartz_block", + "damage": 3 + } + }, + "output": [ + { + "legacyId": -185, + "id": "minecraft:smooth_quartz_stairs", + "count": 4, + "blockRuntimeId": 6887 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smooth_red_sandstone", + "type": 1, + "input": { + "A": { + "legacyId": 179, + "id": "minecraft:red_sandstone" + } + }, + "output": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "count": 4, + "blockRuntimeId": 6635 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smooth_red_sandstone_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "damage": 3 + } + }, + "output": [ + { + "legacyId": -176, + "id": "minecraft:smooth_red_sandstone_stairs", + "count": 4, + "blockRuntimeId": 6895 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smooth_sandstone", + "type": 1, + "input": { + "A": { + "legacyId": 24, + "id": "minecraft:sandstone" + } + }, + "output": [ + { + "legacyId": 24, + "id": "minecraft:sandstone", + "count": 4, + "blockRuntimeId": 6708 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:smooth_sandstone_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 24, + "id": "minecraft:sandstone", + "damage": 3 + } + }, + "output": [ + { + "legacyId": -177, + "id": "minecraft:smooth_sandstone_stairs", + "count": 4, + "blockRuntimeId": 6903 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:snow", + "type": 1, + "input": { + "A": { + "legacyId": 374, + "id": "minecraft:snowball", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 80, + "id": "minecraft:snow", + "blockRuntimeId": 6912 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:snow_layer", + "type": 1, + "input": { + "A": { + "legacyId": 80, + "id": "minecraft:snow", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 78, + "id": "minecraft:snow_layer", + "count": 6, + "blockRuntimeId": 6913 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:soul_campfire_from_crimson_stem", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": -225, + "id": "minecraft:crimson_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_crimson_stem2", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": -225, + "id": "minecraft:crimson_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_log2", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": 162, + "id": "minecraft:log2", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_acacia_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": -8, + "id": "minecraft:stripped_acacia_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_birch_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": -6, + "id": "minecraft:stripped_birch_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_dark_oak_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": -9, + "id": "minecraft:stripped_dark_oak_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_jungle_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": -7, + "id": "minecraft:stripped_jungle_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_oak_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": -10, + "id": "minecraft:stripped_oak_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_spruce_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": -5, + "id": "minecraft:stripped_spruce_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_sand_and_wood", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_log2", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": 162, + "id": "minecraft:log2", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_acacia_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": -8, + "id": "minecraft:stripped_acacia_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_birch_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": -6, + "id": "minecraft:stripped_birch_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_dark_oak_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": -9, + "id": "minecraft:stripped_dark_oak_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_jungle_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": -7, + "id": "minecraft:stripped_jungle_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_oak_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": -10, + "id": "minecraft:stripped_oak_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_spruce_log", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": -5, + "id": "minecraft:stripped_spruce_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_soul_soil_and_wood", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_stripped_crimson_stem", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": -240, + "id": "minecraft:stripped_crimson_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_stripped_crimson_stem2", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": -240, + "id": "minecraft:stripped_crimson_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_stripped_warped_stem", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": -241, + "id": "minecraft:stripped_warped_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_stripped_warped_stem2", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": -241, + "id": "minecraft:stripped_warped_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_warped_stem", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + }, + "C": { + "legacyId": -226, + "id": "minecraft:warped_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_campfire_from_warped_stem2", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + }, + "C": { + "legacyId": -226, + "id": "minecraft:warped_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 620, + "id": "minecraft:soul_campfire" + } + ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:soul_lantern", + "type": 1, + "input": { + "A": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "B": { + "legacyId": -268, + "id": "minecraft:soul_torch", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -269, + "id": "minecraft:soul_lantern", + "blockRuntimeId": 6953 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:soul_torch_from_soul_sand", + "type": 1, + "input": { + "A": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "C": { + "legacyId": 88, + "id": "minecraft:soul_sand", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -268, + "id": "minecraft:soul_torch", + "count": 4, + "blockRuntimeId": 6957 + } + ], + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:soul_torch_from_soul_soil", + "type": 1, + "input": { + "A": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "C": { + "legacyId": -236, + "id": "minecraft:soul_soil", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -268, + "id": "minecraft:soul_torch", + "count": 4, + "blockRuntimeId": 6957 + } + ], + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:speckled_melon", + "type": 1, + "input": { + "A": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "B": { + "legacyId": 272, + "id": "minecraft:melon_slice", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 434, + "id": "minecraft:glistering_melon_slice" + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_boat", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 1 + }, + "B": { + "legacyId": 309, + "id": "minecraft:wooden_shovel", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 378, + "id": "minecraft:spruce_boat" + } + ], + "shape": [ + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_door", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 553, + "id": "minecraft:spruce_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_fence", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 1 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 85, + "id": "minecraft:fence", + "count": 3, + "blockRuntimeId": 4775 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_fence_gate", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 183, + "id": "minecraft:spruce_fence_gate", + "blockRuntimeId": 7010 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_planks", + "type": 1, + "input": { + "A": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5798 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_planks_from_stripped", + "type": 1, + "input": { + "A": { + "legacyId": -5, + "id": "minecraft:stripped_spruce_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5798 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 9 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5798 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_planks_from_wood", + "type": 1, + "input": { + "A": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 5, + "id": "minecraft:planks", + "count": 4, + "blockRuntimeId": 5798 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 134, + "id": "minecraft:spruce_stairs", + "count": 4, + "blockRuntimeId": 7042 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_wood", + "type": 1, + "input": { + "A": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 1 + } + }, + "output": [ + { + "legacyId": -212, + "id": "minecraft:wood", + "count": 3, + "blockRuntimeId": 7808 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_wood_stripped", + "type": 1, + "input": { + "A": { + "legacyId": -5, + "id": "minecraft:stripped_spruce_log", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -212, + "id": "minecraft:wood", + "count": 3, + "blockRuntimeId": 7814 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spruce_wooden_slab", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 158, + "id": "minecraft:wooden_slab", + "count": 6, + "blockRuntimeId": 7904 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:spyglass", + "type": 1, + "input": { + "A": { + "legacyId": 623, + "id": "minecraft:amethyst_shard", + "damage": 32767 + }, + "B": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 624, + "id": "minecraft:spyglass" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:stick_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 320, + "id": "minecraft:stick", + "count": 4 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stick_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 320, + "id": "minecraft:stick", + "count": 4 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:sticky_piston", + "type": 1, + "input": { + "A": { + "legacyId": 388, + "id": "minecraft:slime_ball", + "damage": 32767 + }, + "B": { + "legacyId": 33, + "id": "minecraft:piston", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 29, + "id": "minecraft:sticky_piston", + "blockRuntimeId": 7169 + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_axe", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 315, + "id": "minecraft:stone_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_axe_from_blackstone", + "type": 1, + "input": { + "A": { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 315, + "id": "minecraft:stone_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_axe_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 315, + "id": "minecraft:stone_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_brick_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 98, + "id": "minecraft:stonebrick" + } + }, + "output": [ + { + "legacyId": 109, + "id": "minecraft:stone_brick_stairs", + "count": 4, + "blockRuntimeId": 7187 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_brick_wall", + "type": 1, + "input": { + "A": { + "legacyId": 98, + "id": "minecraft:stonebrick" + } + }, + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6, + "blockRuntimeId": 1326 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_button", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone" + } + }, + "output": [ + { + "legacyId": 77, + "id": "minecraft:stone_button", + "blockRuntimeId": 7195 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_hoe", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 330, + "id": "minecraft:stone_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_hoe_from_blackstone", + "type": 1, + "input": { + "A": { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 330, + "id": "minecraft:stone_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_hoe_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 330, + "id": "minecraft:stone_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_pickaxe", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 314, + "id": "minecraft:stone_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_pickaxe_from_blackstone", + "type": 1, + "input": { + "A": { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 314, + "id": "minecraft:stone_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_pickaxe_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 314, + "id": "minecraft:stone_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_pressure_plate", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone" + } + }, + "output": [ + { + "legacyId": 70, + "id": "minecraft:stone_pressure_plate", + "blockRuntimeId": 7207 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_shovel", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 313, + "id": "minecraft:stone_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_shovel_from_blackstone", + "type": 1, + "input": { + "A": { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 313, + "id": "minecraft:stone_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_shovel_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 313, + "id": "minecraft:stone_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_stairs", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone" + } + }, + "output": [ + { + "legacyId": -180, + "id": "minecraft:normal_stone_stairs", + "count": 4, + "blockRuntimeId": 5708 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_sword", + "type": 1, + "input": { + "A": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 312, + "id": "minecraft:stone_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stone_sword_from_blackstone", + "type": 1, + "input": { + "A": { + "legacyId": -273, + "id": "minecraft:blackstone", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 312, + "id": "minecraft:stone_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stone_sword_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 312, + "id": "minecraft:stone_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:stonebrick", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone" + } + }, + "output": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick", + "count": 4, + "blockRuntimeId": 7289 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stonecutter", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -197, + "id": "minecraft:stonecutter_block", + "blockRuntimeId": 7295 + } + ], + "shape": [ + " A ", + "BBB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:string_to_wool", + "type": 1, + "input": { + "A": { + "legacyId": 326, + "id": "minecraft:string", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stripped_crimson_hyphae", + "type": 1, + "input": { + "A": { + "legacyId": -240, + "id": "minecraft:stripped_crimson_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -300, + "id": "minecraft:stripped_crimson_hyphae", + "count": 3, + "blockRuntimeId": 7307 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:stripped_warped_hyphae", + "type": 1, + "input": { + "A": { + "legacyId": -241, + "id": "minecraft:stripped_warped_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -301, + "id": "minecraft:stripped_warped_hyphae", + "count": 3, + "blockRuntimeId": 7325 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:sugar", + "type": 1, + "input": { + "A": { + "legacyId": 385, + "id": "minecraft:sugar_cane", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 416, + "id": "minecraft:sugar" + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_allium", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 2 + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew", + "damage": 7 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_azure_bluet", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew", + "damage": 3 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_blue_orchid", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew", + "damage": 6 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_cornflower", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 9 + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew", + "damage": 1 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_dandelion", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 37, + "id": "minecraft:yellow_flower", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew", + "damage": 5 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_lily_of_the_valley", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 10 + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew", + "damage": 4 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_oxeye_daisy", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 8 + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew", + "damage": 8 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_poppy", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 38, + "id": "minecraft:red_flower" + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_tulip_orange", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_tulip_pink", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 7 + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_tulip_red", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_tulip_white", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 6 + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew", + "damage": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:suspicious_stew_from_wither_rose", + "type": 0, + "input": [ + { + "legacyId": 39, + "id": "minecraft:brown_mushroom", + "damage": 32767 + }, + { + "legacyId": 40, + "id": "minecraft:red_mushroom", + "damage": 32767 + }, + { + "legacyId": 321, + "id": "minecraft:bowl", + "damage": 32767 + }, + { + "legacyId": -216, + "id": "minecraft:wither_rose", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 589, + "id": "minecraft:suspicious_stew", + "damage": 9 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:target", + "type": 1, + "input": { + "A": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + }, + "B": { + "legacyId": 170, + "id": "minecraft:hay_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -239, + "id": "minecraft:target", + "blockRuntimeId": 7351 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:tinted_glass", + "type": 1, + "input": { + "A": { + "legacyId": 623, + "id": "minecraft:amethyst_shard", + "damage": 32767 + }, + "B": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -334, + "id": "minecraft:tinted_glass", + "count": 2, + "blockRuntimeId": 7352 + } + ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:tnt", + "type": 1, + "input": { + "A": { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + "B": { + "legacyId": 12, + "id": "minecraft:sand", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 46, + "id": "minecraft:tnt", + "blockRuntimeId": 7353 + } + ], + "shape": [ + "ABA", + "BAB", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:tnt_minecart", + "type": 1, + "input": { + "A": { + "legacyId": 46, + "id": "minecraft:tnt" + }, + "B": { + "legacyId": 370, + "id": "minecraft:minecart", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 525, + "id": "minecraft:tnt_minecart" + } + ], + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:trapped_chest", + "type": 0, + "input": [ + { + "legacyId": 54, + "id": "minecraft:chest", + "damage": 32767 + }, + { + "legacyId": 131, + "id": "minecraft:tripwire_hook", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 146, + "id": "minecraft:trapped_chest", + "blockRuntimeId": 7379 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:tripwire_hook_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "C": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 131, + "id": "minecraft:tripwire_hook", + "blockRuntimeId": 7401 + } + ], + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:tripwire_hook_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "C": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 131, + "id": "minecraft:tripwire_hook", + "blockRuntimeId": 7401 + } + ], + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:turtle_helmet", + "type": 1, + "input": { + "A": { + "legacyId": 572, + "id": "minecraft:scute", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 573, + "id": "minecraft:turtle_helmet" + } + ], + "shape": [ + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_button", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -261, + "id": "minecraft:warped_button", + "blockRuntimeId": 7530 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_door", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 615, + "id": "minecraft:warped_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_fence", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -257, + "id": "minecraft:warped_fence", + "count": 3, + "blockRuntimeId": 7576 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_fence_gate", + "type": 1, + "input": { + "A": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + }, + "B": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -259, + "id": "minecraft:warped_fence_gate", + "blockRuntimeId": 7577 + } + ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_fungus_on_a_stick", + "type": 1, + "input": { + "A": { + "legacyId": 392, + "id": "minecraft:fishing_rod", + "damage": 32767 + }, + "B": { + "legacyId": -229, + "id": "minecraft:warped_fungus", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 616, + "id": "minecraft:warped_fungus_on_a_stick" + } + ], + "shape": [ + "A ", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_hyphae", + "type": 1, + "input": { + "A": { + "legacyId": -226, + "id": "minecraft:warped_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -298, + "id": "minecraft:warped_hyphae", + "count": 3, + "blockRuntimeId": 7594 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -226, + "id": "minecraft:warped_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -243, + "id": "minecraft:warped_planks", + "count": 4, + "blockRuntimeId": 7598 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_planks_from_stripped_log", + "type": 1, + "input": { + "A": { + "legacyId": -241, + "id": "minecraft:stripped_warped_stem", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -243, + "id": "minecraft:warped_planks", + "count": 4, + "blockRuntimeId": 7598 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_planks_from_stripped_warped_hyphae", + "type": 1, + "input": { + "A": { + "legacyId": -301, + "id": "minecraft:stripped_warped_hyphae", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -243, + "id": "minecraft:warped_planks", + "count": 4, + "blockRuntimeId": 7598 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_planks_from_warped_hyphae", + "type": 1, + "input": { + "A": { + "legacyId": -298, + "id": "minecraft:warped_hyphae", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -243, + "id": "minecraft:warped_planks", + "count": 4, + "blockRuntimeId": 7598 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_pressure_plate", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -263, + "id": "minecraft:warped_pressure_plate", + "blockRuntimeId": 7599 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_sign", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 613, + "id": "minecraft:warped_sign", + "count": 3 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_slab", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -265, + "id": "minecraft:warped_slab", + "count": 6, + "blockRuntimeId": 7616 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_stairs", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -255, + "id": "minecraft:warped_stairs", + "count": 4, + "blockRuntimeId": 7618 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:warped_trapdoor", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": -247, + "id": "minecraft:warped_trapdoor", + "count": 2, + "blockRuntimeId": 7645 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:waxing_copper_block", + "type": 0, + "input": [ + { + "legacyId": -340, + "id": "minecraft:copper_block", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -344, + "id": "minecraft:waxed_copper", + "blockRuntimeId": 7685 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_cut_copper", + "type": 0, + "input": [ + { + "legacyId": -347, + "id": "minecraft:cut_copper", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -351, + "id": "minecraft:waxed_cut_copper", + "blockRuntimeId": 7686 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -361, + "id": "minecraft:cut_copper_slab", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -365, + "id": "minecraft:waxed_cut_copper_slab", + "blockRuntimeId": 7687 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -354, + "id": "minecraft:cut_copper_stairs", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -358, + "id": "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId": 7689 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_exposed_copper", + "type": 0, + "input": [ + { + "legacyId": -341, + "id": "minecraft:exposed_copper", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -345, + "id": "minecraft:waxed_exposed_copper", + "blockRuntimeId": 7699 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_exposed_cut_copper", + "type": 0, + "input": [ + { + "legacyId": -348, + "id": "minecraft:exposed_cut_copper", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -352, + "id": "minecraft:waxed_exposed_cut_copper", + "blockRuntimeId": 7700 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_exposed_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -362, + "id": "minecraft:exposed_cut_copper_slab", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -366, + "id": "minecraft:waxed_exposed_cut_copper_slab", + "blockRuntimeId": 7701 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_exposed_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -355, + "id": "minecraft:exposed_cut_copper_stairs", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -359, + "id": "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId": 7703 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_oxidized_copper", + "type": 0, + "input": [ + { + "legacyId": -343, + "id": "minecraft:oxidized_copper", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -446, + "id": "minecraft:waxed_oxidized_copper", + "blockRuntimeId": 7713 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_oxidized_cut_copper", + "type": 0, + "input": [ + { + "legacyId": -350, + "id": "minecraft:oxidized_cut_copper", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -447, + "id": "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId": 7714 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_oxidized_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -364, + "id": "minecraft:oxidized_cut_copper_slab", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -449, + "id": "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId": 7715 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_oxidized_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -357, + "id": "minecraft:oxidized_cut_copper_stairs", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -448, + "id": "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId": 7717 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_weathered_copper", + "type": 0, + "input": [ + { + "legacyId": -342, + "id": "minecraft:weathered_copper", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -346, + "id": "minecraft:waxed_weathered_copper", + "blockRuntimeId": 7727 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_weathered_cut_copper", + "type": 0, + "input": [ + { + "legacyId": -349, + "id": "minecraft:weathered_cut_copper", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -353, + "id": "minecraft:waxed_weathered_cut_copper", + "blockRuntimeId": 7728 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_weathered_cut_copper_slab", + "type": 0, + "input": [ + { + "legacyId": -363, + "id": "minecraft:weathered_cut_copper_slab", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -367, + "id": "minecraft:waxed_weathered_cut_copper_slab", + "blockRuntimeId": 7729 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:waxing_weathered_cut_copper_stairs", + "type": 0, + "input": [ + { + "legacyId": -356, + "id": "minecraft:weathered_cut_copper_stairs", + "damage": 32767 + }, + { + "legacyId": 590, + "id": "minecraft:honeycomb", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": -360, + "id": "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId": 7731 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:wheat", + "type": 1, + "input": { + "A": { + "legacyId": 170, + "id": "minecraft:hay_block", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 334, + "id": "minecraft:wheat", + "count": 9 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool" + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 15 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "output": [ + { + "legacyId": -413, + "id": "minecraft:white_candle", + "blockRuntimeId": 7790 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_candle_from_bonemeal", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": -413, + "id": "minecraft:white_candle", + "blockRuntimeId": 7790 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 963 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3660 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_concrete_powder_from_bonemeal", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3660 + } + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:white_dye_from_bone_meal", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + ], + "output": [ + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_dye_from_lily_of_the_valley", + "type": 0, + "input": [ + { + "legacyId": 38, + "id": "minecraft:red_flower", + "damage": 10 + } + ], + "output": [ + { + "legacyId": 410, + "id": "minecraft:white_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 410, + "id": "minecraft:white_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7088 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_stained_glass_from_bonemeal", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7088 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:white_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7104 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 410, + "id": "minecraft:white_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7104 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 410, + "id": "minecraft:white_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7120 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:white_stained_hardened_clay_from_bonemeal", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 411, + "id": "minecraft:bone_meal" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7120 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:wooden_axe_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 311, + "id": "minecraft:wooden_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_axe_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 311, + "id": "minecraft:wooden_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_door", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks" + } + }, + "output": [ + { + "legacyId": 359, + "id": "minecraft:wooden_door", + "count": 3 + } + ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:wooden_hoe_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 329, + "id": "minecraft:wooden_hoe" + } + ], + "shape": [ + "AA ", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_hoe_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 329, + "id": "minecraft:wooden_hoe" + } + ], + "shape": [ + "AA ", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_pickaxe_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 310, + "id": "minecraft:wooden_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_pickaxe_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 310, + "id": "minecraft:wooden_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_shovel_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 309, + "id": "minecraft:wooden_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_shovel_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 309, + "id": "minecraft:wooden_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_sword_from_crimson_planks", + "type": 1, + "input": { + "A": { + "legacyId": -242, + "id": "minecraft:crimson_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 308, + "id": "minecraft:wooden_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:wooden_sword_from_warped_planks", + "type": 1, + "input": { + "A": { + "legacyId": -243, + "id": "minecraft:warped_planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 308, + "id": "minecraft:wooden_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:writable_book", + "type": 0, + "input": [ + { + "legacyId": 387, + "id": "minecraft:book", + "damage": 32767 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac" + }, + { + "legacyId": 327, + "id": "minecraft:feather", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 510, + "id": "minecraft:writable_book" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_banner", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 567, + "id": "minecraft:banner", + "damage": 11 + } + ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_candle", + "type": 0, + "input": [ + { + "legacyId": -412, + "id": "minecraft:candle", + "damage": 32767 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye" + } + ], + "output": [ + { + "legacyId": -417, + "id": "minecraft:yellow_candle", + "blockRuntimeId": 7931 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_carpet", + "type": 1, + "input": { + "A": { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 3, + "blockRuntimeId": 967 + } + ], + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_carpet_from_white", + "type": 1, + "input": { + "A": { + "legacyId": 171, + "id": "minecraft:carpet" + }, + "B": { + "legacyId": 406, + "id": "minecraft:yellow_dye" + } + }, + "output": [ + { + "legacyId": 171, + "id": "minecraft:carpet", + "count": 8, + "blockRuntimeId": 967 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_concrete_powder", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 12, + "id": "minecraft:sand" + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 }, { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 28 - }, + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + }, + { + "legacyId": 13, + "id": "minecraft:gravel", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 237, + "id": "minecraft:concrete_powder", + "count": 8, + "blockRuntimeId": 3664 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_dye_from_dandelion", + "type": 0, + "input": [ + { + "legacyId": 37, + "id": "minecraft:yellow_flower" + } + ], + "output": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye" + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_dye_from_sunflower", + "type": 0, + "input": [ + { + "legacyId": 175, + "id": "minecraft:double_plant" + } + ], + "output": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "count": 2 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_stained_glass", + "type": 1, + "input": { + "A": { + "legacyId": 20, + "id": "minecraft:glass", + "damage": 32767 + }, + "B": { + "legacyId": 406, + "id": "minecraft:yellow_dye" + } + }, + "output": [ + { + "legacyId": 241, + "id": "minecraft:stained_glass", + "count": 8, + "blockRuntimeId": 7092 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_stained_glass_pane", + "type": 1, + "input": { + "A": { + "legacyId": 241, + "id": "minecraft:stained_glass", + "damage": 4 + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 16, + "blockRuntimeId": 7108 + } + ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "legacyId": 102, + "id": "minecraft:glass_pane", + "damage": 32767 + }, + "B": { + "legacyId": 406, + "id": "minecraft:yellow_dye" + } + }, + "output": [ + { + "legacyId": 160, + "id": "minecraft:stained_glass_pane", + "count": 8, + "blockRuntimeId": 7108 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:yellow_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "damage": 32767 + }, + "B": { + "legacyId": 406, + "id": "minecraft:yellow_dye" + } + }, + "output": [ + { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "count": 8, + "blockRuntimeId": 7124 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "oak_stairs_oak_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks" + } + }, + "output": [ + { + "legacyId": 53, + "id": "minecraft:oak_stairs", + "count": 4, + "blockRuntimeId": 5717 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_0_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star" + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_10_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 10 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_11_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 11 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_12_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 12 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_13_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 13 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_14_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 14 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_15_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 15 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_16_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star" + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_17_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_18_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_19_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 15 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_1_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_2_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 2 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_3_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_4_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_5_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_6_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 6 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_7_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 7 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_8_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 8 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_charge_9_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 9 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_0_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_10_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 10, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_11_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 11, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_12_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 12, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_13_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 13, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_14_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 14, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_15_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 15, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_16_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_17_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 3, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_18_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 4, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_19_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 15, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_1_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 1, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_2_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 2, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_3_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 3, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_4_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 4, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_5_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 5, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_6_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 6, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_7_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 7, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_8_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 8, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_dye_9_recipeId", + "type": 0, + "input": [ + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 520, + "id": "minecraft:firework_star", + "damage": 9, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "paper_sulphur_recipeId", + "type": 0, + "input": [ + { + "legacyId": 386, + "id": "minecraft:paper", + "damage": 32767 + }, + { + "legacyId": 328, + "id": "minecraft:gunpowder", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 519, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "type": 4, + "uuid": "00000000-0000-0000-0000-000000000001" + }, + { + "id": "shulkerBox_shulker_box_color_block_0_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_0_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_10_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_11_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_12_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_13_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_14_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_15_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_16_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_17_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_18_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_19_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_1_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_2_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_3_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_4_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_5_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_6_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_7_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_8_9_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 6 + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_0_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 15 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_10_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 5 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_11_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 4 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_12_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 3 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_13_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 2 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_14_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 1 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_15_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box" + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_1_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 14 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_2_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 13 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_3_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 12 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_4_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 11 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_5_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 10 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_6_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 9 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_7_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 8 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_block_9_8_0", + "type": 5, + "input": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "damage": 7 + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_0_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_10_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6835 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_11_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6834 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_12_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6833 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_13_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6832 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_14_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6831 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_15_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_16_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6845 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_17_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_18_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_19_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6830 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_1_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6844 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_2_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6843 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_3_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6842 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_4_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6841 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_5_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6840 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_6_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6839 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_7_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6838 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_8_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6837 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "shulkerBox_shulker_box_color_dye_9_0", + "type": 5, + "input": [ + { + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" + }, + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + } + ], + "output": [ + { + "legacyId": 218, + "id": "minecraft:shulker_box", + "blockRuntimeId": 6836 + } + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "slab3_endstonebrick_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 206, + "id": "minecraft:end_bricks" + } + }, + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 6, + "blockRuntimeId": 7255 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "spruce_stairs_spruce_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 134, + "id": "minecraft:spruce_stairs", + "count": 4, + "blockRuntimeId": 7042 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stick_wood_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 320, + "id": "minecraft:stick", + "count": 4 + } + ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "stoneslab2_RedSandstone_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 179, + "id": "minecraft:red_sandstone" + } + }, + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 6, + "blockRuntimeId": 7239 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_prismarine_bricks_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 168, + "id": "minecraft:prismarine", + "damage": 2 + } + }, + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 6, + "blockRuntimeId": 7243 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_prismarine_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 168, + "id": "minecraft:prismarine", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 6, + "blockRuntimeId": 7242 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_purpur_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 201, + "id": "minecraft:purpur_block" + } + }, + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 6, + "blockRuntimeId": 7240 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 48, + "id": "minecraft:mossy_cobblestone" + } + }, + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 6, + "blockRuntimeId": 7244 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_rednetherbrick_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 215, + "id": "minecraft:red_nether_brick" + } + }, + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 6, + "blockRuntimeId": 7246 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_redsandstone_heiroglyphs_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 6, + "blockRuntimeId": 7239 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_smoothsandstone_smooth_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 24, + "id": "minecraft:sandstone", + "damage": 3 + } + }, + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 6, + "blockRuntimeId": 7245 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_andesite_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 5 + } + }, + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 6, + "blockRuntimeId": 7258 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_diorite_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 3 + } + }, + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 6, + "blockRuntimeId": 7259 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_granite", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 1 + } + }, + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 6, + "blockRuntimeId": 7261 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_polishedGranite_GraniteSmooth_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 2 + } + }, + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 6, + "blockRuntimeId": 7262 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_polished_andesite_andesitesmooth_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 6 + } + }, + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 6, + "blockRuntimeId": 7257 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_polished_diorite_dioritesmooth_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 1, + "id": "minecraft:stone", + "damage": 4 + } + }, + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 6, + "blockRuntimeId": 7260 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_smooth_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "damage": 3 + } + }, + "output": [ + { + "legacyId": -162, + "id": "minecraft:double_stone_slab3", + "count": 6, + "blockRuntimeId": 7256 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab4_cut_redsandstone_cut_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "damage": 2 + } + }, + "output": [ + { + "legacyId": -166, + "id": "minecraft:double_stone_slab4", + "count": 6, + "blockRuntimeId": 7275 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab4_cut_sandstone_cut_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 24, + "id": "minecraft:sandstone", + "damage": 2 + } + }, + "output": [ + { + "legacyId": -166, + "id": "minecraft:double_stone_slab4", + "count": 6, + "blockRuntimeId": 7274 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab4_smoothquartz_smooth_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 155, + "id": "minecraft:quartz_block", + "damage": 3 + } + }, + "output": [ + { + "legacyId": -166, + "id": "minecraft:double_stone_slab4", + "count": 6, + "blockRuntimeId": 7272 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab_quartz_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 155, + "id": "minecraft:quartz_block" + } + }, + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 6, + "blockRuntimeId": 7229 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 168, + "id": "minecraft:prismarine" + } + }, + "output": [ + { + "legacyId": 182, + "id": "minecraft:double_stone_slab2", + "count": 6, + "blockRuntimeId": 7241 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab_sandstone_heiroglyphs_recipeId", + "type": 1, + "input": { + "A": { + "legacyId": 24, + "id": "minecraft:sandstone", + "damage": 1 + } + }, + "output": [ + { + "legacyId": 44, + "id": "minecraft:double_stone_slab", + "count": 6, + "blockRuntimeId": 7224 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "tool_material_recipe_0_0", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 310, + "id": "minecraft:wooden_pickaxe" + } + ], + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "tool_material_recipe_0_1", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 309, + "id": "minecraft:wooden_shovel" + } + ], + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "tool_material_recipe_0_2", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 311, + "id": "minecraft:wooden_axe" + } + ], + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "tool_material_recipe_0_3", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 329, + "id": "minecraft:wooden_hoe" + } + ], + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "type": 4, + "uuid": "aecd2294-4b94-434b-8667-4499bb2c9327" + }, + { + "id": "weapon_arrow_recipe_10", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 10 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 11, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_11", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 11 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 12, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_12", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 12 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 13, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_13", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 13 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 14, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_14", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 14 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 15, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_15", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 15 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 16, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_16", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 16 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 17, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_17", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 17 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 18, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_18", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 18 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 19, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_19", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 19 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 20, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_20", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 20 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 21, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_21", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 21 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 22, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_22", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 22 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 23, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_23", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 23 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 24, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_24", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 24 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 25, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_25", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 25 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 26, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_26", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 26 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 27, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_27", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 27 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 28, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_28", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 28 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 29, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_29", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 29 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 30, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_30", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 30 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 31, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_31", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 31 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 32, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_32", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 32 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 33, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_33", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 33 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 34, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_34", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 34 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 35, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_35", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 35 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 36, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_36", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 36 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 37, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_37", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 37 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 38, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_38", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 38 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 39, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_39", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 39 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 40, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_40", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 40 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 41, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_41", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 41 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 42, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_42", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 42 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 43, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_5", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 5 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 6, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_6", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 6 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 7, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_7", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 7 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 8, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_8", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 8 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 9, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_9", + "type": 1, + "input": { + "A": { + "legacyId": 301, + "id": "minecraft:arrow" + }, + "B": { + "legacyId": 562, + "id": "minecraft:lingering_potion", + "damage": 9 + } + }, + "output": [ + { + "legacyId": 301, + "id": "minecraft:arrow", + "damage": 10, + "count": 8 + } + ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "weapon_stick_recipe_0_0", + "type": 1, + "input": { + "A": { + "legacyId": 5, + "id": "minecraft:planks", + "damage": 32767 + }, + "B": { + "legacyId": 320, + "id": "minecraft:stick", + "damage": 32767 + } + }, + "output": [ + { + "legacyId": 308, + "id": "minecraft:wooden_sword" + } + ], + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "wool_dye_wool_0_1", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_10", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_11", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_12", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_13", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_14", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_15", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_2", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_3", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_4", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_5", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_6", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_7", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_8", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_0_9", + "type": 0, + "input": [ + { + "legacyId": 413, + "id": "minecraft:ink_sac", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_0", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_1", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_11", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_12", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_13", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_14", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_15", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_2", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_3", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_4", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_5", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_6", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_7", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_8", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_10_9", + "type": 0, + "input": [ + { + "legacyId": 405, + "id": "minecraft:lime_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7920 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_0", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_1", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_10", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_12", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_13", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_14", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_15", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_2", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_3", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_4", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_5", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_6", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_7", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_8", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_11_9", + "type": 0, + "input": [ + { + "legacyId": 406, + "id": "minecraft:yellow_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 28 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7919 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_0", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 28 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_1", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 5 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_10", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_11", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_13", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_14", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_15", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_2", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_3", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_4", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_5", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_6", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_7", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_8", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_12_9", + "type": 0, + "input": [ + { + "legacyId": 407, + "id": "minecraft:light_blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7918 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_0", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_1", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_10", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_11", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_12", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_14", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_15", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_2", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_3", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_4", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_5", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_6", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_7", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_8", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_13_9", + "type": 0, + "input": [ + { + "legacyId": 408, + "id": "minecraft:magenta_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7917 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_0", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_1", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_10", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_11", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_12", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_13", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_15", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_2", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_3", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_4", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_5", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_6", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_7", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_8", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_14_9", + "type": 0, + "input": [ + { + "legacyId": 409, + "id": "minecraft:orange_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7916 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_0", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_1", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_10", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_11", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_12", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_13", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_14", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_2", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_3", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_4", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_5", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_6", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_7", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_8", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_15_9", + "type": 0, + "input": [ + { + "legacyId": 411, + "id": "minecraft:bone_meal", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_1", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_10", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_11", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_12", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_13", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_14", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_15", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_2", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_3", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_4", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_5", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_6", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_7", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_8", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_16_9", + "type": 0, + "input": [ + { + "legacyId": 395, + "id": "minecraft:black_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7930 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_0", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_1", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_10", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_11", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_12", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_13", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_14", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_15", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ + { + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_2", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 5 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_4", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 5 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_5", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 12 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_6", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 12 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_7", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 12 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_8", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 40 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_17_9", + "type": 0, + "input": [ + { + "legacyId": 398, + "id": "minecraft:brown_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 40 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_0", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 40 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_1", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 19 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_10", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 19 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_11", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 19 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_12", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 9 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_13", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 9 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_14", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 9 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_15", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 21 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_2", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 21 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_3", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 21 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_5", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 25 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_6", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 25 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_7", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 25 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_8", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 14 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_18_9", + "type": 0, + "input": [ + { + "legacyId": 399, + "id": "minecraft:blue_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 14 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_0", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 14 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_1", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 37 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_10", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 37 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_11", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 37 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_12", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 13 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_13", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 13 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_14", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 13 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_2", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 23, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 24 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_3", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 23, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_4", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 23, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_5", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_6", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_7", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_8", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 22 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_19_9", + "type": 0, + "input": [ + { + "legacyId": 410, + "id": "minecraft:white_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 22 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7915 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_0", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 22 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_10", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 7, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 8 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_11", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 7, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 8 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_12", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 7, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 8 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_13", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 17 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_14", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 17 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_15", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 17 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_2", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 11 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_3", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 11 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_4", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 11 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_5", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 10 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_6", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 10 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_7", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 10 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_8", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 6, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 8 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_1_9", + "type": 0, + "input": [ + { + "legacyId": 396, + "id": "minecraft:red_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 6, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 8 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7929 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_0", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 6, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 8 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_1", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 18 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_10", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_11", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_12", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 18 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_13", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_14", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_15", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 2, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 35 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_3", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 2, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_4", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 2, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_5", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 26, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_6", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 26, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_7", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 26, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_8", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 35 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_2_9", + "type": 0, + "input": [ + { + "legacyId": 397, + "id": "minecraft:green_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7928 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_0", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_1", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_10", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_11", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_12", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 5, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 7 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_13", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 7 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_14", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 7 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_15", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 6 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_2", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 6 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_4", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 6 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_5", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_6", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_7", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_8", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 27 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_3_9", + "type": 0, + "input": [ + { + "legacyId": 412, + "id": "minecraft:cocoa_beans", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 27 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7927 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_0", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 27 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_1", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 26 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_10", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 26 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_11", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 26 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_12", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 30 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_13", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 30 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_14", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 30 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_15", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 29 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_2", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 29 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_3", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 29 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_5", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 18 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_6", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_7", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_8", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 40, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 41 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_4_9", + "type": 0, + "input": [ + { + "legacyId": 414, + "id": "minecraft:lapis_lazuli", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 40, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 41 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7926 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_0", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 40, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 41 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_1", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_10", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_11", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_12", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 33 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_13", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 33 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_14", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 33 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_15", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 32 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_2", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 32 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_3", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 32 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_4", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 24 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_6", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_7", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_8", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_5_9", + "type": 0, + "input": [ + { + "legacyId": 400, + "id": "minecraft:purple_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7925 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_0", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_1", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 17 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_10", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 17 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_11", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 17 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_12", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 16 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_13", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 16 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_14", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 16 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_15", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 15 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_2", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 15 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_3", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 15 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_4", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_5", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_7", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_8", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 39 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_6_9", + "type": 0, + "input": [ + { + "legacyId": 401, + "id": "minecraft:cyan_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 39 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7924 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_0", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 39 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_1", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 37, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 38 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_10", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 38 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_11", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 38 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_12", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_13", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_14", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_15", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 19, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 20 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_2", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 19, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 20 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_3", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 19, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 20 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_4", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_5", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_6", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_8", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_7_9", + "type": 0, + "input": [ + { + "legacyId": 402, + "id": "minecraft:light_gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7923 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_0", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_1", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 3 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_10", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 3 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_11", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 3 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_12", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_13", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_14", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_15", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 4 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_2", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 4 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_3", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 4 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_4", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_5", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_6", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_7", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_8_9", + "type": 0, + "input": [ + { + "legacyId": 403, + "id": "minecraft:gray_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 6 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7922 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_0", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 15 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_1", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 14 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_10", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 5 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_11", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 4 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_12", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 3 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_13", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 2 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_14", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 1 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_15", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool" + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_2", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 13 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_3", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 12 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_4", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 11 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "inputMeta" : 34, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 35 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_5", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 10 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 34, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_6", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 9 + } + ], + "output": [ { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 34, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 } - ], - "containerMixes" : [ + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_7", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 8 + } + ], + "output": [ { - "inputId" : "minecraft:potion", - "reagentId" : "minecraft:gunpowder", - "outputId" : "minecraft:splash_potion" - }, + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 + } + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "wool_dye_wool_9_8", + "type": 0, + "input": [ + { + "legacyId": 404, + "id": "minecraft:pink_dye", + "damage": 32767 + }, + { + "legacyId": 35, + "id": "minecraft:wool", + "damage": 7 + } + ], + "output": [ { - "inputId" : "minecraft:splash_potion", - "reagentId" : "minecraft:dragon_breath", - "outputId" : "minecraft:lingering_potion" + "legacyId": 35, + "id": "minecraft:wool", + "blockRuntimeId": 7921 } - ] + ], + "block": "crafting_table", + "priority": 50 + }, + { + "type": 3, + "input": { + "legacyId": -408, + "id": "minecraft:deepslate_copper_ore", + "damage": -1 + }, + "output": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -408, + "id": "minecraft:deepslate_copper_ore", + "damage": -1 + }, + "output": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": -407, + "id": "minecraft:deepslate_emerald_ore", + "damage": -1 + }, + "output": { + "legacyId": 512, + "id": "minecraft:emerald", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -407, + "id": "minecraft:deepslate_emerald_ore", + "damage": -1 + }, + "output": { + "legacyId": 512, + "id": "minecraft:emerald", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": -406, + "id": "minecraft:deepslate_coal_ore", + "damage": -1 + }, + "output": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -406, + "id": "minecraft:deepslate_coal_ore", + "damage": -1 + }, + "output": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": -405, + "id": "minecraft:deepslate_diamond_ore", + "damage": -1 + }, + "output": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -405, + "id": "minecraft:deepslate_diamond_ore", + "damage": -1 + }, + "output": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": -403, + "id": "minecraft:deepslate_redstone_ore", + "damage": -1 + }, + "output": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -403, + "id": "minecraft:deepslate_redstone_ore", + "damage": -1 + }, + "output": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": -402, + "id": "minecraft:deepslate_gold_ore", + "damage": -1 + }, + "output": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -402, + "id": "minecraft:deepslate_gold_ore", + "damage": -1 + }, + "output": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": -401, + "id": "minecraft:deepslate_iron_ore", + "damage": -1 + }, + "output": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -401, + "id": "minecraft:deepslate_iron_ore", + "damage": -1 + }, + "output": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": -400, + "id": "minecraft:deepslate_lapis_ore", + "damage": -1 + }, + "output": { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -400, + "id": "minecraft:deepslate_lapis_ore", + "damage": -1 + }, + "output": { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": -391, + "id": "minecraft:deepslate_bricks", + "damage": -1 + }, + "output": { + "legacyId": -410, + "id": "minecraft:cracked_deepslate_bricks", + "blockRuntimeId": 3767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -387, + "id": "minecraft:deepslate_tiles", + "damage": -1 + }, + "output": { + "legacyId": -409, + "id": "minecraft:cracked_deepslate_tiles", + "blockRuntimeId": 3768 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": -1 + }, + "output": { + "legacyId": -378, + "id": "minecraft:deepslate", + "blockRuntimeId": 4100 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -311, + "id": "minecraft:copper_ore", + "damage": -1 + }, + "output": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -311, + "id": "minecraft:copper_ore", + "damage": -1 + }, + "output": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": -288, + "id": "minecraft:nether_gold_ore", + "damage": -1 + }, + "output": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -288, + "id": "minecraft:nether_gold_ore", + "damage": -1 + }, + "output": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks", + "damage": -1 + }, + "output": { + "legacyId": -280, + "id": "minecraft:cracked_polished_blackstone_bricks", + "blockRuntimeId": 3770 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -271, + "id": "minecraft:ancient_debris", + "damage": -1 + }, + "output": { + "legacyId": 611, + "id": "minecraft:netherite_scrap", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -271, + "id": "minecraft:ancient_debris", + "damage": -1 + }, + "output": { + "legacyId": 611, + "id": "minecraft:netherite_scrap", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": -234, + "id": "minecraft:basalt", + "damage": -1 + }, + "output": { + "legacyId": -377, + "id": "minecraft:smooth_basalt", + "blockRuntimeId": 6886 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:wood" + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 1 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 2 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 3 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 4 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 5 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 8 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 9 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 10 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 11 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 12 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:wood", + "damage": 13 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -156, + "id": "minecraft:sea_pickle", + "damage": -1 + }, + "output": { + "legacyId": 405, + "id": "minecraft:lime_dye" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -10, + "id": "minecraft:stripped_oak_log", + "damage": -1 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -9, + "id": "minecraft:stripped_dark_oak_log", + "damage": -1 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -8, + "id": "minecraft:stripped_acacia_log", + "damage": -1 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -7, + "id": "minecraft:stripped_jungle_log", + "damage": -1 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -6, + "id": "minecraft:stripped_birch_log", + "damage": -1 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -5, + "id": "minecraft:stripped_spruce_log", + "damage": -1 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 1, + "id": "minecraft:stone" + }, + "output": { + "legacyId": -183, + "id": "minecraft:smooth_stone", + "blockRuntimeId": 6911 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 4, + "id": "minecraft:cobblestone", + "damage": -1 + }, + "output": { + "legacyId": 1, + "id": "minecraft:stone", + "blockRuntimeId": 7180 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 12, + "id": "minecraft:sand", + "damage": -1 + }, + "output": { + "legacyId": 20, + "id": "minecraft:glass", + "blockRuntimeId": 4883 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 14, + "id": "minecraft:gold_ore", + "damage": -1 + }, + "output": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 14, + "id": "minecraft:gold_ore", + "damage": -1 + }, + "output": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 15, + "id": "minecraft:iron_ore", + "damage": -1 + }, + "output": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 15, + "id": "minecraft:iron_ore", + "damage": -1 + }, + "output": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 16, + "id": "minecraft:coal_ore", + "damage": -1 + }, + "output": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 16, + "id": "minecraft:coal_ore", + "damage": -1 + }, + "output": { + "legacyId": 302, + "id": "minecraft:coal" + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 17, + "id": "minecraft:log" + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 1 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 2 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 17, + "id": "minecraft:log", + "damage": 3 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 19, + "id": "minecraft:sponge", + "damage": 1 + }, + "output": { + "legacyId": 19, + "id": "minecraft:sponge", + "blockRuntimeId": 6963 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 21, + "id": "minecraft:lapis_ore", + "damage": -1 + }, + "output": { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 21, + "id": "minecraft:lapis_ore", + "damage": -1 + }, + "output": { + "legacyId": 414, + "id": "minecraft:lapis_lazuli" + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 24, + "id": "minecraft:sandstone", + "damage": -1 + }, + "output": { + "legacyId": 24, + "id": "minecraft:sandstone", + "blockRuntimeId": 6709 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 56, + "id": "minecraft:diamond_ore", + "damage": -1 + }, + "output": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 56, + "id": "minecraft:diamond_ore", + "damage": -1 + }, + "output": { + "legacyId": 304, + "id": "minecraft:diamond", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 73, + "id": "minecraft:redstone_ore", + "damage": -1 + }, + "output": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 73, + "id": "minecraft:redstone_ore", + "damage": -1 + }, + "output": { + "legacyId": 373, + "id": "minecraft:redstone", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 81, + "id": "minecraft:cactus", + "damage": -1 + }, + "output": { + "legacyId": 397, + "id": "minecraft:green_dye" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 82, + "id": "minecraft:clay", + "damage": -1 + }, + "output": { + "legacyId": 172, + "id": "minecraft:hardened_clay", + "blockRuntimeId": 5083 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 87, + "id": "minecraft:netherrack", + "damage": -1 + }, + "output": { + "legacyId": 523, + "id": "minecraft:netherbrick", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 98, + "id": "minecraft:stonebrick" + }, + "output": { + "legacyId": 98, + "id": "minecraft:stonebrick", + "blockRuntimeId": 7291 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 112, + "id": "minecraft:nether_brick", + "damage": -1 + }, + "output": { + "legacyId": -303, + "id": "minecraft:cracked_nether_bricks", + "blockRuntimeId": 3769 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 129, + "id": "minecraft:emerald_ore", + "damage": -1 + }, + "output": { + "legacyId": 512, + "id": "minecraft:emerald", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 129, + "id": "minecraft:emerald_ore", + "damage": -1 + }, + "output": { + "legacyId": 512, + "id": "minecraft:emerald", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 153, + "id": "minecraft:quartz_ore", + "damage": -1 + }, + "output": { + "legacyId": 524, + "id": "minecraft:quartz", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 153, + "id": "minecraft:quartz_ore", + "damage": -1 + }, + "output": { + "legacyId": 524, + "id": "minecraft:quartz", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 155, + "id": "minecraft:quartz_block" + }, + "output": { + "legacyId": 155, + "id": "minecraft:quartz_block", + "blockRuntimeId": 6548 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay" + }, + "output": { + "legacyId": 220, + "id": "minecraft:white_glazed_terracotta", + "blockRuntimeId": 7800 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 1 + }, + "output": { + "legacyId": 221, + "id": "minecraft:orange_glazed_terracotta", + "blockRuntimeId": 5748 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 2 + }, + "output": { + "legacyId": 222, + "id": "minecraft:magenta_glazed_terracotta", + "blockRuntimeId": 5596 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 3 + }, + "output": { + "legacyId": 223, + "id": "minecraft:light_blue_glazed_terracotta", + "blockRuntimeId": 5484 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 4 + }, + "output": { + "legacyId": 224, + "id": "minecraft:yellow_glazed_terracotta", + "blockRuntimeId": 7942 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 5 + }, + "output": { + "legacyId": 225, + "id": "minecraft:lime_glazed_terracotta", + "blockRuntimeId": 5532 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 6 + }, + "output": { + "legacyId": 226, + "id": "minecraft:pink_glazed_terracotta", + "blockRuntimeId": 5779 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 7 + }, + "output": { + "legacyId": 227, + "id": "minecraft:gray_glazed_terracotta", + "blockRuntimeId": 5010 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 8 + }, + "output": { + "legacyId": 228, + "id": "minecraft:silver_glazed_terracotta", + "blockRuntimeId": 6846 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 9 + }, + "output": { + "legacyId": 229, + "id": "minecraft:cyan_glazed_terracotta", + "blockRuntimeId": 3931 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 10 + }, + "output": { + "legacyId": 219, + "id": "minecraft:purple_glazed_terracotta", + "blockRuntimeId": 6519 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 11 + }, + "output": { + "legacyId": 231, + "id": "minecraft:blue_glazed_terracotta", + "blockRuntimeId": 685 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 12 + }, + "output": { + "legacyId": 232, + "id": "minecraft:brown_glazed_terracotta", + "blockRuntimeId": 894 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 13 + }, + "output": { + "legacyId": 233, + "id": "minecraft:green_glazed_terracotta", + "blockRuntimeId": 5026 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 14 + }, + "output": { + "legacyId": 234, + "id": "minecraft:red_glazed_terracotta", + "blockRuntimeId": 6601 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:stained_hardened_clay", + "damage": 15 + }, + "output": { + "legacyId": 235, + "id": "minecraft:black_glazed_terracotta", + "blockRuntimeId": 488 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 162, + "id": "minecraft:log2" + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 162, + "id": "minecraft:log2", + "damage": 1 + }, + "output": { + "legacyId": 303, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "damage": -1 + }, + "output": { + "legacyId": 179, + "id": "minecraft:red_sandstone", + "blockRuntimeId": 6636 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 262, + "id": "minecraft:porkchop", + "damage": -1 + }, + "output": { + "legacyId": 263, + "id": "minecraft:cooked_porkchop", + "damage": 32767 + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "legacyId": 262, + "id": "minecraft:porkchop", + "damage": -1 + }, + "output": { + "legacyId": 263, + "id": "minecraft:cooked_porkchop", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 262, + "id": "minecraft:porkchop", + "damage": -1 + }, + "output": { + "legacyId": 263, + "id": "minecraft:cooked_porkchop", + "damage": 32767 + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "legacyId": 262, + "id": "minecraft:porkchop", + "damage": -1 + }, + "output": { + "legacyId": 263, + "id": "minecraft:cooked_porkchop", + "damage": 32767 + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "legacyId": 264, + "id": "minecraft:cod", + "damage": -1 + }, + "output": { + "legacyId": 268, + "id": "minecraft:cooked_cod", + "damage": 32767 + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "legacyId": 264, + "id": "minecraft:cod", + "damage": -1 + }, + "output": { + "legacyId": 268, + "id": "minecraft:cooked_cod", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 264, + "id": "minecraft:cod", + "damage": -1 + }, + "output": { + "legacyId": 268, + "id": "minecraft:cooked_cod", + "damage": 32767 + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "legacyId": 264, + "id": "minecraft:cod", + "damage": -1 + }, + "output": { + "legacyId": 268, + "id": "minecraft:cooked_cod", + "damage": 32767 + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "legacyId": 265, + "id": "minecraft:salmon", + "damage": -1 + }, + "output": { + "legacyId": 269, + "id": "minecraft:cooked_salmon", + "damage": 32767 + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "legacyId": 265, + "id": "minecraft:salmon", + "damage": -1 + }, + "output": { + "legacyId": 269, + "id": "minecraft:cooked_salmon", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 265, + "id": "minecraft:salmon", + "damage": -1 + }, + "output": { + "legacyId": 269, + "id": "minecraft:cooked_salmon", + "damage": 32767 + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "legacyId": 265, + "id": "minecraft:salmon", + "damage": -1 + }, + "output": { + "legacyId": 269, + "id": "minecraft:cooked_salmon", + "damage": 32767 + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "legacyId": 273, + "id": "minecraft:beef", + "damage": -1 + }, + "output": { + "legacyId": 274, + "id": "minecraft:cooked_beef", + "damage": 32767 + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "legacyId": 273, + "id": "minecraft:beef", + "damage": -1 + }, + "output": { + "legacyId": 274, + "id": "minecraft:cooked_beef", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 273, + "id": "minecraft:beef", + "damage": -1 + }, + "output": { + "legacyId": 274, + "id": "minecraft:cooked_beef", + "damage": 32767 + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "legacyId": 273, + "id": "minecraft:beef", + "damage": -1 + }, + "output": { + "legacyId": 274, + "id": "minecraft:cooked_beef", + "damage": 32767 + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "legacyId": 275, + "id": "minecraft:chicken", + "damage": -1 + }, + "output": { + "legacyId": 276, + "id": "minecraft:cooked_chicken", + "damage": 32767 + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "legacyId": 275, + "id": "minecraft:chicken", + "damage": -1 + }, + "output": { + "legacyId": 276, + "id": "minecraft:cooked_chicken", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 275, + "id": "minecraft:chicken", + "damage": -1 + }, + "output": { + "legacyId": 276, + "id": "minecraft:cooked_chicken", + "damage": 32767 + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "legacyId": 275, + "id": "minecraft:chicken", + "damage": -1 + }, + "output": { + "legacyId": 276, + "id": "minecraft:cooked_chicken", + "damage": 32767 + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "legacyId": 280, + "id": "minecraft:potato", + "damage": -1 + }, + "output": { + "legacyId": 281, + "id": "minecraft:baked_potato", + "damage": 32767 + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "legacyId": 280, + "id": "minecraft:potato", + "damage": -1 + }, + "output": { + "legacyId": 281, + "id": "minecraft:baked_potato", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 280, + "id": "minecraft:potato", + "damage": -1 + }, + "output": { + "legacyId": 281, + "id": "minecraft:baked_potato", + "damage": 32767 + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "legacyId": 280, + "id": "minecraft:potato", + "damage": -1 + }, + "output": { + "legacyId": 281, + "id": "minecraft:baked_potato", + "damage": 32767 + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "legacyId": 288, + "id": "minecraft:rabbit", + "damage": -1 + }, + "output": { + "legacyId": 289, + "id": "minecraft:cooked_rabbit", + "damage": 32767 + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "legacyId": 288, + "id": "minecraft:rabbit", + "damage": -1 + }, + "output": { + "legacyId": 289, + "id": "minecraft:cooked_rabbit", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 288, + "id": "minecraft:rabbit", + "damage": -1 + }, + "output": { + "legacyId": 289, + "id": "minecraft:cooked_rabbit", + "damage": 32767 + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "legacyId": 288, + "id": "minecraft:rabbit", + "damage": -1 + }, + "output": { + "legacyId": 289, + "id": "minecraft:cooked_rabbit", + "damage": 32767 + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "legacyId": 296, + "id": "minecraft:iron_shovel", + "damage": -1 + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 296, + "id": "minecraft:iron_shovel", + "damage": -1 + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 297, + "id": "minecraft:iron_pickaxe", + "damage": -1 + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 297, + "id": "minecraft:iron_pickaxe", + "damage": -1 + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 298, + "id": "minecraft:iron_axe", + "damage": -1 + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 298, + "id": "minecraft:iron_axe", + "damage": -1 + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 307, + "id": "minecraft:iron_sword", + "damage": -1 + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 307, + "id": "minecraft:iron_sword", + "damage": -1 + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 322, + "id": "minecraft:golden_sword", + "damage": -1 + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 322, + "id": "minecraft:golden_sword", + "damage": -1 + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 323, + "id": "minecraft:golden_shovel", + "damage": -1 + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 323, + "id": "minecraft:golden_shovel", + "damage": -1 + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 324, + "id": "minecraft:golden_pickaxe", + "damage": -1 + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 324, + "id": "minecraft:golden_pickaxe", + "damage": -1 + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 325, + "id": "minecraft:golden_axe", + "damage": -1 + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 325, + "id": "minecraft:golden_axe", + "damage": -1 + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 331, + "id": "minecraft:iron_hoe", + "damage": -1 + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 331, + "id": "minecraft:iron_hoe", + "damage": -1 + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 333, + "id": "minecraft:golden_hoe", + "damage": -1 + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 333, + "id": "minecraft:golden_hoe", + "damage": -1 + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 339, + "id": "minecraft:chainmail_helmet" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 339, + "id": "minecraft:chainmail_helmet" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 340, + "id": "minecraft:chainmail_chestplate" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 340, + "id": "minecraft:chainmail_chestplate" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 341, + "id": "minecraft:chainmail_leggings" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 341, + "id": "minecraft:chainmail_leggings" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 342, + "id": "minecraft:chainmail_boots" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 342, + "id": "minecraft:chainmail_boots" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 343, + "id": "minecraft:iron_helmet" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 343, + "id": "minecraft:iron_helmet" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 344, + "id": "minecraft:iron_chestplate" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 344, + "id": "minecraft:iron_chestplate" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 345, + "id": "minecraft:iron_leggings" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 345, + "id": "minecraft:iron_leggings" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 346, + "id": "minecraft:iron_boots" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 346, + "id": "minecraft:iron_boots" + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 351, + "id": "minecraft:golden_helmet" + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 351, + "id": "minecraft:golden_helmet" + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 352, + "id": "minecraft:golden_chestplate" + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 352, + "id": "minecraft:golden_chestplate" + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 353, + "id": "minecraft:golden_leggings" + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 353, + "id": "minecraft:golden_leggings" + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 354, + "id": "minecraft:golden_boots" + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 354, + "id": "minecraft:golden_boots" + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 382, + "id": "minecraft:kelp", + "damage": -1 + }, + "output": { + "legacyId": 270, + "id": "minecraft:dried_kelp", + "damage": 32767 + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "legacyId": 382, + "id": "minecraft:kelp", + "damage": -1 + }, + "output": { + "legacyId": 270, + "id": "minecraft:dried_kelp", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 382, + "id": "minecraft:kelp", + "damage": -1 + }, + "output": { + "legacyId": 270, + "id": "minecraft:dried_kelp", + "damage": 32767 + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "legacyId": 382, + "id": "minecraft:kelp", + "damage": -1 + }, + "output": { + "legacyId": 270, + "id": "minecraft:dried_kelp", + "damage": 32767 + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "legacyId": 384, + "id": "minecraft:clay_ball", + "damage": -1 + }, + "output": { + "legacyId": 383, + "id": "minecraft:brick", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 505, + "id": "minecraft:raw_iron", + "damage": -1 + }, + "output": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 505, + "id": "minecraft:raw_iron", + "damage": -1 + }, + "output": { + "legacyId": 305, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 506, + "id": "minecraft:raw_gold", + "damage": -1 + }, + "output": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 506, + "id": "minecraft:raw_gold", + "damage": -1 + }, + "output": { + "legacyId": 306, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 507, + "id": "minecraft:raw_copper", + "damage": -1 + }, + "output": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 507, + "id": "minecraft:raw_copper", + "damage": -1 + }, + "output": { + "legacyId": 504, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 531, + "id": "minecraft:iron_horse_armor", + "damage": -1 + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 531, + "id": "minecraft:iron_horse_armor", + "damage": -1 + }, + "output": { + "legacyId": 569, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 532, + "id": "minecraft:golden_horse_armor", + "damage": -1 + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 532, + "id": "minecraft:golden_horse_armor", + "damage": -1 + }, + "output": { + "legacyId": 425, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 550, + "id": "minecraft:mutton", + "damage": -1 + }, + "output": { + "legacyId": 551, + "id": "minecraft:cooked_mutton", + "damage": 32767 + }, + "block": "smoker" + }, + { + "type": 3, + "input": { + "legacyId": 550, + "id": "minecraft:mutton", + "damage": -1 + }, + "output": { + "legacyId": 551, + "id": "minecraft:cooked_mutton", + "damage": 32767 + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 550, + "id": "minecraft:mutton", + "damage": -1 + }, + "output": { + "legacyId": 551, + "id": "minecraft:cooked_mutton", + "damage": 32767 + }, + "block": "soul_campfire" + }, + { + "type": 3, + "input": { + "legacyId": 550, + "id": "minecraft:mutton", + "damage": -1 + }, + "output": { + "legacyId": 551, + "id": "minecraft:cooked_mutton", + "damage": 32767 + }, + "block": "campfire" + }, + { + "type": 3, + "input": { + "legacyId": 558, + "id": "minecraft:chorus_fruit", + "damage": -1 + }, + "output": { + "legacyId": 559, + "id": "minecraft:popped_chorus_fruit", + "damage": 32767 + }, + "block": "furnace" + } + ], + "potionMixes": [ + { + "inputId": "minecraft:potion", + "inputMeta": 17, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 42 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 17, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 42 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 17, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 42 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 27, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 27, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 27, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 31 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 31 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 31 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 28 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 28 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 28 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:golden_carrot", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 5 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:golden_carrot", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 5 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:golden_carrot", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 5 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 12 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 12 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 12 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:phantom_membrane", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 40 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:phantom_membrane", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 40 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:phantom_membrane", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 40 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:pufferfish", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 19 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:pufferfish", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 19 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:pufferfish", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 19 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 9 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 9 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 9 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 21 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 21 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 21 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 25 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 25 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 25 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 14 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 14 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 14 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:turtle_helmet", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 37 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:turtle_helmet", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 37 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:turtle_helmet", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 37 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 12, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 13 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 12, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 13 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 12, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 13 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 23, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 23, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 23, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 21, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 22 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 21, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 22 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 21, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 22 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 7, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 7, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 7, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 9, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 9, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 9, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 9, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 11 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 9, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 11 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 9, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 11 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 9, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 10 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 9, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 10 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 9, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 10 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 6, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 6, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 6, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 15, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 15, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 15, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 10, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 10, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 10, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 2, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 2, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 2, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 26, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 26, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 26, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 32, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 32, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 32, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 1, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 1, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 1, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 5, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 7 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 5, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 7 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 5, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 7 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 25, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 25, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 25, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 25, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 27 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 25, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 27 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 25, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 27 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 25, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 26 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 25, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 26 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 25, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 26 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 28, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 30 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 28, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 30 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 28, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 30 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 28, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 29 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 28, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 29 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 28, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 29 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 17, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 17, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 17, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 40, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 41 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 40, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 41 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 40, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 41 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 31, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 31, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 31, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 31, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 33 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 31, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 33 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 31, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 33 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 31, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 32 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 31, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 32 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 31, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 32 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 22, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 22, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 22, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 33, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 33, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 33, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 14, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 14, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 14, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 14, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 16 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 14, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 16 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 14, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 16 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 14, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 15 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 14, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 15 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 14, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 15 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 3, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 3, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 3, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 37, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 39 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 37, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 39 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 37, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 39 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 37, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 38 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 37, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 38 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 37, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 38 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 19, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 20 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 19, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 20 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 19, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 20 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 3 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 3 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 3 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:nether_wart", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 4 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:nether_wart", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 4 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:nether_wart", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 4 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 34, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 34, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 34, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 35 + } + ], + "containerMixes": [ + { + "inputId": "minecraft:potion", + "reagentId": "minecraft:gunpowder", + "outputId": "minecraft:splash_potion" + }, + { + "inputId": "minecraft:splash_potion", + "reagentId": "minecraft:dragon_breath", + "outputId": "minecraft:lingering_potion" + } + ] } From 4da0ef6b3d31816e47072cbd717963db981b95f1 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 24 Oct 2021 04:30:39 -0300 Subject: [PATCH 240/394] Fix air in recipes.json, change structure of creativeitems.json, suppress warnings about unsupported blocks in recipes.json --- .../cn/nukkit/inventory/CraftingManager.java | 39 +- src/main/java/cn/nukkit/item/Item.java | 48 +- .../java/cn/nukkit/item/RuntimeItems.java | 18 +- src/main/java/cn/nukkit/utils/Config.java | 2 +- src/main/resources/creativeitems.json | 9712 ++++++++--------- src/main/resources/recipes.json | 3140 +++--- .../updater/AllResourceUpdates.java | 106 +- .../dumps/proxypass/creativeitems.json | 5203 +++++++++ 8 files changed, 11425 insertions(+), 6843 deletions(-) create mode 100644 src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json diff --git a/src/main/java/cn/nukkit/inventory/CraftingManager.java b/src/main/java/cn/nukkit/inventory/CraftingManager.java index d67e79b010d..12b96f43f7c 100644 --- a/src/main/java/cn/nukkit/inventory/CraftingManager.java +++ b/src/main/java/cn/nukkit/inventory/CraftingManager.java @@ -33,6 +33,7 @@ import java.io.InputStream; import java.io.UncheckedIOException; import java.util.*; +import java.util.stream.Stream; import java.util.zip.Deflater; /** @@ -328,8 +329,34 @@ private Item parseRecipeItem(Map data) { Item item; if (data.containsKey("blockState")) { + String blockStateId = data.get("blockState").toString(); + // TODO Remove this when the support is added to these blocks + if (Stream.of( + "minecraft:candle", + "minecraft:cracked_deepslate_bricks", + "minecraft:cracked_deepslate_tiles", + "minecraft:smooth_basalt", + "minecraft:moss_block", + "minecraft:deepslate", + "minecraft:copper", + "minecraft:raw_", + "minecraft:pointed_dripstone" + ).anyMatch(blockStateId::startsWith)) { + return Item.get(BlockID.AIR); + } + if (Stream.of( + "copper", "deepslate", "deepslate_slab", + "copper_slab", "copper_stairs" + ).anyMatch(name-> blockStateId.split(";", 2)[0].endsWith(name))) { + return Item.get(BlockID.AIR); + } + if (blockStateId.startsWith("minecraft:candle")) + switch (blockStateId) { + case "minecraft:candle;candles=0;lit=0": + case "minecraft:cracked_deepslate_bricks": + } try { - BlockState state = BlockState.of(data.get("blockState").toString()); + BlockState state = BlockState.of(blockStateId); item = state.asItemBlock(count); item.setCompoundTag(nbtBytes); if (fuzzy) { @@ -337,21 +364,21 @@ private Item parseRecipeItem(Map data) { } return item; } catch (BlockPropertyNotFoundException | UnknownRuntimeIdException e) { - int runtimeId = BlockStateRegistry.getKnownRuntimeIdByBlockStateId(data.get("blockState").toString()); + int runtimeId = BlockStateRegistry.getKnownRuntimeIdByBlockStateId(blockStateId); if (runtimeId == -1) { - log.warn("Unsupported block found in recipes.json: {}", data.get("blockState")); + log.warn("Unsupported block found in recipes.json: {}", blockStateId); return Item.get(BlockID.AIR); } int blockId = BlockStateRegistry.getBlockIdByRuntimeId(runtimeId); BlockState defaultBlockState = BlockState.of(blockId); if (defaultBlockState.getProperties().equals(BlockUnknown.PROPERTIES)) { - log.warn("Unsupported block found in recipes.json: {}", data.get("blockState")); + log.warn("Unsupported block found in recipes.json: {}", blockStateId); return Item.get(BlockID.AIR); } - log.error("Failed to load a recipe with {}", data.get("blockState"), e); + log.error("Failed to load a recipe with {}", blockStateId, e); return Item.get(Block.AIR); } catch (Exception e) { - log.error("Failed to load the block state {}", data.get("blockState"), e); + log.error("Failed to load the block state {}", blockStateId, e); return Item.getBlock(BlockID.AIR); } } diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index ca349e9edb3..3fc21fc9b41 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -6,7 +6,9 @@ import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; +import cn.nukkit.block.BlockUnknown; import cn.nukkit.blockproperty.UnknownRuntimeIdException; +import cn.nukkit.blockproperty.exception.BlockPropertyNotFoundException; import cn.nukkit.blockproperty.exception.InvalidBlockPropertyMetaException; import cn.nukkit.blockstate.BlockState; import cn.nukkit.blockstate.BlockStateRegistry; @@ -478,6 +480,50 @@ private static Item loadCreativeItemEntry(Map data) { String nbt = (String) data.get("nbt_b64"); byte[] nbtBytes = nbt != null ? Base64.getDecoder().decode(nbt) : EmptyArrays.EMPTY_BYTES; + if (data.containsKey("blockState")) { + String blockStateId = data.get("blockState").toString(); + // TODO Remove this when the support is added to these blocks + if (Stream.of( + "minecraft:candle", + "minecraft:deepslate", + "minecraft:cracked_deepslate_bricks", + "minecraft:cracked_deepslate_tiles", + "minecraft:smooth_basalt" + ).anyMatch(blockStateId::startsWith)) { + return null; + } + try { + // TODO Remove this when the support is added to these blocks + String[] stateParts = blockStateId.split(";", 2); + Integer blockId = BlockStateRegistry.getBlockId(stateParts[0]); + if (blockId != null && blockId > BlockID.QUARTZ_BRICKS) { + return Item.getBlock(BlockID.AIR); + } + + BlockState state = BlockState.of(blockStateId); + Item item = state.asItemBlock(); + item.setCompoundTag(nbtBytes); + return item; + } catch (BlockPropertyNotFoundException | UnknownRuntimeIdException e) { + int runtimeId = BlockStateRegistry.getKnownRuntimeIdByBlockStateId(blockStateId); + if (runtimeId == -1) { + log.warn("Unsupported block found in creativeitems.json: {}", blockStateId); + return null; + } + int blockId = BlockStateRegistry.getBlockIdByRuntimeId(runtimeId); + BlockState defaultBlockState = BlockState.of(blockId); + if (defaultBlockState.getProperties().equals(BlockUnknown.PROPERTIES)) { + log.warn("Unsupported block found in creativeitems.json: {}", blockStateId); + return null; + } + log.error("Failed to load the creative item with {}", blockStateId, e); + return null; + } catch (Exception e) { + log.error("Failed to load the creative item {}", blockStateId, e); + return null; + } + } + String id = data.get("id").toString(); Item item = null; if (data.containsKey("damage")) { @@ -619,7 +665,7 @@ public static Item get(int id, Integer meta, int count, byte[] tags) { } catch (UnknownRuntimeIdException e) { log.warn("Attempted to get an illegal item block {}:{} ({}), the runtime id was unknown and the meta was changed to 0", id, meta, blockId, e); - item = BlockState.of(id).asItemBlock(count); + item = BlockState.of(blockId).asItemBlock(count); } } } else if (c == null) { diff --git a/src/main/java/cn/nukkit/item/RuntimeItems.java b/src/main/java/cn/nukkit/item/RuntimeItems.java index 2f770ebaf0a..fb865f9f518 100644 --- a/src/main/java/cn/nukkit/item/RuntimeItems.java +++ b/src/main/java/cn/nukkit/item/RuntimeItems.java @@ -15,8 +15,10 @@ import lombok.experimental.UtilityClass; import lombok.extern.log4j.Log4j2; +import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; +import java.io.UncheckedIOException; import java.lang.reflect.Type; import java.nio.charset.StandardCharsets; import java.util.ArrayList; @@ -38,13 +40,17 @@ public class RuntimeItems { static { log.debug("Loading runtime items..."); - InputStream stream = Server.class.getClassLoader().getResourceAsStream("runtime_item_ids.json"); - if (stream == null) { - throw new AssertionError("Unable to load runtime_item_ids.json"); - } + Collection entries; + try(InputStream stream = Server.class.getClassLoader().getResourceAsStream("runtime_item_ids.json")) { + if (stream == null) { + throw new AssertionError("Unable to load runtime_item_ids.json"); + } - InputStreamReader reader = new InputStreamReader(stream, StandardCharsets.UTF_8); - Collection entries = GSON.fromJson(reader, ENTRY_TYPE); + InputStreamReader reader = new InputStreamReader(stream, StandardCharsets.UTF_8); + entries = GSON.fromJson(reader, ENTRY_TYPE); + } catch (IOException e) { + throw new UncheckedIOException(e); + } BinaryStream paletteBuffer = new BinaryStream(); paletteBuffer.putUnsignedVarInt(entries.size()); diff --git a/src/main/java/cn/nukkit/utils/Config.java b/src/main/java/cn/nukkit/utils/Config.java index ab79eb60a64..3ff59715f8f 100644 --- a/src/main/java/cn/nukkit/utils/Config.java +++ b/src/main/java/cn/nukkit/utils/Config.java @@ -245,7 +245,7 @@ public boolean saveAsJson(Boolean async, Gson gson) { if (!this.correct) { return false; } - save0(async, new StringBuilder(gson.toJson(this.config))); + save0(async, new StringBuilder(gson.toJson(this.config)).append('\n')); return true; } diff --git a/src/main/resources/creativeitems.json b/src/main/resources/creativeitems.json index 5bdc412a55a..86a2fa051db 100644 --- a/src/main/resources/creativeitems.json +++ b/src/main/resources/creativeitems.json @@ -1,5203 +1,4513 @@ { - "items" : [ - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5797 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5798 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5799 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5800 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5801 - }, - { - "id" : "minecraft:planks", - "blockRuntimeId" : 5802 - }, - { - "id" : "minecraft:crimson_planks", - "blockRuntimeId" : 3840 - }, - { - "id" : "minecraft:warped_planks", - "blockRuntimeId" : 7598 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1319 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1320 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1321 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1322 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1323 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1324 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1331 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1326 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1327 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1325 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1328 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1332 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1329 - }, - { - "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1330 - }, - { - "id" : "minecraft:blackstone_wall", - "blockRuntimeId" : 507 - }, - { - "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6041 - }, - { - "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5838 - }, - { - "id" : "minecraft:cobbled_deepslate_wall", - "blockRuntimeId" : 1156 - }, - { - "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4298 - }, - { - "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6216 - }, - { - "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4115 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4774 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4775 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4776 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4777 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4778 - }, - { - "id" : "minecraft:fence", - "blockRuntimeId" : 4779 - }, - { - "id" : "minecraft:nether_brick_fence", - "blockRuntimeId" : 5689 - }, - { - "id" : "minecraft:crimson_fence", - "blockRuntimeId" : 3818 - }, - { - "id" : "minecraft:warped_fence", - "blockRuntimeId" : 7576 - }, - { - "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4780 - }, - { - "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 7010 - }, - { - "id" : "minecraft:birch_fence_gate", - "blockRuntimeId" : 400 - }, - { - "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5253 - }, - { - "id" : "minecraft:acacia_fence_gate", - "blockRuntimeId" : 44 - }, - { - "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3981 - }, - { - "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3819 - }, - { - "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7577 - }, - { - "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5708 - }, - { - "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7281 - }, - { - "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5668 - }, - { - "id" : "minecraft:oak_stairs", - "blockRuntimeId" : 5717 - }, - { - "id" : "minecraft:spruce_stairs", - "blockRuntimeId" : 7042 - }, - { - "id" : "minecraft:birch_stairs", - "blockRuntimeId" : 432 - }, - { - "id" : "minecraft:jungle_stairs", - "blockRuntimeId" : 5285 - }, - { - "id" : "minecraft:acacia_stairs", - "blockRuntimeId" : 76 - }, - { - "id" : "minecraft:dark_oak_stairs", - "blockRuntimeId" : 4013 - }, - { - "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7187 - }, - { - "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5676 - }, - { - "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6710 - }, - { - "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6903 - }, - { - "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6637 - }, - { - "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6895 - }, - { - "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4989 - }, - { - "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6386 - }, - { - "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 4476 - }, - { - "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6378 - }, - { - "id" : "minecraft:andesite_stairs", - "blockRuntimeId" : 144 - }, - { - "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5814 - }, - { - "id" : "minecraft:brick_stairs", - "blockRuntimeId" : 876 - }, - { - "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5690 - }, - { - "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6625 - }, - { - "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4720 - }, - { - "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6559 - }, - { - "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6887 - }, - { - "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6537 - }, - { - "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6449 - }, - { - "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 4037 - }, - { - "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6441 - }, - { - "id" : "minecraft:crimson_stairs", - "blockRuntimeId" : 3860 - }, - { - "id" : "minecraft:warped_stairs", - "blockRuntimeId" : 7618 - }, - { - "id" : "minecraft:blackstone_stairs", - "blockRuntimeId" : 499 - }, - { - "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6033 - }, - { - "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5830 - }, - { - "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3913 - }, - { - "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4756 - }, - { - "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7745 - }, - { - "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5758 - }, - { - "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7689 - }, - { - "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7703 - }, - { - "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7731 - }, - { - "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7717 - }, - { - "id" : "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId" : 1148 - }, - { - "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4290 - }, - { - "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6208 - }, - { - "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4107 - }, - { - "id" : "minecraft:wooden_door" - }, - { - "id" : "minecraft:spruce_door" - }, - { - "id" : "minecraft:birch_door" - }, - { - "id" : "minecraft:jungle_door" - }, - { - "id" : "minecraft:acacia_door" - }, - { - "id" : "minecraft:dark_oak_door" - }, - { - "id" : "minecraft:iron_door" - }, - { - "id" : "minecraft:crimson_door" - }, - { - "id" : "minecraft:warped_door" - }, - { - "id" : "minecraft:trapdoor", - "blockRuntimeId" : 7363 - }, - { - "id" : "minecraft:spruce_trapdoor", - "blockRuntimeId" : 7066 - }, - { - "id" : "minecraft:birch_trapdoor", - "blockRuntimeId" : 456 - }, - { - "id" : "minecraft:jungle_trapdoor", - "blockRuntimeId" : 5309 - }, - { - "id" : "minecraft:acacia_trapdoor", - "blockRuntimeId" : 100 - }, - { - "id" : "minecraft:dark_oak_trapdoor", - "blockRuntimeId" : 4021 - }, - { - "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5168 - }, - { - "id" : "minecraft:crimson_trapdoor", - "blockRuntimeId" : 3887 - }, - { - "id" : "minecraft:warped_trapdoor", - "blockRuntimeId" : 7645 - }, - { - "id" : "minecraft:iron_bars", - "blockRuntimeId" : 5133 - }, - { - "id" : "minecraft:glass", - "blockRuntimeId" : 4883 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7088 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7096 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7095 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7103 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7100 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7102 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7089 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7092 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7093 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7101 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7097 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7091 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7099 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7098 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7090 - }, - { - "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7094 - }, - { - "id" : "minecraft:tinted_glass", - "blockRuntimeId" : 7352 - }, - { - "id" : "minecraft:glass_pane", - "blockRuntimeId" : 4884 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7104 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7112 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7111 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7119 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7116 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7118 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7105 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7108 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7109 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7117 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7113 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7107 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7115 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7114 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7106 - }, - { - "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7110 - }, - { - "id" : "minecraft:ladder", - "blockRuntimeId" : 5357 - }, - { - "id" : "minecraft:scaffolding", - "blockRuntimeId" : 6730 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7223 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7273 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7226 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7244 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7903 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7904 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7905 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7906 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7907 - }, - { - "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7908 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7228 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7271 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7224 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7274 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7245 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7239 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7275 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7256 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7261 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7262 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7259 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7260 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7258 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7257 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7227 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7230 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7246 - }, - { - "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7255 - }, - { - "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7229 - }, - { - "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7272 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7240 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7241 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7242 - }, - { - "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7243 - }, - { - "id" : "minecraft:crimson_slab", - "blockRuntimeId" : 3858 - }, - { - "id" : "minecraft:warped_slab", - "blockRuntimeId" : 7616 - }, - { - "id" : "minecraft:blackstone_slab", - "blockRuntimeId" : 497 - }, - { - "id" : "minecraft:polished_blackstone_slab", - "blockRuntimeId" : 6031 - }, - { - "id" : "minecraft:polished_blackstone_brick_slab", - "blockRuntimeId" : 5828 - }, - { - "id" : "minecraft:cut_copper_slab", - "blockRuntimeId" : 3911 - }, - { - "id" : "minecraft:exposed_cut_copper_slab", - "blockRuntimeId" : 4754 - }, - { - "id" : "minecraft:weathered_cut_copper_slab", - "blockRuntimeId" : 7743 - }, - { - "id" : "minecraft:oxidized_cut_copper_slab", - "blockRuntimeId" : 5756 - }, - { - "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7687 - }, - { - "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7701 - }, - { - "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7729 - }, - { - "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7715 - }, - { - "id" : "minecraft:cobbled_deepslate_slab", - "blockRuntimeId" : 1146 - }, - { - "id" : "minecraft:polished_deepslate_slab", - "blockRuntimeId" : 6206 - }, - { - "id" : "minecraft:deepslate_tile_slab", - "blockRuntimeId" : 4288 - }, - { - "id" : "minecraft:deepslate_brick_slab", - "blockRuntimeId" : 4105 - }, - { - "id" : "minecraft:brick_block", - "blockRuntimeId" : 875 - }, - { - "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1130 - }, - { - "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3769 - }, - { - "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6557 - }, - { - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7289 - }, - { - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7290 - }, - { - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7291 - }, - { - "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7292 - }, - { - "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4728 - }, - { - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6440 - }, - { - "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 6000 - }, - { - "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3770 - }, - { - "id" : "minecraft:gilded_blackstone", - "blockRuntimeId" : 4882 - }, - { - "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 - }, - { - "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4460 - }, - { - "id" : "minecraft:cracked_deepslate_tiles", - "blockRuntimeId" : 3768 - }, - { - "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4277 - }, - { - "id" : "minecraft:cracked_deepslate_bricks", - "blockRuntimeId" : 3767 - }, - { - "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1129 - }, - { - "id" : "minecraft:cobblestone", - "blockRuntimeId" : 1318 - }, - { - "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5667 - }, - { - "id" : "minecraft:cobbled_deepslate", - "blockRuntimeId" : 1143 - }, - { - "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6911 - }, - { - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6706 - }, - { - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6707 - }, - { - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6708 - }, - { - "id" : "minecraft:sandstone", - "blockRuntimeId" : 6709 - }, - { - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6633 - }, - { - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6634 - }, - { - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6635 - }, - { - "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6636 - }, - { - "id" : "minecraft:coal_block", - "blockRuntimeId" : 1141 - }, - { - "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 4584 - }, - { - "id" : "minecraft:gold_block", - "blockRuntimeId" : 4975 - }, - { - "id" : "minecraft:iron_block", - "blockRuntimeId" : 5134 - }, - { - "id" : "minecraft:copper_block", - "blockRuntimeId" : 3677 - }, - { - "id" : "minecraft:exposed_copper", - "blockRuntimeId" : 4752 - }, - { - "id" : "minecraft:weathered_copper", - "blockRuntimeId" : 7741 - }, - { - "id" : "minecraft:oxidized_copper", - "blockRuntimeId" : 5754 - }, - { - "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7685 - }, - { - "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7699 - }, - { - "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7727 - }, - { - "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7713 - }, - { - "id" : "minecraft:cut_copper", - "blockRuntimeId" : 3910 - }, - { - "id" : "minecraft:exposed_cut_copper", - "blockRuntimeId" : 4753 - }, - { - "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7742 - }, - { - "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5755 - }, - { - "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7686 - }, - { - "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7700 - }, - { - "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7728 - }, - { - "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7714 - }, - { - "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4717 - }, - { - "id" : "minecraft:diamond_block", - "blockRuntimeId" : 4474 - }, - { - "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5365 - }, - { - "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6579 - }, - { - "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6577 - }, - { - "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6578 - }, - { - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6545 - }, - { - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6547 - }, - { - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6546 - }, - { - "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6548 - }, - { - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6438 - }, - { - "id" : "minecraft:prismarine", - "blockRuntimeId" : 6439 - }, - { - "id" : "minecraft:slime", - "blockRuntimeId" : 6864 - }, - { - "id" : "minecraft:honey_block", - "blockRuntimeId" : 5112 - }, - { - "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5113 - }, - { - "id" : "minecraft:hay_block", - "blockRuntimeId" : 5084 - }, - { - "id" : "minecraft:bone_block", - "blockRuntimeId" : 692 - }, - { - "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5688 - }, - { - "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6624 - }, - { - "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5705 - }, - { - "id" : "minecraft:lodestone", - "blockRuntimeId" : 5563 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7915 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7923 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7922 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7930 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7927 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7929 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7916 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7919 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7920 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7928 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7924 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7918 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7926 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7925 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7917 - }, - { - "id" : "minecraft:wool", - "blockRuntimeId" : 7921 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 963 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 971 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 970 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 978 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 975 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 977 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 964 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 967 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 968 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 976 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 972 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 966 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 974 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 973 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 965 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 969 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3660 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3668 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3667 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3675 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3672 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3674 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3661 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3664 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3665 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3673 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3669 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3663 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3671 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3670 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3662 - }, - { - "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3666 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3644 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3652 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3651 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3659 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3656 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3658 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3645 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3648 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3649 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3657 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3653 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3647 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3655 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3654 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3646 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3650 - }, - { - "id" : "minecraft:clay", - "blockRuntimeId" : 1139 - }, - { - "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5083 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7120 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7128 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7127 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7135 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7132 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7134 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7121 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7124 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7125 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7133 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7129 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7123 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7131 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7130 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7122 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7126 - }, - { - "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7800 - }, - { - "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6846 - }, - { - "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 5010 - }, - { - "id" : "minecraft:black_glazed_terracotta", - "blockRuntimeId" : 488 - }, - { - "id" : "minecraft:brown_glazed_terracotta", - "blockRuntimeId" : 894 - }, - { - "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6601 - }, - { - "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5748 - }, - { - "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7942 - }, - { - "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5532 - }, - { - "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5026 - }, - { - "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3931 - }, - { - "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5484 - }, - { - "id" : "minecraft:blue_glazed_terracotta", - "blockRuntimeId" : 685 - }, - { - "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6519 - }, - { - "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5596 - }, - { - "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5779 - }, - { - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6525 - }, - { - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6527 - }, - { - "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5704 - }, - { - "id" : "minecraft:warped_wart_block", - "blockRuntimeId" : 7667 - }, - { - "id" : "minecraft:shroomlight", - "blockRuntimeId" : 6829 - }, - { - "id" : "minecraft:crimson_nylium", - "blockRuntimeId" : 3839 - }, - { - "id" : "minecraft:warped_nylium", - "blockRuntimeId" : 7597 - }, - { - "id" : "minecraft:basalt", - "blockRuntimeId" : 214 - }, - { - "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5822 - }, - { - "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6886 - }, - { - "id" : "minecraft:soul_soil", - "blockRuntimeId" : 6956 - }, - { - "id" : "minecraft:dirt", - "blockRuntimeId" : 4484 - }, - { - "id" : "minecraft:dirt", - "blockRuntimeId" : 4485 - }, - { - "id" : "minecraft:farmland", - "blockRuntimeId" : 4766 - }, - { - "id" : "minecraft:grass", - "blockRuntimeId" : 4997 - }, - { - "id" : "minecraft:grass_path", - "blockRuntimeId" : 4998 - }, - { - "id" : "minecraft:podzol", - "blockRuntimeId" : 5803 - }, - { - "id" : "minecraft:mycelium", - "blockRuntimeId" : 5685 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7180 - }, - { - "id" : "minecraft:iron_ore", - "blockRuntimeId" : 5167 - }, - { - "id" : "minecraft:gold_ore", - "blockRuntimeId" : 4976 - }, - { - "id" : "minecraft:diamond_ore", - "blockRuntimeId" : 4475 - }, - { - "id" : "minecraft:lapis_ore", - "blockRuntimeId" : 5366 - }, - { - "id" : "minecraft:redstone_ore", - "blockRuntimeId" : 6647 - }, - { - "id" : "minecraft:coal_ore", - "blockRuntimeId" : 1142 - }, - { - "id" : "minecraft:copper_ore", - "blockRuntimeId" : 3678 - }, - { - "id" : "minecraft:emerald_ore", - "blockRuntimeId" : 4718 - }, - { - "id" : "minecraft:quartz_ore", - "blockRuntimeId" : 6558 - }, - { - "id" : "minecraft:nether_gold_ore", - "blockRuntimeId" : 5698 - }, - { - "id" : "minecraft:ancient_debris", - "blockRuntimeId" : 143 - }, - { - "id" : "minecraft:deepslate_iron_ore", - "blockRuntimeId" : 4283 - }, - { - "id" : "minecraft:deepslate_gold_ore", - "blockRuntimeId" : 4282 - }, - { - "id" : "minecraft:deepslate_diamond_ore", - "blockRuntimeId" : 4280 - }, - { - "id" : "minecraft:deepslate_lapis_ore", - "blockRuntimeId" : 4284 - }, - { - "id" : "minecraft:deepslate_redstone_ore", - "blockRuntimeId" : 4285 - }, - { - "id" : "minecraft:deepslate_emerald_ore", - "blockRuntimeId" : 4281 - }, - { - "id" : "minecraft:deepslate_coal_ore", - "blockRuntimeId" : 4278 - }, - { - "id" : "minecraft:deepslate_copper_ore", - "blockRuntimeId" : 4279 - }, - { - "id" : "minecraft:gravel", - "blockRuntimeId" : 4999 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7181 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7183 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7185 - }, - { - "id" : "minecraft:blackstone", - "blockRuntimeId" : 494 - }, - { - "id" : "minecraft:deepslate", - "blockRuntimeId" : 4100 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7182 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7184 - }, - { - "id" : "minecraft:stone", - "blockRuntimeId" : 7186 - }, - { - "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5825 - }, - { - "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6203 - }, - { - "id" : "minecraft:sand", - "blockRuntimeId" : 6704 - }, - { - "id" : "minecraft:sand", - "blockRuntimeId" : 6705 - }, - { - "id" : "minecraft:cactus", - "blockRuntimeId" : 920 - }, - { - "id" : "minecraft:log", - "blockRuntimeId" : 5564 - }, - { - "id" : "minecraft:stripped_oak_log", - "blockRuntimeId" : 7319 - }, - { - "id" : "minecraft:log", - "blockRuntimeId" : 5565 - }, - { - "id" : "minecraft:stripped_spruce_log", - "blockRuntimeId" : 7322 - }, - { - "id" : "minecraft:log", - "blockRuntimeId" : 5566 - }, - { - "id" : "minecraft:stripped_birch_log", - "blockRuntimeId" : 7304 - }, - { - "id" : "minecraft:log", - "blockRuntimeId" : 5567 - }, - { - "id" : "minecraft:stripped_jungle_log", - "blockRuntimeId" : 7316 - }, - { - "id" : "minecraft:log2", - "blockRuntimeId" : 5576 - }, - { - "id" : "minecraft:stripped_acacia_log", - "blockRuntimeId" : 7301 - }, - { - "id" : "minecraft:log2", - "blockRuntimeId" : 5577 - }, - { - "id" : "minecraft:stripped_dark_oak_log", - "blockRuntimeId" : 7313 - }, - { - "id" : "minecraft:crimson_stem", - "blockRuntimeId" : 3884 - }, - { - "id" : "minecraft:stripped_crimson_stem", - "blockRuntimeId" : 7310 - }, - { - "id" : "minecraft:warped_stem", - "blockRuntimeId" : 7642 - }, - { - "id" : "minecraft:stripped_warped_stem", - "blockRuntimeId" : 7328 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7807 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7813 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7808 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7814 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7809 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7815 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7810 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7816 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7811 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7817 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7812 - }, - { - "id" : "minecraft:wood", - "blockRuntimeId" : 7818 - }, - { - "id" : "minecraft:crimson_hyphae", - "blockRuntimeId" : 3836 - }, - { - "id" : "minecraft:stripped_crimson_hyphae", - "blockRuntimeId" : 7307 - }, - { - "id" : "minecraft:warped_hyphae", - "blockRuntimeId" : 7594 - }, - { - "id" : "minecraft:stripped_warped_hyphae", - "blockRuntimeId" : 7325 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5410 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5411 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5412 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5413 - }, - { - "id" : "minecraft:leaves2", - "blockRuntimeId" : 5426 - }, - { - "id" : "minecraft:leaves2", - "blockRuntimeId" : 5427 - }, - { - "id" : "minecraft:azalea_leaves", - "blockRuntimeId" : 169 - }, - { - "id" : "minecraft:azalea_leaves_flowered", - "blockRuntimeId" : 173 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6718 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6719 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6720 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6721 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6722 - }, - { - "id" : "minecraft:sapling", - "blockRuntimeId" : 6723 - }, - { - "id" : "minecraft:bee_nest", - "blockRuntimeId" : 236 - }, - { - "id" : "minecraft:wheat_seeds" - }, - { - "id" : "minecraft:pumpkin_seeds" - }, - { - "id" : "minecraft:melon_seeds" - }, - { - "id" : "minecraft:beetroot_seeds" - }, - { - "id" : "minecraft:wheat" - }, - { - "id" : "minecraft:beetroot" - }, - { - "id" : "minecraft:potato" - }, - { - "id" : "minecraft:poisonous_potato" - }, - { - "id" : "minecraft:carrot" - }, - { - "id" : "minecraft:golden_carrot" - }, - { - "id" : "minecraft:apple" - }, - { - "id" : "minecraft:golden_apple" - }, - { - "id" : "minecraft:enchanted_golden_apple" - }, - { - "id" : "minecraft:melon_block", - "blockRuntimeId" : 5609 - }, - { - "id" : "minecraft:melon_slice" - }, - { - "id" : "minecraft:glistering_melon_slice" - }, - { - "id" : "minecraft:sweet_berries" - }, - { - "id" : "minecraft:glow_berries" - }, - { - "id" : "minecraft:pumpkin", - "blockRuntimeId" : 6457 - }, - { - "id" : "minecraft:carved_pumpkin", - "blockRuntimeId" : 988 - }, - { - "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5551 - }, - { - "id" : "minecraft:honeycomb" - }, - { - "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7349 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4504 - }, - { - "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7348 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4503 - }, - { - "id" : "minecraft:nether_sprouts" - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3682 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3680 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3681 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3679 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3683 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3687 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3685 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3686 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3684 - }, - { - "id" : "minecraft:coral", - "blockRuntimeId" : 3688 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3702 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3700 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3701 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3699 - }, - { - "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3703 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3712 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3710 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3711 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3709 - }, - { - "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3713 - }, - { - "id" : "minecraft:kelp" - }, - { - "id" : "minecraft:seagrass", - "blockRuntimeId" : 6825 - }, - { - "id" : "minecraft:crimson_roots", - "blockRuntimeId" : 3857 - }, - { - "id" : "minecraft:warped_roots", - "blockRuntimeId" : 7615 - }, - { - "id" : "minecraft:yellow_flower", - "blockRuntimeId" : 7941 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6590 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6591 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6592 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6593 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6594 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6595 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6596 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6597 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6598 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6599 - }, - { - "id" : "minecraft:red_flower", - "blockRuntimeId" : 6600 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4501 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4502 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4505 - }, - { - "id" : "minecraft:double_plant", - "blockRuntimeId" : 4506 - }, - { - "id" : "minecraft:wither_rose", - "blockRuntimeId" : 7806 - }, - { - "id" : "minecraft:white_dye" - }, - { - "id" : "minecraft:light_gray_dye" - }, - { - "id" : "minecraft:gray_dye" - }, - { - "id" : "minecraft:black_dye" - }, - { - "id" : "minecraft:brown_dye" - }, - { - "id" : "minecraft:red_dye" - }, - { - "id" : "minecraft:orange_dye" - }, - { - "id" : "minecraft:yellow_dye" - }, - { - "id" : "minecraft:lime_dye" - }, - { - "id" : "minecraft:green_dye" - }, - { - "id" : "minecraft:cyan_dye" - }, - { - "id" : "minecraft:light_blue_dye" - }, - { - "id" : "minecraft:blue_dye" - }, - { - "id" : "minecraft:purple_dye" - }, - { - "id" : "minecraft:magenta_dye" - }, - { - "id" : "minecraft:pink_dye" - }, - { - "id" : "minecraft:ink_sac" - }, - { - "id" : "minecraft:glow_ink_sac" - }, - { - "id" : "minecraft:cocoa_beans" - }, - { - "id" : "minecraft:lapis_lazuli" - }, - { - "id" : "minecraft:bone_meal" - }, - { - "id" : "minecraft:vine", - "blockRuntimeId" : 7502 - }, - { - "id" : "minecraft:weeping_vines", - "blockRuntimeId" : 7756 - }, - { - "id" : "minecraft:twisting_vines", - "blockRuntimeId" : 7430 - }, - { - "id" : "minecraft:waterlily", - "blockRuntimeId" : 7684 - }, - { - "id" : "minecraft:deadbush", - "blockRuntimeId" : 4099 - }, - { - "id" : "minecraft:bamboo", - "blockRuntimeId" : 177 - }, - { - "id" : "minecraft:snow", - "blockRuntimeId" : 6912 - }, - { - "id" : "minecraft:ice", - "blockRuntimeId" : 5126 - }, - { - "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5768 - }, - { - "id" : "minecraft:blue_ice", - "blockRuntimeId" : 691 - }, - { - "id" : "minecraft:snow_layer", - "blockRuntimeId" : 6913 - }, - { - "id" : "minecraft:pointed_dripstone", - "blockRuntimeId" : 5809 - }, - { - "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4585 - }, - { - "id" : "minecraft:moss_carpet", - "blockRuntimeId" : 5666 - }, - { - "id" : "minecraft:moss_block", - "blockRuntimeId" : 5665 - }, - { - "id" : "minecraft:dirt_with_roots", - "blockRuntimeId" : 4486 - }, - { - "id" : "minecraft:hanging_roots", - "blockRuntimeId" : 5048 - }, - { - "id" : "minecraft:big_dripleaf", - "blockRuntimeId" : 328 - }, - { - "id" : "minecraft:small_dripleaf_block", - "blockRuntimeId" : 6878 - }, - { - "id" : "minecraft:spore_blossom", - "blockRuntimeId" : 6965 - }, - { - "id" : "minecraft:azalea", - "blockRuntimeId" : 168 - }, - { - "id" : "minecraft:flowering_azalea", - "blockRuntimeId" : 4815 - }, - { - "id" : "minecraft:glow_lichen", - "blockRuntimeId" : 4972 - }, - { - "id" : "minecraft:amethyst_block", - "blockRuntimeId" : 136 - }, - { - "id" : "minecraft:budding_amethyst", - "blockRuntimeId" : 919 - }, - { - "id" : "minecraft:amethyst_cluster", - "blockRuntimeId" : 137 - }, - { - "id" : "minecraft:large_amethyst_bud", - "blockRuntimeId" : 5367 - }, - { - "id" : "minecraft:medium_amethyst_bud", - "blockRuntimeId" : 5603 - }, - { - "id" : "minecraft:small_amethyst_bud", - "blockRuntimeId" : 6865 - }, - { - "id" : "minecraft:tuff", - "blockRuntimeId" : 7417 - }, - { - "id" : "minecraft:calcite", - "blockRuntimeId" : 943 - }, - { - "id" : "minecraft:chicken" - }, - { - "id" : "minecraft:porkchop" - }, - { - "id" : "minecraft:beef" - }, - { - "id" : "minecraft:mutton" - }, - { - "id" : "minecraft:rabbit" - }, - { - "id" : "minecraft:cod" - }, - { - "id" : "minecraft:salmon" - }, - { - "id" : "minecraft:tropical_fish" - }, - { - "id" : "minecraft:pufferfish" - }, - { - "id" : "minecraft:brown_mushroom", - "blockRuntimeId" : 900 - }, - { - "id" : "minecraft:red_mushroom", - "blockRuntimeId" : 6607 - }, - { - "id" : "minecraft:crimson_fungus", - "blockRuntimeId" : 3835 - }, - { - "id" : "minecraft:warped_fungus", - "blockRuntimeId" : 7593 - }, - { - "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 915 - }, - { - "id" : "minecraft:red_mushroom_block", - "blockRuntimeId" : 6622 - }, - { - "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 916 - }, - { - "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 901 - }, - { - "id" : "minecraft:egg" - }, - { - "id" : "minecraft:sugar_cane" - }, - { - "id" : "minecraft:sugar" - }, - { - "id" : "minecraft:rotten_flesh" - }, - { - "id" : "minecraft:bone" - }, - { - "id" : "minecraft:web", - "blockRuntimeId" : 7755 - }, - { - "id" : "minecraft:spider_eye" - }, - { - "id" : "minecraft:mob_spawner", - "blockRuntimeId" : 5658 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5659 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5660 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5661 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5662 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5663 - }, - { - "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5664 - }, - { - "id" : "minecraft:infested_deepslate", - "blockRuntimeId" : 5127 - }, - { - "id" : "minecraft:dragon_egg", - "blockRuntimeId" : 4583 - }, - { - "id" : "minecraft:turtle_egg", - "blockRuntimeId" : 7418 - }, - { - "id" : "minecraft:chicken_spawn_egg" - }, - { - "id" : "minecraft:bee_spawn_egg" - }, - { - "id" : "minecraft:cow_spawn_egg" - }, - { - "id" : "minecraft:pig_spawn_egg" - }, - { - "id" : "minecraft:sheep_spawn_egg" - }, - { - "id" : "minecraft:wolf_spawn_egg" - }, - { - "id" : "minecraft:polar_bear_spawn_egg" - }, - { - "id" : "minecraft:ocelot_spawn_egg" - }, - { - "id" : "minecraft:cat_spawn_egg" - }, - { - "id" : "minecraft:mooshroom_spawn_egg" - }, - { - "id" : "minecraft:bat_spawn_egg" - }, - { - "id" : "minecraft:parrot_spawn_egg" - }, - { - "id" : "minecraft:rabbit_spawn_egg" - }, - { - "id" : "minecraft:llama_spawn_egg" - }, - { - "id" : "minecraft:horse_spawn_egg" - }, - { - "id" : "minecraft:donkey_spawn_egg" - }, - { - "id" : "minecraft:mule_spawn_egg" - }, - { - "id" : "minecraft:skeleton_horse_spawn_egg" - }, - { - "id" : "minecraft:zombie_horse_spawn_egg" - }, - { - "id" : "minecraft:tropical_fish_spawn_egg" - }, - { - "id" : "minecraft:cod_spawn_egg" - }, - { - "id" : "minecraft:pufferfish_spawn_egg" - }, - { - "id" : "minecraft:salmon_spawn_egg" - }, - { - "id" : "minecraft:dolphin_spawn_egg" - }, - { - "id" : "minecraft:turtle_spawn_egg" - }, - { - "id" : "minecraft:panda_spawn_egg" - }, - { - "id" : "minecraft:fox_spawn_egg" - }, - { - "id" : "minecraft:creeper_spawn_egg" - }, - { - "id" : "minecraft:enderman_spawn_egg" - }, - { - "id" : "minecraft:silverfish_spawn_egg" - }, - { - "id" : "minecraft:skeleton_spawn_egg" - }, - { - "id" : "minecraft:wither_skeleton_spawn_egg" - }, - { - "id" : "minecraft:stray_spawn_egg" - }, - { - "id" : "minecraft:slime_spawn_egg" - }, - { - "id" : "minecraft:spider_spawn_egg" - }, - { - "id" : "minecraft:zombie_spawn_egg" - }, - { - "id" : "minecraft:zombie_pigman_spawn_egg" - }, - { - "id" : "minecraft:husk_spawn_egg" - }, - { - "id" : "minecraft:drowned_spawn_egg" - }, - { - "id" : "minecraft:squid_spawn_egg" - }, - { - "id" : "minecraft:glow_squid_spawn_egg" - }, - { - "id" : "minecraft:cave_spider_spawn_egg" - }, - { - "id" : "minecraft:witch_spawn_egg" - }, - { - "id" : "minecraft:guardian_spawn_egg" - }, - { - "id" : "minecraft:elder_guardian_spawn_egg" - }, - { - "id" : "minecraft:endermite_spawn_egg" - }, - { - "id" : "minecraft:magma_cube_spawn_egg" - }, - { - "id" : "minecraft:strider_spawn_egg" - }, - { - "id" : "minecraft:hoglin_spawn_egg" - }, - { - "id" : "minecraft:piglin_spawn_egg" - }, - { - "id" : "minecraft:zoglin_spawn_egg" - }, - { - "id" : "minecraft:piglin_brute_spawn_egg" - }, - { - "id" : "minecraft:goat_spawn_egg" - }, - { - "id" : "minecraft:axolotl_spawn_egg" - }, - { - "id" : "minecraft:ghast_spawn_egg" - }, - { - "id" : "minecraft:blaze_spawn_egg" - }, - { - "id" : "minecraft:shulker_spawn_egg" - }, - { - "id" : "minecraft:vindicator_spawn_egg" - }, - { - "id" : "minecraft:evoker_spawn_egg" - }, - { - "id" : "minecraft:vex_spawn_egg" - }, - { - "id" : "minecraft:villager_spawn_egg" - }, - { - "id" : "minecraft:wandering_trader_spawn_egg" - }, - { - "id" : "minecraft:zombie_villager_spawn_egg" - }, - { - "id" : "minecraft:phantom_spawn_egg" - }, - { - "id" : "minecraft:pillager_spawn_egg" - }, - { - "id" : "minecraft:ravager_spawn_egg" - }, - { - "id" : "minecraft:obsidian", - "blockRuntimeId" : 5737 - }, - { - "id" : "minecraft:crying_obsidian", - "blockRuntimeId" : 3909 - }, - { - "id" : "minecraft:bedrock", - "blockRuntimeId" : 234 - }, - { - "id" : "minecraft:soul_sand", - "blockRuntimeId" : 6955 - }, - { - "id" : "minecraft:netherrack", - "blockRuntimeId" : 5706 - }, - { - "id" : "minecraft:magma", - "blockRuntimeId" : 5602 - }, - { - "id" : "minecraft:nether_wart" - }, - { - "id" : "minecraft:end_stone", - "blockRuntimeId" : 4745 - }, - { - "id" : "minecraft:chorus_flower", - "blockRuntimeId" : 1132 - }, - { - "id" : "minecraft:chorus_plant", - "blockRuntimeId" : 1138 - }, - { - "id" : "minecraft:chorus_fruit" - }, - { - "id" : "minecraft:popped_chorus_fruit" - }, - { - "id" : "minecraft:sponge", - "blockRuntimeId" : 6963 - }, - { - "id" : "minecraft:sponge", - "blockRuntimeId" : 6964 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3689 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3690 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3691 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3692 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3693 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3694 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3695 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3696 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3697 - }, - { - "id" : "minecraft:coral_block", - "blockRuntimeId" : 3698 - }, - { - "id" : "minecraft:leather_helmet" - }, - { - "id" : "minecraft:chainmail_helmet" - }, - { - "id" : "minecraft:iron_helmet" - }, - { - "id" : "minecraft:golden_helmet" - }, - { - "id" : "minecraft:diamond_helmet" - }, - { - "id" : "minecraft:netherite_helmet" - }, - { - "id" : "minecraft:leather_chestplate" - }, - { - "id" : "minecraft:chainmail_chestplate" - }, - { - "id" : "minecraft:iron_chestplate" - }, - { - "id" : "minecraft:golden_chestplate" - }, - { - "id" : "minecraft:diamond_chestplate" - }, - { - "id" : "minecraft:netherite_chestplate" - }, - { - "id" : "minecraft:leather_leggings" - }, - { - "id" : "minecraft:chainmail_leggings" - }, - { - "id" : "minecraft:iron_leggings" - }, - { - "id" : "minecraft:golden_leggings" - }, - { - "id" : "minecraft:diamond_leggings" - }, - { - "id" : "minecraft:netherite_leggings" - }, - { - "id" : "minecraft:leather_boots" - }, - { - "id" : "minecraft:chainmail_boots" - }, - { - "id" : "minecraft:iron_boots" - }, - { - "id" : "minecraft:golden_boots" - }, - { - "id" : "minecraft:diamond_boots" - }, - { - "id" : "minecraft:netherite_boots" - }, - { - "id" : "minecraft:wooden_sword" - }, - { - "id" : "minecraft:stone_sword" - }, - { - "id" : "minecraft:iron_sword" - }, - { - "id" : "minecraft:golden_sword" - }, - { - "id" : "minecraft:diamond_sword" - }, - { - "id" : "minecraft:netherite_sword" - }, - { - "id" : "minecraft:wooden_axe" - }, - { - "id" : "minecraft:stone_axe" - }, - { - "id" : "minecraft:iron_axe" - }, - { - "id" : "minecraft:golden_axe" - }, - { - "id" : "minecraft:diamond_axe" - }, - { - "id" : "minecraft:netherite_axe" - }, - { - "id" : "minecraft:wooden_pickaxe" - }, - { - "id" : "minecraft:stone_pickaxe" - }, - { - "id" : "minecraft:iron_pickaxe" - }, - { - "id" : "minecraft:golden_pickaxe" - }, - { - "id" : "minecraft:diamond_pickaxe" - }, - { - "id" : "minecraft:netherite_pickaxe" - }, - { - "id" : "minecraft:wooden_shovel" - }, - { - "id" : "minecraft:stone_shovel" - }, - { - "id" : "minecraft:iron_shovel" - }, - { - "id" : "minecraft:golden_shovel" - }, - { - "id" : "minecraft:diamond_shovel" - }, - { - "id" : "minecraft:netherite_shovel" - }, - { - "id" : "minecraft:wooden_hoe" - }, - { - "id" : "minecraft:stone_hoe" - }, - { - "id" : "minecraft:iron_hoe" - }, - { - "id" : "minecraft:golden_hoe" - }, - { - "id" : "minecraft:diamond_hoe" - }, - { - "id" : "minecraft:netherite_hoe" - }, - { - "id" : "minecraft:bow" - }, - { - "id" : "minecraft:crossbow" - }, - { - "id" : "minecraft:arrow" - }, - { - "id" : "minecraft:arrow", - "damage" : 6 - }, - { - "id" : "minecraft:arrow", - "damage" : 7 - }, - { - "id" : "minecraft:arrow", - "damage" : 8 - }, - { - "id" : "minecraft:arrow", - "damage" : 9 - }, - { - "id" : "minecraft:arrow", - "damage" : 10 - }, - { - "id" : "minecraft:arrow", - "damage" : 11 - }, - { - "id" : "minecraft:arrow", - "damage" : 12 - }, - { - "id" : "minecraft:arrow", - "damage" : 13 - }, - { - "id" : "minecraft:arrow", - "damage" : 14 - }, - { - "id" : "minecraft:arrow", - "damage" : 15 - }, - { - "id" : "minecraft:arrow", - "damage" : 16 - }, - { - "id" : "minecraft:arrow", - "damage" : 17 - }, - { - "id" : "minecraft:arrow", - "damage" : 18 - }, - { - "id" : "minecraft:arrow", - "damage" : 19 - }, - { - "id" : "minecraft:arrow", - "damage" : 20 - }, - { - "id" : "minecraft:arrow", - "damage" : 21 - }, - { - "id" : "minecraft:arrow", - "damage" : 22 - }, - { - "id" : "minecraft:arrow", - "damage" : 23 - }, - { - "id" : "minecraft:arrow", - "damage" : 24 - }, - { - "id" : "minecraft:arrow", - "damage" : 25 - }, - { - "id" : "minecraft:arrow", - "damage" : 26 - }, - { - "id" : "minecraft:arrow", - "damage" : 27 - }, - { - "id" : "minecraft:arrow", - "damage" : 28 - }, - { - "id" : "minecraft:arrow", - "damage" : 29 - }, - { - "id" : "minecraft:arrow", - "damage" : 30 - }, - { - "id" : "minecraft:arrow", - "damage" : 31 - }, - { - "id" : "minecraft:arrow", - "damage" : 32 - }, - { - "id" : "minecraft:arrow", - "damage" : 33 - }, - { - "id" : "minecraft:arrow", - "damage" : 34 - }, - { - "id" : "minecraft:arrow", - "damage" : 35 - }, - { - "id" : "minecraft:arrow", - "damage" : 36 - }, - { - "id" : "minecraft:arrow", - "damage" : 37 - }, - { - "id" : "minecraft:arrow", - "damage" : 38 - }, - { - "id" : "minecraft:arrow", - "damage" : 39 - }, - { - "id" : "minecraft:arrow", - "damage" : 40 - }, - { - "id" : "minecraft:arrow", - "damage" : 41 - }, - { - "id" : "minecraft:arrow", - "damage" : 42 - }, - { - "id" : "minecraft:arrow", - "damage" : 43 - }, - { - "id" : "minecraft:shield" - }, - { - "id" : "minecraft:cooked_chicken" - }, - { - "id" : "minecraft:cooked_porkchop" - }, - { - "id" : "minecraft:cooked_beef" - }, - { - "id" : "minecraft:cooked_mutton" - }, - { - "id" : "minecraft:cooked_rabbit" - }, - { - "id" : "minecraft:cooked_cod" - }, - { - "id" : "minecraft:cooked_salmon" - }, - { - "id" : "minecraft:bread" - }, - { - "id" : "minecraft:mushroom_stew" - }, - { - "id" : "minecraft:beetroot_soup" - }, - { - "id" : "minecraft:rabbit_stew" - }, - { - "id" : "minecraft:baked_potato" - }, - { - "id" : "minecraft:cookie" - }, - { - "id" : "minecraft:pumpkin_pie" - }, - { - "id" : "minecraft:cake" - }, - { - "id" : "minecraft:dried_kelp" - }, - { - "id" : "minecraft:fishing_rod" - }, - { - "id" : "minecraft:carrot_on_a_stick" - }, - { - "id" : "minecraft:warped_fungus_on_a_stick" - }, - { - "id" : "minecraft:snowball" - }, - { - "id" : "minecraft:shears" - }, - { - "id" : "minecraft:flint_and_steel" - }, - { - "id" : "minecraft:lead" - }, - { - "id" : "minecraft:clock" - }, - { - "id" : "minecraft:compass" - }, - { - "id" : "minecraft:empty_map" - }, - { - "id" : "minecraft:empty_map", - "damage" : 2 - }, - { - "id" : "minecraft:saddle" - }, - { - "id" : "minecraft:leather_horse_armor" - }, - { - "id" : "minecraft:iron_horse_armor" - }, - { - "id" : "minecraft:golden_horse_armor" - }, - { - "id" : "minecraft:diamond_horse_armor" - }, - { - "id" : "minecraft:trident" - }, - { - "id" : "minecraft:turtle_helmet" - }, - { - "id" : "minecraft:elytra" - }, - { - "id" : "minecraft:totem_of_undying" - }, - { - "id" : "minecraft:glass_bottle" - }, - { - "id" : "minecraft:experience_bottle" - }, - { - "id" : "minecraft:potion" - }, - { - "id" : "minecraft:potion", - "damage" : 1 - }, - { - "id" : "minecraft:potion", - "damage" : 2 - }, - { - "id" : "minecraft:potion", - "damage" : 3 - }, - { - "id" : "minecraft:potion", - "damage" : 4 - }, - { - "id" : "minecraft:potion", - "damage" : 5 - }, - { - "id" : "minecraft:potion", - "damage" : 6 - }, - { - "id" : "minecraft:potion", - "damage" : 7 - }, - { - "id" : "minecraft:potion", - "damage" : 8 - }, - { - "id" : "minecraft:potion", - "damage" : 9 - }, - { - "id" : "minecraft:potion", - "damage" : 10 - }, - { - "id" : "minecraft:potion", - "damage" : 11 - }, - { - "id" : "minecraft:potion", - "damage" : 12 - }, - { - "id" : "minecraft:potion", - "damage" : 13 - }, - { - "id" : "minecraft:potion", - "damage" : 14 - }, - { - "id" : "minecraft:potion", - "damage" : 15 - }, - { - "id" : "minecraft:potion", - "damage" : 16 - }, - { - "id" : "minecraft:potion", - "damage" : 17 - }, - { - "id" : "minecraft:potion", - "damage" : 18 - }, - { - "id" : "minecraft:potion", - "damage" : 19 - }, - { - "id" : "minecraft:potion", - "damage" : 20 - }, - { - "id" : "minecraft:potion", - "damage" : 21 - }, - { - "id" : "minecraft:potion", - "damage" : 22 - }, - { - "id" : "minecraft:potion", - "damage" : 23 - }, - { - "id" : "minecraft:potion", - "damage" : 24 - }, - { - "id" : "minecraft:potion", - "damage" : 25 - }, - { - "id" : "minecraft:potion", - "damage" : 26 - }, - { - "id" : "minecraft:potion", - "damage" : 27 - }, - { - "id" : "minecraft:potion", - "damage" : 28 - }, - { - "id" : "minecraft:potion", - "damage" : 29 - }, - { - "id" : "minecraft:potion", - "damage" : 30 - }, - { - "id" : "minecraft:potion", - "damage" : 31 - }, - { - "id" : "minecraft:potion", - "damage" : 32 - }, - { - "id" : "minecraft:potion", - "damage" : 33 - }, - { - "id" : "minecraft:potion", - "damage" : 34 - }, - { - "id" : "minecraft:potion", - "damage" : 35 - }, - { - "id" : "minecraft:potion", - "damage" : 36 - }, - { - "id" : "minecraft:potion", - "damage" : 37 - }, - { - "id" : "minecraft:potion", - "damage" : 38 - }, - { - "id" : "minecraft:potion", - "damage" : 39 - }, - { - "id" : "minecraft:potion", - "damage" : 40 - }, - { - "id" : "minecraft:potion", - "damage" : 41 - }, - { - "id" : "minecraft:potion", - "damage" : 42 - }, - { - "id" : "minecraft:splash_potion" - }, - { - "id" : "minecraft:splash_potion", - "damage" : 1 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 2 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 3 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 4 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 5 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 6 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 7 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 8 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 9 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 10 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 11 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 12 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 13 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 14 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 15 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 16 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 17 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 18 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 19 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 20 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 21 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 22 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 23 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 24 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 25 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 26 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 27 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 28 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 29 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 30 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 31 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 32 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 33 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 34 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 35 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 36 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 37 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 38 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 39 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 40 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 41 - }, - { - "id" : "minecraft:splash_potion", - "damage" : 42 - }, - { - "id" : "minecraft:lingering_potion" - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 1 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 2 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 3 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 4 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 5 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 6 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 7 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 8 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 9 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 10 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 11 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 12 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 13 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 14 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 15 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 16 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 17 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 18 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 19 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 20 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 21 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 22 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 23 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 24 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 25 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 26 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 27 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 28 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 29 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 30 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 31 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 32 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 33 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 34 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 35 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 36 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 37 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 38 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 39 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 40 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 41 - }, - { - "id" : "minecraft:lingering_potion", - "damage" : 42 - }, - { - "id" : "minecraft:spyglass" - }, - { - "id" : "minecraft:stick" - }, - { - "id" : "minecraft:bed" - }, - { - "id" : "minecraft:bed", - "damage" : 8 - }, - { - "id" : "minecraft:bed", - "damage" : 7 - }, - { - "id" : "minecraft:bed", - "damage" : 15 - }, - { - "id" : "minecraft:bed", - "damage" : 12 - }, - { - "id" : "minecraft:bed", - "damage" : 14 - }, - { - "id" : "minecraft:bed", - "damage" : 1 - }, - { - "id" : "minecraft:bed", - "damage" : 4 - }, - { - "id" : "minecraft:bed", - "damage" : 5 - }, - { - "id" : "minecraft:bed", - "damage" : 13 - }, - { - "id" : "minecraft:bed", - "damage" : 9 - }, - { - "id" : "minecraft:bed", - "damage" : 3 - }, - { - "id" : "minecraft:bed", - "damage" : 11 - }, - { - "id" : "minecraft:bed", - "damage" : 10 - }, - { - "id" : "minecraft:bed", - "damage" : 2 - }, - { - "id" : "minecraft:bed", - "damage" : 6 - }, - { - "id" : "minecraft:torch", - "blockRuntimeId" : 7357 - }, - { - "id" : "minecraft:soul_torch", - "blockRuntimeId" : 6957 - }, - { - "id" : "minecraft:sea_pickle", - "blockRuntimeId" : 6817 - }, - { - "id" : "minecraft:lantern", - "blockRuntimeId" : 5363 - }, - { - "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6953 - }, - { - "id" : "minecraft:candle", - "blockRuntimeId" : 953 - }, - { - "id" : "minecraft:white_candle", - "blockRuntimeId" : 7790 - }, - { - "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5738 - }, - { - "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5586 - }, - { - "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5474 - }, - { - "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7931 - }, - { - "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5522 - }, - { - "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5769 - }, - { - "id" : "minecraft:gray_candle", - "blockRuntimeId" : 5000 - }, - { - "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5490 - }, - { - "id" : "minecraft:cyan_candle", - "blockRuntimeId" : 3921 - }, - { - "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6509 - }, - { - "id" : "minecraft:blue_candle", - "blockRuntimeId" : 675 - }, - { - "id" : "minecraft:brown_candle", - "blockRuntimeId" : 884 - }, - { - "id" : "minecraft:green_candle", - "blockRuntimeId" : 5016 - }, - { - "id" : "minecraft:red_candle", - "blockRuntimeId" : 6580 - }, - { - "id" : "minecraft:black_candle", - "blockRuntimeId" : 478 - }, - { - "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3771 - }, - { - "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 - }, - { - "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4812 - }, - { - "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6879 - }, - { - "id" : "minecraft:beehive", - "blockRuntimeId" : 260 - }, - { - "id" : "minecraft:campfire" - }, - { - "id" : "minecraft:soul_campfire" - }, - { - "id" : "minecraft:furnace", - "blockRuntimeId" : 4876 - }, - { - "id" : "minecraft:blast_furnace", - "blockRuntimeId" : 669 - }, - { - "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 - }, - { - "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6699 - }, - { - "id" : "minecraft:brewing_stand" - }, - { - "id" : "minecraft:anvil", - "blockRuntimeId" : 152 - }, - { - "id" : "minecraft:anvil", - "blockRuntimeId" : 156 - }, - { - "id" : "minecraft:anvil", - "blockRuntimeId" : 160 - }, - { - "id" : "minecraft:grindstone", - "blockRuntimeId" : 5032 - }, - { - "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4719 - }, - { - "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 - }, - { - "id" : "minecraft:lectern", - "blockRuntimeId" : 5434 - }, - { - "id" : "minecraft:cauldron" - }, - { - "id" : "minecraft:composter", - "blockRuntimeId" : 3635 - }, - { - "id" : "minecraft:chest", - "blockRuntimeId" : 1123 - }, - { - "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7379 - }, - { - "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4746 - }, - { - "id" : "minecraft:barrel", - "blockRuntimeId" : 201 - }, - { - "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7462 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 - }, - { - "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 - }, - { - "id" : "minecraft:armor_stand" - }, - { - "id" : "minecraft:noteblock", - "blockRuntimeId" : 5716 - }, - { - "id" : "minecraft:jukebox", - "blockRuntimeId" : 5208 - }, - { - "id" : "minecraft:music_disc_13" - }, - { - "id" : "minecraft:music_disc_cat" - }, - { - "id" : "minecraft:music_disc_blocks" - }, - { - "id" : "minecraft:music_disc_chirp" - }, - { - "id" : "minecraft:music_disc_far" - }, - { - "id" : "minecraft:music_disc_mall" - }, - { - "id" : "minecraft:music_disc_mellohi" - }, - { - "id" : "minecraft:music_disc_stal" - }, - { - "id" : "minecraft:music_disc_strad" - }, - { - "id" : "minecraft:music_disc_ward" - }, - { - "id" : "minecraft:music_disc_11" - }, - { - "id" : "minecraft:music_disc_wait" - }, - { - "id" : "minecraft:music_disc_pigstep" - }, - { - "id" : "minecraft:glowstone_dust" - }, - { - "id" : "minecraft:glowstone", - "blockRuntimeId" : 4974 - }, - { - "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6646 - }, - { - "id" : "minecraft:sealantern", - "blockRuntimeId" : 6828 - }, - { - "id" : "minecraft:oak_sign" - }, - { - "id" : "minecraft:spruce_sign" - }, - { - "id" : "minecraft:birch_sign" - }, - { - "id" : "minecraft:jungle_sign" - }, - { - "id" : "minecraft:acacia_sign" - }, - { - "id" : "minecraft:dark_oak_sign" - }, - { - "id" : "minecraft:crimson_sign" - }, - { - "id" : "minecraft:warped_sign" - }, - { - "id" : "minecraft:painting" - }, - { - "id" : "minecraft:frame" - }, - { - "id" : "minecraft:glow_frame" - }, - { - "id" : "minecraft:honey_bottle" - }, - { - "id" : "minecraft:flower_pot" - }, - { - "id" : "minecraft:bowl" - }, - { - "id" : "minecraft:bucket" - }, - { - "id" : "minecraft:milk_bucket" - }, - { - "id" : "minecraft:water_bucket" - }, - { - "id" : "minecraft:lava_bucket" - }, - { - "id" : "minecraft:cod_bucket" - }, - { - "id" : "minecraft:salmon_bucket" - }, - { - "id" : "minecraft:tropical_fish_bucket" - }, - { - "id" : "minecraft:pufferfish_bucket" - }, - { - "id" : "minecraft:powder_snow_bucket" - }, - { - "id" : "minecraft:axolotl_bucket" - }, - { - "id" : "minecraft:skull", - "damage" : 3 - }, - { - "id" : "minecraft:skull", - "damage" : 2 - }, - { - "id" : "minecraft:skull", - "damage" : 4 - }, - { - "id" : "minecraft:skull", - "damage" : 5 - }, - { - "id" : "minecraft:skull" - }, - { - "id" : "minecraft:skull", - "damage" : 1 - }, - { - "id" : "minecraft:beacon", - "blockRuntimeId" : 217 - }, - { - "id" : "minecraft:bell", - "blockRuntimeId" : 292 - }, - { - "id" : "minecraft:conduit", - "blockRuntimeId" : 3676 - }, - { - "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7295 - }, - { - "id" : "minecraft:end_portal_frame", - "blockRuntimeId" : 4731 - }, - { - "id" : "minecraft:coal" - }, - { - "id" : "minecraft:charcoal" - }, - { - "id" : "minecraft:diamond" - }, - { - "id" : "minecraft:iron_nugget" - }, - { - "id" : "minecraft:raw_iron" - }, - { - "id" : "minecraft:raw_gold" - }, - { - "id" : "minecraft:raw_copper" - }, - { - "id" : "minecraft:copper_ingot" - }, - { - "id" : "minecraft:iron_ingot" - }, - { - "id" : "minecraft:netherite_scrap" - }, - { - "id" : "minecraft:netherite_ingot" - }, - { - "id" : "minecraft:gold_nugget" - }, - { - "id" : "minecraft:gold_ingot" - }, - { - "id" : "minecraft:emerald" - }, - { - "id" : "minecraft:quartz" - }, - { - "id" : "minecraft:clay_ball" - }, - { - "id" : "minecraft:brick" - }, - { - "id" : "minecraft:netherbrick" - }, - { - "id" : "minecraft:prismarine_shard" - }, - { - "id" : "minecraft:amethyst_shard" - }, - { - "id" : "minecraft:prismarine_crystals" - }, - { - "id" : "minecraft:nautilus_shell" - }, - { - "id" : "minecraft:heart_of_the_sea" - }, - { - "id" : "minecraft:scute" - }, - { - "id" : "minecraft:phantom_membrane" - }, - { - "id" : "minecraft:string" - }, - { - "id" : "minecraft:feather" - }, - { - "id" : "minecraft:flint" - }, - { - "id" : "minecraft:gunpowder" - }, - { - "id" : "minecraft:leather" - }, - { - "id" : "minecraft:rabbit_hide" - }, - { - "id" : "minecraft:rabbit_foot" - }, - { - "id" : "minecraft:fire_charge" - }, - { - "id" : "minecraft:blaze_rod" - }, - { - "id" : "minecraft:blaze_powder" - }, - { - "id" : "minecraft:magma_cream" - }, - { - "id" : "minecraft:fermented_spider_eye" - }, - { - "id" : "minecraft:dragon_breath" - }, - { - "id" : "minecraft:shulker_shell" - }, - { - "id" : "minecraft:ghast_tear" - }, - { - "id" : "minecraft:slime_ball" - }, - { - "id" : "minecraft:ender_pearl" - }, - { - "id" : "minecraft:ender_eye" - }, - { - "id" : "minecraft:nether_star" - }, - { - "id" : "minecraft:end_rod", - "blockRuntimeId" : 4739 - }, - { - "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5516 - }, - { - "id" : "minecraft:end_crystal" - }, - { - "id" : "minecraft:paper" - }, - { - "id" : "minecraft:book" - }, - { - "id" : "minecraft:writable_book" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA=" - }, - { - "id" : "minecraft:enchanted_book", - "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA=" - }, - { - "id" : "minecraft:oak_boat" - }, - { - "id" : "minecraft:spruce_boat" - }, - { - "id" : "minecraft:birch_boat" - }, - { - "id" : "minecraft:jungle_boat" - }, - { - "id" : "minecraft:acacia_boat" - }, - { - "id" : "minecraft:dark_oak_boat" - }, - { - "id" : "minecraft:rail", - "blockRuntimeId" : 6567 - }, - { - "id" : "minecraft:golden_rail", - "blockRuntimeId" : 4977 - }, - { - "id" : "minecraft:detector_rail", - "blockRuntimeId" : 4462 - }, - { - "id" : "minecraft:activator_rail", - "blockRuntimeId" : 122 - }, - { - "id" : "minecraft:minecart" - }, - { - "id" : "minecraft:chest_minecart" - }, - { - "id" : "minecraft:hopper_minecart" - }, - { - "id" : "minecraft:tnt_minecart" - }, - { - "id" : "minecraft:redstone" - }, - { - "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6645 - }, - { - "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6648 - }, - { - "id" : "minecraft:lever", - "blockRuntimeId" : 5442 - }, - { - "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7843 - }, - { - "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6966 - }, - { - "id" : "minecraft:birch_button", - "blockRuntimeId" : 356 - }, - { - "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5209 - }, - { - "id" : "minecraft:acacia_button" - }, - { - "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3937 - }, - { - "id" : "minecraft:stone_button", - "blockRuntimeId" : 7195 - }, - { - "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3772 - }, - { - "id" : "minecraft:warped_button", - "blockRuntimeId" : 7530 - }, - { - "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 6001 - }, - { - "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7401 - }, - { - "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7887 - }, - { - "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 7026 - }, - { - "id" : "minecraft:birch_pressure_plate", - "blockRuntimeId" : 416 - }, - { - "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5269 - }, - { - "id" : "minecraft:acacia_pressure_plate", - "blockRuntimeId" : 60 - }, - { - "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3997 - }, - { - "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3841 - }, - { - "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7599 - }, - { - "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7207 - }, - { - "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5500 - }, - { - "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5096 - }, - { - "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 6015 - }, - { - "id" : "minecraft:observer", - "blockRuntimeId" : 5725 - }, - { - "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4067 - }, - { - "id" : "minecraft:repeater" - }, - { - "id" : "minecraft:comparator" - }, - { - "id" : "minecraft:hopper" - }, - { - "id" : "minecraft:dropper", - "blockRuntimeId" : 4589 - }, - { - "id" : "minecraft:dispenser", - "blockRuntimeId" : 4490 - }, - { - "id" : "minecraft:piston", - "blockRuntimeId" : 5786 - }, - { - "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7169 - }, - { - "id" : "minecraft:tnt", - "blockRuntimeId" : 7353 - }, - { - "id" : "minecraft:name_tag" - }, - { - "id" : "minecraft:loom", - "blockRuntimeId" : 5582 - }, - { - "id" : "minecraft:banner" - }, - { - "id" : "minecraft:banner", - "damage" : 8 - }, - { - "id" : "minecraft:banner", - "damage" : 7 - }, - { - "id" : "minecraft:banner", - "damage" : 15 - }, - { - "id" : "minecraft:banner", - "damage" : 12 - }, - { - "id" : "minecraft:banner", - "damage" : 14 - }, - { - "id" : "minecraft:banner", - "damage" : 1 - }, - { - "id" : "minecraft:banner", - "damage" : 4 - }, - { - "id" : "minecraft:banner", - "damage" : 5 - }, - { - "id" : "minecraft:banner", - "damage" : 13 - }, - { - "id" : "minecraft:banner", - "damage" : 9 - }, - { - "id" : "minecraft:banner", - "damage" : 3 - }, - { - "id" : "minecraft:banner", - "damage" : 11 - }, - { - "id" : "minecraft:banner", - "damage" : 10 - }, - { - "id" : "minecraft:banner", - "damage" : 2 - }, - { - "id" : "minecraft:banner", - "damage" : 6 - }, - { - "id" : "minecraft:banner", - "damage" : 15, - "nbt_b64" : "CgAAAwQAVHlwZQEAAAAA" - }, - { - "id" : "minecraft:creeper_banner_pattern" - }, - { - "id" : "minecraft:skull_banner_pattern" - }, - { - "id" : "minecraft:flower_banner_pattern" - }, - { - "id" : "minecraft:mojang_banner_pattern" - }, - { - "id" : "minecraft:field_masoned_banner_pattern" - }, - { - "id" : "minecraft:bordure_indented_banner_pattern" - }, - { - "id" : "minecraft:piglin_banner_pattern" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_rocket", - "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - }, - { - "id" : "minecraft:firework_star", - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 8, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 7, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 15, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 12, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 14, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 1, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 4, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 5, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 13, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 9, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 3, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 11, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 10, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 2, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" - }, - { - "id" : "minecraft:firework_star", - "damage" : 6, - "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" - }, - { - "id" : "minecraft:chain" - }, - { - "id" : "minecraft:target", - "blockRuntimeId" : 7351 - }, - { - "id" : "minecraft:lodestone_compass" - } - ] + "items": [ + { + "blockState": "minecraft:planks;wood_type=oak" + }, + { + "blockState": "minecraft:planks;wood_type=spruce" + }, + { + "blockState": "minecraft:planks;wood_type=birch" + }, + { + "blockState": "minecraft:planks;wood_type=jungle" + }, + { + "blockState": "minecraft:planks;wood_type=acacia" + }, + { + "blockState": "minecraft:planks;wood_type=dark_oak" + }, + { + "blockState": "minecraft:crimson_planks" + }, + { + "blockState": "minecraft:warped_planks" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=cobblestone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_cobblestone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=granite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=diorite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=andesite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=sandstone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=red_sandstone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=nether_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=red_nether_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=end_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobblestone_wall;wall_block_type=prismarine;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + }, + { + "blockState": "minecraft:fence;wood_type=oak" + }, + { + "blockState": "minecraft:fence;wood_type=spruce" + }, + { + "blockState": "minecraft:fence;wood_type=birch" + }, + { + "blockState": "minecraft:fence;wood_type=jungle" + }, + { + "blockState": "minecraft:fence;wood_type=acacia" + }, + { + "blockState": "minecraft:fence;wood_type=dark_oak" + }, + { + "blockState": "minecraft:nether_brick_fence" + }, + { + "blockState": "minecraft:crimson_fence" + }, + { + "blockState": "minecraft:warped_fence" + }, + { + "blockState": "minecraft:fence_gate;direction=0;in_wall_bit=0;open_bit=0" + }, + { + "blockState": "minecraft:spruce_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + }, + { + "blockState": "minecraft:birch_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + }, + { + "blockState": "minecraft:jungle_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + }, + { + "blockState": "minecraft:acacia_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + }, + { + "blockState": "minecraft:dark_oak_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + }, + { + "blockState": "minecraft:crimson_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + }, + { + "blockState": "minecraft:warped_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + }, + { + "blockState": "minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:birch_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:acacia_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:andesite_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "blockState": "minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=0" + }, + { + "id": "minecraft:wooden_door" + }, + { + "id": "minecraft:spruce_door" + }, + { + "id": "minecraft:birch_door" + }, + { + "id": "minecraft:jungle_door" + }, + { + "id": "minecraft:acacia_door" + }, + { + "id": "minecraft:dark_oak_door" + }, + { + "id": "minecraft:iron_door" + }, + { + "id": "minecraft:crimson_door" + }, + { + "id": "minecraft:warped_door" + }, + { + "blockState": "minecraft:trapdoor;direction=0;open_bit=0;upside_down_bit=0" + }, + { + "blockState": "minecraft:spruce_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + }, + { + "blockState": "minecraft:birch_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + }, + { + "blockState": "minecraft:jungle_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + }, + { + "blockState": "minecraft:acacia_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + }, + { + "blockState": "minecraft:dark_oak_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + }, + { + "blockState": "minecraft:iron_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + }, + { + "blockState": "minecraft:crimson_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + }, + { + "blockState": "minecraft:warped_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + }, + { + "blockState": "minecraft:iron_bars" + }, + { + "blockState": "minecraft:glass" + }, + { + "blockState": "minecraft:stained_glass;color=white" + }, + { + "blockState": "minecraft:stained_glass;color=silver" + }, + { + "blockState": "minecraft:stained_glass;color=gray" + }, + { + "blockState": "minecraft:stained_glass;color=black" + }, + { + "blockState": "minecraft:stained_glass;color=brown" + }, + { + "blockState": "minecraft:stained_glass;color=red" + }, + { + "blockState": "minecraft:stained_glass;color=orange" + }, + { + "blockState": "minecraft:stained_glass;color=yellow" + }, + { + "blockState": "minecraft:stained_glass;color=lime" + }, + { + "blockState": "minecraft:stained_glass;color=green" + }, + { + "blockState": "minecraft:stained_glass;color=cyan" + }, + { + "blockState": "minecraft:stained_glass;color=light_blue" + }, + { + "blockState": "minecraft:stained_glass;color=blue" + }, + { + "blockState": "minecraft:stained_glass;color=purple" + }, + { + "blockState": "minecraft:stained_glass;color=magenta" + }, + { + "blockState": "minecraft:stained_glass;color=pink" + }, + { + "blockState": "minecraft:tinted_glass" + }, + { + "blockState": "minecraft:glass_pane" + }, + { + "blockState": "minecraft:stained_glass_pane;color=white" + }, + { + "blockState": "minecraft:stained_glass_pane;color=silver" + }, + { + "blockState": "minecraft:stained_glass_pane;color=gray" + }, + { + "blockState": "minecraft:stained_glass_pane;color=black" + }, + { + "blockState": "minecraft:stained_glass_pane;color=brown" + }, + { + "blockState": "minecraft:stained_glass_pane;color=red" + }, + { + "blockState": "minecraft:stained_glass_pane;color=orange" + }, + { + "blockState": "minecraft:stained_glass_pane;color=yellow" + }, + { + "blockState": "minecraft:stained_glass_pane;color=lime" + }, + { + "blockState": "minecraft:stained_glass_pane;color=green" + }, + { + "blockState": "minecraft:stained_glass_pane;color=cyan" + }, + { + "blockState": "minecraft:stained_glass_pane;color=light_blue" + }, + { + "blockState": "minecraft:stained_glass_pane;color=blue" + }, + { + "blockState": "minecraft:stained_glass_pane;color=purple" + }, + { + "blockState": "minecraft:stained_glass_pane;color=magenta" + }, + { + "blockState": "minecraft:stained_glass_pane;color=pink" + }, + { + "blockState": "minecraft:ladder;facing_direction=0" + }, + { + "blockState": "minecraft:scaffolding;stability=0;stability_check=0" + }, + { + "blockState": "minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab4;stone_slab_type_4=stone;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0" + }, + { + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=oak" + }, + { + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=spruce" + }, + { + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=birch" + }, + { + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=jungle" + }, + { + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=acacia" + }, + { + "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=dark_oak" + }, + { + "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab4;stone_slab_type_4=mossy_stone_brick;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab4;stone_slab_type_4=cut_sandstone;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab4;stone_slab_type_4=cut_red_sandstone;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab4;stone_slab_type_4=smooth_quartz;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0" + }, + { + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0" + }, + { + "blockState": "minecraft:crimson_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:warped_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:blackstone_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:polished_blackstone_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:polished_blackstone_brick_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:cut_copper_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:exposed_cut_copper_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:weathered_cut_copper_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:oxidized_cut_copper_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:waxed_cut_copper_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:cobbled_deepslate_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:polished_deepslate_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:deepslate_tile_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:deepslate_brick_slab;top_slot_bit=0" + }, + { + "blockState": "minecraft:brick_block" + }, + { + "blockState": "minecraft:chiseled_nether_bricks" + }, + { + "blockState": "minecraft:cracked_nether_bricks" + }, + { + "blockState": "minecraft:quartz_bricks" + }, + { + "blockState": "minecraft:stonebrick;stone_brick_type=default" + }, + { + "blockState": "minecraft:stonebrick;stone_brick_type=mossy" + }, + { + "blockState": "minecraft:stonebrick;stone_brick_type=cracked" + }, + { + "blockState": "minecraft:stonebrick;stone_brick_type=chiseled" + }, + { + "blockState": "minecraft:end_bricks" + }, + { + "blockState": "minecraft:prismarine;prismarine_block_type=bricks" + }, + { + "blockState": "minecraft:polished_blackstone_bricks" + }, + { + "blockState": "minecraft:cracked_polished_blackstone_bricks" + }, + { + "blockState": "minecraft:gilded_blackstone" + }, + { + "blockState": "minecraft:chiseled_polished_blackstone" + }, + { + "blockState": "minecraft:deepslate_tiles" + }, + { + "blockState": "minecraft:cracked_deepslate_tiles" + }, + { + "blockState": "minecraft:deepslate_bricks" + }, + { + "blockState": "minecraft:cracked_deepslate_bricks" + }, + { + "blockState": "minecraft:chiseled_deepslate" + }, + { + "blockState": "minecraft:cobblestone" + }, + { + "blockState": "minecraft:mossy_cobblestone" + }, + { + "blockState": "minecraft:cobbled_deepslate" + }, + { + "blockState": "minecraft:smooth_stone" + }, + { + "blockState": "minecraft:sandstone;sand_stone_type=default" + }, + { + "blockState": "minecraft:sandstone;sand_stone_type=heiroglyphs" + }, + { + "blockState": "minecraft:sandstone;sand_stone_type=cut" + }, + { + "blockState": "minecraft:sandstone;sand_stone_type=smooth" + }, + { + "blockState": "minecraft:red_sandstone;sand_stone_type=default" + }, + { + "blockState": "minecraft:red_sandstone;sand_stone_type=heiroglyphs" + }, + { + "blockState": "minecraft:red_sandstone;sand_stone_type=cut" + }, + { + "blockState": "minecraft:red_sandstone;sand_stone_type=smooth" + }, + { + "blockState": "minecraft:coal_block" + }, + { + "blockState": "minecraft:dried_kelp_block" + }, + { + "blockState": "minecraft:gold_block" + }, + { + "blockState": "minecraft:iron_block" + }, + { + "blockState": "minecraft:copper_block" + }, + { + "blockState": "minecraft:exposed_copper" + }, + { + "blockState": "minecraft:weathered_copper" + }, + { + "blockState": "minecraft:oxidized_copper" + }, + { + "blockState": "minecraft:waxed_copper" + }, + { + "blockState": "minecraft:waxed_exposed_copper" + }, + { + "blockState": "minecraft:waxed_weathered_copper" + }, + { + "blockState": "minecraft:waxed_oxidized_copper" + }, + { + "blockState": "minecraft:cut_copper" + }, + { + "blockState": "minecraft:exposed_cut_copper" + }, + { + "blockState": "minecraft:weathered_cut_copper" + }, + { + "blockState": "minecraft:oxidized_cut_copper" + }, + { + "blockState": "minecraft:waxed_cut_copper" + }, + { + "blockState": "minecraft:waxed_exposed_cut_copper" + }, + { + "blockState": "minecraft:waxed_weathered_cut_copper" + }, + { + "blockState": "minecraft:waxed_oxidized_cut_copper" + }, + { + "blockState": "minecraft:emerald_block" + }, + { + "blockState": "minecraft:diamond_block" + }, + { + "blockState": "minecraft:lapis_block" + }, + { + "blockState": "minecraft:raw_iron_block" + }, + { + "blockState": "minecraft:raw_copper_block" + }, + { + "blockState": "minecraft:raw_gold_block" + }, + { + "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + }, + { + "blockState": "minecraft:quartz_block;chisel_type=lines;pillar_axis=y" + }, + { + "blockState": "minecraft:quartz_block;chisel_type=chiseled;pillar_axis=y" + }, + { + "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" + }, + { + "blockState": "minecraft:prismarine;prismarine_block_type=default" + }, + { + "blockState": "minecraft:prismarine;prismarine_block_type=dark" + }, + { + "blockState": "minecraft:slime" + }, + { + "blockState": "minecraft:honey_block" + }, + { + "blockState": "minecraft:honeycomb_block" + }, + { + "blockState": "minecraft:hay_block;deprecated=0;pillar_axis=y" + }, + { + "blockState": "minecraft:bone_block;deprecated=0;pillar_axis=y" + }, + { + "blockState": "minecraft:nether_brick" + }, + { + "blockState": "minecraft:red_nether_brick" + }, + { + "blockState": "minecraft:netherite_block" + }, + { + "blockState": "minecraft:lodestone" + }, + { + "blockState": "minecraft:wool;color=white" + }, + { + "blockState": "minecraft:wool;color=silver" + }, + { + "blockState": "minecraft:wool;color=gray" + }, + { + "blockState": "minecraft:wool;color=black" + }, + { + "blockState": "minecraft:wool;color=brown" + }, + { + "blockState": "minecraft:wool;color=red" + }, + { + "blockState": "minecraft:wool;color=orange" + }, + { + "blockState": "minecraft:wool;color=yellow" + }, + { + "blockState": "minecraft:wool;color=lime" + }, + { + "blockState": "minecraft:wool;color=green" + }, + { + "blockState": "minecraft:wool;color=cyan" + }, + { + "blockState": "minecraft:wool;color=light_blue" + }, + { + "blockState": "minecraft:wool;color=blue" + }, + { + "blockState": "minecraft:wool;color=purple" + }, + { + "blockState": "minecraft:wool;color=magenta" + }, + { + "blockState": "minecraft:wool;color=pink" + }, + { + "blockState": "minecraft:carpet;color=white" + }, + { + "blockState": "minecraft:carpet;color=silver" + }, + { + "blockState": "minecraft:carpet;color=gray" + }, + { + "blockState": "minecraft:carpet;color=black" + }, + { + "blockState": "minecraft:carpet;color=brown" + }, + { + "blockState": "minecraft:carpet;color=red" + }, + { + "blockState": "minecraft:carpet;color=orange" + }, + { + "blockState": "minecraft:carpet;color=yellow" + }, + { + "blockState": "minecraft:carpet;color=lime" + }, + { + "blockState": "minecraft:carpet;color=green" + }, + { + "blockState": "minecraft:carpet;color=cyan" + }, + { + "blockState": "minecraft:carpet;color=light_blue" + }, + { + "blockState": "minecraft:carpet;color=blue" + }, + { + "blockState": "minecraft:carpet;color=purple" + }, + { + "blockState": "minecraft:carpet;color=magenta" + }, + { + "blockState": "minecraft:carpet;color=pink" + }, + { + "blockState": "minecraft:concretepowder;color=white" + }, + { + "blockState": "minecraft:concretepowder;color=silver" + }, + { + "blockState": "minecraft:concretepowder;color=gray" + }, + { + "blockState": "minecraft:concretepowder;color=black" + }, + { + "blockState": "minecraft:concretepowder;color=brown" + }, + { + "blockState": "minecraft:concretepowder;color=red" + }, + { + "blockState": "minecraft:concretepowder;color=orange" + }, + { + "blockState": "minecraft:concretepowder;color=yellow" + }, + { + "blockState": "minecraft:concretepowder;color=lime" + }, + { + "blockState": "minecraft:concretepowder;color=green" + }, + { + "blockState": "minecraft:concretepowder;color=cyan" + }, + { + "blockState": "minecraft:concretepowder;color=light_blue" + }, + { + "blockState": "minecraft:concretepowder;color=blue" + }, + { + "blockState": "minecraft:concretepowder;color=purple" + }, + { + "blockState": "minecraft:concretepowder;color=magenta" + }, + { + "blockState": "minecraft:concretepowder;color=pink" + }, + { + "blockState": "minecraft:concrete;color=white" + }, + { + "blockState": "minecraft:concrete;color=silver" + }, + { + "blockState": "minecraft:concrete;color=gray" + }, + { + "blockState": "minecraft:concrete;color=black" + }, + { + "blockState": "minecraft:concrete;color=brown" + }, + { + "blockState": "minecraft:concrete;color=red" + }, + { + "blockState": "minecraft:concrete;color=orange" + }, + { + "blockState": "minecraft:concrete;color=yellow" + }, + { + "blockState": "minecraft:concrete;color=lime" + }, + { + "blockState": "minecraft:concrete;color=green" + }, + { + "blockState": "minecraft:concrete;color=cyan" + }, + { + "blockState": "minecraft:concrete;color=light_blue" + }, + { + "blockState": "minecraft:concrete;color=blue" + }, + { + "blockState": "minecraft:concrete;color=purple" + }, + { + "blockState": "minecraft:concrete;color=magenta" + }, + { + "blockState": "minecraft:concrete;color=pink" + }, + { + "blockState": "minecraft:clay" + }, + { + "blockState": "minecraft:hardened_clay" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=white" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=silver" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=gray" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=black" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=brown" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=red" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=orange" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=yellow" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=lime" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=green" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=cyan" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=light_blue" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=blue" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=purple" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=magenta" + }, + { + "blockState": "minecraft:stained_hardened_clay;color=pink" + }, + { + "blockState": "minecraft:white_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:silver_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:gray_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:black_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:brown_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:red_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:orange_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:yellow_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:lime_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:green_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:cyan_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:light_blue_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:blue_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:purple_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:magenta_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:pink_glazed_terracotta;facing_direction=0" + }, + { + "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + }, + { + "blockState": "minecraft:purpur_block;chisel_type=lines;pillar_axis=y" + }, + { + "blockState": "minecraft:nether_wart_block" + }, + { + "blockState": "minecraft:warped_wart_block" + }, + { + "blockState": "minecraft:shroomlight" + }, + { + "blockState": "minecraft:crimson_nylium" + }, + { + "blockState": "minecraft:warped_nylium" + }, + { + "blockState": "minecraft:basalt;pillar_axis=y" + }, + { + "blockState": "minecraft:polished_basalt;pillar_axis=y" + }, + { + "blockState": "minecraft:smooth_basalt" + }, + { + "blockState": "minecraft:soul_soil" + }, + { + "blockState": "minecraft:dirt;dirt_type=normal" + }, + { + "blockState": "minecraft:dirt;dirt_type=coarse" + }, + { + "blockState": "minecraft:farmland;moisturized_amount=0" + }, + { + "blockState": "minecraft:grass" + }, + { + "blockState": "minecraft:grass_path" + }, + { + "blockState": "minecraft:podzol" + }, + { + "blockState": "minecraft:mycelium" + }, + { + "blockState": "minecraft:stone;stone_type=stone" + }, + { + "blockState": "minecraft:iron_ore" + }, + { + "blockState": "minecraft:gold_ore" + }, + { + "blockState": "minecraft:diamond_ore" + }, + { + "blockState": "minecraft:lapis_ore" + }, + { + "blockState": "minecraft:redstone_ore" + }, + { + "blockState": "minecraft:coal_ore" + }, + { + "blockState": "minecraft:copper_ore" + }, + { + "blockState": "minecraft:emerald_ore" + }, + { + "blockState": "minecraft:quartz_ore" + }, + { + "blockState": "minecraft:nether_gold_ore" + }, + { + "blockState": "minecraft:ancient_debris" + }, + { + "blockState": "minecraft:deepslate_iron_ore" + }, + { + "blockState": "minecraft:deepslate_gold_ore" + }, + { + "blockState": "minecraft:deepslate_diamond_ore" + }, + { + "blockState": "minecraft:deepslate_lapis_ore" + }, + { + "blockState": "minecraft:deepslate_redstone_ore" + }, + { + "blockState": "minecraft:deepslate_emerald_ore" + }, + { + "blockState": "minecraft:deepslate_coal_ore" + }, + { + "blockState": "minecraft:deepslate_copper_ore" + }, + { + "blockState": "minecraft:gravel" + }, + { + "blockState": "minecraft:stone;stone_type=granite" + }, + { + "blockState": "minecraft:stone;stone_type=diorite" + }, + { + "blockState": "minecraft:stone;stone_type=andesite" + }, + { + "blockState": "minecraft:blackstone" + }, + { + "blockState": "minecraft:deepslate;pillar_axis=y" + }, + { + "blockState": "minecraft:stone;stone_type=granite_smooth" + }, + { + "blockState": "minecraft:stone;stone_type=diorite_smooth" + }, + { + "blockState": "minecraft:stone;stone_type=andesite_smooth" + }, + { + "blockState": "minecraft:polished_blackstone" + }, + { + "blockState": "minecraft:polished_deepslate" + }, + { + "blockState": "minecraft:sand;sand_type=normal" + }, + { + "blockState": "minecraft:sand;sand_type=red" + }, + { + "blockState": "minecraft:cactus;age=0" + }, + { + "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + }, + { + "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + }, + { + "blockState": "minecraft:log;old_log_type=spruce;pillar_axis=y" + }, + { + "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + }, + { + "blockState": "minecraft:log;old_log_type=birch;pillar_axis=y" + }, + { + "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + }, + { + "blockState": "minecraft:log;old_log_type=jungle;pillar_axis=y" + }, + { + "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + }, + { + "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + }, + { + "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + }, + { + "blockState": "minecraft:log2;new_log_type=dark_oak;pillar_axis=y" + }, + { + "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + }, + { + "blockState": "minecraft:crimson_stem;pillar_axis=y" + }, + { + "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + }, + { + "blockState": "minecraft:warped_stem;pillar_axis=y" + }, + { + "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + }, + { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + }, + { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=oak" + }, + { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=spruce" + }, + { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=spruce" + }, + { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=birch" + }, + { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=birch" + }, + { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=jungle" + }, + { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=jungle" + }, + { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=acacia" + }, + { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=acacia" + }, + { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=dark_oak" + }, + { + "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=dark_oak" + }, + { + "blockState": "minecraft:crimson_hyphae;pillar_axis=y" + }, + { + "blockState": "minecraft:stripped_crimson_hyphae;pillar_axis=y" + }, + { + "blockState": "minecraft:warped_hyphae;pillar_axis=y" + }, + { + "blockState": "minecraft:stripped_warped_hyphae;pillar_axis=y" + }, + { + "blockState": "minecraft:leaves;old_leaf_type=oak;persistent_bit=0;update_bit=0" + }, + { + "blockState": "minecraft:leaves;old_leaf_type=spruce;persistent_bit=0;update_bit=0" + }, + { + "blockState": "minecraft:leaves;old_leaf_type=birch;persistent_bit=0;update_bit=0" + }, + { + "blockState": "minecraft:leaves;old_leaf_type=jungle;persistent_bit=0;update_bit=0" + }, + { + "blockState": "minecraft:leaves2;new_leaf_type=acacia;persistent_bit=0;update_bit=0" + }, + { + "blockState": "minecraft:leaves2;new_leaf_type=dark_oak;persistent_bit=0;update_bit=0" + }, + { + "blockState": "minecraft:azalea_leaves;persistent_bit=0;update_bit=0" + }, + { + "blockState": "minecraft:azalea_leaves_flowered;persistent_bit=0;update_bit=0" + }, + { + "blockState": "minecraft:sapling;age_bit=0;sapling_type=oak" + }, + { + "blockState": "minecraft:sapling;age_bit=0;sapling_type=spruce" + }, + { + "blockState": "minecraft:sapling;age_bit=0;sapling_type=birch" + }, + { + "blockState": "minecraft:sapling;age_bit=0;sapling_type=jungle" + }, + { + "blockState": "minecraft:sapling;age_bit=0;sapling_type=acacia" + }, + { + "blockState": "minecraft:sapling;age_bit=0;sapling_type=dark_oak" + }, + { + "blockState": "minecraft:bee_nest;direction=0;honey_level=0" + }, + { + "id": "minecraft:wheat_seeds" + }, + { + "id": "minecraft:pumpkin_seeds" + }, + { + "id": "minecraft:melon_seeds" + }, + { + "id": "minecraft:beetroot_seeds" + }, + { + "id": "minecraft:wheat" + }, + { + "id": "minecraft:beetroot" + }, + { + "id": "minecraft:potato" + }, + { + "id": "minecraft:poisonous_potato" + }, + { + "id": "minecraft:carrot" + }, + { + "id": "minecraft:golden_carrot" + }, + { + "id": "minecraft:apple" + }, + { + "id": "minecraft:golden_apple" + }, + { + "id": "minecraft:enchanted_golden_apple" + }, + { + "blockState": "minecraft:melon_block" + }, + { + "id": "minecraft:melon_slice" + }, + { + "id": "minecraft:glistering_melon_slice" + }, + { + "id": "minecraft:sweet_berries" + }, + { + "id": "minecraft:glow_berries" + }, + { + "blockState": "minecraft:pumpkin;direction=0" + }, + { + "blockState": "minecraft:carved_pumpkin;direction=0" + }, + { + "blockState": "minecraft:lit_pumpkin;direction=0" + }, + { + "id": "minecraft:honeycomb" + }, + { + "blockState": "minecraft:tallgrass;tall_grass_type=fern" + }, + { + "blockState": "minecraft:double_plant;double_plant_type=fern;upper_block_bit=0" + }, + { + "blockState": "minecraft:tallgrass;tall_grass_type=tall" + }, + { + "blockState": "minecraft:double_plant;double_plant_type=grass;upper_block_bit=0" + }, + { + "id": "minecraft:nether_sprouts" + }, + { + "blockState": "minecraft:coral;coral_color=red;dead_bit=0" + }, + { + "blockState": "minecraft:coral;coral_color=pink;dead_bit=0" + }, + { + "blockState": "minecraft:coral;coral_color=purple;dead_bit=0" + }, + { + "blockState": "minecraft:coral;coral_color=blue;dead_bit=0" + }, + { + "blockState": "minecraft:coral;coral_color=yellow;dead_bit=0" + }, + { + "blockState": "minecraft:coral;coral_color=red;dead_bit=1" + }, + { + "blockState": "minecraft:coral;coral_color=pink;dead_bit=1" + }, + { + "blockState": "minecraft:coral;coral_color=purple;dead_bit=1" + }, + { + "blockState": "minecraft:coral;coral_color=blue;dead_bit=1" + }, + { + "blockState": "minecraft:coral;coral_color=yellow;dead_bit=1" + }, + { + "blockState": "minecraft:coral_fan;coral_color=red;coral_fan_direction=0" + }, + { + "blockState": "minecraft:coral_fan;coral_color=pink;coral_fan_direction=0" + }, + { + "blockState": "minecraft:coral_fan;coral_color=purple;coral_fan_direction=0" + }, + { + "blockState": "minecraft:coral_fan;coral_color=blue;coral_fan_direction=0" + }, + { + "blockState": "minecraft:coral_fan;coral_color=yellow;coral_fan_direction=0" + }, + { + "blockState": "minecraft:coral_fan_dead;coral_color=red;coral_fan_direction=0" + }, + { + "blockState": "minecraft:coral_fan_dead;coral_color=pink;coral_fan_direction=0" + }, + { + "blockState": "minecraft:coral_fan_dead;coral_color=purple;coral_fan_direction=0" + }, + { + "blockState": "minecraft:coral_fan_dead;coral_color=blue;coral_fan_direction=0" + }, + { + "blockState": "minecraft:coral_fan_dead;coral_color=yellow;coral_fan_direction=0" + }, + { + "id": "minecraft:kelp" + }, + { + "blockState": "minecraft:seagrass;sea_grass_type=default" + }, + { + "blockState": "minecraft:crimson_roots" + }, + { + "blockState": "minecraft:warped_roots" + }, + { + "blockState": "minecraft:yellow_flower" + }, + { + "blockState": "minecraft:red_flower;flower_type=poppy" + }, + { + "blockState": "minecraft:red_flower;flower_type=orchid" + }, + { + "blockState": "minecraft:red_flower;flower_type=allium" + }, + { + "blockState": "minecraft:red_flower;flower_type=houstonia" + }, + { + "blockState": "minecraft:red_flower;flower_type=tulip_red" + }, + { + "blockState": "minecraft:red_flower;flower_type=tulip_orange" + }, + { + "blockState": "minecraft:red_flower;flower_type=tulip_white" + }, + { + "blockState": "minecraft:red_flower;flower_type=tulip_pink" + }, + { + "blockState": "minecraft:red_flower;flower_type=oxeye" + }, + { + "blockState": "minecraft:red_flower;flower_type=cornflower" + }, + { + "blockState": "minecraft:red_flower;flower_type=lily_of_the_valley" + }, + { + "blockState": "minecraft:double_plant;double_plant_type=sunflower;upper_block_bit=0" + }, + { + "blockState": "minecraft:double_plant;double_plant_type=syringa;upper_block_bit=0" + }, + { + "blockState": "minecraft:double_plant;double_plant_type=rose;upper_block_bit=0" + }, + { + "blockState": "minecraft:double_plant;double_plant_type=paeonia;upper_block_bit=0" + }, + { + "blockState": "minecraft:wither_rose" + }, + { + "id": "minecraft:white_dye" + }, + { + "id": "minecraft:light_gray_dye" + }, + { + "id": "minecraft:gray_dye" + }, + { + "id": "minecraft:black_dye" + }, + { + "id": "minecraft:brown_dye" + }, + { + "id": "minecraft:red_dye" + }, + { + "id": "minecraft:orange_dye" + }, + { + "id": "minecraft:yellow_dye" + }, + { + "id": "minecraft:lime_dye" + }, + { + "id": "minecraft:green_dye" + }, + { + "id": "minecraft:cyan_dye" + }, + { + "id": "minecraft:light_blue_dye" + }, + { + "id": "minecraft:blue_dye" + }, + { + "id": "minecraft:purple_dye" + }, + { + "id": "minecraft:magenta_dye" + }, + { + "id": "minecraft:pink_dye" + }, + { + "id": "minecraft:ink_sac" + }, + { + "id": "minecraft:glow_ink_sac" + }, + { + "id": "minecraft:cocoa_beans" + }, + { + "id": "minecraft:lapis_lazuli" + }, + { + "id": "minecraft:bone_meal" + }, + { + "blockState": "minecraft:vine;vine_direction_bits=0" + }, + { + "blockState": "minecraft:weeping_vines;weeping_vines_age=0" + }, + { + "blockState": "minecraft:twisting_vines;twisting_vines_age=0" + }, + { + "blockState": "minecraft:waterlily" + }, + { + "blockState": "minecraft:deadbush" + }, + { + "blockState": "minecraft:bamboo;age_bit=0;bamboo_leaf_size=no_leaves;bamboo_stalk_thickness=thin" + }, + { + "blockState": "minecraft:snow" + }, + { + "blockState": "minecraft:ice" + }, + { + "blockState": "minecraft:packed_ice" + }, + { + "blockState": "minecraft:blue_ice" + }, + { + "blockState": "minecraft:snow_layer;covered_bit=0;height=0" + }, + { + "blockState": "minecraft:pointed_dripstone;dripstone_thickness=tip;hanging=1" + }, + { + "blockState": "minecraft:dripstone_block" + }, + { + "blockState": "minecraft:moss_carpet" + }, + { + "blockState": "minecraft:moss_block" + }, + { + "blockState": "minecraft:dirt_with_roots" + }, + { + "blockState": "minecraft:hanging_roots" + }, + { + "blockState": "minecraft:big_dripleaf;big_dripleaf_head=1;big_dripleaf_tilt=none;direction=0" + }, + { + "blockState": "minecraft:small_dripleaf_block;direction=3;upper_block_bit=1" + }, + { + "blockState": "minecraft:spore_blossom" + }, + { + "blockState": "minecraft:azalea" + }, + { + "blockState": "minecraft:flowering_azalea" + }, + { + "blockState": "minecraft:glow_lichen;multi_face_direction_bits=63" + }, + { + "blockState": "minecraft:amethyst_block" + }, + { + "blockState": "minecraft:budding_amethyst" + }, + { + "blockState": "minecraft:amethyst_cluster;facing_direction=0" + }, + { + "blockState": "minecraft:large_amethyst_bud;facing_direction=0" + }, + { + "blockState": "minecraft:medium_amethyst_bud;facing_direction=0" + }, + { + "blockState": "minecraft:small_amethyst_bud;facing_direction=0" + }, + { + "blockState": "minecraft:tuff" + }, + { + "blockState": "minecraft:calcite" + }, + { + "id": "minecraft:chicken" + }, + { + "id": "minecraft:porkchop" + }, + { + "id": "minecraft:beef" + }, + { + "id": "minecraft:mutton" + }, + { + "id": "minecraft:rabbit" + }, + { + "id": "minecraft:cod" + }, + { + "id": "minecraft:salmon" + }, + { + "id": "minecraft:tropical_fish" + }, + { + "id": "minecraft:pufferfish" + }, + { + "blockState": "minecraft:brown_mushroom" + }, + { + "blockState": "minecraft:red_mushroom" + }, + { + "blockState": "minecraft:crimson_fungus" + }, + { + "blockState": "minecraft:warped_fungus" + }, + { + "blockState": "minecraft:brown_mushroom_block;huge_mushroom_bits=14" + }, + { + "blockState": "minecraft:red_mushroom_block;huge_mushroom_bits=14" + }, + { + "blockState": "minecraft:brown_mushroom_block;huge_mushroom_bits=15" + }, + { + "blockState": "minecraft:brown_mushroom_block;huge_mushroom_bits=0" + }, + { + "id": "minecraft:egg" + }, + { + "id": "minecraft:sugar_cane" + }, + { + "id": "minecraft:sugar" + }, + { + "id": "minecraft:rotten_flesh" + }, + { + "id": "minecraft:bone" + }, + { + "blockState": "minecraft:web" + }, + { + "id": "minecraft:spider_eye" + }, + { + "blockState": "minecraft:mob_spawner" + }, + { + "blockState": "minecraft:monster_egg;monster_egg_stone_type=stone" + }, + { + "blockState": "minecraft:monster_egg;monster_egg_stone_type=cobblestone" + }, + { + "blockState": "minecraft:monster_egg;monster_egg_stone_type=stone_brick" + }, + { + "blockState": "minecraft:monster_egg;monster_egg_stone_type=mossy_stone_brick" + }, + { + "blockState": "minecraft:monster_egg;monster_egg_stone_type=cracked_stone_brick" + }, + { + "blockState": "minecraft:monster_egg;monster_egg_stone_type=chiseled_stone_brick" + }, + { + "blockState": "minecraft:infested_deepslate;pillar_axis=y" + }, + { + "blockState": "minecraft:dragon_egg" + }, + { + "blockState": "minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=one_egg" + }, + { + "id": "minecraft:chicken_spawn_egg" + }, + { + "id": "minecraft:bee_spawn_egg" + }, + { + "id": "minecraft:cow_spawn_egg" + }, + { + "id": "minecraft:pig_spawn_egg" + }, + { + "id": "minecraft:sheep_spawn_egg" + }, + { + "id": "minecraft:wolf_spawn_egg" + }, + { + "id": "minecraft:polar_bear_spawn_egg" + }, + { + "id": "minecraft:ocelot_spawn_egg" + }, + { + "id": "minecraft:cat_spawn_egg" + }, + { + "id": "minecraft:mooshroom_spawn_egg" + }, + { + "id": "minecraft:bat_spawn_egg" + }, + { + "id": "minecraft:parrot_spawn_egg" + }, + { + "id": "minecraft:rabbit_spawn_egg" + }, + { + "id": "minecraft:llama_spawn_egg" + }, + { + "id": "minecraft:horse_spawn_egg" + }, + { + "id": "minecraft:donkey_spawn_egg" + }, + { + "id": "minecraft:mule_spawn_egg" + }, + { + "id": "minecraft:skeleton_horse_spawn_egg" + }, + { + "id": "minecraft:zombie_horse_spawn_egg" + }, + { + "id": "minecraft:tropical_fish_spawn_egg" + }, + { + "id": "minecraft:cod_spawn_egg" + }, + { + "id": "minecraft:pufferfish_spawn_egg" + }, + { + "id": "minecraft:salmon_spawn_egg" + }, + { + "id": "minecraft:dolphin_spawn_egg" + }, + { + "id": "minecraft:turtle_spawn_egg" + }, + { + "id": "minecraft:panda_spawn_egg" + }, + { + "id": "minecraft:fox_spawn_egg" + }, + { + "id": "minecraft:creeper_spawn_egg" + }, + { + "id": "minecraft:enderman_spawn_egg" + }, + { + "id": "minecraft:silverfish_spawn_egg" + }, + { + "id": "minecraft:skeleton_spawn_egg" + }, + { + "id": "minecraft:wither_skeleton_spawn_egg" + }, + { + "id": "minecraft:stray_spawn_egg" + }, + { + "id": "minecraft:slime_spawn_egg" + }, + { + "id": "minecraft:spider_spawn_egg" + }, + { + "id": "minecraft:zombie_spawn_egg" + }, + { + "id": "minecraft:zombie_pigman_spawn_egg" + }, + { + "id": "minecraft:husk_spawn_egg" + }, + { + "id": "minecraft:drowned_spawn_egg" + }, + { + "id": "minecraft:squid_spawn_egg" + }, + { + "id": "minecraft:glow_squid_spawn_egg" + }, + { + "id": "minecraft:cave_spider_spawn_egg" + }, + { + "id": "minecraft:witch_spawn_egg" + }, + { + "id": "minecraft:guardian_spawn_egg" + }, + { + "id": "minecraft:elder_guardian_spawn_egg" + }, + { + "id": "minecraft:endermite_spawn_egg" + }, + { + "id": "minecraft:magma_cube_spawn_egg" + }, + { + "id": "minecraft:strider_spawn_egg" + }, + { + "id": "minecraft:hoglin_spawn_egg" + }, + { + "id": "minecraft:piglin_spawn_egg" + }, + { + "id": "minecraft:zoglin_spawn_egg" + }, + { + "id": "minecraft:piglin_brute_spawn_egg" + }, + { + "id": "minecraft:goat_spawn_egg" + }, + { + "id": "minecraft:axolotl_spawn_egg" + }, + { + "id": "minecraft:ghast_spawn_egg" + }, + { + "id": "minecraft:blaze_spawn_egg" + }, + { + "id": "minecraft:shulker_spawn_egg" + }, + { + "id": "minecraft:vindicator_spawn_egg" + }, + { + "id": "minecraft:evoker_spawn_egg" + }, + { + "id": "minecraft:vex_spawn_egg" + }, + { + "id": "minecraft:villager_spawn_egg" + }, + { + "id": "minecraft:wandering_trader_spawn_egg" + }, + { + "id": "minecraft:zombie_villager_spawn_egg" + }, + { + "id": "minecraft:phantom_spawn_egg" + }, + { + "id": "minecraft:pillager_spawn_egg" + }, + { + "id": "minecraft:ravager_spawn_egg" + }, + { + "blockState": "minecraft:obsidian" + }, + { + "blockState": "minecraft:crying_obsidian" + }, + { + "blockState": "minecraft:bedrock;infiniburn_bit=0" + }, + { + "blockState": "minecraft:soul_sand" + }, + { + "blockState": "minecraft:netherrack" + }, + { + "blockState": "minecraft:magma" + }, + { + "id": "minecraft:nether_wart" + }, + { + "blockState": "minecraft:end_stone" + }, + { + "blockState": "minecraft:chorus_flower;age=0" + }, + { + "blockState": "minecraft:chorus_plant" + }, + { + "id": "minecraft:chorus_fruit" + }, + { + "id": "minecraft:popped_chorus_fruit" + }, + { + "blockState": "minecraft:sponge;sponge_type=dry" + }, + { + "blockState": "minecraft:sponge;sponge_type=wet" + }, + { + "blockState": "minecraft:coral_block;coral_color=blue;dead_bit=0" + }, + { + "blockState": "minecraft:coral_block;coral_color=pink;dead_bit=0" + }, + { + "blockState": "minecraft:coral_block;coral_color=purple;dead_bit=0" + }, + { + "blockState": "minecraft:coral_block;coral_color=red;dead_bit=0" + }, + { + "blockState": "minecraft:coral_block;coral_color=yellow;dead_bit=0" + }, + { + "blockState": "minecraft:coral_block;coral_color=blue;dead_bit=1" + }, + { + "blockState": "minecraft:coral_block;coral_color=pink;dead_bit=1" + }, + { + "blockState": "minecraft:coral_block;coral_color=purple;dead_bit=1" + }, + { + "blockState": "minecraft:coral_block;coral_color=red;dead_bit=1" + }, + { + "blockState": "minecraft:coral_block;coral_color=yellow;dead_bit=1" + }, + { + "id": "minecraft:leather_helmet" + }, + { + "id": "minecraft:chainmail_helmet" + }, + { + "id": "minecraft:iron_helmet" + }, + { + "id": "minecraft:golden_helmet" + }, + { + "id": "minecraft:diamond_helmet" + }, + { + "id": "minecraft:netherite_helmet" + }, + { + "id": "minecraft:leather_chestplate" + }, + { + "id": "minecraft:chainmail_chestplate" + }, + { + "id": "minecraft:iron_chestplate" + }, + { + "id": "minecraft:golden_chestplate" + }, + { + "id": "minecraft:diamond_chestplate" + }, + { + "id": "minecraft:netherite_chestplate" + }, + { + "id": "minecraft:leather_leggings" + }, + { + "id": "minecraft:chainmail_leggings" + }, + { + "id": "minecraft:iron_leggings" + }, + { + "id": "minecraft:golden_leggings" + }, + { + "id": "minecraft:diamond_leggings" + }, + { + "id": "minecraft:netherite_leggings" + }, + { + "id": "minecraft:leather_boots" + }, + { + "id": "minecraft:chainmail_boots" + }, + { + "id": "minecraft:iron_boots" + }, + { + "id": "minecraft:golden_boots" + }, + { + "id": "minecraft:diamond_boots" + }, + { + "id": "minecraft:netherite_boots" + }, + { + "id": "minecraft:wooden_sword" + }, + { + "id": "minecraft:stone_sword" + }, + { + "id": "minecraft:iron_sword" + }, + { + "id": "minecraft:golden_sword" + }, + { + "id": "minecraft:diamond_sword" + }, + { + "id": "minecraft:netherite_sword" + }, + { + "id": "minecraft:wooden_axe" + }, + { + "id": "minecraft:stone_axe" + }, + { + "id": "minecraft:iron_axe" + }, + { + "id": "minecraft:golden_axe" + }, + { + "id": "minecraft:diamond_axe" + }, + { + "id": "minecraft:netherite_axe" + }, + { + "id": "minecraft:wooden_pickaxe" + }, + { + "id": "minecraft:stone_pickaxe" + }, + { + "id": "minecraft:iron_pickaxe" + }, + { + "id": "minecraft:golden_pickaxe" + }, + { + "id": "minecraft:diamond_pickaxe" + }, + { + "id": "minecraft:netherite_pickaxe" + }, + { + "id": "minecraft:wooden_shovel" + }, + { + "id": "minecraft:stone_shovel" + }, + { + "id": "minecraft:iron_shovel" + }, + { + "id": "minecraft:golden_shovel" + }, + { + "id": "minecraft:diamond_shovel" + }, + { + "id": "minecraft:netherite_shovel" + }, + { + "id": "minecraft:wooden_hoe" + }, + { + "id": "minecraft:stone_hoe" + }, + { + "id": "minecraft:iron_hoe" + }, + { + "id": "minecraft:golden_hoe" + }, + { + "id": "minecraft:diamond_hoe" + }, + { + "id": "minecraft:netherite_hoe" + }, + { + "id": "minecraft:bow" + }, + { + "id": "minecraft:crossbow" + }, + { + "id": "minecraft:arrow" + }, + { + "id": "minecraft:arrow", + "damage": 6 + }, + { + "id": "minecraft:arrow", + "damage": 7 + }, + { + "id": "minecraft:arrow", + "damage": 8 + }, + { + "id": "minecraft:arrow", + "damage": 9 + }, + { + "id": "minecraft:arrow", + "damage": 10 + }, + { + "id": "minecraft:arrow", + "damage": 11 + }, + { + "id": "minecraft:arrow", + "damage": 12 + }, + { + "id": "minecraft:arrow", + "damage": 13 + }, + { + "id": "minecraft:arrow", + "damage": 14 + }, + { + "id": "minecraft:arrow", + "damage": 15 + }, + { + "id": "minecraft:arrow", + "damage": 16 + }, + { + "id": "minecraft:arrow", + "damage": 17 + }, + { + "id": "minecraft:arrow", + "damage": 18 + }, + { + "id": "minecraft:arrow", + "damage": 19 + }, + { + "id": "minecraft:arrow", + "damage": 20 + }, + { + "id": "minecraft:arrow", + "damage": 21 + }, + { + "id": "minecraft:arrow", + "damage": 22 + }, + { + "id": "minecraft:arrow", + "damage": 23 + }, + { + "id": "minecraft:arrow", + "damage": 24 + }, + { + "id": "minecraft:arrow", + "damage": 25 + }, + { + "id": "minecraft:arrow", + "damage": 26 + }, + { + "id": "minecraft:arrow", + "damage": 27 + }, + { + "id": "minecraft:arrow", + "damage": 28 + }, + { + "id": "minecraft:arrow", + "damage": 29 + }, + { + "id": "minecraft:arrow", + "damage": 30 + }, + { + "id": "minecraft:arrow", + "damage": 31 + }, + { + "id": "minecraft:arrow", + "damage": 32 + }, + { + "id": "minecraft:arrow", + "damage": 33 + }, + { + "id": "minecraft:arrow", + "damage": 34 + }, + { + "id": "minecraft:arrow", + "damage": 35 + }, + { + "id": "minecraft:arrow", + "damage": 36 + }, + { + "id": "minecraft:arrow", + "damage": 37 + }, + { + "id": "minecraft:arrow", + "damage": 38 + }, + { + "id": "minecraft:arrow", + "damage": 39 + }, + { + "id": "minecraft:arrow", + "damage": 40 + }, + { + "id": "minecraft:arrow", + "damage": 41 + }, + { + "id": "minecraft:arrow", + "damage": 42 + }, + { + "id": "minecraft:arrow", + "damage": 43 + }, + { + "id": "minecraft:shield" + }, + { + "id": "minecraft:cooked_chicken" + }, + { + "id": "minecraft:cooked_porkchop" + }, + { + "id": "minecraft:cooked_beef" + }, + { + "id": "minecraft:cooked_mutton" + }, + { + "id": "minecraft:cooked_rabbit" + }, + { + "id": "minecraft:cooked_cod" + }, + { + "id": "minecraft:cooked_salmon" + }, + { + "id": "minecraft:bread" + }, + { + "id": "minecraft:mushroom_stew" + }, + { + "id": "minecraft:beetroot_soup" + }, + { + "id": "minecraft:rabbit_stew" + }, + { + "id": "minecraft:baked_potato" + }, + { + "id": "minecraft:cookie" + }, + { + "id": "minecraft:pumpkin_pie" + }, + { + "id": "minecraft:cake" + }, + { + "id": "minecraft:dried_kelp" + }, + { + "id": "minecraft:fishing_rod" + }, + { + "id": "minecraft:carrot_on_a_stick" + }, + { + "id": "minecraft:warped_fungus_on_a_stick" + }, + { + "id": "minecraft:snowball" + }, + { + "id": "minecraft:shears" + }, + { + "id": "minecraft:flint_and_steel" + }, + { + "id": "minecraft:lead" + }, + { + "id": "minecraft:clock" + }, + { + "id": "minecraft:compass" + }, + { + "id": "minecraft:empty_map" + }, + { + "id": "minecraft:empty_map", + "damage": 2 + }, + { + "id": "minecraft:saddle" + }, + { + "id": "minecraft:leather_horse_armor" + }, + { + "id": "minecraft:iron_horse_armor" + }, + { + "id": "minecraft:golden_horse_armor" + }, + { + "id": "minecraft:diamond_horse_armor" + }, + { + "id": "minecraft:trident" + }, + { + "id": "minecraft:turtle_helmet" + }, + { + "id": "minecraft:elytra" + }, + { + "id": "minecraft:totem_of_undying" + }, + { + "id": "minecraft:glass_bottle" + }, + { + "id": "minecraft:experience_bottle" + }, + { + "id": "minecraft:potion" + }, + { + "id": "minecraft:potion", + "damage": 1 + }, + { + "id": "minecraft:potion", + "damage": 2 + }, + { + "id": "minecraft:potion", + "damage": 3 + }, + { + "id": "minecraft:potion", + "damage": 4 + }, + { + "id": "minecraft:potion", + "damage": 5 + }, + { + "id": "minecraft:potion", + "damage": 6 + }, + { + "id": "minecraft:potion", + "damage": 7 + }, + { + "id": "minecraft:potion", + "damage": 8 + }, + { + "id": "minecraft:potion", + "damage": 9 + }, + { + "id": "minecraft:potion", + "damage": 10 + }, + { + "id": "minecraft:potion", + "damage": 11 + }, + { + "id": "minecraft:potion", + "damage": 12 + }, + { + "id": "minecraft:potion", + "damage": 13 + }, + { + "id": "minecraft:potion", + "damage": 14 + }, + { + "id": "minecraft:potion", + "damage": 15 + }, + { + "id": "minecraft:potion", + "damage": 16 + }, + { + "id": "minecraft:potion", + "damage": 17 + }, + { + "id": "minecraft:potion", + "damage": 18 + }, + { + "id": "minecraft:potion", + "damage": 19 + }, + { + "id": "minecraft:potion", + "damage": 20 + }, + { + "id": "minecraft:potion", + "damage": 21 + }, + { + "id": "minecraft:potion", + "damage": 22 + }, + { + "id": "minecraft:potion", + "damage": 23 + }, + { + "id": "minecraft:potion", + "damage": 24 + }, + { + "id": "minecraft:potion", + "damage": 25 + }, + { + "id": "minecraft:potion", + "damage": 26 + }, + { + "id": "minecraft:potion", + "damage": 27 + }, + { + "id": "minecraft:potion", + "damage": 28 + }, + { + "id": "minecraft:potion", + "damage": 29 + }, + { + "id": "minecraft:potion", + "damage": 30 + }, + { + "id": "minecraft:potion", + "damage": 31 + }, + { + "id": "minecraft:potion", + "damage": 32 + }, + { + "id": "minecraft:potion", + "damage": 33 + }, + { + "id": "minecraft:potion", + "damage": 34 + }, + { + "id": "minecraft:potion", + "damage": 35 + }, + { + "id": "minecraft:potion", + "damage": 36 + }, + { + "id": "minecraft:potion", + "damage": 37 + }, + { + "id": "minecraft:potion", + "damage": 38 + }, + { + "id": "minecraft:potion", + "damage": 39 + }, + { + "id": "minecraft:potion", + "damage": 40 + }, + { + "id": "minecraft:potion", + "damage": 41 + }, + { + "id": "minecraft:potion", + "damage": 42 + }, + { + "id": "minecraft:splash_potion" + }, + { + "id": "minecraft:splash_potion", + "damage": 1 + }, + { + "id": "minecraft:splash_potion", + "damage": 2 + }, + { + "id": "minecraft:splash_potion", + "damage": 3 + }, + { + "id": "minecraft:splash_potion", + "damage": 4 + }, + { + "id": "minecraft:splash_potion", + "damage": 5 + }, + { + "id": "minecraft:splash_potion", + "damage": 6 + }, + { + "id": "minecraft:splash_potion", + "damage": 7 + }, + { + "id": "minecraft:splash_potion", + "damage": 8 + }, + { + "id": "minecraft:splash_potion", + "damage": 9 + }, + { + "id": "minecraft:splash_potion", + "damage": 10 + }, + { + "id": "minecraft:splash_potion", + "damage": 11 + }, + { + "id": "minecraft:splash_potion", + "damage": 12 + }, + { + "id": "minecraft:splash_potion", + "damage": 13 + }, + { + "id": "minecraft:splash_potion", + "damage": 14 + }, + { + "id": "minecraft:splash_potion", + "damage": 15 + }, + { + "id": "minecraft:splash_potion", + "damage": 16 + }, + { + "id": "minecraft:splash_potion", + "damage": 17 + }, + { + "id": "minecraft:splash_potion", + "damage": 18 + }, + { + "id": "minecraft:splash_potion", + "damage": 19 + }, + { + "id": "minecraft:splash_potion", + "damage": 20 + }, + { + "id": "minecraft:splash_potion", + "damage": 21 + }, + { + "id": "minecraft:splash_potion", + "damage": 22 + }, + { + "id": "minecraft:splash_potion", + "damage": 23 + }, + { + "id": "minecraft:splash_potion", + "damage": 24 + }, + { + "id": "minecraft:splash_potion", + "damage": 25 + }, + { + "id": "minecraft:splash_potion", + "damage": 26 + }, + { + "id": "minecraft:splash_potion", + "damage": 27 + }, + { + "id": "minecraft:splash_potion", + "damage": 28 + }, + { + "id": "minecraft:splash_potion", + "damage": 29 + }, + { + "id": "minecraft:splash_potion", + "damage": 30 + }, + { + "id": "minecraft:splash_potion", + "damage": 31 + }, + { + "id": "minecraft:splash_potion", + "damage": 32 + }, + { + "id": "minecraft:splash_potion", + "damage": 33 + }, + { + "id": "minecraft:splash_potion", + "damage": 34 + }, + { + "id": "minecraft:splash_potion", + "damage": 35 + }, + { + "id": "minecraft:splash_potion", + "damage": 36 + }, + { + "id": "minecraft:splash_potion", + "damage": 37 + }, + { + "id": "minecraft:splash_potion", + "damage": 38 + }, + { + "id": "minecraft:splash_potion", + "damage": 39 + }, + { + "id": "minecraft:splash_potion", + "damage": 40 + }, + { + "id": "minecraft:splash_potion", + "damage": 41 + }, + { + "id": "minecraft:splash_potion", + "damage": 42 + }, + { + "id": "minecraft:lingering_potion" + }, + { + "id": "minecraft:lingering_potion", + "damage": 1 + }, + { + "id": "minecraft:lingering_potion", + "damage": 2 + }, + { + "id": "minecraft:lingering_potion", + "damage": 3 + }, + { + "id": "minecraft:lingering_potion", + "damage": 4 + }, + { + "id": "minecraft:lingering_potion", + "damage": 5 + }, + { + "id": "minecraft:lingering_potion", + "damage": 6 + }, + { + "id": "minecraft:lingering_potion", + "damage": 7 + }, + { + "id": "minecraft:lingering_potion", + "damage": 8 + }, + { + "id": "minecraft:lingering_potion", + "damage": 9 + }, + { + "id": "minecraft:lingering_potion", + "damage": 10 + }, + { + "id": "minecraft:lingering_potion", + "damage": 11 + }, + { + "id": "minecraft:lingering_potion", + "damage": 12 + }, + { + "id": "minecraft:lingering_potion", + "damage": 13 + }, + { + "id": "minecraft:lingering_potion", + "damage": 14 + }, + { + "id": "minecraft:lingering_potion", + "damage": 15 + }, + { + "id": "minecraft:lingering_potion", + "damage": 16 + }, + { + "id": "minecraft:lingering_potion", + "damage": 17 + }, + { + "id": "minecraft:lingering_potion", + "damage": 18 + }, + { + "id": "minecraft:lingering_potion", + "damage": 19 + }, + { + "id": "minecraft:lingering_potion", + "damage": 20 + }, + { + "id": "minecraft:lingering_potion", + "damage": 21 + }, + { + "id": "minecraft:lingering_potion", + "damage": 22 + }, + { + "id": "minecraft:lingering_potion", + "damage": 23 + }, + { + "id": "minecraft:lingering_potion", + "damage": 24 + }, + { + "id": "minecraft:lingering_potion", + "damage": 25 + }, + { + "id": "minecraft:lingering_potion", + "damage": 26 + }, + { + "id": "minecraft:lingering_potion", + "damage": 27 + }, + { + "id": "minecraft:lingering_potion", + "damage": 28 + }, + { + "id": "minecraft:lingering_potion", + "damage": 29 + }, + { + "id": "minecraft:lingering_potion", + "damage": 30 + }, + { + "id": "minecraft:lingering_potion", + "damage": 31 + }, + { + "id": "minecraft:lingering_potion", + "damage": 32 + }, + { + "id": "minecraft:lingering_potion", + "damage": 33 + }, + { + "id": "minecraft:lingering_potion", + "damage": 34 + }, + { + "id": "minecraft:lingering_potion", + "damage": 35 + }, + { + "id": "minecraft:lingering_potion", + "damage": 36 + }, + { + "id": "minecraft:lingering_potion", + "damage": 37 + }, + { + "id": "minecraft:lingering_potion", + "damage": 38 + }, + { + "id": "minecraft:lingering_potion", + "damage": 39 + }, + { + "id": "minecraft:lingering_potion", + "damage": 40 + }, + { + "id": "minecraft:lingering_potion", + "damage": 41 + }, + { + "id": "minecraft:lingering_potion", + "damage": 42 + }, + { + "id": "minecraft:spyglass" + }, + { + "id": "minecraft:stick" + }, + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "blockState": "minecraft:torch;torch_facing_direction=unknown" + }, + { + "blockState": "minecraft:soul_torch;torch_facing_direction=unknown" + }, + { + "blockState": "minecraft:sea_pickle;cluster_count=0;dead_bit=0" + }, + { + "blockState": "minecraft:lantern;hanging=0" + }, + { + "blockState": "minecraft:soul_lantern;hanging=0" + }, + { + "blockState": "minecraft:candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:white_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:orange_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:magenta_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:light_blue_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:yellow_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:lime_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:pink_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:gray_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:light_gray_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:cyan_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:purple_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:blue_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:brown_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:green_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:red_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:black_candle;candles=0;lit=0" + }, + { + "blockState": "minecraft:crafting_table" + }, + { + "blockState": "minecraft:cartography_table" + }, + { + "blockState": "minecraft:fletching_table" + }, + { + "blockState": "minecraft:smithing_table" + }, + { + "blockState": "minecraft:beehive;direction=0;honey_level=0" + }, + { + "id": "minecraft:campfire" + }, + { + "id": "minecraft:soul_campfire" + }, + { + "blockState": "minecraft:furnace;facing_direction=0" + }, + { + "blockState": "minecraft:blast_furnace;facing_direction=0" + }, + { + "blockState": "minecraft:smoker;facing_direction=0" + }, + { + "blockState": "minecraft:respawn_anchor;respawn_anchor_charge=0" + }, + { + "id": "minecraft:brewing_stand" + }, + { + "blockState": "minecraft:anvil;damage=undamaged;direction=0" + }, + { + "blockState": "minecraft:anvil;damage=slightly_damaged;direction=0" + }, + { + "blockState": "minecraft:anvil;damage=very_damaged;direction=0" + }, + { + "blockState": "minecraft:grindstone;attachment=standing;direction=0" + }, + { + "blockState": "minecraft:enchanting_table" + }, + { + "blockState": "minecraft:bookshelf" + }, + { + "blockState": "minecraft:lectern;direction=0;powered_bit=0" + }, + { + "id": "minecraft:cauldron" + }, + { + "blockState": "minecraft:composter;composter_fill_level=0" + }, + { + "blockState": "minecraft:chest;facing_direction=0" + }, + { + "blockState": "minecraft:trapped_chest;facing_direction=0" + }, + { + "blockState": "minecraft:ender_chest;facing_direction=0" + }, + { + "blockState": "minecraft:barrel;facing_direction=0;open_bit=0" + }, + { + "blockState": "minecraft:undyed_shulker_box" + }, + { + "blockState": "minecraft:shulker_box;color=white" + }, + { + "blockState": "minecraft:shulker_box;color=silver" + }, + { + "blockState": "minecraft:shulker_box;color=gray" + }, + { + "blockState": "minecraft:shulker_box;color=black" + }, + { + "blockState": "minecraft:shulker_box;color=brown" + }, + { + "blockState": "minecraft:shulker_box;color=red" + }, + { + "blockState": "minecraft:shulker_box;color=orange" + }, + { + "blockState": "minecraft:shulker_box;color=yellow" + }, + { + "blockState": "minecraft:shulker_box;color=lime" + }, + { + "blockState": "minecraft:shulker_box;color=green" + }, + { + "blockState": "minecraft:shulker_box;color=cyan" + }, + { + "blockState": "minecraft:shulker_box;color=light_blue" + }, + { + "blockState": "minecraft:shulker_box;color=blue" + }, + { + "blockState": "minecraft:shulker_box;color=purple" + }, + { + "blockState": "minecraft:shulker_box;color=magenta" + }, + { + "blockState": "minecraft:shulker_box;color=pink" + }, + { + "id": "minecraft:armor_stand" + }, + { + "blockState": "minecraft:noteblock" + }, + { + "blockState": "minecraft:jukebox" + }, + { + "id": "minecraft:music_disc_13" + }, + { + "id": "minecraft:music_disc_cat" + }, + { + "id": "minecraft:music_disc_blocks" + }, + { + "id": "minecraft:music_disc_chirp" + }, + { + "id": "minecraft:music_disc_far" + }, + { + "id": "minecraft:music_disc_mall" + }, + { + "id": "minecraft:music_disc_mellohi" + }, + { + "id": "minecraft:music_disc_stal" + }, + { + "id": "minecraft:music_disc_strad" + }, + { + "id": "minecraft:music_disc_ward" + }, + { + "id": "minecraft:music_disc_11" + }, + { + "id": "minecraft:music_disc_wait" + }, + { + "id": "minecraft:music_disc_pigstep" + }, + { + "id": "minecraft:glowstone_dust" + }, + { + "blockState": "minecraft:glowstone" + }, + { + "blockState": "minecraft:redstone_lamp" + }, + { + "blockState": "minecraft:sealantern" + }, + { + "id": "minecraft:oak_sign" + }, + { + "id": "minecraft:spruce_sign" + }, + { + "id": "minecraft:birch_sign" + }, + { + "id": "minecraft:jungle_sign" + }, + { + "id": "minecraft:acacia_sign" + }, + { + "id": "minecraft:dark_oak_sign" + }, + { + "id": "minecraft:crimson_sign" + }, + { + "id": "minecraft:warped_sign" + }, + { + "id": "minecraft:painting" + }, + { + "id": "minecraft:frame" + }, + { + "blockState": "minecraft:glow_frame" + }, + { + "id": "minecraft:honey_bottle" + }, + { + "id": "minecraft:flower_pot" + }, + { + "id": "minecraft:bowl" + }, + { + "id": "minecraft:bucket" + }, + { + "id": "minecraft:milk_bucket" + }, + { + "id": "minecraft:water_bucket" + }, + { + "id": "minecraft:lava_bucket" + }, + { + "id": "minecraft:cod_bucket" + }, + { + "id": "minecraft:salmon_bucket" + }, + { + "id": "minecraft:tropical_fish_bucket" + }, + { + "id": "minecraft:pufferfish_bucket" + }, + { + "id": "minecraft:powder_snow_bucket" + }, + { + "id": "minecraft:axolotl_bucket" + }, + { + "id": "minecraft:skull", + "damage": 3 + }, + { + "id": "minecraft:skull", + "damage": 2 + }, + { + "id": "minecraft:skull", + "damage": 4 + }, + { + "id": "minecraft:skull", + "damage": 5 + }, + { + "id": "minecraft:skull" + }, + { + "id": "minecraft:skull", + "damage": 1 + }, + { + "blockState": "minecraft:beacon" + }, + { + "blockState": "minecraft:bell;attachment=standing;direction=0;toggle_bit=0" + }, + { + "blockState": "minecraft:conduit" + }, + { + "blockState": "minecraft:stonecutter_block;facing_direction=0" + }, + { + "blockState": "minecraft:end_portal_frame;direction=0;end_portal_eye_bit=0" + }, + { + "id": "minecraft:coal" + }, + { + "id": "minecraft:charcoal" + }, + { + "id": "minecraft:diamond" + }, + { + "id": "minecraft:iron_nugget" + }, + { + "id": "minecraft:raw_iron" + }, + { + "id": "minecraft:raw_gold" + }, + { + "id": "minecraft:raw_copper" + }, + { + "id": "minecraft:copper_ingot" + }, + { + "id": "minecraft:iron_ingot" + }, + { + "id": "minecraft:netherite_scrap" + }, + { + "id": "minecraft:netherite_ingot" + }, + { + "id": "minecraft:gold_nugget" + }, + { + "id": "minecraft:gold_ingot" + }, + { + "id": "minecraft:emerald" + }, + { + "id": "minecraft:quartz" + }, + { + "id": "minecraft:clay_ball" + }, + { + "id": "minecraft:brick" + }, + { + "id": "minecraft:netherbrick" + }, + { + "id": "minecraft:prismarine_shard" + }, + { + "id": "minecraft:amethyst_shard" + }, + { + "id": "minecraft:prismarine_crystals" + }, + { + "id": "minecraft:nautilus_shell" + }, + { + "id": "minecraft:heart_of_the_sea" + }, + { + "id": "minecraft:scute" + }, + { + "id": "minecraft:phantom_membrane" + }, + { + "id": "minecraft:string" + }, + { + "id": "minecraft:feather" + }, + { + "id": "minecraft:flint" + }, + { + "id": "minecraft:gunpowder" + }, + { + "id": "minecraft:leather" + }, + { + "id": "minecraft:rabbit_hide" + }, + { + "id": "minecraft:rabbit_foot" + }, + { + "id": "minecraft:fire_charge" + }, + { + "id": "minecraft:blaze_rod" + }, + { + "id": "minecraft:blaze_powder" + }, + { + "id": "minecraft:magma_cream" + }, + { + "id": "minecraft:fermented_spider_eye" + }, + { + "id": "minecraft:dragon_breath" + }, + { + "id": "minecraft:shulker_shell" + }, + { + "id": "minecraft:ghast_tear" + }, + { + "id": "minecraft:slime_ball" + }, + { + "id": "minecraft:ender_pearl" + }, + { + "id": "minecraft:ender_eye" + }, + { + "id": "minecraft:nether_star" + }, + { + "blockState": "minecraft:end_rod;facing_direction=0" + }, + { + "blockState": "minecraft:lightning_rod;facing_direction=0" + }, + { + "id": "minecraft:end_crystal" + }, + { + "id": "minecraft:paper" + }, + { + "id": "minecraft:book" + }, + { + "id": "minecraft:writable_book" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:oak_boat" + }, + { + "id": "minecraft:spruce_boat" + }, + { + "id": "minecraft:birch_boat" + }, + { + "id": "minecraft:jungle_boat" + }, + { + "id": "minecraft:acacia_boat" + }, + { + "id": "minecraft:dark_oak_boat" + }, + { + "blockState": "minecraft:rail;rail_direction=0" + }, + { + "blockState": "minecraft:golden_rail;rail_data_bit=0;rail_direction=0" + }, + { + "blockState": "minecraft:detector_rail;rail_data_bit=0;rail_direction=0" + }, + { + "blockState": "minecraft:activator_rail;rail_data_bit=0;rail_direction=0" + }, + { + "id": "minecraft:minecart" + }, + { + "id": "minecraft:chest_minecart" + }, + { + "id": "minecraft:hopper_minecart" + }, + { + "id": "minecraft:tnt_minecart" + }, + { + "id": "minecraft:redstone" + }, + { + "blockState": "minecraft:redstone_block" + }, + { + "blockState": "minecraft:redstone_torch;torch_facing_direction=unknown" + }, + { + "blockState": "minecraft:lever;lever_direction=down_east_west;open_bit=0" + }, + { + "blockState": "minecraft:wooden_button;button_pressed_bit=0;facing_direction=0" + }, + { + "blockState": "minecraft:spruce_button;button_pressed_bit=0;facing_direction=0" + }, + { + "blockState": "minecraft:birch_button;button_pressed_bit=0;facing_direction=0" + }, + { + "blockState": "minecraft:jungle_button;button_pressed_bit=0;facing_direction=0" + }, + { + "blockState": "minecraft:acacia_button" + }, + { + "blockState": "minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=0" + }, + { + "blockState": "minecraft:stone_button;button_pressed_bit=0;facing_direction=0" + }, + { + "blockState": "minecraft:crimson_button;button_pressed_bit=0;facing_direction=0" + }, + { + "blockState": "minecraft:warped_button;button_pressed_bit=0;facing_direction=0" + }, + { + "blockState": "minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=0" + }, + { + "blockState": "minecraft:tripwire_hook;attached_bit=0;direction=0;powered_bit=0" + }, + { + "blockState": "minecraft:wooden_pressure_plate;redstone_signal=0" + }, + { + "blockState": "minecraft:spruce_pressure_plate;redstone_signal=0" + }, + { + "blockState": "minecraft:birch_pressure_plate;redstone_signal=0" + }, + { + "blockState": "minecraft:jungle_pressure_plate;redstone_signal=0" + }, + { + "blockState": "minecraft:acacia_pressure_plate;redstone_signal=0" + }, + { + "blockState": "minecraft:dark_oak_pressure_plate;redstone_signal=0" + }, + { + "blockState": "minecraft:crimson_pressure_plate;redstone_signal=0" + }, + { + "blockState": "minecraft:warped_pressure_plate;redstone_signal=0" + }, + { + "blockState": "minecraft:stone_pressure_plate;redstone_signal=0" + }, + { + "blockState": "minecraft:light_weighted_pressure_plate;redstone_signal=0" + }, + { + "blockState": "minecraft:heavy_weighted_pressure_plate;redstone_signal=0" + }, + { + "blockState": "minecraft:polished_blackstone_pressure_plate;redstone_signal=0" + }, + { + "blockState": "minecraft:observer;facing_direction=0;powered_bit=0" + }, + { + "blockState": "minecraft:daylight_detector;redstone_signal=0" + }, + { + "id": "minecraft:repeater" + }, + { + "id": "minecraft:comparator" + }, + { + "id": "minecraft:hopper" + }, + { + "blockState": "minecraft:dropper;facing_direction=3;triggered_bit=0" + }, + { + "blockState": "minecraft:dispenser;facing_direction=3;triggered_bit=0" + }, + { + "blockState": "minecraft:piston;facing_direction=1" + }, + { + "blockState": "minecraft:sticky_piston;facing_direction=1" + }, + { + "blockState": "minecraft:tnt;allow_underwater_bit=0;explode_bit=0" + }, + { + "id": "minecraft:name_tag" + }, + { + "blockState": "minecraft:loom;direction=0" + }, + { + "id": "minecraft:banner" + }, + { + "id": "minecraft:banner", + "damage": 8 + }, + { + "id": "minecraft:banner", + "damage": 7 + }, + { + "id": "minecraft:banner", + "damage": 15 + }, + { + "id": "minecraft:banner", + "damage": 12 + }, + { + "id": "minecraft:banner", + "damage": 14 + }, + { + "id": "minecraft:banner", + "damage": 1 + }, + { + "id": "minecraft:banner", + "damage": 4 + }, + { + "id": "minecraft:banner", + "damage": 5 + }, + { + "id": "minecraft:banner", + "damage": 13 + }, + { + "id": "minecraft:banner", + "damage": 9 + }, + { + "id": "minecraft:banner", + "damage": 3 + }, + { + "id": "minecraft:banner", + "damage": 11 + }, + { + "id": "minecraft:banner", + "damage": 10 + }, + { + "id": "minecraft:banner", + "damage": 2 + }, + { + "id": "minecraft:banner", + "damage": 6 + }, + { + "id": "minecraft:banner", + "nbt_b64": "CgAAAwQAVHlwZQEAAAAA", + "damage": 15 + }, + { + "id": "minecraft:creeper_banner_pattern" + }, + { + "id": "minecraft:skull_banner_pattern" + }, + { + "id": "minecraft:flower_banner_pattern" + }, + { + "id": "minecraft:mojang_banner_pattern" + }, + { + "id": "minecraft:field_masoned_banner_pattern" + }, + { + "id": "minecraft:bordure_indented_banner_pattern" + }, + { + "id": "minecraft:piglin_banner_pattern" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=", + "damage": 8 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=", + "damage": 7 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=", + "damage": 15 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=", + "damage": 12 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=", + "damage": 14 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=", + "damage": 1 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=", + "damage": 4 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=", + "damage": 5 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=", + "damage": 13 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=", + "damage": 9 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=", + "damage": 3 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=", + "damage": 11 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=", + "damage": 10 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=", + "damage": 2 + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=", + "damage": 6 + }, + { + "id": "minecraft:chain" + }, + { + "blockState": "minecraft:target" + }, + { + "id": "minecraft:lodestone_compass" + } + ] } diff --git a/src/main/resources/recipes.json b/src/main/resources/recipes.json index ce7b998572f..b38214c3bf3 100644 --- a/src/main/resources/recipes.json +++ b/src/main/resources/recipes.json @@ -61,7 +61,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -77,7 +77,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -94,7 +94,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -110,7 +110,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -126,7 +126,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -143,7 +143,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:deepslate_bricks" } ], "output": [ @@ -160,7 +160,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:polished_deepslate" } ], "output": [ @@ -177,7 +177,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -193,7 +193,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:deepslate_bricks" } ], "output": [ @@ -209,7 +209,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:polished_deepslate" } ], "output": [ @@ -225,7 +225,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -241,7 +241,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:deepslate_bricks" } ], "output": [ @@ -257,7 +257,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:polished_deepslate" } ], "output": [ @@ -273,7 +273,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -289,7 +289,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:polished_deepslate" } ], "output": [ @@ -305,7 +305,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -322,7 +322,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:deepslate_bricks" } ], "output": [ @@ -339,7 +339,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:deepslate_tiles" } ], "output": [ @@ -356,7 +356,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:polished_deepslate" } ], "output": [ @@ -373,7 +373,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -389,7 +389,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:deepslate_bricks" } ], "output": [ @@ -405,7 +405,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:deepslate_tiles" } ], "output": [ @@ -421,7 +421,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:polished_deepslate" } ], "output": [ @@ -437,7 +437,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -453,7 +453,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:deepslate_bricks" } ], "output": [ @@ -469,7 +469,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:deepslate_tiles" } ], "output": [ @@ -485,7 +485,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:polished_deepslate" } ], "output": [ @@ -501,7 +501,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -517,7 +517,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:deepslate_bricks" } ], "output": [ @@ -533,7 +533,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:polished_deepslate" } ], "output": [ @@ -549,7 +549,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -565,7 +565,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -582,7 +582,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:polished_deepslate" } ], "output": [ @@ -599,7 +599,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -615,7 +615,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:polished_deepslate" } ], "output": [ @@ -631,7 +631,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:cobbled_deepslate" } ], "output": [ @@ -647,7 +647,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "blockState": "minecraft:polished_deepslate" } ], "output": [ @@ -663,7 +663,6 @@ "type": 0, "input": [ { - "damage": 5, "blockState": "minecraft:stone;stone_type=andesite" } ], @@ -681,7 +680,6 @@ "type": 0, "input": [ { - "damage": 5, "blockState": "minecraft:stone;stone_type=andesite" } ], @@ -698,7 +696,6 @@ "type": 0, "input": [ { - "damage": 5, "blockState": "minecraft:stone;stone_type=andesite" } ], @@ -715,6 +712,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:blackstone" } ], @@ -732,6 +730,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:blackstone" } ], @@ -748,6 +747,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:blackstone" } ], @@ -781,6 +781,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } ], @@ -814,6 +815,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } ], @@ -846,6 +848,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } ], @@ -862,6 +865,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } ], @@ -878,6 +882,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } ], @@ -894,6 +899,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:nether_brick" } ], @@ -910,6 +916,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:blackstone" } ], @@ -975,7 +982,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:copper_block" } ], "output": [ @@ -991,7 +999,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:copper_block" } ], "output": [ @@ -1008,7 +1017,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:copper_block" } ], "output": [ @@ -1024,7 +1034,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cut_copper" } ], "output": [ @@ -1041,7 +1052,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cut_copper" } ], "output": [ @@ -1057,7 +1069,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:prismarine;prismarine_block_type=dark" } ], @@ -1075,7 +1086,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:prismarine;prismarine_block_type=dark" } ], @@ -1092,7 +1102,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:stone;stone_type=diorite" } ], @@ -1110,7 +1119,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:stone;stone_type=diorite" } ], @@ -1127,7 +1135,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:stone;stone_type=diorite" } ], @@ -1144,7 +1151,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } ], "output": [ @@ -1275,7 +1282,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:exposed_copper" } ], "output": [ @@ -1291,7 +1299,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:exposed_copper" } ], "output": [ @@ -1307,7 +1316,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:exposed_copper" } ], "output": [ @@ -1324,7 +1334,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:exposed_cut_copper" } ], "output": [ @@ -1341,7 +1352,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:exposed_cut_copper" } ], "output": [ @@ -1357,7 +1369,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:stone;stone_type=granite" } ], @@ -1375,7 +1386,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:stone;stone_type=granite" } ], @@ -1392,7 +1402,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:stone;stone_type=granite" } ], @@ -1458,7 +1467,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:stonebrick;stone_brick_type=mossy" } ], @@ -1476,7 +1484,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:stonebrick;stone_brick_type=mossy" } ], @@ -1493,7 +1500,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:stonebrick;stone_brick_type=mossy" } ], @@ -1559,7 +1565,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:oxidized_copper" } ], "output": [ @@ -1575,7 +1582,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:oxidized_copper" } ], "output": [ @@ -1592,7 +1600,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:oxidized_copper" } ], "output": [ @@ -1608,7 +1617,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:oxidized_cut_copper" } ], "output": [ @@ -1625,7 +1635,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:oxidized_cut_copper" } ], "output": [ @@ -1641,7 +1652,6 @@ "type": 0, "input": [ { - "damage": 5, "blockState": "minecraft:stone;stone_type=andesite" } ], @@ -1658,7 +1668,6 @@ "type": 0, "input": [ { - "damage": 5, "blockState": "minecraft:stone;stone_type=andesite" } ], @@ -1676,7 +1685,6 @@ "type": 0, "input": [ { - "damage": 6, "blockState": "minecraft:stone;stone_type=andesite_smooth" } ], @@ -1694,7 +1702,6 @@ "type": 0, "input": [ { - "damage": 5, "blockState": "minecraft:stone;stone_type=andesite" } ], @@ -1711,7 +1718,6 @@ "type": 0, "input": [ { - "damage": 6, "blockState": "minecraft:stone;stone_type=andesite_smooth" } ], @@ -1728,7 +1734,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:basalt;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:basalt" } ], "output": [ @@ -1744,6 +1751,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:blackstone" } ], @@ -1761,6 +1769,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:blackstone" } ], @@ -1777,6 +1786,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:blackstone" } ], @@ -1793,6 +1803,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:blackstone" } ], @@ -1809,7 +1820,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:stone;stone_type=diorite" } ], @@ -1826,7 +1836,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:stone;stone_type=diorite" } ], @@ -1844,7 +1853,6 @@ "type": 0, "input": [ { - "damage": 4, "blockState": "minecraft:stone;stone_type=diorite_smooth" } ], @@ -1862,7 +1870,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:stone;stone_type=diorite" } ], @@ -1879,7 +1886,6 @@ "type": 0, "input": [ { - "damage": 4, "blockState": "minecraft:stone;stone_type=diorite_smooth" } ], @@ -1896,6 +1902,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:blackstone" } ], @@ -1912,7 +1919,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:stone;stone_type=granite" } ], @@ -1929,7 +1935,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:stone;stone_type=granite" } ], @@ -1947,7 +1952,6 @@ "type": 0, "input": [ { - "damage": 2, "blockState": "minecraft:stone;stone_type=granite_smooth" } ], @@ -1965,7 +1969,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:stone;stone_type=granite" } ], @@ -1982,7 +1985,6 @@ "type": 0, "input": [ { - "damage": 2, "blockState": "minecraft:stone;stone_type=granite_smooth" } ], @@ -1999,6 +2001,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:blackstone" } ], @@ -2016,6 +2019,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:blackstone" } ], @@ -2032,6 +2036,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:blackstone" } ], @@ -2048,7 +2053,6 @@ "type": 0, "input": [ { - "damage": 2, "blockState": "minecraft:prismarine;prismarine_block_type=bricks" } ], @@ -2066,7 +2070,6 @@ "type": 0, "input": [ { - "damage": 2, "blockState": "minecraft:prismarine;prismarine_block_type=bricks" } ], @@ -2083,7 +2086,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:prismarine;prismarine_block_type=default" + "blockState": "minecraft:prismarine" } ], "output": [ @@ -2100,7 +2103,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:prismarine;prismarine_block_type=default" + "blockState": "minecraft:prismarine" } ], "output": [ @@ -2116,7 +2119,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:prismarine;prismarine_block_type=default" + "blockState": "minecraft:prismarine" } ], "output": [ @@ -2132,7 +2135,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:purpur_block" } ], "output": [ @@ -2148,7 +2151,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:purpur_block" } ], "output": [ @@ -2165,7 +2168,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:purpur_block" } ], "output": [ @@ -2181,7 +2184,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:quartz_block" } ], "output": [ @@ -2197,7 +2200,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:quartz_block" } ], "output": [ @@ -2213,7 +2216,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:quartz_block" } ], "output": [ @@ -2229,7 +2232,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:quartz_block" } ], "output": [ @@ -2246,7 +2249,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:quartz_block" } ], "output": [ @@ -2311,7 +2314,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:red_sandstone;sand_stone_type=default" + "blockState": "minecraft:red_sandstone" } ], "output": [ @@ -2328,7 +2331,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:red_sandstone;sand_stone_type=default" + "blockState": "minecraft:red_sandstone" } ], "output": [ @@ -2344,7 +2347,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:red_sandstone;sand_stone_type=default" + "blockState": "minecraft:red_sandstone" } ], "output": [ @@ -2360,7 +2363,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:red_sandstone;sand_stone_type=default" + "blockState": "minecraft:red_sandstone" } ], "output": [ @@ -2376,7 +2379,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:red_sandstone;sand_stone_type=default" + "blockState": "minecraft:red_sandstone" } ], "output": [ @@ -2392,7 +2395,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:sandstone;sand_stone_type=default" + "blockState": "minecraft:sandstone" } ], "output": [ @@ -2409,7 +2412,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:sandstone;sand_stone_type=default" + "blockState": "minecraft:sandstone" } ], "output": [ @@ -2425,7 +2428,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:sandstone;sand_stone_type=default" + "blockState": "minecraft:sandstone" } ], "output": [ @@ -2441,7 +2444,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:sandstone;sand_stone_type=default" + "blockState": "minecraft:sandstone" } ], "output": [ @@ -2457,7 +2460,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:sandstone;sand_stone_type=default" + "blockState": "minecraft:sandstone" } ], "output": [ @@ -2473,6 +2476,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } ], @@ -2490,6 +2494,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:polished_blackstone_bricks" } ], @@ -2524,7 +2529,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" } ], @@ -2542,7 +2546,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" } ], @@ -2559,7 +2562,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:red_sandstone;sand_stone_type=smooth" } ], @@ -2577,7 +2579,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:red_sandstone;sand_stone_type=smooth" } ], @@ -2594,7 +2595,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:sandstone;sand_stone_type=smooth" } ], @@ -2612,7 +2612,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:sandstone;sand_stone_type=smooth" } ], @@ -2629,6 +2628,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } ], @@ -2645,7 +2645,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } ], "output": [ @@ -2661,7 +2661,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } ], "output": [ @@ -2677,7 +2677,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } ], "output": [ @@ -2693,7 +2693,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } ], "output": [ @@ -2710,7 +2710,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:stonebrick;stone_brick_type=default" + "blockState": "minecraft:stonebrick" } ], "output": [ @@ -2727,7 +2727,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } ], "output": [ @@ -2743,7 +2743,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:stonebrick;stone_brick_type=default" + "blockState": "minecraft:stonebrick" } ], "output": [ @@ -2759,7 +2759,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } ], "output": [ @@ -2775,7 +2775,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:stonebrick;stone_brick_type=default" + "blockState": "minecraft:stonebrick" } ], "output": [ @@ -2791,6 +2791,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } ], @@ -2807,6 +2808,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:polished_blackstone_bricks" } ], @@ -2823,7 +2825,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_copper" } ], "output": [ @@ -2839,7 +2842,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_copper" } ], "output": [ @@ -2856,7 +2860,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_copper" } ], "output": [ @@ -2872,7 +2877,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_exposed_copper" } ], "output": [ @@ -2889,7 +2895,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_cut_copper" } ], "output": [ @@ -2906,7 +2913,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_cut_copper" } ], "output": [ @@ -2922,7 +2930,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_exposed_copper" } ], "output": [ @@ -2938,7 +2947,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_exposed_copper" } ], "output": [ @@ -2954,7 +2964,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_exposed_cut_copper" } ], "output": [ @@ -2971,7 +2982,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_exposed_cut_copper" } ], "output": [ @@ -2987,7 +2999,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_oxidized_copper" } ], "output": [ @@ -3003,7 +3016,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_oxidized_copper" } ], "output": [ @@ -3020,7 +3034,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_oxidized_copper" } ], "output": [ @@ -3036,7 +3051,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_oxidized_cut_copper" } ], "output": [ @@ -3052,7 +3068,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_oxidized_cut_copper" } ], "output": [ @@ -3068,7 +3085,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_weathered_copper" } ], "output": [ @@ -3084,7 +3102,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_weathered_copper" } ], "output": [ @@ -3101,7 +3120,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_weathered_copper" } ], "output": [ @@ -3117,7 +3137,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_weathered_cut_copper" } ], "output": [ @@ -3134,7 +3155,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_weathered_cut_copper" } ], "output": [ @@ -3150,7 +3172,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:weathered_copper" } ], "output": [ @@ -3166,7 +3189,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:weathered_copper" } ], "output": [ @@ -3183,7 +3207,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:weathered_copper" } ], "output": [ @@ -3199,7 +3224,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:weathered_cut_copper" } ], "output": [ @@ -3216,7 +3242,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:weathered_cut_copper" } ], "output": [ @@ -3232,6 +3259,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:polished_blackstone_bricks" } ], @@ -3248,7 +3276,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:book", @@ -3273,7 +3302,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -3294,13 +3324,12 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:planks;wood_type=acacia" } }, "output": [ { - "blockState": "minecraft:acacia_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:acacia_button" } ], "shape": [ @@ -3314,7 +3343,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:planks;wood_type=birch" } }, @@ -3334,7 +3362,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:planks;wood_type=dark_oak" } }, @@ -3354,7 +3381,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:planks;wood_type=jungle" } }, @@ -3374,7 +3400,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:planks;wood_type=spruce" } }, @@ -3394,7 +3419,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -3422,7 +3448,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:wooden_slab" } }, "output": [ @@ -3494,7 +3521,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:diamond", @@ -3519,7 +3547,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:redstone", @@ -3584,7 +3613,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:sandstone;sand_stone_type=default" + "blockState": "minecraft:sandstone" } }, "output": [ @@ -3608,7 +3637,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:wool;color=white" + "fuzzy": true, + "blockState": "minecraft:wool" } }, "output": [ @@ -3629,7 +3659,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" }, "B": { "blockState": "minecraft:cobblestone" @@ -3661,7 +3692,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:planks;wood_type=acacia" } }, @@ -3681,7 +3711,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:planks;wood_type=birch" } }, @@ -3701,7 +3730,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:planks;wood_type=dark_oak" } }, @@ -3721,7 +3749,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:planks;wood_type=jungle" } }, @@ -3741,7 +3768,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:planks;wood_type=spruce" } }, @@ -3761,7 +3787,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:bamboo;age_bit=0;bamboo_leaf_size=no_leaves;bamboo_stalk_thickness=thin" + "blockState": "minecraft:bamboo" } }, "output": [ @@ -3781,7 +3807,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } }, "output": [ @@ -3801,7 +3827,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:stonebrick;stone_brick_type=mossy" } }, @@ -3842,7 +3867,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stonebrick;stone_brick_type=default" + "blockState": "minecraft:stonebrick" } }, "output": [ @@ -3933,7 +3958,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:planks;wood_type=acacia" } }, @@ -3955,7 +3979,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:planks;wood_type=birch" } }, @@ -3977,7 +4000,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:planks;wood_type=dark_oak" } }, @@ -3999,7 +4021,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:planks;wood_type=jungle" } }, @@ -4021,7 +4042,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:planks;wood_type=spruce" } }, @@ -4043,7 +4063,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" } }, "output": [ @@ -4072,7 +4092,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4094,7 +4115,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" } }, "output": [ @@ -4113,7 +4134,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" } }, "output": [ @@ -4132,7 +4153,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4152,7 +4174,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:planks;wood_type=acacia" } }, @@ -4187,10 +4208,11 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4210,11 +4232,11 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:wool;color=orange" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4235,11 +4257,11 @@ "type": 1, "input": { "A": { - "damage": 10, "blockState": "minecraft:wool;color=purple" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4260,11 +4282,11 @@ "type": 1, "input": { "A": { - "damage": 11, "blockState": "minecraft:wool;color=blue" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4285,11 +4307,11 @@ "type": 1, "input": { "A": { - "damage": 12, "blockState": "minecraft:wool;color=brown" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4310,11 +4332,11 @@ "type": 1, "input": { "A": { - "damage": 13, "blockState": "minecraft:wool;color=green" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4335,11 +4357,11 @@ "type": 1, "input": { "A": { - "damage": 14, "blockState": "minecraft:wool;color=red" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4360,11 +4382,11 @@ "type": 1, "input": { "A": { - "damage": 15, "blockState": "minecraft:wool;color=black" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4385,11 +4407,11 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:wool;color=magenta" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4410,11 +4432,11 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4435,11 +4457,11 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:wool;color=yellow" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4460,11 +4482,11 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:wool;color=lime" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4485,11 +4507,11 @@ "type": 1, "input": { "A": { - "damage": 6, "blockState": "minecraft:wool;color=pink" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4510,11 +4532,11 @@ "type": 1, "input": { "A": { - "damage": 7, "blockState": "minecraft:wool;color=gray" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4535,11 +4557,11 @@ "type": 1, "input": { "A": { - "damage": 8, "blockState": "minecraft:wool;color=silver" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4560,11 +4582,11 @@ "type": 1, "input": { "A": { - "damage": 9, "blockState": "minecraft:wool;color=cyan" }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -4585,9 +4607,10 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4608,10 +4631,10 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:wool;color=orange" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4633,10 +4656,10 @@ "type": 1, "input": { "A": { - "damage": 10, "blockState": "minecraft:wool;color=purple" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4658,10 +4681,10 @@ "type": 1, "input": { "A": { - "damage": 11, "blockState": "minecraft:wool;color=blue" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4683,10 +4706,10 @@ "type": 1, "input": { "A": { - "damage": 12, "blockState": "minecraft:wool;color=brown" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4708,10 +4731,10 @@ "type": 1, "input": { "A": { - "damage": 13, "blockState": "minecraft:wool;color=green" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4733,10 +4756,10 @@ "type": 1, "input": { "A": { - "damage": 14, "blockState": "minecraft:wool;color=red" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4758,10 +4781,10 @@ "type": 1, "input": { "A": { - "damage": 15, "blockState": "minecraft:wool;color=black" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4783,10 +4806,10 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:wool;color=magenta" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4808,10 +4831,10 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4833,10 +4856,10 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:wool;color=yellow" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4858,10 +4881,10 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:wool;color=lime" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4883,10 +4906,10 @@ "type": 1, "input": { "A": { - "damage": 6, "blockState": "minecraft:wool;color=pink" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4908,10 +4931,10 @@ "type": 1, "input": { "A": { - "damage": 7, "blockState": "minecraft:wool;color=gray" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4933,10 +4956,10 @@ "type": 1, "input": { "A": { - "damage": 8, "blockState": "minecraft:wool;color=silver" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4958,10 +4981,10 @@ "type": 1, "input": { "A": { - "damage": 9, "blockState": "minecraft:wool;color=cyan" }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -4983,9 +5006,10 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5006,10 +5030,10 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:wool;color=orange" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5031,10 +5055,10 @@ "type": 1, "input": { "A": { - "damage": 10, "blockState": "minecraft:wool;color=purple" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5056,10 +5080,10 @@ "type": 1, "input": { "A": { - "damage": 11, "blockState": "minecraft:wool;color=blue" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5081,10 +5105,10 @@ "type": 1, "input": { "A": { - "damage": 12, "blockState": "minecraft:wool;color=brown" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5106,10 +5130,10 @@ "type": 1, "input": { "A": { - "damage": 13, "blockState": "minecraft:wool;color=green" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5131,10 +5155,10 @@ "type": 1, "input": { "A": { - "damage": 14, "blockState": "minecraft:wool;color=red" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5156,10 +5180,10 @@ "type": 1, "input": { "A": { - "damage": 15, "blockState": "minecraft:wool;color=black" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5181,10 +5205,10 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:wool;color=magenta" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5206,10 +5230,10 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5231,10 +5255,10 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:wool;color=yellow" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5256,10 +5280,10 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:wool;color=lime" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5281,10 +5305,10 @@ "type": 1, "input": { "A": { - "damage": 6, "blockState": "minecraft:wool;color=pink" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5306,10 +5330,10 @@ "type": 1, "input": { "A": { - "damage": 7, "blockState": "minecraft:wool;color=gray" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5331,10 +5355,10 @@ "type": 1, "input": { "A": { - "damage": 8, "blockState": "minecraft:wool;color=silver" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -5356,10 +5380,10 @@ "type": 1, "input": { "A": { - "damage": 9, "blockState": "minecraft:wool;color=cyan" }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -11933,7 +11957,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:planks;wood_type=birch" } }, @@ -11960,8 +11983,7 @@ "type": 1, "input": { "A": { - "damage": 6, - "blockState": "minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab;stone_slab_type=quartz;top_slot_bit=0" } }, "output": [ @@ -11981,8 +12003,7 @@ "type": 1, "input": { "A": { - "damage": 5, - "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab;stone_slab_type=stone_brick;top_slot_bit=0" } }, "output": [ @@ -12006,7 +12027,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:planks;wood_type=dark_oak" } }, @@ -12033,7 +12053,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab2" } }, "output": [ @@ -12053,8 +12073,7 @@ "type": 1, "input": { "A": { - "damage": 1, - "blockState": "minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab;stone_slab_type=sandstone;top_slot_bit=0" } }, "output": [ @@ -12074,7 +12093,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:planks;wood_type=jungle" } }, @@ -12097,8 +12115,7 @@ "type": 1, "input": { "A": { - "damage": 1, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0" } }, "output": [ @@ -12122,7 +12139,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -12142,7 +12160,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:planks;wood_type=acacia" }, "B": { @@ -12168,7 +12185,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:planks;wood_type=acacia" } }, @@ -12191,7 +12207,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:planks;wood_type=acacia" }, "B": { @@ -12221,7 +12236,6 @@ "fuzzy": true }, "B": { - "damage": 4, "blockState": "minecraft:planks;wood_type=acacia" } }, @@ -12242,7 +12256,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + "blockState": "minecraft:log2" } }, "output": [ @@ -12262,7 +12276,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_acacia_log" } }, "output": [ @@ -12282,7 +12297,6 @@ "type": 1, "input": { "A": { - "damage": 12, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=acacia" } }, @@ -12303,7 +12317,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=acacia" } }, @@ -12324,7 +12337,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:planks;wood_type=acacia" } }, @@ -12347,7 +12359,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + "blockState": "minecraft:log2" } }, "output": [ @@ -12368,7 +12380,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_acacia_log" } }, "output": [ @@ -12389,7 +12402,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:planks;wood_type=acacia" } }, @@ -12418,7 +12430,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:redstone_torch;torch_facing_direction=unknown" + "fuzzy": true, + "blockState": "minecraft:redstone_torch" } }, "output": [ @@ -12462,10 +12475,10 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:stone;stone_type=diorite" }, { + "fuzzy": true, "blockState": "minecraft:cobblestone" } ], @@ -12483,7 +12496,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:stone;stone_type=andesite" } }, @@ -12506,7 +12518,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:stone;stone_type=andesite" } }, @@ -12528,6 +12539,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:iron_block" }, "B": { @@ -12557,7 +12569,7 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab" } }, "output": [ @@ -12613,6 +12625,7 @@ "fuzzy": true }, { + "fuzzy": true, "blockState": "minecraft:brick_block" } ], @@ -12655,7 +12668,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:red_flower;flower_type=oxeye" } ], @@ -12721,7 +12733,8 @@ "fuzzy": true }, { - "blockState": "minecraft:vine;vine_direction_bits=0" + "fuzzy": true, + "blockState": "minecraft:vine" } ], "output": [ @@ -12742,7 +12755,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:wooden_slab" } }, "output": [ @@ -12767,7 +12781,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:crimson_slab;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:crimson_slab" } }, "output": [ @@ -12792,7 +12807,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:warped_slab;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:warped_slab" } }, "output": [ @@ -12835,6 +12851,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -12842,6 +12859,7 @@ "fuzzy": true }, "C": { + "fuzzy": true, "blockState": "minecraft:obsidian" } }, @@ -12863,7 +12881,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:honeycomb", @@ -12888,6 +12907,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { @@ -12913,6 +12933,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { @@ -12979,7 +13000,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:planks;wood_type=birch" }, "B": { @@ -13005,7 +13025,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:planks;wood_type=birch" } }, @@ -13028,7 +13047,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:planks;wood_type=birch" }, "B": { @@ -13058,7 +13076,6 @@ "fuzzy": true }, "B": { - "damage": 2, "blockState": "minecraft:planks;wood_type=birch" } }, @@ -13079,7 +13096,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:log;old_log_type=birch;pillar_axis=y" } }, @@ -13100,7 +13116,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_birch_log" } }, "output": [ @@ -13120,7 +13137,6 @@ "type": 1, "input": { "A": { - "damage": 10, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=birch" } }, @@ -13141,7 +13157,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=birch" } }, @@ -13162,7 +13177,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:planks;wood_type=birch" } }, @@ -13185,7 +13199,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:log;old_log_type=birch;pillar_axis=y" } }, @@ -13207,7 +13220,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_birch_log" } }, "output": [ @@ -13228,7 +13242,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:planks;wood_type=birch" } }, @@ -13249,7 +13262,6 @@ "type": 1, "input": { "A": { - "damage": 15, "blockState": "minecraft:wool;color=black" }, "B": { @@ -13275,7 +13287,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:black_dye", @@ -13295,7 +13308,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:ink_sac" @@ -13314,7 +13328,6 @@ "type": 1, "input": { "A": { - "damage": 15, "blockState": "minecraft:wool;color=black" } }, @@ -13335,7 +13348,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:black_dye", @@ -13365,27 +13378,31 @@ "damage": 16 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -13406,27 +13423,31 @@ "id": "minecraft:ink_sac" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -13461,6 +13482,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:wither_rose" } ], @@ -13478,6 +13500,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -13504,6 +13527,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -13529,7 +13553,6 @@ "type": 1, "input": { "A": { - "damage": 15, "blockState": "minecraft:stained_glass;color=black" } }, @@ -13551,6 +13574,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -13577,6 +13601,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -13603,6 +13628,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -13628,6 +13654,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:blackstone" } }, @@ -13648,6 +13675,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:blackstone" } }, @@ -13670,6 +13698,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:blackstone" } }, @@ -13695,9 +13724,11 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" }, "C": { + "fuzzy": true, "blockState": "minecraft:smooth_stone" } }, @@ -13737,7 +13768,6 @@ "type": 1, "input": { "A": { - "damage": 11, "blockState": "minecraft:wool;color=blue" }, "B": { @@ -13764,7 +13794,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:blue_dye", @@ -13784,7 +13815,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:lapis_lazuli", @@ -13804,7 +13836,6 @@ "type": 1, "input": { "A": { - "damage": 11, "blockState": "minecraft:wool;color=blue" } }, @@ -13825,7 +13856,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:blue_dye", @@ -13855,27 +13886,31 @@ "damage": 18 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -13897,27 +13932,31 @@ "damage": 4 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -13935,7 +13974,6 @@ "type": 0, "input": [ { - "damage": 9, "blockState": "minecraft:red_flower;flower_type=cornflower" } ], @@ -13971,6 +14009,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:packed_ice" } }, @@ -13992,6 +14031,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -14018,6 +14058,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -14044,7 +14085,6 @@ "type": 1, "input": { "A": { - "damage": 11, "blockState": "minecraft:stained_glass;color=blue" } }, @@ -14066,6 +14106,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -14092,6 +14133,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -14118,6 +14160,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -14144,7 +14187,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:wooden_shovel", @@ -14190,7 +14233,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:bone_block;deprecated=0;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:bone_block" } ], "output": [ @@ -14252,6 +14296,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { @@ -14277,6 +14322,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { @@ -14328,6 +14374,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -14349,6 +14396,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -14394,6 +14442,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:cobblestone" } }, @@ -14418,6 +14467,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:blackstone" } }, @@ -14442,7 +14492,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate" } }, "output": [ @@ -14483,6 +14534,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:brick_block" } }, @@ -14505,6 +14557,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:brick_block" } }, @@ -14526,7 +14579,6 @@ "type": 1, "input": { "A": { - "damage": 12, "blockState": "minecraft:wool;color=brown" }, "B": { @@ -14553,7 +14605,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:brown_dye", @@ -14573,7 +14626,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:cocoa_beans", @@ -14593,7 +14647,6 @@ "type": 1, "input": { "A": { - "damage": 12, "blockState": "minecraft:wool;color=brown" } }, @@ -14614,7 +14667,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:brown_dye", @@ -14644,27 +14697,31 @@ "damage": 17 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -14686,27 +14743,31 @@ "damage": 3 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -14742,6 +14803,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -14768,6 +14830,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -14794,7 +14857,6 @@ "type": 1, "input": { "A": { - "damage": 12, "blockState": "minecraft:stained_glass;color=brown" } }, @@ -14816,6 +14878,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -14842,6 +14905,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -14868,6 +14932,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -14960,7 +15025,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:log" } }, "output": [ @@ -14989,7 +15055,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:log" } }, "output": [ @@ -15018,7 +15085,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:log2" } }, "output": [ @@ -15047,7 +15115,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_acacia_log" } }, "output": [ @@ -15076,7 +15145,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_birch_log" } }, "output": [ @@ -15105,7 +15175,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_dark_oak_log" } }, "output": [ @@ -15134,7 +15205,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_jungle_log" } }, "output": [ @@ -15163,7 +15235,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_oak_log" } }, "output": [ @@ -15192,7 +15265,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_spruce_log" } }, "output": [ @@ -15221,7 +15295,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:wood" } }, "output": [ @@ -15249,7 +15324,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:crimson_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:crimson_stem" } }, "output": [ @@ -15277,7 +15353,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:log2" } }, "output": [ @@ -15305,7 +15382,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_acacia_log" } }, "output": [ @@ -15333,7 +15411,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_birch_log" } }, "output": [ @@ -15361,7 +15440,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_crimson_stem" } }, "output": [ @@ -15389,7 +15469,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_dark_oak_log" } }, "output": [ @@ -15417,7 +15498,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_jungle_log" } }, "output": [ @@ -15445,7 +15527,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_oak_log" } }, "output": [ @@ -15473,7 +15556,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_spruce_log" } }, "output": [ @@ -15501,7 +15585,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_warped_stem" } }, "output": [ @@ -15529,7 +15614,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:warped_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:warped_stem" } }, "output": [ @@ -15557,7 +15643,8 @@ "id": "minecraft:coal" }, "C": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:wood" } }, "output": [ @@ -15632,7 +15719,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -15657,6 +15745,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -15682,6 +15771,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -15751,6 +15841,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -15772,6 +15863,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -15793,7 +15885,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:chest;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:chest" }, "B": { "id": "minecraft:minecart", @@ -15817,7 +15910,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate_slab" } }, "output": [ @@ -15837,8 +15931,7 @@ "type": 1, "input": { "A": { - "damage": 7, - "blockState": "minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab;stone_slab_type=nether_brick;top_slot_bit=0" } }, "output": [ @@ -15858,7 +15951,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:polished_blackstone_slab;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:polished_blackstone_slab" } }, "output": [ @@ -15925,6 +16019,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:coal_block" } }, @@ -15966,9 +16061,10 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:dirt;dirt_type=normal" + "blockState": "minecraft:dirt" }, "B": { + "fuzzy": true, "blockState": "minecraft:gravel" } }, @@ -15990,7 +16086,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate" } }, "output": [ @@ -16010,7 +16107,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate" } }, "output": [ @@ -16032,7 +16130,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate" } }, "output": [ @@ -16053,6 +16152,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:cobblestone" } }, @@ -16075,6 +16175,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:cobblestone" } }, @@ -16096,6 +16197,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:web" } ], @@ -16113,14 +16215,15 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:redstone_torch;torch_facing_direction=unknown" + "fuzzy": true, + "blockState": "minecraft:redstone_torch" }, "B": { "id": "minecraft:quartz", "fuzzy": true }, "C": { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } }, "output": [ @@ -16167,7 +16270,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:wooden_slab" } }, "output": [ @@ -16188,7 +16292,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:crimson_slab;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:crimson_slab" } }, "output": [ @@ -16209,7 +16314,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:warped_slab;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:warped_slab" } }, "output": [ @@ -16304,7 +16410,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:copper_block" } }, "output": [ @@ -16325,7 +16432,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cut_copper" } }, "output": [ @@ -16345,7 +16453,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cut_copper" } }, "output": [ @@ -16367,7 +16476,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:exposed_copper" } }, "output": [ @@ -16388,7 +16498,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:exposed_cut_copper" } }, "output": [ @@ -16408,7 +16519,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:exposed_cut_copper" } }, "output": [ @@ -16430,6 +16542,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -16450,6 +16563,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -16470,7 +16584,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:oxidized_copper" } }, "output": [ @@ -16491,7 +16606,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:oxidized_cut_copper" } }, "output": [ @@ -16511,7 +16627,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:oxidized_cut_copper" } }, "output": [ @@ -16533,7 +16650,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_copper" } }, "output": [ @@ -16554,7 +16672,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_cut_copper" } }, "output": [ @@ -16574,7 +16693,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_cut_copper" } }, "output": [ @@ -16596,7 +16716,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_exposed_copper" } }, "output": [ @@ -16617,7 +16738,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_exposed_cut_copper" } }, "output": [ @@ -16637,7 +16759,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_exposed_cut_copper" } }, "output": [ @@ -16659,7 +16782,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_oxidized_copper" } }, "output": [ @@ -16680,7 +16804,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_oxidized_cut_copper" } }, "output": [ @@ -16700,7 +16825,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_oxidized_cut_copper" } }, "output": [ @@ -16722,7 +16848,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_weathered_copper" } }, "output": [ @@ -16743,7 +16870,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_weathered_cut_copper" } }, "output": [ @@ -16763,7 +16891,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_weathered_cut_copper" } }, "output": [ @@ -16785,7 +16914,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:weathered_copper" } }, "output": [ @@ -16806,7 +16936,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:weathered_cut_copper" } }, "output": [ @@ -16826,7 +16957,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:weathered_cut_copper" } }, "output": [ @@ -16848,6 +16980,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -16867,6 +17000,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -16889,6 +17023,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { @@ -16918,6 +17053,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -16938,7 +17074,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:crimson_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:crimson_stem" } }, "output": [ @@ -16959,7 +17096,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:crimson_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:crimson_stem" } }, "output": [ @@ -16979,7 +17117,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:crimson_hyphae;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:crimson_hyphae" } }, "output": [ @@ -16999,7 +17138,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_crimson_hyphae;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_crimson_hyphae" } }, "output": [ @@ -17019,7 +17159,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_crimson_stem" } }, "output": [ @@ -17039,6 +17180,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -17058,6 +17200,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { @@ -17084,6 +17227,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -17104,6 +17248,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -17126,6 +17271,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -17159,7 +17305,8 @@ "fuzzy": true }, "D": { - "blockState": "minecraft:tripwire_hook;attached_bit=0;direction=0;powered_bit=0" + "fuzzy": true, + "blockState": "minecraft:tripwire_hook" } }, "output": [ @@ -17180,7 +17327,6 @@ "type": 1, "input": { "A": { - "damage": 9, "blockState": "minecraft:wool;color=cyan" }, "B": { @@ -17207,7 +17353,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:cyan_dye", @@ -17227,7 +17374,6 @@ "type": 1, "input": { "A": { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } }, @@ -17248,7 +17394,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:cyan_dye", @@ -17278,27 +17424,31 @@ "damage": 6 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -17362,6 +17512,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -17388,7 +17539,6 @@ "type": 1, "input": { "A": { - "damage": 9, "blockState": "minecraft:stained_glass;color=cyan" } }, @@ -17410,6 +17560,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -17436,6 +17587,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -17462,7 +17614,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:planks;wood_type=dark_oak" }, "B": { @@ -17488,7 +17639,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:planks;wood_type=dark_oak" } }, @@ -17511,7 +17661,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:planks;wood_type=dark_oak" }, "B": { @@ -17541,7 +17690,6 @@ "fuzzy": true }, "B": { - "damage": 5, "blockState": "minecraft:planks;wood_type=dark_oak" } }, @@ -17562,7 +17710,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:log2;new_log_type=dark_oak;pillar_axis=y" } }, @@ -17583,7 +17730,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_dark_oak_log" } }, "output": [ @@ -17603,7 +17751,6 @@ "type": 1, "input": { "A": { - "damage": 13, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=dark_oak" } }, @@ -17624,7 +17771,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=dark_oak" } }, @@ -17645,7 +17791,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:planks;wood_type=dark_oak" } }, @@ -17668,7 +17813,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:log2;new_log_type=dark_oak;pillar_axis=y" } }, @@ -17690,7 +17834,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_dark_oak_log" } }, "output": [ @@ -17711,7 +17856,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:planks;wood_type=dark_oak" } }, @@ -17783,6 +17927,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -17790,7 +17935,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:crimson_slab;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:crimson_slab" } }, "output": [ @@ -17811,6 +17957,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -17818,7 +17965,8 @@ "fuzzy": true }, "C": { - "blockState": "minecraft:warped_slab;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:warped_slab" } }, "output": [ @@ -17839,7 +17987,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_bricks" } }, "output": [ @@ -17859,7 +18008,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_bricks" } }, "output": [ @@ -17881,7 +18031,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_bricks" } }, "output": [ @@ -17902,7 +18053,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:polished_deepslate" } }, "output": [ @@ -17923,7 +18075,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_tiles" } }, "output": [ @@ -17943,7 +18096,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_tiles" } }, "output": [ @@ -17965,7 +18119,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_tiles" } }, "output": [ @@ -17986,7 +18141,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_bricks" } }, "output": [ @@ -18011,7 +18167,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:stone_pressure_plate;redstone_signal=0" + "fuzzy": true, + "blockState": "minecraft:stone_pressure_plate" }, "C": { "id": "minecraft:redstone", @@ -18037,6 +18194,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:diamond_block" } }, @@ -18295,6 +18453,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, "B": { @@ -18320,7 +18479,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:stone;stone_type=diorite" } }, @@ -18343,7 +18501,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:stone;stone_type=diorite" } }, @@ -18365,6 +18522,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, "B": { @@ -18394,6 +18552,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:dried_kelp_block" } }, @@ -18436,7 +18595,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:pointed_dripstone" } }, "output": [ @@ -18456,7 +18616,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:pointed_dripstone" } }, "output": [ @@ -18476,6 +18637,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, "B": { @@ -18501,6 +18663,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:emerald_block" } }, @@ -18572,6 +18735,7 @@ "fuzzy": true }, "C": { + "fuzzy": true, "blockState": "minecraft:obsidian" } }, @@ -18593,6 +18757,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:end_bricks" } }, @@ -18615,6 +18780,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:end_bricks" } }, @@ -18636,6 +18802,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:end_stone" } }, @@ -18657,6 +18824,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -18712,6 +18880,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:obsidian" }, "B": { @@ -18758,7 +18927,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:stick", @@ -18787,7 +18956,7 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" } }, "output": [ @@ -18811,6 +18980,7 @@ "fuzzy": true }, { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { @@ -18861,7 +19031,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -18886,6 +19057,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -18911,6 +19083,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -18974,6 +19147,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:cobblestone" } }, @@ -18995,6 +19169,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:blackstone" } }, @@ -19016,7 +19191,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate" } }, "output": [ @@ -19037,6 +19213,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" } }, @@ -19058,6 +19235,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" } }, @@ -19145,6 +19323,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:gold_block" } }, @@ -19507,7 +19686,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:stone;stone_type=diorite" }, { @@ -19528,7 +19706,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:stone;stone_type=granite" } }, @@ -19551,7 +19728,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:stone;stone_type=granite" } }, @@ -19573,7 +19749,6 @@ "type": 1, "input": { "A": { - "damage": 7, "blockState": "minecraft:wool;color=gray" }, "B": { @@ -19600,7 +19775,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:gray_dye", @@ -19620,7 +19796,6 @@ "type": 1, "input": { "A": { - "damage": 7, "blockState": "minecraft:wool;color=gray" } }, @@ -19641,7 +19816,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:gray_dye", @@ -19671,27 +19846,31 @@ "damage": 8 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -19799,6 +19978,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -19825,7 +20005,6 @@ "type": 1, "input": { "A": { - "damage": 7, "blockState": "minecraft:stained_glass;color=gray" } }, @@ -19847,6 +20026,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -19873,6 +20053,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -19899,7 +20080,6 @@ "type": 1, "input": { "A": { - "damage": 13, "blockState": "minecraft:wool;color=green" }, "B": { @@ -19926,7 +20106,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:green_dye", @@ -19946,7 +20127,6 @@ "type": 1, "input": { "A": { - "damage": 13, "blockState": "minecraft:wool;color=green" } }, @@ -19967,7 +20147,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:green_dye", @@ -19997,27 +20177,31 @@ "damage": 2 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -20035,6 +20219,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -20061,7 +20246,6 @@ "type": 1, "input": { "A": { - "damage": 13, "blockState": "minecraft:stained_glass;color=green" } }, @@ -20083,6 +20267,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -20109,6 +20294,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -20139,11 +20325,11 @@ "fuzzy": true }, "B": { - "damage": 2, - "blockState": "minecraft:stone_slab4;stone_slab_type_4=stone;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab4;stone_slab_type_4=stone;top_slot_bit=0" }, "C": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -20167,9 +20353,11 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:double_stone_slab" }, "C": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -20194,9 +20382,11 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:double_stone_slab2" }, "C": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -20221,9 +20411,11 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:double_stone_slab3" }, "C": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -20248,9 +20440,11 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:stone_slab4;stone_slab_type_4=mossy_stone_brick;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:double_stone_slab4" }, "C": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -20275,9 +20469,11 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:double_stone_slab" }, "C": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -20302,9 +20498,11 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:double_stone_slab2" }, "C": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -20329,9 +20527,11 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:double_stone_slab3" }, "C": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -20356,9 +20556,11 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:stone_slab4;stone_slab_type_4=mossy_stone_brick;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:double_stone_slab4" }, "C": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -20446,6 +20648,7 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:honey_block" }, { @@ -20528,7 +20731,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:chest;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:chest" } }, "output": [ @@ -20574,7 +20778,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:copper_block" } }, "output": [ @@ -20595,7 +20800,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:waxed_copper" } }, "output": [ @@ -20799,6 +21005,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:iron_block" } }, @@ -21009,6 +21216,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { @@ -21034,6 +21242,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { @@ -21059,7 +21268,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:planks;wood_type=jungle" }, "B": { @@ -21085,7 +21293,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:planks;wood_type=jungle" } }, @@ -21108,7 +21315,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:planks;wood_type=jungle" }, "B": { @@ -21138,7 +21344,6 @@ "fuzzy": true }, "B": { - "damage": 3, "blockState": "minecraft:planks;wood_type=jungle" } }, @@ -21159,7 +21364,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:log;old_log_type=jungle;pillar_axis=y" } }, @@ -21180,7 +21384,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_jungle_log" } }, "output": [ @@ -21200,7 +21405,6 @@ "type": 1, "input": { "A": { - "damage": 11, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=jungle" } }, @@ -21221,7 +21425,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=jungle" } }, @@ -21242,7 +21445,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:planks;wood_type=jungle" } }, @@ -21265,7 +21467,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:log;old_log_type=jungle;pillar_axis=y" } }, @@ -21287,7 +21488,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_jungle_log" } }, "output": [ @@ -21308,7 +21510,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:planks;wood_type=jungle" } }, @@ -21356,7 +21557,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:torch;torch_facing_direction=unknown" + "fuzzy": true, + "blockState": "minecraft:torch" } }, "output": [ @@ -21399,6 +21601,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:lapis_block" } }, @@ -21576,9 +21779,11 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:wooden_slab" }, "B": { + "fuzzy": true, "blockState": "minecraft:bookshelf" } }, @@ -21600,9 +21805,11 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:crimson_slab;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:crimson_slab" }, "B": { + "fuzzy": true, "blockState": "minecraft:bookshelf" } }, @@ -21624,9 +21831,11 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:warped_slab;top_slot_bit=0" + "fuzzy": true, + "blockState": "minecraft:warped_slab" }, "B": { + "fuzzy": true, "blockState": "minecraft:bookshelf" } }, @@ -21652,6 +21861,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:cobblestone" } }, @@ -21672,7 +21882,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" }, "B": { @@ -21699,7 +21908,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:light_blue_dye", @@ -21719,7 +21929,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } }, @@ -21740,7 +21949,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:light_blue_dye", @@ -21770,27 +21979,31 @@ "damage": 12 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -21854,7 +22067,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:red_flower;flower_type=orchid" } ], @@ -21918,6 +22130,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -21944,7 +22157,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:stained_glass;color=light_blue" } }, @@ -21966,6 +22178,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -21992,6 +22205,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -22018,7 +22232,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:light_gray_dye", @@ -22044,7 +22258,6 @@ "type": 1, "input": { "A": { - "damage": 8, "blockState": "minecraft:wool;color=silver" }, "B": { @@ -22071,7 +22284,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:light_gray_dye", @@ -22091,7 +22305,6 @@ "type": 1, "input": { "A": { - "damage": 8, "blockState": "minecraft:wool;color=silver" } }, @@ -22116,27 +22329,31 @@ "damage": 7 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -22181,7 +22398,6 @@ "type": 0, "input": [ { - "damage": 3, "blockState": "minecraft:red_flower;flower_type=houstonia" } ], @@ -22324,7 +22540,6 @@ "type": 0, "input": [ { - "damage": 8, "blockState": "minecraft:red_flower;flower_type=oxeye" } ], @@ -22342,7 +22557,6 @@ "type": 0, "input": [ { - "damage": 6, "blockState": "minecraft:red_flower;flower_type=tulip_white" } ], @@ -22360,6 +22574,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -22386,7 +22601,6 @@ "type": 1, "input": { "A": { - "damage": 8, "blockState": "minecraft:stained_glass;color=silver" } }, @@ -22408,6 +22622,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -22434,6 +22649,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -22503,7 +22719,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:lime_dye", @@ -22529,7 +22745,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:wool;color=lime" }, "B": { @@ -22556,7 +22771,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:lime_dye", @@ -22576,7 +22792,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:wool;color=lime" } }, @@ -22601,27 +22816,31 @@ "damage": 10 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -22685,6 +22904,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -22711,7 +22931,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:stained_glass;color=lime" } }, @@ -22733,6 +22952,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -22759,6 +22979,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -22785,10 +23006,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carved_pumpkin;direction=0" + "fuzzy": true, + "blockState": "minecraft:carved_pumpkin" }, "B": { - "blockState": "minecraft:torch;torch_facing_direction=unknown" + "fuzzy": true, + "blockState": "minecraft:torch" } }, "output": [ @@ -22835,7 +23058,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:stonebrick;stone_brick_type=chiseled" }, "B": { @@ -22865,6 +23087,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -22889,6 +23112,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -22909,7 +23133,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:wool;color=magenta" }, "B": { @@ -22936,7 +23159,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:magenta_dye", @@ -22956,7 +23180,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } }, @@ -22977,7 +23200,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:magenta_dye", @@ -23007,27 +23230,31 @@ "damage": 13 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -23072,7 +23299,6 @@ "type": 0, "input": [ { - "damage": 2, "blockState": "minecraft:red_flower;flower_type=allium" } ], @@ -23241,7 +23467,6 @@ "type": 0, "input": [ { - "damage": 1, "blockState": "minecraft:double_plant;double_plant_type=syringa;upper_block_bit=0" } ], @@ -23283,6 +23508,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -23309,7 +23535,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:stained_glass;color=magenta" } }, @@ -23331,6 +23556,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -23357,6 +23583,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -23510,7 +23737,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:moss_block" } }, "output": [ @@ -23530,10 +23758,12 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, { - "blockState": "minecraft:vine;vine_direction_bits=0" + "fuzzy": true, + "blockState": "minecraft:vine" } ], "output": [ @@ -23549,10 +23779,12 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:moss_block" } ], "output": [ @@ -23568,6 +23800,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:mossy_cobblestone" } }, @@ -23590,6 +23823,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:mossy_cobblestone" } }, @@ -23611,7 +23845,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:stonebrick;stone_brick_type=mossy" } }, @@ -23634,7 +23867,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:stonebrick;stone_brick_type=mossy" } }, @@ -23656,10 +23888,11 @@ "type": 0, "input": [ { - "blockState": "minecraft:stonebrick;stone_brick_type=default" + "blockState": "minecraft:stonebrick" }, { - "blockState": "minecraft:vine;vine_direction_bits=0" + "fuzzy": true, + "blockState": "minecraft:vine" } ], "output": [ @@ -23675,10 +23908,11 @@ "type": 0, "input": [ { - "blockState": "minecraft:stonebrick;stone_brick_type=default" + "blockState": "minecraft:stonebrick" }, { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:moss_block" } ], "output": [ @@ -23694,9 +23928,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -23738,6 +23974,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:nether_brick" }, "B": { @@ -23763,6 +24000,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:nether_brick" } }, @@ -23785,6 +24023,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:nether_brick" } }, @@ -23895,6 +24134,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:netherite_block" } }, @@ -23915,6 +24155,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { @@ -23940,6 +24181,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { @@ -23965,7 +24207,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + "blockState": "minecraft:log" } }, "output": [ @@ -23985,7 +24227,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_oak_log" } }, "output": [ @@ -24005,7 +24248,6 @@ "type": 1, "input": { "A": { - "damage": 8, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=oak" } }, @@ -24026,7 +24268,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + "blockState": "minecraft:wood" } }, "output": [ @@ -24046,7 +24288,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" } }, "output": [ @@ -24068,7 +24310,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + "blockState": "minecraft:log" } }, "output": [ @@ -24089,7 +24331,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_oak_log" } }, "output": [ @@ -24110,7 +24353,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" } }, "output": [ @@ -24130,6 +24373,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, "B": { @@ -24159,7 +24403,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:wool;color=orange" }, "B": { @@ -24186,7 +24429,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:orange_dye", @@ -24206,7 +24450,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:wool;color=orange" } }, @@ -24227,7 +24470,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:orange_dye", @@ -24257,27 +24500,31 @@ "damage": 14 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -24295,7 +24542,6 @@ "type": 0, "input": [ { - "damage": 5, "blockState": "minecraft:red_flower;flower_type=tulip_orange" } ], @@ -24336,6 +24582,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -24362,7 +24609,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:stained_glass;color=orange" } }, @@ -24384,6 +24630,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -24410,6 +24657,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -24436,6 +24684,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:ice" } }, @@ -24478,7 +24727,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:quartz_block" } }, "output": [ @@ -24499,7 +24748,6 @@ "type": 1, "input": { "A": { - "damage": 6, "blockState": "minecraft:wool;color=pink" }, "B": { @@ -24526,7 +24774,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:pink_dye", @@ -24546,7 +24795,6 @@ "type": 1, "input": { "A": { - "damage": 6, "blockState": "minecraft:wool;color=pink" } }, @@ -24567,7 +24815,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:pink_dye", @@ -24597,27 +24845,31 @@ "damage": 9 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -24658,7 +24910,6 @@ "type": 0, "input": [ { - "damage": 5, "blockState": "minecraft:double_plant;double_plant_type=paeonia;upper_block_bit=0" } ], @@ -24677,7 +24928,6 @@ "type": 0, "input": [ { - "damage": 7, "blockState": "minecraft:red_flower;flower_type=tulip_pink" } ], @@ -24718,6 +24968,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -24744,7 +24995,6 @@ "type": 1, "input": { "A": { - "damage": 6, "blockState": "minecraft:stained_glass;color=pink" } }, @@ -24766,6 +25016,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -24792,6 +25043,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -24818,9 +25070,11 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, "C": { @@ -24850,9 +25104,11 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, "C": { @@ -24882,7 +25138,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:stone;stone_type=andesite" } }, @@ -24904,7 +25159,6 @@ "type": 1, "input": { "A": { - "damage": 6, "blockState": "minecraft:stone;stone_type=andesite_smooth" } }, @@ -24927,7 +25181,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:basalt;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:basalt" } }, "output": [ @@ -24948,6 +25203,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:blackstone" } }, @@ -24969,6 +25225,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:polished_blackstone_bricks" } }, @@ -24989,6 +25246,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:polished_blackstone_bricks" } }, @@ -25011,6 +25269,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:polished_blackstone_bricks" } }, @@ -25032,6 +25291,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } }, @@ -25053,6 +25313,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } }, @@ -25072,6 +25333,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } }, @@ -25091,6 +25353,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } }, @@ -25111,6 +25374,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } }, @@ -25133,6 +25397,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:polished_blackstone" } }, @@ -25154,7 +25419,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate" } }, "output": [ @@ -25175,7 +25441,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:polished_deepslate" } }, "output": [ @@ -25195,7 +25462,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:polished_deepslate" } }, "output": [ @@ -25217,7 +25485,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:polished_deepslate" } }, "output": [ @@ -25238,7 +25507,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:stone;stone_type=diorite" } }, @@ -25260,7 +25528,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:stone;stone_type=diorite_smooth" } }, @@ -25283,7 +25550,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:stone;stone_type=granite" } }, @@ -25305,7 +25571,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:stone;stone_type=granite_smooth" } }, @@ -25371,7 +25636,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:prismarine;prismarine_block_type=default" + "blockState": "minecraft:prismarine" } }, "output": [ @@ -25393,7 +25658,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:prismarine;prismarine_block_type=bricks" } }, @@ -25416,7 +25680,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:prismarine;prismarine_block_type=dark" } }, @@ -25439,7 +25702,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:prismarine;prismarine_block_type=default" + "blockState": "minecraft:prismarine" } }, "output": [ @@ -25460,7 +25723,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:pumpkin;direction=0" + "fuzzy": true, + "blockState": "minecraft:pumpkin" }, { "id": "minecraft:sugar", @@ -25484,7 +25748,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:pumpkin;direction=0" + "fuzzy": true, + "blockState": "minecraft:pumpkin" } }, "output": [ @@ -25504,7 +25769,6 @@ "type": 1, "input": { "A": { - "damage": 10, "blockState": "minecraft:wool;color=purple" }, "B": { @@ -25531,7 +25795,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:purple_dye", @@ -25551,7 +25816,6 @@ "type": 1, "input": { "A": { - "damage": 10, "blockState": "minecraft:wool;color=purple" } }, @@ -25572,7 +25836,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:purple_dye", @@ -25602,27 +25866,31 @@ "damage": 5 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -25686,6 +25954,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -25712,7 +25981,6 @@ "type": 1, "input": { "A": { - "damage": 10, "blockState": "minecraft:stained_glass;color=purple" } }, @@ -25734,6 +26002,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -25760,6 +26029,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -25808,7 +26078,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:purpur_block" } }, "output": [ @@ -25851,7 +26122,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:quartz_block" } }, "output": [ @@ -25871,7 +26142,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:quartz_block" } }, "output": [ @@ -25905,6 +26176,7 @@ "fuzzy": true }, { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { @@ -25937,6 +26209,7 @@ "fuzzy": true }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -25984,7 +26257,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:raw_copper_block" } }, "output": [ @@ -26028,7 +26302,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:raw_gold_block" } }, "output": [ @@ -26072,7 +26347,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:raw_iron_block" } }, "output": [ @@ -26116,7 +26392,6 @@ "type": 1, "input": { "A": { - "damage": 14, "blockState": "minecraft:wool;color=red" }, "B": { @@ -26143,7 +26418,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:red_dye", @@ -26163,7 +26439,6 @@ "type": 1, "input": { "A": { - "damage": 14, "blockState": "minecraft:wool;color=red" } }, @@ -26184,7 +26459,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:red_dye", @@ -26214,27 +26489,31 @@ "damage": 1 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -26270,7 +26549,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:red_flower;flower_type=poppy" + "blockState": "minecraft:red_flower" } ], "output": [ @@ -26287,7 +26566,6 @@ "type": 0, "input": [ { - "damage": 4, "blockState": "minecraft:double_plant;double_plant_type=rose;upper_block_bit=0" } ], @@ -26306,7 +26584,6 @@ "type": 0, "input": [ { - "damage": 4, "blockState": "minecraft:red_flower;flower_type=tulip_red" } ], @@ -26349,6 +26626,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:red_nether_brick" } }, @@ -26371,6 +26649,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:red_nether_brick" } }, @@ -26392,7 +26671,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:sand;sand_type=red" } }, @@ -26413,7 +26691,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:red_sandstone;sand_stone_type=default" + "blockState": "minecraft:red_sandstone" } }, "output": [ @@ -26435,7 +26713,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:red_sandstone;sand_stone_type=default" + "blockState": "minecraft:red_sandstone" } }, "output": [ @@ -26456,6 +26734,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -26482,7 +26761,6 @@ "type": 1, "input": { "A": { - "damage": 14, "blockState": "minecraft:stained_glass;color=red" } }, @@ -26504,6 +26782,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -26530,6 +26809,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -26556,6 +26836,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:redstone_block" } }, @@ -26602,6 +26883,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:glowstone" } }, @@ -26648,14 +26930,15 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:redstone_torch;torch_facing_direction=unknown" + "fuzzy": true, + "blockState": "minecraft:redstone_torch" }, "B": { "id": "minecraft:redstone", "fuzzy": true }, "C": { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } }, "output": [ @@ -26675,9 +26958,11 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crying_obsidian" }, "B": { + "fuzzy": true, "blockState": "minecraft:glowstone" } }, @@ -26699,7 +26984,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" } }, "output": [ @@ -26719,7 +27004,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:sandstone;sand_stone_type=default" + "blockState": "minecraft:sandstone" } }, "output": [ @@ -26741,7 +27026,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:sandstone;sand_stone_type=default" + "blockState": "minecraft:sandstone" } }, "output": [ @@ -26762,7 +27047,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:bamboo;age_bit=0;bamboo_leaf_size=no_leaves;bamboo_stalk_thickness=thin" + "fuzzy": true, + "blockState": "minecraft:bamboo" }, "B": { "id": "minecraft:string", @@ -26835,7 +27121,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:iron_ingot", @@ -26860,6 +27147,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { @@ -26885,6 +27173,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { @@ -26914,7 +27203,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:chest;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:chest" } }, "output": [ @@ -26935,7 +27225,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:planks;wood_type=acacia" }, "B": { @@ -26962,7 +27251,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:planks;wood_type=birch" }, "B": { @@ -26989,7 +27277,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:planks;wood_type=dark_oak" }, "B": { @@ -27016,7 +27303,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:planks;wood_type=jungle" }, "B": { @@ -27043,7 +27329,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:stick", @@ -27069,7 +27355,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:planks;wood_type=spruce" }, "B": { @@ -27118,6 +27403,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:slime" } }, @@ -27142,7 +27428,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -27167,6 +27454,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -27192,6 +27480,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -27213,10 +27502,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:log" }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" } }, "output": [ @@ -27237,10 +27528,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:crimson_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:crimson_stem" }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" } }, "output": [ @@ -27261,10 +27554,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:log2" }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" } }, "output": [ @@ -27285,10 +27580,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_acacia_log" }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" } }, "output": [ @@ -27309,10 +27606,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_birch_log" }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" } }, "output": [ @@ -27333,10 +27632,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_crimson_stem" }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" } }, "output": [ @@ -27357,10 +27658,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_dark_oak_log" }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" } }, "output": [ @@ -27381,10 +27684,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_jungle_log" }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" } }, "output": [ @@ -27405,10 +27710,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_oak_log" }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" } }, "output": [ @@ -27429,10 +27736,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_spruce_log" }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" } }, "output": [ @@ -27453,10 +27762,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_warped_stem" }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" } }, "output": [ @@ -27477,10 +27788,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:warped_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:warped_stem" }, "B": { - "blockState": "minecraft:furnace;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:furnace" } }, "output": [ @@ -27501,7 +27814,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" } }, @@ -27524,7 +27836,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:red_sandstone;sand_stone_type=default" + "blockState": "minecraft:red_sandstone" } }, "output": [ @@ -27545,7 +27857,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:red_sandstone;sand_stone_type=smooth" } }, @@ -27568,7 +27879,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:sandstone;sand_stone_type=default" + "blockState": "minecraft:sandstone" } }, "output": [ @@ -27589,7 +27900,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:sandstone;sand_stone_type=smooth" } }, @@ -27633,6 +27943,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:snow" } }, @@ -27657,10 +27968,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:crimson_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:crimson_stem" } }, "output": [ @@ -27685,10 +27998,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:crimson_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:crimson_stem" } }, "output": [ @@ -27713,10 +28028,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:log" } }, "output": [ @@ -27741,10 +28058,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:log2" } }, "output": [ @@ -27769,10 +28088,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_acacia_log" } }, "output": [ @@ -27797,10 +28118,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_birch_log" } }, "output": [ @@ -27825,10 +28148,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_dark_oak_log" } }, "output": [ @@ -27853,10 +28178,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_jungle_log" } }, "output": [ @@ -27881,10 +28208,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_oak_log" } }, "output": [ @@ -27909,10 +28238,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_spruce_log" } }, "output": [ @@ -27937,10 +28268,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:wood" } }, "output": [ @@ -27965,10 +28298,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:log" } }, "output": [ @@ -27993,10 +28328,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:log2" } }, "output": [ @@ -28021,10 +28358,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_acacia_log" } }, "output": [ @@ -28049,10 +28388,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_birch_log" } }, "output": [ @@ -28077,10 +28418,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_dark_oak_log" } }, "output": [ @@ -28105,10 +28448,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_jungle_log" } }, "output": [ @@ -28133,10 +28478,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_oak_log" } }, "output": [ @@ -28161,10 +28508,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_spruce_log" } }, "output": [ @@ -28189,10 +28538,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:wood" } }, "output": [ @@ -28217,10 +28568,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_crimson_stem" } }, "output": [ @@ -28245,10 +28598,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_crimson_stem" } }, "output": [ @@ -28273,10 +28628,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_warped_stem" } }, "output": [ @@ -28301,10 +28658,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_warped_stem" } }, "output": [ @@ -28329,10 +28688,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_soil" }, "C": { - "blockState": "minecraft:warped_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:warped_stem" } }, "output": [ @@ -28357,10 +28718,12 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:soul_sand" }, "C": { - "blockState": "minecraft:warped_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:warped_stem" } }, "output": [ @@ -28385,7 +28748,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:soul_torch;torch_facing_direction=unknown" + "fuzzy": true, + "blockState": "minecraft:soul_torch" } }, "output": [ @@ -28413,6 +28777,7 @@ "fuzzy": true }, "C": { + "fuzzy": true, "blockState": "minecraft:soul_sand" } }, @@ -28442,6 +28807,7 @@ "fuzzy": true }, "C": { + "fuzzy": true, "blockState": "minecraft:soul_soil" } }, @@ -28490,7 +28856,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:planks;wood_type=spruce" }, "B": { @@ -28516,7 +28881,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:planks;wood_type=spruce" } }, @@ -28539,7 +28903,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:planks;wood_type=spruce" }, "B": { @@ -28569,7 +28932,6 @@ "fuzzy": true }, "B": { - "damage": 1, "blockState": "minecraft:planks;wood_type=spruce" } }, @@ -28590,7 +28952,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:log;old_log_type=spruce;pillar_axis=y" } }, @@ -28611,7 +28972,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_spruce_log" } }, "output": [ @@ -28631,7 +28993,6 @@ "type": 1, "input": { "A": { - "damage": 9, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=spruce" } }, @@ -28652,7 +29013,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=spruce" } }, @@ -28673,7 +29033,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:planks;wood_type=spruce" } }, @@ -28696,7 +29055,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:log;old_log_type=spruce;pillar_axis=y" } }, @@ -28718,7 +29076,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_spruce_log" } }, "output": [ @@ -28739,7 +29098,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:planks;wood_type=spruce" } }, @@ -28789,6 +29147,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -28810,6 +29169,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -28835,7 +29195,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:piston;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:piston" } }, "output": [ @@ -28855,6 +29216,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, "B": { @@ -28880,6 +29242,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:blackstone" }, "B": { @@ -28905,7 +29268,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate" }, "B": { "id": "minecraft:stick", @@ -28930,7 +29294,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stonebrick;stone_brick_type=default" + "blockState": "minecraft:stonebrick" } }, "output": [ @@ -28952,7 +29316,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stonebrick;stone_brick_type=default" + "blockState": "minecraft:stonebrick" } }, "output": [ @@ -28973,7 +29337,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } }, "output": [ @@ -28992,6 +29356,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, "B": { @@ -29017,6 +29382,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:blackstone" }, "B": { @@ -29042,7 +29408,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate" }, "B": { "id": "minecraft:stick", @@ -29067,6 +29434,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, "B": { @@ -29092,6 +29460,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:blackstone" }, "B": { @@ -29117,7 +29486,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate" }, "B": { "id": "minecraft:stick", @@ -29142,7 +29512,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } }, "output": [ @@ -29161,6 +29531,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, "B": { @@ -29186,6 +29557,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:blackstone" }, "B": { @@ -29211,7 +29583,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate" }, "B": { "id": "minecraft:stick", @@ -29236,7 +29609,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } }, "output": [ @@ -29258,6 +29631,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:cobblestone" }, "B": { @@ -29283,6 +29657,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:blackstone" }, "B": { @@ -29308,7 +29683,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate" }, "B": { "id": "minecraft:stick", @@ -29333,7 +29709,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" } }, "output": [ @@ -29358,7 +29734,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:stone;stone_type=stone" + "fuzzy": true, + "blockState": "minecraft:stone" } }, "output": [ @@ -29399,7 +29776,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_crimson_stem" } }, "output": [ @@ -29420,7 +29798,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_warped_stem" } }, "output": [ @@ -29461,9 +29840,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29471,7 +29852,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:red_flower;flower_type=allium" } ], @@ -29489,9 +29869,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29499,7 +29881,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:red_flower;flower_type=houstonia" } ], @@ -29517,9 +29898,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29527,7 +29910,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:red_flower;flower_type=orchid" } ], @@ -29545,9 +29927,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29555,7 +29939,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:red_flower;flower_type=cornflower" } ], @@ -29573,9 +29956,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29583,6 +29968,7 @@ "fuzzy": true }, { + "fuzzy": true, "blockState": "minecraft:yellow_flower" } ], @@ -29600,9 +29986,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29610,7 +29998,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:red_flower;flower_type=lily_of_the_valley" } ], @@ -29628,9 +30015,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29638,7 +30027,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:red_flower;flower_type=oxeye" } ], @@ -29656,9 +30044,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29666,7 +30056,7 @@ "fuzzy": true }, { - "blockState": "minecraft:red_flower;flower_type=poppy" + "blockState": "minecraft:red_flower" } ], "output": [ @@ -29682,9 +30072,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29692,7 +30084,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:red_flower;flower_type=tulip_orange" } ], @@ -29710,9 +30101,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29720,7 +30113,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:red_flower;flower_type=tulip_pink" } ], @@ -29738,9 +30130,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29748,7 +30142,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:red_flower;flower_type=tulip_red" } ], @@ -29766,9 +30159,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29776,7 +30171,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:red_flower;flower_type=tulip_white" } ], @@ -29794,9 +30188,11 @@ "type": 0, "input": [ { + "fuzzy": true, "blockState": "minecraft:brown_mushroom" }, { + "fuzzy": true, "blockState": "minecraft:red_mushroom" }, { @@ -29804,6 +30200,7 @@ "fuzzy": true }, { + "fuzzy": true, "blockState": "minecraft:wither_rose" } ], @@ -29825,7 +30222,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:hay_block;deprecated=0;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:hay_block" } }, "output": [ @@ -29851,6 +30249,7 @@ "damage": 32767 }, "B": { + "fuzzy": true, "blockState": "minecraft:glass" } }, @@ -29877,7 +30276,8 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:sand;sand_type=normal" + "fuzzy": true, + "blockState": "minecraft:sand" } }, "output": [ @@ -29898,7 +30298,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:tnt;allow_underwater_bit=0;explode_bit=0" + "blockState": "minecraft:tnt" }, "B": { "id": "minecraft:minecart", @@ -29922,10 +30322,12 @@ "type": 0, "input": [ { - "blockState": "minecraft:chest;facing_direction=0" + "fuzzy": true, + "blockState": "minecraft:chest" }, { - "blockState": "minecraft:tripwire_hook;attached_bit=0;direction=0;powered_bit=0" + "fuzzy": true, + "blockState": "minecraft:tripwire_hook" } ], "output": [ @@ -29949,6 +30351,7 @@ "fuzzy": true }, "C": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" } }, @@ -29978,6 +30381,7 @@ "fuzzy": true }, "C": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -30020,6 +30424,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -30039,6 +30444,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -30061,6 +30467,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { @@ -30090,6 +30497,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -30114,6 +30522,7 @@ "fuzzy": true }, "B": { + "fuzzy": true, "blockState": "minecraft:warped_fungus" } }, @@ -30134,7 +30543,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:warped_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:warped_stem" } }, "output": [ @@ -30155,7 +30565,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:warped_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:warped_stem" } }, "output": [ @@ -30175,7 +30586,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_warped_stem" } }, "output": [ @@ -30195,7 +30607,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stripped_warped_hyphae;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_warped_hyphae" } }, "output": [ @@ -30215,7 +30628,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:warped_hyphae;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:warped_hyphae" } }, "output": [ @@ -30235,6 +30649,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -30254,6 +30669,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { @@ -30280,6 +30696,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -30300,6 +30717,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -30322,6 +30740,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" } }, @@ -30343,7 +30762,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:copper_block" }, { "id": "minecraft:honeycomb", @@ -30363,7 +30783,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cut_copper" }, { "id": "minecraft:honeycomb", @@ -30383,7 +30804,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cut_copper_slab" }, { "id": "minecraft:honeycomb", @@ -30403,7 +30825,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cut_copper_stairs" }, { "id": "minecraft:honeycomb", @@ -30423,7 +30846,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:exposed_copper" }, { "id": "minecraft:honeycomb", @@ -30443,7 +30867,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:exposed_cut_copper" }, { "id": "minecraft:honeycomb", @@ -30463,7 +30888,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:exposed_cut_copper_slab" }, { "id": "minecraft:honeycomb", @@ -30483,7 +30909,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:exposed_cut_copper_stairs" }, { "id": "minecraft:honeycomb", @@ -30503,7 +30930,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:oxidized_copper" }, { "id": "minecraft:honeycomb", @@ -30523,7 +30951,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:oxidized_cut_copper" }, { "id": "minecraft:honeycomb", @@ -30543,7 +30972,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:oxidized_cut_copper_slab" }, { "id": "minecraft:honeycomb", @@ -30563,7 +30993,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:oxidized_cut_copper_stairs" }, { "id": "minecraft:honeycomb", @@ -30583,7 +31014,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:weathered_copper" }, { "id": "minecraft:honeycomb", @@ -30603,7 +31035,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:weathered_cut_copper" }, { "id": "minecraft:honeycomb", @@ -30623,7 +31056,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:weathered_cut_copper_slab" }, { "id": "minecraft:honeycomb", @@ -30643,7 +31077,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:weathered_cut_copper_stairs" }, { "id": "minecraft:honeycomb", @@ -30663,7 +31098,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:hay_block;deprecated=0;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:hay_block" } }, "output": [ @@ -30683,7 +31119,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" }, "B": { "id": "minecraft:stick", @@ -30709,7 +31145,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:white_dye", @@ -30729,7 +31166,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:bone_meal", @@ -30749,7 +31187,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } }, "output": [ @@ -30773,27 +31211,31 @@ "damage": 19 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -30815,27 +31257,31 @@ "damage": 15 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -30871,7 +31317,6 @@ "type": 0, "input": [ { - "damage": 10, "blockState": "minecraft:red_flower;flower_type=lily_of_the_valley" } ], @@ -30889,6 +31334,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -30915,6 +31361,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -30941,7 +31388,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:stained_glass;color=white" + "blockState": "minecraft:stained_glass" } }, "output": [ @@ -30962,6 +31409,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -30988,6 +31436,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -31014,6 +31463,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -31040,6 +31490,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { @@ -31065,6 +31516,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { @@ -31090,7 +31542,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" } }, "output": [ @@ -31112,6 +31564,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { @@ -31137,6 +31590,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { @@ -31162,6 +31616,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { @@ -31187,6 +31642,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { @@ -31212,6 +31668,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { @@ -31237,6 +31694,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { @@ -31262,6 +31720,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:crimson_planks" }, "B": { @@ -31287,6 +31746,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:warped_planks" }, "B": { @@ -31336,7 +31796,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:wool;color=yellow" }, "B": { @@ -31363,7 +31822,8 @@ "type": 0, "input": [ { - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:candle" }, { "id": "minecraft:yellow_dye", @@ -31383,7 +31843,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } }, @@ -31404,7 +31863,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, "B": { "id": "minecraft:yellow_dye", @@ -31434,27 +31893,31 @@ "damage": 11 }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" }, { + "fuzzy": true, "blockState": "minecraft:gravel" } ], @@ -31489,7 +31952,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:double_plant;double_plant_type=sunflower;upper_block_bit=0" + "blockState": "minecraft:double_plant" } ], "output": [ @@ -31507,6 +31970,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass" }, "B": { @@ -31533,7 +31997,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:stained_glass;color=yellow" } }, @@ -31555,6 +32018,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:glass_pane" }, "B": { @@ -31581,6 +32045,7 @@ "type": 1, "input": { "A": { + "fuzzy": true, "blockState": "minecraft:hardened_clay" }, "B": { @@ -31607,7 +32072,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" } }, "output": [ @@ -32652,7 +33117,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -32673,7 +33137,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -32694,7 +33157,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -32715,7 +33177,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -32736,7 +33197,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -32757,7 +33217,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:ink_sac", @@ -32777,7 +33237,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -32798,7 +33257,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -32819,7 +33277,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -32840,7 +33297,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -32861,7 +33317,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -32882,7 +33337,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -32903,7 +33357,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -32924,7 +33377,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -32945,7 +33397,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -32966,7 +33417,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -32987,7 +33437,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -33008,7 +33457,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -33029,7 +33477,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -33050,7 +33497,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -33071,7 +33517,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:lime_dye", @@ -33091,7 +33537,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -33112,7 +33557,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -33133,7 +33577,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -33154,7 +33597,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -33175,7 +33617,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -33196,7 +33637,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -33217,7 +33657,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -33238,7 +33677,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -33259,7 +33697,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -33280,7 +33717,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -33301,7 +33737,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -33322,7 +33757,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -33343,7 +33777,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -33364,7 +33797,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -33385,7 +33817,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:yellow_dye", @@ -33405,7 +33837,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -33426,7 +33857,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -33447,7 +33877,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -33468,7 +33897,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -33489,7 +33917,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -33510,7 +33937,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -33531,7 +33957,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -33552,7 +33977,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -33573,7 +33997,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -33594,7 +34017,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -33615,7 +34037,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -33636,7 +34057,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -33657,7 +34077,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -33678,7 +34097,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -33699,7 +34117,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:light_blue_dye", @@ -33719,7 +34137,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -33740,7 +34157,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -33761,7 +34177,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -33782,7 +34197,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -33803,7 +34217,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -33824,7 +34237,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -33845,7 +34257,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -33866,7 +34277,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -33887,7 +34297,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -33908,7 +34317,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -33929,7 +34337,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -33950,7 +34357,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -33971,7 +34377,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -33992,7 +34397,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -34013,7 +34417,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:magenta_dye", @@ -34033,7 +34437,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -34054,7 +34457,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -34075,7 +34477,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -34096,7 +34497,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -34117,7 +34517,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -34138,7 +34537,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -34159,7 +34557,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -34180,7 +34577,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -34201,7 +34597,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -34222,7 +34617,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -34243,7 +34637,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -34264,7 +34657,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -34285,7 +34677,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -34306,7 +34697,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -34327,7 +34717,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:orange_dye", @@ -34347,7 +34737,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -34368,7 +34757,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -34389,7 +34777,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -34410,7 +34797,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -34431,7 +34817,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -34452,7 +34837,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -34473,7 +34857,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -34494,7 +34877,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -34515,7 +34897,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -34536,7 +34917,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -34557,7 +34937,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -34578,7 +34957,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -34599,7 +34977,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -34620,7 +34997,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -34641,7 +35017,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -34662,7 +35037,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -34683,7 +35057,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -34704,7 +35077,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -34725,7 +35097,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -34746,7 +35117,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -34767,7 +35137,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -34788,7 +35157,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -34809,7 +35177,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -34830,7 +35197,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -34851,7 +35217,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -34872,7 +35237,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -34893,7 +35257,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -34914,7 +35277,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -34935,7 +35297,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -34956,7 +35317,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:black_dye", @@ -34976,7 +35337,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -34997,7 +35357,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -35018,7 +35377,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -35039,7 +35397,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -35060,7 +35417,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -35081,7 +35437,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -35102,7 +35457,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -35123,7 +35477,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -35144,7 +35497,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -35165,7 +35517,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -35186,7 +35537,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -35207,7 +35557,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -35228,7 +35577,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -35249,7 +35597,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -35270,7 +35617,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -35291,7 +35637,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:brown_dye", @@ -35311,7 +35657,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -35332,7 +35677,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -35353,7 +35697,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -35374,7 +35717,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -35395,7 +35737,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -35416,7 +35757,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -35437,7 +35777,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -35458,7 +35797,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -35479,7 +35817,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -35500,7 +35837,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -35521,7 +35857,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -35542,7 +35877,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -35563,7 +35897,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -35584,7 +35917,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -35605,7 +35937,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:blue_dye", @@ -35625,7 +35957,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -35646,7 +35977,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -35667,7 +35997,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -35688,7 +36017,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -35709,7 +36037,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -35730,7 +36057,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -35751,7 +36077,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -35772,7 +36097,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -35793,7 +36117,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -35814,7 +36137,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -35835,7 +36157,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -35856,7 +36177,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -35877,7 +36197,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -35898,7 +36217,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -35919,7 +36237,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -35940,7 +36257,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -35961,7 +36277,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -35982,7 +36297,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -36003,7 +36317,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -36024,7 +36337,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -36045,7 +36357,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -36066,7 +36377,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -36087,7 +36397,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -36108,7 +36417,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -36129,7 +36437,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -36150,7 +36457,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -36171,7 +36477,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -36192,7 +36497,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -36213,7 +36517,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -36234,7 +36537,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:red_dye", @@ -36254,7 +36557,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -36275,7 +36577,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -36296,7 +36597,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -36317,7 +36617,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -36338,7 +36637,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -36359,7 +36657,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -36380,7 +36677,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -36401,7 +36697,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -36422,7 +36717,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -36443,7 +36737,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -36464,7 +36757,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -36485,7 +36777,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -36506,7 +36797,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -36527,7 +36817,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -36548,7 +36837,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:green_dye", @@ -36568,7 +36857,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -36589,7 +36877,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -36610,7 +36897,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -36631,7 +36917,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -36652,7 +36937,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -36673,7 +36957,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -36694,7 +36977,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -36715,7 +36997,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -36736,7 +37017,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -36757,7 +37037,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -36778,7 +37057,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -36799,7 +37077,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -36820,7 +37097,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -36841,7 +37117,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -36862,7 +37137,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:cocoa_beans", @@ -36882,7 +37157,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -36903,7 +37177,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -36924,7 +37197,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -36945,7 +37217,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -36966,7 +37237,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -36987,7 +37257,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -37008,7 +37277,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -37029,7 +37297,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -37050,7 +37317,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -37071,7 +37337,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -37092,7 +37357,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -37113,7 +37377,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -37134,7 +37397,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -37155,7 +37417,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -37176,7 +37437,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:lapis_lazuli", @@ -37196,7 +37457,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -37217,7 +37477,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -37238,7 +37497,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -37259,7 +37517,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -37280,7 +37537,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -37301,7 +37557,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -37322,7 +37577,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -37343,7 +37597,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -37364,7 +37617,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -37385,7 +37637,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -37406,7 +37657,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -37427,7 +37677,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -37448,7 +37697,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -37469,7 +37717,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -37490,7 +37737,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:purple_dye", @@ -37510,7 +37757,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -37531,7 +37777,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -37552,7 +37797,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -37573,7 +37817,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -37594,7 +37837,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -37615,7 +37857,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -37636,7 +37877,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -37657,7 +37897,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -37678,7 +37917,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -37699,7 +37937,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -37720,7 +37957,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -37741,7 +37977,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -37762,7 +37997,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -37783,7 +38017,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -37804,7 +38037,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:cyan_dye", @@ -37824,7 +38057,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -37845,7 +38077,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -37866,7 +38097,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -37887,7 +38117,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -37908,7 +38137,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -37929,7 +38157,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -37950,7 +38177,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -37971,7 +38197,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -37992,7 +38217,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -38013,7 +38237,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -38034,7 +38257,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -38055,7 +38277,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -38076,7 +38297,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -38097,7 +38317,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -38118,7 +38337,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:light_gray_dye", @@ -38138,7 +38357,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -38159,7 +38377,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -38180,7 +38397,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -38201,7 +38417,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -38222,7 +38437,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -38243,7 +38457,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -38264,7 +38477,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -38285,7 +38497,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -38306,7 +38517,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -38327,7 +38537,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -38348,7 +38557,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -38369,7 +38577,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -38390,7 +38597,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -38411,7 +38617,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -38432,7 +38637,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:gray_dye", @@ -38452,7 +38657,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -38473,7 +38677,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -38494,7 +38697,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -38515,7 +38717,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -38536,7 +38737,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -38557,7 +38757,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -38578,7 +38777,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -38599,7 +38797,6 @@ "type": 5, "input": [ { - "damage": 6, "blockState": "minecraft:shulker_box;color=pink" }, { @@ -38620,7 +38817,6 @@ "type": 5, "input": [ { - "damage": 15, "blockState": "minecraft:shulker_box;color=black" }, { @@ -38641,7 +38837,6 @@ "type": 5, "input": [ { - "damage": 5, "blockState": "minecraft:shulker_box;color=lime" }, { @@ -38662,7 +38857,6 @@ "type": 5, "input": [ { - "damage": 4, "blockState": "minecraft:shulker_box;color=yellow" }, { @@ -38683,7 +38877,6 @@ "type": 5, "input": [ { - "damage": 3, "blockState": "minecraft:shulker_box;color=light_blue" }, { @@ -38704,7 +38897,6 @@ "type": 5, "input": [ { - "damage": 2, "blockState": "minecraft:shulker_box;color=magenta" }, { @@ -38725,7 +38917,6 @@ "type": 5, "input": [ { - "damage": 1, "blockState": "minecraft:shulker_box;color=orange" }, { @@ -38746,7 +38937,7 @@ "type": 5, "input": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "id": "minecraft:pink_dye", @@ -38766,7 +38957,6 @@ "type": 5, "input": [ { - "damage": 14, "blockState": "minecraft:shulker_box;color=red" }, { @@ -38787,7 +38977,6 @@ "type": 5, "input": [ { - "damage": 13, "blockState": "minecraft:shulker_box;color=green" }, { @@ -38808,7 +38997,6 @@ "type": 5, "input": [ { - "damage": 12, "blockState": "minecraft:shulker_box;color=brown" }, { @@ -38829,7 +39017,6 @@ "type": 5, "input": [ { - "damage": 11, "blockState": "minecraft:shulker_box;color=blue" }, { @@ -38850,7 +39037,6 @@ "type": 5, "input": [ { - "damage": 10, "blockState": "minecraft:shulker_box;color=purple" }, { @@ -38871,7 +39057,6 @@ "type": 5, "input": [ { - "damage": 9, "blockState": "minecraft:shulker_box;color=cyan" }, { @@ -38892,7 +39077,6 @@ "type": 5, "input": [ { - "damage": 8, "blockState": "minecraft:shulker_box;color=silver" }, { @@ -38913,7 +39097,6 @@ "type": 5, "input": [ { - "damage": 7, "blockState": "minecraft:shulker_box;color=gray" }, { @@ -39354,7 +39537,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:planks;wood_type=spruce" } }, @@ -39377,7 +39559,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" } }, "output": [ @@ -39398,7 +39581,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:red_sandstone;sand_stone_type=default" + "blockState": "minecraft:red_sandstone" } }, "output": [ @@ -39418,7 +39601,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:prismarine;prismarine_block_type=bricks" } }, @@ -39439,7 +39621,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:prismarine;prismarine_block_type=dark" } }, @@ -39460,7 +39641,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:purpur_block" } }, "output": [ @@ -39520,7 +39701,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:red_sandstone;sand_stone_type=heiroglyphs" } }, @@ -39541,7 +39721,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:sandstone;sand_stone_type=smooth" } }, @@ -39562,7 +39741,6 @@ "type": 1, "input": { "A": { - "damage": 5, "blockState": "minecraft:stone;stone_type=andesite" } }, @@ -39583,7 +39761,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:stone;stone_type=diorite" } }, @@ -39604,7 +39781,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:stone;stone_type=granite" } }, @@ -39625,7 +39801,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:stone;stone_type=granite_smooth" } }, @@ -39646,7 +39821,6 @@ "type": 1, "input": { "A": { - "damage": 6, "blockState": "minecraft:stone;stone_type=andesite_smooth" } }, @@ -39667,7 +39841,6 @@ "type": 1, "input": { "A": { - "damage": 4, "blockState": "minecraft:stone;stone_type=diorite_smooth" } }, @@ -39688,7 +39861,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:red_sandstone;sand_stone_type=smooth" } }, @@ -39709,7 +39881,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:red_sandstone;sand_stone_type=cut" } }, @@ -39730,7 +39901,6 @@ "type": 1, "input": { "A": { - "damage": 2, "blockState": "minecraft:sandstone;sand_stone_type=cut" } }, @@ -39751,7 +39921,6 @@ "type": 1, "input": { "A": { - "damage": 3, "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" } }, @@ -39772,7 +39941,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:quartz_block" } }, "output": [ @@ -39792,7 +39961,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:prismarine;prismarine_block_type=default" + "blockState": "minecraft:prismarine" } }, "output": [ @@ -39812,7 +39981,6 @@ "type": 1, "input": { "A": { - "damage": 1, "blockState": "minecraft:sandstone;sand_stone_type=heiroglyphs" } }, @@ -39833,7 +40001,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:stick", @@ -39858,7 +40027,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:stick", @@ -39883,7 +40053,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:stick", @@ -39908,7 +40079,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:stick", @@ -40963,7 +41135,8 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:planks;wood_type=oak" + "fuzzy": true, + "blockState": "minecraft:planks" }, "B": { "id": "minecraft:stick", @@ -40992,7 +41165,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -41013,7 +41185,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -41034,7 +41205,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -41055,7 +41225,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -41076,7 +41245,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -41097,7 +41265,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -41118,7 +41285,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -41138,7 +41305,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -41159,7 +41325,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -41180,7 +41345,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -41201,7 +41365,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -41222,7 +41385,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -41243,7 +41405,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -41264,7 +41425,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -41285,7 +41445,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -41306,7 +41465,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -41327,7 +41485,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -41348,7 +41505,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -41369,7 +41525,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -41390,7 +41545,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -41411,7 +41565,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -41432,7 +41585,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -41452,7 +41605,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -41473,7 +41625,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -41494,7 +41645,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -41515,7 +41665,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -41536,7 +41685,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -41557,7 +41705,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -41578,7 +41725,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -41599,7 +41745,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -41620,7 +41765,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -41641,7 +41785,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -41662,7 +41805,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -41683,7 +41825,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -41704,7 +41845,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -41725,7 +41865,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -41746,7 +41885,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -41766,7 +41905,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -41787,7 +41925,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -41808,7 +41945,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -41829,7 +41965,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -41850,7 +41985,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -41871,7 +42005,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -41892,7 +42025,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -41913,7 +42045,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -41934,7 +42065,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -41955,7 +42085,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -41976,7 +42105,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -41997,7 +42125,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -42018,7 +42145,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -42039,7 +42165,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -42060,7 +42185,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -42080,7 +42205,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -42101,7 +42225,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -42122,7 +42245,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -42143,7 +42265,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -42164,7 +42285,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -42185,7 +42305,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -42206,7 +42325,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -42227,7 +42345,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -42248,7 +42365,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -42269,7 +42385,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -42290,7 +42405,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -42311,7 +42425,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -42332,7 +42445,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -42353,7 +42465,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -42374,7 +42485,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -42394,7 +42505,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -42415,7 +42525,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -42436,7 +42545,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -42457,7 +42565,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -42478,7 +42585,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -42499,7 +42605,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -42520,7 +42625,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -42541,7 +42645,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -42562,7 +42665,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -42583,7 +42685,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -42604,7 +42705,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -42625,7 +42725,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -42646,7 +42745,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -42667,7 +42765,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -42688,7 +42785,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -42708,7 +42805,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -42729,7 +42825,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -42750,7 +42845,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -42771,7 +42865,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -42792,7 +42885,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -42813,7 +42905,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -42834,7 +42925,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -42855,7 +42945,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -42876,7 +42965,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -42897,7 +42985,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -42918,7 +43005,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -42939,7 +43025,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -42960,7 +43045,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -42981,7 +43065,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -43002,7 +43085,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -43023,7 +43105,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -43044,7 +43125,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -43065,7 +43145,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -43086,7 +43165,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -43107,7 +43185,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -43128,7 +43205,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -43149,7 +43225,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -43170,7 +43245,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -43191,7 +43265,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -43212,7 +43285,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -43233,7 +43305,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -43254,7 +43325,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -43275,7 +43345,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -43296,7 +43365,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -43317,7 +43385,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -43337,7 +43405,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -43358,7 +43425,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -43379,7 +43445,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -43400,7 +43465,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -43421,7 +43485,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -43442,7 +43505,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -43463,7 +43525,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -43484,7 +43545,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -43505,7 +43565,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -43526,7 +43585,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -43547,7 +43605,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -43568,7 +43625,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -43589,7 +43645,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -43610,7 +43665,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -43631,7 +43685,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -43652,7 +43705,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -43672,7 +43725,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -43693,7 +43745,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -43714,7 +43765,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -43735,7 +43785,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -43756,7 +43805,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -43777,7 +43825,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -43798,7 +43845,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -43819,7 +43865,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -43840,7 +43885,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -43861,7 +43905,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -43882,7 +43925,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -43903,7 +43945,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -43924,7 +43965,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -43945,7 +43985,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -43966,7 +44005,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -43986,7 +44025,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -44007,7 +44045,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -44028,7 +44065,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -44049,7 +44085,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -44070,7 +44105,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -44091,7 +44125,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -44112,7 +44145,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -44133,7 +44165,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -44154,7 +44185,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -44175,7 +44205,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -44196,7 +44225,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -44217,7 +44245,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -44238,7 +44265,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -44259,7 +44285,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -44280,7 +44305,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -44301,7 +44325,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -44322,7 +44345,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -44343,7 +44365,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -44364,7 +44385,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -44385,7 +44405,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -44406,7 +44425,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -44427,7 +44445,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -44448,7 +44465,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -44469,7 +44485,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -44490,7 +44505,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -44511,7 +44525,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -44532,7 +44545,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -44553,7 +44565,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -44574,7 +44585,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -44594,7 +44605,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -44615,7 +44625,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -44636,7 +44645,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -44657,7 +44665,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -44678,7 +44685,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -44699,7 +44705,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -44720,7 +44725,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -44741,7 +44745,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -44762,7 +44765,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -44783,7 +44785,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -44804,7 +44805,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -44825,7 +44825,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -44846,7 +44845,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -44867,7 +44865,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -44888,7 +44885,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -44909,7 +44905,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -44929,7 +44925,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -44950,7 +44945,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -44971,7 +44965,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -44992,7 +44985,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -45013,7 +45005,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -45034,7 +45025,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -45055,7 +45045,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -45076,7 +45065,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -45097,7 +45085,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -45118,7 +45105,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -45139,7 +45125,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -45160,7 +45145,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -45181,7 +45165,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -45202,7 +45185,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -45223,7 +45205,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -45243,7 +45225,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -45264,7 +45245,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -45285,7 +45265,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -45306,7 +45285,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -45327,7 +45305,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -45348,7 +45325,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -45369,7 +45345,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -45390,7 +45365,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -45411,7 +45385,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -45432,7 +45405,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -45453,7 +45425,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -45474,7 +45445,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -45495,7 +45465,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -45516,7 +45485,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -45537,7 +45505,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -45557,7 +45525,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -45578,7 +45545,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -45599,7 +45565,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -45620,7 +45585,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -45641,7 +45605,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -45662,7 +45625,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -45683,7 +45645,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -45704,7 +45665,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -45725,7 +45685,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -45746,7 +45705,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -45767,7 +45725,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -45788,7 +45745,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -45809,7 +45765,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -45830,7 +45785,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -45851,7 +45805,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -45871,7 +45825,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -45892,7 +45845,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -45913,7 +45865,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -45934,7 +45885,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -45955,7 +45905,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -45976,7 +45925,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -45997,7 +45945,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -46018,7 +45965,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -46039,7 +45985,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -46060,7 +46005,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -46081,7 +46025,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -46102,7 +46045,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -46123,7 +46065,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -46144,7 +46085,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -46165,7 +46105,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -46185,7 +46125,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -46206,7 +46145,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -46227,7 +46165,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -46248,7 +46185,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -46269,7 +46205,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -46290,7 +46225,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -46311,7 +46245,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -46332,7 +46265,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -46353,7 +46285,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -46374,7 +46305,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -46395,7 +46325,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -46416,7 +46345,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -46437,7 +46365,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -46458,7 +46385,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -46479,7 +46405,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -46499,7 +46425,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -46520,7 +46445,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -46541,7 +46465,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -46562,7 +46485,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -46583,7 +46505,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -46604,7 +46525,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -46625,7 +46545,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -46646,7 +46565,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -46667,7 +46585,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -46688,7 +46605,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -46709,7 +46625,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -46730,7 +46645,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -46751,7 +46665,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -46772,7 +46685,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -46793,7 +46705,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -46813,7 +46725,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -46834,7 +46745,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -46855,7 +46765,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -46876,7 +46785,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -46897,7 +46805,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -46918,7 +46825,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -46939,7 +46845,6 @@ "fuzzy": true }, { - "damage": 6, "blockState": "minecraft:wool;color=pink" } ], @@ -46960,7 +46865,6 @@ "fuzzy": true }, { - "damage": 15, "blockState": "minecraft:wool;color=black" } ], @@ -46981,7 +46885,6 @@ "fuzzy": true }, { - "damage": 14, "blockState": "minecraft:wool;color=red" } ], @@ -47002,7 +46905,6 @@ "fuzzy": true }, { - "damage": 5, "blockState": "minecraft:wool;color=lime" } ], @@ -47023,7 +46925,6 @@ "fuzzy": true }, { - "damage": 4, "blockState": "minecraft:wool;color=yellow" } ], @@ -47044,7 +46945,6 @@ "fuzzy": true }, { - "damage": 3, "blockState": "minecraft:wool;color=light_blue" } ], @@ -47065,7 +46965,6 @@ "fuzzy": true }, { - "damage": 2, "blockState": "minecraft:wool;color=magenta" } ], @@ -47086,7 +46985,6 @@ "fuzzy": true }, { - "damage": 1, "blockState": "minecraft:wool;color=orange" } ], @@ -47107,7 +47005,7 @@ "fuzzy": true }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "output": [ @@ -47127,7 +47025,6 @@ "fuzzy": true }, { - "damage": 13, "blockState": "minecraft:wool;color=green" } ], @@ -47148,7 +47045,6 @@ "fuzzy": true }, { - "damage": 12, "blockState": "minecraft:wool;color=brown" } ], @@ -47169,7 +47065,6 @@ "fuzzy": true }, { - "damage": 11, "blockState": "minecraft:wool;color=blue" } ], @@ -47190,7 +47085,6 @@ "fuzzy": true }, { - "damage": 10, "blockState": "minecraft:wool;color=purple" } ], @@ -47211,7 +47105,6 @@ "fuzzy": true }, { - "damage": 9, "blockState": "minecraft:wool;color=cyan" } ], @@ -47232,7 +47125,6 @@ "fuzzy": true }, { - "damage": 8, "blockState": "minecraft:wool;color=silver" } ], @@ -47253,7 +47145,6 @@ "fuzzy": true }, { - "damage": 7, "blockState": "minecraft:wool;color=gray" } ], @@ -47268,8 +47159,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_copper_ore" }, "output": { "legacyId": 504, @@ -47281,8 +47172,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_copper_ore" }, "output": { "legacyId": 504, @@ -47294,8 +47185,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_emerald_ore" }, "output": { "id": "minecraft:emerald", @@ -47306,8 +47197,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_emerald_ore" }, "output": { "id": "minecraft:emerald", @@ -47318,8 +47209,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_coal_ore" }, "output": { "id": "minecraft:coal" @@ -47329,8 +47220,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_coal_ore" }, "output": { "id": "minecraft:coal" @@ -47340,8 +47231,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_diamond_ore" }, "output": { "id": "minecraft:diamond", @@ -47352,8 +47243,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_diamond_ore" }, "output": { "id": "minecraft:diamond", @@ -47364,8 +47255,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_redstone_ore" }, "output": { "id": "minecraft:redstone", @@ -47376,8 +47267,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_redstone_ore" }, "output": { "id": "minecraft:redstone", @@ -47388,8 +47279,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_gold_ore" }, "output": { "id": "minecraft:gold_ingot", @@ -47400,8 +47291,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_gold_ore" }, "output": { "id": "minecraft:gold_ingot", @@ -47412,8 +47303,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_iron_ore" }, "output": { "id": "minecraft:iron_ingot", @@ -47424,8 +47315,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_iron_ore" }, "output": { "id": "minecraft:iron_ingot", @@ -47436,8 +47327,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_lapis_ore" }, "output": { "id": "minecraft:lapis_lazuli", @@ -47448,8 +47339,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_lapis_ore" }, "output": { "id": "minecraft:lapis_lazuli", @@ -47460,8 +47351,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_bricks" }, "output": { "blockState": "minecraft:cracked_deepslate_bricks" @@ -47471,8 +47362,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:deepslate_tiles" }, "output": { "blockState": "minecraft:cracked_deepslate_tiles" @@ -47482,8 +47373,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:cobbled_deepslate" }, "output": { "blockState": "minecraft:deepslate;pillar_axis=y" @@ -47493,8 +47384,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:copper_ore" }, "output": { "legacyId": 504, @@ -47506,8 +47397,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:air" + "fuzzy": true, + "blockState": "minecraft:copper_ore" }, "output": { "legacyId": 504, @@ -47519,7 +47410,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:nether_gold_ore" }, "output": { @@ -47531,7 +47422,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:nether_gold_ore" }, "output": { @@ -47543,7 +47434,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:polished_blackstone_bricks" }, "output": { @@ -47554,7 +47445,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:ancient_debris" }, "output": { @@ -47566,7 +47457,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:ancient_debris" }, "output": { @@ -47578,8 +47469,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:basalt;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:basalt" }, "output": { "blockState": "minecraft:smooth_basalt" @@ -47589,7 +47480,7 @@ { "type": 3, "input": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + "blockState": "minecraft:wood" }, "output": { "id": "minecraft:charcoal", @@ -47600,7 +47491,6 @@ { "type": 3, "input": { - "damage": 1, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=spruce" }, "output": { @@ -47612,7 +47502,6 @@ { "type": 3, "input": { - "damage": 2, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=birch" }, "output": { @@ -47624,7 +47513,6 @@ { "type": 3, "input": { - "damage": 3, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=jungle" }, "output": { @@ -47636,7 +47524,6 @@ { "type": 3, "input": { - "damage": 4, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=acacia" }, "output": { @@ -47648,7 +47535,6 @@ { "type": 3, "input": { - "damage": 5, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=dark_oak" }, "output": { @@ -47660,7 +47546,6 @@ { "type": 3, "input": { - "damage": 8, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=oak" }, "output": { @@ -47672,7 +47557,6 @@ { "type": 3, "input": { - "damage": 9, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=spruce" }, "output": { @@ -47684,7 +47568,6 @@ { "type": 3, "input": { - "damage": 10, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=birch" }, "output": { @@ -47696,7 +47579,6 @@ { "type": 3, "input": { - "damage": 11, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=jungle" }, "output": { @@ -47708,7 +47590,6 @@ { "type": 3, "input": { - "damage": 12, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=acacia" }, "output": { @@ -47720,7 +47601,6 @@ { "type": 3, "input": { - "damage": 13, "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=dark_oak" }, "output": { @@ -47732,8 +47612,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:sea_pickle;cluster_count=0;dead_bit=0" + "fuzzy": true, + "blockState": "minecraft:sea_pickle" }, "output": { "id": "minecraft:lime_dye", @@ -47744,8 +47624,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_oak_log" }, "output": { "id": "minecraft:charcoal", @@ -47756,8 +47636,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_dark_oak_log" }, "output": { "id": "minecraft:charcoal", @@ -47768,8 +47648,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_acacia_log" }, "output": { "id": "minecraft:charcoal", @@ -47780,8 +47660,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_jungle_log" }, "output": { "id": "minecraft:charcoal", @@ -47792,8 +47672,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_birch_log" }, "output": { "id": "minecraft:charcoal", @@ -47804,8 +47684,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + "fuzzy": true, + "blockState": "minecraft:stripped_spruce_log" }, "output": { "id": "minecraft:charcoal", @@ -47816,7 +47696,7 @@ { "type": 3, "input": { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" }, "output": { "blockState": "minecraft:smooth_stone" @@ -47826,7 +47706,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:cobblestone" }, "output": { @@ -47837,8 +47717,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:sand;sand_type=normal" + "fuzzy": true, + "blockState": "minecraft:sand" }, "output": { "blockState": "minecraft:glass" @@ -47848,7 +47728,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:gold_ore" }, "output": { @@ -47860,7 +47740,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:gold_ore" }, "output": { @@ -47872,7 +47752,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:iron_ore" }, "output": { @@ -47884,7 +47764,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:iron_ore" }, "output": { @@ -47896,7 +47776,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:coal_ore" }, "output": { @@ -47907,7 +47787,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:coal_ore" }, "output": { @@ -47918,7 +47798,7 @@ { "type": 3, "input": { - "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + "blockState": "minecraft:log" }, "output": { "id": "minecraft:charcoal", @@ -47929,7 +47809,6 @@ { "type": 3, "input": { - "damage": 1, "blockState": "minecraft:log;old_log_type=spruce;pillar_axis=y" }, "output": { @@ -47941,7 +47820,6 @@ { "type": 3, "input": { - "damage": 2, "blockState": "minecraft:log;old_log_type=birch;pillar_axis=y" }, "output": { @@ -47953,7 +47831,6 @@ { "type": 3, "input": { - "damage": 3, "blockState": "minecraft:log;old_log_type=jungle;pillar_axis=y" }, "output": { @@ -47965,7 +47842,6 @@ { "type": 3, "input": { - "damage": 1, "blockState": "minecraft:sponge;sponge_type=wet" }, "output": { @@ -47976,7 +47852,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:lapis_ore" }, "output": { @@ -47988,7 +47864,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:lapis_ore" }, "output": { @@ -48000,8 +47876,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:sandstone;sand_stone_type=default" + "fuzzy": true, + "blockState": "minecraft:sandstone" }, "output": { "blockState": "minecraft:sandstone;sand_stone_type=smooth" @@ -48011,7 +47887,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:diamond_ore" }, "output": { @@ -48023,7 +47899,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:diamond_ore" }, "output": { @@ -48035,7 +47911,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:redstone_ore" }, "output": { @@ -48047,7 +47923,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:redstone_ore" }, "output": { @@ -48059,8 +47935,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:cactus;age=0" + "fuzzy": true, + "blockState": "minecraft:cactus" }, "output": { "id": "minecraft:green_dye", @@ -48071,7 +47947,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:clay" }, "output": { @@ -48082,7 +47958,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:netherrack" }, "output": { @@ -48094,7 +47970,7 @@ { "type": 3, "input": { - "blockState": "minecraft:stonebrick;stone_brick_type=default" + "blockState": "minecraft:stonebrick" }, "output": { "blockState": "minecraft:stonebrick;stone_brick_type=cracked" @@ -48104,7 +47980,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:nether_brick" }, "output": { @@ -48115,7 +47991,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:emerald_ore" }, "output": { @@ -48127,7 +48003,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:emerald_ore" }, "output": { @@ -48139,7 +48015,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:quartz_ore" }, "output": { @@ -48151,7 +48027,7 @@ { "type": 3, "input": { - "damage": -1, + "fuzzy": true, "blockState": "minecraft:quartz_ore" }, "output": { @@ -48163,7 +48039,7 @@ { "type": 3, "input": { - "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:quartz_block" }, "output": { "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" @@ -48173,7 +48049,7 @@ { "type": 3, "input": { - "blockState": "minecraft:stained_hardened_clay;color=white" + "blockState": "minecraft:stained_hardened_clay" }, "output": { "blockState": "minecraft:white_glazed_terracotta;facing_direction=0" @@ -48183,7 +48059,6 @@ { "type": 3, "input": { - "damage": 1, "blockState": "minecraft:stained_hardened_clay;color=orange" }, "output": { @@ -48194,7 +48069,6 @@ { "type": 3, "input": { - "damage": 2, "blockState": "minecraft:stained_hardened_clay;color=magenta" }, "output": { @@ -48205,7 +48079,6 @@ { "type": 3, "input": { - "damage": 3, "blockState": "minecraft:stained_hardened_clay;color=light_blue" }, "output": { @@ -48216,7 +48089,6 @@ { "type": 3, "input": { - "damage": 4, "blockState": "minecraft:stained_hardened_clay;color=yellow" }, "output": { @@ -48227,7 +48099,6 @@ { "type": 3, "input": { - "damage": 5, "blockState": "minecraft:stained_hardened_clay;color=lime" }, "output": { @@ -48238,7 +48109,6 @@ { "type": 3, "input": { - "damage": 6, "blockState": "minecraft:stained_hardened_clay;color=pink" }, "output": { @@ -48249,7 +48119,6 @@ { "type": 3, "input": { - "damage": 7, "blockState": "minecraft:stained_hardened_clay;color=gray" }, "output": { @@ -48260,7 +48129,6 @@ { "type": 3, "input": { - "damage": 8, "blockState": "minecraft:stained_hardened_clay;color=silver" }, "output": { @@ -48271,7 +48139,6 @@ { "type": 3, "input": { - "damage": 9, "blockState": "minecraft:stained_hardened_clay;color=cyan" }, "output": { @@ -48282,7 +48149,6 @@ { "type": 3, "input": { - "damage": 10, "blockState": "minecraft:stained_hardened_clay;color=purple" }, "output": { @@ -48293,7 +48159,6 @@ { "type": 3, "input": { - "damage": 11, "blockState": "minecraft:stained_hardened_clay;color=blue" }, "output": { @@ -48304,7 +48169,6 @@ { "type": 3, "input": { - "damage": 12, "blockState": "minecraft:stained_hardened_clay;color=brown" }, "output": { @@ -48315,7 +48179,6 @@ { "type": 3, "input": { - "damage": 13, "blockState": "minecraft:stained_hardened_clay;color=green" }, "output": { @@ -48326,7 +48189,6 @@ { "type": 3, "input": { - "damage": 14, "blockState": "minecraft:stained_hardened_clay;color=red" }, "output": { @@ -48337,7 +48199,6 @@ { "type": 3, "input": { - "damage": 15, "blockState": "minecraft:stained_hardened_clay;color=black" }, "output": { @@ -48348,7 +48209,7 @@ { "type": 3, "input": { - "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + "blockState": "minecraft:log2" }, "output": { "id": "minecraft:charcoal", @@ -48359,7 +48220,6 @@ { "type": 3, "input": { - "damage": 1, "blockState": "minecraft:log2;new_log_type=dark_oak;pillar_axis=y" }, "output": { @@ -48371,8 +48231,8 @@ { "type": 3, "input": { - "damage": -1, - "blockState": "minecraft:red_sandstone;sand_stone_type=default" + "fuzzy": true, + "blockState": "minecraft:red_sandstone" }, "output": { "blockState": "minecraft:red_sandstone;sand_stone_type=smooth" @@ -48382,7 +48242,8 @@ { "type": 3, "input": { - "id": "minecraft:porkchop" + "id": "minecraft:porkchop", + "fuzzy": true }, "output": { "id": "minecraft:cooked_porkchop", @@ -48393,7 +48254,8 @@ { "type": 3, "input": { - "id": "minecraft:porkchop" + "id": "minecraft:porkchop", + "fuzzy": true }, "output": { "id": "minecraft:cooked_porkchop", @@ -48404,7 +48266,8 @@ { "type": 3, "input": { - "id": "minecraft:porkchop" + "id": "minecraft:porkchop", + "fuzzy": true }, "output": { "id": "minecraft:cooked_porkchop", @@ -48415,7 +48278,8 @@ { "type": 3, "input": { - "id": "minecraft:porkchop" + "id": "minecraft:porkchop", + "fuzzy": true }, "output": { "id": "minecraft:cooked_porkchop", @@ -48426,7 +48290,8 @@ { "type": 3, "input": { - "id": "minecraft:cod" + "id": "minecraft:cod", + "fuzzy": true }, "output": { "id": "minecraft:cooked_cod", @@ -48437,7 +48302,8 @@ { "type": 3, "input": { - "id": "minecraft:cod" + "id": "minecraft:cod", + "fuzzy": true }, "output": { "id": "minecraft:cooked_cod", @@ -48448,7 +48314,8 @@ { "type": 3, "input": { - "id": "minecraft:cod" + "id": "minecraft:cod", + "fuzzy": true }, "output": { "id": "minecraft:cooked_cod", @@ -48459,7 +48326,8 @@ { "type": 3, "input": { - "id": "minecraft:cod" + "id": "minecraft:cod", + "fuzzy": true }, "output": { "id": "minecraft:cooked_cod", @@ -48470,7 +48338,8 @@ { "type": 3, "input": { - "id": "minecraft:salmon" + "id": "minecraft:salmon", + "fuzzy": true }, "output": { "id": "minecraft:cooked_salmon", @@ -48481,7 +48350,8 @@ { "type": 3, "input": { - "id": "minecraft:salmon" + "id": "minecraft:salmon", + "fuzzy": true }, "output": { "id": "minecraft:cooked_salmon", @@ -48492,7 +48362,8 @@ { "type": 3, "input": { - "id": "minecraft:salmon" + "id": "minecraft:salmon", + "fuzzy": true }, "output": { "id": "minecraft:cooked_salmon", @@ -48503,7 +48374,8 @@ { "type": 3, "input": { - "id": "minecraft:salmon" + "id": "minecraft:salmon", + "fuzzy": true }, "output": { "id": "minecraft:cooked_salmon", @@ -48514,7 +48386,8 @@ { "type": 3, "input": { - "id": "minecraft:beef" + "id": "minecraft:beef", + "fuzzy": true }, "output": { "id": "minecraft:cooked_beef", @@ -48525,7 +48398,8 @@ { "type": 3, "input": { - "id": "minecraft:beef" + "id": "minecraft:beef", + "fuzzy": true }, "output": { "id": "minecraft:cooked_beef", @@ -48536,7 +48410,8 @@ { "type": 3, "input": { - "id": "minecraft:beef" + "id": "minecraft:beef", + "fuzzy": true }, "output": { "id": "minecraft:cooked_beef", @@ -48547,7 +48422,8 @@ { "type": 3, "input": { - "id": "minecraft:beef" + "id": "minecraft:beef", + "fuzzy": true }, "output": { "id": "minecraft:cooked_beef", @@ -48558,7 +48434,8 @@ { "type": 3, "input": { - "id": "minecraft:chicken" + "id": "minecraft:chicken", + "fuzzy": true }, "output": { "id": "minecraft:cooked_chicken", @@ -48569,7 +48446,8 @@ { "type": 3, "input": { - "id": "minecraft:chicken" + "id": "minecraft:chicken", + "fuzzy": true }, "output": { "id": "minecraft:cooked_chicken", @@ -48580,7 +48458,8 @@ { "type": 3, "input": { - "id": "minecraft:chicken" + "id": "minecraft:chicken", + "fuzzy": true }, "output": { "id": "minecraft:cooked_chicken", @@ -48591,7 +48470,8 @@ { "type": 3, "input": { - "id": "minecraft:chicken" + "id": "minecraft:chicken", + "fuzzy": true }, "output": { "id": "minecraft:cooked_chicken", @@ -48602,7 +48482,8 @@ { "type": 3, "input": { - "id": "minecraft:potato" + "id": "minecraft:potato", + "fuzzy": true }, "output": { "id": "minecraft:baked_potato", @@ -48613,7 +48494,8 @@ { "type": 3, "input": { - "id": "minecraft:potato" + "id": "minecraft:potato", + "fuzzy": true }, "output": { "id": "minecraft:baked_potato", @@ -48624,7 +48506,8 @@ { "type": 3, "input": { - "id": "minecraft:potato" + "id": "minecraft:potato", + "fuzzy": true }, "output": { "id": "minecraft:baked_potato", @@ -48635,7 +48518,8 @@ { "type": 3, "input": { - "id": "minecraft:potato" + "id": "minecraft:potato", + "fuzzy": true }, "output": { "id": "minecraft:baked_potato", @@ -48646,7 +48530,8 @@ { "type": 3, "input": { - "id": "minecraft:rabbit" + "id": "minecraft:rabbit", + "fuzzy": true }, "output": { "id": "minecraft:cooked_rabbit", @@ -48657,7 +48542,8 @@ { "type": 3, "input": { - "id": "minecraft:rabbit" + "id": "minecraft:rabbit", + "fuzzy": true }, "output": { "id": "minecraft:cooked_rabbit", @@ -48668,7 +48554,8 @@ { "type": 3, "input": { - "id": "minecraft:rabbit" + "id": "minecraft:rabbit", + "fuzzy": true }, "output": { "id": "minecraft:cooked_rabbit", @@ -48679,7 +48566,8 @@ { "type": 3, "input": { - "id": "minecraft:rabbit" + "id": "minecraft:rabbit", + "fuzzy": true }, "output": { "id": "minecraft:cooked_rabbit", @@ -48690,7 +48578,8 @@ { "type": 3, "input": { - "id": "minecraft:iron_shovel" + "id": "minecraft:iron_shovel", + "fuzzy": true }, "output": { "id": "minecraft:iron_nugget", @@ -48701,7 +48590,8 @@ { "type": 3, "input": { - "id": "minecraft:iron_shovel" + "id": "minecraft:iron_shovel", + "fuzzy": true }, "output": { "id": "minecraft:iron_nugget", @@ -48712,7 +48602,8 @@ { "type": 3, "input": { - "id": "minecraft:iron_pickaxe" + "id": "minecraft:iron_pickaxe", + "fuzzy": true }, "output": { "id": "minecraft:iron_nugget", @@ -48723,7 +48614,8 @@ { "type": 3, "input": { - "id": "minecraft:iron_pickaxe" + "id": "minecraft:iron_pickaxe", + "fuzzy": true }, "output": { "id": "minecraft:iron_nugget", @@ -48734,7 +48626,8 @@ { "type": 3, "input": { - "id": "minecraft:iron_axe" + "id": "minecraft:iron_axe", + "fuzzy": true }, "output": { "id": "minecraft:iron_nugget", @@ -48745,7 +48638,8 @@ { "type": 3, "input": { - "id": "minecraft:iron_axe" + "id": "minecraft:iron_axe", + "fuzzy": true }, "output": { "id": "minecraft:iron_nugget", @@ -48756,7 +48650,8 @@ { "type": 3, "input": { - "id": "minecraft:iron_sword" + "id": "minecraft:iron_sword", + "fuzzy": true }, "output": { "id": "minecraft:iron_nugget", @@ -48767,7 +48662,8 @@ { "type": 3, "input": { - "id": "minecraft:iron_sword" + "id": "minecraft:iron_sword", + "fuzzy": true }, "output": { "id": "minecraft:iron_nugget", @@ -48778,7 +48674,8 @@ { "type": 3, "input": { - "id": "minecraft:golden_sword" + "id": "minecraft:golden_sword", + "fuzzy": true }, "output": { "id": "minecraft:gold_nugget", @@ -48789,7 +48686,8 @@ { "type": 3, "input": { - "id": "minecraft:golden_sword" + "id": "minecraft:golden_sword", + "fuzzy": true }, "output": { "id": "minecraft:gold_nugget", @@ -48800,7 +48698,8 @@ { "type": 3, "input": { - "id": "minecraft:golden_shovel" + "id": "minecraft:golden_shovel", + "fuzzy": true }, "output": { "id": "minecraft:gold_nugget", @@ -48811,7 +48710,8 @@ { "type": 3, "input": { - "id": "minecraft:golden_shovel" + "id": "minecraft:golden_shovel", + "fuzzy": true }, "output": { "id": "minecraft:gold_nugget", @@ -48822,7 +48722,8 @@ { "type": 3, "input": { - "id": "minecraft:golden_pickaxe" + "id": "minecraft:golden_pickaxe", + "fuzzy": true }, "output": { "id": "minecraft:gold_nugget", @@ -48833,7 +48734,8 @@ { "type": 3, "input": { - "id": "minecraft:golden_pickaxe" + "id": "minecraft:golden_pickaxe", + "fuzzy": true }, "output": { "id": "minecraft:gold_nugget", @@ -48844,7 +48746,8 @@ { "type": 3, "input": { - "id": "minecraft:golden_axe" + "id": "minecraft:golden_axe", + "fuzzy": true }, "output": { "id": "minecraft:gold_nugget", @@ -48855,7 +48758,8 @@ { "type": 3, "input": { - "id": "minecraft:golden_axe" + "id": "minecraft:golden_axe", + "fuzzy": true }, "output": { "id": "minecraft:gold_nugget", @@ -48866,7 +48770,8 @@ { "type": 3, "input": { - "id": "minecraft:iron_hoe" + "id": "minecraft:iron_hoe", + "fuzzy": true }, "output": { "id": "minecraft:iron_nugget", @@ -48877,7 +48782,8 @@ { "type": 3, "input": { - "id": "minecraft:iron_hoe" + "id": "minecraft:iron_hoe", + "fuzzy": true }, "output": { "id": "minecraft:iron_nugget", @@ -48888,7 +48794,8 @@ { "type": 3, "input": { - "id": "minecraft:golden_hoe" + "id": "minecraft:golden_hoe", + "fuzzy": true }, "output": { "id": "minecraft:gold_nugget", @@ -48899,7 +48806,8 @@ { "type": 3, "input": { - "id": "minecraft:golden_hoe" + "id": "minecraft:golden_hoe", + "fuzzy": true }, "output": { "id": "minecraft:gold_nugget", @@ -49174,7 +49082,8 @@ { "type": 3, "input": { - "id": "minecraft:kelp" + "id": "minecraft:kelp", + "fuzzy": true }, "output": { "id": "minecraft:dried_kelp", @@ -49185,7 +49094,8 @@ { "type": 3, "input": { - "id": "minecraft:kelp" + "id": "minecraft:kelp", + "fuzzy": true }, "output": { "id": "minecraft:dried_kelp", @@ -49196,7 +49106,8 @@ { "type": 3, "input": { - "id": "minecraft:kelp" + "id": "minecraft:kelp", + "fuzzy": true }, "output": { "id": "minecraft:dried_kelp", @@ -49207,7 +49118,8 @@ { "type": 3, "input": { - "id": "minecraft:kelp" + "id": "minecraft:kelp", + "fuzzy": true }, "output": { "id": "minecraft:dried_kelp", @@ -49218,7 +49130,8 @@ { "type": 3, "input": { - "id": "minecraft:clay_ball" + "id": "minecraft:clay_ball", + "fuzzy": true }, "output": { "id": "minecraft:brick", @@ -49309,7 +49222,8 @@ { "type": 3, "input": { - "id": "minecraft:iron_horse_armor" + "id": "minecraft:iron_horse_armor", + "fuzzy": true }, "output": { "id": "minecraft:iron_nugget", @@ -49320,7 +49234,8 @@ { "type": 3, "input": { - "id": "minecraft:iron_horse_armor" + "id": "minecraft:iron_horse_armor", + "fuzzy": true }, "output": { "id": "minecraft:iron_nugget", @@ -49331,7 +49246,8 @@ { "type": 3, "input": { - "id": "minecraft:golden_horse_armor" + "id": "minecraft:golden_horse_armor", + "fuzzy": true }, "output": { "id": "minecraft:gold_nugget", @@ -49342,7 +49258,8 @@ { "type": 3, "input": { - "id": "minecraft:golden_horse_armor" + "id": "minecraft:golden_horse_armor", + "fuzzy": true }, "output": { "id": "minecraft:gold_nugget", @@ -49353,7 +49270,8 @@ { "type": 3, "input": { - "id": "minecraft:mutton" + "id": "minecraft:mutton", + "fuzzy": true }, "output": { "id": "minecraft:cooked_mutton", @@ -49364,7 +49282,8 @@ { "type": 3, "input": { - "id": "minecraft:mutton" + "id": "minecraft:mutton", + "fuzzy": true }, "output": { "id": "minecraft:cooked_mutton", @@ -49375,7 +49294,8 @@ { "type": 3, "input": { - "id": "minecraft:mutton" + "id": "minecraft:mutton", + "fuzzy": true }, "output": { "id": "minecraft:cooked_mutton", @@ -49386,7 +49306,8 @@ { "type": 3, "input": { - "id": "minecraft:mutton" + "id": "minecraft:mutton", + "fuzzy": true }, "output": { "id": "minecraft:cooked_mutton", @@ -49397,7 +49318,8 @@ { "type": 3, "input": { - "id": "minecraft:chorus_fruit" + "id": "minecraft:chorus_fruit", + "fuzzy": true }, "output": { "id": "minecraft:popped_chorus_fruit", @@ -50908,4 +50830,4 @@ "outputId": "minecraft:lingering_potion" } ] -} \ No newline at end of file +} diff --git a/src/test/java/org/powernukkit/updater/AllResourceUpdates.java b/src/test/java/org/powernukkit/updater/AllResourceUpdates.java index 61818280d02..f06c4a8db05 100644 --- a/src/test/java/org/powernukkit/updater/AllResourceUpdates.java +++ b/src/test/java/org/powernukkit/updater/AllResourceUpdates.java @@ -1,6 +1,7 @@ package org.powernukkit.updater; import cn.nukkit.block.Block; +import cn.nukkit.block.BlockID; import cn.nukkit.block.BlockUnknown; import cn.nukkit.blockstate.BlockState; import cn.nukkit.blockstate.BlockStateRegistry; @@ -51,24 +52,32 @@ public static void main(String[] args) { - Run src/test/java/org/powernukkit/dumps/RuntimeBlockStateDumper.java */ - new AllResourceUpdates().execute(); + try { + new AllResourceUpdates().execute(); + } catch (Throwable e) { + e.printStackTrace(); + System.exit(1); + } finally { + System.exit(0); + } } + private final Gson gson = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting() + .registerTypeAdapter(Double.class, (JsonSerializer) (src, typeOfSrc, context) -> { + if (src == src.longValue()) + return new JsonPrimitive(src.longValue()); + return new JsonPrimitive(src); + }).create(); + private void execute() { init(); updateRecipes(); + updateCreativeItems(); System.exit(0); } @SuppressWarnings("unchecked") private void updateRecipes() { - Gson gson = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting() - .registerTypeAdapter(Double.class, (JsonSerializer) (src, typeOfSrc, context) -> { - if (src == src.longValue()) - return new JsonPrimitive(src.longValue()); - return new JsonPrimitive(src); - }).create(); - Config config = new Config(Config.JSON); try(InputStream recipesStream = getClass().getClassLoader() .getResourceAsStream("org/powernukkit/updater/dumps/proxypass/recipes.json") @@ -123,6 +132,27 @@ private void updateRecipes() { config.saveAsJson(new File("src/main/resources/recipes.json"), false, gson); } + @SuppressWarnings("unchecked") + private void updateCreativeItems() { + Config config = new Config(Config.JSON); + try(InputStream recipesStream = getClass().getClassLoader() + .getResourceAsStream("org/powernukkit/updater/dumps/proxypass/creativeitems.json") + ) { + if (recipesStream == null) { + throw new AssertionError("Unable to findcreativeitems.json"); + } + config.loadAsJson(recipesStream, gson); + } catch (IOException e) { + throw new UncheckedIOException(e); + } + + var newItems = (List>)(Object)config.getMapList("items"); + newItems = updateItemEntryList(newItems); + config.set("items", newItems); + + config.saveAsJson(new File("src/main/resources/creativeitems.json"), false, gson); + } + private List> updateItemEntryList(List> inputs) { inputs = new ArrayList<>(inputs); var inputIterator = inputs.listIterator(); @@ -133,9 +163,17 @@ private List> updateItemEntryList(List> } private Map updateItemEntry(Map itemEntry) { + var result = updateItemEntry0(itemEntry); + if ("minecraft:air".equals(result.get("blockState"))) { + throw new NoSuchElementException("State not found for: "+itemEntry); + } + return result; + } + + private Map updateItemEntry0(Map itemEntry) { itemEntry = new LinkedHashMap<>(itemEntry); Integer damage = itemEntry.containsKey("damage")? Utils.toInt(itemEntry.get("damage")) : null; - boolean fuzzy = damage != null && damage.equals((int)Short.MAX_VALUE); + boolean fuzzy = damage != null && (damage.equals((int)Short.MAX_VALUE) || damage.equals(-1)); if (itemEntry.containsKey("blockState")) { itemEntry.remove("legacyId"); itemEntry.remove("blockRuntimeId"); @@ -237,22 +275,52 @@ private Map updateItemEntry(Map itemEntry) { } String id = itemEntry.get("id").toString(); - Item item; - if (damage != null && !fuzzy) { - item = Item.fromString(id + ":" + damage); - } else { - item = Item.fromString(id); - damage = item.getDamage(); + Item item = Item.fromString(id); + if (item.getId() > 255) { + if (damage != null && !fuzzy && damage != 0) { + item = Item.fromString(id+":"+damage); + } + itemEntry.remove("legacyId"); + itemEntry.remove("blockRuntimeId"); + itemEntry.remove("damage"); + itemEntry.remove("blockState"); + itemEntry.put("id", item.getNamespaceId()); + if (fuzzy) { + itemEntry.put("fuzzy", true); + } else if (damage != null && damage != 0) { + itemEntry.put("damage", damage); + } + return itemEntry; } - if (damage != 0) { - itemEntry.put("damage", damage); + + Integer blockId = BlockStateRegistry.getBlockId(id); + if (blockId == null) { + System.out.println("Block id not found for id: " + itemEntry.get("id") + " : " + damage); + return itemEntry; + } + + String namespacedId = BlockStateRegistry.getPersistenceName(blockId); + String stateId; + if (damage == null || damage == 0 || damage == Short.MAX_VALUE || damage == -1) { + stateId = namespacedId; } else { - itemEntry.remove("damage"); + item = Item.getBlock(blockId, damage); + if (item.getBlock().getId() == BlockID.AIR) { + throw new NoSuchElementException("State not found for id: " + itemEntry.get("id") + " : " + damage); + } + stateId = item.getBlock().getStateId(); + } + if (damage != null && damage == Short.MAX_VALUE) { + fuzzy = true; + } + if (fuzzy) { + itemEntry.put("fuzzy", true); } + itemEntry.remove("damage"); itemEntry.remove("legacyId"); itemEntry.remove("blockRuntimeId"); itemEntry.remove("id"); - itemEntry.put("blockState", item.getBlock().getStateId()); + itemEntry.put("blockState", stateId); return itemEntry; } diff --git a/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json new file mode 100644 index 00000000000..5bdc412a55a --- /dev/null +++ b/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json @@ -0,0 +1,5203 @@ +{ + "items" : [ + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5797 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5798 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5799 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5800 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5801 + }, + { + "id" : "minecraft:planks", + "blockRuntimeId" : 5802 + }, + { + "id" : "minecraft:crimson_planks", + "blockRuntimeId" : 3840 + }, + { + "id" : "minecraft:warped_planks", + "blockRuntimeId" : 7598 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1319 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1320 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1321 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1322 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1323 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1324 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1331 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1326 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1327 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1325 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1328 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1332 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1329 + }, + { + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1330 + }, + { + "id" : "minecraft:blackstone_wall", + "blockRuntimeId" : 507 + }, + { + "id" : "minecraft:polished_blackstone_wall", + "blockRuntimeId" : 6041 + }, + { + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5838 + }, + { + "id" : "minecraft:cobbled_deepslate_wall", + "blockRuntimeId" : 1156 + }, + { + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4298 + }, + { + "id" : "minecraft:polished_deepslate_wall", + "blockRuntimeId" : 6216 + }, + { + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4115 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4774 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4775 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4776 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4777 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4778 + }, + { + "id" : "minecraft:fence", + "blockRuntimeId" : 4779 + }, + { + "id" : "minecraft:nether_brick_fence", + "blockRuntimeId" : 5689 + }, + { + "id" : "minecraft:crimson_fence", + "blockRuntimeId" : 3818 + }, + { + "id" : "minecraft:warped_fence", + "blockRuntimeId" : 7576 + }, + { + "id" : "minecraft:fence_gate", + "blockRuntimeId" : 4780 + }, + { + "id" : "minecraft:spruce_fence_gate", + "blockRuntimeId" : 7010 + }, + { + "id" : "minecraft:birch_fence_gate", + "blockRuntimeId" : 400 + }, + { + "id" : "minecraft:jungle_fence_gate", + "blockRuntimeId" : 5253 + }, + { + "id" : "minecraft:acacia_fence_gate", + "blockRuntimeId" : 44 + }, + { + "id" : "minecraft:dark_oak_fence_gate", + "blockRuntimeId" : 3981 + }, + { + "id" : "minecraft:crimson_fence_gate", + "blockRuntimeId" : 3819 + }, + { + "id" : "minecraft:warped_fence_gate", + "blockRuntimeId" : 7577 + }, + { + "id" : "minecraft:normal_stone_stairs", + "blockRuntimeId" : 5708 + }, + { + "id" : "minecraft:stone_stairs", + "blockRuntimeId" : 7281 + }, + { + "id" : "minecraft:mossy_cobblestone_stairs", + "blockRuntimeId" : 5668 + }, + { + "id" : "minecraft:oak_stairs", + "blockRuntimeId" : 5717 + }, + { + "id" : "minecraft:spruce_stairs", + "blockRuntimeId" : 7042 + }, + { + "id" : "minecraft:birch_stairs", + "blockRuntimeId" : 432 + }, + { + "id" : "minecraft:jungle_stairs", + "blockRuntimeId" : 5285 + }, + { + "id" : "minecraft:acacia_stairs", + "blockRuntimeId" : 76 + }, + { + "id" : "minecraft:dark_oak_stairs", + "blockRuntimeId" : 4013 + }, + { + "id" : "minecraft:stone_brick_stairs", + "blockRuntimeId" : 7187 + }, + { + "id" : "minecraft:mossy_stone_brick_stairs", + "blockRuntimeId" : 5676 + }, + { + "id" : "minecraft:sandstone_stairs", + "blockRuntimeId" : 6710 + }, + { + "id" : "minecraft:smooth_sandstone_stairs", + "blockRuntimeId" : 6903 + }, + { + "id" : "minecraft:red_sandstone_stairs", + "blockRuntimeId" : 6637 + }, + { + "id" : "minecraft:smooth_red_sandstone_stairs", + "blockRuntimeId" : 6895 + }, + { + "id" : "minecraft:granite_stairs", + "blockRuntimeId" : 4989 + }, + { + "id" : "minecraft:polished_granite_stairs", + "blockRuntimeId" : 6386 + }, + { + "id" : "minecraft:diorite_stairs", + "blockRuntimeId" : 4476 + }, + { + "id" : "minecraft:polished_diorite_stairs", + "blockRuntimeId" : 6378 + }, + { + "id" : "minecraft:andesite_stairs", + "blockRuntimeId" : 144 + }, + { + "id" : "minecraft:polished_andesite_stairs", + "blockRuntimeId" : 5814 + }, + { + "id" : "minecraft:brick_stairs", + "blockRuntimeId" : 876 + }, + { + "id" : "minecraft:nether_brick_stairs", + "blockRuntimeId" : 5690 + }, + { + "id" : "minecraft:red_nether_brick_stairs", + "blockRuntimeId" : 6625 + }, + { + "id" : "minecraft:end_brick_stairs", + "blockRuntimeId" : 4720 + }, + { + "id" : "minecraft:quartz_stairs", + "blockRuntimeId" : 6559 + }, + { + "id" : "minecraft:smooth_quartz_stairs", + "blockRuntimeId" : 6887 + }, + { + "id" : "minecraft:purpur_stairs", + "blockRuntimeId" : 6537 + }, + { + "id" : "minecraft:prismarine_stairs", + "blockRuntimeId" : 6449 + }, + { + "id" : "minecraft:dark_prismarine_stairs", + "blockRuntimeId" : 4037 + }, + { + "id" : "minecraft:prismarine_bricks_stairs", + "blockRuntimeId" : 6441 + }, + { + "id" : "minecraft:crimson_stairs", + "blockRuntimeId" : 3860 + }, + { + "id" : "minecraft:warped_stairs", + "blockRuntimeId" : 7618 + }, + { + "id" : "minecraft:blackstone_stairs", + "blockRuntimeId" : 499 + }, + { + "id" : "minecraft:polished_blackstone_stairs", + "blockRuntimeId" : 6033 + }, + { + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5830 + }, + { + "id" : "minecraft:cut_copper_stairs", + "blockRuntimeId" : 3913 + }, + { + "id" : "minecraft:exposed_cut_copper_stairs", + "blockRuntimeId" : 4756 + }, + { + "id" : "minecraft:weathered_cut_copper_stairs", + "blockRuntimeId" : 7745 + }, + { + "id" : "minecraft:oxidized_cut_copper_stairs", + "blockRuntimeId" : 5758 + }, + { + "id" : "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId" : 7689 + }, + { + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId" : 7703 + }, + { + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId" : 7731 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7717 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs", + "blockRuntimeId" : 1148 + }, + { + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4290 + }, + { + "id" : "minecraft:polished_deepslate_stairs", + "blockRuntimeId" : 6208 + }, + { + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4107 + }, + { + "id" : "minecraft:wooden_door" + }, + { + "id" : "minecraft:spruce_door" + }, + { + "id" : "minecraft:birch_door" + }, + { + "id" : "minecraft:jungle_door" + }, + { + "id" : "minecraft:acacia_door" + }, + { + "id" : "minecraft:dark_oak_door" + }, + { + "id" : "minecraft:iron_door" + }, + { + "id" : "minecraft:crimson_door" + }, + { + "id" : "minecraft:warped_door" + }, + { + "id" : "minecraft:trapdoor", + "blockRuntimeId" : 7363 + }, + { + "id" : "minecraft:spruce_trapdoor", + "blockRuntimeId" : 7066 + }, + { + "id" : "minecraft:birch_trapdoor", + "blockRuntimeId" : 456 + }, + { + "id" : "minecraft:jungle_trapdoor", + "blockRuntimeId" : 5309 + }, + { + "id" : "minecraft:acacia_trapdoor", + "blockRuntimeId" : 100 + }, + { + "id" : "minecraft:dark_oak_trapdoor", + "blockRuntimeId" : 4021 + }, + { + "id" : "minecraft:iron_trapdoor", + "blockRuntimeId" : 5168 + }, + { + "id" : "minecraft:crimson_trapdoor", + "blockRuntimeId" : 3887 + }, + { + "id" : "minecraft:warped_trapdoor", + "blockRuntimeId" : 7645 + }, + { + "id" : "minecraft:iron_bars", + "blockRuntimeId" : 5133 + }, + { + "id" : "minecraft:glass", + "blockRuntimeId" : 4883 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7088 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7096 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7095 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7103 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7100 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7102 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7089 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7092 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7093 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7101 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7097 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7091 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7099 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7098 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7090 + }, + { + "id" : "minecraft:stained_glass", + "blockRuntimeId" : 7094 + }, + { + "id" : "minecraft:tinted_glass", + "blockRuntimeId" : 7352 + }, + { + "id" : "minecraft:glass_pane", + "blockRuntimeId" : 4884 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7104 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7112 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7111 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7119 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7116 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7118 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7105 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7108 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7109 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7117 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7113 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7107 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7115 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7114 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7106 + }, + { + "id" : "minecraft:stained_glass_pane", + "blockRuntimeId" : 7110 + }, + { + "id" : "minecraft:ladder", + "blockRuntimeId" : 5357 + }, + { + "id" : "minecraft:scaffolding", + "blockRuntimeId" : 6730 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7223 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7273 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7226 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7244 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7903 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7904 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7905 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7906 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7907 + }, + { + "id" : "minecraft:wooden_slab", + "blockRuntimeId" : 7908 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7228 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7271 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7224 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7274 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7245 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7239 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7275 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7256 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7261 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7262 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7259 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7260 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7258 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7257 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7227 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7230 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7246 + }, + { + "id" : "minecraft:double_stone_slab3", + "blockRuntimeId" : 7255 + }, + { + "id" : "minecraft:double_stone_slab", + "blockRuntimeId" : 7229 + }, + { + "id" : "minecraft:double_stone_slab4", + "blockRuntimeId" : 7272 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7240 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7241 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7242 + }, + { + "id" : "minecraft:double_stone_slab2", + "blockRuntimeId" : 7243 + }, + { + "id" : "minecraft:crimson_slab", + "blockRuntimeId" : 3858 + }, + { + "id" : "minecraft:warped_slab", + "blockRuntimeId" : 7616 + }, + { + "id" : "minecraft:blackstone_slab", + "blockRuntimeId" : 497 + }, + { + "id" : "minecraft:polished_blackstone_slab", + "blockRuntimeId" : 6031 + }, + { + "id" : "minecraft:polished_blackstone_brick_slab", + "blockRuntimeId" : 5828 + }, + { + "id" : "minecraft:cut_copper_slab", + "blockRuntimeId" : 3911 + }, + { + "id" : "minecraft:exposed_cut_copper_slab", + "blockRuntimeId" : 4754 + }, + { + "id" : "minecraft:weathered_cut_copper_slab", + "blockRuntimeId" : 7743 + }, + { + "id" : "minecraft:oxidized_cut_copper_slab", + "blockRuntimeId" : 5756 + }, + { + "id" : "minecraft:waxed_cut_copper_slab", + "blockRuntimeId" : 7687 + }, + { + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "blockRuntimeId" : 7701 + }, + { + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "blockRuntimeId" : 7729 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId" : 7715 + }, + { + "id" : "minecraft:cobbled_deepslate_slab", + "blockRuntimeId" : 1146 + }, + { + "id" : "minecraft:polished_deepslate_slab", + "blockRuntimeId" : 6206 + }, + { + "id" : "minecraft:deepslate_tile_slab", + "blockRuntimeId" : 4288 + }, + { + "id" : "minecraft:deepslate_brick_slab", + "blockRuntimeId" : 4105 + }, + { + "id" : "minecraft:brick_block", + "blockRuntimeId" : 875 + }, + { + "id" : "minecraft:chiseled_nether_bricks", + "blockRuntimeId" : 1130 + }, + { + "id" : "minecraft:cracked_nether_bricks", + "blockRuntimeId" : 3769 + }, + { + "id" : "minecraft:quartz_bricks", + "blockRuntimeId" : 6557 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7289 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7290 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7291 + }, + { + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7292 + }, + { + "id" : "minecraft:end_bricks", + "blockRuntimeId" : 4728 + }, + { + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6440 + }, + { + "id" : "minecraft:polished_blackstone_bricks", + "blockRuntimeId" : 6000 + }, + { + "id" : "minecraft:cracked_polished_blackstone_bricks", + "blockRuntimeId" : 3770 + }, + { + "id" : "minecraft:gilded_blackstone", + "blockRuntimeId" : 4882 + }, + { + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1131 + }, + { + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4460 + }, + { + "id" : "minecraft:cracked_deepslate_tiles", + "blockRuntimeId" : 3768 + }, + { + "id" : "minecraft:deepslate_bricks", + "blockRuntimeId" : 4277 + }, + { + "id" : "minecraft:cracked_deepslate_bricks", + "blockRuntimeId" : 3767 + }, + { + "id" : "minecraft:chiseled_deepslate", + "blockRuntimeId" : 1129 + }, + { + "id" : "minecraft:cobblestone", + "blockRuntimeId" : 1318 + }, + { + "id" : "minecraft:mossy_cobblestone", + "blockRuntimeId" : 5667 + }, + { + "id" : "minecraft:cobbled_deepslate", + "blockRuntimeId" : 1143 + }, + { + "id" : "minecraft:smooth_stone", + "blockRuntimeId" : 6911 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6706 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6707 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6708 + }, + { + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6709 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6633 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6634 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6635 + }, + { + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6636 + }, + { + "id" : "minecraft:coal_block", + "blockRuntimeId" : 1141 + }, + { + "id" : "minecraft:dried_kelp_block", + "blockRuntimeId" : 4584 + }, + { + "id" : "minecraft:gold_block", + "blockRuntimeId" : 4975 + }, + { + "id" : "minecraft:iron_block", + "blockRuntimeId" : 5134 + }, + { + "id" : "minecraft:copper_block", + "blockRuntimeId" : 3677 + }, + { + "id" : "minecraft:exposed_copper", + "blockRuntimeId" : 4752 + }, + { + "id" : "minecraft:weathered_copper", + "blockRuntimeId" : 7741 + }, + { + "id" : "minecraft:oxidized_copper", + "blockRuntimeId" : 5754 + }, + { + "id" : "minecraft:waxed_copper", + "blockRuntimeId" : 7685 + }, + { + "id" : "minecraft:waxed_exposed_copper", + "blockRuntimeId" : 7699 + }, + { + "id" : "minecraft:waxed_weathered_copper", + "blockRuntimeId" : 7727 + }, + { + "id" : "minecraft:waxed_oxidized_copper", + "blockRuntimeId" : 7713 + }, + { + "id" : "minecraft:cut_copper", + "blockRuntimeId" : 3910 + }, + { + "id" : "minecraft:exposed_cut_copper", + "blockRuntimeId" : 4753 + }, + { + "id" : "minecraft:weathered_cut_copper", + "blockRuntimeId" : 7742 + }, + { + "id" : "minecraft:oxidized_cut_copper", + "blockRuntimeId" : 5755 + }, + { + "id" : "minecraft:waxed_cut_copper", + "blockRuntimeId" : 7686 + }, + { + "id" : "minecraft:waxed_exposed_cut_copper", + "blockRuntimeId" : 7700 + }, + { + "id" : "minecraft:waxed_weathered_cut_copper", + "blockRuntimeId" : 7728 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId" : 7714 + }, + { + "id" : "minecraft:emerald_block", + "blockRuntimeId" : 4717 + }, + { + "id" : "minecraft:diamond_block", + "blockRuntimeId" : 4474 + }, + { + "id" : "minecraft:lapis_block", + "blockRuntimeId" : 5365 + }, + { + "id" : "minecraft:raw_iron_block", + "blockRuntimeId" : 6579 + }, + { + "id" : "minecraft:raw_copper_block", + "blockRuntimeId" : 6577 + }, + { + "id" : "minecraft:raw_gold_block", + "blockRuntimeId" : 6578 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6545 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6547 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6546 + }, + { + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6548 + }, + { + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6438 + }, + { + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6439 + }, + { + "id" : "minecraft:slime", + "blockRuntimeId" : 6864 + }, + { + "id" : "minecraft:honey_block", + "blockRuntimeId" : 5112 + }, + { + "id" : "minecraft:honeycomb_block", + "blockRuntimeId" : 5113 + }, + { + "id" : "minecraft:hay_block", + "blockRuntimeId" : 5084 + }, + { + "id" : "minecraft:bone_block", + "blockRuntimeId" : 692 + }, + { + "id" : "minecraft:nether_brick", + "blockRuntimeId" : 5688 + }, + { + "id" : "minecraft:red_nether_brick", + "blockRuntimeId" : 6624 + }, + { + "id" : "minecraft:netherite_block", + "blockRuntimeId" : 5705 + }, + { + "id" : "minecraft:lodestone", + "blockRuntimeId" : 5563 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + }, + { + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 963 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 971 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 970 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 978 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 975 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 977 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 964 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 967 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 968 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 976 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 972 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 966 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 974 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 973 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 965 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 969 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3660 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3668 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3667 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3675 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3672 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3674 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3661 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3664 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3665 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3673 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3669 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3663 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3671 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3670 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3662 + }, + { + "id" : "minecraft:concrete_powder", + "blockRuntimeId" : 3666 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3644 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3652 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3651 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3659 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3656 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3658 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3645 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3648 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3649 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3657 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3653 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3647 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3655 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3654 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3646 + }, + { + "id" : "minecraft:concrete", + "blockRuntimeId" : 3650 + }, + { + "id" : "minecraft:clay", + "blockRuntimeId" : 1139 + }, + { + "id" : "minecraft:hardened_clay", + "blockRuntimeId" : 5083 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7120 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7128 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7127 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7135 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7132 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7134 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7121 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7124 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7125 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7133 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7129 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7123 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7131 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7130 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7122 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 7126 + }, + { + "id" : "minecraft:white_glazed_terracotta", + "blockRuntimeId" : 7800 + }, + { + "id" : "minecraft:silver_glazed_terracotta", + "blockRuntimeId" : 6846 + }, + { + "id" : "minecraft:gray_glazed_terracotta", + "blockRuntimeId" : 5010 + }, + { + "id" : "minecraft:black_glazed_terracotta", + "blockRuntimeId" : 488 + }, + { + "id" : "minecraft:brown_glazed_terracotta", + "blockRuntimeId" : 894 + }, + { + "id" : "minecraft:red_glazed_terracotta", + "blockRuntimeId" : 6601 + }, + { + "id" : "minecraft:orange_glazed_terracotta", + "blockRuntimeId" : 5748 + }, + { + "id" : "minecraft:yellow_glazed_terracotta", + "blockRuntimeId" : 7942 + }, + { + "id" : "minecraft:lime_glazed_terracotta", + "blockRuntimeId" : 5532 + }, + { + "id" : "minecraft:green_glazed_terracotta", + "blockRuntimeId" : 5026 + }, + { + "id" : "minecraft:cyan_glazed_terracotta", + "blockRuntimeId" : 3931 + }, + { + "id" : "minecraft:light_blue_glazed_terracotta", + "blockRuntimeId" : 5484 + }, + { + "id" : "minecraft:blue_glazed_terracotta", + "blockRuntimeId" : 685 + }, + { + "id" : "minecraft:purple_glazed_terracotta", + "blockRuntimeId" : 6519 + }, + { + "id" : "minecraft:magenta_glazed_terracotta", + "blockRuntimeId" : 5596 + }, + { + "id" : "minecraft:pink_glazed_terracotta", + "blockRuntimeId" : 5779 + }, + { + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6525 + }, + { + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6527 + }, + { + "id" : "minecraft:nether_wart_block", + "blockRuntimeId" : 5704 + }, + { + "id" : "minecraft:warped_wart_block", + "blockRuntimeId" : 7667 + }, + { + "id" : "minecraft:shroomlight", + "blockRuntimeId" : 6829 + }, + { + "id" : "minecraft:crimson_nylium", + "blockRuntimeId" : 3839 + }, + { + "id" : "minecraft:warped_nylium", + "blockRuntimeId" : 7597 + }, + { + "id" : "minecraft:basalt", + "blockRuntimeId" : 214 + }, + { + "id" : "minecraft:polished_basalt", + "blockRuntimeId" : 5822 + }, + { + "id" : "minecraft:smooth_basalt", + "blockRuntimeId" : 6886 + }, + { + "id" : "minecraft:soul_soil", + "blockRuntimeId" : 6956 + }, + { + "id" : "minecraft:dirt", + "blockRuntimeId" : 4484 + }, + { + "id" : "minecraft:dirt", + "blockRuntimeId" : 4485 + }, + { + "id" : "minecraft:farmland", + "blockRuntimeId" : 4766 + }, + { + "id" : "minecraft:grass", + "blockRuntimeId" : 4997 + }, + { + "id" : "minecraft:grass_path", + "blockRuntimeId" : 4998 + }, + { + "id" : "minecraft:podzol", + "blockRuntimeId" : 5803 + }, + { + "id" : "minecraft:mycelium", + "blockRuntimeId" : 5685 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7180 + }, + { + "id" : "minecraft:iron_ore", + "blockRuntimeId" : 5167 + }, + { + "id" : "minecraft:gold_ore", + "blockRuntimeId" : 4976 + }, + { + "id" : "minecraft:diamond_ore", + "blockRuntimeId" : 4475 + }, + { + "id" : "minecraft:lapis_ore", + "blockRuntimeId" : 5366 + }, + { + "id" : "minecraft:redstone_ore", + "blockRuntimeId" : 6647 + }, + { + "id" : "minecraft:coal_ore", + "blockRuntimeId" : 1142 + }, + { + "id" : "minecraft:copper_ore", + "blockRuntimeId" : 3678 + }, + { + "id" : "minecraft:emerald_ore", + "blockRuntimeId" : 4718 + }, + { + "id" : "minecraft:quartz_ore", + "blockRuntimeId" : 6558 + }, + { + "id" : "minecraft:nether_gold_ore", + "blockRuntimeId" : 5698 + }, + { + "id" : "minecraft:ancient_debris", + "blockRuntimeId" : 143 + }, + { + "id" : "minecraft:deepslate_iron_ore", + "blockRuntimeId" : 4283 + }, + { + "id" : "minecraft:deepslate_gold_ore", + "blockRuntimeId" : 4282 + }, + { + "id" : "minecraft:deepslate_diamond_ore", + "blockRuntimeId" : 4280 + }, + { + "id" : "minecraft:deepslate_lapis_ore", + "blockRuntimeId" : 4284 + }, + { + "id" : "minecraft:deepslate_redstone_ore", + "blockRuntimeId" : 4285 + }, + { + "id" : "minecraft:deepslate_emerald_ore", + "blockRuntimeId" : 4281 + }, + { + "id" : "minecraft:deepslate_coal_ore", + "blockRuntimeId" : 4278 + }, + { + "id" : "minecraft:deepslate_copper_ore", + "blockRuntimeId" : 4279 + }, + { + "id" : "minecraft:gravel", + "blockRuntimeId" : 4999 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7181 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7183 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7185 + }, + { + "id" : "minecraft:blackstone", + "blockRuntimeId" : 494 + }, + { + "id" : "minecraft:deepslate", + "blockRuntimeId" : 4100 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7182 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7184 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 7186 + }, + { + "id" : "minecraft:polished_blackstone", + "blockRuntimeId" : 5825 + }, + { + "id" : "minecraft:polished_deepslate", + "blockRuntimeId" : 6203 + }, + { + "id" : "minecraft:sand", + "blockRuntimeId" : 6704 + }, + { + "id" : "minecraft:sand", + "blockRuntimeId" : 6705 + }, + { + "id" : "minecraft:cactus", + "blockRuntimeId" : 920 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5564 + }, + { + "id" : "minecraft:stripped_oak_log", + "blockRuntimeId" : 7319 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5565 + }, + { + "id" : "minecraft:stripped_spruce_log", + "blockRuntimeId" : 7322 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5566 + }, + { + "id" : "minecraft:stripped_birch_log", + "blockRuntimeId" : 7304 + }, + { + "id" : "minecraft:log", + "blockRuntimeId" : 5567 + }, + { + "id" : "minecraft:stripped_jungle_log", + "blockRuntimeId" : 7316 + }, + { + "id" : "minecraft:log2", + "blockRuntimeId" : 5576 + }, + { + "id" : "minecraft:stripped_acacia_log", + "blockRuntimeId" : 7301 + }, + { + "id" : "minecraft:log2", + "blockRuntimeId" : 5577 + }, + { + "id" : "minecraft:stripped_dark_oak_log", + "blockRuntimeId" : 7313 + }, + { + "id" : "minecraft:crimson_stem", + "blockRuntimeId" : 3884 + }, + { + "id" : "minecraft:stripped_crimson_stem", + "blockRuntimeId" : 7310 + }, + { + "id" : "minecraft:warped_stem", + "blockRuntimeId" : 7642 + }, + { + "id" : "minecraft:stripped_warped_stem", + "blockRuntimeId" : 7328 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7807 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7813 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7808 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7814 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7809 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7815 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7810 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7816 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7811 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7817 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7812 + }, + { + "id" : "minecraft:wood", + "blockRuntimeId" : 7818 + }, + { + "id" : "minecraft:crimson_hyphae", + "blockRuntimeId" : 3836 + }, + { + "id" : "minecraft:stripped_crimson_hyphae", + "blockRuntimeId" : 7307 + }, + { + "id" : "minecraft:warped_hyphae", + "blockRuntimeId" : 7594 + }, + { + "id" : "minecraft:stripped_warped_hyphae", + "blockRuntimeId" : 7325 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5410 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5411 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5412 + }, + { + "id" : "minecraft:leaves", + "blockRuntimeId" : 5413 + }, + { + "id" : "minecraft:leaves2", + "blockRuntimeId" : 5426 + }, + { + "id" : "minecraft:leaves2", + "blockRuntimeId" : 5427 + }, + { + "id" : "minecraft:azalea_leaves", + "blockRuntimeId" : 169 + }, + { + "id" : "minecraft:azalea_leaves_flowered", + "blockRuntimeId" : 173 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6718 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6719 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6720 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6721 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6722 + }, + { + "id" : "minecraft:sapling", + "blockRuntimeId" : 6723 + }, + { + "id" : "minecraft:bee_nest", + "blockRuntimeId" : 236 + }, + { + "id" : "minecraft:wheat_seeds" + }, + { + "id" : "minecraft:pumpkin_seeds" + }, + { + "id" : "minecraft:melon_seeds" + }, + { + "id" : "minecraft:beetroot_seeds" + }, + { + "id" : "minecraft:wheat" + }, + { + "id" : "minecraft:beetroot" + }, + { + "id" : "minecraft:potato" + }, + { + "id" : "minecraft:poisonous_potato" + }, + { + "id" : "minecraft:carrot" + }, + { + "id" : "minecraft:golden_carrot" + }, + { + "id" : "minecraft:apple" + }, + { + "id" : "minecraft:golden_apple" + }, + { + "id" : "minecraft:enchanted_golden_apple" + }, + { + "id" : "minecraft:melon_block", + "blockRuntimeId" : 5609 + }, + { + "id" : "minecraft:melon_slice" + }, + { + "id" : "minecraft:glistering_melon_slice" + }, + { + "id" : "minecraft:sweet_berries" + }, + { + "id" : "minecraft:glow_berries" + }, + { + "id" : "minecraft:pumpkin", + "blockRuntimeId" : 6457 + }, + { + "id" : "minecraft:carved_pumpkin", + "blockRuntimeId" : 988 + }, + { + "id" : "minecraft:lit_pumpkin", + "blockRuntimeId" : 5551 + }, + { + "id" : "minecraft:honeycomb" + }, + { + "id" : "minecraft:tallgrass", + "blockRuntimeId" : 7349 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4504 + }, + { + "id" : "minecraft:tallgrass", + "blockRuntimeId" : 7348 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4503 + }, + { + "id" : "minecraft:nether_sprouts" + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3682 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3680 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3681 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3679 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3683 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3687 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3685 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3686 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3684 + }, + { + "id" : "minecraft:coral", + "blockRuntimeId" : 3688 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3702 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3700 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3701 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3699 + }, + { + "id" : "minecraft:coral_fan", + "blockRuntimeId" : 3703 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3712 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3710 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3711 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3709 + }, + { + "id" : "minecraft:coral_fan_dead", + "blockRuntimeId" : 3713 + }, + { + "id" : "minecraft:kelp" + }, + { + "id" : "minecraft:seagrass", + "blockRuntimeId" : 6825 + }, + { + "id" : "minecraft:crimson_roots", + "blockRuntimeId" : 3857 + }, + { + "id" : "minecraft:warped_roots", + "blockRuntimeId" : 7615 + }, + { + "id" : "minecraft:yellow_flower", + "blockRuntimeId" : 7941 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6590 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6591 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6592 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6593 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6594 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6595 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6596 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6597 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6598 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6599 + }, + { + "id" : "minecraft:red_flower", + "blockRuntimeId" : 6600 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4501 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4502 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4505 + }, + { + "id" : "minecraft:double_plant", + "blockRuntimeId" : 4506 + }, + { + "id" : "minecraft:wither_rose", + "blockRuntimeId" : 7806 + }, + { + "id" : "minecraft:white_dye" + }, + { + "id" : "minecraft:light_gray_dye" + }, + { + "id" : "minecraft:gray_dye" + }, + { + "id" : "minecraft:black_dye" + }, + { + "id" : "minecraft:brown_dye" + }, + { + "id" : "minecraft:red_dye" + }, + { + "id" : "minecraft:orange_dye" + }, + { + "id" : "minecraft:yellow_dye" + }, + { + "id" : "minecraft:lime_dye" + }, + { + "id" : "minecraft:green_dye" + }, + { + "id" : "minecraft:cyan_dye" + }, + { + "id" : "minecraft:light_blue_dye" + }, + { + "id" : "minecraft:blue_dye" + }, + { + "id" : "minecraft:purple_dye" + }, + { + "id" : "minecraft:magenta_dye" + }, + { + "id" : "minecraft:pink_dye" + }, + { + "id" : "minecraft:ink_sac" + }, + { + "id" : "minecraft:glow_ink_sac" + }, + { + "id" : "minecraft:cocoa_beans" + }, + { + "id" : "minecraft:lapis_lazuli" + }, + { + "id" : "minecraft:bone_meal" + }, + { + "id" : "minecraft:vine", + "blockRuntimeId" : 7502 + }, + { + "id" : "minecraft:weeping_vines", + "blockRuntimeId" : 7756 + }, + { + "id" : "minecraft:twisting_vines", + "blockRuntimeId" : 7430 + }, + { + "id" : "minecraft:waterlily", + "blockRuntimeId" : 7684 + }, + { + "id" : "minecraft:deadbush", + "blockRuntimeId" : 4099 + }, + { + "id" : "minecraft:bamboo", + "blockRuntimeId" : 177 + }, + { + "id" : "minecraft:snow", + "blockRuntimeId" : 6912 + }, + { + "id" : "minecraft:ice", + "blockRuntimeId" : 5126 + }, + { + "id" : "minecraft:packed_ice", + "blockRuntimeId" : 5768 + }, + { + "id" : "minecraft:blue_ice", + "blockRuntimeId" : 691 + }, + { + "id" : "minecraft:snow_layer", + "blockRuntimeId" : 6913 + }, + { + "id" : "minecraft:pointed_dripstone", + "blockRuntimeId" : 5809 + }, + { + "id" : "minecraft:dripstone_block", + "blockRuntimeId" : 4585 + }, + { + "id" : "minecraft:moss_carpet", + "blockRuntimeId" : 5666 + }, + { + "id" : "minecraft:moss_block", + "blockRuntimeId" : 5665 + }, + { + "id" : "minecraft:dirt_with_roots", + "blockRuntimeId" : 4486 + }, + { + "id" : "minecraft:hanging_roots", + "blockRuntimeId" : 5048 + }, + { + "id" : "minecraft:big_dripleaf", + "blockRuntimeId" : 328 + }, + { + "id" : "minecraft:small_dripleaf_block", + "blockRuntimeId" : 6878 + }, + { + "id" : "minecraft:spore_blossom", + "blockRuntimeId" : 6965 + }, + { + "id" : "minecraft:azalea", + "blockRuntimeId" : 168 + }, + { + "id" : "minecraft:flowering_azalea", + "blockRuntimeId" : 4815 + }, + { + "id" : "minecraft:glow_lichen", + "blockRuntimeId" : 4972 + }, + { + "id" : "minecraft:amethyst_block", + "blockRuntimeId" : 136 + }, + { + "id" : "minecraft:budding_amethyst", + "blockRuntimeId" : 919 + }, + { + "id" : "minecraft:amethyst_cluster", + "blockRuntimeId" : 137 + }, + { + "id" : "minecraft:large_amethyst_bud", + "blockRuntimeId" : 5367 + }, + { + "id" : "minecraft:medium_amethyst_bud", + "blockRuntimeId" : 5603 + }, + { + "id" : "minecraft:small_amethyst_bud", + "blockRuntimeId" : 6865 + }, + { + "id" : "minecraft:tuff", + "blockRuntimeId" : 7417 + }, + { + "id" : "minecraft:calcite", + "blockRuntimeId" : 943 + }, + { + "id" : "minecraft:chicken" + }, + { + "id" : "minecraft:porkchop" + }, + { + "id" : "minecraft:beef" + }, + { + "id" : "minecraft:mutton" + }, + { + "id" : "minecraft:rabbit" + }, + { + "id" : "minecraft:cod" + }, + { + "id" : "minecraft:salmon" + }, + { + "id" : "minecraft:tropical_fish" + }, + { + "id" : "minecraft:pufferfish" + }, + { + "id" : "minecraft:brown_mushroom", + "blockRuntimeId" : 900 + }, + { + "id" : "minecraft:red_mushroom", + "blockRuntimeId" : 6607 + }, + { + "id" : "minecraft:crimson_fungus", + "blockRuntimeId" : 3835 + }, + { + "id" : "minecraft:warped_fungus", + "blockRuntimeId" : 7593 + }, + { + "id" : "minecraft:brown_mushroom_block", + "blockRuntimeId" : 915 + }, + { + "id" : "minecraft:red_mushroom_block", + "blockRuntimeId" : 6622 + }, + { + "id" : "minecraft:brown_mushroom_block", + "blockRuntimeId" : 916 + }, + { + "id" : "minecraft:brown_mushroom_block", + "blockRuntimeId" : 901 + }, + { + "id" : "minecraft:egg" + }, + { + "id" : "minecraft:sugar_cane" + }, + { + "id" : "minecraft:sugar" + }, + { + "id" : "minecraft:rotten_flesh" + }, + { + "id" : "minecraft:bone" + }, + { + "id" : "minecraft:web", + "blockRuntimeId" : 7755 + }, + { + "id" : "minecraft:spider_eye" + }, + { + "id" : "minecraft:mob_spawner", + "blockRuntimeId" : 5658 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5659 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5660 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5661 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5662 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5663 + }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5664 + }, + { + "id" : "minecraft:infested_deepslate", + "blockRuntimeId" : 5127 + }, + { + "id" : "minecraft:dragon_egg", + "blockRuntimeId" : 4583 + }, + { + "id" : "minecraft:turtle_egg", + "blockRuntimeId" : 7418 + }, + { + "id" : "minecraft:chicken_spawn_egg" + }, + { + "id" : "minecraft:bee_spawn_egg" + }, + { + "id" : "minecraft:cow_spawn_egg" + }, + { + "id" : "minecraft:pig_spawn_egg" + }, + { + "id" : "minecraft:sheep_spawn_egg" + }, + { + "id" : "minecraft:wolf_spawn_egg" + }, + { + "id" : "minecraft:polar_bear_spawn_egg" + }, + { + "id" : "minecraft:ocelot_spawn_egg" + }, + { + "id" : "minecraft:cat_spawn_egg" + }, + { + "id" : "minecraft:mooshroom_spawn_egg" + }, + { + "id" : "minecraft:bat_spawn_egg" + }, + { + "id" : "minecraft:parrot_spawn_egg" + }, + { + "id" : "minecraft:rabbit_spawn_egg" + }, + { + "id" : "minecraft:llama_spawn_egg" + }, + { + "id" : "minecraft:horse_spawn_egg" + }, + { + "id" : "minecraft:donkey_spawn_egg" + }, + { + "id" : "minecraft:mule_spawn_egg" + }, + { + "id" : "minecraft:skeleton_horse_spawn_egg" + }, + { + "id" : "minecraft:zombie_horse_spawn_egg" + }, + { + "id" : "minecraft:tropical_fish_spawn_egg" + }, + { + "id" : "minecraft:cod_spawn_egg" + }, + { + "id" : "minecraft:pufferfish_spawn_egg" + }, + { + "id" : "minecraft:salmon_spawn_egg" + }, + { + "id" : "minecraft:dolphin_spawn_egg" + }, + { + "id" : "minecraft:turtle_spawn_egg" + }, + { + "id" : "minecraft:panda_spawn_egg" + }, + { + "id" : "minecraft:fox_spawn_egg" + }, + { + "id" : "minecraft:creeper_spawn_egg" + }, + { + "id" : "minecraft:enderman_spawn_egg" + }, + { + "id" : "minecraft:silverfish_spawn_egg" + }, + { + "id" : "minecraft:skeleton_spawn_egg" + }, + { + "id" : "minecraft:wither_skeleton_spawn_egg" + }, + { + "id" : "minecraft:stray_spawn_egg" + }, + { + "id" : "minecraft:slime_spawn_egg" + }, + { + "id" : "minecraft:spider_spawn_egg" + }, + { + "id" : "minecraft:zombie_spawn_egg" + }, + { + "id" : "minecraft:zombie_pigman_spawn_egg" + }, + { + "id" : "minecraft:husk_spawn_egg" + }, + { + "id" : "minecraft:drowned_spawn_egg" + }, + { + "id" : "minecraft:squid_spawn_egg" + }, + { + "id" : "minecraft:glow_squid_spawn_egg" + }, + { + "id" : "minecraft:cave_spider_spawn_egg" + }, + { + "id" : "minecraft:witch_spawn_egg" + }, + { + "id" : "minecraft:guardian_spawn_egg" + }, + { + "id" : "minecraft:elder_guardian_spawn_egg" + }, + { + "id" : "minecraft:endermite_spawn_egg" + }, + { + "id" : "minecraft:magma_cube_spawn_egg" + }, + { + "id" : "minecraft:strider_spawn_egg" + }, + { + "id" : "minecraft:hoglin_spawn_egg" + }, + { + "id" : "minecraft:piglin_spawn_egg" + }, + { + "id" : "minecraft:zoglin_spawn_egg" + }, + { + "id" : "minecraft:piglin_brute_spawn_egg" + }, + { + "id" : "minecraft:goat_spawn_egg" + }, + { + "id" : "minecraft:axolotl_spawn_egg" + }, + { + "id" : "minecraft:ghast_spawn_egg" + }, + { + "id" : "minecraft:blaze_spawn_egg" + }, + { + "id" : "minecraft:shulker_spawn_egg" + }, + { + "id" : "minecraft:vindicator_spawn_egg" + }, + { + "id" : "minecraft:evoker_spawn_egg" + }, + { + "id" : "minecraft:vex_spawn_egg" + }, + { + "id" : "minecraft:villager_spawn_egg" + }, + { + "id" : "minecraft:wandering_trader_spawn_egg" + }, + { + "id" : "minecraft:zombie_villager_spawn_egg" + }, + { + "id" : "minecraft:phantom_spawn_egg" + }, + { + "id" : "minecraft:pillager_spawn_egg" + }, + { + "id" : "minecraft:ravager_spawn_egg" + }, + { + "id" : "minecraft:obsidian", + "blockRuntimeId" : 5737 + }, + { + "id" : "minecraft:crying_obsidian", + "blockRuntimeId" : 3909 + }, + { + "id" : "minecraft:bedrock", + "blockRuntimeId" : 234 + }, + { + "id" : "minecraft:soul_sand", + "blockRuntimeId" : 6955 + }, + { + "id" : "minecraft:netherrack", + "blockRuntimeId" : 5706 + }, + { + "id" : "minecraft:magma", + "blockRuntimeId" : 5602 + }, + { + "id" : "minecraft:nether_wart" + }, + { + "id" : "minecraft:end_stone", + "blockRuntimeId" : 4745 + }, + { + "id" : "minecraft:chorus_flower", + "blockRuntimeId" : 1132 + }, + { + "id" : "minecraft:chorus_plant", + "blockRuntimeId" : 1138 + }, + { + "id" : "minecraft:chorus_fruit" + }, + { + "id" : "minecraft:popped_chorus_fruit" + }, + { + "id" : "minecraft:sponge", + "blockRuntimeId" : 6963 + }, + { + "id" : "minecraft:sponge", + "blockRuntimeId" : 6964 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3689 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3690 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3691 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3692 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3693 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3694 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3695 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3696 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3697 + }, + { + "id" : "minecraft:coral_block", + "blockRuntimeId" : 3698 + }, + { + "id" : "minecraft:leather_helmet" + }, + { + "id" : "minecraft:chainmail_helmet" + }, + { + "id" : "minecraft:iron_helmet" + }, + { + "id" : "minecraft:golden_helmet" + }, + { + "id" : "minecraft:diamond_helmet" + }, + { + "id" : "minecraft:netherite_helmet" + }, + { + "id" : "minecraft:leather_chestplate" + }, + { + "id" : "minecraft:chainmail_chestplate" + }, + { + "id" : "minecraft:iron_chestplate" + }, + { + "id" : "minecraft:golden_chestplate" + }, + { + "id" : "minecraft:diamond_chestplate" + }, + { + "id" : "minecraft:netherite_chestplate" + }, + { + "id" : "minecraft:leather_leggings" + }, + { + "id" : "minecraft:chainmail_leggings" + }, + { + "id" : "minecraft:iron_leggings" + }, + { + "id" : "minecraft:golden_leggings" + }, + { + "id" : "minecraft:diamond_leggings" + }, + { + "id" : "minecraft:netherite_leggings" + }, + { + "id" : "minecraft:leather_boots" + }, + { + "id" : "minecraft:chainmail_boots" + }, + { + "id" : "minecraft:iron_boots" + }, + { + "id" : "minecraft:golden_boots" + }, + { + "id" : "minecraft:diamond_boots" + }, + { + "id" : "minecraft:netherite_boots" + }, + { + "id" : "minecraft:wooden_sword" + }, + { + "id" : "minecraft:stone_sword" + }, + { + "id" : "minecraft:iron_sword" + }, + { + "id" : "minecraft:golden_sword" + }, + { + "id" : "minecraft:diamond_sword" + }, + { + "id" : "minecraft:netherite_sword" + }, + { + "id" : "minecraft:wooden_axe" + }, + { + "id" : "minecraft:stone_axe" + }, + { + "id" : "minecraft:iron_axe" + }, + { + "id" : "minecraft:golden_axe" + }, + { + "id" : "minecraft:diamond_axe" + }, + { + "id" : "minecraft:netherite_axe" + }, + { + "id" : "minecraft:wooden_pickaxe" + }, + { + "id" : "minecraft:stone_pickaxe" + }, + { + "id" : "minecraft:iron_pickaxe" + }, + { + "id" : "minecraft:golden_pickaxe" + }, + { + "id" : "minecraft:diamond_pickaxe" + }, + { + "id" : "minecraft:netherite_pickaxe" + }, + { + "id" : "minecraft:wooden_shovel" + }, + { + "id" : "minecraft:stone_shovel" + }, + { + "id" : "minecraft:iron_shovel" + }, + { + "id" : "minecraft:golden_shovel" + }, + { + "id" : "minecraft:diamond_shovel" + }, + { + "id" : "minecraft:netherite_shovel" + }, + { + "id" : "minecraft:wooden_hoe" + }, + { + "id" : "minecraft:stone_hoe" + }, + { + "id" : "minecraft:iron_hoe" + }, + { + "id" : "minecraft:golden_hoe" + }, + { + "id" : "minecraft:diamond_hoe" + }, + { + "id" : "minecraft:netherite_hoe" + }, + { + "id" : "minecraft:bow" + }, + { + "id" : "minecraft:crossbow" + }, + { + "id" : "minecraft:arrow" + }, + { + "id" : "minecraft:arrow", + "damage" : 6 + }, + { + "id" : "minecraft:arrow", + "damage" : 7 + }, + { + "id" : "minecraft:arrow", + "damage" : 8 + }, + { + "id" : "minecraft:arrow", + "damage" : 9 + }, + { + "id" : "minecraft:arrow", + "damage" : 10 + }, + { + "id" : "minecraft:arrow", + "damage" : 11 + }, + { + "id" : "minecraft:arrow", + "damage" : 12 + }, + { + "id" : "minecraft:arrow", + "damage" : 13 + }, + { + "id" : "minecraft:arrow", + "damage" : 14 + }, + { + "id" : "minecraft:arrow", + "damage" : 15 + }, + { + "id" : "minecraft:arrow", + "damage" : 16 + }, + { + "id" : "minecraft:arrow", + "damage" : 17 + }, + { + "id" : "minecraft:arrow", + "damage" : 18 + }, + { + "id" : "minecraft:arrow", + "damage" : 19 + }, + { + "id" : "minecraft:arrow", + "damage" : 20 + }, + { + "id" : "minecraft:arrow", + "damage" : 21 + }, + { + "id" : "minecraft:arrow", + "damage" : 22 + }, + { + "id" : "minecraft:arrow", + "damage" : 23 + }, + { + "id" : "minecraft:arrow", + "damage" : 24 + }, + { + "id" : "minecraft:arrow", + "damage" : 25 + }, + { + "id" : "minecraft:arrow", + "damage" : 26 + }, + { + "id" : "minecraft:arrow", + "damage" : 27 + }, + { + "id" : "minecraft:arrow", + "damage" : 28 + }, + { + "id" : "minecraft:arrow", + "damage" : 29 + }, + { + "id" : "minecraft:arrow", + "damage" : 30 + }, + { + "id" : "minecraft:arrow", + "damage" : 31 + }, + { + "id" : "minecraft:arrow", + "damage" : 32 + }, + { + "id" : "minecraft:arrow", + "damage" : 33 + }, + { + "id" : "minecraft:arrow", + "damage" : 34 + }, + { + "id" : "minecraft:arrow", + "damage" : 35 + }, + { + "id" : "minecraft:arrow", + "damage" : 36 + }, + { + "id" : "minecraft:arrow", + "damage" : 37 + }, + { + "id" : "minecraft:arrow", + "damage" : 38 + }, + { + "id" : "minecraft:arrow", + "damage" : 39 + }, + { + "id" : "minecraft:arrow", + "damage" : 40 + }, + { + "id" : "minecraft:arrow", + "damage" : 41 + }, + { + "id" : "minecraft:arrow", + "damage" : 42 + }, + { + "id" : "minecraft:arrow", + "damage" : 43 + }, + { + "id" : "minecraft:shield" + }, + { + "id" : "minecraft:cooked_chicken" + }, + { + "id" : "minecraft:cooked_porkchop" + }, + { + "id" : "minecraft:cooked_beef" + }, + { + "id" : "minecraft:cooked_mutton" + }, + { + "id" : "minecraft:cooked_rabbit" + }, + { + "id" : "minecraft:cooked_cod" + }, + { + "id" : "minecraft:cooked_salmon" + }, + { + "id" : "minecraft:bread" + }, + { + "id" : "minecraft:mushroom_stew" + }, + { + "id" : "minecraft:beetroot_soup" + }, + { + "id" : "minecraft:rabbit_stew" + }, + { + "id" : "minecraft:baked_potato" + }, + { + "id" : "minecraft:cookie" + }, + { + "id" : "minecraft:pumpkin_pie" + }, + { + "id" : "minecraft:cake" + }, + { + "id" : "minecraft:dried_kelp" + }, + { + "id" : "minecraft:fishing_rod" + }, + { + "id" : "minecraft:carrot_on_a_stick" + }, + { + "id" : "minecraft:warped_fungus_on_a_stick" + }, + { + "id" : "minecraft:snowball" + }, + { + "id" : "minecraft:shears" + }, + { + "id" : "minecraft:flint_and_steel" + }, + { + "id" : "minecraft:lead" + }, + { + "id" : "minecraft:clock" + }, + { + "id" : "minecraft:compass" + }, + { + "id" : "minecraft:empty_map" + }, + { + "id" : "minecraft:empty_map", + "damage" : 2 + }, + { + "id" : "minecraft:saddle" + }, + { + "id" : "minecraft:leather_horse_armor" + }, + { + "id" : "minecraft:iron_horse_armor" + }, + { + "id" : "minecraft:golden_horse_armor" + }, + { + "id" : "minecraft:diamond_horse_armor" + }, + { + "id" : "minecraft:trident" + }, + { + "id" : "minecraft:turtle_helmet" + }, + { + "id" : "minecraft:elytra" + }, + { + "id" : "minecraft:totem_of_undying" + }, + { + "id" : "minecraft:glass_bottle" + }, + { + "id" : "minecraft:experience_bottle" + }, + { + "id" : "minecraft:potion" + }, + { + "id" : "minecraft:potion", + "damage" : 1 + }, + { + "id" : "minecraft:potion", + "damage" : 2 + }, + { + "id" : "minecraft:potion", + "damage" : 3 + }, + { + "id" : "minecraft:potion", + "damage" : 4 + }, + { + "id" : "minecraft:potion", + "damage" : 5 + }, + { + "id" : "minecraft:potion", + "damage" : 6 + }, + { + "id" : "minecraft:potion", + "damage" : 7 + }, + { + "id" : "minecraft:potion", + "damage" : 8 + }, + { + "id" : "minecraft:potion", + "damage" : 9 + }, + { + "id" : "minecraft:potion", + "damage" : 10 + }, + { + "id" : "minecraft:potion", + "damage" : 11 + }, + { + "id" : "minecraft:potion", + "damage" : 12 + }, + { + "id" : "minecraft:potion", + "damage" : 13 + }, + { + "id" : "minecraft:potion", + "damage" : 14 + }, + { + "id" : "minecraft:potion", + "damage" : 15 + }, + { + "id" : "minecraft:potion", + "damage" : 16 + }, + { + "id" : "minecraft:potion", + "damage" : 17 + }, + { + "id" : "minecraft:potion", + "damage" : 18 + }, + { + "id" : "minecraft:potion", + "damage" : 19 + }, + { + "id" : "minecraft:potion", + "damage" : 20 + }, + { + "id" : "minecraft:potion", + "damage" : 21 + }, + { + "id" : "minecraft:potion", + "damage" : 22 + }, + { + "id" : "minecraft:potion", + "damage" : 23 + }, + { + "id" : "minecraft:potion", + "damage" : 24 + }, + { + "id" : "minecraft:potion", + "damage" : 25 + }, + { + "id" : "minecraft:potion", + "damage" : 26 + }, + { + "id" : "minecraft:potion", + "damage" : 27 + }, + { + "id" : "minecraft:potion", + "damage" : 28 + }, + { + "id" : "minecraft:potion", + "damage" : 29 + }, + { + "id" : "minecraft:potion", + "damage" : 30 + }, + { + "id" : "minecraft:potion", + "damage" : 31 + }, + { + "id" : "minecraft:potion", + "damage" : 32 + }, + { + "id" : "minecraft:potion", + "damage" : 33 + }, + { + "id" : "minecraft:potion", + "damage" : 34 + }, + { + "id" : "minecraft:potion", + "damage" : 35 + }, + { + "id" : "minecraft:potion", + "damage" : 36 + }, + { + "id" : "minecraft:potion", + "damage" : 37 + }, + { + "id" : "minecraft:potion", + "damage" : 38 + }, + { + "id" : "minecraft:potion", + "damage" : 39 + }, + { + "id" : "minecraft:potion", + "damage" : 40 + }, + { + "id" : "minecraft:potion", + "damage" : 41 + }, + { + "id" : "minecraft:potion", + "damage" : 42 + }, + { + "id" : "minecraft:splash_potion" + }, + { + "id" : "minecraft:splash_potion", + "damage" : 1 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 2 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 3 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 4 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 5 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 6 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 7 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 8 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 9 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 10 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 11 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 12 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 13 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 14 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 15 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 16 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 17 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 18 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 19 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 20 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 21 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 22 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 23 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 24 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 25 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 26 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 27 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 28 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 29 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 30 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 31 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 32 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 33 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 34 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 35 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 36 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 37 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 38 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 39 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 40 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 41 + }, + { + "id" : "minecraft:splash_potion", + "damage" : 42 + }, + { + "id" : "minecraft:lingering_potion" + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 1 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 2 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 3 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 4 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 5 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 6 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 7 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 8 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 9 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 10 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 11 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 12 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 13 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 14 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 15 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 16 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 17 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 18 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 19 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 20 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 21 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 22 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 23 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 24 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 25 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 26 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 27 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 28 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 29 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 30 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 31 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 32 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 33 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 34 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 35 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 36 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 37 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 38 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 39 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 40 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 41 + }, + { + "id" : "minecraft:lingering_potion", + "damage" : 42 + }, + { + "id" : "minecraft:spyglass" + }, + { + "id" : "minecraft:stick" + }, + { + "id" : "minecraft:bed" + }, + { + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "id" : "minecraft:torch", + "blockRuntimeId" : 7357 + }, + { + "id" : "minecraft:soul_torch", + "blockRuntimeId" : 6957 + }, + { + "id" : "minecraft:sea_pickle", + "blockRuntimeId" : 6817 + }, + { + "id" : "minecraft:lantern", + "blockRuntimeId" : 5363 + }, + { + "id" : "minecraft:soul_lantern", + "blockRuntimeId" : 6953 + }, + { + "id" : "minecraft:candle", + "blockRuntimeId" : 953 + }, + { + "id" : "minecraft:white_candle", + "blockRuntimeId" : 7790 + }, + { + "id" : "minecraft:orange_candle", + "blockRuntimeId" : 5738 + }, + { + "id" : "minecraft:magenta_candle", + "blockRuntimeId" : 5586 + }, + { + "id" : "minecraft:light_blue_candle", + "blockRuntimeId" : 5474 + }, + { + "id" : "minecraft:yellow_candle", + "blockRuntimeId" : 7931 + }, + { + "id" : "minecraft:lime_candle", + "blockRuntimeId" : 5522 + }, + { + "id" : "minecraft:pink_candle", + "blockRuntimeId" : 5769 + }, + { + "id" : "minecraft:gray_candle", + "blockRuntimeId" : 5000 + }, + { + "id" : "minecraft:light_gray_candle", + "blockRuntimeId" : 5490 + }, + { + "id" : "minecraft:cyan_candle", + "blockRuntimeId" : 3921 + }, + { + "id" : "minecraft:purple_candle", + "blockRuntimeId" : 6509 + }, + { + "id" : "minecraft:blue_candle", + "blockRuntimeId" : 675 + }, + { + "id" : "minecraft:brown_candle", + "blockRuntimeId" : 884 + }, + { + "id" : "minecraft:green_candle", + "blockRuntimeId" : 5016 + }, + { + "id" : "minecraft:red_candle", + "blockRuntimeId" : 6580 + }, + { + "id" : "minecraft:black_candle", + "blockRuntimeId" : 478 + }, + { + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3771 + }, + { + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 987 + }, + { + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4812 + }, + { + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6879 + }, + { + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + }, + { + "id" : "minecraft:campfire" + }, + { + "id" : "minecraft:soul_campfire" + }, + { + "id" : "minecraft:furnace", + "blockRuntimeId" : 4876 + }, + { + "id" : "minecraft:blast_furnace", + "blockRuntimeId" : 669 + }, + { + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + }, + { + "id" : "minecraft:respawn_anchor", + "blockRuntimeId" : 6699 + }, + { + "id" : "minecraft:brewing_stand" + }, + { + "id" : "minecraft:anvil", + "blockRuntimeId" : 152 + }, + { + "id" : "minecraft:anvil", + "blockRuntimeId" : 156 + }, + { + "id" : "minecraft:anvil", + "blockRuntimeId" : 160 + }, + { + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5032 + }, + { + "id" : "minecraft:enchanting_table", + "blockRuntimeId" : 4719 + }, + { + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 704 + }, + { + "id" : "minecraft:lectern", + "blockRuntimeId" : 5434 + }, + { + "id" : "minecraft:cauldron" + }, + { + "id" : "minecraft:composter", + "blockRuntimeId" : 3635 + }, + { + "id" : "minecraft:chest", + "blockRuntimeId" : 1123 + }, + { + "id" : "minecraft:trapped_chest", + "blockRuntimeId" : 7379 + }, + { + "id" : "minecraft:ender_chest", + "blockRuntimeId" : 4746 + }, + { + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + }, + { + "id" : "minecraft:undyed_shulker_box", + "blockRuntimeId" : 7462 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + }, + { + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + }, + { + "id" : "minecraft:armor_stand" + }, + { + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5716 + }, + { + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5208 + }, + { + "id" : "minecraft:music_disc_13" + }, + { + "id" : "minecraft:music_disc_cat" + }, + { + "id" : "minecraft:music_disc_blocks" + }, + { + "id" : "minecraft:music_disc_chirp" + }, + { + "id" : "minecraft:music_disc_far" + }, + { + "id" : "minecraft:music_disc_mall" + }, + { + "id" : "minecraft:music_disc_mellohi" + }, + { + "id" : "minecraft:music_disc_stal" + }, + { + "id" : "minecraft:music_disc_strad" + }, + { + "id" : "minecraft:music_disc_ward" + }, + { + "id" : "minecraft:music_disc_11" + }, + { + "id" : "minecraft:music_disc_wait" + }, + { + "id" : "minecraft:music_disc_pigstep" + }, + { + "id" : "minecraft:glowstone_dust" + }, + { + "id" : "minecraft:glowstone", + "blockRuntimeId" : 4974 + }, + { + "id" : "minecraft:redstone_lamp", + "blockRuntimeId" : 6646 + }, + { + "id" : "minecraft:sealantern", + "blockRuntimeId" : 6828 + }, + { + "id" : "minecraft:oak_sign" + }, + { + "id" : "minecraft:spruce_sign" + }, + { + "id" : "minecraft:birch_sign" + }, + { + "id" : "minecraft:jungle_sign" + }, + { + "id" : "minecraft:acacia_sign" + }, + { + "id" : "minecraft:dark_oak_sign" + }, + { + "id" : "minecraft:crimson_sign" + }, + { + "id" : "minecraft:warped_sign" + }, + { + "id" : "minecraft:painting" + }, + { + "id" : "minecraft:frame" + }, + { + "id" : "minecraft:glow_frame" + }, + { + "id" : "minecraft:honey_bottle" + }, + { + "id" : "minecraft:flower_pot" + }, + { + "id" : "minecraft:bowl" + }, + { + "id" : "minecraft:bucket" + }, + { + "id" : "minecraft:milk_bucket" + }, + { + "id" : "minecraft:water_bucket" + }, + { + "id" : "minecraft:lava_bucket" + }, + { + "id" : "minecraft:cod_bucket" + }, + { + "id" : "minecraft:salmon_bucket" + }, + { + "id" : "minecraft:tropical_fish_bucket" + }, + { + "id" : "minecraft:pufferfish_bucket" + }, + { + "id" : "minecraft:powder_snow_bucket" + }, + { + "id" : "minecraft:axolotl_bucket" + }, + { + "id" : "minecraft:skull", + "damage" : 3 + }, + { + "id" : "minecraft:skull", + "damage" : 2 + }, + { + "id" : "minecraft:skull", + "damage" : 4 + }, + { + "id" : "minecraft:skull", + "damage" : 5 + }, + { + "id" : "minecraft:skull" + }, + { + "id" : "minecraft:skull", + "damage" : 1 + }, + { + "id" : "minecraft:beacon", + "blockRuntimeId" : 217 + }, + { + "id" : "minecraft:bell", + "blockRuntimeId" : 292 + }, + { + "id" : "minecraft:conduit", + "blockRuntimeId" : 3676 + }, + { + "id" : "minecraft:stonecutter_block", + "blockRuntimeId" : 7295 + }, + { + "id" : "minecraft:end_portal_frame", + "blockRuntimeId" : 4731 + }, + { + "id" : "minecraft:coal" + }, + { + "id" : "minecraft:charcoal" + }, + { + "id" : "minecraft:diamond" + }, + { + "id" : "minecraft:iron_nugget" + }, + { + "id" : "minecraft:raw_iron" + }, + { + "id" : "minecraft:raw_gold" + }, + { + "id" : "minecraft:raw_copper" + }, + { + "id" : "minecraft:copper_ingot" + }, + { + "id" : "minecraft:iron_ingot" + }, + { + "id" : "minecraft:netherite_scrap" + }, + { + "id" : "minecraft:netherite_ingot" + }, + { + "id" : "minecraft:gold_nugget" + }, + { + "id" : "minecraft:gold_ingot" + }, + { + "id" : "minecraft:emerald" + }, + { + "id" : "minecraft:quartz" + }, + { + "id" : "minecraft:clay_ball" + }, + { + "id" : "minecraft:brick" + }, + { + "id" : "minecraft:netherbrick" + }, + { + "id" : "minecraft:prismarine_shard" + }, + { + "id" : "minecraft:amethyst_shard" + }, + { + "id" : "minecraft:prismarine_crystals" + }, + { + "id" : "minecraft:nautilus_shell" + }, + { + "id" : "minecraft:heart_of_the_sea" + }, + { + "id" : "minecraft:scute" + }, + { + "id" : "minecraft:phantom_membrane" + }, + { + "id" : "minecraft:string" + }, + { + "id" : "minecraft:feather" + }, + { + "id" : "minecraft:flint" + }, + { + "id" : "minecraft:gunpowder" + }, + { + "id" : "minecraft:leather" + }, + { + "id" : "minecraft:rabbit_hide" + }, + { + "id" : "minecraft:rabbit_foot" + }, + { + "id" : "minecraft:fire_charge" + }, + { + "id" : "minecraft:blaze_rod" + }, + { + "id" : "minecraft:blaze_powder" + }, + { + "id" : "minecraft:magma_cream" + }, + { + "id" : "minecraft:fermented_spider_eye" + }, + { + "id" : "minecraft:dragon_breath" + }, + { + "id" : "minecraft:shulker_shell" + }, + { + "id" : "minecraft:ghast_tear" + }, + { + "id" : "minecraft:slime_ball" + }, + { + "id" : "minecraft:ender_pearl" + }, + { + "id" : "minecraft:ender_eye" + }, + { + "id" : "minecraft:nether_star" + }, + { + "id" : "minecraft:end_rod", + "blockRuntimeId" : 4739 + }, + { + "id" : "minecraft:lightning_rod", + "blockRuntimeId" : 5516 + }, + { + "id" : "minecraft:end_crystal" + }, + { + "id" : "minecraft:paper" + }, + { + "id" : "minecraft:book" + }, + { + "id" : "minecraft:writable_book" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA=" + }, + { + "id" : "minecraft:enchanted_book", + "nbt_b64" : "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA=" + }, + { + "id" : "minecraft:oak_boat" + }, + { + "id" : "minecraft:spruce_boat" + }, + { + "id" : "minecraft:birch_boat" + }, + { + "id" : "minecraft:jungle_boat" + }, + { + "id" : "minecraft:acacia_boat" + }, + { + "id" : "minecraft:dark_oak_boat" + }, + { + "id" : "minecraft:rail", + "blockRuntimeId" : 6567 + }, + { + "id" : "minecraft:golden_rail", + "blockRuntimeId" : 4977 + }, + { + "id" : "minecraft:detector_rail", + "blockRuntimeId" : 4462 + }, + { + "id" : "minecraft:activator_rail", + "blockRuntimeId" : 122 + }, + { + "id" : "minecraft:minecart" + }, + { + "id" : "minecraft:chest_minecart" + }, + { + "id" : "minecraft:hopper_minecart" + }, + { + "id" : "minecraft:tnt_minecart" + }, + { + "id" : "minecraft:redstone" + }, + { + "id" : "minecraft:redstone_block", + "blockRuntimeId" : 6645 + }, + { + "id" : "minecraft:redstone_torch", + "blockRuntimeId" : 6648 + }, + { + "id" : "minecraft:lever", + "blockRuntimeId" : 5442 + }, + { + "id" : "minecraft:wooden_button", + "blockRuntimeId" : 7843 + }, + { + "id" : "minecraft:spruce_button", + "blockRuntimeId" : 6966 + }, + { + "id" : "minecraft:birch_button", + "blockRuntimeId" : 356 + }, + { + "id" : "minecraft:jungle_button", + "blockRuntimeId" : 5209 + }, + { + "id" : "minecraft:acacia_button" + }, + { + "id" : "minecraft:dark_oak_button", + "blockRuntimeId" : 3937 + }, + { + "id" : "minecraft:stone_button", + "blockRuntimeId" : 7195 + }, + { + "id" : "minecraft:crimson_button", + "blockRuntimeId" : 3772 + }, + { + "id" : "minecraft:warped_button", + "blockRuntimeId" : 7530 + }, + { + "id" : "minecraft:polished_blackstone_button", + "blockRuntimeId" : 6001 + }, + { + "id" : "minecraft:tripwire_hook", + "blockRuntimeId" : 7401 + }, + { + "id" : "minecraft:wooden_pressure_plate", + "blockRuntimeId" : 7887 + }, + { + "id" : "minecraft:spruce_pressure_plate", + "blockRuntimeId" : 7026 + }, + { + "id" : "minecraft:birch_pressure_plate", + "blockRuntimeId" : 416 + }, + { + "id" : "minecraft:jungle_pressure_plate", + "blockRuntimeId" : 5269 + }, + { + "id" : "minecraft:acacia_pressure_plate", + "blockRuntimeId" : 60 + }, + { + "id" : "minecraft:dark_oak_pressure_plate", + "blockRuntimeId" : 3997 + }, + { + "id" : "minecraft:crimson_pressure_plate", + "blockRuntimeId" : 3841 + }, + { + "id" : "minecraft:warped_pressure_plate", + "blockRuntimeId" : 7599 + }, + { + "id" : "minecraft:stone_pressure_plate", + "blockRuntimeId" : 7207 + }, + { + "id" : "minecraft:light_weighted_pressure_plate", + "blockRuntimeId" : 5500 + }, + { + "id" : "minecraft:heavy_weighted_pressure_plate", + "blockRuntimeId" : 5096 + }, + { + "id" : "minecraft:polished_blackstone_pressure_plate", + "blockRuntimeId" : 6015 + }, + { + "id" : "minecraft:observer", + "blockRuntimeId" : 5725 + }, + { + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4067 + }, + { + "id" : "minecraft:repeater" + }, + { + "id" : "minecraft:comparator" + }, + { + "id" : "minecraft:hopper" + }, + { + "id" : "minecraft:dropper", + "blockRuntimeId" : 4589 + }, + { + "id" : "minecraft:dispenser", + "blockRuntimeId" : 4490 + }, + { + "id" : "minecraft:piston", + "blockRuntimeId" : 5786 + }, + { + "id" : "minecraft:sticky_piston", + "blockRuntimeId" : 7169 + }, + { + "id" : "minecraft:tnt", + "blockRuntimeId" : 7353 + }, + { + "id" : "minecraft:name_tag" + }, + { + "id" : "minecraft:loom", + "blockRuntimeId" : 5582 + }, + { + "id" : "minecraft:banner" + }, + { + "id" : "minecraft:banner", + "damage" : 8 + }, + { + "id" : "minecraft:banner", + "damage" : 7 + }, + { + "id" : "minecraft:banner", + "damage" : 15 + }, + { + "id" : "minecraft:banner", + "damage" : 12 + }, + { + "id" : "minecraft:banner", + "damage" : 14 + }, + { + "id" : "minecraft:banner", + "damage" : 1 + }, + { + "id" : "minecraft:banner", + "damage" : 4 + }, + { + "id" : "minecraft:banner", + "damage" : 5 + }, + { + "id" : "minecraft:banner", + "damage" : 13 + }, + { + "id" : "minecraft:banner", + "damage" : 9 + }, + { + "id" : "minecraft:banner", + "damage" : 3 + }, + { + "id" : "minecraft:banner", + "damage" : 11 + }, + { + "id" : "minecraft:banner", + "damage" : 10 + }, + { + "id" : "minecraft:banner", + "damage" : 2 + }, + { + "id" : "minecraft:banner", + "damage" : 6 + }, + { + "id" : "minecraft:banner", + "damage" : 15, + "nbt_b64" : "CgAAAwQAVHlwZQEAAAAA" + }, + { + "id" : "minecraft:creeper_banner_pattern" + }, + { + "id" : "minecraft:skull_banner_pattern" + }, + { + "id" : "minecraft:flower_banner_pattern" + }, + { + "id" : "minecraft:mojang_banner_pattern" + }, + { + "id" : "minecraft:field_masoned_banner_pattern" + }, + { + "id" : "minecraft:bordure_indented_banner_pattern" + }, + { + "id" : "minecraft:piglin_banner_pattern" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_rocket", + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id" : "minecraft:firework_star", + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 8, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 7, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 15, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 12, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 14, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 1, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 4, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 5, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 13, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 9, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 3, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 11, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 10, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 2, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" + }, + { + "id" : "minecraft:firework_star", + "damage" : 6, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" + }, + { + "id" : "minecraft:chain" + }, + { + "id" : "minecraft:target", + "blockRuntimeId" : 7351 + }, + { + "id" : "minecraft:lodestone_compass" + } + ] +} From 4f112d486371534a204fee6e44ca31f6605d1aaf Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 24 Oct 2021 15:11:12 -0300 Subject: [PATCH 241/394] Remove default properties from recipes.json and creativeitems.json --- .../java/cn/nukkit/block/BlockUnknown.java | 2 +- .../nukkit/blockproperty/BlockProperty.java | 9 + .../java/cn/nukkit/blockstate/BlockState.java | 5 + .../cn/nukkit/blockstate/IBlockState.java | 24 + .../cn/nukkit/inventory/CraftingManager.java | 5 - src/main/resources/creativeitems.json | 606 +++++------ src/main/resources/recipes.json | 968 +++++++++--------- .../updater/AllResourceUpdates.java | 4 +- 8 files changed, 828 insertions(+), 795 deletions(-) diff --git a/src/main/java/cn/nukkit/block/BlockUnknown.java b/src/main/java/cn/nukkit/block/BlockUnknown.java index 633fbc8af45..722c6fe6b7f 100644 --- a/src/main/java/cn/nukkit/block/BlockUnknown.java +++ b/src/main/java/cn/nukkit/block/BlockUnknown.java @@ -13,7 +13,7 @@ public class BlockUnknown extends BlockMeta { @PowerNukkitOnly @Since("1.5.0.0-PN") - public static final UnsignedIntBlockProperty UNKNOWN = new UnsignedIntBlockProperty("unknown", true, 0xFFFFFFFF); + public static final UnsignedIntBlockProperty UNKNOWN = new UnsignedIntBlockProperty("nukkit-unknown", true, 0xFFFFFFFF); @PowerNukkitOnly @Since("1.4.0.0-PN") diff --git a/src/main/java/cn/nukkit/blockproperty/BlockProperty.java b/src/main/java/cn/nukkit/blockproperty/BlockProperty.java index af7b0bc4f65..82896504240 100644 --- a/src/main/java/cn/nukkit/blockproperty/BlockProperty.java +++ b/src/main/java/cn/nukkit/blockproperty/BlockProperty.java @@ -498,6 +498,15 @@ public String toString() { @Since("1.4.0.0-PN") public abstract boolean isDefaultValue(@Nullable T value); + @PowerNukkitOnly + @Since("FUTURE") + public final boolean isDefaultPersistentValue(@Nonnull String value) { + int meta = getMetaForPersistenceValue(value); + int intValue = getIntValueForMeta(meta); + int defaultIntValue = getDefaultIntValue(); + return intValue == defaultIntValue; + } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Nonnull diff --git a/src/main/java/cn/nukkit/blockstate/BlockState.java b/src/main/java/cn/nukkit/blockstate/BlockState.java index 6e318a53599..f1a8528f5fc 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockState.java +++ b/src/main/java/cn/nukkit/blockstate/BlockState.java @@ -197,6 +197,11 @@ public static BlockState of(@Nonnull String persistedStateId, boolean useDefault return state; } + if (stateParts.length == 2 && (stateParts[1].startsWith("nukkit-unknown=") || stateParts[1].startsWith("unknown="))) { + BigInteger damage = new BigInteger(stateParts[1].split("=", 2)[1]); + return BlockState.of(id, damage); + } + if (stateParts.length == 1 && state.getPropertyNames().isEmpty()) { return state; } diff --git a/src/main/java/cn/nukkit/blockstate/IBlockState.java b/src/main/java/cn/nukkit/blockstate/IBlockState.java index 2c7d3e1d88c..7c1b1739055 100644 --- a/src/main/java/cn/nukkit/blockstate/IBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/IBlockState.java @@ -29,6 +29,7 @@ import java.io.Serializable; import java.math.BigInteger; import java.util.*; +import java.util.AbstractMap.SimpleEntry; import java.util.function.Consumer; import static cn.nukkit.blockstate.Loggers.logIBlockState; @@ -205,6 +206,29 @@ default String getStateId() { return stateId.toString(); } + @PowerNukkitOnly + @Since("FUTURE") + default String getMinimalistStateId() { + if (isDefaultState()) { + return getPersistenceName(); + } + BlockProperties properties = getProperties(); + Map propertyMap = new TreeMap<>(HumanStringComparator.getInstance()); + try { + properties.getNames().stream() + .map(name -> new SimpleEntry<>(properties.getBlockProperty(name), getPersistenceValue(name))) + .filter(entry -> !entry.getKey().isDefaultPersistentValue(entry.getValue())) + .forEach(entry -> propertyMap.put(entry.getKey().getPersistenceName(), entry.getValue())); + } catch (InvalidBlockPropertyException e) { + logIBlockState.debug("Attempted to get the stateId of an invalid state {}:{}\nProperties: {}", getBlockId(), getDataStorage(), properties, e); + return getLegacyStateId(); + } + + StringBuilder stateId = new StringBuilder(getPersistenceName()); + propertyMap.forEach((name, value) -> stateId.append(';').append(name).append('=').append(value)); + return stateId.toString(); + } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Nonnull diff --git a/src/main/java/cn/nukkit/inventory/CraftingManager.java b/src/main/java/cn/nukkit/inventory/CraftingManager.java index 12b96f43f7c..653ceedde34 100644 --- a/src/main/java/cn/nukkit/inventory/CraftingManager.java +++ b/src/main/java/cn/nukkit/inventory/CraftingManager.java @@ -350,11 +350,6 @@ private Item parseRecipeItem(Map data) { ).anyMatch(name-> blockStateId.split(";", 2)[0].endsWith(name))) { return Item.get(BlockID.AIR); } - if (blockStateId.startsWith("minecraft:candle")) - switch (blockStateId) { - case "minecraft:candle;candles=0;lit=0": - case "minecraft:cracked_deepslate_bricks": - } try { BlockState state = BlockState.of(blockStateId); item = state.asItemBlock(count); diff --git a/src/main/resources/creativeitems.json b/src/main/resources/creativeitems.json index 86a2fa051db..468648bcc1d 100644 --- a/src/main/resources/creativeitems.json +++ b/src/main/resources/creativeitems.json @@ -1,7 +1,7 @@ { "items": [ { - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" }, { "blockState": "minecraft:planks;wood_type=spruce" @@ -25,55 +25,55 @@ "blockState": "minecraft:warped_planks" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=cobblestone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_cobblestone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_cobblestone" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=granite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=granite" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=diorite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=diorite" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=andesite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=andesite" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=sandstone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=sandstone" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=red_sandstone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=red_sandstone" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=stone_brick" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_stone_brick" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=brick" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=nether_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=nether_brick" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=red_nether_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=red_nether_brick" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=end_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=end_brick" }, { - "blockState": "minecraft:cobblestone_wall;wall_block_type=prismarine;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=prismarine" }, { - "blockState": "minecraft:blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:blackstone_wall" }, { - "blockState": "minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:polished_blackstone_wall" }, { - "blockState": "minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:polished_blackstone_brick_wall" }, { "blockState": "minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" @@ -88,7 +88,7 @@ "blockState": "minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" }, { - "blockState": "minecraft:fence;wood_type=oak" + "blockState": "minecraft:fence" }, { "blockState": "minecraft:fence;wood_type=spruce" @@ -115,136 +115,136 @@ "blockState": "minecraft:warped_fence" }, { - "blockState": "minecraft:fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:fence_gate" }, { - "blockState": "minecraft:spruce_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:spruce_fence_gate" }, { - "blockState": "minecraft:birch_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:birch_fence_gate" }, { - "blockState": "minecraft:jungle_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:jungle_fence_gate" }, { - "blockState": "minecraft:acacia_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:acacia_fence_gate" }, { - "blockState": "minecraft:dark_oak_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:dark_oak_fence_gate" }, { - "blockState": "minecraft:crimson_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:crimson_fence_gate" }, { - "blockState": "minecraft:warped_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:warped_fence_gate" }, { - "blockState": "minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:normal_stone_stairs" }, { - "blockState": "minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:stone_stairs" }, { - "blockState": "minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:mossy_cobblestone_stairs" }, { - "blockState": "minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:oak_stairs" }, { - "blockState": "minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:spruce_stairs" }, { - "blockState": "minecraft:birch_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:birch_stairs" }, { - "blockState": "minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:jungle_stairs" }, { - "blockState": "minecraft:acacia_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:acacia_stairs" }, { - "blockState": "minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:dark_oak_stairs" }, { - "blockState": "minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:stone_brick_stairs" }, { - "blockState": "minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:mossy_stone_brick_stairs" }, { - "blockState": "minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:sandstone_stairs" }, { - "blockState": "minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:smooth_sandstone_stairs" }, { - "blockState": "minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:red_sandstone_stairs" }, { - "blockState": "minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:smooth_red_sandstone_stairs" }, { - "blockState": "minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:granite_stairs" }, { - "blockState": "minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_granite_stairs" }, { - "blockState": "minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:diorite_stairs" }, { - "blockState": "minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_diorite_stairs" }, { - "blockState": "minecraft:andesite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:andesite_stairs" }, { - "blockState": "minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_andesite_stairs" }, { - "blockState": "minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:brick_stairs" }, { - "blockState": "minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:nether_brick_stairs" }, { - "blockState": "minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:red_nether_brick_stairs" }, { - "blockState": "minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:end_brick_stairs" }, { - "blockState": "minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:quartz_stairs" }, { - "blockState": "minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:smooth_quartz_stairs" }, { - "blockState": "minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:purpur_stairs" }, { - "blockState": "minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:prismarine_stairs" }, { - "blockState": "minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:dark_prismarine_stairs" }, { - "blockState": "minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:prismarine_bricks_stairs" }, { - "blockState": "minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:crimson_stairs" }, { - "blockState": "minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:warped_stairs" }, { - "blockState": "minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:blackstone_stairs" }, { - "blockState": "minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_blackstone_stairs" }, { - "blockState": "minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_blackstone_brick_stairs" }, { "blockState": "minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" @@ -310,31 +310,31 @@ "id": "minecraft:warped_door" }, { - "blockState": "minecraft:trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:trapdoor" }, { - "blockState": "minecraft:spruce_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:spruce_trapdoor" }, { - "blockState": "minecraft:birch_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:birch_trapdoor" }, { - "blockState": "minecraft:jungle_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:jungle_trapdoor" }, { - "blockState": "minecraft:acacia_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:acacia_trapdoor" }, { - "blockState": "minecraft:dark_oak_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:dark_oak_trapdoor" }, { - "blockState": "minecraft:iron_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:iron_trapdoor" }, { - "blockState": "minecraft:crimson_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:crimson_trapdoor" }, { - "blockState": "minecraft:warped_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:warped_trapdoor" }, { "blockState": "minecraft:iron_bars" @@ -343,7 +343,7 @@ "blockState": "minecraft:glass" }, { - "blockState": "minecraft:stained_glass;color=white" + "blockState": "minecraft:stained_glass" }, { "blockState": "minecraft:stained_glass;color=silver" @@ -397,7 +397,7 @@ "blockState": "minecraft:glass_pane" }, { - "blockState": "minecraft:stained_glass_pane;color=white" + "blockState": "minecraft:stained_glass_pane" }, { "blockState": "minecraft:stained_glass_pane;color=silver" @@ -445,127 +445,127 @@ "blockState": "minecraft:stained_glass_pane;color=pink" }, { - "blockState": "minecraft:ladder;facing_direction=0" + "blockState": "minecraft:ladder" }, { - "blockState": "minecraft:scaffolding;stability=0;stability_check=0" + "blockState": "minecraft:scaffolding" }, { - "blockState": "minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0" + "blockState": "minecraft:stone_slab" }, { - "blockState": "minecraft:stone_slab4;stone_slab_type_4=stone;top_slot_bit=0" + "blockState": "minecraft:stone_slab4;stone_slab_type_4=stone" }, { - "blockState": "minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=cobblestone" }, { - "blockState": "minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone" }, { - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=oak" + "blockState": "minecraft:wooden_slab" }, { - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=spruce" + "blockState": "minecraft:wooden_slab;wood_type=spruce" }, { - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=birch" + "blockState": "minecraft:wooden_slab;wood_type=birch" }, { - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=jungle" + "blockState": "minecraft:wooden_slab;wood_type=jungle" }, { - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=acacia" + "blockState": "minecraft:wooden_slab;wood_type=acacia" }, { - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=dark_oak" + "blockState": "minecraft:wooden_slab;wood_type=dark_oak" }, { - "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick" }, { - "blockState": "minecraft:stone_slab4;stone_slab_type_4=mossy_stone_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab4" }, { - "blockState": "minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=sandstone" }, { - "blockState": "minecraft:stone_slab4;stone_slab_type_4=cut_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab4;stone_slab_type_4=cut_sandstone" }, { - "blockState": "minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone" }, { - "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab2" }, { - "blockState": "minecraft:stone_slab4;stone_slab_type_4=cut_red_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab4;stone_slab_type_4=cut_red_sandstone" }, { - "blockState": "minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone" }, { - "blockState": "minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=granite" }, { - "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_granite" }, { - "blockState": "minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=diorite" }, { - "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_diorite" }, { - "blockState": "minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=andesite" }, { - "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_andesite" }, { - "blockState": "minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=brick" }, { - "blockState": "minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=nether_brick" }, { - "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_nether_brick" }, { - "blockState": "minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab3" }, { - "blockState": "minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=quartz" }, { - "blockState": "minecraft:stone_slab4;stone_slab_type_4=smooth_quartz;top_slot_bit=0" + "blockState": "minecraft:stone_slab4;stone_slab_type_4=smooth_quartz" }, { - "blockState": "minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=purpur" }, { - "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_rough" }, { - "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_dark" }, { - "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_brick" }, { - "blockState": "minecraft:crimson_slab;top_slot_bit=0" + "blockState": "minecraft:crimson_slab" }, { - "blockState": "minecraft:warped_slab;top_slot_bit=0" + "blockState": "minecraft:warped_slab" }, { - "blockState": "minecraft:blackstone_slab;top_slot_bit=0" + "blockState": "minecraft:blackstone_slab" }, { - "blockState": "minecraft:polished_blackstone_slab;top_slot_bit=0" + "blockState": "minecraft:polished_blackstone_slab" }, { - "blockState": "minecraft:polished_blackstone_brick_slab;top_slot_bit=0" + "blockState": "minecraft:polished_blackstone_brick_slab" }, { "blockState": "minecraft:cut_copper_slab;top_slot_bit=0" @@ -616,7 +616,7 @@ "blockState": "minecraft:quartz_bricks" }, { - "blockState": "minecraft:stonebrick;stone_brick_type=default" + "blockState": "minecraft:stonebrick" }, { "blockState": "minecraft:stonebrick;stone_brick_type=mossy" @@ -673,7 +673,7 @@ "blockState": "minecraft:smooth_stone" }, { - "blockState": "minecraft:sandstone;sand_stone_type=default" + "blockState": "minecraft:sandstone" }, { "blockState": "minecraft:sandstone;sand_stone_type=heiroglyphs" @@ -685,7 +685,7 @@ "blockState": "minecraft:sandstone;sand_stone_type=smooth" }, { - "blockState": "minecraft:red_sandstone;sand_stone_type=default" + "blockState": "minecraft:red_sandstone" }, { "blockState": "minecraft:red_sandstone;sand_stone_type=heiroglyphs" @@ -775,19 +775,19 @@ "blockState": "minecraft:raw_gold_block" }, { - "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:quartz_block" }, { - "blockState": "minecraft:quartz_block;chisel_type=lines;pillar_axis=y" + "blockState": "minecraft:quartz_block;chisel_type=lines" }, { - "blockState": "minecraft:quartz_block;chisel_type=chiseled;pillar_axis=y" + "blockState": "minecraft:quartz_block;chisel_type=chiseled" }, { - "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" + "blockState": "minecraft:quartz_block;chisel_type=smooth" }, { - "blockState": "minecraft:prismarine;prismarine_block_type=default" + "blockState": "minecraft:prismarine" }, { "blockState": "minecraft:prismarine;prismarine_block_type=dark" @@ -802,10 +802,10 @@ "blockState": "minecraft:honeycomb_block" }, { - "blockState": "minecraft:hay_block;deprecated=0;pillar_axis=y" + "blockState": "minecraft:hay_block" }, { - "blockState": "minecraft:bone_block;deprecated=0;pillar_axis=y" + "blockState": "minecraft:bone_block" }, { "blockState": "minecraft:nether_brick" @@ -820,7 +820,7 @@ "blockState": "minecraft:lodestone" }, { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" }, { "blockState": "minecraft:wool;color=silver" @@ -868,7 +868,7 @@ "blockState": "minecraft:wool;color=pink" }, { - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" }, { "blockState": "minecraft:carpet;color=silver" @@ -916,7 +916,7 @@ "blockState": "minecraft:carpet;color=pink" }, { - "blockState": "minecraft:concretepowder;color=white" + "blockState": "minecraft:concretepowder" }, { "blockState": "minecraft:concretepowder;color=silver" @@ -964,7 +964,7 @@ "blockState": "minecraft:concretepowder;color=pink" }, { - "blockState": "minecraft:concrete;color=white" + "blockState": "minecraft:concrete" }, { "blockState": "minecraft:concrete;color=silver" @@ -1018,7 +1018,7 @@ "blockState": "minecraft:hardened_clay" }, { - "blockState": "minecraft:stained_hardened_clay;color=white" + "blockState": "minecraft:stained_hardened_clay" }, { "blockState": "minecraft:stained_hardened_clay;color=silver" @@ -1066,58 +1066,58 @@ "blockState": "minecraft:stained_hardened_clay;color=pink" }, { - "blockState": "minecraft:white_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:white_glazed_terracotta" }, { - "blockState": "minecraft:silver_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:silver_glazed_terracotta" }, { - "blockState": "minecraft:gray_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:gray_glazed_terracotta" }, { - "blockState": "minecraft:black_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:black_glazed_terracotta" }, { - "blockState": "minecraft:brown_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:brown_glazed_terracotta" }, { - "blockState": "minecraft:red_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:red_glazed_terracotta" }, { - "blockState": "minecraft:orange_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:orange_glazed_terracotta" }, { - "blockState": "minecraft:yellow_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:yellow_glazed_terracotta" }, { - "blockState": "minecraft:lime_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:lime_glazed_terracotta" }, { - "blockState": "minecraft:green_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:green_glazed_terracotta" }, { - "blockState": "minecraft:cyan_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:cyan_glazed_terracotta" }, { - "blockState": "minecraft:light_blue_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:light_blue_glazed_terracotta" }, { - "blockState": "minecraft:blue_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:blue_glazed_terracotta" }, { - "blockState": "minecraft:purple_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:purple_glazed_terracotta" }, { - "blockState": "minecraft:magenta_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:magenta_glazed_terracotta" }, { - "blockState": "minecraft:pink_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:pink_glazed_terracotta" }, { - "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:purpur_block" }, { - "blockState": "minecraft:purpur_block;chisel_type=lines;pillar_axis=y" + "blockState": "minecraft:purpur_block;chisel_type=lines" }, { "blockState": "minecraft:nether_wart_block" @@ -1135,10 +1135,10 @@ "blockState": "minecraft:warped_nylium" }, { - "blockState": "minecraft:basalt;pillar_axis=y" + "blockState": "minecraft:basalt" }, { - "blockState": "minecraft:polished_basalt;pillar_axis=y" + "blockState": "minecraft:polished_basalt" }, { "blockState": "minecraft:smooth_basalt" @@ -1147,13 +1147,13 @@ "blockState": "minecraft:soul_soil" }, { - "blockState": "minecraft:dirt;dirt_type=normal" + "blockState": "minecraft:dirt" }, { "blockState": "minecraft:dirt;dirt_type=coarse" }, { - "blockState": "minecraft:farmland;moisturized_amount=0" + "blockState": "minecraft:farmland" }, { "blockState": "minecraft:grass" @@ -1168,7 +1168,7 @@ "blockState": "minecraft:mycelium" }, { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" }, { "blockState": "minecraft:iron_ore" @@ -1261,127 +1261,127 @@ "blockState": "minecraft:polished_deepslate" }, { - "blockState": "minecraft:sand;sand_type=normal" + "blockState": "minecraft:sand" }, { "blockState": "minecraft:sand;sand_type=red" }, { - "blockState": "minecraft:cactus;age=0" + "blockState": "minecraft:cactus" }, { - "blockState": "minecraft:log;old_log_type=oak;pillar_axis=y" + "blockState": "minecraft:log" }, { - "blockState": "minecraft:stripped_oak_log;pillar_axis=y" + "blockState": "minecraft:stripped_oak_log" }, { - "blockState": "minecraft:log;old_log_type=spruce;pillar_axis=y" + "blockState": "minecraft:log;old_log_type=spruce" }, { - "blockState": "minecraft:stripped_spruce_log;pillar_axis=y" + "blockState": "minecraft:stripped_spruce_log" }, { - "blockState": "minecraft:log;old_log_type=birch;pillar_axis=y" + "blockState": "minecraft:log;old_log_type=birch" }, { - "blockState": "minecraft:stripped_birch_log;pillar_axis=y" + "blockState": "minecraft:stripped_birch_log" }, { - "blockState": "minecraft:log;old_log_type=jungle;pillar_axis=y" + "blockState": "minecraft:log;old_log_type=jungle" }, { - "blockState": "minecraft:stripped_jungle_log;pillar_axis=y" + "blockState": "minecraft:stripped_jungle_log" }, { - "blockState": "minecraft:log2;new_log_type=acacia;pillar_axis=y" + "blockState": "minecraft:log2" }, { - "blockState": "minecraft:stripped_acacia_log;pillar_axis=y" + "blockState": "minecraft:stripped_acacia_log" }, { - "blockState": "minecraft:log2;new_log_type=dark_oak;pillar_axis=y" + "blockState": "minecraft:log2;new_log_type=dark_oak" }, { - "blockState": "minecraft:stripped_dark_oak_log;pillar_axis=y" + "blockState": "minecraft:stripped_dark_oak_log" }, { - "blockState": "minecraft:crimson_stem;pillar_axis=y" + "blockState": "minecraft:crimson_stem" }, { - "blockState": "minecraft:stripped_crimson_stem;pillar_axis=y" + "blockState": "minecraft:stripped_crimson_stem" }, { - "blockState": "minecraft:warped_stem;pillar_axis=y" + "blockState": "minecraft:warped_stem" }, { - "blockState": "minecraft:stripped_warped_stem;pillar_axis=y" + "blockState": "minecraft:stripped_warped_stem" }, { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + "blockState": "minecraft:wood" }, { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=oak" + "blockState": "minecraft:wood;stripped_bit=1" }, { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=spruce" + "blockState": "minecraft:wood;wood_type=spruce" }, { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=spruce" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=spruce" }, { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=birch" + "blockState": "minecraft:wood;wood_type=birch" }, { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=birch" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=birch" }, { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=jungle" + "blockState": "minecraft:wood;wood_type=jungle" }, { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=jungle" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=jungle" }, { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=acacia" + "blockState": "minecraft:wood;wood_type=acacia" }, { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=acacia" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=acacia" }, { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=dark_oak" + "blockState": "minecraft:wood;wood_type=dark_oak" }, { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=dark_oak" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=dark_oak" }, { - "blockState": "minecraft:crimson_hyphae;pillar_axis=y" + "blockState": "minecraft:crimson_hyphae" }, { - "blockState": "minecraft:stripped_crimson_hyphae;pillar_axis=y" + "blockState": "minecraft:stripped_crimson_hyphae" }, { - "blockState": "minecraft:warped_hyphae;pillar_axis=y" + "blockState": "minecraft:warped_hyphae" }, { - "blockState": "minecraft:stripped_warped_hyphae;pillar_axis=y" + "blockState": "minecraft:stripped_warped_hyphae" }, { - "blockState": "minecraft:leaves;old_leaf_type=oak;persistent_bit=0;update_bit=0" + "blockState": "minecraft:leaves" }, { - "blockState": "minecraft:leaves;old_leaf_type=spruce;persistent_bit=0;update_bit=0" + "blockState": "minecraft:leaves;old_leaf_type=spruce" }, { - "blockState": "minecraft:leaves;old_leaf_type=birch;persistent_bit=0;update_bit=0" + "blockState": "minecraft:leaves;old_leaf_type=birch" }, { - "blockState": "minecraft:leaves;old_leaf_type=jungle;persistent_bit=0;update_bit=0" + "blockState": "minecraft:leaves;old_leaf_type=jungle" }, { - "blockState": "minecraft:leaves2;new_leaf_type=acacia;persistent_bit=0;update_bit=0" + "blockState": "minecraft:leaves2" }, { - "blockState": "minecraft:leaves2;new_leaf_type=dark_oak;persistent_bit=0;update_bit=0" + "blockState": "minecraft:leaves2;new_leaf_type=dark_oak" }, { "blockState": "minecraft:azalea_leaves;persistent_bit=0;update_bit=0" @@ -1390,25 +1390,25 @@ "blockState": "minecraft:azalea_leaves_flowered;persistent_bit=0;update_bit=0" }, { - "blockState": "minecraft:sapling;age_bit=0;sapling_type=oak" + "blockState": "minecraft:sapling" }, { - "blockState": "minecraft:sapling;age_bit=0;sapling_type=spruce" + "blockState": "minecraft:sapling;sapling_type=spruce" }, { - "blockState": "minecraft:sapling;age_bit=0;sapling_type=birch" + "blockState": "minecraft:sapling;sapling_type=birch" }, { - "blockState": "minecraft:sapling;age_bit=0;sapling_type=jungle" + "blockState": "minecraft:sapling;sapling_type=jungle" }, { - "blockState": "minecraft:sapling;age_bit=0;sapling_type=acacia" + "blockState": "minecraft:sapling;sapling_type=acacia" }, { - "blockState": "minecraft:sapling;age_bit=0;sapling_type=dark_oak" + "blockState": "minecraft:sapling;sapling_type=dark_oak" }, { - "blockState": "minecraft:bee_nest;direction=0;honey_level=0" + "blockState": "minecraft:bee_nest" }, { "id": "minecraft:wheat_seeds" @@ -1465,13 +1465,13 @@ "id": "minecraft:glow_berries" }, { - "blockState": "minecraft:pumpkin;direction=0" + "blockState": "minecraft:pumpkin" }, { - "blockState": "minecraft:carved_pumpkin;direction=0" + "blockState": "minecraft:carved_pumpkin" }, { - "blockState": "minecraft:lit_pumpkin;direction=0" + "blockState": "minecraft:lit_pumpkin" }, { "id": "minecraft:honeycomb" @@ -1480,31 +1480,31 @@ "blockState": "minecraft:tallgrass;tall_grass_type=fern" }, { - "blockState": "minecraft:double_plant;double_plant_type=fern;upper_block_bit=0" + "blockState": "minecraft:double_plant;double_plant_type=fern" }, { "blockState": "minecraft:tallgrass;tall_grass_type=tall" }, { - "blockState": "minecraft:double_plant;double_plant_type=grass;upper_block_bit=0" + "blockState": "minecraft:double_plant;double_plant_type=grass" }, { "id": "minecraft:nether_sprouts" }, { - "blockState": "minecraft:coral;coral_color=red;dead_bit=0" + "blockState": "minecraft:coral;coral_color=red" }, { - "blockState": "minecraft:coral;coral_color=pink;dead_bit=0" + "blockState": "minecraft:coral;coral_color=pink" }, { - "blockState": "minecraft:coral;coral_color=purple;dead_bit=0" + "blockState": "minecraft:coral;coral_color=purple" }, { - "blockState": "minecraft:coral;coral_color=blue;dead_bit=0" + "blockState": "minecraft:coral" }, { - "blockState": "minecraft:coral;coral_color=yellow;dead_bit=0" + "blockState": "minecraft:coral;coral_color=yellow" }, { "blockState": "minecraft:coral;coral_color=red;dead_bit=1" @@ -1516,46 +1516,46 @@ "blockState": "minecraft:coral;coral_color=purple;dead_bit=1" }, { - "blockState": "minecraft:coral;coral_color=blue;dead_bit=1" + "blockState": "minecraft:coral;dead_bit=1" }, { "blockState": "minecraft:coral;coral_color=yellow;dead_bit=1" }, { - "blockState": "minecraft:coral_fan;coral_color=red;coral_fan_direction=0" + "blockState": "minecraft:coral_fan;coral_color=red" }, { - "blockState": "minecraft:coral_fan;coral_color=pink;coral_fan_direction=0" + "blockState": "minecraft:coral_fan;coral_color=pink" }, { - "blockState": "minecraft:coral_fan;coral_color=purple;coral_fan_direction=0" + "blockState": "minecraft:coral_fan;coral_color=purple" }, { - "blockState": "minecraft:coral_fan;coral_color=blue;coral_fan_direction=0" + "blockState": "minecraft:coral_fan" }, { - "blockState": "minecraft:coral_fan;coral_color=yellow;coral_fan_direction=0" + "blockState": "minecraft:coral_fan;coral_color=yellow" }, { - "blockState": "minecraft:coral_fan_dead;coral_color=red;coral_fan_direction=0" + "blockState": "minecraft:coral_fan_dead;coral_color=red" }, { - "blockState": "minecraft:coral_fan_dead;coral_color=pink;coral_fan_direction=0" + "blockState": "minecraft:coral_fan_dead;coral_color=pink" }, { - "blockState": "minecraft:coral_fan_dead;coral_color=purple;coral_fan_direction=0" + "blockState": "minecraft:coral_fan_dead;coral_color=purple" }, { - "blockState": "minecraft:coral_fan_dead;coral_color=blue;coral_fan_direction=0" + "blockState": "minecraft:coral_fan_dead" }, { - "blockState": "minecraft:coral_fan_dead;coral_color=yellow;coral_fan_direction=0" + "blockState": "minecraft:coral_fan_dead;coral_color=yellow" }, { "id": "minecraft:kelp" }, { - "blockState": "minecraft:seagrass;sea_grass_type=default" + "blockState": "minecraft:seagrass" }, { "blockState": "minecraft:crimson_roots" @@ -1567,7 +1567,7 @@ "blockState": "minecraft:yellow_flower" }, { - "blockState": "minecraft:red_flower;flower_type=poppy" + "blockState": "minecraft:red_flower" }, { "blockState": "minecraft:red_flower;flower_type=orchid" @@ -1600,16 +1600,16 @@ "blockState": "minecraft:red_flower;flower_type=lily_of_the_valley" }, { - "blockState": "minecraft:double_plant;double_plant_type=sunflower;upper_block_bit=0" + "blockState": "minecraft:double_plant" }, { - "blockState": "minecraft:double_plant;double_plant_type=syringa;upper_block_bit=0" + "blockState": "minecraft:double_plant;double_plant_type=syringa" }, { - "blockState": "minecraft:double_plant;double_plant_type=rose;upper_block_bit=0" + "blockState": "minecraft:double_plant;double_plant_type=rose" }, { - "blockState": "minecraft:double_plant;double_plant_type=paeonia;upper_block_bit=0" + "blockState": "minecraft:double_plant;double_plant_type=paeonia" }, { "blockState": "minecraft:wither_rose" @@ -1678,13 +1678,13 @@ "id": "minecraft:bone_meal" }, { - "blockState": "minecraft:vine;vine_direction_bits=0" + "blockState": "minecraft:vine" }, { - "blockState": "minecraft:weeping_vines;weeping_vines_age=0" + "blockState": "minecraft:weeping_vines" }, { - "blockState": "minecraft:twisting_vines;twisting_vines_age=0" + "blockState": "minecraft:twisting_vines" }, { "blockState": "minecraft:waterlily" @@ -1693,7 +1693,7 @@ "blockState": "minecraft:deadbush" }, { - "blockState": "minecraft:bamboo;age_bit=0;bamboo_leaf_size=no_leaves;bamboo_stalk_thickness=thin" + "blockState": "minecraft:bamboo" }, { "blockState": "minecraft:snow" @@ -1708,7 +1708,7 @@ "blockState": "minecraft:blue_ice" }, { - "blockState": "minecraft:snow_layer;covered_bit=0;height=0" + "blockState": "minecraft:snow_layer" }, { "blockState": "minecraft:pointed_dripstone;dripstone_thickness=tip;hanging=1" @@ -1819,7 +1819,7 @@ "blockState": "minecraft:brown_mushroom_block;huge_mushroom_bits=15" }, { - "blockState": "minecraft:brown_mushroom_block;huge_mushroom_bits=0" + "blockState": "minecraft:brown_mushroom_block" }, { "id": "minecraft:egg" @@ -1846,7 +1846,7 @@ "blockState": "minecraft:mob_spawner" }, { - "blockState": "minecraft:monster_egg;monster_egg_stone_type=stone" + "blockState": "minecraft:monster_egg" }, { "blockState": "minecraft:monster_egg;monster_egg_stone_type=cobblestone" @@ -1870,7 +1870,7 @@ "blockState": "minecraft:dragon_egg" }, { - "blockState": "minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=one_egg" + "blockState": "minecraft:turtle_egg" }, { "id": "minecraft:chicken_spawn_egg" @@ -2077,7 +2077,7 @@ "blockState": "minecraft:crying_obsidian" }, { - "blockState": "minecraft:bedrock;infiniburn_bit=0" + "blockState": "minecraft:bedrock" }, { "blockState": "minecraft:soul_sand" @@ -2095,7 +2095,7 @@ "blockState": "minecraft:end_stone" }, { - "blockState": "minecraft:chorus_flower;age=0" + "blockState": "minecraft:chorus_flower" }, { "blockState": "minecraft:chorus_plant" @@ -2107,28 +2107,28 @@ "id": "minecraft:popped_chorus_fruit" }, { - "blockState": "minecraft:sponge;sponge_type=dry" + "blockState": "minecraft:sponge" }, { "blockState": "minecraft:sponge;sponge_type=wet" }, { - "blockState": "minecraft:coral_block;coral_color=blue;dead_bit=0" + "blockState": "minecraft:coral_block" }, { - "blockState": "minecraft:coral_block;coral_color=pink;dead_bit=0" + "blockState": "minecraft:coral_block;coral_color=pink" }, { - "blockState": "minecraft:coral_block;coral_color=purple;dead_bit=0" + "blockState": "minecraft:coral_block;coral_color=purple" }, { - "blockState": "minecraft:coral_block;coral_color=red;dead_bit=0" + "blockState": "minecraft:coral_block;coral_color=red" }, { - "blockState": "minecraft:coral_block;coral_color=yellow;dead_bit=0" + "blockState": "minecraft:coral_block;coral_color=yellow" }, { - "blockState": "minecraft:coral_block;coral_color=blue;dead_bit=1" + "blockState": "minecraft:coral_block;dead_bit=1" }, { "blockState": "minecraft:coral_block;coral_color=pink;dead_bit=1" @@ -3166,19 +3166,19 @@ "damage": 6 }, { - "blockState": "minecraft:torch;torch_facing_direction=unknown" + "blockState": "minecraft:torch" }, { - "blockState": "minecraft:soul_torch;torch_facing_direction=unknown" + "blockState": "minecraft:soul_torch" }, { - "blockState": "minecraft:sea_pickle;cluster_count=0;dead_bit=0" + "blockState": "minecraft:sea_pickle" }, { - "blockState": "minecraft:lantern;hanging=0" + "blockState": "minecraft:lantern" }, { - "blockState": "minecraft:soul_lantern;hanging=0" + "blockState": "minecraft:soul_lantern" }, { "blockState": "minecraft:candle;candles=0;lit=0" @@ -3244,7 +3244,7 @@ "blockState": "minecraft:smithing_table" }, { - "blockState": "minecraft:beehive;direction=0;honey_level=0" + "blockState": "minecraft:beehive" }, { "id": "minecraft:campfire" @@ -3253,31 +3253,31 @@ "id": "minecraft:soul_campfire" }, { - "blockState": "minecraft:furnace;facing_direction=0" + "blockState": "minecraft:furnace" }, { - "blockState": "minecraft:blast_furnace;facing_direction=0" + "blockState": "minecraft:blast_furnace" }, { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" }, { - "blockState": "minecraft:respawn_anchor;respawn_anchor_charge=0" + "blockState": "minecraft:respawn_anchor" }, { "id": "minecraft:brewing_stand" }, { - "blockState": "minecraft:anvil;damage=undamaged;direction=0" + "blockState": "minecraft:anvil" }, { - "blockState": "minecraft:anvil;damage=slightly_damaged;direction=0" + "blockState": "minecraft:anvil;damage=slightly_damaged" }, { - "blockState": "minecraft:anvil;damage=very_damaged;direction=0" + "blockState": "minecraft:anvil;damage=very_damaged" }, { - "blockState": "minecraft:grindstone;attachment=standing;direction=0" + "blockState": "minecraft:grindstone" }, { "blockState": "minecraft:enchanting_table" @@ -3286,31 +3286,31 @@ "blockState": "minecraft:bookshelf" }, { - "blockState": "minecraft:lectern;direction=0;powered_bit=0" + "blockState": "minecraft:lectern" }, { "id": "minecraft:cauldron" }, { - "blockState": "minecraft:composter;composter_fill_level=0" + "blockState": "minecraft:composter" }, { - "blockState": "minecraft:chest;facing_direction=0" + "blockState": "minecraft:chest" }, { - "blockState": "minecraft:trapped_chest;facing_direction=0" + "blockState": "minecraft:trapped_chest" }, { - "blockState": "minecraft:ender_chest;facing_direction=0" + "blockState": "minecraft:ender_chest" }, { - "blockState": "minecraft:barrel;facing_direction=0;open_bit=0" + "blockState": "minecraft:barrel" }, { "blockState": "minecraft:undyed_shulker_box" }, { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" }, { "blockState": "minecraft:shulker_box;color=silver" @@ -3516,16 +3516,16 @@ "blockState": "minecraft:beacon" }, { - "blockState": "minecraft:bell;attachment=standing;direction=0;toggle_bit=0" + "blockState": "minecraft:bell" }, { "blockState": "minecraft:conduit" }, { - "blockState": "minecraft:stonecutter_block;facing_direction=0" + "blockState": "minecraft:stonecutter_block" }, { - "blockState": "minecraft:end_portal_frame;direction=0;end_portal_eye_bit=0" + "blockState": "minecraft:end_portal_frame" }, { "id": "minecraft:coal" @@ -3660,7 +3660,7 @@ "id": "minecraft:nether_star" }, { - "blockState": "minecraft:end_rod;facing_direction=0" + "blockState": "minecraft:end_rod" }, { "blockState": "minecraft:lightning_rod;facing_direction=0" @@ -4124,16 +4124,16 @@ "id": "minecraft:dark_oak_boat" }, { - "blockState": "minecraft:rail;rail_direction=0" + "blockState": "minecraft:rail" }, { - "blockState": "minecraft:golden_rail;rail_data_bit=0;rail_direction=0" + "blockState": "minecraft:golden_rail" }, { - "blockState": "minecraft:detector_rail;rail_data_bit=0;rail_direction=0" + "blockState": "minecraft:detector_rail" }, { - "blockState": "minecraft:activator_rail;rail_data_bit=0;rail_direction=0" + "blockState": "minecraft:activator_rail" }, { "id": "minecraft:minecart" @@ -4154,85 +4154,85 @@ "blockState": "minecraft:redstone_block" }, { - "blockState": "minecraft:redstone_torch;torch_facing_direction=unknown" + "blockState": "minecraft:redstone_torch" }, { - "blockState": "minecraft:lever;lever_direction=down_east_west;open_bit=0" + "blockState": "minecraft:lever" }, { - "blockState": "minecraft:wooden_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:wooden_button" }, { - "blockState": "minecraft:spruce_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:spruce_button" }, { - "blockState": "minecraft:birch_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:birch_button" }, { - "blockState": "minecraft:jungle_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:jungle_button" }, { "blockState": "minecraft:acacia_button" }, { - "blockState": "minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:dark_oak_button" }, { - "blockState": "minecraft:stone_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:stone_button" }, { - "blockState": "minecraft:crimson_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:crimson_button" }, { - "blockState": "minecraft:warped_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:warped_button" }, { - "blockState": "minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:polished_blackstone_button" }, { - "blockState": "minecraft:tripwire_hook;attached_bit=0;direction=0;powered_bit=0" + "blockState": "minecraft:tripwire_hook" }, { - "blockState": "minecraft:wooden_pressure_plate;redstone_signal=0" + "blockState": "minecraft:wooden_pressure_plate" }, { - "blockState": "minecraft:spruce_pressure_plate;redstone_signal=0" + "blockState": "minecraft:spruce_pressure_plate" }, { - "blockState": "minecraft:birch_pressure_plate;redstone_signal=0" + "blockState": "minecraft:birch_pressure_plate" }, { - "blockState": "minecraft:jungle_pressure_plate;redstone_signal=0" + "blockState": "minecraft:jungle_pressure_plate" }, { - "blockState": "minecraft:acacia_pressure_plate;redstone_signal=0" + "blockState": "minecraft:acacia_pressure_plate" }, { - "blockState": "minecraft:dark_oak_pressure_plate;redstone_signal=0" + "blockState": "minecraft:dark_oak_pressure_plate" }, { - "blockState": "minecraft:crimson_pressure_plate;redstone_signal=0" + "blockState": "minecraft:crimson_pressure_plate" }, { - "blockState": "minecraft:warped_pressure_plate;redstone_signal=0" + "blockState": "minecraft:warped_pressure_plate" }, { - "blockState": "minecraft:stone_pressure_plate;redstone_signal=0" + "blockState": "minecraft:stone_pressure_plate" }, { - "blockState": "minecraft:light_weighted_pressure_plate;redstone_signal=0" + "blockState": "minecraft:light_weighted_pressure_plate" }, { - "blockState": "minecraft:heavy_weighted_pressure_plate;redstone_signal=0" + "blockState": "minecraft:heavy_weighted_pressure_plate" }, { - "blockState": "minecraft:polished_blackstone_pressure_plate;redstone_signal=0" + "blockState": "minecraft:polished_blackstone_pressure_plate" }, { - "blockState": "minecraft:observer;facing_direction=0;powered_bit=0" + "blockState": "minecraft:observer" }, { - "blockState": "minecraft:daylight_detector;redstone_signal=0" + "blockState": "minecraft:daylight_detector" }, { "id": "minecraft:repeater" @@ -4244,10 +4244,10 @@ "id": "minecraft:hopper" }, { - "blockState": "minecraft:dropper;facing_direction=3;triggered_bit=0" + "blockState": "minecraft:dropper;facing_direction=3" }, { - "blockState": "minecraft:dispenser;facing_direction=3;triggered_bit=0" + "blockState": "minecraft:dispenser;facing_direction=3" }, { "blockState": "minecraft:piston;facing_direction=1" @@ -4256,13 +4256,13 @@ "blockState": "minecraft:sticky_piston;facing_direction=1" }, { - "blockState": "minecraft:tnt;allow_underwater_bit=0;explode_bit=0" + "blockState": "minecraft:tnt" }, { "id": "minecraft:name_tag" }, { - "blockState": "minecraft:loom;direction=0" + "blockState": "minecraft:loom" }, { "id": "minecraft:banner" diff --git a/src/main/resources/recipes.json b/src/main/resources/recipes.json index b38214c3bf3..48315299998 100644 --- a/src/main/resources/recipes.json +++ b/src/main/resources/recipes.json @@ -669,7 +669,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=andesite" } ], "block": "stonecutter", @@ -685,7 +685,7 @@ ], "output": [ { - "blockState": "minecraft:andesite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:andesite_stairs" } ], "block": "stonecutter", @@ -701,7 +701,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=andesite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=andesite" } ], "block": "stonecutter", @@ -719,7 +719,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:blackstone_slab;top_slot_bit=0" + "blockState": "minecraft:blackstone_slab" } ], "block": "stonecutter", @@ -736,7 +736,7 @@ ], "output": [ { - "blockState": "minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:blackstone_stairs" } ], "block": "stonecutter", @@ -753,7 +753,7 @@ ], "output": [ { - "blockState": "minecraft:blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:blackstone_wall" } ], "block": "stonecutter", @@ -770,7 +770,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=brick" } ], "block": "stonecutter", @@ -788,7 +788,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:polished_blackstone_brick_slab;top_slot_bit=0" + "blockState": "minecraft:polished_blackstone_brick_slab" } ], "block": "stonecutter", @@ -804,7 +804,7 @@ ], "output": [ { - "blockState": "minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:brick_stairs" } ], "block": "stonecutter", @@ -821,7 +821,7 @@ ], "output": [ { - "blockState": "minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_blackstone_brick_stairs" } ], "block": "stonecutter", @@ -837,7 +837,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=brick" } ], "block": "stonecutter", @@ -854,7 +854,7 @@ ], "output": [ { - "blockState": "minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:polished_blackstone_brick_wall" } ], "block": "stonecutter", @@ -939,7 +939,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=cobblestone" } ], "block": "stonecutter", @@ -955,7 +955,7 @@ ], "output": [ { - "blockState": "minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:stone_stairs" } ], "block": "stonecutter", @@ -971,7 +971,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=cobblestone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall" } ], "block": "stonecutter", @@ -1075,7 +1075,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_dark" } ], "block": "stonecutter", @@ -1091,7 +1091,7 @@ ], "output": [ { - "blockState": "minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:dark_prismarine_stairs" } ], "block": "stonecutter", @@ -1108,7 +1108,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=diorite" } ], "block": "stonecutter", @@ -1124,7 +1124,7 @@ ], "output": [ { - "blockState": "minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:diorite_stairs" } ], "block": "stonecutter", @@ -1140,7 +1140,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=diorite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=diorite" } ], "block": "stonecutter", @@ -1157,7 +1157,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab4;stone_slab_type_4=stone;top_slot_bit=0" + "blockState": "minecraft:stone_slab4;stone_slab_type_4=stone" } ], "block": "stonecutter", @@ -1174,7 +1174,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab3" } ], "block": "stonecutter", @@ -1191,7 +1191,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab3" } ], "block": "stonecutter", @@ -1207,7 +1207,7 @@ ], "output": [ { - "blockState": "minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:end_brick_stairs" } ], "block": "stonecutter", @@ -1223,7 +1223,7 @@ ], "output": [ { - "blockState": "minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:end_brick_stairs" } ], "block": "stonecutter", @@ -1239,7 +1239,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=end_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=end_brick" } ], "block": "stonecutter", @@ -1255,7 +1255,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=end_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=end_brick" } ], "block": "stonecutter", @@ -1375,7 +1375,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=granite" } ], "block": "stonecutter", @@ -1391,7 +1391,7 @@ ], "output": [ { - "blockState": "minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:granite_stairs" } ], "block": "stonecutter", @@ -1407,7 +1407,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=granite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=granite" } ], "block": "stonecutter", @@ -1424,7 +1424,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone" } ], "block": "stonecutter", @@ -1440,7 +1440,7 @@ ], "output": [ { - "blockState": "minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:mossy_cobblestone_stairs" } ], "block": "stonecutter", @@ -1456,7 +1456,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_cobblestone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_cobblestone" } ], "block": "stonecutter", @@ -1473,7 +1473,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab4;stone_slab_type_4=mossy_stone_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab4" } ], "block": "stonecutter", @@ -1489,7 +1489,7 @@ ], "output": [ { - "blockState": "minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:mossy_stone_brick_stairs" } ], "block": "stonecutter", @@ -1505,7 +1505,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_stone_brick" } ], "block": "stonecutter", @@ -1522,7 +1522,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=nether_brick" } ], "block": "stonecutter", @@ -1538,7 +1538,7 @@ ], "output": [ { - "blockState": "minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:nether_brick_stairs" } ], "block": "stonecutter", @@ -1554,7 +1554,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=nether_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=nether_brick" } ], "block": "stonecutter", @@ -1674,7 +1674,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_andesite" } ], "block": "stonecutter", @@ -1691,7 +1691,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_andesite" } ], "block": "stonecutter", @@ -1707,7 +1707,7 @@ ], "output": [ { - "blockState": "minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_andesite_stairs" } ], "block": "stonecutter", @@ -1723,7 +1723,7 @@ ], "output": [ { - "blockState": "minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_andesite_stairs" } ], "block": "stonecutter", @@ -1740,7 +1740,7 @@ ], "output": [ { - "blockState": "minecraft:polished_basalt;pillar_axis=y" + "blockState": "minecraft:polished_basalt" } ], "block": "stonecutter", @@ -1758,7 +1758,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:polished_blackstone_brick_slab;top_slot_bit=0" + "blockState": "minecraft:polished_blackstone_brick_slab" } ], "block": "stonecutter", @@ -1775,7 +1775,7 @@ ], "output": [ { - "blockState": "minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_blackstone_brick_stairs" } ], "block": "stonecutter", @@ -1792,7 +1792,7 @@ ], "output": [ { - "blockState": "minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:polished_blackstone_brick_wall" } ], "block": "stonecutter", @@ -1842,7 +1842,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_diorite" } ], "block": "stonecutter", @@ -1859,7 +1859,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_diorite" } ], "block": "stonecutter", @@ -1875,7 +1875,7 @@ ], "output": [ { - "blockState": "minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_diorite_stairs" } ], "block": "stonecutter", @@ -1891,7 +1891,7 @@ ], "output": [ { - "blockState": "minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_diorite_stairs" } ], "block": "stonecutter", @@ -1941,7 +1941,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_granite" } ], "block": "stonecutter", @@ -1958,7 +1958,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_granite" } ], "block": "stonecutter", @@ -1974,7 +1974,7 @@ ], "output": [ { - "blockState": "minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_granite_stairs" } ], "block": "stonecutter", @@ -1990,7 +1990,7 @@ ], "output": [ { - "blockState": "minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_granite_stairs" } ], "block": "stonecutter", @@ -2008,7 +2008,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:polished_blackstone_slab;top_slot_bit=0" + "blockState": "minecraft:polished_blackstone_slab" } ], "block": "stonecutter", @@ -2025,7 +2025,7 @@ ], "output": [ { - "blockState": "minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_blackstone_stairs" } ], "block": "stonecutter", @@ -2042,7 +2042,7 @@ ], "output": [ { - "blockState": "minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:polished_blackstone_wall" } ], "block": "stonecutter", @@ -2059,7 +2059,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_brick" } ], "block": "stonecutter", @@ -2075,7 +2075,7 @@ ], "output": [ { - "blockState": "minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:prismarine_bricks_stairs" } ], "block": "stonecutter", @@ -2092,7 +2092,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_rough" } ], "block": "stonecutter", @@ -2108,7 +2108,7 @@ ], "output": [ { - "blockState": "minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:prismarine_stairs" } ], "block": "stonecutter", @@ -2124,7 +2124,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=prismarine;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=prismarine" } ], "block": "stonecutter", @@ -2140,7 +2140,7 @@ ], "output": [ { - "blockState": "minecraft:purpur_block;chisel_type=lines;pillar_axis=y" + "blockState": "minecraft:purpur_block;chisel_type=lines" } ], "block": "stonecutter", @@ -2157,7 +2157,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=purpur" } ], "block": "stonecutter", @@ -2173,7 +2173,7 @@ ], "output": [ { - "blockState": "minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:purpur_stairs" } ], "block": "stonecutter", @@ -2205,7 +2205,7 @@ ], "output": [ { - "blockState": "minecraft:quartz_block;chisel_type=chiseled;pillar_axis=y" + "blockState": "minecraft:quartz_block;chisel_type=chiseled" } ], "block": "stonecutter", @@ -2221,7 +2221,7 @@ ], "output": [ { - "blockState": "minecraft:quartz_block;chisel_type=lines;pillar_axis=y" + "blockState": "minecraft:quartz_block;chisel_type=lines" } ], "block": "stonecutter", @@ -2238,7 +2238,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=quartz" } ], "block": "stonecutter", @@ -2254,7 +2254,7 @@ ], "output": [ { - "blockState": "minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:quartz_stairs" } ], "block": "stonecutter", @@ -2271,7 +2271,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_nether_brick" } ], "block": "stonecutter", @@ -2287,7 +2287,7 @@ ], "output": [ { - "blockState": "minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:red_nether_brick_stairs" } ], "block": "stonecutter", @@ -2303,7 +2303,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=red_nether_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=red_nether_brick" } ], "block": "stonecutter", @@ -2320,7 +2320,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab2" } ], "block": "stonecutter", @@ -2368,7 +2368,7 @@ ], "output": [ { - "blockState": "minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:red_sandstone_stairs" } ], "block": "stonecutter", @@ -2384,7 +2384,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=red_sandstone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=red_sandstone" } ], "block": "stonecutter", @@ -2401,7 +2401,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=sandstone" } ], "block": "stonecutter", @@ -2449,7 +2449,7 @@ ], "output": [ { - "blockState": "minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:sandstone_stairs" } ], "block": "stonecutter", @@ -2465,7 +2465,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=sandstone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=sandstone" } ], "block": "stonecutter", @@ -2483,7 +2483,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:polished_blackstone_slab;top_slot_bit=0" + "blockState": "minecraft:polished_blackstone_slab" } ], "block": "stonecutter", @@ -2501,7 +2501,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:polished_blackstone_brick_slab;top_slot_bit=0" + "blockState": "minecraft:polished_blackstone_brick_slab" } ], "block": "stonecutter", @@ -2518,7 +2518,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0" + "blockState": "minecraft:stone_slab" } ], "block": "stonecutter", @@ -2529,13 +2529,13 @@ "type": 0, "input": [ { - "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" + "blockState": "minecraft:quartz_block;chisel_type=smooth" } ], "output": [ { "count": 2, - "blockState": "minecraft:stone_slab4;stone_slab_type_4=smooth_quartz;top_slot_bit=0" + "blockState": "minecraft:stone_slab4;stone_slab_type_4=smooth_quartz" } ], "block": "stonecutter", @@ -2546,12 +2546,12 @@ "type": 0, "input": [ { - "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" + "blockState": "minecraft:quartz_block;chisel_type=smooth" } ], "output": [ { - "blockState": "minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:smooth_quartz_stairs" } ], "block": "stonecutter", @@ -2568,7 +2568,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone" } ], "block": "stonecutter", @@ -2584,7 +2584,7 @@ ], "output": [ { - "blockState": "minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:smooth_red_sandstone_stairs" } ], "block": "stonecutter", @@ -2601,7 +2601,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone" } ], "block": "stonecutter", @@ -2617,7 +2617,7 @@ ], "output": [ { - "blockState": "minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:smooth_sandstone_stairs" } ], "block": "stonecutter", @@ -2634,7 +2634,7 @@ ], "output": [ { - "blockState": "minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_blackstone_stairs" } ], "block": "stonecutter", @@ -2650,7 +2650,7 @@ ], "output": [ { - "blockState": "minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:normal_stone_stairs" } ], "block": "stonecutter", @@ -2666,7 +2666,7 @@ ], "output": [ { - "blockState": "minecraft:stonebrick;stone_brick_type=default" + "blockState": "minecraft:stonebrick" } ], "block": "stonecutter", @@ -2699,7 +2699,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick" } ], "block": "stonecutter", @@ -2716,7 +2716,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick" } ], "block": "stonecutter", @@ -2732,7 +2732,7 @@ ], "output": [ { - "blockState": "minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:stone_brick_stairs" } ], "block": "stonecutter", @@ -2748,7 +2748,7 @@ ], "output": [ { - "blockState": "minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:stone_brick_stairs" } ], "block": "stonecutter", @@ -2764,7 +2764,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=stone_brick" } ], "block": "stonecutter", @@ -2780,7 +2780,7 @@ ], "output": [ { - "blockState": "minecraft:cobblestone_wall;wall_block_type=stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=stone_brick" } ], "block": "stonecutter", @@ -2797,7 +2797,7 @@ ], "output": [ { - "blockState": "minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:polished_blackstone_wall" } ], "block": "stonecutter", @@ -2814,7 +2814,7 @@ ], "output": [ { - "blockState": "minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:polished_blackstone_brick_wall" } ], "block": "stonecutter", @@ -3265,7 +3265,7 @@ ], "output": [ { - "blockState": "minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_blackstone_brick_stairs" } ], "block": "stonecutter", @@ -3348,7 +3348,7 @@ }, "output": [ { - "blockState": "minecraft:birch_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:birch_button" } ], "shape": [ @@ -3367,7 +3367,7 @@ }, "output": [ { - "blockState": "minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:dark_oak_button" } ], "shape": [ @@ -3386,7 +3386,7 @@ }, "output": [ { - "blockState": "minecraft:jungle_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:jungle_button" } ], "shape": [ @@ -3405,7 +3405,7 @@ }, "output": [ { - "blockState": "minecraft:spruce_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:spruce_button" } ], "shape": [ @@ -3425,7 +3425,7 @@ }, "output": [ { - "blockState": "minecraft:chest;facing_direction=0" + "blockState": "minecraft:chest" } ], "shape": [ @@ -3454,7 +3454,7 @@ }, "output": [ { - "blockState": "minecraft:daylight_detector;redstone_signal=0" + "blockState": "minecraft:daylight_detector" } ], "shape": [ @@ -3579,7 +3579,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=cobblestone" } ], "shape": [ @@ -3599,7 +3599,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=nether_brick" } ], "shape": [ @@ -3619,7 +3619,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=sandstone" } ], "shape": [ @@ -3697,7 +3697,7 @@ }, "output": [ { - "blockState": "minecraft:acacia_pressure_plate;redstone_signal=0" + "blockState": "minecraft:acacia_pressure_plate" } ], "shape": [ @@ -3716,7 +3716,7 @@ }, "output": [ { - "blockState": "minecraft:birch_pressure_plate;redstone_signal=0" + "blockState": "minecraft:birch_pressure_plate" } ], "shape": [ @@ -3735,7 +3735,7 @@ }, "output": [ { - "blockState": "minecraft:dark_oak_pressure_plate;redstone_signal=0" + "blockState": "minecraft:dark_oak_pressure_plate" } ], "shape": [ @@ -3754,7 +3754,7 @@ }, "output": [ { - "blockState": "minecraft:jungle_pressure_plate;redstone_signal=0" + "blockState": "minecraft:jungle_pressure_plate" } ], "shape": [ @@ -3773,7 +3773,7 @@ }, "output": [ { - "blockState": "minecraft:spruce_pressure_plate;redstone_signal=0" + "blockState": "minecraft:spruce_pressure_plate" } ], "shape": [ @@ -3813,7 +3813,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab4;stone_slab_type_4=stone;top_slot_bit=0" + "blockState": "minecraft:stone_slab4;stone_slab_type_4=stone" } ], "shape": [ @@ -3833,7 +3833,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab4;stone_slab_type_4=mossy_stone_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab4" } ], "shape": [ @@ -3853,7 +3853,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=brick" } ], "shape": [ @@ -3873,7 +3873,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=stone_brick" } ], "shape": [ @@ -3893,7 +3893,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0" + "blockState": "minecraft:stone_slab" } ], "shape": [ @@ -3918,7 +3918,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:torch;torch_facing_direction=unknown" + "blockState": "minecraft:torch" } ], "shape": [ @@ -3943,7 +3943,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:torch;torch_facing_direction=unknown" + "blockState": "minecraft:torch" } ], "shape": [ @@ -3964,7 +3964,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:acacia_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:acacia_trapdoor" } ], "shape": [ @@ -3985,7 +3985,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:birch_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:birch_trapdoor" } ], "shape": [ @@ -4006,7 +4006,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:dark_oak_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:dark_oak_trapdoor" } ], "shape": [ @@ -4027,7 +4027,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:jungle_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:jungle_trapdoor" } ], "shape": [ @@ -4048,7 +4048,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:spruce_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:spruce_trapdoor" } ], "shape": [ @@ -4069,7 +4069,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:trapdoor" } ], "shape": [ @@ -4099,7 +4099,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:tripwire_hook;attached_bit=0;direction=0;powered_bit=0" + "blockState": "minecraft:tripwire_hook" } ], "shape": [ @@ -4120,7 +4120,7 @@ }, "output": [ { - "blockState": "minecraft:wooden_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:wooden_button" } ], "shape": [ @@ -4139,7 +4139,7 @@ }, "output": [ { - "blockState": "minecraft:wooden_pressure_plate;redstone_signal=0" + "blockState": "minecraft:wooden_pressure_plate" } ], "shape": [ @@ -4180,7 +4180,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:acacia_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:acacia_stairs" } ], "shape": [ @@ -11963,7 +11963,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:birch_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:birch_stairs" } ], "shape": [ @@ -11983,12 +11983,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:double_stone_slab;stone_slab_type=quartz;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab;stone_slab_type=quartz" } }, "output": [ { - "blockState": "minecraft:quartz_block;chisel_type=chiseled;pillar_axis=y" + "blockState": "minecraft:quartz_block;chisel_type=chiseled" } ], "shape": [ @@ -12003,7 +12003,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:double_stone_slab;stone_slab_type=stone_brick;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab;stone_slab_type=stone_brick" } }, "output": [ @@ -12033,7 +12033,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:dark_oak_stairs" } ], "shape": [ @@ -12073,7 +12073,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:double_stone_slab;stone_slab_type=sandstone;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab;stone_slab_type=sandstone" } }, "output": [ @@ -12099,7 +12099,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:jungle_stairs" } ], "shape": [ @@ -12115,12 +12115,12 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:double_stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab2;stone_slab_type_2=purpur" } }, "output": [ { - "blockState": "minecraft:purpur_block;chisel_type=lines;pillar_axis=y" + "blockState": "minecraft:purpur_block;chisel_type=lines" } ], "shape": [ @@ -12145,7 +12145,7 @@ }, "output": [ { - "blockState": "minecraft:loom;direction=0" + "blockState": "minecraft:loom" } ], "shape": [ @@ -12241,7 +12241,7 @@ }, "output": [ { - "blockState": "minecraft:acacia_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:acacia_fence_gate" } ], "shape": [ @@ -12297,7 +12297,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=acacia" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=acacia" } }, "output": [ @@ -12317,7 +12317,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=acacia" + "blockState": "minecraft:wood;wood_type=acacia" } }, "output": [ @@ -12343,7 +12343,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:acacia_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:acacia_stairs" } ], "shape": [ @@ -12365,7 +12365,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=acacia" + "blockState": "minecraft:wood;wood_type=acacia" } ], "shape": [ @@ -12387,7 +12387,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=acacia" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=acacia" } ], "shape": [ @@ -12408,7 +12408,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=acacia" + "blockState": "minecraft:wooden_slab;wood_type=acacia" } ], "shape": [ @@ -12437,7 +12437,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:activator_rail;rail_data_bit=0;rail_direction=0" + "blockState": "minecraft:activator_rail" } ], "shape": [ @@ -12502,7 +12502,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:andesite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:andesite_stairs" } ], "shape": [ @@ -12524,7 +12524,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=andesite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=andesite" } ], "shape": [ @@ -12549,7 +12549,7 @@ }, "output": [ { - "blockState": "minecraft:anvil;damage=undamaged;direction=0" + "blockState": "minecraft:anvil" } ], "shape": [ @@ -12761,7 +12761,7 @@ }, "output": [ { - "blockState": "minecraft:barrel;facing_direction=0;open_bit=0" + "blockState": "minecraft:barrel" } ], "shape": [ @@ -12787,7 +12787,7 @@ }, "output": [ { - "blockState": "minecraft:barrel;facing_direction=0;open_bit=0" + "blockState": "minecraft:barrel" } ], "shape": [ @@ -12813,7 +12813,7 @@ }, "output": [ { - "blockState": "minecraft:barrel;facing_direction=0;open_bit=0" + "blockState": "minecraft:barrel" } ], "shape": [ @@ -12891,7 +12891,7 @@ }, "output": [ { - "blockState": "minecraft:beehive;direction=0;honey_level=0" + "blockState": "minecraft:beehive" } ], "shape": [ @@ -12917,7 +12917,7 @@ }, "output": [ { - "blockState": "minecraft:beehive;direction=0;honey_level=0" + "blockState": "minecraft:beehive" } ], "shape": [ @@ -12943,7 +12943,7 @@ }, "output": [ { - "blockState": "minecraft:beehive;direction=0;honey_level=0" + "blockState": "minecraft:beehive" } ], "shape": [ @@ -13081,7 +13081,7 @@ }, "output": [ { - "blockState": "minecraft:birch_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:birch_fence_gate" } ], "shape": [ @@ -13096,7 +13096,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log;old_log_type=birch;pillar_axis=y" + "blockState": "minecraft:log;old_log_type=birch" } }, "output": [ @@ -13137,7 +13137,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=birch" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=birch" } }, "output": [ @@ -13157,7 +13157,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=birch" + "blockState": "minecraft:wood;wood_type=birch" } }, "output": [ @@ -13183,7 +13183,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:birch_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:birch_stairs" } ], "shape": [ @@ -13199,13 +13199,13 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log;old_log_type=birch;pillar_axis=y" + "blockState": "minecraft:log;old_log_type=birch" } }, "output": [ { "count": 3, - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=birch" + "blockState": "minecraft:wood;wood_type=birch" } ], "shape": [ @@ -13227,7 +13227,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=birch" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=birch" } ], "shape": [ @@ -13248,7 +13248,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=birch" + "blockState": "minecraft:wooden_slab;wood_type=birch" } ], "shape": [ @@ -13661,7 +13661,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:blackstone_slab;top_slot_bit=0" + "blockState": "minecraft:blackstone_slab" } ], "shape": [ @@ -13682,7 +13682,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:blackstone_stairs" } ], "shape": [ @@ -13705,7 +13705,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:blackstone_wall" } ], "shape": [ @@ -13734,7 +13734,7 @@ }, "output": [ { - "blockState": "minecraft:blast_furnace;facing_direction=0" + "blockState": "minecraft:blast_furnace" } ], "shape": [ @@ -14217,7 +14217,7 @@ }, "output": [ { - "blockState": "minecraft:bone_block;deprecated=0;pillar_axis=y" + "blockState": "minecraft:bone_block" } ], "shape": [ @@ -14541,7 +14541,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:brick_stairs" } ], "shape": [ @@ -14564,7 +14564,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=brick" } ], "shape": [ @@ -15847,7 +15847,7 @@ }, "output": [ { - "blockState": "minecraft:chest;facing_direction=0" + "blockState": "minecraft:chest" } ], "shape": [ @@ -15869,7 +15869,7 @@ }, "output": [ { - "blockState": "minecraft:chest;facing_direction=0" + "blockState": "minecraft:chest" } ], "shape": [ @@ -15931,7 +15931,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:double_stone_slab;stone_slab_type=nether_brick;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab;stone_slab_type=nether_brick" } }, "output": [ @@ -16159,7 +16159,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:stone_stairs" } ], "shape": [ @@ -16182,7 +16182,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=cobblestone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall" } ], "shape": [ @@ -16276,7 +16276,7 @@ }, "output": [ { - "blockState": "minecraft:composter;composter_fill_level=0" + "blockState": "minecraft:composter" } ], "shape": [ @@ -16298,7 +16298,7 @@ }, "output": [ { - "blockState": "minecraft:composter;composter_fill_level=0" + "blockState": "minecraft:composter" } ], "shape": [ @@ -16320,7 +16320,7 @@ }, "output": [ { - "blockState": "minecraft:composter;composter_fill_level=0" + "blockState": "minecraft:composter" } ], "shape": [ @@ -16986,7 +16986,7 @@ }, "output": [ { - "blockState": "minecraft:crimson_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:crimson_button" } ], "shape": [ @@ -17059,7 +17059,7 @@ }, "output": [ { - "blockState": "minecraft:crimson_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:crimson_fence_gate" } ], "shape": [ @@ -17081,7 +17081,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:crimson_hyphae;pillar_axis=y" + "blockState": "minecraft:crimson_hyphae" } ], "shape": [ @@ -17186,7 +17186,7 @@ }, "output": [ { - "blockState": "minecraft:crimson_pressure_plate;redstone_signal=0" + "blockState": "minecraft:crimson_pressure_plate" } ], "shape": [ @@ -17234,7 +17234,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:crimson_slab;top_slot_bit=0" + "blockState": "minecraft:crimson_slab" } ], "shape": [ @@ -17255,7 +17255,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:crimson_stairs" } ], "shape": [ @@ -17278,7 +17278,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:crimson_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:crimson_trapdoor" } ], "shape": [ @@ -17695,7 +17695,7 @@ }, "output": [ { - "blockState": "minecraft:dark_oak_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:dark_oak_fence_gate" } ], "shape": [ @@ -17710,7 +17710,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log2;new_log_type=dark_oak;pillar_axis=y" + "blockState": "minecraft:log2;new_log_type=dark_oak" } }, "output": [ @@ -17751,7 +17751,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=dark_oak" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=dark_oak" } }, "output": [ @@ -17771,7 +17771,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=dark_oak" + "blockState": "minecraft:wood;wood_type=dark_oak" } }, "output": [ @@ -17797,7 +17797,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:dark_oak_stairs" } ], "shape": [ @@ -17813,13 +17813,13 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log2;new_log_type=dark_oak;pillar_axis=y" + "blockState": "minecraft:log2;new_log_type=dark_oak" } }, "output": [ { "count": 3, - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=dark_oak" + "blockState": "minecraft:wood;wood_type=dark_oak" } ], "shape": [ @@ -17841,7 +17841,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=dark_oak" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=dark_oak" } ], "shape": [ @@ -17862,7 +17862,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=dark_oak" + "blockState": "minecraft:wooden_slab;wood_type=dark_oak" } ], "shape": [ @@ -17941,7 +17941,7 @@ }, "output": [ { - "blockState": "minecraft:daylight_detector;redstone_signal=0" + "blockState": "minecraft:daylight_detector" } ], "shape": [ @@ -17971,7 +17971,7 @@ }, "output": [ { - "blockState": "minecraft:daylight_detector;redstone_signal=0" + "blockState": "minecraft:daylight_detector" } ], "shape": [ @@ -18178,7 +18178,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:detector_rail;rail_data_bit=0;rail_direction=0" + "blockState": "minecraft:detector_rail" } ], "shape": [ @@ -18485,7 +18485,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:diorite_stairs" } ], "shape": [ @@ -18507,7 +18507,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=diorite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=diorite" } ], "shape": [ @@ -18536,7 +18536,7 @@ }, "output": [ { - "blockState": "minecraft:dispenser;facing_direction=3;triggered_bit=0" + "blockState": "minecraft:dispenser;facing_direction=3" } ], "shape": [ @@ -18647,7 +18647,7 @@ }, "output": [ { - "blockState": "minecraft:dropper;facing_direction=3;triggered_bit=0" + "blockState": "minecraft:dropper;facing_direction=3" } ], "shape": [ @@ -18764,7 +18764,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:end_brick_stairs" } ], "shape": [ @@ -18787,7 +18787,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=end_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=end_brick" } ], "shape": [ @@ -18865,7 +18865,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:end_rod;facing_direction=0" + "blockState": "minecraft:end_rod" } ], "shape": [ @@ -18890,7 +18890,7 @@ }, "output": [ { - "blockState": "minecraft:ender_chest;facing_direction=0" + "blockState": "minecraft:ender_chest" } ], "shape": [ @@ -18937,7 +18937,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:fence;wood_type=oak" + "blockState": "minecraft:fence" } ], "shape": [ @@ -18961,7 +18961,7 @@ }, "output": [ { - "blockState": "minecraft:fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:fence_gate" } ], "shape": [ @@ -19153,7 +19153,7 @@ }, "output": [ { - "blockState": "minecraft:furnace;facing_direction=0" + "blockState": "minecraft:furnace" } ], "shape": [ @@ -19175,7 +19175,7 @@ }, "output": [ { - "blockState": "minecraft:furnace;facing_direction=0" + "blockState": "minecraft:furnace" } ], "shape": [ @@ -19197,7 +19197,7 @@ }, "output": [ { - "blockState": "minecraft:furnace;facing_direction=0" + "blockState": "minecraft:furnace" } ], "shape": [ @@ -19618,7 +19618,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:golden_rail;rail_data_bit=0;rail_direction=0" + "blockState": "minecraft:golden_rail" } ], "shape": [ @@ -19712,7 +19712,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:granite_stairs" } ], "shape": [ @@ -19734,7 +19734,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=granite;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=granite" } ], "shape": [ @@ -20325,7 +20325,7 @@ "fuzzy": true }, "B": { - "blockState": "minecraft:double_stone_slab4;stone_slab_type_4=stone;top_slot_bit=0" + "blockState": "minecraft:double_stone_slab4;stone_slab_type_4=stone" }, "C": { "fuzzy": true, @@ -20334,7 +20334,7 @@ }, "output": [ { - "blockState": "minecraft:grindstone;attachment=standing;direction=0" + "blockState": "minecraft:grindstone" } ], "shape": [ @@ -20363,7 +20363,7 @@ }, "output": [ { - "blockState": "minecraft:grindstone;attachment=standing;direction=0" + "blockState": "minecraft:grindstone" } ], "shape": [ @@ -20392,7 +20392,7 @@ }, "output": [ { - "blockState": "minecraft:grindstone;attachment=standing;direction=0" + "blockState": "minecraft:grindstone" } ], "shape": [ @@ -20421,7 +20421,7 @@ }, "output": [ { - "blockState": "minecraft:grindstone;attachment=standing;direction=0" + "blockState": "minecraft:grindstone" } ], "shape": [ @@ -20450,7 +20450,7 @@ }, "output": [ { - "blockState": "minecraft:grindstone;attachment=standing;direction=0" + "blockState": "minecraft:grindstone" } ], "shape": [ @@ -20479,7 +20479,7 @@ }, "output": [ { - "blockState": "minecraft:grindstone;attachment=standing;direction=0" + "blockState": "minecraft:grindstone" } ], "shape": [ @@ -20508,7 +20508,7 @@ }, "output": [ { - "blockState": "minecraft:grindstone;attachment=standing;direction=0" + "blockState": "minecraft:grindstone" } ], "shape": [ @@ -20537,7 +20537,7 @@ }, "output": [ { - "blockState": "minecraft:grindstone;attachment=standing;direction=0" + "blockState": "minecraft:grindstone" } ], "shape": [ @@ -20566,7 +20566,7 @@ }, "output": [ { - "blockState": "minecraft:grindstone;attachment=standing;direction=0" + "blockState": "minecraft:grindstone" } ], "shape": [ @@ -20587,7 +20587,7 @@ }, "output": [ { - "blockState": "minecraft:hay_block;deprecated=0;pillar_axis=y" + "blockState": "minecraft:hay_block" } ], "shape": [ @@ -20609,7 +20609,7 @@ }, "output": [ { - "blockState": "minecraft:heavy_weighted_pressure_plate;redstone_signal=0" + "blockState": "minecraft:heavy_weighted_pressure_plate" } ], "shape": [ @@ -21175,7 +21175,7 @@ }, "output": [ { - "blockState": "minecraft:iron_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:iron_trapdoor" } ], "shape": [ @@ -21349,7 +21349,7 @@ }, "output": [ { - "blockState": "minecraft:jungle_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:jungle_fence_gate" } ], "shape": [ @@ -21364,7 +21364,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log;old_log_type=jungle;pillar_axis=y" + "blockState": "minecraft:log;old_log_type=jungle" } }, "output": [ @@ -21405,7 +21405,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=jungle" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=jungle" } }, "output": [ @@ -21425,7 +21425,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=jungle" + "blockState": "minecraft:wood;wood_type=jungle" } }, "output": [ @@ -21451,7 +21451,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:jungle_stairs" } ], "shape": [ @@ -21467,13 +21467,13 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log;old_log_type=jungle;pillar_axis=y" + "blockState": "minecraft:log;old_log_type=jungle" } }, "output": [ { "count": 3, - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=jungle" + "blockState": "minecraft:wood;wood_type=jungle" } ], "shape": [ @@ -21495,7 +21495,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=jungle" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=jungle" } ], "shape": [ @@ -21516,7 +21516,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=jungle" + "blockState": "minecraft:wooden_slab;wood_type=jungle" } ], "shape": [ @@ -21537,7 +21537,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:ladder;facing_direction=0" + "blockState": "minecraft:ladder" } ], "shape": [ @@ -21563,7 +21563,7 @@ }, "output": [ { - "blockState": "minecraft:lantern;hanging=0" + "blockState": "minecraft:lantern" } ], "shape": [ @@ -21789,7 +21789,7 @@ }, "output": [ { - "blockState": "minecraft:lectern;direction=0;powered_bit=0" + "blockState": "minecraft:lectern" } ], "shape": [ @@ -21815,7 +21815,7 @@ }, "output": [ { - "blockState": "minecraft:lectern;direction=0;powered_bit=0" + "blockState": "minecraft:lectern" } ], "shape": [ @@ -21841,7 +21841,7 @@ }, "output": [ { - "blockState": "minecraft:lectern;direction=0;powered_bit=0" + "blockState": "minecraft:lectern" } ], "shape": [ @@ -21867,7 +21867,7 @@ }, "output": [ { - "blockState": "minecraft:lever;lever_direction=down_east_west;open_bit=0" + "blockState": "minecraft:lever" } ], "shape": [ @@ -22682,7 +22682,7 @@ }, "output": [ { - "blockState": "minecraft:light_weighted_pressure_plate;redstone_signal=0" + "blockState": "minecraft:light_weighted_pressure_plate" } ], "shape": [ @@ -23016,7 +23016,7 @@ }, "output": [ { - "blockState": "minecraft:lit_pumpkin;direction=0" + "blockState": "minecraft:lit_pumpkin" } ], "shape": [ @@ -23093,7 +23093,7 @@ }, "output": [ { - "blockState": "minecraft:loom;direction=0" + "blockState": "minecraft:loom" } ], "shape": [ @@ -23118,7 +23118,7 @@ }, "output": [ { - "blockState": "minecraft:loom;direction=0" + "blockState": "minecraft:loom" } ], "shape": [ @@ -23467,7 +23467,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:double_plant;double_plant_type=syringa;upper_block_bit=0" + "blockState": "minecraft:double_plant;double_plant_type=syringa" } ], "output": [ @@ -23807,7 +23807,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:mossy_cobblestone_stairs" } ], "shape": [ @@ -23830,7 +23830,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_cobblestone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_cobblestone" } ], "shape": [ @@ -23851,7 +23851,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:mossy_stone_brick_stairs" } ], "shape": [ @@ -23873,7 +23873,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=mossy_stone_brick" } ], "shape": [ @@ -24007,7 +24007,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:nether_brick_stairs" } ], "shape": [ @@ -24030,7 +24030,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=nether_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=nether_brick" } ], "shape": [ @@ -24213,7 +24213,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" } ], "shape": [ @@ -24234,7 +24234,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" } ], "shape": [ @@ -24248,13 +24248,13 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=oak" + "blockState": "minecraft:wood;stripped_bit=1" } }, "output": [ { "count": 4, - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" } ], "shape": [ @@ -24274,7 +24274,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:planks;wood_type=oak" + "blockState": "minecraft:planks" } ], "shape": [ @@ -24294,7 +24294,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:oak_stairs" } ], "shape": [ @@ -24316,7 +24316,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=oak" + "blockState": "minecraft:wood" } ], "shape": [ @@ -24338,7 +24338,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=oak" + "blockState": "minecraft:wood;stripped_bit=1" } ], "shape": [ @@ -24359,7 +24359,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=oak" + "blockState": "minecraft:wooden_slab" } ], "shape": [ @@ -24387,7 +24387,7 @@ }, "output": [ { - "blockState": "minecraft:observer;facing_direction=0;powered_bit=0" + "blockState": "minecraft:observer" } ], "shape": [ @@ -24733,7 +24733,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:quartz_block;chisel_type=lines;pillar_axis=y" + "blockState": "minecraft:quartz_block;chisel_type=lines" } ], "shape": [ @@ -24910,7 +24910,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:double_plant;double_plant_type=paeonia;upper_block_bit=0" + "blockState": "minecraft:double_plant;double_plant_type=paeonia" } ], "output": [ @@ -25165,7 +25165,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_andesite_stairs" } ], "shape": [ @@ -25188,7 +25188,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:polished_basalt;pillar_axis=y" + "blockState": "minecraft:polished_basalt" } ], "shape": [ @@ -25232,7 +25232,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:polished_blackstone_brick_slab;top_slot_bit=0" + "blockState": "minecraft:polished_blackstone_brick_slab" } ], "shape": [ @@ -25253,7 +25253,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_blackstone_brick_stairs" } ], "shape": [ @@ -25276,7 +25276,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:polished_blackstone_brick_wall" } ], "shape": [ @@ -25319,7 +25319,7 @@ }, "output": [ { - "blockState": "minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:polished_blackstone_button" } ], "shape": [ @@ -25339,7 +25339,7 @@ }, "output": [ { - "blockState": "minecraft:polished_blackstone_pressure_plate;redstone_signal=0" + "blockState": "minecraft:polished_blackstone_pressure_plate" } ], "shape": [ @@ -25360,7 +25360,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:polished_blackstone_slab;top_slot_bit=0" + "blockState": "minecraft:polished_blackstone_slab" } ], "shape": [ @@ -25381,7 +25381,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_blackstone_stairs" } ], "shape": [ @@ -25404,7 +25404,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:polished_blackstone_wall" } ], "shape": [ @@ -25534,7 +25534,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_diorite_stairs" } ], "shape": [ @@ -25577,7 +25577,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:polished_granite_stairs" } ], "shape": [ @@ -25599,7 +25599,7 @@ }, "output": [ { - "blockState": "minecraft:prismarine;prismarine_block_type=default" + "blockState": "minecraft:prismarine" } ], "shape": [ @@ -25642,7 +25642,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:prismarine_stairs" } ], "shape": [ @@ -25664,7 +25664,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:prismarine_bricks_stairs" } ], "shape": [ @@ -25686,7 +25686,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:dark_prismarine_stairs" } ], "shape": [ @@ -25708,7 +25708,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=prismarine;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=prismarine" } ], "shape": [ @@ -26063,7 +26063,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:purpur_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:purpur_block" } ], "shape": [ @@ -26085,7 +26085,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:purpur_stairs" } ], "shape": [ @@ -26107,7 +26107,7 @@ }, "output": [ { - "blockState": "minecraft:quartz_block;chisel_type=default;pillar_axis=y" + "blockState": "minecraft:quartz_block" } ], "shape": [ @@ -26148,7 +26148,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:quartz_stairs" } ], "shape": [ @@ -26241,7 +26241,7 @@ "output": [ { "count": 16, - "blockState": "minecraft:rail;rail_direction=0" + "blockState": "minecraft:rail" } ], "shape": [ @@ -26566,7 +26566,7 @@ "type": 0, "input": [ { - "blockState": "minecraft:double_plant;double_plant_type=rose;upper_block_bit=0" + "blockState": "minecraft:double_plant;double_plant_type=rose" } ], "output": [ @@ -26633,7 +26633,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:red_nether_brick_stairs" } ], "shape": [ @@ -26656,7 +26656,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=red_nether_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=red_nether_brick" } ], "shape": [ @@ -26676,7 +26676,7 @@ }, "output": [ { - "blockState": "minecraft:red_sandstone;sand_stone_type=default" + "blockState": "minecraft:red_sandstone" } ], "shape": [ @@ -26697,7 +26697,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:red_sandstone_stairs" } ], "shape": [ @@ -26719,7 +26719,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=red_sandstone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=red_sandstone" } ], "shape": [ @@ -26915,7 +26915,7 @@ }, "output": [ { - "blockState": "minecraft:redstone_torch;torch_facing_direction=unknown" + "blockState": "minecraft:redstone_torch" } ], "shape": [ @@ -26968,7 +26968,7 @@ }, "output": [ { - "blockState": "minecraft:respawn_anchor;respawn_anchor_charge=0" + "blockState": "minecraft:respawn_anchor" } ], "shape": [ @@ -26989,7 +26989,7 @@ }, "output": [ { - "blockState": "minecraft:sandstone;sand_stone_type=default" + "blockState": "minecraft:sandstone" } ], "shape": [ @@ -27010,7 +27010,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:sandstone_stairs" } ], "shape": [ @@ -27032,7 +27032,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=sandstone;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=sandstone" } ], "shape": [ @@ -27058,7 +27058,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:scaffolding;stability=0;stability_check=0" + "blockState": "minecraft:scaffolding" } ], "shape": [ @@ -27512,7 +27512,7 @@ }, "output": [ { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" } ], "shape": [ @@ -27538,7 +27538,7 @@ }, "output": [ { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" } ], "shape": [ @@ -27564,7 +27564,7 @@ }, "output": [ { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" } ], "shape": [ @@ -27590,7 +27590,7 @@ }, "output": [ { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" } ], "shape": [ @@ -27616,7 +27616,7 @@ }, "output": [ { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" } ], "shape": [ @@ -27642,7 +27642,7 @@ }, "output": [ { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" } ], "shape": [ @@ -27668,7 +27668,7 @@ }, "output": [ { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" } ], "shape": [ @@ -27694,7 +27694,7 @@ }, "output": [ { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" } ], "shape": [ @@ -27720,7 +27720,7 @@ }, "output": [ { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" } ], "shape": [ @@ -27746,7 +27746,7 @@ }, "output": [ { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" } ], "shape": [ @@ -27772,7 +27772,7 @@ }, "output": [ { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" } ], "shape": [ @@ -27798,7 +27798,7 @@ }, "output": [ { - "blockState": "minecraft:smoker;facing_direction=0" + "blockState": "minecraft:smoker" } ], "shape": [ @@ -27814,13 +27814,13 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" + "blockState": "minecraft:quartz_block;chisel_type=smooth" } }, "output": [ { "count": 4, - "blockState": "minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:smooth_quartz_stairs" } ], "shape": [ @@ -27863,7 +27863,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:smooth_red_sandstone_stairs" } ], "shape": [ @@ -27906,7 +27906,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:smooth_sandstone_stairs" } ], "shape": [ @@ -27950,7 +27950,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:snow_layer;covered_bit=0;height=0" + "blockState": "minecraft:snow_layer" } ], "shape": [ @@ -28754,7 +28754,7 @@ }, "output": [ { - "blockState": "minecraft:soul_lantern;hanging=0" + "blockState": "minecraft:soul_lantern" } ], "shape": [ @@ -28784,7 +28784,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:soul_torch;torch_facing_direction=unknown" + "blockState": "minecraft:soul_torch" } ], "shape": [ @@ -28814,7 +28814,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:soul_torch;torch_facing_direction=unknown" + "blockState": "minecraft:soul_torch" } ], "shape": [ @@ -28937,7 +28937,7 @@ }, "output": [ { - "blockState": "minecraft:spruce_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:spruce_fence_gate" } ], "shape": [ @@ -28952,7 +28952,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log;old_log_type=spruce;pillar_axis=y" + "blockState": "minecraft:log;old_log_type=spruce" } }, "output": [ @@ -28993,7 +28993,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=spruce" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=spruce" } }, "output": [ @@ -29013,7 +29013,7 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=spruce" + "blockState": "minecraft:wood;wood_type=spruce" } }, "output": [ @@ -29039,7 +29039,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:spruce_stairs" } ], "shape": [ @@ -29055,13 +29055,13 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:log;old_log_type=spruce;pillar_axis=y" + "blockState": "minecraft:log;old_log_type=spruce" } }, "output": [ { "count": 3, - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=spruce" + "blockState": "minecraft:wood;wood_type=spruce" } ], "shape": [ @@ -29083,7 +29083,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=spruce" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=spruce" } ], "shape": [ @@ -29104,7 +29104,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:wooden_slab;top_slot_bit=0;wood_type=spruce" + "blockState": "minecraft:wooden_slab;wood_type=spruce" } ], "shape": [ @@ -29300,7 +29300,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:stone_brick_stairs" } ], "shape": [ @@ -29322,7 +29322,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:cobblestone_wall;wall_block_type=stone_brick;wall_connection_type_east=none;wall_connection_type_north=none;wall_connection_type_south=none;wall_connection_type_west=none;wall_post_bit=0" + "blockState": "minecraft:cobblestone_wall;wall_block_type=stone_brick" } ], "shape": [ @@ -29342,7 +29342,7 @@ }, "output": [ { - "blockState": "minecraft:stone_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:stone_button" } ], "shape": [ @@ -29517,7 +29517,7 @@ }, "output": [ { - "blockState": "minecraft:stone_pressure_plate;redstone_signal=0" + "blockState": "minecraft:stone_pressure_plate" } ], "shape": [ @@ -29615,7 +29615,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:normal_stone_stairs" } ], "shape": [ @@ -29715,7 +29715,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:stonebrick;stone_brick_type=default" + "blockState": "minecraft:stonebrick" } ], "shape": [ @@ -29740,7 +29740,7 @@ }, "output": [ { - "blockState": "minecraft:stonecutter_block;facing_direction=0" + "blockState": "minecraft:stonecutter_block" } ], "shape": [ @@ -29761,7 +29761,7 @@ }, "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "shape": [ @@ -29783,7 +29783,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:stripped_crimson_hyphae;pillar_axis=y" + "blockState": "minecraft:stripped_crimson_hyphae" } ], "shape": [ @@ -29805,7 +29805,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:stripped_warped_hyphae;pillar_axis=y" + "blockState": "minecraft:stripped_warped_hyphae" } ], "shape": [ @@ -30282,7 +30282,7 @@ }, "output": [ { - "blockState": "minecraft:tnt;allow_underwater_bit=0;explode_bit=0" + "blockState": "minecraft:tnt" } ], "shape": [ @@ -30332,7 +30332,7 @@ ], "output": [ { - "blockState": "minecraft:trapped_chest;facing_direction=0" + "blockState": "minecraft:trapped_chest" } ], "block": "crafting_table", @@ -30357,7 +30357,7 @@ }, "output": [ { - "blockState": "minecraft:tripwire_hook;attached_bit=0;direction=0;powered_bit=0" + "blockState": "minecraft:tripwire_hook" } ], "shape": [ @@ -30387,7 +30387,7 @@ }, "output": [ { - "blockState": "minecraft:tripwire_hook;attached_bit=0;direction=0;powered_bit=0" + "blockState": "minecraft:tripwire_hook" } ], "shape": [ @@ -30430,7 +30430,7 @@ }, "output": [ { - "blockState": "minecraft:warped_button;button_pressed_bit=0;facing_direction=0" + "blockState": "minecraft:warped_button" } ], "shape": [ @@ -30503,7 +30503,7 @@ }, "output": [ { - "blockState": "minecraft:warped_fence_gate;direction=0;in_wall_bit=0;open_bit=0" + "blockState": "minecraft:warped_fence_gate" } ], "shape": [ @@ -30550,7 +30550,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:warped_hyphae;pillar_axis=y" + "blockState": "minecraft:warped_hyphae" } ], "shape": [ @@ -30655,7 +30655,7 @@ }, "output": [ { - "blockState": "minecraft:warped_pressure_plate;redstone_signal=0" + "blockState": "minecraft:warped_pressure_plate" } ], "shape": [ @@ -30703,7 +30703,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:warped_slab;top_slot_bit=0" + "blockState": "minecraft:warped_slab" } ], "shape": [ @@ -30724,7 +30724,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:warped_stairs" } ], "shape": [ @@ -30747,7 +30747,7 @@ "output": [ { "count": 2, - "blockState": "minecraft:warped_trapdoor;direction=0;open_bit=0;upside_down_bit=0" + "blockState": "minecraft:warped_trapdoor" } ], "shape": [ @@ -31193,7 +31193,7 @@ "output": [ { "count": 3, - "blockState": "minecraft:carpet;color=white" + "blockState": "minecraft:carpet" } ], "shape": [ @@ -31242,7 +31242,7 @@ "output": [ { "count": 8, - "blockState": "minecraft:concretepowder;color=white" + "blockState": "minecraft:concretepowder" } ], "block": "crafting_table", @@ -31288,7 +31288,7 @@ "output": [ { "count": 8, - "blockState": "minecraft:concretepowder;color=white" + "blockState": "minecraft:concretepowder" } ], "block": "crafting_table", @@ -31345,7 +31345,7 @@ "output": [ { "count": 8, - "blockState": "minecraft:stained_glass;color=white" + "blockState": "minecraft:stained_glass" } ], "shape": [ @@ -31372,7 +31372,7 @@ "output": [ { "count": 8, - "blockState": "minecraft:stained_glass;color=white" + "blockState": "minecraft:stained_glass" } ], "shape": [ @@ -31394,7 +31394,7 @@ "output": [ { "count": 16, - "blockState": "minecraft:stained_glass_pane;color=white" + "blockState": "minecraft:stained_glass_pane" } ], "shape": [ @@ -31420,7 +31420,7 @@ "output": [ { "count": 8, - "blockState": "minecraft:stained_glass_pane;color=white" + "blockState": "minecraft:stained_glass_pane" } ], "shape": [ @@ -31447,7 +31447,7 @@ "output": [ { "count": 8, - "blockState": "minecraft:stained_hardened_clay;color=white" + "blockState": "minecraft:stained_hardened_clay" } ], "shape": [ @@ -31474,7 +31474,7 @@ "output": [ { "count": 8, - "blockState": "minecraft:stained_hardened_clay;color=white" + "blockState": "minecraft:stained_hardened_clay" } ], "shape": [ @@ -32078,7 +32078,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:oak_stairs" } ], "shape": [ @@ -34926,7 +34926,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -34946,7 +34946,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -34966,7 +34966,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -34986,7 +34986,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -35006,7 +35006,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -35026,7 +35026,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -35046,7 +35046,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -35066,7 +35066,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -35086,7 +35086,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -35106,7 +35106,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -35126,7 +35126,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -35146,7 +35146,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -35166,7 +35166,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -35186,7 +35186,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -35206,7 +35206,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36126,7 +36126,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36146,7 +36146,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36166,7 +36166,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36186,7 +36186,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36206,7 +36206,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36226,7 +36226,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36246,7 +36246,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36266,7 +36266,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36286,7 +36286,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36306,7 +36306,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36326,7 +36326,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36346,7 +36346,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36366,7 +36366,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36386,7 +36386,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -36406,7 +36406,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -39246,7 +39246,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -39326,7 +39326,7 @@ ], "output": [ { - "blockState": "minecraft:shulker_box;color=white" + "blockState": "minecraft:shulker_box" } ], "block": "crafting_table", @@ -39523,7 +39523,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab3" } ], "shape": [ @@ -39543,7 +39543,7 @@ "output": [ { "count": 4, - "blockState": "minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=0" + "blockState": "minecraft:spruce_stairs" } ], "shape": [ @@ -39587,7 +39587,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab2" } ], "shape": [ @@ -39607,7 +39607,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_brick" } ], "shape": [ @@ -39627,7 +39627,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_dark" } ], "shape": [ @@ -39647,7 +39647,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=purpur" } ], "shape": [ @@ -39667,7 +39667,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone" } ], "shape": [ @@ -39687,7 +39687,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_nether_brick" } ], "shape": [ @@ -39707,7 +39707,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab2" } ], "shape": [ @@ -39727,7 +39727,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone" } ], "shape": [ @@ -39747,7 +39747,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=andesite" } ], "shape": [ @@ -39767,7 +39767,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=diorite" } ], "shape": [ @@ -39787,7 +39787,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=granite" } ], "shape": [ @@ -39807,7 +39807,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_granite" } ], "shape": [ @@ -39827,7 +39827,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_andesite" } ], "shape": [ @@ -39847,7 +39847,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=polished_diorite" } ], "shape": [ @@ -39867,7 +39867,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone" } ], "shape": [ @@ -39887,7 +39887,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab4;stone_slab_type_4=cut_red_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab4;stone_slab_type_4=cut_red_sandstone" } ], "shape": [ @@ -39907,7 +39907,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab4;stone_slab_type_4=cut_sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab4;stone_slab_type_4=cut_sandstone" } ], "shape": [ @@ -39921,13 +39921,13 @@ "type": 1, "input": { "A": { - "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" + "blockState": "minecraft:quartz_block;chisel_type=smooth" } }, "output": [ { "count": 6, - "blockState": "minecraft:stone_slab4;stone_slab_type_4=smooth_quartz;top_slot_bit=0" + "blockState": "minecraft:stone_slab4;stone_slab_type_4=smooth_quartz" } ], "shape": [ @@ -39947,7 +39947,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=quartz" } ], "shape": [ @@ -39967,7 +39967,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0" + "blockState": "minecraft:stone_slab2;stone_slab_type_2=prismarine_rough" } ], "shape": [ @@ -39987,7 +39987,7 @@ "output": [ { "count": 6, - "blockState": "minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0" + "blockState": "minecraft:stone_slab;stone_slab_type=sandstone" } ], "shape": [ @@ -42970,7 +42970,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -42990,7 +42990,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43010,7 +43010,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43030,7 +43030,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43050,7 +43050,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43070,7 +43070,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43090,7 +43090,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43110,7 +43110,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43130,7 +43130,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43150,7 +43150,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43170,7 +43170,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43190,7 +43190,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43210,7 +43210,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43230,7 +43230,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -43250,7 +43250,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44170,7 +44170,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44190,7 +44190,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44210,7 +44210,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44230,7 +44230,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44250,7 +44250,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44270,7 +44270,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44290,7 +44290,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44310,7 +44310,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44330,7 +44330,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44350,7 +44350,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44370,7 +44370,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44390,7 +44390,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44410,7 +44410,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44430,7 +44430,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -44450,7 +44450,7 @@ ], "output": [ { - "blockState": "minecraft:wool;color=white" + "blockState": "minecraft:wool" } ], "block": "crafting_table", @@ -47491,7 +47491,7 @@ { "type": 3, "input": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=spruce" + "blockState": "minecraft:wood;wood_type=spruce" }, "output": { "id": "minecraft:charcoal", @@ -47502,7 +47502,7 @@ { "type": 3, "input": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=birch" + "blockState": "minecraft:wood;wood_type=birch" }, "output": { "id": "minecraft:charcoal", @@ -47513,7 +47513,7 @@ { "type": 3, "input": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=jungle" + "blockState": "minecraft:wood;wood_type=jungle" }, "output": { "id": "minecraft:charcoal", @@ -47524,7 +47524,7 @@ { "type": 3, "input": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=acacia" + "blockState": "minecraft:wood;wood_type=acacia" }, "output": { "id": "minecraft:charcoal", @@ -47535,7 +47535,7 @@ { "type": 3, "input": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=0;wood_type=dark_oak" + "blockState": "minecraft:wood;wood_type=dark_oak" }, "output": { "id": "minecraft:charcoal", @@ -47546,7 +47546,7 @@ { "type": 3, "input": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=oak" + "blockState": "minecraft:wood;stripped_bit=1" }, "output": { "id": "minecraft:charcoal", @@ -47557,7 +47557,7 @@ { "type": 3, "input": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=spruce" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=spruce" }, "output": { "id": "minecraft:charcoal", @@ -47568,7 +47568,7 @@ { "type": 3, "input": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=birch" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=birch" }, "output": { "id": "minecraft:charcoal", @@ -47579,7 +47579,7 @@ { "type": 3, "input": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=jungle" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=jungle" }, "output": { "id": "minecraft:charcoal", @@ -47590,7 +47590,7 @@ { "type": 3, "input": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=acacia" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=acacia" }, "output": { "id": "minecraft:charcoal", @@ -47601,7 +47601,7 @@ { "type": 3, "input": { - "blockState": "minecraft:wood;pillar_axis=y;stripped_bit=1;wood_type=dark_oak" + "blockState": "minecraft:wood;stripped_bit=1;wood_type=dark_oak" }, "output": { "id": "minecraft:charcoal", @@ -47710,7 +47710,7 @@ "blockState": "minecraft:cobblestone" }, "output": { - "blockState": "minecraft:stone;stone_type=stone" + "blockState": "minecraft:stone" }, "block": "furnace" }, @@ -47809,7 +47809,7 @@ { "type": 3, "input": { - "blockState": "minecraft:log;old_log_type=spruce;pillar_axis=y" + "blockState": "minecraft:log;old_log_type=spruce" }, "output": { "id": "minecraft:charcoal", @@ -47820,7 +47820,7 @@ { "type": 3, "input": { - "blockState": "minecraft:log;old_log_type=birch;pillar_axis=y" + "blockState": "minecraft:log;old_log_type=birch" }, "output": { "id": "minecraft:charcoal", @@ -47831,7 +47831,7 @@ { "type": 3, "input": { - "blockState": "minecraft:log;old_log_type=jungle;pillar_axis=y" + "blockState": "minecraft:log;old_log_type=jungle" }, "output": { "id": "minecraft:charcoal", @@ -47845,7 +47845,7 @@ "blockState": "minecraft:sponge;sponge_type=wet" }, "output": { - "blockState": "minecraft:sponge;sponge_type=dry" + "blockState": "minecraft:sponge" }, "block": "furnace" }, @@ -48042,7 +48042,7 @@ "blockState": "minecraft:quartz_block" }, "output": { - "blockState": "minecraft:quartz_block;chisel_type=smooth;pillar_axis=y" + "blockState": "minecraft:quartz_block;chisel_type=smooth" }, "block": "furnace" }, @@ -48052,7 +48052,7 @@ "blockState": "minecraft:stained_hardened_clay" }, "output": { - "blockState": "minecraft:white_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:white_glazed_terracotta" }, "block": "furnace" }, @@ -48062,7 +48062,7 @@ "blockState": "minecraft:stained_hardened_clay;color=orange" }, "output": { - "blockState": "minecraft:orange_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:orange_glazed_terracotta" }, "block": "furnace" }, @@ -48072,7 +48072,7 @@ "blockState": "minecraft:stained_hardened_clay;color=magenta" }, "output": { - "blockState": "minecraft:magenta_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:magenta_glazed_terracotta" }, "block": "furnace" }, @@ -48082,7 +48082,7 @@ "blockState": "minecraft:stained_hardened_clay;color=light_blue" }, "output": { - "blockState": "minecraft:light_blue_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:light_blue_glazed_terracotta" }, "block": "furnace" }, @@ -48092,7 +48092,7 @@ "blockState": "minecraft:stained_hardened_clay;color=yellow" }, "output": { - "blockState": "minecraft:yellow_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:yellow_glazed_terracotta" }, "block": "furnace" }, @@ -48102,7 +48102,7 @@ "blockState": "minecraft:stained_hardened_clay;color=lime" }, "output": { - "blockState": "minecraft:lime_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:lime_glazed_terracotta" }, "block": "furnace" }, @@ -48112,7 +48112,7 @@ "blockState": "minecraft:stained_hardened_clay;color=pink" }, "output": { - "blockState": "minecraft:pink_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:pink_glazed_terracotta" }, "block": "furnace" }, @@ -48122,7 +48122,7 @@ "blockState": "minecraft:stained_hardened_clay;color=gray" }, "output": { - "blockState": "minecraft:gray_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:gray_glazed_terracotta" }, "block": "furnace" }, @@ -48132,7 +48132,7 @@ "blockState": "minecraft:stained_hardened_clay;color=silver" }, "output": { - "blockState": "minecraft:silver_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:silver_glazed_terracotta" }, "block": "furnace" }, @@ -48142,7 +48142,7 @@ "blockState": "minecraft:stained_hardened_clay;color=cyan" }, "output": { - "blockState": "minecraft:cyan_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:cyan_glazed_terracotta" }, "block": "furnace" }, @@ -48152,7 +48152,7 @@ "blockState": "minecraft:stained_hardened_clay;color=purple" }, "output": { - "blockState": "minecraft:purple_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:purple_glazed_terracotta" }, "block": "furnace" }, @@ -48162,7 +48162,7 @@ "blockState": "minecraft:stained_hardened_clay;color=blue" }, "output": { - "blockState": "minecraft:blue_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:blue_glazed_terracotta" }, "block": "furnace" }, @@ -48172,7 +48172,7 @@ "blockState": "minecraft:stained_hardened_clay;color=brown" }, "output": { - "blockState": "minecraft:brown_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:brown_glazed_terracotta" }, "block": "furnace" }, @@ -48182,7 +48182,7 @@ "blockState": "minecraft:stained_hardened_clay;color=green" }, "output": { - "blockState": "minecraft:green_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:green_glazed_terracotta" }, "block": "furnace" }, @@ -48192,7 +48192,7 @@ "blockState": "minecraft:stained_hardened_clay;color=red" }, "output": { - "blockState": "minecraft:red_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:red_glazed_terracotta" }, "block": "furnace" }, @@ -48202,7 +48202,7 @@ "blockState": "minecraft:stained_hardened_clay;color=black" }, "output": { - "blockState": "minecraft:black_glazed_terracotta;facing_direction=0" + "blockState": "minecraft:black_glazed_terracotta" }, "block": "furnace" }, @@ -48220,7 +48220,7 @@ { "type": 3, "input": { - "blockState": "minecraft:log2;new_log_type=dark_oak;pillar_axis=y" + "blockState": "minecraft:log2;new_log_type=dark_oak" }, "output": { "id": "minecraft:charcoal", diff --git a/src/test/java/org/powernukkit/updater/AllResourceUpdates.java b/src/test/java/org/powernukkit/updater/AllResourceUpdates.java index f06c4a8db05..757ea4ec266 100644 --- a/src/test/java/org/powernukkit/updater/AllResourceUpdates.java +++ b/src/test/java/org/powernukkit/updater/AllResourceUpdates.java @@ -196,7 +196,7 @@ private Map updateItemEntry0(Map itemEntry) { unknown = true; stateId = BlockStateRegistry.getKnownBlockStateIdByRuntimeId(blockRuntimeId); } else { - stateId = state.getStateId(); + stateId = state.getMinimalistStateId(); } } catch (Exception e) { try { @@ -308,7 +308,7 @@ private Map updateItemEntry0(Map itemEntry) { if (item.getBlock().getId() == BlockID.AIR) { throw new NoSuchElementException("State not found for id: " + itemEntry.get("id") + " : " + damage); } - stateId = item.getBlock().getStateId(); + stateId = item.getBlock().getMinimalistStateId(); } if (damage != null && damage == Short.MAX_VALUE) { fuzzy = true; From 459b7a50715d3c8a9a24b4faf75ac7effff62a7e Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 24 Oct 2021 16:53:57 -0300 Subject: [PATCH 242/394] Create some automations to the update process --- ...ceUpdates.java => AllResourceUpdater.java} | 36 ++++------ .../updater/AllResourcesDownloader.java | 69 +++++++++++++++++++ .../RuntimeItemIdUpdater.java | 8 ++- .../dumps/pmmp/required_item_list.json | 8 --- 4 files changed, 89 insertions(+), 32 deletions(-) rename src/test/java/org/powernukkit/updater/{AllResourceUpdates.java => AllResourceUpdater.java} (88%) create mode 100644 src/test/java/org/powernukkit/updater/AllResourcesDownloader.java rename src/test/java/org/powernukkit/{tools => updater}/RuntimeItemIdUpdater.java (93%) diff --git a/src/test/java/org/powernukkit/updater/AllResourceUpdates.java b/src/test/java/org/powernukkit/updater/AllResourceUpdater.java similarity index 88% rename from src/test/java/org/powernukkit/updater/AllResourceUpdates.java rename to src/test/java/org/powernukkit/updater/AllResourceUpdater.java index 757ea4ec266..6fe94f9ae53 100644 --- a/src/test/java/org/powernukkit/updater/AllResourceUpdates.java +++ b/src/test/java/org/powernukkit/updater/AllResourceUpdater.java @@ -14,7 +14,11 @@ import com.google.gson.GsonBuilder; import com.google.gson.JsonPrimitive; import com.google.gson.JsonSerializer; +import io.netty.util.internal.EmptyArrays; +import lombok.SneakyThrows; import lombok.var; +import org.powernukkit.dumps.ItemIdDumper; +import org.powernukkit.dumps.RuntimeBlockStateDumper; import java.io.File; import java.io.IOException; @@ -26,34 +30,17 @@ * @author joserobjr * @since 2021-10-23 */ -public class AllResourceUpdates { +public class AllResourceUpdater { public static void main(String[] args) { /* Pre-requisites: - - Download: https://github.com/pmmp/BedrockData/blob/master/canonical_block_states.nbt - into: src/main/resources/canonical_block_states.nbt - - Download: https://github.com/pmmp/BedrockData/blob/master/required_item_list.json - into: src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json - - Run ProxyPass with export-data in config.yml set to true, the proxy pass must be - pointing to a vanilla BDS server from https://www.minecraft.net/en-us/download/server/bedrock - - Connect to the ProxyPass server with the last Minecraft Bedrock Edition client - - Copy data/biome_definitions.dat from the proxy pass dump - into: src/main/resources/biome_definitions.dat - - Copy data/entity_identifiers.dat from the proxy pass dump - into: src/main/resources/entity_identifiers.dat - - Copy data/creativeitems.json from the proxy pass dump - into: src/main/resources/creativeitems.json - - Copy data/runtime_item_states.json from the proxy pass dump - into: src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json - - Copy data/recipes.json from the proxy pass dump - into: src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json - - Run src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java - - Run src/test/java/org/powernukkit/dumps/ItemIdDumper.java - - Run src/test/java/org/powernukkit/dumps/RuntimeBlockStateDumper.java + - Run src/test/java/org/powernukkit/updater/AllResourcesDownloader.java + - Run mvn clean package + - Run src/test/java/org/powernukkit/updater/RuntimeItemIdUpdater.java + - Run mvn clean package */ - try { - new AllResourceUpdates().execute(); + new AllResourceUpdater().execute(); } catch (Throwable e) { e.printStackTrace(); System.exit(1); @@ -69,7 +56,10 @@ public static void main(String[] args) { return new JsonPrimitive(src); }).create(); + @SneakyThrows private void execute() { + ItemIdDumper.main(EmptyArrays.EMPTY_STRINGS); + RuntimeBlockStateDumper.main(EmptyArrays.EMPTY_STRINGS); init(); updateRecipes(); updateCreativeItems(); diff --git a/src/test/java/org/powernukkit/updater/AllResourcesDownloader.java b/src/test/java/org/powernukkit/updater/AllResourcesDownloader.java new file mode 100644 index 00000000000..14abf1fa280 --- /dev/null +++ b/src/test/java/org/powernukkit/updater/AllResourcesDownloader.java @@ -0,0 +1,69 @@ +package org.powernukkit.updater; + +import lombok.SneakyThrows; + +import java.io.*; +import java.net.URL; +import java.net.URLConnection; + +/** + * @author joserobjr + * @since 2021-10-24 + */ +public class AllResourcesDownloader { + public static void main(String[] args) { + /* + Pre-requisites: + - Make sure that ProxyPass is updated and working with the last Minecraft Bedrock Edition client + - Make sure PocketMine has released their exports: https://github.com/pmmp/BedrockData + - Run ProxyPass with export-data in config.yml set to true, the proxy pass must be + pointing to a vanilla BDS server from https://www.minecraft.net/en-us/download/server/bedrock + - Connect to the ProxyPass server with the last Minecraft Bedrock Edition client at least once + - Adjust the path bellow if necessary for your machine + */ + new AllResourcesDownloader().execute("../Bedrock-ProxyPass/run/data"); + System.out.println("OK"); + } + + private void execute(@SuppressWarnings("SameParameterValue") String pathProxyPassData) { + downloadResources(); + copyProxyPassResources(pathProxyPassData); + } + + private void downloadResources() { + download("https://github.com/pmmp/BedrockData/raw/master/canonical_block_states.nbt", + "src/main/resources/canonical_block_states.nbt"); + download("https://github.com/pmmp/BedrockData/raw/master/required_item_list.json", + "src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json"); + } + + private void copyProxyPassResources(String pathProxyPassData) { + copy(pathProxyPassData, "biome_definitions.dat", "src/main/resources/biome_definitions.dat"); + copy(pathProxyPassData, "entity_identifiers.dat", "src/main/resources/entity_identifiers.dat"); + copy(pathProxyPassData, "creativeitems.json", "src/main/resources/creativeitems.json"); + copy(pathProxyPassData, "runtime_item_states.json", "src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json"); + copy(pathProxyPassData, "recipes.json", "src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json"); + } + + private void copy(String path, String file, String into) { + + } + + @SneakyThrows + private void download(String url, String into) { + URLConnection connection = new URL(url).openConnection(); + connection.setRequestProperty("User-Agent", "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9.2.2) Gecko/20100316 Firefox/3.6.2"); + try(InputStream input = connection.getInputStream(); + OutputStream fos = new FileOutputStream(into); + BufferedOutputStream bos = new BufferedOutputStream(fos); + ) { + byte[] buffer = new byte[8*1024]; + int read; + while ((read = input.read(buffer)) != -1) { + bos.write(buffer, 0, read); + } + } catch (IOException e) { + throw new UncheckedIOException(e); + } + } +} diff --git a/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java b/src/test/java/org/powernukkit/updater/RuntimeItemIdUpdater.java similarity index 93% rename from src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java rename to src/test/java/org/powernukkit/updater/RuntimeItemIdUpdater.java index 38694638d7f..8bfa5fb759c 100644 --- a/src/test/java/org/powernukkit/tools/RuntimeItemIdUpdater.java +++ b/src/test/java/org/powernukkit/updater/RuntimeItemIdUpdater.java @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package org.powernukkit.tools; +package org.powernukkit.updater; import cn.nukkit.Server; import com.google.gson.*; @@ -34,6 +34,11 @@ public class RuntimeItemIdUpdater { public static void main(String[] args) throws IOException { + /* + Pre-requisites: + - Run src/test/java/org/powernukkit/updater/AllResourcesDownloader.java + - Run mvn clean package + */ Gson gson = new GsonBuilder() .setPrettyPrinting() .create(); @@ -75,6 +80,7 @@ public static void main(String[] args) throws IOException { ) { gson.toJson(runtimeItems, LIST, bufferedWriter); } + System.out.println("OK"); } private static Type LIST = new TypeToken>(){}.getType(); diff --git a/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json b/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json index 7594a09d1b6..79d91571088 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json +++ b/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json @@ -303,14 +303,6 @@ "runtime_id": -441, "component_based": false }, - "minecraft:blue_candle": { - "runtime_id": -424, - "component_based": false - }, - "minecraft:blue_candle_cake": { - "runtime_id": -441, - "component_based": false - }, "minecraft:blue_dye": { "runtime_id": 399, "component_based": false From ebd5578b2d0ba8a868be31580e5f3dca1d966851 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 26 Oct 2021 16:05:39 -0300 Subject: [PATCH 243/394] #1244 Create some unit tests --- .../java/cn/nukkit/block/BlockUnknown.java | 10 +++ .../java/cn/nukkit/blockstate/BlockState.java | 4 + .../nukkit/blockstate/BlockStateRegistry.java | 25 ++++-- src/main/java/cn/nukkit/utils/Config.java | 4 +- .../blockproperty/BlockPropertyTest.java | 11 ++- .../blockstate/BlockStateRegistryTest.java | 44 ++++++++++ .../cn/nukkit/blockstate/BlockStateTest.java | 33 +++++++ .../cn/nukkit/blockstate/IBlockStateTest.java | 12 +++ .../java/cn/nukkit/command/CommandTest.java | 14 +++ src/test/java/cn/nukkit/item/ItemTest.java | 37 ++++++++ .../java/cn/nukkit/test/ThrowingFunction.java | 6 ++ src/test/java/cn/nukkit/utils/ConfigTest.java | 85 +++++++++++++++++++ .../updater/AllResourceUpdater.java | 10 +-- 13 files changed, 283 insertions(+), 12 deletions(-) create mode 100644 src/test/java/cn/nukkit/blockstate/BlockStateRegistryTest.java create mode 100644 src/test/java/cn/nukkit/blockstate/BlockStateTest.java create mode 100644 src/test/java/cn/nukkit/command/CommandTest.java create mode 100644 src/test/java/cn/nukkit/item/ItemTest.java create mode 100644 src/test/java/cn/nukkit/test/ThrowingFunction.java create mode 100644 src/test/java/cn/nukkit/utils/ConfigTest.java diff --git a/src/main/java/cn/nukkit/block/BlockUnknown.java b/src/main/java/cn/nukkit/block/BlockUnknown.java index 722c6fe6b7f..4aa8d24befd 100644 --- a/src/main/java/cn/nukkit/block/BlockUnknown.java +++ b/src/main/java/cn/nukkit/block/BlockUnknown.java @@ -33,6 +33,16 @@ public BlockUnknown(int id, Integer meta) { } } + @PowerNukkitOnly + @Since("FUTURE") + public BlockUnknown(int id, Number meta) { + super(0); + this.id = id; + if (meta != null) { + getMutableState().setDataStorage(meta, true); + } + } + @Since("1.4.0.0-PN") @PowerNukkitOnly @Nonnull diff --git a/src/main/java/cn/nukkit/blockstate/BlockState.java b/src/main/java/cn/nukkit/blockstate/BlockState.java index f1a8528f5fc..6add13f7212 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockState.java +++ b/src/main/java/cn/nukkit/blockstate/BlockState.java @@ -165,6 +165,8 @@ public static BlockState of(@Nonnegative int blockId, @Nonnegative Number blockD * * @return The block state, never null */ + @PowerNukkitOnly + @Since("FUTURE") @Nonnull public static BlockState of(@Nonnull String persistedStateId) { return of(persistedStateId, true); @@ -182,6 +184,8 @@ public static BlockState of(@Nonnull String persistedStateId) { * * @return The block state, never null */ + @PowerNukkitOnly + @Since("FUTURE") @Nonnull public static BlockState of(@Nonnull String persistedStateId, boolean useDefaultPropertyValues) { String[] stateParts = persistedStateId.split(";"); diff --git a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java index c54f8c06517..e8e4117164a 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java +++ b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java @@ -196,7 +196,18 @@ public String getKnownBlockStateIdByRuntimeId(int runtimeId) { @PowerNukkitOnly @Since("FUTURE") public int getKnownRuntimeIdByBlockStateId(String stateId) { - return knownStateIds.indexOf(stateId); + int result = knownStateIds.indexOf(stateId); + if (result != -1) { + return result; + } + BlockState state; + try { + state = BlockState.of(stateId); + } catch (NoSuchElementException|IllegalStateException|IllegalArgumentException ignored) { + return -1; + } + String fullStateId = state.getStateId(); + return knownStateIds.indexOf(fullStateId); } /** @@ -243,12 +254,16 @@ private BlockState buildStateFromCompound(CompoundTag block) { return state; } + private static NoSuchElementException runtimeIdNotRegistered(int runtimeId) { + return new NoSuchElementException("The block id for the runtime id "+runtimeId+" is not registered"); + } + @PowerNukkitOnly @Since("FUTURE") public int getBlockIdByRuntimeId(int runtimeId) { Registration registration = findRegistrationByRuntimeId(runtimeId); if (registration == null) { - throw new NoSuchElementException("The block id for the runtime id "+runtimeId+" is not registered"); + throw runtimeIdNotRegistered(runtimeId); } BlockState state = registration.state; if (state != null) { @@ -256,7 +271,7 @@ public int getBlockIdByRuntimeId(int runtimeId) { } CompoundTag originalBlock = registration.originalBlock; if (originalBlock == null) { - throw new NoSuchElementException("The block id for the runtime id "+runtimeId+" is not registered"); + throw runtimeIdNotRegistered(runtimeId); } try { state = buildStateFromCompound(originalBlock); @@ -264,7 +279,7 @@ public int getBlockIdByRuntimeId(int runtimeId) { String name = originalBlock.getString("name").toLowerCase(Locale.ENGLISH); Integer id = getBlockId(name); if (id == null) { - throw new NoSuchElementException("The block id for the runtime id "+runtimeId+" is not registered"); + throw runtimeIdNotRegistered(runtimeId); } return id; } @@ -272,7 +287,7 @@ public int getBlockIdByRuntimeId(int runtimeId) { registration.state = state; registration.originalBlock = null; } else { - throw new NoSuchElementException("The block id for the runtime id "+runtimeId+" is not registered"); + throw runtimeIdNotRegistered(runtimeId); } return state.getBlockId(); } diff --git a/src/main/java/cn/nukkit/utils/Config.java b/src/main/java/cn/nukkit/utils/Config.java index 3ff59715f8f..f1bc7cb5492 100644 --- a/src/main/java/cn/nukkit/utils/Config.java +++ b/src/main/java/cn/nukkit/utils/Config.java @@ -11,6 +11,8 @@ import org.yaml.snakeyaml.DumperOptions; import org.yaml.snakeyaml.Yaml; +import javax.annotation.Nonnull; +import javax.annotation.Nullable; import java.io.File; import java.io.IOException; import java.io.InputStream; @@ -188,7 +190,7 @@ public boolean load(InputStream inputStream) { @PowerNukkitOnly @Since("FUTURE") - public boolean loadAsJson(InputStream inputStream, Gson gson) { + public boolean loadAsJson(@Nullable InputStream inputStream, @Nonnull Gson gson) { if (inputStream == null) return false; if (this.correct) { String content; diff --git a/src/test/java/cn/nukkit/blockproperty/BlockPropertyTest.java b/src/test/java/cn/nukkit/blockproperty/BlockPropertyTest.java index ecdc19411f3..67ad02d97b4 100644 --- a/src/test/java/cn/nukkit/blockproperty/BlockPropertyTest.java +++ b/src/test/java/cn/nukkit/blockproperty/BlockPropertyTest.java @@ -2,6 +2,7 @@ import cn.nukkit.blockproperty.exception.InvalidBlockPropertyMetaException; import cn.nukkit.math.BlockFace; +import lombok.var; import org.junit.jupiter.api.Test; import java.math.BigInteger; @@ -10,7 +11,15 @@ class BlockPropertyTest { BlockProperty direction = CommonBlockProperties.FACING_DIRECTION; - + + @Test + void isDefaultPersistentValue() { + var defaultValue = direction.getDefaultValue(); + var defaultMeta = direction.getMetaForValue(defaultValue); + var defaultPersistenceValue = direction.getPersistenceValueForMeta(defaultMeta); + assertTrue(direction.isDefaultPersistentValue(defaultPersistenceValue)); + } + @Test void validateMeta() { assertThrows(InvalidBlockPropertyMetaException.class, ()-> direction.validateMeta(7, 0)); diff --git a/src/test/java/cn/nukkit/blockstate/BlockStateRegistryTest.java b/src/test/java/cn/nukkit/blockstate/BlockStateRegistryTest.java new file mode 100644 index 00000000000..c2c4dd87804 --- /dev/null +++ b/src/test/java/cn/nukkit/blockstate/BlockStateRegistryTest.java @@ -0,0 +1,44 @@ +package cn.nukkit.blockstate; + +import cn.nukkit.block.BlockID; +import cn.nukkit.block.BlockWall; +import cn.nukkit.math.BlockFace; +import lombok.val; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import java.util.NoSuchElementException; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertThrows; + +@ExtendWith(PowerNukkitExtension.class) +class BlockStateRegistryTest { + @Test + void getKnownBlockStateIdByRuntimeIdAndViceVersa() { + BlockWall wall = new BlockWall(); + wall.setWallType(BlockWall.WallType.DIORITE); + wall.setWallPost(true); + wall.setConnection(BlockFace.NORTH, BlockWall.WallConnectionType.TALL); + val runtimeId = wall.getRuntimeId(); + val stateId = wall.getStateId(); + val minimalistStateId = wall.getMinimalistStateId(); + val legacyStateId = wall.getLegacyStateId(); + val unknownStateId = wall.getPersistenceName()+";unknown="+wall.getDataStorage(); + + assertEquals(stateId, BlockStateRegistry.getKnownBlockStateIdByRuntimeId(runtimeId)); + assertEquals(runtimeId, BlockStateRegistry.getKnownRuntimeIdByBlockStateId(stateId)); + assertEquals(runtimeId, BlockStateRegistry.getKnownRuntimeIdByBlockStateId(minimalistStateId)); + assertEquals(runtimeId, BlockStateRegistry.getKnownRuntimeIdByBlockStateId(legacyStateId)); + assertEquals(runtimeId, BlockStateRegistry.getKnownRuntimeIdByBlockStateId(unknownStateId)); + assertEquals(BlockID.COBBLE_WALL, BlockStateRegistry.getBlockIdByRuntimeId(runtimeId)); + } + + @Test + void getBlockIdByRuntimeId() { + assertThrows(NoSuchElementException.class, ()-> BlockStateRegistry.getBlockIdByRuntimeId(999999999)); + int runtimeId = BlockStateRegistry.getKnownRuntimeIdByBlockStateId("minecraft:sculk_shrieker;active=1"); + assertEquals(716, BlockStateRegistry.getBlockIdByRuntimeId(runtimeId)); + } +} diff --git a/src/test/java/cn/nukkit/blockstate/BlockStateTest.java b/src/test/java/cn/nukkit/blockstate/BlockStateTest.java new file mode 100644 index 00000000000..27e98adca5e --- /dev/null +++ b/src/test/java/cn/nukkit/blockstate/BlockStateTest.java @@ -0,0 +1,33 @@ +package cn.nukkit.blockstate; + +import cn.nukkit.block.BlockID; +import cn.nukkit.block.BlockStone; +import cn.nukkit.blockproperty.value.StoneType; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; + +@ExtendWith(PowerNukkitExtension.class) +class BlockStateTest { + @Test + void ofFullStateId() { + assertEquals( + BlockState.of(BlockID.STONE), + BlockState.of("minecraft:stone;stone_type=stone", false) + ); + assertThrows(IllegalArgumentException.class, ()-> BlockState.of("minecraft:stone", false)); + + assertEquals( + BlockState.of(BlockID.STONE).withProperty(BlockStone.STONE_TYPE, StoneType.GRANITE), + BlockState.of("minecraft:stone;unknown=1") + ); + + assertEquals( + BlockState.of(BlockID.STONE).withProperty(BlockStone.STONE_TYPE, StoneType.GRANITE), + BlockState.of("minecraft:stone;nukkit-unknown=1") + ); + } +} diff --git a/src/test/java/cn/nukkit/blockstate/IBlockStateTest.java b/src/test/java/cn/nukkit/blockstate/IBlockStateTest.java index 0c03056ed99..6e17542d4b3 100644 --- a/src/test/java/cn/nukkit/blockstate/IBlockStateTest.java +++ b/src/test/java/cn/nukkit/blockstate/IBlockStateTest.java @@ -36,6 +36,18 @@ static void afterAll() { logLevelAdjuster.restoreLevels(); } + @Test + void getMinimalistStateIdAndLegacyStateId() { + assertEquals("minecraft:air", BlockState.AIR.getMinimalistStateId()); + BlockWall wall = new BlockWall(); + wall.setWallType(BlockWall.WallType.DIORITE); + assertEquals("minecraft:cobblestone_wall;wall_block_type=diorite", wall.getMinimalistStateId()); + assertEquals("minecraft:cobblestone_wall;nukkit-unknown=3", wall.getLegacyStateId()); + BlockUnknown unknwon = new BlockUnknown(wall.getId(), wall.getCurrentState().getDataStorage()); + assertEquals("minecraft:cobblestone_wall;nukkit-unknown=3", unknwon.getMinimalistStateId()); + assertEquals("minecraft:cobblestone_wall;nukkit-unknown=3", unknwon.getLegacyStateId()); + } + @Test void githubIssue1122() { BlockState state = BlockState.of(17, 13); diff --git a/src/test/java/cn/nukkit/command/CommandTest.java b/src/test/java/cn/nukkit/command/CommandTest.java new file mode 100644 index 00000000000..d4d3111b12b --- /dev/null +++ b/src/test/java/cn/nukkit/command/CommandTest.java @@ -0,0 +1,14 @@ +package cn.nukkit.command; + +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertThrows; + +class CommandTest { + + @SuppressWarnings("deprecation") + @Test + void getDefaultCommandData() { + assertThrows(UnsupportedOperationException.class, Command::generateDefaultData); + } +} diff --git a/src/test/java/cn/nukkit/item/ItemTest.java b/src/test/java/cn/nukkit/item/ItemTest.java new file mode 100644 index 00000000000..3a20fc88cdd --- /dev/null +++ b/src/test/java/cn/nukkit/item/ItemTest.java @@ -0,0 +1,37 @@ +package cn.nukkit.item; + +import lombok.SneakyThrows; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import java.lang.reflect.Method; +import java.util.LinkedHashMap; +import java.util.Map; + +import static org.junit.jupiter.api.Assertions.*; + +@ExtendWith(PowerNukkitExtension.class) +class ItemTest { + static Method loadCreativeItemEntry; + @BeforeAll + static void beforeAll() throws NoSuchMethodException { + loadCreativeItemEntry = Item.class.getDeclaredMethod("loadCreativeItemEntry", Map.class); + loadCreativeItemEntry.setAccessible(true); + } + + @Test + void loadCreativeItemEntryBlockState() throws ReflectiveOperationException { + Map data = new LinkedHashMap<>(); + data.put("blockState", "xxxxxx"); + assertNull(loadCreativeItemEntry(data)); + data.put("blockState", "minecraft:air;invalid=1"); + assertNull(loadCreativeItemEntry(data)); + } + + @SneakyThrows + private Item loadCreativeItemEntry(Map data) { + return (Item) loadCreativeItemEntry.invoke(null, data); + } +} diff --git a/src/test/java/cn/nukkit/test/ThrowingFunction.java b/src/test/java/cn/nukkit/test/ThrowingFunction.java new file mode 100644 index 00000000000..e5eb3c49984 --- /dev/null +++ b/src/test/java/cn/nukkit/test/ThrowingFunction.java @@ -0,0 +1,6 @@ +package cn.nukkit.test; + +@FunctionalInterface +public interface ThrowingFunction { + R apply(T t) throws Throwable; +} diff --git a/src/test/java/cn/nukkit/utils/ConfigTest.java b/src/test/java/cn/nukkit/utils/ConfigTest.java new file mode 100644 index 00000000000..8de99a946b7 --- /dev/null +++ b/src/test/java/cn/nukkit/utils/ConfigTest.java @@ -0,0 +1,85 @@ +package cn.nukkit.utils; + +import cn.nukkit.test.ThrowingFunction; +import com.google.gson.GsonBuilder; +import com.google.gson.JsonPrimitive; +import com.google.gson.JsonSerializer; +import joptsimple.internal.Strings; +import lombok.var; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import java.io.ByteArrayInputStream; +import java.io.File; +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; + +import static org.junit.jupiter.api.Assertions.*; + +class ConfigTest { + + Config config; + + String json; + + @BeforeEach + void setUp() { + config = new Config(); + } + + @Test + void loadAndSaveAsJson() throws IOException { + config = new Config(Config.JSON); + json = "{\"a\":5}"; + var gson = new GsonBuilder().disableHtmlEscaping() + .registerTypeAdapter(Double.class, (JsonSerializer) (src, typeOfSrc, context) -> { + if (src == src.longValue()) + return new JsonPrimitive(src.longValue()); + return new JsonPrimitive(src); + }).create(); + + boolean result = use(new ByteArrayInputStream(json.getBytes(StandardCharsets.UTF_8)), (in) -> config.loadAsJson(in, gson)); + assertTrue(result); + assertEquals(5.0, config.get("a")); + File temp = Files.createTempFile("ConfigTest_", ".json").toFile(); + try { + temp.deleteOnExit(); + assertTrue(config.saveAsJson(temp, false, gson)); + var lines = Files.readAllLines(temp.toPath()); + assertEquals(1, lines.size()); + assertEquals(json, lines.get(0)); + + assertTrue(config.save(temp, false)); + String content = Strings.join(Files.readAllLines(temp.toPath()), "\n"); + assertEquals("{\n \"a\": 5.0\n}", content); + } finally { + //noinspection ResultOfMethodCallIgnored + temp.delete(); + } + + // Set config.correct to false + temp = Files.createTempFile("ConfigTest_", ".zzz").toFile(); + try { + temp.deleteOnExit(); + config = new Config(-2); + assertThrows(IllegalStateException.class, ()-> config.save()); + config.load(temp.getAbsolutePath()); + + config.set("a", 5); + assertFalse(config.saveAsJson(temp, false, gson)); + assertFalse(config.save(temp)); + } finally { + //noinspection ResultOfMethodCallIgnored + temp.delete(); + } + } + + R use(T obj, ThrowingFunction consumer) { + try(T resource = obj) { + return consumer.apply(resource); + } catch (Throwable e) { + throw new AssertionError(e); + } + } +} diff --git a/src/test/java/org/powernukkit/updater/AllResourceUpdater.java b/src/test/java/org/powernukkit/updater/AllResourceUpdater.java index 6fe94f9ae53..d1af4bc9b4b 100644 --- a/src/test/java/org/powernukkit/updater/AllResourceUpdater.java +++ b/src/test/java/org/powernukkit/updater/AllResourceUpdater.java @@ -49,7 +49,7 @@ public static void main(String[] args) { } } - private final Gson gson = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting() + public static final Gson GSON = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting() .registerTypeAdapter(Double.class, (JsonSerializer) (src, typeOfSrc, context) -> { if (src == src.longValue()) return new JsonPrimitive(src.longValue()); @@ -75,7 +75,7 @@ private void updateRecipes() { if (recipesStream == null) { throw new AssertionError("Unable to find recipes.json"); } - config.loadAsJson(recipesStream, gson); + config.loadAsJson(recipesStream, GSON); } catch (IOException e) { throw new UncheckedIOException(e); } @@ -119,7 +119,7 @@ private void updateRecipes() { } config.set("recipes", newRecipes); - config.saveAsJson(new File("src/main/resources/recipes.json"), false, gson); + config.saveAsJson(new File("src/main/resources/recipes.json"), false, GSON); } @SuppressWarnings("unchecked") @@ -131,7 +131,7 @@ private void updateCreativeItems() { if (recipesStream == null) { throw new AssertionError("Unable to findcreativeitems.json"); } - config.loadAsJson(recipesStream, gson); + config.loadAsJson(recipesStream, GSON); } catch (IOException e) { throw new UncheckedIOException(e); } @@ -140,7 +140,7 @@ private void updateCreativeItems() { newItems = updateItemEntryList(newItems); config.set("items", newItems); - config.saveAsJson(new File("src/main/resources/creativeitems.json"), false, gson); + config.saveAsJson(new File("src/main/resources/creativeitems.json"), false, GSON); } private List> updateItemEntryList(List> inputs) { From 1b2bdde0af6731eeb6f798cfbd81f3b89c278df1 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 26 Oct 2021 16:27:24 -0300 Subject: [PATCH 244/394] #1244 Create more unit tests --- .../java/cn/nukkit/block/BlockUnknown.java | 4 +-- src/main/java/cn/nukkit/utils/Config.java | 6 ++--- .../cn/nukkit/block/BlockUnknownTest.java | 27 +++++++++++++++++++ src/test/java/cn/nukkit/utils/ConfigTest.java | 3 +++ 4 files changed, 35 insertions(+), 5 deletions(-) create mode 100644 src/test/java/cn/nukkit/block/BlockUnknownTest.java diff --git a/src/main/java/cn/nukkit/block/BlockUnknown.java b/src/main/java/cn/nukkit/block/BlockUnknown.java index 4aa8d24befd..6a6cf50a6d0 100644 --- a/src/main/java/cn/nukkit/block/BlockUnknown.java +++ b/src/main/java/cn/nukkit/block/BlockUnknown.java @@ -29,7 +29,7 @@ public BlockUnknown(int id, Integer meta) { super(0); this.id = id; if (meta != null && meta != 0) { - getMutableState().setDataStorageFromInt(meta, true); + getMutableState().setDataStorageFromInt(meta, false); } } @@ -39,7 +39,7 @@ public BlockUnknown(int id, Number meta) { super(0); this.id = id; if (meta != null) { - getMutableState().setDataStorage(meta, true); + getMutableState().setDataStorage(meta, false); } } diff --git a/src/main/java/cn/nukkit/utils/Config.java b/src/main/java/cn/nukkit/utils/Config.java index f1bc7cb5492..9c9a8272bec 100644 --- a/src/main/java/cn/nukkit/utils/Config.java +++ b/src/main/java/cn/nukkit/utils/Config.java @@ -232,7 +232,7 @@ public boolean save(File file) { @PowerNukkitOnly @Since("FUTURE") - public boolean saveAsJson(File file, boolean async, Gson gson) { + public boolean saveAsJson(@Nonnull File file, boolean async, @Nonnull Gson gson) { this.file = file; return saveAsJson(async, gson); } @@ -243,7 +243,7 @@ public boolean save() { @PowerNukkitOnly @Since("FUTURE") - public boolean saveAsJson(Boolean async, Gson gson) { + public boolean saveAsJson(boolean async, @Nonnull Gson gson) { if (!this.correct) { return false; } @@ -282,7 +282,7 @@ public boolean save(Boolean async) { } } - private void save0(Boolean async, StringBuilder content) { + private void save0(boolean async, StringBuilder content) { if (async) { Server.getInstance().getScheduler().scheduleAsyncTask(new FileWriteTask(this.file, content.toString())); } else { diff --git a/src/test/java/cn/nukkit/block/BlockUnknownTest.java b/src/test/java/cn/nukkit/block/BlockUnknownTest.java new file mode 100644 index 00000000000..d3c4396edc3 --- /dev/null +++ b/src/test/java/cn/nukkit/block/BlockUnknownTest.java @@ -0,0 +1,27 @@ +package cn.nukkit.block; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; + +@ExtendWith(PowerNukkitExtension.class) +class BlockUnknownTest { + BlockUnknown block; + @Test + void constructor() { + block = new BlockUnknown(1, (Number) null); + assertEquals(0, block.getExactIntStorage()); + + block = new BlockUnknown(1, null); + assertEquals(0, block.getExactIntStorage()); + + block = new BlockUnknown(1, 2); + assertEquals(2, block.getExactIntStorage()); + + block = new BlockUnknown(1, 2000000000L); + assertEquals(2000000000L, block.getDataStorage()); + } +} diff --git a/src/test/java/cn/nukkit/utils/ConfigTest.java b/src/test/java/cn/nukkit/utils/ConfigTest.java index 8de99a946b7..2ca7c35f151 100644 --- a/src/test/java/cn/nukkit/utils/ConfigTest.java +++ b/src/test/java/cn/nukkit/utils/ConfigTest.java @@ -4,6 +4,7 @@ import com.google.gson.GsonBuilder; import com.google.gson.JsonPrimitive; import com.google.gson.JsonSerializer; +import io.netty.util.internal.EmptyArrays; import joptsimple.internal.Strings; import lombok.var; import org.junit.jupiter.api.BeforeEach; @@ -69,6 +70,8 @@ void loadAndSaveAsJson() throws IOException { config.set("a", 5); assertFalse(config.saveAsJson(temp, false, gson)); assertFalse(config.save(temp)); + assertFalse(config.loadAsJson(null, gson)); + assertFalse(config.loadAsJson(new ByteArrayInputStream(EmptyArrays.EMPTY_BYTES), gson)); } finally { //noinspection ResultOfMethodCallIgnored temp.delete(); From bf9fb4cca821aa1012786061407916a942f2848c Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 26 Oct 2021 17:23:02 -0300 Subject: [PATCH 245/394] #1244 Add a document explaining the minecraft protocol upgrade process --- UPGRADING_TO_NEXT_MINECRAFT.md | 89 ++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 UPGRADING_TO_NEXT_MINECRAFT.md diff --git a/UPGRADING_TO_NEXT_MINECRAFT.md b/UPGRADING_TO_NEXT_MINECRAFT.md new file mode 100644 index 00000000000..51c8ca29d04 --- /dev/null +++ b/UPGRADING_TO_NEXT_MINECRAFT.md @@ -0,0 +1,89 @@ +# Thank you +Thank your for your interest in contributing with PowerNukkit. + +We really need your help by testing, finding and reporting bugs and compatibility issues, +suggesting features, and submitting pull requests with enhancements and bug-fixes. + +## How to upgrade PowerNukkit to the next Minecraft protocol version +First thing first, we need to know what exactly has changed to the protocol. + +### Finding what changed +- Check https://wiki.vg/Bedrock_Protocol, it's usually outdated, but maybe will be up-to-date in future. +- Check https://bedrock.dev/docs/stable/Addons, it has useful information about ids. + You can get the block id out of an item id. If the item id is less than `255`, that item represents a block. + If the id is between `0` and `255`, you can use that id as block id. If the id is **negative**, you can + get the real block id with this formula: `255 - itemId`, for example, if the item id is `-4`, + then we do `255 - (-4)` which is equals to `255 + 4` = `259`, another valid formula and easier for humans + is `255 + |itemId|`, so we would do `255 + |-4|` = `255 + 4` = `259`. +- Check for changes in https://github.com/CloudburstMC/Protocol/commits/develop +- Check for changes in https://github.com/CloudburstMC/Network +- Check for changes in https://github.com/CloudburstMC/ProxyPass +- Check for changes in https://github.com/pmmp/PocketMine-MP/commits/stable +- Check for changes in https://github.com/JSPrismarine/JSPrismarine/commits/master +- The links above can help you to determine what have changed to the protocol, we are not racing or disputing + with other server implementations, when the protocol changes everybody needs to do the same update, so + we can replicate what others have done. Remember only privileged people have access to the official + bedrock edition protocol documentation provided by Microsoft, unfortunately, nobody in our team have this privilege, + so we need to gather information around the internet. + +### Update Bedrock-ProxyPass, Bedrock-Protocol, and Bedrock-Network +Now that we know what have change, we need to update: +- https://github.com/PowerNukkit/Bedrock-Network +- https://github.com/PowerNukkit/Bedrock-Protocol +- https://github.com/PowerNukkit/Bedrock-ProxyPass + +#### Setting up Bedrock-ProxyPass in IntelliJ IDEA +- Checkout and open as a project: https://github.com/PowerNukkit/Bedrock-ProxyPass.git +- Checkout but **don't open as a project, only download the source**: https://github.com/PowerNukkit/Bedrock-Network +- Checkout but **don't open as a project, only download the source**: https://github.com/PowerNukkit/Bedrock-Protocol +- Open the **Maven** tab, click the **+** button to add a maven project to the current project (That should be Bedrock-ProxyPass) +- Add: **Bedrock-Network**, and **Bedrock-Protocol** that you have just downloaded +- Press **Shift** two times to open the sarch window and search for the **Action**: `manage git remotes` +- Add a new remote for all 3 git repositores, pointing to the cloudburst equivalent of the project: + * Bedrock-Network: https://github.com/CloudburstMC/Network.git + * Bedrock-Protocol: https://github.com/CloudburstMC/Protocol.git + * Bedrock-Proxy-Pass: https://github.com/CloudburstMC/ProxyPass.git +- Open the **Git** menu at the top of the window and click **Fetch** +- Open the **Git** tab at the bottom of the Window and open the **Log: ** tab +- Click **Paths: All** and deselect all 3 roots +- Click **Paths: No roots** and select only **Bedrock-Network** +- Find the last commit tagged **cloudburst/develop** +- Right click it and select: `Branch 'cloudburst/develop'` -> `Pull into current using merge` (manual merge may be necessary) +- Click **Paths:** button again and select only **Bedrock-Protocol** and do the same +- Repeat this process with **Bedrock-ProxyPass** but find the **cloudburst/master** tag in the logs instead of **cloudburst/develop** +- Manually adjust the **pom.xml** of the last **bedrock-vNNN** module at **Bedrock Protocol** +- You may need to update the `ProxyPass.CODEC` manually too. +- Build and run ProxyPass proxying [Vanilla Bedrock Dedicated Server](https://www.minecraft.net/en-us/download/server/bedrock) + with the config to export data enabled +- Connect to the vanilla bedrock server thought the proxy for it to extract the necessary data from the connection. + +#### Run the update tools +Now that you have extracted the data, confirm that PMMP have released the last BedrockData, +the update tools make use of that: https://github.com/pmmp/BedrockData + +The update tools are classes that are located at the test folder of this project, +they have some pre-requisites explained in the comments right on top of the files, +make sure they are fulfilled before running or things can go wrong... + +- Adjust the path in `org.powernukkit.updater.AllResourcesDownloader.main(String[])` to point to + the data folder in your ProxyPass run folder, some data will be loaded from there +- Run `org.powernukkit.updater.AllResourcesDownloader.main(String[])` +- Run `mvn clean package` (Don't skip!) +- Run `org.powernukkit.updater.RuntimeItemIdUpdater.main(String[])` +- Run `mvn clean package` (Don't skip!) +- Run `org.powernukkit.updater.AllResourceUpdater.main(String[])` +- Run `mvn clean package` (Don't skip!) + +#### After the update +Try to start the server, make sure no error or warning is logged, +new blocks/items may cause issues, and we need to fix or handle them +from the Java classes, **without changing any resource**, only Java code! + +Some existing blocks may receive new block state properties, make sure +to update their class file to include the new properties + +Some properties may receive new values, update them too. + +You can check what has changed investigating the files in the dumps folder, +they give you different views of the blocks, items, and block states, so +we can find what's happening easier. From 0cd578f4b2edd72a167bfe2c380aa1d19433e0d5 Mon Sep 17 00:00:00 2001 From: roridev Date: Tue, 26 Oct 2021 18:34:58 -0300 Subject: [PATCH 246/394] Improves CONTRIBUTING.md --- .github/CONTRIBUTING.md | 226 +++++++++++++++++++++------------------- 1 file changed, 119 insertions(+), 107 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index e504979cc44..688de4acd69 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,107 +1,119 @@ -How to submit a bug report ---- - -Before creating an issue, make sure: - 1. Your title and content is not confusing or content-less. - 2. All text is written in proper English. - -If it's a bug or problem: - 1. This bug can be reproduced. - 2. This bug can be found in the latest build. - 3. Dumps, backtraces or files are provided. - 4. It's you yourself who first found this bug. - -If it's advice or a feature request: - 1. This feature does not exist in the latest build. - 2. This feature is logical and clear-cut. - 3. It's you yourself who first came up with the idea. - -Nukkit will create a bug report for EVERY exception and error detected, and there are some columns you need to fill out in the report. If multiple exceptions are triggered, you should combine the stacktrace into one report and then submit the report. - -In the report, you can see if the error is caused by Nukkit or a plugin. However, when "PLUGIN ERROR" is "false" and there are plugins running, it does not necessarily indicate that the error is caused by Nukkit. - -To submit bugs and problems, please upload the automatically generated report. Make sure you have filled in all blanks in the template. Please provide **as much information as you could**, or our developers might got stuck or confused when looking into your issue. - -To submit feature requests and suggestions, please explicitly describe the feature you want or your suggestion. - -**Note that the Issues section on GitHub is not for contents that are not related to the two categories listed above. Irrelevant issues will be closed. Please visit our forums for other kinds of discussions.** - -Example ---- - -### Issue Description - -It seems that the player you are manipulating does not seem to be moving from other people, and it seems that you are not moving from others. - -I do not know because I have not logged in to anything other than my server, but it works normally with Wi-Fi multi. - -### OS and Versions - -* Nukkit Version: https://github.com/Nukkit/Nukkit/pull/1517 - -* Java Version: -``` -java version "9" -Java(TM) SE Runtime Environment (build 9+175) -Java HotSpot(TM) 64-Bit Server VM (build 9+175, mixed mode) -``` - -* Host Configuration: - - -| Item | Value | -|:----:|:-----:| -| Host OS | Microsoft Windows [10.0.10240] | -| Memory(RAM) | 4 GB | -| Storage Size | 1 TB | -| Storage Type | SSD | -| CPU Type | Intel Xeon X5650 | -| CPU Core Count | 12 cores 24 threads | -| Upstream Bandwidth | 100 Mbps | - -* Client Configuration: - -| Item | Value | -|:----:|:-----:| -| Client Edition | Android | -| Client Version | 1.0.4 | - -``` -### Issue Description - -It seems that the player you are manipulating does not seem to be moving from other people, and it seems that you are not moving from others. - -I do not know because I have not logged in to anything other than my server, but it works normally with Wi-Fi multi. - -### OS and Versions - -* Nukkit Version: https://github.com/Nukkit/Nukkit/pull/1517 - -* Java Version: - -java version "9" -Java(TM) SE Runtime Environment (build 9+175) -Java HotSpot(TM) 64-Bit Server VM (build 9+175, mixed mode) - - -* Host Configuration: - - -| Item | Value | -|:----:|:-----:| -| Host OS | Microsoft Windows [10.0.10240] | -| Memory(RAM) | 4 GB | -| Storage Size | 1 TB | -| Storage Type | SSD | -| CPU Type | Intel Xeon X5650 | -| CPU Core Count | 12 cores 24 threads | -| Upstream Bandwidth | 100 Mbps | - -* Client Configuration: - -| Item | Value | -|:----:|:-----:| -| Client Edition | Android | -| Client Version | 1.0.4 | - -``` +# Contributing Guidelines + +Thank you for showing interest in the development of PowerNukkit We aim to provide a good collaborating environment for everyone involved, and as such have decided to list some of the most important things to keep in mind in the process. The guidelines below have been chosen based on past experience. + +These are not "official rules" *per se*, but following them will help everyone deal with things in the most efficient manner. + +## Table of contents + +1. [I would like to submit an issue!](#i-would-like-to-submit-an-issue) +2. [I would like to submit a pull request!](#i-would-like-to-submit-a-pull-request) + +## I would like to submit an issue! + +Issues, bug reports and feature suggestions are welcomed, though please keep in mind that at any point in time, hundreds of issues are open, which vary in severity and the amount of time needed to address them. As such it's not uncommon for issues to remain unresolved for a long time or even closed outright if they are deemed not important enough to fix in the foreseeable future. + +* **Before submitting an issue, try searching existing issues first.** + + For housekeeping purposes, we close issues that overlap with or duplicate other pre-existing issues - you can help us not to have to do that by searching existing issues yourself first. The issue search box, as well as the issue tag system, are tools you can use to check if an issue has been reported before. + +* **When submitting a bug report, please try to include as much detail as possible.** + + Bugs are not equal - some of them will be reproducible every time on pretty much all hardware, while others will be hard to track down due to being specific to particular hardware or even somewhat random in nature. As such, providing as much detail as possible when reporting a bug is hugely appreciated. A good starting set of information consists of: + + * the server logs (when avaliable), which can be obtained with: + * `/debugpaste upload` + * `[Server path]/logs/latest.log` + * your system specifications (including the operating system and platform you are playing on), + * a reproduction scenario (list of steps you have performed leading up to the occurrence of the bug), + * a video or picture of the bug, if at all possible. + +* **Provide more information when asked to do so.** + + Sometimes when a bug is more elusive or complicated, none of the information listed above will pinpoint a concrete cause of the problem. In this case we will most likely ask you for additional info. Providing that information is beneficial to both parties - we can track down the problem better, and hopefully fix it for you at some point once we know where it is! + +* **When submitting a feature proposal, please describe it in the most understandable way you can.** + + Communicating your idea for a feature can often be hard, and we would like to avoid any misunderstandings. As such, please try to explain your idea in a short, but understandable manner. + +* **Refrain from posting "+1" comments.** + + If an issue has already been created, saying that you also experience it without providing any additional details doesn't really help us in any way. To express support for a proposal or indicate that you are also affected by a particular bug, you can use comment reactions instead. + +* **Refrain from asking if an issue has been resolved yet.** + + As mentioned above, the issue tracker has hundreds of issues open at any given time. Currently PowerNukkit is being worked on by two members of the core team, and a handful of outside contributors who offer their free time to help out. As such, it can happen that an issue gets placed on the backburner due to being less important; generally posting a comment demanding its resolution some months or years after it is reported is not very likely to increase its priority. + +* **Avoid long discussions about non-development topics.** + + GitHub is mostly a developer space, and as such isn't really fit for lengthened discussions about gameplay mechanics (which might not even be in any way confirmed for the final release) and similar non-technical matters. Such matters are probably best addressed at the PowerNukkit forums. + +## I would like to submit a pull request! + +We also welcome pull requests from unaffiliated contributors. The [issue tracker](https://github.com/powernukkit/powernukkit/issues) should provide plenty of issues that you can work on; we also mark issues that we think would be good for newcomers with the [`good first issue`](https://github.com/powernukkit/powernukkit/issues?q=is%3Aissue+is%3Aopen+label%3Agood%20first%20issue) label. + +Here are some key things to note before jumping in: + +* **Make sure you are comfortable with Java and your development environment.** + + While we are accepting of all kinds of contributions, we also have a certain quality standard we'd like to uphold and limited time to review your code. Therefore, we would like to avoid providing entry-level advice, and as such if you're not very familiar with Java as a programming language, we'd recommend that you start off with a few personal projects to get acquainted with the language's syntax, toolchain and principles of object-oriented programming first. + +* **Make sure you are familiar with git and the pull request workflow.** + + [git](https://git-scm.com/) is a distributed version control system that might not be very intuitive at the beginning if you're not familiar with version control. In particular, projects using git have a particular workflow for submitting code changes, which is called the pull request workflow. + + To make things run more smoothly, we recommend that you look up some online resources to familiarise yourself with the git vocabulary and commands, and practice working with forks and submitting pull requests at your own pace. A high-level overview of the process can be found in [this article by GitHub](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests). + + We also provide a [handy link](https://powernukkit.org/pr) for making pull requests to PowerNukkit: `https://powernukkit.org/pr`. + +* **Make sure to submit pull requests off of a topic branch.** + + As described in the article linked in the previous point, topic branches help you parallelise your work and separate it from the main `bleeding` branch, and additionally are easier for maintainers to work with. Working with multiple `bleeding` branches across many remotes is difficult to keep track of, and it's easy to make a mistake and push to the wrong `bleeding` branch by accident. + +* **Add tests for your code whenever possible.** + + Automated tests are an essential part of a quality and reliable codebase. They help to make the code more maintainable by ensuring it is safe to reorganise (or refactor) the code in various ways, and also prevent regressions - bugs that resurface after having been fixed at some point in the past. If it is viable, please put in the time to add tests, so that the changes you make can last for a (hopefully) very long time. + +* **Run tests before opening a pull request.** + + Tying into the previous point, sometimes changes in one part of the codebase can result in unpredictable changes in behaviour in other pieces of the code. This is why it is best to always try to run tests before opening a PR. + + Continuous integration will always run the tests for you (and us), too, but it is best not to rely on it, as there might be many builds queued at any time. Running tests on your own will help you be more certain that at the point of clicking the "Create pull request" button, your changes are as ready as can be. + +* **Make sure that the pull request is complete before opening it.** + + Whether it's fixing a bug or implementing new functionality, it's best that you make sure that the change you want to submit as a pull request is as complete as it can be before clicking the *Create pull request* button. Having to track if a pull request is ready for review or not places additional burden on reviewers. + + Draft pull requests are an option, but use them sparingly and within reason. They are best suited to discuss code changes that cannot be easily described in natural language or have a potential large impact on the future direction of the project. When in doubt, don't open drafts unless a maintainer asks you to do so. + +* **Only push code when it's ready.** + + As an extension of the above, when making changes to an already-open PR, please try to only push changes you are reasonably certain of. Pushing after every commit causes the continuous integration build queue to grow in size, slowing down work and taking up time that could be spent verifying other changes. + +* **Make sure to keep the *Allow edits from maintainers* check box checked.** + + To speed up the merging process, collaborators and team members will sometimes want to push changes to your branch themselves, to make minor code style adjustments or to otherwise refactor the code without having to describe how they'd like the code to look like in painstaking detail. Having the *Allow edits from maintainers* check box checked lets them do that; without it they are forced to report issues back to you and wait for you to address them. + +* **Refrain from continually merging the master branch back to the PR.** + + Unless there are merge conflicts that need resolution, there is no need to keep merging `bleeding` back to a branch over and over again. One of the maintainers will merge `bleeding` themselves before merging the PR itself anyway, and continual merge commits can cause CI to get overwhelmed due to queueing up too many builds. + +* **Refrain from force-pushing to the PR branch.** + + Force-pushing should be avoided, as it can lead to accidentally overwriting a maintainer's changes or CI building wrong commits. We value all history in the project, so there is no need to squash or amend commits in most cases. + + The cases in which force-pushing is warranted are very rare (such as accidentally leaking sensitive info in one of the files committed, adding unrelated files, or mis-merging a dependent PR). + +* **Be patient when waiting for the code to be reviewed and merged.** + + As much as we'd like to review all contributions as fast as possible, our time is limited, as team members have to work on their own tasks in addition to reviewing code. As such, work needs to be prioritised, and it can unfortunately take weeks or months for your PR to be merged, depending on how important it is deemed to be. + +* **Don't mistake criticism of code for criticism of your person.** + + As mentioned before, we are highly committed to quality when it comes to the project. This means that contributions from less experienced community members can take multiple rounds of review to get to a mergeable state. We try our utmost best to never conflate a person with the code they authored, and to keep the discussion focused on the code at all times. Please consider our comments and requests a learning experience, and don't treat it as a personal attack. + +* **Feel free to reach out for help.** + + If you're uncertain about some part of the codebase or some inner workings of the game and framework, please reach out either by leaving a comment in the relevant issue or PR thread, or by posting a message in the [development Discord server](https://www.powernukkit.org/discord). We will try to help you as much as we can. + + When it comes to which form of communication is best, GitHub generally lends better to longer-form discussions, while Discord is better for snappy call-and-response answers. Use your best discretion when deciding, and try to keep a single discussion in one place instead of moving back and forth. From 9642c0cd40c2ff3bbe2d21f1196a262ff71220d3 Mon Sep 17 00:00:00 2001 From: roridev Date: Tue, 26 Oct 2021 18:36:41 -0300 Subject: [PATCH 247/394] Moves CONTRIBUTING.md to root for better visibility --- .github/CONTRIBUTING.md => CONTRIBUTING.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/CONTRIBUTING.md => CONTRIBUTING.md (100%) diff --git a/.github/CONTRIBUTING.md b/CONTRIBUTING.md similarity index 100% rename from .github/CONTRIBUTING.md rename to CONTRIBUTING.md From 2b2d08b9a084034a7bb0597d509d278c9e0614d3 Mon Sep 17 00:00:00 2001 From: roridev Date: Tue, 26 Oct 2021 18:37:35 -0300 Subject: [PATCH 248/394] Fixes broken Contributing file link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fa0d26716bf..be3c8aa904d 100644 --- a/README.md +++ b/README.md @@ -194,7 +194,7 @@ Completely remove the chart: Contributing ------------ -Please read the [CONTRIBUTING](.github/CONTRIBUTING.md) guide before submitting any issue. Issues with insufficient information or in the wrong format will be closed and will not be reviewed. +Please read the [CONTRIBUTING](CONTRIBUTING.md) guide before submitting any issue. Issues with insufficient information or in the wrong format will be closed and will not be reviewed. --------- [![SonarCloud](https://sonarcloud.io/images/project_badges/sonarcloud-white.svg)](https://sonarcloud.io/dashboard?id=PowerNukkit_PowerNukkit) From 08f61f047d1dd4dbe7e11f9cc5960b74fd576da9 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 26 Oct 2021 19:28:17 -0300 Subject: [PATCH 249/394] #1204 Fixes test failure --- .../nukkit/blockentity/BlockEntityTest.java | 60 +------------------ 1 file changed, 2 insertions(+), 58 deletions(-) diff --git a/src/test/java/cn/nukkit/blockentity/BlockEntityTest.java b/src/test/java/cn/nukkit/blockentity/BlockEntityTest.java index 93302cec2aa..e67a52e3ebd 100644 --- a/src/test/java/cn/nukkit/blockentity/BlockEntityTest.java +++ b/src/test/java/cn/nukkit/blockentity/BlockEntityTest.java @@ -23,34 +23,19 @@ import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.block.BlockChest; -import cn.nukkit.block.BlockID; -import cn.nukkit.block.BlockPodzol; import cn.nukkit.blockproperty.CommonBlockProperties; import cn.nukkit.blockstate.BlockState; import cn.nukkit.inventory.ChestInventory; import cn.nukkit.item.Item; import cn.nukkit.level.Level; -import cn.nukkit.level.format.anvil.Anvil; -import cn.nukkit.level.generator.Flat; import cn.nukkit.math.BlockFace; import cn.nukkit.math.Vector3; -import cn.nukkit.test.LogLevelAdjuster; -import co.aikar.timings.Timings; -import org.iq80.leveldb.util.FileUtils; -import org.junit.jupiter.api.AfterAll; -import org.junit.jupiter.api.AfterEach; -import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; -import java.io.File; -import java.io.IOException; - import static cn.nukkit.block.BlockID.*; -import static org.assertj.core.api.Assertions.assertThat; -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.ArgumentMatchers.anyInt; import static org.mockito.Mockito.when; @@ -62,50 +47,9 @@ @Since("FUTURE") @ExtendWith(PowerNukkitExtension.class) class BlockEntityTest { - static final LogLevelAdjuster logLevelAdjuster = new LogLevelAdjuster(); - - File levelFolder; - + @MockLevel Level level; - @Test - void repairing() throws Exception { - Block block = level.getBlock(new Vector3(2, 2, 2)); - assertThat(block).isInstanceOf(BlockPodzol.class); - assertEquals(BlockID.PODZOL, block.getId()); - assertEquals(0, block.getExactIntStorage()); - - assertEquals(BlockState.of(BlockID.PODZOL), level.getBlockStateAt(2, 2, 2)); - - assertTrue(level.unloadChunk(block.getChunkX(), block.getChunkZ())); - - assertEquals(BlockState.of(BlockID.PODZOL), level.getBlockStateAt(2, 2, 2)); - } - - @BeforeEach - void setUp() throws IOException { - Server server = Server.getInstance(); - levelFolder = new File(server.getDataPath(), "worlds/TestLevel"); - String path = levelFolder.getAbsolutePath()+File.separator; - Anvil.generate(path, "TestLevel", 0, Flat.class); - Timings.init(); - level = new Level(server, "TestLevel", path, Anvil.class); - level.setAutoSave(true); - - server.getLevels().put(level.getId(), level); - server.setDefaultLevel(level); - } - - @AfterEach - void tearDown() { - FileUtils.deleteRecursively(levelFolder); - } - - @AfterAll - static void afterAll() { - logLevelAdjuster.restoreLevels(); - } - /** * https://github.com/PowerNukkit/PowerNukkit/issues/1174 */ From 450bffad8628deee6224679b3346547a353016c6 Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Wed, 27 Oct 2021 08:48:16 +0900 Subject: [PATCH 250/394] Fix and improve resource pack related packets (#1172) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * improve * Add getMaxChunkSize() * fix * Improve pack sending * Fix chunk count * fix * Update packet * Updat packet * fix * Update packet * Fix pack info * test * test * fix * fix * improve * fix * fix * Add DeprecationDetails * Add DeprecationDetails Co-authored-by: Lobo Metalรบrgico <43734867+LoboMetalurgico@users.noreply.github.com> --- src/main/java/cn/nukkit/Player.java | 47 ++++++++++++++----- .../cn/nukkit/network/RakNetInterface.java | 39 +++++++++++++++ .../cn/nukkit/network/SourceInterface.java | 6 +++ .../protocol/ResourcePackChunkDataPacket.java | 23 ++++++++- .../ResourcePackChunkRequestPacket.java | 20 +++++++- .../protocol/ResourcePackDataInfoPacket.java | 24 +++++++++- .../protocol/ResourcePacksInfoPacket.java | 3 +- .../resourcepacks/ResourcePackManager.java | 19 ++++++++ 8 files changed, 163 insertions(+), 18 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 5477677aa39..2711677ce35 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -68,6 +68,7 @@ import cn.nukkit.positiontracking.PositionTrackingService; import cn.nukkit.potion.Effect; import cn.nukkit.resourcepacks.ResourcePack; +import cn.nukkit.resourcepacks.ResourcePackManager; import cn.nukkit.scheduler.AsyncTask; import cn.nukkit.scheduler.TaskHandler; import cn.nukkit.utils.*; @@ -2355,7 +2356,7 @@ public void handleDataPacket(DataPacket packet) { disconnectPacket.encode(); BatchPacket batch = new BatchPacket(); batch.payload = disconnectPacket.getBuffer(); - this.dataPacket(batch); + this.dataPacketImmediately(batch); // Still want to run close() to allow the player to be removed properly } this.close("", message, false); @@ -2474,19 +2475,19 @@ public void onCompletion(Server server) { } ResourcePackDataInfoPacket dataInfoPacket = new ResourcePackDataInfoPacket(); - dataInfoPacket.packId = resourcePack.getPackId(); - dataInfoPacket.maxChunkSize = 1048576; //megabyte - dataInfoPacket.chunkCount = resourcePack.getPackSize() / dataInfoPacket.maxChunkSize; + dataInfoPacket.packInfo = resourcePack.getPackId().toString() + "_" + resourcePack.getPackVersion(); + dataInfoPacket.maxChunkSize = ResourcePackManager.getMaxChunkSize(); // 102400 is default + dataInfoPacket.chunkCount = (int) Math.ceil(resourcePack.getPackSize() / (double) dataInfoPacket.maxChunkSize); dataInfoPacket.compressedPackSize = resourcePack.getPackSize(); dataInfoPacket.sha256 = resourcePack.getSha256(); - this.dataPacket(dataInfoPacket); + this.dataResourcePacket(dataInfoPacket); } break; case ResourcePackClientResponsePacket.STATUS_HAVE_ALL_PACKS: ResourcePackStackPacket stackPacket = new ResourcePackStackPacket(); stackPacket.mustAccept = this.server.getForceResources(); stackPacket.resourcePackStack = this.server.getResourcePackManager().getResourceStack(); - this.dataPacket(stackPacket); + this.dataResourcePacket(stackPacket); break; case ResourcePackClientResponsePacket.STATUS_COMPLETED: this.shouldLogin = true; @@ -2499,18 +2500,18 @@ public void onCompletion(Server server) { break; case ProtocolInfo.RESOURCE_PACK_CHUNK_REQUEST_PACKET: ResourcePackChunkRequestPacket requestPacket = (ResourcePackChunkRequestPacket) packet; - ResourcePack resourcePack = this.server.getResourcePackManager().getPackById(requestPacket.packId); + ResourcePack resourcePack = this.server.getResourcePackManager().getPackById(UUID.fromString(requestPacket.packInfo.split("_")[0])); // TODO: Pack version check if (resourcePack == null) { this.close("", "disconnectionScreen.resourcePack"); break; } ResourcePackChunkDataPacket dataPacket = new ResourcePackChunkDataPacket(); - dataPacket.packId = resourcePack.getPackId(); + dataPacket.packInfo = resourcePack.getPackId().toString() + "_" + resourcePack.getPackVersion(); dataPacket.chunkIndex = requestPacket.chunkIndex; - dataPacket.data = resourcePack.getPackChunk(1048576 * requestPacket.chunkIndex, 1048576); - dataPacket.progress = 1048576 * requestPacket.chunkIndex; - this.dataPacket(dataPacket); + dataPacket.data = resourcePack.getPackChunk(ResourcePackManager.getMaxChunkSize() * requestPacket.chunkIndex, ResourcePackManager.getMaxChunkSize()); + dataPacket.progress = ResourcePackManager.getMaxChunkSize() * requestPacket.chunkIndex; + this.dataResourcePacket(dataPacket); break; case ProtocolInfo.SET_LOCAL_PLAYER_AS_INITIALIZED_PACKET: if (this.locallyInitialized) { @@ -6104,4 +6105,28 @@ public boolean dataPacketImmediately(DataPacket packet) { return true; } + + @PowerNukkitOnly + @Since("FUTURE") + public boolean dataResourcePacket(DataPacket packet) { + if (!this.connected) { + return false; + } + + try (Timing ignored = Timings.getSendDataPacketTiming(packet)) { + DataPacketSendEvent ev = new DataPacketSendEvent(this, packet); + this.server.getPluginManager().callEvent(ev); + if (ev.isCancelled()) { + return false; + } + + if (log.isTraceEnabled() && !server.isIgnoredPacket(packet.getClass())) { + log.trace("Resource Outbound {}: {}", this.getName(), packet); + } + + this.interfaz.putResourcePacket(this, packet); + } + + return true; + } } diff --git a/src/main/java/cn/nukkit/network/RakNetInterface.java b/src/main/java/cn/nukkit/network/RakNetInterface.java index 481f0198d70..4c06a8e8fa0 100644 --- a/src/main/java/cn/nukkit/network/RakNetInterface.java +++ b/src/main/java/cn/nukkit/network/RakNetInterface.java @@ -2,6 +2,8 @@ import cn.nukkit.Player; import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.event.player.PlayerCreationEvent; import cn.nukkit.event.server.QueryRegenerateEvent; import cn.nukkit.network.protocol.BatchPacket; @@ -9,10 +11,13 @@ import cn.nukkit.network.protocol.ProtocolInfo; import cn.nukkit.utils.BinaryStream; import cn.nukkit.utils.Utils; + import com.google.common.base.Preconditions; import com.google.common.base.Strings; + import com.nukkitx.network.raknet.*; import com.nukkitx.network.util.DisconnectReason; + import io.netty.buffer.ByteBuf; import io.netty.buffer.ByteBufAllocator; import io.netty.channel.ChannelHandlerContext; @@ -22,8 +27,10 @@ import io.netty.util.concurrent.ScheduledFuture; import io.netty.util.internal.PlatformDependent; import it.unimi.dsi.fastutil.objects.ObjectArrayList; + import lombok.RequiredArgsConstructor; import lombok.extern.log4j.Log4j2; + import org.apache.logging.log4j.message.FormattedMessage; import java.io.IOException; @@ -254,7 +261,21 @@ public void onSessionCreation(RakNetServerSession session) { public void onUnhandledDatagram(ChannelHandlerContext ctx, DatagramPacket datagramPacket) { this.server.handlePacket(datagramPacket.sender(), datagramPacket.content()); } + + @PowerNukkitOnly + @Since("FUTURE") + @Override + public Integer putResourcePacket(Player player, DataPacket packet) { + NukkitRakNetSession session = this.sessions.get(player.getSocketAddress()); + if (session != null) { + packet.tryEncode(); + session.sendResourcePacket(packet.clone()); + } + + return null; + } + @RequiredArgsConstructor private class NukkitRakNetSession implements RakNetSessionListener { private final RakNetServerSession raknet; @@ -365,5 +386,23 @@ private void sendPacketImmediately(DataPacket packet) { log.error("Error occured while sending a packet immediately", e); } } + + private void sendResourcePacket(DataPacket packet) { + BinaryStream batched = new BinaryStream(); + Preconditions.checkArgument(!(packet instanceof BatchPacket), "Cannot batch BatchPacket"); + Preconditions.checkState(packet.isEncoded, "Packet should have already been encoded"); + byte[] buf = packet.getBuffer(); + batched.putUnsignedVarInt(buf.length); + batched.put(buf); + try { + byte[] payload = Network.deflateRaw(batched.getBuffer(), network.getServer().networkCompressionLevel); + ByteBuf byteBuf = ByteBufAllocator.DEFAULT.ioBuffer(1 + payload.length); + byteBuf.writeByte(0xfe); + byteBuf.writeBytes(payload); + this.raknet.send(byteBuf); + } catch (Exception e) { + log.error("Error occured while sending a packet immediately", e); + } + } } } diff --git a/src/main/java/cn/nukkit/network/SourceInterface.java b/src/main/java/cn/nukkit/network/SourceInterface.java index 5d4c0be9da9..502f52018f3 100644 --- a/src/main/java/cn/nukkit/network/SourceInterface.java +++ b/src/main/java/cn/nukkit/network/SourceInterface.java @@ -1,6 +1,8 @@ package cn.nukkit.network; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.network.protocol.DataPacket; @@ -28,4 +30,8 @@ public interface SourceInterface { void shutdown(); void emergencyShutdown(); + + @PowerNukkitOnly + @Since("FUTURE") + Integer putResourcePacket(Player player, DataPacket packet); } diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacket.java index 72232810409..5cc82926295 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacket.java @@ -1,5 +1,9 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.DeprecationDetails; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; + import lombok.ToString; import java.util.UUID; @@ -9,14 +13,24 @@ public class ResourcePackChunkDataPacket extends DataPacket { public static final byte NETWORK_ID = ProtocolInfo.RESOURCE_PACK_CHUNK_DATA_PACKET; + @Deprecated + @DeprecationDetails(since = "FUTURE", reason = "The format has been changed from '(uuid of pack)' to '(uuid of pack)_(version of pack)'", replaceWith = "packInfo") public UUID packId; + @PowerNukkitOnly + @Since("FUTURE") + public String packInfo; public int chunkIndex; public long progress; public byte[] data; @Override public void decode() { - this.packId = UUID.fromString(this.getString()); + String packInfo = this.getString(); + try { + this.packId = UUID.fromString(packInfo); + } catch (IllegalArgumentException exception) { + this.packInfo = packInfo; + } this.chunkIndex = this.getLInt(); this.progress = this.getLLong(); this.data = this.getByteArray(); @@ -25,7 +39,12 @@ public void decode() { @Override public void encode() { this.reset(); - this.putString(this.packId.toString()); + + if (packInfo == null) { + this.putString(this.packId.toString()); + } else { + this.putString(this.packInfo); + } this.putLInt(this.chunkIndex); this.putLLong(this.progress); this.putByteArray(this.data); diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacket.java index ebed714e1f6..a5533c710df 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacket.java @@ -1,5 +1,8 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; + import lombok.ToString; import java.util.UUID; @@ -9,19 +12,32 @@ public class ResourcePackChunkRequestPacket extends DataPacket { public static final byte NETWORK_ID = ProtocolInfo.RESOURCE_PACK_CHUNK_REQUEST_PACKET; + @Deprecated public UUID packId; + @PowerNukkitOnly + @Since("FUTURE") + public String packInfo; public int chunkIndex; @Override public void decode() { - this.packId = UUID.fromString(this.getString()); + String packInfo = this.getString(); + try { + this.packId = UUID.fromString(packInfo); + } catch (IllegalArgumentException exception) { + this.packInfo = packInfo; + } this.chunkIndex = this.getLInt(); } @Override public void encode() { this.reset(); - this.putString(this.packId.toString()); + if (packInfo == null) { + this.putString(this.packId.toString()); + } else { + this.putString(this.packInfo); + } this.putLInt(this.chunkIndex); } diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java index d1960c9ec2c..d4fd7e37b5f 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java @@ -1,5 +1,9 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.DeprecationDetails; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; + import lombok.ToString; import java.util.UUID; @@ -20,7 +24,12 @@ public class ResourcePackDataInfoPacket extends DataPacket { public static final int TYPE_WORLD_TEMPLATE = 8; public static final int TYPE_COUNT = 9; + @Deprecated + @DeprecationDetails(since = "FUTURE", reason = "The format has been changed from '(uuid of pack)' to '(uuid of pack)_(version of pack)'", replaceWith = "packInfo") public UUID packId; + @PowerNukkitOnly + @Since("FUTURE") + public String packInfo; public int maxChunkSize; public int chunkCount; public long compressedPackSize; @@ -30,7 +39,14 @@ public class ResourcePackDataInfoPacket extends DataPacket { @Override public void decode() { - this.packId = UUID.fromString(this.getString()); + String packInfo = this.getString(); + try { + packId = UUID.fromString(packInfo); + } catch (IllegalArgumentException exception) { + packId = null; + } + this.packId = UUID.fromString(packInfo); + this.packInfo = packInfo; this.maxChunkSize = this.getLInt(); this.chunkCount = this.getLInt(); this.compressedPackSize = this.getLLong(); @@ -42,7 +58,11 @@ public void decode() { @Override public void encode() { this.reset(); - this.putString(this.packId.toString()); + if (packInfo == null) { + this.putString(this.packId.toString()); + } else { + this.putString(this.packInfo); + } this.putLInt(this.maxChunkSize); this.putLInt(this.chunkCount); this.putLLong(this.compressedPackSize); diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java index be62970ffe8..5345867bb98 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java @@ -24,6 +24,7 @@ public void decode() { @Override public void encode() { this.reset(); + this.putBoolean(this.mustAccept); this.putBoolean(this.scripting); this.putBoolean(this.forcingServerPacksEnabled); @@ -40,7 +41,7 @@ private void encodePacks(ResourcePack[] packs) { this.putLLong(entry.getPackSize()); this.putString(""); // encryption key this.putString(""); // sub-pack name - this.putString(""); // content identity + this.putString(entry.getPackId().toString()); // content identity this.putBoolean(false); // scripting this.putBoolean(false); // raytracing capable } diff --git a/src/main/java/cn/nukkit/resourcepacks/ResourcePackManager.java b/src/main/java/cn/nukkit/resourcepacks/ResourcePackManager.java index f1be64e54d3..9cceadedec6 100644 --- a/src/main/java/cn/nukkit/resourcepacks/ResourcePackManager.java +++ b/src/main/java/cn/nukkit/resourcepacks/ResourcePackManager.java @@ -1,7 +1,11 @@ package cn.nukkit.resourcepacks; import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; + import com.google.common.io.Files; + import lombok.extern.log4j.Log4j2; import java.io.File; @@ -9,6 +13,9 @@ @Log4j2 public class ResourcePackManager { + + private static int MAX_CHUNK_SIZE = 102400; + private final Map resourcePacksById = new HashMap<>(); private ResourcePack[] resourcePacks; @@ -59,4 +66,16 @@ public ResourcePack[] getResourceStack() { public ResourcePack getPackById(UUID id) { return this.resourcePacksById.get(id); } + + @PowerNukkitOnly + @Since("FUTURE") + public static int getMaxChunkSize() { + return MAX_CHUNK_SIZE; + } + + @PowerNukkitOnly + @Since("FUTURE") + public static void setMaxChunkSize(int maxChunkSize) { + MAX_CHUNK_SIZE = maxChunkSize; + } } From 87ea361d9b87531516e237bcfc808a7716a0b596 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 27 Oct 2021 21:40:17 +0300 Subject: [PATCH 251/394] Skulls should not take damage on hit --- src/main/java/cn/nukkit/entity/EntityHumanType.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/entity/EntityHumanType.java b/src/main/java/cn/nukkit/entity/EntityHumanType.java index 46445ac67c7..d65c9dc7343 100644 --- a/src/main/java/cn/nukkit/entity/EntityHumanType.java +++ b/src/main/java/cn/nukkit/entity/EntityHumanType.java @@ -13,6 +13,7 @@ import cn.nukkit.inventory.PlayerOffhandInventory; import cn.nukkit.item.Item; import cn.nukkit.item.ItemBlock; +import cn.nukkit.item.ItemSkull; import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.level.format.FullChunk; import cn.nukkit.math.NukkitMath; @@ -195,7 +196,7 @@ public boolean attack(EntityDamageEvent source) { continue; } - if (armor.isUnbreakable()) { + if (armor.isUnbreakable() || armor instanceof ItemSkull) { continue; } From 3ac9f2833d7c4e955162986198330be4247c4fc9 Mon Sep 17 00:00:00 2001 From: Woder <17339354+wode490390@users.noreply.github.com> Date: Sun, 31 Oct 2021 06:20:51 +0800 Subject: [PATCH 252/394] Fix boat behavior (#1911) --- src/main/java/cn/nukkit/Player.java | 19 ++++++++++++------- src/main/java/cn/nukkit/entity/Entity.java | 17 +++++++++++------ .../cn/nukkit/entity/item/EntityBoat.java | 19 ++++++++++++------- src/main/java/cn/nukkit/level/Level.java | 4 ++++ .../protocol/MoveEntityAbsolutePacket.java | 9 +++++++-- 5 files changed, 46 insertions(+), 22 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 7a84e61c14f..92fbffeb392 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -2337,13 +2337,15 @@ public void onCompletion(Server server) { this.newPosition = newPos; this.forceMovement = null; } - - if (riding != null) { - if (riding instanceof EntityBoat) { - riding.setPositionAndRotation(this.temporalVector.setComponents(movePlayerPacket.x, movePlayerPacket.y - 1, movePlayerPacket.z), (movePlayerPacket.headYaw + 90) % 360, 0); - } + break; + case ProtocolInfo.MOVE_ENTITY_ABSOLUTE_PACKET: + MoveEntityAbsolutePacket moveEntityAbsolutePacket = (MoveEntityAbsolutePacket) packet; + if (this.riding == null || this.riding.getId() != moveEntityAbsolutePacket.eid || !this.riding.isControlling(this)) { + break; + } + if (this.riding instanceof EntityBoat) { + ((EntityBoat) this.riding).onInput(moveEntityAbsolutePacket.x, moveEntityAbsolutePacket.y, moveEntityAbsolutePacket.z, moveEntityAbsolutePacket.headYaw); } - break; case ProtocolInfo.ADVENTURE_SETTINGS_PACKET: //TODO: player abilities, check for other changes @@ -4302,11 +4304,14 @@ public void sendPosition(Vector3 pos, double yaw, double pitch, int mode, Player pk.pitch = (float) pitch; pk.yaw = (float) yaw; pk.mode = mode; + if (this.riding != null) { + pk.ridingEid = this.riding.getId(); + pk.mode = MovePlayerPacket.MODE_PITCH; + } if (targets != null) { Server.broadcastPacket(targets, pk); } else { - pk.eid = this.id; this.dataPacket(pk); } } diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 44b12362e34..682239c84dd 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -98,7 +98,7 @@ public abstract class Entity extends Location implements Metadatable { public static final int DATA_POTION_AUX_VALUE = 36; //short public static final int DATA_LEAD_HOLDER_EID = 37; //long public static final int DATA_SCALE = 38; //float - public static final int DATA_INTERACTIVE_TAG = 39; //string (button text) + public static final int DATA_HAS_NPC_COMPONENT = 39; //byte public static final int DATA_NPC_SKIN_ID = 40; //string public static final int DATA_URL_TAG = 41; //string public static final int DATA_MAX_AIR = 42; //short @@ -159,7 +159,7 @@ public abstract class Entity extends Location implements Metadatable { public static final int DATA_CHANGE_RATE = 97; public static final int DATA_CHANGE_ON_PICKUP = 98; public static final int DATA_PICKUP_COUNT = 99; - public static final int DATA_INTERACT_TEXT = 100; + public static final int DATA_INTERACTIVE_TAG = 100; //string (button text) public static final int DATA_TRADE_TIER = 101; public static final int DATA_MAX_TRADE_TIER = 102; public static final int DATA_TRADE_EXPERIENCE = 103; @@ -179,9 +179,11 @@ public abstract class Entity extends Location implements Metadatable { public static final int DATA_NEARBY_CURED_DISCOUNT_TIMESTAMP = 117; public static final int DATA_HITBOX = 118; public static final int DATA_IS_BUOYANT = 119; - public static final int DATA_FREEZING_EFFECT_STRENGTH = 120; - public static final int DATA_BUOYANCY_DATA = 121; - public static final int DATA_GOAT_HORN_COUNT = 122; + public static final int DATA_BASE_RUNTIME_ID = 120; + public static final int DATA_FREEZING_EFFECT_STRENGTH = 121; + public static final int DATA_BUOYANCY_DATA = 122; + public static final int DATA_GOAT_HORN_COUNT = 123; + public static final int DATA_UPDATE_PROPERTIES = 124; // Flags public static final int DATA_FLAG_ONFIRE = 0; @@ -260,7 +262,7 @@ public abstract class Entity extends Location implements Metadatable { public static final int DATA_FLAG_BLOCKED_USING_SHIELD = 73; public static final int DATA_FLAG_BLOCKED_USING_DAMAGED_SHIELD = 74; public static final int DATA_FLAG_SLEEPING = 75; - public static final int DATA_FLAG_WANTS_TO_WAKE = 76; + public static final int DATA_FLAG_ENTITY_GROW_UP = 76; public static final int DATA_FLAG_TRADE_INTEREST = 77; public static final int DATA_FLAG_DOOR_BREAKER = 78; public static final int DATA_FLAG_BREAKING_OBSTRUCTION = 79; @@ -280,6 +282,9 @@ public abstract class Entity extends Location implements Metadatable { public static final int DATA_FLAG_ADMIRING = 93; public static final int DATA_FLAG_CELEBRATING_SPECIAL = 94; public static final int DATA_FLAG_RAM_ATTACK = 96; + public static final int DATA_FLAG_PLAYING_DEAD = 97; + public static final int DATA_FLAG_IN_ASCENDABLE_BLOCK = 98; + public static final int DATA_FLAG_OVER_DESCENDABLE_BLOCK = 99; public static long entityCount = 1; diff --git a/src/main/java/cn/nukkit/entity/item/EntityBoat.java b/src/main/java/cn/nukkit/entity/item/EntityBoat.java index e4bbcf68264..95cf73deba5 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityBoat.java +++ b/src/main/java/cn/nukkit/entity/item/EntityBoat.java @@ -61,6 +61,11 @@ protected void initEntity() { super.initEntity(); this.dataProperties.putInt(DATA_VARIANT, woodID = this.namedTag.getByte("woodID")); + this.dataProperties.putByte(DATA_CONTROLLING_RIDER_SEAT_NUMBER, 0); + this.dataProperties.putBoolean(DATA_IS_BUOYANT, true); + this.dataProperties.putString(DATA_BUOYANCY_DATA, "{\"apply_gravity\":true,\"base_buoyancy\":1.0,\"big_wave_probability\":0.02999999932944775,\"big_wave_speed\":10.0,\"drag_down_on_buoyancy_removed\":0.0,\"liquid_blocks\":[\"minecraft:water\",\"minecraft:flowing_water\"],\"simulate_waves\":true}"); + this.setDataFlag(DATA_FLAGS, DATA_FLAG_GRAVITY, true); + this.setDataFlag(DATA_FLAGS, DATA_FLAG_STACKABLE, true); } @Override @@ -311,12 +316,8 @@ public boolean mountEntity(Entity entity) { entity.setDataProperty(new ByteEntityData(DATA_RIDER_ROTATION_LOCKED, 1)); entity.setDataProperty(new FloatEntityData(DATA_RIDER_MAX_ROTATION, 90)); - - entity.setDataProperty(new FloatEntityData(DATA_RIDER_MIN_ROTATION, this.passengers.indexOf(entity) == 1 ? -90 : 0)); - - // if(entity instanceof Player && mode == SetEntityLinkPacket.TYPE_RIDE){ //TODO: controlling? -// entity.setDataProperty(new ByteEntityData(DATA_FLAG_WASD_CONTROLLED)) -// } + entity.setDataProperty(new FloatEntityData(DATA_RIDER_MIN_ROTATION, 1)); + entity.setDataProperty(new FloatEntityData(DATA_RIDER_ROTATION_OFFSET, -90)); } return r; @@ -348,7 +349,7 @@ public boolean onInteract(Player player, Item item, Vector3 clickedPos) { return false; } - super.mountEntity(player); + this.mountEntity(player); return super.onInteract(player, item, clickedPos); } @@ -419,4 +420,8 @@ public void saveNBT() { this.namedTag.putByte("woodID", this.woodID); } + + public void onInput(double x, double y, double z, double yaw) { + this.setPositionAndRotation(this.temporalVector.setComponents(x, y - this.getBaseOffset(), z), yaw % 360, 0); + } } diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 41593e26d02..24e004f6f11 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -3273,6 +3273,10 @@ public void addPlayerMovement(Entity entity, double x, double y, double z, doubl pk.yaw = (float) yaw; pk.headYaw = (float) headYaw; pk.pitch = (float) pitch; + if (entity.riding != null) { + pk.ridingEid = entity.riding.getId(); + pk.mode = MovePlayerPacket.MODE_PITCH; + } Server.broadcastPacket(entity.getViewers().values(), pk); } diff --git a/src/main/java/cn/nukkit/network/protocol/MoveEntityAbsolutePacket.java b/src/main/java/cn/nukkit/network/protocol/MoveEntityAbsolutePacket.java index b4615cae370..9ce410cf137 100644 --- a/src/main/java/cn/nukkit/network/protocol/MoveEntityAbsolutePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/MoveEntityAbsolutePacket.java @@ -20,6 +20,7 @@ public class MoveEntityAbsolutePacket extends DataPacket { public double pitch; public boolean onGround; public boolean teleport; + public boolean forceMoveLocalEntity; @Override public byte pid() { @@ -30,8 +31,9 @@ public byte pid() { public void decode() { this.eid = this.getEntityRuntimeId(); int flags = this.getByte(); - teleport = (flags & 0x01) != 0; - onGround = (flags & 0x02) != 0; + onGround = (flags & 0x01) != 0; + teleport = (flags & 0x02) != 0; + forceMoveLocalEntity = (flags & 0x04) != 0; Vector3f v = this.getVector3f(); this.x = v.x; this.y = v.y; @@ -52,6 +54,9 @@ public void encode() { if (teleport) { flags |= 0x02; } + if (forceMoveLocalEntity) { + flags |= 0x04; + } this.putByte(flags); this.putVector3f((float) this.x, (float) this.y, (float) this.z); this.putByte((byte) (this.pitch / (360d / 256d))); From 167b7e935504839e1bc7879192057b945a4a1ab7 Mon Sep 17 00:00:00 2001 From: Woder <17339354+wode490390@users.noreply.github.com> Date: Sun, 31 Oct 2021 23:54:25 +0800 Subject: [PATCH 253/394] Call EntityCombustByEntityEvent in EntityProjectile (#1912) --- src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index 937aa3868b4..c90e228b709 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -77,7 +77,7 @@ public void onCollideWithEntity(Entity entity) { if (this.fireTicks > 0) { EntityCombustByEntityEvent event = new EntityCombustByEntityEvent(this, entity, 5); - this.server.getPluginManager().callEvent(ev); + this.server.getPluginManager().callEvent(event); if (!event.isCancelled()) { entity.setOnFire(event.getDuration()); } From 7f03dbcfd6cec6117e287397215689ef845365b1 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 3 Nov 2021 10:24:28 +0200 Subject: [PATCH 254/394] Make falling anvil deal damage (#1913) * Make falling anvil deal damage * Use highestPosition --- src/main/java/cn/nukkit/Player.java | 5 ++++- .../entity/item/EntityFallingBlock.java | 19 +++++++++++++++++-- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 92fbffeb392..026c99463d1 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -3926,8 +3926,11 @@ public void kill() { case CONTACT: if (cause instanceof EntityDamageByBlockEvent) { - if (((EntityDamageByBlockEvent) cause).getDamager().getId() == Block.CACTUS) { + int id = ((EntityDamageByBlockEvent) cause).getDamager().getId(); + if (id == Block.CACTUS) { message = "death.attack.cactus"; + } else if (id == Block.ANVIL) { + message = "death.attack.anvil"; } } break; diff --git a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java index 574b5be0674..868b82a5186 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java @@ -1,10 +1,13 @@ package cn.nukkit.entity.item; import cn.nukkit.block.Block; +import cn.nukkit.block.BlockID; import cn.nukkit.block.BlockLiquid; import cn.nukkit.entity.Entity; +import cn.nukkit.entity.EntityLiving; import cn.nukkit.entity.data.IntEntityData; import cn.nukkit.event.entity.EntityBlockChangeEvent; +import cn.nukkit.event.entity.EntityDamageByBlockEvent; import cn.nukkit.event.entity.EntityDamageEvent; import cn.nukkit.event.entity.EntityDamageEvent.DamageCause; import cn.nukkit.item.Item; @@ -54,7 +57,7 @@ protected float getBaseOffset() { @Override public boolean canCollide() { - return false; + return blockId == BlockID.ANVIL; } protected int blockId; @@ -93,7 +96,7 @@ protected void initEntity() { } public boolean canCollideWith(Entity entity) { - return false; + return blockId == BlockID.ANVIL; } @Override @@ -175,6 +178,13 @@ public boolean onUpdate(int currentTick) { if (event.getTo().getId() == Item.ANVIL) { getLevel().addLevelEvent(block, LevelEventPacket.EVENT_SOUND_ANVIL_FALL); + + Entity[] e = level.getCollidingEntities(this.getBoundingBox(), this); + for (Entity entity : e) { + if (entity instanceof EntityLiving && highestPosition > y) { + entity.attack(new EntityDamageByBlockEvent(event.getTo(), entity, DamageCause.CONTACT, (float) Math.min(40, Math.max(0, (highestPosition - y) * 2)))); + } + } } } } @@ -212,4 +222,9 @@ public void saveNBT() { public boolean canBeMovedByCurrents() { return false; } + + @Override + public void resetFallDistance() { + this.highestPosition = this.y; + } } From 812bfeef945b7f22fe72828fe4fb0a3a87ce668f Mon Sep 17 00:00:00 2001 From: Woder <17339354+wode490390@users.noreply.github.com> Date: Wed, 3 Nov 2021 16:31:09 +0800 Subject: [PATCH 255/394] Fix power enchantment (#1910) --- src/main/java/cn/nukkit/item/ItemBow.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/item/ItemBow.java b/src/main/java/cn/nukkit/item/ItemBow.java index dc953ec9ab1..019c3cf063e 100644 --- a/src/main/java/cn/nukkit/item/ItemBow.java +++ b/src/main/java/cn/nukkit/item/ItemBow.java @@ -67,7 +67,7 @@ public boolean onRelease(Player player, int ticksUsed) { Enchantment bowDamage = this.getEnchantment(Enchantment.ID_BOW_POWER); if (bowDamage != null && bowDamage.getLevel() > 0) { - damage += 0.25 * (bowDamage.getLevel() + 1); + damage += (double) bowDamage.getLevel() * 0.5 + 0.5; } Enchantment flameEnchant = this.getEnchantment(Enchantment.ID_BOW_FLAME); From ee49a2a427500edfb417218f7edc09ee4e8ce194 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 3 Nov 2021 23:10:32 +0200 Subject: [PATCH 256/394] Falling anvil: do not reset fall distance before dealing damage to entities (#1914) --- src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java index 868b82a5186..1d146ea97b0 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java @@ -225,6 +225,8 @@ public boolean canBeMovedByCurrents() { @Override public void resetFallDistance() { - this.highestPosition = this.y; + if (!this.closed) { // For falling anvil: do not reset fall distance before dealing damage to entities + this.highestPosition = this.y; + } } } From 9cf3af144a738900aaaa01f17d05b19b306c8fcf Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 22 Nov 2021 12:41:44 -0300 Subject: [PATCH 257/394] #1233 Fixes problems caught on code review --- src/main/java/cn/nukkit/Player.java | 4 +- .../event/entity/EntityDamageEvent.java | 52 ++++--------------- .../cn/nukkit/inventory/CraftingManager.java | 6 +-- 3 files changed, 14 insertions(+), 48 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 2711677ce35..48305764b36 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -2510,7 +2510,7 @@ public void onCompletion(Server server) { dataPacket.packInfo = resourcePack.getPackId().toString() + "_" + resourcePack.getPackVersion(); dataPacket.chunkIndex = requestPacket.chunkIndex; dataPacket.data = resourcePack.getPackChunk(ResourcePackManager.getMaxChunkSize() * requestPacket.chunkIndex, ResourcePackManager.getMaxChunkSize()); - dataPacket.progress = ResourcePackManager.getMaxChunkSize() * requestPacket.chunkIndex; + dataPacket.progress = ResourcePackManager.getMaxChunkSize() * (long)requestPacket.chunkIndex; this.dataResourcePacket(dataPacket); break; case ProtocolInfo.SET_LOCAL_PLAYER_AS_INITIALIZED_PACKET: @@ -4606,7 +4606,7 @@ public void kill() { case HUNGER: message = "death.attack.starve"; break; - case MAGMA: + case HOT_FLOOR: message = "death.attack.magma"; break; default: diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java index ff35168dc49..29f933f1430 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java @@ -211,16 +211,6 @@ public enum DamageModifier { } public enum DamageCause { - /** - * Plugins - */ - CUSTOM, - /** - * Damage caused by /kill command - */ - @PowerNukkitOnly - @Since("FUTURE") - OVERRIDE, /** * Damage caused by contact with a block such as a Cactus */ @@ -278,21 +268,23 @@ public enum DamageCause { */ MAGIC, /** - * Damage caused by Wither + * Plugins */ - @PowerNukkitOnly - @Since("FUTURE") - WITHER, + CUSTOM, + /** + * Damage caused by being struck by lightning + */ + LIGHTNING, /** * Damage caused by hunger */ HUNGER, /** - * Damage caused by anvil + * Damage caused by Wither */ @PowerNukkitOnly @Since("FUTURE") - ANVIL, + WITHER, /** * Damage caused by thorns */ @@ -305,12 +297,6 @@ public enum DamageCause { @PowerNukkitOnly @Since("FUTURE") FALLING_BLOCK, - /** - * Damage caused by piston - */ - @PowerNukkitOnly - @Since("FUTURE") - PISTON, /** * Damage caused by flying into wall */ @@ -318,38 +304,22 @@ public enum DamageCause { @Since("FUTURE") FLYING_INTO_WALL, /** - * Damage caused by magma + * Damage caused when an entity steps on a hot block, like {@link cn.nukkit.block.BlockID#MAGMA} */ @PowerNukkitOnly @Since("FUTURE") - MAGMA, + HOT_FLOOR, /** * Damage caused by fireworks */ @PowerNukkitOnly @Since("FUTURE") FIREWORKS, - /** - * Damage caused by being struck by lightning - */ - LIGHTNING, - /** - * Damage caused by charging - */ - @PowerNukkitOnly - @Since("FUTURE") - CHARGING, /** * Damage caused by temperature */ @PowerNukkitOnly @Since("FUTURE") - TEMPERATURE, - /** - * Damage caused by all - */ - @PowerNukkitOnly - @Since("FUTURE") - ALL + FREEZING, } } diff --git a/src/main/java/cn/nukkit/inventory/CraftingManager.java b/src/main/java/cn/nukkit/inventory/CraftingManager.java index 653ceedde34..a2796dccea5 100644 --- a/src/main/java/cn/nukkit/inventory/CraftingManager.java +++ b/src/main/java/cn/nukkit/inventory/CraftingManager.java @@ -90,11 +90,7 @@ public CraftingManager() { Config recipesConfig = new Config(Config.JSON); try(InputStream recipesStream = Server.class.getClassLoader().getResourceAsStream("recipes.json")) { - if (recipesStream == null) { - throw new AssertionError("Unable to find recipes.json"); - } - - recipesConfig.load(recipesStream); + recipesConfig.load(Objects.requireNonNull(recipesStream, "Unable to find recipes.json")); } catch (IOException e) { throw new UncheckedIOException(e); } From 8c5c5aaf89c5eabd493b1ec341e3037c6090eee9 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 22 Nov 2021 14:00:06 -0300 Subject: [PATCH 258/394] #1233 Improves ResourcePackDataInfoPacket and fixes a build issue --- pom.xml | 5 +++ src/main/java/cn/nukkit/Player.java | 6 ++- src/main/java/cn/nukkit/block/BlockMagma.java | 2 +- .../protocol/ResourcePackDataInfoPacket.java | 37 +++++++++++-------- .../ResourcePackDataInfoPacketTest.java | 36 ++++++++++++++++++ 5 files changed, 68 insertions(+), 18 deletions(-) create mode 100644 src/test/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacketTest.java diff --git a/pom.xml b/pom.xml index 4fdb8c8c845..9a4a1193db5 100644 --- a/pom.xml +++ b/pom.xml @@ -126,6 +126,11 @@ 8.1.1 compile + + org.powernukkit + version-library + 1.0.0 + com.google.guava guava diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 48305764b36..4f982f729fa 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -86,6 +86,7 @@ import it.unimi.dsi.fastutil.longs.LongIterator; import it.unimi.dsi.fastutil.objects.ObjectIterator; import lombok.extern.log4j.Log4j2; +import org.powernukkit.version.Version; import javax.annotation.Nonnull; import javax.annotation.Nullable; @@ -2475,7 +2476,8 @@ public void onCompletion(Server server) { } ResourcePackDataInfoPacket dataInfoPacket = new ResourcePackDataInfoPacket(); - dataInfoPacket.packInfo = resourcePack.getPackId().toString() + "_" + resourcePack.getPackVersion(); + dataInfoPacket.packId = resourcePack.getPackId(); + dataInfoPacket.setPackVersion(new Version(resourcePack.getPackVersion())); dataInfoPacket.maxChunkSize = ResourcePackManager.getMaxChunkSize(); // 102400 is default dataInfoPacket.chunkCount = (int) Math.ceil(resourcePack.getPackSize() / (double) dataInfoPacket.maxChunkSize); dataInfoPacket.compressedPackSize = resourcePack.getPackSize(); @@ -2552,7 +2554,7 @@ public void onCompletion(Server server) { return false; } }).map(Field::getName).findFirst(); - log.warn("Violation warning from {}{}", this.getName(), packetName.map(name-> " for packet "+name).orElse("")+": " + packet.toString()); + log.warn("Violation warning from {}{}", this.getName(), packetName.map(name-> " for packet "+name).orElse("")+": " + packet); break; case ProtocolInfo.EMOTE_PACKET: for (Player viewer : this.getViewers().values()) { diff --git a/src/main/java/cn/nukkit/block/BlockMagma.java b/src/main/java/cn/nukkit/block/BlockMagma.java index 2c555db39ef..41e61dc43ff 100644 --- a/src/main/java/cn/nukkit/block/BlockMagma.java +++ b/src/main/java/cn/nukkit/block/BlockMagma.java @@ -68,7 +68,7 @@ public void onEntityCollide(Entity entity) { return; } if (!p.isCreative() && !p.isSpectator() && !p.isSneaking()) { - entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.MAGMA, 1)); + entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.HOT_FLOOR, 1)); } } else { entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.LAVA, 1)); diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java index d4fd7e37b5f..5b250fcf300 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java @@ -1,10 +1,9 @@ package cn.nukkit.network.protocol; -import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; - import lombok.ToString; +import org.powernukkit.version.Version; import java.util.UUID; @@ -24,12 +23,8 @@ public class ResourcePackDataInfoPacket extends DataPacket { public static final int TYPE_WORLD_TEMPLATE = 8; public static final int TYPE_COUNT = 9; - @Deprecated - @DeprecationDetails(since = "FUTURE", reason = "The format has been changed from '(uuid of pack)' to '(uuid of pack)_(version of pack)'", replaceWith = "packInfo") public UUID packId; - @PowerNukkitOnly - @Since("FUTURE") - public String packInfo; + private Version packVersion; public int maxChunkSize; public int chunkCount; public long compressedPackSize; @@ -40,13 +35,13 @@ public class ResourcePackDataInfoPacket extends DataPacket { @Override public void decode() { String packInfo = this.getString(); + String[] packInfoParts = packInfo.split("_", 2); try { - packId = UUID.fromString(packInfo); + this.packId = UUID.fromString(packInfoParts[0]); } catch (IllegalArgumentException exception) { - packId = null; + this.packId = null; } - this.packId = UUID.fromString(packInfo); - this.packInfo = packInfo; + this.packVersion = (packInfoParts.length > 1)? new Version(packInfoParts[1]) : null; this.maxChunkSize = this.getLInt(); this.chunkCount = this.getLInt(); this.compressedPackSize = this.getLLong(); @@ -58,11 +53,11 @@ public void decode() { @Override public void encode() { this.reset(); - if (packInfo == null) { - this.putString(this.packId.toString()); - } else { - this.putString(this.packInfo); + String packInfo = (packId != null) ? packId.toString() : new UUID(0, 0).toString(); + if (packVersion != null) { + packInfo += "_" + packVersion; } + this.putString(packInfo); this.putLInt(this.maxChunkSize); this.putLInt(this.chunkCount); this.putLLong(this.compressedPackSize); @@ -75,4 +70,16 @@ public void encode() { public byte pid() { return NETWORK_ID; } + + @PowerNukkitOnly + @Since("FUTURE") + public Version getPackVersion() { + return packVersion; + } + + @PowerNukkitOnly + @Since("FUTURE") + public void setPackVersion(Version packVersion) { + this.packVersion = packVersion; + } } diff --git a/src/test/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacketTest.java b/src/test/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacketTest.java new file mode 100644 index 00000000000..0bc7ad38fb0 --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacketTest.java @@ -0,0 +1,36 @@ +package cn.nukkit.network.protocol; + +import it.unimi.dsi.fastutil.bytes.ByteArrayList; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.powernukkit.version.Version; + +import java.util.UUID; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +class ResourcePackDataInfoPacketTest { + + ResourcePackDataInfoPacket packet; + + @BeforeEach + void setUp() { + packet = new ResourcePackDataInfoPacket(); + } + + @Test + void encodeDecode() { + packet.sha256 = new byte[]{1,2,3}; + packet.encode(); + packet.getUnsignedVarInt(); + packet.decode(); + assertEquals(new ByteArrayList(new byte[]{1, 2, 3}), new ByteArrayList(packet.sha256)); + packet.packId = new UUID(1,2); + packet.setPackVersion(new Version("3.4.5")); + packet.encode(); + packet.getUnsignedVarInt(); + packet.decode(); + assertEquals(new UUID(1, 2), packet.packId); + assertEquals(new Version("3.4.5"), packet.getPackVersion()); + } +} From 91b77579b758fd698052b24b5a810ac2a15bc1fd Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 22 Nov 2021 15:15:54 -0300 Subject: [PATCH 259/394] #1233 Improves ResourcePackChunkDataPacket, ResourcePackChunkRequestPacket, and ResourcePackDataInfoPacket --- src/main/java/cn/nukkit/Player.java | 5 +- .../AbstractResourcePackDataPacket.java | 52 ++++++++++++++++++ .../protocol/ResourcePackChunkDataPacket.java | 55 ++++++++++++------- .../ResourcePackChunkRequestPacket.java | 51 +++++++++++------ .../protocol/ResourcePackDataInfoPacket.java | 33 ++++++----- .../ResourcePackChunkDataPacketTest.java | 26 +++++++++ .../ResourcePackChunkRequestPacketTest.java | 32 +++++++++++ 7 files changed, 202 insertions(+), 52 deletions(-) create mode 100644 src/main/java/cn/nukkit/network/protocol/AbstractResourcePackDataPacket.java create mode 100644 src/test/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacketTest.java create mode 100644 src/test/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacketTest.java diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 4f982f729fa..9339656001e 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -2502,14 +2502,15 @@ public void onCompletion(Server server) { break; case ProtocolInfo.RESOURCE_PACK_CHUNK_REQUEST_PACKET: ResourcePackChunkRequestPacket requestPacket = (ResourcePackChunkRequestPacket) packet; - ResourcePack resourcePack = this.server.getResourcePackManager().getPackById(UUID.fromString(requestPacket.packInfo.split("_")[0])); // TODO: Pack version check + ResourcePack resourcePack = this.server.getResourcePackManager().getPackById(requestPacket.getPackId()); // TODO: Pack version check if (resourcePack == null) { this.close("", "disconnectionScreen.resourcePack"); break; } ResourcePackChunkDataPacket dataPacket = new ResourcePackChunkDataPacket(); - dataPacket.packInfo = resourcePack.getPackId().toString() + "_" + resourcePack.getPackVersion(); + dataPacket.setPackId(resourcePack.getPackId()); + dataPacket.setPackVersion(new Version(resourcePack.getPackVersion())); dataPacket.chunkIndex = requestPacket.chunkIndex; dataPacket.data = resourcePack.getPackChunk(ResourcePackManager.getMaxChunkSize() * requestPacket.chunkIndex, ResourcePackManager.getMaxChunkSize()); dataPacket.progress = ResourcePackManager.getMaxChunkSize() * (long)requestPacket.chunkIndex; diff --git a/src/main/java/cn/nukkit/network/protocol/AbstractResourcePackDataPacket.java b/src/main/java/cn/nukkit/network/protocol/AbstractResourcePackDataPacket.java new file mode 100644 index 00000000000..fa314eb7937 --- /dev/null +++ b/src/main/java/cn/nukkit/network/protocol/AbstractResourcePackDataPacket.java @@ -0,0 +1,52 @@ +package cn.nukkit.network.protocol; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.powernukkit.version.Version; + +import java.util.UUID; + +@PowerNukkitOnly +@Since("FUTURE") +public abstract class AbstractResourcePackDataPacket extends DataPacket { + @PowerNukkitOnly + @Since("FUTURE") + public abstract Version getPackVersion(); + + @PowerNukkitOnly + @Since("FUTURE") + public abstract void setPackVersion(Version version); + + @PowerNukkitOnly + @Since("FUTURE") + public abstract UUID getPackId(); + + @PowerNukkitOnly + @Since("FUTURE") + public abstract void setPackId(UUID uuid); + + @PowerNukkitOnly + @Since("FUTURE") + protected void decodePackInfo() { + String packInfo = this.getString(); + String[] packInfoParts = packInfo.split("_", 2); + try { + setPackId(UUID.fromString(packInfoParts[0])); + } catch (IllegalArgumentException exception) { + setPackId(null); + } + setPackVersion((packInfoParts.length > 1)? new Version(packInfoParts[1]) : null); + } + + @PowerNukkitOnly + @Since("FUTURE") + protected void encodePackInfo() { + UUID packId = getPackId(); + Version packVersion = getPackVersion(); + String packInfo = (packId != null) ? packId.toString() : new UUID(0, 0).toString(); + if (packVersion != null) { + packInfo += "_" + packVersion; + } + this.putString(packInfo); + } +} diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacket.java index 5cc82926295..a0790cd6d55 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacket.java @@ -1,36 +1,28 @@ package cn.nukkit.network.protocol; -import cn.nukkit.api.DeprecationDetails; +import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; - import lombok.ToString; +import org.powernukkit.version.Version; import java.util.UUID; @ToString(exclude = "data") -public class ResourcePackChunkDataPacket extends DataPacket { +@PowerNukkitDifference(extendsOnlyInPowerNukkit = AbstractResourcePackDataPacket.class, insteadOf = DataPacket.class, since = "FUTURE") +public class ResourcePackChunkDataPacket extends AbstractResourcePackDataPacket { public static final byte NETWORK_ID = ProtocolInfo.RESOURCE_PACK_CHUNK_DATA_PACKET; - @Deprecated - @DeprecationDetails(since = "FUTURE", reason = "The format has been changed from '(uuid of pack)' to '(uuid of pack)_(version of pack)'", replaceWith = "packInfo") public UUID packId; - @PowerNukkitOnly - @Since("FUTURE") - public String packInfo; + private Version packVersion; public int chunkIndex; public long progress; public byte[] data; @Override public void decode() { - String packInfo = this.getString(); - try { - this.packId = UUID.fromString(packInfo); - } catch (IllegalArgumentException exception) { - this.packInfo = packInfo; - } + decodePackInfo(); this.chunkIndex = this.getLInt(); this.progress = this.getLLong(); this.data = this.getByteArray(); @@ -39,17 +31,40 @@ public void decode() { @Override public void encode() { this.reset(); - - if (packInfo == null) { - this.putString(this.packId.toString()); - } else { - this.putString(this.packInfo); - } + encodePackInfo(); this.putLInt(this.chunkIndex); this.putLLong(this.progress); this.putByteArray(this.data); } + @Since("FUTURE") + @PowerNukkitOnly + @Override + public Version getPackVersion() { + return packVersion; + } + + @Since("FUTURE") + @PowerNukkitOnly + @Override + public void setPackVersion(Version packVersion) { + this.packVersion = packVersion; + } + + @Since("FUTURE") + @PowerNukkitOnly + @Override + public UUID getPackId() { + return packId; + } + + @Since("FUTURE") + @PowerNukkitOnly + @Override + public void setPackId(UUID packId) { + this.packId = packId; + } + @Override public byte pid() { return NETWORK_ID; diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacket.java index a5533c710df..a14e1bbea82 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacket.java @@ -1,46 +1,65 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import lombok.ToString; +import org.powernukkit.version.Version; import java.util.UUID; @ToString -public class ResourcePackChunkRequestPacket extends DataPacket { +@PowerNukkitDifference(extendsOnlyInPowerNukkit = AbstractResourcePackDataPacket.class, insteadOf = DataPacket.class, since = "FUTURE") +public class ResourcePackChunkRequestPacket extends AbstractResourcePackDataPacket { public static final byte NETWORK_ID = ProtocolInfo.RESOURCE_PACK_CHUNK_REQUEST_PACKET; - @Deprecated public UUID packId; - @PowerNukkitOnly - @Since("FUTURE") - public String packInfo; + private Version packVersion; public int chunkIndex; @Override public void decode() { - String packInfo = this.getString(); - try { - this.packId = UUID.fromString(packInfo); - } catch (IllegalArgumentException exception) { - this.packInfo = packInfo; - } + decodePackInfo(); this.chunkIndex = this.getLInt(); } @Override public void encode() { this.reset(); - if (packInfo == null) { - this.putString(this.packId.toString()); - } else { - this.putString(this.packInfo); - } + encodePackInfo(); this.putLInt(this.chunkIndex); } + @Since("FUTURE") + @PowerNukkitOnly + @Override + public Version getPackVersion() { + return packVersion; + } + + @Since("FUTURE") + @PowerNukkitOnly + @Override + public void setPackVersion(Version packVersion) { + this.packVersion = packVersion; + } + + @Since("FUTURE") + @PowerNukkitOnly + @Override + public UUID getPackId() { + return packId; + } + + @Since("FUTURE") + @PowerNukkitOnly + @Override + public void setPackId(UUID packId) { + this.packId = packId; + } + @Override public byte pid() { return NETWORK_ID; diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java index 5b250fcf300..2d15a0154fd 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java @@ -1,5 +1,6 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import lombok.ToString; @@ -8,7 +9,8 @@ import java.util.UUID; @ToString(exclude = "sha256") -public class ResourcePackDataInfoPacket extends DataPacket { +@PowerNukkitDifference(extendsOnlyInPowerNukkit = AbstractResourcePackDataPacket.class, insteadOf = DataPacket.class, since = "FUTURE") +public class ResourcePackDataInfoPacket extends AbstractResourcePackDataPacket { public static final byte NETWORK_ID = ProtocolInfo.RESOURCE_PACK_DATA_INFO_PACKET; @@ -34,14 +36,7 @@ public class ResourcePackDataInfoPacket extends DataPacket { @Override public void decode() { - String packInfo = this.getString(); - String[] packInfoParts = packInfo.split("_", 2); - try { - this.packId = UUID.fromString(packInfoParts[0]); - } catch (IllegalArgumentException exception) { - this.packId = null; - } - this.packVersion = (packInfoParts.length > 1)? new Version(packInfoParts[1]) : null; + decodePackInfo(); this.maxChunkSize = this.getLInt(); this.chunkCount = this.getLInt(); this.compressedPackSize = this.getLLong(); @@ -53,11 +48,7 @@ public void decode() { @Override public void encode() { this.reset(); - String packInfo = (packId != null) ? packId.toString() : new UUID(0, 0).toString(); - if (packVersion != null) { - packInfo += "_" + packVersion; - } - this.putString(packInfo); + encodePackInfo(); this.putLInt(this.maxChunkSize); this.putLInt(this.chunkCount); this.putLLong(this.compressedPackSize); @@ -82,4 +73,18 @@ public Version getPackVersion() { public void setPackVersion(Version packVersion) { this.packVersion = packVersion; } + + @Since("FUTURE") + @PowerNukkitOnly + @Override + public UUID getPackId() { + return packId; + } + + @Since("FUTURE") + @PowerNukkitOnly + @Override + public void setPackId(UUID packId) { + this.packId = packId; + } } diff --git a/src/test/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacketTest.java b/src/test/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacketTest.java new file mode 100644 index 00000000000..0eddecd2991 --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacketTest.java @@ -0,0 +1,26 @@ +package cn.nukkit.network.protocol; + +import it.unimi.dsi.fastutil.bytes.ByteArrayList; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +class ResourcePackChunkDataPacketTest { + + ResourcePackChunkDataPacket packet; + + @BeforeEach + void setUp() { + packet = new ResourcePackChunkDataPacket(); + } + + @Test + void encodeDecode() { + packet.data = new byte[]{1,2,3}; + packet.encode(); + packet.getUnsignedVarInt(); + packet.decode(); + assertEquals(new ByteArrayList(new byte[]{1,2,3}), new ByteArrayList(packet.data)); + } +} diff --git a/src/test/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacketTest.java b/src/test/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacketTest.java new file mode 100644 index 00000000000..c4066269bc7 --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacketTest.java @@ -0,0 +1,32 @@ +package cn.nukkit.network.protocol; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.powernukkit.version.Version; + +import java.util.UUID; + +import static org.junit.jupiter.api.Assertions.*; + +class ResourcePackChunkRequestPacketTest { + + ResourcePackChunkRequestPacket packet; + + @BeforeEach + void setUp() { + packet = new ResourcePackChunkRequestPacket(); + } + + @Test + void encodeDecode() { + packet.setPackId(new UUID(1,2)); + packet.setPackVersion(new Version("3.4.5")); + packet.chunkIndex = 6; + packet.encode(); + packet.getUnsignedVarInt(); + packet.decode(); + assertEquals(new UUID(1,2), packet.getPackId()); + assertEquals(new Version("3.4.5"), packet.getPackVersion()); + assertEquals(6, packet.chunkIndex); + } +} From e149fe613d0588b4692d316d14f8fe6bf83a3987 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 22 Nov 2021 16:02:26 -0300 Subject: [PATCH 260/394] #1233 Makes ResourcePackManager.maxChunkSize non-static --- .github/workflows/sonar.yml | 1 + src/main/java/cn/nukkit/Player.java | 11 ++++++----- .../cn/nukkit/resourcepacks/ResourcePackManager.java | 10 +++++----- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 81d40f6fcf0..83aedfbfcc2 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -10,6 +10,7 @@ jobs: build: name: Sonar runs-on: ubuntu-latest + if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository steps: - uses: actions/checkout@v1 with: diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 9339656001e..66c332dd88f 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -68,7 +68,6 @@ import cn.nukkit.positiontracking.PositionTrackingService; import cn.nukkit.potion.Effect; import cn.nukkit.resourcepacks.ResourcePack; -import cn.nukkit.resourcepacks.ResourcePackManager; import cn.nukkit.scheduler.AsyncTask; import cn.nukkit.scheduler.TaskHandler; import cn.nukkit.utils.*; @@ -2478,7 +2477,7 @@ public void onCompletion(Server server) { ResourcePackDataInfoPacket dataInfoPacket = new ResourcePackDataInfoPacket(); dataInfoPacket.packId = resourcePack.getPackId(); dataInfoPacket.setPackVersion(new Version(resourcePack.getPackVersion())); - dataInfoPacket.maxChunkSize = ResourcePackManager.getMaxChunkSize(); // 102400 is default + dataInfoPacket.maxChunkSize = server.getResourcePackManager().getMaxChunkSize(); // 102400 is default dataInfoPacket.chunkCount = (int) Math.ceil(resourcePack.getPackSize() / (double) dataInfoPacket.maxChunkSize); dataInfoPacket.compressedPackSize = resourcePack.getPackSize(); dataInfoPacket.sha256 = resourcePack.getSha256(); @@ -2500,7 +2499,7 @@ public void onCompletion(Server server) { break; } break; - case ProtocolInfo.RESOURCE_PACK_CHUNK_REQUEST_PACKET: + case ProtocolInfo.RESOURCE_PACK_CHUNK_REQUEST_PACKET: { ResourcePackChunkRequestPacket requestPacket = (ResourcePackChunkRequestPacket) packet; ResourcePack resourcePack = this.server.getResourcePackManager().getPackById(requestPacket.getPackId()); // TODO: Pack version check if (resourcePack == null) { @@ -2508,14 +2507,16 @@ public void onCompletion(Server server) { break; } + int maxChunkSize = server.getResourcePackManager().getMaxChunkSize(); ResourcePackChunkDataPacket dataPacket = new ResourcePackChunkDataPacket(); dataPacket.setPackId(resourcePack.getPackId()); dataPacket.setPackVersion(new Version(resourcePack.getPackVersion())); dataPacket.chunkIndex = requestPacket.chunkIndex; - dataPacket.data = resourcePack.getPackChunk(ResourcePackManager.getMaxChunkSize() * requestPacket.chunkIndex, ResourcePackManager.getMaxChunkSize()); - dataPacket.progress = ResourcePackManager.getMaxChunkSize() * (long)requestPacket.chunkIndex; + dataPacket.data = resourcePack.getPackChunk(maxChunkSize * requestPacket.chunkIndex, maxChunkSize); + dataPacket.progress = maxChunkSize * (long) requestPacket.chunkIndex; this.dataResourcePacket(dataPacket); break; + } case ProtocolInfo.SET_LOCAL_PLAYER_AS_INITIALIZED_PACKET: if (this.locallyInitialized) { break; diff --git a/src/main/java/cn/nukkit/resourcepacks/ResourcePackManager.java b/src/main/java/cn/nukkit/resourcepacks/ResourcePackManager.java index 9cceadedec6..00d02e37bbe 100644 --- a/src/main/java/cn/nukkit/resourcepacks/ResourcePackManager.java +++ b/src/main/java/cn/nukkit/resourcepacks/ResourcePackManager.java @@ -14,7 +14,7 @@ @Log4j2 public class ResourcePackManager { - private static int MAX_CHUNK_SIZE = 102400; + private int maxChunkSize = 102400; private final Map resourcePacksById = new HashMap<>(); private ResourcePack[] resourcePacks; @@ -69,13 +69,13 @@ public ResourcePack getPackById(UUID id) { @PowerNukkitOnly @Since("FUTURE") - public static int getMaxChunkSize() { - return MAX_CHUNK_SIZE; + public int getMaxChunkSize() { + return this.maxChunkSize; } @PowerNukkitOnly @Since("FUTURE") - public static void setMaxChunkSize(int maxChunkSize) { - MAX_CHUNK_SIZE = maxChunkSize; + public void setMaxChunkSize(int size) { + this.maxChunkSize = size; } } From 4324813396743cb4eb225c326b5a9c6ee4624d93 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 22 Nov 2021 16:54:50 -0300 Subject: [PATCH 261/394] #1233 Create some tests to the HumanStringComparator --- .../nukkit/utils/HumanStringComparator.java | 8 ++-- .../ResourcePackManagerTest.java | 39 +++++++++++++++++++ .../utils/HumanStringComparatorTest.java | 21 ++++++++++ 3 files changed, 65 insertions(+), 3 deletions(-) create mode 100644 src/test/java/cn/nukkit/resourcepacks/ResourcePackManagerTest.java diff --git a/src/main/java/cn/nukkit/utils/HumanStringComparator.java b/src/main/java/cn/nukkit/utils/HumanStringComparator.java index d78cb21def7..6488a7b53cc 100644 --- a/src/main/java/cn/nukkit/utils/HumanStringComparator.java +++ b/src/main/java/cn/nukkit/utils/HumanStringComparator.java @@ -73,8 +73,10 @@ private int compare(List l1, List l2) { String str2 = l2.get(i); int strLen1 = str1.length(); int strLen2 = str2.length(); - boolean isNum1 = !str1.isEmpty() && Character.isDigit(str1.charAt(strLen1 - 1)); - boolean isNum2 = !str2.isEmpty() && Character.isDigit(str2.charAt(strLen2 - 1)); + assert strLen1 > 0; + assert strLen2 > 0; + boolean isNum1 = Character.isDigit(str1.charAt(strLen1 - 1)); + boolean isNum2 = Character.isDigit(str2.charAt(strLen2 - 1)); if (isNum1) { if (isNum2) { int i1 = Integer.parseInt(str1); @@ -108,7 +110,7 @@ private int compare(List l1, List l2) { return result; } - // Detect ommitted number + // Detect omitted number if (strLen1 < strLen2) { if (detectOmittedNumber(l1, len1, i, str2, strLen2, minStrLen, commonPart1)) { return RIGHT; diff --git a/src/test/java/cn/nukkit/resourcepacks/ResourcePackManagerTest.java b/src/test/java/cn/nukkit/resourcepacks/ResourcePackManagerTest.java new file mode 100644 index 00000000000..a5f0be9dbe4 --- /dev/null +++ b/src/test/java/cn/nukkit/resourcepacks/ResourcePackManagerTest.java @@ -0,0 +1,39 @@ +package cn.nukkit.resourcepacks; + +import org.iq80.leveldb.util.FileUtils; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; + +import static org.junit.jupiter.api.Assertions.*; + +class ResourcePackManagerTest { + + ResourcePackManager resourcePackManager; + Path temp; + + @BeforeEach + void setUp() throws IOException { + temp = Files.createTempDirectory("ResourcePackManagerTest_"); + resourcePackManager = new ResourcePackManager(temp.toFile()); + } + + @AfterEach + void tearDown() { + FileUtils.deleteRecursively(temp.toFile()); + } + + @Test + void maxChunkSize() { + assertEquals(1024*100, resourcePackManager.getMaxChunkSize()); + resourcePackManager.setMaxChunkSize(1024); + assertEquals(1024, resourcePackManager.getMaxChunkSize()); + ResourcePackManager other = new ResourcePackManager(temp.toFile()); + assertEquals(1024*100, other.getMaxChunkSize()); + assertEquals(1024, resourcePackManager.getMaxChunkSize()); + } +} diff --git a/src/test/java/cn/nukkit/utils/HumanStringComparatorTest.java b/src/test/java/cn/nukkit/utils/HumanStringComparatorTest.java index 9e1244ef4c1..f6825f4cd3d 100644 --- a/src/test/java/cn/nukkit/utils/HumanStringComparatorTest.java +++ b/src/test/java/cn/nukkit/utils/HumanStringComparatorTest.java @@ -43,6 +43,27 @@ void coralFan() { )); } + @Test + void omitted() { + assertPositive(comparator.compare("a1b", "ab")); + assertNegative(comparator.compare("ab", "a1b")); + } + + @Test + void negative() { + assertNegative(comparator.compare("a-1", "a1")); + assertPositive(comparator.compare("a1", "a-1")); + + assertNegative(comparator.compare("a-2", "a-1")); + assertPositive(comparator.compare("a-1", "a-2")); + } + + @Test + void empty() { + assertNegative(comparator.compare("", "1")); + assertPositive(comparator.compare("1", "")); + } + private void assertNegative(int actual) { if (actual >= 0) { throw new AssertionFailedError("Expected a negative value, got " + actual, -1, actual); From 95c268548909cdef1e35889209346931e4960214 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 22 Nov 2021 17:26:08 -0300 Subject: [PATCH 262/394] #1233 Improves BlockMagma.onEntityCollide --- src/main/java/cn/nukkit/block/BlockMagma.java | 22 ++-- .../java/cn/nukkit/block/BlockMagmaTest.java | 118 ++++++++++++++++++ 2 files changed, 129 insertions(+), 11 deletions(-) create mode 100644 src/test/java/cn/nukkit/block/BlockMagmaTest.java diff --git a/src/main/java/cn/nukkit/block/BlockMagma.java b/src/main/java/cn/nukkit/block/BlockMagma.java index 41e61dc43ff..d8c774e72f5 100644 --- a/src/main/java/cn/nukkit/block/BlockMagma.java +++ b/src/main/java/cn/nukkit/block/BlockMagma.java @@ -61,19 +61,19 @@ public Item[] getDrops(Item item) { @Override public void onEntityCollide(Entity entity) { - if (!entity.hasEffect(Effect.FIRE_RESISTANCE)) { - if (entity instanceof Player) { - Player p = (Player) entity; - if (p.getInventory().getBoots().getEnchantment(Enchantment.ID_FROST_WALKER) != null) { - return; - } - if (!p.isCreative() && !p.isSpectator() && !p.isSneaking()) { - entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.HOT_FLOOR, 1)); - } - } else { - entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.LAVA, 1)); + if (entity.hasEffect(Effect.FIRE_RESISTANCE)) { + return; + } + + if (entity instanceof Player) { + Player p = (Player) entity; + if (p.getInventory().getBoots().getEnchantment(Enchantment.ID_FROST_WALKER) != null + || p.isCreative() || p.isSpectator() || p.isSneaking()) { + return; } } + + entity.attack(new EntityDamageByBlockEvent(this, entity, EntityDamageEvent.DamageCause.HOT_FLOOR, 1)); } @Override diff --git a/src/test/java/cn/nukkit/block/BlockMagmaTest.java b/src/test/java/cn/nukkit/block/BlockMagmaTest.java new file mode 100644 index 00000000000..5ce3a532ae5 --- /dev/null +++ b/src/test/java/cn/nukkit/block/BlockMagmaTest.java @@ -0,0 +1,118 @@ +package cn.nukkit.block; + +import cn.nukkit.Player; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.entity.Entity; +import cn.nukkit.event.entity.EntityDamageByBlockEvent; +import cn.nukkit.event.entity.EntityDamageEvent; +import cn.nukkit.item.Item; +import cn.nukkit.item.ItemID; +import cn.nukkit.item.enchantment.Enchantment; +import cn.nukkit.level.Level; +import cn.nukkit.potion.Effect; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.ArgumentCaptor; +import org.mockito.Captor; +import org.powernukkit.tests.api.MockEntity; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import java.util.List; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; + +@ExtendWith(PowerNukkitExtension.class) +class BlockMagmaTest { + + @MockLevel + Level level; + + @MockPlayer(position = {0, 2, 0}) + Player player; + + @MockEntity(position = {0, 2, 0}) + Entity entity; + + @Captor + ArgumentCaptor damageEventCaptor; + + BlockMagma magma; + + @BeforeEach + void setUp() { + magma = (BlockMagma) BlockState.of(BlockID.MAGMA).getBlock(level, 0, 1, 0); + level.setBlock(magma, magma); + } + + @Test + void onEntityCollide_Player_Normal() { + magma.onEntityCollide(player); + verify(player).attack(damageEventCaptor.capture()); + List damages = damageEventCaptor.getAllValues(); + assertEquals(1, damages.size()); + assertEquals(EntityDamageByBlockEvent.class, damages.get(0).getClass()); + EntityDamageByBlockEvent event = (EntityDamageByBlockEvent) damages.get(0); + assertEquals(1, event.getDamage()); + assertEquals(player, event.getEntity()); + assertEquals(magma, event.getDamager()); + assertEquals(EntityDamageEvent.DamageCause.HOT_FLOOR, event.getCause()); + } + + @Test + void onEntityCollide_Entity_Normal() { + magma.onEntityCollide(entity); + verify(entity).attack(damageEventCaptor.capture()); + List damages = damageEventCaptor.getAllValues(); + assertEquals(1, damages.size()); + assertEquals(EntityDamageByBlockEvent.class, damages.get(0).getClass()); + EntityDamageByBlockEvent event = (EntityDamageByBlockEvent) damages.get(0); + assertEquals(1, event.getDamage()); + assertEquals(entity, event.getEntity()); + assertEquals(magma, event.getDamager()); + assertEquals(EntityDamageEvent.DamageCause.HOT_FLOOR, event.getCause()); + } + + @Test + void onEntityCollide_Entity_FireResistanceEffect() { + entity.addEffect(Effect.getEffect(Effect.FIRE_RESISTANCE)); + magma.onEntityCollide(entity); + verify(entity, times(0)).attack(any()); + } + + @Test + void onEntityCollide_Player_FrostWalker() { + Item boots = Item.get(ItemID.GOLD_BOOTS); + boots.addEnchantment(Enchantment.getEnchantment(Enchantment.ID_FROST_WALKER)); + player.getInventory().setBoots(boots); + + magma.onEntityCollide(player); + verify(player, times(0)).attack(any()); + } + + @Test + void onEntityCollide_Player_Creative() { + player.setGamemode(Player.CREATIVE); + magma.onEntityCollide(player); + verify(player, times(0)).attack(any()); + } + + @Test + void onEntityCollide_Player_Spectator() { + player.setGamemode(Player.SPECTATOR); + magma.onEntityCollide(player); + verify(player, times(0)).attack(any()); + } + + @Test + void onEntityCollide_Player_Sneaking() { + player.setSneaking(true); + magma.onEntityCollide(player); + verify(player, times(0)).attack(any()); + } +} From a87f85a8d0968c3d3aa44f57ec58f777c2afc0eb Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 22 Nov 2021 17:29:03 -0300 Subject: [PATCH 263/394] #1233 Fixes ResourcePackManagerTest --- .../java/cn/nukkit/resourcepacks/ResourcePackManagerTest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/java/cn/nukkit/resourcepacks/ResourcePackManagerTest.java b/src/test/java/cn/nukkit/resourcepacks/ResourcePackManagerTest.java index a5f0be9dbe4..c0b118c3aba 100644 --- a/src/test/java/cn/nukkit/resourcepacks/ResourcePackManagerTest.java +++ b/src/test/java/cn/nukkit/resourcepacks/ResourcePackManagerTest.java @@ -4,6 +4,8 @@ import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; import java.io.IOException; import java.nio.file.Files; @@ -11,6 +13,7 @@ import static org.junit.jupiter.api.Assertions.*; +@ExtendWith(PowerNukkitExtension.class) class ResourcePackManagerTest { ResourcePackManager resourcePackManager; From f897085126dc7040fff3c3d40a7bbdc38f6cc2eb Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 22 Nov 2021 17:52:54 -0300 Subject: [PATCH 264/394] #1233 Creates a test unit and fixes two code smells --- .../java/cn/nukkit/inventory/CraftingManager.java | 5 ++--- src/main/java/cn/nukkit/utils/BlockColor.java | 6 ++++++ .../nukkit/level/particle/DustParticleTest.java | 15 +++++++++++++++ 3 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 src/test/java/cn/nukkit/level/particle/DustParticleTest.java diff --git a/src/main/java/cn/nukkit/inventory/CraftingManager.java b/src/main/java/cn/nukkit/inventory/CraftingManager.java index a2796dccea5..848007cb683 100644 --- a/src/main/java/cn/nukkit/inventory/CraftingManager.java +++ b/src/main/java/cn/nukkit/inventory/CraftingManager.java @@ -3,7 +3,6 @@ import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; -import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; import cn.nukkit.block.BlockUnknown; import cn.nukkit.blockproperty.UnknownRuntimeIdException; @@ -343,7 +342,7 @@ private Item parseRecipeItem(Map data) { if (Stream.of( "copper", "deepslate", "deepslate_slab", "copper_slab", "copper_stairs" - ).anyMatch(name-> blockStateId.split(";", 2)[0].endsWith(name))) { + ).anyMatch(blockStateId.split(";", 2)[0]::endsWith)) { return Item.get(BlockID.AIR); } try { @@ -367,7 +366,7 @@ private Item parseRecipeItem(Map data) { return Item.get(BlockID.AIR); } log.error("Failed to load a recipe with {}", blockStateId, e); - return Item.get(Block.AIR); + return Item.get(BlockID.AIR); } catch (Exception e) { log.error("Failed to load the block state {}", blockStateId, e); return Item.getBlock(BlockID.AIR); diff --git a/src/main/java/cn/nukkit/utils/BlockColor.java b/src/main/java/cn/nukkit/utils/BlockColor.java index ec406c8fd6c..f6702815475 100644 --- a/src/main/java/cn/nukkit/utils/BlockColor.java +++ b/src/main/java/cn/nukkit/utils/BlockColor.java @@ -165,6 +165,12 @@ public int getRGB() { return (this.red << 16 | this.green << 8 | this.blue) & 0xffffff; } + @PowerNukkitOnly + @Since("FUTURE") + public int getARGB() { + return this.alpha << 24 | this.red << 16 | this.green << 8 | this.blue; + } + @Deprecated public static BlockColor getDyeColor(int dyeColorMeta) { return DyeColor.getByDyeData(dyeColorMeta).getColor(); diff --git a/src/test/java/cn/nukkit/level/particle/DustParticleTest.java b/src/test/java/cn/nukkit/level/particle/DustParticleTest.java new file mode 100644 index 00000000000..6fc59d1935e --- /dev/null +++ b/src/test/java/cn/nukkit/level/particle/DustParticleTest.java @@ -0,0 +1,15 @@ +package cn.nukkit.level.particle; + +import cn.nukkit.math.Vector3; +import cn.nukkit.utils.BlockColor; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +class DustParticleTest { + @Test + void constructor() { + DustParticle dustParticle = new DustParticle(new Vector3(0, 1, 0), BlockColor.SAND_BLOCK_COLOR); + assertEquals(BlockColor.SAND_BLOCK_COLOR.getARGB(), dustParticle.data); + } +} From 94f4ff96abcb69df9eef8e4dceef2bee8a16ee3d Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 22 Nov 2021 18:57:18 -0300 Subject: [PATCH 265/394] #1233 Creates more test units --- .../network/protocol/HurtArmorPacket.java | 4 +- .../nukkit/network/RakNetInterfaceTest.java | 47 +++++++++++++++++++ .../network/protocol/HurtArmorPacketTest.java | 28 +++++++++++ 3 files changed, 78 insertions(+), 1 deletion(-) create mode 100644 src/test/java/cn/nukkit/network/RakNetInterfaceTest.java create mode 100644 src/test/java/cn/nukkit/network/protocol/HurtArmorPacketTest.java diff --git a/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java b/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java index e6d5c4078e8..8932b95a7d3 100644 --- a/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java @@ -22,7 +22,9 @@ public class HurtArmorPacket extends DataPacket { @Override public void decode() { - + this.cause = getVarInt(); + this.damage = getVarInt(); + this.armorSlots = getUnsignedVarLong(); } @Override diff --git a/src/test/java/cn/nukkit/network/RakNetInterfaceTest.java b/src/test/java/cn/nukkit/network/RakNetInterfaceTest.java new file mode 100644 index 00000000000..78daae63deb --- /dev/null +++ b/src/test/java/cn/nukkit/network/RakNetInterfaceTest.java @@ -0,0 +1,47 @@ +package cn.nukkit.network; + +import cn.nukkit.Player; +import cn.nukkit.Server; +import cn.nukkit.network.protocol.DataPacket; +import cn.nukkit.network.protocol.ResourcePackChunkRequestPacket; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import java.io.IOException; +import java.net.InetSocketAddress; +import java.net.ServerSocket; + +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.mockito.Mockito.when; + +@ExtendWith(PowerNukkitExtension.class) +class RakNetInterfaceTest { + + RakNetInterface rakNetInterface; + + @MockPlayer + Player player; + + @BeforeEach + void setUp() throws IOException { + Server server = Server.getInstance(); + ServerSocket socket = new ServerSocket(0); + int port = socket.getLocalPort(); + socket.close(); + when(server.getIp()).thenReturn("127.0.0.1"); + when(server.getPort()).thenReturn(port); + rakNetInterface = new RakNetInterface(server); + } + + @Test + void noSession() { + InetSocketAddress socketAddress = new InetSocketAddress("127.0.0.1", 3222); + when(player.getSocketAddress()).thenReturn(socketAddress); + DataPacket packet = new ResourcePackChunkRequestPacket(); + rakNetInterface.putResourcePacket(player, packet); + assertFalse(packet.isEncoded); + } +} diff --git a/src/test/java/cn/nukkit/network/protocol/HurtArmorPacketTest.java b/src/test/java/cn/nukkit/network/protocol/HurtArmorPacketTest.java new file mode 100644 index 00000000000..944718a3e74 --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/HurtArmorPacketTest.java @@ -0,0 +1,28 @@ +package cn.nukkit.network.protocol; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +class HurtArmorPacketTest { + HurtArmorPacket packet; + + @BeforeEach + void setUp() { + packet = new HurtArmorPacket(); + } + + @Test + void encodeDecode() { + packet.cause = 1; + packet.damage = 2; + packet.armorSlots = 3; + packet.encode(); + packet.getVarInt(); + packet.decode(); + assertEquals(1, packet.cause); + assertEquals(2, packet.damage); + assertEquals(3, packet.armorSlots); + } +} From 29c2a3669cab97c8b63181d33b2311d4edb35a9a Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Tue, 23 Nov 2021 20:12:48 +0200 Subject: [PATCH 266/394] Minor fixes for enchant command (#1915) --- .../java/cn/nukkit/command/defaults/EnchantCommand.java | 7 ++++--- .../cn/nukkit/entity/projectile/EntityThrownTrident.java | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/command/defaults/EnchantCommand.java b/src/main/java/cn/nukkit/command/defaults/EnchantCommand.java index f8ee9c189cc..9ec329f2acc 100644 --- a/src/main/java/cn/nukkit/command/defaults/EnchantCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/EnchantCommand.java @@ -31,7 +31,7 @@ public EnchantCommand(String name) { "protection", "fire_protection", "feather_falling", "blast_protection", "projectile_projection", "thorns", "respiration", "aqua_affinity", "depth_strider", "sharpness", "smite", "bane_of_arthropods", "knockback", "fire_aspect", "looting", "efficiency", "silk_touch", "durability", "fortune", "power", "punch", "flame", "infinity", "luck_of_the_sea", "lure", "frost_walker", "mending", - "binding_curse", "vanishing_curse", "impaling", "loyality", "riptide", "channeling", "multishot", "piercing", "quick_charge", + "binding_curse", "vanishing_curse", "impaling", "loyalty", "riptide", "channeling", "multishot", "piercing", "quick_charge", "soul_speed")), CommandParameter.newType("level", true, CommandParamType.INT) }); @@ -115,6 +115,7 @@ public int getIdByName(String value) throws NumberFormatException { case "silk_touch": return 16; case "durability": + case "unbreaking": return 17; case "fortune": return 18; @@ -140,9 +141,9 @@ public int getIdByName(String value) throws NumberFormatException { return 28; case "impaling": return 29; - case "loyality": - return 30; case "riptide": + return 30; + case "loyalty": return 31; case "channeling": return 32; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index 9eb32959198..35602725646 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -134,6 +134,7 @@ public void onCollideWithEntity(Entity entity) { EntityThrownTrident newTrident = (EntityThrownTrident) Entity.createEntity("ThrownTrident", this); newTrident.alreadyCollided = true; newTrident.pickupMode = this.pickupMode; + newTrident.shootingEntity = this.shootingEntity; newTrident.setItem(this.trident); newTrident.spawnToAll(); } From b0f7f574df9fb3447606ac208c5ce5807f011b3a Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 24 Nov 2021 16:14:01 -0300 Subject: [PATCH 267/394] #1233 Fixes javadoc: Was missing lombok generated stuff --- pom.xml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pom.xml b/pom.xml index 9a4a1193db5..8091d794752 100644 --- a/pom.xml +++ b/pom.xml @@ -421,6 +421,25 @@ + + org.projectlombok + lombok-maven-plugin + 1.18.20.0 + + + generate-sources + + delombok + + + + + false + ${project.basedir}/src/main/java + ${project.build.directory}/delombok + UTF-8 + + org.apache.maven.plugins maven-javadoc-plugin @@ -429,6 +448,7 @@ 8 none true + ${project.build.directory}/delombok From 1ee150c165ebacd2441e34a8d7e75abea28b2625 Mon Sep 17 00:00:00 2001 From: Woder <17339354+wode490390@users.noreply.github.com> Date: Sat, 27 Nov 2021 00:15:58 +0800 Subject: [PATCH 268/394] Fix resource pack downloading (#1916) --- src/main/java/cn/nukkit/Player.java | 10 ++++++---- .../protocol/ResourcePacksInfoPacket.java | 19 ++++++++++++++++--- 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 026c99463d1..5fe75360324 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -124,6 +124,8 @@ public class Player extends EntityHuman implements CommandSender, InventoryHolde public static final int ENCHANT_WINDOW_ID = 3; public static final int BEACON_WINDOW_ID = 4; + protected static final int RESOURCE_PACK_CHUNK_SIZE = 8 * 1024; // 8KB + protected final SourceInterface interfaz; public boolean playedBefore; @@ -2212,8 +2214,8 @@ public void onCompletion(Server server) { ResourcePackDataInfoPacket dataInfoPacket = new ResourcePackDataInfoPacket(); dataInfoPacket.packId = resourcePack.getPackId(); - dataInfoPacket.maxChunkSize = 1048576; //megabyte - dataInfoPacket.chunkCount = resourcePack.getPackSize() / dataInfoPacket.maxChunkSize; + dataInfoPacket.maxChunkSize = RESOURCE_PACK_CHUNK_SIZE; + dataInfoPacket.chunkCount = MathHelper.ceil(resourcePack.getPackSize() / (float) RESOURCE_PACK_CHUNK_SIZE); dataInfoPacket.compressedPackSize = resourcePack.getPackSize(); dataInfoPacket.sha256 = resourcePack.getSha256(); this.dataPacket(dataInfoPacket); @@ -2245,8 +2247,8 @@ public void onCompletion(Server server) { ResourcePackChunkDataPacket dataPacket = new ResourcePackChunkDataPacket(); dataPacket.packId = resourcePack.getPackId(); dataPacket.chunkIndex = requestPacket.chunkIndex; - dataPacket.data = resourcePack.getPackChunk(1048576 * requestPacket.chunkIndex, 1048576); - dataPacket.progress = 1048576 * requestPacket.chunkIndex; + dataPacket.data = resourcePack.getPackChunk(RESOURCE_PACK_CHUNK_SIZE * requestPacket.chunkIndex, RESOURCE_PACK_CHUNK_SIZE); + dataPacket.progress = (long) RESOURCE_PACK_CHUNK_SIZE * requestPacket.chunkIndex; this.dataPacket(dataPacket); break; case ProtocolInfo.SET_LOCAL_PLAYER_AS_INITIALIZED_PACKET: diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java index 38fc3666f33..030611218e5 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java @@ -25,11 +25,24 @@ public void encode() { this.putBoolean(this.mustAccept); this.putBoolean(this.scripting); this.putBoolean(this.forceServerPacks); - this.encodePacks(this.behaviourPackEntries); - this.encodePacks(this.resourcePackEntries); + this.encodeBehaviourPacks(this.behaviourPackEntries); + this.encodeResourcePacks(this.resourcePackEntries); } - private void encodePacks(ResourcePack[] packs) { + private void encodeBehaviourPacks(ResourcePack[] packs) { + this.putLShort(packs.length); + for (ResourcePack entry : packs) { + this.putString(entry.getPackId().toString()); + this.putString(entry.getPackVersion()); + this.putLLong(entry.getPackSize()); + this.putString(""); // encryption key + this.putString(""); // sub-pack name + this.putString(""); // content identity + this.putBoolean(false); // scripting + } + } + + private void encodeResourcePacks(ResourcePack[] packs) { this.putLShort(packs.length); for (ResourcePack entry : packs) { this.putString(entry.getPackId().toString()); From 9455daa8a14f44bea4265516b377aa1c4877ec55 Mon Sep 17 00:00:00 2001 From: Erik Miller Date: Tue, 30 Nov 2021 23:00:16 +0100 Subject: [PATCH 269/394] Initial 1.18.0 Support (#1917) --- src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java | 6 +++--- .../java/cn/nukkit/network/protocol/StartGamePacket.java | 7 ++++++- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index a9c8120813b..2777f2df45e 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -14,12 +14,12 @@ public interface ProtocolInfo { * Actual Minecraft: PE protocol version */ @SuppressWarnings("UnnecessaryBoxing") - int CURRENT_PROTOCOL = Integer.valueOf("471"); // DO NOT REMOVE BOXING + int CURRENT_PROTOCOL = Integer.valueOf("475"); // DO NOT REMOVE BOXING List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION = "v1.17.40"; - String MINECRAFT_VERSION_NETWORK = "1.17.40"; + String MINECRAFT_VERSION = "v1.18.0"; + String MINECRAFT_VERSION_NETWORK = "1.18.0"; byte LOGIN_PACKET = 0x01; byte PLAY_STATUS_PACKET = 0x02; diff --git a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java index 24daef9885e..e578bc3b390 100644 --- a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java @@ -67,7 +67,11 @@ public byte pid() { public boolean isFromWorldTemplate = false; public boolean isWorldTemplateOptionLocked = false; public boolean isOnlySpawningV1Villagers = false; - public String vanillaVersion = ProtocolInfo.MINECRAFT_VERSION_NETWORK; + + public String vanillaVersion = "1.17.40"; + //HACK: For now we can specify this version, since the new chunk changes are not relevant for our Anvil format. + //However, it could be that Microsoft will prevent this in a new update. + public String levelId = ""; //base64 string, usually the same as world folder name in vanilla public String worldName; public String premiumWorldTemplateId = ""; @@ -153,5 +157,6 @@ public void encode() { this.putString(this.multiplayerCorrelationId); this.putBoolean(this.isInventoryServerAuthoritative); this.putString(""); // Server Engine + this.putLLong(0L); // BlockRegistryChecksum } } From 18a1f33ba997076be624544275a723658f222e7d Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 1 Dec 2021 11:08:05 -0300 Subject: [PATCH 270/394] Change all FUTURE strings to 1.5.2.0-PN --- CHANGELOG.md | 46 ++++++++++++++++-- README.md | 9 ++-- src/main/java/cn/nukkit/Player.java | 2 +- .../java/cn/nukkit/block/BlockItemFrame.java | 6 +-- .../cn/nukkit/block/BlockRailPowered.java | 2 +- .../java/cn/nukkit/block/BlockUnknown.java | 2 +- .../nukkit/blockproperty/BlockProperty.java | 2 +- .../java/cn/nukkit/blockstate/BlockState.java | 4 +- .../nukkit/blockstate/BlockStateRegistry.java | 6 +-- .../cn/nukkit/blockstate/IBlockState.java | 2 +- src/main/java/cn/nukkit/command/Command.java | 4 +- src/main/java/cn/nukkit/entity/data/Skin.java | 8 ++-- .../event/entity/EntityDamageEvent.java | 14 +++--- .../cn/nukkit/inventory/ShulkerBoxRecipe.java | 6 +-- .../level/format/anvil/util/NibbleArray.java | 2 +- .../cn/nukkit/level/particle/Particle.java | 10 ++-- .../cn/nukkit/network/RakNetInterface.java | 2 +- .../cn/nukkit/network/SourceInterface.java | 2 +- .../AbstractResourcePackDataPacket.java | 14 +++--- .../network/protocol/HurtArmorPacket.java | 2 +- .../network/protocol/NPCDialoguePacket.java | 36 +++++++------- .../network/protocol/NPCRequestPacket.java | 20 ++++---- .../nukkit/network/protocol/ProtocolInfo.java | 16 +++---- .../protocol/ResourcePackChunkDataPacket.java | 10 ++-- .../ResourcePackChunkRequestPacket.java | 10 ++-- .../protocol/ResourcePackDataInfoPacket.java | 10 ++-- .../protocol/ResourcePacksInfoPacket.java | 20 ++++---- .../network/protocol/SetTitlePacket.java | 48 +++++++++---------- .../protocol/SimulationTypePacket.java | 18 +++---- .../resourcepacks/ResourcePackManager.java | 4 +- .../java/cn/nukkit/utils/BinaryStream.java | 4 +- src/main/java/cn/nukkit/utils/BlockColor.java | 2 +- src/main/java/cn/nukkit/utils/Config.java | 6 +-- .../nukkit/blockentity/BlockEntityTest.java | 2 +- .../java/cn/nukkit/network/NetworkTest.java | 2 +- .../protocol/AddVolumeEntityPacketTest.java | 2 +- .../protocol/NPCDialoguePacketTest.java | 2 +- .../protocol/NPCRequestPacketTest.java | 2 +- .../RemoveVolumeEntityPacketTest.java | 2 +- .../protocol/ResourcePacksInfoPacketTest.java | 2 +- .../network/protocol/SetTitlePacketTest.java | 2 +- .../protocol/SimulationTypePacketTest.java | 2 +- .../SyncEntityPropertyPacketTest.java | 2 +- .../cn/nukkit/utils/BinaryStreamTest.java | 2 +- 44 files changed, 206 insertions(+), 165 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3b96c954f3..7982f6e2174 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 with an added upstream's major version number in front of the major version, so we have a better distinction from Nukkit 1.X and 2.X. -## [Unreleased 1.5.2.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/28?closed=1)) +## [Unreleased 1.6.0.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/28?closed=1)) Click the link above to see the future. +## [1.5.2.0-PN] - 2021-12-01 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/28?closed=1)) +This new version add protocol support for Minecraft `1.17.40` as if it was `1.16.221` with some new features and fixes. + +We are still working ont `1.17` and `1.18` new features, but we plain to release them at December 2021. + +`1.18` support will be added on `1.6.0.0-PN` and it will be released as soon as possible. + +Thank you for the translations! +Help us to translate PowerNukkit at https://translate.powernukkit.org + +Want to talk? +Talk to us at https://discuss.powernukkit.org and/or https://powernukkit.org/discord + +### Added +- [#1233] New API classes and methods was added, check the [JDiff](https://devs.powernukkit.org/jdiff/1.5.2.0-PN_x_1.5.1.0-PN/changes.html) for details. +- [#1193] Add more damage causes to the API and improve magma block death message + +### Changed +- [#1244] Changed the `recipes.json` and `creativeitems.json` format for easier changes, updates, and maintenance (backward compatible) + +### Fixes +- [#1187] Fixes powered rails do not update in a row +- [#1191] `SimpleChunkManager.setBlockAtLayer` ignoring the layer +- [#1174] Fixes Infinite loop with double chest and comparator +- [#1202] Improves unknown item handling, shows unknown block instead of disconnections +- [#982] Populator error due to corruption on compressed light data +- [#1214] Fixed the names for BlockConcrete and BlockConcretePowder +- [#1172] Fix and improve resource pack related packets + ## [1.5.1.0-PN] - 2021-07-05 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/22?closed=1)) Our goal on this version was to fix bugs, and we did it, we fixed a lot of them! @@ -58,7 +87,7 @@ Talk to us at https://discuss.powernukkit.org and/or https://powernukkit.org/dis - [#702] Burning arrow and rain will make a lot of particles - [#625] If you instant kill a mob with fire aspect enchant tool, it will not give fire aspect drops - [#979] Fixes an issue where the players could not hear each other walking -- [#576] Swmming in a 1x1 tunnel of water was causing suffocation damage by the block above the player +- [#576] Swimming in a 1x1 tunnel of water was causing suffocation damage by the block above the player ## [1.5.0.0-PN] - 2021-06-11 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/26?closed=1)) This was quick! This new version add protocol support for Minecraft `1.17.0` as if it was `1.16.221`. @@ -732,7 +761,8 @@ Fixes several anvil issues. [updated changelog]:https://github.com/PowerNukkit/PowerNukkit/blob/bleeding/CHANGELOG.md [discord guild]: https://powernukkit.org/discord -[Unreleased 1.5.2.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.1.0-PN...bleeding +[Unreleased 1.6.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.2.0-PN...bleeding +[1.5.2.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.1.0-PN...v1.5.2.0-PN [1.5.1.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.0.0-PN...v1.5.1.0-PN [1.5.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.4.0.0-PN...v1.5.0.0-PN [1.4.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.3.1.5-PN...v1.4.0.0-PN @@ -894,6 +924,7 @@ Fixes several anvil issues. [#959]: https://github.com/PowerNukkit/PowerNukkit/issues/959 [#960]: https://github.com/PowerNukkit/PowerNukkit/issues/960 [#979]: https://github.com/PowerNukkit/PowerNukkit/issues/979 +[#982]: https://github.com/PowerNukkit/PowerNukkit/issues/982 [#990]: https://github.com/PowerNukkit/PowerNukkit/issues/990 [#1100]: https://github.com/PowerNukkit/PowerNukkit/issues/1100 [#1103]: https://github.com/PowerNukkit/PowerNukkit/issues/1103 @@ -910,6 +941,15 @@ Fixes several anvil issues. [#1149]: https://github.com/PowerNukkit/PowerNukkit/issues/1149 [#1150]: https://github.com/PowerNukkit/PowerNukkit/issues/1150 [#1151]: https://github.com/PowerNukkit/PowerNukkit/issues/1151 +[#1120]: https://github.com/PowerNukkit/PowerNukkit/issues/1120 [#1153]: https://github.com/PowerNukkit/PowerNukkit/issues/1153 [#1170]: https://github.com/PowerNukkit/PowerNukkit/issues/1170 +[#1172]: https://github.com/PowerNukkit/PowerNukkit/issues/1172 +[#1174]: https://github.com/PowerNukkit/PowerNukkit/issues/1174 [#1177]: https://github.com/PowerNukkit/PowerNukkit/issues/1177 +[#1187]: https://github.com/PowerNukkit/PowerNukkit/issues/1187 +[#1191]: https://github.com/PowerNukkit/PowerNukkit/issues/1191 +[#1193]: https://github.com/PowerNukkit/PowerNukkit/issues/1193 +[#1233]: https://github.com/PowerNukkit/PowerNukkit/issues/1233 +[#1244]: https://github.com/PowerNukkit/PowerNukkit/issues/1244 +[#1216]: https://github.com/PowerNukkit/PowerNukkit/issues/1216 diff --git a/README.md b/README.md index be3c8aa904d..d407d9651c8 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ repositories { } dependencies { - compile group: 'org.powernukkit', name: 'powernukkit', version: '1.5.1.0-PN' + compile group: 'org.powernukkit', name: 'powernukkit', version: '1.5.2.0-PN' } ``` @@ -60,7 +60,7 @@ dependencies { org.powernukkit powernukkit - 1.5.1.0-PN + 1.5.2.0-PN ``` @@ -132,8 +132,9 @@ docker rm powernukkit Check the [docker-compose.yml](docker-compose.yml) file for more details. ### Supported tags -* _bleeding_ (โš ๏ธ **use with care, may contains unstable code!** โš ๏ธ) -* 1.5.1.0, 1.5.1, 1.5, 1, latest +* _bleeding_ (โš ๏ธ **use with care, may contain unstable code!** โš ๏ธ) +* 1.5.2.0, 1.5.2, 1.5, 1, latest +* 1.5.1.0, 1.5.1 * 1.5.0.0, 1.5.0 * 1.4.0.0, 1.4.0, 1.4 * 1.3.1.5, 1.3.1, 1.3 diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 66c332dd88f..3cfa3af6955 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -6111,7 +6111,7 @@ public boolean dataPacketImmediately(DataPacket packet) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public boolean dataResourcePacket(DataPacket packet) { if (!this.connected) { return false; diff --git a/src/main/java/cn/nukkit/block/BlockItemFrame.java b/src/main/java/cn/nukkit/block/BlockItemFrame.java index 7311e6bdcb7..8ff8030c31f 100644 --- a/src/main/java/cn/nukkit/block/BlockItemFrame.java +++ b/src/main/java/cn/nukkit/block/BlockItemFrame.java @@ -40,7 +40,7 @@ public class BlockItemFrame extends BlockTransparentMeta implements BlockEntityH public static final BooleanBlockProperty HAS_MAP = new BooleanBlockProperty("item_frame_map_bit", false); @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public static final BooleanBlockProperty HAS_PHOTO = new BooleanBlockProperty("item_frame_photo_bit", false); @PowerNukkitOnly @@ -96,13 +96,13 @@ public void setStoringMap(boolean map) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public boolean isStoringPhoto() { return getBooleanValue(HAS_PHOTO); } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setStoringPhoto(boolean hasPhoto) { setBooleanValue(HAS_PHOTO, hasPhoto); } diff --git a/src/main/java/cn/nukkit/block/BlockRailPowered.java b/src/main/java/cn/nukkit/block/BlockRailPowered.java index 619b3a073ae..a11294c95b4 100644 --- a/src/main/java/cn/nukkit/block/BlockRailPowered.java +++ b/src/main/java/cn/nukkit/block/BlockRailPowered.java @@ -79,7 +79,7 @@ public int onUpdate(int type) { return 0; } - @Since("FUTURE") + @Since("1.5.2.0-PN") @PowerNukkitOnly @Override public void afterRemoval(Block newBlock, boolean update) { diff --git a/src/main/java/cn/nukkit/block/BlockUnknown.java b/src/main/java/cn/nukkit/block/BlockUnknown.java index 6a6cf50a6d0..abe45400970 100644 --- a/src/main/java/cn/nukkit/block/BlockUnknown.java +++ b/src/main/java/cn/nukkit/block/BlockUnknown.java @@ -34,7 +34,7 @@ public BlockUnknown(int id, Integer meta) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public BlockUnknown(int id, Number meta) { super(0); this.id = id; diff --git a/src/main/java/cn/nukkit/blockproperty/BlockProperty.java b/src/main/java/cn/nukkit/blockproperty/BlockProperty.java index 82896504240..31f02c203b8 100644 --- a/src/main/java/cn/nukkit/blockproperty/BlockProperty.java +++ b/src/main/java/cn/nukkit/blockproperty/BlockProperty.java @@ -499,7 +499,7 @@ public String toString() { public abstract boolean isDefaultValue(@Nullable T value); @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public final boolean isDefaultPersistentValue(@Nonnull String value) { int meta = getMetaForPersistenceValue(value); int intValue = getIntValueForMeta(meta); diff --git a/src/main/java/cn/nukkit/blockstate/BlockState.java b/src/main/java/cn/nukkit/blockstate/BlockState.java index 6add13f7212..70c5bde8c7b 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockState.java +++ b/src/main/java/cn/nukkit/blockstate/BlockState.java @@ -166,7 +166,7 @@ public static BlockState of(@Nonnegative int blockId, @Nonnegative Number blockD * @return The block state, never null */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") @Nonnull public static BlockState of(@Nonnull String persistedStateId) { return of(persistedStateId, true); @@ -185,7 +185,7 @@ public static BlockState of(@Nonnull String persistedStateId) { * @return The block state, never null */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") @Nonnull public static BlockState of(@Nonnull String persistedStateId, boolean useDefaultPropertyValues) { String[] stateParts = persistedStateId.split(";"); diff --git a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java index e8e4117164a..4b1a1bb16dd 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java +++ b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java @@ -184,7 +184,7 @@ private static Registration findRegistrationByRuntimeId(int runtimeId) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") @Nullable public String getKnownBlockStateIdByRuntimeId(int runtimeId) { if (runtimeId >= 0 && runtimeId < knownStateIds.size()) { @@ -194,7 +194,7 @@ public String getKnownBlockStateIdByRuntimeId(int runtimeId) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public int getKnownRuntimeIdByBlockStateId(String stateId) { int result = knownStateIds.indexOf(stateId); if (result != -1) { @@ -259,7 +259,7 @@ private static NoSuchElementException runtimeIdNotRegistered(int runtimeId) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public int getBlockIdByRuntimeId(int runtimeId) { Registration registration = findRegistrationByRuntimeId(runtimeId); if (registration == null) { diff --git a/src/main/java/cn/nukkit/blockstate/IBlockState.java b/src/main/java/cn/nukkit/blockstate/IBlockState.java index 7c1b1739055..2266fa4ca80 100644 --- a/src/main/java/cn/nukkit/blockstate/IBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/IBlockState.java @@ -207,7 +207,7 @@ default String getStateId() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") default String getMinimalistStateId() { if (isDefaultState()) { return getPersistenceName(); diff --git a/src/main/java/cn/nukkit/command/Command.java b/src/main/java/cn/nukkit/command/Command.java index 697685bde43..90524874a33 100644 --- a/src/main/java/cn/nukkit/command/Command.java +++ b/src/main/java/cn/nukkit/command/Command.java @@ -266,10 +266,10 @@ public void setUsage(String usageMessage) { @Deprecated @DeprecationDetails( by = "PowerNukkit", - since = "FUTURE", + since = "1.5.2.0-PN", reason = "Unused and always throws an exception even in Cloudburst Nukkit") @PowerNukkitDifference( - since = "FUTURE", + since = "1.5.2.0-PN", info = "Throws UnsupportedOperationException instead of NullPointerException" ) public static CommandData generateDefaultData() { diff --git a/src/main/java/cn/nukkit/entity/data/Skin.java b/src/main/java/cn/nukkit/entity/data/Skin.java index c30b1edba23..ff0be7148b4 100644 --- a/src/main/java/cn/nukkit/entity/data/Skin.java +++ b/src/main/java/cn/nukkit/entity/data/Skin.java @@ -239,22 +239,22 @@ public void setCapeOnClassic(boolean capeOnClassic) { this.capeOnClassic = capeOnClassic; } - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setPrimaryUser(boolean primaryUser) { this.primaryUser = primaryUser; } - @Since("FUTURE") + @Since("1.5.2.0-PN") public boolean isPrimaryUser() { return primaryUser; } - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setGeometryDataEngineVersion(String geometryDataEngineVersion) { this.geometryDataEngineVersion = geometryDataEngineVersion; } - @Since("FUTURE") + @Since("1.5.2.0-PN") public String getGeometryDataEngineVersion() { return geometryDataEngineVersion; } diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java index 29f933f1430..f2c0cb78a69 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java @@ -283,43 +283,43 @@ public enum DamageCause { * Damage caused by Wither */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") WITHER, /** * Damage caused by thorns */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") THORNS, /** * Damage caused by falling block */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") FALLING_BLOCK, /** * Damage caused by flying into wall */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") FLYING_INTO_WALL, /** * Damage caused when an entity steps on a hot block, like {@link cn.nukkit.block.BlockID#MAGMA} */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") HOT_FLOOR, /** * Damage caused by fireworks */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") FIREWORKS, /** * Damage caused by temperature */ @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") FREEZING, } } diff --git a/src/main/java/cn/nukkit/inventory/ShulkerBoxRecipe.java b/src/main/java/cn/nukkit/inventory/ShulkerBoxRecipe.java index 41f213a00e2..6f523f5482f 100644 --- a/src/main/java/cn/nukkit/inventory/ShulkerBoxRecipe.java +++ b/src/main/java/cn/nukkit/inventory/ShulkerBoxRecipe.java @@ -11,16 +11,16 @@ * @since 2021-09-25 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") public class ShulkerBoxRecipe extends ShapelessRecipe { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public ShulkerBoxRecipe(Item result, Collection ingredients) { super(result, ingredients); } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public ShulkerBoxRecipe(String recipeId, int priority, Item result, Collection ingredients) { super(recipeId, priority, result, ingredients); } diff --git a/src/main/java/cn/nukkit/level/format/anvil/util/NibbleArray.java b/src/main/java/cn/nukkit/level/format/anvil/util/NibbleArray.java index 5d5b069ca7b..3fe97a43acb 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/util/NibbleArray.java +++ b/src/main/java/cn/nukkit/level/format/anvil/util/NibbleArray.java @@ -8,7 +8,7 @@ public class NibbleArray implements Cloneable { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public static final NibbleArray EMPTY_DATA_ARRAY = new NibbleArray(EmptyChunkSection.EMPTY_DATA_ARRAY); private final byte[] data; diff --git a/src/main/java/cn/nukkit/level/particle/Particle.java b/src/main/java/cn/nukkit/level/particle/Particle.java index 171d1944c11..6e884b01581 100644 --- a/src/main/java/cn/nukkit/level/particle/Particle.java +++ b/src/main/java/cn/nukkit/level/particle/Particle.java @@ -23,7 +23,7 @@ public abstract class Particle extends Vector3 { public static final int TYPE_EXPLODE = dynamic(6); public static final int TYPE_EVAPORATION = dynamic(7); public static final int TYPE_FLAME = dynamic(8); - @PowerNukkitOnly @Since("FUTURE") public static final int TYPE_CANDLE_FLAME = dynamic(9); + @PowerNukkitOnly @Since("1.5.2.0-PN") public static final int TYPE_CANDLE_FLAME = dynamic(9); public static final int TYPE_LAVA = dynamic(10); public static final int TYPE_LARGE_SMOKE = dynamic(11); public static final int TYPE_REDSTONE = dynamic(12); @@ -37,15 +37,15 @@ public abstract class Particle extends Vector3 { public static final int TYPE_TERRAIN = dynamic(20); public static final int TYPE_TOWN_AURA = dynamic(21); - @Deprecated @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Same as TYPE_TOWN_AURA", + @Deprecated @DeprecationDetails(since = "1.5.2.0-PN", by = "PowerNukkit", reason = "Same as TYPE_TOWN_AURA", replaceWith = "TYPE_TOWN_AURA") public static final int TYPE_SUSPENDED_TOWN = TYPE_TOWN_AURA; public static final int TYPE_PORTAL = dynamic(22); - @PowerNukkitOnly @Since("FUTURE") public static final int TYPE_MOB_PORTAL = dynamic(23); + @PowerNukkitOnly @Since("1.5.2.0-PN") public static final int TYPE_MOB_PORTAL = dynamic(23); public static final int TYPE_SPLASH = dynamic(24); - @Deprecated @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Same as TYPE_SPLASH", + @Deprecated @DeprecationDetails(since = "1.5.2.0-PN", by = "PowerNukkit", reason = "Same as TYPE_SPLASH", replaceWith = "TYPE_SPLASH") public static final int TYPE_WATER_SPLASH = TYPE_SPLASH; @@ -58,7 +58,7 @@ public abstract class Particle extends Vector3 { @Since("1.4.0.0-PN") public static final int TYPE_STALACTITE_DRIP_LAVA = dynamic(31); public static final int TYPE_FALLING_DUST = dynamic(32); - @Deprecated @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Same as TYPE_FALLING_DUST", + @Deprecated @DeprecationDetails(since = "1.5.2.0-PN", by = "PowerNukkit", reason = "Same as TYPE_FALLING_DUST", replaceWith = "TYPE_FALLING_DUST") public static final int TYPE_DUST = TYPE_FALLING_DUST; diff --git a/src/main/java/cn/nukkit/network/RakNetInterface.java b/src/main/java/cn/nukkit/network/RakNetInterface.java index 4c06a8e8fa0..1e3657d58e3 100644 --- a/src/main/java/cn/nukkit/network/RakNetInterface.java +++ b/src/main/java/cn/nukkit/network/RakNetInterface.java @@ -263,7 +263,7 @@ public void onUnhandledDatagram(ChannelHandlerContext ctx, DatagramPacket datagr } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") @Override public Integer putResourcePacket(Player player, DataPacket packet) { NukkitRakNetSession session = this.sessions.get(player.getSocketAddress()); diff --git a/src/main/java/cn/nukkit/network/SourceInterface.java b/src/main/java/cn/nukkit/network/SourceInterface.java index 502f52018f3..575a5bf6dc3 100644 --- a/src/main/java/cn/nukkit/network/SourceInterface.java +++ b/src/main/java/cn/nukkit/network/SourceInterface.java @@ -32,6 +32,6 @@ public interface SourceInterface { void emergencyShutdown(); @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") Integer putResourcePacket(Player player, DataPacket packet); } diff --git a/src/main/java/cn/nukkit/network/protocol/AbstractResourcePackDataPacket.java b/src/main/java/cn/nukkit/network/protocol/AbstractResourcePackDataPacket.java index fa314eb7937..471602a5a9d 100644 --- a/src/main/java/cn/nukkit/network/protocol/AbstractResourcePackDataPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AbstractResourcePackDataPacket.java @@ -7,26 +7,26 @@ import java.util.UUID; @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") public abstract class AbstractResourcePackDataPacket extends DataPacket { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public abstract Version getPackVersion(); @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public abstract void setPackVersion(Version version); @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public abstract UUID getPackId(); @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public abstract void setPackId(UUID uuid); @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") protected void decodePackInfo() { String packInfo = this.getString(); String[] packInfoParts = packInfo.split("_", 2); @@ -39,7 +39,7 @@ protected void decodePackInfo() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") protected void encodePackInfo() { UUID packId = getPackId(); Version packVersion = getPackVersion(); diff --git a/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java b/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java index 8932b95a7d3..9d10bd9ad99 100644 --- a/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java @@ -17,7 +17,7 @@ public class HurtArmorPacket extends DataPacket { @Since("1.3.0.0-PN") public int damage; - @Since("FUTURE") + @Since("1.5.2.0-PN") public long armorSlots; @Override diff --git a/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java b/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java index 0e43017568b..2bb251387b2 100644 --- a/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/NPCDialoguePacket.java @@ -28,10 +28,10 @@ * @since 2021-07-06 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") public class NPCDialoguePacket extends DataPacket { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public static final byte NETWORK_ID = ProtocolInfo.NPC_DIALOGUE_PACKET; private static final NPCDialogAction[] ACTIONS = NPCDialogAction.values(); @@ -44,7 +44,7 @@ public class NPCDialoguePacket extends DataPacket { private String actionJson = ""; @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public NPCDialoguePacket() { // Indicates when this public constructor were accessible } @@ -76,86 +76,86 @@ public void encode() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public long getRuntimeEntityId() { return runtimeEntityId; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setRuntimeEntityId(long runtimeEntityId) { this.runtimeEntityId = runtimeEntityId; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") @Nonnull public NPCDialogAction getAction() { return action; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setAction(@Nonnull NPCDialogAction action) { this.action = action; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") @Nonnull public String getDialogue() { return dialogue; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setDialogue(@Nonnull String dialogue) { this.dialogue = dialogue; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") @Nonnull public String getSceneName() { return sceneName; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setSceneName(@Nonnull String sceneName) { this.sceneName = sceneName; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") @Nonnull public String getNpcName() { return npcName; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setNpcName(@Nonnull String npcName) { this.npcName = npcName; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") @Nonnull public String getActionJson() { return actionJson; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setActionJson(@Nonnull String actionJson) { this.actionJson = actionJson; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public enum NPCDialogAction { - @PowerNukkitOnly @Since("FUTURE") OPEN, - @PowerNukkitOnly @Since("FUTURE") CLOSE + @PowerNukkitOnly @Since("1.5.2.0-PN") OPEN, + @PowerNukkitOnly @Since("1.5.2.0-PN") CLOSE } } diff --git a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java index 6f8812d3150..8a707785008 100644 --- a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java @@ -22,61 +22,61 @@ public class NPCRequestPacket extends DataPacket { private String sceneName; @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public long getRequestedEntityRuntimeId() { return entityRuntimeId; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setRequestedEntityRuntimeId(long entityRuntimeId) { this.entityRuntimeId = entityRuntimeId; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public RequestType getRequestType() { return requestType; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setRequestType(RequestType requestType) { this.requestType = requestType; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public String getCommandString() { return commandString; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setCommandString(String commandString) { this.commandString = commandString; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public int getActionType() { return actionType; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setActionType(int actionType) { this.actionType = actionType; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public String getSceneName() { return sceneName; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setSceneName(String sceneName) { this.sceneName = sceneName; } diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index 2a89242c534..886164dc309 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -182,14 +182,14 @@ public interface ProtocolInfo { @Since("1.4.0.0-PN") byte ITEM_COMPONENT_PACKET = (byte) 0xa2; @Since("1.4.0.0-PN") byte FILTER_TEXT_PACKET = (byte) 0xa3; @Since("1.4.0.0-PN") byte CLIENTBOUND_DEBUG_RENDERER_PACKET = (byte) 0xa4; - @Since("FUTURE") @PowerNukkitOnly byte SYNC_ENTITY_PROPERTY_PACKET = (byte) 0xa5; - @Since("FUTURE") @PowerNukkitOnly byte ADD_VOLUME_ENTITY_PACKET = (byte) 0xa6; - @Since("FUTURE") @PowerNukkitOnly byte REMOVE_VOLUME_ENTITY_PACKET = (byte) 0xa7; - @Since("1.5.0.0-PN") @PowerNukkitOnly @Deprecated @DeprecationDetails(since = "FUTURE", reason = "Incorrect naming convention", by = "PowerNukkit", replaceWith = "SYNC_ENTITY_PROPERTY_PACKET") byte SYNC_ENTITY_PROPERTY = SYNC_ENTITY_PROPERTY_PACKET; - @Since("1.5.0.0-PN") @PowerNukkitOnly @Deprecated @DeprecationDetails(since = "FUTURE", reason = "Incorrect naming convention", by = "PowerNukkit", replaceWith = "ADD_VOLUME_ENTITY_PACKET") byte ADD_VOLUME_ENTITY = ADD_VOLUME_ENTITY_PACKET; - @Since("1.5.0.0-PN") @PowerNukkitOnly @Deprecated @DeprecationDetails(since = "FUTURE", reason = "Incorrect naming convention", by = "PowerNukkit", replaceWith = "REMOVE_VOLUME_ENTITY_PACKET") byte REMOVE_VOLUME_ENTITY = REMOVE_VOLUME_ENTITY_PACKET; - @Since("FUTURE") @PowerNukkitOnly byte SIMULATION_TYPE_PACKET = (byte) 0xa8; - @Since("FUTURE") @PowerNukkitOnly byte NPC_DIALOGUE_PACKET = (byte) 0xa9; + @Since("1.5.2.0-PN") @PowerNukkitOnly byte SYNC_ENTITY_PROPERTY_PACKET = (byte) 0xa5; + @Since("1.5.2.0-PN") @PowerNukkitOnly byte ADD_VOLUME_ENTITY_PACKET = (byte) 0xa6; + @Since("1.5.2.0-PN") @PowerNukkitOnly byte REMOVE_VOLUME_ENTITY_PACKET = (byte) 0xa7; + @Since("1.5.0.0-PN") @PowerNukkitOnly @Deprecated @DeprecationDetails(since = "1.5.2.0-PN", reason = "Incorrect naming convention", by = "PowerNukkit", replaceWith = "SYNC_ENTITY_PROPERTY_PACKET") byte SYNC_ENTITY_PROPERTY = SYNC_ENTITY_PROPERTY_PACKET; + @Since("1.5.0.0-PN") @PowerNukkitOnly @Deprecated @DeprecationDetails(since = "1.5.2.0-PN", reason = "Incorrect naming convention", by = "PowerNukkit", replaceWith = "ADD_VOLUME_ENTITY_PACKET") byte ADD_VOLUME_ENTITY = ADD_VOLUME_ENTITY_PACKET; + @Since("1.5.0.0-PN") @PowerNukkitOnly @Deprecated @DeprecationDetails(since = "1.5.2.0-PN", reason = "Incorrect naming convention", by = "PowerNukkit", replaceWith = "REMOVE_VOLUME_ENTITY_PACKET") byte REMOVE_VOLUME_ENTITY = REMOVE_VOLUME_ENTITY_PACKET; + @Since("1.5.2.0-PN") @PowerNukkitOnly byte SIMULATION_TYPE_PACKET = (byte) 0xa8; + @Since("1.5.2.0-PN") @PowerNukkitOnly byte NPC_DIALOGUE_PACKET = (byte) 0xa9; byte BATCH_PACKET = (byte) 0xff; } diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacket.java index a0790cd6d55..af3f5d79dab 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkDataPacket.java @@ -9,7 +9,7 @@ import java.util.UUID; @ToString(exclude = "data") -@PowerNukkitDifference(extendsOnlyInPowerNukkit = AbstractResourcePackDataPacket.class, insteadOf = DataPacket.class, since = "FUTURE") +@PowerNukkitDifference(extendsOnlyInPowerNukkit = AbstractResourcePackDataPacket.class, insteadOf = DataPacket.class, since = "1.5.2.0-PN") public class ResourcePackChunkDataPacket extends AbstractResourcePackDataPacket { public static final byte NETWORK_ID = ProtocolInfo.RESOURCE_PACK_CHUNK_DATA_PACKET; @@ -37,28 +37,28 @@ public void encode() { this.putByteArray(this.data); } - @Since("FUTURE") + @Since("1.5.2.0-PN") @PowerNukkitOnly @Override public Version getPackVersion() { return packVersion; } - @Since("FUTURE") + @Since("1.5.2.0-PN") @PowerNukkitOnly @Override public void setPackVersion(Version packVersion) { this.packVersion = packVersion; } - @Since("FUTURE") + @Since("1.5.2.0-PN") @PowerNukkitOnly @Override public UUID getPackId() { return packId; } - @Since("FUTURE") + @Since("1.5.2.0-PN") @PowerNukkitOnly @Override public void setPackId(UUID packId) { diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacket.java index a14e1bbea82..7f6c322f395 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePackChunkRequestPacket.java @@ -10,7 +10,7 @@ import java.util.UUID; @ToString -@PowerNukkitDifference(extendsOnlyInPowerNukkit = AbstractResourcePackDataPacket.class, insteadOf = DataPacket.class, since = "FUTURE") +@PowerNukkitDifference(extendsOnlyInPowerNukkit = AbstractResourcePackDataPacket.class, insteadOf = DataPacket.class, since = "1.5.2.0-PN") public class ResourcePackChunkRequestPacket extends AbstractResourcePackDataPacket { public static final byte NETWORK_ID = ProtocolInfo.RESOURCE_PACK_CHUNK_REQUEST_PACKET; @@ -32,28 +32,28 @@ public void encode() { this.putLInt(this.chunkIndex); } - @Since("FUTURE") + @Since("1.5.2.0-PN") @PowerNukkitOnly @Override public Version getPackVersion() { return packVersion; } - @Since("FUTURE") + @Since("1.5.2.0-PN") @PowerNukkitOnly @Override public void setPackVersion(Version packVersion) { this.packVersion = packVersion; } - @Since("FUTURE") + @Since("1.5.2.0-PN") @PowerNukkitOnly @Override public UUID getPackId() { return packId; } - @Since("FUTURE") + @Since("1.5.2.0-PN") @PowerNukkitOnly @Override public void setPackId(UUID packId) { diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java index 2d15a0154fd..bb3ff645938 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java @@ -9,7 +9,7 @@ import java.util.UUID; @ToString(exclude = "sha256") -@PowerNukkitDifference(extendsOnlyInPowerNukkit = AbstractResourcePackDataPacket.class, insteadOf = DataPacket.class, since = "FUTURE") +@PowerNukkitDifference(extendsOnlyInPowerNukkit = AbstractResourcePackDataPacket.class, insteadOf = DataPacket.class, since = "1.5.2.0-PN") public class ResourcePackDataInfoPacket extends AbstractResourcePackDataPacket { public static final byte NETWORK_ID = ProtocolInfo.RESOURCE_PACK_DATA_INFO_PACKET; @@ -63,25 +63,25 @@ public byte pid() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public Version getPackVersion() { return packVersion; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setPackVersion(Version packVersion) { this.packVersion = packVersion; } - @Since("FUTURE") + @Since("1.5.2.0-PN") @PowerNukkitOnly @Override public UUID getPackId() { return packId; } - @Since("FUTURE") + @Since("1.5.2.0-PN") @PowerNukkitOnly @Override public void setPackId(UUID packId) { diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java index 5345867bb98..a5e1bb85174 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java @@ -53,61 +53,61 @@ public byte pid() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public boolean isForcedToAccept() { return mustAccept; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setForcedToAccept(boolean mustAccept) { this.mustAccept = mustAccept; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public boolean isScriptingEnabled() { return scripting; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setScriptingEnabled(boolean scripting) { this.scripting = scripting; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public ResourcePack[] getBehaviourPackEntries() { return behaviourPackEntries; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setBehaviourPackEntries(ResourcePack[] behaviourPackEntries) { this.behaviourPackEntries = behaviourPackEntries; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public ResourcePack[] getResourcePackEntries() { return resourcePackEntries; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setResourcePackEntries(ResourcePack[] resourcePackEntries) { this.resourcePackEntries = resourcePackEntries; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public boolean isForcingServerPacksEnabled() { return forcingServerPacksEnabled; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setForcingServerPacksEnabled(boolean forcingServerPacksEnabled) { this.forcingServerPacksEnabled = forcingServerPacksEnabled; } diff --git a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java index 550d596ebd9..0fed4f86225 100644 --- a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java @@ -60,7 +60,7 @@ public void encode() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") @Nonnull public TitleAction getTitleAction() { int currentType = this.type; @@ -71,95 +71,95 @@ public TitleAction getTitleAction() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setTitleAction(@Nonnull TitleAction type) { this.type = type.ordinal(); } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") @Nonnull public String getText() { return text; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setText(@Nonnull String text) { this.text = text; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public int getFadeInTime() { return fadeInTime; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setFadeInTime(int fadeInTime) { this.fadeInTime = fadeInTime; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public int getStayTime() { return stayTime; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setStayTime(int stayTime) { this.stayTime = stayTime; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public int getFadeOutTime() { return fadeOutTime; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setFadeOutTime(int fadeOutTime) { this.fadeOutTime = fadeOutTime; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public String getXuid() { return xuid; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setXuid(String xuid) { this.xuid = xuid; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public String getPlatformOnlineId() { return platformOnlineId; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setPlatformOnlineId(String platformOnlineId) { this.platformOnlineId = platformOnlineId; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public enum TitleAction { - @PowerNukkitOnly @Since("FUTURE") CLEAR, - @PowerNukkitOnly @Since("FUTURE") RESET, - @PowerNukkitOnly @Since("FUTURE") SET_TITLE_MESSAGE, - @PowerNukkitOnly @Since("FUTURE") SET_SUBTITLE_MESSAGE, - @PowerNukkitOnly @Since("FUTURE") SET_ACTION_BAR_MESSAGE, - @PowerNukkitOnly @Since("FUTURE") SET_ANIMATION_TIMES, - @PowerNukkitOnly @Since("FUTURE") SET_TITLE_JSON, - @PowerNukkitOnly @Since("FUTURE") SET_SUBTITLE_JSON, - @PowerNukkitOnly @Since("FUTURE") SET_ACTIONBAR_JSON, + @PowerNukkitOnly @Since("1.5.2.0-PN") CLEAR, + @PowerNukkitOnly @Since("1.5.2.0-PN") RESET, + @PowerNukkitOnly @Since("1.5.2.0-PN") SET_TITLE_MESSAGE, + @PowerNukkitOnly @Since("1.5.2.0-PN") SET_SUBTITLE_MESSAGE, + @PowerNukkitOnly @Since("1.5.2.0-PN") SET_ACTION_BAR_MESSAGE, + @PowerNukkitOnly @Since("1.5.2.0-PN") SET_ANIMATION_TIMES, + @PowerNukkitOnly @Since("1.5.2.0-PN") SET_TITLE_JSON, + @PowerNukkitOnly @Since("1.5.2.0-PN") SET_SUBTITLE_JSON, + @PowerNukkitOnly @Since("1.5.2.0-PN") SET_ACTIONBAR_JSON, } } diff --git a/src/main/java/cn/nukkit/network/protocol/SimulationTypePacket.java b/src/main/java/cn/nukkit/network/protocol/SimulationTypePacket.java index 813e9a93071..cc5be5c8a4f 100644 --- a/src/main/java/cn/nukkit/network/protocol/SimulationTypePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SimulationTypePacket.java @@ -28,10 +28,10 @@ * @since 2021-07-06 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") public class SimulationTypePacket extends DataPacket { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public static final byte NETWORK_ID = ProtocolInfo.NPC_DIALOGUE_PACKET; private static final SimulationType[] TYPES = SimulationType.values(); @@ -39,7 +39,7 @@ public class SimulationTypePacket extends DataPacket { private SimulationType type; @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public SimulationTypePacket() { type = SimulationType.GAME; } @@ -61,23 +61,23 @@ public void encode() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") @Nonnull public SimulationType getSimulationType() { return type; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setSimulationType(@Nonnull SimulationType type) { this.type = type; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public enum SimulationType { - @PowerNukkitOnly @Since("FUTURE") GAME, - @PowerNukkitOnly @Since("FUTURE") EDITOR, - @PowerNukkitOnly @Since("FUTURE") TEST + @PowerNukkitOnly @Since("1.5.2.0-PN") GAME, + @PowerNukkitOnly @Since("1.5.2.0-PN") EDITOR, + @PowerNukkitOnly @Since("1.5.2.0-PN") TEST } } diff --git a/src/main/java/cn/nukkit/resourcepacks/ResourcePackManager.java b/src/main/java/cn/nukkit/resourcepacks/ResourcePackManager.java index 00d02e37bbe..d5282e8b1f5 100644 --- a/src/main/java/cn/nukkit/resourcepacks/ResourcePackManager.java +++ b/src/main/java/cn/nukkit/resourcepacks/ResourcePackManager.java @@ -68,13 +68,13 @@ public ResourcePack getPackById(UUID id) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public int getMaxChunkSize() { return this.maxChunkSize; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void setMaxChunkSize(int size) { this.maxChunkSize = size; } diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index a752b4ea851..a96a359cf39 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -882,7 +882,7 @@ public EntityLink getEntityLink() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void putArray(Collection collection, Consumer writer) { if (collection == null) { putUnsignedVarInt(0); @@ -893,7 +893,7 @@ public void putArray(Collection collection, Consumer writer) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public void putArray(T[] collection, Consumer writer) { if (collection == null) { putUnsignedVarInt(0); diff --git a/src/main/java/cn/nukkit/utils/BlockColor.java b/src/main/java/cn/nukkit/utils/BlockColor.java index f6702815475..07069597df5 100644 --- a/src/main/java/cn/nukkit/utils/BlockColor.java +++ b/src/main/java/cn/nukkit/utils/BlockColor.java @@ -166,7 +166,7 @@ public int getRGB() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public int getARGB() { return this.alpha << 24 | this.red << 16 | this.green << 8 | this.blue; } diff --git a/src/main/java/cn/nukkit/utils/Config.java b/src/main/java/cn/nukkit/utils/Config.java index 9c9a8272bec..5f767943980 100644 --- a/src/main/java/cn/nukkit/utils/Config.java +++ b/src/main/java/cn/nukkit/utils/Config.java @@ -189,7 +189,7 @@ public boolean load(InputStream inputStream) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public boolean loadAsJson(@Nullable InputStream inputStream, @Nonnull Gson gson) { if (inputStream == null) return false; if (this.correct) { @@ -231,7 +231,7 @@ public boolean save(File file) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public boolean saveAsJson(@Nonnull File file, boolean async, @Nonnull Gson gson) { this.file = file; return saveAsJson(async, gson); @@ -242,7 +242,7 @@ public boolean save() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.5.2.0-PN") public boolean saveAsJson(boolean async, @Nonnull Gson gson) { if (!this.correct) { return false; diff --git a/src/test/java/cn/nukkit/blockentity/BlockEntityTest.java b/src/test/java/cn/nukkit/blockentity/BlockEntityTest.java index e67a52e3ebd..f2706004710 100644 --- a/src/test/java/cn/nukkit/blockentity/BlockEntityTest.java +++ b/src/test/java/cn/nukkit/blockentity/BlockEntityTest.java @@ -44,7 +44,7 @@ * @since 2021-07-14 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") @ExtendWith(PowerNukkitExtension.class) class BlockEntityTest { @MockLevel diff --git a/src/test/java/cn/nukkit/network/NetworkTest.java b/src/test/java/cn/nukkit/network/NetworkTest.java index ec231880f58..682de75f535 100644 --- a/src/test/java/cn/nukkit/network/NetworkTest.java +++ b/src/test/java/cn/nukkit/network/NetworkTest.java @@ -34,7 +34,7 @@ * @since 2021-07-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") @ExtendWith(MockitoExtension.class) class NetworkTest { @Mock diff --git a/src/test/java/cn/nukkit/network/protocol/AddVolumeEntityPacketTest.java b/src/test/java/cn/nukkit/network/protocol/AddVolumeEntityPacketTest.java index cdc3b8bb3f9..0a1294adc6b 100644 --- a/src/test/java/cn/nukkit/network/protocol/AddVolumeEntityPacketTest.java +++ b/src/test/java/cn/nukkit/network/protocol/AddVolumeEntityPacketTest.java @@ -32,7 +32,7 @@ * @since 2021-07-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") class AddVolumeEntityPacketTest { @Test void encodeDecode() { diff --git a/src/test/java/cn/nukkit/network/protocol/NPCDialoguePacketTest.java b/src/test/java/cn/nukkit/network/protocol/NPCDialoguePacketTest.java index c2fb68d0f94..399486c7d38 100644 --- a/src/test/java/cn/nukkit/network/protocol/NPCDialoguePacketTest.java +++ b/src/test/java/cn/nukkit/network/protocol/NPCDialoguePacketTest.java @@ -32,7 +32,7 @@ * @since 2021-07-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") class NPCDialoguePacketTest { @Test void encodeDecode() { diff --git a/src/test/java/cn/nukkit/network/protocol/NPCRequestPacketTest.java b/src/test/java/cn/nukkit/network/protocol/NPCRequestPacketTest.java index 5c5e01802aa..c2b426279a1 100644 --- a/src/test/java/cn/nukkit/network/protocol/NPCRequestPacketTest.java +++ b/src/test/java/cn/nukkit/network/protocol/NPCRequestPacketTest.java @@ -32,7 +32,7 @@ * @since 2021-07-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") class NPCRequestPacketTest { @Test void encodeDecode() { diff --git a/src/test/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacketTest.java b/src/test/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacketTest.java index 3e6d75873c1..a59c6a2f8e8 100644 --- a/src/test/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacketTest.java +++ b/src/test/java/cn/nukkit/network/protocol/RemoveVolumeEntityPacketTest.java @@ -31,7 +31,7 @@ * @since 2021-07-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") class RemoveVolumeEntityPacketTest { @Test void encodeDecode() { diff --git a/src/test/java/cn/nukkit/network/protocol/ResourcePacksInfoPacketTest.java b/src/test/java/cn/nukkit/network/protocol/ResourcePacksInfoPacketTest.java index dbae2c466aa..814960efd23 100644 --- a/src/test/java/cn/nukkit/network/protocol/ResourcePacksInfoPacketTest.java +++ b/src/test/java/cn/nukkit/network/protocol/ResourcePacksInfoPacketTest.java @@ -38,7 +38,7 @@ * @since 2021-07-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") class ResourcePacksInfoPacketTest { @Test void encodeDecode() { diff --git a/src/test/java/cn/nukkit/network/protocol/SetTitlePacketTest.java b/src/test/java/cn/nukkit/network/protocol/SetTitlePacketTest.java index 42b5bf749a6..cedec985048 100644 --- a/src/test/java/cn/nukkit/network/protocol/SetTitlePacketTest.java +++ b/src/test/java/cn/nukkit/network/protocol/SetTitlePacketTest.java @@ -31,7 +31,7 @@ * @since 2021-07-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") class SetTitlePacketTest { @Test void encodeDecode() { diff --git a/src/test/java/cn/nukkit/network/protocol/SimulationTypePacketTest.java b/src/test/java/cn/nukkit/network/protocol/SimulationTypePacketTest.java index ab211fb738f..3bbadc5cede 100644 --- a/src/test/java/cn/nukkit/network/protocol/SimulationTypePacketTest.java +++ b/src/test/java/cn/nukkit/network/protocol/SimulationTypePacketTest.java @@ -32,7 +32,7 @@ * @since 2021-07-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") class SimulationTypePacketTest { @Test void encodeDecode() { diff --git a/src/test/java/cn/nukkit/network/protocol/SyncEntityPropertyPacketTest.java b/src/test/java/cn/nukkit/network/protocol/SyncEntityPropertyPacketTest.java index 5d5969a8ed0..78a7e7b17ec 100644 --- a/src/test/java/cn/nukkit/network/protocol/SyncEntityPropertyPacketTest.java +++ b/src/test/java/cn/nukkit/network/protocol/SyncEntityPropertyPacketTest.java @@ -32,7 +32,7 @@ * @since 2021-07-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") class SyncEntityPropertyPacketTest { @Test void encodeDecode() { diff --git a/src/test/java/cn/nukkit/utils/BinaryStreamTest.java b/src/test/java/cn/nukkit/utils/BinaryStreamTest.java index c2b6321e669..7b002a1f626 100644 --- a/src/test/java/cn/nukkit/utils/BinaryStreamTest.java +++ b/src/test/java/cn/nukkit/utils/BinaryStreamTest.java @@ -38,7 +38,7 @@ * @since 2021-07-14 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.5.2.0-PN") @ExtendWith(PowerNukkitExtension.class) class BinaryStreamTest { BinaryStream stream; From 5887aee55dbcac715a017b3caff9c1c12f956623 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 1 Dec 2021 11:09:01 -0300 Subject: [PATCH 271/394] Update the translations --- src/main/resources/lang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/lang b/src/main/resources/lang index 6e8b528d401..b3c7b5c8d7b 160000 --- a/src/main/resources/lang +++ b/src/main/resources/lang @@ -1 +1 @@ -Subproject commit 6e8b528d4010635d063f30c7ebb4003b5ffdcb8a +Subproject commit b3c7b5c8d7bc760805205e6b8cc270211b4ce022 From cd62c4be0864a7f6b1612c07381639e26312ee64 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 1 Dec 2021 11:27:04 -0300 Subject: [PATCH 272/394] Release v1.5.2.0-PN --- CHANGELOG.md | 6 +++++- pom.xml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7982f6e2174..69ebc6b7b1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 with an added upstream's major version number in front of the major version, so we have a better distinction from Nukkit 1.X and 2.X. -## [Unreleased 1.6.0.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/28?closed=1)) +## [Unreleased 1.6.0.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/29?closed=1)) Click the link above to see the future. ## [1.5.2.0-PN] - 2021-12-01 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/28?closed=1)) @@ -25,9 +25,11 @@ Talk to us at https://discuss.powernukkit.org and/or https://powernukkit.org/dis ### Added - [#1233] New API classes and methods was added, check the [JDiff](https://devs.powernukkit.org/jdiff/1.5.2.0-PN_x_1.5.1.0-PN/changes.html) for details. - [#1193] Add more damage causes to the API and improve magma block death message +- [#1233] French translations (thank you for the translations!) ### Changed - [#1244] Changed the `recipes.json` and `creativeitems.json` format for easier changes, updates, and maintenance (backward compatible) +- [#1233] Updated Deutsch, Indonesian, Korean, Poland, Russian, Spanish, Turkish, Vietnamese, Brazilian Portuguese, and Simplified Chinese translations. (thank you!) ### Fixes - [#1187] Fixes powered rails do not update in a row @@ -950,6 +952,8 @@ Fixes several anvil issues. [#1187]: https://github.com/PowerNukkit/PowerNukkit/issues/1187 [#1191]: https://github.com/PowerNukkit/PowerNukkit/issues/1191 [#1193]: https://github.com/PowerNukkit/PowerNukkit/issues/1193 +[#1202]: https://github.com/PowerNukkit/PowerNukkit/issues/1202 +[#1214]: https://github.com/PowerNukkit/PowerNukkit/issues/1214 [#1233]: https://github.com/PowerNukkit/PowerNukkit/issues/1233 [#1244]: https://github.com/PowerNukkit/PowerNukkit/issues/1244 [#1216]: https://github.com/PowerNukkit/PowerNukkit/issues/1216 diff --git a/pom.xml b/pom.xml index 8091d794752..441e0b318af 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.5.2.0-PN-SNAPSHOT + 1.5.2.0-PN 2020 From b5214269933bbf42168b715b29fd1afbb4944673 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 1 Dec 2021 11:56:03 -0300 Subject: [PATCH 273/394] Fixes release script error --- release-script/release.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/release-script/release.py b/release-script/release.py index dedcb87dffc..68374a87f40 100644 --- a/release-script/release.py +++ b/release-script/release.py @@ -62,7 +62,7 @@ git_is_dirty = cmd('git', 'status', '--porcelain') if not ignore_dirty_state: - check(not git_is_dirty, "The workspace is dirty!\n" + git_is_dirty) + check(not git_is_dirty, "The workspace is dirty!\n" + str(git_is_dirty)) set_build_number(project_version) @@ -141,13 +141,13 @@ def build_docker(tag, source): finish_progress() def pterodactyl_tag_name(base, java): - return base + '-pterodactyl-java-' + java + return base + '-pterodactyl-java-' + str(java) def build_pterodactyl(java): base = docker_tag if is_snapshot: base = "bleeding" - build_docker(pterodactyl_tag_name(base, java), './docker_pterodactyl-image-java'+java+'.Dockerfile') + build_docker(pterodactyl_tag_name(base, java), './docker_pterodactyl-image-java'+str(java)+'.Dockerfile') if run_docker_build_pterodactyl: start_progress("Building pterodactyl images") From 9f0daae3df47399a7bb0c999f6f03ce51f0e07a6 Mon Sep 17 00:00:00 2001 From: PowerNukkitBot Date: Wed, 1 Dec 2021 10:09:48 -0500 Subject: [PATCH 274/394] Releasing PowerNukkit v1.5.2.0-PN From 8a68a5b4ad40c32dc51e34d6b5edc5ef48b98421 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 1 Dec 2021 12:43:41 -0300 Subject: [PATCH 275/394] Add custom suffix to the version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 441e0b318af..af60939bcd7 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.5.2.0-PN + 1.5.2.0-PN-CUSTOM 2020 From 5ff0c38cda4d3968aeb76922a1a9e3a5c89e07c4 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 1 Dec 2021 12:48:11 -0300 Subject: [PATCH 276/394] Change the version to 1.6.0.0-PN-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index af60939bcd7..9050293e59d 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.5.2.0-PN-CUSTOM + 1.6.0.0-PN-SNAPSHOT 2020 From e5743e3e316fb91633eeeffd71a60e84a9dc4e47 Mon Sep 17 00:00:00 2001 From: Erik Miller Date: Tue, 30 Nov 2021 19:00:16 -0300 Subject: [PATCH 277/394] Initial 1.18.0 Support (cherry picked from commit 9455daa8a14f44bea4265516b377aa1c4877ec55) --- src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java | 6 +++--- .../java/cn/nukkit/network/protocol/StartGamePacket.java | 7 ++++++- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index 886164dc309..94de069cabb 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -17,12 +17,12 @@ public interface ProtocolInfo { /** * Actual Minecraft: PE protocol version */ - int CURRENT_PROTOCOL = dynamic(471); + int CURRENT_PROTOCOL = dynamic(475); List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION = dynamic("v1.17.40"); - String MINECRAFT_VERSION_NETWORK = dynamic("1.17.40"); + String MINECRAFT_VERSION = dynamic("v1.18.0"); + String MINECRAFT_VERSION_NETWORK = dynamic("1.18.0"); byte LOGIN_PACKET = 0x01; byte PLAY_STATUS_PACKET = 0x02; diff --git a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java index 50a8a985531..a01a6bc8e08 100644 --- a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java @@ -68,7 +68,11 @@ public byte pid() { public boolean isFromWorldTemplate = false; public boolean isWorldTemplateOptionLocked = false; public boolean isOnlySpawningV1Villagers = false; - public String vanillaVersion = ProtocolInfo.MINECRAFT_VERSION_NETWORK; + + public String vanillaVersion = "1.17.40"; + //HACK: For now we can specify this version, since the new chunk changes are not relevant for our Anvil format. + //However, it could be that Microsoft will prevent this in a new update. + public String levelId = ""; //base64 string, usually the same as world folder name in vanilla public String worldName; public String premiumWorldTemplateId = ""; @@ -154,5 +158,6 @@ public void encode() { this.putString(this.multiplayerCorrelationId); this.putBoolean(this.isInventoryServerAuthoritative); this.putString(""); // Server Engine + this.putLLong(0L); // BlockRegistryChecksum } } From a7f653ba5997308ccaa8fe68529c3b92b6bf513d Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 1 Dec 2021 14:56:44 -0300 Subject: [PATCH 278/394] Update resources for Minecraft BE 1.18.0 --- UPGRADING_TO_NEXT_MINECRAFT.md | 7 +- dumps/r12_to_current_block_map.bin | Bin 370221 -> 0 bytes dumps/r12_to_current_block_map.bin.txt | 22707 --- src/main/resources/biome_definitions.dat | Bin 39466 -> 41668 bytes src/main/resources/creativeitems.json | 3 + src/main/resources/entity_identifiers.dat | Bin 7382 -> 7382 bytes src/main/resources/recipes.json | 188 +- src/main/resources/runtime_item_ids.json | 54 +- .../updater/AllResourcesDownloader.java | 10 +- .../updater/RuntimeItemIdUpdater.java | 2 +- .../dumps/pmmp/required_item_list.json | 68 +- .../dumps/proxypass/creativeitems.json | 5 +- .../updater/dumps/proxypass/recipes.json | 118252 ++++++++------- .../dumps/proxypass/runtime_item_states.json | 2233 +- 14 files changed, 60438 insertions(+), 83091 deletions(-) delete mode 100644 dumps/r12_to_current_block_map.bin delete mode 100644 dumps/r12_to_current_block_map.bin.txt diff --git a/UPGRADING_TO_NEXT_MINECRAFT.md b/UPGRADING_TO_NEXT_MINECRAFT.md index 51c8ca29d04..fcc6f97ea87 100644 --- a/UPGRADING_TO_NEXT_MINECRAFT.md +++ b/UPGRADING_TO_NEXT_MINECRAFT.md @@ -57,7 +57,7 @@ Now that we know what have change, we need to update: with the config to export data enabled - Connect to the vanilla bedrock server thought the proxy for it to extract the necessary data from the connection. -#### Run the update tools +### Run the update tools Now that you have extracted the data, confirm that PMMP have released the last BedrockData, the update tools make use of that: https://github.com/pmmp/BedrockData @@ -71,10 +71,13 @@ make sure they are fulfilled before running or things can go wrong... - Run `mvn clean package` (Don't skip!) - Run `org.powernukkit.updater.RuntimeItemIdUpdater.main(String[])` - Run `mvn clean package` (Don't skip!) +- Run `org.powernukkit.dumps.ItemIdDumper.main(String[])` +- Run `org.powernukkit.dumps.RuntimeBlockStateDumper.main(String[])` +- Adjust all necessary block properties - Run `org.powernukkit.updater.AllResourceUpdater.main(String[])` - Run `mvn clean package` (Don't skip!) -#### After the update +### After the update Try to start the server, make sure no error or warning is logged, new blocks/items may cause issues, and we need to fix or handle them from the Java classes, **without changing any resource**, only Java code! diff --git a/dumps/r12_to_current_block_map.bin b/dumps/r12_to_current_block_map.bin deleted file mode 100644 index a92bfcc329a6e0c9a67b9dd39c9e4a7c5dae425b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 370221 zcmdqK+jbjAwk;@%6h+IjE-u^Ua^3bm-RGRwV@tmETc3XIhyDW$kc3E-KmY}RR>>bw z-?l%i6Ce{aa^|`QlHQ~C7&S)8j1_Y(WW-u?Wn^UJ?{B8_$;E2?Zu5VQFUA+s@#y?^ zvsug^J$m-&>|{Q^nfzX{cy_wpj5m|@(dTzPM$6S?y`Ef-&ZnD4$FJTsVDqcd<#aW< z*i5&8$4`Hmtk%sx|M?&PeEmp+JsO($agg}&(8MP};^U!-PlLoKLld6`iJuHj{47X( zIy7-~RzLmEB0f8a_^3XPKN*@h8pqFuCXUAOr$ZA**O@h8yRqZiwrqw7Y6Cp%3(I$JC!^Sgh(yj?CQtI_#vaq)il z7fPTq4YXNq7un24Od> zxl!u|>V&Wx*4(Id164!V4Qp=nr)X?$poR#$Va<(NH&9W8-LU3HtsAH>!fse|qt=aA z`!Xl&hBY_(QoY?8`j+DPtn-i_%iQ? zH8*PA_$u#)H8*PA_?cF8V<{uaemVp@Rxpz6 z>bP?%uyC<(VOeFyJ;RRmiX^)_?iqG0QzY5danG=0bt1{$9rtn#EfMcnlt{97J83%FfPM$1`8<2}oL#(lY(T&|lf36s%!dNm)<`2NrXg0Op*DkVRA^njq|o~263 zPaQoVNVsRIQu6ag4+y&LS*n!$q|pO{SbLT#B|l^IfS}NxrAqmnWXS`9EPIwJ<%=XG zw78n`Rgw|{Tuu3Tk`k(0P5DKV5>i`D`Bjn<`dUr-b&?XIT21*)k`hW7hr6fy$FDw2rmM?EX7k-0E2MG=R#r_7 z6KbhhWPU3Pr-li^)GRWrteqMrG*h!sS)0vRwc`re9D+4Eu29Y)Sfk?#@f?Dc$MrA0 z`nHLj`Q>)2>$W;Y*gA&oC?9`$wOZWHFL%B5fOXIiw~nDh%OmTcA#fc-hn9!dK||y^ zh7N6VY!SML(Q?h}pdof0L+96W-RqzscpXEBmTO-J4bkfuI<#E>I%p_=9YcqfYhVWr zC9q@Y&~hE@q3u`wJ;VDw{z{hOTG&BDDeM?Jzn1G^2My)0W9ZOwP3)kdBz6oPTCR&7 zG?c}Tp+n2Hv4e)v*fDfyxjz0wPj5G?@v^%oR=3%cmHT45+hDt;Ggaq0G89+05!fHo zw$n;>2ycr0WEghnZ;JhN7_ioF>3-P7sLxbsr7jtr&NZR~MBgdOWvDfVLA4`GLHr`U^eKZG6fonkk~ zJwEH8;wknb&-Z_OoE>7GVmHS<&JImav76)0?BDeCeYcIHdoOJm?PJb;;nVWhq z6W=u(AP{cDNN3_3Wdj5vZ5ZiHd~a-kK#&b1or!OU4G@U0VWczh9k2lcp*4(jCe{@L z1fpsf#hJb?<7qSfWxQ$L0b7ly%~R9%g>KcPWjXq6+hKG$-ZXE6Z(rtqarfWatK2Fe z;z~7%a&nBRfQT^FB+ALrrUD|?RFfzt$DIm@s8da%oE(8FAmUFoiE?r*s(^?@)g;Qv zQK+av%=r@*&=9iQ8bkpovqQ|*qDc!YcL2Dl9>Zs6Q-6q4# zfv%%MiFKO{Gl#p53O&|sGRz$GIx19Iw^5k`4|sJ{XtQpUVUCY86nYru_&7tShhgS% zepw`g`7dP+%`NSfJv+S|-;A#&pEQqjcmKF7k7S^9!5|1#ZVAEjh%pG_ky}FWJS+@? zpyQShym##pSswhW^=x`|y_tP%?qIfKkr@I+(IG6}NFZVkVetk8(QyciH!i4KJ(lOq z@n1D#f-1F^!5a_Mq_qs*SfB!}W$?xU^`^&gdcIn`pUe}933X*2+q?FtAM@DWRY#qe z$L8z(3R-YJzBykku%OawY7^ek(K>BakbbCljm^RGEcMvn@b(Q6vUizhpOJU5^%Rc<_A-)vvr8{m3Cg&xk4 z*d>8r)p;@-ubRm-z$JmEJ)9%4O9I`i@?@Zpfi6Cf7qN>0;q=`&da(QfaeW{!ViyAn zT;;}a`2#}zaE`<-2?V{)lfm)_)c@feiCq%Z3RRvAls`~aJdhXS#VA&~+HzsMoHhH7 zQHQ7|LM8Bgeb;-m`M8`MFUIdl;Z-aY9I8o=?&z$V4uwUW?opTSbiG{NUQD7t5EVq6 zk$zy35tTxmk$&To^Xcm1I{Fh)5yT1UC*}wt{Bc71g{ObJonOtuqX?0YGty5?GD6Se zjQkt#j^K_CBeXlt$iFei2$_yE(r-Mw9IxJw5(x*29OtB8ndXG{#yRPCW^yVNHcm%B zF+&F#jnf_Q>!6o$I{(*ow0E_d6dN3RO|2jar&$+!QYq|uC{Vs$lTJ`<1mnkBJrrnN zuSq8;_IkMlkhTOtv7O5$fRZH$&Jtq)!4#I#fr%JM?-e zkeyzWK23`_a0#F?34$UHTmnc+f}n^4mjL>aASmL%C4gci2#Ppx37`=Pf+7xF0;s|; z1h32W+0|+~DIVVU+uDh0>E*6TfhaZ#oKG%sbJqQP+qqnXKYDRJ8DEZ; z(@Aq4+IHXF(euT{#clK7ci&VYU%P-1r|#bcqUJce1Bf6}E>Uw}-2p@pE0?G_lI{Q^ zh?Yy#97t#q@vQFxLcF?vuNWhn2qNYZd1GV~LCjntZ;Wgrh?+~(8>6F496{V%qFx-O zh#+z^2W#}f*86)-WV}aseO~n zRr9?MXi~qeO+`m9rt^2x`SkpDb$6x+iBG>L1gPJpp|Y=^7aBg9Y*vfK2F?nNE$;DY zbBMx+%{3R_LKnCxG%_APyB4}Y4uwX>_vv7$f?Eza4q@n$o=xW1XpH)riRAf1x# z*=BLotXl5MISL`d#KfeADB0tqI2mSbCD}=W3{$$2>@-1!`5qv9dOe?(*dBZb1Qf+#agDC{bTGGm0oECetTSc~8NRF%AoH}#;lk%r>bN>l=5XN~DRo?#0mFw->bNrFg|D3ixJ>PG zE+D>VQbCj%DSWY{f+#ag_$EmOQD%(r)sX;^t6k1G;oBmWWSOzT7ep$_GUJ8sgjAB5 zWA;^X-?iPx()$LvV$jM<AA zT7fngx47RMhBg?txceK1HW;_K7aWE*7`M199ELU+x41tXhBg?txKn%>+AmmdyXPs2 z&28{>mR}C}#JI=;?G>8^C#;XN^*>d|10b?MiN$8YiRS6g0UuizS)j{ev*1MYWT@*z z`FWn+mzzUZ0xBJKBKOI@kQ31Cs1w$l*d52VoUBIYv*uZtv@kESK*7akVK}TgQRxKq zJnDosCn}wQx<{R`=0rb4`5sGTf!2%7!f;q~qS6T{f7A(UPEaKvfWR z!kQEPi5Z#`s1c%0SaYJ%2~-SGC#*S9=>+PBs1w$lsB{7=&`~F>Inke(A??7*bkqrJ zPE%4|qfS_JqCYW1a{^1>Q75c9QRxKM#G_7FbE47- zES5)|u;xUi6Iex$I$_O;{=^Jv2UgglPFQoI(h01-N1d?dM5Pm0nU6YQ&524UuxcN5 z!kQEPi5Z#`Sj~?*Va4nwvHQX5;^YfXJhNQu@sTx?tV13jvFfwIc{~lIrI%!EIb%S znek3=W4$5At&Vqs8_NtiZgsp9+*n=6ad*eNT=}AHmj)~r6$~SHyz98JmXPD_j&~h5 zmJo8>-SMvD#>zpCTOIGjT*HDvj=P)Bi{G8##yUZcTOIENHnxPt@Xb_`WQeirE9K&>4^m5`qTIyjJM$518Y=YI|kblEXf3HiyNg99;k z3{^sY=I7u*fgMAYkY87Da3H&mp-RZ_GdMWVTE|c&G(LAI1wI6}meBanp+pE(ttB)* zaVQZ&N^1#?j~hya(9c>ztP z(8gWOiSP;}q);))aIz{YkWfR#Aj8SRs6avx6@v^XYoh`QO;ik2&cMm<3M6DvG01QR z#}mpp0B3MKA&vuZ@_7E4_rtXBL(n(9ZM*hLD<8|{g(e#eacbK+q&%WF7y{L{b4Yne zZ7@WtZRe2Y#uTA?5GmKNHW*^nwsU?d*ReJjg4MQjNV%4^!4R#sokPm?tPO^8*0ys< zxu&(jP}16V4k_2Q4%q%%ZjN2<^W8QWN?Y5``K4Un+F&SeZ99jQYg`))C9ZAfkaC@C zgQ3i|?Hp3Bb!{+|y0)D|%Jpt}&fo5Rj{Y~hRg*ncoOX5qH)J-$T|O!5-TLraqY4bQRZWCzZjN`D8={-xHpe^6 z4eiZvo8ukkh6HE0i}Bt)8?K8nC~=0n81DnPvCfp?F2?%+Zs>A`yBO~SxFOFOZgafD za}6q;;Wo!R%nh;5aGT>D=7wfxxXtlq?&51|cMD{~H@S72eO7fp$*p5RtaTfmhwplI z3<$Gsqx0~Mu8si_)@^hizPHseAh^1X&cnB}ItIj5x6yg{4pzs2km@!%4==gs7!Xa} zCeHKk#d^|g+`MISH5>ohoZ`8etX9pbqRp96IM&R!9g-JubqFuVmyd-w^KJFt%kk!8 zA?|!zotNX!$3h(XwmL7zqmPBS^lf!sj!z#8aq8RZyd1AS7UI^ojr0D#6Tj=t=v{LR z;<)*Q$bQ{LvpAds5t`@VxYQ63jhco2J2(b41Vo-@p>uG&X$Xii%|hqk*wPRXQJRI$ z!EvM^AbKkBSvfjgD1@nN8fPt!LY+17IxVG4Xl#*b z>ukCCe=%1};Kg{;9EyMT>2f-2zE3wA|6{s7`WT@>Y=>zc zSI{7s!!#!qG>G0X&1nSaDS=Gl+)ZY3|bwUirj5lA&nOm!MzHK|o!lzUzMtv-Vt8c6G^0@j~2wC4& z=jE~Wu@JVttzQ4bGY`p96(l;22t*oC+K$ zh88EM00#>3?-*K~9R3azV&5^eI63qkD8#*EXmRq34h|Gz-Z8W| z`8@{*3QLEMp~cCsIXF;QM|2D=PJYY5gW5lC_YB+j9E3b%y}&EvKCCbvz{&48I8az_ zbPTO)`*kkIW9{((&Tn#@Scp7;lV5Ofps*_G7+Tks-)|`I-*3;)oA3KwEM~Vi&28$l zM`tJV@y$fDXjzUvxm=B}Mwd-J&O)hmg+gi;0ywWt6koBv7+-8|8<}oh?lrY=$H(KV zX6sA$4!ma#_j*koAlB%fHB`CR)B$4Q?O8)=drci6R@0s}^t0F00b+^lSwj?iO&uWC zy`D9cuGiE7VlnGkL%w=V9UxYyo;5V7*VF-G+38tBXnIW@Al8z;b#P|0K=gnh3B9I{ zN1XM0*2wd{rVbFN@}4!4cdw}f#QC{rjf~uD>Hu-l?O7wu_L@3CoJotX30;ie7aQ!T zVGr`WxwqJ++uM1wnU<3hbwWy_1{sYr6Lmsfq6Qg_(-U<6oTM2rUtua=YId+WWX_6nUnX{z1D>dA-eCKX#{;T8{b-@`jyteUSe zyMUPL9^liPrf!`#?^+m@>()g~Z4dF;YbQPFjHN)<#hhu^A6L}g}Yjfd80?Kk5Wx;M~i0R>3TYAo(y{aDOIHacyjS^Jon(R z-Kpm~`?tJZH6KIv0F@e3@-H&`luA>8dvd;A1o7Nc3Qh^{YBia-cuL(V;2p0TiFE>4 zDLw_XC+FMOu?X)qo`zqHSF6Q#?Yg}w?zgq$dwhD;T)E9P>wmuoQeeN0(YOZf_dx#Z zw=o*mp#2`mef>5@;~KQz14*yn#%NrF_In`X_1hSYYtViVB)onbqj3$|?}2>RZ(}sR zcm88%zHJswLR?;d9BszuO`h1#Jj<$Opov^O25KhqFU<>w%iEjf`)RQ*rJA&m<>%d^ z@R;Bkc%JHNU(9&bMDU*HzS~?m!+HP8Dvxv~xLY}?67~h$XX4Ajl zPA{K)Xtv0&j-S12cF2!rlV2t?&M*QRMnGsxQ1O@uXc!HlF+s)SBcNeqgvJC_V62e2 z4x{3%CZHj$35|(g#VJofL(UT#6I7fJ1vDf?p>bF$6o(nAliB!}aWbq>H6Fwih$f%gC={*-F$Dq&MeU$W#W`OW*W>BDSxUXR8P6|y z=Z9_A2K3R(i^cqMy4|8Vp6&Lv`}@LdWGI)KZI4*5u=$>tt@qpvi zMur^Pb{P*ij%{S9q-~e+faBXnhIra`84tLWvyq{xw%x;d0I99?K=`bB?ixUXhw~tp z4S4 zC*$I|fM(HVAzC#k&Qsa}t~aaRT8D1af}VXrokyFG%gL*zcv&`&f-grGtH#I0%2>V7 zIZ$%wHuZjRve7wEc<46uesIdsIZ%G+HuZjR;?X%!gy=SoA2-{zlxZ`Cn^ol7i)LA+ zc#IpKrzk}p!jJg;Ktb{le#GYo%94lhBR)S+oYea9yUA>F(>x+|sWEJ3;QK(53m3hI^zawR@jP{7o>^2uy`ez!(nl|)d#4C+99UZ8v#)PeYHK=m@H z13U*_7Ef2MC+nhc;g(iA{3Q$SiHd<+bW9#8?g{nh79Eo>KKF!@bBm7YT~DZT9Ft3Z z?g@qE7Tr%S-nl2#l3R34F2}hil#g5Dn4R)@vASK4-Zi^FwtE@dr$w5@oZ&T1ANSe~w0Crn$-q65n_R_lbBt66kl zdD3c~FnKi#6SjCW`QmyvZxTr9Rr&)owI z#AXGmTwdQoEwnA6_l*inac08BV*5_WdefYdhTkQ(D`3TUSqrey_84v;8b&Sb*~{I@ z-Mg!^yJP;efIIucuCb|o=Xa+p>?}r;@p^MIZ+t)dMr@xiR-0?fV7<6)4P=H7&9&J9 z9DTN9ST33)R-1j@Jd=$dh_q%HsaN6k&0@X&*i`-dar#%j7Rbdl*Wzij{bb&3GX<{C76L7T&X z{*`|}YMh$i|LJc0NB{Cy0SjX_SK(e9|BGA;tjyJ1i|6yn=6bUF*Pjwt6|A`opG>wJ zME=#21C}FeuEDeAYP!A|ucl35ESI(a5`{AsLTfIF2#S9J4!51|ChfC<>KX{Sw6v%0=Kkx(04~b7!N+UBks?+MTO+0NA8H*Ty9Yz zdD)RW;=YkvR7hTO4w&B}%I>q<1Y*se~ctl=6#r5cXiEuZJ+Sz*a$?j#}-SXVoS9cKa z#uwWowD+g8KE0j4pZDJ)G|-VA45N$-C)+heT4FY!kxLAt6#usPi}NG#48;Frw<;TV z0BLF{2X?EzaR-pp26EtdvslLIkpKsx&&L1~=6{+CNU%8XQEpxh94B|}Js>Ku5I%mm7vSiJ+eOrYHT)YIoPfpY8d+qtm13e*IvD`6Hq z8Y&a4t^zed&V^JaSX~8bf+T+?6RfTRH9?L)mkCx^ftn!cKq?cgt^zed&VfuOSX~8b zf*gG|6RfTRHNiu>5U2@67gRmSUxh$TkaHoK2?8}il0TOT0yRO7Kbr{xH9^vWWF`pI z1UUzCnIKRTBL_4!l{2vAX})yC%-ln|hoQmc*6(Iz248KqVmpW{kG zfCfsfHa*2G!n3U=(5lcxm;)@ zQ0d@hp%>D((8!R&;mblVWNe|4A%z2&g0+kM8mU<~eCg17wKKA+YC`yOZdH3D!>T4kpyXM#JF=~6LJWG&RS}SR zRTCnS^RL<)Sy(k80x1`(eUXt>6NVS^vf3BfSv6sJAxEoyk*QS^f|v8P+8bG0H6a2i zck6xk8C*BHuc_~=A~}z%y^+mT6ZT)o>1tnOcGZO7#r&>zMwVAi7+=cuYG-78)r9bc zysvge_E${^UDSZ`nDyq!(cA6Y!tE+bzpX{24Pl+#l&f*^E;YBb0B6ni_QtSzRk+!W zak8BiM`xFlaq~7z|8-@?fO>F?jJ{1Nadb#W2>m`};`k7b5dL;b#K9pLA@F;(h~q;q zLiovnggxoGNxnUt=AvolA zk;@Jd83=(Qw~It>xX4%t8o6EMazaN&LIBC_!!aS49-0YNSUnSeol8bSIVQKuSFamV zF(y1{OEC39D#nE(Ey2|dsTdK;wFFTwq+(ns-4a|BQZXhJaSzRef^Imb&N}N>rQS8) z;M&)BQmZ`4w+eOqyStLDfxs&&=Cb}hA*3o!xQ(i6LMT?4@IJVzDIr{8%598Q^FhDD zeD|SNO$iwbQ|=^-6XyF+gv7-O)liHOLg~VURwza&A$Va* zH54O!(7iC96^ao`$X}RJ55))}RPZ+mVQ0bQJ~Bqz)dxtUYI2}Hs<;qI)kLON z!;__1#f4m|CL*;Js9|ylXO3JA*)TICG{e{*UG z_HRmk-F({IQSGfs8(+uGI~7~O-ygB?=;;2gc58KaPV4pwguWs!{<>{vN5Ct*II8f% z(eer}ifh3uChE0tM7_d`;#!2ga0K4;;_+bf!cqDPFN$js68$ZOBl;Cy)XWP<|0}#G zu0?oWIHiE;#mQjv!l?=>yeO_kcwRUKLWLJK^TMeVD!eGJMR;B~RfFlp>0tB1DIY4l zD6U0#UO1IRg%>sR!YL{$yeO^(&x`WwDZ3(JyU@L*_znezZZlkkp>v?b&~1`_6xW02 zhR%T^L$^u#VayJl17(J8lk}sw9`X5sLZiZubfuwlpw!T9)axPpQCyGs{6MiWm>*U1 z1LekGeiYXuK0i=!RQQpuICKt_9J-Ak*$HC^`o7qiTMj>=?|C;(EmA2MUi0 zKhl+l&VkZHw^8SZ>_>4u;`0N=$6$U`%@33xgZWWhkMR6>6R1DlsN<4e;ZT3;n?U`M z^`p2R;ra0`E`jql`t;(i3`kE|cX^@xv4p#I4EQCyF> zAA$Nq_e0kG;(El#B~X84{V1+S+>b#0k@cgv9`SJr)E`+titE9Cl&krx@w?6TDC*6) z`QRSP57nftKIpxWe=EKj`>|O~xtfiC-5!`dS*^wwi_NAuA>TD^Dg3X>x=^TNTvMHu zAIiBJCRQ<5kff28| zO_H3WR|iJe>NZJo4q_b`(W~1e$vKvFU<9#llO*Sm)`1brx=oUtBU=YXNb5F9at?4E z7?G{pJQ%rnt3bKHA{S1di~n-*{@^h3c$|wj1&5Kx<6OKGIE*|V=VJMP7;t(uAnAJxMIzfdRI^(BwVrPO1&$n7ZR>mbEV!DR1XPPthw^2H&=Mo zLL)*gp;;W9SE8<Iy27 zge%ruslO_yPZF+JbEV#uSNm6%6Rucur9W-CZqtZf*SKQMm3mh`uW`kiEA_7YuErH> zuGG8oMU5-gT)VuOkjVsn%sdwe~HLh55rQVgVYh1DBN`Kl$6aOD- zT(Ra#y({0;xMIzfdRP8fRtI$jVsn%=}+6}T={d2E7n}8cjYfNu2^%W-j%=B zxMIx}-<3b(`R0Co<=td{F&SNr%k!vhJK;v;(b1>V`RK!V)|@N0dmU}Rq(DztZDcI2 z*mi;kkB9L9Ybt3EPKNOSODSm&PKWUTD=29X)OoO9DKfaQ&}2kJav5B^=K4|ba(Zda4ha@MI4eA|6? ze%YKHwr)0MOh)VJ)qH#0?(x%KCad*yG5_a({PXoA9}0zmZ>!SsvsE7o)qroS((+SP z9||RaZ>!Ss^Hd)Sy6@YnwEQI1hl1Gqwkj<@L-nDc@V>1|%U@CQp&;wNtxC%uSMs5t z<-V;-%imn`p&;PCtxEfOI$c1u51{=bO$(_$fcC32E%f;S+ON~J5ak1Cze&?Vi4UOt zQ<@g?djRcUh*sJ#wcd=Ut2K5!=r(P@Y@a!JHL?uO%6A12e)<)Sz@Cd>?} z9fp}zS4V}~>Nc6*%)+aqLU47P3^Qx5jtb4yZB*uF^IH8lLw1K@j*l~xcNpgQI757g zVdioEqfkF@R^w%N50hopj&)}rQ+I<-H`FPvEo?-#WhHpW}dT=t72Z;2f z2d6`MfQV0eP;5!sJr(GT0^iA5*ob_~DmxD{9v}lGJuv4%#sg%6qzC3a$asK?Jn2C( z4|Xg5oq52w))qF3bIZz}2ZwopIz8z@F%J&&0400UgJK>W<^ihrqzC3a$jn3(@<|U0 zUFctfj0dRclOCA!Amahb`=kfvJYWxsSD$vz-~~GuxU8xEU2v2N zu4%>(t`S{u6b!Cu#t*I-U2v2Qu4%>(t{+`+6c4Vc>PO(N!39SN;hJXrNY4)x5`+4Y zo*yVD2K9sI$6vem7u(kzo4hf<+`js}U0TPgfoIu{%JG+1tHtg7a@Sp7F7V)xFFZ?! zm}h_ohXmnSI>bEW9vm`)XXy}U#~3N#Kw@60_uvroo~84Pd9B`qLy&ux4l%FRdvJ(q z&(b00^?DBu_XeJ&L(D7o9vp57JWGd|*X&)m{bnfF^8ORBO6KBKdk+pb0G_4ui+SDN zgG1f#SvthLa__;R-1jUUVqUxV;85jzmJTtm-g|H;?mbI~nAh*=USX@pyFGASEw-%o zgsFSas{liux>y$%=Tw~mWd*Fu5fT2}h+VxhHAAhMQ~&c)hlp+HwHE1iqw)Ix!j zT2?w2E2xD6^|Y*XE@wrlGY=t{55VhpRAy)qh!R?4rBa!ZMIcIKk(Elt)u=TC zmB5Npas6pgq4u<_)L+FFrv-v))3Q>jxW+U=_VuM{)z+4rEx4+*Ku}RyR_d?fI?@6` z4QW}aR9rb)AgCHGE0v0CMGFLVqGhF0adl{cpfa?qR4T3q|Ic!LhJtf6oi}?PHhtMF}A#;_S)jNa+84sDOs-d^6E3TEL^vw)UgT@n*bx!SeXU-G5J4 z&Ao8*8U@z^8Xn|dvxqWs0ifYQ^EHboBdflK2cg$2qKqu{8XnYLvxqXXzH4}pbj>2l z$fB;{LB}0&kA^fzm%CM{&mCM^{dBCeWbcsX;ZppbIaB*V-3Lj{GPt0oy<&LS!(WL-5;c>|lQ zR8WY!YLej%k1r&C5Z>_kLg)wK@6(C`bS zR-Nl{1s9S?j_ag?3yCAgby~rNWRc@KtKdR{$ZEUyIx33ryRyLgt0iDhBP$KYM*yblWNKC+pk!yV>HyWYs%SneSH=aEO{>V6Z=3 ze{5dLxEj}TL*(+@Pp($u^}3cBl9y*bc{f?jYl)$M6~wE>dQwXaG0YP`U5+P<`LueR zA&z+&o_(ZXgynOq`OiJA3|D|;k&;t!I;f)8 zvqHuRlnGT%h*=@Sk3yk}-^dE=#h-fj`FCk`-P8)-p;$1@_7V9SeRtKu=)2FhOV&ZP zHaSo+m}Z76r_0+_^FKRPo8TxJOf$oWSHCkm za4BMCjOE0u{m2~dO{|Ksym{I@2Adx?J7UF)O2Wv-_$gvR-Z#P;X=9isj0a-8HG#<+rgC z#d6`Zi`&f*%VKY1b&BQ6>#ZvT)sk;x6^rT4-NMT-(>7MJ{ATXNikIKaomlm9h&!p2 z7pq?^cdQ(fawS%{SguGpCgnn`Sg~BNa!ksVSjA$w;^ml>JF(iubjQgtDR*MU%WvjR ztc-bBceYz2Ci7-vNV(mlFY1L^TgQ+npMA2m**!`+ZVn}*S1e3Kt71tJpRSjy+Y5fZ z!{oL~loa=q^Xcm1I`gxw(j-NF`nTKp)hzY1ty(0;C}-HM zIwQrNo#j?V@u0+3?cfq09T3-6m5?H?h-<4XNO9-m+A0T9)D>}U>3@zpAJ>-Hr?{)) z+S2wEdp52u6+e{ti(<#eYJ9brk0w`FSZ@%UTYaXa_)Q5lZPx$aPi9Mg&)YCkU|*N8 zi{-L>bF$yog5=+u>|>#7=(p)S-aC_hEK~^nHl2sx=i&!XeJqp%{WhJ4-{taoApIF0 zevixNfy`%k_#G~v2ZEmA;rF+E9_aVO@<6T+;o0`0;rl zyBQviAD;&jo8jU3@p&Mp86J)wp9jL3;o9?Oy6dL>02k5zRd*F zw@xs9n+c|GonZP_3npoT7c)a_RwjmITg(fwIRRD73JFS^6q0Q*C&cE2SH+BwptK1g z*%tFbY)*Jp%mxW6GZ~7+DnV&^Rj77~X(hGBf8KXRg(CR$-Tz8J6)9DM(lV-KTl_w; zIpLKZHs5L4RHC)R=DS4Ld}oKvcUmTuyt2dQyF}Q0XNS#qS{9YOvcu-PMA&?1hs}41 zuqoz(5H^Xa@Wu|CH;J%$V~5R~MA*Es!{&`vh6v;LrnppMb36jy*kSV~5jJn^uz8aR zn>TjYyh()38#`>?B*Ny69X4+gVe`fgn>UHDDF#poo5c9NwZrCZB5dB;Ve>W-HgD~) zd7B8Ew|3aPO{AE&#Z?y~@NMR@+hOxI5jJn_uz8yZo40n@yiJ77TRUvtCc@^e9X4+h zVN+anA#4&C{d+rXzE6bB_jcHPp9q`p?XdYi5jNl3Ve@?=Y`(X{=KDn0d|wQp5P{!k zM$itM?-OD3y&X2+C&K1?J8ZsBgw6MM*nFP|o8nRlVUxI0KiFaOLn3T`u*2quMA-ab zhs_U(u=&9bn;#Nk^Mf5WKP1BD2Rm$jNQBJ~#as{~@Q2J~u*2quMA-abhs_U(u=&9b zn;#NkQ~W+5Y!W~3M>}kOOoYvkcG&!w2%8`6u=z0&Hb2^7^J5}xeze2p$3)otXot;@ ziLm+64x1knVe?}#t%L~tF*C31u=z0&Hb2^7^J5}x3a5myN%-`W9X3BD!saJCY<^0F z%};jN{FDfrpX{*tDG@e5*dBC zMeVTpDG@dWk`Oi;kl_E%cG&!!2%Denu=zO=Hb2{8^K&9>ezwEr=S0~2Y=_OyiLm+E z4x677Ve_*cHa{oA=4U%>eolnV&vw}SoCuqri^(p{U~RS+pZ;k!yR61D>r*`)3uSS& zd{BK4sC}xZg=^Xsuwwh@WPWkooI&24;yv1oo8vF>{NFH&z&1a4dwybb#K(BLS}U+! zqZW31#Pxc5IT>9pKFsgFpi-$i7L&FytI_LwwKSL4m(!}uezM49f;u7DBoapyd8<1-HDxDK}A0No8rY?u~Z%i(<_@$xoXV|>+g6WSYH^9M?YHft z=GD9A<;bQ4LeNsa>i0!h_SZbYP zR-p+(xTG%}2h3=T} zLZgMv^IhnU$u2Zn*gV&T?wII8qlL}$TLN-cXALP=6jUy^dLS2LzM54#>cm8A|N6~Y|e~dhz~&& zRHJAbhJpwh$g_=z#D&0og)LsG$SG#Xs3XBB-GQ!c{)mBJWc} z2ZYOcvPCkdh7JhV?PQA#O${B8SN1$X+OMEGJs${R4T;;I!E*w3)2CvC2B5 zbcWt22D0xgKuTu_kzydDvoa~2p-_r}jLwp!bcS>(1~NKpnbH}WrWnZREONzuxi-Il zXy(ES30||1@j1h5y^-QI3mKntyw)2@UbB$#Im>Ikk>)iE8K3jK)*FdlvykyQ(`&tv z>NN`)pL4y|8_8a?knuU&YrT=~H47P^^S#y^31732@j2sby^-=Y3mKntzS?`A^i_*c z*4KI??Q0gY|D5-=-bnnKg^bUcU+az3uUW|Wocp!jNdB6IjL+F$>y7lUS;+XD|I0@W z-OYB~vd8P~*?D&KdGjH(o4eh5qnmMaYVLIN=;({$kIU=DW+C0TFbi~nTXg=j0r{aD zasFn5RPj>}`~A?BIDfM-Y%qT4PMlvH|D(F`hc3nW#qqD?hi=9B#qqD?hpxr>#qkgF z7n?xdtrqJ|v*Th~KFXHc_pvA~p~_tl*m8RZlB+zq3u0An??7^4CwD>k$?Y9TuH}kt zY42`V^Kp3{`)zxuUOwd-y5AQUv)`uU@>T8k#TD(h>9~Ap`+ad)`)xX|e|?dyGPqnL z_xmCX_1koRxi;?iMRw`8>A3!UK-M?}x5zkGv+=rk!+={_U-iY!9l&Tgo)^zyibY5? zD^SJ4>eb!4v)l84VdsZjZ8YPLt7)*W~sn8)rHh4cSg^kFs(8lhKd^<@P8WXGIwenNe;Z zmJO>0DYm1!c*7dPVQjH@!_&#b*kbX9^@YROV)2I6hQrum@rJdB!`Nc+hLwoJ*kbX9 zb%|lwzQ)7Y`wtTLUT{`T_Ay@Zdb0`&u~SVlyc~lnC}dAH$?$SCs-O@+)g;5qajAkr z3RM%8H}E>M3JOtFO)|XU@r67N!W$l62<0HWJig@}#7e!l*tWD+l}gUCrrw%0_ZHjz z1kWCwoy?n;gvDkB>QyI~H1C%Irq`rE{96a&a1KYxKKz% zuBpz-WrGWaMC6*rS^vF^*GY4CYy_-tJ0vec_7Gl)YzTm!sClLfHDYIxokq zkA=YXZFOFbTptUe>)YzQ9J@Xig4egzc{zH0EQGIb8|UrF`*eOuOLt;(i+=WO+z9f; z_4eCmXU$Hh`DL?-TaWP5a2HmsHk~q4B|rRhZ}O=61H3E@$a6!g|#~T%mEoYSlqpp|QeR)j?dwcwLWI%^6$WXK4i& zn%mq*QdB(Qf-OB&(`^*cKcN=hfo=~9oHsYG?Ac z&4}l8v1;@nMFcU;5IwzV-VK{KxAEP#!%PTBscA+(=~;UO&TZ;vK}$1arynP?=D}y? zS3yZLL?^Rpb8uVY;z31IG|TDyeTD`KnxbizoIhr0pq?3;)Ae-rOSAPlaoHfB8KRSm zkIi%R1P# z7)YFNOO%q%1wi%>l>)Z+FHzjr!Ls7{FpxdpmVcw5eLe^T(6=Q*Q3ZVzNTF}bjFKMu zC=f;8mKX(P^f4fhzAf>I8d<#9vDL`Q_8#qGRvy-@S+wXR?#1@U>+#3CQ#bMGQ)+F2 zj-NHJZ#Ty(H*W@BK05n!Ii1bMtI_x$)AbS8#S#pZRce(;9_LA*rBRZTJPE`zN^+Vf zfmB9GXiWYQ7jfucQB z7kC*v3J86Q_E25m)$J%C)GOLUb%7VXqkz!1Xb;r|eik1Egz`mus4nnh`6wWCG1^0Q zfnS)90zx&TJyaL?o%$#sG&R~ob%9^Ij{-t*qdim?_|5z<;Qn?q+@pPSpR*$$*%AeW zT1R`RSApN}j{-u=qdim?zOK{=DE+}Md{gNH>VSh?;DZFBfT$9pJ=B5Vvj&RIwbzT~ zvOHv_*R%)iza4w@Y_qt!nu*7t^>85ky(XRFaf$-Mo}f5MQ9!s86sIW)2y=qsEJXp~ zO;9{bQ9xJ|6pvCA5Y7jqfH2ll@G*Wp90*^pDHsUvA#b>y`?3_u_{d+rINpg$V&!+Qti_zWDnYa~| z+ZC|lh_wQ&_+G7IpuiO$C7aHFnXaeJ_doyls6Ppz%X1!c2inHaU))uJTNqF>P+i$czf%Q)Ii&N3JA1!TaiM!=& z>4+hT1Z9ELD!A~NT__I{uW|upL(qj2cHz;XR{>>3(1lZW;oz%)vLooiBX*&<3P)7~ zfwCm%f;AWFTtL|pbitYnbuOT+3A$j-g*q2d_5@w9=E9@iTwn#0NKh6@tq13Yhzls2 zf-YEdq3$Z6tO~kd&4oG_P<91fu;xO4Iz|QpWm(XLTwaK{fU+&z6y z!k1YWthrFc4LY)hL&AMRC1>c3@guLBSg?4;i z+t`-yv|3c`q}y3;R^w%NsY0`80XxeT_-5kvE@b;&szHLe$lLwj9A(C0L4w&F=O{DQ2olWZI5TtcNa=6WtM&K;o<{VV_HoqTI&gfp zS~Qx2HvDcs_~D;lr@arL@6pv@5rdjVl9+eqYOsh+%_2$6`*Af`#H?nKB<5YX z8Z2U2vq%#2-dhb8F|Ju8iCH={Sj4_&@j%34k=u!Mi?}&7_1*Yl`=QTE?f7@?_lPy_ zA;i%*7E9bih@){VR=9@{N8?y5a1SAl#<5u69zq|bIS~sBEVK=Px&0060;$b&( z>)o+Ifu@Juu;#|@*4Nz1CDTCR<@V&_ zMy(sDFT!qEbEDP`?6L{FVa<*H6pd*LcG`s9u;xas8`y0VcEg$*wQgX?P1p@Yi{(XXiQVE z6DRD3H8*PAz;2wd8`j*Ybptzc!fse|qt*@V$_cw+&5iyPjm-`0%n7?;&5c?&usbL0 zhBY^8-M|i=up8Fg@ZI<$-s8Go-*`8fUra_V`RK!VHrqXXC^mu6 z(+&$4iyM}e!2Wm$cC2Y6*-wUG$5KX;{d5R+tY9SB)p6%kVBuon!m`SYdxjnB6-jn= z+%xQ0rbx1@O_*gJMQIsXNh>nqC}Ft8}F6uSc^!qcgMYw9ZL{N_U^b>vSZ~T z$*zujX4YZBA<3?edxjnB3`ur%+%xQ0UP!X5kC2EJge zVL~=FiwtXYT%nvputvuf;yDB>kLzE0^=liw}mg`;z4Z-UeI<#E- zI%tSq$IzkW`qx22`Rf=uv|Ix_XefalLx+~@U=M9y2788W6)a~dK4aEFLn-VSI=`0d zVFwN6uw&@Za!u@@p(J(;9a^r79W<21j-f-#wXuVS(%3O{Xt_QvzG!*>yr};=wr;a0 z`vm*fi>E{V(wWwebz~^6ZX>W4FZb=9qnfXe>c|jY-9}(9Uhq4F9r~MMFJAIHgdH-R zVlQ6k?6dPKrj86X)@_67GVmHS<&JImav76)0 z?8V8p_xiru#YZ&QFdj2ik#yc9wmP*71rABk5txWj%mgB#k_i~Stu1qIjq+eS*+KjqjEm$bwx(&HR-6F+j?D* z-Fi(rD(AUgS7f?gla9)I)$59^*K3NS76+-!#`Dc&Rg|Uuwifs3>GgPi)tsBaPWHQC zruN%};<#f&8@s-ztn`wJJbGQkac@8H+W@wxR8Q{Cqb3 z`|b2{)O=WYbIq5G&~Uw|K}O@4rcQ`xYLL-5mZ=jWnHpp?j$!JA2&M)ZjboQOA#$lf zM&p>JPKa1)kkO3#WIGWMsUb9@M%ki?HHtppj5=l8Nvu-Qo3f5AmxOwK_c^O77suQfk=~{ zYy-X~Od%tOb4H^SPYn*|j0Pzr>2S_yj6%2$=ZuCZqD5P?D&hoab z`DXlNjXQ;2(>@J+wwPTu3ORl^+I(D2ju+$iM=zRlg4WaZW-{O0z5n^_?gM|)5$io* z=x47<;XGY0SGO0F!)T$PQQ9Zx)78cGVXTnQDC_CnQ<=kPA)--QcU<{SxCaak?KK@R zt}ZQ9G)fy7SC1t~RmL?( z3qg(2y5s83B?xMiGcv9&Ei^Ss8yHuY6{;F#jf^YPmJ5nIeJwsx+iycwoKHSLVNb^w z%?YsMlmPU>p|brph4}1pym~*%>U$p^O51N!sE7H@5Zm9F7;-x(u|K__xnbhiDErjV z-7s}zlzn1I?{7>D@jaB-6o)=I6u94}1e7|;NouHYm|7X-Br$~eHztM@4@&IMYv^&9 zI5x^YH8eR)9T{bx7_$7^5nt%f6eqj3Hl#XdJAb-de3-26Kej;6@jAZmAQbi0;G2Uk zQt*nxYVgfT7Abf|M>Y87sEQQ4qLvzba|THPZ_cS5grbQWeD~V>@QUtf@ZD?g!z=2h z!FR7c!@tDdwCy8~6_$IrrJeID6v7SN$&3eqlB>a=a)-xfkZ5$nh9Z)x{aQk>fF-dKLbQkK0`DP>0;2Mc_E25mji*sS6y(t!stdeZH4M1l#v1O?zKg@zk+--; z0a4ONd#G1|_r*p5QSwK7s4nnk+9)7y38Fnz7kCG56cBd`(H^P`ylpoMh+Bwg57h-%qIy>MgRIk={KQulo(7Yen3YpSzyRp3IQ9B@r_RxSiwC{zHhsm{vU??OTJT~nQv z<=%yY&by{MD=WMU1!;FpbylwRT_~uzYZ_-Q&b6LRw|D#7rQ&zDtNHk%dBeH=rnO}? z3>N~lj*DZ{LP1zsR{HPah_p};jFy$o#c^n%AOtNdor|N-LP6kJRyr5QoP~mLv#fM3 zjx-AeL1tOSxym;RoA~NQmfU_QKB6g$&v7L8M+C|3y8j$Ia(_gP+^*wuyvY3#DRR4x z&oLtRM|8;TIzGpR+#eAkx9j*E3vz!%f!tn=zr4L!zMmFvei8nC`yRhIhmIat${p2- zuLCS2NI}{~!9?%=T}Hp(5}qNzT#pdkZT`;SW41@| z@3(np2r%Iz1lx`JUG#sL*B=u;f-YWvn*eh@LLgm#8y~Yif-hcwn*b}q5rY2p|JA(y zSnQ3Ui`U;Kz~+kxfpqu@$JZ#Z~bl3N`Ep?fLF4lzY{< z-`?9zTr3=f1m&OxnPR_rIYk2X2$9tM4hYDDQ9wfKDL6?I5_E(bQlsIJKuba-;%GP& zkdp_afS}Yb4NQ3nx<@1Oq<+{fKC z2f)rZV{2n%#Cm^K-6xz8G+gnBwa(3>5kbQcMXYsh9=-?~#x!EBbJvVFN`b?;c{L@1 zh8iJat^aObYl)ztbck5%+`JMKK|@Uuv5s>W`>C7wz9}|2b4!a!8L(KBzM0GxbK`i) zqFn(i7M<>ln*&>l{46%NP{Jzd@oDqnv=9B`B1Ifz60tcz!#PC6LDCSL12mj2L>%M? zu{l7)nL)%sDiE6kG@JxP97Mg?9H8NN7jY2aVsn6ocP)xIh-I-kK*Ku|%OG5wkJiia zhk5yUL2hq}jEG*$n+RNuCRfE0ZU=1N-h!Qdb%Rc$yN5E{Q<$FY{u!b|B-T-Vda*b^ zpEa-kH4lVBgow#X!n>b&zM5XV4-q0d>j+=pEY|Cf_g6Pgi)gK*{oO_LD$M(4Q7rp= z5x;fBUtC;I*OOTVGeWwKIWcV!)&o)%PcZMsyqw$nrz)0J8<;dP|65Vm?CGc z`@#X^mZtx`H2+h>0eIwufN{nb7VQ8$(nY{H;|nW$03MknV4U%Voypdn}#u;BK=8KVE628>rmp;6aU;4)CbrF22m@h_tIn0-e`C{ak!+hcS z(y6h2X+ERzzh{f4`remBa(g=xR1AGy6hj{`CbQ{nvFac+DllIGWpjw~A)N!Yf_c);;wBO~?N zb{P*iifm*gT-#3dK*(>r_-P{}&DwSu4|4MW$#pmna`ONwbvO@r9u(Q~K68B-uQp;f zE!x|wetax^8&HNsV9V_tNFFJ<3nEo+??CdUm%AYJFlsrCBI|< zfh;J8dBF3a_!QiHv6-BAi*u>9z2bV(Yqll#Rt}1!hvpWlCXI-I$R1*IhL0zU2#8!E zHfQ*FYKVZy3}SPJk0*i%h&&)Rt9*g*7XcCVVsnNsG=7NjgZV<^hloCykH@dL`(2!` zC#%kxoI+!JErrMNol{ZyK0ts%)Cr9`PxpA#01u)q#nU|}HNb-?OYw9MObzfLx>7u6 z+3`VCrFfoYc@Rx0p6)5Uf$N4SdRQK8-aUYa4>1&=u!C1^6VPhc}-XD;g8<=vj7Y57bTEoJFMl$6xoc`s?Gqk)h=`+JlYl56&*(%>%Ol zJi;YlobiR_C;*Qr3m9j7VX+FpBRT`d8DCh+0`LgxfU)XJ-~n9#9=RZ3objb%z94}N z>`TRbLFyUU7oIQwj_slQ{Bk*6tfchf+o~fJ*t+kdBf0pt8Bchw_~=M2zHP=6o+&;$ z5{qw}@gzS_kX8=xB#>2nbR-quR=p;IC;54TlrpR*`FVnbGOQ<&d2-b}hKc5ruB|#c zmHDKLZs(J(ZN`(xJn5p_`J`)`@gy=&y6AR3>Dp#I$#W@Ga9MA@ge^Y`=S zGr@FU)x$+H=rxJBM|?C~uN#88*CZqI@n*el2+m%Uh^YMb;#vA~u^Dd`lVagSXl${y zLsoG|8V`q;$}HsHB+&8FTph1a};OjAH8TkZ@s+TjCS98 znQk5({qFt`>)Z29^9n`t1(@cqlnG24%wy9`@aFLYc!Ma&dUNss-XMmu-kd&wH;BNj zH;-c8@U|$E2Jvf})z6!hH;DeMH^F(6@&>sh>rHUpq`biv&8#=Qd2@7lzQIP$tT(-U zGk`bP?wR$bH*W^;2Ae{&-t^|p0N!BhXx5wHyh+VsY%tAw6P!0GZ?FwD>rHUpq`bjq z)vPzcdBffm-;7z_*Eg%lax!ktSHlA!!$?qtN5?N(h|%R_HvY&}i~)xl#xN2%A0NPp zN+rj6asVglksRmg0i38ha-6;KXKy?coTw9WoW1c(aH1N> zarVZO??DYXXue?-8P5bKls(7U8_xtM^gGAd8_xtMR657m8&6&XFyNrYhEZfZ6P!@o z9A|Gl6P(c19A|GlnX}x|y_&9X#;a*_yyyOC9kIE+o@ZY!_g(G|V%UAm<>}?*-S~F4 zp?iN33VJCvJ4`2+;}!2L5pf`qVzWbYx;t-Z9r-=b#Tp{z%9W3$iwnLz7jNEen>hCMUxNDx)*fy`jxA|+T>>Teg=GvkgVFcf=c+!6LevGcgUF7~1ESCsp0 z?Nv6u*VFHW!0opQfIK?=PKd>Rn*hicyx$4o)o&93`5G2yPTqfBxv9j;uWBd;d+7dm zdbCHr3KA}{Vi2I>>#iW-;wuILDjpF93B#fo1gL^zg%np$#gCU2B;+&2An>dB$+Lol zmkdZ@^e*w(i1|KtV7M%G}8et0qeM z#7@Pa{cUHT-hHH`v$AA=C{{s4@G1r(o5f;t zUB!qf%`mnrU0q7v=BFScJQah?NCr6(m>EuKB!h&A#|)u3l0im1kI68~Bgxw<6+}Fa zQ4BI88RW#{m<*>hl0iZ|i^&j*BN=4Glb8&nJd*saZv_z#VibeSNCr9aASS~pjbxAz zPhm2I;z%-MaWM3@lx=j9*WWaY_QKYz=4+VHO3fm}%Jr^>3ANNLGOS$dYM78r%_76f zb*_d9+0-mlR$+CE>pcw<%BfjoSfk?#?HqzNI<64VAy|1_iv;lZ+vZUJUyZu9G-$8y zVRdbZh*(v85-Ia_ZOMs9&2T0&Z%K$C%@Bq%uL6hwRSd+-Dr=}wfR#TI(V3xCMl#5W z*vxQBBN-$_SY`;tkqk15b!~aw6C-I9U?rkh*Omq%r81I1PO+|aIi-;d5{h-LODK+H zkWs8_T}C-3xd2mUqgdCvl*&j3ImNox<&;J;NGR5|E}=M*%vfxLxd&XV3)SjztT2V2RwpgzRd5Wmt_;s>2H59fH*;r8=xo-yvAJl+rMvz?y}6g>xlx z=eI(HhhUA4D`a>G*66rGi-%z4aeaZu%&YOVc$t_Q+EHw_hBs!T%js%zvDqEscl@;Z zF2eRazkmM6KVLthZU{hX(C~OHs2f6y8ZW1=+ z8Z`eLJQQEU;Gwb_1`k!!FnB16D)EZaXVsh}_ina*KS|tLjplZ2&OW^}-#zwvvRo{e zMq!2S$cZAkh<>_QHP5&%X>yAFks`%r8GhWH$=ZDQwVTVu{>YeOvk3pm_2PDWTJdxo zVL%Q|Fl=sT)8(kS$Por))i}fRJBGV2C`3q*YU3oI-jRH`ZcYb^a3KB0IiB5dY|nd- zP#`16DV{9;G5Hw!0m#pB^k)}~)%-qC0}~c0J5KTWY&!cmTD%)IUosy3(gepO6xqn; zajJOUKyH5sbY%L6Ku6wx2z02xf#`oNs^LZru4dz3oBwNGQ*F-5SZp?92!m(Y=0X2! z2p$sT!n4#lxvKV%pdp^6&dHUxhXi5qEOkz<&OIbZjc2KIas}@pL3}(*os+A44+&c2 zS?Zizd3s3DCeJd?S*-tU>#3XD_4R78C_Y%P7_XQkCI5*8KJ`Qse2r+J&S$rJgCJ^G=G_&|PyiFj)wrOVZacG-Bh-=f# z;^VM3fe_QCnZ?I9_a+eH*)+5G_~zdPLg8teS$w=WU;?2OHO(wOUOcdY_V4f7W~a>p z`ew40^2-;Q{DR`Nn(wO&AIjBgzOOTUC}6AkzRB>Rq^;)rQ-%*kZZ+Ruh_84}eXD=- zNpri??ET%ovy4jDFlu9gV2cAp8Me1!%C~JvYMu-E=ulnXHsc9Pv5yWt_H8qsut@vp zP-@>c;|a^Rj}8s@ZBsmlAkB22!{29=SlJ0YnxBj&F4P0 ztBJ)EYR#e@iL;m6PEGP@dUak>pv(!W}&j&Zz`aR_m}SC$$pr6Io~mCX=@U`1C4QX3^P7(2s_XiUB@uv0|&1I zjj?wOGd^(GI?%}Nj-l#9AhA2p$m)(^#)ss5Kt3PPhva-fCLhoTo)2Gl^21#&KA$bh zT2nP?uRo=nZsxj!oQ-dms9rS-1+cq*bO+ek3#Aw+aMJH-jbhJ&g}3wid{uE*%z z_+mQ0!p;ljEOQkPxlc9mC{I32)+{e781kHI;_^+#aX#d`I9mC_7P4Rh`5!TbI z`S!yL-PK(U0D-4js1z(E8USKVvrs8mDKr3tmu8_-un=ef2q?`$rQnrX4FDmeS*R4e zII965Y%~j%g4bg;0ECHVp;GV?tOkJ9SIt7D;8j-*01K{~g-XE-tt!BNja9X1msdHu zd2Lk#z_O}lq5cY9PSpUglB!v#6ug3}0bub|vrs8`(NqJ#dZ}iiQt&#d27o0}%|fN% zrO}sVvD)N)=mfXyA&m^; z(t+U|&Bn;h+|q&JJj}+(zueM+;atnc$g$kgf#H10#>k`G(t+We$;QZ)+|q&Jyx23| z=fhr0n+LbEm~$T+Bj<5T#~aRXY>d3dEgcxnVQh@t#Vs8e&QolR{KPFC7|um(j2y%* z9T?6xofXvW(fHeYz2+l8H`{efx=Z$LTdJd%7mNAjbh}Z%`TE!PTR;AOBp)3~%(u;W z!dcHpM;`QTGoEnb^wE(@ecOyDoO^wAWMkhp;|Zs49~}wZx6OFM3gDwd6MWl@CoK0q zI%LJSeOOPROb2+tS9+=0+k-tlYBmb&=2cL zKA)gg7}k?~?4aCuSWkXe-Vd!Ot6wIUKj5B7YHhO@-4PY<>1>}60)rab?q{Fu9^Gy} zE+?nW^6X8s?$*7rZ81Mu3}Wsr!ZAN zu3}VBsxVbQu9&JghhRM!|G(pTbB4eiw>V;RJJm^#y0)Wb^Kw>G!tWpCip?$5@n;va z=H!*;rLK#`?R@j-=mkcDcAcZ@!$=-;gVSAVh>lkKug5d$t7-gon_mF|>!aQZ6a;==JUF{q~*G z#Xpd;198h#)S_-KfP%dsOHT%F%fKB z@(}j3+4Smq)9eMgjk%6g6oNnfIGHtvpM^X}{s}>!%%(RnpOJE6z``L`az|ttxt*rS zNs|Wn#3#9R)J6NKHC<8mJ44M`XoG? zRb=65q&(;3idDsZay}b3%N*U5RD3_|Zc18* zT?LHWdG7BA34kG?2aI)Qe%KNKL%t6f>&*P9B>)CB2pH?k{GcTO2B8QT>&(2LBLD^+ z2^j0lyniDA2B8TU>&$!?6##=01&rg&#b(p>``cM@kTbU!m`9(^7o*G7VkzArG7f^2 zTXcrUDFy^%oZ%$JfS`*roTeBMTyci86a#`N&hRY7fMAI;JW4SjC?1Ldby_V0-)Axo z$~A6@#)HRzx-HJojR%hb>bN*VHy%6&)N^r$ZajDlsO#bk-FWaAP~klU z!|rx$zkpaWY+KsdN(E!_Lhkxzy1CxIpU^y1E0-cw69w{Bu~KuhXqE}EM9^z$A^iHX z*A+t5Ytm7|P_Icx<$A8y6~fbN(owlq>ve_L z^qO>3uETm=AuzqBIBIb=#@)AgN1cz7VD>tOEo05*LKsGWhrs4V2O2Tz7-oD(&Id&FfIcMW1LA)`A9z0e_l}-5-|F6e zj{wJ&_4Y5v?A4KJ-sStyoGo_Q+_Gt3F(8G+>@yzm%!x4|p~UPn z9@Whwq?ZFd3S^lW1CmY5UcE+wM|JZEsb_eP>gEv=(eNJeJSyG@y02ICcPV^Zb+iI` z$VW#G@@+Go@VxQSk$ZgGj3+!_e01a--!|h(ex4xL9N>u%)m*px=*Tg?t$IxaPxA8w zxn)>S^78~aWmr#mo)l-_wfUrb469<$jsvYIl<()wn|*y~Spc;pjLM z4_NlDUjc@-5`W z?QC}+4vmpo+h`!2Dpw4bi|x*_y;Aj>T8Ohx*E`d@*Ap*SyqT!i5wg;2k}*F_cvoL> z=Goorilg(}O(W27SF>mtjy}KZFvgM+?g<|nEPj(_ktF7Hp}|5yHH#!MXAun+ z!m3#$i8;Awu+Ur0B1z0SM}vh7YZggjPDL6l)LFAg5_9#Z!9uh(iw7cxme&wB_dMQ7 zJsK<|UbC=%u|OP+V<`VX#L+lLK`;<;G>%ax3`87_W0VgA5l7<~RmDKW(Ktr2@j%4o z=FQ#l0i(;sqIkwFx3{5m{0Ua|k6vthj<(O-?~Xq>I$JC!^WDws_95bOyTg8alD@QW zOQwM~%k6?2kJ*i*!`*;Vhut_~H=4I+4!s)C?XVlC?8X3B11cVN;}N@2T#cj3xdBZN zyJ5|ZS~sBZVK=O~QR@cuKJ11yH)`F0`iI@H=0@|rF69m0lO)ri7LeNy&Kof|P#J{X zu;xbX)j*vPcEg$*wQitl2)kj;js6sk4GL%1G*+^BWq^Sm3@+^BWqcX>Cgxl!xJ7kM|VxzV4ZvAOYO z-VJMR)VlFi-VJMR)VlHeyc^cssCDD(yc^cs=ugpDGXF!~4Qp=Hy75ik4Qp=Hy79-n z8`j*Yb>mNYH>|nQpQ5q3@#nl7*4(Id<1cwPthrI^#$WSpSaZX7kL>aNp$7zE_bgRPe)i}ALCrl& zm6D%2dO(nH&r+r2=Zzi^blbC3DfvmG2L!S9ELBQ=#^?b-p*>5LlJ_xrK#*n6Ql;dL zO&$=m*t1kA`Ezt05Cqt>R4Mt>buQ5UcE`1BKW)d^hd*=Y0YPd#OZ8XsC-FQW=&NU` zQu62XJRpdwXQ@*1r}jJ`D5+o-hLCvD2sCgk+ z!-Q0778zDnO$`%jsaa%LSvWOJ2&QI{VP);qFrk^6g~}?tfWoDah6&l!EHbRoafNaY z!5SS`i02TjJg()Nz<29cO}sW=%WMv|*nZ$0OIVI!d%cgpyjnG<>^5)wHof(Cave0p ztz+oW^2j=92wca|q2-}<&=9$fp+lP-TZHamv|RH#Xoy|M(D}7o_c~|@UdPa(<=WRl zL-aa^4lUQe4jRf|$IzkW8rVTY3G5g;v|I;!X!|nQGi zhH}_3bZEIIcF<4~JBAJ|*ToJR%3{aRq2=1xK|^Wm7&^3EAOE4Zp0rtwm)$+Fy3L-f z+!x#3__>~5PMSToAMQ5B()zKE48_%L1oq}Q_0G1_N_GfuioH2zeF%2wZ;HJ+etigb z$Z(3i*y6f-g5A0Dyo#wKLydKt?6}9-A<8LsbKK+X(B>4oIqq?GNOX$5828=N>CU+G z{gaLirPgiiaX*9|Pm5CQ#ke2B4&6?%7vp{iJLEgXZjO6=)_wjM|MoaL#5~1r zj(eOPnx0}e$DP^BPlevyPw%#Ibnm4NqkYV|FRB?J5Oc#wXX3kN0|dft80k!Wqildc zqzxmTiSLaK5D2niq%-mDumJ+`HH>s7z5_NuAhd>&&cwQ6fIw6Yqc~H!=G81D&ztwL zuV$UE*=QCm$C>dd6|FAk2))h6QWx`mKvtZwa&#q`)QL||l1TKDhMeB>2OtWBg>GLaEU({Th z1)&R{V9|P_qS7n~Tl@^mpNch+GRKdW<9V@()-+=t>BCtj08+kbMm%!fHxZEhO*0}= z6u^Xl447ubq-%kR0zoj%h)h-m69Lj-nh}wt4`zReglWb!f>N0MAs40@(+HYj_J?qo zW<(>ahlv0QG0lib(hB$+IL%S)n`-h?HkZbdpYa5RfX*lF0p;*o-Nqr~b!r_5il*B*WV}?Z13}Mp8;6Wnt92mgnQr5d@h&YL2zsX5 zIApvxO9z6U={61-@5s`Dpk}&_L&p2C44}Q588*4yS2_^1Ot*1<8SlB$fuLo&jYGye zt#lwrnQr5d@%}0u2uh~gIApx5N(X|J={61-@1^RlIZB(BH4BG`A9ramP%_QJAz~fV zV4z}}g+s&|rolkLGz*7_^-F_+dTAC85o?zQ1Le{z93s{&4F;;ESvW+jSsDx!OS5o@ zSg$k~sFh~n5V2NiFi7Mba!BB2$m17w*b}+Cembre2#ORH7CMKi zLIr}NLWPCSVG2-zpa@W5p>vqpQy?hXQ&{L6rtB05itH2?I)|w^1%jeDg@w*xmN*51 zA~uCZoTL26a`&4_+|pv6J=@05WcLAyC%b>rhIa0VFyIym@@caqIiEHMH61@~K7_QM zF6RIIkAJ>?#9cA(xkUnfaSuAW`#h9`jrktIetJ1wtbB(t!6TqA?m=S?V`4|J&zg4$ zCu`qhOyvmb%N8}}GUjjuT%2c}=S$ledA@2wp!YFT)2y8=H7_`uz?k%=S%#k_!30Kp zm}VJ%mJ1UYF=U!$_*qI!V1%1#rt$|~gf@W@lBQXPKQ;ac-of}&m0+-2ICfQTMa`Sj9aXM3_}}? zTdar-LmP}+td9&s8;o15mJCB1oXJ=_c^KOArR$yEYNzfwhHd&d=3}q;cRDywT*pu) z_;6P;^LzR%@)4_qhI)*ACN2Y@VWpxZyLXJrX2b$^_s)YPVz`=o< zI)*ACKN@gwprekVO305092_X9W2h4HqXG|S|HQyEY#$tOrm+qc5mFmevzCw_9XL49 zOUF>Xr2GiM!GTgbhAJUHN^o$Xk&dBC$d42p9H^sXs1ov{h4NFtyGgU2jnA z&tBdwqHeqFR#KmrAFe-ozF90s>)B!>eK$`8h8T*?D(@%jX5DV*O9d$eF-LmxVX?TZ z;Da9K_&&W@oS)AowLcT8n4@hrPBsgY6~7azm?Ql3Zc^3KLK}0mr+>d4uQtC{{7{Hv zj`8_?vbo-VTe9*3LnD*CdX(~^10pb_Qfy8~X^0fJnmJM-N<(~5%N(B`r6F2qW{y^h z(hwmuGe@XLX^0lenWGh>G{gw$%rP2K%Dm;b+4frc9mG^_-^a^qQq$3QpRJmggo4^8 zgF{i}c7uHPmh|n)PKYupBvo!VSYIty)Ah}G)f~t$YR>z-x~}1e#HRUQ7W|jvl_PvI zJfv1`5B~gsF39*$Ub)@ie|@u9uRo5$rG`uZ4VK#t2VS+}6szcDd?>QqZt-tJE-uV6 zK9u?YukFgV+eVJ4Ig)94Y>(GWCX-oC@(b3#uyLZth6jWVzC@{#VNHLANt3zugj-N$bfca5KqbRVrz(=}RLHXG?K{%fPAU&}T9 z`e9Kutg2rdRb5ly)k9VH>}s-0iff~sYvjjH*No(PZIp10^woT~9kf|;ZPam%{B1)% zbOm*7RCHB=}wdTM&qFI_-&aJp!lGo~Y0x za8i5HpXLtxVOWN&ded3_9NJNy-Ikw-l}(T&fs<2SZFSRt6Kbl?nk1FqA6BGts-(JGb(|PEEtk ztS&zHO=U@r!v}-q@ll&uC@`BP$zLC}oP`48S&}>-wI3I&|J^O`s8~00SvP{IyW)C;%{x zBE+*$yKuJM96u0et}h@r1{VyZ>%?~Vz>*n2kS*CZ?%JusD>}I#Q$1|BC)L!Am^ln}6w`o$}NtCIGJ4J}%)9npqD&kBL zqWE-6Lz#-WQiLcz-NsO+B8n6tichyLl&J_AMTp|l?FwZo0z?s_`1FNrWhw$f5u*6? z{p|mmAYg$8#q2U+9F=PZYInQGqi1X4g;>wjfxDH4I>FK4gj9djmq$!%JtF# z566$eZ2m}2&xsQZ<-~YePFbP}(Zht-ly@t-YecL*1^1u>wq`i)-pAUkwPiYHp zc{jUVtjqZ}9q{;UxBQ&!O#O($zz}rABDmbAcYleIDF%!{M@;mxFwtRvDEiZ7T4CH9 z$|LWG;Wzcpgh$$s!e68p*$v&1^P}KSzd_O;iQru)1FehIZC$V7{LEnMKo`$XF5mfb z{FC#}2y(|5NW=m&$nbT(6`#e2=uwIAi{oOi!X^{@F^c7ETiuukVP zNfM{bX7)Qs2q=7#gv>!V0we?!J4r(3pql{_0t%cYA#>0T0SN&`O_Go~=%#>#fI=oo z$Q*QIKte$Ak|bmf`fMj5pkPT7evV$qEmr?Y&p8MUX0Sz`yezicB8AfJ@fr2y?P61` zzqEh8Sk?Qoc~PQyWSzX)>^7_P`s>5r+LH080wQM|6((^N5Ln}=K<@%gR16E^jv34_ z1icFm6%dwg6(*B$eF0HBjtcZH(5Pcr5Y)^dZ-~%ca2NtHKaL9YE;v*W)~&~grM}`Bq3yo-bPa|J&~IeIc3*qhQKZLWf4;q6m+q@asUC~}>QlX2doLgLIzr#Ria5;hsMsTM z2h5I|Jq~xw=&0M{u!l^J(j6gx@um274EOSOnAuUlN8}Hf9%Xzy{+Rhu&d1XrOK~G%=oDBWARI-@AL(BTE<9&lOlAgys=&<1reoQ5wd8x4k!f< z1zr&{IhnpF1r9}B5wbYhZYc#1rCbp*Nx2>>1rIe`5wb{`&ME~BrCSlQD20A21raq{ z5z3_Pya<^h^?UjqY;(V>J~s`X^*8+9ri!)HWXaw6Ld|igl4<9ciRTe=gY4_jc-jO0Bi4bhu%YK@Pv!zkm40 zW_ObsXXfnJoeUx&_+1+PFnJ7(gp}aY=<-oC5)y?=qv@k)BxDblMo)Yi(Jey5kA#%s z(#YvYL5+k=3KM?sB*b*YsUSR9rG}x|i=8F}zyc>^r2x3HlucWG>1n8BjrKrXh1tE6IQgO5K~x zMIj^uDyVT!QRO0_^!*qz7bT1gsG8CjV#r+7Co-Ud(&I76TofNNpn}pfG00q07BZlM zzR~>@Wg`OmP6tIzh=6|3L6Ptypg-%N$mS8yUvyBU>ImqsIw-w%X-4MfBQf*iGCnQM{CwnSe%z1WIeq8g|C`0#65h{^4#S4$ z$FQm2bF<;~+^DQK^?7bKJf0hsv8lgvv*GRBsEkd0otq6$=SF30>gU{ScsVyJV^bgJ zX2Zj|Q9pL)gqOo%Pw;Iza>9IBE&jJ#+@^h~)%jU;bQb)Xj_`QYkLfJO`8Ji5N^WzV!lUoEP%xBlaktIK8arQ}9iT(VH^ zoD;V%ZvfH%zc9J0`+fSU0MqG63m}~ZO6B?d+i*}ME%P?=eCFklw4B?>^EsD8(z0zM z&u3c>Nz1d1JfCMdBrU@>@_dHnkhI*|$n&|CL!w#rU)TlP-!Hc1?5-;QN)3O>!BZPe zoes@_huN|xPcfh7Y%KVrEi3a7-tcTRl+GD%cz7C0XvZ5KtR8`@^Wu5qd*w2H3}KtT2#G=`NwjV{d3T&K zTdm8@=HW~?`>T)=EUKO)5hSK7R0$UKPm%}{(-7f=X$+MXCJ56O`9)}9sWZeFL)Z%W`3MeBQ?19)tC%d1C`pXM(S$s ztI;`y`*7-h#@#^OcB_$E+52jYa5qrJ-D;%wAo^-_?#AH^^o+ZKn(kIZ^Nn0JP~qKb zXugrF2I{?A4b3-l)j;)ktD*VEd8E*nE_fQO1^Ds7dBdj$Rt9c0G~dX*8(1f})zEw+ zR}HKh+-hjPaqgl%qhJl;RwI@-d}?4t;Z{TQjoiC|^@Upv%{Ow@cys#Q)vbo+8|N-c z*IPWz+qfEzLBfOZ*es=-#B+s zpKtsgS3~oSTs8iPtD*Tut{Q*F)zEyyR^!i3Kg@A|7n6u z`moILh^wY0yr^jXuz;|uVM&UVbZ^oE!VZQdDN@p1Nec+O6_%t(N%tcyAnZ(7k|HJD ziL`*Q3t>r$lync$0>X}iB`H$U_A?6zy9<`2NJ;zDEFkP8SdtG&S?%E&SwV`iSvtQ`N`w+Vpl99tzcwAGfLaZWta7 zg^?e(+1O?n9tEOg)Kd+wJ-RPf!0b_Pv>=2ub&=Xo*+L`lPRcFWPo5z>vfTS z6W75|h;*=LUy8eOncm_M&nZc5brmX&j`m}vRa4di#;ab*SlPQGHEkDyU#c)H>MZ{Cly~p^$}j zsOf6AURB1eN0!yWE^Y5Z3e};W-mL4rag9ij2G(8rijIMWWGbRvp4JGu`OG=AU!P*s@gf|~*oy5e=4T`=> fct}jwN>q~_&Kdh;|*`p{azorqvJf*ZwxP{9^KUAWSw zzgy9z8!IKEbyp~ETouvmbSJI~7rGbcOr@(C&dmJt&3{Jj$laKPm#yPZ&cSBBhhK>} z_G2bi@~7~I^1|2})dfD~itvI0AIDZWI=NMx$=9)LYq*=BdbW@CYylP0l5hKpz~77m z&yHd*a~8Y8#OGiQQz3!%U zQ|{R()l^W=yeIdV+*|93=(8aRimMvqil zxTAHrMG{5zvQ*yG%D5ex#jc+K)G}TgZO(&giDDBw;pq0kX+^dUwvLwe)aqce2g7%P zERPQE7kJ>h?=3sGflj#XLqOF(i6eA7$(=Pj*>XL<+QT9-u@VwdqF#=3@2;HNRJocIUvb=Bbj delta 693 zcmXX^&ubH55H&wGNi&;dlcq_Uv`s7)gpy{{G}&&FT5D>xRuG}!ty%<6@kjBHgHrqt z?Do}zf;JbS7rg|@Q(2p?5yUMqPL@M0gu7qdiEl26nI;so|Zj;p@Ofyi80AzY!}6E-OqC zrsEZiBnhjLDdE3FCq?)Q<5Mre%$V4A6S~Hflhd%BnR9Y63>y<@2MIq0Yod~kSW^8a zUF7OhxR%lJEvyvk^8bd{64l2>PqiHxS86N#f~{y(E_fC$iCHB(ma0qoYB(?4l0g^_ z+x${n;v*m7bEu*uMv^U|)RL6V0h6nmt%<6NjOwjcbUegkDg!@#* zkxz%ksQms8+T5aZ$a;0$4ifG{JO%NS_slzHZ^@eO7B3y)mCJOlmZc%eq3v3eDg9zp UJv?w1RPXud93FSJ8m?pi02)r@RsaA1 diff --git a/src/main/resources/recipes.json b/src/main/resources/recipes.json index 48315299998..1d3b2b16f16 100644 --- a/src/main/resources/recipes.json +++ b/src/main/resources/recipes.json @@ -1,5 +1,5 @@ { - "version": 471, + "version": 475, "recipes": [ { "type": 4, @@ -988,6 +988,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:cut_copper" } ], @@ -1005,7 +1006,7 @@ ], "output": [ { - "count": 2, + "count": 8, "blockState": "minecraft:cut_copper_slab;top_slot_bit=0" } ], @@ -1023,6 +1024,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" } ], @@ -1288,6 +1290,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:exposed_cut_copper" } ], @@ -1305,6 +1308,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" } ], @@ -1322,7 +1326,7 @@ ], "output": [ { - "count": 2, + "count": 8, "blockState": "minecraft:exposed_cut_copper_slab;top_slot_bit=0" } ], @@ -1571,6 +1575,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:oxidized_cut_copper" } ], @@ -1588,7 +1593,7 @@ ], "output": [ { - "count": 2, + "count": 8, "blockState": "minecraft:oxidized_cut_copper_slab;top_slot_bit=0" } ], @@ -1606,6 +1611,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" } ], @@ -2831,6 +2837,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:waxed_cut_copper" } ], @@ -2848,7 +2855,7 @@ ], "output": [ { - "count": 2, + "count": 8, "blockState": "minecraft:waxed_cut_copper_slab;top_slot_bit=0" } ], @@ -2866,6 +2873,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" } ], @@ -2883,7 +2891,7 @@ ], "output": [ { - "count": 2, + "count": 8, "blockState": "minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=0" } ], @@ -2936,6 +2944,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:waxed_exposed_cut_copper" } ], @@ -2953,6 +2962,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" } ], @@ -3005,6 +3015,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:waxed_oxidized_cut_copper" } ], @@ -3022,7 +3033,7 @@ ], "output": [ { - "count": 2, + "count": 8, "blockState": "minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=0" } ], @@ -3040,6 +3051,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" } ], @@ -3091,6 +3103,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:waxed_weathered_cut_copper" } ], @@ -3108,7 +3121,7 @@ ], "output": [ { - "count": 2, + "count": 8, "blockState": "minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=0" } ], @@ -3126,6 +3139,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" } ], @@ -3178,6 +3192,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:weathered_cut_copper" } ], @@ -3195,7 +3210,7 @@ ], "output": [ { - "count": 2, + "count": 8, "blockState": "minecraft:weathered_cut_copper_slab;top_slot_bit=0" } ], @@ -3213,6 +3228,7 @@ ], "output": [ { + "count": 4, "blockState": "minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0" } ], @@ -12453,7 +12469,7 @@ "type": 1, "input": { "A": { - "legacyId": 623, + "legacyId": 624, "id": "minecraft:amethyst_shard", "damage": 32767 } @@ -19268,7 +19284,7 @@ ], "output": [ { - "legacyId": 621, + "legacyId": 622, "id": "minecraft:glow_frame" } ], @@ -29118,7 +29134,7 @@ "type": 1, "input": { "A": { - "legacyId": 623, + "legacyId": 624, "id": "minecraft:amethyst_shard", "damage": 32767 }, @@ -29130,7 +29146,7 @@ }, "output": [ { - "legacyId": 624, + "legacyId": 625, "id": "minecraft:spyglass" } ], @@ -30244,7 +30260,7 @@ "type": 1, "input": { "A": { - "legacyId": 623, + "legacyId": 624, "id": "minecraft:amethyst_shard", "damage": 32767 }, @@ -49401,6 +49417,78 @@ "outputId": "minecraft:lingering_potion", "outputMeta": 31 }, + { + "inputId": "minecraft:potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, { "inputId": "minecraft:potion", "inputMeta": 4, @@ -49713,30 +49801,6 @@ "outputId": "minecraft:lingering_potion", "outputMeta": 24 }, - { - "inputId": "minecraft:potion", - "inputMeta": 21, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 21, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 21, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 23 - }, { "inputId": "minecraft:potion", "inputMeta": 21, @@ -50049,30 +50113,6 @@ "outputId": "minecraft:lingering_potion", "outputMeta": 7 }, - { - "inputId": "minecraft:potion", - "inputMeta": 5, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 6 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 5, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 6 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 5, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 6 - }, { "inputId": "minecraft:potion", "inputMeta": 25, @@ -50673,30 +50713,6 @@ "outputId": "minecraft:lingering_potion", "outputMeta": 4 }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:rabbit_foot", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:rabbit_foot", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:rabbit_foot", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 1 - }, { "inputId": "minecraft:potion", "inputMeta": 0, diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index 98a8185ed2a..8a8dad1f547 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -2331,7 +2331,7 @@ }, { "name": "minecraft:glow_stick", - "id": 166, + "id": 600, "oldId": 166 }, { @@ -3692,7 +3692,7 @@ }, { "name": "minecraft:spawn_egg", - "id": 628, + "id": 630, "oldId": 383 }, { @@ -4572,130 +4572,130 @@ }, { "name": "minecraft:lodestone_compass", - "id": 600, + "id": 601, "oldId": 741 }, { "name": "minecraft:netherite_ingot", - "id": 601, + "id": 602, "oldId": 742 }, { "name": "minecraft:netherite_sword", - "id": 602, + "id": 603, "oldId": 743 }, { "name": "minecraft:netherite_shovel", - "id": 603, + "id": 604, "oldId": 744 }, { "name": "minecraft:netherite_pickaxe", - "id": 604, + "id": 605, "oldId": 745 }, { "name": "minecraft:netherite_axe", - "id": 605, + "id": 606, "oldId": 746 }, { "name": "minecraft:netherite_hoe", - "id": 606, + "id": 607, "oldId": 747 }, { "name": "minecraft:netherite_helmet", - "id": 607, + "id": 608, "oldId": 748 }, { "name": "minecraft:netherite_chestplate", - "id": 608, + "id": 609, "oldId": 749 }, { "name": "minecraft:netherite_leggings", - "id": 609, + "id": 610, "oldId": 750 }, { "name": "minecraft:netherite_boots", - "id": 610, + "id": 611, "oldId": 751 }, { "name": "minecraft:netherite_scrap", - "id": 611, + "id": 612, "oldId": 752 }, { "name": "minecraft:crimson_sign", - "id": 612, + "id": 613, "oldId": 753 }, { "name": "minecraft:warped_sign", - "id": 613, + "id": 614, "oldId": 754 }, { "name": "minecraft:crimson_door", - "id": 614, + "id": 615, "oldId": 755 }, { "name": "minecraft:warped_door", - "id": 615, + "id": 616, "oldId": 756 }, { "name": "minecraft:warped_fungus_on_a_stick", - "id": 616, + "id": 617, "oldId": 757 }, { "name": "minecraft:chain", - "id": 617, + "id": 618, "oldId": 758 }, { "name": "minecraft:music_disc_pigstep", - "id": 618, + "id": 619, "oldId": 759 }, { "name": "minecraft:nether_sprouts", - "id": 619, + "id": 620, "oldId": 760 }, { "name": "minecraft:soul_campfire", - "id": 620, + "id": 621, "oldId": 801 }, { "name": "minecraft:boat", - "id": 625, + "id": 627, "oldId": 333, "deprecated": true }, { "name": "minecraft:dye", - "id": 626, + "id": 628, "oldId": 351, "deprecated": true }, { "name": "minecraft:banner_pattern", - "id": 627, + "id": 629, "oldId": 434, "deprecated": true }, { "name": "minecraft:end_crystal", - "id": 629, + "id": 631, "oldId": 426 } ] \ No newline at end of file diff --git a/src/test/java/org/powernukkit/updater/AllResourcesDownloader.java b/src/test/java/org/powernukkit/updater/AllResourcesDownloader.java index 14abf1fa280..f9e604abe38 100644 --- a/src/test/java/org/powernukkit/updater/AllResourcesDownloader.java +++ b/src/test/java/org/powernukkit/updater/AllResourcesDownloader.java @@ -5,6 +5,9 @@ import java.io.*; import java.net.URL; import java.net.URLConnection; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.nio.file.StandardCopyOption; /** * @author joserobjr @@ -40,13 +43,14 @@ private void downloadResources() { private void copyProxyPassResources(String pathProxyPassData) { copy(pathProxyPassData, "biome_definitions.dat", "src/main/resources/biome_definitions.dat"); copy(pathProxyPassData, "entity_identifiers.dat", "src/main/resources/entity_identifiers.dat"); - copy(pathProxyPassData, "creativeitems.json", "src/main/resources/creativeitems.json"); + copy(pathProxyPassData, "creativeitems.json", "src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json"); copy(pathProxyPassData, "runtime_item_states.json", "src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json"); - copy(pathProxyPassData, "recipes.json", "src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json"); + copy(pathProxyPassData, "recipes.json", "src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json"); } + @SneakyThrows private void copy(String path, String file, String into) { - + Files.copy(Paths.get(path).resolve(file), Paths.get(into), StandardCopyOption.REPLACE_EXISTING); } @SneakyThrows diff --git a/src/test/java/org/powernukkit/updater/RuntimeItemIdUpdater.java b/src/test/java/org/powernukkit/updater/RuntimeItemIdUpdater.java index 8bfa5fb759c..afd719dd589 100644 --- a/src/test/java/org/powernukkit/updater/RuntimeItemIdUpdater.java +++ b/src/test/java/org/powernukkit/updater/RuntimeItemIdUpdater.java @@ -58,7 +58,7 @@ public static void main(String[] args) throws IOException { } JsonArray requiredItems; - try(InputStream resourceAsStream = Server.class.getClassLoader().getResourceAsStream("org/powernukkit/dumps/proxypass/runtime_item_states.json"); + try(InputStream resourceAsStream = RuntimeItemIdUpdater.class.getClassLoader().getResourceAsStream("org/powernukkit/updater/dumps/proxypass/runtime_item_states.json"); Reader reader = new InputStreamReader(Objects.requireNonNull(resourceAsStream), StandardCharsets.UTF_8); BufferedReader bufferedReader = new BufferedReader(reader); ) { diff --git a/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json b/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json index 79d91571088..51d7951bd3b 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json +++ b/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json @@ -64,7 +64,7 @@ "component_based": false }, "minecraft:amethyst_shard": { - "runtime_id": 623, + "runtime_id": 624, "component_based": false }, "minecraft:ancient_debris": { @@ -132,7 +132,7 @@ "component_based": false }, "minecraft:banner_pattern": { - "runtime_id": 627, + "runtime_id": 629, "component_based": false }, "minecraft:barrel": { @@ -316,7 +316,7 @@ "component_based": false }, "minecraft:boat": { - "runtime_id": 625, + "runtime_id": 627, "component_based": false }, "minecraft:bone": { @@ -492,7 +492,7 @@ "component_based": false }, "minecraft:chain": { - "runtime_id": 617, + "runtime_id": 618, "component_based": false }, "minecraft:chain_command_block": { @@ -796,7 +796,7 @@ "component_based": false }, "minecraft:crimson_door": { - "runtime_id": 614, + "runtime_id": 615, "component_based": false }, "minecraft:crimson_double_slab": { @@ -836,7 +836,7 @@ "component_based": false }, "minecraft:crimson_sign": { - "runtime_id": 612, + "runtime_id": 613, "component_based": false }, "minecraft:crimson_slab": { @@ -1172,7 +1172,7 @@ "component_based": false }, "minecraft:dye": { - "runtime_id": 626, + "runtime_id": 628, "component_based": false }, "minecraft:egg": { @@ -1700,7 +1700,7 @@ "component_based": false }, "minecraft:end_crystal": { - "runtime_id": 629, + "runtime_id": 631, "component_based": false }, "minecraft:end_gateway": { @@ -1896,11 +1896,11 @@ "component_based": false }, "minecraft:glow_berries": { - "runtime_id": 630, + "runtime_id": 632, "component_based": false }, "minecraft:glow_frame": { - "runtime_id": 621, + "runtime_id": 622, "component_based": false }, "minecraft:glow_ink_sac": { @@ -1916,7 +1916,7 @@ "component_based": false }, "minecraft:glow_stick": { - "runtime_id": 166, + "runtime_id": 600, "component_based": false }, "minecraft:glowingobsidian": { @@ -1932,7 +1932,7 @@ "component_based": false }, "minecraft:goat_horn": { - "runtime_id": 622, + "runtime_id": 623, "component_based": false }, "minecraft:goat_spawn_egg": { @@ -2572,7 +2572,7 @@ "component_based": false }, "minecraft:lodestone_compass": { - "runtime_id": 600, + "runtime_id": 601, "component_based": false }, "minecraft:log": { @@ -2727,8 +2727,12 @@ "runtime_id": 540, "component_based": false }, + "minecraft:music_disc_otherside": { + "runtime_id": 626, + "component_based": false + }, "minecraft:music_disc_pigstep": { - "runtime_id": 618, + "runtime_id": 619, "component_based": false }, "minecraft:music_disc_stal": { @@ -2788,7 +2792,7 @@ "component_based": false }, "minecraft:nether_sprouts": { - "runtime_id": 619, + "runtime_id": 620, "component_based": false }, "minecraft:nether_star": { @@ -2808,7 +2812,7 @@ "component_based": false }, "minecraft:netherite_axe": { - "runtime_id": 605, + "runtime_id": 606, "component_based": false }, "minecraft:netherite_block": { @@ -2816,43 +2820,43 @@ "component_based": false }, "minecraft:netherite_boots": { - "runtime_id": 610, + "runtime_id": 611, "component_based": false }, "minecraft:netherite_chestplate": { - "runtime_id": 608, + "runtime_id": 609, "component_based": false }, "minecraft:netherite_helmet": { - "runtime_id": 607, + "runtime_id": 608, "component_based": false }, "minecraft:netherite_hoe": { - "runtime_id": 606, + "runtime_id": 607, "component_based": false }, "minecraft:netherite_ingot": { - "runtime_id": 601, + "runtime_id": 602, "component_based": false }, "minecraft:netherite_leggings": { - "runtime_id": 609, + "runtime_id": 610, "component_based": false }, "minecraft:netherite_pickaxe": { - "runtime_id": 604, + "runtime_id": 605, "component_based": false }, "minecraft:netherite_scrap": { - "runtime_id": 611, + "runtime_id": 612, "component_based": false }, "minecraft:netherite_shovel": { - "runtime_id": 603, + "runtime_id": 604, "component_based": false }, "minecraft:netherite_sword": { - "runtime_id": 602, + "runtime_id": 603, "component_based": false }, "minecraft:netherrack": { @@ -3588,7 +3592,7 @@ "component_based": false }, "minecraft:soul_campfire": { - "runtime_id": 620, + "runtime_id": 621, "component_based": false }, "minecraft:soul_fire": { @@ -3616,7 +3620,7 @@ "component_based": false }, "minecraft:spawn_egg": { - "runtime_id": 628, + "runtime_id": 630, "component_based": false }, "minecraft:spider_eye": { @@ -3680,7 +3684,7 @@ "component_based": false }, "minecraft:spyglass": { - "runtime_id": 624, + "runtime_id": 625, "component_based": false }, "minecraft:squid_spawn_egg": { @@ -3988,7 +3992,7 @@ "component_based": false }, "minecraft:warped_door": { - "runtime_id": 615, + "runtime_id": 616, "component_based": false }, "minecraft:warped_double_slab": { @@ -4008,7 +4012,7 @@ "component_based": false }, "minecraft:warped_fungus_on_a_stick": { - "runtime_id": 616, + "runtime_id": 617, "component_based": false }, "minecraft:warped_hyphae": { @@ -4032,7 +4036,7 @@ "component_based": false }, "minecraft:warped_sign": { - "runtime_id": 613, + "runtime_id": 614, "component_based": false }, "minecraft:warped_slab": { diff --git a/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json index 5bdc412a55a..d32ba0cbfa0 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json +++ b/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json @@ -4044,6 +4044,9 @@ { "id" : "minecraft:music_disc_wait" }, + { + "id" : "minecraft:music_disc_otherside" + }, { "id" : "minecraft:music_disc_pigstep" }, @@ -5200,4 +5203,4 @@ "id" : "minecraft:lodestone_compass" } ] -} +} \ No newline at end of file diff --git a/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json index 085a61aaa4e..ee247739230 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json +++ b/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json @@ -1,59297 +1,59313 @@ { - "version": 471, - "recipes": [ - { - "type": 4, - "uuid": "442d85ed-8272-4543-a6f1-418f90ded05d" - }, - { - "type": 4, - "uuid": "8b36268c-1829-483c-a0f1-993b7156a8f2" - }, - { - "type": 4, - "uuid": "602234e4-cac1-4353-8bb7-b1ebff70024b" - }, - { - "id": "minecraft:cartography_table_locator_map", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 391, - "id": "minecraft:compass", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 515, - "id": "minecraft:empty_map", - "damage": 2 - } - ], - "block": "cartography_table", - "priority": 0 - }, - { - "id": "minecraft:cartography_table_map", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 515, - "id": "minecraft:empty_map" - } - ], - "block": "cartography_table", - "priority": 0 - }, - { - "type": 4, - "uuid": "98c84b38-1085-46bd-b1ce-dd38c159e6cc" - }, - { - "id": "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -395, - "id": "minecraft:chiseled_deepslate", - "blockRuntimeId": 1129 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -380, - "id": "minecraft:cobbled_deepslate_slab", - "count": 2, - "blockRuntimeId": 1146 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -381, - "id": "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId": 1148 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -382, - "id": "minecraft:cobbled_deepslate_wall", - "blockRuntimeId": 1156 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -392, - "id": "minecraft:deepslate_brick_slab", - "count": 2, - "blockRuntimeId": 4105 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -391, - "id": "minecraft:deepslate_bricks" - } - ], - "output": [ - { - "legacyId": -392, - "id": "minecraft:deepslate_brick_slab", - "count": 2, - "blockRuntimeId": 4105 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate" - } - ], - "output": [ - { - "legacyId": -392, - "id": "minecraft:deepslate_brick_slab", - "count": 2, - "blockRuntimeId": 4105 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -393, - "id": "minecraft:deepslate_brick_stairs", - "blockRuntimeId": 4107 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -391, - "id": "minecraft:deepslate_bricks" - } - ], - "output": [ - { - "legacyId": -393, - "id": "minecraft:deepslate_brick_stairs", - "blockRuntimeId": 4107 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecut", - "type": 0, - "input": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate" - } - ], - "output": [ - { - "legacyId": -393, - "id": "minecraft:deepslate_brick_stairs", - "blockRuntimeId": 4107 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -394, - "id": "minecraft:deepslate_brick_wall", - "blockRuntimeId": 4115 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -391, - "id": "minecraft:deepslate_bricks" - } - ], - "output": [ - { - "legacyId": -394, - "id": "minecraft:deepslate_brick_wall", - "blockRuntimeId": 4115 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate" - } - ], - "output": [ - { - "legacyId": -394, - "id": "minecraft:deepslate_brick_wall", - "blockRuntimeId": 4115 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -391, - "id": "minecraft:deepslate_bricks", - "blockRuntimeId": 4277 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate" - } - ], - "output": [ - { - "legacyId": -391, - "id": "minecraft:deepslate_bricks", - "blockRuntimeId": 4277 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -388, - "id": "minecraft:deepslate_tile_slab", - "count": 2, - "blockRuntimeId": 4288 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -391, - "id": "minecraft:deepslate_bricks" - } - ], - "output": [ - { - "legacyId": -388, - "id": "minecraft:deepslate_tile_slab", - "count": 2, - "blockRuntimeId": 4288 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -387, - "id": "minecraft:deepslate_tiles" - } - ], - "output": [ - { - "legacyId": -388, - "id": "minecraft:deepslate_tile_slab", - "count": 2, - "blockRuntimeId": 4288 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate" - } - ], - "output": [ - { - "legacyId": -388, - "id": "minecraft:deepslate_tile_slab", - "count": 2, - "blockRuntimeId": 4288 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -389, - "id": "minecraft:deepslate_tile_stairs", - "blockRuntimeId": 4290 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -391, - "id": "minecraft:deepslate_bricks" - } - ], - "output": [ - { - "legacyId": -389, - "id": "minecraft:deepslate_tile_stairs", - "blockRuntimeId": 4290 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -387, - "id": "minecraft:deepslate_tiles" - } - ], - "output": [ - { - "legacyId": -389, - "id": "minecraft:deepslate_tile_stairs", - "blockRuntimeId": 4290 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate" - } - ], - "output": [ - { - "legacyId": -389, - "id": "minecraft:deepslate_tile_stairs", - "blockRuntimeId": 4290 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -390, - "id": "minecraft:deepslate_tile_wall", - "blockRuntimeId": 4298 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -391, - "id": "minecraft:deepslate_bricks" - } - ], - "output": [ - { - "legacyId": -390, - "id": "minecraft:deepslate_tile_wall", - "blockRuntimeId": 4298 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -387, - "id": "minecraft:deepslate_tiles" - } - ], - "output": [ - { - "legacyId": -390, - "id": "minecraft:deepslate_tile_wall", - "blockRuntimeId": 4298 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate" - } - ], - "output": [ - { - "legacyId": -390, - "id": "minecraft:deepslate_tile_wall", - "blockRuntimeId": 4298 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -387, - "id": "minecraft:deepslate_tiles", - "blockRuntimeId": 4460 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -391, - "id": "minecraft:deepslate_bricks" - } - ], - "output": [ - { - "legacyId": -387, - "id": "minecraft:deepslate_tiles", - "blockRuntimeId": 4460 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate" - } - ], - "output": [ - { - "legacyId": -387, - "id": "minecraft:deepslate_tiles", - "blockRuntimeId": 4460 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate", - "blockRuntimeId": 6203 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecut", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -384, - "id": "minecraft:polished_deepslate_slab", - "count": 2, - "blockRuntimeId": 6206 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate" - } - ], - "output": [ - { - "legacyId": -384, - "id": "minecraft:polished_deepslate_slab", - "count": 2, - "blockRuntimeId": 6206 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -385, - "id": "minecraft:polished_deepslate_stairs", - "blockRuntimeId": 6208 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting", - "type": 0, - "input": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate" - } - ], - "output": [ - { - "legacyId": -385, - "id": "minecraft:polished_deepslate_stairs", - "blockRuntimeId": 6208 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecut", - "type": 0, - "input": [ - { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate" - } - ], - "output": [ - { - "legacyId": -386, - "id": "minecraft:polished_deepslate_wall", - "blockRuntimeId": 6216 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecut", - "type": 0, - "input": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate" - } - ], - "output": [ - { - "legacyId": -386, - "id": "minecraft:polished_deepslate_wall", - "blockRuntimeId": 6216 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_andesite_slab", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 5 - } - ], - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 2, - "blockRuntimeId": 7258 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_andesite_stairs", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 5 - } - ], - "output": [ - { - "legacyId": -171, - "id": "minecraft:andesite_stairs", - "blockRuntimeId": 144 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_andesite_wall", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1323 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_blackstone_slab_from_blackstone", - "type": 0, - "input": [ - { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -282, - "id": "minecraft:blackstone_slab", - "count": 2, - "blockRuntimeId": 497 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_blackstone_stairs_from_blackstone", - "type": 0, - "input": [ - { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -276, - "id": "minecraft:blackstone_stairs", - "blockRuntimeId": 499 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_blackstone_wall_from_blackstone", - "type": 0, - "input": [ - { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -277, - "id": "minecraft:blackstone_wall", - "blockRuntimeId": 507 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_brick_slab", - "type": 0, - "input": [ - { - "legacyId": 45, - "id": "minecraft:brick_block" - } - ], - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 2, - "blockRuntimeId": 7227 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_brick_slab_from_polished_blackstone", - "type": 0, - "input": [ - { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -284, - "id": "minecraft:polished_blackstone_brick_slab", - "count": 2, - "blockRuntimeId": 5828 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_brick_stairs", - "type": 0, - "input": [ - { - "legacyId": 45, - "id": "minecraft:brick_block" - } - ], - "output": [ - { - "legacyId": 108, - "id": "minecraft:brick_stairs", - "blockRuntimeId": 876 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_brick_stairs_from_polished_blackstone", - "type": 0, - "input": [ - { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -275, - "id": "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId": 5830 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_brick_wall", - "type": 0, - "input": [ - { - "legacyId": 45, - "id": "minecraft:brick_block" - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1325 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_brick_wall_from_polished_blackstone", - "type": 0, - "input": [ - { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -278, - "id": "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId": 5838 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_bricks_from_polished_blackstone", - "type": 0, - "input": [ - { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -274, - "id": "minecraft:polished_blackstone_bricks", - "blockRuntimeId": 6000 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_chiseled_from_polished_blackstone", - "type": 0, - "input": [ - { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -279, - "id": "minecraft:chiseled_polished_blackstone", - "blockRuntimeId": 1131 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_chiseled_nether_bricks_from_nether_brick", - "type": 0, - "input": [ - { - "legacyId": 112, - "id": "minecraft:nether_brick", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -302, - "id": "minecraft:chiseled_nether_bricks", - "blockRuntimeId": 1130 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_chiseled_polished_from_blackstone", - "type": 0, - "input": [ - { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -279, - "id": "minecraft:chiseled_polished_blackstone", - "blockRuntimeId": 1131 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_cobbledouble_stone_slab", - "type": 0, - "input": [ - { - "legacyId": 4, - "id": "minecraft:cobblestone" - } - ], - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 2, - "blockRuntimeId": 7226 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_cobblestone_stairs", - "type": 0, - "input": [ - { - "legacyId": 4, - "id": "minecraft:cobblestone" - } - ], - "output": [ - { - "legacyId": 67, - "id": "minecraft:stone_stairs", - "blockRuntimeId": 7281 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_cobblestone_wall", - "type": 0, - "input": [ - { - "legacyId": 4, - "id": "minecraft:cobblestone" - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1319 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_copper_block_to_cut_copper", - "type": 0, - "input": [ - { - "legacyId": -340, - "id": "minecraft:copper_block", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -347, - "id": "minecraft:cut_copper", - "blockRuntimeId": 3910 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_copper_block_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -340, - "id": "minecraft:copper_block", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -361, - "id": "minecraft:cut_copper_slab", - "count": 2, - "blockRuntimeId": 3911 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_copper_block_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -340, - "id": "minecraft:copper_block", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -354, - "id": "minecraft:cut_copper_stairs", - "blockRuntimeId": 3913 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_cut_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -347, - "id": "minecraft:cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -361, - "id": "minecraft:cut_copper_slab", - "count": 2, - "blockRuntimeId": 3911 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_cut_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -347, - "id": "minecraft:cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -354, - "id": "minecraft:cut_copper_stairs", - "blockRuntimeId": 3913 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_dark_prismarine_slab", - "type": 0, - "input": [ - { - "legacyId": 168, - "id": "minecraft:prismarine", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 2, - "blockRuntimeId": 7242 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_dark_prismarine_stairs", - "type": 0, - "input": [ - { - "legacyId": 168, - "id": "minecraft:prismarine", - "damage": 1 - } - ], - "output": [ - { - "legacyId": -3, - "id": "minecraft:dark_prismarine_stairs", - "blockRuntimeId": 4037 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_diorite_slab", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 3 - } - ], - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 2, - "blockRuntimeId": 7259 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_diorite_stairs", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 3 - } - ], - "output": [ - { - "legacyId": -170, - "id": "minecraft:diorite_stairs", - "blockRuntimeId": 4476 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_diorite_wall", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1322 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_double_stone_slab", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone" - } - ], - "output": [ - { - "legacyId": -166, - "id": "minecraft:double_stone_slab4", - "count": 2, - "blockRuntimeId": 7273 - } - ], - "block": "stonecutter", - "priority": 5 - }, - { - "id": "minecraft:stonecutter_endbrick_slab", - "type": 0, - "input": [ - { - "legacyId": 121, - "id": "minecraft:end_stone" - } - ], - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 2, - "blockRuntimeId": 7255 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_endbrick_slab2", - "type": 0, - "input": [ - { - "legacyId": 206, - "id": "minecraft:end_bricks" - } - ], - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 2, - "blockRuntimeId": 7255 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_endbrick_stairs", - "type": 0, - "input": [ - { - "legacyId": 121, - "id": "minecraft:end_stone" - } - ], - "output": [ - { - "legacyId": -178, - "id": "minecraft:end_brick_stairs", - "blockRuntimeId": 4720 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_endbrick_stairs2", - "type": 0, - "input": [ - { - "legacyId": 206, - "id": "minecraft:end_bricks" - } - ], - "output": [ - { - "legacyId": -178, - "id": "minecraft:end_brick_stairs", - "blockRuntimeId": 4720 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_endbrick_wall", - "type": 0, - "input": [ - { - "legacyId": 121, - "id": "minecraft:end_stone" - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1329 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_endbrick_wall2", - "type": 0, - "input": [ - { - "legacyId": 206, - "id": "minecraft:end_bricks" - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1329 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_endbricks", - "type": 0, - "input": [ - { - "legacyId": 121, - "id": "minecraft:end_stone" - } - ], - "output": [ - { - "legacyId": 206, - "id": "minecraft:end_bricks", - "blockRuntimeId": 4728 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "id": "minecraft:stonecutter_exposed_copper_to_cut_copper", - "type": 0, - "input": [ - { - "legacyId": -341, - "id": "minecraft:exposed_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -348, - "id": "minecraft:exposed_cut_copper", - "blockRuntimeId": 4753 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_exposed_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -341, - "id": "minecraft:exposed_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -355, - "id": "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId": 4756 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_exposed_copper_to_exposed_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -341, - "id": "minecraft:exposed_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -362, - "id": "minecraft:exposed_cut_copper_slab", - "count": 2, - "blockRuntimeId": 4754 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -348, - "id": "minecraft:exposed_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -362, - "id": "minecraft:exposed_cut_copper_slab", - "count": 2, - "blockRuntimeId": 4754 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -348, - "id": "minecraft:exposed_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -355, - "id": "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId": 4756 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_granite_slab", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 1 - } - ], - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 2, - "blockRuntimeId": 7261 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_granite_stairs", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 1 - } - ], - "output": [ - { - "legacyId": -169, - "id": "minecraft:granite_stairs", - "blockRuntimeId": 4989 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_granite_wall", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1321 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_mossy_cobbledouble_stone_slab", - "type": 0, - "input": [ - { - "legacyId": 48, - "id": "minecraft:mossy_cobblestone" - } - ], - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 2, - "blockRuntimeId": 7244 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_mossy_cobblestone_stairs", - "type": 0, - "input": [ - { - "legacyId": 48, - "id": "minecraft:mossy_cobblestone" - } - ], - "output": [ - { - "legacyId": -179, - "id": "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId": 5668 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_mossy_cobblestone_wall", - "type": 0, - "input": [ - { - "legacyId": 48, - "id": "minecraft:mossy_cobblestone" - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1320 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_mossy_stonebrick_slab", - "type": 0, - "input": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick", - "damage": 1 - } - ], - "output": [ - { - "legacyId": -166, - "id": "minecraft:double_stone_slab4", - "count": 2, - "blockRuntimeId": 7271 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_mossy_stonebrick_stairs", - "type": 0, - "input": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick", - "damage": 1 - } - ], - "output": [ - { - "legacyId": -175, - "id": "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId": 5676 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_mossy_stonebrick_wall", - "type": 0, - "input": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1327 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_nether_brick_slab", - "type": 0, - "input": [ - { - "legacyId": 112, - "id": "minecraft:nether_brick" - } - ], - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 2, - "blockRuntimeId": 7230 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_nether_brick_stairs", - "type": 0, - "input": [ - { - "legacyId": 112, - "id": "minecraft:nether_brick" - } - ], - "output": [ - { - "legacyId": 114, - "id": "minecraft:nether_brick_stairs", - "blockRuntimeId": 5690 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_nether_brick_wall", - "type": 0, - "input": [ - { - "legacyId": 112, - "id": "minecraft:nether_brick" - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1328 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_oxidized_copper_to_cut_copper", - "type": 0, - "input": [ - { - "legacyId": -343, - "id": "minecraft:oxidized_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -350, - "id": "minecraft:oxidized_cut_copper", - "blockRuntimeId": 5755 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_oxidized_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -343, - "id": "minecraft:oxidized_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -364, - "id": "minecraft:oxidized_cut_copper_slab", - "count": 2, - "blockRuntimeId": 5756 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_oxidized_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -343, - "id": "minecraft:oxidized_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -357, - "id": "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId": 5758 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -350, - "id": "minecraft:oxidized_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -364, - "id": "minecraft:oxidized_cut_copper_slab", - "count": 2, - "blockRuntimeId": 5756 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -350, - "id": "minecraft:oxidized_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -357, - "id": "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId": 5758 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_polished_andesite", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "blockRuntimeId": 7186 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "id": "minecraft:stonecutter_polished_andesite_slab", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 5 - } - ], - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 2, - "blockRuntimeId": 7257 - } - ], - "block": "stonecutter", - "priority": 4 - }, - { - "id": "minecraft:stonecutter_polished_andesite_slab2", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 6 - } - ], - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 2, - "blockRuntimeId": 7257 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_polished_andesite_stairs", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 5 - } - ], - "output": [ - { - "legacyId": -174, - "id": "minecraft:polished_andesite_stairs", - "blockRuntimeId": 5814 - } - ], - "block": "stonecutter", - "priority": 5 - }, - { - "id": "minecraft:stonecutter_polished_andesite_stairs2", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 6 - } - ], - "output": [ - { - "legacyId": -174, - "id": "minecraft:polished_andesite_stairs", - "blockRuntimeId": 5814 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_polished_basalt_from_basalt", - "type": 0, - "input": [ - { - "legacyId": -234, - "id": "minecraft:basalt", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -235, - "id": "minecraft:polished_basalt", - "blockRuntimeId": 5822 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_polished_brick_slab_from_blackstone", - "type": 0, - "input": [ - { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -284, - "id": "minecraft:polished_blackstone_brick_slab", - "count": 2, - "blockRuntimeId": 5828 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_polished_brick_stairs_from_blackstone", - "type": 0, - "input": [ - { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -275, - "id": "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId": 5830 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_polished_brick_wall_from_blackstone", - "type": 0, - "input": [ - { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -278, - "id": "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId": 5838 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_polished_bricks_from_blackstone", - "type": 0, - "input": [ - { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -274, - "id": "minecraft:polished_blackstone_bricks", - "blockRuntimeId": 6000 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_polished_diorite", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "blockRuntimeId": 7184 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "id": "minecraft:stonecutter_polished_diorite_slab", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 3 - } - ], - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 2, - "blockRuntimeId": 7260 - } - ], - "block": "stonecutter", - "priority": 4 - }, - { - "id": "minecraft:stonecutter_polished_diorite_slab2", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 4 - } - ], - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 2, - "blockRuntimeId": 7260 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_polished_diorite_stairs", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 3 - } - ], - "output": [ - { - "legacyId": -173, - "id": "minecraft:polished_diorite_stairs", - "blockRuntimeId": 6378 - } - ], - "block": "stonecutter", - "priority": 5 - }, - { - "id": "minecraft:stonecutter_polished_diorite_stairs2", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 4 - } - ], - "output": [ - { - "legacyId": -173, - "id": "minecraft:polished_diorite_stairs", - "blockRuntimeId": 6378 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_polished_from_blackstone", - "type": 0, - "input": [ - { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "blockRuntimeId": 5825 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_polished_granite", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "blockRuntimeId": 7182 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "id": "minecraft:stonecutter_polished_granite_slab", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 1 - } - ], - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 2, - "blockRuntimeId": 7262 - } - ], - "block": "stonecutter", - "priority": 4 - }, - { - "id": "minecraft:stonecutter_polished_granite_slab2", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 2 - } - ], - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 2, - "blockRuntimeId": 7262 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_polished_granite_stairs", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 1 - } - ], - "output": [ - { - "legacyId": -172, - "id": "minecraft:polished_granite_stairs", - "blockRuntimeId": 6386 - } - ], - "block": "stonecutter", - "priority": 5 - }, - { - "id": "minecraft:stonecutter_polished_granite_stairs2", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 2 - } - ], - "output": [ - { - "legacyId": -172, - "id": "minecraft:polished_granite_stairs", - "blockRuntimeId": 6386 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_polished_slab_from_blackstone", - "type": 0, - "input": [ - { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -293, - "id": "minecraft:polished_blackstone_slab", - "count": 2, - "blockRuntimeId": 6031 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_polished_stairs_from_blackstone", - "type": 0, - "input": [ - { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -292, - "id": "minecraft:polished_blackstone_stairs", - "blockRuntimeId": 6033 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_polished_wall_from_blackstone", - "type": 0, - "input": [ - { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -297, - "id": "minecraft:polished_blackstone_wall", - "blockRuntimeId": 6041 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_prismarine_brick_slab", - "type": 0, - "input": [ - { - "legacyId": 168, - "id": "minecraft:prismarine", - "damage": 2 - } - ], - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 2, - "blockRuntimeId": 7243 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_prismarine_brick_stairs", - "type": 0, - "input": [ - { - "legacyId": 168, - "id": "minecraft:prismarine", - "damage": 2 - } - ], - "output": [ - { - "legacyId": -4, - "id": "minecraft:prismarine_bricks_stairs", - "blockRuntimeId": 6441 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_prismarine_slab", - "type": 0, - "input": [ - { - "legacyId": 168, - "id": "minecraft:prismarine" - } - ], - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 2, - "blockRuntimeId": 7241 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_prismarine_stairs", - "type": 0, - "input": [ - { - "legacyId": 168, - "id": "minecraft:prismarine" - } - ], - "output": [ - { - "legacyId": -2, - "id": "minecraft:prismarine_stairs", - "blockRuntimeId": 6449 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_prismarine_wall", - "type": 0, - "input": [ - { - "legacyId": 168, - "id": "minecraft:prismarine" - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1330 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_purpur_lines", - "type": 0, - "input": [ - { - "legacyId": 201, - "id": "minecraft:purpur_block" - } - ], - "output": [ - { - "legacyId": 201, - "id": "minecraft:purpur_block", - "blockRuntimeId": 6527 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_purpur_slab", - "type": 0, - "input": [ - { - "legacyId": 201, - "id": "minecraft:purpur_block" - } - ], - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 2, - "blockRuntimeId": 7240 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_purpur_stairs", - "type": 0, - "input": [ - { - "legacyId": 201, - "id": "minecraft:purpur_block" - } - ], - "output": [ - { - "legacyId": 203, - "id": "minecraft:purpur_stairs", - "blockRuntimeId": 6537 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_quartz_bricks_from_quartz_block", - "type": 0, - "input": [ - { - "legacyId": 155, - "id": "minecraft:quartz_block" - } - ], - "output": [ - { - "legacyId": -304, - "id": "minecraft:quartz_bricks", - "blockRuntimeId": 6557 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_quartz_chiseled", - "type": 0, - "input": [ - { - "legacyId": 155, - "id": "minecraft:quartz_block" - } - ], - "output": [ - { - "legacyId": 155, - "id": "minecraft:quartz_block", - "blockRuntimeId": 6546 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_quartz_lines", - "type": 0, - "input": [ - { - "legacyId": 155, - "id": "minecraft:quartz_block" - } - ], - "output": [ - { - "legacyId": 155, - "id": "minecraft:quartz_block", - "blockRuntimeId": 6547 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_quartz_slab", - "type": 0, - "input": [ - { - "legacyId": 155, - "id": "minecraft:quartz_block" - } - ], - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 2, - "blockRuntimeId": 7229 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_quartz_stairs", - "type": 0, - "input": [ - { - "legacyId": 155, - "id": "minecraft:quartz_block" - } - ], - "output": [ - { - "legacyId": 156, - "id": "minecraft:quartz_stairs", - "blockRuntimeId": 6559 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "id": "minecraft:stonecutter_red_nether_brick_slab", - "type": 0, - "input": [ - { - "legacyId": 215, - "id": "minecraft:red_nether_brick" - } - ], - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 2, - "blockRuntimeId": 7246 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_red_nether_brick_stairs", - "type": 0, - "input": [ - { - "legacyId": 215, - "id": "minecraft:red_nether_brick" - } - ], - "output": [ - { - "legacyId": -184, - "id": "minecraft:red_nether_brick_stairs", - "blockRuntimeId": 6625 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_red_nether_brick_wall", - "type": 0, - "input": [ - { - "legacyId": 215, - "id": "minecraft:red_nether_brick" - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1332 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_red_sanddouble_stone_slab", - "type": 0, - "input": [ - { - "legacyId": 179, - "id": "minecraft:red_sandstone" - } - ], - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 2, - "blockRuntimeId": 7239 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_red_sandstone_cut", - "type": 0, - "input": [ - { - "legacyId": 179, - "id": "minecraft:red_sandstone" - } - ], - "output": [ - { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "blockRuntimeId": 6635 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_red_sandstone_heiroglyphs", - "type": 0, - "input": [ - { - "legacyId": 179, - "id": "minecraft:red_sandstone" - } - ], - "output": [ - { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "blockRuntimeId": 6634 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_red_sandstone_stairs", - "type": 0, - "input": [ - { - "legacyId": 179, - "id": "minecraft:red_sandstone" - } - ], - "output": [ - { - "legacyId": 180, - "id": "minecraft:red_sandstone_stairs", - "blockRuntimeId": 6637 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "id": "minecraft:stonecutter_red_sandstone_wall", - "type": 0, - "input": [ - { - "legacyId": 179, - "id": "minecraft:red_sandstone" - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1331 - } - ], - "block": "stonecutter", - "priority": 4 - }, - { - "id": "minecraft:stonecutter_sanddouble_stone_slab", - "type": 0, - "input": [ - { - "legacyId": 24, - "id": "minecraft:sandstone" - } - ], - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 2, - "blockRuntimeId": 7224 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_sandstone_cut", - "type": 0, - "input": [ - { - "legacyId": 24, - "id": "minecraft:sandstone" - } - ], - "output": [ - { - "legacyId": 24, - "id": "minecraft:sandstone", - "blockRuntimeId": 6708 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_sandstone_heiroglyphs", - "type": 0, - "input": [ - { - "legacyId": 24, - "id": "minecraft:sandstone" - } - ], - "output": [ - { - "legacyId": 24, - "id": "minecraft:sandstone", - "blockRuntimeId": 6707 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_sandstone_stairs", - "type": 0, - "input": [ - { - "legacyId": 24, - "id": "minecraft:sandstone" - } - ], - "output": [ - { - "legacyId": 128, - "id": "minecraft:sandstone_stairs", - "blockRuntimeId": 6710 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "id": "minecraft:stonecutter_sandstone_wall", - "type": 0, - "input": [ - { - "legacyId": 24, - "id": "minecraft:sandstone" - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1324 - } - ], - "block": "stonecutter", - "priority": 4 - }, - { - "id": "minecraft:stonecutter_slab_from_polished_blackstone", - "type": 0, - "input": [ - { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -293, - "id": "minecraft:polished_blackstone_slab", - "count": 2, - "blockRuntimeId": 6031 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_slab_from_polished_blackstone_bricks", - "type": 0, - "input": [ - { - "legacyId": -274, - "id": "minecraft:polished_blackstone_bricks", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -284, - "id": "minecraft:polished_blackstone_brick_slab", - "count": 2, - "blockRuntimeId": 5828 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_smooth_double_stone_slab", - "type": 0, - "input": [ - { - "legacyId": -183, - "id": "minecraft:smooth_stone" - } - ], - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 2, - "blockRuntimeId": 7223 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_smooth_quartz_slab", - "type": 0, - "input": [ - { - "legacyId": 155, - "id": "minecraft:quartz_block", - "damage": 3 - } - ], - "output": [ - { - "legacyId": -166, - "id": "minecraft:double_stone_slab4", - "count": 2, - "blockRuntimeId": 7272 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_smooth_quartz_stairs", - "type": 0, - "input": [ - { - "legacyId": 155, - "id": "minecraft:quartz_block", - "damage": 3 - } - ], - "output": [ - { - "legacyId": -185, - "id": "minecraft:smooth_quartz_stairs", - "blockRuntimeId": 6887 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_smooth_red_sanddouble_stone_slab", - "type": 0, - "input": [ - { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "damage": 3 - } - ], - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 2, - "blockRuntimeId": 7256 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_smooth_red_sandstone_stairs", - "type": 0, - "input": [ - { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "damage": 3 - } - ], - "output": [ - { - "legacyId": -176, - "id": "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId": 6895 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_smooth_sanddouble_stone_slab", - "type": 0, - "input": [ - { - "legacyId": 24, - "id": "minecraft:sandstone", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 2, - "blockRuntimeId": 7245 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_smooth_sandstone_stairs", - "type": 0, - "input": [ - { - "legacyId": 24, - "id": "minecraft:sandstone", - "damage": 3 - } - ], - "output": [ - { - "legacyId": -177, - "id": "minecraft:smooth_sandstone_stairs", - "blockRuntimeId": 6903 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_stairs_from_polished_blackstone", - "type": 0, - "input": [ - { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -292, - "id": "minecraft:polished_blackstone_stairs", - "blockRuntimeId": 6033 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_stone_stairs", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone" - } - ], - "output": [ - { - "legacyId": -180, - "id": "minecraft:normal_stone_stairs", - "blockRuntimeId": 5708 - } - ], - "block": "stonecutter", - "priority": 6 - }, - { - "id": "minecraft:stonecutter_stonebrick", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone" - } - ], - "output": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick", - "blockRuntimeId": 7289 - } - ], - "block": "stonecutter", - "priority": 4 - }, - { - "id": "minecraft:stonecutter_stonebrick_chiseled", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone" - } - ], - "output": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick", - "blockRuntimeId": 7292 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_stonebrick_slab", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone" - } - ], - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 2, - "blockRuntimeId": 7228 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_stonebrick_slab2", - "type": 0, - "input": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick" - } - ], - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 2, - "blockRuntimeId": 7228 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_stonebrick_stairs", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone" - } - ], - "output": [ - { - "legacyId": 109, - "id": "minecraft:stone_brick_stairs", - "blockRuntimeId": 7187 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_stonebrick_stairs2", - "type": 0, - "input": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick" - } - ], - "output": [ - { - "legacyId": 109, - "id": "minecraft:stone_brick_stairs", - "blockRuntimeId": 7187 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_stonebrick_wall", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone" - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1326 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "id": "minecraft:stonecutter_stonebrick_wall2", - "type": 0, - "input": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick" - } - ], - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "blockRuntimeId": 1326 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_wall_from_polished_blackstone", - "type": 0, - "input": [ - { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -297, - "id": "minecraft:polished_blackstone_wall", - "blockRuntimeId": 6041 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_wall_from_polished_blackstone_bricks", - "type": 0, - "input": [ - { - "legacyId": -274, - "id": "minecraft:polished_blackstone_bricks", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -278, - "id": "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId": 5838 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_waxed_copper_to_cut_copper", - "type": 0, - "input": [ - { - "legacyId": -344, - "id": "minecraft:waxed_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -351, - "id": "minecraft:waxed_cut_copper", - "blockRuntimeId": 7686 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_waxed_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -344, - "id": "minecraft:waxed_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -365, - "id": "minecraft:waxed_cut_copper_slab", - "count": 2, - "blockRuntimeId": 7687 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_waxed_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -344, - "id": "minecraft:waxed_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -358, - "id": "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId": 7689 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_waxed_copper_to_exposed_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -345, - "id": "minecraft:waxed_exposed_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -366, - "id": "minecraft:waxed_exposed_cut_copper_slab", - "count": 2, - "blockRuntimeId": 7701 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -351, - "id": "minecraft:waxed_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -365, - "id": "minecraft:waxed_cut_copper_slab", - "count": 2, - "blockRuntimeId": 7687 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -351, - "id": "minecraft:waxed_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -358, - "id": "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId": 7689 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper", - "type": 0, - "input": [ - { - "legacyId": -345, - "id": "minecraft:waxed_exposed_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -352, - "id": "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId": 7700 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -345, - "id": "minecraft:waxed_exposed_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -359, - "id": "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId": 7703 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -352, - "id": "minecraft:waxed_exposed_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -366, - "id": "minecraft:waxed_exposed_cut_copper_slab", - "count": 2, - "blockRuntimeId": 7701 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -352, - "id": "minecraft:waxed_exposed_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -359, - "id": "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId": 7703 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper", - "type": 0, - "input": [ - { - "legacyId": -446, - "id": "minecraft:waxed_oxidized_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -447, - "id": "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId": 7714 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -446, - "id": "minecraft:waxed_oxidized_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -449, - "id": "minecraft:waxed_oxidized_cut_copper_slab", - "count": 2, - "blockRuntimeId": 7715 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -446, - "id": "minecraft:waxed_oxidized_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -448, - "id": "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId": 7717 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -447, - "id": "minecraft:waxed_oxidized_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -449, - "id": "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId": 7715 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -447, - "id": "minecraft:waxed_oxidized_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -448, - "id": "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId": 7717 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper", - "type": 0, - "input": [ - { - "legacyId": -346, - "id": "minecraft:waxed_weathered_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -353, - "id": "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId": 7728 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -346, - "id": "minecraft:waxed_weathered_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -367, - "id": "minecraft:waxed_weathered_cut_copper_slab", - "count": 2, - "blockRuntimeId": 7729 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -346, - "id": "minecraft:waxed_weathered_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -360, - "id": "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId": 7731 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -353, - "id": "minecraft:waxed_weathered_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -367, - "id": "minecraft:waxed_weathered_cut_copper_slab", - "count": 2, - "blockRuntimeId": 7729 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -353, - "id": "minecraft:waxed_weathered_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -360, - "id": "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId": 7731 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_weathered_copper_to_cut_copper", - "type": 0, - "input": [ - { - "legacyId": -342, - "id": "minecraft:weathered_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -349, - "id": "minecraft:weathered_cut_copper", - "blockRuntimeId": 7742 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "id": "minecraft:stonecutter_weathered_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -342, - "id": "minecraft:weathered_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -363, - "id": "minecraft:weathered_cut_copper_slab", - "count": 2, - "blockRuntimeId": 7743 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_weathered_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -342, - "id": "minecraft:weathered_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -356, - "id": "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId": 7745 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -349, - "id": "minecraft:weathered_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -363, - "id": "minecraft:weathered_cut_copper_slab", - "count": 2, - "blockRuntimeId": 7743 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "id": "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -349, - "id": "minecraft:weathered_cut_copper", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -356, - "id": "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId": 7745 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "stonecutter_stairs_from_polished_blackstone_bricks", - "type": 0, - "input": [ - { - "legacyId": -274, - "id": "minecraft:polished_blackstone_bricks", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -275, - "id": "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId": 5830 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "id": "Bookshelf_woodplanks_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - }, - "B": { - "legacyId": 387, - "id": "minecraft:book", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 47, - "id": "minecraft:bookshelf", - "blockRuntimeId": 704 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "Bowl_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 321, - "id": "minecraft:bowl", - "count": 4 - } - ], - "shape": [ - "A A", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "ButtonAcacia_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 4 - } - }, - "output": [ - { - "legacyId": -140, - "id": "minecraft:acacia_button" - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "ButtonBirch_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 2 - } - }, - "output": [ - { - "legacyId": -141, - "id": "minecraft:birch_button", - "blockRuntimeId": 356 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "ButtonDarkOak_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 5 - } - }, - "output": [ - { - "legacyId": -142, - "id": "minecraft:dark_oak_button", - "blockRuntimeId": 3937 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "ButtonJungle_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 3 - } - }, - "output": [ - { - "legacyId": -143, - "id": "minecraft:jungle_button", - "blockRuntimeId": 5209 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "ButtonSpruce_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 1 - } - }, - "output": [ - { - "legacyId": -144, - "id": "minecraft:spruce_button", - "blockRuntimeId": 6966 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "Chest_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 54, - "id": "minecraft:chest", - "blockRuntimeId": 1123 - } - ], - "shape": [ - "AAA", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "DaylightDetector_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass" - }, - "B": { - "legacyId": 524, - "id": "minecraft:quartz", - "damage": 32767 - }, - "C": { - "legacyId": 158, - "id": "minecraft:wooden_slab", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 151, - "id": "minecraft:daylight_detector", - "blockRuntimeId": 4067 - } - ], - "shape": [ - "AAA", - "BBB", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "FireCharge_blaze_powder_coal_sulphur_recipeId", - "type": 0, - "input": [ - { - "legacyId": 429, - "id": "minecraft:blaze_powder", - "damage": 32767 - }, - { - "legacyId": 303, - "id": "minecraft:charcoal", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 509, - "id": "minecraft:fire_charge", - "count": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "FireCharge_coal_sulphur_recipeId", - "type": 0, - "input": [ - { - "legacyId": 429, - "id": "minecraft:blaze_powder", - "damage": 32767 - }, - { - "legacyId": 302, - "id": "minecraft:coal" - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 509, - "id": "minecraft:fire_charge", - "count": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "Jukebox_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - }, - "B": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 84, - "id": "minecraft:jukebox", - "blockRuntimeId": 5208 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "Note_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - }, - "B": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 25, - "id": "minecraft:noteblock", - "blockRuntimeId": 5716 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "Painting_Cobblestone_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone" - } - }, - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 6, - "blockRuntimeId": 7226 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "Painting_NetherBrick_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 112, - "id": "minecraft:nether_brick" - } - }, - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 6, - "blockRuntimeId": 7230 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "Painting_VanillaBlocks_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 24, - "id": "minecraft:sandstone" - } - }, - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 6, - "blockRuntimeId": 7224 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "Painting_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 357, - "id": "minecraft:painting" - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "Piston_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - }, - "B": { - "legacyId": 4, - "id": "minecraft:cobblestone" - }, - "C": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "D": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 33, - "id": "minecraft:piston", - "blockRuntimeId": 5786 - } - ], - "shape": [ - "AAA", - "BCB", - "BDB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "PressurePlateAcacia_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 4 - } - }, - "output": [ - { - "legacyId": -150, - "id": "minecraft:acacia_pressure_plate", - "blockRuntimeId": 60 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "PressurePlateBirch_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 2 - } - }, - "output": [ - { - "legacyId": -151, - "id": "minecraft:birch_pressure_plate", - "blockRuntimeId": 416 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "PressurePlateDarkOak_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 5 - } - }, - "output": [ - { - "legacyId": -152, - "id": "minecraft:dark_oak_pressure_plate", - "blockRuntimeId": 3997 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "PressurePlateJungle_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 3 - } - }, - "output": [ - { - "legacyId": -153, - "id": "minecraft:jungle_pressure_plate", - "blockRuntimeId": 5269 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "PressurePlateSpruce_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 1 - } - }, - "output": [ - { - "legacyId": -154, - "id": "minecraft:spruce_pressure_plate", - "blockRuntimeId": 7026 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "Stick_bamboo_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": -163, - "id": "minecraft:bamboo" - } - }, - "output": [ - { - "legacyId": 320, - "id": "minecraft:stick" - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "StoneSlab4_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone" - } - }, - "output": [ - { - "legacyId": -166, - "id": "minecraft:double_stone_slab4", - "count": 6, - "blockRuntimeId": 7273 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "StoneSlab4_stoneBrick_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 98, - "id": "minecraft:stonebrick", - "damage": 1 - } - }, - "output": [ - { - "legacyId": -166, - "id": "minecraft:double_stone_slab4", - "count": 6, - "blockRuntimeId": 7271 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "StoneSlab_Brick_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 45, - "id": "minecraft:brick_block" - } - }, - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 6, - "blockRuntimeId": 7227 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "StoneSlab_StoneBrick_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 98, - "id": "minecraft:stonebrick" - } - }, - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 6, - "blockRuntimeId": 7228 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "StoneSlab_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": -183, - "id": "minecraft:smooth_stone" - } - }, - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 6, - "blockRuntimeId": 7223 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "Torch_charcoal_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 303, - "id": "minecraft:charcoal", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 50, - "id": "minecraft:torch", - "count": 4, - "blockRuntimeId": 7357 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "Torch_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 50, - "id": "minecraft:torch", - "count": 4, - "blockRuntimeId": 7357 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "TrapdoorAcacia_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 4 - } - }, - "output": [ - { - "legacyId": -145, - "id": "minecraft:acacia_trapdoor", - "count": 2, - "blockRuntimeId": 100 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "TrapdoorBirch_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 2 - } - }, - "output": [ - { - "legacyId": -146, - "id": "minecraft:birch_trapdoor", - "count": 2, - "blockRuntimeId": 456 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "TrapdoorDarkOak_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 5 - } - }, - "output": [ - { - "legacyId": -147, - "id": "minecraft:dark_oak_trapdoor", - "count": 2, - "blockRuntimeId": 4021 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "TrapdoorJungle_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 3 - } - }, - "output": [ - { - "legacyId": -148, - "id": "minecraft:jungle_trapdoor", - "count": 2, - "blockRuntimeId": 5309 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "TrapdoorSpruce_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 1 - } - }, - "output": [ - { - "legacyId": -149, - "id": "minecraft:spruce_trapdoor", - "count": 2, - "blockRuntimeId": 7066 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "Trapdoor_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks" - } - }, - "output": [ - { - "legacyId": 96, - "id": "minecraft:trapdoor", - "count": 2, - "blockRuntimeId": 7363 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "TripwireHook_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "C": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 131, - "id": "minecraft:tripwire_hook", - "count": 2, - "blockRuntimeId": 7401 - } - ], - "shape": [ - "A", - "B", - "C" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "WoodButton_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks" - } - }, - "output": [ - { - "legacyId": 143, - "id": "minecraft:wooden_button", - "blockRuntimeId": 7843 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "WoodPressurePlate_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks" - } - }, - "output": [ - { - "legacyId": 72, - "id": "minecraft:wooden_pressure_plate", - "blockRuntimeId": 7887 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "WorkBench_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 58, - "id": "minecraft:crafting_table", - "blockRuntimeId": 3771 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "acacia_stairs_acacia_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 4 - } - }, - "output": [ - { - "legacyId": 163, - "id": "minecraft:acacia_stairs", - "count": 4, - "blockRuntimeId": 76 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 4, - "uuid": "d81aaeaf-e172-4440-9225-868df030d27b" - }, - { - "type": 4, - "uuid": "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" - }, - { - "type": 4, - "uuid": "00000000-0000-0000-0000-000000000002" - }, - { - "id": "bed_color_0", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool" - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_1", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_10", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_11", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_12", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_13", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_14", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_15", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_2", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_3", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_4", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_5", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_6", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_7", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_8", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_9", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "bed_color_crimson_0", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool" - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_1", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_10", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_11", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_12", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_13", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_14", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_15", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_2", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_3", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_4", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_5", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_6", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_7", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_8", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_crimson_9", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_0", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool" - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_1", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_10", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_11", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_12", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_13", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_14", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_15", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_2", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_3", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_4", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_5", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_6", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_7", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_8", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_color_warped_9", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "bed_dye_0_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_0_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_10_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_11_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_12_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_13_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_14_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_15_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_16_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_17_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_18_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_19_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_1_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_2_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_3_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_4_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_5_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_6_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_7_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_8_9", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_0", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 15 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_1", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 14 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_10", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 5 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_11", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 4 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_12", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 3 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_13", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 2 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_14", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 1 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_15", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed" - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_2", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 13 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_3", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 12 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_4", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 11 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_5", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 10 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_6", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 9 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_7", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 8 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "bed_dye_9_8", - "type": 0, - "input": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 7 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 418, - "id": "minecraft:bed", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "birch_stairs_birch_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 2 - } - }, - "output": [ - { - "legacyId": 135, - "id": "minecraft:birch_stairs", - "count": 4, - "blockRuntimeId": 432 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 4, - "uuid": "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" - }, - { - "id": "chiseled_quartz_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "damage": 6 - } - }, - "output": [ - { - "legacyId": 155, - "id": "minecraft:quartz_block", - "blockRuntimeId": 6546 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "chiseled_stonebrick_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "damage": 5 - } - }, - "output": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick", - "blockRuntimeId": 7292 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 4, - "uuid": "85939755-ba10-4d9d-a4cc-efb7a8e943c4" - }, - { - "id": "dark_oak_stairs_dark_oak_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 5 - } - }, - "output": [ - { - "legacyId": 164, - "id": "minecraft:dark_oak_stairs", - "count": 4, - "blockRuntimeId": 4013 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 4, - "uuid": "d392b075-4ba1-40ae-8789-af868d56f6ce" - }, - { - "id": "heiroglyphs_redsandstone_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 182, - "id": "minecraft:double_stone_slab2" - } - }, - "output": [ - { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "blockRuntimeId": 6634 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "heiroglyphs_sandstone_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 24, - "id": "minecraft:sandstone", - "blockRuntimeId": 6707 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "jungle_stairs_jungle_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 3 - } - }, - "output": [ - { - "legacyId": 136, - "id": "minecraft:jungle_stairs", - "count": 4, - "blockRuntimeId": 5285 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "lines_purpur_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 201, - "id": "minecraft:purpur_block", - "blockRuntimeId": 6527 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "loom_block_wood_planks_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 326, - "id": "minecraft:string", - "damage": 32767 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -204, - "id": "minecraft:loom", - "blockRuntimeId": 5582 - } - ], - "shape": [ - "AA", - "BB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:acacia_boat", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 4 - }, - "B": { - "legacyId": 309, - "id": "minecraft:wooden_shovel", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 379, - "id": "minecraft:acacia_boat" - } - ], - "shape": [ - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:acacia_door", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 4 - } - }, - "output": [ - { - "legacyId": 556, - "id": "minecraft:acacia_door", - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:acacia_fence", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 4 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 85, - "id": "minecraft:fence", - "count": 3, - "blockRuntimeId": 4778 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:acacia_fence_gate", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 4 - } - }, - "output": [ - { - "legacyId": 187, - "id": "minecraft:acacia_fence_gate", - "blockRuntimeId": 44 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:acacia_planks", - "type": 1, - "input": { - "A": { - "legacyId": 162, - "id": "minecraft:log2" - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5801 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:acacia_planks_from_stripped", - "type": 1, - "input": { - "A": { - "legacyId": -8, - "id": "minecraft:stripped_acacia_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5801 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:acacia_planks_from_stripped_wood", - "type": 1, - "input": { - "A": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 12 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5801 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:acacia_planks_from_wood", - "type": 1, - "input": { - "A": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 4 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5801 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:acacia_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 4 - } - }, - "output": [ - { - "legacyId": 163, - "id": "minecraft:acacia_stairs", - "count": 4, - "blockRuntimeId": 76 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:acacia_wood", - "type": 1, - "input": { - "A": { - "legacyId": 162, - "id": "minecraft:log2" - } - }, - "output": [ - { - "legacyId": -212, - "id": "minecraft:wood", - "count": 3, - "blockRuntimeId": 7811 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:acacia_wood_stripped", - "type": 1, - "input": { - "A": { - "legacyId": -8, - "id": "minecraft:stripped_acacia_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -212, - "id": "minecraft:wood", - "count": 3, - "blockRuntimeId": 7817 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:acacia_wooden_slab", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 4 - } - }, - "output": [ - { - "legacyId": 158, - "id": "minecraft:wooden_slab", - "count": 6, - "blockRuntimeId": 7907 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:activator_rail", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "C": { - "legacyId": 76, - "id": "minecraft:redstone_torch", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 126, - "id": "minecraft:activator_rail", - "count": 6, - "blockRuntimeId": 122 - } - ], - "shape": [ - "ABA", - "ACA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:amethyst_block", - "type": 1, - "input": { - "A": { - "legacyId": 623, - "id": "minecraft:amethyst_shard", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -327, - "id": "minecraft:amethyst_block", - "blockRuntimeId": 136 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:andesite", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 3 - }, - { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "count": 2, - "blockRuntimeId": 7185 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:andesite_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 5 - } - }, - "output": [ - { - "legacyId": -171, - "id": "minecraft:andesite_stairs", - "count": 4, - "blockRuntimeId": 144 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:andesite_wall", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 5 - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1323 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:anvil", - "type": 1, - "input": { - "A": { - "legacyId": 42, - "id": "minecraft:iron_block", - "damage": 32767 - }, - "B": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 145, - "id": "minecraft:anvil", - "blockRuntimeId": 152 - } - ], - "shape": [ - "AAA", - " B ", - "BBB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:armor_stand", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 44, - "id": "minecraft:double_stone_slab" - } - }, - "output": [ - { - "legacyId": 552, - "id": "minecraft:armor_stand" - } - ], - "shape": [ - "AAA", - " A ", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:arrow", - "type": 1, - "input": { - "A": { - "legacyId": 356, - "id": "minecraft:flint", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "C": { - "legacyId": 327, - "id": "minecraft:feather", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "count": 4 - } - ], - "shape": [ - "A", - "B", - "C" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:banner_pattern_bricks", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 45, - "id": "minecraft:brick_block", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 585, - "id": "minecraft:field_masoned_banner_pattern" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:banner_pattern_creeper", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 516, - "id": "minecraft:skull", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 582, - "id": "minecraft:creeper_banner_pattern" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:banner_pattern_flower", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 8 - } - ], - "output": [ - { - "legacyId": 581, - "id": "minecraft:flower_banner_pattern" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:banner_pattern_skull", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 516, - "id": "minecraft:skull", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 583, - "id": "minecraft:skull_banner_pattern" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:banner_pattern_thing", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 259, - "id": "minecraft:enchanted_golden_apple", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 584, - "id": "minecraft:mojang_banner_pattern" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:banner_pattern_vines", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 106, - "id": "minecraft:vine", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 586, - "id": "minecraft:bordure_indented_banner_pattern" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:barrel", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 158, - "id": "minecraft:wooden_slab", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -203, - "id": "minecraft:barrel", - "blockRuntimeId": 201 - } - ], - "shape": [ - "ABA", - "A A", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:barrel_from_crimson_slab", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -264, - "id": "minecraft:crimson_slab", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -203, - "id": "minecraft:barrel", - "blockRuntimeId": 201 - } - ], - "shape": [ - "ABA", - "A A", - "ABA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:barrel_from_warped_slab", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -265, - "id": "minecraft:warped_slab", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -203, - "id": "minecraft:barrel", - "blockRuntimeId": 201 - } - ], - "shape": [ - "ABA", - "A A", - "ABA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:basic_map_to_enhanced", - "type": 0, - "input": [ - { - "legacyId": 515, - "id": "minecraft:empty_map", - "damage": 1 - }, - { - "legacyId": 391, - "id": "minecraft:compass", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 515, - "id": "minecraft:empty_map", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:beacon", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 518, - "id": "minecraft:nether_star", - "damage": 32767 - }, - "C": { - "legacyId": 49, - "id": "minecraft:obsidian", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 138, - "id": "minecraft:beacon", - "blockRuntimeId": 217 - } - ], - "shape": [ - "AAA", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:beehive", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - }, - "B": { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -219, - "id": "minecraft:beehive", - "blockRuntimeId": 260 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:beehive_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -219, - "id": "minecraft:beehive", - "blockRuntimeId": 260 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:beehive_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -219, - "id": "minecraft:beehive", - "blockRuntimeId": 260 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:beetroot_soup", - "type": 0, - "input": [ - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 285, - "id": "minecraft:beetroot", - "damage": 32767 - }, - { - "legacyId": 285, - "id": "minecraft:beetroot", - "damage": 32767 - }, - { - "legacyId": 285, - "id": "minecraft:beetroot", - "damage": 32767 - }, - { - "legacyId": 285, - "id": "minecraft:beetroot", - "damage": 32767 - }, - { - "legacyId": 285, - "id": "minecraft:beetroot", - "damage": 32767 - }, - { - "legacyId": 285, - "id": "minecraft:beetroot", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 286, - "id": "minecraft:beetroot_soup" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:birch_boat", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 2 - }, - "B": { - "legacyId": 309, - "id": "minecraft:wooden_shovel", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 376, - "id": "minecraft:birch_boat" - } - ], - "shape": [ - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:birch_door", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 2 - } - }, - "output": [ - { - "legacyId": 554, - "id": "minecraft:birch_door", - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:birch_fence", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 2 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 85, - "id": "minecraft:fence", - "count": 3, - "blockRuntimeId": 4776 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:birch_fence_gate", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 2 - } - }, - "output": [ - { - "legacyId": 184, - "id": "minecraft:birch_fence_gate", - "blockRuntimeId": 400 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:birch_planks", - "type": 1, - "input": { - "A": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 2 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5799 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:birch_planks_from_stripped", - "type": 1, - "input": { - "A": { - "legacyId": -6, - "id": "minecraft:stripped_birch_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5799 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:birch_planks_from_stripped_wood", - "type": 1, - "input": { - "A": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 10 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5799 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:birch_planks_from_wood", - "type": 1, - "input": { - "A": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 2 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5799 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:birch_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 2 - } - }, - "output": [ - { - "legacyId": 135, - "id": "minecraft:birch_stairs", - "count": 4, - "blockRuntimeId": 432 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:birch_wood", - "type": 1, - "input": { - "A": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 2 - } - }, - "output": [ - { - "legacyId": -212, - "id": "minecraft:wood", - "count": 3, - "blockRuntimeId": 7809 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:birch_wood_stripped", - "type": 1, - "input": { - "A": { - "legacyId": -6, - "id": "minecraft:stripped_birch_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -212, - "id": "minecraft:wood", - "count": 3, - "blockRuntimeId": 7815 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:birch_wooden_slab", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 2 - } - }, - "output": [ - { - "legacyId": 158, - "id": "minecraft:wooden_slab", - "count": 6, - "blockRuntimeId": 7905 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:black_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner" - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:black_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye" - } - ], - "output": [ - { - "legacyId": -428, - "id": "minecraft:black_candle", - "blockRuntimeId": 478 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:black_candle_from_ink_sac", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac" - } - ], - "output": [ - { - "legacyId": -428, - "id": "minecraft:black_candle", - "blockRuntimeId": 478 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:black_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 978 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:black_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 395, - "id": "minecraft:black_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 978 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:black_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3675 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:black_concrete_powder_from_ink_sac", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3675 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:black_dye_from_ink_sac", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac" - } - ], - "output": [ - { - "legacyId": 395, - "id": "minecraft:black_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:black_dye_from_wither_rose", - "type": 0, - "input": [ - { - "legacyId": -216, - "id": "minecraft:wither_rose", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 395, - "id": "minecraft:black_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:black_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 395, - "id": "minecraft:black_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7103 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:black_stained_glass_from_ink_sac", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 413, - "id": "minecraft:ink_sac" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7103 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:black_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 15 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7119 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:black_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 395, - "id": "minecraft:black_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7119 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:black_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 395, - "id": "minecraft:black_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7135 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:black_stained_hardened_clay_from_ink_sac", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 413, - "id": "minecraft:ink_sac" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7135 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:blackstone_slab", - "type": 1, - "input": { - "A": { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -282, - "id": "minecraft:blackstone_slab", - "count": 6, - "blockRuntimeId": 497 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blackstone_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -276, - "id": "minecraft:blackstone_stairs", - "count": 4, - "blockRuntimeId": 499 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blackstone_wall", - "type": 1, - "input": { - "A": { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -277, - "id": "minecraft:blackstone_wall", - "count": 6, - "blockRuntimeId": 507 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blast_furnace", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - }, - "C": { - "legacyId": -183, - "id": "minecraft:smooth_stone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -196, - "id": "minecraft:blast_furnace", - "blockRuntimeId": 669 - } - ], - "shape": [ - "AAA", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blaze_powder", - "type": 0, - "input": [ - { - "legacyId": 423, - "id": "minecraft:blaze_rod", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 429, - "id": "minecraft:blaze_powder", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 4 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye" - } - ], - "output": [ - { - "legacyId": -424, - "id": "minecraft:blue_candle", - "blockRuntimeId": 675 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_candle_from_lapis_lazuli", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - } - ], - "output": [ - { - "legacyId": -424, - "id": "minecraft:blue_candle", - "blockRuntimeId": 675 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 974 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 399, - "id": "minecraft:blue_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 974 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3671 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_concrete_powder_from_lapis_lazuli", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3671 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:blue_dye_from_cornflower", - "type": 0, - "input": [ - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 9 - } - ], - "output": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_dye_from_lapis_lazuli", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - } - ], - "output": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_ice", - "type": 1, - "input": { - "A": { - "legacyId": 174, - "id": "minecraft:packed_ice", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -11, - "id": "minecraft:blue_ice", - "blockRuntimeId": 691 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 399, - "id": "minecraft:blue_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7099 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_stained_glass_from_lapis_lazuli", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7099 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:blue_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 11 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7115 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 399, - "id": "minecraft:blue_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7115 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 399, - "id": "minecraft:blue_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7131 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:blue_stained_hardened_clay_from_lapis_lazuli", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7131 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:boat", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks" - }, - "B": { - "legacyId": 309, - "id": "minecraft:wooden_shovel", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 375, - "id": "minecraft:oak_boat" - } - ], - "shape": [ - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:bone_block", - "type": 1, - "input": { - "A": { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - }, - "output": [ - { - "legacyId": 216, - "id": "minecraft:bone_block", - "blockRuntimeId": 692 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:bone_meal_from_block", - "type": 0, - "input": [ - { - "legacyId": 216, - "id": "minecraft:bone_block", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "count": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:bone_meal_from_bone", - "type": 0, - "input": [ - { - "legacyId": 415, - "id": "minecraft:bone", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "count": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:book", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper" - }, - { - "legacyId": 386, - "id": "minecraft:paper" - }, - { - "legacyId": 386, - "id": "minecraft:paper" - }, - { - "legacyId": 381, - "id": "minecraft:leather" - } - ], - "output": [ - { - "legacyId": 387, - "id": "minecraft:book" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:bookshelf_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 387, - "id": "minecraft:book", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 47, - "id": "minecraft:bookshelf", - "blockRuntimeId": 704 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:bookshelf_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 387, - "id": "minecraft:book", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 47, - "id": "minecraft:bookshelf", - "blockRuntimeId": 704 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:bow", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 326, - "id": "minecraft:string", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 300, - "id": "minecraft:bow" - } - ], - "shape": [ - " AB", - "A B", - " AB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:bowl_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 321, - "id": "minecraft:bowl", - "count": 4 - } - ], - "shape": [ - "A A", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:bowl_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 321, - "id": "minecraft:bowl", - "count": 4 - } - ], - "shape": [ - "A A", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:bread", - "type": 1, - "input": { - "A": { - "legacyId": 334, - "id": "minecraft:wheat", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 261, - "id": "minecraft:bread" - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brewing_stand", - "type": 1, - "input": { - "A": { - "legacyId": 423, - "id": "minecraft:blaze_rod", - "damage": 32767 - }, - "B": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 431, - "id": "minecraft:brewing_stand" - } - ], - "shape": [ - " A ", - "BBB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brewing_stand_from_blackstone", - "type": 1, - "input": { - "A": { - "legacyId": 423, - "id": "minecraft:blaze_rod", - "damage": 32767 - }, - "B": { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 431, - "id": "minecraft:brewing_stand" - } - ], - "shape": [ - " A ", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:brewing_stand_from_cobbled_deepslate", - "type": 1, - "input": { - "A": { - "legacyId": 423, - "id": "minecraft:blaze_rod", - "damage": 32767 - }, - "B": { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 431, - "id": "minecraft:brewing_stand" - } - ], - "shape": [ - " A ", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:brick_block", - "type": 1, - "input": { - "A": { - "legacyId": 383, - "id": "minecraft:brick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 45, - "id": "minecraft:brick_block", - "blockRuntimeId": 875 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brick_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 45, - "id": "minecraft:brick_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 108, - "id": "minecraft:brick_stairs", - "count": 4, - "blockRuntimeId": 876 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brick_wall", - "type": 1, - "input": { - "A": { - "legacyId": 45, - "id": "minecraft:brick_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1325 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brown_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brown_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye" - } - ], - "output": [ - { - "legacyId": -425, - "id": "minecraft:brown_candle", - "blockRuntimeId": 884 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brown_candle_from_cocoa_beans", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans" - } - ], - "output": [ - { - "legacyId": -425, - "id": "minecraft:brown_candle", - "blockRuntimeId": 884 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brown_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 975 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brown_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 398, - "id": "minecraft:brown_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 975 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brown_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3672 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brown_concrete_powder_from_cocoa_beans", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3672 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:brown_dye_from_cocoa_beans", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans" - } - ], - "output": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brown_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 398, - "id": "minecraft:brown_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7100 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brown_stained_glass_from_cocoa_beans", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 412, - "id": "minecraft:cocoa_beans" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7100 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:brown_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 12 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7116 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brown_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 398, - "id": "minecraft:brown_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7116 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brown_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 398, - "id": "minecraft:brown_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7132 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:brown_stained_hardened_clay_from_cocoa_beans", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 412, - "id": "minecraft:cocoa_beans" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7132 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:bucket", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 360, - "id": "minecraft:bucket" - } - ], - "shape": [ - "A A", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cake", - "type": 1, - "input": { - "A": { - "legacyId": 361, - "id": "minecraft:milk_bucket" - }, - "B": { - "legacyId": 416, - "id": "minecraft:sugar", - "damage": 32767 - }, - "C": { - "legacyId": 390, - "id": "minecraft:egg", - "damage": 32767 - }, - "D": { - "legacyId": 334, - "id": "minecraft:wheat", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 417, - "id": "minecraft:cake" - }, - { - "legacyId": 360, - "id": "minecraft:bucket", - "count": 3 - } - ], - "shape": [ - "AAA", - "BCB", - "DDD" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:campfire", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:campfire_from_charcoal", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 303, - "id": "minecraft:charcoal", - "damage": 32767 - }, - "C": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:campfire_from_charcoal_log2", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 303, - "id": "minecraft:charcoal", - "damage": 32767 - }, - "C": { - "legacyId": 162, - "id": "minecraft:log2", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:campfire_from_charcoal_stripped_acacia_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 303, - "id": "minecraft:charcoal", - "damage": 32767 - }, - "C": { - "legacyId": -8, - "id": "minecraft:stripped_acacia_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:campfire_from_charcoal_stripped_birch_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 303, - "id": "minecraft:charcoal", - "damage": 32767 - }, - "C": { - "legacyId": -6, - "id": "minecraft:stripped_birch_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:campfire_from_charcoal_stripped_dark_oak_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 303, - "id": "minecraft:charcoal", - "damage": 32767 - }, - "C": { - "legacyId": -9, - "id": "minecraft:stripped_dark_oak_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:campfire_from_charcoal_stripped_jungle_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 303, - "id": "minecraft:charcoal", - "damage": 32767 - }, - "C": { - "legacyId": -7, - "id": "minecraft:stripped_jungle_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:campfire_from_charcoal_stripped_oak_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 303, - "id": "minecraft:charcoal", - "damage": 32767 - }, - "C": { - "legacyId": -10, - "id": "minecraft:stripped_oak_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:campfire_from_charcoal_stripped_spruce_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 303, - "id": "minecraft:charcoal", - "damage": 32767 - }, - "C": { - "legacyId": -5, - "id": "minecraft:stripped_spruce_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:campfire_from_charcoal_wood", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 303, - "id": "minecraft:charcoal", - "damage": 32767 - }, - "C": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:campfire_from_crimson_stem", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": -225, - "id": "minecraft:crimson_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:campfire_from_log2", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": 162, - "id": "minecraft:log2", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:campfire_from_stripped_acacia_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": -8, - "id": "minecraft:stripped_acacia_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:campfire_from_stripped_birch_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": -6, - "id": "minecraft:stripped_birch_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:campfire_from_stripped_crimson_stem", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": -240, - "id": "minecraft:stripped_crimson_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:campfire_from_stripped_dark_oak_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": -9, - "id": "minecraft:stripped_dark_oak_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:campfire_from_stripped_jungle_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": -7, - "id": "minecraft:stripped_jungle_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:campfire_from_stripped_oak_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": -10, - "id": "minecraft:stripped_oak_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:campfire_from_stripped_spruce_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": -5, - "id": "minecraft:stripped_spruce_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:campfire_from_stripped_warped_stem", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": -241, - "id": "minecraft:stripped_warped_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:campfire_from_warped_stem", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": -226, - "id": "minecraft:warped_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:campfire_from_wood", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "C": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 588, - "id": "minecraft:campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:candle", - "type": 1, - "input": { - "A": { - "legacyId": 326, - "id": "minecraft:string", - "damage": 32767 - }, - "B": { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "blockRuntimeId": 953 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:carrot_on_a_stick", - "type": 1, - "input": { - "A": { - "legacyId": 392, - "id": "minecraft:fishing_rod", - "damage": 32767 - }, - "B": { - "legacyId": 279, - "id": "minecraft:carrot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 517, - "id": "minecraft:carrot_on_a_stick" - } - ], - "shape": [ - "A ", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cartography_table", - "type": 1, - "input": { - "A": { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -200, - "id": "minecraft:cartography_table", - "blockRuntimeId": 987 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cartography_table_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -200, - "id": "minecraft:cartography_table", - "blockRuntimeId": 987 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:cartography_table_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -200, - "id": "minecraft:cartography_table", - "blockRuntimeId": 987 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:cauldron", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 432, - "id": "minecraft:cauldron" - } - ], - "shape": [ - "A A", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:chain", - "type": 1, - "input": { - "A": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "B": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 617, - "id": "minecraft:chain" - } - ], - "shape": [ - "A", - "B", - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:chest_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 54, - "id": "minecraft:chest", - "blockRuntimeId": 1123 - } - ], - "shape": [ - "AAA", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:chest_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 54, - "id": "minecraft:chest", - "blockRuntimeId": 1123 - } - ], - "shape": [ - "AAA", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:chest_minecart", - "type": 1, - "input": { - "A": { - "legacyId": 54, - "id": "minecraft:chest", - "damage": 32767 - }, - "B": { - "legacyId": 370, - "id": "minecraft:minecart", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 389, - "id": "minecraft:chest_minecart" - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:chiseled_deepslate", - "type": 1, - "input": { - "A": { - "legacyId": -380, - "id": "minecraft:cobbled_deepslate_slab", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -395, - "id": "minecraft:chiseled_deepslate", - "blockRuntimeId": 1129 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:chiseled_nether_bricks", - "type": 1, - "input": { - "A": { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "damage": 7 - } - }, - "output": [ - { - "legacyId": -302, - "id": "minecraft:chiseled_nether_bricks", - "blockRuntimeId": 1130 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:chiseled_polished_blackstone", - "type": 1, - "input": { - "A": { - "legacyId": -293, - "id": "minecraft:polished_blackstone_slab", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -279, - "id": "minecraft:chiseled_polished_blackstone", - "blockRuntimeId": 1131 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:clay", - "type": 1, - "input": { - "A": { - "legacyId": 384, - "id": "minecraft:clay_ball", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 82, - "id": "minecraft:clay", - "blockRuntimeId": 1139 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:clock", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 393, - "id": "minecraft:clock" - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:coal", - "type": 1, - "input": { - "A": { - "legacyId": 173, - "id": "minecraft:coal_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 302, - "id": "minecraft:coal", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:coal_block", - "type": 1, - "input": { - "A": { - "legacyId": 302, - "id": "minecraft:coal" - } - }, - "output": [ - { - "legacyId": 173, - "id": "minecraft:coal_block", - "blockRuntimeId": 1141 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:coarse_dirt", - "type": 1, - "input": { - "A": { - "legacyId": 3, - "id": "minecraft:dirt" - }, - "B": { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 3, - "id": "minecraft:dirt", - "count": 4, - "blockRuntimeId": 4485 - } - ], - "shape": [ - "AB", - "BA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cobbled_deepslate_slab", - "type": 1, - "input": { - "A": { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -380, - "id": "minecraft:cobbled_deepslate_slab", - "count": 6, - "blockRuntimeId": 1146 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:cobbled_deepslate_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -381, - "id": "minecraft:cobbled_deepslate_stairs", - "count": 4, - "blockRuntimeId": 1148 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:cobbled_deepslate_wall", - "type": 1, - "input": { - "A": { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -382, - "id": "minecraft:cobbled_deepslate_wall", - "count": 6, - "blockRuntimeId": 1156 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:cobblestone_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 67, - "id": "minecraft:stone_stairs", - "count": 4, - "blockRuntimeId": 7281 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cobblestone_wall", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1319 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cobweb_to_string", - "type": 0, - "input": [ - { - "legacyId": 30, - "id": "minecraft:web", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 326, - "id": "minecraft:string", - "count": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:comparator", - "type": 1, - "input": { - "A": { - "legacyId": 76, - "id": "minecraft:redstone_torch", - "damage": 32767 - }, - "B": { - "legacyId": 524, - "id": "minecraft:quartz", - "damage": 32767 - }, - "C": { - "legacyId": 1, - "id": "minecraft:stone" - } - }, - "output": [ - { - "legacyId": 522, - "id": "minecraft:comparator" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:compass", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 391, - "id": "minecraft:compass" - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:composter", - "type": 1, - "input": { - "A": { - "legacyId": 158, - "id": "minecraft:wooden_slab", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -213, - "id": "minecraft:composter", - "blockRuntimeId": 3635 - } - ], - "shape": [ - "A A", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:composter_from_crimson_slab", - "type": 1, - "input": { - "A": { - "legacyId": -264, - "id": "minecraft:crimson_slab", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -213, - "id": "minecraft:composter", - "blockRuntimeId": 3635 - } - ], - "shape": [ - "A A", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:composter_from_warped_slab", - "type": 1, - "input": { - "A": { - "legacyId": -265, - "id": "minecraft:warped_slab", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -213, - "id": "minecraft:composter", - "blockRuntimeId": 3635 - } - ], - "shape": [ - "A A", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:conduit", - "type": 1, - "input": { - "A": { - "legacyId": 570, - "id": "minecraft:nautilus_shell", - "damage": 32767 - }, - "B": { - "legacyId": 571, - "id": "minecraft:heart_of_the_sea", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -157, - "id": "minecraft:conduit", - "blockRuntimeId": 3676 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cookie", - "type": 1, - "input": { - "A": { - "legacyId": 334, - "id": "minecraft:wheat", - "damage": 32767 - }, - "B": { - "legacyId": 412, - "id": "minecraft:cocoa_beans" - } - }, - "output": [ - { - "legacyId": 271, - "id": "minecraft:cookie", - "count": 8 - } - ], - "shape": [ - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:copper_block_from_ingots", - "type": 1, - "input": { - "A": { - "legacyId": 504, - "id": "minecraft:copper_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -340, - "id": "minecraft:copper_block", - "blockRuntimeId": 3677 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_cut_copper", - "type": 1, - "input": { - "A": { - "legacyId": -340, - "id": "minecraft:copper_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -347, - "id": "minecraft:cut_copper", - "count": 4, - "blockRuntimeId": 3910 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_cut_copper_slab", - "type": 1, - "input": { - "A": { - "legacyId": -347, - "id": "minecraft:cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -361, - "id": "minecraft:cut_copper_slab", - "count": 6, - "blockRuntimeId": 3911 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_cut_copper_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -347, - "id": "minecraft:cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -354, - "id": "minecraft:cut_copper_stairs", - "count": 4, - "blockRuntimeId": 3913 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_exposed_cut_copper", - "type": 1, - "input": { - "A": { - "legacyId": -341, - "id": "minecraft:exposed_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -348, - "id": "minecraft:exposed_cut_copper", - "count": 4, - "blockRuntimeId": 4753 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_exposed_cut_copper_slab", - "type": 1, - "input": { - "A": { - "legacyId": -348, - "id": "minecraft:exposed_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -362, - "id": "minecraft:exposed_cut_copper_slab", - "count": 6, - "blockRuntimeId": 4754 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_exposed_cut_copper_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -348, - "id": "minecraft:exposed_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -355, - "id": "minecraft:exposed_cut_copper_stairs", - "count": 4, - "blockRuntimeId": 4756 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 58, - "id": "minecraft:crafting_table", - "blockRuntimeId": 3771 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:crafting_table_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 58, - "id": "minecraft:crafting_table", - "blockRuntimeId": 3771 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:crafting_table_oxidized_cut_copper", - "type": 1, - "input": { - "A": { - "legacyId": -343, - "id": "minecraft:oxidized_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -350, - "id": "minecraft:oxidized_cut_copper", - "count": 4, - "blockRuntimeId": 5755 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_oxidized_cut_copper_slab", - "type": 1, - "input": { - "A": { - "legacyId": -350, - "id": "minecraft:oxidized_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -364, - "id": "minecraft:oxidized_cut_copper_slab", - "count": 6, - "blockRuntimeId": 5756 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_oxidized_cut_copper_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -350, - "id": "minecraft:oxidized_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -357, - "id": "minecraft:oxidized_cut_copper_stairs", - "count": 4, - "blockRuntimeId": 5758 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_waxed_cut_copper", - "type": 1, - "input": { - "A": { - "legacyId": -344, - "id": "minecraft:waxed_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -351, - "id": "minecraft:waxed_cut_copper", - "count": 4, - "blockRuntimeId": 7686 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_waxed_cut_copper_slab", - "type": 1, - "input": { - "A": { - "legacyId": -351, - "id": "minecraft:waxed_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -365, - "id": "minecraft:waxed_cut_copper_slab", - "count": 6, - "blockRuntimeId": 7687 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_waxed_cut_copper_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -351, - "id": "minecraft:waxed_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -358, - "id": "minecraft:waxed_cut_copper_stairs", - "count": 4, - "blockRuntimeId": 7689 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_waxed_exposed_cut_copper", - "type": 1, - "input": { - "A": { - "legacyId": -345, - "id": "minecraft:waxed_exposed_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -352, - "id": "minecraft:waxed_exposed_cut_copper", - "count": 4, - "blockRuntimeId": 7700 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_waxed_exposed_cut_copper_slab", - "type": 1, - "input": { - "A": { - "legacyId": -352, - "id": "minecraft:waxed_exposed_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -366, - "id": "minecraft:waxed_exposed_cut_copper_slab", - "count": 6, - "blockRuntimeId": 7701 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_waxed_exposed_cut_copper_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -352, - "id": "minecraft:waxed_exposed_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -359, - "id": "minecraft:waxed_exposed_cut_copper_stairs", - "count": 4, - "blockRuntimeId": 7703 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_waxed_oxidized_cut_copper", - "type": 1, - "input": { - "A": { - "legacyId": -446, - "id": "minecraft:waxed_oxidized_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -447, - "id": "minecraft:waxed_oxidized_cut_copper", - "count": 4, - "blockRuntimeId": 7714 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_waxed_oxidized_cut_copper_slab", - "type": 1, - "input": { - "A": { - "legacyId": -447, - "id": "minecraft:waxed_oxidized_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -449, - "id": "minecraft:waxed_oxidized_cut_copper_slab", - "count": 6, - "blockRuntimeId": 7715 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_waxed_oxidized_cut_copper_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -447, - "id": "minecraft:waxed_oxidized_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -448, - "id": "minecraft:waxed_oxidized_cut_copper_stairs", - "count": 4, - "blockRuntimeId": 7717 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_waxed_weathered_cut_copper", - "type": 1, - "input": { - "A": { - "legacyId": -346, - "id": "minecraft:waxed_weathered_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -353, - "id": "minecraft:waxed_weathered_cut_copper", - "count": 4, - "blockRuntimeId": 7728 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_waxed_weathered_cut_copper_slab", - "type": 1, - "input": { - "A": { - "legacyId": -353, - "id": "minecraft:waxed_weathered_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -367, - "id": "minecraft:waxed_weathered_cut_copper_slab", - "count": 6, - "blockRuntimeId": 7729 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_waxed_weathered_cut_copper_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -353, - "id": "minecraft:waxed_weathered_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -360, - "id": "minecraft:waxed_weathered_cut_copper_stairs", - "count": 4, - "blockRuntimeId": 7731 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_weathered_cut_copper", - "type": 1, - "input": { - "A": { - "legacyId": -342, - "id": "minecraft:weathered_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -349, - "id": "minecraft:weathered_cut_copper", - "count": 4, - "blockRuntimeId": 7742 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_weathered_cut_copper_slab", - "type": 1, - "input": { - "A": { - "legacyId": -349, - "id": "minecraft:weathered_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -363, - "id": "minecraft:weathered_cut_copper_slab", - "count": 6, - "blockRuntimeId": 7743 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crafting_table_weathered_cut_copper_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -349, - "id": "minecraft:weathered_cut_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -356, - "id": "minecraft:weathered_cut_copper_stairs", - "count": 4, - "blockRuntimeId": 7745 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:crimson_button", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -260, - "id": "minecraft:crimson_button", - "blockRuntimeId": 3772 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_door", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 614, - "id": "minecraft:crimson_door", - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_fence", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -256, - "id": "minecraft:crimson_fence", - "count": 3, - "blockRuntimeId": 3818 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_fence_gate", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -258, - "id": "minecraft:crimson_fence_gate", - "blockRuntimeId": 3819 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_hyphae", - "type": 1, - "input": { - "A": { - "legacyId": -225, - "id": "minecraft:crimson_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -299, - "id": "minecraft:crimson_hyphae", - "count": 3, - "blockRuntimeId": 3836 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -225, - "id": "minecraft:crimson_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "count": 4, - "blockRuntimeId": 3840 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_planks_from_crimson_hyphae", - "type": 1, - "input": { - "A": { - "legacyId": -299, - "id": "minecraft:crimson_hyphae", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "count": 4, - "blockRuntimeId": 3840 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_planks_from_stripped_crimson_hyphae", - "type": 1, - "input": { - "A": { - "legacyId": -300, - "id": "minecraft:stripped_crimson_hyphae", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "count": 4, - "blockRuntimeId": 3840 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_planks_from_stripped_log", - "type": 1, - "input": { - "A": { - "legacyId": -240, - "id": "minecraft:stripped_crimson_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "count": 4, - "blockRuntimeId": 3840 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_pressure_plate", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -262, - "id": "minecraft:crimson_pressure_plate", - "blockRuntimeId": 3841 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_sign", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 612, - "id": "minecraft:crimson_sign", - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_slab", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -264, - "id": "minecraft:crimson_slab", - "count": 6, - "blockRuntimeId": 3858 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -254, - "id": "minecraft:crimson_stairs", - "count": 4, - "blockRuntimeId": 3860 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crimson_trapdoor", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -246, - "id": "minecraft:crimson_trapdoor", - "count": 2, - "blockRuntimeId": 3887 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:crossbow", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "C": { - "legacyId": 326, - "id": "minecraft:string", - "damage": 32767 - }, - "D": { - "legacyId": 131, - "id": "minecraft:tripwire_hook", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 575, - "id": "minecraft:crossbow" - } - ], - "shape": [ - "ABA", - "CDC", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cyan_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 6 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cyan_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye" - } - ], - "output": [ - { - "legacyId": -422, - "id": "minecraft:cyan_candle", - "blockRuntimeId": 3921 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cyan_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 972 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cyan_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 401, - "id": "minecraft:cyan_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 972 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cyan_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3669 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cyan_dye", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye" - }, - { - "legacyId": 397, - "id": "minecraft:green_dye" - } - ], - "output": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cyan_dye_from_lapis_lazuli", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - }, - { - "legacyId": 397, - "id": "minecraft:green_dye" - } - ], - "output": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:cyan_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 401, - "id": "minecraft:cyan_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7097 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cyan_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 9 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7113 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cyan_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 401, - "id": "minecraft:cyan_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7113 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:cyan_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 401, - "id": "minecraft:cyan_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7129 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_oak_boat", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 5 - }, - "B": { - "legacyId": 309, - "id": "minecraft:wooden_shovel", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 380, - "id": "minecraft:dark_oak_boat" - } - ], - "shape": [ - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_oak_door", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 5 - } - }, - "output": [ - { - "legacyId": 557, - "id": "minecraft:dark_oak_door", - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_oak_fence", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 5 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 85, - "id": "minecraft:fence", - "count": 3, - "blockRuntimeId": 4779 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_oak_fence_gate", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 5 - } - }, - "output": [ - { - "legacyId": 186, - "id": "minecraft:dark_oak_fence_gate", - "blockRuntimeId": 3981 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_oak_planks", - "type": 1, - "input": { - "A": { - "legacyId": 162, - "id": "minecraft:log2", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5802 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_oak_planks_from_stripped", - "type": 1, - "input": { - "A": { - "legacyId": -9, - "id": "minecraft:stripped_dark_oak_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5802 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_oak_planks_from_stripped_wood", - "type": 1, - "input": { - "A": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 13 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5802 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_oak_planks_from_wood", - "type": 1, - "input": { - "A": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 5 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5802 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_oak_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 5 - } - }, - "output": [ - { - "legacyId": 164, - "id": "minecraft:dark_oak_stairs", - "count": 4, - "blockRuntimeId": 4013 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_oak_wood", - "type": 1, - "input": { - "A": { - "legacyId": 162, - "id": "minecraft:log2", - "damage": 1 - } - }, - "output": [ - { - "legacyId": -212, - "id": "minecraft:wood", - "count": 3, - "blockRuntimeId": 7812 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_oak_wood_stripped", - "type": 1, - "input": { - "A": { - "legacyId": -9, - "id": "minecraft:stripped_dark_oak_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -212, - "id": "minecraft:wood", - "count": 3, - "blockRuntimeId": 7818 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_oak_wooden_slab", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 5 - } - }, - "output": [ - { - "legacyId": 158, - "id": "minecraft:wooden_slab", - "count": 6, - "blockRuntimeId": 7908 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_prismarine", - "type": 1, - "input": { - "A": { - "legacyId": 565, - "id": "minecraft:prismarine_shard", - "damage": 32767 - }, - "B": { - "legacyId": 395, - "id": "minecraft:black_dye" - } - }, - "output": [ - { - "legacyId": 168, - "id": "minecraft:prismarine", - "blockRuntimeId": 6439 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dark_prismarine_from_ink_sac", - "type": 1, - "input": { - "A": { - "legacyId": 565, - "id": "minecraft:prismarine_shard", - "damage": 32767 - }, - "B": { - "legacyId": 413, - "id": "minecraft:ink_sac" - } - }, - "output": [ - { - "legacyId": 168, - "id": "minecraft:prismarine", - "blockRuntimeId": 6439 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:daylight_detector_from_crimson_slab", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 524, - "id": "minecraft:quartz", - "damage": 32767 - }, - "C": { - "legacyId": -264, - "id": "minecraft:crimson_slab", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 151, - "id": "minecraft:daylight_detector", - "blockRuntimeId": 4067 - } - ], - "shape": [ - "AAA", - "BBB", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:daylight_detector_from_warped_slab", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 524, - "id": "minecraft:quartz", - "damage": 32767 - }, - "C": { - "legacyId": -265, - "id": "minecraft:warped_slab", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 151, - "id": "minecraft:daylight_detector", - "blockRuntimeId": 4067 - } - ], - "shape": [ - "AAA", - "BBB", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:deepslate_brick_slab", - "type": 1, - "input": { - "A": { - "legacyId": -391, - "id": "minecraft:deepslate_bricks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -392, - "id": "minecraft:deepslate_brick_slab", - "count": 6, - "blockRuntimeId": 4105 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:deepslate_brick_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -391, - "id": "minecraft:deepslate_bricks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -393, - "id": "minecraft:deepslate_brick_stairs", - "count": 4, - "blockRuntimeId": 4107 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:deepslate_brick_wall", - "type": 1, - "input": { - "A": { - "legacyId": -391, - "id": "minecraft:deepslate_bricks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -394, - "id": "minecraft:deepslate_brick_wall", - "count": 6, - "blockRuntimeId": 4115 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:deepslate_bricks", - "type": 1, - "input": { - "A": { - "legacyId": -383, - "id": "minecraft:polished_deepslate", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -391, - "id": "minecraft:deepslate_bricks", - "count": 4, - "blockRuntimeId": 4277 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:deepslate_tile_slab", - "type": 1, - "input": { - "A": { - "legacyId": -387, - "id": "minecraft:deepslate_tiles", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -388, - "id": "minecraft:deepslate_tile_slab", - "count": 6, - "blockRuntimeId": 4288 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:deepslate_tile_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -387, - "id": "minecraft:deepslate_tiles", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -389, - "id": "minecraft:deepslate_tile_stairs", - "count": 4, - "blockRuntimeId": 4290 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:deepslate_tile_wall", - "type": 1, - "input": { - "A": { - "legacyId": -387, - "id": "minecraft:deepslate_tiles", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -390, - "id": "minecraft:deepslate_tile_wall", - "count": 6, - "blockRuntimeId": 4298 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:deepslate_tiles", - "type": 1, - "input": { - "A": { - "legacyId": -391, - "id": "minecraft:deepslate_bricks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -387, - "id": "minecraft:deepslate_tiles", - "count": 4, - "blockRuntimeId": 4460 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:detector_rail", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 70, - "id": "minecraft:stone_pressure_plate", - "damage": 32767 - }, - "C": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 28, - "id": "minecraft:detector_rail", - "count": 6, - "blockRuntimeId": 4462 - } - ], - "shape": [ - "A A", - "ABA", - "ACA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diamond", - "type": 1, - "input": { - "A": { - "legacyId": 57, - "id": "minecraft:diamond_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 304, - "id": "minecraft:diamond", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diamond_axe", - "type": 1, - "input": { - "A": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 319, - "id": "minecraft:diamond_axe" - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diamond_block", - "type": 1, - "input": { - "A": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 57, - "id": "minecraft:diamond_block", - "blockRuntimeId": 4474 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diamond_boots", - "type": 1, - "input": { - "A": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 350, - "id": "minecraft:diamond_boots" - } - ], - "shape": [ - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diamond_chestplate", - "type": 1, - "input": { - "A": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 348, - "id": "minecraft:diamond_chestplate" - } - ], - "shape": [ - "A A", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diamond_helmet", - "type": 1, - "input": { - "A": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 347, - "id": "minecraft:diamond_helmet" - } - ], - "shape": [ - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diamond_hoe", - "type": 1, - "input": { - "A": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 332, - "id": "minecraft:diamond_hoe" - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diamond_leggings", - "type": 1, - "input": { - "A": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 349, - "id": "minecraft:diamond_leggings" - } - ], - "shape": [ - "AAA", - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diamond_pickaxe", - "type": 1, - "input": { - "A": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 318, - "id": "minecraft:diamond_pickaxe" - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diamond_shovel", - "type": 1, - "input": { - "A": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 317, - "id": "minecraft:diamond_shovel" - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diamond_sword", - "type": 1, - "input": { - "A": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 316, - "id": "minecraft:diamond_sword" - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diorite", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - "B": { - "legacyId": 524, - "id": "minecraft:quartz", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "count": 2, - "blockRuntimeId": 7183 - } - ], - "shape": [ - "AB", - "BA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diorite_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 3 - } - }, - "output": [ - { - "legacyId": -170, - "id": "minecraft:diorite_stairs", - "count": 4, - "blockRuntimeId": 4476 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:diorite_wall", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 3 - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1322 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dispenser", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - "B": { - "legacyId": 300, - "id": "minecraft:bow", - "damage": 32767 - }, - "C": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 23, - "id": "minecraft:dispenser", - "blockRuntimeId": 4490 - } - ], - "shape": [ - "AAA", - "ABA", - "ACA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dried_kelp", - "type": 1, - "input": { - "A": { - "legacyId": -139, - "id": "minecraft:dried_kelp_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 270, - "id": "minecraft:dried_kelp", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dried_kelp_block", - "type": 1, - "input": { - "A": { - "legacyId": 270, - "id": "minecraft:dried_kelp", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -139, - "id": "minecraft:dried_kelp_block", - "blockRuntimeId": 4584 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dripstone_block", - "type": 1, - "input": { - "A": { - "legacyId": -308, - "id": "minecraft:pointed_dripstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -317, - "id": "minecraft:dripstone_block", - "blockRuntimeId": 4585 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dripstone_block_from_pointed_dripstone", - "type": 1, - "input": { - "A": { - "legacyId": -308, - "id": "minecraft:pointed_dripstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -317, - "id": "minecraft:dripstone_block", - "blockRuntimeId": 4585 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:dropper", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - "B": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 125, - "id": "minecraft:dropper", - "blockRuntimeId": 4589 - } - ], - "shape": [ - "AAA", - "A A", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:emerald", - "type": 1, - "input": { - "A": { - "legacyId": 133, - "id": "minecraft:emerald_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 512, - "id": "minecraft:emerald", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:emerald_block", - "type": 1, - "input": { - "A": { - "legacyId": 512, - "id": "minecraft:emerald", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 133, - "id": "minecraft:emerald_block", - "blockRuntimeId": 4717 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:empty_map_to_enhanced", - "type": 0, - "input": [ - { - "legacyId": 515, - "id": "minecraft:empty_map" - }, - { - "legacyId": 391, - "id": "minecraft:compass", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 515, - "id": "minecraft:empty_map", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:enchanting_table", - "type": 1, - "input": { - "A": { - "legacyId": 387, - "id": "minecraft:book", - "damage": 32767 - }, - "B": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - }, - "C": { - "legacyId": 49, - "id": "minecraft:obsidian", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 116, - "id": "minecraft:enchanting_table", - "blockRuntimeId": 4719 - } - ], - "shape": [ - " A ", - "BCB", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:end_brick_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 206, - "id": "minecraft:end_bricks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -178, - "id": "minecraft:end_brick_stairs", - "count": 4, - "blockRuntimeId": 4720 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:end_brick_wall", - "type": 1, - "input": { - "A": { - "legacyId": 206, - "id": "minecraft:end_bricks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1329 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:end_bricks", - "type": 1, - "input": { - "A": { - "legacyId": 121, - "id": "minecraft:end_stone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 206, - "id": "minecraft:end_bricks", - "count": 4, - "blockRuntimeId": 4728 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:end_crystal", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 433, - "id": "minecraft:ender_eye", - "damage": 32767 - }, - "C": { - "legacyId": 424, - "id": "minecraft:ghast_tear", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 629, - "id": "minecraft:end_crystal" - } - ], - "shape": [ - "AAA", - "ABA", - "ACA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:end_rod", - "type": 1, - "input": { - "A": { - "legacyId": 423, - "id": "minecraft:blaze_rod", - "damage": 32767 - }, - "B": { - "legacyId": 559, - "id": "minecraft:popped_chorus_fruit", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 208, - "id": "minecraft:end_rod", - "count": 4, - "blockRuntimeId": 4739 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:ender_chest", - "type": 1, - "input": { - "A": { - "legacyId": 49, - "id": "minecraft:obsidian", - "damage": 32767 - }, - "B": { - "legacyId": 433, - "id": "minecraft:ender_eye", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 130, - "id": "minecraft:ender_chest", - "blockRuntimeId": 4746 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:ender_eye", - "type": 0, - "input": [ - { - "legacyId": 422, - "id": "minecraft:ender_pearl", - "damage": 32767 - }, - { - "legacyId": 429, - "id": "minecraft:blaze_powder", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 433, - "id": "minecraft:ender_eye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:fence", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks" - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 85, - "id": "minecraft:fence", - "count": 3, - "blockRuntimeId": 4774 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:fence_gate", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks" - } - }, - "output": [ - { - "legacyId": 107, - "id": "minecraft:fence_gate", - "blockRuntimeId": 4780 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:fermented_spider_eye", - "type": 0, - "input": [ - { - "legacyId": 278, - "id": "minecraft:spider_eye", - "damage": 32767 - }, - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 416, - "id": "minecraft:sugar", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 428, - "id": "minecraft:fermented_spider_eye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:fishing_rod", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 326, - "id": "minecraft:string", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 392, - "id": "minecraft:fishing_rod" - } - ], - "shape": [ - " A", - " AB", - "A B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:fletching_table", - "type": 1, - "input": { - "A": { - "legacyId": 356, - "id": "minecraft:flint", - "damage": 32767 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -201, - "id": "minecraft:fletching_table", - "blockRuntimeId": 4812 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:fletching_table_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": 356, - "id": "minecraft:flint", - "damage": 32767 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -201, - "id": "minecraft:fletching_table", - "blockRuntimeId": 4812 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:fletching_table_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": 356, - "id": "minecraft:flint", - "damage": 32767 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -201, - "id": "minecraft:fletching_table", - "blockRuntimeId": 4812 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:flint_and_steel", - "type": 0, - "input": [ - { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - { - "legacyId": 356, - "id": "minecraft:flint", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 299, - "id": "minecraft:flint_and_steel" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:flower_pot", - "type": 1, - "input": { - "A": { - "legacyId": 383, - "id": "minecraft:brick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 514, - "id": "minecraft:flower_pot" - } - ], - "shape": [ - "A A", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:furnace", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 61, - "id": "minecraft:furnace", - "blockRuntimeId": 4876 - } - ], - "shape": [ - "AAA", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:furnace_from_blackstone", - "type": 1, - "input": { - "A": { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 61, - "id": "minecraft:furnace", - "blockRuntimeId": 4876 - } - ], - "shape": [ - "AAA", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:furnace_from_cobbled_deepslate", - "type": 1, - "input": { - "A": { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 61, - "id": "minecraft:furnace", - "blockRuntimeId": 4876 - } - ], - "shape": [ - "AAA", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:glass_bottle", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 427, - "id": "minecraft:glass_bottle", - "count": 3 - } - ], - "shape": [ - "A A", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 102, - "id": "minecraft:glass_pane", - "count": 16, - "blockRuntimeId": 4884 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:glow_frame", - "type": 0, - "input": [ - { - "legacyId": 513, - "id": "minecraft:frame", - "damage": 32767 - }, - { - "legacyId": 503, - "id": "minecraft:glow_ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 621, - "id": "minecraft:glow_frame" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:glowstone", - "type": 1, - "input": { - "A": { - "legacyId": 394, - "id": "minecraft:glowstone_dust", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 89, - "id": "minecraft:glowstone", - "blockRuntimeId": 4974 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gold_block", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 41, - "id": "minecraft:gold_block", - "blockRuntimeId": 4975 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gold_ingot_from_block", - "type": 1, - "input": { - "A": { - "legacyId": 41, - "id": "minecraft:gold_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gold_ingot_from_nuggets", - "type": 1, - "input": { - "A": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 306, - "id": "minecraft:gold_ingot" - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gold_nugget", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:golden_apple", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 257, - "id": "minecraft:apple", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 258, - "id": "minecraft:golden_apple" - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:golden_axe", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 325, - "id": "minecraft:golden_axe" - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:golden_boots", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 354, - "id": "minecraft:golden_boots" - } - ], - "shape": [ - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:golden_carrot", - "type": 1, - "input": { - "A": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "B": { - "legacyId": 279, - "id": "minecraft:carrot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 283, - "id": "minecraft:golden_carrot" - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:golden_chestplate", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 352, - "id": "minecraft:golden_chestplate" - } - ], - "shape": [ - "A A", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:golden_helmet", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 351, - "id": "minecraft:golden_helmet" - } - ], - "shape": [ - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:golden_hoe", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 333, - "id": "minecraft:golden_hoe" - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:golden_leggings", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 353, - "id": "minecraft:golden_leggings" - } - ], - "shape": [ - "AAA", - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:golden_pickaxe", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 324, - "id": "minecraft:golden_pickaxe" - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:golden_rail", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "C": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 27, - "id": "minecraft:golden_rail", - "count": 6, - "blockRuntimeId": 4977 - } - ], - "shape": [ - "A A", - "ABA", - "ACA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:golden_shovel", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 323, - "id": "minecraft:golden_shovel" - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:golden_sword", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 322, - "id": "minecraft:golden_sword" - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:granite", - "type": 0, - "input": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 3 - }, - { - "legacyId": 524, - "id": "minecraft:quartz", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "blockRuntimeId": 7181 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:granite_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 1 - } - }, - "output": [ - { - "legacyId": -169, - "id": "minecraft:granite_stairs", - "count": 4, - "blockRuntimeId": 4989 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:granite_wall", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1321 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gray_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 8 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gray_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye" - } - ], - "output": [ - { - "legacyId": -420, - "id": "minecraft:gray_candle", - "blockRuntimeId": 5000 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gray_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 970 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gray_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 403, - "id": "minecraft:gray_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 970 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gray_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3667 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gray_dye", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "output": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gray_dye_from_black_bonemeal", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:gray_dye_from_ink_bonemeal", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 3 - }, - { - "id": "minecraft:gray_dye_from_ink_white", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "output": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:gray_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 403, - "id": "minecraft:gray_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7095 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gray_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 7 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7111 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gray_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 403, - "id": "minecraft:gray_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7111 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:gray_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 403, - "id": "minecraft:gray_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7127 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:green_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 2 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:green_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye" - } - ], - "output": [ - { - "legacyId": -426, - "id": "minecraft:green_candle", - "blockRuntimeId": 5016 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:green_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 976 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:green_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 397, - "id": "minecraft:green_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 976 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:green_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3673 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:green_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 397, - "id": "minecraft:green_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7101 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:green_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 13 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7117 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:green_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 397, - "id": "minecraft:green_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7117 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:green_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 397, - "id": "minecraft:green_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7133 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:grindstone", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -166, - "id": "minecraft:double_stone_slab4", - "damage": 2 - }, - "C": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -195, - "id": "minecraft:grindstone", - "blockRuntimeId": 5032 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:grindstone_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "damage": 32767 - }, - "C": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -195, - "id": "minecraft:grindstone", - "blockRuntimeId": 5032 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:grindstone_from_crimson_planks2", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "damage": 32767 - }, - "C": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -195, - "id": "minecraft:grindstone", - "blockRuntimeId": 5032 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:grindstone_from_crimson_planks3", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "damage": 32767 - }, - "C": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -195, - "id": "minecraft:grindstone", - "blockRuntimeId": 5032 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:grindstone_from_crimson_planks4", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -166, - "id": "minecraft:double_stone_slab4", - "damage": 32767 - }, - "C": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -195, - "id": "minecraft:grindstone", - "blockRuntimeId": 5032 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:grindstone_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "damage": 32767 - }, - "C": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -195, - "id": "minecraft:grindstone", - "blockRuntimeId": 5032 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:grindstone_from_warped_planks2", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "damage": 32767 - }, - "C": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -195, - "id": "minecraft:grindstone", - "blockRuntimeId": 5032 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:grindstone_from_warped_planks3", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "damage": 32767 - }, - "C": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -195, - "id": "minecraft:grindstone", - "blockRuntimeId": 5032 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:grindstone_from_warped_planks4", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -166, - "id": "minecraft:double_stone_slab4", - "damage": 32767 - }, - "C": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -195, - "id": "minecraft:grindstone", - "blockRuntimeId": 5032 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:hay_block", - "type": 1, - "input": { - "A": { - "legacyId": 334, - "id": "minecraft:wheat", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 170, - "id": "minecraft:hay_block", - "blockRuntimeId": 5084 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:heavy_weighted_pressure_plate", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 148, - "id": "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId": 5096 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:honey_block", - "type": 1, - "input": { - "A": { - "legacyId": 591, - "id": "minecraft:honey_bottle", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -220, - "id": "minecraft:honey_block", - "blockRuntimeId": 5112 - }, - { - "legacyId": 427, - "id": "minecraft:glass_bottle", - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:honey_bottle", - "type": 0, - "input": [ - { - "legacyId": -220, - "id": "minecraft:honey_block", - "damage": 32767 - }, - { - "legacyId": 427, - "id": "minecraft:glass_bottle", - "damage": 32767 - }, - { - "legacyId": 427, - "id": "minecraft:glass_bottle", - "damage": 32767 - }, - { - "legacyId": 427, - "id": "minecraft:glass_bottle", - "damage": 32767 - }, - { - "legacyId": 427, - "id": "minecraft:glass_bottle", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 591, - "id": "minecraft:honey_bottle", - "count": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:honey_bottle_to_sugar", - "type": 1, - "input": { - "A": { - "legacyId": 591, - "id": "minecraft:honey_bottle", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 416, - "id": "minecraft:sugar", - "count": 3 - }, - { - "legacyId": 427, - "id": "minecraft:glass_bottle" - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:honeycomb_block", - "type": 1, - "input": { - "A": { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -221, - "id": "minecraft:honeycomb_block", - "blockRuntimeId": 5113 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:hopper", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 54, - "id": "minecraft:chest", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 527, - "id": "minecraft:hopper" - } - ], - "shape": [ - "A A", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:hopper_minecart", - "type": 1, - "input": { - "A": { - "legacyId": 527, - "id": "minecraft:hopper", - "damage": 32767 - }, - "B": { - "legacyId": 370, - "id": "minecraft:minecart", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 526, - "id": "minecraft:hopper_minecart" - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:ingots_from_copper", - "type": 1, - "input": { - "A": { - "legacyId": -340, - "id": "minecraft:copper_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 504, - "id": "minecraft:copper_ingot", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:ingots_from_waxed_copper", - "type": 1, - "input": { - "A": { - "legacyId": -344, - "id": "minecraft:waxed_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 504, - "id": "minecraft:copper_ingot", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:iron_axe", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 298, - "id": "minecraft:iron_axe" - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_bars", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 101, - "id": "minecraft:iron_bars", - "count": 16, - "blockRuntimeId": 5133 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_block", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 42, - "id": "minecraft:iron_block", - "blockRuntimeId": 5134 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_boots", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 346, - "id": "minecraft:iron_boots" - } - ], - "shape": [ - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_chestplate", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 344, - "id": "minecraft:iron_chestplate" - } - ], - "shape": [ - "A A", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_door", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 372, - "id": "minecraft:iron_door", - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_helmet", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 343, - "id": "minecraft:iron_helmet" - } - ], - "shape": [ - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_hoe", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 331, - "id": "minecraft:iron_hoe" - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_ingot_from_block", - "type": 1, - "input": { - "A": { - "legacyId": 42, - "id": "minecraft:iron_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_ingot_from_nuggets", - "type": 1, - "input": { - "A": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 305, - "id": "minecraft:iron_ingot" - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_leggings", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 345, - "id": "minecraft:iron_leggings" - } - ], - "shape": [ - "AAA", - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_nugget", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_pickaxe", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 297, - "id": "minecraft:iron_pickaxe" - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_shovel", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 296, - "id": "minecraft:iron_shovel" - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_sword", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 307, - "id": "minecraft:iron_sword" - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:iron_trapdoor", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 167, - "id": "minecraft:iron_trapdoor", - "blockRuntimeId": 5168 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:item_frame", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 381, - "id": "minecraft:leather", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 513, - "id": "minecraft:frame" - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:jukebox_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 84, - "id": "minecraft:jukebox", - "blockRuntimeId": 5208 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:jukebox_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 84, - "id": "minecraft:jukebox", - "blockRuntimeId": 5208 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:jungle_boat", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 3 - }, - "B": { - "legacyId": 309, - "id": "minecraft:wooden_shovel", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 377, - "id": "minecraft:jungle_boat" - } - ], - "shape": [ - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:jungle_door", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 3 - } - }, - "output": [ - { - "legacyId": 555, - "id": "minecraft:jungle_door", - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:jungle_fence", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 3 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 85, - "id": "minecraft:fence", - "count": 3, - "blockRuntimeId": 4777 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:jungle_fence_gate", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 3 - } - }, - "output": [ - { - "legacyId": 185, - "id": "minecraft:jungle_fence_gate", - "blockRuntimeId": 5253 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:jungle_planks", - "type": 1, - "input": { - "A": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 3 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5800 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:jungle_planks_from_stripped", - "type": 1, - "input": { - "A": { - "legacyId": -7, - "id": "minecraft:stripped_jungle_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5800 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:jungle_planks_from_stripped_wood", - "type": 1, - "input": { - "A": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 11 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5800 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:jungle_planks_from_wood", - "type": 1, - "input": { - "A": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 3 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5800 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:jungle_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 3 - } - }, - "output": [ - { - "legacyId": 136, - "id": "minecraft:jungle_stairs", - "count": 4, - "blockRuntimeId": 5285 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:jungle_wood", - "type": 1, - "input": { - "A": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 3 - } - }, - "output": [ - { - "legacyId": -212, - "id": "minecraft:wood", - "count": 3, - "blockRuntimeId": 7810 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:jungle_wood_stripped", - "type": 1, - "input": { - "A": { - "legacyId": -7, - "id": "minecraft:stripped_jungle_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -212, - "id": "minecraft:wood", - "count": 3, - "blockRuntimeId": 7816 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:jungle_wooden_slab", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 3 - } - }, - "output": [ - { - "legacyId": 158, - "id": "minecraft:wooden_slab", - "count": 6, - "blockRuntimeId": 7906 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:ladder", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 65, - "id": "minecraft:ladder", - "count": 3, - "blockRuntimeId": 5357 - } - ], - "shape": [ - "A A", - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lantern", - "type": 1, - "input": { - "A": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "B": { - "legacyId": 50, - "id": "minecraft:torch", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -208, - "id": "minecraft:lantern", - "blockRuntimeId": 5363 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lapis_block", - "type": 1, - "input": { - "A": { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - } - }, - "output": [ - { - "legacyId": 22, - "id": "minecraft:lapis_block", - "blockRuntimeId": 5365 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lapis_lazuli", - "type": 1, - "input": { - "A": { - "legacyId": 22, - "id": "minecraft:lapis_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lead", - "type": 1, - "input": { - "A": { - "legacyId": 326, - "id": "minecraft:string", - "damage": 32767 - }, - "B": { - "legacyId": 388, - "id": "minecraft:slime_ball", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 547, - "id": "minecraft:lead", - "count": 2 - } - ], - "shape": [ - "AA ", - "AB ", - " A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:leather", - "type": 1, - "input": { - "A": { - "legacyId": 529, - "id": "minecraft:rabbit_hide", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 381, - "id": "minecraft:leather" - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:leather_boots", - "type": 1, - "input": { - "A": { - "legacyId": 381, - "id": "minecraft:leather", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 338, - "id": "minecraft:leather_boots" - } - ], - "shape": [ - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:leather_chestplate", - "type": 1, - "input": { - "A": { - "legacyId": 381, - "id": "minecraft:leather", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 336, - "id": "minecraft:leather_chestplate" - } - ], - "shape": [ - "A A", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:leather_helmet", - "type": 1, - "input": { - "A": { - "legacyId": 381, - "id": "minecraft:leather", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 335, - "id": "minecraft:leather_helmet" - } - ], - "shape": [ - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:leather_horse_armor", - "type": 1, - "input": { - "A": { - "legacyId": 381, - "id": "minecraft:leather", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 530, - "id": "minecraft:leather_horse_armor" - } - ], - "shape": [ - "A A", - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:leather_leggings", - "type": 1, - "input": { - "A": { - "legacyId": 381, - "id": "minecraft:leather", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 337, - "id": "minecraft:leather_leggings" - } - ], - "shape": [ - "AAA", - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lectern", - "type": 1, - "input": { - "A": { - "legacyId": 158, - "id": "minecraft:wooden_slab", - "damage": 32767 - }, - "B": { - "legacyId": 47, - "id": "minecraft:bookshelf", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -194, - "id": "minecraft:lectern", - "blockRuntimeId": 5434 - } - ], - "shape": [ - "AAA", - " B ", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lectern_from_crimson_slab", - "type": 1, - "input": { - "A": { - "legacyId": -264, - "id": "minecraft:crimson_slab", - "damage": 32767 - }, - "B": { - "legacyId": 47, - "id": "minecraft:bookshelf", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -194, - "id": "minecraft:lectern", - "blockRuntimeId": 5434 - } - ], - "shape": [ - "AAA", - " B ", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:lectern_from_warped_slab", - "type": 1, - "input": { - "A": { - "legacyId": -265, - "id": "minecraft:warped_slab", - "damage": 32767 - }, - "B": { - "legacyId": 47, - "id": "minecraft:bookshelf", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -194, - "id": "minecraft:lectern", - "blockRuntimeId": 5434 - } - ], - "shape": [ - "AAA", - " B ", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:lever", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 69, - "id": "minecraft:lever", - "blockRuntimeId": 5442 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_blue_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 12 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_blue_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye" - } - ], - "output": [ - { - "legacyId": -416, - "id": "minecraft:light_blue_candle", - "blockRuntimeId": 5474 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_blue_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 966 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_blue_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 407, - "id": "minecraft:light_blue_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 966 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_blue_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3663 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_blue_dye", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "output": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:light_blue_dye_from_blue_bonemeal", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:light_blue_dye_from_blue_orchid", - "type": 0, - "input": [ - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_blue_dye_from_lapis_bonemeal", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 4 - }, - { - "id": "minecraft:light_blue_dye_from_lapis_white", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "output": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 3 - }, - { - "id": "minecraft:light_blue_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 407, - "id": "minecraft:light_blue_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7091 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_blue_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 3 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7107 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_blue_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 407, - "id": "minecraft:light_blue_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7107 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_blue_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 407, - "id": "minecraft:light_blue_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7123 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_gray__carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 402, - "id": "minecraft:light_gray_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 971 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_gray_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 7 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_gray_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye" - } - ], - "output": [ - { - "legacyId": -421, - "id": "minecraft:light_gray_candle", - "blockRuntimeId": 5490 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_gray_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 971 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_gray_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3668 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_gray_dye", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "output": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "count": 3 - } - ], - "block": "crafting_table", - "priority": 3 - }, - { - "id": "minecraft:light_gray_dye_from_azure_bluet", - "type": 0, - "input": [ - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye" - } - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:light_gray_dye_from_black_bonemeal", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "count": 3 - } - ], - "block": "crafting_table", - "priority": 7 - }, - { - "id": "minecraft:light_gray_dye_from_gray_bonemeal", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 6 - }, - { - "id": "minecraft:light_gray_dye_from_gray_white", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "output": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 4 - }, - { - "id": "minecraft:light_gray_dye_from_ink_bonemeal", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "count": 3 - } - ], - "block": "crafting_table", - "priority": 8 - }, - { - "id": "minecraft:light_gray_dye_from_ink_white", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "output": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "count": 3 - } - ], - "block": "crafting_table", - "priority": 5 - }, - { - "id": "minecraft:light_gray_dye_from_oxeye_daisy", - "type": 0, - "input": [ - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 8 - } - ], - "output": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye" - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:light_gray_dye_from_white_tulip", - "type": 0, - "input": [ - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 6 - } - ], - "output": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_gray_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 402, - "id": "minecraft:light_gray_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7096 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_gray_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 8 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7112 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_gray_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 402, - "id": "minecraft:light_gray_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7112 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_gray_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 402, - "id": "minecraft:light_gray_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7128 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:light_weighted_pressure_plate", - "type": 1, - "input": { - "A": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 147, - "id": "minecraft:light_weighted_pressure_plate", - "blockRuntimeId": 5500 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lightning_rod", - "type": 1, - "input": { - "A": { - "legacyId": 504, - "id": "minecraft:copper_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -312, - "id": "minecraft:lightning_rod", - "blockRuntimeId": 5516 - } - ], - "shape": [ - "A", - "A", - "A" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:lime__carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 405, - "id": "minecraft:lime_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 968 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lime_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 10 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lime_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye" - } - ], - "output": [ - { - "legacyId": -418, - "id": "minecraft:lime_candle", - "blockRuntimeId": 5522 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lime_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 968 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lime_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3665 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lime_dye", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "output": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lime_dye_from_bonemeal", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:lime_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 405, - "id": "minecraft:lime_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7093 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lime_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 5 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7109 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lime_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 405, - "id": "minecraft:lime_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7109 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lime_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 405, - "id": "minecraft:lime_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7125 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lit_pumpkin", - "type": 1, - "input": { - "A": { - "legacyId": -155, - "id": "minecraft:carved_pumpkin", - "damage": 32767 - }, - "B": { - "legacyId": 50, - "id": "minecraft:torch", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 91, - "id": "minecraft:lit_pumpkin", - "blockRuntimeId": 5551 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:locator_map", - "type": 1, - "input": { - "A": { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - "B": { - "legacyId": 391, - "id": "minecraft:compass", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 515, - "id": "minecraft:empty_map", - "damage": 2 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:lodestone", - "type": 1, - "input": { - "A": { - "legacyId": 98, - "id": "minecraft:stonebrick", - "damage": 3 - }, - "B": { - "legacyId": 601, - "id": "minecraft:netherite_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -222, - "id": "minecraft:lodestone", - "blockRuntimeId": 5563 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:loom_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": 326, - "id": "minecraft:string", - "damage": 32767 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -204, - "id": "minecraft:loom", - "blockRuntimeId": 5582 - } - ], - "shape": [ - "AA", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:loom_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": 326, - "id": "minecraft:string", - "damage": 32767 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -204, - "id": "minecraft:loom", - "blockRuntimeId": 5582 - } - ], - "shape": [ - "AA", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:magenta_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 13 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:magenta_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye" - } - ], - "output": [ - { - "legacyId": -415, - "id": "minecraft:magenta_candle", - "blockRuntimeId": 5586 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:magenta_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 965 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:magenta_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 408, - "id": "minecraft:magenta_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 965 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:magenta_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3662 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:magenta_dye", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye" - } - ], - "output": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "count": 3 - } - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:magenta_dye_from_allium", - "type": 0, - "input": [ - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 2 - } - ], - "output": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye" - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:magenta_dye_from_blue_ink_bonemeal", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "count": 4 - } - ], - "block": "crafting_table", - "priority": 6 - }, - { - "id": "minecraft:magenta_dye_from_blue_ink_white", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "output": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "count": 4 - } - ], - "block": "crafting_table", - "priority": 4 - }, - { - "id": "minecraft:magenta_dye_from_lapis_ink_bonemeal", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "count": 4 - } - ], - "block": "crafting_table", - "priority": 8 - }, - { - "id": "minecraft:magenta_dye_from_lapis_ink_white", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "output": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "count": 4 - } - ], - "block": "crafting_table", - "priority": 7 - }, - { - "id": "minecraft:magenta_dye_from_lapis_red_pink", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye" - } - ], - "output": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "count": 3 - } - ], - "block": "crafting_table", - "priority": 5 - }, - { - "id": "minecraft:magenta_dye_from_lilac", - "type": 0, - "input": [ - { - "legacyId": 175, - "id": "minecraft:double_plant", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:magenta_dye_from_purple_and_pink", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye" - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye" - } - ], - "output": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 3 - }, - { - "id": "minecraft:magenta_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 408, - "id": "minecraft:magenta_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7090 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:magenta_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 2 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7106 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:magenta_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 408, - "id": "minecraft:magenta_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7106 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:magenta_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 408, - "id": "minecraft:magenta_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7122 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:magma", - "type": 1, - "input": { - "A": { - "legacyId": 430, - "id": "minecraft:magma_cream", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 213, - "id": "minecraft:magma", - "blockRuntimeId": 5602 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:magma_cream", - "type": 0, - "input": [ - { - "legacyId": 429, - "id": "minecraft:blaze_powder", - "damage": 32767 - }, - { - "legacyId": 388, - "id": "minecraft:slime_ball", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 430, - "id": "minecraft:magma_cream" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:map", - "type": 1, - "input": { - "A": { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 515, - "id": "minecraft:empty_map" - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:melon_block", - "type": 1, - "input": { - "A": { - "legacyId": 272, - "id": "minecraft:melon_slice", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 103, - "id": "minecraft:melon_block", - "blockRuntimeId": 5609 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:melon_seeds", - "type": 1, - "input": { - "A": { - "legacyId": 272, - "id": "minecraft:melon_slice", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 293, - "id": "minecraft:melon_seeds" - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:minecart", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 370, - "id": "minecraft:minecart" - } - ], - "shape": [ - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:moss_carpet", - "type": 1, - "input": { - "A": { - "legacyId": -320, - "id": "minecraft:moss_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -335, - "id": "minecraft:moss_carpet", - "count": 3, - "blockRuntimeId": 5666 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:mossy_cobblestone", - "type": 0, - "input": [ - { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - { - "legacyId": 106, - "id": "minecraft:vine", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 48, - "id": "minecraft:mossy_cobblestone", - "blockRuntimeId": 5667 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:mossy_cobblestone_from_moss", - "type": 0, - "input": [ - { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - { - "legacyId": -320, - "id": "minecraft:moss_block", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 48, - "id": "minecraft:mossy_cobblestone", - "blockRuntimeId": 5667 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:mossy_cobblestone_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 48, - "id": "minecraft:mossy_cobblestone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -179, - "id": "minecraft:mossy_cobblestone_stairs", - "count": 4, - "blockRuntimeId": 5668 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:mossy_cobblestone_wall", - "type": 1, - "input": { - "A": { - "legacyId": 48, - "id": "minecraft:mossy_cobblestone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1320 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:mossy_stone_brick_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 98, - "id": "minecraft:stonebrick", - "damage": 1 - } - }, - "output": [ - { - "legacyId": -175, - "id": "minecraft:mossy_stone_brick_stairs", - "count": 4, - "blockRuntimeId": 5676 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:mossy_stone_brick_wall", - "type": 1, - "input": { - "A": { - "legacyId": 98, - "id": "minecraft:stonebrick", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1327 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:mossy_stonebrick", - "type": 0, - "input": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick" - }, - { - "legacyId": 106, - "id": "minecraft:vine", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick", - "blockRuntimeId": 7290 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:mossy_stonebrick_from_moss", - "type": 0, - "input": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick" - }, - { - "legacyId": -320, - "id": "minecraft:moss_block", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick", - "blockRuntimeId": 7290 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:mushroom_stew", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 260, - "id": "minecraft:mushroom_stew" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:nether_brick", - "type": 1, - "input": { - "A": { - "legacyId": 523, - "id": "minecraft:netherbrick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 112, - "id": "minecraft:nether_brick", - "blockRuntimeId": 5688 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:nether_brick_fence", - "type": 1, - "input": { - "A": { - "legacyId": 112, - "id": "minecraft:nether_brick", - "damage": 32767 - }, - "B": { - "legacyId": 523, - "id": "minecraft:netherbrick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 113, - "id": "minecraft:nether_brick_fence", - "count": 6, - "blockRuntimeId": 5689 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:nether_brick_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 112, - "id": "minecraft:nether_brick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 114, - "id": "minecraft:nether_brick_stairs", - "count": 4, - "blockRuntimeId": 5690 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:nether_brick_wall", - "type": 1, - "input": { - "A": { - "legacyId": 112, - "id": "minecraft:nether_brick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1328 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:nether_wart_block", - "type": 1, - "input": { - "A": { - "legacyId": 294, - "id": "minecraft:nether_wart", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 214, - "id": "minecraft:nether_wart_block", - "blockRuntimeId": 5704 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:netherite_block", - "type": 1, - "input": { - "A": { - "legacyId": 601, - "id": "minecraft:netherite_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -270, - "id": "minecraft:netherite_block", - "blockRuntimeId": 5705 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:netherite_ingot", - "type": 0, - "input": [ - { - "legacyId": 611, - "id": "minecraft:netherite_scrap", - "damage": 32767 - }, - { - "legacyId": 611, - "id": "minecraft:netherite_scrap", - "damage": 32767 - }, - { - "legacyId": 611, - "id": "minecraft:netherite_scrap", - "damage": 32767 - }, - { - "legacyId": 611, - "id": "minecraft:netherite_scrap", - "damage": 32767 - }, - { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 601, - "id": "minecraft:netherite_ingot" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:netherite_ingot_from_block", - "type": 1, - "input": { - "A": { - "legacyId": -270, - "id": "minecraft:netherite_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 601, - "id": "minecraft:netherite_ingot", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:noteblock_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 25, - "id": "minecraft:noteblock", - "blockRuntimeId": 5716 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:noteblock_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 25, - "id": "minecraft:noteblock", - "blockRuntimeId": 5716 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:oak_planks", - "type": 1, - "input": { - "A": { - "legacyId": 17, - "id": "minecraft:log" - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5797 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:oak_planks_from_stripped", - "type": 1, - "input": { - "A": { - "legacyId": -10, - "id": "minecraft:stripped_oak_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5797 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:oak_planks_from_stripped_wood", - "type": 1, - "input": { - "A": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 8 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5797 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:oak_planks_from_wood", - "type": 1, - "input": { - "A": { - "legacyId": -212, - "id": "minecraft:wood" - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5797 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:oak_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks" - } - }, - "output": [ - { - "legacyId": 53, - "id": "minecraft:oak_stairs", - "count": 4, - "blockRuntimeId": 5717 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:oak_wood", - "type": 1, - "input": { - "A": { - "legacyId": 17, - "id": "minecraft:log" - } - }, - "output": [ - { - "legacyId": -212, - "id": "minecraft:wood", - "count": 3, - "blockRuntimeId": 7807 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:oak_wood_stripped", - "type": 1, - "input": { - "A": { - "legacyId": -10, - "id": "minecraft:stripped_oak_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -212, - "id": "minecraft:wood", - "count": 3, - "blockRuntimeId": 7813 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:oak_wooden_slab", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks" - } - }, - "output": [ - { - "legacyId": 158, - "id": "minecraft:wooden_slab", - "count": 6, - "blockRuntimeId": 7903 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:observer", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - "B": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - }, - "C": { - "legacyId": 524, - "id": "minecraft:quartz", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 251, - "id": "minecraft:observer", - "blockRuntimeId": 5725 - } - ], - "shape": [ - "AAA", - "BBC", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:orange_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 14 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:orange_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye" - } - ], - "output": [ - { - "legacyId": -414, - "id": "minecraft:orange_candle", - "blockRuntimeId": 5738 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:orange_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 964 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:orange_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 409, - "id": "minecraft:orange_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 964 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:orange_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3661 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:orange_dye_from_orange_tulip", - "type": 0, - "input": [ - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:orange_dye_from_red_yellow", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye" - } - ], - "output": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:orange_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 409, - "id": "minecraft:orange_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7089 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:orange_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7105 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:orange_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 409, - "id": "minecraft:orange_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7105 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:orange_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 409, - "id": "minecraft:orange_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7121 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:packed_ice", - "type": 1, - "input": { - "A": { - "legacyId": 79, - "id": "minecraft:ice", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 174, - "id": "minecraft:packed_ice", - "blockRuntimeId": 5768 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:paper", - "type": 1, - "input": { - "A": { - "legacyId": 385, - "id": "minecraft:sugar_cane", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "count": 3 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pillar_quartz_block", - "type": 1, - "input": { - "A": { - "legacyId": 155, - "id": "minecraft:quartz_block" - } - }, - "output": [ - { - "legacyId": 155, - "id": "minecraft:quartz_block", - "count": 2, - "blockRuntimeId": 6547 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 9 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye" - } - ], - "output": [ - { - "legacyId": -419, - "id": "minecraft:pink_candle", - "blockRuntimeId": 5769 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 969 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 404, - "id": "minecraft:pink_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 969 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3666 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_dye", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "output": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_dye_from_peony", - "type": 0, - "input": [ - { - "legacyId": 175, - "id": "minecraft:double_plant", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_dye_from_pink_tulip", - "type": 0, - "input": [ - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 7 - } - ], - "output": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_dye_from_red_bonemeal", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 404, - "id": "minecraft:pink_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7094 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 6 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7110 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 404, - "id": "minecraft:pink_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7110 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pink_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 404, - "id": "minecraft:pink_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7126 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:piston_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - "C": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "D": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 33, - "id": "minecraft:piston", - "blockRuntimeId": 5786 - } - ], - "shape": [ - "AAA", - "BCB", - "BDB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:piston_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - "C": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "D": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 33, - "id": "minecraft:piston", - "blockRuntimeId": 5786 - } - ], - "shape": [ - "AAA", - "BCB", - "BDB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:polished_andesite", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 5 - } - }, - "output": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "count": 4, - "blockRuntimeId": 7186 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_andesite_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 6 - } - }, - "output": [ - { - "legacyId": -174, - "id": "minecraft:polished_andesite_stairs", - "count": 4, - "blockRuntimeId": 5814 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_basalt", - "type": 1, - "input": { - "A": { - "legacyId": -234, - "id": "minecraft:basalt", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -235, - "id": "minecraft:polished_basalt", - "count": 4, - "blockRuntimeId": 5822 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_blackstone", - "type": 1, - "input": { - "A": { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "count": 4, - "blockRuntimeId": 5825 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_blackstone_brick_slab", - "type": 1, - "input": { - "A": { - "legacyId": -274, - "id": "minecraft:polished_blackstone_bricks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -284, - "id": "minecraft:polished_blackstone_brick_slab", - "count": 6, - "blockRuntimeId": 5828 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_blackstone_brick_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -274, - "id": "minecraft:polished_blackstone_bricks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -275, - "id": "minecraft:polished_blackstone_brick_stairs", - "count": 4, - "blockRuntimeId": 5830 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_blackstone_brick_wall", - "type": 1, - "input": { - "A": { - "legacyId": -274, - "id": "minecraft:polished_blackstone_bricks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -278, - "id": "minecraft:polished_blackstone_brick_wall", - "count": 6, - "blockRuntimeId": 5838 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_blackstone_bricks", - "type": 1, - "input": { - "A": { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -274, - "id": "minecraft:polished_blackstone_bricks", - "count": 4, - "blockRuntimeId": 6000 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_blackstone_button", - "type": 1, - "input": { - "A": { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -296, - "id": "minecraft:polished_blackstone_button", - "blockRuntimeId": 6001 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_blackstone_pressure_plate", - "type": 1, - "input": { - "A": { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -295, - "id": "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId": 6015 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_blackstone_slab", - "type": 1, - "input": { - "A": { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -293, - "id": "minecraft:polished_blackstone_slab", - "count": 6, - "blockRuntimeId": 6031 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_blackstone_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -292, - "id": "minecraft:polished_blackstone_stairs", - "count": 4, - "blockRuntimeId": 6033 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_blackstone_wall", - "type": 1, - "input": { - "A": { - "legacyId": -291, - "id": "minecraft:polished_blackstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -297, - "id": "minecraft:polished_blackstone_wall", - "count": 6, - "blockRuntimeId": 6041 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_deepslate", - "type": 1, - "input": { - "A": { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -383, - "id": "minecraft:polished_deepslate", - "count": 4, - "blockRuntimeId": 6203 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:polished_deepslate_slab", - "type": 1, - "input": { - "A": { - "legacyId": -383, - "id": "minecraft:polished_deepslate", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -384, - "id": "minecraft:polished_deepslate_slab", - "count": 6, - "blockRuntimeId": 6206 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:polished_deepslate_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -383, - "id": "minecraft:polished_deepslate", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -385, - "id": "minecraft:polished_deepslate_stairs", - "count": 4, - "blockRuntimeId": 6208 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:polished_deepslate_wall", - "type": 1, - "input": { - "A": { - "legacyId": -383, - "id": "minecraft:polished_deepslate", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -386, - "id": "minecraft:polished_deepslate_wall", - "count": 6, - "blockRuntimeId": 6216 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:polished_diorite", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 3 - } - }, - "output": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "count": 4, - "blockRuntimeId": 7184 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_diorite_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 4 - } - }, - "output": [ - { - "legacyId": -173, - "id": "minecraft:polished_diorite_stairs", - "count": 4, - "blockRuntimeId": 6378 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_granite", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 1, - "id": "minecraft:stone", - "count": 4, - "blockRuntimeId": 7182 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:polished_granite_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 2 - } - }, - "output": [ - { - "legacyId": -172, - "id": "minecraft:polished_granite_stairs", - "count": 4, - "blockRuntimeId": 6386 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:prismarine", - "type": 1, - "input": { - "A": { - "legacyId": 565, - "id": "minecraft:prismarine_shard", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 168, - "id": "minecraft:prismarine", - "blockRuntimeId": 6438 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:prismarine_bricks", - "type": 1, - "input": { - "A": { - "legacyId": 565, - "id": "minecraft:prismarine_shard", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 168, - "id": "minecraft:prismarine", - "blockRuntimeId": 6440 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:prismarine_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 168, - "id": "minecraft:prismarine" - } - }, - "output": [ - { - "legacyId": -2, - "id": "minecraft:prismarine_stairs", - "count": 4, - "blockRuntimeId": 6449 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:prismarine_stairs_bricks", - "type": 1, - "input": { - "A": { - "legacyId": 168, - "id": "minecraft:prismarine", - "damage": 2 - } - }, - "output": [ - { - "legacyId": -4, - "id": "minecraft:prismarine_bricks_stairs", - "count": 4, - "blockRuntimeId": 6441 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:prismarine_stairs_dark", - "type": 1, - "input": { - "A": { - "legacyId": 168, - "id": "minecraft:prismarine", - "damage": 1 - } - }, - "output": [ - { - "legacyId": -3, - "id": "minecraft:dark_prismarine_stairs", - "count": 4, - "blockRuntimeId": 4037 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:prismarine_wall", - "type": 1, - "input": { - "A": { - "legacyId": 168, - "id": "minecraft:prismarine" - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1330 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pumpkin_pie", - "type": 0, - "input": [ - { - "legacyId": 86, - "id": "minecraft:pumpkin", - "damage": 32767 - }, - { - "legacyId": 416, - "id": "minecraft:sugar", - "damage": 32767 - }, - { - "legacyId": 390, - "id": "minecraft:egg", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 284, - "id": "minecraft:pumpkin_pie" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:pumpkin_seeds", - "type": 1, - "input": { - "A": { - "legacyId": 86, - "id": "minecraft:pumpkin", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 292, - "id": "minecraft:pumpkin_seeds", - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:purple_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 5 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:purple_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye" - } - ], - "output": [ - { - "legacyId": -423, - "id": "minecraft:purple_candle", - "blockRuntimeId": 6509 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:purple_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 973 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:purple_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 400, - "id": "minecraft:purple_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 973 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:purple_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3670 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:purple_dye", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - } - ], - "output": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:purple_dye_from_lapis_lazuli", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - } - ], - "output": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:purple_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 400, - "id": "minecraft:purple_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7098 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:purple_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 10 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7114 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:purple_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 400, - "id": "minecraft:purple_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7114 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:purple_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 400, - "id": "minecraft:purple_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7130 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:purpur_block", - "type": 1, - "input": { - "A": { - "legacyId": 559, - "id": "minecraft:popped_chorus_fruit", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 201, - "id": "minecraft:purpur_block", - "count": 4, - "blockRuntimeId": 6525 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:purpur_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 201, - "id": "minecraft:purpur_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 203, - "id": "minecraft:purpur_stairs", - "count": 4, - "blockRuntimeId": 6537 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:quartz_block", - "type": 1, - "input": { - "A": { - "legacyId": 524, - "id": "minecraft:quartz", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 155, - "id": "minecraft:quartz_block", - "blockRuntimeId": 6545 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:quartz_bricks", - "type": 1, - "input": { - "A": { - "legacyId": 155, - "id": "minecraft:quartz_block" - } - }, - "output": [ - { - "legacyId": -304, - "id": "minecraft:quartz_bricks", - "blockRuntimeId": 6557 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:quartz_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 155, - "id": "minecraft:quartz_block" - } - }, - "output": [ - { - "legacyId": 156, - "id": "minecraft:quartz_stairs", - "count": 4, - "blockRuntimeId": 6559 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:rabbit_stew_from_brown_mushroom", - "type": 0, - "input": [ - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 281, - "id": "minecraft:baked_potato", - "damage": 32767 - }, - { - "legacyId": 279, - "id": "minecraft:carrot", - "damage": 32767 - }, - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 289, - "id": "minecraft:cooked_rabbit", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 290, - "id": "minecraft:rabbit_stew" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:rabbit_stew_from_red_mushroom", - "type": 0, - "input": [ - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 281, - "id": "minecraft:baked_potato", - "damage": 32767 - }, - { - "legacyId": 279, - "id": "minecraft:carrot", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 289, - "id": "minecraft:cooked_rabbit", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 290, - "id": "minecraft:rabbit_stew" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:rail", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 66, - "id": "minecraft:rail", - "count": 16, - "blockRuntimeId": 6567 - } - ], - "shape": [ - "A A", - "ABA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:raw_copper", - "type": 1, - "input": { - "A": { - "legacyId": -452, - "id": "minecraft:raw_copper_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 507, - "id": "minecraft:raw_copper", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:raw_copper_block", - "type": 1, - "input": { - "A": { - "legacyId": 507, - "id": "minecraft:raw_copper", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -452, - "id": "minecraft:raw_copper_block", - "blockRuntimeId": 6577 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:raw_gold", - "type": 1, - "input": { - "A": { - "legacyId": -453, - "id": "minecraft:raw_gold_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 506, - "id": "minecraft:raw_gold", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:raw_gold_block", - "type": 1, - "input": { - "A": { - "legacyId": 506, - "id": "minecraft:raw_gold", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -453, - "id": "minecraft:raw_gold_block", - "blockRuntimeId": 6578 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:raw_iron", - "type": 1, - "input": { - "A": { - "legacyId": -451, - "id": "minecraft:raw_iron_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 505, - "id": "minecraft:raw_iron", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:raw_iron_block", - "type": 1, - "input": { - "A": { - "legacyId": 505, - "id": "minecraft:raw_iron", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -451, - "id": "minecraft:raw_iron_block", - "blockRuntimeId": 6579 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 1 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye" - } - ], - "output": [ - { - "legacyId": -427, - "id": "minecraft:red_candle", - "blockRuntimeId": 6580 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 977 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 396, - "id": "minecraft:red_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 977 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3674 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_dye_from_beetroot", - "type": 0, - "input": [ - { - "legacyId": 285, - "id": "minecraft:beetroot", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 396, - "id": "minecraft:red_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_dye_from_poppy", - "type": 0, - "input": [ - { - "legacyId": 38, - "id": "minecraft:red_flower" - } - ], - "output": [ - { - "legacyId": 396, - "id": "minecraft:red_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_dye_from_rose_bush", - "type": 0, - "input": [ - { - "legacyId": 175, - "id": "minecraft:double_plant", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_dye_from_tulip", - "type": 0, - "input": [ - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 396, - "id": "minecraft:red_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_nether_brick", - "type": 1, - "input": { - "A": { - "legacyId": 523, - "id": "minecraft:netherbrick", - "damage": 32767 - }, - "B": { - "legacyId": 294, - "id": "minecraft:nether_wart", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 215, - "id": "minecraft:red_nether_brick", - "blockRuntimeId": 6624 - } - ], - "shape": [ - "AB", - "BA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_nether_brick_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 215, - "id": "minecraft:red_nether_brick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -184, - "id": "minecraft:red_nether_brick_stairs", - "count": 4, - "blockRuntimeId": 6625 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_nether_brick_wall", - "type": 1, - "input": { - "A": { - "legacyId": 215, - "id": "minecraft:red_nether_brick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1332 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_sandstone", - "type": 1, - "input": { - "A": { - "legacyId": 12, - "id": "minecraft:sand", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "blockRuntimeId": 6633 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_sandstone_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 179, - "id": "minecraft:red_sandstone" - } - }, - "output": [ - { - "legacyId": 180, - "id": "minecraft:red_sandstone_stairs", - "count": 4, - "blockRuntimeId": 6637 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_sandstone_wall", - "type": 1, - "input": { - "A": { - "legacyId": 179, - "id": "minecraft:red_sandstone" - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1331 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 396, - "id": "minecraft:red_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7102 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 14 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7118 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 396, - "id": "minecraft:red_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7118 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:red_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 396, - "id": "minecraft:red_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7134 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:redstone", - "type": 1, - "input": { - "A": { - "legacyId": 152, - "id": "minecraft:redstone_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 373, - "id": "minecraft:redstone", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:redstone_block", - "type": 1, - "input": { - "A": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 152, - "id": "minecraft:redstone_block", - "blockRuntimeId": 6645 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:redstone_lamp", - "type": 1, - "input": { - "A": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - }, - "B": { - "legacyId": 89, - "id": "minecraft:glowstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 123, - "id": "minecraft:redstone_lamp", - "blockRuntimeId": 6646 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:redstone_torch", - "type": 1, - "input": { - "A": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 76, - "id": "minecraft:redstone_torch", - "blockRuntimeId": 6648 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:repeater", - "type": 1, - "input": { - "A": { - "legacyId": 76, - "id": "minecraft:redstone_torch", - "damage": 32767 - }, - "B": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - }, - "C": { - "legacyId": 1, - "id": "minecraft:stone" - } - }, - "output": [ - { - "legacyId": 419, - "id": "minecraft:repeater" - } - ], - "shape": [ - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:respawn_anchor", - "type": 1, - "input": { - "A": { - "legacyId": -289, - "id": "minecraft:crying_obsidian", - "damage": 32767 - }, - "B": { - "legacyId": 89, - "id": "minecraft:glowstone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -272, - "id": "minecraft:respawn_anchor", - "blockRuntimeId": 6699 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:sandstone", - "type": 1, - "input": { - "A": { - "legacyId": 12, - "id": "minecraft:sand" - } - }, - "output": [ - { - "legacyId": 24, - "id": "minecraft:sandstone", - "blockRuntimeId": 6706 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:sandstone_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 24, - "id": "minecraft:sandstone" - } - }, - "output": [ - { - "legacyId": 128, - "id": "minecraft:sandstone_stairs", - "count": 4, - "blockRuntimeId": 6710 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:sandstone_wall", - "type": 1, - "input": { - "A": { - "legacyId": 24, - "id": "minecraft:sandstone" - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1324 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:scaffolding", - "type": 1, - "input": { - "A": { - "legacyId": -163, - "id": "minecraft:bamboo", - "damage": 32767 - }, - "B": { - "legacyId": 326, - "id": "minecraft:string", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -165, - "id": "minecraft:scaffolding", - "count": 6, - "blockRuntimeId": 6730 - } - ], - "shape": [ - "ABA", - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:sealantern", - "type": 1, - "input": { - "A": { - "legacyId": 565, - "id": "minecraft:prismarine_shard", - "damage": 32767 - }, - "B": { - "legacyId": 549, - "id": "minecraft:prismarine_crystals", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 169, - "id": "minecraft:sealantern", - "blockRuntimeId": 6828 - } - ], - "shape": [ - "ABA", - "BBB", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:shears", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 421, - "id": "minecraft:shears" - } - ], - "shape": [ - " A", - "A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:shield", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - }, - "B": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 355, - "id": "minecraft:shield" - } - ], - "shape": [ - "ABA", - "AAA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:shield_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 355, - "id": "minecraft:shield" - } - ], - "shape": [ - "ABA", - "AAA", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:shield_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 355, - "id": "minecraft:shield" - } - ], - "shape": [ - "ABA", - "AAA", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:shulker_box", - "type": 1, - "input": { - "A": { - "legacyId": 566, - "id": "minecraft:shulker_shell", - "damage": 32767 - }, - "B": { - "legacyId": 54, - "id": "minecraft:chest", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box", - "blockRuntimeId": 7462 - } - ], - "shape": [ - "A", - "B", - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:sign_acacia", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 4 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 579, - "id": "minecraft:acacia_sign", - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:sign_birch", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 2 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 577, - "id": "minecraft:birch_sign", - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:sign_darkoak", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 5 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 580, - "id": "minecraft:dark_oak_sign", - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:sign_jungle", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 3 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 578, - "id": "minecraft:jungle_sign", - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:sign_oak", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks" - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 358, - "id": "minecraft:oak_sign", - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:sign_spruce", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 1 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 576, - "id": "minecraft:spruce_sign", - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:slime", - "type": 1, - "input": { - "A": { - "legacyId": 388, - "id": "minecraft:slime_ball", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 165, - "id": "minecraft:slime", - "blockRuntimeId": 6864 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:slime_ball", - "type": 1, - "input": { - "A": { - "legacyId": 165, - "id": "minecraft:slime", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 388, - "id": "minecraft:slime_ball", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smithing_table", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -202, - "id": "minecraft:smithing_table", - "blockRuntimeId": 6879 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smithing_table_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -202, - "id": "minecraft:smithing_table", - "blockRuntimeId": 6879 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:smithing_table_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -202, - "id": "minecraft:smithing_table", - "blockRuntimeId": 6879 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:smoker", - "type": 1, - "input": { - "A": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -198, - "id": "minecraft:smoker", - "blockRuntimeId": 6880 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smoker_from_crimson_stem", - "type": 1, - "input": { - "A": { - "legacyId": -225, - "id": "minecraft:crimson_stem", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -198, - "id": "minecraft:smoker", - "blockRuntimeId": 6880 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:smoker_from_log2", - "type": 1, - "input": { - "A": { - "legacyId": 162, - "id": "minecraft:log2", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -198, - "id": "minecraft:smoker", - "blockRuntimeId": 6880 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smoker_from_stripped_acacia", - "type": 1, - "input": { - "A": { - "legacyId": -8, - "id": "minecraft:stripped_acacia_log", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -198, - "id": "minecraft:smoker", - "blockRuntimeId": 6880 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smoker_from_stripped_birch", - "type": 1, - "input": { - "A": { - "legacyId": -6, - "id": "minecraft:stripped_birch_log", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -198, - "id": "minecraft:smoker", - "blockRuntimeId": 6880 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smoker_from_stripped_crimson_stem", - "type": 1, - "input": { - "A": { - "legacyId": -240, - "id": "minecraft:stripped_crimson_stem", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -198, - "id": "minecraft:smoker", - "blockRuntimeId": 6880 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:smoker_from_stripped_dark_oak", - "type": 1, - "input": { - "A": { - "legacyId": -9, - "id": "minecraft:stripped_dark_oak_log", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -198, - "id": "minecraft:smoker", - "blockRuntimeId": 6880 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smoker_from_stripped_jungle", - "type": 1, - "input": { - "A": { - "legacyId": -7, - "id": "minecraft:stripped_jungle_log", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -198, - "id": "minecraft:smoker", - "blockRuntimeId": 6880 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smoker_from_stripped_oak", - "type": 1, - "input": { - "A": { - "legacyId": -10, - "id": "minecraft:stripped_oak_log", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -198, - "id": "minecraft:smoker", - "blockRuntimeId": 6880 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smoker_from_stripped_spruce", - "type": 1, - "input": { - "A": { - "legacyId": -5, - "id": "minecraft:stripped_spruce_log", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -198, - "id": "minecraft:smoker", - "blockRuntimeId": 6880 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smoker_from_stripped_warped_stem", - "type": 1, - "input": { - "A": { - "legacyId": -241, - "id": "minecraft:stripped_warped_stem", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -198, - "id": "minecraft:smoker", - "blockRuntimeId": 6880 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:smoker_from_warped_stem", - "type": 1, - "input": { - "A": { - "legacyId": -226, - "id": "minecraft:warped_stem", - "damage": 32767 - }, - "B": { - "legacyId": 61, - "id": "minecraft:furnace", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -198, - "id": "minecraft:smoker", - "blockRuntimeId": 6880 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:smooth_quartz_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 155, - "id": "minecraft:quartz_block", - "damage": 3 - } - }, - "output": [ - { - "legacyId": -185, - "id": "minecraft:smooth_quartz_stairs", - "count": 4, - "blockRuntimeId": 6887 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smooth_red_sandstone", - "type": 1, - "input": { - "A": { - "legacyId": 179, - "id": "minecraft:red_sandstone" - } - }, - "output": [ - { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "count": 4, - "blockRuntimeId": 6635 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smooth_red_sandstone_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "damage": 3 - } - }, - "output": [ - { - "legacyId": -176, - "id": "minecraft:smooth_red_sandstone_stairs", - "count": 4, - "blockRuntimeId": 6895 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smooth_sandstone", - "type": 1, - "input": { - "A": { - "legacyId": 24, - "id": "minecraft:sandstone" - } - }, - "output": [ - { - "legacyId": 24, - "id": "minecraft:sandstone", - "count": 4, - "blockRuntimeId": 6708 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:smooth_sandstone_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 24, - "id": "minecraft:sandstone", - "damage": 3 - } - }, - "output": [ - { - "legacyId": -177, - "id": "minecraft:smooth_sandstone_stairs", - "count": 4, - "blockRuntimeId": 6903 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:snow", - "type": 1, - "input": { - "A": { - "legacyId": 374, - "id": "minecraft:snowball", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 80, - "id": "minecraft:snow", - "blockRuntimeId": 6912 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:snow_layer", - "type": 1, - "input": { - "A": { - "legacyId": 80, - "id": "minecraft:snow", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 78, - "id": "minecraft:snow_layer", - "count": 6, - "blockRuntimeId": 6913 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:soul_campfire_from_crimson_stem", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": -225, - "id": "minecraft:crimson_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_crimson_stem2", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": -225, - "id": "minecraft:crimson_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_sand", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:soul_campfire_from_soul_sand_and_log2", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": 162, - "id": "minecraft:log2", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_acacia_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": -8, - "id": "minecraft:stripped_acacia_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_birch_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": -6, - "id": "minecraft:stripped_birch_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_dark_oak_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": -9, - "id": "minecraft:stripped_dark_oak_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_jungle_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": -7, - "id": "minecraft:stripped_jungle_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_oak_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": -10, - "id": "minecraft:stripped_oak_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_spruce_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": -5, - "id": "minecraft:stripped_spruce_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_sand_and_wood", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_soil", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:soul_campfire_from_soul_soil_and_log2", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": 162, - "id": "minecraft:log2", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_acacia_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": -8, - "id": "minecraft:stripped_acacia_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_birch_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": -6, - "id": "minecraft:stripped_birch_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_dark_oak_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": -9, - "id": "minecraft:stripped_dark_oak_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_jungle_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": -7, - "id": "minecraft:stripped_jungle_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_oak_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": -10, - "id": "minecraft:stripped_oak_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_spruce_log", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": -5, - "id": "minecraft:stripped_spruce_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_soul_soil_and_wood", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_stripped_crimson_stem", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": -240, - "id": "minecraft:stripped_crimson_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_stripped_crimson_stem2", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": -240, - "id": "minecraft:stripped_crimson_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_stripped_warped_stem", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": -241, - "id": "minecraft:stripped_warped_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_stripped_warped_stem2", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": -241, - "id": "minecraft:stripped_warped_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_warped_stem", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - }, - "C": { - "legacyId": -226, - "id": "minecraft:warped_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_campfire_from_warped_stem2", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - }, - "C": { - "legacyId": -226, - "id": "minecraft:warped_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 620, - "id": "minecraft:soul_campfire" - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:soul_lantern", - "type": 1, - "input": { - "A": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "B": { - "legacyId": -268, - "id": "minecraft:soul_torch", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -269, - "id": "minecraft:soul_lantern", - "blockRuntimeId": 6953 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:soul_torch_from_soul_sand", - "type": 1, - "input": { - "A": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "C": { - "legacyId": 88, - "id": "minecraft:soul_sand", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -268, - "id": "minecraft:soul_torch", - "count": 4, - "blockRuntimeId": 6957 - } - ], - "shape": [ - "A", - "B", - "C" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:soul_torch_from_soul_soil", - "type": 1, - "input": { - "A": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "C": { - "legacyId": -236, - "id": "minecraft:soul_soil", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -268, - "id": "minecraft:soul_torch", - "count": 4, - "blockRuntimeId": 6957 - } - ], - "shape": [ - "A", - "B", - "C" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:speckled_melon", - "type": 1, - "input": { - "A": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "B": { - "legacyId": 272, - "id": "minecraft:melon_slice", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 434, - "id": "minecraft:glistering_melon_slice" - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spruce_boat", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 1 - }, - "B": { - "legacyId": 309, - "id": "minecraft:wooden_shovel", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 378, - "id": "minecraft:spruce_boat" - } - ], - "shape": [ - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spruce_door", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 553, - "id": "minecraft:spruce_door", - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spruce_fence", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 1 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 85, - "id": "minecraft:fence", - "count": 3, - "blockRuntimeId": 4775 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spruce_fence_gate", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 183, - "id": "minecraft:spruce_fence_gate", - "blockRuntimeId": 7010 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spruce_planks", - "type": 1, - "input": { - "A": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5798 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spruce_planks_from_stripped", - "type": 1, - "input": { - "A": { - "legacyId": -5, - "id": "minecraft:stripped_spruce_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5798 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spruce_planks_from_stripped_wood", - "type": 1, - "input": { - "A": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 9 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5798 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spruce_planks_from_wood", - "type": 1, - "input": { - "A": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 5, - "id": "minecraft:planks", - "count": 4, - "blockRuntimeId": 5798 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spruce_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 134, - "id": "minecraft:spruce_stairs", - "count": 4, - "blockRuntimeId": 7042 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spruce_wood", - "type": 1, - "input": { - "A": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 1 - } - }, - "output": [ - { - "legacyId": -212, - "id": "minecraft:wood", - "count": 3, - "blockRuntimeId": 7808 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spruce_wood_stripped", - "type": 1, - "input": { - "A": { - "legacyId": -5, - "id": "minecraft:stripped_spruce_log", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -212, - "id": "minecraft:wood", - "count": 3, - "blockRuntimeId": 7814 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spruce_wooden_slab", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 158, - "id": "minecraft:wooden_slab", - "count": 6, - "blockRuntimeId": 7904 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:spyglass", - "type": 1, - "input": { - "A": { - "legacyId": 623, - "id": "minecraft:amethyst_shard", - "damage": 32767 - }, - "B": { - "legacyId": 504, - "id": "minecraft:copper_ingot", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 624, - "id": "minecraft:spyglass" - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:stick_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 320, - "id": "minecraft:stick", - "count": 4 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:stick_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 320, - "id": "minecraft:stick", - "count": 4 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:sticky_piston", - "type": 1, - "input": { - "A": { - "legacyId": 388, - "id": "minecraft:slime_ball", - "damage": 32767 - }, - "B": { - "legacyId": 33, - "id": "minecraft:piston", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 29, - "id": "minecraft:sticky_piston", - "blockRuntimeId": 7169 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stone_axe", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 315, - "id": "minecraft:stone_axe" - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stone_axe_from_blackstone", - "type": 1, - "input": { - "A": { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 315, - "id": "minecraft:stone_axe" - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:stone_axe_from_cobbled_deepslate", - "type": 1, - "input": { - "A": { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 315, - "id": "minecraft:stone_axe" - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:stone_brick_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 98, - "id": "minecraft:stonebrick" - } - }, - "output": [ - { - "legacyId": 109, - "id": "minecraft:stone_brick_stairs", - "count": 4, - "blockRuntimeId": 7187 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stone_brick_wall", - "type": 1, - "input": { - "A": { - "legacyId": 98, - "id": "minecraft:stonebrick" - } - }, - "output": [ - { - "legacyId": 139, - "id": "minecraft:cobblestone_wall", - "count": 6, - "blockRuntimeId": 1326 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stone_button", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone" - } - }, - "output": [ - { - "legacyId": 77, - "id": "minecraft:stone_button", - "blockRuntimeId": 7195 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stone_hoe", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 330, - "id": "minecraft:stone_hoe" - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stone_hoe_from_blackstone", - "type": 1, - "input": { - "A": { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 330, - "id": "minecraft:stone_hoe" - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:stone_hoe_from_cobbled_deepslate", - "type": 1, - "input": { - "A": { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 330, - "id": "minecraft:stone_hoe" - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:stone_pickaxe", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 314, - "id": "minecraft:stone_pickaxe" - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stone_pickaxe_from_blackstone", - "type": 1, - "input": { - "A": { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 314, - "id": "minecraft:stone_pickaxe" - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:stone_pickaxe_from_cobbled_deepslate", - "type": 1, - "input": { - "A": { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 314, - "id": "minecraft:stone_pickaxe" - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:stone_pressure_plate", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone" - } - }, - "output": [ - { - "legacyId": 70, - "id": "minecraft:stone_pressure_plate", - "blockRuntimeId": 7207 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stone_shovel", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 313, - "id": "minecraft:stone_shovel" - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stone_shovel_from_blackstone", - "type": 1, - "input": { - "A": { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 313, - "id": "minecraft:stone_shovel" - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:stone_shovel_from_cobbled_deepslate", - "type": 1, - "input": { - "A": { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 313, - "id": "minecraft:stone_shovel" - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:stone_stairs", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone" - } - }, - "output": [ - { - "legacyId": -180, - "id": "minecraft:normal_stone_stairs", - "count": 4, - "blockRuntimeId": 5708 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stone_sword", - "type": 1, - "input": { - "A": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 312, - "id": "minecraft:stone_sword" - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stone_sword_from_blackstone", - "type": 1, - "input": { - "A": { - "legacyId": -273, - "id": "minecraft:blackstone", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 312, - "id": "minecraft:stone_sword" - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:stone_sword_from_cobbled_deepslate", - "type": 1, - "input": { - "A": { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 312, - "id": "minecraft:stone_sword" - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:stonebrick", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone" - } - }, - "output": [ - { - "legacyId": 98, - "id": "minecraft:stonebrick", - "count": 4, - "blockRuntimeId": 7289 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stonecutter", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -197, - "id": "minecraft:stonecutter_block", - "blockRuntimeId": 7295 - } - ], - "shape": [ - " A ", - "BBB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:string_to_wool", - "type": 1, - "input": { - "A": { - "legacyId": 326, - "id": "minecraft:string", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stripped_crimson_hyphae", - "type": 1, - "input": { - "A": { - "legacyId": -240, - "id": "minecraft:stripped_crimson_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -300, - "id": "minecraft:stripped_crimson_hyphae", - "count": 3, - "blockRuntimeId": 7307 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:stripped_warped_hyphae", - "type": 1, - "input": { - "A": { - "legacyId": -241, - "id": "minecraft:stripped_warped_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -301, - "id": "minecraft:stripped_warped_hyphae", - "count": 3, - "blockRuntimeId": 7325 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:sugar", - "type": 1, - "input": { - "A": { - "legacyId": 385, - "id": "minecraft:sugar_cane", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 416, - "id": "minecraft:sugar" - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_allium", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 2 - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew", - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_azure_bluet", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew", - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_blue_orchid", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew", - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_cornflower", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 9 - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew", - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_dandelion", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 37, - "id": "minecraft:yellow_flower", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew", - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_lily_of_the_valley", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 10 - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew", - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_oxeye_daisy", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 8 - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew", - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_poppy", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 38, - "id": "minecraft:red_flower" - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_tulip_orange", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_tulip_pink", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 7 - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_tulip_red", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_tulip_white", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 6 - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew", - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:suspicious_stew_from_wither_rose", - "type": 0, - "input": [ - { - "legacyId": 39, - "id": "minecraft:brown_mushroom", - "damage": 32767 - }, - { - "legacyId": 40, - "id": "minecraft:red_mushroom", - "damage": 32767 - }, - { - "legacyId": 321, - "id": "minecraft:bowl", - "damage": 32767 - }, - { - "legacyId": -216, - "id": "minecraft:wither_rose", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 589, - "id": "minecraft:suspicious_stew", - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:target", - "type": 1, - "input": { - "A": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - }, - "B": { - "legacyId": 170, - "id": "minecraft:hay_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -239, - "id": "minecraft:target", - "blockRuntimeId": 7351 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:tinted_glass", - "type": 1, - "input": { - "A": { - "legacyId": 623, - "id": "minecraft:amethyst_shard", - "damage": 32767 - }, - "B": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -334, - "id": "minecraft:tinted_glass", - "count": 2, - "blockRuntimeId": 7352 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:tnt", - "type": 1, - "input": { - "A": { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - "B": { - "legacyId": 12, - "id": "minecraft:sand", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 46, - "id": "minecraft:tnt", - "blockRuntimeId": 7353 - } - ], - "shape": [ - "ABA", - "BAB", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:tnt_minecart", - "type": 1, - "input": { - "A": { - "legacyId": 46, - "id": "minecraft:tnt" - }, - "B": { - "legacyId": 370, - "id": "minecraft:minecart", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 525, - "id": "minecraft:tnt_minecart" - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:trapped_chest", - "type": 0, - "input": [ - { - "legacyId": 54, - "id": "minecraft:chest", - "damage": 32767 - }, - { - "legacyId": 131, - "id": "minecraft:tripwire_hook", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 146, - "id": "minecraft:trapped_chest", - "blockRuntimeId": 7379 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:tripwire_hook_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "C": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 131, - "id": "minecraft:tripwire_hook", - "blockRuntimeId": 7401 - } - ], - "shape": [ - "A", - "B", - "C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:tripwire_hook_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "C": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 131, - "id": "minecraft:tripwire_hook", - "blockRuntimeId": 7401 - } - ], - "shape": [ - "A", - "B", - "C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:turtle_helmet", - "type": 1, - "input": { - "A": { - "legacyId": 572, - "id": "minecraft:scute", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 573, - "id": "minecraft:turtle_helmet" - } - ], - "shape": [ - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_button", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -261, - "id": "minecraft:warped_button", - "blockRuntimeId": 7530 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_door", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 615, - "id": "minecraft:warped_door", - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_fence", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -257, - "id": "minecraft:warped_fence", - "count": 3, - "blockRuntimeId": 7576 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_fence_gate", - "type": 1, - "input": { - "A": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - }, - "B": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -259, - "id": "minecraft:warped_fence_gate", - "blockRuntimeId": 7577 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_fungus_on_a_stick", - "type": 1, - "input": { - "A": { - "legacyId": 392, - "id": "minecraft:fishing_rod", - "damage": 32767 - }, - "B": { - "legacyId": -229, - "id": "minecraft:warped_fungus", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 616, - "id": "minecraft:warped_fungus_on_a_stick" - } - ], - "shape": [ - "A ", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_hyphae", - "type": 1, - "input": { - "A": { - "legacyId": -226, - "id": "minecraft:warped_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -298, - "id": "minecraft:warped_hyphae", - "count": 3, - "blockRuntimeId": 7594 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -226, - "id": "minecraft:warped_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -243, - "id": "minecraft:warped_planks", - "count": 4, - "blockRuntimeId": 7598 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_planks_from_stripped_log", - "type": 1, - "input": { - "A": { - "legacyId": -241, - "id": "minecraft:stripped_warped_stem", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -243, - "id": "minecraft:warped_planks", - "count": 4, - "blockRuntimeId": 7598 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_planks_from_stripped_warped_hyphae", - "type": 1, - "input": { - "A": { - "legacyId": -301, - "id": "minecraft:stripped_warped_hyphae", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -243, - "id": "minecraft:warped_planks", - "count": 4, - "blockRuntimeId": 7598 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_planks_from_warped_hyphae", - "type": 1, - "input": { - "A": { - "legacyId": -298, - "id": "minecraft:warped_hyphae", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -243, - "id": "minecraft:warped_planks", - "count": 4, - "blockRuntimeId": 7598 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_pressure_plate", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -263, - "id": "minecraft:warped_pressure_plate", - "blockRuntimeId": 7599 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_sign", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 613, - "id": "minecraft:warped_sign", - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_slab", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -265, - "id": "minecraft:warped_slab", - "count": 6, - "blockRuntimeId": 7616 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_stairs", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -255, - "id": "minecraft:warped_stairs", - "count": 4, - "blockRuntimeId": 7618 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:warped_trapdoor", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": -247, - "id": "minecraft:warped_trapdoor", - "count": 2, - "blockRuntimeId": 7645 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:waxing_copper_block", - "type": 0, - "input": [ - { - "legacyId": -340, - "id": "minecraft:copper_block", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -344, - "id": "minecraft:waxed_copper", - "blockRuntimeId": 7685 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_cut_copper", - "type": 0, - "input": [ - { - "legacyId": -347, - "id": "minecraft:cut_copper", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -351, - "id": "minecraft:waxed_cut_copper", - "blockRuntimeId": 7686 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -361, - "id": "minecraft:cut_copper_slab", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -365, - "id": "minecraft:waxed_cut_copper_slab", - "blockRuntimeId": 7687 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -354, - "id": "minecraft:cut_copper_stairs", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -358, - "id": "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId": 7689 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_exposed_copper", - "type": 0, - "input": [ - { - "legacyId": -341, - "id": "minecraft:exposed_copper", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -345, - "id": "minecraft:waxed_exposed_copper", - "blockRuntimeId": 7699 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_exposed_cut_copper", - "type": 0, - "input": [ - { - "legacyId": -348, - "id": "minecraft:exposed_cut_copper", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -352, - "id": "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId": 7700 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_exposed_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -362, - "id": "minecraft:exposed_cut_copper_slab", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -366, - "id": "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId": 7701 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_exposed_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -355, - "id": "minecraft:exposed_cut_copper_stairs", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -359, - "id": "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId": 7703 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_oxidized_copper", - "type": 0, - "input": [ - { - "legacyId": -343, - "id": "minecraft:oxidized_copper", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -446, - "id": "minecraft:waxed_oxidized_copper", - "blockRuntimeId": 7713 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_oxidized_cut_copper", - "type": 0, - "input": [ - { - "legacyId": -350, - "id": "minecraft:oxidized_cut_copper", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -447, - "id": "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId": 7714 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_oxidized_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -364, - "id": "minecraft:oxidized_cut_copper_slab", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -449, - "id": "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId": 7715 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_oxidized_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -357, - "id": "minecraft:oxidized_cut_copper_stairs", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -448, - "id": "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId": 7717 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_weathered_copper", - "type": 0, - "input": [ - { - "legacyId": -342, - "id": "minecraft:weathered_copper", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -346, - "id": "minecraft:waxed_weathered_copper", - "blockRuntimeId": 7727 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_weathered_cut_copper", - "type": 0, - "input": [ - { - "legacyId": -349, - "id": "minecraft:weathered_cut_copper", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -353, - "id": "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId": 7728 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_weathered_cut_copper_slab", - "type": 0, - "input": [ - { - "legacyId": -363, - "id": "minecraft:weathered_cut_copper_slab", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -367, - "id": "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId": 7729 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:waxing_weathered_cut_copper_stairs", - "type": 0, - "input": [ - { - "legacyId": -356, - "id": "minecraft:weathered_cut_copper_stairs", - "damage": 32767 - }, - { - "legacyId": 590, - "id": "minecraft:honeycomb", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": -360, - "id": "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId": 7731 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:wheat", - "type": 1, - "input": { - "A": { - "legacyId": 170, - "id": "minecraft:hay_block", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 334, - "id": "minecraft:wheat", - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:white_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool" - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 15 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:white_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "output": [ - { - "legacyId": -413, - "id": "minecraft:white_candle", - "blockRuntimeId": 7790 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:white_candle_from_bonemeal", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": -413, - "id": "minecraft:white_candle", - "blockRuntimeId": 7790 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:white_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 963 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:white_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3660 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:white_concrete_powder_from_bonemeal", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3660 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:white_dye_from_bone_meal", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - ], - "output": [ - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:white_dye_from_lily_of_the_valley", - "type": 0, - "input": [ - { - "legacyId": 38, - "id": "minecraft:red_flower", - "damage": 10 - } - ], - "output": [ - { - "legacyId": 410, - "id": "minecraft:white_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:white_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 410, - "id": "minecraft:white_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7088 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:white_stained_glass_from_bonemeal", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7088 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:white_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7104 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:white_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 410, - "id": "minecraft:white_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7104 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:white_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 410, - "id": "minecraft:white_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7120 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:white_stained_hardened_clay_from_bonemeal", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 411, - "id": "minecraft:bone_meal" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7120 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "id": "minecraft:wooden_axe_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 311, - "id": "minecraft:wooden_axe" - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:wooden_axe_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 311, - "id": "minecraft:wooden_axe" - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:wooden_door", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks" - } - }, - "output": [ - { - "legacyId": 359, - "id": "minecraft:wooden_door", - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:wooden_hoe_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 329, - "id": "minecraft:wooden_hoe" - } - ], - "shape": [ - "AA ", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:wooden_hoe_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 329, - "id": "minecraft:wooden_hoe" - } - ], - "shape": [ - "AA ", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:wooden_pickaxe_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 310, - "id": "minecraft:wooden_pickaxe" - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:wooden_pickaxe_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 310, - "id": "minecraft:wooden_pickaxe" - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:wooden_shovel_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 309, - "id": "minecraft:wooden_shovel" - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:wooden_shovel_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 309, - "id": "minecraft:wooden_shovel" - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:wooden_sword_from_crimson_planks", - "type": 1, - "input": { - "A": { - "legacyId": -242, - "id": "minecraft:crimson_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 308, - "id": "minecraft:wooden_sword" - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:wooden_sword_from_warped_planks", - "type": 1, - "input": { - "A": { - "legacyId": -243, - "id": "minecraft:warped_planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 308, - "id": "minecraft:wooden_sword" - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "id": "minecraft:writable_book", - "type": 0, - "input": [ - { - "legacyId": 387, - "id": "minecraft:book", - "damage": 32767 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac" - }, - { - "legacyId": 327, - "id": "minecraft:feather", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 510, - "id": "minecraft:writable_book" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:yellow_banner", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 567, - "id": "minecraft:banner", - "damage": 11 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:yellow_candle", - "type": 0, - "input": [ - { - "legacyId": -412, - "id": "minecraft:candle", - "damage": 32767 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye" - } - ], - "output": [ - { - "legacyId": -417, - "id": "minecraft:yellow_candle", - "blockRuntimeId": 7931 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:yellow_carpet", - "type": 1, - "input": { - "A": { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 3, - "blockRuntimeId": 967 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:yellow_carpet_from_white", - "type": 1, - "input": { - "A": { - "legacyId": 171, - "id": "minecraft:carpet" - }, - "B": { - "legacyId": 406, - "id": "minecraft:yellow_dye" - } - }, - "output": [ - { - "legacyId": 171, - "id": "minecraft:carpet", - "count": 8, - "blockRuntimeId": 967 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:yellow_concrete_powder", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 12, - "id": "minecraft:sand" - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - }, - { - "legacyId": 13, - "id": "minecraft:gravel", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 237, - "id": "minecraft:concrete_powder", - "count": 8, - "blockRuntimeId": 3664 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:yellow_dye_from_dandelion", - "type": 0, - "input": [ - { - "legacyId": 37, - "id": "minecraft:yellow_flower" - } - ], - "output": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye" - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:yellow_dye_from_sunflower", - "type": 0, - "input": [ - { - "legacyId": 175, - "id": "minecraft:double_plant" - } - ], - "output": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:yellow_stained_glass", - "type": 1, - "input": { - "A": { - "legacyId": 20, - "id": "minecraft:glass", - "damage": 32767 - }, - "B": { - "legacyId": 406, - "id": "minecraft:yellow_dye" - } - }, - "output": [ - { - "legacyId": 241, - "id": "minecraft:stained_glass", - "count": 8, - "blockRuntimeId": 7092 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:yellow_stained_glass_pane", - "type": 1, - "input": { - "A": { - "legacyId": 241, - "id": "minecraft:stained_glass", - "damage": 4 - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 16, - "blockRuntimeId": 7108 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:yellow_stained_glass_pane_from_pane", - "type": 1, - "input": { - "A": { - "legacyId": 102, - "id": "minecraft:glass_pane", - "damage": 32767 - }, - "B": { - "legacyId": 406, - "id": "minecraft:yellow_dye" - } - }, - "output": [ - { - "legacyId": 160, - "id": "minecraft:stained_glass_pane", - "count": 8, - "blockRuntimeId": 7108 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "minecraft:yellow_stained_hardened_clay", - "type": 1, - "input": { - "A": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "damage": 32767 - }, - "B": { - "legacyId": 406, - "id": "minecraft:yellow_dye" - } - }, - "output": [ - { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "count": 8, - "blockRuntimeId": 7124 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "oak_stairs_oak_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks" - } - }, - "output": [ - { - "legacyId": 53, - "id": "minecraft:oak_stairs", - "count": 4, - "blockRuntimeId": 5717 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_0_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star" - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_10_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 10 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_11_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 11 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_12_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 12 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_13_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 13 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_14_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 14 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_15_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 15 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_16_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star" - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_17_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_18_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_19_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 15 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_1_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_2_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 2 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_3_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_4_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_5_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_6_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 6 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_7_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 7 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_8_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 8 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_charge_9_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 9 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_0_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_10_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 10, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_11_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 11, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_12_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 12, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_13_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 13, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_14_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 14, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_15_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 15, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_16_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_17_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 3, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_18_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 4, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_19_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 15, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_1_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 1, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_2_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 2, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_3_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 3, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_4_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 4, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_5_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 5, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_6_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 6, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_7_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 7, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_8_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 8, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_dye_9_recipeId", - "type": 0, - "input": [ - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 520, - "id": "minecraft:firework_star", - "damage": 9, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "paper_sulphur_recipeId", - "type": 0, - "input": [ - { - "legacyId": 386, - "id": "minecraft:paper", - "damage": 32767 - }, - { - "legacyId": 328, - "id": "minecraft:gunpowder", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 519, - "id": "minecraft:firework_rocket", - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 4, - "uuid": "00000000-0000-0000-0000-000000000001" - }, - { - "id": "shulkerBox_shulker_box_color_block_0_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_0_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_10_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_11_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_12_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_13_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_14_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_15_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_16_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_17_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_18_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_19_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_1_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_2_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_3_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_4_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_5_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_6_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_7_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_8_9_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 6 - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_0_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 15 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_10_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 5 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_11_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 4 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_12_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 3 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_13_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 2 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_14_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 1 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_15_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box" - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_1_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 14 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_2_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 13 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_3_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 12 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_4_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 11 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_5_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 10 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_6_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 9 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_7_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 8 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_block_9_8_0", - "type": 5, - "input": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "damage": 7 - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_0_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_10_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6835 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_11_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6834 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_12_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6833 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_13_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6832 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_14_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6831 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_15_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_16_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6845 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_17_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_18_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_19_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6830 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_1_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6844 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_2_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6843 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_3_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6842 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_4_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6841 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_5_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6840 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_6_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6839 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_7_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6838 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_8_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6837 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "shulkerBox_shulker_box_color_dye_9_0", - "type": 5, - "input": [ - { - "legacyId": 205, - "id": "minecraft:undyed_shulker_box" - }, - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - } - ], - "output": [ - { - "legacyId": 218, - "id": "minecraft:shulker_box", - "blockRuntimeId": 6836 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "slab3_endstonebrick_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 206, - "id": "minecraft:end_bricks" - } - }, - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 6, - "blockRuntimeId": 7255 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "spruce_stairs_spruce_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 134, - "id": "minecraft:spruce_stairs", - "count": 4, - "blockRuntimeId": 7042 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stick_wood_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 320, - "id": "minecraft:stick", - "count": 4 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "stoneslab2_RedSandstone_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 179, - "id": "minecraft:red_sandstone" - } - }, - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 6, - "blockRuntimeId": 7239 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab2_prismarine_bricks_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 168, - "id": "minecraft:prismarine", - "damage": 2 - } - }, - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 6, - "blockRuntimeId": 7243 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab2_prismarine_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 168, - "id": "minecraft:prismarine", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 6, - "blockRuntimeId": 7242 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab2_purpur_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 201, - "id": "minecraft:purpur_block" - } - }, - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 6, - "blockRuntimeId": 7240 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab2_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 48, - "id": "minecraft:mossy_cobblestone" - } - }, - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 6, - "blockRuntimeId": 7244 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab2_rednetherbrick_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 215, - "id": "minecraft:red_nether_brick" - } - }, - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 6, - "blockRuntimeId": 7246 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab2_redsandstone_heiroglyphs_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 6, - "blockRuntimeId": 7239 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab2_smoothsandstone_smooth_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 24, - "id": "minecraft:sandstone", - "damage": 3 - } - }, - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 6, - "blockRuntimeId": 7245 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab3_andesite_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 5 - } - }, - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 6, - "blockRuntimeId": 7258 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab3_diorite_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 3 - } - }, - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 6, - "blockRuntimeId": 7259 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab3_granite", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 1 - } - }, - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 6, - "blockRuntimeId": 7261 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab3_polishedGranite_GraniteSmooth_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 2 - } - }, - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 6, - "blockRuntimeId": 7262 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab3_polished_andesite_andesitesmooth_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 6 - } - }, - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 6, - "blockRuntimeId": 7257 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab3_polished_diorite_dioritesmooth_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 1, - "id": "minecraft:stone", - "damage": 4 - } - }, - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 6, - "blockRuntimeId": 7260 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab3_smooth_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "damage": 3 - } - }, - "output": [ - { - "legacyId": -162, - "id": "minecraft:double_stone_slab3", - "count": 6, - "blockRuntimeId": 7256 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab4_cut_redsandstone_cut_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "damage": 2 - } - }, - "output": [ - { - "legacyId": -166, - "id": "minecraft:double_stone_slab4", - "count": 6, - "blockRuntimeId": 7275 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab4_cut_sandstone_cut_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 24, - "id": "minecraft:sandstone", - "damage": 2 - } - }, - "output": [ - { - "legacyId": -166, - "id": "minecraft:double_stone_slab4", - "count": 6, - "blockRuntimeId": 7274 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab4_smoothquartz_smooth_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 155, - "id": "minecraft:quartz_block", - "damage": 3 - } - }, - "output": [ - { - "legacyId": -166, - "id": "minecraft:double_stone_slab4", - "count": 6, - "blockRuntimeId": 7272 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab_quartz_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 155, - "id": "minecraft:quartz_block" - } - }, - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 6, - "blockRuntimeId": 7229 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 168, - "id": "minecraft:prismarine" - } - }, - "output": [ - { - "legacyId": 182, - "id": "minecraft:double_stone_slab2", - "count": 6, - "blockRuntimeId": 7241 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "stoneslab_sandstone_heiroglyphs_recipeId", - "type": 1, - "input": { - "A": { - "legacyId": 24, - "id": "minecraft:sandstone", - "damage": 1 - } - }, - "output": [ - { - "legacyId": 44, - "id": "minecraft:double_stone_slab", - "count": 6, - "blockRuntimeId": 7224 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "tool_material_recipe_0_0", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 310, - "id": "minecraft:wooden_pickaxe" - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "tool_material_recipe_0_1", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 309, - "id": "minecraft:wooden_shovel" - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "tool_material_recipe_0_2", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 311, - "id": "minecraft:wooden_axe" - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "tool_material_recipe_0_3", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 329, - "id": "minecraft:wooden_hoe" - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 4, - "uuid": "aecd2294-4b94-434b-8667-4499bb2c9327" - }, - { - "id": "weapon_arrow_recipe_10", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 10 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 11, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_11", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 11 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 12, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_12", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 12 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 13, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_13", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 13 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 14, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_14", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 14 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 15, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_15", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 15 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 16, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_16", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 16 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 17, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_17", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 17 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 18, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_18", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 18 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 19, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_19", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 19 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 20, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_20", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 20 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 21, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_21", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 21 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 22, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_22", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 22 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 23, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_23", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 23 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 24, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_24", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 24 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 25, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_25", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 25 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 26, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_26", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 26 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 27, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_27", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 27 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 28, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_28", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 28 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 29, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_29", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 29 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 30, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_30", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 30 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 31, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_31", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 31 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 32, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_32", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 32 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 33, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_33", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 33 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 34, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_34", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 34 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 35, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_35", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 35 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 36, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_36", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 36 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 37, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_37", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 37 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 38, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_38", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 38 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 39, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_39", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 39 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 40, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_40", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 40 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 41, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_41", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 41 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 42, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_42", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 42 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 43, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_5", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 5 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 6, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_6", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 6 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 7, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_7", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 7 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 8, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_8", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 8 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 9, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_arrow_recipe_9", - "type": 1, - "input": { - "A": { - "legacyId": 301, - "id": "minecraft:arrow" - }, - "B": { - "legacyId": 562, - "id": "minecraft:lingering_potion", - "damage": 9 - } - }, - "output": [ - { - "legacyId": 301, - "id": "minecraft:arrow", - "damage": 10, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "weapon_stick_recipe_0_0", - "type": 1, - "input": { - "A": { - "legacyId": 5, - "id": "minecraft:planks", - "damage": 32767 - }, - "B": { - "legacyId": 320, - "id": "minecraft:stick", - "damage": 32767 - } - }, - "output": [ - { - "legacyId": 308, - "id": "minecraft:wooden_sword" - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "id": "wool_dye_wool_0_1", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_10", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_11", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_12", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_13", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_14", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_15", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_2", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_3", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_4", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_5", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_6", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_7", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_8", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_0_9", - "type": 0, - "input": [ - { - "legacyId": 413, - "id": "minecraft:ink_sac", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_0", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_1", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_11", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_12", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_13", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_14", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_15", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_2", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_3", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_4", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_5", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_6", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_7", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_8", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_10_9", - "type": 0, - "input": [ - { - "legacyId": 405, - "id": "minecraft:lime_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7920 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_0", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_1", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_10", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_12", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_13", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_14", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_15", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_2", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_3", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_4", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_5", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_6", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_7", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_8", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_11_9", - "type": 0, - "input": [ - { - "legacyId": 406, - "id": "minecraft:yellow_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7919 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_0", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_1", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_10", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_11", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_13", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_14", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_15", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_2", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_3", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_4", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_5", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_6", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_7", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_8", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_12_9", - "type": 0, - "input": [ - { - "legacyId": 407, - "id": "minecraft:light_blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7918 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_0", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_1", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_10", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_11", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_12", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_14", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_15", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_2", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_3", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_4", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_5", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_6", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_7", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_8", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_13_9", - "type": 0, - "input": [ - { - "legacyId": 408, - "id": "minecraft:magenta_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7917 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_0", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_1", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_10", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_11", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_12", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_13", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_15", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_2", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_3", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_4", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_5", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_6", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_7", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_8", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_14_9", - "type": 0, - "input": [ - { - "legacyId": 409, - "id": "minecraft:orange_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7916 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_0", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_1", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_10", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_11", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_12", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_13", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_14", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_2", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_3", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_4", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_5", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_6", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_7", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_8", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_15_9", - "type": 0, - "input": [ - { - "legacyId": 411, - "id": "minecraft:bone_meal", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_1", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_10", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_11", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_12", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_13", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_14", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_15", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_2", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_3", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_4", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_5", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_6", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_7", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_8", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_16_9", - "type": 0, - "input": [ - { - "legacyId": 395, - "id": "minecraft:black_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7930 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_0", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_1", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_10", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_11", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ - { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_12", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ + "version" : 475, + "recipes" : [ + { + "type" : 4, + "uuid" : "442d85ed-8272-4543-a6f1-418f90ded05d" + }, + { + "type" : 4, + "uuid" : "8b36268c-1829-483c-a0f1-993b7156a8f2" + }, + { + "type" : 4, + "uuid" : "602234e4-cac1-4353-8bb7-b1ebff70024b" + }, + { + "id" : "minecraft:cartography_table_locator_map", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "block" : "cartography_table", + "priority" : 0 + }, + { + "id" : "minecraft:cartography_table_map", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map" + } + ], + "block" : "cartography_table", + "priority" : 0 + }, + { + "type" : 4, + "uuid" : "98c84b38-1085-46bd-b1ce-dd38c159e6cc" + }, + { + "id" : "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -395, + "id" : "minecraft:chiseled_deepslate", + "blockRuntimeId" : 1129 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -380, + "id" : "minecraft:cobbled_deepslate_slab", + "count" : 2, + "blockRuntimeId" : 1146 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -381, + "id" : "minecraft:cobbled_deepslate_stairs", + "blockRuntimeId" : 1148 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -382, + "id" : "minecraft:cobbled_deepslate_wall", + "blockRuntimeId" : 1156 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 2, + "blockRuntimeId" : 4105 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 2, + "blockRuntimeId" : 4105 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 2, + "blockRuntimeId" : 4105 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4107 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4107 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4107 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4115 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4115 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4115 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "blockRuntimeId" : 4277 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "blockRuntimeId" : 4277 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2, + "blockRuntimeId" : 4288 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2, + "blockRuntimeId" : 4288 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2, + "blockRuntimeId" : 4288 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 2, + "blockRuntimeId" : 4288 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4290 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4290 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4290 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4290 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4298 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4298 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4298 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4298 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4460 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks" + } + ], + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4460 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4460 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "blockRuntimeId" : 6203 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -384, + "id" : "minecraft:polished_deepslate_slab", + "count" : 2, + "blockRuntimeId" : 6206 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -384, + "id" : "minecraft:polished_deepslate_slab", + "count" : 2, + "blockRuntimeId" : 6206 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -385, + "id" : "minecraft:polished_deepslate_stairs", + "blockRuntimeId" : 6208 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -385, + "id" : "minecraft:polished_deepslate_stairs", + "blockRuntimeId" : 6208 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate" + } + ], + "output" : [ + { + "legacyId" : -386, + "id" : "minecraft:polished_deepslate_wall", + "blockRuntimeId" : 6216 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecut", + "type" : 0, + "input" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate" + } + ], + "output" : [ + { + "legacyId" : -386, + "id" : "minecraft:polished_deepslate_wall", + "blockRuntimeId" : 6216 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_andesite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7258 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_andesite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -171, + "id" : "minecraft:andesite_stairs", + "blockRuntimeId" : 144 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_andesite_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1323 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_blackstone_slab_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -282, + "id" : "minecraft:blackstone_slab", + "count" : 2, + "blockRuntimeId" : 497 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_blackstone_stairs_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -276, + "id" : "minecraft:blackstone_stairs", + "blockRuntimeId" : 499 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_blackstone_wall_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -277, + "id" : "minecraft:blackstone_wall", + "blockRuntimeId" : 507 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7227 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_brick_slab_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 2, + "blockRuntimeId" : 5828 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "output" : [ + { + "legacyId" : 108, + "id" : "minecraft:brick_stairs", + "blockRuntimeId" : 876 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_brick_stairs_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5830 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1325 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_brick_wall_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5838 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_bricks_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "blockRuntimeId" : 6000 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_chiseled_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -279, + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1131 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_chiseled_nether_bricks_from_nether_brick", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -302, + "id" : "minecraft:chiseled_nether_bricks", + "blockRuntimeId" : 1130 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_chiseled_polished_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -279, + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1131 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_cobbledouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7226 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_cobblestone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + ], + "output" : [ + { + "legacyId" : 67, + "id" : "minecraft:stone_stairs", + "blockRuntimeId" : 7281 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_cobblestone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1319 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_copper_block_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "count" : 4, + "blockRuntimeId" : 3910 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_copper_block_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "count" : 8, + "blockRuntimeId" : 3911 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_copper_block_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 3913 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 3911 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "blockRuntimeId" : 3913 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_dark_prismarine_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7242 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_dark_prismarine_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -3, + "id" : "minecraft:dark_prismarine_stairs", + "blockRuntimeId" : 4037 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_diorite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7259 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_diorite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -170, + "id" : "minecraft:diorite_stairs", + "blockRuntimeId" : 4476 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_diorite_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1322 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_double_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 2, + "blockRuntimeId" : 7273 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_endbrick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7255 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_endbrick_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7255 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_endbrick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : -178, + "id" : "minecraft:end_brick_stairs", + "blockRuntimeId" : 4720 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_endbrick_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "output" : [ + { + "legacyId" : -178, + "id" : "minecraft:end_brick_stairs", + "blockRuntimeId" : 4720 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_endbrick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1329 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_endbrick_wall2", + "type" : 0, + "input" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1329 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_endbricks", + "type" : 0, + "input" : [ + { + "legacyId" : 121, + "id" : "minecraft:end_stone" + } + ], + "output" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "blockRuntimeId" : 4728 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "count" : 4, + "blockRuntimeId" : 4753 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_exposed_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 4756 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_exposed_copper_to_exposed_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "count" : 8, + "blockRuntimeId" : 4754 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 4754 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "blockRuntimeId" : 4756 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_granite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7261 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_granite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -169, + "id" : "minecraft:granite_stairs", + "blockRuntimeId" : 4989 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_granite_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1321 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_mossy_cobbledouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7244 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_mossy_cobblestone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "output" : [ + { + "legacyId" : -179, + "id" : "minecraft:mossy_cobblestone_stairs", + "blockRuntimeId" : 5668 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_mossy_cobblestone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1320 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_mossy_stonebrick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 2, + "blockRuntimeId" : 7271 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_mossy_stonebrick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -175, + "id" : "minecraft:mossy_stone_brick_stairs", + "blockRuntimeId" : 5676 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_mossy_stonebrick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1327 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_nether_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7230 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_nether_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "output" : [ + { + "legacyId" : 114, + "id" : "minecraft:nether_brick_stairs", + "blockRuntimeId" : 5690 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_nether_brick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1328 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "count" : 4, + "blockRuntimeId" : 5755 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "count" : 8, + "blockRuntimeId" : 5756 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_oxidized_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 5758 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 5756 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "blockRuntimeId" : 5758 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_andesite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7186 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7257 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7257 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : -174, + "id" : "minecraft:polished_andesite_stairs", + "blockRuntimeId" : 5814 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_polished_andesite_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : -174, + "id" : "minecraft:polished_andesite_stairs", + "blockRuntimeId" : 5814 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_polished_basalt_from_basalt", + "type" : 0, + "input" : [ + { + "legacyId" : -234, + "id" : "minecraft:basalt", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -235, + "id" : "minecraft:polished_basalt", + "blockRuntimeId" : 5822 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_brick_slab_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 2, + "blockRuntimeId" : 5828 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_brick_stairs_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5830 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_brick_wall_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5838 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_bricks_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "blockRuntimeId" : 6000 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_diorite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7184 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7260 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7260 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -173, + "id" : "minecraft:polished_diorite_stairs", + "blockRuntimeId" : 6378 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_polished_diorite_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : -173, + "id" : "minecraft:polished_diorite_stairs", + "blockRuntimeId" : 6378 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_polished_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "blockRuntimeId" : 5825 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_granite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7182 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_polished_granite_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7262 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_polished_granite_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7262 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_polished_granite_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : -172, + "id" : "minecraft:polished_granite_stairs", + "blockRuntimeId" : 6386 + } + ], + "block" : "stonecutter", + "priority" : 5 + }, + { + "id" : "minecraft:stonecutter_polished_granite_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : -172, + "id" : "minecraft:polished_granite_stairs", + "blockRuntimeId" : 6386 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_polished_slab_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "count" : 2, + "blockRuntimeId" : 6031 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_stairs_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -292, + "id" : "minecraft:polished_blackstone_stairs", + "blockRuntimeId" : 6033 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_polished_wall_from_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -297, + "id" : "minecraft:polished_blackstone_wall", + "blockRuntimeId" : 6041 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_prismarine_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7243 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_prismarine_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : -4, + "id" : "minecraft:prismarine_bricks_stairs", + "blockRuntimeId" : 6441 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_prismarine_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7241 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_prismarine_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "output" : [ + { + "legacyId" : -2, + "id" : "minecraft:prismarine_stairs", + "blockRuntimeId" : 6449 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_prismarine_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1330 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_purpur_lines", + "type" : 0, + "input" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "output" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6527 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_purpur_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7240 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_purpur_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + ], + "output" : [ + { + "legacyId" : 203, + "id" : "minecraft:purpur_stairs", + "blockRuntimeId" : 6537 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_quartz_bricks_from_quartz_block", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : -304, + "id" : "minecraft:quartz_bricks", + "blockRuntimeId" : 6557 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_quartz_chiseled", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6546 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_quartz_lines", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6547 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_quartz_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7229 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_quartz_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + ], + "output" : [ + { + "legacyId" : 156, + "id" : "minecraft:quartz_stairs", + "blockRuntimeId" : 6559 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_red_nether_brick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7246 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_red_nether_brick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "output" : [ + { + "legacyId" : -184, + "id" : "minecraft:red_nether_brick_stairs", + "blockRuntimeId" : 6625 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_red_nether_brick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1332 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_red_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7239 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_cut", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6635 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_heiroglyphs", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6634 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 180, + "id" : "minecraft:red_sandstone_stairs", + "blockRuntimeId" : 6637 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_red_sandstone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1331 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7224 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_sandstone_cut", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6708 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_sandstone_heiroglyphs", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6707 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 128, + "id" : "minecraft:sandstone_stairs", + "blockRuntimeId" : 6710 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_sandstone_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1324 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_slab_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "count" : 2, + "blockRuntimeId" : 6031 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_slab_from_polished_blackstone_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 2, + "blockRuntimeId" : 5828 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_smooth_double_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -183, + "id" : "minecraft:smooth_stone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7223 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_quartz_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 2, + "blockRuntimeId" : 7272 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_quartz_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -185, + "id" : "minecraft:smooth_quartz_stairs", + "blockRuntimeId" : 6887 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_smooth_red_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 2, + "blockRuntimeId" : 7256 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_red_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -176, + "id" : "minecraft:smooth_red_sandstone_stairs", + "blockRuntimeId" : 6895 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_smooth_sanddouble_stone_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 2, + "blockRuntimeId" : 7245 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_smooth_sandstone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : -177, + "id" : "minecraft:smooth_sandstone_stairs", + "blockRuntimeId" : 6903 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_stairs_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -292, + "id" : "minecraft:polished_blackstone_stairs", + "blockRuntimeId" : 6033 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_stone_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : -180, + "id" : "minecraft:normal_stone_stairs", + "blockRuntimeId" : 5708 + } + ], + "block" : "stonecutter", + "priority" : 6 + }, + { + "id" : "minecraft:stonecutter_stonebrick", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7289 + } + ], + "block" : "stonecutter", + "priority" : 4 + }, + { + "id" : "minecraft:stonecutter_stonebrick_chiseled", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7292 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_stonebrick_slab", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7228 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_stonebrick_slab2", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 2, + "blockRuntimeId" : 7228 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_stonebrick_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 109, + "id" : "minecraft:stone_brick_stairs", + "blockRuntimeId" : 7187 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_stonebrick_stairs2", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "output" : [ + { + "legacyId" : 109, + "id" : "minecraft:stone_brick_stairs", + "blockRuntimeId" : 7187 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_stonebrick_wall", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1326 + } + ], + "block" : "stonecutter", + "priority" : 3 + }, + { + "id" : "minecraft:stonecutter_stonebrick_wall2", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + ], + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "blockRuntimeId" : 1326 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_wall_from_polished_blackstone", + "type" : 0, + "input" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -297, + "id" : "minecraft:polished_blackstone_wall", + "blockRuntimeId" : 6041 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_wall_from_polished_blackstone_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId" : 5838 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "count" : 4, + "blockRuntimeId" : 7686 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "count" : 8, + "blockRuntimeId" : 7687 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7689 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_copper_to_exposed_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "count" : 8, + "blockRuntimeId" : 7701 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7687 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId" : 7689 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "count" : 4, + "blockRuntimeId" : 7700 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7703 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7701 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId" : 7703 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "count" : 4, + "blockRuntimeId" : 7714 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "count" : 8, + "blockRuntimeId" : 7715 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7717 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId" : 7715 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7717 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "count" : 4, + "blockRuntimeId" : 7728 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "count" : 8, + "blockRuntimeId" : 7729 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7731 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7729 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId" : 7731 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "count" : 4, + "blockRuntimeId" : 7742 + } + ], + "block" : "stonecutter", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "count" : 8, + "blockRuntimeId" : 7743 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_weathered_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7745 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "count" : 2, + "blockRuntimeId" : 7743 + } + ], + "block" : "stonecutter", + "priority" : 1 + }, + { + "id" : "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "blockRuntimeId" : 7745 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "stonecutter_stairs_from_polished_blackstone_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId" : 5830 + } + ], + "block" : "stonecutter", + "priority" : 2 + }, + { + "id" : "Bookshelf_woodplanks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 704 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "Bowl_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "count" : 4 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "ButtonAcacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -140, + "id" : "minecraft:acacia_button" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonBirch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -141, + "id" : "minecraft:birch_button", + "blockRuntimeId" : 356 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonDarkOak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -142, + "id" : "minecraft:dark_oak_button", + "blockRuntimeId" : 3937 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonJungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -143, + "id" : "minecraft:jungle_button", + "blockRuntimeId" : 5209 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "ButtonSpruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -144, + "id" : "minecraft:spruce_button", + "blockRuntimeId" : 6966 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Chest_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "blockRuntimeId" : 1123 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "DaylightDetector_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass" + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 151, + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4067 + } + ], + "shape" : [ + "AAA", + "BBB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "FireCharge_blaze_powder_coal_sulphur_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + }, + { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 509, + "id" : "minecraft:fire_charge", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "FireCharge_coal_sulphur_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + }, + { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 509, + "id" : "minecraft:fire_charge", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Jukebox_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 84, + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5208 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "Note_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 25, + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5716 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "Painting_Cobblestone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7226 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Painting_NetherBrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7230 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Painting_VanillaBlocks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7224 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Painting_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 357, + "id" : "minecraft:painting" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Piston_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone" + }, + "C" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "D" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 33, + "id" : "minecraft:piston", + "blockRuntimeId" : 5786 + } + ], + "shape" : [ + "AAA", + "BCB", + "BDB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "PressurePlateAcacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -150, + "id" : "minecraft:acacia_pressure_plate", + "blockRuntimeId" : 60 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateBirch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -151, + "id" : "minecraft:birch_pressure_plate", + "blockRuntimeId" : 416 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateDarkOak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -152, + "id" : "minecraft:dark_oak_pressure_plate", + "blockRuntimeId" : 3997 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateJungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -153, + "id" : "minecraft:jungle_pressure_plate", + "blockRuntimeId" : 5269 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "PressurePlateSpruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -154, + "id" : "minecraft:spruce_pressure_plate", + "blockRuntimeId" : 7026 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Stick_bamboo_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -163, + "id" : "minecraft:bamboo" + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick" + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "StoneSlab4_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7273 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab4_stoneBrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7271 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab_Brick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 45, + "id" : "minecraft:brick_block" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7227 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab_StoneBrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7228 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "StoneSlab_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -183, + "id" : "minecraft:smooth_stone" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7223 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Torch_charcoal_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 50, + "id" : "minecraft:torch", + "count" : 4, + "blockRuntimeId" : 7357 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Torch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 50, + "id" : "minecraft:torch", + "count" : 4, + "blockRuntimeId" : 7357 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorAcacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -145, + "id" : "minecraft:acacia_trapdoor", + "count" : 2, + "blockRuntimeId" : 100 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorBirch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -146, + "id" : "minecraft:birch_trapdoor", + "count" : 2, + "blockRuntimeId" : 456 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorDarkOak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -147, + "id" : "minecraft:dark_oak_trapdoor", + "count" : 2, + "blockRuntimeId" : 4021 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorJungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -148, + "id" : "minecraft:jungle_trapdoor", + "count" : 2, + "blockRuntimeId" : 5309 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TrapdoorSpruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -149, + "id" : "minecraft:spruce_trapdoor", + "count" : 2, + "blockRuntimeId" : 7066 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "Trapdoor_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 96, + "id" : "minecraft:trapdoor", + "count" : 2, + "blockRuntimeId" : 7363 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "TripwireHook_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "count" : 2, + "blockRuntimeId" : 7401 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "WoodButton_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 143, + "id" : "minecraft:wooden_button", + "blockRuntimeId" : 7843 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "WoodPressurePlate_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 72, + "id" : "minecraft:wooden_pressure_plate", + "blockRuntimeId" : 7887 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "WorkBench_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 58, + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3771 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "acacia_stairs_acacia_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 163, + "id" : "minecraft:acacia_stairs", + "count" : 4, + "blockRuntimeId" : 76 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "d81aaeaf-e172-4440-9225-868df030d27b" + }, + { + "type" : 4, + "uuid" : "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" + }, + { + "type" : 4, + "uuid" : "00000000-0000-0000-0000-000000000002" + }, + { + "id" : "bed_color_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "bed_color_crimson_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_crimson_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_color_warped_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "bed_dye_0_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_0_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_10_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_11_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_12_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_13_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_14_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_15_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_16_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_17_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_18_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_19_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_1_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_2_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_3_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_4_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_5_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_6_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_7_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_8_9", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_0", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 15 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_1", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 14 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_10", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 5 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_11", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 4 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_12", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 3 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_13", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 2 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_14", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 1 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_15", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_2", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 13 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_3", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 12 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_4", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 11 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_5", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 10 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_6", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 9 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_7", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 8 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "bed_dye_9_8", + "type" : 0, + "input" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 7 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 418, + "id" : "minecraft:bed", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "birch_stairs_birch_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 135, + "id" : "minecraft:birch_stairs", + "count" : 4, + "blockRuntimeId" : 432 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" + }, + { + "id" : "chiseled_quartz_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6546 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "chiseled_stonebrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7292 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "85939755-ba10-4d9d-a4cc-efb7a8e943c4" + }, + { + "id" : "dark_oak_stairs_dark_oak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 164, + "id" : "minecraft:dark_oak_stairs", + "count" : 4, + "blockRuntimeId" : 4013 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "d392b075-4ba1-40ae-8789-af868d56f6ce" + }, + { + "id" : "heiroglyphs_redsandstone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2" + } + }, + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6634 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "heiroglyphs_sandstone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6707 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "jungle_stairs_jungle_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 136, + "id" : "minecraft:jungle_stairs", + "count" : 4, + "blockRuntimeId" : 5285 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "lines_purpur_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6527 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "loom_block_wood_planks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -204, + "id" : "minecraft:loom", + "blockRuntimeId" : 5582 + } + ], + "shape" : [ + "AA", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 379, + "id" : "minecraft:acacia_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 556, + "id" : "minecraft:acacia_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4778 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 187, + "id" : "minecraft:acacia_fence_gate", + "blockRuntimeId" : 44 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2" + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5801 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5801 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5801 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5801 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 163, + "id" : "minecraft:acacia_stairs", + "count" : 4, + "blockRuntimeId" : 76 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2" + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7811 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7817 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:acacia_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7907 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:activator_rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 126, + "id" : "minecraft:activator_rail", + "count" : 6, + "blockRuntimeId" : 122 + } + ], + "shape" : [ + "ABA", + "ACA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:amethyst_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 624, + "id" : "minecraft:amethyst_shard", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -327, + "id" : "minecraft:amethyst_block", + "blockRuntimeId" : 136 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:andesite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + }, + { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 2, + "blockRuntimeId" : 7185 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:andesite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -171, + "id" : "minecraft:andesite_stairs", + "count" : 4, + "blockRuntimeId" : 144 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:andesite_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1323 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:anvil", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 42, + "id" : "minecraft:iron_block", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 145, + "id" : "minecraft:anvil", + "blockRuntimeId" : 152 + } + ], + "shape" : [ + "AAA", + " B ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:armor_stand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab" + } + }, + "output" : [ + { + "legacyId" : 552, + "id" : "minecraft:armor_stand" + } + ], + "shape" : [ + "AAA", + " A ", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:arrow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 327, + "id" : "minecraft:feather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "count" : 4 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_bricks", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 585, + "id" : "minecraft:field_masoned_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_creeper", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 516, + "id" : "minecraft:skull", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 582, + "id" : "minecraft:creeper_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_flower", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 581, + "id" : "minecraft:flower_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_skull", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 516, + "id" : "minecraft:skull", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 583, + "id" : "minecraft:skull_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_thing", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 259, + "id" : "minecraft:enchanted_golden_apple", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 584, + "id" : "minecraft:mojang_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:banner_pattern_vines", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 106, + "id" : "minecraft:vine", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 586, + "id" : "minecraft:bordure_indented_banner_pattern" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:barrel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -203, + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + } + ], + "shape" : [ + "ABA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:barrel_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -203, + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + } + ], + "shape" : [ + "ABA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:barrel_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -203, + "id" : "minecraft:barrel", + "blockRuntimeId" : 201 + } + ], + "shape" : [ + "ABA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:basic_map_to_enhanced", + "type" : 0, + "input" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 1 + }, + { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:beacon", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 518, + "id" : "minecraft:nether_star", + "damage" : 32767 + }, + "C" : { + "legacyId" : 49, + "id" : "minecraft:obsidian", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 138, + "id" : "minecraft:beacon", + "blockRuntimeId" : 217 + } + ], + "shape" : [ + "AAA", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:beehive", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -219, + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:beehive_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -219, + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:beehive_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -219, + "id" : "minecraft:beehive", + "blockRuntimeId" : 260 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:beetroot_soup", + "type" : 0, + "input" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + }, + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 286, + "id" : "minecraft:beetroot_soup" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 376, + "id" : "minecraft:birch_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 554, + "id" : "minecraft:birch_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4776 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 184, + "id" : "minecraft:birch_fence_gate", + "blockRuntimeId" : 400 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5799 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5799 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5799 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5799 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 135, + "id" : "minecraft:birch_stairs", + "count" : 4, + "blockRuntimeId" : 432 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7809 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7815 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:birch_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7905 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner" + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + ], + "output" : [ + { + "legacyId" : -428, + "id" : "minecraft:black_candle", + "blockRuntimeId" : 478 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_candle_from_ink_sac", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + ], + "output" : [ + { + "legacyId" : -428, + "id" : "minecraft:black_candle", + "blockRuntimeId" : 478 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 978 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 978 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:black_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3675 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_concrete_powder_from_ink_sac", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3675 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:black_dye_from_ink_sac", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + ], + "output" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_dye_from_wither_rose", + "type" : 0, + "input" : [ + { + "legacyId" : -216, + "id" : "minecraft:wither_rose", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7103 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_glass_from_ink_sac", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7103 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:black_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 15 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7119 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7119 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7135 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:black_stained_hardened_clay_from_ink_sac", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7135 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:blackstone_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -282, + "id" : "minecraft:blackstone_slab", + "count" : 6, + "blockRuntimeId" : 497 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blackstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -276, + "id" : "minecraft:blackstone_stairs", + "count" : 4, + "blockRuntimeId" : 499 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blackstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -277, + "id" : "minecraft:blackstone_wall", + "count" : 6, + "blockRuntimeId" : 507 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blast_furnace", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + }, + "C" : { + "legacyId" : -183, + "id" : "minecraft:smooth_stone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -196, + "id" : "minecraft:blast_furnace", + "blockRuntimeId" : 669 + } + ], + "shape" : [ + "AAA", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blaze_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 4 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + ], + "output" : [ + { + "legacyId" : -424, + "id" : "minecraft:blue_candle", + "blockRuntimeId" : 675 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_candle_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + ], + "output" : [ + { + "legacyId" : -424, + "id" : "minecraft:blue_candle", + "blockRuntimeId" : 675 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 974 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 974 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3671 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_concrete_powder_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3671 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:blue_dye_from_cornflower", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_dye_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + ], + "output" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_ice", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 174, + "id" : "minecraft:packed_ice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -11, + "id" : "minecraft:blue_ice", + "blockRuntimeId" : 691 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7099 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_glass_from_lapis_lazuli", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7099 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:blue_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7115 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7115 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7131 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:blue_stained_hardened_clay_from_lapis_lazuli", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7131 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 375, + "id" : "minecraft:oak_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bone_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + }, + "output" : [ + { + "legacyId" : 216, + "id" : "minecraft:bone_block", + "blockRuntimeId" : 692 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bone_meal_from_block", + "type" : 0, + "input" : [ + { + "legacyId" : 216, + "id" : "minecraft:bone_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "count" : 9 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bone_meal_from_bone", + "type" : 0, + "input" : [ + { + "legacyId" : 415, + "id" : "minecraft:bone", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:book", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper" + }, + { + "legacyId" : 386, + "id" : "minecraft:paper" + }, + { + "legacyId" : 386, + "id" : "minecraft:paper" + }, + { + "legacyId" : 381, + "id" : "minecraft:leather" + } + ], + "output" : [ + { + "legacyId" : 387, + "id" : "minecraft:book" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bookshelf_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 704 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bookshelf_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "blockRuntimeId" : 704 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 300, + "id" : "minecraft:bow" + } + ], + "shape" : [ + " AB", + "A B", + " AB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:bowl_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "count" : 4 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bowl_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "count" : 4 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:bread", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 261, + "id" : "minecraft:bread" + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brewing_stand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 431, + "id" : "minecraft:brewing_stand" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brewing_stand_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 431, + "id" : "minecraft:brewing_stand" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:brewing_stand_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 431, + "id" : "minecraft:brewing_stand" + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:brick_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 383, + "id" : "minecraft:brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "blockRuntimeId" : 875 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 108, + "id" : "minecraft:brick_stairs", + "count" : 4, + "blockRuntimeId" : 876 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 45, + "id" : "minecraft:brick_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1325 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + ], + "output" : [ + { + "legacyId" : -425, + "id" : "minecraft:brown_candle", + "blockRuntimeId" : 884 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_candle_from_cocoa_beans", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + ], + "output" : [ + { + "legacyId" : -425, + "id" : "minecraft:brown_candle", + "blockRuntimeId" : 884 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 975 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 975 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3672 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_concrete_powder_from_cocoa_beans", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3672 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:brown_dye_from_cocoa_beans", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + ], + "output" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7100 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_glass_from_cocoa_beans", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7100 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:brown_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7116 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7116 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 398, + "id" : "minecraft:brown_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7132 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:brown_stained_hardened_clay_from_cocoa_beans", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7132 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:bucket", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 360, + "id" : "minecraft:bucket" + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cake", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 361, + "id" : "minecraft:milk_bucket" + }, + "B" : { + "legacyId" : 416, + "id" : "minecraft:sugar", + "damage" : 32767 + }, + "C" : { + "legacyId" : 390, + "id" : "minecraft:egg", + "damage" : 32767 + }, + "D" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 417, + "id" : "minecraft:cake" + }, + { + "legacyId" : 360, + "id" : "minecraft:bucket", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "BCB", + "DDD" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:campfire_from_charcoal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_charcoal_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 303, + "id" : "minecraft:charcoal", + "damage" : 32767 + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:campfire_from_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_stripped_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:campfire_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 588, + "id" : "minecraft:campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:candle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "blockRuntimeId" : 953 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:carrot_on_a_stick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 392, + "id" : "minecraft:fishing_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 517, + "id" : "minecraft:carrot_on_a_stick" + } + ], + "shape" : [ + "A ", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cartography_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -200, + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 987 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cartography_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -200, + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 987 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:cartography_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -200, + "id" : "minecraft:cartography_table", + "blockRuntimeId" : 987 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:cauldron", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 432, + "id" : "minecraft:cauldron" + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chain", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 618, + "id" : "minecraft:chain" + } + ], + "shape" : [ + "A", + "B", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chest_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "blockRuntimeId" : 1123 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:chest_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "blockRuntimeId" : 1123 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:chest_minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + }, + "B" : { + "legacyId" : 370, + "id" : "minecraft:minecart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 389, + "id" : "minecraft:chest_minecart" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chiseled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -380, + "id" : "minecraft:cobbled_deepslate_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -395, + "id" : "minecraft:chiseled_deepslate", + "blockRuntimeId" : 1129 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:chiseled_nether_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : -302, + "id" : "minecraft:chiseled_nether_bricks", + "blockRuntimeId" : 1130 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:chiseled_polished_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -279, + "id" : "minecraft:chiseled_polished_blackstone", + "blockRuntimeId" : 1131 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 384, + "id" : "minecraft:clay_ball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 82, + "id" : "minecraft:clay", + "blockRuntimeId" : 1139 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:clock", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 393, + "id" : "minecraft:clock" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:coal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 173, + "id" : "minecraft:coal_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 302, + "id" : "minecraft:coal", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:coal_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + } + }, + "output" : [ + { + "legacyId" : 173, + "id" : "minecraft:coal_block", + "blockRuntimeId" : 1141 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:coarse_dirt", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 3, + "id" : "minecraft:dirt" + }, + "B" : { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 3, + "id" : "minecraft:dirt", + "count" : 4, + "blockRuntimeId" : 4485 + } + ], + "shape" : [ + "AB", + "BA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cobbled_deepslate_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -380, + "id" : "minecraft:cobbled_deepslate_slab", + "count" : 6, + "blockRuntimeId" : 1146 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -381, + "id" : "minecraft:cobbled_deepslate_stairs", + "count" : 4, + "blockRuntimeId" : 1148 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cobbled_deepslate_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -382, + "id" : "minecraft:cobbled_deepslate_wall", + "count" : 6, + "blockRuntimeId" : 1156 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cobblestone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 67, + "id" : "minecraft:stone_stairs", + "count" : 4, + "blockRuntimeId" : 7281 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cobblestone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1319 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cobweb_to_string", + "type" : 0, + "input" : [ + { + "legacyId" : 30, + "id" : "minecraft:web", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 326, + "id" : "minecraft:string", + "count" : 9 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:comparator", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 522, + "id" : "minecraft:comparator" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:compass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 391, + "id" : "minecraft:compass" + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:composter", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -213, + "id" : "minecraft:composter", + "blockRuntimeId" : 3635 + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:composter_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -213, + "id" : "minecraft:composter", + "blockRuntimeId" : 3635 + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:composter_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -213, + "id" : "minecraft:composter", + "blockRuntimeId" : 3635 + } + ], + "shape" : [ + "A A", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:conduit", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 570, + "id" : "minecraft:nautilus_shell", + "damage" : 32767 + }, + "B" : { + "legacyId" : 571, + "id" : "minecraft:heart_of_the_sea", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -157, + "id" : "minecraft:conduit", + "blockRuntimeId" : 3676 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cookie", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + }, + "B" : { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans" + } + }, + "output" : [ + { + "legacyId" : 271, + "id" : "minecraft:cookie", + "count" : 8 + } + ], + "shape" : [ + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:copper_block_from_ingots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "blockRuntimeId" : 3677 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "count" : 4, + "blockRuntimeId" : 3910 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 3911 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 3913 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_exposed_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "count" : 4, + "blockRuntimeId" : 4753 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_exposed_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 4754 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_exposed_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 4756 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 58, + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3771 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:crafting_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 58, + "id" : "minecraft:crafting_table", + "blockRuntimeId" : 3771 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:crafting_table_oxidized_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "count" : 4, + "blockRuntimeId" : 5755 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_oxidized_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 5756 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_oxidized_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 5758 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "count" : 4, + "blockRuntimeId" : 7686 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7687 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7689 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_exposed_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "count" : 4, + "blockRuntimeId" : 7700 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7701 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_exposed_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7703 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "count" : 4, + "blockRuntimeId" : 7714 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7715 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_oxidized_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7717 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_weathered_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "count" : 4, + "blockRuntimeId" : 7728 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7729 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_waxed_weathered_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7731 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_weathered_cut_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "count" : 4, + "blockRuntimeId" : 7742 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_weathered_cut_copper_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "count" : 6, + "blockRuntimeId" : 7743 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crafting_table_weathered_cut_copper_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "count" : 4, + "blockRuntimeId" : 7745 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:crimson_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -260, + "id" : "minecraft:crimson_button", + "blockRuntimeId" : 3772 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 615, + "id" : "minecraft:crimson_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -256, + "id" : "minecraft:crimson_fence", + "count" : 3, + "blockRuntimeId" : 3818 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -258, + "id" : "minecraft:crimson_fence_gate", + "blockRuntimeId" : 3819 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -299, + "id" : "minecraft:crimson_hyphae", + "count" : 3, + "blockRuntimeId" : 3836 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4, + "blockRuntimeId" : 3840 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks_from_crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -299, + "id" : "minecraft:crimson_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4, + "blockRuntimeId" : 3840 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks_from_stripped_crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -300, + "id" : "minecraft:stripped_crimson_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4, + "blockRuntimeId" : 3840 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_planks_from_stripped_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "count" : 4, + "blockRuntimeId" : 3840 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -262, + "id" : "minecraft:crimson_pressure_plate", + "blockRuntimeId" : 3841 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_sign", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 613, + "id" : "minecraft:crimson_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "count" : 6, + "blockRuntimeId" : 3858 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -254, + "id" : "minecraft:crimson_stairs", + "count" : 4, + "blockRuntimeId" : 3860 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crimson_trapdoor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -246, + "id" : "minecraft:crimson_trapdoor", + "count" : 2, + "blockRuntimeId" : 3887 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:crossbow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "C" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "D" : { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 575, + "id" : "minecraft:crossbow" + } + ], + "shape" : [ + "ABA", + "CDC", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 6 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + ], + "output" : [ + { + "legacyId" : -422, + "id" : "minecraft:cyan_candle", + "blockRuntimeId" : 3921 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 972 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 972 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3669 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + ], + "output" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_dye_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + ], + "output" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:cyan_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7097 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7113 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7113 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:cyan_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 401, + "id" : "minecraft:cyan_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7129 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 380, + "id" : "minecraft:dark_oak_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 557, + "id" : "minecraft:dark_oak_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4779 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 186, + "id" : "minecraft:dark_oak_fence_gate", + "blockRuntimeId" : 3981 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5802 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5802 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5802 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5802 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 164, + "id" : "minecraft:dark_oak_stairs", + "count" : 4, + "blockRuntimeId" : 4013 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7812 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7818 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_oak_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7908 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_prismarine", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 395, + "id" : "minecraft:black_dye" + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6439 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dark_prismarine_from_ink_sac", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6439 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:daylight_detector_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 151, + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4067 + } + ], + "shape" : [ + "AAA", + "BBB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:daylight_detector_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "C" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 151, + "id" : "minecraft:daylight_detector", + "blockRuntimeId" : 4067 + } + ], + "shape" : [ + "AAA", + "BBB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:deepslate_brick_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -392, + "id" : "minecraft:deepslate_brick_slab", + "count" : 6, + "blockRuntimeId" : 4105 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -393, + "id" : "minecraft:deepslate_brick_stairs", + "count" : 4, + "blockRuntimeId" : 4107 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -394, + "id" : "minecraft:deepslate_brick_wall", + "count" : 6, + "blockRuntimeId" : 4115 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "count" : 4, + "blockRuntimeId" : 4277 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tile_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -388, + "id" : "minecraft:deepslate_tile_slab", + "count" : 6, + "blockRuntimeId" : 4288 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tile_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -389, + "id" : "minecraft:deepslate_tile_stairs", + "count" : 4, + "blockRuntimeId" : 4290 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tile_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -390, + "id" : "minecraft:deepslate_tile_wall", + "count" : 6, + "blockRuntimeId" : 4298 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:deepslate_tiles", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "count" : 4, + "blockRuntimeId" : 4460 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:detector_rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 70, + "id" : "minecraft:stone_pressure_plate", + "damage" : 32767 + }, + "C" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 28, + "id" : "minecraft:detector_rail", + "count" : 6, + "blockRuntimeId" : 4462 + } + ], + "shape" : [ + "A A", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 57, + "id" : "minecraft:diamond_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 304, + "id" : "minecraft:diamond", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 319, + "id" : "minecraft:diamond_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 57, + "id" : "minecraft:diamond_block", + "blockRuntimeId" : 4474 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 350, + "id" : "minecraft:diamond_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 348, + "id" : "minecraft:diamond_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 347, + "id" : "minecraft:diamond_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 332, + "id" : "minecraft:diamond_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 349, + "id" : "minecraft:diamond_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 318, + "id" : "minecraft:diamond_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 317, + "id" : "minecraft:diamond_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diamond_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 316, + "id" : "minecraft:diamond_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diorite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 2, + "blockRuntimeId" : 7183 + } + ], + "shape" : [ + "AB", + "BA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diorite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -170, + "id" : "minecraft:diorite_stairs", + "count" : 4, + "blockRuntimeId" : 4476 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:diorite_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1322 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dispenser", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 300, + "id" : "minecraft:bow", + "damage" : 32767 + }, + "C" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 23, + "id" : "minecraft:dispenser", + "blockRuntimeId" : 4490 + } + ], + "shape" : [ + "AAA", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dried_kelp", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -139, + "id" : "minecraft:dried_kelp_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dried_kelp_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -139, + "id" : "minecraft:dried_kelp_block", + "blockRuntimeId" : 4584 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dripstone_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -308, + "id" : "minecraft:pointed_dripstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -317, + "id" : "minecraft:dripstone_block", + "blockRuntimeId" : 4585 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dripstone_block_from_pointed_dripstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -308, + "id" : "minecraft:pointed_dripstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -317, + "id" : "minecraft:dripstone_block", + "blockRuntimeId" : 4585 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:dropper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 125, + "id" : "minecraft:dropper", + "blockRuntimeId" : 4589 + } + ], + "shape" : [ + "AAA", + "A A", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:emerald", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 133, + "id" : "minecraft:emerald_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 512, + "id" : "minecraft:emerald", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:emerald_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 133, + "id" : "minecraft:emerald_block", + "blockRuntimeId" : 4717 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:empty_map_to_enhanced", + "type" : 0, + "input" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map" + }, + { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:enchanting_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "C" : { + "legacyId" : 49, + "id" : "minecraft:obsidian", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 116, + "id" : "minecraft:enchanting_table", + "blockRuntimeId" : 4719 + } + ], + "shape" : [ + " A ", + "BCB", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -178, + "id" : "minecraft:end_brick_stairs", + "count" : 4, + "blockRuntimeId" : 4720 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1329 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 121, + "id" : "minecraft:end_stone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 206, + "id" : "minecraft:end_bricks", + "count" : 4, + "blockRuntimeId" : 4728 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_crystal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 433, + "id" : "minecraft:ender_eye", + "damage" : 32767 + }, + "C" : { + "legacyId" : 424, + "id" : "minecraft:ghast_tear", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 631, + "id" : "minecraft:end_crystal" + } + ], + "shape" : [ + "AAA", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:end_rod", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 423, + "id" : "minecraft:blaze_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : 559, + "id" : "minecraft:popped_chorus_fruit", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 208, + "id" : "minecraft:end_rod", + "count" : 4, + "blockRuntimeId" : 4739 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ender_chest", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 49, + "id" : "minecraft:obsidian", + "damage" : 32767 + }, + "B" : { + "legacyId" : 433, + "id" : "minecraft:ender_eye", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 130, + "id" : "minecraft:ender_chest", + "blockRuntimeId" : 4746 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ender_eye", + "type" : 0, + "input" : [ + { + "legacyId" : 422, + "id" : "minecraft:ender_pearl", + "damage" : 32767 + }, + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 433, + "id" : "minecraft:ender_eye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4774 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 107, + "id" : "minecraft:fence_gate", + "blockRuntimeId" : 4780 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fermented_spider_eye", + "type" : 0, + "input" : [ + { + "legacyId" : 278, + "id" : "minecraft:spider_eye", + "damage" : 32767 + }, + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 416, + "id" : "minecraft:sugar", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 428, + "id" : "minecraft:fermented_spider_eye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fishing_rod", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 392, + "id" : "minecraft:fishing_rod" + } + ], + "shape" : [ + " A", + " AB", + "A B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fletching_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -201, + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4812 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:fletching_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -201, + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4812 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:fletching_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -201, + "id" : "minecraft:fletching_table", + "blockRuntimeId" : 4812 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:flint_and_steel", + "type" : 0, + "input" : [ + { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + { + "legacyId" : 356, + "id" : "minecraft:flint", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 299, + "id" : "minecraft:flint_and_steel" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:flower_pot", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 383, + "id" : "minecraft:brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 514, + "id" : "minecraft:flower_pot" + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:furnace", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 61, + "id" : "minecraft:furnace", + "blockRuntimeId" : 4876 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:furnace_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 61, + "id" : "minecraft:furnace", + "blockRuntimeId" : 4876 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:furnace_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 61, + "id" : "minecraft:furnace", + "blockRuntimeId" : 4876 + } + ], + "shape" : [ + "AAA", + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:glass_bottle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "count" : 3 + } + ], + "shape" : [ + "A A", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "count" : 16, + "blockRuntimeId" : 4884 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:glow_frame", + "type" : 0, + "input" : [ + { + "legacyId" : 513, + "id" : "minecraft:frame", + "damage" : 32767 + }, + { + "legacyId" : 503, + "id" : "minecraft:glow_ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 622, + "id" : "minecraft:glow_frame" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:glowstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 394, + "id" : "minecraft:glowstone_dust", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 89, + "id" : "minecraft:glowstone", + "blockRuntimeId" : 4974 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 41, + "id" : "minecraft:gold_block", + "blockRuntimeId" : 4975 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_ingot_from_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 41, + "id" : "minecraft:gold_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_ingot_from_nuggets", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gold_nugget", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_apple", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 257, + "id" : "minecraft:apple", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 258, + "id" : "minecraft:golden_apple" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 325, + "id" : "minecraft:golden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 354, + "id" : "minecraft:golden_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_carrot", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 283, + "id" : "minecraft:golden_carrot" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 352, + "id" : "minecraft:golden_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 351, + "id" : "minecraft:golden_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 333, + "id" : "minecraft:golden_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 353, + "id" : "minecraft:golden_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 324, + "id" : "minecraft:golden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 27, + "id" : "minecraft:golden_rail", + "count" : 6, + "blockRuntimeId" : 4977 + } + ], + "shape" : [ + "A A", + "ABA", + "ACA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 323, + "id" : "minecraft:golden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:golden_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 322, + "id" : "minecraft:golden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:granite", + "type" : 0, + "input" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + }, + { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7181 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:granite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -169, + "id" : "minecraft:granite_stairs", + "count" : 4, + "blockRuntimeId" : 4989 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:granite_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1321 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 8 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + ], + "output" : [ + { + "legacyId" : -420, + "id" : "minecraft:gray_candle", + "blockRuntimeId" : 5000 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 970 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 970 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3667 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_dye_from_black_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:gray_dye_from_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:gray_dye_from_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:gray_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7095 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7111 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7111 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:gray_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7127 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + ], + "output" : [ + { + "legacyId" : -426, + "id" : "minecraft:green_candle", + "blockRuntimeId" : 5016 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 976 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 976 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3673 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7101 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7117 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7117 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:green_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7133 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:grindstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "damage" : 2 + }, + "C" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5032 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5032 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5032 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5032 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_crimson_planks4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5032 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5032 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5032 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5032 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:grindstone_from_warped_planks4", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -195, + "id" : "minecraft:grindstone", + "blockRuntimeId" : 5032 + } + ], + "shape" : [ + "ABA", + "C C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:hay_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 334, + "id" : "minecraft:wheat", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 170, + "id" : "minecraft:hay_block", + "blockRuntimeId" : 5084 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:heavy_weighted_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 148, + "id" : "minecraft:heavy_weighted_pressure_plate", + "blockRuntimeId" : 5096 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honey_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 591, + "id" : "minecraft:honey_bottle", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -220, + "id" : "minecraft:honey_block", + "blockRuntimeId" : 5112 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "count" : 4 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honey_bottle", + "type" : 0, + "input" : [ + { + "legacyId" : -220, + "id" : "minecraft:honey_block", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 591, + "id" : "minecraft:honey_bottle", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honey_bottle_to_sugar", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 591, + "id" : "minecraft:honey_bottle", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 416, + "id" : "minecraft:sugar", + "count" : 3 + }, + { + "legacyId" : 427, + "id" : "minecraft:glass_bottle" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:honeycomb_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -221, + "id" : "minecraft:honeycomb_block", + "blockRuntimeId" : 5113 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:hopper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 527, + "id" : "minecraft:hopper" + } + ], + "shape" : [ + "A A", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:hopper_minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 527, + "id" : "minecraft:hopper", + "damage" : 32767 + }, + "B" : { + "legacyId" : 370, + "id" : "minecraft:minecart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 526, + "id" : "minecraft:hopper_minecart" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ingots_from_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:ingots_from_waxed_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:iron_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 298, + "id" : "minecraft:iron_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_bars", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 101, + "id" : "minecraft:iron_bars", + "count" : 16, + "blockRuntimeId" : 5133 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 42, + "id" : "minecraft:iron_block", + "blockRuntimeId" : 5134 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 346, + "id" : "minecraft:iron_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 344, + "id" : "minecraft:iron_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 372, + "id" : "minecraft:iron_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 343, + "id" : "minecraft:iron_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 331, + "id" : "minecraft:iron_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_ingot_from_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 42, + "id" : "minecraft:iron_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_ingot_from_nuggets", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 305, + "id" : "minecraft:iron_ingot" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 345, + "id" : "minecraft:iron_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_nugget", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 297, + "id" : "minecraft:iron_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 296, + "id" : "minecraft:iron_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 307, + "id" : "minecraft:iron_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:iron_trapdoor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 167, + "id" : "minecraft:iron_trapdoor", + "blockRuntimeId" : 5168 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:item_frame", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 513, + "id" : "minecraft:frame" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jukebox_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 84, + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5208 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:jukebox_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 84, + "id" : "minecraft:jukebox", + "blockRuntimeId" : 5208 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:jungle_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 377, + "id" : "minecraft:jungle_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 555, + "id" : "minecraft:jungle_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4777 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 185, + "id" : "minecraft:jungle_fence_gate", + "blockRuntimeId" : 5253 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5800 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5800 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5800 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5800 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 136, + "id" : "minecraft:jungle_stairs", + "count" : 4, + "blockRuntimeId" : 5285 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7810 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7816 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:jungle_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7906 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:ladder", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 65, + "id" : "minecraft:ladder", + "count" : 3, + "blockRuntimeId" : 5357 + } + ], + "shape" : [ + "A A", + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lantern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 50, + "id" : "minecraft:torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -208, + "id" : "minecraft:lantern", + "blockRuntimeId" : 5363 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lapis_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + } + }, + "output" : [ + { + "legacyId" : 22, + "id" : "minecraft:lapis_block", + "blockRuntimeId" : 5365 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lapis_lazuli", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 22, + "id" : "minecraft:lapis_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lead", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 547, + "id" : "minecraft:lead", + "count" : 2 + } + ], + "shape" : [ + "AA ", + "AB ", + " A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 529, + "id" : "minecraft:rabbit_hide", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 381, + "id" : "minecraft:leather" + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_boots", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 338, + "id" : "minecraft:leather_boots" + } + ], + "shape" : [ + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_chestplate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 336, + "id" : "minecraft:leather_chestplate" + } + ], + "shape" : [ + "A A", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 335, + "id" : "minecraft:leather_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_horse_armor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 530, + "id" : "minecraft:leather_horse_armor" + } + ], + "shape" : [ + "A A", + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:leather_leggings", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 381, + "id" : "minecraft:leather", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 337, + "id" : "minecraft:leather_leggings" + } + ], + "shape" : [ + "AAA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lectern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "damage" : 32767 + }, + "B" : { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -194, + "id" : "minecraft:lectern", + "blockRuntimeId" : 5434 + } + ], + "shape" : [ + "AAA", + " B ", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lectern_from_crimson_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -264, + "id" : "minecraft:crimson_slab", + "damage" : 32767 + }, + "B" : { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -194, + "id" : "minecraft:lectern", + "blockRuntimeId" : 5434 + } + ], + "shape" : [ + "AAA", + " B ", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:lectern_from_warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "damage" : 32767 + }, + "B" : { + "legacyId" : 47, + "id" : "minecraft:bookshelf", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -194, + "id" : "minecraft:lectern", + "blockRuntimeId" : 5434 + } + ], + "shape" : [ + "AAA", + " B ", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:lever", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 69, + "id" : "minecraft:lever", + "blockRuntimeId" : 5442 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 12 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + ], + "output" : [ + { + "legacyId" : -416, + "id" : "minecraft:light_blue_candle", + "blockRuntimeId" : 5474 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 966 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 966 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3663 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:light_blue_dye_from_blue_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:light_blue_dye_from_blue_orchid", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_dye_from_lapis_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 4 + }, + { + "id" : "minecraft:light_blue_dye_from_lapis_white", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:light_blue_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7091 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7107 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7107 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_blue_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7123 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray__carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 971 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 7 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "output" : [ + { + "legacyId" : -421, + "id" : "minecraft:light_gray_candle", + "blockRuntimeId" : 5490 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 971 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3668 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:light_gray_dye_from_azure_bluet", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:light_gray_dye_from_black_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 7 + }, + { + "id" : "minecraft:light_gray_dye_from_gray_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 6 + }, + { + "id" : "minecraft:light_gray_dye_from_gray_white", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 4 + }, + { + "id" : "minecraft:light_gray_dye_from_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 8 + }, + { + "id" : "minecraft:light_gray_dye_from_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 5 + }, + { + "id" : "minecraft:light_gray_dye_from_oxeye_daisy", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:light_gray_dye_from_white_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7096 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7112 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7112 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_gray_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7128 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:light_weighted_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 147, + "id" : "minecraft:light_weighted_pressure_plate", + "blockRuntimeId" : 5500 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lightning_rod", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -312, + "id" : "minecraft:lightning_rod", + "blockRuntimeId" : 5516 + } + ], + "shape" : [ + "A", + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:lime__carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 968 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 10 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + ], + "output" : [ + { + "legacyId" : -418, + "id" : "minecraft:lime_candle", + "blockRuntimeId" : 5522 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 968 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3665 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_dye_from_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:lime_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7093 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7109 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7109 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lime_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7125 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lit_pumpkin", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -155, + "id" : "minecraft:carved_pumpkin", + "damage" : 32767 + }, + "B" : { + "legacyId" : 50, + "id" : "minecraft:torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 91, + "id" : "minecraft:lit_pumpkin", + "blockRuntimeId" : 5551 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:locator_map", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + "B" : { + "legacyId" : 391, + "id" : "minecraft:compass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map", + "damage" : 2 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:lodestone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 3 + }, + "B" : { + "legacyId" : 602, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -222, + "id" : "minecraft:lodestone", + "blockRuntimeId" : 5563 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:loom_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -204, + "id" : "minecraft:loom", + "blockRuntimeId" : 5582 + } + ], + "shape" : [ + "AA", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:loom_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -204, + "id" : "minecraft:loom", + "blockRuntimeId" : 5582 + } + ], + "shape" : [ + "AA", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:magenta_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 13 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + ], + "output" : [ + { + "legacyId" : -415, + "id" : "minecraft:magenta_candle", + "blockRuntimeId" : 5586 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 965 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 965 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3662 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:magenta_dye_from_allium", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:magenta_dye_from_blue_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 6 + }, + { + "id" : "minecraft:magenta_dye_from_blue_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 4 + }, + { + "id" : "minecraft:magenta_dye_from_lapis_ink_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 8 + }, + { + "id" : "minecraft:magenta_dye_from_lapis_ink_white", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 4 + } + ], + "block" : "crafting_table", + "priority" : 7 + }, + { + "id" : "minecraft:magenta_dye_from_lapis_red_pink", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 3 + } + ], + "block" : "crafting_table", + "priority" : 5 + }, + { + "id" : "minecraft:magenta_dye_from_lilac", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_dye_from_purple_and_pink", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 3 + }, + { + "id" : "minecraft:magenta_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7090 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7106 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7106 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magenta_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 408, + "id" : "minecraft:magenta_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7122 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magma", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 430, + "id" : "minecraft:magma_cream", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 213, + "id" : "minecraft:magma", + "blockRuntimeId" : 5602 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:magma_cream", + "type" : 0, + "input" : [ + { + "legacyId" : 429, + "id" : "minecraft:blaze_powder", + "damage" : 32767 + }, + { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 430, + "id" : "minecraft:magma_cream" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:map", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 515, + "id" : "minecraft:empty_map" + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:melon_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 272, + "id" : "minecraft:melon_slice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 103, + "id" : "minecraft:melon_block", + "blockRuntimeId" : 5609 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:melon_seeds", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 272, + "id" : "minecraft:melon_slice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 293, + "id" : "minecraft:melon_seeds" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 370, + "id" : "minecraft:minecart" + } + ], + "shape" : [ + "A A", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:moss_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -320, + "id" : "minecraft:moss_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -335, + "id" : "minecraft:moss_carpet", + "count" : 3, + "blockRuntimeId" : 5666 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + { + "legacyId" : 106, + "id" : "minecraft:vine", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "blockRuntimeId" : 5667 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone_from_moss", + "type" : 0, + "input" : [ + { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + { + "legacyId" : -320, + "id" : "minecraft:moss_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "blockRuntimeId" : 5667 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -179, + "id" : "minecraft:mossy_cobblestone_stairs", + "count" : 4, + "blockRuntimeId" : 5668 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_cobblestone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1320 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stone_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -175, + "id" : "minecraft:mossy_stone_brick_stairs", + "count" : 4, + "blockRuntimeId" : 5676 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stone_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1327 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stonebrick", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + { + "legacyId" : 106, + "id" : "minecraft:vine", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7290 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mossy_stonebrick_from_moss", + "type" : 0, + "input" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + { + "legacyId" : -320, + "id" : "minecraft:moss_block", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7290 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:mushroom_stew", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 260, + "id" : "minecraft:mushroom_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "blockRuntimeId" : 5688 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 113, + "id" : "minecraft:nether_brick_fence", + "count" : 6, + "blockRuntimeId" : 5689 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 114, + "id" : "minecraft:nether_brick_stairs", + "count" : 4, + "blockRuntimeId" : 5690 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1328 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:nether_wart_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 294, + "id" : "minecraft:nether_wart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 214, + "id" : "minecraft:nether_wart_block", + "blockRuntimeId" : 5704 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:netherite_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 602, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -270, + "id" : "minecraft:netherite_block", + "blockRuntimeId" : 5705 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:netherite_ingot", + "type" : 0, + "input" : [ + { + "legacyId" : 612, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 612, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 612, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 612, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 602, + "id" : "minecraft:netherite_ingot" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:netherite_ingot_from_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -270, + "id" : "minecraft:netherite_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 602, + "id" : "minecraft:netherite_ingot", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:noteblock_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 25, + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5716 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:noteblock_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 25, + "id" : "minecraft:noteblock", + "blockRuntimeId" : 5716 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:oak_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log" + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5797 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5797 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5797 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood" + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5797 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 53, + "id" : "minecraft:oak_stairs", + "count" : 4, + "blockRuntimeId" : 5717 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log" + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7807 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7813 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:oak_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7903 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:observer", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 251, + "id" : "minecraft:observer", + "blockRuntimeId" : 5725 + } + ], + "shape" : [ + "AAA", + "BBC", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 14 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + ], + "output" : [ + { + "legacyId" : -414, + "id" : "minecraft:orange_candle", + "blockRuntimeId" : 5738 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 964 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 964 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3661 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_dye_from_orange_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_dye_from_red_yellow", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + ], + "output" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7089 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7105 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7105 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:orange_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 409, + "id" : "minecraft:orange_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7121 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:packed_ice", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 79, + "id" : "minecraft:ice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 174, + "id" : "minecraft:packed_ice", + "blockRuntimeId" : 5768 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:paper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 385, + "id" : "minecraft:sugar_cane", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "count" : 3 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pillar_quartz_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "count" : 2, + "blockRuntimeId" : 6547 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 9 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "output" : [ + { + "legacyId" : -419, + "id" : "minecraft:pink_candle", + "blockRuntimeId" : 5769 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 969 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 969 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3666 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye_from_peony", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye_from_pink_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_dye_from_red_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7094 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7110 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7110 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pink_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 404, + "id" : "minecraft:pink_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7126 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:piston_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "D" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 33, + "id" : "minecraft:piston", + "blockRuntimeId" : 5786 + } + ], + "shape" : [ + "AAA", + "BCB", + "BDB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:piston_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "D" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 33, + "id" : "minecraft:piston", + "blockRuntimeId" : 5786 + } + ], + "shape" : [ + "AAA", + "BCB", + "BDB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:polished_andesite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 4, + "blockRuntimeId" : 7186 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_andesite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : -174, + "id" : "minecraft:polished_andesite_stairs", + "count" : 4, + "blockRuntimeId" : 5814 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_basalt", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -234, + "id" : "minecraft:basalt", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -235, + "id" : "minecraft:polished_basalt", + "count" : 4, + "blockRuntimeId" : 5822 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "count" : 4, + "blockRuntimeId" : 5825 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_brick_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -284, + "id" : "minecraft:polished_blackstone_brick_slab", + "count" : 6, + "blockRuntimeId" : 5828 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -275, + "id" : "minecraft:polished_blackstone_brick_stairs", + "count" : 4, + "blockRuntimeId" : 5830 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -278, + "id" : "minecraft:polished_blackstone_brick_wall", + "count" : 6, + "blockRuntimeId" : 5838 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "count" : 4, + "blockRuntimeId" : 6000 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -296, + "id" : "minecraft:polished_blackstone_button", + "blockRuntimeId" : 6001 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -295, + "id" : "minecraft:polished_blackstone_pressure_plate", + "blockRuntimeId" : 6015 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -293, + "id" : "minecraft:polished_blackstone_slab", + "count" : 6, + "blockRuntimeId" : 6031 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -292, + "id" : "minecraft:polished_blackstone_stairs", + "count" : 4, + "blockRuntimeId" : 6033 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_blackstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -291, + "id" : "minecraft:polished_blackstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -297, + "id" : "minecraft:polished_blackstone_wall", + "count" : 6, + "blockRuntimeId" : 6041 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "count" : 4, + "blockRuntimeId" : 6203 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_deepslate_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -384, + "id" : "minecraft:polished_deepslate_slab", + "count" : 6, + "blockRuntimeId" : 6206 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_deepslate_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -385, + "id" : "minecraft:polished_deepslate_stairs", + "count" : 4, + "blockRuntimeId" : 6208 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_deepslate_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -383, + "id" : "minecraft:polished_deepslate", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -386, + "id" : "minecraft:polished_deepslate_wall", + "count" : 6, + "blockRuntimeId" : 6216 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:polished_diorite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 4, + "blockRuntimeId" : 7184 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_diorite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -173, + "id" : "minecraft:polished_diorite_stairs", + "count" : 4, + "blockRuntimeId" : 6378 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_granite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 1, + "id" : "minecraft:stone", + "count" : 4, + "blockRuntimeId" : 7182 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:polished_granite_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -172, + "id" : "minecraft:polished_granite_stairs", + "count" : 4, + "blockRuntimeId" : 6386 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6438 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "blockRuntimeId" : 6440 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + }, + "output" : [ + { + "legacyId" : -2, + "id" : "minecraft:prismarine_stairs", + "count" : 4, + "blockRuntimeId" : 6449 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_stairs_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -4, + "id" : "minecraft:prismarine_bricks_stairs", + "count" : 4, + "blockRuntimeId" : 6441 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_stairs_dark", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -3, + "id" : "minecraft:dark_prismarine_stairs", + "count" : 4, + "blockRuntimeId" : 4037 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:prismarine_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1330 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pumpkin_pie", + "type" : 0, + "input" : [ + { + "legacyId" : 86, + "id" : "minecraft:pumpkin", + "damage" : 32767 + }, + { + "legacyId" : 416, + "id" : "minecraft:sugar", + "damage" : 32767 + }, + { + "legacyId" : 390, + "id" : "minecraft:egg", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 284, + "id" : "minecraft:pumpkin_pie" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:pumpkin_seeds", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 86, + "id" : "minecraft:pumpkin", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 292, + "id" : "minecraft:pumpkin_seeds", + "count" : 4 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 5 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + ], + "output" : [ + { + "legacyId" : -423, + "id" : "minecraft:purple_candle", + "blockRuntimeId" : 6509 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 973 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 973 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3670 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_dye", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "output" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_dye_from_lapis_lazuli", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "output" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:purple_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7098 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7114 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7114 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purple_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 400, + "id" : "minecraft:purple_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7130 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purpur_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 559, + "id" : "minecraft:popped_chorus_fruit", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "count" : 4, + "blockRuntimeId" : 6525 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:purpur_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 201, + "id" : "minecraft:purpur_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 203, + "id" : "minecraft:purpur_stairs", + "count" : 4, + "blockRuntimeId" : 6537 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:quartz_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6545 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:quartz_bricks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : -304, + "id" : "minecraft:quartz_bricks", + "blockRuntimeId" : 6557 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:quartz_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : 156, + "id" : "minecraft:quartz_stairs", + "count" : 4, + "blockRuntimeId" : 6559 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:rabbit_stew_from_brown_mushroom", + "type" : 0, + "input" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + }, + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 290, + "id" : "minecraft:rabbit_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:rabbit_stew_from_red_mushroom", + "type" : 0, + "input" : [ + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + { + "legacyId" : 279, + "id" : "minecraft:carrot", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 290, + "id" : "minecraft:rabbit_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:rail", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 66, + "id" : "minecraft:rail", + "count" : 16, + "blockRuntimeId" : 6567 + } + ], + "shape" : [ + "A A", + "ABA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_copper", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -452, + "id" : "minecraft:raw_copper_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_copper_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -452, + "id" : "minecraft:raw_copper_block", + "blockRuntimeId" : 6577 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_gold", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -453, + "id" : "minecraft:raw_gold_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_gold_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -453, + "id" : "minecraft:raw_gold_block", + "blockRuntimeId" : 6578 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_iron", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -451, + "id" : "minecraft:raw_iron_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:raw_iron_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -451, + "id" : "minecraft:raw_iron_block", + "blockRuntimeId" : 6579 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 1 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "output" : [ + { + "legacyId" : -427, + "id" : "minecraft:red_candle", + "blockRuntimeId" : 6580 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 977 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 977 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3674 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_beetroot", + "type" : 0, + "input" : [ + { + "legacyId" : 285, + "id" : "minecraft:beetroot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_poppy", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower" + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_rose_bush", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_dye_from_tulip", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_nether_brick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 294, + "id" : "minecraft:nether_wart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick", + "blockRuntimeId" : 6624 + } + ], + "shape" : [ + "AB", + "BA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_nether_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -184, + "id" : "minecraft:red_nether_brick_stairs", + "count" : 4, + "blockRuntimeId" : 6625 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_nether_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1332 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 12, + "id" : "minecraft:sand", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6633 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 180, + "id" : "minecraft:red_sandstone_stairs", + "count" : 4, + "blockRuntimeId" : 6637 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_sandstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1331 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7102 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 14 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7118 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7118 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:red_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 396, + "id" : "minecraft:red_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7134 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 152, + "id" : "minecraft:redstone_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 373, + "id" : "minecraft:redstone", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone_block", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 152, + "id" : "minecraft:redstone_block", + "blockRuntimeId" : 6645 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone_lamp", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 89, + "id" : "minecraft:glowstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 123, + "id" : "minecraft:redstone_lamp", + "blockRuntimeId" : 6646 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:redstone_torch", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "blockRuntimeId" : 6648 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:repeater", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 76, + "id" : "minecraft:redstone_torch", + "damage" : 32767 + }, + "B" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "C" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 419, + "id" : "minecraft:repeater" + } + ], + "shape" : [ + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:respawn_anchor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -289, + "id" : "minecraft:crying_obsidian", + "damage" : 32767 + }, + "B" : { + "legacyId" : 89, + "id" : "minecraft:glowstone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -272, + "id" : "minecraft:respawn_anchor", + "blockRuntimeId" : 6699 + } + ], + "shape" : [ + "AAA", + "BBB", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 12, + "id" : "minecraft:sand" + } + }, + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6706 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 128, + "id" : "minecraft:sandstone_stairs", + "count" : 4, + "blockRuntimeId" : 6710 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sandstone_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1324 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:scaffolding", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -163, + "id" : "minecraft:bamboo", + "damage" : 32767 + }, + "B" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -165, + "id" : "minecraft:scaffolding", + "count" : 6, + "blockRuntimeId" : 6730 + } + ], + "shape" : [ + "ABA", + "A A", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sealantern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 565, + "id" : "minecraft:prismarine_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 549, + "id" : "minecraft:prismarine_crystals", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 169, + "id" : "minecraft:sealantern", + "blockRuntimeId" : 6828 + } + ], + "shape" : [ + "ABA", + "BBB", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:shears", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 421, + "id" : "minecraft:shears" + } + ], + "shape" : [ + " A", + "A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:shield", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 355, + "id" : "minecraft:shield" + } + ], + "shape" : [ + "ABA", + "AAA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:shield_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 355, + "id" : "minecraft:shield" + } + ], + "shape" : [ + "ABA", + "AAA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:shield_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 355, + "id" : "minecraft:shield" + } + ], + "shape" : [ + "ABA", + "AAA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:shulker_box", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 566, + "id" : "minecraft:shulker_shell", + "damage" : 32767 + }, + "B" : { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box", + "blockRuntimeId" : 7462 + } + ], + "shape" : [ + "A", + "B", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_acacia", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 4 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 579, + "id" : "minecraft:acacia_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_birch", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 2 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 577, + "id" : "minecraft:birch_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_darkoak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 5 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 580, + "id" : "minecraft:dark_oak_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_jungle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 3 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 578, + "id" : "minecraft:jungle_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_oak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 358, + "id" : "minecraft:oak_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sign_spruce", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 576, + "id" : "minecraft:spruce_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:slime", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 165, + "id" : "minecraft:slime", + "blockRuntimeId" : 6864 + } + ], + "shape" : [ + "AAA", + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:slime_ball", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 165, + "id" : "minecraft:slime", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smithing_table", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -202, + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6879 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smithing_table_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -202, + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6879 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smithing_table_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -202, + "id" : "minecraft:smithing_table", + "blockRuntimeId" : 6879 + } + ], + "shape" : [ + "AA", + "BB", + "BB" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker_from_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_acacia", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_birch", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker_from_stripped_dark_oak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_jungle", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_oak", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_spruce", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smoker_from_stripped_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smoker_from_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + }, + "B" : { + "legacyId" : 61, + "id" : "minecraft:furnace", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -198, + "id" : "minecraft:smoker", + "blockRuntimeId" : 6880 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:smooth_quartz_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -185, + "id" : "minecraft:smooth_quartz_stairs", + "count" : 4, + "blockRuntimeId" : 6887 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_red_sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "count" : 4, + "blockRuntimeId" : 6635 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_red_sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -176, + "id" : "minecraft:smooth_red_sandstone_stairs", + "count" : 4, + "blockRuntimeId" : 6895 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_sandstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone" + } + }, + "output" : [ + { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "count" : 4, + "blockRuntimeId" : 6708 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:smooth_sandstone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -177, + "id" : "minecraft:smooth_sandstone_stairs", + "count" : 4, + "blockRuntimeId" : 6903 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:snow", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 374, + "id" : "minecraft:snowball", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 80, + "id" : "minecraft:snow", + "blockRuntimeId" : 6912 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:snow_layer", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 80, + "id" : "minecraft:snow", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 78, + "id" : "minecraft:snow_layer", + "count" : 6, + "blockRuntimeId" : 6913 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:soul_campfire_from_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_crimson_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -225, + "id" : "minecraft:crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_sand_and_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_log2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_acacia_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_birch_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_dark_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_jungle_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_oak_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_stripped_spruce_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_soul_soil_and_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_crimson_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_crimson_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_stripped_warped_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_warped_stem", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + }, + "C" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_campfire_from_warped_stem2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + }, + "C" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 621, + "id" : "minecraft:soul_campfire" + } + ], + "shape" : [ + " A ", + "ABA", + "CCC" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:soul_lantern", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : -268, + "id" : "minecraft:soul_torch", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -269, + "id" : "minecraft:soul_lantern", + "blockRuntimeId" : 6953 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:soul_torch_from_soul_sand", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : 88, + "id" : "minecraft:soul_sand", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -268, + "id" : "minecraft:soul_torch", + "count" : 4, + "blockRuntimeId" : 6957 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:soul_torch_from_soul_soil", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : -236, + "id" : "minecraft:soul_soil", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -268, + "id" : "minecraft:soul_torch", + "count" : 4, + "blockRuntimeId" : 6957 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:speckled_melon", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "B" : { + "legacyId" : 272, + "id" : "minecraft:melon_slice", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 434, + "id" : "minecraft:glistering_melon_slice" + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_boat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + }, + "B" : { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 378, + "id" : "minecraft:spruce_boat" + } + ], + "shape" : [ + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 553, + "id" : "minecraft:spruce_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 85, + "id" : "minecraft:fence", + "count" : 3, + "blockRuntimeId" : 4775 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 183, + "id" : "minecraft:spruce_fence_gate", + "blockRuntimeId" : 7010 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5798 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks_from_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5798 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks_from_stripped_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5798 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_planks_from_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 5, + "id" : "minecraft:planks", + "count" : 4, + "blockRuntimeId" : 5798 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 134, + "id" : "minecraft:spruce_stairs", + "count" : 4, + "blockRuntimeId" : 7042 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_wood", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7808 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_wood_stripped", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -212, + "id" : "minecraft:wood", + "count" : 3, + "blockRuntimeId" : 7814 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spruce_wooden_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 158, + "id" : "minecraft:wooden_slab", + "count" : 6, + "blockRuntimeId" : 7904 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:spyglass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 624, + "id" : "minecraft:amethyst_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 625, + "id" : "minecraft:spyglass" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:stick_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick", + "count" : 4 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stick_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick", + "count" : 4 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:sticky_piston", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 388, + "id" : "minecraft:slime_ball", + "damage" : 32767 + }, + "B" : { + "legacyId" : 33, + "id" : "minecraft:piston", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 29, + "id" : "minecraft:sticky_piston", + "blockRuntimeId" : 7169 + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_axe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 315, + "id" : "minecraft:stone_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_axe_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 315, + "id" : "minecraft:stone_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_axe_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 315, + "id" : "minecraft:stone_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_brick_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + }, + "output" : [ + { + "legacyId" : 109, + "id" : "minecraft:stone_brick_stairs", + "count" : 4, + "blockRuntimeId" : 7187 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_brick_wall", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + } + }, + "output" : [ + { + "legacyId" : 139, + "id" : "minecraft:cobblestone_wall", + "count" : 6, + "blockRuntimeId" : 1326 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 77, + "id" : "minecraft:stone_button", + "blockRuntimeId" : 7195 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_hoe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 330, + "id" : "minecraft:stone_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_hoe_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 330, + "id" : "minecraft:stone_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_hoe_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 330, + "id" : "minecraft:stone_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_pickaxe", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 314, + "id" : "minecraft:stone_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_pickaxe_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 314, + "id" : "minecraft:stone_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_pickaxe_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 314, + "id" : "minecraft:stone_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 70, + "id" : "minecraft:stone_pressure_plate", + "blockRuntimeId" : 7207 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_shovel", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 313, + "id" : "minecraft:stone_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_shovel_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 313, + "id" : "minecraft:stone_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_shovel_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 313, + "id" : "minecraft:stone_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : -180, + "id" : "minecraft:normal_stone_stairs", + "count" : 4, + "blockRuntimeId" : 5708 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_sword", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 312, + "id" : "minecraft:stone_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stone_sword_from_blackstone", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -273, + "id" : "minecraft:blackstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 312, + "id" : "minecraft:stone_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stone_sword_from_cobbled_deepslate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 312, + "id" : "minecraft:stone_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:stonebrick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone" + } + }, + "output" : [ + { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "count" : 4, + "blockRuntimeId" : 7289 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stonecutter", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -197, + "id" : "minecraft:stonecutter_block", + "blockRuntimeId" : 7295 + } + ], + "shape" : [ + " A ", + "BBB" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:string_to_wool", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 326, + "id" : "minecraft:string", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stripped_crimson_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -240, + "id" : "minecraft:stripped_crimson_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -300, + "id" : "minecraft:stripped_crimson_hyphae", + "count" : 3, + "blockRuntimeId" : 7307 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:stripped_warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -301, + "id" : "minecraft:stripped_warped_hyphae", + "count" : 3, + "blockRuntimeId" : 7325 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:sugar", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 385, + "id" : "minecraft:sugar_cane", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 416, + "id" : "minecraft:sugar" + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_allium", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 7 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_azure_bluet", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 3 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_blue_orchid", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 6 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_cornflower", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 1 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_dandelion", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 37, + "id" : "minecraft:yellow_flower", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 5 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_lily_of_the_valley", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 4 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_oxeye_daisy", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 8 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_poppy", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower" + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_orange", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_pink", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_red", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_tulip_white", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:suspicious_stew_from_wither_rose", + "type" : 0, + "input" : [ + { + "legacyId" : 39, + "id" : "minecraft:brown_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 40, + "id" : "minecraft:red_mushroom", + "damage" : 32767 + }, + { + "legacyId" : 321, + "id" : "minecraft:bowl", + "damage" : 32767 + }, + { + "legacyId" : -216, + "id" : "minecraft:wither_rose", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 589, + "id" : "minecraft:suspicious_stew", + "damage" : 9 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:target", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "B" : { + "legacyId" : 170, + "id" : "minecraft:hay_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -239, + "id" : "minecraft:target", + "blockRuntimeId" : 7351 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:tinted_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 624, + "id" : "minecraft:amethyst_shard", + "damage" : 32767 + }, + "B" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -334, + "id" : "minecraft:tinted_glass", + "count" : 2, + "blockRuntimeId" : 7352 + } + ], + "shape" : [ + " A ", + "ABA", + " A " + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:tnt", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + "B" : { + "legacyId" : 12, + "id" : "minecraft:sand", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 46, + "id" : "minecraft:tnt", + "blockRuntimeId" : 7353 + } + ], + "shape" : [ + "ABA", + "BAB", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:tnt_minecart", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 46, + "id" : "minecraft:tnt" + }, + "B" : { + "legacyId" : 370, + "id" : "minecraft:minecart", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 525, + "id" : "minecraft:tnt_minecart" + } + ], + "shape" : [ + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:trapped_chest", + "type" : 0, + "input" : [ + { + "legacyId" : 54, + "id" : "minecraft:chest", + "damage" : 32767 + }, + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 146, + "id" : "minecraft:trapped_chest", + "blockRuntimeId" : 7379 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:tripwire_hook_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "blockRuntimeId" : 7401 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:tripwire_hook_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "C" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 131, + "id" : "minecraft:tripwire_hook", + "blockRuntimeId" : 7401 + } + ], + "shape" : [ + "A", + "B", + "C" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:turtle_helmet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 572, + "id" : "minecraft:scute", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 573, + "id" : "minecraft:turtle_helmet" + } + ], + "shape" : [ + "AAA", + "A A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_button", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -261, + "id" : "minecraft:warped_button", + "blockRuntimeId" : 7530 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 616, + "id" : "minecraft:warped_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_fence", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -257, + "id" : "minecraft:warped_fence", + "count" : 3, + "blockRuntimeId" : 7576 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_fence_gate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + }, + "B" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -259, + "id" : "minecraft:warped_fence_gate", + "blockRuntimeId" : 7577 + } + ], + "shape" : [ + "ABA", + "ABA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_fungus_on_a_stick", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 392, + "id" : "minecraft:fishing_rod", + "damage" : 32767 + }, + "B" : { + "legacyId" : -229, + "id" : "minecraft:warped_fungus", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 617, + "id" : "minecraft:warped_fungus_on_a_stick" + } + ], + "shape" : [ + "A ", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -298, + "id" : "minecraft:warped_hyphae", + "count" : 3, + "blockRuntimeId" : 7594 + } + ], + "shape" : [ + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -226, + "id" : "minecraft:warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4, + "blockRuntimeId" : 7598 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks_from_stripped_log", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -241, + "id" : "minecraft:stripped_warped_stem", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4, + "blockRuntimeId" : 7598 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks_from_stripped_warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -301, + "id" : "minecraft:stripped_warped_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4, + "blockRuntimeId" : 7598 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_planks_from_warped_hyphae", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -298, + "id" : "minecraft:warped_hyphae", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "count" : 4, + "blockRuntimeId" : 7598 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_pressure_plate", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -263, + "id" : "minecraft:warped_pressure_plate", + "blockRuntimeId" : 7599 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_sign", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 614, + "id" : "minecraft:warped_sign", + "count" : 3 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_slab", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -265, + "id" : "minecraft:warped_slab", + "count" : 6, + "blockRuntimeId" : 7616 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_stairs", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -255, + "id" : "minecraft:warped_stairs", + "count" : 4, + "blockRuntimeId" : 7618 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:warped_trapdoor", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : -247, + "id" : "minecraft:warped_trapdoor", + "count" : 2, + "blockRuntimeId" : 7645 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:waxing_copper_block", + "type" : 0, + "input" : [ + { + "legacyId" : -340, + "id" : "minecraft:copper_block", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -344, + "id" : "minecraft:waxed_copper", + "blockRuntimeId" : 7685 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -347, + "id" : "minecraft:cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -351, + "id" : "minecraft:waxed_cut_copper", + "blockRuntimeId" : 7686 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -361, + "id" : "minecraft:cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -365, + "id" : "minecraft:waxed_cut_copper_slab", + "blockRuntimeId" : 7687 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -354, + "id" : "minecraft:cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -358, + "id" : "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId" : 7689 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -341, + "id" : "minecraft:exposed_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -345, + "id" : "minecraft:waxed_exposed_copper", + "blockRuntimeId" : 7699 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -348, + "id" : "minecraft:exposed_cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -352, + "id" : "minecraft:waxed_exposed_cut_copper", + "blockRuntimeId" : 7700 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -362, + "id" : "minecraft:exposed_cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -366, + "id" : "minecraft:waxed_exposed_cut_copper_slab", + "blockRuntimeId" : 7701 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_exposed_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -355, + "id" : "minecraft:exposed_cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -359, + "id" : "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId" : 7703 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -343, + "id" : "minecraft:oxidized_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -446, + "id" : "minecraft:waxed_oxidized_copper", + "blockRuntimeId" : 7713 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -350, + "id" : "minecraft:oxidized_cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -447, + "id" : "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId" : 7714 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -364, + "id" : "minecraft:oxidized_cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -449, + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId" : 7715 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_oxidized_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -357, + "id" : "minecraft:oxidized_cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -448, + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7717 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -342, + "id" : "minecraft:weathered_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -346, + "id" : "minecraft:waxed_weathered_copper", + "blockRuntimeId" : 7727 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_cut_copper", + "type" : 0, + "input" : [ + { + "legacyId" : -349, + "id" : "minecraft:weathered_cut_copper", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -353, + "id" : "minecraft:waxed_weathered_cut_copper", + "blockRuntimeId" : 7728 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_cut_copper_slab", + "type" : 0, + "input" : [ + { + "legacyId" : -363, + "id" : "minecraft:weathered_cut_copper_slab", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -367, + "id" : "minecraft:waxed_weathered_cut_copper_slab", + "blockRuntimeId" : 7729 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:waxing_weathered_cut_copper_stairs", + "type" : 0, + "input" : [ + { + "legacyId" : -356, + "id" : "minecraft:weathered_cut_copper_stairs", + "damage" : 32767 + }, + { + "legacyId" : 590, + "id" : "minecraft:honeycomb", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : -360, + "id" : "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId" : 7731 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:wheat", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 170, + "id" : "minecraft:hay_block", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 334, + "id" : "minecraft:wheat", + "count" : 9 + } + ], + "shape" : [ + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 15 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "output" : [ + { + "legacyId" : -413, + "id" : "minecraft:white_candle", + "blockRuntimeId" : 7790 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_candle_from_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : -413, + "id" : "minecraft:white_candle", + "blockRuntimeId" : 7790 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 963 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3660 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_concrete_powder_from_bonemeal", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3660 + } + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:white_dye_from_bone_meal", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + ], + "output" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_dye_from_lily_of_the_valley", + "type" : 0, + "input" : [ + { + "legacyId" : 38, + "id" : "minecraft:red_flower", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7088 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_glass_from_bonemeal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7088 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:white_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7104 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7104 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 410, + "id" : "minecraft:white_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7120 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:white_stained_hardened_clay_from_bonemeal", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 411, + "id" : "minecraft:bone_meal" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7120 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 1 + }, + { + "id" : "minecraft:wooden_axe_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 311, + "id" : "minecraft:wooden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_axe_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 311, + "id" : "minecraft:wooden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_door", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 359, + "id" : "minecraft:wooden_door", + "count" : 3 + } + ], + "shape" : [ + "AA", + "AA", + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:wooden_hoe_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 329, + "id" : "minecraft:wooden_hoe" + } + ], + "shape" : [ + "AA ", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_hoe_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 329, + "id" : "minecraft:wooden_hoe" + } + ], + "shape" : [ + "AA ", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_pickaxe_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 310, + "id" : "minecraft:wooden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_pickaxe_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 310, + "id" : "minecraft:wooden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_shovel_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_shovel_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_sword_from_crimson_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -242, + "id" : "minecraft:crimson_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 308, + "id" : "minecraft:wooden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:wooden_sword_from_warped_planks", + "type" : 1, + "input" : { + "A" : { + "legacyId" : -243, + "id" : "minecraft:warped_planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 308, + "id" : "minecraft:wooden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 2 + }, + { + "id" : "minecraft:writable_book", + "type" : 0, + "input" : [ + { + "legacyId" : 387, + "id" : "minecraft:book", + "damage" : 32767 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac" + }, + { + "legacyId" : 327, + "id" : "minecraft:feather", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 510, + "id" : "minecraft:writable_book" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_banner", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 567, + "id" : "minecraft:banner", + "damage" : 11 + } + ], + "shape" : [ + "AAA", + "AAA", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_candle", + "type" : 0, + "input" : [ + { + "legacyId" : -412, + "id" : "minecraft:candle", + "damage" : 32767 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + ], + "output" : [ + { + "legacyId" : -417, + "id" : "minecraft:yellow_candle", + "blockRuntimeId" : 7931 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_carpet", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 3, + "blockRuntimeId" : 967 + } + ], + "shape" : [ + "AA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_carpet_from_white", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 171, + "id" : "minecraft:carpet" + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 171, + "id" : "minecraft:carpet", + "count" : 8, + "blockRuntimeId" : 967 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_concrete_powder", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 12, + "id" : "minecraft:sand" + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + }, + { + "legacyId" : 13, + "id" : "minecraft:gravel", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 237, + "id" : "minecraft:concrete_powder", + "count" : 8, + "blockRuntimeId" : 3664 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_dye_from_dandelion", + "type" : 0, + "input" : [ + { + "legacyId" : 37, + "id" : "minecraft:yellow_flower" + } + ], + "output" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_dye_from_sunflower", + "type" : 0, + "input" : [ + { + "legacyId" : 175, + "id" : "minecraft:double_plant" + } + ], + "output" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "count" : 2 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_glass", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "damage" : 32767 + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "count" : 8, + "blockRuntimeId" : 7092 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_glass_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 241, + "id" : "minecraft:stained_glass", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 16, + "blockRuntimeId" : 7108 + } + ], + "shape" : [ + "AAA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_glass_pane_from_pane", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 102, + "id" : "minecraft:glass_pane", + "damage" : 32767 + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 160, + "id" : "minecraft:stained_glass_pane", + "count" : 8, + "blockRuntimeId" : 7108 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "minecraft:yellow_stained_hardened_clay", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "damage" : 32767 + }, + "B" : { + "legacyId" : 406, + "id" : "minecraft:yellow_dye" + } + }, + "output" : [ + { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "count" : 8, + "blockRuntimeId" : 7124 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "oak_stairs_oak_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks" + } + }, + "output" : [ + { + "legacyId" : 53, + "id" : "minecraft:oak_stairs", + "count" : 4, + "blockRuntimeId" : 5717 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_0_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star" + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_10_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_11_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_12_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_13_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_14_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_15_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_16_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star" + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_17_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_18_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_19_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_1_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_2_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_3_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_4_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_5_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_6_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_7_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_8_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_charge_9_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_0_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_10_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 10, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_11_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 11, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_12_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 12, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_13_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 13, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_14_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 14, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_15_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_16_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_17_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_18_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_19_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 15, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_1_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 1, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_2_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 2, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_3_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 3, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_4_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 4, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_5_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 5, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_6_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 6, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_7_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 7, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_8_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 8, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_dye_9_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 520, + "id" : "minecraft:firework_star", + "damage" : 9, + "nbt_b64" : "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "paper_sulphur_recipeId", + "type" : 0, + "input" : [ + { + "legacyId" : 386, + "id" : "minecraft:paper", + "damage" : 32767 + }, + { + "legacyId" : 328, + "id" : "minecraft:gunpowder", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 519, + "id" : "minecraft:firework_rocket", + "count" : 3, + "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 4, + "uuid" : "00000000-0000-0000-0000-000000000001" + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_0_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_10_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_11_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_12_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_13_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_14_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_15_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_16_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_17_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_18_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_19_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_1_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_2_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_3_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_4_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_5_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_6_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_7_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_8_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 6 + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 15 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 5 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 4 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 3 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 2 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 1 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 14 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 13 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 12 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 11 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 10 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 9 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 8 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_block_9_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "damage" : 7 + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_0_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_10_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6835 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_11_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6834 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_12_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6833 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_13_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6832 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_14_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6831 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_15_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_16_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6845 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_17_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_18_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_19_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6830 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_1_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6844 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_2_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6843 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_3_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6842 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_4_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6841 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_5_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6840 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_6_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6839 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_7_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6838 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_8_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6837 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "shulkerBox_shulker_box_color_dye_9_0", + "type" : 5, + "input" : [ + { + "legacyId" : 205, + "id" : "minecraft:undyed_shulker_box" + }, + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 218, + "id" : "minecraft:shulker_box", + "blockRuntimeId" : 6836 + } + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "slab3_endstonebrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 206, + "id" : "minecraft:end_bricks" + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7255 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "spruce_stairs_spruce_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 134, + "id" : "minecraft:spruce_stairs", + "count" : 4, + "blockRuntimeId" : 7042 + } + ], + "shape" : [ + "A ", + "AA ", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stick_wood_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 320, + "id" : "minecraft:stick", + "count" : 4 + } + ], + "shape" : [ + "A", + "A" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "stoneslab2_RedSandstone_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7239 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_prismarine_bricks_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7243 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_prismarine_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7242 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_purpur_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 201, + "id" : "minecraft:purpur_block" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7240 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 48, + "id" : "minecraft:mossy_cobblestone" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7244 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_rednetherbrick_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 215, + "id" : "minecraft:red_nether_brick" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7246 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_redsandstone_heiroglyphs_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7239 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab2_smoothsandstone_smooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7245 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_andesite_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7258 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_diorite_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7259 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_granite", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7261 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_polishedGranite_GraniteSmooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7262 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_polished_andesite_andesitesmooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7257 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_polished_diorite_dioritesmooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "damage" : 4 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7260 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab3_smooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -162, + "id" : "minecraft:double_stone_slab3", + "count" : 6, + "blockRuntimeId" : 7256 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab4_cut_redsandstone_cut_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7275 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab4_cut_sandstone_cut_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 2 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7274 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab4_smoothquartz_smooth_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "damage" : 3 + } + }, + "output" : [ + { + "legacyId" : -166, + "id" : "minecraft:double_stone_slab4", + "count" : 6, + "blockRuntimeId" : 7272 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab_quartz_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7229 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 168, + "id" : "minecraft:prismarine" + } + }, + "output" : [ + { + "legacyId" : 182, + "id" : "minecraft:double_stone_slab2", + "count" : 6, + "blockRuntimeId" : 7241 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "stoneslab_sandstone_heiroglyphs_recipeId", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : 1 + } + }, + "output" : [ + { + "legacyId" : 44, + "id" : "minecraft:double_stone_slab", + "count" : 6, + "blockRuntimeId" : 7224 + } + ], + "shape" : [ + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "tool_material_recipe_0_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 310, + "id" : "minecraft:wooden_pickaxe" + } + ], + "shape" : [ + "AAA", + " B ", + " B " + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "tool_material_recipe_0_1", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 309, + "id" : "minecraft:wooden_shovel" + } + ], + "shape" : [ + "A", + "B", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "tool_material_recipe_0_2", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 311, + "id" : "minecraft:wooden_axe" + } + ], + "shape" : [ + "AA", + "AB", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "tool_material_recipe_0_3", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 329, + "id" : "minecraft:wooden_hoe" + } + ], + "shape" : [ + "AA", + " B", + " B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "type" : 4, + "uuid" : "aecd2294-4b94-434b-8667-4499bb2c9327" + }, + { + "id" : "weapon_arrow_recipe_10", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 10 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 11, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_11", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 11 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 12, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_12", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 12 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 13, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_13", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 13 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 14, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_14", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 14 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 15, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_15", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 15 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 16, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_16", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 16 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 17, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_17", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 17 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 18, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_18", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 18 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 19, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_19", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 19 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 20, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_20", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 20 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 21, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_21", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 21 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 22, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_22", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 22 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 23, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_23", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 23 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 24, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_24", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 24 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 25, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_25", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 25 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 26, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_26", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 26 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 27, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_27", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 27 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 28, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_28", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 28 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 29, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_29", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 29 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 30, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_30", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 30 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 31, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_31", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 31 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 32, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_32", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 32 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 33, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_33", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 33 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 34, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_34", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 34 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 35, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_35", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 35 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 36, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_36", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 36 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 37, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_37", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 37 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 38, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_38", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 38 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 39, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_39", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 39 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 40, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_40", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 40 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 41, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_41", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 41 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 42, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_42", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 42 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 43, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_5", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 5 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 6, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_6", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 6 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 7, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_7", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 7 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 8, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_8", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 8 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 9, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_arrow_recipe_9", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 301, + "id" : "minecraft:arrow" + }, + "B" : { + "legacyId" : 562, + "id" : "minecraft:lingering_potion", + "damage" : 9 + } + }, + "output" : [ + { + "legacyId" : 301, + "id" : "minecraft:arrow", + "damage" : 10, + "count" : 8 + } + ], + "shape" : [ + "AAA", + "ABA", + "AAA" + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "weapon_stick_recipe_0_0", + "type" : 1, + "input" : { + "A" : { + "legacyId" : 5, + "id" : "minecraft:planks", + "damage" : 32767 + }, + "B" : { + "legacyId" : 320, + "id" : "minecraft:stick", + "damage" : 32767 + } + }, + "output" : [ + { + "legacyId" : 308, + "id" : "minecraft:wooden_sword" + } + ], + "shape" : [ + "A", + "A", + "B" + ], + "block" : "crafting_table", + "priority" : 0 + }, + { + "id" : "wool_dye_wool_0_1", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_10", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_11", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_12", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_13", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_14", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_15", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_2", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_3", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_4", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_5", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_6", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_7", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_8", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_0_9", + "type" : 0, + "input" : [ + { + "legacyId" : 413, + "id" : "minecraft:ink_sac", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_0", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_1", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_11", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_12", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_13", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_14", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_15", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_2", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_3", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_4", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_5", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_6", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_7", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_8", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_10_9", + "type" : 0, + "input" : [ + { + "legacyId" : 405, + "id" : "minecraft:lime_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7920 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_0", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_1", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_10", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_12", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_13", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_14", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_15", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_2", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_3", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_4", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_5", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_6", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_7", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_8", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_11_9", + "type" : 0, + "input" : [ + { + "legacyId" : 406, + "id" : "minecraft:yellow_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7919 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_0", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_1", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_10", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_11", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_13", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_14", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_15", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_2", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_3", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_4", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_5", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_6", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_7", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_8", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_12_9", + "type" : 0, + "input" : [ + { + "legacyId" : 407, + "id" : "minecraft:light_blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7918 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_0", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_1", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_10", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_11", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_12", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_14", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_15", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_2", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_3", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_4", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_5", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_6", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_7", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_8", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_13_9", + "type" : 0, + "input" : [ + { + "legacyId" : 408, + "id" : "minecraft:magenta_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7917 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_0", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_1", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_10", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_11", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_12", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_13", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_15", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_2", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_3", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_4", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_5", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_6", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_7", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_8", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_14_9", + "type" : 0, + "input" : [ + { + "legacyId" : 409, + "id" : "minecraft:orange_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7916 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_0", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_1", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_10", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_11", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_12", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_13", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_14", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_2", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_3", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_4", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_5", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_6", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_7", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_8", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_15_9", + "type" : 0, + "input" : [ + { + "legacyId" : 411, + "id" : "minecraft:bone_meal", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_1", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_10", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_11", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_12", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_13", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_14", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_15", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_2", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_3", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_4", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_5", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_6", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_7", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_8", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_16_9", + "type" : 0, + "input" : [ + { + "legacyId" : 395, + "id" : "minecraft:black_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7930 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_0", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_1", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_10", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_11", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_12", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_13", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_14", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_15", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_2", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_4", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_5", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_6", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_7", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_8", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_17_9", + "type" : 0, + "input" : [ + { + "legacyId" : 398, + "id" : "minecraft:brown_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_0", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_1", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_10", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_11", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_12", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_13", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_14", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_15", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_2", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_3", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_5", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_6", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_7", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_8", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_18_9", + "type" : 0, + "input" : [ + { + "legacyId" : 399, + "id" : "minecraft:blue_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_0", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_1", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_10", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_11", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_12", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_13", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_14", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_2", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_3", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_4", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_5", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_6", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_7", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_8", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_19_9", + "type" : 0, + "input" : [ + { + "legacyId" : 410, + "id" : "minecraft:white_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7915 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_0", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_10", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_11", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_12", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_13", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_14", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_15", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_2", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_3", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_4", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_5", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_6", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_7", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_8", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_1_9", + "type" : 0, + "input" : [ + { + "legacyId" : 396, + "id" : "minecraft:red_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7929 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_0", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_1", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_10", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_11", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_12", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_13", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_14", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_15", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_3", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_4", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_5", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_6", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_7", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_8", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_2_9", + "type" : 0, + "input" : [ + { + "legacyId" : 397, + "id" : "minecraft:green_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7928 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_0", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_1", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_10", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_11", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_12", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_13", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_14", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_15", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_2", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_4", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_5", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_6", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_7", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_8", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_3_9", + "type" : 0, + "input" : [ + { + "legacyId" : 412, + "id" : "minecraft:cocoa_beans", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7927 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_0", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_1", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_10", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_11", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_12", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_13", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_14", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_15", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_2", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_3", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_5", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_6", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_7", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_8", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_4_9", + "type" : 0, + "input" : [ + { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7926 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_0", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_1", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_10", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_11", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_12", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_13", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_14", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_15", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_2", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_3", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_4", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_6", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_7", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_8", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_5_9", + "type" : 0, + "input" : [ + { + "legacyId" : 400, + "id" : "minecraft:purple_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7925 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_0", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_1", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_10", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_11", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_12", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_13", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_14", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_15", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_2", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_3", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_4", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_5", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_7", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_8", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_6_9", + "type" : 0, + "input" : [ + { + "legacyId" : 401, + "id" : "minecraft:cyan_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7924 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_0", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_1", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_10", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_11", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_12", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_13", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_14", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_15", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_2", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_3", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_4", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_5", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_6", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_8", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_7_9", + "type" : 0, + "input" : [ + { + "legacyId" : 402, + "id" : "minecraft:light_gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7923 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_0", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_1", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_10", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_11", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_12", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_13", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_14", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_15", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_2", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_3", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_4", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_5", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_6", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_7", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_8_9", + "type" : 0, + "input" : [ + { + "legacyId" : 403, + "id" : "minecraft:gray_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 6 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7922 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_0", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 15 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_1", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 14 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_10", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 5 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_11", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 4 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_12", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 3 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_13", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 2 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_14", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 1 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_15", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool" + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_2", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 13 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_3", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 12 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_4", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 11 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_5", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 10 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_6", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 9 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_7", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 8 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "id" : "wool_dye_wool_9_8", + "type" : 0, + "input" : [ + { + "legacyId" : 404, + "id" : "minecraft:pink_dye", + "damage" : 32767 + }, + { + "legacyId" : 35, + "id" : "minecraft:wool", + "damage" : 7 + } + ], + "output" : [ + { + "legacyId" : 35, + "id" : "minecraft:wool", + "blockRuntimeId" : 7921 + } + ], + "block" : "crafting_table", + "priority" : 50 + }, + { + "type" : 3, + "input" : { + "legacyId" : -408, + "id" : "minecraft:deepslate_copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -408, + "id" : "minecraft:deepslate_copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -407, + "id" : "minecraft:deepslate_emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -407, + "id" : "minecraft:deepslate_emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -406, + "id" : "minecraft:deepslate_coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -406, + "id" : "minecraft:deepslate_coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -405, + "id" : "minecraft:deepslate_diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -405, + "id" : "minecraft:deepslate_diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -403, + "id" : "minecraft:deepslate_redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -403, + "id" : "minecraft:deepslate_redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -402, + "id" : "minecraft:deepslate_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -402, + "id" : "minecraft:deepslate_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -401, + "id" : "minecraft:deepslate_iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -401, + "id" : "minecraft:deepslate_iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -400, + "id" : "minecraft:deepslate_lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -400, + "id" : "minecraft:deepslate_lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -391, + "id" : "minecraft:deepslate_bricks", + "damage" : -1 + }, + "output" : { + "legacyId" : -410, + "id" : "minecraft:cracked_deepslate_bricks", + "blockRuntimeId" : 3767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -387, + "id" : "minecraft:deepslate_tiles", + "damage" : -1 + }, + "output" : { + "legacyId" : -409, + "id" : "minecraft:cracked_deepslate_tiles", + "blockRuntimeId" : 3768 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -379, + "id" : "minecraft:cobbled_deepslate", + "damage" : -1 + }, + "output" : { + "legacyId" : -378, + "id" : "minecraft:deepslate", + "blockRuntimeId" : 4100 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -311, + "id" : "minecraft:copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -311, + "id" : "minecraft:copper_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -288, + "id" : "minecraft:nether_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -288, + "id" : "minecraft:nether_gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -274, + "id" : "minecraft:polished_blackstone_bricks", + "damage" : -1 + }, + "output" : { + "legacyId" : -280, + "id" : "minecraft:cracked_polished_blackstone_bricks", + "blockRuntimeId" : 3770 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -271, + "id" : "minecraft:ancient_debris", + "damage" : -1 + }, + "output" : { + "legacyId" : 612, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -271, + "id" : "minecraft:ancient_debris", + "damage" : -1 + }, + "output" : { + "legacyId" : 612, + "id" : "minecraft:netherite_scrap", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -234, + "id" : "minecraft:basalt", + "damage" : -1 + }, + "output" : { + "legacyId" : -377, + "id" : "minecraft:smooth_basalt", + "blockRuntimeId" : 6886 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood" + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 2 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 3 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 4 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 5 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 8 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 9 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 10 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 11 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 12 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -212, + "id" : "minecraft:wood", + "damage" : 13 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -156, + "id" : "minecraft:sea_pickle", + "damage" : -1 + }, + "output" : { + "legacyId" : 405, + "id" : "minecraft:lime_dye" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -10, + "id" : "minecraft:stripped_oak_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -9, + "id" : "minecraft:stripped_dark_oak_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -8, + "id" : "minecraft:stripped_acacia_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -7, + "id" : "minecraft:stripped_jungle_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -6, + "id" : "minecraft:stripped_birch_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : -5, + "id" : "minecraft:stripped_spruce_log", + "damage" : -1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 1, + "id" : "minecraft:stone" + }, + "output" : { + "legacyId" : -183, + "id" : "minecraft:smooth_stone", + "blockRuntimeId" : 6911 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 4, + "id" : "minecraft:cobblestone", + "damage" : -1 + }, + "output" : { + "legacyId" : 1, + "id" : "minecraft:stone", + "blockRuntimeId" : 7180 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 12, + "id" : "minecraft:sand", + "damage" : -1 + }, + "output" : { + "legacyId" : 20, + "id" : "minecraft:glass", + "blockRuntimeId" : 4883 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 14, + "id" : "minecraft:gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 14, + "id" : "minecraft:gold_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 15, + "id" : "minecraft:iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 15, + "id" : "minecraft:iron_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 16, + "id" : "minecraft:coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 16, + "id" : "minecraft:coal_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 302, + "id" : "minecraft:coal" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log" + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 2 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 17, + "id" : "minecraft:log", + "damage" : 3 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 19, + "id" : "minecraft:sponge", + "damage" : 1 + }, + "output" : { + "legacyId" : 19, + "id" : "minecraft:sponge", + "blockRuntimeId" : 6963 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 21, + "id" : "minecraft:lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 21, + "id" : "minecraft:lapis_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 414, + "id" : "minecraft:lapis_lazuli" + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "damage" : -1 + }, + "output" : { + "legacyId" : 24, + "id" : "minecraft:sandstone", + "blockRuntimeId" : 6709 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 56, + "id" : "minecraft:diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 56, + "id" : "minecraft:diamond_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 304, + "id" : "minecraft:diamond", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 73, + "id" : "minecraft:redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 73, + "id" : "minecraft:redstone_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 373, + "id" : "minecraft:redstone", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 81, + "id" : "minecraft:cactus", + "damage" : -1 + }, + "output" : { + "legacyId" : 397, + "id" : "minecraft:green_dye" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 82, + "id" : "minecraft:clay", + "damage" : -1 + }, + "output" : { + "legacyId" : 172, + "id" : "minecraft:hardened_clay", + "blockRuntimeId" : 5083 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 87, + "id" : "minecraft:netherrack", + "damage" : -1 + }, + "output" : { + "legacyId" : 523, + "id" : "minecraft:netherbrick", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick" + }, + "output" : { + "legacyId" : 98, + "id" : "minecraft:stonebrick", + "blockRuntimeId" : 7291 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 112, + "id" : "minecraft:nether_brick", + "damage" : -1 + }, + "output" : { + "legacyId" : -303, + "id" : "minecraft:cracked_nether_bricks", + "blockRuntimeId" : 3769 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 129, + "id" : "minecraft:emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 129, + "id" : "minecraft:emerald_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 512, + "id" : "minecraft:emerald", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 153, + "id" : "minecraft:quartz_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 153, + "id" : "minecraft:quartz_ore", + "damage" : -1 + }, + "output" : { + "legacyId" : 524, + "id" : "minecraft:quartz", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block" + }, + "output" : { + "legacyId" : 155, + "id" : "minecraft:quartz_block", + "blockRuntimeId" : 6548 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay" + }, + "output" : { + "legacyId" : 220, + "id" : "minecraft:white_glazed_terracotta", + "blockRuntimeId" : 7800 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 1 + }, + "output" : { + "legacyId" : 221, + "id" : "minecraft:orange_glazed_terracotta", + "blockRuntimeId" : 5748 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 2 + }, + "output" : { + "legacyId" : 222, + "id" : "minecraft:magenta_glazed_terracotta", + "blockRuntimeId" : 5596 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 3 + }, + "output" : { + "legacyId" : 223, + "id" : "minecraft:light_blue_glazed_terracotta", + "blockRuntimeId" : 5484 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 4 + }, + "output" : { + "legacyId" : 224, + "id" : "minecraft:yellow_glazed_terracotta", + "blockRuntimeId" : 7942 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 5 + }, + "output" : { + "legacyId" : 225, + "id" : "minecraft:lime_glazed_terracotta", + "blockRuntimeId" : 5532 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 6 + }, + "output" : { + "legacyId" : 226, + "id" : "minecraft:pink_glazed_terracotta", + "blockRuntimeId" : 5779 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 7 + }, + "output" : { + "legacyId" : 227, + "id" : "minecraft:gray_glazed_terracotta", + "blockRuntimeId" : 5010 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 8 + }, + "output" : { + "legacyId" : 228, + "id" : "minecraft:silver_glazed_terracotta", + "blockRuntimeId" : 6846 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 9 + }, + "output" : { + "legacyId" : 229, + "id" : "minecraft:cyan_glazed_terracotta", + "blockRuntimeId" : 3931 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 10 + }, + "output" : { + "legacyId" : 219, + "id" : "minecraft:purple_glazed_terracotta", + "blockRuntimeId" : 6519 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 11 + }, + "output" : { + "legacyId" : 231, + "id" : "minecraft:blue_glazed_terracotta", + "blockRuntimeId" : 685 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 12 + }, + "output" : { + "legacyId" : 232, + "id" : "minecraft:brown_glazed_terracotta", + "blockRuntimeId" : 894 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 13 + }, + "output" : { + "legacyId" : 233, + "id" : "minecraft:green_glazed_terracotta", + "blockRuntimeId" : 5026 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 14 + }, + "output" : { + "legacyId" : 234, + "id" : "minecraft:red_glazed_terracotta", + "blockRuntimeId" : 6601 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 159, + "id" : "minecraft:stained_hardened_clay", + "damage" : 15 + }, + "output" : { + "legacyId" : 235, + "id" : "minecraft:black_glazed_terracotta", + "blockRuntimeId" : 488 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 162, + "id" : "minecraft:log2" + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 162, + "id" : "minecraft:log2", + "damage" : 1 + }, + "output" : { + "legacyId" : 303, + "id" : "minecraft:charcoal" + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "damage" : -1 + }, + "output" : { + "legacyId" : 179, + "id" : "minecraft:red_sandstone", + "blockRuntimeId" : 6636 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 262, + "id" : "minecraft:porkchop", + "damage" : -1 + }, + "output" : { + "legacyId" : 263, + "id" : "minecraft:cooked_porkchop", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 264, + "id" : "minecraft:cod", + "damage" : -1 + }, + "output" : { + "legacyId" : 268, + "id" : "minecraft:cooked_cod", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 265, + "id" : "minecraft:salmon", + "damage" : -1 + }, + "output" : { + "legacyId" : 269, + "id" : "minecraft:cooked_salmon", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 273, + "id" : "minecraft:beef", + "damage" : -1 + }, + "output" : { + "legacyId" : 274, + "id" : "minecraft:cooked_beef", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 275, + "id" : "minecraft:chicken", + "damage" : -1 + }, + "output" : { + "legacyId" : 276, + "id" : "minecraft:cooked_chicken", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 280, + "id" : "minecraft:potato", + "damage" : -1 + }, + "output" : { + "legacyId" : 281, + "id" : "minecraft:baked_potato", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 288, + "id" : "minecraft:rabbit", + "damage" : -1 + }, + "output" : { + "legacyId" : 289, + "id" : "minecraft:cooked_rabbit", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 296, + "id" : "minecraft:iron_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 296, + "id" : "minecraft:iron_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 297, + "id" : "minecraft:iron_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 297, + "id" : "minecraft:iron_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 298, + "id" : "minecraft:iron_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 298, + "id" : "minecraft:iron_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 307, + "id" : "minecraft:iron_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 307, + "id" : "minecraft:iron_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 322, + "id" : "minecraft:golden_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 322, + "id" : "minecraft:golden_sword", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 323, + "id" : "minecraft:golden_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 323, + "id" : "minecraft:golden_shovel", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 324, + "id" : "minecraft:golden_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 324, + "id" : "minecraft:golden_pickaxe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 325, + "id" : "minecraft:golden_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 325, + "id" : "minecraft:golden_axe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 331, + "id" : "minecraft:iron_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 331, + "id" : "minecraft:iron_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 333, + "id" : "minecraft:golden_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 333, + "id" : "minecraft:golden_hoe", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 339, + "id" : "minecraft:chainmail_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 339, + "id" : "minecraft:chainmail_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 340, + "id" : "minecraft:chainmail_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 340, + "id" : "minecraft:chainmail_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 341, + "id" : "minecraft:chainmail_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 341, + "id" : "minecraft:chainmail_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 342, + "id" : "minecraft:chainmail_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 342, + "id" : "minecraft:chainmail_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 343, + "id" : "minecraft:iron_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 343, + "id" : "minecraft:iron_helmet" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 344, + "id" : "minecraft:iron_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 344, + "id" : "minecraft:iron_chestplate" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 345, + "id" : "minecraft:iron_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 345, + "id" : "minecraft:iron_leggings" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 346, + "id" : "minecraft:iron_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 346, + "id" : "minecraft:iron_boots" + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 351, + "id" : "minecraft:golden_helmet" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 351, + "id" : "minecraft:golden_helmet" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 352, + "id" : "minecraft:golden_chestplate" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 352, + "id" : "minecraft:golden_chestplate" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 353, + "id" : "minecraft:golden_leggings" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 353, + "id" : "minecraft:golden_leggings" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 354, + "id" : "minecraft:golden_boots" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 354, + "id" : "minecraft:golden_boots" + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 382, + "id" : "minecraft:kelp", + "damage" : -1 + }, + "output" : { + "legacyId" : 270, + "id" : "minecraft:dried_kelp", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 384, + "id" : "minecraft:clay_ball", + "damage" : -1 + }, + "output" : { + "legacyId" : 383, + "id" : "minecraft:brick", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 505, + "id" : "minecraft:raw_iron", + "damage" : -1 + }, + "output" : { + "legacyId" : 305, + "id" : "minecraft:iron_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 506, + "id" : "minecraft:raw_gold", + "damage" : -1 + }, + "output" : { + "legacyId" : 306, + "id" : "minecraft:gold_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 507, + "id" : "minecraft:raw_copper", + "damage" : -1 + }, + "output" : { + "legacyId" : 504, + "id" : "minecraft:copper_ingot", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 531, + "id" : "minecraft:iron_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 531, + "id" : "minecraft:iron_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 569, + "id" : "minecraft:iron_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 532, + "id" : "minecraft:golden_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 532, + "id" : "minecraft:golden_horse_armor", + "damage" : -1 + }, + "output" : { + "legacyId" : 425, + "id" : "minecraft:gold_nugget", + "damage" : 32767 + }, + "block" : "blast_furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "smoker" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "furnace" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "soul_campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 550, + "id" : "minecraft:mutton", + "damage" : -1 + }, + "output" : { + "legacyId" : 551, + "id" : "minecraft:cooked_mutton", + "damage" : 32767 + }, + "block" : "campfire" + }, + { + "type" : 3, + "input" : { + "legacyId" : 558, + "id" : "minecraft:chorus_fruit", + "damage" : -1 + }, + "output" : { + "legacyId" : 559, + "id" : "minecraft:popped_chorus_fruit", + "damage" : 32767 + }, + "block" : "furnace" + } + ], + "potionMixes" : [ + { + "inputId" : "minecraft:potion", + "inputMeta" : 17, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 42 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 42 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 42 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 31 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 31 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 31 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_13", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 6 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_14", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 6 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_15", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 6 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_2", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_4", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_5", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_6", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_7", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_8", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_17_9", - "type": 0, - "input": [ - { - "legacyId": 398, - "id": "minecraft:brown_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 28 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_0", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 28 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_1", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 28 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_10", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 5 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_11", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 5 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_12", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 5 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_13", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 12 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_14", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 12 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_15", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 12 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_2", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 40 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_3", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 40 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_5", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 40 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_6", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 19 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_7", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 19 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_8", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 19 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_18_9", - "type": 0, - "input": [ - { - "legacyId": 399, - "id": "minecraft:blue_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 9 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_0", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 9 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_1", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 9 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_10", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 21 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_11", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 21 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_12", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 21 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_13", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 25 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_14", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 25 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_2", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 25 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_3", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 14 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_4", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 14 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_5", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 14 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_6", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 37 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_7", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 37 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_8", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 37 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_19_9", - "type": 0, - "input": [ - { - "legacyId": 410, - "id": "minecraft:white_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 13 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7915 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_0", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 13 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_10", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 13 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_11", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_12", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_13", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_14", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 22 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_15", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 22 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_2", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 22 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_3", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 8 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_4", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 8 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_5", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 8 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_6", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 17 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_7", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 17 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_8", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 17 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_1_9", - "type": 0, - "input": [ - { - "legacyId": 396, - "id": "minecraft:red_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 9, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 11 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7929 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_0", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 11 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_1", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 11 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_10", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 9, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 10 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_11", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 10 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_12", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 9, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 10 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_13", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 8 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_14", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 8 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_15", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 8 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_3", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 15, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 18 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_4", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 15, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 18 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_5", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 15, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 18 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_6", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 10, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 18 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_7", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 10, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 18 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_8", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 10, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 18 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_2_9", - "type": 0, - "input": [ - { - "legacyId": 397, - "id": "minecraft:green_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 2, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 35 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7928 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_0", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 2, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 35 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_1", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 2, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 35 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_10", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_11", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_12", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_13", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 32, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 35 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_14", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 32, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 35 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_15", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 32, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 35 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_2", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_4", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_5", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_6", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 5, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 7 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_7", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 7 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_8", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 7 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_3_9", - "type": 0, - "input": [ - { - "legacyId": 412, - "id": "minecraft:cocoa_beans", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7927 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_0", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_1", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_10", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 27 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_11", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 27 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_12", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 27 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_13", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 26 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_14", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 26 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_15", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 26 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_2", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 30 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_3", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 30 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_5", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 30 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_6", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 29 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_7", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 29 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_8", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 29 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_4_9", - "type": 0, - "input": [ - { - "legacyId": 414, - "id": "minecraft:lapis_lazuli", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 17, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 18 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7926 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_0", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 18 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_1", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 17, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 18 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_10", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 40, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 41 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_11", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 40, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 41 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_12", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 40, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 41 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_13", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_14", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_15", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_2", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 31, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 33 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_3", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 33 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_4", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 33 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_6", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 31, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 32 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_7", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 32 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_8", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 31, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 32 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_5_9", - "type": 0, - "input": [ - { - "legacyId": 400, - "id": "minecraft:purple_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 22, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7925 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_0", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 22, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_1", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 22, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_10", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_11", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_12", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_13", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 14, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 17 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_14", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 17 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_15", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 17 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_2", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 16 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_3", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 16 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_4", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 16 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_5", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 15 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_7", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 15 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_8", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 15 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_6_9", - "type": 0, - "input": [ - { - "legacyId": 401, - "id": "minecraft:cyan_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7924 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_0", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_1", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_10", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 39 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_11", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 39 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_12", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 39 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_13", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 37, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 38 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_14", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 38 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_15", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 37, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 38 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_2", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_3", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_4", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_5", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 20 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_6", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 20 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_8", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 20 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_7_9", - "type": 0, - "input": [ - { - "legacyId": 402, - "id": "minecraft:light_gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7923 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_0", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_1", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_10", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_11", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_12", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_13", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 3 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_14", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 3 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_15", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 3 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_2", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_3", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_4", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_5", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 4 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_6", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 4 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_7", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 4 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_8_9", - "type": 0, - "input": [ - { - "legacyId": 403, - "id": "minecraft:gray_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 6 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7922 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_0", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 15 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_1", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 14 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_10", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 5 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_11", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 4 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_12", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 3 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_13", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 2 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_14", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 1 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_15", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool" - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_2", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 13 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_3", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 12 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_4", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 11 - } - ], - "output": [ + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_5", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 10 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "inputMeta" : 34, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 35 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_6", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 9 - } - ], - "output": [ + "inputId" : "minecraft:splash_potion", + "inputMeta" : 34, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 35 + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 34, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 35 } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_7", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 8 - } - ], - "output": [ + ], + "containerMixes" : [ { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "id": "wool_dye_wool_9_8", - "type": 0, - "input": [ - { - "legacyId": 404, - "id": "minecraft:pink_dye", - "damage": 32767 - }, - { - "legacyId": 35, - "id": "minecraft:wool", - "damage": 7 - } - ], - "output": [ + "inputId" : "minecraft:potion", + "reagentId" : "minecraft:gunpowder", + "outputId" : "minecraft:splash_potion" + }, { - "legacyId": 35, - "id": "minecraft:wool", - "blockRuntimeId": 7921 + "inputId" : "minecraft:splash_potion", + "reagentId" : "minecraft:dragon_breath", + "outputId" : "minecraft:lingering_potion" } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 3, - "input": { - "legacyId": -408, - "id": "minecraft:deepslate_copper_ore", - "damage": -1 - }, - "output": { - "legacyId": 504, - "id": "minecraft:copper_ingot", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -408, - "id": "minecraft:deepslate_copper_ore", - "damage": -1 - }, - "output": { - "legacyId": 504, - "id": "minecraft:copper_ingot", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": -407, - "id": "minecraft:deepslate_emerald_ore", - "damage": -1 - }, - "output": { - "legacyId": 512, - "id": "minecraft:emerald", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -407, - "id": "minecraft:deepslate_emerald_ore", - "damage": -1 - }, - "output": { - "legacyId": 512, - "id": "minecraft:emerald", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": -406, - "id": "minecraft:deepslate_coal_ore", - "damage": -1 - }, - "output": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -406, - "id": "minecraft:deepslate_coal_ore", - "damage": -1 - }, - "output": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": -405, - "id": "minecraft:deepslate_diamond_ore", - "damage": -1 - }, - "output": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -405, - "id": "minecraft:deepslate_diamond_ore", - "damage": -1 - }, - "output": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": -403, - "id": "minecraft:deepslate_redstone_ore", - "damage": -1 - }, - "output": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -403, - "id": "minecraft:deepslate_redstone_ore", - "damage": -1 - }, - "output": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": -402, - "id": "minecraft:deepslate_gold_ore", - "damage": -1 - }, - "output": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -402, - "id": "minecraft:deepslate_gold_ore", - "damage": -1 - }, - "output": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": -401, - "id": "minecraft:deepslate_iron_ore", - "damage": -1 - }, - "output": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -401, - "id": "minecraft:deepslate_iron_ore", - "damage": -1 - }, - "output": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": -400, - "id": "minecraft:deepslate_lapis_ore", - "damage": -1 - }, - "output": { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -400, - "id": "minecraft:deepslate_lapis_ore", - "damage": -1 - }, - "output": { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": -391, - "id": "minecraft:deepslate_bricks", - "damage": -1 - }, - "output": { - "legacyId": -410, - "id": "minecraft:cracked_deepslate_bricks", - "blockRuntimeId": 3767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -387, - "id": "minecraft:deepslate_tiles", - "damage": -1 - }, - "output": { - "legacyId": -409, - "id": "minecraft:cracked_deepslate_tiles", - "blockRuntimeId": 3768 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -379, - "id": "minecraft:cobbled_deepslate", - "damage": -1 - }, - "output": { - "legacyId": -378, - "id": "minecraft:deepslate", - "blockRuntimeId": 4100 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -311, - "id": "minecraft:copper_ore", - "damage": -1 - }, - "output": { - "legacyId": 504, - "id": "minecraft:copper_ingot", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -311, - "id": "minecraft:copper_ore", - "damage": -1 - }, - "output": { - "legacyId": 504, - "id": "minecraft:copper_ingot", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": -288, - "id": "minecraft:nether_gold_ore", - "damage": -1 - }, - "output": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -288, - "id": "minecraft:nether_gold_ore", - "damage": -1 - }, - "output": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": -274, - "id": "minecraft:polished_blackstone_bricks", - "damage": -1 - }, - "output": { - "legacyId": -280, - "id": "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId": 3770 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -271, - "id": "minecraft:ancient_debris", - "damage": -1 - }, - "output": { - "legacyId": 611, - "id": "minecraft:netherite_scrap", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -271, - "id": "minecraft:ancient_debris", - "damage": -1 - }, - "output": { - "legacyId": 611, - "id": "minecraft:netherite_scrap", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": -234, - "id": "minecraft:basalt", - "damage": -1 - }, - "output": { - "legacyId": -377, - "id": "minecraft:smooth_basalt", - "blockRuntimeId": 6886 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -212, - "id": "minecraft:wood" - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 1 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 2 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 3 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 4 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 5 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 8 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 9 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 10 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 11 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 12 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -212, - "id": "minecraft:wood", - "damage": 13 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -156, - "id": "minecraft:sea_pickle", - "damage": -1 - }, - "output": { - "legacyId": 405, - "id": "minecraft:lime_dye" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -10, - "id": "minecraft:stripped_oak_log", - "damage": -1 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -9, - "id": "minecraft:stripped_dark_oak_log", - "damage": -1 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -8, - "id": "minecraft:stripped_acacia_log", - "damage": -1 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -7, - "id": "minecraft:stripped_jungle_log", - "damage": -1 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -6, - "id": "minecraft:stripped_birch_log", - "damage": -1 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": -5, - "id": "minecraft:stripped_spruce_log", - "damage": -1 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 1, - "id": "minecraft:stone" - }, - "output": { - "legacyId": -183, - "id": "minecraft:smooth_stone", - "blockRuntimeId": 6911 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 4, - "id": "minecraft:cobblestone", - "damage": -1 - }, - "output": { - "legacyId": 1, - "id": "minecraft:stone", - "blockRuntimeId": 7180 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 12, - "id": "minecraft:sand", - "damage": -1 - }, - "output": { - "legacyId": 20, - "id": "minecraft:glass", - "blockRuntimeId": 4883 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 14, - "id": "minecraft:gold_ore", - "damage": -1 - }, - "output": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 14, - "id": "minecraft:gold_ore", - "damage": -1 - }, - "output": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 15, - "id": "minecraft:iron_ore", - "damage": -1 - }, - "output": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 15, - "id": "minecraft:iron_ore", - "damage": -1 - }, - "output": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 16, - "id": "minecraft:coal_ore", - "damage": -1 - }, - "output": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 16, - "id": "minecraft:coal_ore", - "damage": -1 - }, - "output": { - "legacyId": 302, - "id": "minecraft:coal" - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 17, - "id": "minecraft:log" - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 1 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 2 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 17, - "id": "minecraft:log", - "damage": 3 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 19, - "id": "minecraft:sponge", - "damage": 1 - }, - "output": { - "legacyId": 19, - "id": "minecraft:sponge", - "blockRuntimeId": 6963 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 21, - "id": "minecraft:lapis_ore", - "damage": -1 - }, - "output": { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 21, - "id": "minecraft:lapis_ore", - "damage": -1 - }, - "output": { - "legacyId": 414, - "id": "minecraft:lapis_lazuli" - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 24, - "id": "minecraft:sandstone", - "damage": -1 - }, - "output": { - "legacyId": 24, - "id": "minecraft:sandstone", - "blockRuntimeId": 6709 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 56, - "id": "minecraft:diamond_ore", - "damage": -1 - }, - "output": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 56, - "id": "minecraft:diamond_ore", - "damage": -1 - }, - "output": { - "legacyId": 304, - "id": "minecraft:diamond", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 73, - "id": "minecraft:redstone_ore", - "damage": -1 - }, - "output": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 73, - "id": "minecraft:redstone_ore", - "damage": -1 - }, - "output": { - "legacyId": 373, - "id": "minecraft:redstone", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 81, - "id": "minecraft:cactus", - "damage": -1 - }, - "output": { - "legacyId": 397, - "id": "minecraft:green_dye" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 82, - "id": "minecraft:clay", - "damage": -1 - }, - "output": { - "legacyId": 172, - "id": "minecraft:hardened_clay", - "blockRuntimeId": 5083 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 87, - "id": "minecraft:netherrack", - "damage": -1 - }, - "output": { - "legacyId": 523, - "id": "minecraft:netherbrick", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 98, - "id": "minecraft:stonebrick" - }, - "output": { - "legacyId": 98, - "id": "minecraft:stonebrick", - "blockRuntimeId": 7291 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 112, - "id": "minecraft:nether_brick", - "damage": -1 - }, - "output": { - "legacyId": -303, - "id": "minecraft:cracked_nether_bricks", - "blockRuntimeId": 3769 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 129, - "id": "minecraft:emerald_ore", - "damage": -1 - }, - "output": { - "legacyId": 512, - "id": "minecraft:emerald", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 129, - "id": "minecraft:emerald_ore", - "damage": -1 - }, - "output": { - "legacyId": 512, - "id": "minecraft:emerald", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 153, - "id": "minecraft:quartz_ore", - "damage": -1 - }, - "output": { - "legacyId": 524, - "id": "minecraft:quartz", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 153, - "id": "minecraft:quartz_ore", - "damage": -1 - }, - "output": { - "legacyId": 524, - "id": "minecraft:quartz", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 155, - "id": "minecraft:quartz_block" - }, - "output": { - "legacyId": 155, - "id": "minecraft:quartz_block", - "blockRuntimeId": 6548 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay" - }, - "output": { - "legacyId": 220, - "id": "minecraft:white_glazed_terracotta", - "blockRuntimeId": 7800 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 1 - }, - "output": { - "legacyId": 221, - "id": "minecraft:orange_glazed_terracotta", - "blockRuntimeId": 5748 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 2 - }, - "output": { - "legacyId": 222, - "id": "minecraft:magenta_glazed_terracotta", - "blockRuntimeId": 5596 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 3 - }, - "output": { - "legacyId": 223, - "id": "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId": 5484 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 4 - }, - "output": { - "legacyId": 224, - "id": "minecraft:yellow_glazed_terracotta", - "blockRuntimeId": 7942 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 5 - }, - "output": { - "legacyId": 225, - "id": "minecraft:lime_glazed_terracotta", - "blockRuntimeId": 5532 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 6 - }, - "output": { - "legacyId": 226, - "id": "minecraft:pink_glazed_terracotta", - "blockRuntimeId": 5779 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 7 - }, - "output": { - "legacyId": 227, - "id": "minecraft:gray_glazed_terracotta", - "blockRuntimeId": 5010 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 8 - }, - "output": { - "legacyId": 228, - "id": "minecraft:silver_glazed_terracotta", - "blockRuntimeId": 6846 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 9 - }, - "output": { - "legacyId": 229, - "id": "minecraft:cyan_glazed_terracotta", - "blockRuntimeId": 3931 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 10 - }, - "output": { - "legacyId": 219, - "id": "minecraft:purple_glazed_terracotta", - "blockRuntimeId": 6519 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 11 - }, - "output": { - "legacyId": 231, - "id": "minecraft:blue_glazed_terracotta", - "blockRuntimeId": 685 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 12 - }, - "output": { - "legacyId": 232, - "id": "minecraft:brown_glazed_terracotta", - "blockRuntimeId": 894 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 13 - }, - "output": { - "legacyId": 233, - "id": "minecraft:green_glazed_terracotta", - "blockRuntimeId": 5026 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 14 - }, - "output": { - "legacyId": 234, - "id": "minecraft:red_glazed_terracotta", - "blockRuntimeId": 6601 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 159, - "id": "minecraft:stained_hardened_clay", - "damage": 15 - }, - "output": { - "legacyId": 235, - "id": "minecraft:black_glazed_terracotta", - "blockRuntimeId": 488 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 162, - "id": "minecraft:log2" - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 162, - "id": "minecraft:log2", - "damage": 1 - }, - "output": { - "legacyId": 303, - "id": "minecraft:charcoal" - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "damage": -1 - }, - "output": { - "legacyId": 179, - "id": "minecraft:red_sandstone", - "blockRuntimeId": 6636 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 262, - "id": "minecraft:porkchop", - "damage": -1 - }, - "output": { - "legacyId": 263, - "id": "minecraft:cooked_porkchop", - "damage": 32767 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "legacyId": 262, - "id": "minecraft:porkchop", - "damage": -1 - }, - "output": { - "legacyId": 263, - "id": "minecraft:cooked_porkchop", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 262, - "id": "minecraft:porkchop", - "damage": -1 - }, - "output": { - "legacyId": 263, - "id": "minecraft:cooked_porkchop", - "damage": 32767 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "legacyId": 262, - "id": "minecraft:porkchop", - "damage": -1 - }, - "output": { - "legacyId": 263, - "id": "minecraft:cooked_porkchop", - "damage": 32767 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "legacyId": 264, - "id": "minecraft:cod", - "damage": -1 - }, - "output": { - "legacyId": 268, - "id": "minecraft:cooked_cod", - "damage": 32767 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "legacyId": 264, - "id": "minecraft:cod", - "damage": -1 - }, - "output": { - "legacyId": 268, - "id": "minecraft:cooked_cod", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 264, - "id": "minecraft:cod", - "damage": -1 - }, - "output": { - "legacyId": 268, - "id": "minecraft:cooked_cod", - "damage": 32767 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "legacyId": 264, - "id": "minecraft:cod", - "damage": -1 - }, - "output": { - "legacyId": 268, - "id": "minecraft:cooked_cod", - "damage": 32767 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "legacyId": 265, - "id": "minecraft:salmon", - "damage": -1 - }, - "output": { - "legacyId": 269, - "id": "minecraft:cooked_salmon", - "damage": 32767 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "legacyId": 265, - "id": "minecraft:salmon", - "damage": -1 - }, - "output": { - "legacyId": 269, - "id": "minecraft:cooked_salmon", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 265, - "id": "minecraft:salmon", - "damage": -1 - }, - "output": { - "legacyId": 269, - "id": "minecraft:cooked_salmon", - "damage": 32767 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "legacyId": 265, - "id": "minecraft:salmon", - "damage": -1 - }, - "output": { - "legacyId": 269, - "id": "minecraft:cooked_salmon", - "damage": 32767 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "legacyId": 273, - "id": "minecraft:beef", - "damage": -1 - }, - "output": { - "legacyId": 274, - "id": "minecraft:cooked_beef", - "damage": 32767 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "legacyId": 273, - "id": "minecraft:beef", - "damage": -1 - }, - "output": { - "legacyId": 274, - "id": "minecraft:cooked_beef", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 273, - "id": "minecraft:beef", - "damage": -1 - }, - "output": { - "legacyId": 274, - "id": "minecraft:cooked_beef", - "damage": 32767 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "legacyId": 273, - "id": "minecraft:beef", - "damage": -1 - }, - "output": { - "legacyId": 274, - "id": "minecraft:cooked_beef", - "damage": 32767 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "legacyId": 275, - "id": "minecraft:chicken", - "damage": -1 - }, - "output": { - "legacyId": 276, - "id": "minecraft:cooked_chicken", - "damage": 32767 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "legacyId": 275, - "id": "minecraft:chicken", - "damage": -1 - }, - "output": { - "legacyId": 276, - "id": "minecraft:cooked_chicken", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 275, - "id": "minecraft:chicken", - "damage": -1 - }, - "output": { - "legacyId": 276, - "id": "minecraft:cooked_chicken", - "damage": 32767 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "legacyId": 275, - "id": "minecraft:chicken", - "damage": -1 - }, - "output": { - "legacyId": 276, - "id": "minecraft:cooked_chicken", - "damage": 32767 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "legacyId": 280, - "id": "minecraft:potato", - "damage": -1 - }, - "output": { - "legacyId": 281, - "id": "minecraft:baked_potato", - "damage": 32767 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "legacyId": 280, - "id": "minecraft:potato", - "damage": -1 - }, - "output": { - "legacyId": 281, - "id": "minecraft:baked_potato", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 280, - "id": "minecraft:potato", - "damage": -1 - }, - "output": { - "legacyId": 281, - "id": "minecraft:baked_potato", - "damage": 32767 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "legacyId": 280, - "id": "minecraft:potato", - "damage": -1 - }, - "output": { - "legacyId": 281, - "id": "minecraft:baked_potato", - "damage": 32767 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "legacyId": 288, - "id": "minecraft:rabbit", - "damage": -1 - }, - "output": { - "legacyId": 289, - "id": "minecraft:cooked_rabbit", - "damage": 32767 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "legacyId": 288, - "id": "minecraft:rabbit", - "damage": -1 - }, - "output": { - "legacyId": 289, - "id": "minecraft:cooked_rabbit", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 288, - "id": "minecraft:rabbit", - "damage": -1 - }, - "output": { - "legacyId": 289, - "id": "minecraft:cooked_rabbit", - "damage": 32767 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "legacyId": 288, - "id": "minecraft:rabbit", - "damage": -1 - }, - "output": { - "legacyId": 289, - "id": "minecraft:cooked_rabbit", - "damage": 32767 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "legacyId": 296, - "id": "minecraft:iron_shovel", - "damage": -1 - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 296, - "id": "minecraft:iron_shovel", - "damage": -1 - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 297, - "id": "minecraft:iron_pickaxe", - "damage": -1 - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 297, - "id": "minecraft:iron_pickaxe", - "damage": -1 - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 298, - "id": "minecraft:iron_axe", - "damage": -1 - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 298, - "id": "minecraft:iron_axe", - "damage": -1 - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 307, - "id": "minecraft:iron_sword", - "damage": -1 - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 307, - "id": "minecraft:iron_sword", - "damage": -1 - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 322, - "id": "minecraft:golden_sword", - "damage": -1 - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 322, - "id": "minecraft:golden_sword", - "damage": -1 - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 323, - "id": "minecraft:golden_shovel", - "damage": -1 - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 323, - "id": "minecraft:golden_shovel", - "damage": -1 - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 324, - "id": "minecraft:golden_pickaxe", - "damage": -1 - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 324, - "id": "minecraft:golden_pickaxe", - "damage": -1 - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 325, - "id": "minecraft:golden_axe", - "damage": -1 - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 325, - "id": "minecraft:golden_axe", - "damage": -1 - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 331, - "id": "minecraft:iron_hoe", - "damage": -1 - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 331, - "id": "minecraft:iron_hoe", - "damage": -1 - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 333, - "id": "minecraft:golden_hoe", - "damage": -1 - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 333, - "id": "minecraft:golden_hoe", - "damage": -1 - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 339, - "id": "minecraft:chainmail_helmet" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 339, - "id": "minecraft:chainmail_helmet" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 340, - "id": "minecraft:chainmail_chestplate" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 340, - "id": "minecraft:chainmail_chestplate" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 341, - "id": "minecraft:chainmail_leggings" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 341, - "id": "minecraft:chainmail_leggings" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 342, - "id": "minecraft:chainmail_boots" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 342, - "id": "minecraft:chainmail_boots" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 343, - "id": "minecraft:iron_helmet" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 343, - "id": "minecraft:iron_helmet" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 344, - "id": "minecraft:iron_chestplate" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 344, - "id": "minecraft:iron_chestplate" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 345, - "id": "minecraft:iron_leggings" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 345, - "id": "minecraft:iron_leggings" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 346, - "id": "minecraft:iron_boots" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 346, - "id": "minecraft:iron_boots" - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 351, - "id": "minecraft:golden_helmet" - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 351, - "id": "minecraft:golden_helmet" - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 352, - "id": "minecraft:golden_chestplate" - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 352, - "id": "minecraft:golden_chestplate" - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 353, - "id": "minecraft:golden_leggings" - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 353, - "id": "minecraft:golden_leggings" - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 354, - "id": "minecraft:golden_boots" - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 354, - "id": "minecraft:golden_boots" - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 382, - "id": "minecraft:kelp", - "damage": -1 - }, - "output": { - "legacyId": 270, - "id": "minecraft:dried_kelp", - "damage": 32767 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "legacyId": 382, - "id": "minecraft:kelp", - "damage": -1 - }, - "output": { - "legacyId": 270, - "id": "minecraft:dried_kelp", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 382, - "id": "minecraft:kelp", - "damage": -1 - }, - "output": { - "legacyId": 270, - "id": "minecraft:dried_kelp", - "damage": 32767 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "legacyId": 382, - "id": "minecraft:kelp", - "damage": -1 - }, - "output": { - "legacyId": 270, - "id": "minecraft:dried_kelp", - "damage": 32767 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "legacyId": 384, - "id": "minecraft:clay_ball", - "damage": -1 - }, - "output": { - "legacyId": 383, - "id": "minecraft:brick", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 505, - "id": "minecraft:raw_iron", - "damage": -1 - }, - "output": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 505, - "id": "minecraft:raw_iron", - "damage": -1 - }, - "output": { - "legacyId": 305, - "id": "minecraft:iron_ingot", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 506, - "id": "minecraft:raw_gold", - "damage": -1 - }, - "output": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 506, - "id": "minecraft:raw_gold", - "damage": -1 - }, - "output": { - "legacyId": 306, - "id": "minecraft:gold_ingot", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 507, - "id": "minecraft:raw_copper", - "damage": -1 - }, - "output": { - "legacyId": 504, - "id": "minecraft:copper_ingot", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 507, - "id": "minecraft:raw_copper", - "damage": -1 - }, - "output": { - "legacyId": 504, - "id": "minecraft:copper_ingot", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 531, - "id": "minecraft:iron_horse_armor", - "damage": -1 - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 531, - "id": "minecraft:iron_horse_armor", - "damage": -1 - }, - "output": { - "legacyId": 569, - "id": "minecraft:iron_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 532, - "id": "minecraft:golden_horse_armor", - "damage": -1 - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 532, - "id": "minecraft:golden_horse_armor", - "damage": -1 - }, - "output": { - "legacyId": 425, - "id": "minecraft:gold_nugget", - "damage": 32767 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "legacyId": 550, - "id": "minecraft:mutton", - "damage": -1 - }, - "output": { - "legacyId": 551, - "id": "minecraft:cooked_mutton", - "damage": 32767 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "legacyId": 550, - "id": "minecraft:mutton", - "damage": -1 - }, - "output": { - "legacyId": 551, - "id": "minecraft:cooked_mutton", - "damage": 32767 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "legacyId": 550, - "id": "minecraft:mutton", - "damage": -1 - }, - "output": { - "legacyId": 551, - "id": "minecraft:cooked_mutton", - "damage": 32767 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "legacyId": 550, - "id": "minecraft:mutton", - "damage": -1 - }, - "output": { - "legacyId": 551, - "id": "minecraft:cooked_mutton", - "damage": 32767 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "legacyId": 558, - "id": "minecraft:chorus_fruit", - "damage": -1 - }, - "output": { - "legacyId": 559, - "id": "minecraft:popped_chorus_fruit", - "damage": 32767 - }, - "block": "furnace" - } - ], - "potionMixes": [ - { - "inputId": "minecraft:potion", - "inputMeta": 17, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 42 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 17, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 42 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 17, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 42 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 27, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 24 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 27, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 24 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 27, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 24 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 4, - "reagentId": "minecraft:blaze_powder", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 31 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 4, - "reagentId": "minecraft:blaze_powder", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 31 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 4, - "reagentId": "minecraft:blaze_powder", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 31 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 4, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 4, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 4, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 4, - "reagentId": "minecraft:ghast_tear", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 28 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 4, - "reagentId": "minecraft:ghast_tear", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 28 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 4, - "reagentId": "minecraft:ghast_tear", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 28 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 4, - "reagentId": "minecraft:golden_carrot", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 5 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 4, - "reagentId": "minecraft:golden_carrot", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 5 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 4, - "reagentId": "minecraft:golden_carrot", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 5 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 4, - "reagentId": "minecraft:magma_cream", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 12 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 4, - "reagentId": "minecraft:magma_cream", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 12 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 4, - "reagentId": "minecraft:magma_cream", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 12 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 4, - "reagentId": "minecraft:phantom_membrane", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 40 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 4, - "reagentId": "minecraft:phantom_membrane", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 40 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 4, - "reagentId": "minecraft:phantom_membrane", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 40 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 4, - "reagentId": "minecraft:pufferfish", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 19 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 4, - "reagentId": "minecraft:pufferfish", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 19 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 4, - "reagentId": "minecraft:pufferfish", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 19 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 4, - "reagentId": "minecraft:rabbit_foot", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 9 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 4, - "reagentId": "minecraft:rabbit_foot", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 9 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 4, - "reagentId": "minecraft:rabbit_foot", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 9 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 4, - "reagentId": "minecraft:glistering_melon_slice", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 21 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 4, - "reagentId": "minecraft:glistering_melon_slice", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 21 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 4, - "reagentId": "minecraft:glistering_melon_slice", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 21 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 4, - "reagentId": "minecraft:spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 25 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 4, - "reagentId": "minecraft:spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 25 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 4, - "reagentId": "minecraft:spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 25 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 4, - "reagentId": "minecraft:sugar", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 14 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 4, - "reagentId": "minecraft:sugar", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 14 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 4, - "reagentId": "minecraft:sugar", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 14 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 4, - "reagentId": "minecraft:turtle_helmet", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 37 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 4, - "reagentId": "minecraft:turtle_helmet", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 37 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 4, - "reagentId": "minecraft:turtle_helmet", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 37 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 12, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 13 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 12, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 13 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 12, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 13 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 23, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 24 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 23, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 24 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 23, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 24 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 21, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 21, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 21, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 21, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 22 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 21, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 22 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 21, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 22 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 7, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 8 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 7, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 8 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 7, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 8 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 9, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 17 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 9, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 17 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 9, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 17 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 9, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 11 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 9, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 11 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 9, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 11 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 9, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 10 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 9, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 10 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 9, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 10 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 6, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 8 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 6, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 8 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 6, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 8 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 15, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 18 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 15, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 18 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 15, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 18 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 10, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 18 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 10, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 18 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 10, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 18 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 2, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 35 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 2, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 35 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 2, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 35 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 26, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 26, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 26, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 32, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 35 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 32, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 35 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 32, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 35 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 1, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 1, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 1, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 5, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 7 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 5, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 7 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 5, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 7 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 5, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 6 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 5, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 6 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 5, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 6 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 25, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 25, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 25, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 25, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 27 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 25, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 27 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 25, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 27 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 25, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 26 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 25, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 26 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 25, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 26 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 28, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 30 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 28, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 30 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 28, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 30 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 28, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 29 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 28, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 29 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 28, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 29 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 17, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 18 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 17, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 18 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 17, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 18 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 40, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 41 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 40, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 41 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 40, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 41 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 31, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 31, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 31, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 31, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 33 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 31, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 33 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 31, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 33 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 31, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 32 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 31, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 32 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 31, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 32 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 22, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 24 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 22, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 24 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 22, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 24 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 33, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 33, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 33, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 14, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 17 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 14, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 17 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 14, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 17 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 14, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 16 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 14, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 16 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 14, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 16 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 14, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 15 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 14, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 15 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 14, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 15 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 3, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 3, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 3, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 37, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 39 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 37, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 39 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 37, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 39 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 37, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 38 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 37, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 38 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 37, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 38 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:blaze_powder", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:blaze_powder", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:blaze_powder", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 19, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 20 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 19, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 20 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 19, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 20 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 34 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:ghast_tear", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:ghast_tear", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:ghast_tear", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 3 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 3 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:glowstone_dust", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 3 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:magma_cream", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:magma_cream", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:magma_cream", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:nether_wart", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 4 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:nether_wart", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 4 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:nether_wart", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 4 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:rabbit_foot", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:rabbit_foot", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:rabbit_foot", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:glistering_melon_slice", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:glistering_melon_slice", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:glistering_melon_slice", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:sugar", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:sugar", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:sugar", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 34, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 35 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 34, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 35 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 34, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 35 - } - ], - "containerMixes": [ - { - "inputId": "minecraft:potion", - "reagentId": "minecraft:gunpowder", - "outputId": "minecraft:splash_potion" - }, - { - "inputId": "minecraft:splash_potion", - "reagentId": "minecraft:dragon_breath", - "outputId": "minecraft:lingering_potion" - } - ] -} + ] +} \ No newline at end of file diff --git a/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json index 5de5a49efec..f33cf5ba28f 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json +++ b/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json @@ -2,5396 +2,5401 @@ { "name" : "minecraft:mysterious_frame_slot", "id" : -467, - "runtimeId" : 775 + "runtimeId" : 907 }, { "name" : "minecraft:mysterious_frame", "id" : -466, - "runtimeId" : 410 + "runtimeId" : 102 }, { "name" : "minecraft:client_request_placeholder_block", "id" : -465, - "runtimeId" : 732 + "runtimeId" : 240 }, { "name" : "minecraft:sculk_shrieker", "id" : -461, - "runtimeId" : 953 + "runtimeId" : 616 }, { "name" : "minecraft:sculk_catalyst", "id" : -460, - "runtimeId" : 1012 + "runtimeId" : 58 }, { "name" : "minecraft:sculk_vein", "id" : -459, - "runtimeId" : 522 + "runtimeId" : 56 }, { "name" : "minecraft:sculk", "id" : -458, - "runtimeId" : 1011 + "runtimeId" : 715 }, { "name" : "minecraft:infested_deepslate", "id" : -454, - "runtimeId" : 773 + "runtimeId" : 498 }, { "name" : "minecraft:raw_gold_block", "id" : -453, - "runtimeId" : 84 + "runtimeId" : 66 }, { "name" : "minecraft:raw_copper_block", "id" : -452, - "runtimeId" : 216 + "runtimeId" : 67 }, { "name" : "minecraft:raw_iron_block", "id" : -451, - "runtimeId" : 1004 + "runtimeId" : 124 }, { "name" : "minecraft:waxed_oxidized_double_cut_copper_slab", "id" : -450, - "runtimeId" : 1066 + "runtimeId" : 598 }, { "name" : "minecraft:waxed_oxidized_cut_copper_slab", "id" : -449, - "runtimeId" : 529 + "runtimeId" : 781 }, { "name" : "minecraft:waxed_oxidized_cut_copper_stairs", "id" : -448, - "runtimeId" : 1035 + "runtimeId" : 424 }, { "name" : "minecraft:waxed_oxidized_cut_copper", "id" : -447, - "runtimeId" : 1065 + "runtimeId" : 10 }, { "name" : "minecraft:waxed_oxidized_copper", "id" : -446, - "runtimeId" : 1064 + "runtimeId" : 876 }, { "name" : "minecraft:black_candle_cake", "id" : -445, - "runtimeId" : 626 + "runtimeId" : 232 }, { "name" : "minecraft:red_candle_cake", "id" : -444, - "runtimeId" : 340 + "runtimeId" : 863 }, { "name" : "minecraft:green_candle_cake", "id" : -443, - "runtimeId" : 404 + "runtimeId" : 140 }, { "name" : "minecraft:brown_candle_cake", "id" : -442, - "runtimeId" : 865 + "runtimeId" : 488 }, { "name" : "minecraft:blue_candle_cake", "id" : -441, - "runtimeId" : 695 + "runtimeId" : 835 }, { "name" : "minecraft:purple_candle_cake", "id" : -440, - "runtimeId" : 600 + "runtimeId" : 75 }, { "name" : "minecraft:cyan_candle_cake", "id" : -439, - "runtimeId" : 702 + "runtimeId" : 184 }, { "name" : "minecraft:light_gray_candle_cake", "id" : -438, - "runtimeId" : 765 + "runtimeId" : 215 }, { "name" : "minecraft:gray_candle_cake", "id" : -437, - "runtimeId" : 946 + "runtimeId" : 625 }, { "name" : "minecraft:pink_candle_cake", "id" : -436, - "runtimeId" : 451 + "runtimeId" : 1068 }, { "name" : "minecraft:lime_candle_cake", "id" : -435, - "runtimeId" : 970 + "runtimeId" : 116 }, { "name" : "minecraft:yellow_candle_cake", "id" : -434, - "runtimeId" : 1078 + "runtimeId" : 0 }, { "name" : "minecraft:light_blue_candle_cake", "id" : -433, - "runtimeId" : 969 + "runtimeId" : 152 }, { "name" : "minecraft:magenta_candle_cake", "id" : -432, - "runtimeId" : 73 + "runtimeId" : 928 }, { "name" : "minecraft:orange_candle_cake", "id" : -431, - "runtimeId" : 512 + "runtimeId" : 993 }, { "name" : "minecraft:white_candle_cake", "id" : -430, - "runtimeId" : 816 + "runtimeId" : 112 }, { "name" : "minecraft:candle_cake", "id" : -429, - "runtimeId" : 871 + "runtimeId" : 590 }, { "name" : "minecraft:black_candle", "id" : -428, - "runtimeId" : 721 + "runtimeId" : 1043 }, { "name" : "minecraft:red_candle", "id" : -427, - "runtimeId" : 720 + "runtimeId" : 765 }, { "name" : "minecraft:green_candle", "id" : -426, - "runtimeId" : 719 + "runtimeId" : 1041 }, { "name" : "minecraft:brown_candle", "id" : -425, - "runtimeId" : 718 + "runtimeId" : 997 }, { "name" : "minecraft:blue_candle", "id" : -424, - "runtimeId" : 391 + "runtimeId" : 1040 }, { "name" : "minecraft:purple_candle", "id" : -423, - "runtimeId" : 717 + "runtimeId" : 1039 }, { "name" : "minecraft:cyan_candle", "id" : -422, - "runtimeId" : 712 + "runtimeId" : 1037 }, { "name" : "minecraft:light_gray_candle", "id" : -421, - "runtimeId" : 625 + "runtimeId" : 1036 }, { "name" : "minecraft:gray_candle", "id" : -420, - "runtimeId" : 306 + "runtimeId" : 1034 }, { "name" : "minecraft:pink_candle", "id" : -419, - "runtimeId" : 78 + "runtimeId" : 1033 }, { "name" : "minecraft:lime_candle", "id" : -418, - "runtimeId" : 716 + "runtimeId" : 944 }, { "name" : "minecraft:yellow_candle", "id" : -417, - "runtimeId" : 373 + "runtimeId" : 936 }, { "name" : "minecraft:light_blue_candle", "id" : -416, - "runtimeId" : 715 + "runtimeId" : 868 }, { "name" : "minecraft:magenta_candle", "id" : -415, - "runtimeId" : 637 + "runtimeId" : 631 }, { "name" : "minecraft:orange_candle", "id" : -414, - "runtimeId" : 714 + "runtimeId" : 712 }, { "name" : "minecraft:white_candle", "id" : -413, - "runtimeId" : 120 + "runtimeId" : 482 }, { "name" : "minecraft:candle", "id" : -412, - "runtimeId" : 713 + "runtimeId" : 784 }, { "name" : "minecraft:glow_lichen", "id" : -411, - "runtimeId" : 940 + "runtimeId" : 708 }, { "name" : "minecraft:cracked_deepslate_bricks", "id" : -410, - "runtimeId" : 585 + "runtimeId" : 197 }, { "name" : "minecraft:cracked_deepslate_tiles", "id" : -409, - "runtimeId" : 808 + "runtimeId" : 887 }, { "name" : "minecraft:deepslate_copper_ore", "id" : -408, - "runtimeId" : 914 + "runtimeId" : 623 }, { "name" : "minecraft:deepslate_emerald_ore", "id" : -407, - "runtimeId" : 184 + "runtimeId" : 335 }, { "name" : "minecraft:deepslate_coal_ore", "id" : -406, - "runtimeId" : 492 + "runtimeId" : 351 }, { "name" : "minecraft:deepslate_diamond_ore", "id" : -405, - "runtimeId" : 881 + "runtimeId" : 169 }, { "name" : "minecraft:lit_deepslate_redstone_ore", "id" : -404, - "runtimeId" : 174 + "runtimeId" : 111 }, { "name" : "minecraft:deepslate_redstone_ore", "id" : -403, - "runtimeId" : 848 + "runtimeId" : 167 }, { "name" : "minecraft:deepslate_gold_ore", "id" : -402, - "runtimeId" : 873 + "runtimeId" : 168 }, { "name" : "minecraft:deepslate_iron_ore", "id" : -401, - "runtimeId" : 915 + "runtimeId" : 434 }, { "name" : "minecraft:deepslate_lapis_ore", "id" : -400, - "runtimeId" : 558 + "runtimeId" : 355 }, { "name" : "minecraft:deepslate_brick_double_slab", "id" : -399, - "runtimeId" : 535 + "runtimeId" : 190 }, { "name" : "minecraft:deepslate_tile_double_slab", "id" : -398, - "runtimeId" : 916 + "runtimeId" : 370 }, { "name" : "minecraft:polished_deepslate_double_slab", "id" : -397, - "runtimeId" : 620 + "runtimeId" : 259 }, { "name" : "minecraft:cobbled_deepslate_double_slab", "id" : -396, - "runtimeId" : 888 + "runtimeId" : 203 }, { "name" : "minecraft:chiseled_deepslate", "id" : -395, - "runtimeId" : 882 + "runtimeId" : 208 }, { "name" : "minecraft:deepslate_brick_wall", "id" : -394, - "runtimeId" : 344 + "runtimeId" : 171 }, { "name" : "minecraft:deepslate_brick_stairs", "id" : -393, - "runtimeId" : 908 + "runtimeId" : 172 }, { "name" : "minecraft:deepslate_brick_slab", "id" : -392, - "runtimeId" : 647 + "runtimeId" : 934 }, { "name" : "minecraft:deepslate_bricks", "id" : -391, - "runtimeId" : 50 + "runtimeId" : 170 }, { "name" : "minecraft:deepslate_tile_wall", "id" : -390, - "runtimeId" : 107 + "runtimeId" : 834 }, { "name" : "minecraft:deepslate_tile_stairs", "id" : -389, - "runtimeId" : 917 + "runtimeId" : 166 }, { "name" : "minecraft:deepslate_tile_slab", "id" : -388, - "runtimeId" : 645 + "runtimeId" : 1026 }, { "name" : "minecraft:deepslate_tiles", "id" : -387, - "runtimeId" : 918 + "runtimeId" : 509 }, { "name" : "minecraft:polished_deepslate_wall", "id" : -386, - "runtimeId" : 722 + "runtimeId" : 77 }, { "name" : "minecraft:polished_deepslate_stairs", "id" : -385, - "runtimeId" : 245 + "runtimeId" : 78 }, { "name" : "minecraft:polished_deepslate_slab", "id" : -384, - "runtimeId" : 644 + "runtimeId" : 529 }, { "name" : "minecraft:polished_deepslate", "id" : -383, - "runtimeId" : 999 + "runtimeId" : 978 }, { "name" : "minecraft:cobbled_deepslate_wall", "id" : -382, - "runtimeId" : 650 + "runtimeId" : 379 }, { "name" : "minecraft:cobbled_deepslate_stairs", "id" : -381, - "runtimeId" : 889 + "runtimeId" : 954 }, { "name" : "minecraft:cobbled_deepslate_slab", "id" : -380, - "runtimeId" : 643 + "runtimeId" : 903 }, { "name" : "minecraft:cobbled_deepslate", "id" : -379, - "runtimeId" : 887 + "runtimeId" : 428 }, { "name" : "minecraft:deepslate", "id" : -378, - "runtimeId" : 913 + "runtimeId" : 359 }, { "name" : "minecraft:smooth_basalt", "id" : -377, - "runtimeId" : 822 + "runtimeId" : 757 }, { "name" : "minecraft:cave_vines_head_with_berries", "id" : -376, - "runtimeId" : 642 + "runtimeId" : 464 }, { "name" : "minecraft:cave_vines_body_with_berries", "id" : -375, - "runtimeId" : 877 + "runtimeId" : 913 }, { "name" : "minecraft:waxed_weathered_double_cut_copper_slab", "id" : -374, - "runtimeId" : 1070 + "runtimeId" : 8 }, { "name" : "minecraft:waxed_exposed_double_cut_copper_slab", "id" : -373, - "runtimeId" : 1063 + "runtimeId" : 11 }, { "name" : "minecraft:waxed_double_cut_copper_slab", "id" : -372, - "runtimeId" : 1060 + "runtimeId" : 14 }, { "name" : "minecraft:oxidized_double_cut_copper_slab", "id" : -371, - "runtimeId" : 989 + "runtimeId" : 95 }, { "name" : "minecraft:weathered_double_cut_copper_slab", "id" : -370, - "runtimeId" : 982 + "runtimeId" : 5 }, { "name" : "minecraft:exposed_double_cut_copper_slab", "id" : -369, - "runtimeId" : 931 + "runtimeId" : 663 }, { "name" : "minecraft:double_cut_copper_slab", "id" : -368, - "runtimeId" : 495 + "runtimeId" : 560 }, { "name" : "minecraft:waxed_weathered_cut_copper_slab", "id" : -367, - "runtimeId" : 526 + "runtimeId" : 422 }, { "name" : "minecraft:waxed_exposed_cut_copper_slab", "id" : -366, - "runtimeId" : 524 + "runtimeId" : 1053 }, { "name" : "minecraft:waxed_cut_copper_slab", "id" : -365, - "runtimeId" : 521 + "runtimeId" : 375 }, { "name" : "minecraft:oxidized_cut_copper_slab", "id" : -364, - "runtimeId" : 497 + "runtimeId" : 336 }, { "name" : "minecraft:weathered_cut_copper_slab", "id" : -363, - "runtimeId" : 520 + "runtimeId" : 537 }, { "name" : "minecraft:exposed_cut_copper_slab", "id" : -362, - "runtimeId" : 269 + "runtimeId" : 885 }, { "name" : "minecraft:cut_copper_slab", "id" : -361, - "runtimeId" : 231 + "runtimeId" : 345 }, { "name" : "minecraft:waxed_weathered_cut_copper_stairs", "id" : -360, - "runtimeId" : 1069 + "runtimeId" : 9 }, { "name" : "minecraft:waxed_exposed_cut_copper_stairs", "id" : -359, - "runtimeId" : 794 + "runtimeId" : 12 }, { "name" : "minecraft:waxed_cut_copper_stairs", "id" : -358, - "runtimeId" : 1059 + "runtimeId" : 15 }, { "name" : "minecraft:oxidized_cut_copper_stairs", "id" : -357, - "runtimeId" : 152 + "runtimeId" : 733 }, { "name" : "minecraft:weathered_cut_copper_stairs", "id" : -356, - "runtimeId" : 477 + "runtimeId" : 6 }, { "name" : "minecraft:exposed_cut_copper_stairs", "id" : -355, - "runtimeId" : 930 + "runtimeId" : 745 }, { "name" : "minecraft:cut_copper_stairs", "id" : -354, - "runtimeId" : 518 + "runtimeId" : 361 }, { "name" : "minecraft:waxed_weathered_cut_copper", "id" : -353, - "runtimeId" : 1068 + "runtimeId" : 782 }, { "name" : "minecraft:waxed_exposed_cut_copper", "id" : -352, - "runtimeId" : 1062 + "runtimeId" : 453 }, { "name" : "minecraft:waxed_cut_copper", "id" : -351, - "runtimeId" : 1058 + "runtimeId" : 16 }, { "name" : "minecraft:oxidized_cut_copper", "id" : -350, - "runtimeId" : 508 + "runtimeId" : 96 }, { "name" : "minecraft:weathered_cut_copper", "id" : -349, - "runtimeId" : 842 + "runtimeId" : 7 }, { "name" : "minecraft:exposed_cut_copper", "id" : -348, - "runtimeId" : 929 + "runtimeId" : 397 }, { "name" : "minecraft:cut_copper", "id" : -347, - "runtimeId" : 514 + "runtimeId" : 362 }, { "name" : "minecraft:waxed_weathered_copper", "id" : -346, - "runtimeId" : 1067 + "runtimeId" : 341 }, { "name" : "minecraft:waxed_exposed_copper", "id" : -345, - "runtimeId" : 1061 + "runtimeId" : 13 }, { "name" : "minecraft:waxed_copper", "id" : -344, - "runtimeId" : 704 + "runtimeId" : 115 }, { "name" : "minecraft:oxidized_copper", "id" : -343, - "runtimeId" : 988 + "runtimeId" : 850 }, { "name" : "minecraft:weathered_copper", "id" : -342, - "runtimeId" : 1071 + "runtimeId" : 981 }, { "name" : "minecraft:exposed_copper", "id" : -341, - "runtimeId" : 81 + "runtimeId" : 150 }, { "name" : "minecraft:copper_block", "id" : -340, - "runtimeId" : 511 + "runtimeId" : 339 }, { "name" : "minecraft:item.glow_frame", "id" : -339, - "runtimeId" : 939 + "runtimeId" : 674 }, { "name" : "minecraft:flowering_azalea", "id" : -338, - "runtimeId" : 461 + "runtimeId" : 358 }, { "name" : "minecraft:azalea", "id" : -337, - "runtimeId" : 835 + "runtimeId" : 242 }, { "name" : "minecraft:small_dripleaf_block", "id" : -336, - "runtimeId" : 598 + "runtimeId" : 49 }, { "name" : "minecraft:moss_carpet", "id" : -335, - "runtimeId" : 607 + "runtimeId" : 106 }, { "name" : "minecraft:tinted_glass", "id" : -334, - "runtimeId" : 672 + "runtimeId" : 231 }, { "name" : "minecraft:tuff", "id" : -333, - "runtimeId" : 1038 + "runtimeId" : 26 }, { "name" : "minecraft:small_amethyst_bud", "id" : -332, - "runtimeId" : 669 + "runtimeId" : 51 }, { "name" : "minecraft:medium_amethyst_bud", "id" : -331, - "runtimeId" : 383 + "runtimeId" : 108 }, { "name" : "minecraft:large_amethyst_bud", "id" : -330, - "runtimeId" : 671 + "runtimeId" : 433 }, { "name" : "minecraft:amethyst_cluster", "id" : -329, - "runtimeId" : 752 + "runtimeId" : 246 }, { "name" : "minecraft:budding_amethyst", "id" : -328, - "runtimeId" : 868 + "runtimeId" : 219 }, { "name" : "minecraft:amethyst_block", "id" : -327, - "runtimeId" : 834 + "runtimeId" : 247 }, { "name" : "minecraft:calcite", "id" : -326, - "runtimeId" : 869 + "runtimeId" : 730 }, { "name" : "minecraft:azalea_leaves_flowered", "id" : -325, - "runtimeId" : 680 + "runtimeId" : 851 }, { "name" : "minecraft:azalea_leaves", "id" : -324, - "runtimeId" : 679 + "runtimeId" : 1018 }, { "name" : "minecraft:big_dripleaf", "id" : -323, - "runtimeId" : 846 + "runtimeId" : 313 }, { "name" : "minecraft:cave_vines", "id" : -322, - "runtimeId" : 875 + "runtimeId" : 866 }, { "name" : "minecraft:spore_blossom", "id" : -321, - "runtimeId" : 912 + "runtimeId" : 44 }, { "name" : "minecraft:moss_block", "id" : -320, - "runtimeId" : 933 + "runtimeId" : 107 }, { "name" : "minecraft:hanging_roots", "id" : -319, - "runtimeId" : 949 + "runtimeId" : 236 }, { "name" : "minecraft:dirt_with_roots", "id" : -318, - "runtimeId" : 366 + "runtimeId" : 249 }, { "name" : "minecraft:dripstone_block", "id" : -317, - "runtimeId" : 923 + "runtimeId" : 218 }, { "name" : "minecraft:lightning_rod", "id" : -312, - "runtimeId" : 932 + "runtimeId" : 221 }, { "name" : "minecraft:copper_ore", "id" : -311, - "runtimeId" : 891 + "runtimeId" : 199 }, { "name" : "minecraft:pointed_dripstone", "id" : -308, - "runtimeId" : 992 + "runtimeId" : 92 }, { "name" : "minecraft:sculk_sensor", "id" : -307, - "runtimeId" : 1013 + "runtimeId" : 57 }, { "name" : "minecraft:powder_snow", "id" : -306, - "runtimeId" : 465 + "runtimeId" : 343 }, { "name" : "minecraft:unknown", "id" : -305, - "runtimeId" : 1040 + "runtimeId" : 23 }, { "name" : "minecraft:quartz_bricks", "id" : -304, - "runtimeId" : 42 + "runtimeId" : 445 }, { "name" : "minecraft:cracked_nether_bricks", "id" : -303, - "runtimeId" : 895 + "runtimeId" : 915 }, { "name" : "minecraft:chiseled_nether_bricks", "id" : -302, - "runtimeId" : 440 + "runtimeId" : 207 }, { "name" : "minecraft:stripped_warped_hyphae", "id" : -301, - "runtimeId" : 1030 + "runtimeId" : 50 }, { "name" : "minecraft:stripped_crimson_hyphae", "id" : -300, - "runtimeId" : 1027 + "runtimeId" : 386 }, { "name" : "minecraft:crimson_hyphae", "id" : -299, - "runtimeId" : 900 + "runtimeId" : 411 }, { "name" : "minecraft:warped_hyphae", "id" : -298, - "runtimeId" : 1050 + "runtimeId" : 29 }, { "name" : "minecraft:polished_blackstone_wall", "id" : -297, - "runtimeId" : 784 + "runtimeId" : 79 }, { "name" : "minecraft:polished_blackstone_button", "id" : -296, - "runtimeId" : 674 + "runtimeId" : 83 }, { "name" : "minecraft:polished_blackstone_pressure_plate", "id" : -295, - "runtimeId" : 997 + "runtimeId" : 81 }, { "name" : "minecraft:polished_blackstone_double_slab", "id" : -294, - "runtimeId" : 675 + "runtimeId" : 82 }, { "name" : "minecraft:polished_blackstone_slab", "id" : -293, - "runtimeId" : 636 + "runtimeId" : 592 }, { "name" : "minecraft:polished_blackstone_stairs", "id" : -292, - "runtimeId" : 998 + "runtimeId" : 280 }, { "name" : "minecraft:polished_blackstone", "id" : -291, - "runtimeId" : 993 + "runtimeId" : 89 }, { "name" : "minecraft:item.soul_campfire", "id" : -290, - "runtimeId" : 1017 + "runtimeId" : 329 }, { "name" : "minecraft:crying_obsidian", "id" : -289, - "runtimeId" : 818 + "runtimeId" : 266 }, { "name" : "minecraft:nether_gold_ore", "id" : -288, - "runtimeId" : 981 + "runtimeId" : 243 }, { "name" : "minecraft:twisting_vines", "id" : -287, - "runtimeId" : 475 + "runtimeId" : 25 }, { "name" : "minecraft:item.chain", "id" : -286, - "runtimeId" : 879 + "runtimeId" : 211 }, { "name" : "minecraft:polished_blackstone_brick_double_slab", "id" : -285, - "runtimeId" : 994 + "runtimeId" : 88 }, { "name" : "minecraft:polished_blackstone_brick_slab", "id" : -284, - "runtimeId" : 9 + "runtimeId" : 573 }, { "name" : "minecraft:blackstone_double_slab", "id" : -283, - "runtimeId" : 677 + "runtimeId" : 726 }, { "name" : "minecraft:blackstone_slab", "id" : -282, - "runtimeId" : 635 + "runtimeId" : 929 }, { "name" : "minecraft:gilded_blackstone", "id" : -281, - "runtimeId" : 935 + "runtimeId" : 778 }, { "name" : "minecraft:cracked_polished_blackstone_bricks", "id" : -280, - "runtimeId" : 896 + "runtimeId" : 196 }, { "name" : "minecraft:chiseled_polished_blackstone", "id" : -279, - "runtimeId" : 851 + "runtimeId" : 293 }, { "name" : "minecraft:polished_blackstone_brick_wall", "id" : -278, - "runtimeId" : 996 + "runtimeId" : 86 }, { "name" : "minecraft:blackstone_wall", "id" : -277, - "runtimeId" : 858 + "runtimeId" : 940 }, { "name" : "minecraft:blackstone_stairs", "id" : -276, - "runtimeId" : 856 + "runtimeId" : 843 }, { "name" : "minecraft:polished_blackstone_brick_stairs", "id" : -275, - "runtimeId" : 406 + "runtimeId" : 1004 }, { "name" : "minecraft:polished_blackstone_bricks", "id" : -274, - "runtimeId" : 664 + "runtimeId" : 84 }, { "name" : "minecraft:blackstone", "id" : -273, - "runtimeId" : 854 + "runtimeId" : 229 }, { "name" : "minecraft:respawn_anchor", "id" : -272, - "runtimeId" : 817 + "runtimeId" : 267 }, { "name" : "minecraft:ancient_debris", "id" : -271, - "runtimeId" : 62 + "runtimeId" : 268 }, { "name" : "minecraft:netherite_block", "id" : -270, - "runtimeId" : 815 + "runtimeId" : 270 }, { "name" : "minecraft:soul_lantern", "id" : -269, - "runtimeId" : 1018 + "runtimeId" : 304 }, { "name" : "minecraft:soul_torch", "id" : -268, - "runtimeId" : 1019 + "runtimeId" : 45 }, { "name" : "minecraft:warped_double_slab", "id" : -267, - "runtimeId" : 1047 + "runtimeId" : 37 }, { "name" : "minecraft:crimson_double_slab", "id" : -266, - "runtimeId" : 898 + "runtimeId" : 195 }, { "name" : "minecraft:warped_slab", "id" : -265, - "runtimeId" : 487 + "runtimeId" : 385 }, { "name" : "minecraft:crimson_slab", "id" : -264, - "runtimeId" : 711 + "runtimeId" : 816 }, { "name" : "minecraft:warped_pressure_plate", "id" : -263, - "runtimeId" : 1053 + "runtimeId" : 269 }, { "name" : "minecraft:crimson_pressure_plate", "id" : -262, - "runtimeId" : 270 + "runtimeId" : 191 }, { "name" : "minecraft:warped_button", "id" : -261, - "runtimeId" : 806 + "runtimeId" : 181 }, { "name" : "minecraft:crimson_button", "id" : -260, - "runtimeId" : 897 + "runtimeId" : 292 }, { "name" : "minecraft:warped_fence_gate", "id" : -259, - "runtimeId" : 1049 + "runtimeId" : 773 }, { "name" : "minecraft:crimson_fence_gate", "id" : -258, - "runtimeId" : 899 + "runtimeId" : 194 }, { "name" : "minecraft:warped_fence", "id" : -257, - "runtimeId" : 1048 + "runtimeId" : 22 }, { "name" : "minecraft:crimson_fence", "id" : -256, - "runtimeId" : 446 + "runtimeId" : 542 }, { "name" : "minecraft:warped_stairs", "id" : -255, - "runtimeId" : 1054 + "runtimeId" : 123 }, { "name" : "minecraft:crimson_stairs", "id" : -254, - "runtimeId" : 330 + "runtimeId" : 189 }, { "name" : "minecraft:warped_wall_sign", "id" : -253, - "runtimeId" : 1056 + "runtimeId" : 48 }, { "name" : "minecraft:crimson_wall_sign", "id" : -252, - "runtimeId" : 905 + "runtimeId" : 947 }, { "name" : "minecraft:warped_standing_sign", "id" : -251, - "runtimeId" : 995 + "runtimeId" : 18 }, { "name" : "minecraft:crimson_standing_sign", "id" : -250, - "runtimeId" : 903 + "runtimeId" : 187 }, { "name" : "minecraft:warped_trapdoor", "id" : -247, - "runtimeId" : 473 + "runtimeId" : 210 }, { "name" : "minecraft:crimson_trapdoor", "id" : -246, - "runtimeId" : 159 + "runtimeId" : 746 }, { "name" : "minecraft:item.warped_door", "id" : -245, - "runtimeId" : 1046 + "runtimeId" : 139 }, { "name" : "minecraft:item.crimson_door", "id" : -244, - "runtimeId" : 125 + "runtimeId" : 600 }, { "name" : "minecraft:warped_planks", "id" : -243, - "runtimeId" : 1052 + "runtimeId" : 19 }, { "name" : "minecraft:crimson_planks", "id" : -242, - "runtimeId" : 902 + "runtimeId" : 192 }, { "name" : "minecraft:stripped_warped_stem", "id" : -241, - "runtimeId" : 1031 + "runtimeId" : 32 }, { "name" : "minecraft:stripped_crimson_stem", "id" : -240, - "runtimeId" : 381 + "runtimeId" : 349 }, { "name" : "minecraft:target", "id" : -239, - "runtimeId" : 678 + "runtimeId" : 780 }, { "name" : "minecraft:item.nether_sprouts", "id" : -238, - "runtimeId" : 974 + "runtimeId" : 401 }, { "name" : "minecraft:soul_fire", "id" : -237, - "runtimeId" : 681 + "runtimeId" : 719 }, { "name" : "minecraft:soul_soil", "id" : -236, - "runtimeId" : 688 + "runtimeId" : 319 }, { "name" : "minecraft:polished_basalt", "id" : -235, - "runtimeId" : 938 + "runtimeId" : 90 }, { "name" : "minecraft:basalt", "id" : -234, - "runtimeId" : 840 + "runtimeId" : 455 }, { "name" : "minecraft:warped_nylium", "id" : -233, - "runtimeId" : 1051 + "runtimeId" : 20 }, { "name" : "minecraft:crimson_nylium", "id" : -232, - "runtimeId" : 541 + "runtimeId" : 193 }, { "name" : "minecraft:weeping_vines", "id" : -231, - "runtimeId" : 449 + "runtimeId" : 4 }, { "name" : "minecraft:shroomlight", "id" : -230, - "runtimeId" : 1014 + "runtimeId" : 55 }, { "name" : "minecraft:warped_fungus", "id" : -229, - "runtimeId" : 612 + "runtimeId" : 21 }, { "name" : "minecraft:crimson_fungus", "id" : -228, - "runtimeId" : 483 + "runtimeId" : 499 }, { "name" : "minecraft:warped_wart_block", "id" : -227, - "runtimeId" : 1043 + "runtimeId" : 17 }, { "name" : "minecraft:warped_stem", "id" : -226, - "runtimeId" : 1055 + "runtimeId" : 468 }, { "name" : "minecraft:crimson_stem", "id" : -225, - "runtimeId" : 904 + "runtimeId" : 186 }, { "name" : "minecraft:warped_roots", "id" : -224, - "runtimeId" : 682 + "runtimeId" : 963 }, { "name" : "minecraft:crimson_roots", "id" : -223, - "runtimeId" : 288 + "runtimeId" : 980 }, { "name" : "minecraft:lodestone", "id" : -222, - "runtimeId" : 203 + "runtimeId" : 136 }, { "name" : "minecraft:honeycomb_block", "id" : -221, - "runtimeId" : 408 + "runtimeId" : 134 }, { "name" : "minecraft:honey_block", "id" : -220, - "runtimeId" : 175 + "runtimeId" : 742 }, { "name" : "minecraft:beehive", "id" : -219, - "runtimeId" : 845 + "runtimeId" : 241 }, { "name" : "minecraft:bee_nest", "id" : -218, - "runtimeId" : 844 + "runtimeId" : 380 }, { "name" : "minecraft:stickypistonarmcollision", "id" : -217, - "runtimeId" : 224 + "runtimeId" : 41 }, { "name" : "minecraft:wither_rose", "id" : -216, - "runtimeId" : 1074 + "runtimeId" : 3 }, { "name" : "minecraft:light_block", "id" : -215, - "runtimeId" : 24 + "runtimeId" : 1012 }, { "name" : "minecraft:lit_blast_furnace", "id" : -214, - "runtimeId" : 661 + "runtimeId" : 113 }, { "name" : "minecraft:composter", "id" : -213, - "runtimeId" : 431 + "runtimeId" : 271 }, { "name" : "minecraft:wood", "id" : -212, - "runtimeId" : 640 + "runtimeId" : 871 }, { "name" : "minecraft:jigsaw", "id" : -211, - "runtimeId" : 413 + "runtimeId" : 125 }, { "name" : "minecraft:lava_cauldron", "id" : -210, - "runtimeId" : 922 + "runtimeId" : 118 }, { "name" : "minecraft:item.campfire", "id" : -209, - "runtimeId" : 72 + "runtimeId" : 447 }, { "name" : "minecraft:lantern", "id" : -208, - "runtimeId" : 114 + "runtimeId" : 933 }, { "name" : "minecraft:sweet_berry_bush", "id" : -207, - "runtimeId" : 1034 + "runtimeId" : 28 }, { "name" : "minecraft:bell", "id" : -206, - "runtimeId" : 597 + "runtimeId" : 699 }, { "name" : "minecraft:loom", "id" : -204, - "runtimeId" : 621 + "runtimeId" : 661 }, { "name" : "minecraft:barrel", "id" : -203, - "runtimeId" : 215 + "runtimeId" : 393 }, { "name" : "minecraft:smithing_table", "id" : -202, - "runtimeId" : 167 + "runtimeId" : 477 }, { "name" : "minecraft:fletching_table", "id" : -201, - "runtimeId" : 706 + "runtimeId" : 1027 }, { "name" : "minecraft:cartography_table", "id" : -200, - "runtimeId" : 634 + "runtimeId" : 1024 }, { "name" : "minecraft:lit_smoker", "id" : -199, - "runtimeId" : 972 + "runtimeId" : 110 }, { "name" : "minecraft:smoker", "id" : -198, - "runtimeId" : 96 + "runtimeId" : 704 }, { "name" : "minecraft:stonecutter_block", "id" : -197, - "runtimeId" : 82 + "runtimeId" : 36 }, { "name" : "minecraft:blast_furnace", "id" : -196, - "runtimeId" : 364 + "runtimeId" : 684 }, { "name" : "minecraft:grindstone", "id" : -195, - "runtimeId" : 703 + "runtimeId" : 1023 }, { "name" : "minecraft:lectern", "id" : -194, - "runtimeId" : 966 + "runtimeId" : 890 }, { "name" : "minecraft:darkoak_wall_sign", "id" : -193, - "runtimeId" : 910 + "runtimeId" : 178 }, { "name" : "minecraft:darkoak_standing_sign", "id" : -192, - "runtimeId" : 909 + "runtimeId" : 179 }, { "name" : "minecraft:acacia_wall_sign", "id" : -191, - "runtimeId" : 831 + "runtimeId" : 1051 }, { "name" : "minecraft:acacia_standing_sign", "id" : -190, - "runtimeId" : 829 + "runtimeId" : 252 }, { "name" : "minecraft:jungle_wall_sign", "id" : -189, - "runtimeId" : 960 + "runtimeId" : 300 }, { "name" : "minecraft:jungle_standing_sign", "id" : -188, - "runtimeId" : 958 + "runtimeId" : 562 }, { "name" : "minecraft:birch_wall_sign", "id" : -187, - "runtimeId" : 723 + "runtimeId" : 233 }, { "name" : "minecraft:birch_standing_sign", "id" : -186, - "runtimeId" : 852 + "runtimeId" : 235 }, { "name" : "minecraft:smooth_quartz_stairs", "id" : -185, - "runtimeId" : 20 + "runtimeId" : 87 }, { "name" : "minecraft:red_nether_brick_stairs", "id" : -184, - "runtimeId" : 1006 + "runtimeId" : 65 }, { "name" : "minecraft:smooth_stone", "id" : -183, - "runtimeId" : 118 + "runtimeId" : 714 }, { "name" : "minecraft:spruce_wall_sign", "id" : -182, - "runtimeId" : 472 + "runtimeId" : 120 }, { "name" : "minecraft:spruce_standing_sign", "id" : -181, - "runtimeId" : 698 + "runtimeId" : 174 }, { "name" : "minecraft:normal_stone_stairs", "id" : -180, - "runtimeId" : 985 + "runtimeId" : 418 }, { "name" : "minecraft:mossy_cobblestone_stairs", "id" : -179, - "runtimeId" : 254 + "runtimeId" : 544 }, { "name" : "minecraft:end_brick_stairs", "id" : -178, - "runtimeId" : 928 + "runtimeId" : 157 }, { "name" : "minecraft:smooth_sandstone_stairs", "id" : -177, - "runtimeId" : 1016 + "runtimeId" : 47 }, { "name" : "minecraft:smooth_red_sandstone_stairs", "id" : -176, - "runtimeId" : 639 + "runtimeId" : 80 }, { "name" : "minecraft:mossy_stone_brick_stairs", "id" : -175, - "runtimeId" : 975 + "runtimeId" : 104 }, { "name" : "minecraft:polished_andesite_stairs", "id" : -174, - "runtimeId" : 394 + "runtimeId" : 91 }, { "name" : "minecraft:polished_diorite_stairs", "id" : -173, - "runtimeId" : 595 + "runtimeId" : 76 }, { "name" : "minecraft:polished_granite_stairs", "id" : -172, - "runtimeId" : 299 + "runtimeId" : 1030 }, { "name" : "minecraft:andesite_stairs", "id" : -171, - "runtimeId" : 333 + "runtimeId" : 244 }, { "name" : "minecraft:diorite_stairs", "id" : -170, - "runtimeId" : 781 + "runtimeId" : 163 }, { "name" : "minecraft:granite_stairs", "id" : -169, - "runtimeId" : 139 + "runtimeId" : 245 }, { "name" : "minecraft:real_double_stone_slab4", "id" : -168, - "runtimeId" : 181 + "runtimeId" : 971 }, { "name" : "minecraft:real_double_stone_slab3", "id" : -167, - "runtimeId" : 220 + "runtimeId" : 970 }, { "name" : "minecraft:double_stone_slab4", "id" : -166, - "runtimeId" : 665 + "runtimeId" : 964 }, { "name" : "minecraft:scaffolding", "id" : -165, - "runtimeId" : 700 + "runtimeId" : 353 }, { "name" : "minecraft:bamboo_sapling", "id" : -164, - "runtimeId" : 836 + "runtimeId" : 973 }, { "name" : "minecraft:bamboo", "id" : -163, - "runtimeId" : 699 + "runtimeId" : 1021 }, { "name" : "minecraft:double_stone_slab3", "id" : -162, - "runtimeId" : 420 + "runtimeId" : 961 }, { "name" : "minecraft:barrier", "id" : -161, - "runtimeId" : 838 + "runtimeId" : 948 }, { "name" : "minecraft:bubble_column", "id" : -160, - "runtimeId" : 867 + "runtimeId" : 220 }, { "name" : "minecraft:turtle_egg", "id" : -159, - "runtimeId" : 367 + "runtimeId" : 570 }, { "name" : "minecraft:air", "id" : -158, - "runtimeId" : 6 + "runtimeId" : 806 }, { "name" : "minecraft:conduit", "id" : -157, - "runtimeId" : 692 + "runtimeId" : 1007 }, { "name" : "minecraft:sea_pickle", "id" : -156, - "runtimeId" : 673 + "runtimeId" : 640 }, { "name" : "minecraft:carved_pumpkin", "id" : -155, - "runtimeId" : 398 + "runtimeId" : 1022 }, { "name" : "minecraft:spruce_pressure_plate", "id" : -154, - "runtimeId" : 1022 + "runtimeId" : 506 }, { "name" : "minecraft:jungle_pressure_plate", "id" : -153, - "runtimeId" : 405 + "runtimeId" : 847 }, { "name" : "minecraft:dark_oak_pressure_plate", "id" : -152, - "runtimeId" : 516 + "runtimeId" : 322 }, { "name" : "minecraft:birch_pressure_plate", "id" : -151, - "runtimeId" : 850 + "runtimeId" : 382 }, { "name" : "minecraft:acacia_pressure_plate", "id" : -150, - "runtimeId" : 687 + "runtimeId" : 255 }, { "name" : "minecraft:spruce_trapdoor", "id" : -149, - "runtimeId" : 1023 + "runtimeId" : 217 }, { "name" : "minecraft:jungle_trapdoor", "id" : -148, - "runtimeId" : 527 + "runtimeId" : 962 }, { "name" : "minecraft:dark_oak_trapdoor", "id" : -147, - "runtimeId" : 906 + "runtimeId" : 188 }, { "name" : "minecraft:birch_trapdoor", "id" : -146, - "runtimeId" : 853 + "runtimeId" : 234 }, { "name" : "minecraft:acacia_trapdoor", "id" : -145, - "runtimeId" : 830 + "runtimeId" : 250 }, { "name" : "minecraft:spruce_button", "id" : -144, - "runtimeId" : 337 + "runtimeId" : 688 }, { "name" : "minecraft:jungle_button", "id" : -143, - "runtimeId" : 956 + "runtimeId" : 720 }, { "name" : "minecraft:dark_oak_button", "id" : -142, - "runtimeId" : 777 + "runtimeId" : 202 }, { "name" : "minecraft:birch_button", "id" : -141, - "runtimeId" : 847 + "runtimeId" : 790 }, { "name" : "minecraft:acacia_button", "id" : -140, - "runtimeId" : 824 + "runtimeId" : 344 }, { "name" : "minecraft:dried_kelp_block", "id" : -139, - "runtimeId" : 857 + "runtimeId" : 483 }, { "name" : "minecraft:item.kelp", "id" : -138, - "runtimeId" : 886 + "runtimeId" : 762 }, { "name" : "minecraft:coral_fan_hang3", "id" : -137, - "runtimeId" : 894 + "runtimeId" : 198 }, { "name" : "minecraft:coral_fan_hang2", "id" : -136, - "runtimeId" : 588 + "runtimeId" : 1065 }, { "name" : "minecraft:coral_fan_hang", "id" : -135, - "runtimeId" : 893 + "runtimeId" : 701 }, { "name" : "minecraft:coral_fan_dead", "id" : -134, - "runtimeId" : 586 + "runtimeId" : 501 }, { "name" : "minecraft:coral_fan", "id" : -133, - "runtimeId" : 670 + "runtimeId" : 356 }, { "name" : "minecraft:coral_block", "id" : -132, - "runtimeId" : 660 + "runtimeId" : 476 }, { "name" : "minecraft:coral", "id" : -131, - "runtimeId" : 318 + "runtimeId" : 443 }, { "name" : "minecraft:seagrass", "id" : -130, - "runtimeId" : 515 + "runtimeId" : 1077 }, { "name" : "minecraft:element_118", "id" : -129, - "runtimeId" : 814 + "runtimeId" : 272 }, { "name" : "minecraft:element_117", "id" : -128, - "runtimeId" : 813 + "runtimeId" : 273 }, { "name" : "minecraft:element_116", "id" : -127, - "runtimeId" : 286 + "runtimeId" : 274 }, { "name" : "minecraft:element_115", "id" : -126, - "runtimeId" : 812 + "runtimeId" : 275 }, { "name" : "minecraft:element_114", "id" : -125, - "runtimeId" : 809 + "runtimeId" : 276 }, { "name" : "minecraft:element_113", "id" : -124, - "runtimeId" : 807 + "runtimeId" : 277 }, { "name" : "minecraft:element_112", "id" : -123, - "runtimeId" : 805 + "runtimeId" : 278 }, { "name" : "minecraft:element_111", "id" : -122, - "runtimeId" : 414 + "runtimeId" : 526 }, { "name" : "minecraft:element_110", "id" : -121, - "runtimeId" : 804 + "runtimeId" : 484 }, { "name" : "minecraft:element_109", "id" : -120, - "runtimeId" : 459 + "runtimeId" : 279 }, { "name" : "minecraft:element_108", "id" : -119, - "runtimeId" : 803 + "runtimeId" : 281 }, { "name" : "minecraft:element_107", "id" : -118, - "runtimeId" : 802 + "runtimeId" : 1013 }, { "name" : "minecraft:element_106", "id" : -117, - "runtimeId" : 800 + "runtimeId" : 618 }, { "name" : "minecraft:element_105", "id" : -116, - "runtimeId" : 799 + "runtimeId" : 577 }, { "name" : "minecraft:element_104", "id" : -115, - "runtimeId" : 138 + "runtimeId" : 646 }, { "name" : "minecraft:element_103", "id" : -114, - "runtimeId" : 690 + "runtimeId" : 283 }, { "name" : "minecraft:element_102", "id" : -113, - "runtimeId" : 544 + "runtimeId" : 284 }, { "name" : "minecraft:element_101", "id" : -112, - "runtimeId" : 209 + "runtimeId" : 285 }, { "name" : "minecraft:element_100", "id" : -111, - "runtimeId" : 663 + "runtimeId" : 286 }, { "name" : "minecraft:element_99", "id" : -110, - "runtimeId" : 797 + "runtimeId" : 900 }, { "name" : "minecraft:element_98", "id" : -109, - "runtimeId" : 796 + "runtimeId" : 287 }, { "name" : "minecraft:element_97", "id" : -108, - "runtimeId" : 296 + "runtimeId" : 288 }, { "name" : "minecraft:element_96", "id" : -107, - "runtimeId" : 795 + "runtimeId" : 289 }, { "name" : "minecraft:element_95", "id" : -106, - "runtimeId" : 793 + "runtimeId" : 290 }, { "name" : "minecraft:element_94", "id" : -105, - "runtimeId" : 792 + "runtimeId" : 291 }, { "name" : "minecraft:element_93", "id" : -104, - "runtimeId" : 791 + "runtimeId" : 294 }, { "name" : "minecraft:element_92", "id" : -103, - "runtimeId" : 611 + "runtimeId" : 296 }, { "name" : "minecraft:element_91", "id" : -102, - "runtimeId" : 790 + "runtimeId" : 627 }, { "name" : "minecraft:element_90", "id" : -101, - "runtimeId" : 789 + "runtimeId" : 297 }, { "name" : "minecraft:element_89", "id" : -100, - "runtimeId" : 788 + "runtimeId" : 298 }, { "name" : "minecraft:element_88", "id" : -99, - "runtimeId" : 787 + "runtimeId" : 299 }, { "name" : "minecraft:element_87", "id" : -98, - "runtimeId" : 786 + "runtimeId" : 301 }, { "name" : "minecraft:element_86", "id" : -97, - "runtimeId" : 192 + "runtimeId" : 302 }, { "name" : "minecraft:element_85", "id" : -96, - "runtimeId" : 785 + "runtimeId" : 303 }, { "name" : "minecraft:element_84", "id" : -95, - "runtimeId" : 239 + "runtimeId" : 305 }, { "name" : "minecraft:element_83", "id" : -94, - "runtimeId" : 617 + "runtimeId" : 306 }, { "name" : "minecraft:element_82", "id" : -93, - "runtimeId" : 783 + "runtimeId" : 540 }, { "name" : "minecraft:element_81", "id" : -92, - "runtimeId" : 782 + "runtimeId" : 308 }, { "name" : "minecraft:element_80", "id" : -91, - "runtimeId" : 467 + "runtimeId" : 309 }, { "name" : "minecraft:element_79", "id" : -90, - "runtimeId" : 779 + "runtimeId" : 310 }, { "name" : "minecraft:element_78", "id" : -89, - "runtimeId" : 603 + "runtimeId" : 312 }, { "name" : "minecraft:element_77", "id" : -88, - "runtimeId" : 778 + "runtimeId" : 768 }, { "name" : "minecraft:element_76", "id" : -87, - "runtimeId" : 649 + "runtimeId" : 314 }, { "name" : "minecraft:element_75", "id" : -86, - "runtimeId" : 776 + "runtimeId" : 315 }, { "name" : "minecraft:element_74", "id" : -85, - "runtimeId" : 261 + "runtimeId" : 316 }, { "name" : "minecraft:element_73", "id" : -84, - "runtimeId" : 579 + "runtimeId" : 513 }, { "name" : "minecraft:element_72", "id" : -83, - "runtimeId" : 774 + "runtimeId" : 317 }, { "name" : "minecraft:element_71", "id" : -82, - "runtimeId" : 772 + "runtimeId" : 473 }, { "name" : "minecraft:element_70", "id" : -81, - "runtimeId" : 771 + "runtimeId" : 398 }, { "name" : "minecraft:element_69", "id" : -80, - "runtimeId" : 533 + "runtimeId" : 408 }, { "name" : "minecraft:element_68", "id" : -79, - "runtimeId" : 770 + "runtimeId" : 318 }, { "name" : "minecraft:element_67", "id" : -78, - "runtimeId" : 769 + "runtimeId" : 320 }, { "name" : "minecraft:element_66", "id" : -77, - "runtimeId" : 768 + "runtimeId" : 323 }, { "name" : "minecraft:element_65", "id" : -76, - "runtimeId" : 767 + "runtimeId" : 831 }, { "name" : "minecraft:element_64", "id" : -75, - "runtimeId" : 766 + "runtimeId" : 324 }, { "name" : "minecraft:element_63", "id" : -74, - "runtimeId" : 548 + "runtimeId" : 521 }, { "name" : "minecraft:element_62", "id" : -73, - "runtimeId" : 93 + "runtimeId" : 419 }, { "name" : "minecraft:element_61", "id" : -72, - "runtimeId" : 65 + "runtimeId" : 325 }, { "name" : "minecraft:element_60", "id" : -71, - "runtimeId" : 764 + "runtimeId" : 734 }, { "name" : "minecraft:element_59", "id" : -70, - "runtimeId" : 763 + "runtimeId" : 326 }, { "name" : "minecraft:element_58", "id" : -69, - "runtimeId" : 762 + "runtimeId" : 327 }, { "name" : "minecraft:element_57", "id" : -68, - "runtimeId" : 760 + "runtimeId" : 328 }, { "name" : "minecraft:element_56", "id" : -67, - "runtimeId" : 757 + "runtimeId" : 330 }, { "name" : "minecraft:element_55", "id" : -66, - "runtimeId" : 256 + "runtimeId" : 496 }, { "name" : "minecraft:element_54", "id" : -65, - "runtimeId" : 756 + "runtimeId" : 337 }, { "name" : "minecraft:element_53", "id" : -64, - "runtimeId" : 658 + "runtimeId" : 845 }, { "name" : "minecraft:element_52", "id" : -63, - "runtimeId" : 180 + "runtimeId" : 331 }, { "name" : "minecraft:element_51", "id" : -62, - "runtimeId" : 236 + "runtimeId" : 910 }, { "name" : "minecraft:element_50", "id" : -61, - "runtimeId" : 13 + "runtimeId" : 682 }, { "name" : "minecraft:element_49", "id" : -60, - "runtimeId" : 211 + "runtimeId" : 601 }, { "name" : "minecraft:element_48", "id" : -59, - "runtimeId" : 755 + "runtimeId" : 365 }, { "name" : "minecraft:element_47", "id" : -58, - "runtimeId" : 528 + "runtimeId" : 333 }, { "name" : "minecraft:element_46", "id" : -57, - "runtimeId" : 754 + "runtimeId" : 563 }, { "name" : "minecraft:element_45", "id" : -56, - "runtimeId" : 753 + "runtimeId" : 694 }, { "name" : "minecraft:element_44", "id" : -55, - "runtimeId" : 402 + "runtimeId" : 334 }, { "name" : "minecraft:element_43", "id" : -54, - "runtimeId" : 117 + "runtimeId" : 1032 }, { "name" : "minecraft:element_42", "id" : -53, - "runtimeId" : 575 + "runtimeId" : 825 }, { "name" : "minecraft:element_41", "id" : -52, - "runtimeId" : 358 + "runtimeId" : 1025 }, { "name" : "minecraft:element_40", "id" : -51, - "runtimeId" : 751 + "runtimeId" : 875 }, { "name" : "minecraft:element_39", "id" : -50, - "runtimeId" : 750 + "runtimeId" : 1079 }, { "name" : "minecraft:element_38", "id" : -49, - "runtimeId" : 749 + "runtimeId" : 1078 }, { "name" : "minecraft:element_37", "id" : -48, - "runtimeId" : 748 + "runtimeId" : 716 }, { "name" : "minecraft:element_36", "id" : -47, - "runtimeId" : 746 + "runtimeId" : 1075 }, { "name" : "minecraft:element_35", "id" : -46, - "runtimeId" : 135 + "runtimeId" : 594 }, { "name" : "minecraft:element_34", "id" : -45, - "runtimeId" : 745 + "runtimeId" : 1073 }, { "name" : "minecraft:element_33", "id" : -44, - "runtimeId" : 744 + "runtimeId" : 342 }, { "name" : "minecraft:element_32", "id" : -43, - "runtimeId" : 743 + "runtimeId" : 955 }, { "name" : "minecraft:element_31", "id" : -42, - "runtimeId" : 742 + "runtimeId" : 1072 }, { "name" : "minecraft:element_30", "id" : -41, - "runtimeId" : 741 + "runtimeId" : 1071 }, { "name" : "minecraft:element_29", "id" : -40, - "runtimeId" : 740 + "runtimeId" : 840 }, { "name" : "minecraft:element_28", "id" : -39, - "runtimeId" : 496 + "runtimeId" : 1069 }, { "name" : "minecraft:element_27", "id" : -38, - "runtimeId" : 739 + "runtimeId" : 389 }, { "name" : "minecraft:element_26", "id" : -37, - "runtimeId" : 738 + "runtimeId" : 1067 }, { "name" : "minecraft:element_25", "id" : -36, - "runtimeId" : 737 + "runtimeId" : 691 }, { "name" : "minecraft:element_24", "id" : -35, - "runtimeId" : 736 + "runtimeId" : 1049 }, { "name" : "minecraft:element_23", "id" : -34, - "runtimeId" : 316 + "runtimeId" : 989 }, { "name" : "minecraft:element_22", "id" : -33, - "runtimeId" : 694 + "runtimeId" : 1064 }, { "name" : "minecraft:element_21", "id" : -32, - "runtimeId" : 427 + "runtimeId" : 756 }, { "name" : "minecraft:element_20", "id" : -31, - "runtimeId" : 735 + "runtimeId" : 1046 }, { "name" : "minecraft:element_19", "id" : -30, - "runtimeId" : 734 + "runtimeId" : 1060 }, { "name" : "minecraft:element_18", "id" : -29, - "runtimeId" : 733 + "runtimeId" : 547 }, { "name" : "minecraft:element_17", "id" : -28, - "runtimeId" : 731 + "runtimeId" : 1059 }, { "name" : "minecraft:element_16", "id" : -27, - "runtimeId" : 730 + "runtimeId" : 1058 }, { "name" : "minecraft:element_15", "id" : -26, - "runtimeId" : 21 + "runtimeId" : 467 }, { "name" : "minecraft:element_14", "id" : -25, - "runtimeId" : 372 + "runtimeId" : 1055 }, { "name" : "minecraft:element_13", "id" : -24, - "runtimeId" : 108 + "runtimeId" : 1054 }, { "name" : "minecraft:element_12", "id" : -23, - "runtimeId" : 729 + "runtimeId" : 685 }, { "name" : "minecraft:element_11", "id" : -22, - "runtimeId" : 683 + "runtimeId" : 1052 }, { "name" : "minecraft:element_10", "id" : -21, - "runtimeId" : 365 + "runtimeId" : 941 }, { "name" : "minecraft:element_9", "id" : -20, - "runtimeId" : 491 + "runtimeId" : 692 }, { "name" : "minecraft:element_8", "id" : -19, - "runtimeId" : 728 + "runtimeId" : 1050 }, { "name" : "minecraft:element_7", "id" : -18, - "runtimeId" : 35 + "runtimeId" : 987 }, { "name" : "minecraft:element_6", "id" : -17, - "runtimeId" : 273 + "runtimeId" : 1063 }, { "name" : "minecraft:element_5", "id" : -16, - "runtimeId" : 727 + "runtimeId" : 755 }, { "name" : "minecraft:element_4", "id" : -15, - "runtimeId" : 725 + "runtimeId" : 1047 }, { "name" : "minecraft:element_3", "id" : -14, - "runtimeId" : 724 + "runtimeId" : 992 }, { "name" : "minecraft:element_2", "id" : -13, - "runtimeId" : 126 + "runtimeId" : 656 }, { "name" : "minecraft:element_1", "id" : -12, - "runtimeId" : 77 + "runtimeId" : 1044 }, { "name" : "minecraft:blue_ice", "id" : -11, - "runtimeId" : 615 + "runtimeId" : 227 }, { "name" : "minecraft:stripped_oak_log", "id" : -10, - "runtimeId" : 14 + "runtimeId" : 34 }, { "name" : "minecraft:stripped_dark_oak_log", "id" : -9, - "runtimeId" : 1028 + "runtimeId" : 35 }, { "name" : "minecraft:stripped_acacia_log", "id" : -8, - "runtimeId" : 668 + "runtimeId" : 705 }, { "name" : "minecraft:stripped_jungle_log", "id" : -7, - "runtimeId" : 513 + "runtimeId" : 710 }, { "name" : "minecraft:stripped_birch_log", "id" : -6, - "runtimeId" : 876 + "runtimeId" : 39 }, { "name" : "minecraft:stripped_spruce_log", "id" : -5, - "runtimeId" : 1029 + "runtimeId" : 33 }, { "name" : "minecraft:prismarine_bricks_stairs", "id" : -4, - "runtimeId" : 40 + "runtimeId" : 72 }, { "name" : "minecraft:dark_prismarine_stairs", "id" : -3, - "runtimeId" : 907 + "runtimeId" : 613 }, { "name" : "minecraft:prismarine_stairs", "id" : -2, - "runtimeId" : 1001 + "runtimeId" : 71 }, { "name" : "minecraft:stone", "id" : 1, - "runtimeId" : 652 + "runtimeId" : 939 }, { "name" : "minecraft:grass", "id" : 2, - "runtimeId" : 943 + "runtimeId" : 142 }, { "name" : "minecraft:dirt", "id" : 3, - "runtimeId" : 94 + "runtimeId" : 1076 }, { "name" : "minecraft:cobblestone", "id" : 4, - "runtimeId" : 553 + "runtimeId" : 364 }, { "name" : "minecraft:planks", "id" : 5, - "runtimeId" : 162 + "runtimeId" : 976 }, { "name" : "minecraft:sapling", "id" : 6, - "runtimeId" : 676 + "runtimeId" : 906 }, { "name" : "minecraft:bedrock", "id" : 7, - "runtimeId" : 843 + "runtimeId" : 253 }, { "name" : "minecraft:flowing_water", "id" : 8, - "runtimeId" : 171 + "runtimeId" : 525 }, { "name" : "minecraft:water", "id" : 9, - "runtimeId" : 1057 + "runtimeId" : 1048 }, { "name" : "minecraft:flowing_lava", "id" : 10, - "runtimeId" : 247 + "runtimeId" : 1017 }, { "name" : "minecraft:lava", "id" : 11, - "runtimeId" : 965 + "runtimeId" : 817 }, { "name" : "minecraft:sand", "id" : 12, - "runtimeId" : 228 + "runtimeId" : 942 }, { "name" : "minecraft:gravel", "id" : 13, - "runtimeId" : 945 + "runtimeId" : 141 }, { "name" : "minecraft:gold_ore", "id" : 14, - "runtimeId" : 941 + "runtimeId" : 143 }, { "name" : "minecraft:iron_ore", "id" : 15, - "runtimeId" : 308 + "runtimeId" : 129 }, { "name" : "minecraft:coal_ore", "id" : 16, - "runtimeId" : 569 + "runtimeId" : 204 }, { "name" : "minecraft:log", "id" : 17, - "runtimeId" : 656 + "runtimeId" : 950 }, { "name" : "minecraft:leaves", "id" : 18, - "runtimeId" : 537 + "runtimeId" : 943 }, { "name" : "minecraft:sponge", "id" : 19, - "runtimeId" : 632 + "runtimeId" : 986 }, { "name" : "minecraft:glass", "id" : 20, - "runtimeId" : 936 + "runtimeId" : 145 }, { "name" : "minecraft:lapis_ore", "id" : 21, - "runtimeId" : 964 + "runtimeId" : 119 }, { "name" : "minecraft:lapis_block", "id" : 22, - "runtimeId" : 963 + "runtimeId" : 703 }, { "name" : "minecraft:dispenser", "id" : 23, - "runtimeId" : 920 + "runtimeId" : 905 }, { "name" : "minecraft:sandstone", "id" : 24, - "runtimeId" : 562 + "runtimeId" : 974 }, { "name" : "minecraft:noteblock", "id" : 25, - "runtimeId" : 986 + "runtimeId" : 609 }, { "name" : "minecraft:item.bed", "id" : 26, - "runtimeId" : 841 + "runtimeId" : 604 }, { "name" : "minecraft:golden_rail", "id" : 27, - "runtimeId" : 942 + "runtimeId" : 321 }, { "name" : "minecraft:detector_rail", "id" : 28, - "runtimeId" : 826 + "runtimeId" : 516 }, { "name" : "minecraft:sticky_piston", "id" : 29, - "runtimeId" : 697 + "runtimeId" : 414 }, { "name" : "minecraft:web", "id" : 30, - "runtimeId" : 1072 + "runtimeId" : 579 }, { "name" : "minecraft:tallgrass", "id" : 31, - "runtimeId" : 686 + "runtimeId" : 798 }, { "name" : "minecraft:deadbush", "id" : 32, - "runtimeId" : 911 + "runtimeId" : 173 }, { "name" : "minecraft:piston", "id" : 33, - "runtimeId" : 230 + "runtimeId" : 744 }, { "name" : "minecraft:pistonarmcollision", "id" : 34, - "runtimeId" : 990 + "runtimeId" : 93 }, { "name" : "minecraft:wool", "id" : 35, - "runtimeId" : 653 + "runtimeId" : 949 }, { "name" : "minecraft:element_0", "id" : 36, - "runtimeId" : 435 + "runtimeId" : 779 }, { "name" : "minecraft:yellow_flower", "id" : 37, - "runtimeId" : 654 + "runtimeId" : 982 }, { "name" : "minecraft:red_flower", "id" : 38, - "runtimeId" : 684 + "runtimeId" : 984 }, { "name" : "minecraft:brown_mushroom", "id" : 39, - "runtimeId" : 204 + "runtimeId" : 222 }, { "name" : "minecraft:red_mushroom", "id" : 40, - "runtimeId" : 69 + "runtimeId" : 877 }, { "name" : "minecraft:gold_block", "id" : 41, - "runtimeId" : 883 + "runtimeId" : 796 }, { "name" : "minecraft:iron_block", "id" : 42, - "runtimeId" : 955 + "runtimeId" : 130 }, { "name" : "minecraft:real_double_stone_slab", "id" : 43, - "runtimeId" : 667 + "runtimeId" : 1006 }, { "name" : "minecraft:double_stone_slab", "id" : 44, - "runtimeId" : 662 + "runtimeId" : 957 }, { "name" : "minecraft:brick_block", "id" : 45, - "runtimeId" : 423 + "runtimeId" : 224 }, { "name" : "minecraft:tnt", "id" : 46, - "runtimeId" : 707 + "runtimeId" : 1029 }, { "name" : "minecraft:bookshelf", "id" : 47, - "runtimeId" : 18 + "runtimeId" : 226 }, { "name" : "minecraft:mossy_cobblestone", "id" : 48, - "runtimeId" : 967 + "runtimeId" : 105 }, { "name" : "minecraft:obsidian", "id" : 49, - "runtimeId" : 112 + "runtimeId" : 97 }, { "name" : "minecraft:torch", "id" : 50, - "runtimeId" : 1036 + "runtimeId" : 176 }, { "name" : "minecraft:fire", "id" : 51, - "runtimeId" : 79 + "runtimeId" : 859 }, { "name" : "minecraft:mob_spawner", "id" : 52, - "runtimeId" : 437 + "runtimeId" : 811 }, { "name" : "minecraft:oak_stairs", "id" : 53, - "runtimeId" : 987 + "runtimeId" : 99 }, { "name" : "minecraft:chest", "id" : 54, - "runtimeId" : 128 + "runtimeId" : 994 }, { "name" : "minecraft:redstone_wire", "id" : 55, - "runtimeId" : 1009 + "runtimeId" : 1056 }, { "name" : "minecraft:diamond_ore", "id" : 56, - "runtimeId" : 919 + "runtimeId" : 164 }, { "name" : "minecraft:diamond_block", "id" : 57, - "runtimeId" : 36 + "runtimeId" : 165 }, { "name" : "minecraft:crafting_table", "id" : 58, - "runtimeId" : 761 + "runtimeId" : 679 }, { "name" : "minecraft:item.wheat", "id" : 59, - "runtimeId" : 1020 + "runtimeId" : 858 }, { "name" : "minecraft:farmland", "id" : 60, - "runtimeId" : 156 + "runtimeId" : 681 }, { "name" : "minecraft:furnace", "id" : 61, - "runtimeId" : 934 + "runtimeId" : 146 }, { "name" : "minecraft:lit_furnace", "id" : 62, - "runtimeId" : 959 + "runtimeId" : 667 }, { "name" : "minecraft:standing_sign", "id" : 63, - "runtimeId" : 481 + "runtimeId" : 43 }, { "name" : "minecraft:item.wooden_door", "id" : 64, - "runtimeId" : 1076 + "runtimeId" : 2 }, { "name" : "minecraft:ladder", "id" : 65, - "runtimeId" : 962 + "runtimeId" : 478 }, { "name" : "minecraft:rail", "id" : 66, - "runtimeId" : 666 + "runtimeId" : 378 }, { "name" : "minecraft:stone_stairs", "id" : 67, - "runtimeId" : 1025 + "runtimeId" : 38 }, { "name" : "minecraft:wall_sign", "id" : 68, - "runtimeId" : 863 + "runtimeId" : 1003 }, { "name" : "minecraft:lever", "id" : 69, - "runtimeId" : 968 + "runtimeId" : 545 }, { "name" : "minecraft:stone_pressure_plate", "id" : 70, - "runtimeId" : 227 + "runtimeId" : 40 }, { "name" : "minecraft:item.iron_door", "id" : 71, - "runtimeId" : 44 + "runtimeId" : 402 }, { "name" : "minecraft:wooden_pressure_plate", "id" : 72, - "runtimeId" : 1077 + "runtimeId" : 1 }, { "name" : "minecraft:redstone_ore", "id" : 73, - "runtimeId" : 1008 + "runtimeId" : 62 }, { "name" : "minecraft:lit_redstone_ore", "id" : 74, - "runtimeId" : 759 + "runtimeId" : 657 }, { "name" : "minecraft:unlit_redstone_torch", "id" : 75, - "runtimeId" : 961 + "runtimeId" : 85 }, { "name" : "minecraft:redstone_torch", "id" : 76, - "runtimeId" : 780 + "runtimeId" : 61 }, { "name" : "minecraft:stone_button", "id" : 77, - "runtimeId" : 1024 + "runtimeId" : 919 }, { "name" : "minecraft:snow_layer", "id" : 78, - "runtimeId" : 90 + "runtimeId" : 990 }, { "name" : "minecraft:ice", "id" : 79, - "runtimeId" : 747 + "runtimeId" : 436 }, { "name" : "minecraft:snow", "id" : 80, - "runtimeId" : 825 + "runtimeId" : 46 }, { "name" : "minecraft:cactus", "id" : 81, - "runtimeId" : 798 + "runtimeId" : 216 }, { "name" : "minecraft:clay", "id" : 82, - "runtimeId" : 480 + "runtimeId" : 552 }, { "name" : "minecraft:item.reeds", "id" : 83, - "runtimeId" : 328 + "runtimeId" : 60 }, { "name" : "minecraft:jukebox", "id" : 84, - "runtimeId" : 463 + "runtimeId" : 122 }, { "name" : "minecraft:fence", "id" : 85, - "runtimeId" : 657 + "runtimeId" : 368 }, { "name" : "minecraft:pumpkin", "id" : 86, - "runtimeId" : 709 + "runtimeId" : 676 }, { "name" : "minecraft:netherrack", "id" : 87, - "runtimeId" : 983 + "runtimeId" : 707 }, { "name" : "minecraft:soul_sand", "id" : 88, - "runtimeId" : 212 + "runtimeId" : 407 }, { "name" : "minecraft:glowstone", "id" : 89, - "runtimeId" : 243 + "runtimeId" : 144 }, { "name" : "minecraft:portal", "id" : 90, - "runtimeId" : 29 + "runtimeId" : 698 }, { "name" : "minecraft:lit_pumpkin", "id" : 91, - "runtimeId" : 313 + "runtimeId" : 723 }, { "name" : "minecraft:item.cake", "id" : 92, - "runtimeId" : 351 + "runtimeId" : 972 }, { "name" : "minecraft:unpowered_repeater", "id" : 93, - "runtimeId" : 1042 + "runtimeId" : 127 }, { "name" : "minecraft:powered_repeater", "id" : 94, - "runtimeId" : 1000 + "runtimeId" : 73 }, { "name" : "minecraft:invisiblebedrock", "id" : 95, - "runtimeId" : 122 + "runtimeId" : 960 }, { "name" : "minecraft:trapdoor", "id" : 96, - "runtimeId" : 505 + "runtimeId" : 27 }, { "name" : "minecraft:monster_egg", "id" : 97, - "runtimeId" : 593 + "runtimeId" : 1000 }, { "name" : "minecraft:stonebrick", "id" : 98, - "runtimeId" : 659 + "runtimeId" : 953 }, { "name" : "minecraft:brown_mushroom_block", "id" : 99, - "runtimeId" : 689 + "runtimeId" : 437 }, { "name" : "minecraft:red_mushroom_block", "id" : 100, - "runtimeId" : 485 + "runtimeId" : 1062 }, { "name" : "minecraft:iron_bars", "id" : 101, - "runtimeId" : 468 + "runtimeId" : 131 }, { "name" : "minecraft:glass_pane", "id" : 102, - "runtimeId" : 937 + "runtimeId" : 792 }, { "name" : "minecraft:melon_block", "id" : 103, - "runtimeId" : 144 + "runtimeId" : 610 }, { "name" : "minecraft:pumpkin_stem", "id" : 104, - "runtimeId" : 1002 + "runtimeId" : 347 }, { "name" : "minecraft:melon_stem", "id" : 105, - "runtimeId" : 973 + "runtimeId" : 920 }, { "name" : "minecraft:vine", "id" : 106, - "runtimeId" : 1044 + "runtimeId" : 158 }, { "name" : "minecraft:fence_gate", "id" : 107, - "runtimeId" : 422 + "runtimeId" : 149 }, { "name" : "minecraft:brick_stairs", "id" : 108, - "runtimeId" : 864 + "runtimeId" : 223 }, { "name" : "minecraft:stone_brick_stairs", "id" : 109, - "runtimeId" : 27 + "runtimeId" : 449 }, { "name" : "minecraft:mycelium", "id" : 110, - "runtimeId" : 977 + "runtimeId" : 332 }, { "name" : "minecraft:waterlily", "id" : 111, - "runtimeId" : 519 + "runtimeId" : 985 }, { "name" : "minecraft:nether_brick", "id" : 112, - "runtimeId" : 978 + "runtimeId" : 155 }, { "name" : "minecraft:nether_brick_fence", "id" : 113, - "runtimeId" : 979 + "runtimeId" : 889 }, { "name" : "minecraft:nether_brick_stairs", "id" : 114, - "runtimeId" : 980 + "runtimeId" : 101 }, { "name" : "minecraft:item.nether_wart", "id" : 115, - "runtimeId" : 279 + "runtimeId" : 786 }, { "name" : "minecraft:enchanting_table", "id" : 116, - "runtimeId" : 927 + "runtimeId" : 159 }, { "name" : "minecraft:brewingstandblock", "id" : 117, - "runtimeId" : 347 + "runtimeId" : 406 }, { "name" : "minecraft:item.cauldron", "id" : 118, - "runtimeId" : 874 + "runtimeId" : 212 }, { "name" : "minecraft:end_portal", "id" : 119, - "runtimeId" : 320 + "runtimeId" : 153 }, { "name" : "minecraft:end_portal_frame", "id" : 120, - "runtimeId" : 613 + "runtimeId" : 996 }, { "name" : "minecraft:end_stone", "id" : 121, - "runtimeId" : 470 + "runtimeId" : 151 }, { "name" : "minecraft:dragon_egg", "id" : 122, - "runtimeId" : 921 + "runtimeId" : 161 }, { "name" : "minecraft:redstone_lamp", "id" : 123, - "runtimeId" : 1007 + "runtimeId" : 63 }, { "name" : "minecraft:lit_redstone_lamp", "id" : 124, - "runtimeId" : 178 + "runtimeId" : 373 }, { "name" : "minecraft:dropper", "id" : 125, - "runtimeId" : 924 + "runtimeId" : 263 }, { "name" : "minecraft:activator_rail", "id" : 126, - "runtimeId" : 294 + "runtimeId" : 248 }, { "name" : "minecraft:cocoa", "id" : 127, - "runtimeId" : 890 + "runtimeId" : 945 }, { "name" : "minecraft:sandstone_stairs", "id" : 128, - "runtimeId" : 878 + "runtimeId" : 486 }, { "name" : "minecraft:emerald_ore", "id" : 129, - "runtimeId" : 901 + "runtimeId" : 569 }, { "name" : "minecraft:ender_chest", "id" : 130, - "runtimeId" : 726 + "runtimeId" : 307 }, { "name" : "minecraft:tripwire_hook", "id" : 131, - "runtimeId" : 1037 + "runtimeId" : 774 }, { "name" : "minecraft:tripwire", "id" : 132, - "runtimeId" : 57 + "runtimeId" : 128 }, { "name" : "minecraft:emerald_block", "id" : 133, - "runtimeId" : 926 + "runtimeId" : 160 }, { "name" : "minecraft:spruce_stairs", "id" : 134, - "runtimeId" : 110 + "runtimeId" : 1045 }, { "name" : "minecraft:birch_stairs", "id" : 135, - "runtimeId" : 810 + "runtimeId" : 237 }, { "name" : "minecraft:jungle_stairs", "id" : 136, - "runtimeId" : 925 + "runtimeId" : 967 }, { "name" : "minecraft:command_block", "id" : 137, - "runtimeId" : 89 + "runtimeId" : 201 }, { "name" : "minecraft:beacon", "id" : 138, - "runtimeId" : 389 + "runtimeId" : 1002 }, { "name" : "minecraft:cobblestone_wall", "id" : 139, - "runtimeId" : 500 + "runtimeId" : 737 }, { "name" : "minecraft:item.flower_pot", "id" : 140, - "runtimeId" : 376 + "runtimeId" : 148 }, { "name" : "minecraft:carrots", "id" : 141, - "runtimeId" : 149 + "runtimeId" : 213 }, { "name" : "minecraft:potatoes", "id" : 142, - "runtimeId" : 602 + "runtimeId" : 74 }, { "name" : "minecraft:wooden_button", "id" : 143, - "runtimeId" : 1075 + "runtimeId" : 893 }, { "name" : "minecraft:item.skull", "id" : 144, - "runtimeId" : 1015 + "runtimeId" : 53 }, { "name" : "minecraft:anvil", "id" : 145, - "runtimeId" : 58 + "runtimeId" : 951 }, { "name" : "minecraft:trapped_chest", "id" : 146, - "runtimeId" : 60 + "runtimeId" : 686 }, { "name" : "minecraft:light_weighted_pressure_plate", "id" : 147, - "runtimeId" : 229 + "runtimeId" : 117 }, { "name" : "minecraft:heavy_weighted_pressure_plate", "id" : 148, - "runtimeId" : 952 + "runtimeId" : 135 }, { "name" : "minecraft:unpowered_comparator", "id" : 149, - "runtimeId" : 1041 + "runtimeId" : 599 }, { "name" : "minecraft:powered_comparator", "id" : 150, - "runtimeId" : 432 + "runtimeId" : 439 }, { "name" : "minecraft:daylight_detector", "id" : 151, - "runtimeId" : 91 + "runtimeId" : 177 }, { "name" : "minecraft:redstone_block", "id" : 152, - "runtimeId" : 582 + "runtimeId" : 369 }, { "name" : "minecraft:quartz_ore", "id" : 153, - "runtimeId" : 619 + "runtimeId" : 69 }, { "name" : "minecraft:item.hopper", "id" : 154, - "runtimeId" : 641 + "runtimeId" : 662 }, { "name" : "minecraft:quartz_block", "id" : 155, - "runtimeId" : 685 + "runtimeId" : 432 }, { "name" : "minecraft:quartz_stairs", "id" : 156, - "runtimeId" : 827 + "runtimeId" : 68 }, { "name" : "minecraft:double_wooden_slab", "id" : 157, - "runtimeId" : 237 + "runtimeId" : 162 }, { "name" : "minecraft:wooden_slab", "id" : 158, - "runtimeId" : 54 + "runtimeId" : 802 }, { "name" : "minecraft:stained_hardened_clay", "id" : 159, - "runtimeId" : 655 + "runtimeId" : 946 }, { "name" : "minecraft:stained_glass_pane", "id" : 160, - "runtimeId" : 55 + "runtimeId" : 1016 }, { "name" : "minecraft:leaves2", "id" : 161, - "runtimeId" : 453 + "runtimeId" : 603 }, { "name" : "minecraft:log2", "id" : 162, - "runtimeId" : 691 + "runtimeId" : 624 }, { "name" : "minecraft:acacia_stairs", "id" : 163, - "runtimeId" : 188 + "runtimeId" : 254 }, { "name" : "minecraft:dark_oak_stairs", "id" : 164, - "runtimeId" : 155 + "runtimeId" : 180 }, { "name" : "minecraft:slime", "id" : 165, - "runtimeId" : 710 - }, - { - "name" : "minecraft:glow_stick", - "id" : 166, - "runtimeId" : 614 + "runtimeId" : 52 }, { "name" : "minecraft:iron_trapdoor", "id" : 167, - "runtimeId" : 225 + "runtimeId" : 126 }, { "name" : "minecraft:prismarine", "id" : 168, - "runtimeId" : 297 + "runtimeId" : 612 }, { "name" : "minecraft:sealantern", "id" : 169, - "runtimeId" : 241 + "runtimeId" : 952 }, { "name" : "minecraft:hay_block", "id" : 170, - "runtimeId" : 76 + "runtimeId" : 896 }, { "name" : "minecraft:carpet", "id" : 171, - "runtimeId" : 249 + "runtimeId" : 873 }, { "name" : "minecraft:hardened_clay", "id" : 172, - "runtimeId" : 951 + "runtimeId" : 137 }, { "name" : "minecraft:coal_block", "id" : 173, - "runtimeId" : 885 + "runtimeId" : 869 }, { "name" : "minecraft:packed_ice", "id" : 174, - "runtimeId" : 892 + "runtimeId" : 849 }, { "name" : "minecraft:double_plant", "id" : 175, - "runtimeId" : 457 + "runtimeId" : 932 }, { "name" : "minecraft:standing_banner", "id" : 176, - "runtimeId" : 837 + "runtimeId" : 444 }, { "name" : "minecraft:wall_banner", "id" : 177, - "runtimeId" : 1045 + "runtimeId" : 185 }, { "name" : "minecraft:daylight_detector_inverted", "id" : 178, - "runtimeId" : 474 + "runtimeId" : 175 }, { "name" : "minecraft:red_sandstone", "id" : 179, - "runtimeId" : 336 + "runtimeId" : 977 }, { "name" : "minecraft:red_sandstone_stairs", "id" : 180, - "runtimeId" : 399 + "runtimeId" : 64 }, { "name" : "minecraft:real_double_stone_slab2", "id" : 181, - "runtimeId" : 146 + "runtimeId" : 969 }, { "name" : "minecraft:double_stone_slab2", "id" : 182, - "runtimeId" : 489 + "runtimeId" : 959 }, { "name" : "minecraft:spruce_fence_gate", "id" : 183, - "runtimeId" : 271 + "runtimeId" : 183 }, { "name" : "minecraft:birch_fence_gate", "id" : 184, - "runtimeId" : 849 + "runtimeId" : 671 }, { "name" : "minecraft:jungle_fence_gate", "id" : 185, - "runtimeId" : 248 + "runtimeId" : 121 }, { "name" : "minecraft:dark_oak_fence_gate", "id" : 186, - "runtimeId" : 811 + "runtimeId" : 690 }, { "name" : "minecraft:acacia_fence_gate", "id" : 187, - "runtimeId" : 828 + "runtimeId" : 256 }, { "name" : "minecraft:repeating_command_block", "id" : 188, - "runtimeId" : 1010 + "runtimeId" : 59 }, { "name" : "minecraft:chain_command_block", "id" : 189, - "runtimeId" : 622 + "runtimeId" : 517 }, { "name" : "minecraft:hard_glass_pane", "id" : 190, - "runtimeId" : 950 + "runtimeId" : 442 }, { "name" : "minecraft:hard_stained_glass_pane", "id" : 191, - "runtimeId" : 708 + "runtimeId" : 852 }, { "name" : "minecraft:chemical_heat", "id" : 192, - "runtimeId" : 880 + "runtimeId" : 209 }, { "name" : "minecraft:item.spruce_door", "id" : 193, - "runtimeId" : 1021 + "runtimeId" : 251 }, { "name" : "minecraft:item.birch_door", "id" : 194, - "runtimeId" : 275 + "runtimeId" : 238 }, { "name" : "minecraft:item.jungle_door", "id" : 195, - "runtimeId" : 957 + "runtimeId" : 724 }, { "name" : "minecraft:item.acacia_door", "id" : 196, - "runtimeId" : 499 + "runtimeId" : 257 }, { "name" : "minecraft:item.dark_oak_door", "id" : 197, - "runtimeId" : 25 + "runtimeId" : 182 }, { "name" : "minecraft:grass_path", "id" : 198, - "runtimeId" : 944 + "runtimeId" : 493 }, { "name" : "minecraft:item.frame", "id" : 199, - "runtimeId" : 484 + "runtimeId" : 147 }, { "name" : "minecraft:chorus_flower", "id" : 200, - "runtimeId" : 855 + "runtimeId" : 206 }, { "name" : "minecraft:purpur_block", "id" : 201, - "runtimeId" : 1 + "runtimeId" : 777 }, { "name" : "minecraft:colored_torch_rg", "id" : 202, - "runtimeId" : 424 + "runtimeId" : 452 }, { "name" : "minecraft:purpur_stairs", "id" : 203, - "runtimeId" : 832 + "runtimeId" : 480 }, { "name" : "minecraft:colored_torch_bp", "id" : 204, - "runtimeId" : 542 + "runtimeId" : 1031 }, { "name" : "minecraft:undyed_shulker_box", "id" : 205, - "runtimeId" : 696 + "runtimeId" : 1019 }, { "name" : "minecraft:end_bricks", "id" : 206, - "runtimeId" : 3 + "runtimeId" : 156 }, { "name" : "minecraft:frosted_ice", "id" : 207, - "runtimeId" : 839 + "runtimeId" : 536 }, { "name" : "minecraft:end_rod", "id" : 208, - "runtimeId" : 705 + "runtimeId" : 763 }, { "name" : "minecraft:end_gateway", "id" : 209, - "runtimeId" : 206 + "runtimeId" : 154 }, { "name" : "minecraft:allow", "id" : 210, - "runtimeId" : 833 + "runtimeId" : 617 }, { "name" : "minecraft:deny", "id" : 211, - "runtimeId" : 345 + "runtimeId" : 783 }, { "name" : "minecraft:border_block", "id" : 212, - "runtimeId" : 861 + "runtimeId" : 225 }, { "name" : "minecraft:magma", "id" : 213, - "runtimeId" : 693 + "runtimeId" : 1014 }, { "name" : "minecraft:nether_wart_block", "id" : 214, - "runtimeId" : 287 + "runtimeId" : 100 }, { "name" : "minecraft:red_nether_brick", "id" : 215, - "runtimeId" : 606 + "runtimeId" : 581 }, { "name" : "minecraft:bone_block", "id" : 216, - "runtimeId" : 860 + "runtimeId" : 451 }, { "name" : "minecraft:structure_void", "id" : 217, - "runtimeId" : 1033 + "runtimeId" : 30 }, { "name" : "minecraft:shulker_box", "id" : 218, - "runtimeId" : 341 + "runtimeId" : 872 }, { "name" : "minecraft:purple_glazed_terracotta", "id" : 219, - "runtimeId" : 1003 + "runtimeId" : 70 }, { "name" : "minecraft:white_glazed_terracotta", "id" : 220, - "runtimeId" : 1073 + "runtimeId" : 515 }, { "name" : "minecraft:orange_glazed_terracotta", "id" : 221, - "runtimeId" : 862 + "runtimeId" : 311 }, { "name" : "minecraft:magenta_glazed_terracotta", "id" : 222, - "runtimeId" : 266 + "runtimeId" : 109 }, { "name" : "minecraft:light_blue_glazed_terracotta", "id" : 223, - "runtimeId" : 102 + "runtimeId" : 282 }, { "name" : "minecraft:yellow_glazed_terracotta", "id" : 224, - "runtimeId" : 26 + "runtimeId" : 42 }, { "name" : "minecraft:lime_glazed_terracotta", "id" : 225, - "runtimeId" : 971 + "runtimeId" : 114 }, { "name" : "minecraft:pink_glazed_terracotta", "id" : 226, - "runtimeId" : 872 + "runtimeId" : 94 }, { "name" : "minecraft:gray_glazed_terracotta", "id" : 227, - "runtimeId" : 947 + "runtimeId" : 430 }, { "name" : "minecraft:silver_glazed_terracotta", "id" : 228, - "runtimeId" : 53 + "runtimeId" : 54 }, { "name" : "minecraft:cyan_glazed_terracotta", "id" : 229, - "runtimeId" : 801 + "runtimeId" : 264 }, { "name" : "minecraft:blue_glazed_terracotta", "id" : 231, - "runtimeId" : 859 + "runtimeId" : 228 }, { "name" : "minecraft:brown_glazed_terracotta", "id" : 232, - "runtimeId" : 866 + "runtimeId" : 658 }, { "name" : "minecraft:green_glazed_terracotta", "id" : 233, - "runtimeId" : 948 + "runtimeId" : 821 }, { "name" : "minecraft:red_glazed_terracotta", "id" : 234, - "runtimeId" : 1005 + "runtimeId" : 794 }, { "name" : "minecraft:black_glazed_terracotta", "id" : 235, - "runtimeId" : 758 + "runtimeId" : 230 }, { "name" : "minecraft:concrete", "id" : 236, - "runtimeId" : 629 + "runtimeId" : 966 }, { "name" : "minecraft:concrete_powder", "id" : 237, - "runtimeId" : 283 + "runtimeId" : 1008 }, { "name" : "minecraft:chemistry_table", "id" : 238, - "runtimeId" : 301 + "runtimeId" : 551 }, { "name" : "minecraft:underwater_torch", "id" : 239, - "runtimeId" : 1039 + "runtimeId" : 24 }, { "name" : "minecraft:chorus_plant", "id" : 240, - "runtimeId" : 884 + "runtimeId" : 205 }, { "name" : "minecraft:stained_glass", "id" : 241, - "runtimeId" : 370 + "runtimeId" : 580 }, { "name" : "minecraft:item.camera", "id" : 242, - "runtimeId" : 870 + "runtimeId" : 214 }, { "name" : "minecraft:podzol", "id" : 243, - "runtimeId" : 991 + "runtimeId" : 388 }, { "name" : "minecraft:item.beetroot", "id" : 244, - "runtimeId" : 208 + "runtimeId" : 239 }, { "name" : "minecraft:stonecutter", "id" : 245, - "runtimeId" : 1026 + "runtimeId" : 732 }, { "name" : "minecraft:glowingobsidian", "id" : 246, - "runtimeId" : 452 + "runtimeId" : 200 }, { "name" : "minecraft:netherreactor", "id" : 247, - "runtimeId" : 984 + "runtimeId" : 904 }, { "name" : "minecraft:info_update", "id" : 248, - "runtimeId" : 954 + "runtimeId" : 133 }, { "name" : "minecraft:info_update2", "id" : 249, - "runtimeId" : 567 + "runtimeId" : 132 }, { "name" : "minecraft:movingblock", "id" : 250, - "runtimeId" : 976 + "runtimeId" : 103 }, { "name" : "minecraft:observer", "id" : 251, - "runtimeId" : 701 + "runtimeId" : 98 }, { "name" : "minecraft:structure_block", "id" : 252, - "runtimeId" : 1032 + "runtimeId" : 31 }, { "name" : "minecraft:hard_glass", "id" : 253, - "runtimeId" : 648 + "runtimeId" : 138 }, { "name" : "minecraft:hard_stained_glass", "id" : 254, - "runtimeId" : 238 + "runtimeId" : 426 }, { "name" : "minecraft:reserved6", "id" : 255, - "runtimeId" : 334 + "runtimeId" : 295 }, { "name" : "minecraft:apple", "id" : 257, - "runtimeId" : 15 + "runtimeId" : 669 }, { "name" : "minecraft:golden_apple", "id" : 258, - "runtimeId" : 16 + "runtimeId" : 568 }, { "name" : "minecraft:enchanted_golden_apple", "id" : 259, - "runtimeId" : 23 + "runtimeId" : 574 }, { "name" : "minecraft:mushroom_stew", "id" : 260, - "runtimeId" : 10 + "runtimeId" : 614 }, { "name" : "minecraft:bread", "id" : 261, - "runtimeId" : 37 + "runtimeId" : 606 }, { "name" : "minecraft:porkchop", "id" : 262, - "runtimeId" : 33 + "runtimeId" : 615 }, { "name" : "minecraft:cooked_porkchop", "id" : 263, - "runtimeId" : 12 + "runtimeId" : 668 }, { "name" : "minecraft:cod", "id" : 264, - "runtimeId" : 43 + "runtimeId" : 935 }, { "name" : "minecraft:salmon", "id" : 265, - "runtimeId" : 49 + "runtimeId" : 576 }, { "name" : "minecraft:tropical_fish", "id" : 266, - "runtimeId" : 52 + "runtimeId" : 771 }, { "name" : "minecraft:pufferfish", "id" : 267, - "runtimeId" : 59 + "runtimeId" : 571 }, { "name" : "minecraft:cooked_cod", "id" : 268, - "runtimeId" : 0 + "runtimeId" : 338 }, { "name" : "minecraft:cooked_salmon", "id" : 269, - "runtimeId" : 66 + "runtimeId" : 632 }, { "name" : "minecraft:dried_kelp", "id" : 270, - "runtimeId" : 67 + "runtimeId" : 824 }, { "name" : "minecraft:cookie", "id" : 271, - "runtimeId" : 34 + "runtimeId" : 448 }, { "name" : "minecraft:melon_slice", "id" : 272, - "runtimeId" : 71 + "runtimeId" : 749 }, { "name" : "minecraft:beef", "id" : 273, - "runtimeId" : 47 + "runtimeId" : 654 }, { "name" : "minecraft:cooked_beef", "id" : 274, - "runtimeId" : 80 + "runtimeId" : 619 }, { "name" : "minecraft:chicken", "id" : 275, - "runtimeId" : 88 + "runtimeId" : 533 }, { "name" : "minecraft:cooked_chicken", "id" : 276, - "runtimeId" : 100 + "runtimeId" : 648 }, { "name" : "minecraft:rotten_flesh", "id" : 277, - "runtimeId" : 92 + "runtimeId" : 828 }, { "name" : "minecraft:spider_eye", "id" : 278, - "runtimeId" : 103 + "runtimeId" : 860 }, { "name" : "minecraft:carrot", "id" : 279, - "runtimeId" : 85 + "runtimeId" : 659 }, { "name" : "minecraft:potato", "id" : 280, - "runtimeId" : 19 + "runtimeId" : 524 }, { "name" : "minecraft:baked_potato", "id" : 281, - "runtimeId" : 105 + "runtimeId" : 645 }, { "name" : "minecraft:poisonous_potato", "id" : 282, - "runtimeId" : 109 + "runtimeId" : 880 }, { "name" : "minecraft:golden_carrot", "id" : 283, - "runtimeId" : 106 + "runtimeId" : 670 }, { "name" : "minecraft:pumpkin_pie", "id" : 284, - "runtimeId" : 111 + "runtimeId" : 462 }, { "name" : "minecraft:beetroot", "id" : 285, - "runtimeId" : 116 + "runtimeId" : 565 }, { "name" : "minecraft:beetroot_soup", "id" : 286, - "runtimeId" : 68 + "runtimeId" : 649 }, { "name" : "minecraft:sweet_berries", "id" : 287, - "runtimeId" : 121 + "runtimeId" : 644 }, { "name" : "minecraft:rabbit", "id" : 288, - "runtimeId" : 7 + "runtimeId" : 595 }, { "name" : "minecraft:cooked_rabbit", "id" : 289, - "runtimeId" : 39 + "runtimeId" : 739 }, { "name" : "minecraft:rabbit_stew", "id" : 290, - "runtimeId" : 123 + "runtimeId" : 655 }, { "name" : "minecraft:wheat_seeds", "id" : 291, - "runtimeId" : 124 + "runtimeId" : 626 }, { "name" : "minecraft:pumpkin_seeds", "id" : 292, - "runtimeId" : 127 + "runtimeId" : 348 }, { "name" : "minecraft:melon_seeds", "id" : 293, - "runtimeId" : 130 + "runtimeId" : 641 }, { "name" : "minecraft:nether_wart", "id" : 294, - "runtimeId" : 134 + "runtimeId" : 693 }, { "name" : "minecraft:beetroot_seeds", "id" : 295, - "runtimeId" : 136 + "runtimeId" : 535 }, { "name" : "minecraft:iron_shovel", "id" : 296, - "runtimeId" : 137 + "runtimeId" : 1005 }, { "name" : "minecraft:iron_pickaxe", "id" : 297, - "runtimeId" : 46 + "runtimeId" : 748 }, { "name" : "minecraft:iron_axe", "id" : 298, - "runtimeId" : 133 + "runtimeId" : 647 }, { "name" : "minecraft:flint_and_steel", "id" : 299, - "runtimeId" : 141 + "runtimeId" : 642 }, { "name" : "minecraft:bow", "id" : 300, - "runtimeId" : 2 + "runtimeId" : 677 }, { "name" : "minecraft:arrow", "id" : 301, - "runtimeId" : 143 + "runtimeId" : 522 }, { "name" : "minecraft:coal", "id" : 302, - "runtimeId" : 145 + "runtimeId" : 861 }, { "name" : "minecraft:charcoal", "id" : 303, - "runtimeId" : 147 + "runtimeId" : 578 }, { "name" : "minecraft:diamond", "id" : 304, - "runtimeId" : 150 + "runtimeId" : 591 }, { "name" : "minecraft:iron_ingot", "id" : 305, - "runtimeId" : 30 + "runtimeId" : 553 }, { "name" : "minecraft:gold_ingot", "id" : 306, - "runtimeId" : 28 + "runtimeId" : 584 }, { "name" : "minecraft:iron_sword", "id" : 307, - "runtimeId" : 115 + "runtimeId" : 519 }, { "name" : "minecraft:wooden_sword", "id" : 308, - "runtimeId" : 151 + "runtimeId" : 965 }, { "name" : "minecraft:wooden_shovel", "id" : 309, - "runtimeId" : 75 + "runtimeId" : 689 }, { "name" : "minecraft:wooden_pickaxe", "id" : 310, - "runtimeId" : 70 + "runtimeId" : 497 }, { "name" : "minecraft:wooden_axe", "id" : 311, - "runtimeId" : 157 + "runtimeId" : 550 }, { "name" : "minecraft:stone_sword", "id" : 312, - "runtimeId" : 101 + "runtimeId" : 666 }, { "name" : "minecraft:stone_shovel", "id" : 313, - "runtimeId" : 142 + "runtimeId" : 621 }, { "name" : "minecraft:stone_pickaxe", "id" : 314, - "runtimeId" : 161 + "runtimeId" : 534 }, { "name" : "minecraft:stone_axe", "id" : 315, - "runtimeId" : 56 + "runtimeId" : 527 }, { "name" : "minecraft:diamond_sword", "id" : 316, - "runtimeId" : 166 + "runtimeId" : 587 }, { "name" : "minecraft:diamond_shovel", "id" : 317, - "runtimeId" : 165 + "runtimeId" : 505 }, { "name" : "minecraft:diamond_pickaxe", "id" : 318, - "runtimeId" : 113 + "runtimeId" : 678 }, { "name" : "minecraft:diamond_axe", "id" : 319, - "runtimeId" : 168 + "runtimeId" : 381 }, { "name" : "minecraft:stick", "id" : 320, - "runtimeId" : 169 + "runtimeId" : 1020 }, { "name" : "minecraft:bowl", "id" : 321, - "runtimeId" : 170 + "runtimeId" : 582 }, { "name" : "minecraft:golden_sword", "id" : 322, - "runtimeId" : 172 + "runtimeId" : 541 }, { "name" : "minecraft:golden_shovel", "id" : 323, - "runtimeId" : 173 + "runtimeId" : 620 }, { "name" : "minecraft:golden_pickaxe", "id" : 324, - "runtimeId" : 177 + "runtimeId" : 758 }, { "name" : "minecraft:golden_axe", "id" : 325, - "runtimeId" : 179 + "runtimeId" : 1010 }, { "name" : "minecraft:string", "id" : 326, - "runtimeId" : 182 + "runtimeId" : 687 }, { "name" : "minecraft:feather", "id" : 327, - "runtimeId" : 183 + "runtimeId" : 363 }, { "name" : "minecraft:gunpowder", "id" : 328, - "runtimeId" : 185 + "runtimeId" : 523 }, { "name" : "minecraft:wooden_hoe", "id" : 329, - "runtimeId" : 187 + "runtimeId" : 1061 }, { "name" : "minecraft:stone_hoe", "id" : 330, - "runtimeId" : 190 + "runtimeId" : 696 }, { "name" : "minecraft:iron_hoe", "id" : 331, - "runtimeId" : 191 + "runtimeId" : 697 }, { "name" : "minecraft:diamond_hoe", "id" : 332, - "runtimeId" : 193 + "runtimeId" : 548 }, { "name" : "minecraft:golden_hoe", "id" : 333, - "runtimeId" : 194 + "runtimeId" : 700 }, { "name" : "minecraft:wheat", "id" : 334, - "runtimeId" : 196 + "runtimeId" : 717 }, { "name" : "minecraft:leather_helmet", "id" : 335, - "runtimeId" : 198 + "runtimeId" : 864 }, { "name" : "minecraft:leather_chestplate", "id" : 336, - "runtimeId" : 199 + "runtimeId" : 1074 }, { "name" : "minecraft:leather_leggings", "id" : 337, - "runtimeId" : 200 + "runtimeId" : 503 }, { "name" : "minecraft:leather_boots", "id" : 338, - "runtimeId" : 202 + "runtimeId" : 512 }, { "name" : "minecraft:chainmail_helmet", "id" : 339, - "runtimeId" : 164 + "runtimeId" : 702 }, { "name" : "minecraft:chainmail_chestplate", "id" : 340, - "runtimeId" : 205 + "runtimeId" : 706 }, { "name" : "minecraft:chainmail_leggings", "id" : 341, - "runtimeId" : 207 + "runtimeId" : 457 }, { "name" : "minecraft:chainmail_boots", "id" : 342, - "runtimeId" : 210 + "runtimeId" : 718 }, { "name" : "minecraft:iron_helmet", "id" : 343, - "runtimeId" : 214 + "runtimeId" : 425 }, { "name" : "minecraft:iron_chestplate", "id" : 344, - "runtimeId" : 217 + "runtimeId" : 518 }, { "name" : "minecraft:iron_leggings", "id" : 345, - "runtimeId" : 218 + "runtimeId" : 854 }, { "name" : "minecraft:iron_boots", "id" : 346, - "runtimeId" : 219 + "runtimeId" : 725 }, { "name" : "minecraft:diamond_helmet", "id" : 347, - "runtimeId" : 223 + "runtimeId" : 735 }, { "name" : "minecraft:diamond_chestplate", "id" : 348, - "runtimeId" : 226 + "runtimeId" : 713 }, { "name" : "minecraft:diamond_leggings", "id" : 349, - "runtimeId" : 233 + "runtimeId" : 652 }, { "name" : "minecraft:diamond_boots", "id" : 350, - "runtimeId" : 234 + "runtimeId" : 664 }, { "name" : "minecraft:golden_helmet", "id" : 351, - "runtimeId" : 235 + "runtimeId" : 665 }, { "name" : "minecraft:golden_chestplate", "id" : 352, - "runtimeId" : 240 + "runtimeId" : 736 }, { "name" : "minecraft:golden_leggings", "id" : 353, - "runtimeId" : 242 + "runtimeId" : 673 }, { "name" : "minecraft:golden_boots", "id" : 354, - "runtimeId" : 244 + "runtimeId" : 633 }, { "name" : "minecraft:shield", "id" : 355, - "runtimeId" : 246 + "runtimeId" : 741 }, { "name" : "minecraft:flint", "id" : 356, - "runtimeId" : 251 + "runtimeId" : 917 }, { "name" : "minecraft:painting", "id" : 357, - "runtimeId" : 253 + "runtimeId" : 680 }, { "name" : "minecraft:oak_sign", "id" : 358, - "runtimeId" : 255 + "runtimeId" : 747 }, { "name" : "minecraft:wooden_door", "id" : 359, - "runtimeId" : 258 + "runtimeId" : 750 }, { "name" : "minecraft:bucket", "id" : 360, - "runtimeId" : 61 + "runtimeId" : 507 }, { "name" : "minecraft:milk_bucket", "id" : 361, - "runtimeId" : 259 + "runtimeId" : 731 }, { "name" : "minecraft:water_bucket", "id" : 362, - "runtimeId" : 260 + "runtimeId" : 819 }, { "name" : "minecraft:lava_bucket", "id" : 363, - "runtimeId" : 265 + "runtimeId" : 530 }, { "name" : "minecraft:cod_bucket", "id" : 364, - "runtimeId" : 268 + "runtimeId" : 643 }, { "name" : "minecraft:salmon_bucket", "id" : 365, - "runtimeId" : 163 + "runtimeId" : 561 }, { "name" : "minecraft:tropical_fish_bucket", "id" : 366, - "runtimeId" : 272 + "runtimeId" : 751 }, { "name" : "minecraft:pufferfish_bucket", "id" : 367, - "runtimeId" : 274 + "runtimeId" : 514 }, { "name" : "minecraft:powder_snow_bucket", "id" : 368, - "runtimeId" : 278 + "runtimeId" : 675 }, { "name" : "minecraft:axolotl_bucket", "id" : 369, - "runtimeId" : 280 + "runtimeId" : 502 }, { "name" : "minecraft:minecart", "id" : 370, - "runtimeId" : 284 + "runtimeId" : 566 }, { "name" : "minecraft:saddle", "id" : 371, - "runtimeId" : 285 + "runtimeId" : 754 }, { "name" : "minecraft:iron_door", "id" : 372, - "runtimeId" : 289 + "runtimeId" : 575 }, { "name" : "minecraft:redstone", "id" : 373, - "runtimeId" : 290 + "runtimeId" : 1070 }, { "name" : "minecraft:snowball", "id" : 374, - "runtimeId" : 213 + "runtimeId" : 636 }, { "name" : "minecraft:oak_boat", "id" : 375, - "runtimeId" : 293 + "runtimeId" : 683 }, { "name" : "minecraft:birch_boat", "id" : 376, - "runtimeId" : 295 + "runtimeId" : 630 }, { "name" : "minecraft:jungle_boat", "id" : 377, - "runtimeId" : 298 + "runtimeId" : 815 }, { "name" : "minecraft:spruce_boat", "id" : 378, - "runtimeId" : 302 + "runtimeId" : 759 }, { "name" : "minecraft:acacia_boat", "id" : 379, - "runtimeId" : 303 + "runtimeId" : 894 }, { "name" : "minecraft:dark_oak_boat", "id" : 380, - "runtimeId" : 304 + "runtimeId" : 770 }, { "name" : "minecraft:leather", "id" : 381, - "runtimeId" : 305 + "runtimeId" : 832 }, { "name" : "minecraft:kelp", "id" : 382, - "runtimeId" : 309 + "runtimeId" : 772 }, { "name" : "minecraft:brick", "id" : 383, - "runtimeId" : 311 + "runtimeId" : 495 }, { "name" : "minecraft:clay_ball", "id" : 384, - "runtimeId" : 312 + "runtimeId" : 494 }, { "name" : "minecraft:sugar_cane", "id" : 385, - "runtimeId" : 314 + "runtimeId" : 491 }, { "name" : "minecraft:paper", "id" : 386, - "runtimeId" : 317 + "runtimeId" : 549 }, { "name" : "minecraft:book", "id" : 387, - "runtimeId" : 319 + "runtimeId" : 539 }, { "name" : "minecraft:slime_ball", "id" : 388, - "runtimeId" : 322 + "runtimeId" : 769 }, { "name" : "minecraft:chest_minecart", "id" : 389, - "runtimeId" : 323 + "runtimeId" : 490 }, { "name" : "minecraft:egg", "id" : 390, - "runtimeId" : 325 + "runtimeId" : 354 }, { "name" : "minecraft:compass", "id" : 391, - "runtimeId" : 329 + "runtimeId" : 489 }, { "name" : "minecraft:fishing_rod", "id" : 392, - "runtimeId" : 331 + "runtimeId" : 983 }, { "name" : "minecraft:clock", "id" : 393, - "runtimeId" : 335 + "runtimeId" : 709 }, { "name" : "minecraft:glowstone_dust", "id" : 394, - "runtimeId" : 338 + "runtimeId" : 485 }, { "name" : "minecraft:black_dye", "id" : 395, - "runtimeId" : 339 + "runtimeId" : 415 }, { "name" : "minecraft:red_dye", "id" : 396, - "runtimeId" : 263 + "runtimeId" : 660 }, { "name" : "minecraft:green_dye", "id" : 397, - "runtimeId" : 342 + "runtimeId" : 1011 }, { "name" : "minecraft:brown_dye", "id" : 398, - "runtimeId" : 346 + "runtimeId" : 738 }, { "name" : "minecraft:blue_dye", "id" : 399, - "runtimeId" : 349 + "runtimeId" : 479 }, { "name" : "minecraft:purple_dye", "id" : 400, - "runtimeId" : 350 + "runtimeId" : 474 }, { "name" : "minecraft:cyan_dye", "id" : 401, - "runtimeId" : 354 + "runtimeId" : 532 }, { "name" : "minecraft:light_gray_dye", "id" : 402, - "runtimeId" : 356 + "runtimeId" : 472 }, { "name" : "minecraft:gray_dye", "id" : 403, - "runtimeId" : 359 + "runtimeId" : 469 }, { "name" : "minecraft:pink_dye", "id" : 404, - "runtimeId" : 361 + "runtimeId" : 1028 }, { "name" : "minecraft:lime_dye", "id" : 405, - "runtimeId" : 362 + "runtimeId" : 672 }, { "name" : "minecraft:yellow_dye", "id" : 406, - "runtimeId" : 363 + "runtimeId" : 583 }, { "name" : "minecraft:light_blue_dye", "id" : 407, - "runtimeId" : 368 + "runtimeId" : 589 }, { "name" : "minecraft:magenta_dye", "id" : 408, - "runtimeId" : 195 + "runtimeId" : 585 }, { "name" : "minecraft:orange_dye", "id" : 409, - "runtimeId" : 371 + "runtimeId" : 409 }, { "name" : "minecraft:white_dye", "id" : 410, - "runtimeId" : 374 + "runtimeId" : 775 }, { "name" : "minecraft:bone_meal", "id" : 411, - "runtimeId" : 375 + "runtimeId" : 461 }, { "name" : "minecraft:cocoa_beans", "id" : 412, - "runtimeId" : 51 + "runtimeId" : 538 }, { "name" : "minecraft:ink_sac", "id" : 413, - "runtimeId" : 378 + "runtimeId" : 766 }, { "name" : "minecraft:lapis_lazuli", "id" : 414, - "runtimeId" : 382 + "runtimeId" : 727 }, { "name" : "minecraft:bone", "id" : 415, - "runtimeId" : 264 + "runtimeId" : 753 }, { "name" : "minecraft:sugar", "id" : 416, - "runtimeId" : 385 + "runtimeId" : 466 }, { "name" : "minecraft:cake", "id" : 417, - "runtimeId" : 388 + "runtimeId" : 459 }, { "name" : "minecraft:bed", "id" : 418, - "runtimeId" : 369 + "runtimeId" : 458 }, { "name" : "minecraft:repeater", "id" : 419, - "runtimeId" : 390 + "runtimeId" : 1015 }, { "name" : "minecraft:filled_map", "id" : 420, - "runtimeId" : 393 + "runtimeId" : 399 }, { "name" : "minecraft:shears", "id" : 421, - "runtimeId" : 396 + "runtimeId" : 622 }, { "name" : "minecraft:ender_pearl", "id" : 422, - "runtimeId" : 397 + "runtimeId" : 416 }, { "name" : "minecraft:blaze_rod", "id" : 423, - "runtimeId" : 355 + "runtimeId" : 787 }, { "name" : "minecraft:ghast_tear", "id" : 424, - "runtimeId" : 400 + "runtimeId" : 450 }, { "name" : "minecraft:gold_nugget", "id" : 425, - "runtimeId" : 310 + "runtimeId" : 441 }, { "name" : "minecraft:potion", "id" : 426, - "runtimeId" : 87 + "runtimeId" : 438 }, { "name" : "minecraft:glass_bottle", "id" : 427, - "runtimeId" : 401 + "runtimeId" : 374 }, { "name" : "minecraft:fermented_spider_eye", "id" : 428, - "runtimeId" : 407 + "runtimeId" : 634 }, { "name" : "minecraft:blaze_powder", "id" : 429, - "runtimeId" : 409 + "runtimeId" : 440 }, { "name" : "minecraft:magma_cream", "id" : 430, - "runtimeId" : 411 + "runtimeId" : 454 }, { "name" : "minecraft:brewing_stand", "id" : 431, - "runtimeId" : 412 + "runtimeId" : 597 }, { "name" : "minecraft:cauldron", "id" : 432, - "runtimeId" : 415 + "runtimeId" : 743 }, { "name" : "minecraft:ender_eye", "id" : 433, - "runtimeId" : 221 + "runtimeId" : 651 }, { "name" : "minecraft:glistering_melon_slice", "id" : 434, - "runtimeId" : 201 + "runtimeId" : 446 }, { "name" : "minecraft:chicken_spawn_egg", "id" : 435, - "runtimeId" : 416 + "runtimeId" : 564 }, { "name" : "minecraft:cow_spawn_egg", "id" : 436, - "runtimeId" : 324 + "runtimeId" : 423 }, { "name" : "minecraft:pig_spawn_egg", "id" : 437, - "runtimeId" : 417 + "runtimeId" : 456 }, { "name" : "minecraft:sheep_spawn_egg", "id" : 438, - "runtimeId" : 418 + "runtimeId" : 421 }, { "name" : "minecraft:wolf_spawn_egg", "id" : 439, - "runtimeId" : 282 + "runtimeId" : 991 }, { "name" : "minecraft:mooshroom_spawn_egg", "id" : 440, - "runtimeId" : 419 + "runtimeId" : 638 }, { "name" : "minecraft:creeper_spawn_egg", "id" : 441, - "runtimeId" : 387 + "runtimeId" : 956 }, { "name" : "minecraft:enderman_spawn_egg", "id" : 442, - "runtimeId" : 5 + "runtimeId" : 417 }, { "name" : "minecraft:silverfish_spawn_egg", "id" : 443, - "runtimeId" : 300 + "runtimeId" : 410 }, { "name" : "minecraft:skeleton_spawn_egg", "id" : 444, - "runtimeId" : 421 + "runtimeId" : 931 }, { "name" : "minecraft:slime_spawn_egg", "id" : 445, - "runtimeId" : 31 + "runtimeId" : 404 }, { "name" : "minecraft:spider_spawn_egg", "id" : 446, - "runtimeId" : 426 + "runtimeId" : 504 }, { "name" : "minecraft:zombie_spawn_egg", "id" : 447, - "runtimeId" : 428 + "runtimeId" : 508 }, { "name" : "minecraft:zombie_pigman_spawn_egg", "id" : 448, - "runtimeId" : 160 + "runtimeId" : 629 }, { "name" : "minecraft:villager_spawn_egg", "id" : 449, - "runtimeId" : 429 + "runtimeId" : 403 }, { "name" : "minecraft:squid_spawn_egg", "id" : 450, - "runtimeId" : 430 + "runtimeId" : 752 }, { "name" : "minecraft:ocelot_spawn_egg", "id" : 451, - "runtimeId" : 332 + "runtimeId" : 511 }, { "name" : "minecraft:witch_spawn_egg", "id" : 452, - "runtimeId" : 95 + "runtimeId" : 608 }, { "name" : "minecraft:bat_spawn_egg", "id" : 453, - "runtimeId" : 433 + "runtimeId" : 593 }, { "name" : "minecraft:ghast_spawn_egg", "id" : 454, - "runtimeId" : 434 + "runtimeId" : 400 }, { "name" : "minecraft:magma_cube_spawn_egg", "id" : 455, - "runtimeId" : 439 + "runtimeId" : 975 }, { "name" : "minecraft:blaze_spawn_egg", "id" : 456, - "runtimeId" : 48 + "runtimeId" : 396 }, { "name" : "minecraft:cave_spider_spawn_egg", "id" : 457, - "runtimeId" : 443 + "runtimeId" : 394 }, { "name" : "minecraft:horse_spawn_egg", "id" : 458, - "runtimeId" : 104 + "runtimeId" : 839 }, { "name" : "minecraft:rabbit_spawn_egg", "id" : 459, - "runtimeId" : 360 + "runtimeId" : 427 }, { "name" : "minecraft:endermite_spawn_egg", "id" : 460, - "runtimeId" : 444 + "runtimeId" : 799 }, { "name" : "minecraft:guardian_spawn_egg", "id" : 461, - "runtimeId" : 445 + "runtimeId" : 390 }, { "name" : "minecraft:stray_spawn_egg", "id" : 462, - "runtimeId" : 148 + "runtimeId" : 555 }, { "name" : "minecraft:husk_spawn_egg", "id" : 463, - "runtimeId" : 447 + "runtimeId" : 387 }, { "name" : "minecraft:wither_skeleton_spawn_egg", "id" : 464, - "runtimeId" : 450 + "runtimeId" : 559 }, { "name" : "minecraft:donkey_spawn_egg", "id" : 465, - "runtimeId" : 455 + "runtimeId" : 567 }, { "name" : "minecraft:mule_spawn_egg", "id" : 466, - "runtimeId" : 456 + "runtimeId" : 639 }, { "name" : "minecraft:skeleton_horse_spawn_egg", "id" : 467, - "runtimeId" : 458 + "runtimeId" : 988 }, { "name" : "minecraft:zombie_horse_spawn_egg", "id" : 468, - "runtimeId" : 462 + "runtimeId" : 841 }, { "name" : "minecraft:shulker_spawn_egg", "id" : 469, - "runtimeId" : 262 + "runtimeId" : 383 }, { "name" : "minecraft:npc_spawn_egg", "id" : 470, - "runtimeId" : 464 + "runtimeId" : 611 }, { "name" : "minecraft:elder_guardian_spawn_egg", "id" : 471, - "runtimeId" : 291 + "runtimeId" : 628 }, { "name" : "minecraft:polar_bear_spawn_egg", "id" : 472, - "runtimeId" : 466 + "runtimeId" : 921 }, { "name" : "minecraft:llama_spawn_egg", "id" : 473, - "runtimeId" : 469 + "runtimeId" : 814 }, { "name" : "minecraft:vindicator_spawn_egg", "id" : 474, - "runtimeId" : 267 + "runtimeId" : 558 }, { "name" : "minecraft:evoker_spawn_egg", "id" : 475, - "runtimeId" : 277 + "runtimeId" : 372 }, { "name" : "minecraft:vex_spawn_egg", "id" : 476, - "runtimeId" : 471 + "runtimeId" : 371 }, { "name" : "minecraft:zombie_villager_spawn_egg", "id" : 477, - "runtimeId" : 476 + "runtimeId" : 722 }, { "name" : "minecraft:parrot_spawn_egg", "id" : 478, - "runtimeId" : 281 + "runtimeId" : 360 }, { "name" : "minecraft:tropical_fish_spawn_egg", "id" : 479, - "runtimeId" : 479 + "runtimeId" : 528 }, { "name" : "minecraft:cod_spawn_egg", "id" : 480, - "runtimeId" : 482 + "runtimeId" : 767 }, { "name" : "minecraft:pufferfish_spawn_egg", "id" : 481, - "runtimeId" : 486 + "runtimeId" : 384 }, { "name" : "minecraft:salmon_spawn_egg", "id" : 482, - "runtimeId" : 488 + "runtimeId" : 367 }, { "name" : "minecraft:drowned_spawn_egg", "id" : 483, - "runtimeId" : 395 + "runtimeId" : 366 }, { "name" : "minecraft:dolphin_spawn_egg", "id" : 484, - "runtimeId" : 490 + "runtimeId" : 1038 }, { "name" : "minecraft:turtle_spawn_egg", "id" : 485, - "runtimeId" : 493 + "runtimeId" : 471 }, { "name" : "minecraft:phantom_spawn_egg", "id" : 486, - "runtimeId" : 494 + "runtimeId" : 979 }, { "name" : "minecraft:agent_spawn_egg", "id" : 487, - "runtimeId" : 250 + "runtimeId" : 470 }, { "name" : "minecraft:cat_spawn_egg", "id" : 488, - "runtimeId" : 498 + "runtimeId" : 1035 }, { "name" : "minecraft:panda_spawn_egg", "id" : 489, - "runtimeId" : 189 + "runtimeId" : 357 }, { "name" : "minecraft:fox_spawn_egg", "id" : 490, - "runtimeId" : 501 + "runtimeId" : 543 }, { "name" : "minecraft:pillager_spawn_egg", "id" : 491, - "runtimeId" : 45 + "runtimeId" : 435 }, { "name" : "minecraft:wandering_trader_spawn_egg", "id" : 492, - "runtimeId" : 504 + "runtimeId" : 572 }, { "name" : "minecraft:ravager_spawn_egg", "id" : 493, - "runtimeId" : 11 + "runtimeId" : 804 }, { "name" : "minecraft:bee_spawn_egg", "id" : 494, - "runtimeId" : 343 + "runtimeId" : 460 }, { "name" : "minecraft:strider_spawn_egg", "id" : 495, - "runtimeId" : 86 + "runtimeId" : 405 }, { "name" : "minecraft:hoglin_spawn_egg", "id" : 496, - "runtimeId" : 506 + "runtimeId" : 492 }, { "name" : "minecraft:piglin_spawn_egg", "id" : 497, - "runtimeId" : 448 + "runtimeId" : 596 }, { "name" : "minecraft:zoglin_spawn_egg", "id" : 498, - "runtimeId" : 140 + "runtimeId" : 350 }, { "name" : "minecraft:piglin_brute_spawn_egg", "id" : 499, - "runtimeId" : 357 + "runtimeId" : 413 }, { "name" : "minecraft:axolotl_spawn_egg", "id" : 500, - "runtimeId" : 232 + "runtimeId" : 346 }, { "name" : "minecraft:goat_spawn_egg", "id" : 501, - "runtimeId" : 507 + "runtimeId" : 340 }, { "name" : "minecraft:glow_squid_spawn_egg", "id" : 502, - "runtimeId" : 41 + "runtimeId" : 605 }, { "name" : "minecraft:glow_ink_sac", "id" : 503, - "runtimeId" : 509 + "runtimeId" : 764 }, { "name" : "minecraft:copper_ingot", "id" : 504, - "runtimeId" : 510 + "runtimeId" : 925 }, { "name" : "minecraft:raw_iron", "id" : 505, - "runtimeId" : 132 + "runtimeId" : 788 }, { "name" : "minecraft:raw_gold", "id" : 506, - "runtimeId" : 158 + "runtimeId" : 789 }, { "name" : "minecraft:raw_copper", "id" : 507, - "runtimeId" : 530 + "runtimeId" : 791 }, { "name" : "minecraft:experience_bottle", "id" : 508, - "runtimeId" : 531 + "runtimeId" : 650 }, { "name" : "minecraft:fire_charge", "id" : 509, - "runtimeId" : 525 + "runtimeId" : 793 }, { "name" : "minecraft:writable_book", "id" : 510, - "runtimeId" : 532 + "runtimeId" : 797 }, { "name" : "minecraft:written_book", "id" : 511, - "runtimeId" : 307 + "runtimeId" : 420 }, { "name" : "minecraft:emerald", "id" : 512, - "runtimeId" : 534 + "runtimeId" : 800 }, { "name" : "minecraft:frame", "id" : 513, - "runtimeId" : 348 + "runtimeId" : 801 }, { "name" : "minecraft:flower_pot", "id" : 514, - "runtimeId" : 536 + "runtimeId" : 803 }, { "name" : "minecraft:empty_map", "id" : 515, - "runtimeId" : 538 + "runtimeId" : 807 }, { "name" : "minecraft:skull", "id" : 516, - "runtimeId" : 539 + "runtimeId" : 531 }, { "name" : "minecraft:carrot_on_a_stick", "id" : 517, - "runtimeId" : 503 + "runtimeId" : 808 }, { "name" : "minecraft:nether_star", "id" : 518, - "runtimeId" : 22 + "runtimeId" : 810 }, { "name" : "minecraft:firework_rocket", "id" : 519, - "runtimeId" : 540 + "runtimeId" : 812 }, { "name" : "minecraft:firework_star", "id" : 520, - "runtimeId" : 543 + "runtimeId" : 1042 }, { "name" : "minecraft:enchanted_book", "id" : 521, - "runtimeId" : 545 + "runtimeId" : 785 }, { "name" : "minecraft:comparator", "id" : 522, - "runtimeId" : 83 + "runtimeId" : 818 }, { "name" : "minecraft:netherbrick", "id" : 523, - "runtimeId" : 547 + "runtimeId" : 729 }, { "name" : "minecraft:quartz", "id" : 524, - "runtimeId" : 502 + "runtimeId" : 546 }, { "name" : "minecraft:tnt_minecart", "id" : 525, - "runtimeId" : 549 + "runtimeId" : 820 }, { "name" : "minecraft:hopper_minecart", "id" : 526, - "runtimeId" : 550 + "runtimeId" : 822 }, { "name" : "minecraft:hopper", "id" : 527, - "runtimeId" : 552 + "runtimeId" : 826 }, { "name" : "minecraft:rabbit_foot", "id" : 528, - "runtimeId" : 99 + "runtimeId" : 908 }, { "name" : "minecraft:rabbit_hide", "id" : 529, - "runtimeId" : 554 + "runtimeId" : 827 }, { "name" : "minecraft:leather_horse_armor", "id" : 530, - "runtimeId" : 555 + "runtimeId" : 830 }, { "name" : "minecraft:iron_horse_armor", "id" : 531, - "runtimeId" : 556 + "runtimeId" : 395 }, { "name" : "minecraft:golden_horse_armor", "id" : 532, - "runtimeId" : 17 + "runtimeId" : 352 }, { "name" : "minecraft:diamond_horse_armor", "id" : 533, - "runtimeId" : 557 + "runtimeId" : 721 }, { "name" : "minecraft:music_disc_13", "id" : 534, - "runtimeId" : 353 + "runtimeId" : 554 }, { "name" : "minecraft:music_disc_cat", "id" : 535, - "runtimeId" : 560 + "runtimeId" : 728 }, { "name" : "minecraft:music_disc_blocks", "id" : 536, - "runtimeId" : 561 + "runtimeId" : 995 }, { "name" : "minecraft:music_disc_chirp", "id" : 537, - "runtimeId" : 38 + "runtimeId" : 833 }, { "name" : "minecraft:music_disc_far", "id" : 538, - "runtimeId" : 563 + "runtimeId" : 998 }, { "name" : "minecraft:music_disc_mall", "id" : 539, - "runtimeId" : 154 + "runtimeId" : 823 }, { "name" : "minecraft:music_disc_mellohi", "id" : 540, - "runtimeId" : 564 + "runtimeId" : 412 }, { "name" : "minecraft:music_disc_stal", "id" : 541, - "runtimeId" : 327 + "runtimeId" : 836 }, { "name" : "minecraft:music_disc_strad", "id" : 542, - "runtimeId" : 119 + "runtimeId" : 838 }, { "name" : "minecraft:music_disc_ward", "id" : 543, - "runtimeId" : 4 + "runtimeId" : 842 }, { "name" : "minecraft:music_disc_11", "id" : 544, - "runtimeId" : 276 + "runtimeId" : 809 }, { "name" : "minecraft:music_disc_wait", "id" : 545, - "runtimeId" : 257 + "runtimeId" : 846 }, { "name" : "minecraft:trident", "id" : 546, - "runtimeId" : 321 + "runtimeId" : 881 }, { "name" : "minecraft:lead", "id" : 547, - "runtimeId" : 566 + "runtimeId" : 711 }, { "name" : "minecraft:name_tag", "id" : 548, - "runtimeId" : 386 + "runtimeId" : 481 }, { "name" : "minecraft:prismarine_crystals", "id" : 549, - "runtimeId" : 565 + "runtimeId" : 813 }, { "name" : "minecraft:mutton", "id" : 550, - "runtimeId" : 523 + "runtimeId" : 848 }, { "name" : "minecraft:cooked_mutton", "id" : 551, - "runtimeId" : 403 + "runtimeId" : 740 }, { "name" : "minecraft:armor_stand", "id" : 552, - "runtimeId" : 570 + "runtimeId" : 376 }, { "name" : "minecraft:spruce_door", "id" : 553, - "runtimeId" : 572 + "runtimeId" : 602 }, { "name" : "minecraft:birch_door", "id" : 554, - "runtimeId" : 573 + "runtimeId" : 465 }, { "name" : "minecraft:jungle_door", "id" : 555, - "runtimeId" : 559 + "runtimeId" : 475 }, { "name" : "minecraft:acacia_door", "id" : 556, - "runtimeId" : 574 + "runtimeId" : 1066 }, { "name" : "minecraft:dark_oak_door", "id" : 557, - "runtimeId" : 577 + "runtimeId" : 761 }, { "name" : "minecraft:chorus_fruit", "id" : 558, - "runtimeId" : 380 + "runtimeId" : 999 }, { "name" : "minecraft:popped_chorus_fruit", "id" : 559, - "runtimeId" : 578 + "runtimeId" : 557 }, { "name" : "minecraft:dragon_breath", "id" : 560, - "runtimeId" : 551 + "runtimeId" : 855 }, { "name" : "minecraft:splash_potion", "id" : 561, - "runtimeId" : 580 + "runtimeId" : 856 }, { "name" : "minecraft:lingering_potion", "id" : 562, - "runtimeId" : 98 + "runtimeId" : 377 }, { "name" : "minecraft:command_block_minecart", "id" : 563, - "runtimeId" : 129 + "runtimeId" : 857 }, { "name" : "minecraft:elytra", "id" : 564, - "runtimeId" : 176 + "runtimeId" : 865 }, { "name" : "minecraft:prismarine_shard", "id" : 565, - "runtimeId" : 517 + "runtimeId" : 867 }, { "name" : "minecraft:shulker_shell", "id" : 566, - "runtimeId" : 581 + "runtimeId" : 637 }, { "name" : "minecraft:banner", "id" : 567, - "runtimeId" : 583 + "runtimeId" : 1057 }, { "name" : "minecraft:totem_of_undying", "id" : 568, - "runtimeId" : 546 + "runtimeId" : 870 }, { "name" : "minecraft:iron_nugget", "id" : 569, - "runtimeId" : 584 + "runtimeId" : 874 }, { "name" : "minecraft:nautilus_shell", "id" : 570, - "runtimeId" : 74 + "runtimeId" : 878 }, { "name" : "minecraft:heart_of_the_sea", "id" : 571, - "runtimeId" : 252 + "runtimeId" : 556 }, { "name" : "minecraft:scute", "id" : 572, - "runtimeId" : 32 + "runtimeId" : 882 }, { "name" : "minecraft:turtle_helmet", "id" : 573, - "runtimeId" : 377 + "runtimeId" : 884 }, { "name" : "minecraft:phantom_membrane", "id" : 574, - "runtimeId" : 571 + "runtimeId" : 886 }, { "name" : "minecraft:crossbow", "id" : 575, - "runtimeId" : 292 + "runtimeId" : 829 }, { "name" : "minecraft:spruce_sign", "id" : 576, - "runtimeId" : 454 + "runtimeId" : 888 }, { "name" : "minecraft:birch_sign", "id" : 577, - "runtimeId" : 587 + "runtimeId" : 795 }, { "name" : "minecraft:jungle_sign", "id" : 578, - "runtimeId" : 590 + "runtimeId" : 776 }, { "name" : "minecraft:acacia_sign", "id" : 579, - "runtimeId" : 568 + "runtimeId" : 891 }, { "name" : "minecraft:dark_oak_sign", "id" : 580, - "runtimeId" : 591 + "runtimeId" : 805 }, { "name" : "minecraft:flower_banner_pattern", "id" : 581, - "runtimeId" : 592 + "runtimeId" : 892 }, { "name" : "minecraft:creeper_banner_pattern", "id" : 582, - "runtimeId" : 8 + "runtimeId" : 895 }, { "name" : "minecraft:skull_banner_pattern", "id" : 583, - "runtimeId" : 186 + "runtimeId" : 635 }, { "name" : "minecraft:mojang_banner_pattern", "id" : 584, - "runtimeId" : 594 + "runtimeId" : 607 }, { "name" : "minecraft:field_masoned_banner_pattern", "id" : 585, - "runtimeId" : 596 + "runtimeId" : 897 }, { "name" : "minecraft:bordure_indented_banner_pattern", "id" : 586, - "runtimeId" : 599 + "runtimeId" : 862 }, { "name" : "minecraft:piglin_banner_pattern", "id" : 587, - "runtimeId" : 601 + "runtimeId" : 588 }, { "name" : "minecraft:campfire", "id" : 588, - "runtimeId" : 97 + "runtimeId" : 968 }, { "name" : "minecraft:suspicious_stew", "id" : 589, - "runtimeId" : 384 + "runtimeId" : 463 }, { "name" : "minecraft:honeycomb", "id" : 590, - "runtimeId" : 604 + "runtimeId" : 1001 }, { "name" : "minecraft:honey_bottle", "id" : 591, - "runtimeId" : 605 + "runtimeId" : 510 }, { "name" : "minecraft:camera", "id" : 592, - "runtimeId" : 379 + "runtimeId" : 653 }, { "name" : "minecraft:compound", "id" : 593, - "runtimeId" : 608 + "runtimeId" : 898 }, { "name" : "minecraft:ice_bomb", "id" : 594, - "runtimeId" : 609 + "runtimeId" : 899 }, { "name" : "minecraft:bleach", "id" : 595, - "runtimeId" : 425 + "runtimeId" : 392 }, { "name" : "minecraft:rapid_fertilizer", "id" : 596, - "runtimeId" : 478 + "runtimeId" : 879 }, { "name" : "minecraft:balloon", "id" : 597, - "runtimeId" : 589 + "runtimeId" : 853 }, { "name" : "minecraft:medicine", "id" : 598, - "runtimeId" : 610 + "runtimeId" : 901 }, { "name" : "minecraft:sparkler", "id" : 599, - "runtimeId" : 63 + "runtimeId" : 902 }, { - "name" : "minecraft:lodestone_compass", + "name" : "minecraft:glow_stick", "id" : 600, - "runtimeId" : 616 + "runtimeId" : 429 }, { - "name" : "minecraft:netherite_ingot", + "name" : "minecraft:lodestone_compass", "id" : 601, - "runtimeId" : 315 + "runtimeId" : 909 }, { - "name" : "minecraft:netherite_sword", + "name" : "minecraft:netherite_ingot", "id" : 602, - "runtimeId" : 326 + "runtimeId" : 911 }, { - "name" : "minecraft:netherite_shovel", + "name" : "minecraft:netherite_sword", "id" : 603, - "runtimeId" : 618 + "runtimeId" : 912 }, { - "name" : "minecraft:netherite_pickaxe", + "name" : "minecraft:netherite_shovel", "id" : 604, - "runtimeId" : 460 + "runtimeId" : 914 }, { - "name" : "minecraft:netherite_axe", + "name" : "minecraft:netherite_pickaxe", "id" : 605, - "runtimeId" : 623 + "runtimeId" : 487 }, { - "name" : "minecraft:netherite_hoe", + "name" : "minecraft:netherite_axe", "id" : 606, - "runtimeId" : 624 + "runtimeId" : 916 }, { - "name" : "minecraft:netherite_helmet", + "name" : "minecraft:netherite_hoe", "id" : 607, - "runtimeId" : 627 + "runtimeId" : 918 }, { - "name" : "minecraft:netherite_chestplate", + "name" : "minecraft:netherite_helmet", "id" : 608, - "runtimeId" : 392 + "runtimeId" : 586 }, { - "name" : "minecraft:netherite_leggings", + "name" : "minecraft:netherite_chestplate", "id" : 609, - "runtimeId" : 576 + "runtimeId" : 922 }, { - "name" : "minecraft:netherite_boots", + "name" : "minecraft:netherite_leggings", "id" : 610, - "runtimeId" : 153 + "runtimeId" : 844 }, { - "name" : "minecraft:netherite_scrap", + "name" : "minecraft:netherite_boots", "id" : 611, - "runtimeId" : 628 + "runtimeId" : 958 }, { - "name" : "minecraft:crimson_sign", + "name" : "minecraft:netherite_scrap", "id" : 612, - "runtimeId" : 630 + "runtimeId" : 923 }, { - "name" : "minecraft:warped_sign", + "name" : "minecraft:crimson_sign", "id" : 613, - "runtimeId" : 436 + "runtimeId" : 695 }, { - "name" : "minecraft:crimson_door", + "name" : "minecraft:warped_sign", "id" : 614, - "runtimeId" : 631 + "runtimeId" : 431 }, { - "name" : "minecraft:warped_door", + "name" : "minecraft:crimson_door", "id" : 615, - "runtimeId" : 64 + "runtimeId" : 924 }, { - "name" : "minecraft:warped_fungus_on_a_stick", + "name" : "minecraft:warped_door", "id" : 616, - "runtimeId" : 441 + "runtimeId" : 520 }, { - "name" : "minecraft:chain", + "name" : "minecraft:warped_fungus_on_a_stick", "id" : 617, - "runtimeId" : 438 + "runtimeId" : 926 }, { - "name" : "minecraft:music_disc_pigstep", + "name" : "minecraft:chain", "id" : 618, - "runtimeId" : 222 + "runtimeId" : 927 }, { - "name" : "minecraft:nether_sprouts", + "name" : "minecraft:music_disc_pigstep", "id" : 619, - "runtimeId" : 633 + "runtimeId" : 837 }, { - "name" : "minecraft:soul_campfire", + "name" : "minecraft:nether_sprouts", "id" : 620, - "runtimeId" : 442 + "runtimeId" : 883 }, { - "name" : "minecraft:glow_frame", + "name" : "minecraft:soul_campfire", "id" : 621, - "runtimeId" : 197 + "runtimeId" : 930 }, { - "name" : "minecraft:goat_horn", + "name" : "minecraft:glow_frame", "id" : 622, - "runtimeId" : 638 + "runtimeId" : 500 }, { - "name" : "minecraft:amethyst_shard", + "name" : "minecraft:goat_horn", "id" : 623, - "runtimeId" : 651 + "runtimeId" : 760 }, { - "name" : "minecraft:spyglass", + "name" : "minecraft:amethyst_shard", "id" : 624, - "runtimeId" : 646 + "runtimeId" : 937 }, { - "name" : "minecraft:boat", + "name" : "minecraft:spyglass", "id" : 625, - "runtimeId" : 819 + "runtimeId" : 391 }, { - "name" : "minecraft:dye", + "name" : "minecraft:music_disc_otherside", "id" : 626, - "runtimeId" : 352 + "runtimeId" : 938 }, { - "name" : "minecraft:banner_pattern", + "name" : "minecraft:boat", "id" : 627, - "runtimeId" : 820 + "runtimeId" : 265 }, { - "name" : "minecraft:spawn_egg", + "name" : "minecraft:dye", "id" : 628, - "runtimeId" : 131 + "runtimeId" : 262 }, { - "name" : "minecraft:end_crystal", + "name" : "minecraft:banner_pattern", "id" : 629, - "runtimeId" : 821 + "runtimeId" : 261 }, { - "name" : "minecraft:glow_berries", + "name" : "minecraft:spawn_egg", "id" : 630, - "runtimeId" : 823 + "runtimeId" : 260 + }, + { + "name" : "minecraft:end_crystal", + "id" : 631, + "runtimeId" : 1009 + }, + { + "name" : "minecraft:glow_berries", + "id" : 632, + "runtimeId" : 258 } ] \ No newline at end of file From 84972ba6773dcb7ae16cdb0b3a3fbf20ec41eccb Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 1 Dec 2021 16:38:54 -0300 Subject: [PATCH 279/394] Add missing constants to LevelSoundEventPacket --- .../protocol/LevelSoundEventPacket.java | 130 +++++++++++++++++- 1 file changed, 127 insertions(+), 3 deletions(-) diff --git a/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java b/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java index 0e0e65b01b1..ca523c49d3c 100644 --- a/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java @@ -1,11 +1,13 @@ package cn.nukkit.network.protocol; -import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.math.Vector3f; import lombok.ToString; +import static cn.nukkit.utils.Utils.dynamic; + @ToString public class LevelSoundEventPacket extends DataPacket { public static final byte NETWORK_ID = ProtocolInfo.LEVEL_SOUND_EVENT_PACKET; @@ -229,10 +231,12 @@ public class LevelSoundEventPacket extends DataPacket { public static final int SOUND_HURT_BABY = 219; public static final int SOUND_DEATH_BABY = 220; public static final int SOUND_STEP_BABY = 221; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BABY_SPAWN = 222; public static final int SOUND_BORN = 223; public static final int SOUND_BLOCK_TURTLE_EGG_BREAK = 224; public static final int SOUND_BLOCK_TURTLE_EGG_CRACK = 225; public static final int SOUND_BLOCK_TURTLE_EGG_HATCH = 226; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_TURTLE_LAY_EGG = 227; public static final int SOUND_BLOCK_TURTLE_EGG_ATTACK = 228; public static final int SOUND_BEACON_ACTIVATE = 229; public static final int SOUND_BEACON_AMBIENT = 230; @@ -260,9 +264,129 @@ public class LevelSoundEventPacket extends DataPacket { public static final int SOUND_AMBIENT_AGGRESSIVE = 252; public static final int SOUND_AMBIENT_WORRIED = 253; public static final int SOUND_CANT_BREED = 254; - public static final int SOUND_UNDEFINED = 255; - + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SHIELD_BLOCK = 255; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_LECTERN_BOOK_PLACE = 256; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_GRINDSTONE_USE = 257; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BELL = 258; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CAMPFIRE_CRACKLE = 259; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_ROAR = 260; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_STUN = 261; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SWEET_BERRY_BUSH_HURT = 262; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SWEET_BERRY_BUSH_PICK = 263; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CARTOGRAPHY_TABLE_USE = 264; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_STONECUTTER_USE = 265; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_COMPOSTER_EMPTY = 266; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_COMPOSTER_FILL = 267; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_COMPOSTER_FILL_LAYER = 268; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_COMPOSTER_READY = 269; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BARREL_OPEN = 270; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BARREL_CLOSE = 271; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RAID_HORN = 272; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_LOOM_USE = 273; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_IN_RAID = 274; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_UI_CARTOGRAPHY_TABLE_USE = 275; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_UI_STONECUTTER_USE = 276; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_UI_LOOM_USE = 277; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SMOKER_USE = 278; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BLAST_FURNACE_USE = 279; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SMITHING_TABLE_USE = 280; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SCREECH = 281; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SLEEP = 282; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_FURNACE_USE = 283; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_MOOSHROOM_CONVERT = 284; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_MILK_SUSPICIOUSLY = 285; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CELEBRATE = 286; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_JUMP_PREVENT = 287; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_POLLINATE = 288; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BEEHIVE_DRIP = 289; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BEEHIVE_ENTER = 290; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BEEHIVE_EXIT = 291; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BEEHIVE_WORK = 292; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BEEHIVE_SHEAR = 293; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_HONEYBOTTLE_DRINK = 294; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_CAVE = 295; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RETREAT = 296; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CONVERT_TO_ZOMBIFIED = 297; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_ADMIRE = 298; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_STEP_LAVA = 299; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_TEMPT = 300; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_PANIC = 301; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_ANGRY = 302; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_WARPED_FOREST = 303; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_SOULSAND_VALLEY = 304; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_NETHER_WASTES = 305; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_BASALT_DELTAS = 306; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_CRIMSON_FOREST = 307; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_CHARGE = 308; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_DEPLETE = 309; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_SET_SPAWN = 310; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_AMBIENT = 311; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SOUL_ESCAPE_QUIET = 312; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SOUL_ESCAPE_LOUD = 313; @Since("1.4.0.0-PN") public static final int SOUND_RECORD_PIGSTEP = 314; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_LINK_COMPASS_TO_LODESTONE = 315; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_USE_SMITHING_TABLE = 316; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_EQUIP_NETHERITE = 317; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_LOOP_WARPED_FOREST = 318; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_LOOP_SOULSAND_VALLEY = 319; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_LOOP_NETHER_WASTES = 320; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_LOOP_BASALT_DELTAS = 321; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_LOOP_CRIMSON_FOREST = 322; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_ADDITION_WARPED_FOREST = 323; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_ADDITION_SOULSAND_VALLEY = 324; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_ADDITION_NETHER_WASTES = 325; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_ADDITION_BASALT_DELTAS = 326; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_ADDITION_CRIMSON_FOREST = 327; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SCULK_SENSOR_POWER_ON = 328; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SCULK_SENSOR_POWER_OFF = 329; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BUCKET_FILL_POWDER_SNOW = 330; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BUCKET_EMPTY_POWDER_SNOW = 331; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_CAULDRON_DRIP_LAVA = 332; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_CAULDRON_DRIP_WATER = 333; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_DRIP_LAVA = 334; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_DRIP_WATER = 335; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CAVE_VINES_PICK_BERRIES = 336; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BIG_DRIPLEAF_TILT_DOWN = 337; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BIG_DRIPLEAF_TILT_UP = 338; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_COPPER_WAX_ON = 339; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_COPPER_WAX_OFF = 340; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SCRAPE = 341; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_PLAYER_HURT_DROWN = 342; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_PLAYER_HURT_ON_FIRE = 343; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_PLAYER_HURT_FREEZE = 344; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_USE_SPYGLASS = 345; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_STOP_USING_SPYGLASS = 346; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMETHYST_BLOCK_CHIME = 347; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_SCREAMER = 348; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_HURT_SCREAMER = 349; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_DEATH_SCREAMER = 350; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_MILK_SCREAMER = 351; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_JUMP_TO_BLOCK = 352; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_PRE_RAM = 353; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_PRE_RAM_SCREAMER = 354; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RAM_IMPACT = 355; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RAM_IMPACT_SCREAMER = 356; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SQUID_INK_SQUIRT = 357; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_GLOW_SQUID_INK_SQUIRT = 358; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CONVERT_TO_STRAY = 359; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CAKE_ADD_CANDLE = 360; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_EXTINGUISH_CANDLE = 361; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_CANDLE = 362; + + + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BLOCK_CLICK = 363; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BLOCK_CLICK_FAIL = 364; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SCULK_CATALYST_BLOOM = 365; + + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SCULK_SHRIEKER_SHRIEK = 366; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_WARDEN_NEARBY_CLOSE = 367; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_WARDEN_NEARBY_CLOSER = 368; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_WARDEN_NEARBY_CLOSEST = 369; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_WARDEN_SLIGHTLY_ANGRY = 370; + @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RECORD_OTHERSIDE = 371; + + @PowerNukkitDifference(info = "Not constant", since = "FUTURE") + public static final int SOUND_UNDEFINED = dynamic(372); public int sound; public float x; From ead23419f2fe4aef397e091d449e0082a7480997 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 1 Dec 2021 19:54:27 -0300 Subject: [PATCH 280/394] Fix: Sonar scan not running --- .github/workflows/sonar.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 83aedfbfcc2..250a5a7b923 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -10,7 +10,7 @@ jobs: build: name: Sonar runs-on: ubuntu-latest - if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository + #if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository steps: - uses: actions/checkout@v1 with: From 101f37ebf79864c9f8b89acf241adb07a5cf4839 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 1 Dec 2021 23:37:22 -0300 Subject: [PATCH 281/394] Add #1258 to the changelog --- CHANGELOG.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69ebc6b7b1b..7da6551c181 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,10 +9,15 @@ Nukkit 1.X and 2.X. ## [Unreleased 1.6.0.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/29?closed=1)) Click the link above to see the future. +This work in progress version supports Minecraft `1.18.0`. + +### Changed +- [#1258] Changed supported version to Minecraft Bedrock Edition `1.18.0`. + ## [1.5.2.0-PN] - 2021-12-01 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/28?closed=1)) -This new version add protocol support for Minecraft `1.17.40` as if it was `1.16.221` with some new features and fixes. +This new version adds protocol support for Minecraft `1.17.40` as if it was `1.16.221` with some new features and fixes. -We are still working ont `1.17` and `1.18` new features, but we plain to release them at December 2021. +We are still working on `1.17` and `1.18` new features, but we plain to release them in December 2021. `1.18` support will be added on `1.6.0.0-PN` and it will be released as soon as possible. @@ -23,13 +28,13 @@ Want to talk? Talk to us at https://discuss.powernukkit.org and/or https://powernukkit.org/discord ### Added -- [#1233] New API classes and methods was added, check the [JDiff](https://devs.powernukkit.org/jdiff/1.5.2.0-PN_x_1.5.1.0-PN/changes.html) for details. +- [#1233] New API classes and methods were added, check the [JDiff](https://devs.powernukkit.org/jdiff/1.5.2.0-PN_x_1.5.1.0-PN/changes.html) for details. - [#1193] Add more damage causes to the API and improve magma block death message -- [#1233] French translations (thank you for the translations!) +- [#1233] French translations (thank you for the translations!) ### Changed - [#1244] Changed the `recipes.json` and `creativeitems.json` format for easier changes, updates, and maintenance (backward compatible) -- [#1233] Updated Deutsch, Indonesian, Korean, Poland, Russian, Spanish, Turkish, Vietnamese, Brazilian Portuguese, and Simplified Chinese translations. (thank you!) +- [#1233] Updated Deutsche, Indonesian, Korean, Poland, Russian, Spanish, Turkish, Vietnamese, Brazilian Portuguese, and Simplified Chinese translations. (thank you!) ### Fixes - [#1187] Fixes powered rails do not update in a row @@ -957,3 +962,4 @@ Fixes several anvil issues. [#1233]: https://github.com/PowerNukkit/PowerNukkit/issues/1233 [#1244]: https://github.com/PowerNukkit/PowerNukkit/issues/1244 [#1216]: https://github.com/PowerNukkit/PowerNukkit/issues/1216 +[#1258]: https://github.com/PowerNukkit/PowerNukkit/issues/1258 From 7bb7039ce996b63782076cb69099496942af7e79 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 2 Dec 2021 17:07:10 -0300 Subject: [PATCH 282/394] Add missing PowerNukkitOnly annotations --- .../cn/nukkit/api/DeprecationDetails.java | 1 + src/main/java/cn/nukkit/api/Since.java | 1 + .../java/cn/nukkit/api/UsedByReflection.java | 4 + .../cn/nukkit/block/BlockAcaciaSignPost.java | 2 + .../cn/nukkit/block/BlockAcaciaWallSign.java | 2 + .../java/cn/nukkit/block/BlockBarrier.java | 2 + .../java/cn/nukkit/block/BlockBlueIce.java | 6 +- .../cn/nukkit/block/BlockButtonAcacia.java | 7 +- .../cn/nukkit/block/BlockButtonBirch.java | 7 +- .../cn/nukkit/block/BlockButtonDarkOak.java | 7 +- .../cn/nukkit/block/BlockButtonJungle.java | 7 +- .../cn/nukkit/block/BlockButtonSpruce.java | 7 +- .../java/cn/nukkit/block/BlockCampfire.java | 2 + .../nukkit/block/BlockCartographyTable.java | 3 + .../cn/nukkit/block/BlockCarvedPumpkin.java | 2 + .../nukkit/block/BlockDoubleSlabStone3.java | 21 +-- .../nukkit/block/BlockDoubleSlabStone4.java | 15 ++- .../cn/nukkit/block/BlockDriedKelpBlock.java | 5 +- .../java/cn/nukkit/block/BlockDropper.java | 4 +- .../cn/nukkit/block/BlockFletchingTable.java | 3 + src/main/java/cn/nukkit/block/BlockHoney.java | 1 + .../cn/nukkit/block/BlockHoneycombBlock.java | 3 + .../java/cn/nukkit/block/BlockIceFrosted.java | 4 + .../java/cn/nukkit/block/BlockMoving.java | 5 +- .../nukkit/block/BlockPistonHeadSticky.java | 7 +- .../block/BlockPressurePlateAcacia.java | 9 +- .../nukkit/block/BlockPressurePlateBirch.java | 9 +- .../block/BlockPressurePlateDarkOak.java | 9 +- .../block/BlockPressurePlateJungle.java | 9 +- .../block/BlockPressurePlateSpruce.java | 9 +- .../java/cn/nukkit/block/BlockSlabStone3.java | 19 +-- .../java/cn/nukkit/block/BlockSlabStone4.java | 14 +- .../cn/nukkit/block/BlockStairsAndesite.java | 4 + .../block/BlockStairsAndesitePolished.java | 4 + .../block/BlockStairsDarkPrismarine.java | 4 + .../cn/nukkit/block/BlockStairsDiorite.java | 4 + .../block/BlockStairsDioritePolished.java | 4 + .../cn/nukkit/block/BlockStairsEndBrick.java | 4 + .../cn/nukkit/block/BlockStairsGranite.java | 4 + .../block/BlockStairsGranitePolished.java | 4 + .../block/BlockStairsMossyCobblestone.java | 4 + .../block/BlockStairsMossyStoneBrick.java | 4 + .../nukkit/block/BlockStairsPrismarine.java | 4 + .../block/BlockStairsPrismarineBrick.java | 4 + .../block/BlockStairsRedNetherBrick.java | 4 + .../nukkit/block/BlockStairsSmoothQuartz.java | 4 + .../block/BlockStairsSmoothRedSandstone.java | 4 + .../block/BlockStairsSmoothSandstone.java | 4 + .../cn/nukkit/block/BlockStairsStone.java | 4 + .../cn/nukkit/block/BlockTrapdoorAcacia.java | 6 +- .../cn/nukkit/block/BlockTrapdoorBirch.java | 6 +- .../cn/nukkit/block/BlockTrapdoorDarkOak.java | 6 +- .../cn/nukkit/block/BlockTrapdoorJungle.java | 6 +- .../cn/nukkit/block/BlockTrapdoorSpruce.java | 6 +- .../java/cn/nukkit/block/BlockWitherRose.java | 3 + .../nukkit/blockentity/BlockEntityBarrel.java | 3 + .../nukkit/blockentity/BlockEntityBell.java | 11 +- .../blockentity/BlockEntityBlastFurnace.java | 3 + .../blockentity/BlockEntityCampfire.java | 6 + .../blockentity/BlockEntityConduit.java | 16 +++ .../BlockEntityDaylightDetector.java | 3 + .../blockentity/BlockEntityDispenser.java | 9 +- .../blockentity/BlockEntityDropper.java | 9 +- .../blockentity/BlockEntityLectern.java | 13 ++ .../nukkit/blockentity/BlockEntitySmoker.java | 3 + .../BlockEntitySpawnableContainer.java | 5 + .../command/CapturingCommandSender.java | 2 + .../command/defaults/SetBlockCommand.java | 3 + .../dispenser/BoatDispenseBehavior.java | 2 + .../dispenser/DropperDispenseBehavior.java | 1 - .../nukkit/dispenser/DyeDispenseBehavior.java | 2 + .../dispenser/FireChargeDispenseBehavior.java | 14 -- .../dispenser/FireworksDispenseBehavior.java | 2 + .../FlintAndSteelDispenseBehavior.java | 3 +- .../dispenser/PumpkinDispenseBehavior.java | 17 --- .../dispenser/ShulkerBoxDispenseBehavior.java | 2 + .../dispenser/SpawnEggDispenseBehavior.java | 2 + .../nukkit/dispenser/TNTDispenseBehavior.java | 2 + .../entity/item/EntityAreaEffectCloud.java | 121 +++++++++++------- .../entity/item/EntityPotionLingering.java | 10 +- .../cn/nukkit/event/block/BellRingEvent.java | 17 ++- .../nukkit/event/block/BlockHarvestEvent.java | 8 ++ .../nukkit/event/block/BlockPistonEvent.java | 8 ++ .../event/block/ComposterEmptyEvent.java | 15 ++- .../event/block/ComposterFillEvent.java | 11 +- .../event/block/ConduitActivateEvent.java | 4 + .../event/block/ConduitDeactivateEvent.java | 4 + .../event/block/LecternDropBookEvent.java | 8 ++ .../event/block/LecternPageChangeEvent.java | 13 ++ .../event/block/LecternPlaceBookEvent.java | 8 ++ .../event/block/TurtleEggHatchEvent.java | 11 ++ .../nukkit/event/block/WaterFrostEvent.java | 10 +- .../event/entity/EntityMoveByPistonEvent.java | 3 + .../event/inventory/CampfireSmeltEvent.java | 10 ++ .../vehicle/VehicleDamageByEntityEvent.java | 7 +- .../vehicle/VehicleDestroyByEntityEvent.java | 7 +- .../cn/nukkit/inventory/BarrelInventory.java | 3 + .../nukkit/inventory/BlastFurnaceRecipe.java | 4 + .../nukkit/inventory/CampfireInventory.java | 4 + .../cn/nukkit/inventory/CampfireRecipe.java | 4 + .../nukkit/inventory/CartographyRecipe.java | 6 +- .../nukkit/inventory/DispenserInventory.java | 5 +- .../cn/nukkit/inventory/DropperInventory.java | 5 +- .../nukkit/inventory/InventoryListener.java | 3 + .../cn/nukkit/inventory/RepairRecipe.java | 11 +- .../cn/nukkit/inventory/SmeltingRecipe.java | 3 + .../cn/nukkit/inventory/SmokerRecipe.java | 4 + .../inventory/StonecutterInventory.java | 2 + .../nukkit/inventory/StonecutterRecipe.java | 9 ++ .../transaction/action/DamageAnvilAction.java | 5 +- .../transaction/action/TakeLevelAction.java | 8 +- .../java/cn/nukkit/item/ItemAcaciaSign.java | 5 + .../java/cn/nukkit/item/ItemBirchSign.java | 5 + .../java/cn/nukkit/item/ItemCampfire.java | 5 + .../java/cn/nukkit/item/ItemDarkOakSign.java | 5 + .../java/cn/nukkit/item/ItemJungleSign.java | 5 + src/main/java/cn/nukkit/item/ItemKelp.java | 11 +- .../java/cn/nukkit/item/ItemSpruceSign.java | 5 + .../nukkit/item/food/FoodEffectiveInBow.java | 3 + .../java/cn/nukkit/item/food/FoodHoney.java | 1 + .../nukkit/level/particle/CloudParticle.java | 9 +- .../network/protocol/AnimateEntityPacket.java | 2 +- 122 files changed, 669 insertions(+), 178 deletions(-) delete mode 100644 src/main/java/cn/nukkit/dispenser/FireChargeDispenseBehavior.java delete mode 100644 src/main/java/cn/nukkit/dispenser/PumpkinDispenseBehavior.java diff --git a/src/main/java/cn/nukkit/api/DeprecationDetails.java b/src/main/java/cn/nukkit/api/DeprecationDetails.java index b47ea02036b..07f3bba7975 100644 --- a/src/main/java/cn/nukkit/api/DeprecationDetails.java +++ b/src/main/java/cn/nukkit/api/DeprecationDetails.java @@ -5,6 +5,7 @@ /** * Describe the deprecation with more details. This is persisted to the class file, so it can be read without javadocs. */ +@PowerNukkitOnly @Retention(RetentionPolicy.CLASS) @Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.ANNOTATION_TYPE, ElementType.TYPE, ElementType.FIELD, ElementType.PACKAGE}) diff --git a/src/main/java/cn/nukkit/api/Since.java b/src/main/java/cn/nukkit/api/Since.java index ab5882bf6fd..e78e27c8f5e 100644 --- a/src/main/java/cn/nukkit/api/Since.java +++ b/src/main/java/cn/nukkit/api/Since.java @@ -5,6 +5,7 @@ /** * Indicates which version added the annotated element. */ +@PowerNukkitOnly @Retention(RetentionPolicy.CLASS) @Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.ANNOTATION_TYPE, ElementType.TYPE, ElementType.FIELD, ElementType.PACKAGE}) diff --git a/src/main/java/cn/nukkit/api/UsedByReflection.java b/src/main/java/cn/nukkit/api/UsedByReflection.java index 42c07b87419..d582159b86d 100644 --- a/src/main/java/cn/nukkit/api/UsedByReflection.java +++ b/src/main/java/cn/nukkit/api/UsedByReflection.java @@ -1,4 +1,8 @@ package cn.nukkit.api; +import java.lang.annotation.Documented; + +@PowerNukkitOnly +@Documented public @interface UsedByReflection { } diff --git a/src/main/java/cn/nukkit/block/BlockAcaciaSignPost.java b/src/main/java/cn/nukkit/block/BlockAcaciaSignPost.java index 55f593084e1..1c5a4496410 100644 --- a/src/main/java/cn/nukkit/block/BlockAcaciaSignPost.java +++ b/src/main/java/cn/nukkit/block/BlockAcaciaSignPost.java @@ -6,9 +6,11 @@ @PowerNukkitOnly public class BlockAcaciaSignPost extends BlockSignPost { + @PowerNukkitOnly public BlockAcaciaSignPost() { } + @PowerNukkitOnly public BlockAcaciaSignPost(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockAcaciaWallSign.java b/src/main/java/cn/nukkit/block/BlockAcaciaWallSign.java index cfdf502b651..8f5adbb76e5 100644 --- a/src/main/java/cn/nukkit/block/BlockAcaciaWallSign.java +++ b/src/main/java/cn/nukkit/block/BlockAcaciaWallSign.java @@ -6,10 +6,12 @@ @PowerNukkitOnly public class BlockAcaciaWallSign extends BlockWallSign { + @PowerNukkitOnly public BlockAcaciaWallSign() { this(0); } + @PowerNukkitOnly public BlockAcaciaWallSign(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockBarrier.java b/src/main/java/cn/nukkit/block/BlockBarrier.java index be261d862e9..a1748180772 100644 --- a/src/main/java/cn/nukkit/block/BlockBarrier.java +++ b/src/main/java/cn/nukkit/block/BlockBarrier.java @@ -8,8 +8,10 @@ * @author Pub4Game * @since 03.01.2016 */ +@PowerNukkitOnly public class BlockBarrier extends BlockSolid { + @PowerNukkitOnly public BlockBarrier() { } diff --git a/src/main/java/cn/nukkit/block/BlockBlueIce.java b/src/main/java/cn/nukkit/block/BlockBlueIce.java index 115600f16a7..342a678bf2c 100644 --- a/src/main/java/cn/nukkit/block/BlockBlueIce.java +++ b/src/main/java/cn/nukkit/block/BlockBlueIce.java @@ -1,7 +1,11 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; + +@PowerNukkitOnly public class BlockBlueIce extends BlockIcePacked { - + + @PowerNukkitOnly public BlockBlueIce() { } diff --git a/src/main/java/cn/nukkit/block/BlockButtonAcacia.java b/src/main/java/cn/nukkit/block/BlockButtonAcacia.java index 252974e5b4c..d6da3914d58 100644 --- a/src/main/java/cn/nukkit/block/BlockButtonAcacia.java +++ b/src/main/java/cn/nukkit/block/BlockButtonAcacia.java @@ -1,10 +1,15 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; + +@PowerNukkitOnly public class BlockButtonAcacia extends BlockButtonWooden { + @PowerNukkitOnly public BlockButtonAcacia() { this(0); } - + + @PowerNukkitOnly public BlockButtonAcacia(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockButtonBirch.java b/src/main/java/cn/nukkit/block/BlockButtonBirch.java index cda1cfba208..5210b187b39 100644 --- a/src/main/java/cn/nukkit/block/BlockButtonBirch.java +++ b/src/main/java/cn/nukkit/block/BlockButtonBirch.java @@ -1,10 +1,15 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; + +@PowerNukkitOnly public class BlockButtonBirch extends BlockButtonWooden { + @PowerNukkitOnly public BlockButtonBirch() { this(0); } - + + @PowerNukkitOnly public BlockButtonBirch(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockButtonDarkOak.java b/src/main/java/cn/nukkit/block/BlockButtonDarkOak.java index e642f45d1ab..92f6e45df73 100644 --- a/src/main/java/cn/nukkit/block/BlockButtonDarkOak.java +++ b/src/main/java/cn/nukkit/block/BlockButtonDarkOak.java @@ -1,10 +1,15 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; + +@PowerNukkitOnly public class BlockButtonDarkOak extends BlockButtonWooden { + @PowerNukkitOnly public BlockButtonDarkOak() { this(0); } - + + @PowerNukkitOnly public BlockButtonDarkOak(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockButtonJungle.java b/src/main/java/cn/nukkit/block/BlockButtonJungle.java index e383fd5bf2b..dab2abef2d8 100644 --- a/src/main/java/cn/nukkit/block/BlockButtonJungle.java +++ b/src/main/java/cn/nukkit/block/BlockButtonJungle.java @@ -1,10 +1,15 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; + +@PowerNukkitOnly public class BlockButtonJungle extends BlockButtonWooden { + @PowerNukkitOnly public BlockButtonJungle() { this(0); } - + + @PowerNukkitOnly public BlockButtonJungle(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockButtonSpruce.java b/src/main/java/cn/nukkit/block/BlockButtonSpruce.java index 81469b6ab93..63a0171d413 100644 --- a/src/main/java/cn/nukkit/block/BlockButtonSpruce.java +++ b/src/main/java/cn/nukkit/block/BlockButtonSpruce.java @@ -1,10 +1,15 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; + +@PowerNukkitOnly public class BlockButtonSpruce extends BlockButtonWooden { + @PowerNukkitOnly public BlockButtonSpruce() { this(0); } - + + @PowerNukkitOnly public BlockButtonSpruce(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index 58b34bc9c49..25ada87fa7d 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -302,10 +302,12 @@ public BlockColor getColor() { return BlockColor.SPRUCE_BLOCK_COLOR; } + @PowerNukkitOnly public boolean isExtinguished() { return getBooleanValue(EXTINGUISHED); } + @PowerNukkitOnly public void setExtinguished(boolean extinguished) { setBooleanValue(EXTINGUISHED, extinguished); } diff --git a/src/main/java/cn/nukkit/block/BlockCartographyTable.java b/src/main/java/cn/nukkit/block/BlockCartographyTable.java index 2acf78110ed..2c2140fcb8c 100644 --- a/src/main/java/cn/nukkit/block/BlockCartographyTable.java +++ b/src/main/java/cn/nukkit/block/BlockCartographyTable.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -8,8 +9,10 @@ import javax.annotation.Nonnull; import javax.annotation.Nullable; +@PowerNukkitOnly public class BlockCartographyTable extends BlockSolid { + @PowerNukkitOnly public BlockCartographyTable() { } diff --git a/src/main/java/cn/nukkit/block/BlockCarvedPumpkin.java b/src/main/java/cn/nukkit/block/BlockCarvedPumpkin.java index b7a25ed2963..cf03b0d7f8f 100644 --- a/src/main/java/cn/nukkit/block/BlockCarvedPumpkin.java +++ b/src/main/java/cn/nukkit/block/BlockCarvedPumpkin.java @@ -1,10 +1,12 @@ package cn.nukkit.block; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import javax.annotation.Nonnull; +@PowerNukkitOnly public class BlockCarvedPumpkin extends BlockPumpkin { @Override diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone3.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone3.java index a7589b19fe6..914acc44e77 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone3.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone3.java @@ -1,6 +1,5 @@ package cn.nukkit.block; -import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.blockproperty.BlockProperties; @@ -10,21 +9,23 @@ import javax.annotation.Nonnull; -@PowerNukkitDifference(info = "Extends BlockDoubleSlabBase instead of BlockDoubleSlabStone only in PowerNukkit") +@PowerNukkitOnly public class BlockDoubleSlabStone3 extends BlockDoubleSlabBase { - public static final int END_STONE_BRICKS = 0; - public static final int SMOOTH_RED_SANDSTONE = 1; - public static final int POLISHED_ANDESITE = 2; - public static final int ANDESITE = 3; - public static final int DIORITE = 4; - public static final int POLISHED_DIORITE = 5; - public static final int GRANITE = 6; - public static final int POLISHED_GRANITE = 7; + @PowerNukkitOnly public static final int END_STONE_BRICKS = 0; + @PowerNukkitOnly public static final int SMOOTH_RED_SANDSTONE = 1; + @PowerNukkitOnly public static final int POLISHED_ANDESITE = 2; + @PowerNukkitOnly public static final int ANDESITE = 3; + @PowerNukkitOnly public static final int DIORITE = 4; + @PowerNukkitOnly public static final int POLISHED_DIORITE = 5; + @PowerNukkitOnly public static final int GRANITE = 6; + @PowerNukkitOnly public static final int POLISHED_GRANITE = 7; + @PowerNukkitOnly public BlockDoubleSlabStone3() { this(0); } + @PowerNukkitOnly public BlockDoubleSlabStone3(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone4.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone4.java index e60e5336c9d..037a451e379 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone4.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone4.java @@ -1,6 +1,5 @@ package cn.nukkit.block; -import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.blockproperty.BlockProperties; @@ -10,18 +9,20 @@ import javax.annotation.Nonnull; -@PowerNukkitDifference(info = "Extends BlockDoubleSlabBase instead of BlockDoubleSlabStone only in PowerNukkit") +@PowerNukkitOnly public class BlockDoubleSlabStone4 extends BlockDoubleSlabBase { - public static final int MOSSY_STONE_BRICKS = 0; - public static final int SMOOTH_QUARTZ = 1; - public static final int STONE = 2; - public static final int CUT_SANDSTONE = 3; - public static final int CUT_RED_SANDSTONE = 4; + @PowerNukkitOnly public static final int MOSSY_STONE_BRICKS = 0; + @PowerNukkitOnly public static final int SMOOTH_QUARTZ = 1; + @PowerNukkitOnly public static final int STONE = 2; + @PowerNukkitOnly public static final int CUT_SANDSTONE = 3; + @PowerNukkitOnly public static final int CUT_RED_SANDSTONE = 4; + @PowerNukkitOnly public BlockDoubleSlabStone4() { this(0); } + @PowerNukkitOnly public BlockDoubleSlabStone4(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockDriedKelpBlock.java b/src/main/java/cn/nukkit/block/BlockDriedKelpBlock.java index 6efd4dd08fe..f387c928332 100644 --- a/src/main/java/cn/nukkit/block/BlockDriedKelpBlock.java +++ b/src/main/java/cn/nukkit/block/BlockDriedKelpBlock.java @@ -1,9 +1,12 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockDriedKelpBlock extends BlockSolid { - + + @PowerNukkitOnly public BlockDriedKelpBlock() { } diff --git a/src/main/java/cn/nukkit/block/BlockDropper.java b/src/main/java/cn/nukkit/block/BlockDropper.java index fb1933c4a51..19932db0560 100644 --- a/src/main/java/cn/nukkit/block/BlockDropper.java +++ b/src/main/java/cn/nukkit/block/BlockDropper.java @@ -12,13 +12,15 @@ import javax.annotation.Nonnull; -@PowerNukkitDifference(since = "1.4.0.0-PN", info = "Implements BlockEntityHolder only in PowerNukkit") +@PowerNukkitOnly public class BlockDropper extends BlockDispenser { + @PowerNukkitOnly public BlockDropper() { this(0); } + @PowerNukkitOnly public BlockDropper(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockFletchingTable.java b/src/main/java/cn/nukkit/block/BlockFletchingTable.java index 8a321648e35..e2a2960b641 100644 --- a/src/main/java/cn/nukkit/block/BlockFletchingTable.java +++ b/src/main/java/cn/nukkit/block/BlockFletchingTable.java @@ -1,10 +1,13 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockFletchingTable extends BlockSolid { + @PowerNukkitOnly public BlockFletchingTable() { } diff --git a/src/main/java/cn/nukkit/block/BlockHoney.java b/src/main/java/cn/nukkit/block/BlockHoney.java index 7cf8bee4bc5..f3441e23eeb 100644 --- a/src/main/java/cn/nukkit/block/BlockHoney.java +++ b/src/main/java/cn/nukkit/block/BlockHoney.java @@ -12,6 +12,7 @@ import java.util.Random; +@PowerNukkitOnly public class BlockHoney extends BlockSolid { private static final Random RANDOM = new Random(); diff --git a/src/main/java/cn/nukkit/block/BlockHoneycombBlock.java b/src/main/java/cn/nukkit/block/BlockHoneycombBlock.java index 741bffbcc23..b445d25f08a 100644 --- a/src/main/java/cn/nukkit/block/BlockHoneycombBlock.java +++ b/src/main/java/cn/nukkit/block/BlockHoneycombBlock.java @@ -1,10 +1,13 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockHoneycombBlock extends BlockSolid { + @PowerNukkitOnly public BlockHoneycombBlock() { } diff --git a/src/main/java/cn/nukkit/block/BlockIceFrosted.java b/src/main/java/cn/nukkit/block/BlockIceFrosted.java index 4bf7a143133..2681ef7cca0 100644 --- a/src/main/java/cn/nukkit/block/BlockIceFrosted.java +++ b/src/main/java/cn/nukkit/block/BlockIceFrosted.java @@ -13,6 +13,7 @@ import javax.annotation.Nonnull; import java.util.concurrent.ThreadLocalRandom; +@PowerNukkitOnly public class BlockIceFrosted extends BlockTransparentMeta { @PowerNukkitOnly @@ -23,10 +24,12 @@ public class BlockIceFrosted extends BlockTransparentMeta { @Since("1.5.0.0-PN") public static final BlockProperties PROPERTIES = new BlockProperties(AGE); + @PowerNukkitOnly public BlockIceFrosted() { this(0); } + @PowerNukkitOnly public BlockIceFrosted(int meta) { super(meta); } @@ -110,6 +113,7 @@ public boolean canHarvestWithHand() { return false; } + @PowerNukkitOnly protected void slightlyMelt(boolean isSource) { int age = getDamage(); if (age < 3) { diff --git a/src/main/java/cn/nukkit/block/BlockMoving.java b/src/main/java/cn/nukkit/block/BlockMoving.java index ee2f4f8536b..0b81d228bd7 100644 --- a/src/main/java/cn/nukkit/block/BlockMoving.java +++ b/src/main/java/cn/nukkit/block/BlockMoving.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.Player; -import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.blockentity.BlockEntity; @@ -12,13 +11,15 @@ import javax.annotation.Nonnull; import javax.annotation.Nullable; -@PowerNukkitDifference(since = "1.4.0.0-PN", info = "Implements BlockEntityHolder only in PowerNukkit") +@PowerNukkitOnly public class BlockMoving extends BlockTransparent implements BlockEntityHolder { + @PowerNukkitOnly public BlockMoving() { this(0); } + @PowerNukkitOnly public BlockMoving(int meta) { super(); } diff --git a/src/main/java/cn/nukkit/block/BlockPistonHeadSticky.java b/src/main/java/cn/nukkit/block/BlockPistonHeadSticky.java index 0944bc257d3..5b767fe0b1d 100644 --- a/src/main/java/cn/nukkit/block/BlockPistonHeadSticky.java +++ b/src/main/java/cn/nukkit/block/BlockPistonHeadSticky.java @@ -1,10 +1,15 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; + +@PowerNukkitOnly public class BlockPistonHeadSticky extends BlockPistonHead { + @PowerNukkitOnly public BlockPistonHeadSticky() { this(0); } - + + @PowerNukkitOnly public BlockPistonHeadSticky(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockPressurePlateAcacia.java b/src/main/java/cn/nukkit/block/BlockPressurePlateAcacia.java index e128721e5c9..0322e9ad150 100644 --- a/src/main/java/cn/nukkit/block/BlockPressurePlateAcacia.java +++ b/src/main/java/cn/nukkit/block/BlockPressurePlateAcacia.java @@ -1,11 +1,16 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; + +@PowerNukkitOnly public class BlockPressurePlateAcacia extends BlockPressurePlateWood { - + + @PowerNukkitOnly public BlockPressurePlateAcacia() { this(0); } - + + @PowerNukkitOnly public BlockPressurePlateAcacia(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockPressurePlateBirch.java b/src/main/java/cn/nukkit/block/BlockPressurePlateBirch.java index dd2ead0db7a..39005da40fb 100644 --- a/src/main/java/cn/nukkit/block/BlockPressurePlateBirch.java +++ b/src/main/java/cn/nukkit/block/BlockPressurePlateBirch.java @@ -1,11 +1,16 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; + +@PowerNukkitOnly public class BlockPressurePlateBirch extends BlockPressurePlateWood { - + + @PowerNukkitOnly public BlockPressurePlateBirch() { this(0); } - + + @PowerNukkitOnly public BlockPressurePlateBirch(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockPressurePlateDarkOak.java b/src/main/java/cn/nukkit/block/BlockPressurePlateDarkOak.java index 3590d83e729..90621a24591 100644 --- a/src/main/java/cn/nukkit/block/BlockPressurePlateDarkOak.java +++ b/src/main/java/cn/nukkit/block/BlockPressurePlateDarkOak.java @@ -1,11 +1,16 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; + +@PowerNukkitOnly public class BlockPressurePlateDarkOak extends BlockPressurePlateWood { - + + @PowerNukkitOnly public BlockPressurePlateDarkOak() { this(0); } - + + @PowerNukkitOnly public BlockPressurePlateDarkOak(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockPressurePlateJungle.java b/src/main/java/cn/nukkit/block/BlockPressurePlateJungle.java index c967ba13840..c4ea1f930dd 100644 --- a/src/main/java/cn/nukkit/block/BlockPressurePlateJungle.java +++ b/src/main/java/cn/nukkit/block/BlockPressurePlateJungle.java @@ -1,11 +1,16 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; + +@PowerNukkitOnly public class BlockPressurePlateJungle extends BlockPressurePlateWood { - + + @PowerNukkitOnly public BlockPressurePlateJungle() { this(0); } - + + @PowerNukkitOnly public BlockPressurePlateJungle(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockPressurePlateSpruce.java b/src/main/java/cn/nukkit/block/BlockPressurePlateSpruce.java index 034a16a402a..afccd0f1c34 100644 --- a/src/main/java/cn/nukkit/block/BlockPressurePlateSpruce.java +++ b/src/main/java/cn/nukkit/block/BlockPressurePlateSpruce.java @@ -1,11 +1,16 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; + +@PowerNukkitOnly public class BlockPressurePlateSpruce extends BlockPressurePlateWood { - + + @PowerNukkitOnly public BlockPressurePlateSpruce() { this(0); } - + + @PowerNukkitOnly public BlockPressurePlateSpruce(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockSlabStone3.java b/src/main/java/cn/nukkit/block/BlockSlabStone3.java index 347cd2a2d61..a80c05ff289 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabStone3.java +++ b/src/main/java/cn/nukkit/block/BlockSlabStone3.java @@ -9,6 +9,7 @@ import javax.annotation.Nonnull; +@PowerNukkitOnly public class BlockSlabStone3 extends BlockSlab { @PowerNukkitOnly @Since("1.4.0.0-PN") @@ -17,19 +18,21 @@ public class BlockSlabStone3 extends BlockSlab { TOP_SLOT_PROPERTY ); - public static final int END_STONE_BRICKS = 0; - public static final int SMOOTH_RED_SANDSTONE = 1; - public static final int POLISHED_ANDESITE = 2; - public static final int ANDESITE = 3; - public static final int DIORITE = 4; - public static final int POLISHED_DIORITE = 5; - public static final int GRANITE = 6; - public static final int POLISHED_GRANITE = 7; + @PowerNukkitOnly public static final int END_STONE_BRICKS = 0; + @PowerNukkitOnly public static final int SMOOTH_RED_SANDSTONE = 1; + @PowerNukkitOnly public static final int POLISHED_ANDESITE = 2; + @PowerNukkitOnly public static final int ANDESITE = 3; + @PowerNukkitOnly public static final int DIORITE = 4; + @PowerNukkitOnly public static final int POLISHED_DIORITE = 5; + @PowerNukkitOnly public static final int GRANITE = 6; + @PowerNukkitOnly public static final int POLISHED_GRANITE = 7; + @PowerNukkitOnly public BlockSlabStone3() { this(0); } + @PowerNukkitOnly public BlockSlabStone3(int meta) { super(meta, DOUBLE_STONE_SLAB3); } diff --git a/src/main/java/cn/nukkit/block/BlockSlabStone4.java b/src/main/java/cn/nukkit/block/BlockSlabStone4.java index adcf5316e05..8482d845eab 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabStone4.java +++ b/src/main/java/cn/nukkit/block/BlockSlabStone4.java @@ -9,6 +9,7 @@ import javax.annotation.Nonnull; +@PowerNukkitOnly public class BlockSlabStone4 extends BlockSlab { @PowerNukkitOnly @Since("1.4.0.0-PN") @@ -17,17 +18,18 @@ public class BlockSlabStone4 extends BlockSlab { TOP_SLOT_PROPERTY ); - public static final int MOSSY_STONE_BRICKS = 0; - public static final int SMOOTH_QUARTZ = 1; - public static final int STONE = 2; - public static final int CUT_SANDSTONE = 3; - public static final int CUT_RED_SANDSTONE = 4; - + @PowerNukkitOnly public static final int MOSSY_STONE_BRICKS = 0; + @PowerNukkitOnly public static final int SMOOTH_QUARTZ = 1; + @PowerNukkitOnly public static final int STONE = 2; + @PowerNukkitOnly public static final int CUT_SANDSTONE = 3; + @PowerNukkitOnly public static final int CUT_RED_SANDSTONE = 4; + @PowerNukkitOnly public BlockSlabStone4() { this(0); } + @PowerNukkitOnly public BlockSlabStone4(int meta) { super(meta, DOUBLE_STONE_SLAB4); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsAndesite.java b/src/main/java/cn/nukkit/block/BlockStairsAndesite.java index 37287e75854..2244bcc6d1c 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsAndesite.java +++ b/src/main/java/cn/nukkit/block/BlockStairsAndesite.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsAndesite extends BlockStairs { + @PowerNukkitOnly public BlockStairsAndesite() { this(0); } + @PowerNukkitOnly public BlockStairsAndesite(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsAndesitePolished.java b/src/main/java/cn/nukkit/block/BlockStairsAndesitePolished.java index 46df047a61d..cb7ee1a403e 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsAndesitePolished.java +++ b/src/main/java/cn/nukkit/block/BlockStairsAndesitePolished.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsAndesitePolished extends BlockStairs { + @PowerNukkitOnly public BlockStairsAndesitePolished() { this(0); } + @PowerNukkitOnly public BlockStairsAndesitePolished(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsDarkPrismarine.java b/src/main/java/cn/nukkit/block/BlockStairsDarkPrismarine.java index ae6538e00df..ca604ab7157 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsDarkPrismarine.java +++ b/src/main/java/cn/nukkit/block/BlockStairsDarkPrismarine.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsDarkPrismarine extends BlockStairs { + @PowerNukkitOnly public BlockStairsDarkPrismarine() { this(0); } + @PowerNukkitOnly public BlockStairsDarkPrismarine(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsDiorite.java b/src/main/java/cn/nukkit/block/BlockStairsDiorite.java index 070f5b259f3..4f422a5fdb2 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsDiorite.java +++ b/src/main/java/cn/nukkit/block/BlockStairsDiorite.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsDiorite extends BlockStairs { + @PowerNukkitOnly public BlockStairsDiorite() { this(0); } + @PowerNukkitOnly public BlockStairsDiorite(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsDioritePolished.java b/src/main/java/cn/nukkit/block/BlockStairsDioritePolished.java index 76694e98a78..e44a3163c74 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsDioritePolished.java +++ b/src/main/java/cn/nukkit/block/BlockStairsDioritePolished.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsDioritePolished extends BlockStairs { + @PowerNukkitOnly public BlockStairsDioritePolished() { this(0); } + @PowerNukkitOnly public BlockStairsDioritePolished(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsEndBrick.java b/src/main/java/cn/nukkit/block/BlockStairsEndBrick.java index 29cf87a4816..0a6de0c7cea 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsEndBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsEndBrick.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsEndBrick extends BlockStairs { + @PowerNukkitOnly public BlockStairsEndBrick() { this(0); } + @PowerNukkitOnly public BlockStairsEndBrick(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsGranite.java b/src/main/java/cn/nukkit/block/BlockStairsGranite.java index 0df7c161676..d3d886efb9d 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsGranite.java +++ b/src/main/java/cn/nukkit/block/BlockStairsGranite.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsGranite extends BlockStairs { + @PowerNukkitOnly public BlockStairsGranite() { this(0); } + @PowerNukkitOnly public BlockStairsGranite(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsGranitePolished.java b/src/main/java/cn/nukkit/block/BlockStairsGranitePolished.java index 9321afbadb1..992845ef165 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsGranitePolished.java +++ b/src/main/java/cn/nukkit/block/BlockStairsGranitePolished.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsGranitePolished extends BlockStairs { + @PowerNukkitOnly public BlockStairsGranitePolished() { this(0); } + @PowerNukkitOnly public BlockStairsGranitePolished(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsMossyCobblestone.java b/src/main/java/cn/nukkit/block/BlockStairsMossyCobblestone.java index d3cf06f53d3..4cbdaac1aa1 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsMossyCobblestone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsMossyCobblestone.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsMossyCobblestone extends BlockStairs { + @PowerNukkitOnly public BlockStairsMossyCobblestone() { this(0); } + @PowerNukkitOnly public BlockStairsMossyCobblestone(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsMossyStoneBrick.java b/src/main/java/cn/nukkit/block/BlockStairsMossyStoneBrick.java index b511c8fcc87..ce5bec0c2ed 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsMossyStoneBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsMossyStoneBrick.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsMossyStoneBrick extends BlockStairs { + @PowerNukkitOnly public BlockStairsMossyStoneBrick() { this(0); } + @PowerNukkitOnly public BlockStairsMossyStoneBrick(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsPrismarine.java b/src/main/java/cn/nukkit/block/BlockStairsPrismarine.java index bf387db6986..e7f01e78960 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsPrismarine.java +++ b/src/main/java/cn/nukkit/block/BlockStairsPrismarine.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsPrismarine extends BlockStairs { + @PowerNukkitOnly public BlockStairsPrismarine() { this(0); } + @PowerNukkitOnly public BlockStairsPrismarine(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsPrismarineBrick.java b/src/main/java/cn/nukkit/block/BlockStairsPrismarineBrick.java index 24d2fed25e7..7a96b3d0bcf 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsPrismarineBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsPrismarineBrick.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsPrismarineBrick extends BlockStairs { + @PowerNukkitOnly public BlockStairsPrismarineBrick() { this(0); } + @PowerNukkitOnly public BlockStairsPrismarineBrick(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsRedNetherBrick.java b/src/main/java/cn/nukkit/block/BlockStairsRedNetherBrick.java index 0eb3e049377..9e007746037 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsRedNetherBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsRedNetherBrick.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsRedNetherBrick extends BlockStairs { + @PowerNukkitOnly public BlockStairsRedNetherBrick() { this(0); } + @PowerNukkitOnly public BlockStairsRedNetherBrick(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsSmoothQuartz.java b/src/main/java/cn/nukkit/block/BlockStairsSmoothQuartz.java index 437b465d8bf..16c09395928 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsSmoothQuartz.java +++ b/src/main/java/cn/nukkit/block/BlockStairsSmoothQuartz.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsSmoothQuartz extends BlockStairs { + @PowerNukkitOnly public BlockStairsSmoothQuartz() { this(0); } + @PowerNukkitOnly public BlockStairsSmoothQuartz(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsSmoothRedSandstone.java b/src/main/java/cn/nukkit/block/BlockStairsSmoothRedSandstone.java index f8efb5d8443..a02ad0e128e 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsSmoothRedSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsSmoothRedSandstone.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsSmoothRedSandstone extends BlockStairs { + @PowerNukkitOnly public BlockStairsSmoothRedSandstone() { this(0); } + @PowerNukkitOnly public BlockStairsSmoothRedSandstone(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsSmoothSandstone.java b/src/main/java/cn/nukkit/block/BlockStairsSmoothSandstone.java index 0847f243cf6..c148ae198ed 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsSmoothSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsSmoothSandstone.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsSmoothSandstone extends BlockStairs { + @PowerNukkitOnly public BlockStairsSmoothSandstone() { this(0); } + @PowerNukkitOnly public BlockStairsSmoothSandstone(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStairsStone.java b/src/main/java/cn/nukkit/block/BlockStairsStone.java index d7f902010af..8bacced143f 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsStone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsStone.java @@ -1,13 +1,17 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockStairsStone extends BlockStairs { + @PowerNukkitOnly public BlockStairsStone() { this(0); } + @PowerNukkitOnly public BlockStairsStone(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockTrapdoorAcacia.java b/src/main/java/cn/nukkit/block/BlockTrapdoorAcacia.java index 9c6e2c7e7c2..fabe96636ec 100644 --- a/src/main/java/cn/nukkit/block/BlockTrapdoorAcacia.java +++ b/src/main/java/cn/nukkit/block/BlockTrapdoorAcacia.java @@ -1,12 +1,16 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockTrapdoorAcacia extends BlockTrapdoor { + @PowerNukkitOnly public BlockTrapdoorAcacia() { this(0); } - + + @PowerNukkitOnly public BlockTrapdoorAcacia(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockTrapdoorBirch.java b/src/main/java/cn/nukkit/block/BlockTrapdoorBirch.java index 071d46586eb..e80f2fc1e78 100644 --- a/src/main/java/cn/nukkit/block/BlockTrapdoorBirch.java +++ b/src/main/java/cn/nukkit/block/BlockTrapdoorBirch.java @@ -1,12 +1,16 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockTrapdoorBirch extends BlockTrapdoor { + @PowerNukkitOnly public BlockTrapdoorBirch() { this(0); } - + + @PowerNukkitOnly public BlockTrapdoorBirch(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockTrapdoorDarkOak.java b/src/main/java/cn/nukkit/block/BlockTrapdoorDarkOak.java index 33d9ea9b9cf..7d1864e9531 100644 --- a/src/main/java/cn/nukkit/block/BlockTrapdoorDarkOak.java +++ b/src/main/java/cn/nukkit/block/BlockTrapdoorDarkOak.java @@ -1,12 +1,16 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockTrapdoorDarkOak extends BlockTrapdoor { + @PowerNukkitOnly public BlockTrapdoorDarkOak() { this(0); } - + + @PowerNukkitOnly public BlockTrapdoorDarkOak(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockTrapdoorJungle.java b/src/main/java/cn/nukkit/block/BlockTrapdoorJungle.java index 892e4af48ce..18288f7a67e 100644 --- a/src/main/java/cn/nukkit/block/BlockTrapdoorJungle.java +++ b/src/main/java/cn/nukkit/block/BlockTrapdoorJungle.java @@ -1,12 +1,16 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockTrapdoorJungle extends BlockTrapdoor { + @PowerNukkitOnly public BlockTrapdoorJungle() { this(0); } - + + @PowerNukkitOnly public BlockTrapdoorJungle(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockTrapdoorSpruce.java b/src/main/java/cn/nukkit/block/BlockTrapdoorSpruce.java index 00fc993d32a..4df84d93aab 100644 --- a/src/main/java/cn/nukkit/block/BlockTrapdoorSpruce.java +++ b/src/main/java/cn/nukkit/block/BlockTrapdoorSpruce.java @@ -1,12 +1,16 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.utils.BlockColor; +@PowerNukkitOnly public class BlockTrapdoorSpruce extends BlockTrapdoor { + @PowerNukkitOnly public BlockTrapdoorSpruce() { this(0); } - + + @PowerNukkitOnly public BlockTrapdoorSpruce(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockWitherRose.java b/src/main/java/cn/nukkit/block/BlockWitherRose.java index ed6de2e7795..820d84d1ca9 100644 --- a/src/main/java/cn/nukkit/block/BlockWitherRose.java +++ b/src/main/java/cn/nukkit/block/BlockWitherRose.java @@ -14,11 +14,14 @@ import javax.annotation.Nonnull; +@PowerNukkitOnly public class BlockWitherRose extends BlockFlower { + @PowerNukkitOnly public BlockWitherRose() { this(0); } + @PowerNukkitOnly public BlockWitherRose(int meta) { super(0); } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityBarrel.java b/src/main/java/cn/nukkit/blockentity/BlockEntityBarrel.java index 7117174331d..df1281f3d57 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityBarrel.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityBarrel.java @@ -1,12 +1,15 @@ package cn.nukkit.blockentity; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockID; import cn.nukkit.inventory.BarrelInventory; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; +@PowerNukkitOnly public class BlockEntityBarrel extends BlockEntitySpawnableContainer implements BlockEntityNameable { + @PowerNukkitOnly public BlockEntityBarrel(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityBell.java b/src/main/java/cn/nukkit/blockentity/BlockEntityBell.java index 128ffdfcf95..c1bcd2dbe26 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityBell.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityBell.java @@ -1,6 +1,7 @@ package cn.nukkit.blockentity; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.level.Sound; import cn.nukkit.level.format.FullChunk; @@ -11,13 +12,15 @@ import java.util.ArrayList; import java.util.List; +@PowerNukkitOnly public class BlockEntityBell extends BlockEntitySpawnable { private boolean ringing; private int direction; private int ticks; - public final List spawnExceptions = new ArrayList<>(2); + @PowerNukkitOnly public final List spawnExceptions = new ArrayList<>(2); + @PowerNukkitOnly public BlockEntityBell(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } @@ -92,10 +95,12 @@ private void spawnToAllWithExceptions() { } } + @PowerNukkitOnly public boolean isRinging() { return ringing; } + @PowerNukkitOnly public void setRinging(boolean ringing) { if (this.level != null && this.ringing != ringing) { this.ringing = ringing; @@ -103,18 +108,22 @@ public void setRinging(boolean ringing) { } } + @PowerNukkitOnly public int getDirection() { return direction; } + @PowerNukkitOnly public void setDirection(int direction) { this.direction = direction; } + @PowerNukkitOnly public int getTicks() { return ticks; } + @PowerNukkitOnly public void setTicks(int ticks) { this.ticks = ticks; } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityBlastFurnace.java b/src/main/java/cn/nukkit/blockentity/BlockEntityBlastFurnace.java index eaf3454c45f..4a5c14d3477 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityBlastFurnace.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityBlastFurnace.java @@ -1,5 +1,6 @@ package cn.nukkit.blockentity; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.inventory.InventoryType; import cn.nukkit.inventory.SmeltingRecipe; @@ -7,7 +8,9 @@ import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; +@PowerNukkitOnly public class BlockEntityBlastFurnace extends BlockEntityFurnace { + @PowerNukkitOnly public BlockEntityBlastFurnace(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityCampfire.java b/src/main/java/cn/nukkit/blockentity/BlockEntityCampfire.java index 80d76a8184f..3b657de6104 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityCampfire.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityCampfire.java @@ -1,6 +1,7 @@ package cn.nukkit.blockentity; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockAir; import cn.nukkit.block.BlockCampfire; @@ -19,6 +20,7 @@ import java.util.HashSet; import java.util.concurrent.ThreadLocalRandom; +@PowerNukkitOnly public class BlockEntityCampfire extends BlockEntitySpawnable implements InventoryHolder, BlockEntityContainer { private CampfireInventory inventory; @@ -26,6 +28,7 @@ public class BlockEntityCampfire extends BlockEntitySpawnable implements Invento private CampfireRecipe[] recipes; private boolean[] keepItem; + @PowerNukkitOnly public BlockEntityCampfire(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } @@ -105,6 +108,7 @@ public boolean onUpdate() { return needsUpdate; } + @PowerNukkitOnly public boolean getKeepItem(int slot) { if (slot < 0 || slot >= keepItem.length) { return false; @@ -112,6 +116,7 @@ public boolean getKeepItem(int slot) { return keepItem[slot]; } + @PowerNukkitOnly public void setKeepItem(int slot, boolean keep) { if (slot < 0 || slot >= keepItem.length) { return; @@ -138,6 +143,7 @@ public void saveNBT() { super.saveNBT(); } + @PowerNukkitOnly public void setRecipe(int index, CampfireRecipe recipe) { this.recipes[index] = recipe; } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityConduit.java b/src/main/java/cn/nukkit/blockentity/BlockEntityConduit.java index 72f57883770..23c35e33596 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityConduit.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityConduit.java @@ -1,5 +1,6 @@ package cn.nukkit.blockentity; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; import cn.nukkit.entity.Entity; @@ -24,7 +25,9 @@ import java.util.List; import java.util.concurrent.ThreadLocalRandom; +@PowerNukkitOnly public class BlockEntityConduit extends BlockEntitySpawnable { + @PowerNukkitOnly public static IntSet VALID_STRUCTURE_BLOCKS = new IntOpenHashSet(new int[]{ BlockID.PRISMARINE, BlockID.SEA_LANTERN @@ -35,6 +38,7 @@ public class BlockEntityConduit extends BlockEntitySpawnable { private boolean active; private int validBlocks; + @PowerNukkitOnly public BlockEntityConduit(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } @@ -117,10 +121,12 @@ public boolean isBlockEntityValid() { return getBlock().getId() == BlockID.CONDUIT; } + @PowerNukkitOnly public void setTargetEntity(Entity targetEntity) { this.targetEntity = targetEntity; } + @PowerNukkitOnly public Entity getTargetEntity() { return targetEntity; } @@ -130,10 +136,12 @@ public Entity getTargetEntity() { this.active = active; }*/ + @PowerNukkitOnly public boolean isActive() { return active; } + @PowerNukkitOnly public void addEffectToPlayers() { int radius = getPlayerRadius(); if (radius <= 0) { @@ -155,6 +163,7 @@ public void addEffectToPlayers() { ); } + @PowerNukkitOnly public void attackMob() { int radius = getAttackRadius(); if (radius <= 0) { @@ -196,10 +205,12 @@ public void attackMob() { } } + @PowerNukkitOnly public boolean canAttack(Entity target) { return target instanceof EntityMob && canAffect(target); } + @PowerNukkitOnly public boolean canAffect(Entity target) { return target.isTouchingWater() || target.level.isRaining() && target.level.canBlockSeeSky(target) @@ -285,6 +296,7 @@ private int scanFrame() { return validBlocks; } + @PowerNukkitOnly public List scanEdgeBlock() { List validBlocks = new ArrayList<>(); int x = getFloorX(); @@ -316,6 +328,7 @@ public List scanEdgeBlock() { return validBlocks; } + @PowerNukkitOnly public boolean scanStructure() { if(!scanWater()) { this.validBlocks = 0; @@ -333,15 +346,18 @@ public boolean scanStructure() { return true; } + @PowerNukkitOnly public int getValidBlocks() { return validBlocks; } + @PowerNukkitOnly public int getPlayerRadius() { int radius = validBlocks / 7; return radius * 16; } + @PowerNukkitOnly public int getAttackRadius() { if (validBlocks >= 42) { return 8; diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityDaylightDetector.java b/src/main/java/cn/nukkit/blockentity/BlockEntityDaylightDetector.java index f66c2987b90..d8105efebdc 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityDaylightDetector.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityDaylightDetector.java @@ -1,13 +1,16 @@ package cn.nukkit.blockentity; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockDaylightDetector; import cn.nukkit.block.BlockID; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; +@PowerNukkitOnly public class BlockEntityDaylightDetector extends BlockEntity { + @PowerNukkitOnly public BlockEntityDaylightDetector(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityDispenser.java b/src/main/java/cn/nukkit/blockentity/BlockEntityDispenser.java index 66ea11a535d..8521145eaec 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityDispenser.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityDispenser.java @@ -1,18 +1,17 @@ package cn.nukkit.blockentity; -import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockID; import cn.nukkit.inventory.DispenserInventory; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; -@PowerNukkitDifference(info = "Extends BlockEntityEjectable instead of " + - "BlockEntitySpawnable, BlockEntityContainer, BlockEntityNameable, and InventoryHolder " + - "only in PowerNukkit", since = "1.4.0.0-PN") +@PowerNukkitOnly public class BlockEntityDispenser extends BlockEntityEjectable { - protected DispenserInventory inventory; + @PowerNukkitOnly protected DispenserInventory inventory; + @PowerNukkitOnly public BlockEntityDispenser(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityDropper.java b/src/main/java/cn/nukkit/blockentity/BlockEntityDropper.java index 87681196f30..ad7b215a037 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityDropper.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityDropper.java @@ -1,18 +1,17 @@ package cn.nukkit.blockentity; -import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockID; import cn.nukkit.inventory.DropperInventory; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; -@PowerNukkitDifference(info = "Extends BlockEntityEjectable instead of " + - "BlockEntitySpawnable, BlockEntityContainer, BlockEntityNameable, and InventoryHolder " + - "only in PowerNukkit", since = "1.4.0.0-PN") +@PowerNukkitOnly public class BlockEntityDropper extends BlockEntityEjectable { - protected DropperInventory inventory; + @PowerNukkitOnly protected DropperInventory inventory; + @PowerNukkitOnly public BlockEntityDropper(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityLectern.java b/src/main/java/cn/nukkit/blockentity/BlockEntityLectern.java index c3ed5fc0df9..f691a3aeaf3 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityLectern.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityLectern.java @@ -1,6 +1,7 @@ package cn.nukkit.blockentity; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockAir; import cn.nukkit.block.BlockID; import cn.nukkit.utils.RedstoneComponent; @@ -11,10 +12,12 @@ import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.nbt.tag.IntTag; +@PowerNukkitOnly public class BlockEntityLectern extends BlockEntitySpawnable { private int totalPages; + @PowerNukkitOnly public BlockEntityLectern(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } @@ -64,10 +67,12 @@ public void onBreak() { level.dropItem(this, getBook()); } + @PowerNukkitOnly public boolean hasBook() { return this.namedTag.contains("book") && this.namedTag.get("book") instanceof CompoundTag; } + @PowerNukkitOnly public Item getBook() { if (!hasBook()) { return new ItemBlock(new BlockAir(), 0, 0); @@ -76,6 +81,7 @@ public Item getBook() { } } + @PowerNukkitOnly public void setBook(Item item) { if (item.getId() == Item.WRITTEN_BOOK || item.getId() == Item.BOOK_AND_QUILL) { this.namedTag.putCompound("book", NBTIO.putItemHelper(item)); @@ -86,31 +92,38 @@ public void setBook(Item item) { updateTotalPages(); } + @PowerNukkitOnly public int getLeftPage() { return (getRawPage() * 2) + 1; } + @PowerNukkitOnly public int getRightPage() { return getLeftPage() + 1; } + @PowerNukkitOnly public void setLeftPage(int newLeftPage) { setRawPage((newLeftPage - 1) /2); } + @PowerNukkitOnly public void setRightPage(int newRightPage) { setLeftPage(newRightPage -1); } + @PowerNukkitOnly public void setRawPage(int page) { this.namedTag.putInt("page", Math.min(page, totalPages)); this.getLevel().updateAround(this); } + @PowerNukkitOnly public int getRawPage() { return this.namedTag.getInt("page"); } + @PowerNukkitOnly public int getTotalPages() { return totalPages; } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntitySmoker.java b/src/main/java/cn/nukkit/blockentity/BlockEntitySmoker.java index c114796dd3e..c9c618721cd 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntitySmoker.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntitySmoker.java @@ -1,5 +1,6 @@ package cn.nukkit.blockentity; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.inventory.InventoryType; import cn.nukkit.inventory.SmeltingRecipe; @@ -7,7 +8,9 @@ import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; +@PowerNukkitOnly public class BlockEntitySmoker extends BlockEntityFurnace { + @PowerNukkitOnly public BlockEntitySmoker(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntitySpawnableContainer.java b/src/main/java/cn/nukkit/blockentity/BlockEntitySpawnableContainer.java index 477a6d1b939..1805583560b 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntitySpawnableContainer.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntitySpawnableContainer.java @@ -1,6 +1,7 @@ package cn.nukkit.blockentity; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockAir; import cn.nukkit.inventory.ContainerInventory; import cn.nukkit.inventory.InventoryHolder; @@ -13,9 +14,12 @@ import java.util.HashSet; +@PowerNukkitOnly public abstract class BlockEntitySpawnableContainer extends BlockEntitySpawnable implements InventoryHolder, BlockEntityContainer { + @PowerNukkitOnly protected ContainerInventory inventory; + @PowerNukkitOnly public BlockEntitySpawnableContainer(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } @@ -61,6 +65,7 @@ public void saveNBT() { } } + @PowerNukkitOnly protected int getSlotIndex(int index) { ListTag list = this.namedTag.getList("Items", CompoundTag.class); for (int i = 0; i < list.size(); i++) { diff --git a/src/main/java/cn/nukkit/command/CapturingCommandSender.java b/src/main/java/cn/nukkit/command/CapturingCommandSender.java index ce032506817..30a916048b3 100644 --- a/src/main/java/cn/nukkit/command/CapturingCommandSender.java +++ b/src/main/java/cn/nukkit/command/CapturingCommandSender.java @@ -1,6 +1,7 @@ package cn.nukkit.command; import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.lang.TextContainer; import cn.nukkit.permission.*; import cn.nukkit.plugin.Plugin; @@ -16,6 +17,7 @@ /** * @since 1.2.1.0-PN */ +@PowerNukkitOnly @AllArgsConstructor public class CapturingCommandSender implements CommandSender { private final StringBuilder captured = new StringBuilder(); diff --git a/src/main/java/cn/nukkit/command/defaults/SetBlockCommand.java b/src/main/java/cn/nukkit/command/defaults/SetBlockCommand.java index f1f7890bfcc..d1be38ee3ec 100644 --- a/src/main/java/cn/nukkit/command/defaults/SetBlockCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/SetBlockCommand.java @@ -1,6 +1,7 @@ package cn.nukkit.command.defaults; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; import cn.nukkit.command.CommandSender; @@ -14,7 +15,9 @@ import java.util.Arrays; +@PowerNukkitOnly public class SetBlockCommand extends VanillaCommand { + @PowerNukkitOnly public SetBlockCommand(String name) { super(name, "%nukkit.command.setblock.description", "%nukkit.command.setblock.usage"); this.setPermission("nukkit.command.setblock"); diff --git a/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java index bbae7c027b4..eeb2013c02e 100644 --- a/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java @@ -1,5 +1,6 @@ package cn.nukkit.dispenser; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockDispenser; import cn.nukkit.block.BlockID; @@ -11,6 +12,7 @@ import cn.nukkit.math.BlockFace; import cn.nukkit.math.Vector3; +@PowerNukkitOnly public class BoatDispenseBehavior extends DefaultDispenseBehavior { @Override diff --git a/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java index 2ec3460bb2a..d698708df42 100644 --- a/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java @@ -10,7 +10,6 @@ import cn.nukkit.level.Sound; import cn.nukkit.math.BlockFace; -@PowerNukkitDifference(info = "Spend items in container, the dropper faces to (if there is one).", since = "1.4.0.0-PN") @PowerNukkitOnly public class DropperDispenseBehavior extends DefaultDispenseBehavior { @Override diff --git a/src/main/java/cn/nukkit/dispenser/DyeDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/DyeDispenseBehavior.java index 4229683e00c..59850fe9a1b 100644 --- a/src/main/java/cn/nukkit/dispenser/DyeDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/DyeDispenseBehavior.java @@ -1,9 +1,11 @@ package cn.nukkit.dispenser; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.*; import cn.nukkit.item.Item; import cn.nukkit.math.BlockFace; +@PowerNukkitOnly public class DyeDispenseBehavior extends DefaultDispenseBehavior { @Override diff --git a/src/main/java/cn/nukkit/dispenser/FireChargeDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/FireChargeDispenseBehavior.java deleted file mode 100644 index 6edfaa09655..00000000000 --- a/src/main/java/cn/nukkit/dispenser/FireChargeDispenseBehavior.java +++ /dev/null @@ -1,14 +0,0 @@ -package cn.nukkit.dispenser; - -import cn.nukkit.block.BlockDispenser; -import cn.nukkit.item.Item; -import cn.nukkit.math.BlockFace; - -public class FireChargeDispenseBehavior extends DefaultDispenseBehavior { - - @Override - public Item dispense(BlockDispenser block, BlockFace face, Item item) { - //TODO: firecharge - return null; - } -} diff --git a/src/main/java/cn/nukkit/dispenser/FireworksDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/FireworksDispenseBehavior.java index bcc55074a09..1d7eadf1c8f 100644 --- a/src/main/java/cn/nukkit/dispenser/FireworksDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/FireworksDispenseBehavior.java @@ -1,5 +1,6 @@ package cn.nukkit.dispenser; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockDispenser; import cn.nukkit.entity.Entity; import cn.nukkit.entity.item.EntityFirework; @@ -9,6 +10,7 @@ import cn.nukkit.nbt.NBTIO; import cn.nukkit.nbt.tag.CompoundTag; +@PowerNukkitOnly public class FireworksDispenseBehavior extends DefaultDispenseBehavior { @Override diff --git a/src/main/java/cn/nukkit/dispenser/FlintAndSteelDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/FlintAndSteelDispenseBehavior.java index 54dec1b0eef..1bf4cb3b4d9 100644 --- a/src/main/java/cn/nukkit/dispenser/FlintAndSteelDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/FlintAndSteelDispenseBehavior.java @@ -1,14 +1,15 @@ package cn.nukkit.dispenser; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockDispenser; import cn.nukkit.block.BlockID; import cn.nukkit.item.Item; -import cn.nukkit.item.ItemFlintSteel; import cn.nukkit.level.Sound; import cn.nukkit.math.BlockFace; +@PowerNukkitOnly public class FlintAndSteelDispenseBehavior extends DefaultDispenseBehavior { @Override diff --git a/src/main/java/cn/nukkit/dispenser/PumpkinDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/PumpkinDispenseBehavior.java deleted file mode 100644 index 0803372fa92..00000000000 --- a/src/main/java/cn/nukkit/dispenser/PumpkinDispenseBehavior.java +++ /dev/null @@ -1,17 +0,0 @@ -package cn.nukkit.dispenser; - -import cn.nukkit.block.Block; -import cn.nukkit.block.BlockDispenser; -import cn.nukkit.item.Item; -import cn.nukkit.math.BlockFace; - -public class PumpkinDispenseBehavior extends DefaultDispenseBehavior { - - @Override - public Item dispense(BlockDispenser block, BlockFace face, Item item) { - Block target = block.getSide(face); - - //TODO: snowman / golem - return null; - } -} diff --git a/src/main/java/cn/nukkit/dispenser/ShulkerBoxDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/ShulkerBoxDispenseBehavior.java index 1a878802fcc..0b19acafbda 100644 --- a/src/main/java/cn/nukkit/dispenser/ShulkerBoxDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/ShulkerBoxDispenseBehavior.java @@ -1,11 +1,13 @@ package cn.nukkit.dispenser; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockDispenser; import cn.nukkit.block.BlockUndyedShulkerBox; import cn.nukkit.item.Item; import cn.nukkit.math.BlockFace; +@PowerNukkitOnly public class ShulkerBoxDispenseBehavior extends DefaultDispenseBehavior { @Override diff --git a/src/main/java/cn/nukkit/dispenser/SpawnEggDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/SpawnEggDispenseBehavior.java index 349453a8b35..14482939acd 100644 --- a/src/main/java/cn/nukkit/dispenser/SpawnEggDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/SpawnEggDispenseBehavior.java @@ -1,5 +1,6 @@ package cn.nukkit.dispenser; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockDispenser; import cn.nukkit.entity.Entity; import cn.nukkit.entity.EntityLiving; @@ -8,6 +9,7 @@ import cn.nukkit.math.BlockFace; import cn.nukkit.math.Vector3; +@PowerNukkitOnly public class SpawnEggDispenseBehavior extends DefaultDispenseBehavior { @Override diff --git a/src/main/java/cn/nukkit/dispenser/TNTDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/TNTDispenseBehavior.java index bbdb9aaf266..0848aa4fe7b 100644 --- a/src/main/java/cn/nukkit/dispenser/TNTDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/TNTDispenseBehavior.java @@ -1,5 +1,6 @@ package cn.nukkit.dispenser; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockDispenser; import cn.nukkit.entity.Entity; import cn.nukkit.entity.item.EntityPrimedTNT; @@ -7,6 +8,7 @@ import cn.nukkit.math.BlockFace; import cn.nukkit.math.Vector3; +@PowerNukkitOnly public class TNTDispenseBehavior extends DefaultDispenseBehavior { @Override diff --git a/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java b/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java index 8ba5dbb9920..4d5ea81bc0d 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java +++ b/src/main/java/cn/nukkit/entity/item/EntityAreaEffectCloud.java @@ -21,50 +21,60 @@ import java.util.ArrayList; import java.util.List; +@PowerNukkitOnly public class EntityAreaEffectCloud extends Entity { - public static final int NETWORK_ID = 95; - - protected int reapplicationDelay; - protected int durationOnUse; - protected float initialRadius; - protected float radiusOnUse; - protected int nextApply; - public List cloudEffects; + @PowerNukkitOnly public static final int NETWORK_ID = 95; + + @PowerNukkitOnly protected int reapplicationDelay; + @PowerNukkitOnly protected int durationOnUse; + @PowerNukkitOnly protected float initialRadius; + @PowerNukkitOnly protected float radiusOnUse; + @PowerNukkitOnly protected int nextApply; + @PowerNukkitOnly public List cloudEffects; private int lastAge; - + + @PowerNukkitOnly public EntityAreaEffectCloud(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } - + + @PowerNukkitOnly public int getWaitTime() { return this.getDataPropertyInt(DATA_AREA_EFFECT_CLOUD_WAITING); } - + + @PowerNukkitOnly public void setWaitTime(int waitTime) { setWaitTime(waitTime, true); } - + + @PowerNukkitOnly public void setWaitTime(int waitTime, boolean send) { this.setDataProperty(new IntEntityData(DATA_AREA_EFFECT_CLOUD_WAITING, waitTime), send); } - + + @PowerNukkitOnly public int getPotionId() { return this.getDataPropertyShort(DATA_POTION_AUX_VALUE); } - + + @PowerNukkitOnly public void setPotionId(int potionId) { setPotionId(potionId, true); } - + + @PowerNukkitOnly public void setPotionId(int potionId, boolean send) { this.setDataProperty(new ShortEntityData(DATA_POTION_AUX_VALUE, potionId & 0xFFFF), send); } - + + @PowerNukkitOnly public void recalculatePotionColor() { recalculatePotionColor(true); } - + + @PowerNukkitOnly public void recalculatePotionColor(boolean send) { int a; int r; @@ -95,103 +105,128 @@ public void recalculatePotionColor(boolean send) { setPotionColor(a, r, g, b, send); } - + + @PowerNukkitOnly public int getPotionColor() { return this.getDataPropertyInt(DATA_POTION_COLOR); } - + + @PowerNukkitOnly public void setPotionColor(int alpha, int red, int green, int blue, boolean send) { setPotionColor(((alpha & 0xff) << 24) | ((red & 0xff) << 16) | ((green & 0xff) << 8) | (blue & 0xff), send); } - + + @PowerNukkitOnly public void setPotionColor(int argp) { setPotionColor(argp, true); } - + + @PowerNukkitOnly public void setPotionColor(int argp, boolean send) { this.setDataProperty(new IntEntityData(DATA_POTION_COLOR, argp), send); } - + + @PowerNukkitOnly public int getPickupCount() { return this.getDataPropertyInt(DATA_PICKUP_COUNT); } - + + @PowerNukkitOnly public void setPickupCount(int pickupCount) { setPickupCount(pickupCount, true); } - + + @PowerNukkitOnly public void setPickupCount(int pickupCount, boolean send) { this.setDataProperty(new IntEntityData(DATA_PICKUP_COUNT, pickupCount), send); - } - + } + + @PowerNukkitOnly public float getRadiusChangeOnPickup() { return this.getDataPropertyFloat(DATA_CHANGE_ON_PICKUP); } - + + @PowerNukkitOnly public void setRadiusChangeOnPickup(float radiusChangeOnPickup) { setRadiusChangeOnPickup(radiusChangeOnPickup, true); } - + + @PowerNukkitOnly public void setRadiusChangeOnPickup(float radiusChangeOnPickup, boolean send) { this.setDataProperty(new FloatEntityData(DATA_CHANGE_ON_PICKUP, radiusChangeOnPickup), send); } - + + @PowerNukkitOnly public float getRadiusPerTick() { return this.getDataPropertyFloat(DATA_CHANGE_RATE); } - + + @PowerNukkitOnly public void setRadiusPerTick(float radiusPerTick) { setRadiusPerTick(radiusPerTick, true); } - + + @PowerNukkitOnly public void setRadiusPerTick(float radiusPerTick, boolean send) { this.setDataProperty(new FloatEntityData(DATA_CHANGE_RATE, radiusPerTick), send); } - + + @PowerNukkitOnly public long getSpawnTime() { return this.getDataPropertyInt(DATA_SPAWN_TIME); } - + + @PowerNukkitOnly public void setSpawnTime(long spawnTime) { setSpawnTime(spawnTime, true); } - + + @PowerNukkitOnly public void setSpawnTime(long spawnTime, boolean send) { this.setDataProperty(new LongEntityData(DATA_SPAWN_TIME, spawnTime), send); } - + + @PowerNukkitOnly public int getDuration() { return this.getDataPropertyInt(DATA_DURATION); } - + + @PowerNukkitOnly public void setDuration(int duration) { setDuration(duration, true); } - + + @PowerNukkitOnly public void setDuration(int duration, boolean send) { this.setDataProperty(new IntEntityData(DATA_DURATION, duration), send); } - + + @PowerNukkitOnly public float getRadius() { return this.getDataPropertyFloat(DATA_AREA_EFFECT_CLOUD_RADIUS); } - + + @PowerNukkitOnly public void setRadius(float radius) { setRadius(radius, true); } - + + @PowerNukkitOnly public void setRadius(float radius, boolean send) { this.setDataProperty(new FloatEntityData(DATA_AREA_EFFECT_CLOUD_RADIUS, radius), send); } - + + @PowerNukkitOnly public int getParticleId() { return this.getDataPropertyInt(DATA_AREA_EFFECT_CLOUD_PARTICLE_ID); } - + + @PowerNukkitOnly public void setParticleId(int particleId) { setParticleId(particleId, true); } - + + @PowerNukkitOnly public void setParticleId(int particleId, boolean send) { this.setDataProperty(new IntEntityData(DATA_AREA_EFFECT_CLOUD_PARTICLE_ID, particleId), send); } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java b/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java index 5f265028d0d..8f07fcc8834 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java @@ -11,14 +11,18 @@ import cn.nukkit.potion.Effect; import cn.nukkit.potion.Potion; +@PowerNukkitOnly public class EntityPotionLingering extends EntityPotion { - + + @PowerNukkitOnly public static final int NETWORK_ID = 101; - + + @PowerNukkitOnly public EntityPotionLingering(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } - + + @PowerNukkitOnly public EntityPotionLingering(FullChunk chunk, CompoundTag nbt, Entity shootingEntity) { super(chunk, nbt, shootingEntity); } diff --git a/src/main/java/cn/nukkit/event/block/BellRingEvent.java b/src/main/java/cn/nukkit/event/block/BellRingEvent.java index 18f2bc67d86..29fad42d1a6 100644 --- a/src/main/java/cn/nukkit/event/block/BellRingEvent.java +++ b/src/main/java/cn/nukkit/event/block/BellRingEvent.java @@ -1,14 +1,17 @@ package cn.nukkit.event.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockBell; import cn.nukkit.entity.Entity; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; +@PowerNukkitOnly public class BellRingEvent extends BlockEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } @@ -16,6 +19,7 @@ public static HandlerList getHandlers() { private final RingCause cause; private final Entity entity; + @PowerNukkitOnly public BellRingEvent(BlockBell bell, RingCause cause, Entity entity) { super(bell); this.cause = cause; @@ -27,20 +31,23 @@ public BlockBell getBlock() { return (BlockBell) super.getBlock(); } + @PowerNukkitOnly public Entity getEntity() { return entity; } + @PowerNukkitOnly public RingCause getCause() { return cause; } + @PowerNukkitOnly public enum RingCause { - HUMAN_INTERACTION, - REDSTONE, - PROJECTILE, - DROPPED_ITEM, - UNKNOWN + @PowerNukkitOnly HUMAN_INTERACTION, + @PowerNukkitOnly REDSTONE, + @PowerNukkitOnly PROJECTILE, + @PowerNukkitOnly DROPPED_ITEM, + @PowerNukkitOnly UNKNOWN } } diff --git a/src/main/java/cn/nukkit/event/block/BlockHarvestEvent.java b/src/main/java/cn/nukkit/event/block/BlockHarvestEvent.java index e214f069251..f661d1a8759 100644 --- a/src/main/java/cn/nukkit/event/block/BlockHarvestEvent.java +++ b/src/main/java/cn/nukkit/event/block/BlockHarvestEvent.java @@ -1,10 +1,12 @@ package cn.nukkit.event.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; import cn.nukkit.item.Item; +@PowerNukkitOnly public class BlockHarvestEvent extends BlockEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); @@ -12,28 +14,34 @@ public class BlockHarvestEvent extends BlockEvent implements Cancellable { private Block newState; private Item[] drops; + @PowerNukkitOnly public BlockHarvestEvent(Block block, Block newState, Item[] drops) { super(block); this.newState = newState; this.drops = drops; } + @PowerNukkitOnly public Block getNewState() { return newState; } + @PowerNukkitOnly public void setNewState(Block newState) { this.newState = newState; } + @PowerNukkitOnly public Item[] getDrops() { return drops; } + @PowerNukkitOnly public void setDrops(Item[] drops) { this.drops = drops; } + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } diff --git a/src/main/java/cn/nukkit/event/block/BlockPistonEvent.java b/src/main/java/cn/nukkit/event/block/BlockPistonEvent.java index 2d1cc3debd7..5121587560e 100644 --- a/src/main/java/cn/nukkit/event/block/BlockPistonEvent.java +++ b/src/main/java/cn/nukkit/event/block/BlockPistonEvent.java @@ -1,5 +1,6 @@ package cn.nukkit.event.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockPistonBase; import cn.nukkit.event.Cancellable; @@ -9,10 +10,12 @@ import java.util.ArrayList; import java.util.List; +@PowerNukkitOnly public class BlockPistonEvent extends BlockEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } @@ -22,6 +25,7 @@ public static HandlerList getHandlers() { private final List destroyedBlocks; private final boolean extending; + @PowerNukkitOnly public BlockPistonEvent(BlockPistonBase piston, BlockFace direction, List blocks, List destroyedBlocks, boolean extending) { super(piston); this.direction = direction; @@ -30,18 +34,22 @@ public BlockPistonEvent(BlockPistonBase piston, BlockFace direction, List this.extending = extending; } + @PowerNukkitOnly public BlockFace getDirection() { return direction; } + @PowerNukkitOnly public List getBlocks() { return new ArrayList<>(blocks); } + @PowerNukkitOnly public List getDestroyedBlocks() { return destroyedBlocks; } + @PowerNukkitOnly public boolean isExtending() { return extending; } diff --git a/src/main/java/cn/nukkit/event/block/ComposterEmptyEvent.java b/src/main/java/cn/nukkit/event/block/ComposterEmptyEvent.java index c6614169ba2..80120a5b67d 100644 --- a/src/main/java/cn/nukkit/event/block/ComposterEmptyEvent.java +++ b/src/main/java/cn/nukkit/event/block/ComposterEmptyEvent.java @@ -1,14 +1,14 @@ package cn.nukkit.event.block; import cn.nukkit.Player; -import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; import cn.nukkit.item.Item; import cn.nukkit.math.Vector3; -@PowerNukkitDifference(info = "The player and the item are null when they are empty by a hopper pulling the item", since = "1.4.0.0-PN") +@PowerNukkitOnly public class ComposterEmptyEvent extends BlockEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); @@ -19,6 +19,7 @@ public class ComposterEmptyEvent extends BlockEvent implements Cancellable { private int newLevel; private Vector3 motion; + @PowerNukkitOnly public ComposterEmptyEvent(Block block, Player player, Item itemUsed, Item drop, int newLevel) { super(block); this.player = player; @@ -27,14 +28,17 @@ public ComposterEmptyEvent(Block block, Player player, Item itemUsed, Item drop, this.newLevel = Math.max(0, Math.min(newLevel, 8)); } + @PowerNukkitOnly public Player getPlayer() { return player; } + @PowerNukkitOnly public Item getDrop() { return drop.clone(); } + @PowerNukkitOnly public void setDrop(Item drop) { if (drop == null) { drop = Item.get(Item.AIR); @@ -44,30 +48,37 @@ public void setDrop(Item drop) { this.drop = drop; } + @PowerNukkitOnly public Item getItemUsed() { return itemUsed; } + @PowerNukkitOnly public void setItemUsed(Item itemUsed) { this.itemUsed = itemUsed; } + @PowerNukkitOnly public int getNewLevel() { return newLevel; } + @PowerNukkitOnly public void setNewLevel(int newLevel) { this.newLevel = Math.max(0, Math.min(newLevel, 8)); } + @PowerNukkitOnly public Vector3 getMotion() { return motion; } + @PowerNukkitOnly public void setMotion(Vector3 motion) { this.motion = motion; } + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } diff --git a/src/main/java/cn/nukkit/event/block/ComposterFillEvent.java b/src/main/java/cn/nukkit/event/block/ComposterFillEvent.java index f8879c3a35e..4fd733749a1 100644 --- a/src/main/java/cn/nukkit/event/block/ComposterFillEvent.java +++ b/src/main/java/cn/nukkit/event/block/ComposterFillEvent.java @@ -1,13 +1,13 @@ package cn.nukkit.event.block; import cn.nukkit.Player; -import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; import cn.nukkit.item.Item; -@PowerNukkitDifference(info = "Player is null when is filled by a hopper pushing the item", since = "1.4.0.0-PN") +@PowerNukkitOnly public class ComposterFillEvent extends BlockEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); @@ -17,6 +17,7 @@ public class ComposterFillEvent extends BlockEvent implements Cancellable { private final int chance; private boolean success; + @PowerNukkitOnly public ComposterFillEvent(Block block, Player player, Item item, int chance, boolean success) { super(block); this.player = player; @@ -25,26 +26,32 @@ public ComposterFillEvent(Block block, Player player, Item item, int chance, boo this.success = success; } + @PowerNukkitOnly public Player getPlayer() { return player; } + @PowerNukkitOnly public Item getItem() { return item; } + @PowerNukkitOnly public int getChance() { return chance; } + @PowerNukkitOnly public boolean isSuccess() { return success; } + @PowerNukkitOnly public void setSuccess(boolean success) { this.success = success; } + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } diff --git a/src/main/java/cn/nukkit/event/block/ConduitActivateEvent.java b/src/main/java/cn/nukkit/event/block/ConduitActivateEvent.java index c65368f37d1..d4f58789d9a 100644 --- a/src/main/java/cn/nukkit/event/block/ConduitActivateEvent.java +++ b/src/main/java/cn/nukkit/event/block/ConduitActivateEvent.java @@ -1,16 +1,20 @@ package cn.nukkit.event.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.event.HandlerList; +@PowerNukkitOnly public class ConduitActivateEvent extends BlockEvent { private static final HandlerList handlers = new HandlerList(); + @PowerNukkitOnly public ConduitActivateEvent(Block block) { super(block); } + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } diff --git a/src/main/java/cn/nukkit/event/block/ConduitDeactivateEvent.java b/src/main/java/cn/nukkit/event/block/ConduitDeactivateEvent.java index 47d7e5392dd..5b18a12d7cc 100644 --- a/src/main/java/cn/nukkit/event/block/ConduitDeactivateEvent.java +++ b/src/main/java/cn/nukkit/event/block/ConduitDeactivateEvent.java @@ -1,16 +1,20 @@ package cn.nukkit.event.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.event.HandlerList; +@PowerNukkitOnly public class ConduitDeactivateEvent extends BlockEvent { private static final HandlerList handlers = new HandlerList(); + @PowerNukkitOnly public ConduitDeactivateEvent(Block block) { super(block); } + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } diff --git a/src/main/java/cn/nukkit/event/block/LecternDropBookEvent.java b/src/main/java/cn/nukkit/event/block/LecternDropBookEvent.java index 097ae605ed3..a9405b45d78 100644 --- a/src/main/java/cn/nukkit/event/block/LecternDropBookEvent.java +++ b/src/main/java/cn/nukkit/event/block/LecternDropBookEvent.java @@ -1,11 +1,13 @@ package cn.nukkit.event.block; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.blockentity.BlockEntityLectern; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; import cn.nukkit.item.Item; +@PowerNukkitOnly public class LecternDropBookEvent extends BlockEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); @@ -13,6 +15,7 @@ public class LecternDropBookEvent extends BlockEvent implements Cancellable { private final BlockEntityLectern lectern; private Item book; + @PowerNukkitOnly public LecternDropBookEvent(Player player, BlockEntityLectern lectern, Item book) { super(lectern.getBlock()); this.player = player; @@ -20,22 +23,27 @@ public LecternDropBookEvent(Player player, BlockEntityLectern lectern, Item book this.book = book; } + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } + @PowerNukkitOnly public BlockEntityLectern getLectern() { return lectern; } + @PowerNukkitOnly public Player getPlayer() { return player; } + @PowerNukkitOnly public Item getBook() { return book.clone(); } + @PowerNukkitOnly public void setBook(Item book) { this.book = book; } diff --git a/src/main/java/cn/nukkit/event/block/LecternPageChangeEvent.java b/src/main/java/cn/nukkit/event/block/LecternPageChangeEvent.java index fe625129cf9..af0b8d50723 100644 --- a/src/main/java/cn/nukkit/event/block/LecternPageChangeEvent.java +++ b/src/main/java/cn/nukkit/event/block/LecternPageChangeEvent.java @@ -1,10 +1,12 @@ package cn.nukkit.event.block; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.blockentity.BlockEntityLectern; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; +@PowerNukkitOnly public class LecternPageChangeEvent extends BlockEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); @@ -12,6 +14,7 @@ public class LecternPageChangeEvent extends BlockEvent implements Cancellable { private final BlockEntityLectern lectern; private int newRawPage; + @PowerNukkitOnly public LecternPageChangeEvent(Player player, BlockEntityLectern lectern, int newPage) { super(lectern.getBlock()); this.player = player; @@ -19,42 +22,52 @@ public LecternPageChangeEvent(Player player, BlockEntityLectern lectern, int new this.newRawPage = newPage; } + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } + @PowerNukkitOnly public BlockEntityLectern getLectern() { return lectern; } + @PowerNukkitOnly public int getLeftPage() { return (newRawPage * 2) + 1; } + @PowerNukkitOnly public int getRightPage() { return getLeftPage() + 1; } + @PowerNukkitOnly public void setLeftPage(int newLeftPage) { this.newRawPage = (newLeftPage - 1) / 2; } + @PowerNukkitOnly public void setRightPage(int newRightPage) { this.setLeftPage(newRightPage - 1); } + @PowerNukkitOnly public int getNewRawPage() { return newRawPage; } + @PowerNukkitOnly public void setNewRawPage(int newRawPage) { this.newRawPage = newRawPage; } + @PowerNukkitOnly public int getMaxPage() { return lectern.getTotalPages(); } + @PowerNukkitOnly public Player getPlayer() { return player; } diff --git a/src/main/java/cn/nukkit/event/block/LecternPlaceBookEvent.java b/src/main/java/cn/nukkit/event/block/LecternPlaceBookEvent.java index 565a3fe03fc..6458cfd676e 100644 --- a/src/main/java/cn/nukkit/event/block/LecternPlaceBookEvent.java +++ b/src/main/java/cn/nukkit/event/block/LecternPlaceBookEvent.java @@ -1,11 +1,13 @@ package cn.nukkit.event.block; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.blockentity.BlockEntityLectern; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; import cn.nukkit.item.Item; +@PowerNukkitOnly public class LecternPlaceBookEvent extends BlockEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); @@ -13,6 +15,7 @@ public class LecternPlaceBookEvent extends BlockEvent implements Cancellable { private final BlockEntityLectern lectern; private Item book; + @PowerNukkitOnly public LecternPlaceBookEvent(Player player, BlockEntityLectern lectern, Item book) { super(lectern.getBlock()); this.player = player; @@ -20,22 +23,27 @@ public LecternPlaceBookEvent(Player player, BlockEntityLectern lectern, Item boo this.book = book; } + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } + @PowerNukkitOnly public BlockEntityLectern getLectern() { return lectern; } + @PowerNukkitOnly public Player getPlayer() { return player; } + @PowerNukkitOnly public Item getBook() { return book.clone(); } + @PowerNukkitOnly public void setBook(Item book) { this.book = book; } diff --git a/src/main/java/cn/nukkit/event/block/TurtleEggHatchEvent.java b/src/main/java/cn/nukkit/event/block/TurtleEggHatchEvent.java index 7b9eb36cd34..5655edec85f 100644 --- a/src/main/java/cn/nukkit/event/block/TurtleEggHatchEvent.java +++ b/src/main/java/cn/nukkit/event/block/TurtleEggHatchEvent.java @@ -1,11 +1,13 @@ package cn.nukkit.event.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockAir; import cn.nukkit.block.BlockTurtleEgg; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; +@PowerNukkitOnly public class TurtleEggHatchEvent extends BlockEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); @@ -14,12 +16,14 @@ public class TurtleEggHatchEvent extends BlockEvent implements Cancellable { private Block newState; private boolean recalculateOnFailure = true; + @PowerNukkitOnly public TurtleEggHatchEvent(BlockTurtleEgg turtleEgg, int eggsHatching, Block newState) { super(turtleEgg); this.eggsHatching = eggsHatching; this.newState = newState; } + @PowerNukkitOnly public void recalculateNewState() { BlockTurtleEgg turtleEgg = getBlock(); int eggCount = turtleEgg.getEggCount(); @@ -33,10 +37,12 @@ public void recalculateNewState() { } } + @PowerNukkitOnly public Block getNewState() { return newState; } + @PowerNukkitOnly public void setNewState(Block newState) { this.newState = newState; } @@ -46,22 +52,27 @@ public BlockTurtleEgg getBlock() { return (BlockTurtleEgg) super.getBlock(); } + @PowerNukkitOnly public int getEggsHatching() { return eggsHatching; } + @PowerNukkitOnly public void setEggsHatching(int eggsHatching) { this.eggsHatching = eggsHatching; } + @PowerNukkitOnly public boolean isRecalculateOnFailure() { return recalculateOnFailure; } + @PowerNukkitOnly public void setRecalculateOnFailure(boolean recalculateOnFailure) { this.recalculateOnFailure = recalculateOnFailure; } + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } diff --git a/src/main/java/cn/nukkit/event/block/WaterFrostEvent.java b/src/main/java/cn/nukkit/event/block/WaterFrostEvent.java index 568361c7803..70966baf66d 100644 --- a/src/main/java/cn/nukkit/event/block/WaterFrostEvent.java +++ b/src/main/java/cn/nukkit/event/block/WaterFrostEvent.java @@ -1,25 +1,31 @@ package cn.nukkit.event.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.entity.Entity; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; +@PowerNukkitOnly public class WaterFrostEvent extends BlockEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } - + + @PowerNukkitOnly protected final Entity entity; + @PowerNukkitOnly public WaterFrostEvent(Block block, Entity entity) { super(block); this.entity = entity; } - + + @PowerNukkitOnly public Entity getEntity() { return entity; } diff --git a/src/main/java/cn/nukkit/event/entity/EntityMoveByPistonEvent.java b/src/main/java/cn/nukkit/event/entity/EntityMoveByPistonEvent.java index c97048f7ec9..31d19360692 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityMoveByPistonEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityMoveByPistonEvent.java @@ -1,10 +1,13 @@ package cn.nukkit.event.entity; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.entity.Entity; import cn.nukkit.event.Cancellable; import cn.nukkit.math.Vector3; +@PowerNukkitOnly public class EntityMoveByPistonEvent extends EntityMotionEvent implements Cancellable { + @PowerNukkitOnly public EntityMoveByPistonEvent(Entity entity, Vector3 pos) { super(entity, pos); } diff --git a/src/main/java/cn/nukkit/event/inventory/CampfireSmeltEvent.java b/src/main/java/cn/nukkit/event/inventory/CampfireSmeltEvent.java index ea03a7888ef..07563ecf826 100644 --- a/src/main/java/cn/nukkit/event/inventory/CampfireSmeltEvent.java +++ b/src/main/java/cn/nukkit/event/inventory/CampfireSmeltEvent.java @@ -1,5 +1,6 @@ package cn.nukkit.event.inventory; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.blockentity.BlockEntityCampfire; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; @@ -9,10 +10,12 @@ /** * @author MagicDroidX (Nukkit Project) */ +@PowerNukkitOnly public class CampfireSmeltEvent extends BlockEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } @@ -22,6 +25,7 @@ public static HandlerList getHandlers() { private Item result; private boolean keepItem; + @PowerNukkitOnly public CampfireSmeltEvent(BlockEntityCampfire campfire, Item source, Item result) { super(campfire.getBlock()); this.source = source.clone(); @@ -30,26 +34,32 @@ public CampfireSmeltEvent(BlockEntityCampfire campfire, Item source, Item result this.campfire = campfire; } + @PowerNukkitOnly public BlockEntityCampfire getCampfire() { return campfire; } + @PowerNukkitOnly public Item getSource() { return source; } + @PowerNukkitOnly public Item getResult() { return result; } + @PowerNukkitOnly public void setResult(Item result) { this.result = result; } + @PowerNukkitOnly public boolean getKeepItem() { return keepItem; } + @PowerNukkitOnly public void setKeepItem(boolean keepItem) { this.keepItem = keepItem; } diff --git a/src/main/java/cn/nukkit/event/vehicle/VehicleDamageByEntityEvent.java b/src/main/java/cn/nukkit/event/vehicle/VehicleDamageByEntityEvent.java index c928e70e1b6..6413d9234c0 100644 --- a/src/main/java/cn/nukkit/event/vehicle/VehicleDamageByEntityEvent.java +++ b/src/main/java/cn/nukkit/event/vehicle/VehicleDamageByEntityEvent.java @@ -1,5 +1,6 @@ package cn.nukkit.event.vehicle; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.entity.Entity; import cn.nukkit.entity.item.EntityVehicle; import cn.nukkit.event.Cancellable; @@ -11,6 +12,7 @@ * @author TrainmasterHD * @since 09.09.2019 */ +@PowerNukkitOnly public final class VehicleDamageByEntityEvent extends VehicleDamageEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); @@ -24,13 +26,14 @@ public final class VehicleDamageByEntityEvent extends VehicleDamageEvent impleme * @param attacker the attacking vehicle * @param damage the caused damage on the vehicle */ - + @PowerNukkitOnly public VehicleDamageByEntityEvent(final EntityVehicle vehicle, final Entity attacker, final double damage) { super(vehicle, damage); this.attacker = attacker; } + @PowerNukkitOnly public static HandlerList getHandlers() { return handlers; } @@ -40,7 +43,7 @@ public static HandlerList getHandlers() { * * @return attacking entity */ - + @PowerNukkitOnly public Entity getAttacker() { return attacker; } diff --git a/src/main/java/cn/nukkit/event/vehicle/VehicleDestroyByEntityEvent.java b/src/main/java/cn/nukkit/event/vehicle/VehicleDestroyByEntityEvent.java index 436c14e314f..3f0bd8de12f 100644 --- a/src/main/java/cn/nukkit/event/vehicle/VehicleDestroyByEntityEvent.java +++ b/src/main/java/cn/nukkit/event/vehicle/VehicleDestroyByEntityEvent.java @@ -1,5 +1,6 @@ package cn.nukkit.event.vehicle; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.entity.Entity; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; @@ -10,6 +11,7 @@ * @author TrainmasterHD * @since 09.09.2019 */ +@PowerNukkitOnly public final class VehicleDestroyByEntityEvent extends VehicleDestroyEvent implements Cancellable { private static final HandlerList HANDLER_LIST = new HandlerList(); @@ -22,13 +24,14 @@ public final class VehicleDestroyByEntityEvent extends VehicleDestroyEvent imple * @param vehicle the destroyed vehicle * @param destroyer the destroying entity */ - + @PowerNukkitOnly public VehicleDestroyByEntityEvent(final Entity vehicle, final Entity destroyer) { super(vehicle); this.destroyer = destroyer; } + @PowerNukkitOnly public static HandlerList getHandlers() { return HANDLER_LIST; } @@ -38,7 +41,7 @@ public static HandlerList getHandlers() { * * @return destroying entity */ - + @PowerNukkitOnly public Entity getDestroyer() { return destroyer; } diff --git a/src/main/java/cn/nukkit/inventory/BarrelInventory.java b/src/main/java/cn/nukkit/inventory/BarrelInventory.java index c9c3dfae9f2..bd080d42133 100644 --- a/src/main/java/cn/nukkit/inventory/BarrelInventory.java +++ b/src/main/java/cn/nukkit/inventory/BarrelInventory.java @@ -1,14 +1,17 @@ package cn.nukkit.inventory; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockBarrel; import cn.nukkit.blockentity.BlockEntityBarrel; import cn.nukkit.level.Level; import cn.nukkit.level.Sound; +@PowerNukkitOnly public class BarrelInventory extends ContainerInventory { + @PowerNukkitOnly public BarrelInventory(BlockEntityBarrel barrel) { super(barrel, InventoryType.BARREL); } diff --git a/src/main/java/cn/nukkit/inventory/BlastFurnaceRecipe.java b/src/main/java/cn/nukkit/inventory/BlastFurnaceRecipe.java index a7ac6b7c0fd..36c9b100f1f 100644 --- a/src/main/java/cn/nukkit/inventory/BlastFurnaceRecipe.java +++ b/src/main/java/cn/nukkit/inventory/BlastFurnaceRecipe.java @@ -1,18 +1,22 @@ package cn.nukkit.inventory; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; +@PowerNukkitOnly public class BlastFurnaceRecipe implements SmeltingRecipe { private final Item output; private Item ingredient; + @PowerNukkitOnly public BlastFurnaceRecipe(Item result, Item ingredient) { this.output = result.clone(); this.ingredient = ingredient.clone(); } + @PowerNukkitOnly public void setInput(Item item) { this.ingredient = item.clone(); } diff --git a/src/main/java/cn/nukkit/inventory/CampfireInventory.java b/src/main/java/cn/nukkit/inventory/CampfireInventory.java index 8eb4f1c4168..1910344490c 100644 --- a/src/main/java/cn/nukkit/inventory/CampfireInventory.java +++ b/src/main/java/cn/nukkit/inventory/CampfireInventory.java @@ -1,14 +1,18 @@ package cn.nukkit.inventory; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.blockentity.BlockEntityCampfire; import cn.nukkit.item.Item; +@PowerNukkitOnly public class CampfireInventory extends ContainerInventory { + @PowerNukkitOnly public CampfireInventory(BlockEntityCampfire campfire) { super(campfire, InventoryType.CAMPFIRE); } + @PowerNukkitOnly public CampfireInventory(BlockEntityCampfire furnace, InventoryType inventoryType) { super(furnace, inventoryType); } diff --git a/src/main/java/cn/nukkit/inventory/CampfireRecipe.java b/src/main/java/cn/nukkit/inventory/CampfireRecipe.java index 235ec906c7a..a45bc61b5a1 100644 --- a/src/main/java/cn/nukkit/inventory/CampfireRecipe.java +++ b/src/main/java/cn/nukkit/inventory/CampfireRecipe.java @@ -1,18 +1,22 @@ package cn.nukkit.inventory; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; +@PowerNukkitOnly public class CampfireRecipe implements SmeltingRecipe { private final Item output; private Item ingredient; + @PowerNukkitOnly public CampfireRecipe(Item result, Item ingredient) { this.output = result.clone(); this.ingredient = ingredient.clone(); } + @PowerNukkitOnly public void setInput(Item item) { this.ingredient = item.clone(); } diff --git a/src/main/java/cn/nukkit/inventory/CartographyRecipe.java b/src/main/java/cn/nukkit/inventory/CartographyRecipe.java index 1ba2d41e7ad..a038cb5ecb4 100644 --- a/src/main/java/cn/nukkit/inventory/CartographyRecipe.java +++ b/src/main/java/cn/nukkit/inventory/CartographyRecipe.java @@ -1,14 +1,18 @@ package cn.nukkit.inventory; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import java.util.Collection; +@PowerNukkitOnly public class CartographyRecipe extends ShapelessRecipe { + @PowerNukkitOnly public CartographyRecipe(Item result, Collection ingredients) { super(result, ingredients); } - + + @PowerNukkitOnly public CartographyRecipe(String recipeId, int priority, Item result, Collection ingredients) { super(recipeId, priority, result, ingredients); } diff --git a/src/main/java/cn/nukkit/inventory/DispenserInventory.java b/src/main/java/cn/nukkit/inventory/DispenserInventory.java index 88eb5fd8fb7..bd818ac5326 100644 --- a/src/main/java/cn/nukkit/inventory/DispenserInventory.java +++ b/src/main/java/cn/nukkit/inventory/DispenserInventory.java @@ -1,11 +1,12 @@ package cn.nukkit.inventory; -import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.blockentity.BlockEntityDispenser; -@PowerNukkitDifference(since = "1.4.0.0-PN", info = "Extends EjectableInventory only in PowerNukkit") +@PowerNukkitOnly public class DispenserInventory extends EjectableInventory { + @PowerNukkitOnly public DispenserInventory(BlockEntityDispenser blockEntity) { super(blockEntity, InventoryType.DISPENSER); } diff --git a/src/main/java/cn/nukkit/inventory/DropperInventory.java b/src/main/java/cn/nukkit/inventory/DropperInventory.java index cffd2a5e9c4..c20de0ee271 100644 --- a/src/main/java/cn/nukkit/inventory/DropperInventory.java +++ b/src/main/java/cn/nukkit/inventory/DropperInventory.java @@ -1,11 +1,12 @@ package cn.nukkit.inventory; -import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.blockentity.BlockEntityDropper; -@PowerNukkitDifference(since = "1.4.0.0-PN", info = "Extends EjectableInventory only in PowerNukkit") +@PowerNukkitOnly public class DropperInventory extends EjectableInventory { + @PowerNukkitOnly public DropperInventory(BlockEntityDropper blockEntity) { super(blockEntity, InventoryType.DROPPER); } diff --git a/src/main/java/cn/nukkit/inventory/InventoryListener.java b/src/main/java/cn/nukkit/inventory/InventoryListener.java index 889b24bfc26..15c78503c89 100644 --- a/src/main/java/cn/nukkit/inventory/InventoryListener.java +++ b/src/main/java/cn/nukkit/inventory/InventoryListener.java @@ -1,8 +1,11 @@ package cn.nukkit.inventory; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; +@PowerNukkitOnly public interface InventoryListener { + @PowerNukkitOnly void onInventoryChanged(Inventory inventory, Item oldItem, int slot); } diff --git a/src/main/java/cn/nukkit/inventory/RepairRecipe.java b/src/main/java/cn/nukkit/inventory/RepairRecipe.java index adc882f8846..b9147e2a435 100644 --- a/src/main/java/cn/nukkit/inventory/RepairRecipe.java +++ b/src/main/java/cn/nukkit/inventory/RepairRecipe.java @@ -1,17 +1,20 @@ package cn.nukkit.inventory; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import java.util.ArrayList; import java.util.Collection; import java.util.List; +@PowerNukkitOnly public class RepairRecipe implements Recipe { private final Item result; private final List ingredients; private final InventoryType inventoryType; - + + @PowerNukkitOnly public RepairRecipe(InventoryType inventoryType, Item result, Collection ingredients) { this.inventoryType = inventoryType; this.result = result.clone(); @@ -29,7 +32,8 @@ public RepairRecipe(InventoryType inventoryType, Item result, Collection i public Item getResult() { return result.clone(); } - + + @PowerNukkitOnly public List getIngredientList() { List ingredients = new ArrayList<>(); for (Item ingredient : this.ingredients) { @@ -48,7 +52,8 @@ public void registerToCraftingManager(CraftingManager manager) { public RecipeType getType() { return RecipeType.REPAIR; } - + + @PowerNukkitOnly public InventoryType getInventoryType() { return inventoryType; } diff --git a/src/main/java/cn/nukkit/inventory/SmeltingRecipe.java b/src/main/java/cn/nukkit/inventory/SmeltingRecipe.java index d0a96b4a023..051bbb15795 100644 --- a/src/main/java/cn/nukkit/inventory/SmeltingRecipe.java +++ b/src/main/java/cn/nukkit/inventory/SmeltingRecipe.java @@ -1,7 +1,10 @@ package cn.nukkit.inventory; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; +@PowerNukkitOnly public interface SmeltingRecipe extends Recipe { + @PowerNukkitOnly Item getInput(); } diff --git a/src/main/java/cn/nukkit/inventory/SmokerRecipe.java b/src/main/java/cn/nukkit/inventory/SmokerRecipe.java index c8284a4a354..3c8e508b995 100644 --- a/src/main/java/cn/nukkit/inventory/SmokerRecipe.java +++ b/src/main/java/cn/nukkit/inventory/SmokerRecipe.java @@ -1,18 +1,22 @@ package cn.nukkit.inventory; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; +@PowerNukkitOnly public class SmokerRecipe implements SmeltingRecipe { private final Item output; private Item ingredient; + @PowerNukkitOnly public SmokerRecipe(Item result, Item ingredient) { this.output = result.clone(); this.ingredient = ingredient.clone(); } + @PowerNukkitOnly public void setInput(Item item) { this.ingredient = item.clone(); } diff --git a/src/main/java/cn/nukkit/inventory/StonecutterInventory.java b/src/main/java/cn/nukkit/inventory/StonecutterInventory.java index 2184abf08f6..47c38a6ce11 100644 --- a/src/main/java/cn/nukkit/inventory/StonecutterInventory.java +++ b/src/main/java/cn/nukkit/inventory/StonecutterInventory.java @@ -1,9 +1,11 @@ package cn.nukkit.inventory; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import cn.nukkit.level.Position; +@PowerNukkitOnly public class StonecutterInventory extends FakeBlockUIComponent { public StonecutterInventory(PlayerUIInventory playerUI, Position position) { super(playerUI, InventoryType.STONECUTTER, 3, position); diff --git a/src/main/java/cn/nukkit/inventory/StonecutterRecipe.java b/src/main/java/cn/nukkit/inventory/StonecutterRecipe.java index da6c6b67970..f082b40a74e 100644 --- a/src/main/java/cn/nukkit/inventory/StonecutterRecipe.java +++ b/src/main/java/cn/nukkit/inventory/StonecutterRecipe.java @@ -1,10 +1,12 @@ package cn.nukkit.inventory; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import lombok.ToString; import java.util.UUID; +@PowerNukkitOnly @ToString public class StonecutterRecipe implements Recipe { @@ -18,10 +20,12 @@ public class StonecutterRecipe implements Recipe { private final int priority; + @PowerNukkitOnly public StonecutterRecipe(Item result, Item ingredient) { this(null, 10, result, ingredient); } + @PowerNukkitOnly public StonecutterRecipe(String recipeId, int priority, Item result, Item ingredient) { this.recipeId = recipeId; this.priority = priority; @@ -37,14 +41,17 @@ public Item getResult() { return this.output.clone(); } + @PowerNukkitOnly public String getRecipeId() { return this.recipeId; } + @PowerNukkitOnly public UUID getId() { return new UUID(least, most); } + @PowerNukkitOnly public void setId(UUID uuid) { this.least = uuid.getLeastSignificantBits(); this.most = uuid.getMostSignificantBits(); @@ -54,6 +61,7 @@ public void setId(UUID uuid) { } } + @PowerNukkitOnly public Item getIngredient() { return ingredient.clone(); } @@ -68,6 +76,7 @@ public RecipeType getType() { return RecipeType.STONECUTTER; } + @PowerNukkitOnly public int getPriority() { return this.priority; } diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/DamageAnvilAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/DamageAnvilAction.java index c027b985a73..825caff7b17 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/DamageAnvilAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/DamageAnvilAction.java @@ -1,6 +1,7 @@ package cn.nukkit.inventory.transaction.action; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockAnvil; import cn.nukkit.block.BlockID; @@ -11,13 +12,15 @@ import cn.nukkit.level.Sound; import lombok.ToString; +@PowerNukkitOnly @ToString(callSuper = true) public class DamageAnvilAction extends InventoryAction { private final AnvilInventory anvil; private boolean shouldDamage; private CraftingTransaction transaction; - + + @PowerNukkitOnly public DamageAnvilAction(AnvilInventory anvil, boolean shouldDamage, CraftingTransaction transaction) { super(Item.get(0), Item.get(0)); this.anvil = anvil; diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/TakeLevelAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/TakeLevelAction.java index 8bb17dee89d..757a2e03901 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/TakeLevelAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/TakeLevelAction.java @@ -1,19 +1,23 @@ package cn.nukkit.inventory.transaction.action; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import lombok.ToString; +@PowerNukkitOnly @ToString(callSuper = true) public class TakeLevelAction extends InventoryAction { private final int levels; - + + @PowerNukkitOnly public TakeLevelAction(int levels) { super(Item.get(0), Item.get(0)); this.levels = levels; } - + + @PowerNukkitOnly public int getLevels() { return levels; } diff --git a/src/main/java/cn/nukkit/item/ItemAcaciaSign.java b/src/main/java/cn/nukkit/item/ItemAcaciaSign.java index 4040026a888..fc29c1a818e 100644 --- a/src/main/java/cn/nukkit/item/ItemAcaciaSign.java +++ b/src/main/java/cn/nukkit/item/ItemAcaciaSign.java @@ -1,17 +1,22 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockAcaciaSignPost; +@PowerNukkitOnly public class ItemAcaciaSign extends ItemSign { + @PowerNukkitOnly public ItemAcaciaSign() { this(0, 1); } + @PowerNukkitOnly public ItemAcaciaSign(Integer meta) { this(meta, 1); } + @PowerNukkitOnly public ItemAcaciaSign(Integer meta, int count) { super(ACACIA_SIGN, meta, count, "Acacia Sign", new BlockAcaciaSignPost()); } diff --git a/src/main/java/cn/nukkit/item/ItemBirchSign.java b/src/main/java/cn/nukkit/item/ItemBirchSign.java index 9f21864b020..a0b8ff9a243 100644 --- a/src/main/java/cn/nukkit/item/ItemBirchSign.java +++ b/src/main/java/cn/nukkit/item/ItemBirchSign.java @@ -1,16 +1,21 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockBirchSignPost; +@PowerNukkitOnly public class ItemBirchSign extends ItemSign { + @PowerNukkitOnly public ItemBirchSign() { this(0, 1); } + @PowerNukkitOnly public ItemBirchSign(Integer meta) { this(meta, 1); } + @PowerNukkitOnly public ItemBirchSign(Integer meta, int count) { super(BIRCH_SIGN, meta, count, "Birch Sign", new BlockBirchSignPost()); } diff --git a/src/main/java/cn/nukkit/item/ItemCampfire.java b/src/main/java/cn/nukkit/item/ItemCampfire.java index ba287a7ce75..0a0a653aa5b 100644 --- a/src/main/java/cn/nukkit/item/ItemCampfire.java +++ b/src/main/java/cn/nukkit/item/ItemCampfire.java @@ -1,17 +1,22 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockCampfire; +@PowerNukkitOnly public class ItemCampfire extends Item { + @PowerNukkitOnly public ItemCampfire() { this(0, 1); } + @PowerNukkitOnly public ItemCampfire(Integer meta) { this(meta, 1); } + @PowerNukkitOnly public ItemCampfire(Integer meta, int count) { super(CAMPFIRE, meta, count, "Campfire"); this.block = new BlockCampfire(); diff --git a/src/main/java/cn/nukkit/item/ItemDarkOakSign.java b/src/main/java/cn/nukkit/item/ItemDarkOakSign.java index 72fec903807..205ccd87754 100644 --- a/src/main/java/cn/nukkit/item/ItemDarkOakSign.java +++ b/src/main/java/cn/nukkit/item/ItemDarkOakSign.java @@ -1,17 +1,22 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockDarkOakSignPost; +@PowerNukkitOnly public class ItemDarkOakSign extends ItemSign { + @PowerNukkitOnly public ItemDarkOakSign() { this(0, 1); } + @PowerNukkitOnly public ItemDarkOakSign(Integer meta) { this(meta, 1); } + @PowerNukkitOnly public ItemDarkOakSign(Integer meta, int count) { super(DARKOAK_SIGN, meta, count, "Dark Oak Sign", new BlockDarkOakSignPost()); } diff --git a/src/main/java/cn/nukkit/item/ItemJungleSign.java b/src/main/java/cn/nukkit/item/ItemJungleSign.java index 9e0859871a0..8e2d152f363 100644 --- a/src/main/java/cn/nukkit/item/ItemJungleSign.java +++ b/src/main/java/cn/nukkit/item/ItemJungleSign.java @@ -1,17 +1,22 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockJungleSignPost; +@PowerNukkitOnly public class ItemJungleSign extends ItemSign { + @PowerNukkitOnly public ItemJungleSign() { this(0, 1); } + @PowerNukkitOnly public ItemJungleSign(Integer meta) { this(meta, 1); } + @PowerNukkitOnly public ItemJungleSign(Integer meta, int count) { super(JUNGLE_SIGN, meta, count, "Jungle Sign", new BlockJungleSignPost()); } diff --git a/src/main/java/cn/nukkit/item/ItemKelp.java b/src/main/java/cn/nukkit/item/ItemKelp.java index 781a9688245..c6e896ba700 100644 --- a/src/main/java/cn/nukkit/item/ItemKelp.java +++ b/src/main/java/cn/nukkit/item/ItemKelp.java @@ -1,17 +1,22 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockKelp; +@PowerNukkitOnly public class ItemKelp extends Item { - + + @PowerNukkitOnly public ItemKelp() { this(0, 1); } - + + @PowerNukkitOnly public ItemKelp(Integer meta) { this(meta, 1); } - + + @PowerNukkitOnly public ItemKelp(Integer meta, int count) { super(KELP, meta, count, "Kelp"); this.block = new BlockKelp(); diff --git a/src/main/java/cn/nukkit/item/ItemSpruceSign.java b/src/main/java/cn/nukkit/item/ItemSpruceSign.java index c640f425b74..fd48e639ba3 100644 --- a/src/main/java/cn/nukkit/item/ItemSpruceSign.java +++ b/src/main/java/cn/nukkit/item/ItemSpruceSign.java @@ -1,16 +1,21 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockSpruceSignPost; +@PowerNukkitOnly public class ItemSpruceSign extends ItemSign { + @PowerNukkitOnly public ItemSpruceSign() { this(0, 1); } + @PowerNukkitOnly public ItemSpruceSign(Integer meta) { this(meta, 1); } + @PowerNukkitOnly public ItemSpruceSign(Integer meta, int count) { super(SPRUCE_SIGN, meta, count, "Spruce Sign", new BlockSpruceSignPost()); } diff --git a/src/main/java/cn/nukkit/item/food/FoodEffectiveInBow.java b/src/main/java/cn/nukkit/item/food/FoodEffectiveInBow.java index 801ffed2711..4ec8ec670be 100644 --- a/src/main/java/cn/nukkit/item/food/FoodEffectiveInBow.java +++ b/src/main/java/cn/nukkit/item/food/FoodEffectiveInBow.java @@ -1,9 +1,12 @@ package cn.nukkit.item.food; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemBowl; +@PowerNukkitOnly public class FoodEffectiveInBow extends FoodEffective { + @PowerNukkitOnly public FoodEffectiveInBow(int restoreFood, float restoreSaturation) { super(restoreFood, restoreSaturation); } diff --git a/src/main/java/cn/nukkit/item/food/FoodHoney.java b/src/main/java/cn/nukkit/item/food/FoodHoney.java index 3bb622aca9c..0a61feb938e 100644 --- a/src/main/java/cn/nukkit/item/food/FoodHoney.java +++ b/src/main/java/cn/nukkit/item/food/FoodHoney.java @@ -7,6 +7,7 @@ @PowerNukkitOnly public class FoodHoney extends Food { + @PowerNukkitOnly public FoodHoney(int restoreFood, float restoreSaturation) { this.setRestoreFood(restoreFood); this.setRestoreSaturation(restoreSaturation); diff --git a/src/main/java/cn/nukkit/level/particle/CloudParticle.java b/src/main/java/cn/nukkit/level/particle/CloudParticle.java index bbcccdbf8dd..5f826c9b157 100644 --- a/src/main/java/cn/nukkit/level/particle/CloudParticle.java +++ b/src/main/java/cn/nukkit/level/particle/CloudParticle.java @@ -1,10 +1,17 @@ package cn.nukkit.level.particle; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.math.Vector3; +@PowerNukkitOnly public class CloudParticle extends GenericParticle { + @PowerNukkitOnly public CloudParticle(Vector3 pos) { this(pos, 0); } - public CloudParticle(Vector3 pos, int scale) { super(pos, Particle.TYPE_EVAPORATION, scale); } + + @PowerNukkitOnly + public CloudParticle(Vector3 pos, int scale) { + super(pos, Particle.TYPE_EVAPORATION, scale); + } } diff --git a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java index d9a66f558f9..51e3613c2e0 100644 --- a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java @@ -9,7 +9,7 @@ /** * @author IWareQ */ - @PowerNukkitOnly +@PowerNukkitOnly @Since("1.5.1.0-PN") public class AnimateEntityPacket extends DataPacket { From ccfda20d1cc87f825d00f5393037f70a6d5b5d07 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 2 Dec 2021 22:09:32 -0300 Subject: [PATCH 283/394] Fixes build issues --- src/main/java/cn/nukkit/Server.java | 2 +- src/main/java/cn/nukkit/block/BlockEntityHolder.java | 2 -- src/main/java/cn/nukkit/math/Vector3.java | 6 +++--- src/main/java/cn/nukkit/math/Vector3f.java | 6 +++--- .../java/cn/nukkit/network/protocol/HurtArmorPacket.java | 1 - .../java/cn/nukkit/network/protocol/StartGamePacket.java | 2 +- 6 files changed, 8 insertions(+), 11 deletions(-) diff --git a/src/main/java/cn/nukkit/Server.java b/src/main/java/cn/nukkit/Server.java index 2ed929dfb17..819e44977e6 100644 --- a/src/main/java/cn/nukkit/Server.java +++ b/src/main/java/cn/nukkit/Server.java @@ -644,7 +644,7 @@ public Level remove(Object key) { Block.init(); Enchantment.init(); - RuntimeItems.init(); + RuntimeItems.getRuntimeMapping(); Item.init(); EnumBiome.values(); //load class, this also registers biomes Effect.init(); diff --git a/src/main/java/cn/nukkit/block/BlockEntityHolder.java b/src/main/java/cn/nukkit/block/BlockEntityHolder.java index e7e1b53ccae..8d3085fe742 100644 --- a/src/main/java/cn/nukkit/block/BlockEntityHolder.java +++ b/src/main/java/cn/nukkit/block/BlockEntityHolder.java @@ -11,7 +11,6 @@ import cn.nukkit.math.Vector3; import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.utils.LevelException; -import jdk.nashorn.internal.objects.annotations.Getter; import javax.annotation.Nonnull; import javax.annotation.Nullable; @@ -130,7 +129,6 @@ default E getOrCreateBlockEntity() { @PowerNukkitOnly @Since("1.4.0.0-PN") - @Getter Level getLevel(); @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/math/Vector3.java b/src/main/java/cn/nukkit/math/Vector3.java index 6d1a1e25c77..9ca68a1fd1b 100644 --- a/src/main/java/cn/nukkit/math/Vector3.java +++ b/src/main/java/cn/nukkit/math/Vector3.java @@ -320,15 +320,15 @@ public Vector3 cross(Vector3 v) { ); } - /** + /* PowerNukkit: The Angle class was removed because it had all rights reserved copyright on it. * Calculates the angle between this and the supplied Vector. * * @param v the Vector to calculate the angle to. * @return the Angle between the two Vectors. */ - public Angle angleBetween(Vector3 v) { + /*public Angle angleBetween(Vector3 v) { return Angle.fromRadian(Math.acos(Math.min(Math.max(this.normalize().dot(v.normalize()), -1.0d), 1.0d))); - } + }*/ /** * Returns a new vector with x value equal to the second parameter, along the line between this vector and the diff --git a/src/main/java/cn/nukkit/math/Vector3f.java b/src/main/java/cn/nukkit/math/Vector3f.java index 0ff6e98ab17..11f9b68c8a7 100644 --- a/src/main/java/cn/nukkit/math/Vector3f.java +++ b/src/main/java/cn/nukkit/math/Vector3f.java @@ -267,15 +267,15 @@ public Vector3f cross(Vector3f v) { ); } - /** + /* PowerNukkit: The Angle class was removed because it had all rights reserved copyright on it. * Calculates the angle between this and the supplied Vector. * * @param v the Vector to calculate the angle to. * @return the Angle between the two Vectors. */ - public Angle angleBetween(Vector3f v) { + /*public Angle angleBetween(Vector3f v) { return Angle.fromRadian(Math.acos(Math.min(Math.max(this.normalize().dot(v.normalize()), -1.0f), 1.0f))); - } + }*/ /** * Returns a new vector with x value equal to the second parameter, along the line between this vector and the diff --git a/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java b/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java index eb6952bd6d6..9d10bd9ad99 100644 --- a/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/HurtArmorPacket.java @@ -16,7 +16,6 @@ public class HurtArmorPacket extends DataPacket { @Since("1.3.0.0-PN") public int damage; - public long armorSlots; @Since("1.5.2.0-PN") public long armorSlots; diff --git a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java index 6abd8d8f68c..a01a6bc8e08 100644 --- a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java @@ -154,7 +154,7 @@ public void encode() { this.putLLong(this.currentTick); this.putVarInt(this.enchantmentSeed); this.putUnsignedVarInt(0); // Custom blocks - this.put(RuntimeItems.getMapping().getItemPalette()); + this.put(RuntimeItems.getRuntimeMapping().getItemDataPalette()); this.putString(this.multiplayerCorrelationId); this.putBoolean(this.isInventoryServerAuthoritative); this.putString(""); // Server Engine From 6f9ad9902fb311396d2ffbccb0fba80745974e38 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Thu, 9 Dec 2021 23:22:24 +0200 Subject: [PATCH 284/394] Update log4j2 (#1920) --- pom.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1883c5b030f..710e2531654 100644 --- a/pom.xml +++ b/pom.xml @@ -12,12 +12,16 @@ 1.8 5.0.0-M4 1.0.0-M4 - 2.13.3 + 2.15.0-20211206.182754-101 UTF-8 3.9.0 + + apache-snapshots + https://repository.apache.org/snapshots/ + opencollab-repo-release https://repo.opencollab.dev/maven-releases/ From 53bef97dd5537072fd71452c1ee3b35781374c74 Mon Sep 17 00:00:00 2001 From: Kazuk <46299532+Kazzuk@users.noreply.github.com> Date: Thu, 9 Dec 2021 23:04:11 +0000 Subject: [PATCH 285/394] Update runtime item states to 1.18 (#1921) --- src/main/resources/runtime_item_states.json | 72 ++++++++++++++------- 1 file changed, 50 insertions(+), 22 deletions(-) diff --git a/src/main/resources/runtime_item_states.json b/src/main/resources/runtime_item_states.json index ca8dc650678..31554743812 100644 --- a/src/main/resources/runtime_item_states.json +++ b/src/main/resources/runtime_item_states.json @@ -117,7 +117,7 @@ }, { "name" : "minecraft:balloon", - "id" : 598 + "id" : 597 }, { "name" : "minecraft:bamboo", @@ -133,7 +133,7 @@ }, { "name" : "minecraft:banner_pattern", - "id" : 628 + "id" : 629 }, { "name" : "minecraft:barrel", @@ -293,7 +293,7 @@ }, { "name" : "minecraft:bleach", - "id" : 596 + "id" : 595 }, { "name" : "minecraft:blue_candle", @@ -317,7 +317,7 @@ }, { "name" : "minecraft:boat", - "id" : 626 + "id" : 627 }, { "name" : "minecraft:bone", @@ -429,7 +429,7 @@ }, { "name" : "minecraft:camera", - "id" : 593 + "id" : 592 }, { "name" : "minecraft:campfire", @@ -575,6 +575,10 @@ "name" : "minecraft:clay_ball", "id" : 384 }, + { + "name" : "minecraft:client_request_placeholder_block", + "id" : -465 + }, { "name" : "minecraft:clock", "id" : 393 @@ -669,7 +673,7 @@ }, { "name" : "minecraft:compound", - "id" : 594 + "id" : 593 }, { "name" : "minecraft:concrete", @@ -951,10 +955,6 @@ "name" : "minecraft:deadbush", "id" : 32 }, - { - "name" : "minecraft:debug_stick", - "id" : 590 - }, { "name" : "minecraft:deepslate", "id" : -378 @@ -1173,7 +1173,7 @@ }, { "name" : "minecraft:dye", - "id" : 627 + "id" : 628 }, { "name" : "minecraft:egg", @@ -1701,7 +1701,7 @@ }, { "name" : "minecraft:end_crystal", - "id" : 632 + "id" : 631 }, { "name" : "minecraft:end_gateway", @@ -1897,7 +1897,7 @@ }, { "name" : "minecraft:glow_berries", - "id" : 631 + "id" : 632 }, { "name" : "minecraft:glow_frame", @@ -1917,7 +1917,7 @@ }, { "name" : "minecraft:glow_stick", - "id" : 166 + "id" : 600 }, { "name" : "minecraft:glowingobsidian", @@ -2113,11 +2113,11 @@ }, { "name" : "minecraft:honey_bottle", - "id" : 592 + "id" : 591 }, { "name" : "minecraft:honeycomb", - "id" : 591 + "id" : 590 }, { "name" : "minecraft:honeycomb_block", @@ -2145,7 +2145,7 @@ }, { "name" : "minecraft:ice_bomb", - "id" : 595 + "id" : 594 }, { "name" : "minecraft:infested_deepslate", @@ -2617,7 +2617,7 @@ }, { "name" : "minecraft:medicine", - "id" : 599 + "id" : 598 }, { "name" : "minecraft:medium_amethyst_bud", @@ -2727,6 +2727,10 @@ "name" : "minecraft:music_disc_mellohi", "id" : 540 }, + { + "name" : "minecraft:music_disc_otherside", + "id" : 626 + }, { "name" : "minecraft:music_disc_pigstep", "id" : 619 @@ -2755,6 +2759,14 @@ "name" : "minecraft:mycelium", "id" : 110 }, + { + "name" : "minecraft:mysterious_frame", + "id" : -466 + }, + { + "name" : "minecraft:mysterious_frame_slot", + "id" : -467 + }, { "name" : "minecraft:name_tag", "id" : 548 @@ -3261,7 +3273,7 @@ }, { "name" : "minecraft:rapid_fertilizer", - "id" : 597 + "id" : 596 }, { "name" : "minecraft:ravager_spawn_egg", @@ -3431,10 +3443,26 @@ "name" : "minecraft:scaffolding", "id" : -165 }, + { + "name" : "minecraft:sculk", + "id" : -458 + }, + { + "name" : "minecraft:sculk_catalyst", + "id" : -460 + }, { "name" : "minecraft:sculk_sensor", "id" : -307 }, + { + "name" : "minecraft:sculk_shrieker", + "id" : -461 + }, + { + "name" : "minecraft:sculk_vein", + "id" : -459 + }, { "name" : "minecraft:scute", "id" : 572 @@ -3589,11 +3617,11 @@ }, { "name" : "minecraft:sparkler", - "id" : 600 + "id" : 599 }, { "name" : "minecraft:spawn_egg", - "id" : 629 + "id" : 630 }, { "name" : "minecraft:spider_eye", @@ -3657,7 +3685,7 @@ }, { "name" : "minecraft:spyglass", - "id" : 772 + "id" : 625 }, { "name" : "minecraft:squid_spawn_egg", From 1b7045a88cef9aaa642adb35250bdec6948b4d68 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Fri, 10 Dec 2021 12:06:06 +0200 Subject: [PATCH 286/394] Use log4j2 release (#1923) --- pom.xml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 710e2531654..855a2b9bf50 100644 --- a/pom.xml +++ b/pom.xml @@ -12,16 +12,12 @@ 1.8 5.0.0-M4 1.0.0-M4 - 2.15.0-20211206.182754-101 + 2.15.0 UTF-8 3.9.0 - - apache-snapshots - https://repository.apache.org/snapshots/ - opencollab-repo-release https://repo.opencollab.dev/maven-releases/ From 63d3382705e461d8c1340e6471f4f2b8a015e8cd Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 10 Dec 2021 12:59:22 -0300 Subject: [PATCH 287/394] Add missing Override and some missing PowerNukkitOnly annotations Remove NewRakNet related annotations as they are no longer relevant. --- dumps/needed-class-changes.json | 3154 +++++++++++++++++ pom.xml | 32 + src/main/java/cn/nukkit/OfflinePlayer.java | 5 + src/main/java/cn/nukkit/Player.java | 1 + src/main/java/cn/nukkit/Server.java | 3 + .../java/cn/nukkit/api/NewRakNetOnly.java | 21 - .../cn/nukkit/api/RemovedFromNewRakNet.java | 21 - src/main/java/cn/nukkit/block/Block.java | 21 + .../cn/nukkit/block/BlockAcaciaSignPost.java | 1 + .../cn/nukkit/block/BlockAcaciaWallSign.java | 1 + .../cn/nukkit/block/BlockBirchSignPost.java | 1 + .../cn/nukkit/block/BlockBirchWallSign.java | 1 + .../cn/nukkit/block/BlockBrewingStand.java | 1 + src/main/java/cn/nukkit/block/BlockCake.java | 2 + .../java/cn/nukkit/block/BlockCauldron.java | 1 + .../java/cn/nukkit/block/BlockCobweb.java | 1 + .../cn/nukkit/block/BlockCrimsonSignPost.java | 1 + .../cn/nukkit/block/BlockCrimsonWallSign.java | 1 + .../cn/nukkit/block/BlockDarkOakSignPost.java | 1 + .../cn/nukkit/block/BlockDarkOakWallSign.java | 1 + .../java/cn/nukkit/block/BlockDeadBush.java | 1 + .../cn/nukkit/block/BlockEndPortalFrame.java | 2 + .../java/cn/nukkit/block/BlockFallable.java | 1 + .../cn/nukkit/block/BlockJungleSignPost.java | 1 + .../cn/nukkit/block/BlockJungleWallSign.java | 1 + .../java/cn/nukkit/block/BlockLeaves.java | 1 + src/main/java/cn/nukkit/block/BlockLever.java | 2 + src/main/java/cn/nukkit/block/BlockMelon.java | 2 + .../nukkit/block/BlockRedstoneComparator.java | 2 + .../cn/nukkit/block/BlockRedstoneDiode.java | 2 + .../cn/nukkit/block/BlockRedstoneWire.java | 2 + .../java/cn/nukkit/block/BlockSignPost.java | 2 + .../cn/nukkit/block/BlockSpruceSignPost.java | 1 + .../cn/nukkit/block/BlockSpruceWallSign.java | 1 + .../nukkit/block/BlockStonecutterBlock.java | 1 + src/main/java/cn/nukkit/block/BlockThin.java | 1 + .../java/cn/nukkit/block/BlockWallSign.java | 1 + .../cn/nukkit/block/BlockWarpedSignPost.java | 1 + .../cn/nukkit/block/BlockWarpedWallSign.java | 1 + .../blockentity/BlockEntityItemFrame.java | 1 + .../blockentity/BlockEntityPistonArm.java | 3 + .../blockproperty/BooleanBlockProperty.java | 1 + .../blockproperty/IntBlockProperty.java | 1 + .../UnsignedIntBlockProperty.java | 1 + .../nukkit/command/ConsoleCommandSender.java | 1 + .../cn/nukkit/command/data/CommandEnum.java | 1 + .../dispenser/DefaultDispenseBehavior.java | 2 + .../cn/nukkit/dispenser/DispenseBehavior.java | 2 + .../dispenser/DropperDispenseBehavior.java | 3 +- src/main/java/cn/nukkit/entity/Entity.java | 2 + .../cn/nukkit/entity/data/ByteEntityData.java | 2 + .../nukkit/entity/data/FloatEntityData.java | 2 + .../cn/nukkit/entity/data/IntEntityData.java | 2 + .../cn/nukkit/entity/data/LongEntityData.java | 2 + .../nukkit/entity/data/ShortEntityData.java | 2 + .../nukkit/entity/data/StringEntityData.java | 2 + .../cn/nukkit/entity/item/EntityBoat.java | 1 + .../entity/item/EntityFallingBlock.java | 1 + .../nukkit/entity/item/EntityPrimedTNT.java | 5 + .../cn/nukkit/entity/mob/EntityCreeper.java | 1 + .../entity/projectile/EntityProjectile.java | 1 + .../entity/weather/EntityLightning.java | 2 + .../event/entity/EntityDamageEvent.java | 3 +- .../event/entity/ProjectileLaunchEvent.java | 1 + .../nukkit/form/window/FormWindowCustom.java | 2 + .../nukkit/form/window/FormWindowModal.java | 2 + .../nukkit/form/window/FormWindowSimple.java | 2 + .../cn/nukkit/inventory/AnvilInventory.java | 2 +- .../cn/nukkit/inventory/ShapedRecipe.java | 1 + .../cn/nukkit/inventory/ShapelessRecipe.java | 1 + .../transaction/CraftingTransaction.java | 4 + .../action/CraftingTakeResultAction.java | 1 + .../action/CreativeInventoryAction.java | 4 + .../transaction/action/DropItemAction.java | 4 + .../transaction/action/SlotChangeAction.java | 4 + src/main/java/cn/nukkit/item/ItemBlock.java | 2 + .../java/cn/nukkit/item/ProjectileItem.java | 1 + .../item/randomitem/ConstantItemSelector.java | 1 + src/main/java/cn/nukkit/level/Level.java | 1 + src/main/java/cn/nukkit/level/Position.java | 2 + .../biome/impl/beach/ColdBeachBiome.java | 2 - .../impl/extremehills/ExtremeHillsMBiome.java | 3 - .../impl/extremehills/StoneBeachBiome.java | 5 - .../biome/impl/iceplains/IcePlainsBiome.java | 1 + .../impl/iceplains/IcePlainsSpikesBiome.java | 3 +- .../level/biome/impl/mesa/MesaBiome.java | 3 - .../biome/impl/mesa/MesaPlateauFBiome.java | 2 - .../impl/mushroom/MushroomIslandBiome.java | 2 - .../level/biome/impl/ocean/OceanBiome.java | 4 +- .../biome/impl/taiga/ColdTaigaBiome.java | 2 - .../nukkit/level/biome/type/CoveredBiome.java | 17 +- .../nukkit/level/biome/type/GrassyBiome.java | 3 - .../nukkit/level/biome/type/SandyBiome.java | 5 - .../nukkit/level/biome/type/SnowyBiome.java | 2 - .../nukkit/level/biome/type/WateryBiome.java | 7 +- .../level/format/anvil/ChunkSection.java | 1 + .../format/anvil/palette/BiomePalette.java | 1 + .../format/anvil/palette/BitArray256.java | 1 + .../anvil/palette/BlockDataPalette.java | 1 + .../format/anvil/palette/IntPalette.java | 1 + .../level/format/generic/BaseFullChunk.java | 3 + .../format/generic/BaseLevelProvider.java | 1 + .../cn/nukkit/level/generator/Nether.java | 1 + .../object/mushroom/BigMushroom.java | 1 + .../object/tree/ObjectJungleBigTree.java | 1 + .../object/tree/ObjectSavannaTree.java | 1 + .../populator/impl/PopulatorOre.java | 6 - .../cn/nukkit/level/util/Pow2BitArray.java | 4 + src/main/java/cn/nukkit/math/BlockFace.java | 6 + .../nbt/stream/FastByteArrayOutputStream.java | 8 +- .../java/cn/nukkit/nbt/tag/CompoundTag.java | 3 + src/main/java/cn/nukkit/nbt/tag/ListTag.java | 1 + src/main/java/cn/nukkit/nbt/tag/Tag.java | 1 + .../protocol/AdventureSettingsPacket.java | 2 + .../protocol/ResourcePackDataInfoPacket.java | 2 + .../protocol/UpdateAttributesPacket.java | 2 + .../cn/nukkit/network/rcon/RCONServer.java | 1 + .../java/cn/nukkit/plugin/LibraryLoader.java | 3 + .../java/cn/nukkit/plugin/PluginBase.java | 8 + .../service/RegisteredServiceProvider.java | 1 + .../java/cn/nukkit/scheduler/AsyncTask.java | 1 + .../java/cn/nukkit/scheduler/AsyncWorker.java | 1 + src/main/java/cn/nukkit/utils/Utils.java | 1 + .../java/co/aikar/timings/TimingData.java | 1 + .../tools/AnnotationProblemScanner.java | 397 +++ .../AutoUpdatePowerNukkitOnlyAnnotations.java | 238 ++ ...AutoUpdatePowerNukkitOnlyAnnotations2.java | 232 ++ .../org/powernukkit/tools/nukkit.patch | 30 + 128 files changed, 4290 insertions(+), 109 deletions(-) create mode 100644 dumps/needed-class-changes.json delete mode 100644 src/main/java/cn/nukkit/api/NewRakNetOnly.java delete mode 100644 src/main/java/cn/nukkit/api/RemovedFromNewRakNet.java create mode 100644 src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java create mode 100644 src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations.java create mode 100644 src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations2.java create mode 100644 src/test/resources/org/powernukkit/tools/nukkit.patch diff --git a/dumps/needed-class-changes.json b/dumps/needed-class-changes.json new file mode 100644 index 00000000000..a7124ed8f24 --- /dev/null +++ b/dumps/needed-class-changes.json @@ -0,0 +1,3154 @@ +{ + "cn.nukkit.level.biome.impl.ocean.OceanBiome": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.biome.impl.ocean.OceanBiome#getGroundBlock(int)" + ] + }, + "cn.nukkit.block.BlockCobweb": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCobweb#diffusesSkyLight()" + ] + }, + "cn.nukkit.dispenser.DropperDispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.DropperDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + ] + }, + "cn.nukkit.block.BlockStonecutterBlock": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStonecutterBlock#getToolTier()" + ] + }, + "cn.nukkit.block.BlockSpruceWallSign": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSpruceWallSign#getPostId()" + ] + }, + "cn.nukkit.entity.data.IntEntityData": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.data.IntEntityData#getData()", + "cn.nukkit.entity.data.IntEntityData#setData(Integer)" + ] + }, + "cn.nukkit.network.protocol.AdventureSettingsPacket": { + "addOverrideAnnotation": [ + "cn.nukkit.network.protocol.AdventureSettingsPacket#decode()", + "cn.nukkit.network.protocol.AdventureSettingsPacket#encode()" + ] + }, + "cn.nukkit.block.BlockStairsSmoothQuartz": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsSmoothQuartz#getToolTier()" + ] + }, + "cn.nukkit.level.format.anvil.util.ImmutableBlockStorage": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.anvil.util.ImmutableBlockStorage#setBlockState(int, BlockState)" + ] + }, + "cn.nukkit.block.BlockLiquid": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockLiquid#breaksWhenMoved()", + "cn.nukkit.block.BlockLiquid#sticksToPiston()", + "cn.nukkit.block.BlockLiquid#usesWaterLogging()" + ] + }, + "cn.nukkit.block.BlockCobblestone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCobblestone#getToolTier()" + ] + }, + "cn.nukkit.entity.passive.EntityTurtle": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.passive.EntityTurtle#setBreedingAge(int)", + "cn.nukkit.entity.passive.EntityTurtle#setHomePos(Vector3)" + ] + }, + "cn.nukkit.item.ProjectileItem": { + "addOverrideAnnotation": [ + "cn.nukkit.item.ProjectileItem#onClickAir(Player, Vector3)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ProjectileItem#addThrowSound(Player)", + "cn.nukkit.item.ProjectileItem#correctProjectile(Player, Entity)" + ] + }, + "cn.nukkit.command.CapturingCommandSender": { + "addOverrideAnnotation": [ + "cn.nukkit.command.CapturingCommandSender#getName()", + "cn.nukkit.command.CapturingCommandSender#isOp()", + "cn.nukkit.command.CapturingCommandSender#setOp(boolean)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.command.CapturingCommandSender#getCleanCapture()", + "cn.nukkit.command.CapturingCommandSender#getRawCapture()", + "cn.nukkit.command.CapturingCommandSender#resetCapture()", + "cn.nukkit.command.CapturingCommandSender#setName(String)", + "cn.nukkit.command.CapturingCommandSender#toString()" + ] + }, + "cn.nukkit.block.BlockStairsSmoothRedSandstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsSmoothRedSandstone#getToolTier()" + ] + }, + "cn.nukkit.block.BlockRedstoneWire": { + "addOverrideAnnotation": [ + "cn.nukkit.block.BlockRedstoneWire#getStrongPower(BlockFace)", + "cn.nukkit.block.BlockRedstoneWire#getWeakPower(BlockFace)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockRedstoneWire#canBePlacedOn(Block)" + ] + }, + "cn.nukkit.entity.EntityLiving": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.EntityLiving#isBlocking()", + "cn.nukkit.entity.EntityLiving#onBlock(Entity, boolean)", + "cn.nukkit.entity.EntityLiving#setBlocking(boolean)" + ] + }, + "cn.nukkit.api.Since": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.api.Since#value()" + ] + }, + "cn.nukkit.blockentity.BlockEntityDispenser": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockentity.BlockEntityDispenser#createInventory()", + "cn.nukkit.blockentity.BlockEntityDispenser#getBlockEntityName()" + ] + }, + "cn.nukkit.entity.mob.EntityEvoker": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityEvoker#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.blockentity.BlockEntityFurnace": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockentity.BlockEntityFurnace#getBurningBlockId()", + "cn.nukkit.blockentity.BlockEntityFurnace#getClientName()", + "cn.nukkit.blockentity.BlockEntityFurnace#getFurnaceName()", + "cn.nukkit.blockentity.BlockEntityFurnace#getIdleBlockId()", + "cn.nukkit.blockentity.BlockEntityFurnace#getInventoryType()", + "cn.nukkit.blockentity.BlockEntityFurnace#getSpeedMultiplier()", + "cn.nukkit.blockentity.BlockEntityFurnace#matchRecipe(Item)", + "cn.nukkit.blockentity.BlockEntityFurnace#setBurning(boolean)" + ] + }, + "cn.nukkit.entity.mob.EntityElderGuardian": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityElderGuardian#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.utils.InvalidBlockDamageException": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.utils.InvalidBlockDamageException#canEqual(Object)", + "cn.nukkit.utils.InvalidBlockDamageException#equals(Object)", + "cn.nukkit.utils.InvalidBlockDamageException#hashCode()" + ] + }, + "cn.nukkit.block.BlockPistonHead": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockPistonHead#canBePulled()", + "cn.nukkit.block.BlockPistonHead#getBlockFace()" + ] + }, + "cn.nukkit.block.BlockCake": { + "addOverrideAnnotation": [ + "cn.nukkit.block.BlockCake#getComparatorInputOverride()", + "cn.nukkit.block.BlockCake#hasComparatorInputOverride()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCake#breaksWhenMoved()", + "cn.nukkit.block.BlockCake#sticksToPiston()" + ] + }, + "cn.nukkit.entity.data.FloatEntityData": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.data.FloatEntityData#getData()", + "cn.nukkit.entity.data.FloatEntityData#setData(Float)" + ] + }, + "cn.nukkit.OfflinePlayer": { + "addOverrideAnnotation": [ + "cn.nukkit.OfflinePlayer#getMetadata(String)", + "cn.nukkit.OfflinePlayer#getServer()", + "cn.nukkit.OfflinePlayer#hasMetadata(String)", + "cn.nukkit.OfflinePlayer#removeMetadata(String, Plugin)", + "cn.nukkit.OfflinePlayer#setMetadata(String, MetadataValue)" + ] + }, + "cn.nukkit.positiontracking.PositionTrackingStorage": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.positiontracking.PositionTrackingStorage#close()", + "cn.nukkit.positiontracking.PositionTrackingStorage#finalize()" + ] + }, + "cn.nukkit.item.randomitem.ConstantItemSelector": { + "addOverrideAnnotation": [ + "cn.nukkit.item.randomitem.ConstantItemSelector#select()" + ] + }, + "cn.nukkit.level.biome.type.SandyBiome": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.biome.type.SandyBiome#getGroundBlock(int)", + "cn.nukkit.level.biome.type.SandyBiome#getGroundDepth(int)", + "cn.nukkit.level.biome.type.SandyBiome#getSurfaceBlock(int)", + "cn.nukkit.level.biome.type.SandyBiome#getSurfaceDepth(int)" + ] + }, + "cn.nukkit.entity.projectile.EntitySnowball": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.projectile.EntitySnowball#addHitEffect()" + ] + }, + "cn.nukkit.block.BlockSignPost": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSignPost#breaksWhenMoved()", + "cn.nukkit.block.BlockSignPost#getPostId()", + "cn.nukkit.block.BlockSignPost#getWallId()" + ] + }, + "cn.nukkit.entity.mob.EntityBlaze": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityBlaze#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.math.AtomicIntIncrementSupplier": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.math.AtomicIntIncrementSupplier#getAsInt()" + ] + }, + "cn.nukkit.dispenser.FlintAndSteelDispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.FlintAndSteelDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + ] + }, + "cn.nukkit.inventory.GrindstoneInventory": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.GrindstoneInventory#updateResult(boolean)" + ] + }, + "cn.nukkit.block.BlockWoodStrippedOak": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWoodStrippedOak#getWoodType()" + ] + }, + "cn.nukkit.entity.data.ByteEntityData": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.data.ByteEntityData#getData()", + "cn.nukkit.entity.data.ByteEntityData#setData(Integer)" + ] + }, + "cn.nukkit.item.ItemHoeNetherite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemHoeNetherite#isLavaResistant()" + ] + }, + "cn.nukkit.level.biome.type.GrassyBiome": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.biome.type.GrassyBiome#getGroundBlock(int)", + "cn.nukkit.level.biome.type.GrassyBiome#getSurfaceBlock(int)" + ] + }, + "cn.nukkit.nbt.stream.FastByteArrayOutputStream": { + "addOverrideAnnotation": [ + "cn.nukkit.nbt.stream.FastByteArrayOutputStream#write(byte[], int, int)", + "cn.nukkit.nbt.stream.FastByteArrayOutputStream#write(int)" + ] + }, + "cn.nukkit.entity.mob.EntityWitherSkeleton": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityWitherSkeleton#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityWitherSkeleton#isUndead()" + ] + }, + "cn.nukkit.network.protocol.UpdateAttributesPacket": { + "addOverrideAnnotation": [ + "cn.nukkit.network.protocol.UpdateAttributesPacket#decode()", + "cn.nukkit.network.protocol.UpdateAttributesPacket#encode()" + ] + }, + "cn.nukkit.inventory.BlastFurnaceRecipe": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.BlastFurnaceRecipe#getInput()" + ] + }, + "cn.nukkit.block.BlockDispenser": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDispenser#dispense()", + "cn.nukkit.block.BlockDispenser#getDispenseBehavior(Item)", + "cn.nukkit.block.BlockDispenser#getToolTier()" + ] + }, + "cn.nukkit.entity.projectile.EntityEgg": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.projectile.EntityEgg#addHitEffect()" + ] + }, + "cn.nukkit.level.biome.impl.taiga.ColdTaigaBiome": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.biome.impl.taiga.ColdTaigaBiome#getCoverBlock()" + ] + }, + "cn.nukkit.block.BlockPistonSticky": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockPistonSticky#getPistonHeadBlockId()" + ] + }, + "cn.nukkit.inventory.transaction.CraftingTransaction": { + "addOverrideAnnotation": [ + "cn.nukkit.inventory.transaction.CraftingTransaction#callExecuteEvent()", + "cn.nukkit.inventory.transaction.CraftingTransaction#canExecute()", + "cn.nukkit.inventory.transaction.CraftingTransaction#execute()", + "cn.nukkit.inventory.transaction.CraftingTransaction#sendInventories()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.transaction.CraftingTransaction#recipe", + "cn.nukkit.inventory.transaction.CraftingTransaction#craftingType" + ] + }, + "cn.nukkit.item.ItemNuggetIron": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemNuggetIron" + ] + }, + "cn.nukkit.block.BlockLeaves": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockLeaves#breaksWhenMoved()", + "cn.nukkit.block.BlockLeaves#diffusesSkyLight()", + "cn.nukkit.block.BlockLeaves#sticksToPiston()" + ] + }, + "cn.nukkit.block.BlockVinesNether": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockVinesNether#breaksWhenMoved()", + "cn.nukkit.block.BlockVinesNether#sticksToPiston()" + ] + }, + "cn.nukkit.entity.mob.EntityVindicator": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityVindicator#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.block.BlockSoulSand": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSoulSand#isSoulSpeedCompatible()" + ] + }, + "cn.nukkit.inventory.transaction.action.DropItemAction": { + "addOverrideAnnotation": [ + "cn.nukkit.inventory.transaction.action.DropItemAction#execute(Player)", + "cn.nukkit.inventory.transaction.action.DropItemAction#isValid(Player)", + "cn.nukkit.inventory.transaction.action.DropItemAction#onExecuteFail(Player)", + "cn.nukkit.inventory.transaction.action.DropItemAction#onExecuteSuccess(Player)" + ] + }, + "cn.nukkit.block.BlockDeny": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDeny#canBePulled()" + ] + }, + "cn.nukkit.block.BlockBorder": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBorder#canBePulled()" + ] + }, + "cn.nukkit.block.BlockSlabCrimson": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSlabCrimson#getSlabName()", + "cn.nukkit.block.BlockSlabCrimson#isSameType(BlockSlab)" + ] + }, + "cn.nukkit.block.BlockAnvil": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockAnvil#getToolTier()" + ] + }, + "cn.nukkit.block.BlockConcrete": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockConcrete#getToolTier()" + ] + }, + "cn.nukkit.block.BlockSoulSoil": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSoulSoil#isSoulSpeedCompatible()" + ] + }, + "cn.nukkit.entity.passive.EntityBee": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.passive.EntityBee#getHasNectar()", + "cn.nukkit.entity.passive.EntityBee#isAngry()", + "cn.nukkit.entity.passive.EntityBee#leftBeehive(BlockEntityBeehive)", + "cn.nukkit.entity.passive.EntityBee#nectarDelivered(BlockEntityBeehive)", + "cn.nukkit.entity.passive.EntityBee#setAngry(boolean)", + "cn.nukkit.entity.passive.EntityBee#setAngry(Player)", + "cn.nukkit.entity.passive.EntityBee#setHasNectar(boolean)" + ] + }, + "cn.nukkit.inventory.PlayerUIComponent": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.PlayerUIComponent#playerUI" + ] + }, + "cn.nukkit.block.BlockBanner": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBanner#breaksWhenMoved()" + ] + }, + "cn.nukkit.block.BlockStairsPurpur": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsPurpur#getToolTier()" + ] + }, + "cn.nukkit.level.format.generic.BaseLevelProvider": { + "addOverrideAnnotation": [ + "cn.nukkit.level.format.generic.BaseLevelProvider#updateLevelName(String)" + ] + }, + "cn.nukkit.block.BlockBed": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBed#breaksWhenMoved()", + "cn.nukkit.block.BlockBed#sticksToPiston()" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBed#clone()" + ] + }, + "cn.nukkit.Server": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.Server#getGitCommit()", + "cn.nukkit.Server#isRedstoneEnabled()", + "cn.nukkit.Server#setRedstoneEnabled(boolean)" + ] + }, + "cn.nukkit.entity.item.EntityFallingBlock": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.item.EntityFallingBlock#canCollideWith(Entity)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.item.EntityFallingBlock#breakOnLava" + ] + }, + "cn.nukkit.block.BlockCoal": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCoal#getToolTier()" + ] + }, + "cn.nukkit.block.BlockLectern": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockLectern#executeRedstonePulse()" + ] + }, + "cn.nukkit.level.Location": { + "addOverrideAnnotation": [ + "cn.nukkit.level.Location#fromObject(Vector3)", + "cn.nukkit.level.Location#fromObject(Vector3, Level)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.Location#setPitch(double)", + "cn.nukkit.level.Location#setYaw(double)" + ] + }, + "cn.nukkit.block.BlockStairsMossyCobblestone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsMossyCobblestone#getToolTier()" + ] + }, + "cn.nukkit.math.IntIncrementSupplier": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.math.IntIncrementSupplier#getAsInt()" + ] + }, + "cn.nukkit.dispenser.FireworksDispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.FireworksDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + ] + }, + "cn.nukkit.inventory.BaseInventory": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.BaseInventory#addListener(InventoryListener)", + "cn.nukkit.inventory.BaseInventory#removeListener(InventoryListener)" + ] + }, + "cn.nukkit.block.BlockAcaciaWallSign": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockAcaciaWallSign#getPostId()" + ] + }, + "cn.nukkit.blockentity.BlockEntityCauldron": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_EMPTY", + "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_NORMAL", + "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_SPLASH", + "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_LINGERING", + "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_LAVA", + "cn.nukkit.blockentity.BlockEntityCauldron#getPotionType()", + "cn.nukkit.blockentity.BlockEntityCauldron#setPotionType(int)" + ] + }, + "cn.nukkit.block.BlockStairsBrick": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsBrick#getToolTier()" + ] + }, + "cn.nukkit.block.BlockStemCrimson": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStemCrimson#getStrippedState()" + ] + }, + "cn.nukkit.entity.mob.EntityZombieVillager": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityZombieVillager#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityZombieVillager#isUndead()" + ] + }, + "cn.nukkit.entity.data.StringEntityData": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.data.StringEntityData#getData()", + "cn.nukkit.entity.data.StringEntityData#setData(String)" + ] + }, + "cn.nukkit.level.format.updater.BeehiveUpdater": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.updater.BeehiveUpdater#update(int, int, int, int, int, int, BlockState)" + ] + }, + "cn.nukkit.block.BlockOreGold": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockOreGold#getToolTier()" + ] + }, + "cn.nukkit.block.BlockStairsQuartz": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsQuartz#getToolTier()" + ] + }, + "cn.nukkit.dispenser.DyeDispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.DyeDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + ] + }, + "cn.nukkit.level.GameRule": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.GameRule#EXPERIMENTAL_GAMEPLAY" + ] + }, + "cn.nukkit.block.BlockScaffolding": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockScaffolding#createFallingEntity(CompoundTag)" + ] + }, + "cn.nukkit.level.biome.type.WateryBiome": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.biome.type.WateryBiome#getGroundBlock(int)", + "cn.nukkit.level.biome.type.WateryBiome#getGroundDepth(int)", + "cn.nukkit.level.biome.type.WateryBiome#getSurfaceBlock(int)", + "cn.nukkit.level.biome.type.WateryBiome#getSurfaceDepth(int)" + ] + }, + "cn.nukkit.level.generator.SimpleChunkManager": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.generator.SimpleChunkManager#getBlockDataAt(int, int, int, int)", + "cn.nukkit.level.generator.SimpleChunkManager#getBlockIdAt(int, int, int, int)", + "cn.nukkit.level.generator.SimpleChunkManager#getBlockStateAt(int, int, int, int)", + "cn.nukkit.level.generator.SimpleChunkManager#setBlockAtLayer(int, int, int, int, int, int)", + "cn.nukkit.level.generator.SimpleChunkManager#setBlockDataAt(int, int, int, int, int)", + "cn.nukkit.level.generator.SimpleChunkManager#setBlockFullIdAt(int, int, int, int, int)", + "cn.nukkit.level.generator.SimpleChunkManager#setBlockIdAt(int, int, int, int, int)" + ] + }, + "cn.nukkit.block.BlockChorusPlant": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockChorusPlant#breaksWhenMoved()", + "cn.nukkit.block.BlockChorusPlant#sticksToPiston()" + ] + }, + "cn.nukkit.block.BlockWall": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWall#getToolTier()" + ] + }, + "cn.nukkit.math.MathHelper": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.math.MathHelper#clamp(float, float, float)" + ] + }, + "cn.nukkit.utils.OptionalBoolean": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.utils.OptionalBoolean#toString()" + ] + }, + "cn.nukkit.blockstate.BlockState": { + "addOverrideAnnotation": [ + "cn.nukkit.blockstate.BlockState#getBlockId()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockstate.BlockState#equals(Object)", + "cn.nukkit.blockstate.BlockState#getBigDamage()", + "cn.nukkit.blockstate.BlockState#getBitSize()", + "cn.nukkit.blockstate.BlockState#getBlock()", + "cn.nukkit.blockstate.BlockState#getBlock(Level, int, int, int, int, boolean, Consumer)", + "cn.nukkit.blockstate.BlockState#getBlockId()", + "cn.nukkit.blockstate.BlockState#getBooleanValue(String)", + "cn.nukkit.blockstate.BlockState#getCurrentState()", + "cn.nukkit.blockstate.BlockState#getDataStorage()", + "cn.nukkit.blockstate.BlockState#getIntValue(String)", + "cn.nukkit.blockstate.BlockState#getLegacyDamage()", + "cn.nukkit.blockstate.BlockState#getPersistenceValue(String)", + "cn.nukkit.blockstate.BlockState#getProperties()", + "cn.nukkit.blockstate.BlockState#getPropertyValue(String)", + "cn.nukkit.blockstate.BlockState#hashCode()", + "cn.nukkit.blockstate.BlockState#toString()" + ] + }, + "cn.nukkit.network.protocol.PositionTrackingDBClientRequestPacket": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.network.protocol.PositionTrackingDBClientRequestPacket#toString()" + ] + }, + "cn.nukkit.block.BlockStairsDiorite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsDiorite#getToolTier()" + ] + }, + "cn.nukkit.event.vehicle.VehicleDestroyByEntityEvent": { + "addOverrideAnnotation": [ + "cn.nukkit.event.vehicle.VehicleDestroyByEntityEvent#getHandlers()" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.event.vehicle.VehicleDestroyByEntityEvent#getHandlers()" + ] + }, + "cn.nukkit.blockstate.MutableBlockState": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockstate.MutableBlockState#canEqual(Object)", + "cn.nukkit.blockstate.MutableBlockState#equals(Object)", + "cn.nukkit.blockstate.MutableBlockState#getBigId()", + "cn.nukkit.blockstate.MutableBlockState#getBitSize()", + "cn.nukkit.blockstate.MutableBlockState#getBlockId()", + "cn.nukkit.blockstate.MutableBlockState#getFullId()", + "cn.nukkit.blockstate.MutableBlockState#getProperties()", + "cn.nukkit.blockstate.MutableBlockState#hashCode()", + "cn.nukkit.blockstate.MutableBlockState#toString()" + ] + }, + "cn.nukkit.block.BlockStonecutter": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStonecutter#getToolTier()" + ] + }, + "cn.nukkit.event.entity.EntityExplodeEvent": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.event.entity.EntityExplodeEvent#ignitions" + ] + }, + "cn.nukkit.nbt.tag.Tag": { + "addOverrideAnnotation": [ + "cn.nukkit.nbt.tag.Tag#toString()" + ] + }, + "cn.nukkit.block.BlockStemStripped": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStemStripped#getStrippedState()" + ] + }, + "cn.nukkit.block.BlockLadder": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockLadder#breaksWhenMoved()", + "cn.nukkit.block.BlockLadder#sticksToPiston()" + ] + }, + "cn.nukkit.nbt.tag.ListTag": { + "addOverrideAnnotation": [ + "cn.nukkit.nbt.tag.ListTag#print(String, PrintStream)" + ] + }, + "cn.nukkit.inventory.ShapelessRecipe": { + "addOverrideAnnotation": [ + "cn.nukkit.inventory.ShapelessRecipe#matchItems(List, List, int)" + ] + }, + "cn.nukkit.level.biome.impl.iceplains.IcePlainsSpikesBiome": { + "addOverrideAnnotation": [ + "cn.nukkit.level.biome.impl.iceplains.IcePlainsSpikesBiome#getName()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.biome.impl.iceplains.IcePlainsSpikesBiome#getSurfaceBlock(int)" + ] + }, + "cn.nukkit.block.BlockStairsStoneBrick": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsStoneBrick#getToolTier()" + ] + }, + "cn.nukkit.block.BlockQuartz": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockQuartz#getToolTier()" + ] + }, + "cn.nukkit.entity.mob.EntitySpider": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntitySpider#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.item.ItemDragonBreath": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemDragonBreath" + ] + }, + "cn.nukkit.level.ListChunkManager": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.ListChunkManager#getBlockDataAt(int, int, int, int)", + "cn.nukkit.level.ListChunkManager#getBlockIdAt(int, int, int, int)", + "cn.nukkit.level.ListChunkManager#setBlockAtLayer(int, int, int, int, int, int)", + "cn.nukkit.level.ListChunkManager#setBlockDataAt(int, int, int, int, int)", + "cn.nukkit.level.ListChunkManager#setBlockFullIdAt(int, int, int, int, int)", + "cn.nukkit.level.ListChunkManager#setBlockIdAt(int, int, int, int, int)" + ] + }, + "cn.nukkit.inventory.transaction.action.SlotChangeAction": { + "addOverrideAnnotation": [ + "cn.nukkit.inventory.transaction.action.SlotChangeAction#execute(Player)", + "cn.nukkit.inventory.transaction.action.SlotChangeAction#isValid(Player)", + "cn.nukkit.inventory.transaction.action.SlotChangeAction#onExecuteFail(Player)", + "cn.nukkit.inventory.transaction.action.SlotChangeAction#onExecuteSuccess(Player)" + ] + }, + "cn.nukkit.item.ItemFishingRod": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemFishingRod#damageWhenBreaking()" + ] + }, + "cn.nukkit.entity.mob.EntityGuardian": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityGuardian#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.block.BlockBricks": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBricks#getToolTier()" + ] + }, + "cn.nukkit.level.format.anvil.ChunkSection": { + "addOverrideAnnotation": [ + "cn.nukkit.level.format.anvil.ChunkSection#copy()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.anvil.ChunkSection#STREAM_STORAGE_VERSION", + "cn.nukkit.level.format.anvil.ChunkSection#SAVE_STORAGE_VERSION", + "cn.nukkit.level.format.anvil.ChunkSection#getAndSetBlock(int, int, int, int, Block)", + "cn.nukkit.level.format.anvil.ChunkSection#getBlockChangeStateAbove(int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#getBlockData(int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#getBlockId(int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#getBlockState(int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#getFullBlock(int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#getMaximumLayer()", + "cn.nukkit.level.format.anvil.ChunkSection#hasBlocks()", + "cn.nukkit.level.format.anvil.ChunkSection#setBlockAtLayer(int, int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#setBlockAtLayer(int, int, int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#setBlockData(int, int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#setBlockId(int, int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#setBlockStateAtLayer(int, int, int, int, BlockState)", + "cn.nukkit.level.format.anvil.ChunkSection#setFullBlockId(int, int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#toNBT()" + ] + }, + "cn.nukkit.scheduler.AsyncWorker": { + "addOverrideAnnotation": [ + "cn.nukkit.scheduler.AsyncWorker#run()" + ] + }, + "cn.nukkit.block.BlockSlabBlackstonePolished": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSlabBlackstonePolished#getSlabName()", + "cn.nukkit.block.BlockSlabBlackstonePolished#isSameType(BlockSlab)" + ] + }, + "cn.nukkit.block.BlockDoorIron": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoorIron#getToolTier()" + ] + }, + "cn.nukkit.level.format.anvil.palette.BiomePalette": { + "addOverrideAnnotation": [ + "cn.nukkit.level.format.anvil.palette.BiomePalette#clone()" + ] + }, + "cn.nukkit.block.BlockDaylightDetectorInverted": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDaylightDetectorInverted#isInverted()" + ] + }, + "cn.nukkit.blockstate.BlockStateRepair": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockstate.BlockStateRepair#equals(Object)", + "cn.nukkit.blockstate.BlockStateRepair#getBlockId()", + "cn.nukkit.blockstate.BlockStateRepair#getBrokenPropertyMeta()", + "cn.nukkit.blockstate.BlockStateRepair#getCurrentState()", + "cn.nukkit.blockstate.BlockStateRepair#getFixedPropertyValue()", + "cn.nukkit.blockstate.BlockStateRepair#getNextState()", + "cn.nukkit.blockstate.BlockStateRepair#getOriginalState()", + "cn.nukkit.blockstate.BlockStateRepair#getProperties()", + "cn.nukkit.blockstate.BlockStateRepair#getProperty()", + "cn.nukkit.blockstate.BlockStateRepair#getPropertyOffset()", + "cn.nukkit.blockstate.BlockStateRepair#getProposedPropertyValue()", + "cn.nukkit.blockstate.BlockStateRepair#getRepairs()", + "cn.nukkit.blockstate.BlockStateRepair#getValidationException()", + "cn.nukkit.blockstate.BlockStateRepair#hashCode()", + "cn.nukkit.blockstate.BlockStateRepair#toString()" + ] + }, + "cn.nukkit.entity.item.EntityPainting": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.item.EntityPainting#onPushByPiston(BlockEntityPistonArm)" + ] + }, + "cn.nukkit.network.protocol.ItemComponentPacket": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.network.protocol.ItemComponentPacket#toString()" + ] + }, + "cn.nukkit.level.biome.impl.mesa.MesaPlateauFBiome": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.biome.impl.mesa.MesaPlateauFBiome#getCoverBlock()" + ] + }, + "cn.nukkit.network.protocol.DataPacket": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.network.protocol.DataPacket#EMPTY_ARRAY" + ] + }, + "cn.nukkit.item.ItemRabbitHide": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemRabbitHide" + ] + }, + "cn.nukkit.block.BlockEnchantingTable": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockEnchantingTable#getToolTier()" + ] + }, + "cn.nukkit.entity.mob.EntityPiglin": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityPiglin#isBaby()", + "cn.nukkit.entity.mob.EntityPiglin#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.level.format.ChunkSection": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.ChunkSection#setFullBlockId(int, int, int, int, int)" + ] + }, + "cn.nukkit.level.format.generic.BaseFullChunk": { + "addOverrideAnnotation": [ + "cn.nukkit.level.format.generic.BaseFullChunk#initChunk()", + "cn.nukkit.level.format.generic.BaseFullChunk#setX(int)", + "cn.nukkit.level.format.generic.BaseFullChunk#setZ(int)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.generic.BaseFullChunk#getBlockDataAt(int, int, int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#getBlockIdAt(int, int, int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#recalculateHeightMapColumn(int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#setBlockAtLayer(int, int, int, int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#setBlockAtLayer(int, int, int, int, int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#setBlockDataAt(int, int, int, int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#setBlockFullIdAt(int, int, int, int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#setBlockIdAt(int, int, int, int, int)" + ] + }, + "cn.nukkit.block.BlockStairsRedNetherBrick": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsRedNetherBrick#getToolTier()" + ] + }, + "cn.nukkit.block.BlockRespawnAnchor": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockRespawnAnchor#canBePulled()" + ] + }, + "cn.nukkit.block.BlockStairsRedSandstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsRedSandstone#getToolTier()" + ] + }, + "cn.nukkit.entity.mob.EntityHusk": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityHusk#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityHusk#isUndead()" + ] + }, + "cn.nukkit.block.BlockWoodStrippedJungle": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWoodStrippedJungle#getWoodType()" + ] + }, + "cn.nukkit.block.BlockObsidian": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockObsidian#canBePulled()", + "cn.nukkit.block.BlockObsidian#getToolTier()" + ] + }, + "cn.nukkit.entity.passive.EntitySkeletonHorse": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.passive.EntitySkeletonHorse#isUndead()" + ] + }, + "cn.nukkit.item.Item": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.Item#equalsIgnoringEnchantmentOrder(Item, boolean)", + "cn.nukkit.item.Item#getBlock(int)", + "cn.nukkit.item.Item#getBlock(int, Integer)", + "cn.nukkit.item.Item#getBlock(int, Integer, int)", + "cn.nukkit.item.Item#getBlock(int, Integer, int, byte[])" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.Item#hasEnchantment(int)" + ] + }, + "cn.nukkit.block.BlockWarpedWallSign": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWarpedWallSign#getPostId()" + ] + }, + "cn.nukkit.block.BlockObsidianCrying": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockObsidianCrying#canBePulled()" + ] + }, + "cn.nukkit.block.BlockStairsSmoothSandstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsSmoothSandstone#getToolTier()" + ] + }, + "cn.nukkit.level.particle.Particle": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.particle.Particle#TYPE_CANDLE_FLAME" + ] + }, + "cn.nukkit.network.rcon.RCONServer": { + "addOverrideAnnotation": [ + "cn.nukkit.network.rcon.RCONServer#run()" + ] + }, + "cn.nukkit.blockproperty.IntBlockProperty": { + "addOverrideAnnotation": [ + "cn.nukkit.blockproperty.IntBlockProperty#getDefaultValue()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockproperty.IntBlockProperty#getIntValueForMeta(int)", + "cn.nukkit.blockproperty.IntBlockProperty#getMetaForValue(Integer)", + "cn.nukkit.blockproperty.IntBlockProperty#getPersistenceValueForMeta(int)", + "cn.nukkit.blockproperty.IntBlockProperty#getValueClass()", + "cn.nukkit.blockproperty.IntBlockProperty#getValueForMeta(int)", + "cn.nukkit.blockproperty.IntBlockProperty#validateDirectly(Integer)", + "cn.nukkit.blockproperty.IntBlockProperty#validateMetaDirectly(int)" + ] + }, + "cn.nukkit.network.protocol.PositionTrackingDBServerBroadcastPacket": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.network.protocol.PositionTrackingDBServerBroadcastPacket#toString()" + ] + }, + "cn.nukkit.block.BlockPumpkin": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockPumpkin#breaksWhenMoved()", + "cn.nukkit.block.BlockPumpkin#getProperties()", + "cn.nukkit.block.BlockPumpkin#setBlockFace(BlockFace)", + "cn.nukkit.block.BlockPumpkin#sticksToPiston()" + ] + }, + "cn.nukkit.blockentity.BlockEntityMovingBlock": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockentity.BlockEntityMovingBlock#blockString", + "cn.nukkit.blockentity.BlockEntityMovingBlock#getBlockEntity()", + "cn.nukkit.blockentity.BlockEntityMovingBlock#getMovingBlock()", + "cn.nukkit.blockentity.BlockEntityMovingBlock#getMovingBlockString()", + "cn.nukkit.blockentity.BlockEntityMovingBlock#moveCollidedEntities(BlockEntityPistonArm, BlockFace)" + ] + }, + "cn.nukkit.blockstate.LongMutableBlockState": { + "addOverrideAnnotation": [ + "cn.nukkit.blockstate.LongMutableBlockState#canEqual(Object)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockstate.LongMutableBlockState#canEqual(Object)", + "cn.nukkit.blockstate.LongMutableBlockState#copy()", + "cn.nukkit.blockstate.LongMutableBlockState#equals(Object)", + "cn.nukkit.blockstate.LongMutableBlockState#getBigDamage()", + "cn.nukkit.blockstate.LongMutableBlockState#getBooleanValue(String)", + "cn.nukkit.blockstate.LongMutableBlockState#getCurrentState()", + "cn.nukkit.blockstate.LongMutableBlockState#getDataStorage()", + "cn.nukkit.blockstate.LongMutableBlockState#getIntValue(String)", + "cn.nukkit.blockstate.LongMutableBlockState#getLegacyDamage()", + "cn.nukkit.blockstate.LongMutableBlockState#getPersistenceValue(String)", + "cn.nukkit.blockstate.LongMutableBlockState#getPropertyValue(String)", + "cn.nukkit.blockstate.LongMutableBlockState#hashCode()", + "cn.nukkit.blockstate.LongMutableBlockState#toString()", + "cn.nukkit.blockstate.LongMutableBlockState#validate()" + ] + }, + "cn.nukkit.item.ItemWarpedFungusOnAStick": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemWarpedFungusOnAStick#damageWhenBreaking()" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemWarpedFungusOnAStick" + ] + }, + "cn.nukkit.level.format.updater.OldWoodBarkUpdater": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.updater.OldWoodBarkUpdater#update(int, int, int, int, int, int, BlockState)" + ] + }, + "cn.nukkit.blockproperty.BlockProperty": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockproperty.BlockProperty#toString()" + ] + }, + "cn.nukkit.block.BlockItemFrame": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockItemFrame#breaksWhenMoved()", + "cn.nukkit.block.BlockItemFrame#sticksToPiston()" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockItemFrame#recalculateBoundingBox()" + ] + }, + "cn.nukkit.utils.SkinAnimation": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.utils.SkinAnimation#canEqual(Object)" + ] + }, + "cn.nukkit.blockstate.BigIntegerMutableBlockState": { + "addOverrideAnnotation": [ + "cn.nukkit.blockstate.BigIntegerMutableBlockState#canEqual(Object)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockstate.BigIntegerMutableBlockState", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#canEqual(Object)", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#copy()", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#equals(Object)", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getBigDamage()", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getBooleanValue(String)", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getCurrentState()", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getDataStorage()", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getIntValue(String)", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getLegacyDamage()", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getPersistenceValue(String)", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getPropertyValue(String)", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#hashCode()", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#toString()", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#validate()" + ] + }, + "cn.nukkit.blockentity.BlockEntityItemFrame": { + "addOverrideAnnotation": [ + "cn.nukkit.blockentity.BlockEntityItemFrame#setDirty()" + ] + }, + "cn.nukkit.block.BlockPistonBase": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockPistonBase#canPush(Block, BlockFace, boolean, boolean)", + "cn.nukkit.block.BlockPistonBase#createHead(int)", + "cn.nukkit.block.BlockPistonBase#getPistonHeadBlockId()" + ] + }, + "cn.nukkit.blockentity.BlockEntityBeehive": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockentity.BlockEntityBeehive#onBreak(boolean)" + ] + }, + "cn.nukkit.block.BlockStairsCobblestone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsCobblestone#getToolTier()" + ] + }, + "cn.nukkit.block.BlockSlabWarped": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSlabWarped#getSlabName()", + "cn.nukkit.block.BlockSlabWarped#isSameType(BlockSlab)" + ] + }, + "cn.nukkit.level.format.updater.DoorUpdater": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.updater.DoorUpdater#update(int, int, int, int, int, int, BlockState)" + ] + }, + "cn.nukkit.blockstate.ZeroMutableBlockState": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockstate.ZeroMutableBlockState#copy()", + "cn.nukkit.blockstate.ZeroMutableBlockState#validate()" + ] + }, + "cn.nukkit.block.BlockLapis": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockLapis#getToolTier()" + ] + }, + "cn.nukkit.entity.mob.EntitySilverfish": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntitySilverfish#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.block.BlockOreLapis": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockOreLapis#getToolTier()" + ] + }, + "cn.nukkit.block.BlockIronBars": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockIronBars#getToolTier()" + ] + }, + "cn.nukkit.block.BlockWoodBark": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWoodBark#getWoodType()", + "cn.nukkit.block.BlockWoodBark#setWoodType(WoodType)" + ] + }, + "cn.nukkit.item.ItemLeggingsNetherite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemLeggingsNetherite#isLavaResistant()" + ] + }, + "cn.nukkit.item.enchantment.EnchantmentEfficiency": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.enchantment.EnchantmentEfficiency#isItemAcceptable(Item)" + ] + }, + "cn.nukkit.level.format.updater.StemStrippedUpdater": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.updater.StemStrippedUpdater#update(int, int, int, int, int, int, BlockState)" + ] + }, + "cn.nukkit.level.util.Pow2BitArray": { + "addOverrideAnnotation": [ + "cn.nukkit.level.util.Pow2BitArray#get(int)", + "cn.nukkit.level.util.Pow2BitArray#getVersion()", + "cn.nukkit.level.util.Pow2BitArray#set(int, int)", + "cn.nukkit.level.util.Pow2BitArray#size()" + ] + }, + "cn.nukkit.block.BlockSlabStone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSlabStone#getSlabName()", + "cn.nukkit.block.BlockSlabStone#getToolTier()", + "cn.nukkit.block.BlockSlabStone#isSameType(BlockSlab)" + ] + }, + "cn.nukkit.Player": { + "addOverrideAnnotation": [ + "cn.nukkit.Player#isPlayer()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.Player#addExperience(int, boolean)", + "cn.nukkit.Player#onBlock(Entity, boolean)", + "cn.nukkit.Player#setExperience(int, int, boolean)" + ] + }, + "cn.nukkit.blockproperty.UnsignedIntBlockProperty": { + "addOverrideAnnotation": [ + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getDefaultValue()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getIntValueForMeta(int)", + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getMetaForValue(Integer)", + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getPersistenceValueForMeta(int)", + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getValueClass()", + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getValueForMeta(int)", + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#validateDirectly(Integer)", + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#validateMetaDirectly(int)" + ] + }, + "cn.nukkit.entity.mob.EntityZombieVillagerV1": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityZombieVillagerV1#isUndead()" + ] + }, + "cn.nukkit.utils.collection.ConvertingSetWrapper": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.utils.collection.ConvertingSetWrapper#add(V1)", + "cn.nukkit.utils.collection.ConvertingSetWrapper#clear()", + "cn.nukkit.utils.collection.ConvertingSetWrapper#contains(Object)", + "cn.nukkit.utils.collection.ConvertingSetWrapper#isEmpty()", + "cn.nukkit.utils.collection.ConvertingSetWrapper#iterator()", + "cn.nukkit.utils.collection.ConvertingSetWrapper#remove(Object)", + "cn.nukkit.utils.collection.ConvertingSetWrapper#size()" + ] + }, + "cn.nukkit.block.BlockDarkOakWallSign": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDarkOakWallSign#getPostId()" + ] + }, + "cn.nukkit.block.BlockCampfire": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCampfire#breaksWhenMoved()", + "cn.nukkit.block.BlockCampfire#canBePulled()" + ] + }, + "cn.nukkit.block.BlockStairsPrismarineBrick": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsPrismarineBrick#getToolTier()" + ] + }, + "cn.nukkit.event.block.BlockFormEvent": { + "addOverrideAnnotation": [ + "cn.nukkit.event.block.BlockFormEvent#getHandlers()" + ] + }, + "cn.nukkit.block.BlockBricksRedNether": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBricksRedNether#getToolTier()" + ] + }, + "cn.nukkit.block.BlockObserver": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockObserver#getToolTier()" + ] + }, + "cn.nukkit.block.BlockStructure": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStructure#canBePulled()" + ] + }, + "cn.nukkit.network.Network": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.network.Network#getPacket(byte)" + ] + }, + "cn.nukkit.level.format.generic.BaseChunk": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.generic.BaseChunk#findBorders(int, int)", + "cn.nukkit.level.format.generic.BaseChunk#getBlockData(int, int, int, int)", + "cn.nukkit.level.format.generic.BaseChunk#getBlockStateAt(int, int, int, int)", + "cn.nukkit.level.format.generic.BaseChunk#isBlockChangeAllowed(int, int, int)", + "cn.nukkit.level.format.generic.BaseChunk#isBlockedByBorder(int, int)", + "cn.nukkit.level.format.generic.BaseChunk#setBlockData(int, int, int, int, int)" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.generic.BaseChunk#setBlock(int, int, int, int, int)" + ] + }, + "cn.nukkit.block.BlockFallable": { + "addOverrideAnnotation": [ + "cn.nukkit.block.BlockFallable#onUpdate(int)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockFallable#createFallingEntity(CompoundTag)" + ] + }, + "cn.nukkit.block.BlockWeightedPressurePlateLight": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWeightedPressurePlateLight#getToolTier()" + ] + }, + "cn.nukkit.entity.weather.EntityLightning": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.weather.EntityLightning#isEffect()", + "cn.nukkit.entity.weather.EntityLightning#setEffect(boolean)" + ] + }, + "cn.nukkit.entity.mob.EntityCaveSpider": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityCaveSpider#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.event.vehicle.VehicleDamageByEntityEvent": { + "addOverrideAnnotation": [ + "cn.nukkit.event.vehicle.VehicleDamageByEntityEvent#getHandlers()" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.event.vehicle.VehicleDamageByEntityEvent#getHandlers()" + ] + }, + "cn.nukkit.item.ItemBlock": { + "addOverrideAnnotation": [ + "cn.nukkit.item.ItemBlock#getBlock()", + "cn.nukkit.item.ItemBlock#setDamage(Integer)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemBlock#isLavaResistant()" + ] + }, + "cn.nukkit.block.BlockButtonStone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockButtonStone#getToolTier()" + ] + }, + "cn.nukkit.block.BlockTerracotta": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockTerracotta#getToolTier()" + ] + }, + "cn.nukkit.entity.mob.EntityEndermite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityEndermite#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.level.biome.type.SnowyBiome": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.biome.type.SnowyBiome#getCoverBlock()" + ] + }, + "cn.nukkit.block.BlockLodestone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockLodestone#sticksToPiston()" + ] + }, + "cn.nukkit.item.ItemBootsNetherite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemBootsNetherite#isLavaResistant()" + ] + }, + "cn.nukkit.block.BlockMoving": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockMoving#canBePulled()" + ] + }, + "cn.nukkit.block.BlockWarpedSignPost": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWarpedSignPost#getWallId()" + ] + }, + "cn.nukkit.blockproperty.ArrayBlockProperty": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockproperty.ArrayBlockProperty#getIntValueForMeta(int)", + "cn.nukkit.blockproperty.ArrayBlockProperty#getMetaForValue(E)", + "cn.nukkit.blockproperty.ArrayBlockProperty#getPersistenceValueForMeta(int)", + "cn.nukkit.blockproperty.ArrayBlockProperty#getUniverse()", + "cn.nukkit.blockproperty.ArrayBlockProperty#getValueClass()", + "cn.nukkit.blockproperty.ArrayBlockProperty#getValueForMeta(int)", + "cn.nukkit.blockproperty.ArrayBlockProperty#validateDirectly(E)", + "cn.nukkit.blockproperty.ArrayBlockProperty#validateMetaDirectly(int)" + ] + }, + "cn.nukkit.block.BlockRedstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockRedstone#getToolTier()" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockRedstone#onBreak(Item)", + "cn.nukkit.block.BlockRedstone#place(Item, Block, Block, BlockFace, double, double, double, Player)" + ] + }, + "cn.nukkit.block.BlockBell": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBell#getAttachmentType()", + "cn.nukkit.block.BlockBell#getToolTier()", + "cn.nukkit.block.BlockBell#setAttachmentType(int)" + ] + }, + "cn.nukkit.command.ConsoleCommandSender": { + "addOverrideAnnotation": [ + "cn.nukkit.command.ConsoleCommandSender#isPlayer()" + ] + }, + "cn.nukkit.block.Block": { + "addOverrideAnnotation": [ + "cn.nukkit.block.Block#calculateIntercept(Vector3, Vector3)", + "cn.nukkit.block.Block#clone()", + "cn.nukkit.block.Block#down()", + "cn.nukkit.block.Block#down(int)", + "cn.nukkit.block.Block#east()", + "cn.nukkit.block.Block#east(int)", + "cn.nukkit.block.Block#getCurrentState()", + "cn.nukkit.block.Block#getFullId()", + "cn.nukkit.block.Block#getProperties()", + "cn.nukkit.block.Block#getRuntimeId()", + "cn.nukkit.block.Block#getSide(BlockFace)", + "cn.nukkit.block.Block#getSide(BlockFace, int)", + "cn.nukkit.block.Block#north()", + "cn.nukkit.block.Block#north(int)", + "cn.nukkit.block.Block#south()", + "cn.nukkit.block.Block#south(int)", + "cn.nukkit.block.Block#up()", + "cn.nukkit.block.Block#up(int)", + "cn.nukkit.block.Block#west()", + "cn.nukkit.block.Block#west(int)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.Block#diffusesSkyLight", + "cn.nukkit.block.Block#asItemBlock()", + "cn.nukkit.block.Block#breaksWhenMoved()", + "cn.nukkit.block.Block#canBePulled()", + "cn.nukkit.block.Block#canWaterloggingFlowInto()", + "cn.nukkit.block.Block#diffusesSkyLight()", + "cn.nukkit.block.Block#down(int, int)", + "cn.nukkit.block.Block#east(int, int)", + "cn.nukkit.block.Block#firstInLayers(int, Predicate)", + "cn.nukkit.block.Block#firstInLayers(Predicate)", + "cn.nukkit.block.Block#get(int, Level, int, int, int, int)", + "cn.nukkit.block.Block#get(int, Integer, Position, int)", + "cn.nukkit.block.Block#getBlock()", + "cn.nukkit.block.Block#getItemId()", + "cn.nukkit.block.Block#getSideAtLayer(int, BlockFace)", + "cn.nukkit.block.Block#getSideAtLayer(int, BlockFace, int)", + "cn.nukkit.block.Block#north(int, int)", + "cn.nukkit.block.Block#south(int, int)", + "cn.nukkit.block.Block#sticksToPiston()", + "cn.nukkit.block.Block#up(int, int)", + "cn.nukkit.block.Block#west(int, int)" + ] + }, + "cn.nukkit.command.Command": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.command.Command#parseTilde(String, double)" + ] + }, + "cn.nukkit.entity.projectile.EntityThrownTrident": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.projectile.EntityThrownTrident#gravity", + "cn.nukkit.entity.projectile.EntityThrownTrident#drag", + "cn.nukkit.entity.projectile.EntityThrownTrident#create(Object, Position, Object[])", + "cn.nukkit.entity.projectile.EntityThrownTrident#isCritical()", + "cn.nukkit.entity.projectile.EntityThrownTrident#setCritical()", + "cn.nukkit.entity.projectile.EntityThrownTrident#setCritical(boolean)" + ] + }, + "cn.nukkit.utils.Hash": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.utils.Hash#hashBlock(Vector3)" + ] + }, + "cn.nukkit.block.BlockStairsAndesite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsAndesite#getToolTier()" + ] + }, + "cn.nukkit.network.protocol.CraftingEventPacket": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.network.protocol.CraftingEventPacket#canEqual(Object)" + ] + }, + "cn.nukkit.block.BlockFungusCrimson": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockFungusCrimson#canGrowOn(Block)", + "cn.nukkit.block.BlockFungusCrimson#grow(Player)" + ] + }, + "cn.nukkit.block.BlockStairsEndBrick": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsEndBrick#getToolTier()" + ] + }, + "cn.nukkit.block.BlockStairsGranitePolished": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsGranitePolished#getToolTier()" + ] + }, + "cn.nukkit.dispenser.ProjectileDispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.ProjectileDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", + "cn.nukkit.dispenser.ProjectileDispenseBehavior#getAccuracy()", + "cn.nukkit.dispenser.ProjectileDispenseBehavior#getMotion()" + ] + }, + "cn.nukkit.level.biome.impl.beach.ColdBeachBiome": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.biome.impl.beach.ColdBeachBiome#getCoverBlock()" + ] + }, + "cn.nukkit.block.BlockConcretePowder": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockConcretePowder#getDyeColor()" + ] + }, + "cn.nukkit.entity.mob.EntityStray": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityStray#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityStray#isUndead()" + ] + }, + "cn.nukkit.blockstate.IBlockState": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockstate.IBlockState#getBigId()" + ] + }, + "cn.nukkit.event.redstone.RedstoneUpdateEvent": { + "addOverrideAnnotation": [ + "cn.nukkit.event.redstone.RedstoneUpdateEvent#getHandlers()" + ] + }, + "cn.nukkit.network.protocol.TickSyncPacket": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.network.protocol.TickSyncPacket#toString()" + ] + }, + "cn.nukkit.block.BlockCoralFanHang": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCoralFanHang#getRootsFace()", + "cn.nukkit.block.BlockCoralFanHang#getType()", + "cn.nukkit.block.BlockCoralFanHang#isDead()" + ] + }, + "cn.nukkit.block.BlockFence": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockFence#PROPERTIES" + ] + }, + "cn.nukkit.item.ItemLead": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemLead" + ] + }, + "cn.nukkit.entity.mob.EntityRavager": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityRavager#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.entity.mob.EntityPhantom": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityPhantom#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityPhantom#isUndead()" + ] + }, + "cn.nukkit.block.BlockBedrockInvisible": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBedrockInvisible#canBePulled()" + ] + }, + "cn.nukkit.dispenser.TNTDispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.TNTDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + ] + }, + "cn.nukkit.blockstate.IntMutableBlockState": { + "addOverrideAnnotation": [ + "cn.nukkit.blockstate.IntMutableBlockState#canEqual(Object)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockstate.IntMutableBlockState#canEqual(Object)", + "cn.nukkit.blockstate.IntMutableBlockState#copy()", + "cn.nukkit.blockstate.IntMutableBlockState#equals(Object)", + "cn.nukkit.blockstate.IntMutableBlockState#getBigDamage()", + "cn.nukkit.blockstate.IntMutableBlockState#getBooleanValue(String)", + "cn.nukkit.blockstate.IntMutableBlockState#getCurrentState()", + "cn.nukkit.blockstate.IntMutableBlockState#getDataStorage()", + "cn.nukkit.blockstate.IntMutableBlockState#getIntValue(String)", + "cn.nukkit.blockstate.IntMutableBlockState#getLegacyDamage()", + "cn.nukkit.blockstate.IntMutableBlockState#getPersistenceValue(String)", + "cn.nukkit.blockstate.IntMutableBlockState#getPropertyValue(String)", + "cn.nukkit.blockstate.IntMutableBlockState#hashCode()", + "cn.nukkit.blockstate.IntMutableBlockState#toString()", + "cn.nukkit.blockstate.IntMutableBlockState#validate()" + ] + }, + "cn.nukkit.entity.mob.EntityCreeper": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.mob.EntityCreeper#onStruckByLightning(Entity)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityCreeper#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.item.enchantment.EnchantmentSilkTouch": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.enchantment.EnchantmentSilkTouch#isItemAcceptable(Item)" + ] + }, + "cn.nukkit.block.BlockBedrock": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBedrock#canBePulled()" + ] + }, + "cn.nukkit.block.BlockLever": { + "addOverrideAnnotation": [ + "cn.nukkit.block.BlockLever#getStrongPower(BlockFace)" + ] + }, + "cn.nukkit.level.format.anvil.palette.IntPalette": { + "addOverrideAnnotation": [ + "cn.nukkit.level.format.anvil.palette.IntPalette#clone()" + ] + }, + "cn.nukkit.entity.item.EntityExpBottle": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.item.EntityExpBottle#addHitEffect()" + ] + }, + "cn.nukkit.block.BlockIron": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockIron#getToolTier()" + ] + }, + "cn.nukkit.block.BlockStairsNetherBrick": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsNetherBrick#getToolTier()" + ] + }, + "cn.nukkit.block.BlockCoralFanDead": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCoralFanDead#isDead()" + ] + }, + "cn.nukkit.block.BlockWoodStrippedAcacia": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWoodStrippedAcacia#getWoodType()" + ] + }, + "cn.nukkit.dispenser.EmptyBucketDispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.EmptyBucketDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + ] + }, + "cn.nukkit.dispenser.DefaultDispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.DefaultDispenseBehavior#success", + "cn.nukkit.dispenser.DefaultDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + ] + }, + "cn.nukkit.block.BlockRedstoneComparator": { + "addOverrideAnnotation": [ + "cn.nukkit.block.BlockRedstoneComparator#calculateInputStrength()", + "cn.nukkit.block.BlockRedstoneComparator#shouldBePowered()" + ] + }, + "cn.nukkit.block.BlockFlowable": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockFlowable#breaksWhenMoved()", + "cn.nukkit.block.BlockFlowable#sticksToPiston()" + ] + }, + "cn.nukkit.block.BlockNetherWartBlock": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockNetherWartBlock" + ] + }, + "cn.nukkit.block.BlockHyphaeWarped": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockHyphaeWarped#getStrippedState()" + ] + }, + "cn.nukkit.level.format.anvil.palette.BlockDataPalette": { + "addOverrideAnnotation": [ + "cn.nukkit.level.format.anvil.palette.BlockDataPalette#clone()" + ] + }, + "cn.nukkit.block.BlockDoubleSlabCrimson": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoubleSlabCrimson#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabCrimson#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabCrimson#isCorrectTool(Item)" + ] + }, + "cn.nukkit.item.ItemBannerPattern": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemBannerPattern#updateName()" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemBannerPattern" + ] + }, + "cn.nukkit.block.BlockMobSpawner": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockMobSpawner#canBePulled()", + "cn.nukkit.block.BlockMobSpawner#getToolTier()" + ] + }, + "cn.nukkit.level.Position": { + "addOverrideAnnotation": [ + "cn.nukkit.level.Position#getSide(BlockFace)", + "cn.nukkit.level.Position#getSide(BlockFace, int)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.Position#getLevelBlockAtLayer(int)" + ] + }, + "cn.nukkit.nbt.tag.CompoundTag": { + "addOverrideAnnotation": [ + "cn.nukkit.nbt.tag.CompoundTag#copy()", + "cn.nukkit.nbt.tag.CompoundTag#print(String, PrintStream)", + "cn.nukkit.nbt.tag.CompoundTag#toString()" + ] + }, + "cn.nukkit.block.BlockGold": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockGold#getToolTier()" + ] + }, + "cn.nukkit.block.BlockSeaLantern": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSeaLantern" + ] + }, + "cn.nukkit.level.format.generic.EmptyChunkSection": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.generic.EmptyChunkSection#getAndSetBlock(int, int, int, int, Block)", + "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockChangeStateAbove(int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockData(int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockId(int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockState(int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#getFullBlock(int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#getMaximumLayer()", + "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockAtLayer(int, int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockAtLayer(int, int, int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockData(int, int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockId(int, int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockStateAtLayer(int, int, int, int, BlockState)", + "cn.nukkit.level.format.generic.EmptyChunkSection#setFullBlockId(int, int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#toNBT()" + ] + }, + "cn.nukkit.block.BlockWeightedPressurePlateHeavy": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWeightedPressurePlateHeavy#getToolTier()" + ] + }, + "cn.nukkit.block.BlockRedstoneDiode": { + "addOverrideAnnotation": [ + "cn.nukkit.block.BlockRedstoneDiode#getStrongPower(BlockFace)", + "cn.nukkit.block.BlockRedstoneDiode#getWeakPower(BlockFace)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockRedstoneDiode#isSupportValid(Block)" + ] + }, + "cn.nukkit.block.BlockSlabWood": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSlabWood#getSlabName()", + "cn.nukkit.block.BlockSlabWood#isSameType(BlockSlab)" + ] + }, + "cn.nukkit.level.format.updater.WallUpdater": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.updater.WallUpdater#update(int, int, int, int, int, int, BlockState)" + ] + }, + "cn.nukkit.block.BlockBeacon": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBeacon#canBePulled()" + ] + }, + "cn.nukkit.block.BlockDoubleSlabWarped": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoubleSlabWarped#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabWarped#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabWarped#isCorrectTool(Item)" + ] + }, + "cn.nukkit.entity.mob.EntityPillager": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityPillager#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.block.BlockWood2": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWood2#getWoodType()", + "cn.nukkit.block.BlockWood2#setWoodType(WoodType)" + ] + }, + "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getGroundBlock(int)", + "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getGroundDepth(int)", + "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getSurfaceBlock(int)", + "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getSurfaceDepth(int)" + ] + }, + "cn.nukkit.level.format.updater.NewLeafUpdater": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.updater.NewLeafUpdater#update(int, int, int, int, int, int, BlockState)" + ] + }, + "cn.nukkit.block.BlockBricksEndStone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBricksEndStone#getToolTier()" + ] + }, + "cn.nukkit.dispenser.ShulkerBoxDispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.ShulkerBoxDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + ] + }, + "cn.nukkit.item.ItemArmorStand": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemArmorStand" + ] + }, + "cn.nukkit.block.BlockSandstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSandstone#getSandstoneType()", + "cn.nukkit.block.BlockSandstone#getToolTier()" + ] + }, + "cn.nukkit.network.protocol.ItemStackResponsePacket": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.network.protocol.ItemStackResponsePacket#toString()" + ] + }, + "cn.nukkit.level.format.updater.FrameUpdater": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.updater.FrameUpdater#update(int, int, int, int, int, int, BlockState)" + ] + }, + "cn.nukkit.network.protocol.ResourcePackDataInfoPacket": { + "addOverrideAnnotation": [ + "cn.nukkit.network.protocol.ResourcePackDataInfoPacket#getPackVersion()", + "cn.nukkit.network.protocol.ResourcePackDataInfoPacket#setPackVersion(Version)" + ] + }, + "cn.nukkit.block.BlockSkull": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSkull#breaksWhenMoved()", + "cn.nukkit.block.BlockSkull#sticksToPiston()" + ] + }, + "cn.nukkit.block.BlockPressurePlateStone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockPressurePlateStone#getToolTier()" + ] + }, + "cn.nukkit.block.BlockPrismarine": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockPrismarine#getToolTier()" + ] + }, + "cn.nukkit.entity.mob.EntityHoglin": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityHoglin#isBaby()" + ] + }, + "cn.nukkit.block.BlockWallSign": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWallSign#getPostId()", + "cn.nukkit.block.BlockWallSign#getSignDirection()", + "cn.nukkit.block.BlockWallSign#getWallId()", + "cn.nukkit.block.BlockWallSign#setSignDirection(CompassRoseDirection)" + ] + }, + "cn.nukkit.block.BlockObsidianGlowing": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockObsidianGlowing#canBePulled()" + ] + }, + "cn.nukkit.block.BlockUndyedShulkerBox": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockUndyedShulkerBox#breaksWhenMoved()", + "cn.nukkit.block.BlockUndyedShulkerBox#sticksToPiston()" + ] + }, + "cn.nukkit.level.biome.impl.mushroom.MushroomIslandBiome": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.biome.impl.mushroom.MushroomIslandBiome#getSurfaceBlock(int)" + ] + }, + "cn.nukkit.level.format.LevelProvider": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.LevelProvider#getMaximumLayer()" + ] + }, + "cn.nukkit.level.format.updater.MesaBiomeUpdater": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.updater.MesaBiomeUpdater#update(int, int, int, int, int, int, BlockState)" + ] + }, + "cn.nukkit.level.generator.object.ObjectTallGrass": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.generator.object.ObjectTallGrass#growGrass(ChunkManager, Vector3, NukkitRandom, int, int)" + ] + }, + "cn.nukkit.utils.PersonaPiece": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.utils.PersonaPiece#canEqual(Object)" + ] + }, + "cn.nukkit.event.block.AnvilDamageEvent": { + "addOverrideAnnotation": [ + "cn.nukkit.event.block.AnvilDamageEvent#getHandlers()" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.event.block.AnvilDamageEvent#getCause()" + ] + }, + "cn.nukkit.block.BlockFenceBase": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockFenceBase#getWoodType()", + "cn.nukkit.block.BlockFenceBase#setWoodType(WoodType)" + ] + }, + "cn.nukkit.utils.SerializedImage": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.utils.SerializedImage#canEqual(Object)" + ] + }, + "cn.nukkit.block.BlockFenceNetherBrick": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockFenceNetherBrick#getToolTier()" + ] + }, + "cn.nukkit.block.BlockSlabStone4": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSlabStone4#getSlabName()", + "cn.nukkit.block.BlockSlabStone4#getToolTier()", + "cn.nukkit.block.BlockSlabStone4#isSameType(BlockSlab)" + ] + }, + "cn.nukkit.block.BlockSlabStone3": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSlabStone3#getSlabName()", + "cn.nukkit.block.BlockSlabStone3#getToolTier()", + "cn.nukkit.block.BlockSlabStone3#isSameType(BlockSlab)" + ] + }, + "cn.nukkit.level.generator.populator.impl.PopulatorOre": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.generator.populator.impl.PopulatorOre#setOreTypes(OreType[])" + ] + }, + "cn.nukkit.entity.EntityHuman": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.EntityHuman#onBlock(Entity, boolean)" + ] + }, + "cn.nukkit.block.BlockCauldronLava": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCauldronLava#setFillLevel(int)" + ] + }, + "cn.nukkit.block.BlockGrindstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockGrindstone#getToolTier()" + ] + }, + "cn.nukkit.item.enchantment.EnchantmentThorns": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.enchantment.EnchantmentThorns#isItemAcceptable(Item)" + ] + }, + "cn.nukkit.math.BlockFace": { + "addOverrideAnnotation": [ + "cn.nukkit.math.BlockFace#toString()" + ] + }, + "cn.nukkit.utils.PersonaPieceTint": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.utils.PersonaPieceTint#canEqual(Object)" + ] + }, + "cn.nukkit.api.NewRakNetOnly": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.api.NewRakNetOnly#value()" + ] + }, + "cn.nukkit.inventory.transaction.action.CraftingTakeResultAction": { + "addOverrideAnnotation": [ + "cn.nukkit.inventory.transaction.action.CraftingTakeResultAction#onAddToTransaction(InventoryTransaction)" + ] + }, + "cn.nukkit.block.BlockNetherrack": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockNetherrack#getToolTier()" + ] + }, + "cn.nukkit.item.ItemScrapNetherite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemScrapNetherite#isLavaResistant()" + ] + }, + "cn.nukkit.entity.mob.EntityWither": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityWither#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityWither#isUndead()" + ] + }, + "cn.nukkit.block.BlockOreCoal": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockOreCoal#getToolTier()" + ] + }, + "cn.nukkit.level.format.anvil.SingleLayerStorage": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.anvil.SingleLayerStorage#clone()" + ] + }, + "cn.nukkit.event.player.PlayerDeathEvent": { + "addOverrideAnnotation": [ + "cn.nukkit.event.player.PlayerDeathEvent#getHandlers()" + ] + }, + "cn.nukkit.block.BlockBricksNether": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBricksNether#getToolTier()" + ] + }, + "cn.nukkit.dispenser.DispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.DispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + ] + }, + "cn.nukkit.item.ItemSwordNetherite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemSwordNetherite#isLavaResistant()" + ] + }, + "cn.nukkit.level.format.anvil.LayerStorage": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.anvil.LayerStorage#clone()" + ] + }, + "cn.nukkit.math.AxisAlignedBB": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.math.AxisAlignedBB#getOffsetBoundingBox(BlockFace, double, double, double)" + ] + }, + "cn.nukkit.item.ItemEnderPearl": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemEnderPearl#correctProjectile(Player, Entity)" + ] + }, + "cn.nukkit.block.BlockSpruceSignPost": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSpruceSignPost#getWallId()" + ] + }, + "cn.nukkit.event.block.DoorToggleEvent": { + "addOverrideAnnotation": [ + "cn.nukkit.event.block.DoorToggleEvent#getHandlers()" + ] + }, + "cn.nukkit.block.BlockEmerald": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockEmerald#getToolTier()" + ] + }, + "cn.nukkit.entity.mob.EntityVex": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityVex#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.level.format.FullChunk": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.FullChunk#recalculateHeightMapColumn(int, int)" + ] + }, + "cn.nukkit.blockproperty.BlockProperties": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockproperty.BlockProperties#getPersistenceValue(int, String)", + "cn.nukkit.blockproperty.BlockProperties#getPersistenceValue(BigInteger, String)", + "cn.nukkit.blockproperty.BlockProperties#getPersistenceValue(long, String)", + "cn.nukkit.blockproperty.BlockProperties#toString()" + ] + }, + "cn.nukkit.blockentity.BlockEntityBlastFurnace": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockentity.BlockEntityBlastFurnace#getBurningBlockId()", + "cn.nukkit.blockentity.BlockEntityBlastFurnace#getClientName()", + "cn.nukkit.blockentity.BlockEntityBlastFurnace#getFurnaceName()", + "cn.nukkit.blockentity.BlockEntityBlastFurnace#getIdleBlockId()", + "cn.nukkit.blockentity.BlockEntityBlastFurnace#getInventoryType()", + "cn.nukkit.blockentity.BlockEntityBlastFurnace#getSpeedMultiplier()", + "cn.nukkit.blockentity.BlockEntityBlastFurnace#matchRecipe(Item)" + ] + }, + "cn.nukkit.block.BlockTurtleEgg": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockTurtleEgg#getHardness()" + ] + }, + "cn.nukkit.block.BlockCauldron": { + "addOverrideAnnotation": [ + "cn.nukkit.block.BlockCauldron#getName()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCauldron#getFillLevel()", + "cn.nukkit.block.BlockCauldron#getToolTier()", + "cn.nukkit.block.BlockCauldron#setFillLevel(int)" + ] + }, + "cn.nukkit.inventory.CampfireRecipe": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.CampfireRecipe#getInput()" + ] + }, + "cn.nukkit.block.BlockWoodStripped": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWoodStripped#getStrippedState()", + "cn.nukkit.block.BlockWoodStripped#setWoodType(WoodType)" + ] + }, + "cn.nukkit.block.BlockHopper": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockHopper#getToolTier()" + ] + }, + "cn.nukkit.block.BlockRail": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockRail#canBePulled()" + ] + }, + "cn.nukkit.level.GlobalBlockPalette": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.GlobalBlockPalette#BLOCK_PALETTE", + "cn.nukkit.level.GlobalBlockPalette#getName(int)" + ] + }, + "cn.nukkit.math.ChunkVector2": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.math.ChunkVector2#toString()" + ] + }, + "cn.nukkit.event.server.RemoteServerCommandEvent": { + "addOverrideAnnotation": [ + "cn.nukkit.event.server.RemoteServerCommandEvent#getHandlers()" + ] + }, + "cn.nukkit.level.format.updater.SnowLayerUpdater": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.updater.SnowLayerUpdater#update(int, int, int, int, int, int, BlockState)" + ] + }, + "cn.nukkit.block.BlockVine": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockVine#breaksWhenMoved()", + "cn.nukkit.block.BlockVine#sticksToPiston()" + ] + }, + "cn.nukkit.inventory.SmokerRecipe": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.SmokerRecipe#getInput()" + ] + }, + "cn.nukkit.block.BlockPiston": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockPiston#getPistonHeadBlockId()" + ] + }, + "cn.nukkit.event.block.BlockSpreadEvent": { + "addOverrideAnnotation": [ + "cn.nukkit.event.block.BlockSpreadEvent#getHandlers()" + ] + }, + "cn.nukkit.level.generator.object.mushroom.BigMushroom": { + "addOverrideAnnotation": [ + "cn.nukkit.level.generator.object.mushroom.BigMushroom#generate(ChunkManager, NukkitRandom, Vector3)" + ] + }, + "cn.nukkit.inventory.SmithingRecipe": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.SmithingRecipe#toString()" + ] + }, + "cn.nukkit.block.BlockDoor": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoor#PROPERTIES", + "cn.nukkit.block.BlockDoor#breaksWhenMoved()", + "cn.nukkit.block.BlockDoor#sticksToPiston()" + ] + }, + "cn.nukkit.api.DeprecationDetails": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.api.DeprecationDetails#by()", + "cn.nukkit.api.DeprecationDetails#reason()", + "cn.nukkit.api.DeprecationDetails#replaceWith()", + "cn.nukkit.api.DeprecationDetails#since()", + "cn.nukkit.api.DeprecationDetails#toBeRemovedAt()" + ] + }, + "cn.nukkit.block.BlockBasalt": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBasalt#getToolTier()" + ] + }, + "cn.nukkit.level.format.anvil.palette.BitArray256": { + "addOverrideAnnotation": [ + "cn.nukkit.level.format.anvil.palette.BitArray256#clone()" + ] + }, + "cn.nukkit.block.BlockAcaciaSignPost": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockAcaciaSignPost#getWallId()" + ] + }, + "cn.nukkit.block.BlockSlabBrickBlackstonePolished": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSlabBrickBlackstonePolished#getSlabName()" + ] + }, + "cn.nukkit.entity.mob.EntityEnderman": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityEnderman#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.entity.projectile.EntityProjectile": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.projectile.EntityProjectile#attack(EntityDamageEvent)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.projectile.EntityProjectile#inaccurate(float)", + "cn.nukkit.entity.projectile.EntityProjectile#updateRotation()" + ] + }, + "cn.nukkit.blockentity.BlockEntityDropper": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockentity.BlockEntityDropper#createInventory()", + "cn.nukkit.blockentity.BlockEntityDropper#getBlockEntityName()" + ] + }, + "cn.nukkit.positiontracking.NamedPosition": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.positiontracking.NamedPosition#matchesNamedPosition(NamedPosition)" + ] + }, + "cn.nukkit.inventory.Inventory": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.Inventory#addListener(InventoryListener)", + "cn.nukkit.inventory.Inventory#removeListener(InventoryListener)" + ] + }, + "cn.nukkit.utils.collection.ConvertingMapWrapper": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.utils.collection.ConvertingMapWrapper#clear()", + "cn.nukkit.utils.collection.ConvertingMapWrapper#containsKey(Object)", + "cn.nukkit.utils.collection.ConvertingMapWrapper#containsValue(Object)", + "cn.nukkit.utils.collection.ConvertingMapWrapper#entrySet()", + "cn.nukkit.utils.collection.ConvertingMapWrapper#get(Object)", + "cn.nukkit.utils.collection.ConvertingMapWrapper#isEmpty()", + "cn.nukkit.utils.collection.ConvertingMapWrapper#keySet()", + "cn.nukkit.utils.collection.ConvertingMapWrapper#put(K, V1)", + "cn.nukkit.utils.collection.ConvertingMapWrapper#remove(Object)", + "cn.nukkit.utils.collection.ConvertingMapWrapper#remove(Object, Object)", + "cn.nukkit.utils.collection.ConvertingMapWrapper#size()" + ] + }, + "cn.nukkit.block.BlockFurnaceBurning": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockFurnaceBurning#getToolTier()" + ] + }, + "cn.nukkit.block.BlockMossStone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockMossStone#getToolTier()" + ] + }, + "cn.nukkit.event.blockstate.BlockStateRepairFinishEvent": { + "addOverrideAnnotation": [ + "cn.nukkit.event.blockstate.BlockStateRepairFinishEvent#getHandlers()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.event.blockstate.BlockStateRepairFinishEvent#getResult()" + ] + }, + "cn.nukkit.item.enchantment.EnchantmentDurability": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.enchantment.EnchantmentDurability#isItemAcceptable(Item)" + ] + }, + "cn.nukkit.plugin.service.RegisteredServiceProvider": { + "addOverrideAnnotation": [ + "cn.nukkit.plugin.service.RegisteredServiceProvider#compareTo(RegisteredServiceProvider)" + ] + }, + "cn.nukkit.entity.passive.EntityZombieHorse": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.passive.EntityZombieHorse#isUndead()" + ] + }, + "cn.nukkit.block.BlockLantern": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockLantern#getToolTier()" + ] + }, + "cn.nukkit.form.window.FormWindowModal": { + "addOverrideAnnotation": [ + "cn.nukkit.form.window.FormWindowModal#getResponse()", + "cn.nukkit.form.window.FormWindowModal#setResponse(String)" + ] + }, + "cn.nukkit.plugin.PluginBase": { + "addOverrideAnnotation": [ + "cn.nukkit.plugin.PluginBase#getDataFolder()", + "cn.nukkit.plugin.PluginBase#getDescription()", + "cn.nukkit.plugin.PluginBase#getLogger()", + "cn.nukkit.plugin.PluginBase#isDisabled()", + "cn.nukkit.plugin.PluginBase#isEnabled()", + "cn.nukkit.plugin.PluginBase#onDisable()", + "cn.nukkit.plugin.PluginBase#onEnable()", + "cn.nukkit.plugin.PluginBase#onLoad()" + ] + }, + "cn.nukkit.block.BlockMelon": { + "addOverrideAnnotation": [ + "cn.nukkit.block.BlockMelon#getHardness()", + "cn.nukkit.block.BlockMelon#getName()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockMelon#breaksWhenMoved()", + "cn.nukkit.block.BlockMelon#sticksToPiston()" + ] + }, + "cn.nukkit.block.BlockSmoothStone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSmoothStone#getToolTier()" + ] + }, + "cn.nukkit.block.BlockDoubleSlabBlackstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoubleSlabBlackstone#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabBlackstone#getSlabName()" + ] + }, + "cn.nukkit.Nukkit": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.Nukkit#GIT_COMMIT" + ] + }, + "cn.nukkit.block.BlockLeaves2": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockLeaves2#getType()", + "cn.nukkit.block.BlockLeaves2#setType(WoodType)" + ] + }, + "cn.nukkit.block.BlockOreRedstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockOreRedstone#getToolTier()" + ] + }, + "cn.nukkit.block.BlockWoodStrippedBirch": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWoodStrippedBirch#getWoodType()" + ] + }, + "cn.nukkit.blockentity.BlockEntitySmoker": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockentity.BlockEntitySmoker#getBurningBlockId()", + "cn.nukkit.blockentity.BlockEntitySmoker#getClientName()", + "cn.nukkit.blockentity.BlockEntitySmoker#getFurnaceName()", + "cn.nukkit.blockentity.BlockEntitySmoker#getIdleBlockId()", + "cn.nukkit.blockentity.BlockEntitySmoker#getInventoryType()", + "cn.nukkit.blockentity.BlockEntitySmoker#getSpeedMultiplier()", + "cn.nukkit.blockentity.BlockEntitySmoker#matchRecipe(Item)" + ] + }, + "cn.nukkit.inventory.ShapedRecipe": { + "addOverrideAnnotation": [ + "cn.nukkit.inventory.ShapedRecipe#matchItems(List, List, int)" + ] + }, + "cn.nukkit.entity.data.ShortEntityData": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.data.ShortEntityData#getData()", + "cn.nukkit.entity.data.ShortEntityData#setData(Integer)" + ] + }, + "cn.nukkit.blockentity.BlockEntitySpawnable": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockentity.BlockEntitySpawnable#getSpawnPacket()", + "cn.nukkit.blockentity.BlockEntitySpawnable#getSpawnPacket(CompoundTag)" + ] + }, + "cn.nukkit.block.BlockStairsSandstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsSandstone#getToolTier()" + ] + }, + "cn.nukkit.block.BlockStairsPrismarine": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsPrismarine#getToolTier()" + ] + }, + "cn.nukkit.item.ItemPotionLingering": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemPotionLingering#correctNBT(CompoundTag)", + "cn.nukkit.item.ItemPotionLingering#getProjectileEntityType()", + "cn.nukkit.item.ItemPotionLingering#getThrowForce()" + ] + }, + "cn.nukkit.event.inventory.PlayerTypingAnvilInventoryEvent": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.event.inventory.PlayerTypingAnvilInventoryEvent#toString()" + ] + }, + "cn.nukkit.block.BlockHyphaeCrimson": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockHyphaeCrimson#getStrippedState()" + ] + }, + "cn.nukkit.item.ItemChorusFruitPopped": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemChorusFruitPopped" + ] + }, + "cn.nukkit.level.biome.impl.iceplains.IcePlainsBiome": { + "addOverrideAnnotation": [ + "cn.nukkit.level.biome.impl.iceplains.IcePlainsBiome#getName()" + ] + }, + "cn.nukkit.block.BlockWoodStrippedSpruce": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWoodStrippedSpruce#getWoodType()" + ] + }, + "cn.nukkit.block.BlockCoralFanHang2": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCoralFanHang2#getType()" + ] + }, + "cn.nukkit.item.ItemHelmetNetherite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemHelmetNetherite#isLavaResistant()" + ] + }, + "cn.nukkit.entity.mob.EntityDrowned": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityDrowned#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityDrowned#isUndead()" + ] + }, + "cn.nukkit.entity.item.EntityPrimedTNT": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.item.EntityPrimedTNT#canCollideWith(Entity)", + "cn.nukkit.entity.item.EntityPrimedTNT#explode()", + "cn.nukkit.entity.item.EntityPrimedTNT#initEntity()", + "cn.nukkit.entity.item.EntityPrimedTNT#onUpdate(int)", + "cn.nukkit.entity.item.EntityPrimedTNT#saveNBT()" + ] + }, + "cn.nukkit.block.BlockCoralFanHang3": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCoralFanHang3#getType()" + ] + }, + "cn.nukkit.block.BlockAllow": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockAllow#canBePulled()" + ] + }, + "cn.nukkit.entity.projectile.EntityArrow": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.projectile.EntityArrow#addHitEffect()" + ] + }, + "cn.nukkit.block.BlockDoubleSlabRedSandstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoubleSlabRedSandstone#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabRedSandstone#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabRedSandstone#getToolTier()" + ] + }, + "cn.nukkit.block.BlockDoubleSlabStone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoubleSlabStone#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabStone#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabStone#getToolTier()" + ] + }, + "cn.nukkit.entity.data.LongEntityData": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.data.LongEntityData#getData()", + "cn.nukkit.entity.data.LongEntityData#setData(Long)" + ] + }, + "cn.nukkit.block.BlockJungleSignPost": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockJungleSignPost#getWallId()" + ] + }, + "cn.nukkit.item.RuntimeItemMapping": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.RuntimeItemMapping#getItemDataPalette()", + "cn.nukkit.item.RuntimeItemMapping#getLegacyFullId(int)", + "cn.nukkit.item.RuntimeItemMapping#getNetworkFullId(Item)" + ] + }, + "cn.nukkit.item.enchantment.sideeffect.SideEffect": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.enchantment.sideeffect.SideEffect#EMPTY_ARRAY" + ] + }, + "cn.nukkit.api.RemovedFromNewRakNet": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.api.RemovedFromNewRakNet#value()" + ] + }, + "cn.nukkit.item.ItemID": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemID#BANNER_PATTERN", + "cn.nukkit.item.ItemID#SUSPICIOUS_STEW" + ] + }, + "cn.nukkit.block.BlockCocoa": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCocoa#breaksWhenMoved()", + "cn.nukkit.block.BlockCocoa#getGrowthStage()", + "cn.nukkit.block.BlockCocoa#grow()", + "cn.nukkit.block.BlockCocoa#sticksToPiston()" + ] + }, + "cn.nukkit.block.BlockStone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStone#getToolTier()" + ] + }, + "cn.nukkit.block.BlockEnderChest": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockEnderChest#canBePulled()", + "cn.nukkit.block.BlockEnderChest#getBlockEntity()", + "cn.nukkit.block.BlockEnderChest#getToolTier()" + ] + }, + "cn.nukkit.block.BlockStemWarped": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStemWarped#getStrippedState()" + ] + }, + "cn.nukkit.blockentity.BlockEntityPistonArm": { + "addOverrideAnnotation": [ + "cn.nukkit.blockentity.BlockEntityPistonArm#getSpawnCompound()", + "cn.nukkit.blockentity.BlockEntityPistonArm#isBlockEntityValid()", + "cn.nukkit.blockentity.BlockEntityPistonArm#saveNBT()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockentity.BlockEntityPistonArm#MOVE_STEP", + "cn.nukkit.blockentity.BlockEntityPistonArm#state", + "cn.nukkit.blockentity.BlockEntityPistonArm#newState", + "cn.nukkit.blockentity.BlockEntityPistonArm#attachedBlocks", + "cn.nukkit.blockentity.BlockEntityPistonArm#move(boolean, List)" + ] + }, + "cn.nukkit.item.ItemIngotNetherite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemIngotNetherite#isLavaResistant()" + ] + }, + "cn.nukkit.blockproperty.BooleanBlockProperty": { + "addOverrideAnnotation": [ + "cn.nukkit.blockproperty.BooleanBlockProperty#getDefaultValue()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockproperty.BooleanBlockProperty#getIntValue(int, int)", + "cn.nukkit.blockproperty.BooleanBlockProperty#getIntValueForMeta(int)", + "cn.nukkit.blockproperty.BooleanBlockProperty#getMetaForValue(Boolean)", + "cn.nukkit.blockproperty.BooleanBlockProperty#getPersistenceValueForMeta(int)", + "cn.nukkit.blockproperty.BooleanBlockProperty#getValue(int, int)", + "cn.nukkit.blockproperty.BooleanBlockProperty#getValue(long, int)", + "cn.nukkit.blockproperty.BooleanBlockProperty#getValueClass()", + "cn.nukkit.blockproperty.BooleanBlockProperty#getValueForMeta(int)", + "cn.nukkit.blockproperty.BooleanBlockProperty#setValue(int, int, Boolean)", + "cn.nukkit.blockproperty.BooleanBlockProperty#setValue(long, int, Boolean)", + "cn.nukkit.blockproperty.BooleanBlockProperty#validateMetaDirectly(int)" + ] + }, + "cn.nukkit.entity.data.Skin": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.data.Skin#canEqual(Object)" + ] + }, + "cn.nukkit.block.BlockDiamond": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDiamond#getToolTier()" + ] + }, + "cn.nukkit.block.BlockWallBase": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWallBase#canConnect(Block)" + ] + }, + "cn.nukkit.entity.mob.EntityZombiePigman": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityZombiePigman#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityZombiePigman#isUndead()" + ] + }, + "cn.nukkit.api.PowerNukkitOnly": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.api.PowerNukkitOnly#value()" + ] + }, + "cn.nukkit.level.biome.type.CoveredBiome": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.biome.type.CoveredBiome#synchronizeCover", + "cn.nukkit.level.biome.type.CoveredBiome#getCoverBlock()", + "cn.nukkit.level.biome.type.CoveredBiome#getGroundBlock(int)", + "cn.nukkit.level.biome.type.CoveredBiome#getGroundDepth(int)", + "cn.nukkit.level.biome.type.CoveredBiome#getGroundMeta(int)", + "cn.nukkit.level.biome.type.CoveredBiome#getStoneBlock()", + "cn.nukkit.level.biome.type.CoveredBiome#getSurfaceBlock(int)", + "cn.nukkit.level.biome.type.CoveredBiome#getSurfaceDepth(int)", + "cn.nukkit.level.biome.type.CoveredBiome#getSurfaceMeta(int)", + "cn.nukkit.level.biome.type.CoveredBiome#preCover(int, int)" + ] + }, + "cn.nukkit.block.BlockDropper": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDropper#dispense()", + "cn.nukkit.block.BlockDropper#getDispenseBehavior(Item)", + "cn.nukkit.block.BlockDropper#getToolTier()" + ] + }, + "cn.nukkit.block.BlockWoodStrippedDarkOak": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWoodStrippedDarkOak#getWoodType()" + ] + }, + "cn.nukkit.block.BlockDarkOakSignPost": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDarkOakSignPost#getWallId()" + ] + }, + "cn.nukkit.entity.mob.EntityZombie": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityZombie#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityZombie#isUndead()" + ] + }, + "cn.nukkit.block.BlockFlower": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockFlower#canPlantOn(Block)" + ] + }, + "cn.nukkit.block.BlockStairsGranite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsGranite#getToolTier()" + ] + }, + "cn.nukkit.item.RuntimeItems": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.RuntimeItems#getData(int)", + "cn.nukkit.item.RuntimeItems#getFullId(int, int)", + "cn.nukkit.item.RuntimeItems#getId(int)", + "cn.nukkit.item.RuntimeItems#getNetworkId(int)", + "cn.nukkit.item.RuntimeItems#getRuntimeMapping()", + "cn.nukkit.item.RuntimeItems#hasData(int)" + ] + }, + "cn.nukkit.item.ItemChestplateNetherite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemChestplateNetherite#isLavaResistant()" + ] + }, + "cn.nukkit.block.BlockStructureVoid": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStructureVoid#canBePulled()" + ] + }, + "cn.nukkit.block.BlockStairsDarkPrismarine": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsDarkPrismarine#getToolTier()" + ] + }, + "cn.nukkit.block.BlockMushroom": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockMushroom#getToolTier()" + ] + }, + "cn.nukkit.block.BlockWallBanner": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWallBanner#getDirection()", + "cn.nukkit.block.BlockWallBanner#setDirection(CompassRoseDirection)" + ] + }, + "cn.nukkit.dispenser.BoatDispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.BoatDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + ] + }, + "cn.nukkit.block.BlockDoubleSlabWood": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoubleSlabWood#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabWood#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabWood#isCorrectTool(Item)" + ] + }, + "cn.nukkit.dispenser.BucketDispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.BucketDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + ] + }, + "cn.nukkit.event.entity.ProjectileLaunchEvent": { + "addOverrideAnnotation": [ + "cn.nukkit.event.entity.ProjectileLaunchEvent#getEntity()" + ] + }, + "cn.nukkit.block.BlockDoubleSlabBlackstonePolished": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoubleSlabBlackstonePolished#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabBlackstonePolished#getSlabName()" + ] + }, + "cn.nukkit.block.BlockOreIron": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockOreIron#getToolTier()" + ] + }, + "cn.nukkit.block.BlockFungusWarped": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockFungusWarped#canGrowOn(Block)", + "cn.nukkit.block.BlockFungusWarped#grow(Player)" + ] + }, + "cn.nukkit.block.BlockDoubleSlabStone3": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoubleSlabStone3#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabStone3#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabStone3#getToolTier()" + ] + }, + "cn.nukkit.block.BlockDoubleSlabStone4": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoubleSlabStone4#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabStone4#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabStone4#getToolTier()" + ] + }, + "cn.nukkit.block.BlockCactus": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCactus#breaksWhenMoved()", + "cn.nukkit.block.BlockCactus#sticksToPiston()" + ] + }, + "cn.nukkit.inventory.transaction.action.CreativeInventoryAction": { + "addOverrideAnnotation": [ + "cn.nukkit.inventory.transaction.action.CreativeInventoryAction#execute(Player)", + "cn.nukkit.inventory.transaction.action.CreativeInventoryAction#isValid(Player)", + "cn.nukkit.inventory.transaction.action.CreativeInventoryAction#onExecuteFail(Player)", + "cn.nukkit.inventory.transaction.action.CreativeInventoryAction#onExecuteSuccess(Player)" + ] + }, + "cn.nukkit.dispenser.DispenseBehaviorRegister": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.DispenseBehaviorRegister#init()" + ] + }, + "cn.nukkit.block.BlockBricksStone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBricksStone#getToolTier()" + ] + }, + "cn.nukkit.network.protocol.PlayerActionPacket": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.network.protocol.PlayerActionPacket#ACTION_INTERACT_BLOCK" + ] + }, + "cn.nukkit.block.BlockDaylightDetector": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDaylightDetector#isInverted()", + "cn.nukkit.block.BlockDaylightDetector#updatePower()" + ] + }, + "cn.nukkit.block.BlockTerracottaGlazed": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockTerracottaGlazed#getToolTier()" + ] + }, + "cn.nukkit.form.window.FormWindowCustom": { + "addOverrideAnnotation": [ + "cn.nukkit.form.window.FormWindowCustom#getResponse()", + "cn.nukkit.form.window.FormWindowCustom#setResponse(String)" + ] + }, + "cn.nukkit.entity.mob.EntityPiglinBrute": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityPiglinBrute#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.level.format.updater.GroupedUpdaters": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.updater.GroupedUpdaters#update(int, int, int, int, int, int, BlockState)" + ] + }, + "cn.nukkit.block.BlockOreDiamond": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockOreDiamond#getToolTier()" + ] + }, + "cn.nukkit.block.BlockThin": { + "addOverrideAnnotation": [ + "cn.nukkit.block.BlockThin#recalculateBoundingBox()" + ] + }, + "cn.nukkit.block.BlockCrimsonWallSign": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCrimsonWallSign#getPostId()" + ] + }, + "cn.nukkit.block.BlockEndPortalFrame": { + "addOverrideAnnotation": [ + "cn.nukkit.block.BlockEndPortalFrame#getComparatorInputOverride()", + "cn.nukkit.block.BlockEndPortalFrame#hasComparatorInputOverride()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockEndPortalFrame#canBePulled()" + ] + }, + "cn.nukkit.block.BlockDoubleSlabBrickBlackstonePolished": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoubleSlabBrickBlackstonePolished#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabBrickBlackstonePolished#getSlabName()" + ] + }, + "cn.nukkit.positiontracking.PositionTrackingService": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.positiontracking.PositionTrackingService#close()", + "cn.nukkit.positiontracking.PositionTrackingService#finalize()" + ] + }, + "cn.nukkit.blockentity.BlockEntity": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockentity.BlockEntity#createBlockEntity(String, Position, CompoundTag, Object[])", + "cn.nukkit.blockentity.BlockEntity#createBlockEntity(String, Position, Object[])", + "cn.nukkit.blockentity.BlockEntity#getLevelBlockEntity()", + "cn.nukkit.blockentity.BlockEntity#onBreak(boolean)" + ] + }, + "cn.nukkit.level.format.anvil.Anvil": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.anvil.Anvil#getMaximumLayer()" + ] + }, + "cn.nukkit.block.BlockEndPortal": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockEndPortal#getCollisionBoundingBox()" + ] + }, + "cn.nukkit.block.BlockSlabRedSandstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSlabRedSandstone#PRISMARINE", + "cn.nukkit.block.BlockSlabRedSandstone#PRISMARINE_BRICKS", + "cn.nukkit.block.BlockSlabRedSandstone#DARK_PRISMARINE", + "cn.nukkit.block.BlockSlabRedSandstone#MOSSY_COBBLESTONE", + "cn.nukkit.block.BlockSlabRedSandstone#SMOOTH_SANDSTONE", + "cn.nukkit.block.BlockSlabRedSandstone#RED_NETHER_BRICK", + "cn.nukkit.block.BlockSlabRedSandstone#getSlabName()", + "cn.nukkit.block.BlockSlabRedSandstone#getToolTier()", + "cn.nukkit.block.BlockSlabRedSandstone#isSameType(BlockSlab)" + ] + }, + "cn.nukkit.item.enchantment.damage.EnchantmentDamage": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.enchantment.damage.EnchantmentDamage#isItemAcceptable(Item)" + ] + }, + "cn.nukkit.level.format.anvil.util.BlockStorage": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.anvil.util.BlockStorage#hasBlockDataExtras()", + "cn.nukkit.level.format.anvil.util.BlockStorage#hasBlockIdExtras()", + "cn.nukkit.level.format.anvil.util.BlockStorage#hasBlockIds()" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.anvil.util.BlockStorage#copy()" + ] + }, + "cn.nukkit.level.generator.populator.impl.PopulatorGroundCover": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.generator.populator.impl.PopulatorGroundCover#STONE" + ] + }, + "cn.nukkit.entity.mob.EntityZoglin": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityZoglin#isBaby()", + "cn.nukkit.entity.mob.EntityZoglin#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityZoglin#isUndead()" + ] + }, + "cn.nukkit.command.data.CommandEnum": { + "addOverrideAnnotation": [ + "cn.nukkit.command.data.CommandEnum#hashCode()" + ] + }, + "cn.nukkit.form.window.FormWindowSimple": { + "addOverrideAnnotation": [ + "cn.nukkit.form.window.FormWindowSimple#getResponse()", + "cn.nukkit.form.window.FormWindowSimple#setResponse(String)" + ] + }, + "cn.nukkit.inventory.PlayerUIInventory": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.PlayerUIInventory#onSlotChangeBase(int, Item, boolean)" + ] + }, + "cn.nukkit.block.BlockLoom": { + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockLoom#getBlockFace()" + ] + }, + "cn.nukkit.level.Level": { + "addOverrideAnnotation": [ + "cn.nukkit.level.Level#setBlockStateAt(int, int, int, int, BlockState)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.Level#addLevelEvent(int, int)", + "cn.nukkit.level.Level#addLevelEvent(int, int, Vector3)", + "cn.nukkit.level.Level#addLevelEvent(int, int, float, float, float)", + "cn.nukkit.level.Level#getBlock(Vector3, int)", + "cn.nukkit.level.Level#getBlock(Vector3, int, boolean)", + "cn.nukkit.level.Level#getBlock(int, int, int, int)", + "cn.nukkit.level.Level#getBlock(int, int, int, int, boolean)", + "cn.nukkit.level.Level#getBlockDataAt(int, int, int, int)", + "cn.nukkit.level.Level#getBlockEntity(BlockVector3)", + "cn.nukkit.level.Level#getBlockIdAt(int, int, int, int)", + "cn.nukkit.level.Level#getBlockStateAt(int, int, int, int)", + "cn.nukkit.level.Level#getCelestialAngle(float)", + "cn.nukkit.level.Level#getCollisionBlocks(AxisAlignedBB, boolean, boolean)", + "cn.nukkit.level.Level#getCollisionBlocks(AxisAlignedBB, boolean, boolean, Predicate)", + "cn.nukkit.level.Level#getFullBlock(int, int, int, int)", + "cn.nukkit.level.Level#getFuzzySpawnLocation()", + "cn.nukkit.level.Level#getHighestAdjacentBlockSkyLight(int, int, int)", + "cn.nukkit.level.Level#getRainStrength(float)", + "cn.nukkit.level.Level#getThunderStrength(float)", + "cn.nukkit.level.Level#setBlock(Vector3, int, Block)", + "cn.nukkit.level.Level#setBlock(Vector3, int, Block, boolean)", + "cn.nukkit.level.Level#setBlock(Vector3, int, Block, boolean, boolean)", + "cn.nukkit.level.Level#setBlock(int, int, int, int, Block, boolean, boolean)", + "cn.nukkit.level.Level#setBlockAtLayer(int, int, int, int, int, int)", + "cn.nukkit.level.Level#setBlockDataAt(int, int, int, int, int)", + "cn.nukkit.level.Level#setBlockFullIdAt(int, int, int, int, int)", + "cn.nukkit.level.Level#setBlockIdAt(int, int, int, int, int)", + "cn.nukkit.level.Level#useBreakOn(Vector3, BlockFace, Item, Player, boolean, boolean)", + "cn.nukkit.level.Level#useBreakOn(Vector3, int, BlockFace, Item, Player, boolean, boolean)" + ] + }, + "cn.nukkit.block.BlockStairsAndesitePolished": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsAndesitePolished#getToolTier()" + ] + }, + "cn.nukkit.block.BlockStairsStone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsStone#getToolTier()" + ] + }, + "cn.nukkit.potion.Potion": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.potion.Potion#SLOWNESS_IV" + ] + }, + "cn.nukkit.block.BlockOreEmerald": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockOreEmerald#getToolTier()" + ] + }, + "cn.nukkit.level.generator.Nether": { + "addOverrideAnnotation": [ + "cn.nukkit.level.generator.Nether#getSpawn()" + ] + }, + "cn.nukkit.block.BlockBirchSignPost": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBirchSignPost#getWallId()" + ] + }, + "cn.nukkit.block.BlockWood": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWood#getStrippedState()" + ] + }, + "cn.nukkit.inventory.CraftingManager": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.CraftingManager#blastFurnaceRecipes", + "cn.nukkit.inventory.CraftingManager#smokerRecipes", + "cn.nukkit.inventory.CraftingManager#campfireRecipes", + "cn.nukkit.inventory.CraftingManager#stonecutterRecipes", + "cn.nukkit.inventory.CraftingManager#cartographyRecipes", + "cn.nukkit.inventory.CraftingManager#matchBlastFurnaceRecipe(Item)", + "cn.nukkit.inventory.CraftingManager#matchCampfireRecipe(Item)", + "cn.nukkit.inventory.CraftingManager#matchCartographyRecipe(List, Item, List)", + "cn.nukkit.inventory.CraftingManager#matchSmokerRecipe(Item)", + "cn.nukkit.inventory.CraftingManager#matchStonecutterRecipe(Item)", + "cn.nukkit.inventory.CraftingManager#registerBlastFurnaceRecipe(BlastFurnaceRecipe)", + "cn.nukkit.inventory.CraftingManager#registerCampfireRecipe(CampfireRecipe)", + "cn.nukkit.inventory.CraftingManager#registerCartographyRecipe(CartographyRecipe)", + "cn.nukkit.inventory.CraftingManager#registerSmokerRecipe(SmokerRecipe)", + "cn.nukkit.inventory.CraftingManager#registerStonecutterRecipe(StonecutterRecipe)" + ] + }, + "cn.nukkit.block.BlockBirchWallSign": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBirchWallSign#getPostId()" + ] + }, + "cn.nukkit.dispenser.SpawnEggDispenseBehavior": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.dispenser.SpawnEggDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + ] + }, + "cn.nukkit.inventory.StonecutterRecipe": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.StonecutterRecipe#toString()" + ] + }, + "cn.nukkit.entity.mob.EntitySkeleton": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntitySkeleton#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntitySkeleton#isUndead()" + ] + }, + "cn.nukkit.entity.item.EntityBoat": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.item.EntityBoat#updatePassengers()" + ] + }, + "cn.nukkit.block.BlockOreQuartz": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockOreQuartz#getToolTier()" + ] + }, + "cn.nukkit.block.BlockDragonEgg": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDragonEgg#breaksWhenMoved()", + "cn.nukkit.block.BlockDragonEgg#sticksToPiston()" + ] + }, + "cn.nukkit.block.BlockCrimsonSignPost": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCrimsonSignPost#getWallId()" + ] + }, + "cn.nukkit.item.ItemPickaxeNetherite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemPickaxeNetherite#isLavaResistant()" + ] + }, + "cn.nukkit.entity.Entity": { + "addOverrideAnnotation": [ + "cn.nukkit.entity.Entity#getDirectionVector()", + "cn.nukkit.entity.Entity#getLocation()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.Entity#canBePushed()", + "cn.nukkit.entity.Entity#isTouchingWater()", + "cn.nukkit.entity.Entity#isUndead()", + "cn.nukkit.entity.Entity#onPushByPiston(BlockEntityPistonArm)" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.Entity#DATA_HAS_NPC_COMPONENT", + "cn.nukkit.entity.Entity#DATA_BASE_RUNTIME_ID", + "cn.nukkit.entity.Entity#DATA_UPDATE_PROPERTIES", + "cn.nukkit.entity.Entity#DATA_FLAG_PLAYING_DEAD" + ] + }, + "cn.nukkit.item.PNAlphaItemID": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.PNAlphaItemID#getBadItemId()", + "cn.nukkit.item.PNAlphaItemID#getMinecraftItemId()" + ] + }, + "cn.nukkit.utils.HumanStringComparator": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.utils.HumanStringComparator#compare(String, String)" + ] + }, + "cn.nukkit.block.BlockStairsMossyStoneBrick": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsMossyStoneBrick#getToolTier()" + ] + }, + "cn.nukkit.block.BlockEndStone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockEndStone#getToolTier()" + ] + }, + "cn.nukkit.scheduler.AsyncTask": { + "addOverrideAnnotation": [ + "cn.nukkit.scheduler.AsyncTask#run()" + ] + }, + "cn.nukkit.blockstate.ByteMutableBlockState": { + "addOverrideAnnotation": [ + "cn.nukkit.blockstate.ByteMutableBlockState#canEqual(Object)" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.blockstate.ByteMutableBlockState#canEqual(Object)", + "cn.nukkit.blockstate.ByteMutableBlockState#copy()", + "cn.nukkit.blockstate.ByteMutableBlockState#equals(Object)", + "cn.nukkit.blockstate.ByteMutableBlockState#getBigDamage()", + "cn.nukkit.blockstate.ByteMutableBlockState#getBooleanValue(String)", + "cn.nukkit.blockstate.ByteMutableBlockState#getCurrentState()", + "cn.nukkit.blockstate.ByteMutableBlockState#getDataStorage()", + "cn.nukkit.blockstate.ByteMutableBlockState#getIntValue(String)", + "cn.nukkit.blockstate.ByteMutableBlockState#getLegacyDamage()", + "cn.nukkit.blockstate.ByteMutableBlockState#getPersistenceValue(String)", + "cn.nukkit.blockstate.ByteMutableBlockState#getPropertyValue(String)", + "cn.nukkit.blockstate.ByteMutableBlockState#hashCode()", + "cn.nukkit.blockstate.ByteMutableBlockState#toString()", + "cn.nukkit.blockstate.ByteMutableBlockState#validate()" + ] + }, + "cn.nukkit.block.BlockWitherRose": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWitherRose#canPlantOn(Block)" + ] + }, + "cn.nukkit.item.ItemShovelNetherite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemShovelNetherite#isLavaResistant()" + ] + }, + "cn.nukkit.block.BlockCarpet": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCarpet#getProperties()" + ] + }, + "co.aikar.timings.TimingData": { + "addOverrideAnnotation": [ + "co.aikar.timings.TimingData#clone()" + ] + }, + "cn.nukkit.entity.mob.EntityWitch": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityWitch#isPreventingSleep(Player)" + ] + }, + "cn.nukkit.level.format.updater.StemUpdater": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.updater.StemUpdater#update(int, int, int, int, int, int, BlockState)" + ] + }, + "cn.nukkit.block.BlockDeadBush": { + "addOverrideAnnotation": [ + "cn.nukkit.block.BlockDeadBush#getColor()" + ] + }, + "cn.nukkit.block.BlockChorusFlower": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockChorusFlower#breaksWhenMoved()", + "cn.nukkit.block.BlockChorusFlower#sticksToPiston()" + ] + }, + "cn.nukkit.block.BlockWater": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWater#usesWaterLogging()" + ] + }, + "cn.nukkit.block.BlockBrewingStand": { + "addOverrideAnnotation": [ + "cn.nukkit.block.BlockBrewingStand#hasComparatorInputOverride()" + ], + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockBrewingStand#getToolTier()" + ] + }, + "cn.nukkit.block.BlockSlabBlackstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSlabBlackstone#getSlabName()", + "cn.nukkit.block.BlockSlabBlackstone#isSameType(BlockSlab)" + ] + }, + "cn.nukkit.block.BlockTrapdoorIron": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockTrapdoorIron#getToolTier()" + ] + }, + "cn.nukkit.item.ItemAxeNetherite": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemAxeNetherite#isLavaResistant()" + ] + }, + "cn.nukkit.level.generator.object.tree.ObjectJungleBigTree": { + "addOverrideAnnotation": [ + "cn.nukkit.level.generator.object.tree.ObjectJungleBigTree#generate(ChunkManager, NukkitRandom, Vector3)" + ] + }, + "cn.nukkit.block.BlockJungleWallSign": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockJungleWallSign#getPostId()" + ] + }, + "cn.nukkit.level.generator.object.tree.ObjectSavannaTree": { + "addOverrideAnnotation": [ + "cn.nukkit.level.generator.object.tree.ObjectSavannaTree#generate(ChunkManager, NukkitRandom, Vector3)" + ] + } +} \ No newline at end of file diff --git a/pom.xml b/pom.xml index 0945b8d03e4..116c9736ffc 100644 --- a/pom.xml +++ b/pom.xml @@ -77,6 +77,7 @@ UTF-8 UTF-8 3.9.0 + 2.23.0.Final true true PowerNukkit_PowerNukkit @@ -302,6 +303,37 @@ jsr305 3.0.2 + + org.jboss.forge.roaster + roaster-api + ${roaster.version} + test + + + org.jboss.forge.roaster + roaster-jdt + ${roaster.version} + test + + + fr.inria.gforge.spoon + spoon-core + + 10.0.0 + test + + + commons-io + commons-io + + + + + commons-io + commons-io + 2.11.0 + test + diff --git a/src/main/java/cn/nukkit/OfflinePlayer.java b/src/main/java/cn/nukkit/OfflinePlayer.java index 66c8c9d39cb..d462396e624 100644 --- a/src/main/java/cn/nukkit/OfflinePlayer.java +++ b/src/main/java/cn/nukkit/OfflinePlayer.java @@ -88,6 +88,7 @@ public UUID getUniqueId() { return null; } + @Override public Server getServer() { return server; } @@ -158,18 +159,22 @@ public boolean hasPlayedBefore() { return this.namedTag != null; } + @Override public void setMetadata(String metadataKey, MetadataValue newMetadataValue) { this.server.getPlayerMetadata().setMetadata(this, metadataKey, newMetadataValue); } + @Override public List getMetadata(String metadataKey) { return this.server.getPlayerMetadata().getMetadata(this, metadataKey); } + @Override public boolean hasMetadata(String metadataKey) { return this.server.getPlayerMetadata().hasMetadata(this, metadataKey); } + @Override public void removeMetadata(String metadataKey, Plugin owningPlugin) { this.server.getPlayerMetadata().removeMetadata(this, metadataKey, owningPlugin); } diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index ca48c81d451..83206d113a0 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -704,6 +704,7 @@ protected void initEntity() { this.addDefaultWindows(); } + @Override public boolean isPlayer() { return true; } diff --git a/src/main/java/cn/nukkit/Server.java b/src/main/java/cn/nukkit/Server.java index 819e44977e6..0636e3bc014 100644 --- a/src/main/java/cn/nukkit/Server.java +++ b/src/main/java/cn/nukkit/Server.java @@ -224,18 +224,21 @@ public class Server { private PositionTrackingService positionTrackingService; private final Map levels = new HashMap() { + @Override public Level put(Integer key, Level value) { Level result = super.put(key, value); levelArray = levels.values().toArray(Level.EMPTY_ARRAY); return result; } + @Override public boolean remove(Object key, Object value) { boolean result = super.remove(key, value); levelArray = levels.values().toArray(Level.EMPTY_ARRAY); return result; } + @Override public Level remove(Object key) { Level result = super.remove(key); levelArray = levels.values().toArray(Level.EMPTY_ARRAY); diff --git a/src/main/java/cn/nukkit/api/NewRakNetOnly.java b/src/main/java/cn/nukkit/api/NewRakNetOnly.java deleted file mode 100644 index 1760ead8527..00000000000 --- a/src/main/java/cn/nukkit/api/NewRakNetOnly.java +++ /dev/null @@ -1,21 +0,0 @@ -package cn.nukkit.api; - -import java.lang.annotation.*; - -/** - * Indicates that the annotated element is only available in PowerNukkit - * or in Cloudburst Nukkit environment with the "new-raknet" branch merged - * and will cause issues when used in a normal Nukkit server without the "new-raknet" patches and features. - * - * @author joserobjr - */ -@PowerNukkitOnly -@Since("1.4.0.0-PN") -@Retention(RetentionPolicy.CLASS) -@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.ANNOTATION_TYPE, ElementType.TYPE, - ElementType.FIELD, ElementType.PACKAGE}) -@Inherited -@Documented -public @interface NewRakNetOnly { - String value() default ""; -} diff --git a/src/main/java/cn/nukkit/api/RemovedFromNewRakNet.java b/src/main/java/cn/nukkit/api/RemovedFromNewRakNet.java deleted file mode 100644 index 51b444f39b1..00000000000 --- a/src/main/java/cn/nukkit/api/RemovedFromNewRakNet.java +++ /dev/null @@ -1,21 +0,0 @@ -package cn.nukkit.api; - -import java.lang.annotation.*; - -/** - * Indicates that the annotated element was removed in the popular Cloudburst new-raknet branch, using it - * will work in PowerNukkit and normal Nukkit but will cause issues in that branch or when the branch gets - * merged. - * - * @author joserobjr - */ -@PowerNukkitOnly -@Since("1.4.0.0-PN") -@Retention(RetentionPolicy.CLASS) -@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.ANNOTATION_TYPE, ElementType.TYPE, - ElementType.FIELD, ElementType.PACKAGE}) -@Inherited -@Documented -public @interface RemovedFromNewRakNet { - String value() default ""; -} diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index a2d4ce5d1c5..84cfd0c675b 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -1042,6 +1042,7 @@ public boolean isSolid(BlockFace side) { } // https://minecraft.gamepedia.com/Opacity#Lighting + @PowerNukkitOnly public boolean diffusesSkyLight() { return false; } @@ -1131,6 +1132,7 @@ public int getItemId() { * @return full id * @deprecated PowerNukkit: The meta is limited to 32 bits */ + @Override @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.3.0.0-PN") public int getFullId() { @@ -1140,6 +1142,7 @@ public int getFullId() { /** * The properties that fully describe all possible and valid states that this block can have. */ + @Override @Nonnull @PowerNukkitOnly @Since("1.4.0.0-PN") @@ -1147,6 +1150,7 @@ public BlockProperties getProperties() { return CommonBlockProperties.EMPTY_PROPERTIES; } + @Override @PowerNukkitOnly @Since("1.4.0.0-PN") @Nonnull @@ -1154,6 +1158,7 @@ public final BlockState getCurrentState() { return mutableState == null? BlockState.of(getId()) : mutableState.getCurrentState(); } + @Override @PowerNukkitOnly @Since("1.3.0.0-PN") public final int getRuntimeId() { @@ -1464,10 +1469,12 @@ public boolean canBeBrokenWith(Item item) { return this.getHardness() != -1; } + @Override public Block getSide(BlockFace face) { return getSideAtLayer(layer, face); } + @Override public Block getSide(BlockFace face, int step) { return getSideAtLayer(layer, face, step); } @@ -1495,10 +1502,12 @@ public Block getSideAtLayer(int layer, BlockFace face, int step) { return block; } + @Override public Block up() { return up(1); } + @Override public Block up(int step) { return getSide(BlockFace.UP, step); } @@ -1507,10 +1516,12 @@ public Block up(int step, int layer) { return getSideAtLayer(layer, BlockFace.UP, step); } + @Override public Block down() { return down(1); } + @Override public Block down(int step) { return getSide(BlockFace.DOWN, step); } @@ -1519,10 +1530,12 @@ public Block down(int step, int layer) { return getSideAtLayer(layer, BlockFace.DOWN, step); } + @Override public Block north() { return north(1); } + @Override public Block north(int step) { return getSide(BlockFace.NORTH, step); } @@ -1531,10 +1544,12 @@ public Block north(int step, int layer) { return getSideAtLayer(layer, BlockFace.NORTH, step); } + @Override public Block south() { return south(1); } + @Override public Block south(int step) { return getSide(BlockFace.SOUTH, step); } @@ -1543,10 +1558,12 @@ public Block south(int step, int layer) { return getSideAtLayer(layer, BlockFace.SOUTH, step); } + @Override public Block east() { return east(1); } + @Override public Block east(int step) { return getSide(BlockFace.EAST, step); } @@ -1555,10 +1572,12 @@ public Block east(int step, int layer) { return getSideAtLayer(layer, BlockFace.EAST, step); } + @Override public Block west() { return west(1); } + @Override public Block west(int step) { return getSide(BlockFace.WEST, step); } @@ -1632,6 +1651,7 @@ protected AxisAlignedBB recalculateCollisionBoundingBox() { return getBoundingBox(); } + @Override public MovingObjectPosition calculateIntercept(Vector3 pos1, Vector3 pos2) { AxisAlignedBB bb = this.getBoundingBox(); if (bb == null) { @@ -1747,6 +1767,7 @@ public void removeMetadata(String metadataKey, Plugin owningPlugin) throws Excep } } + @Override public Block clone() { Block clone = (Block) super.clone(); clone.mutableState = mutableState != null? mutableState.copy() : null; diff --git a/src/main/java/cn/nukkit/block/BlockAcaciaSignPost.java b/src/main/java/cn/nukkit/block/BlockAcaciaSignPost.java index 1c5a4496410..a9c76533ea7 100644 --- a/src/main/java/cn/nukkit/block/BlockAcaciaSignPost.java +++ b/src/main/java/cn/nukkit/block/BlockAcaciaSignPost.java @@ -20,6 +20,7 @@ public int getId() { return ACACIA_STANDING_SIGN; } + @PowerNukkitOnly @Override public int getWallId() { return ACACIA_WALL_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockAcaciaWallSign.java b/src/main/java/cn/nukkit/block/BlockAcaciaWallSign.java index 8f5adbb76e5..ab31156ae2a 100644 --- a/src/main/java/cn/nukkit/block/BlockAcaciaWallSign.java +++ b/src/main/java/cn/nukkit/block/BlockAcaciaWallSign.java @@ -21,6 +21,7 @@ public int getId() { return ACACIA_WALL_SIGN; } + @PowerNukkitOnly @Override protected int getPostId() { return ACACIA_STANDING_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockBirchSignPost.java b/src/main/java/cn/nukkit/block/BlockBirchSignPost.java index 3270188efa9..e101f970cf5 100644 --- a/src/main/java/cn/nukkit/block/BlockBirchSignPost.java +++ b/src/main/java/cn/nukkit/block/BlockBirchSignPost.java @@ -20,6 +20,7 @@ public int getId() { return BIRCH_STANDING_SIGN; } + @PowerNukkitOnly @Override public int getWallId() { return BIRCH_WALL_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockBirchWallSign.java b/src/main/java/cn/nukkit/block/BlockBirchWallSign.java index cbd144a70f0..6d810eac8f0 100644 --- a/src/main/java/cn/nukkit/block/BlockBirchWallSign.java +++ b/src/main/java/cn/nukkit/block/BlockBirchWallSign.java @@ -21,6 +21,7 @@ public int getId() { return BIRCH_WALL_SIGN; } + @PowerNukkitOnly @Override protected int getPostId() { return BIRCH_STANDING_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockBrewingStand.java b/src/main/java/cn/nukkit/block/BlockBrewingStand.java index 3dc6d9f6dc8..f2eaf20d559 100644 --- a/src/main/java/cn/nukkit/block/BlockBrewingStand.java +++ b/src/main/java/cn/nukkit/block/BlockBrewingStand.java @@ -171,6 +171,7 @@ public BlockColor getColor() { return BlockColor.IRON_BLOCK_COLOR; } + @Override public boolean hasComparatorInputOverride() { return true; } diff --git a/src/main/java/cn/nukkit/block/BlockCake.java b/src/main/java/cn/nukkit/block/BlockCake.java index 858153bd5ad..ae7dc59fd43 100644 --- a/src/main/java/cn/nukkit/block/BlockCake.java +++ b/src/main/java/cn/nukkit/block/BlockCake.java @@ -158,10 +158,12 @@ public BlockColor getColor() { return BlockColor.AIR_BLOCK_COLOR; } + @Override public int getComparatorInputOverride() { return (7 - this.getDamage()) * 2; } + @Override public boolean hasComparatorInputOverride() { return true; } diff --git a/src/main/java/cn/nukkit/block/BlockCauldron.java b/src/main/java/cn/nukkit/block/BlockCauldron.java index 88ef1e1e983..50ef36aa189 100644 --- a/src/main/java/cn/nukkit/block/BlockCauldron.java +++ b/src/main/java/cn/nukkit/block/BlockCauldron.java @@ -79,6 +79,7 @@ public Class getBlockEntityClass() { return BlockEntityCauldron.class; } + @Override public String getName() { return "Cauldron Block"; } diff --git a/src/main/java/cn/nukkit/block/BlockCobweb.java b/src/main/java/cn/nukkit/block/BlockCobweb.java index 0436a0ec2d4..30d9bfade2e 100644 --- a/src/main/java/cn/nukkit/block/BlockCobweb.java +++ b/src/main/java/cn/nukkit/block/BlockCobweb.java @@ -94,6 +94,7 @@ public boolean canHarvestWithHand() { return false; } + @PowerNukkitOnly @Override public boolean diffusesSkyLight() { return true; diff --git a/src/main/java/cn/nukkit/block/BlockCrimsonSignPost.java b/src/main/java/cn/nukkit/block/BlockCrimsonSignPost.java index 0e545bec9f8..1a4980c1aae 100644 --- a/src/main/java/cn/nukkit/block/BlockCrimsonSignPost.java +++ b/src/main/java/cn/nukkit/block/BlockCrimsonSignPost.java @@ -25,6 +25,7 @@ public int getId() { return CRIMSON_STANDING_SIGN; } + @PowerNukkitOnly @Override public int getWallId() { return CRIMSON_WALL_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockCrimsonWallSign.java b/src/main/java/cn/nukkit/block/BlockCrimsonWallSign.java index 11b249d76b0..77863d4f149 100644 --- a/src/main/java/cn/nukkit/block/BlockCrimsonWallSign.java +++ b/src/main/java/cn/nukkit/block/BlockCrimsonWallSign.java @@ -25,6 +25,7 @@ public int getId() { return CRIMSON_WALL_SIGN; } + @PowerNukkitOnly @Override protected int getPostId() { return CRIMSON_STANDING_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockDarkOakSignPost.java b/src/main/java/cn/nukkit/block/BlockDarkOakSignPost.java index 4769a702844..46aaa962731 100644 --- a/src/main/java/cn/nukkit/block/BlockDarkOakSignPost.java +++ b/src/main/java/cn/nukkit/block/BlockDarkOakSignPost.java @@ -20,6 +20,7 @@ public int getId() { return DARKOAK_STANDING_SIGN; } + @PowerNukkitOnly @Override public int getWallId() { return DARKOAK_WALL_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockDarkOakWallSign.java b/src/main/java/cn/nukkit/block/BlockDarkOakWallSign.java index 444a361d6a2..52488c080fd 100644 --- a/src/main/java/cn/nukkit/block/BlockDarkOakWallSign.java +++ b/src/main/java/cn/nukkit/block/BlockDarkOakWallSign.java @@ -21,6 +21,7 @@ public int getId() { return DARKOAK_WALL_SIGN; } + @PowerNukkitOnly @Override protected int getPostId() { return DARKOAK_STANDING_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockDeadBush.java b/src/main/java/cn/nukkit/block/BlockDeadBush.java index 3e07a154688..d11e27d6142 100644 --- a/src/main/java/cn/nukkit/block/BlockDeadBush.java +++ b/src/main/java/cn/nukkit/block/BlockDeadBush.java @@ -107,6 +107,7 @@ public Item[] getDrops(Item item) { } } + @Override public BlockColor getColor() { return BlockColor.FOLIAGE_BLOCK_COLOR; } diff --git a/src/main/java/cn/nukkit/block/BlockEndPortalFrame.java b/src/main/java/cn/nukkit/block/BlockEndPortalFrame.java index 2b2cd8ec0b7..634eb2dd640 100644 --- a/src/main/java/cn/nukkit/block/BlockEndPortalFrame.java +++ b/src/main/java/cn/nukkit/block/BlockEndPortalFrame.java @@ -104,10 +104,12 @@ public boolean canBePulled() { return false; } + @Override public boolean hasComparatorInputOverride() { return true; } + @Override public int getComparatorInputOverride() { return (getDamage() & 4) != 0 ? 15 : 0; } diff --git a/src/main/java/cn/nukkit/block/BlockFallable.java b/src/main/java/cn/nukkit/block/BlockFallable.java index cb5bba4ef1d..971f733e829 100644 --- a/src/main/java/cn/nukkit/block/BlockFallable.java +++ b/src/main/java/cn/nukkit/block/BlockFallable.java @@ -15,6 +15,7 @@ public abstract class BlockFallable extends BlockSolid { protected BlockFallable() { } + @Override public int onUpdate(int type) { if (type == Level.BLOCK_UPDATE_NORMAL) { Block down = this.down(); diff --git a/src/main/java/cn/nukkit/block/BlockJungleSignPost.java b/src/main/java/cn/nukkit/block/BlockJungleSignPost.java index ac8ed1c440a..f59c49bd549 100644 --- a/src/main/java/cn/nukkit/block/BlockJungleSignPost.java +++ b/src/main/java/cn/nukkit/block/BlockJungleSignPost.java @@ -20,6 +20,7 @@ public int getId() { return JUNGLE_STANDING_SIGN; } + @PowerNukkitOnly @Override public int getWallId() { return JUNGLE_WALL_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockJungleWallSign.java b/src/main/java/cn/nukkit/block/BlockJungleWallSign.java index d8c988f0a49..d042b1db7b7 100644 --- a/src/main/java/cn/nukkit/block/BlockJungleWallSign.java +++ b/src/main/java/cn/nukkit/block/BlockJungleWallSign.java @@ -21,6 +21,7 @@ public int getId() { return JUNGLE_WALL_SIGN; } + @PowerNukkitOnly @Override protected int getPostId() { return JUNGLE_STANDING_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockLeaves.java b/src/main/java/cn/nukkit/block/BlockLeaves.java index edbf319f6d5..a153a593225 100644 --- a/src/main/java/cn/nukkit/block/BlockLeaves.java +++ b/src/main/java/cn/nukkit/block/BlockLeaves.java @@ -273,6 +273,7 @@ protected Item getSapling() { return Item.get(BlockID.SAPLING, getIntValue(OLD_LEAF_TYPE)); } + @PowerNukkitOnly @Override public boolean diffusesSkyLight() { return true; diff --git a/src/main/java/cn/nukkit/block/BlockLever.java b/src/main/java/cn/nukkit/block/BlockLever.java index 73e8d8fc209..a6c82de6a93 100644 --- a/src/main/java/cn/nukkit/block/BlockLever.java +++ b/src/main/java/cn/nukkit/block/BlockLever.java @@ -204,6 +204,7 @@ public int getWeakPower(BlockFace side) { return isPowerOn() ? 15 : 0; } + @Override public int getStrongPower(BlockFace side) { return !isPowerOn() ? 0 : getLeverOrientation().getFacing() == side ? 15 : 0; } @@ -242,6 +243,7 @@ public BlockFace getFacing() { return this.facing; } + @Override public String toString() { return this.name; } diff --git a/src/main/java/cn/nukkit/block/BlockMelon.java b/src/main/java/cn/nukkit/block/BlockMelon.java index 4180c4a9b7c..bd44818b9f6 100644 --- a/src/main/java/cn/nukkit/block/BlockMelon.java +++ b/src/main/java/cn/nukkit/block/BlockMelon.java @@ -23,10 +23,12 @@ public int getId() { return MELON_BLOCK; } + @Override public String getName() { return "Melon Block"; } + @Override public double getHardness() { return 1; } diff --git a/src/main/java/cn/nukkit/block/BlockRedstoneComparator.java b/src/main/java/cn/nukkit/block/BlockRedstoneComparator.java index bdb159b8c7c..0fb4c834824 100644 --- a/src/main/java/cn/nukkit/block/BlockRedstoneComparator.java +++ b/src/main/java/cn/nukkit/block/BlockRedstoneComparator.java @@ -117,6 +117,7 @@ public void updateState() { } } + @Override protected int calculateInputStrength() { int power = super.calculateInputStrength(); BlockFace face = getFacing(); @@ -135,6 +136,7 @@ protected int calculateInputStrength() { return power; } + @Override protected boolean shouldBePowered() { int input = this.calculateInputStrength(); diff --git a/src/main/java/cn/nukkit/block/BlockRedstoneDiode.java b/src/main/java/cn/nukkit/block/BlockRedstoneDiode.java index 25206a80ecc..20107a175c7 100644 --- a/src/main/java/cn/nukkit/block/BlockRedstoneDiode.java +++ b/src/main/java/cn/nukkit/block/BlockRedstoneDiode.java @@ -216,10 +216,12 @@ protected int getRedstoneSignal() { return 15; } + @Override public int getStrongPower(BlockFace side) { return getWeakPower(side); } + @Override public int getWeakPower(BlockFace side) { return !this.isPowered() ? 0 : (getFacing() == side ? this.getRedstoneSignal() : 0); } diff --git a/src/main/java/cn/nukkit/block/BlockRedstoneWire.java b/src/main/java/cn/nukkit/block/BlockRedstoneWire.java index 6ff4b3f3c78..9155d4b005d 100644 --- a/src/main/java/cn/nukkit/block/BlockRedstoneWire.java +++ b/src/main/java/cn/nukkit/block/BlockRedstoneWire.java @@ -253,10 +253,12 @@ public boolean canBePlacedOn(Block support) { return support.isSolid(BlockFace.UP); } + @Override public int getStrongPower(BlockFace side) { return !this.canProvidePower ? 0 : getWeakPower(side); } + @Override public int getWeakPower(BlockFace side) { if (!this.canProvidePower) { return 0; diff --git a/src/main/java/cn/nukkit/block/BlockSignPost.java b/src/main/java/cn/nukkit/block/BlockSignPost.java index 639e8a92bca..f8a375c64c3 100644 --- a/src/main/java/cn/nukkit/block/BlockSignPost.java +++ b/src/main/java/cn/nukkit/block/BlockSignPost.java @@ -123,10 +123,12 @@ public int getWaterloggingLevel() { return 1; } + @PowerNukkitOnly protected int getPostId() { return getId(); } + @PowerNukkitOnly public int getWallId() { return WALL_SIGN; } diff --git a/src/main/java/cn/nukkit/block/BlockSpruceSignPost.java b/src/main/java/cn/nukkit/block/BlockSpruceSignPost.java index 130a92a9d56..696285ca9cb 100644 --- a/src/main/java/cn/nukkit/block/BlockSpruceSignPost.java +++ b/src/main/java/cn/nukkit/block/BlockSpruceSignPost.java @@ -20,6 +20,7 @@ public int getId() { return SPRUCE_STANDING_SIGN; } + @PowerNukkitOnly @Override public int getWallId() { return SPRUCE_WALL_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockSpruceWallSign.java b/src/main/java/cn/nukkit/block/BlockSpruceWallSign.java index 876bf06009f..bd3b8af7bfb 100644 --- a/src/main/java/cn/nukkit/block/BlockSpruceWallSign.java +++ b/src/main/java/cn/nukkit/block/BlockSpruceWallSign.java @@ -21,6 +21,7 @@ public int getId() { return SPRUCE_WALL_SIGN; } + @PowerNukkitOnly @Override protected int getPostId() { return SPRUCE_STANDING_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockStonecutterBlock.java b/src/main/java/cn/nukkit/block/BlockStonecutterBlock.java index 18500449665..4ce32f48293 100644 --- a/src/main/java/cn/nukkit/block/BlockStonecutterBlock.java +++ b/src/main/java/cn/nukkit/block/BlockStonecutterBlock.java @@ -121,6 +121,7 @@ public int getToolType() { return ItemTool.TYPE_PICKAXE; } + @PowerNukkitOnly @Override public int getToolTier() { return ItemTool.TIER_WOODEN; diff --git a/src/main/java/cn/nukkit/block/BlockThin.java b/src/main/java/cn/nukkit/block/BlockThin.java index 319edd17026..6e98a991533 100644 --- a/src/main/java/cn/nukkit/block/BlockThin.java +++ b/src/main/java/cn/nukkit/block/BlockThin.java @@ -33,6 +33,7 @@ public boolean isSolid(BlockFace side) { return false; } + @Override protected AxisAlignedBB recalculateBoundingBox() { final double offNW = 7.0 / 16.0; final double offSE = 9.0 / 16.0; diff --git a/src/main/java/cn/nukkit/block/BlockWallSign.java b/src/main/java/cn/nukkit/block/BlockWallSign.java index 0a380950010..6c31972a371 100644 --- a/src/main/java/cn/nukkit/block/BlockWallSign.java +++ b/src/main/java/cn/nukkit/block/BlockWallSign.java @@ -49,6 +49,7 @@ public int getWallId() { return getId(); } + @PowerNukkitOnly @Override protected int getPostId() { return SIGN_POST; diff --git a/src/main/java/cn/nukkit/block/BlockWarpedSignPost.java b/src/main/java/cn/nukkit/block/BlockWarpedSignPost.java index bd74d265ca1..3e4d572b16d 100644 --- a/src/main/java/cn/nukkit/block/BlockWarpedSignPost.java +++ b/src/main/java/cn/nukkit/block/BlockWarpedSignPost.java @@ -24,6 +24,7 @@ public int getId() { return WARPED_STANDING_SIGN; } + @PowerNukkitOnly @Override public int getWallId() { return WARPED_WALL_SIGN; diff --git a/src/main/java/cn/nukkit/block/BlockWarpedWallSign.java b/src/main/java/cn/nukkit/block/BlockWarpedWallSign.java index 65c612d812f..3d48cd5d185 100644 --- a/src/main/java/cn/nukkit/block/BlockWarpedWallSign.java +++ b/src/main/java/cn/nukkit/block/BlockWarpedWallSign.java @@ -25,6 +25,7 @@ public int getId() { return WARPED_WALL_SIGN; } + @PowerNukkitOnly @Override protected int getPostId() { return WARPED_STANDING_SIGN; diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityItemFrame.java b/src/main/java/cn/nukkit/blockentity/BlockEntityItemFrame.java index b2f9673dfe8..6ea17aaf5d3 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityItemFrame.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityItemFrame.java @@ -90,6 +90,7 @@ public void setItemDropChance(float chance) { this.namedTag.putFloat("ItemDropChance", chance); } + @Override public void setDirty() { this.spawnToAll(); super.setDirty(); diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java b/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java index ecdf66da1c4..5f19a2cb9c3 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java @@ -238,11 +238,13 @@ private float getExtendedProgress(float progress) { return this.extending ? progress - 1 : 1 - progress; } + @Override public boolean isBlockEntityValid() { int id = getLevelBlock().getId(); return id == BlockID.PISTON || id == BlockID.STICKY_PISTON; } + @Override public void saveNBT() { super.saveNBT(); this.namedTag.putByte("State", this.state); @@ -254,6 +256,7 @@ public void saveNBT() { this.namedTag.putInt("facing", this.facing.getIndex()); } + @Override public CompoundTag getSpawnCompound() { return new CompoundTag() .putString("id", BlockEntity.PISTON_ARM) diff --git a/src/main/java/cn/nukkit/blockproperty/BooleanBlockProperty.java b/src/main/java/cn/nukkit/blockproperty/BooleanBlockProperty.java index 8e191b55eef..7f6917b656c 100644 --- a/src/main/java/cn/nukkit/blockproperty/BooleanBlockProperty.java +++ b/src/main/java/cn/nukkit/blockproperty/BooleanBlockProperty.java @@ -145,6 +145,7 @@ public boolean getBooleanValueForMeta(int meta) { } } + @Override @PowerNukkitOnly @Since("1.4.0.0-PN") @Nonnull diff --git a/src/main/java/cn/nukkit/blockproperty/IntBlockProperty.java b/src/main/java/cn/nukkit/blockproperty/IntBlockProperty.java index 18436bd4b91..8ab6664338a 100644 --- a/src/main/java/cn/nukkit/blockproperty/IntBlockProperty.java +++ b/src/main/java/cn/nukkit/blockproperty/IntBlockProperty.java @@ -153,6 +153,7 @@ public int getMinValue() { return minValue; } + @Override @PowerNukkitOnly @Since("1.4.0.0-PN") @Nonnull diff --git a/src/main/java/cn/nukkit/blockproperty/UnsignedIntBlockProperty.java b/src/main/java/cn/nukkit/blockproperty/UnsignedIntBlockProperty.java index 64987c13e13..727197f5e44 100644 --- a/src/main/java/cn/nukkit/blockproperty/UnsignedIntBlockProperty.java +++ b/src/main/java/cn/nukkit/blockproperty/UnsignedIntBlockProperty.java @@ -161,6 +161,7 @@ public long getMinValue() { return minValue; } + @Override @Nonnull @PowerNukkitOnly @Since("1.4.0.0-PN") diff --git a/src/main/java/cn/nukkit/command/ConsoleCommandSender.java b/src/main/java/cn/nukkit/command/ConsoleCommandSender.java index f6ff12ae348..0ab510a0514 100644 --- a/src/main/java/cn/nukkit/command/ConsoleCommandSender.java +++ b/src/main/java/cn/nukkit/command/ConsoleCommandSender.java @@ -73,6 +73,7 @@ public Map getEffectivePermissions() { return this.perm.getEffectivePermissions(); } + @Override public boolean isPlayer() { return false; } diff --git a/src/main/java/cn/nukkit/command/data/CommandEnum.java b/src/main/java/cn/nukkit/command/data/CommandEnum.java index c14cf314688..ae11813cf2b 100644 --- a/src/main/java/cn/nukkit/command/data/CommandEnum.java +++ b/src/main/java/cn/nukkit/command/data/CommandEnum.java @@ -62,6 +62,7 @@ public List getValues() { return values; } + @Override public int hashCode() { return name.hashCode(); } diff --git a/src/main/java/cn/nukkit/dispenser/DefaultDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/DefaultDispenseBehavior.java index e24a39006b2..7d6ce0ef7cf 100644 --- a/src/main/java/cn/nukkit/dispenser/DefaultDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/DefaultDispenseBehavior.java @@ -1,5 +1,6 @@ package cn.nukkit.dispenser; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockDispenser; import cn.nukkit.item.Item; import cn.nukkit.math.BlockFace; @@ -16,6 +17,7 @@ public class DefaultDispenseBehavior implements DispenseBehavior { public boolean success = true; + @PowerNukkitOnly @Override public Item dispense(BlockDispenser block, BlockFace face, Item item) { Vector3 dispensePos = block.getDispensePosition(); diff --git a/src/main/java/cn/nukkit/dispenser/DispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/DispenseBehavior.java index ebb94f2c36a..04ecaa2b323 100644 --- a/src/main/java/cn/nukkit/dispenser/DispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/DispenseBehavior.java @@ -1,5 +1,6 @@ package cn.nukkit.dispenser; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockDispenser; import cn.nukkit.item.Item; import cn.nukkit.math.BlockFace; @@ -9,6 +10,7 @@ */ public interface DispenseBehavior { + @PowerNukkitOnly Item dispense(BlockDispenser block, BlockFace face, Item item); } diff --git a/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java index d698708df42..0393352346f 100644 --- a/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java @@ -1,6 +1,5 @@ package cn.nukkit.dispenser; -import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockDispenser; @@ -12,6 +11,8 @@ @PowerNukkitOnly public class DropperDispenseBehavior extends DefaultDispenseBehavior { + + @PowerNukkitOnly @Override public Item dispense(BlockDispenser block, BlockFace face, Item item) { Block target = block.getSide(face); diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 12327fac56d..2cee1a3d160 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -1714,6 +1714,7 @@ public void addMotion(double motionX, double motionY, double motionZ) { Server.broadcastPacket(this.hasSpawned.values(), pk); } + @Override public Vector3 getDirectionVector() { Vector3 vector = super.getDirectionVector(); return this.temporalVector.setComponents(vector.x, vector.y, vector.z); @@ -2104,6 +2105,7 @@ public Position getPosition() { return new Position(this.x, this.y, this.z, this.level); } + @Override @Nonnull public Location getLocation() { return new Location(this.x, this.y, this.z, this.yaw, this.pitch, this.headYaw, this.level); diff --git a/src/main/java/cn/nukkit/entity/data/ByteEntityData.java b/src/main/java/cn/nukkit/entity/data/ByteEntityData.java index 9c2e43467bb..49cad2581a0 100644 --- a/src/main/java/cn/nukkit/entity/data/ByteEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/ByteEntityData.java @@ -13,10 +13,12 @@ public ByteEntityData(int id, int data) { this.data = data; } + @Override public Integer getData() { return data; } + @Override public void setData(Integer data) { if (data == null) { this.data = 0; diff --git a/src/main/java/cn/nukkit/entity/data/FloatEntityData.java b/src/main/java/cn/nukkit/entity/data/FloatEntityData.java index 64ca25a8923..52aceeb1db1 100644 --- a/src/main/java/cn/nukkit/entity/data/FloatEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/FloatEntityData.java @@ -13,10 +13,12 @@ public FloatEntityData(int id, float data) { this.data = data; } + @Override public Float getData() { return data; } + @Override public void setData(Float data) { if (data == null) { this.data = 0; diff --git a/src/main/java/cn/nukkit/entity/data/IntEntityData.java b/src/main/java/cn/nukkit/entity/data/IntEntityData.java index 9579be81955..0cafe48ff4d 100644 --- a/src/main/java/cn/nukkit/entity/data/IntEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/IntEntityData.java @@ -13,10 +13,12 @@ public IntEntityData(int id, int data) { this.data = data; } + @Override public Integer getData() { return data; } + @Override public void setData(Integer data) { if (data == null) { this.data = 0; diff --git a/src/main/java/cn/nukkit/entity/data/LongEntityData.java b/src/main/java/cn/nukkit/entity/data/LongEntityData.java index 85b8551704d..25c636b59dc 100644 --- a/src/main/java/cn/nukkit/entity/data/LongEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/LongEntityData.java @@ -13,10 +13,12 @@ public LongEntityData(int id, long data) { this.data = data; } + @Override public Long getData() { return data; } + @Override public void setData(Long data) { this.data = data; } diff --git a/src/main/java/cn/nukkit/entity/data/ShortEntityData.java b/src/main/java/cn/nukkit/entity/data/ShortEntityData.java index 7e339a4d330..9d21779a658 100644 --- a/src/main/java/cn/nukkit/entity/data/ShortEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/ShortEntityData.java @@ -13,10 +13,12 @@ public ShortEntityData(int id, int data) { this.data = data; } + @Override public Integer getData() { return data; } + @Override public void setData(Integer data) { if (data == null) { this.data = 0; diff --git a/src/main/java/cn/nukkit/entity/data/StringEntityData.java b/src/main/java/cn/nukkit/entity/data/StringEntityData.java index 0385acdcb6d..a8a4feb88fd 100644 --- a/src/main/java/cn/nukkit/entity/data/StringEntityData.java +++ b/src/main/java/cn/nukkit/entity/data/StringEntityData.java @@ -13,10 +13,12 @@ public StringEntityData(int id, String data) { this.data = data; } + @Override public String getData() { return data; } + @Override public void setData(String data) { this.data = data; } diff --git a/src/main/java/cn/nukkit/entity/item/EntityBoat.java b/src/main/java/cn/nukkit/entity/item/EntityBoat.java index 8b5d5d05830..02afadd3207 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityBoat.java +++ b/src/main/java/cn/nukkit/entity/item/EntityBoat.java @@ -341,6 +341,7 @@ private boolean computeBuoyancy(double waterDiff) { return hasUpdated; } + @Override public void updatePassengers() { updatePassengers(false); } diff --git a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java index 73ab29b6d46..7cf4ca615b1 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java @@ -102,6 +102,7 @@ protected void initEntity() { setDataProperty(new IntEntityData(DATA_VARIANT, GlobalBlockPalette.getOrCreateRuntimeId(this.getBlock(), this.getDamage()))); } + @Override public boolean canCollideWith(Entity entity) { return blockId == BlockID.ANVIL; } diff --git a/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java b/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java index 69fc35a67d8..15a615671ab 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPrimedTNT.java @@ -80,6 +80,7 @@ public boolean attack(EntityDamageEvent source) { return source.getCause() == DamageCause.VOID && super.attack(source); } + @Override @PowerNukkitDifference(info = "Using new method to play sounds", since = "1.4.0.0-PN") protected void initEntity() { super.initEntity(); @@ -97,15 +98,18 @@ protected void initEntity() { } + @Override public boolean canCollideWith(Entity entity) { return false; } + @Override public void saveNBT() { super.saveNBT(); namedTag.putByte("Fuse", fuse); } + @Override public boolean onUpdate(int currentTick) { if (closed) { @@ -163,6 +167,7 @@ public boolean onUpdate(int currentTick) { return hasUpdate || fuse >= 0 || Math.abs(motionX) > 0.00001 || Math.abs(motionY) > 0.00001 || Math.abs(motionZ) > 0.00001; } + @Override public void explode() { EntityExplosionPrimeEvent event = new EntityExplosionPrimeEvent(this, 4); server.getPluginManager().callEvent(event); diff --git a/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java b/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java index ca125dc20c6..90a6d47404e 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java @@ -69,6 +69,7 @@ public void setPowered(boolean powered) { } } + @Override public void onStruckByLightning(Entity entity) { this.setPowered(true); } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index d5a9329de41..5be702af0a8 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -76,6 +76,7 @@ public int getResultDamage() { return NukkitMath.ceilDouble(Math.sqrt(this.motionX * this.motionX + this.motionY * this.motionY + this.motionZ * this.motionZ) * getDamage()); } + @Override public boolean attack(EntityDamageEvent source) { return source.getCause() == DamageCause.VOID && super.attack(source); } diff --git a/src/main/java/cn/nukkit/entity/weather/EntityLightning.java b/src/main/java/cn/nukkit/entity/weather/EntityLightning.java index fff53222acb..a4cd3eea757 100644 --- a/src/main/java/cn/nukkit/entity/weather/EntityLightning.java +++ b/src/main/java/cn/nukkit/entity/weather/EntityLightning.java @@ -73,10 +73,12 @@ protected void initEntity() { } } + @Override public boolean isEffect() { return this.isEffect; } + @Override public void setEffect(boolean e) { this.isEffect = e; } diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java index f2c0cb78a69..13ff1318f81 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageEvent.java @@ -9,7 +9,6 @@ import cn.nukkit.potion.Effect; import cn.nukkit.utils.EventException; import com.google.common.collect.ImmutableMap; -import lombok.var; import javax.annotation.Nonnull; import java.util.*; @@ -151,7 +150,7 @@ public void setSideEffects(@Nonnull Collection sideEffects) { @PowerNukkitOnly @Since("1.5.1.0-PN") public void addSideEffects(@Nonnull SideEffect... sideEffects) { - var safeStream = Arrays.stream(sideEffects) + Stream safeStream = Arrays.stream(sideEffects) .filter(Objects::nonNull) .map(SideEffect::clone); diff --git a/src/main/java/cn/nukkit/event/entity/ProjectileLaunchEvent.java b/src/main/java/cn/nukkit/event/entity/ProjectileLaunchEvent.java index 8b9b08c6036..7539c9d38e7 100644 --- a/src/main/java/cn/nukkit/event/entity/ProjectileLaunchEvent.java +++ b/src/main/java/cn/nukkit/event/entity/ProjectileLaunchEvent.java @@ -16,6 +16,7 @@ public ProjectileLaunchEvent(EntityProjectile entity) { this.entity = entity; } + @Override public EntityProjectile getEntity() { return (EntityProjectile) this.entity; } diff --git a/src/main/java/cn/nukkit/form/window/FormWindowCustom.java b/src/main/java/cn/nukkit/form/window/FormWindowCustom.java index 1a0880329f6..6c7ca263a65 100644 --- a/src/main/java/cn/nukkit/form/window/FormWindowCustom.java +++ b/src/main/java/cn/nukkit/form/window/FormWindowCustom.java @@ -65,10 +65,12 @@ public void setIcon(ElementButtonImageData icon) { this.icon = icon; } + @Override public FormResponseCustom getResponse() { return response; } + @Override public void setResponse(String data) { if (data.equals("null")) { this.closed = true; diff --git a/src/main/java/cn/nukkit/form/window/FormWindowModal.java b/src/main/java/cn/nukkit/form/window/FormWindowModal.java index 9eb7e95c2ce..7aaa4aa7a72 100644 --- a/src/main/java/cn/nukkit/form/window/FormWindowModal.java +++ b/src/main/java/cn/nukkit/form/window/FormWindowModal.java @@ -51,10 +51,12 @@ public void setButton2(String button2) { this.button2 = button2; } + @Override public FormResponseModal getResponse() { return response; } + @Override public void setResponse(String data) { if (data.equals("null")) { closed = true; diff --git a/src/main/java/cn/nukkit/form/window/FormWindowSimple.java b/src/main/java/cn/nukkit/form/window/FormWindowSimple.java index 0b7ff67ef2e..7c5ca39b7aa 100644 --- a/src/main/java/cn/nukkit/form/window/FormWindowSimple.java +++ b/src/main/java/cn/nukkit/form/window/FormWindowSimple.java @@ -49,10 +49,12 @@ public void addButton(ElementButton button) { this.buttons.add(button); } + @Override public FormResponseSimple getResponse() { return response; } + @Override public void setResponse(String data) { if (data.equals("null")) { this.closed = true; diff --git a/src/main/java/cn/nukkit/inventory/AnvilInventory.java b/src/main/java/cn/nukkit/inventory/AnvilInventory.java index 9d7418f8fd0..c25f1c9c67a 100644 --- a/src/main/java/cn/nukkit/inventory/AnvilInventory.java +++ b/src/main/java/cn/nukkit/inventory/AnvilInventory.java @@ -4,7 +4,6 @@ import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; -import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; @@ -59,6 +58,7 @@ public void onSlotChange(int index, Item before, boolean send) { @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", by = "PowerNukkit", reason = "Experimenting the new implementation by Nukkit") + @PowerNukkitOnly public void updateResult() { Item target = getFirstItem(); Item sacrifice = getSecondItem(); diff --git a/src/main/java/cn/nukkit/inventory/ShapedRecipe.java b/src/main/java/cn/nukkit/inventory/ShapedRecipe.java index 0241d57364f..04cf82ce2ac 100644 --- a/src/main/java/cn/nukkit/inventory/ShapedRecipe.java +++ b/src/main/java/cn/nukkit/inventory/ShapedRecipe.java @@ -212,6 +212,7 @@ public int getPriority() { return this.priority; } + @Override public boolean matchItems(List inputList, List extraOutputList, int multiplier) { List haveInputs = new ArrayList<>(); for (Item item : inputList) { diff --git a/src/main/java/cn/nukkit/inventory/ShapelessRecipe.java b/src/main/java/cn/nukkit/inventory/ShapelessRecipe.java index b9b2eeec1a3..489e04ab321 100644 --- a/src/main/java/cn/nukkit/inventory/ShapelessRecipe.java +++ b/src/main/java/cn/nukkit/inventory/ShapelessRecipe.java @@ -128,6 +128,7 @@ public int getPriority() { return this.priority; } + @Override public boolean matchItems(List inputList, List extraOutputList, int multiplier) { List haveInputs = new ArrayList<>(); for (Item item : inputList) { diff --git a/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java b/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java index b18d4783c0a..984214b6710 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java @@ -98,6 +98,7 @@ public Recipe getRecipe() { return recipe; } + @Override public boolean canExecute() { CraftingManager craftingManager = source.getServer().getCraftingManager(); Inventory inventory; @@ -171,6 +172,7 @@ public boolean canExecute() { return this.recipe != null && super.canExecute(); } + @Override protected boolean callExecuteEvent() { CraftItemEvent ev; @@ -178,11 +180,13 @@ protected boolean callExecuteEvent() { return !ev.isCancelled(); } + @Override @PowerNukkitDifference(since = "1.4.0.0-PN", info = "No longer closes the inventory") protected void sendInventories() { super.sendInventories(); } + @Override public boolean execute() { if (super.execute()) { switch (this.primaryOutput.getId()) { diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/CraftingTakeResultAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/CraftingTakeResultAction.java index 0a4f7f78e1e..a0d0c186158 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/CraftingTakeResultAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/CraftingTakeResultAction.java @@ -16,6 +16,7 @@ public CraftingTakeResultAction(Item sourceItem, Item targetItem) { super(sourceItem, targetItem); } + @Override public void onAddToTransaction(InventoryTransaction transaction) { if (transaction instanceof CraftingTransaction) { ((CraftingTransaction) transaction).setPrimaryOutput(this.getSourceItem()); diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/CreativeInventoryAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/CreativeInventoryAction.java index 595f6465efc..c9122aa8971 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/CreativeInventoryAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/CreativeInventoryAction.java @@ -30,6 +30,7 @@ public CreativeInventoryAction(Item source, Item target, int action) { * @param source player * @return valid */ + @Override public boolean isValid(Player source) { return source.isCreative() && (this.actionType == TYPE_DELETE_ITEM || Item.getCreativeItemIndex(this.sourceItem) != -1); @@ -50,14 +51,17 @@ public int getActionType() { * @param source playere * @return successfully executed */ + @Override public boolean execute(Player source) { return true; } + @Override public void onExecuteSuccess(Player source) { } + @Override public void onExecuteFail(Player source) { } diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/DropItemAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/DropItemAction.java index 0beaeec6b20..9b61237387a 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/DropItemAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/DropItemAction.java @@ -19,6 +19,7 @@ public DropItemAction(Item source, Item target) { * Verifies that the source item of a drop-item action must be air. This is not strictly necessary, just a sanity * check. */ + @Override public boolean isValid(Player source) { return this.sourceItem.isNull(); } @@ -33,14 +34,17 @@ public boolean onPreExecute(Player source) { /** * Drops the target item in front of the player. */ + @Override public boolean execute(Player source) { return source.dropItem(this.targetItem); } + @Override public void onExecuteSuccess(Player source) { } + @Override public void onExecuteFail(Player source) { } diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/SlotChangeAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/SlotChangeAction.java index 15ed52a0f87..d730248c740 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/SlotChangeAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/SlotChangeAction.java @@ -48,6 +48,7 @@ public int getSlot() { * @param source player * @return valid */ + @Override public boolean isValid(Player source) { Item check = inventory.getItem(this.inventorySlot); @@ -60,6 +61,7 @@ public boolean isValid(Player source) { * @param source player * @return successfully executed */ + @Override public boolean execute(Player source) { return this.inventory.setItem(this.inventorySlot, this.targetItem, false); } @@ -69,6 +71,7 @@ public boolean execute(Player source) { * * @param source player */ + @Override public void onExecuteSuccess(Player source) { Set viewers = new HashSet<>(this.inventory.getViewers()); viewers.remove(source); @@ -81,6 +84,7 @@ public void onExecuteSuccess(Player source) { * * @param source player */ + @Override public void onExecuteFail(Player source) { this.inventory.sendSlot(this.inventorySlot, source); } diff --git a/src/main/java/cn/nukkit/item/ItemBlock.java b/src/main/java/cn/nukkit/item/ItemBlock.java index d771cfc6cfd..0934c337fde 100644 --- a/src/main/java/cn/nukkit/item/ItemBlock.java +++ b/src/main/java/cn/nukkit/item/ItemBlock.java @@ -24,6 +24,7 @@ public ItemBlock(Block block, Integer meta, int count) { this.block = block; } + @Override public void setDamage(Integer meta) { int blockMeta; if (meta != null) { @@ -65,6 +66,7 @@ public ItemBlock clone() { return block; } + @Override public Block getBlock() { return this.block; } diff --git a/src/main/java/cn/nukkit/item/ProjectileItem.java b/src/main/java/cn/nukkit/item/ProjectileItem.java index 7c903fa35ab..5c528b50794 100644 --- a/src/main/java/cn/nukkit/item/ProjectileItem.java +++ b/src/main/java/cn/nukkit/item/ProjectileItem.java @@ -25,6 +25,7 @@ public ProjectileItem(int id, Integer meta, int count, String name) { abstract public float getThrowForce(); + @Override public boolean onClickAir(Player player, Vector3 directionVector) { CompoundTag nbt = new CompoundTag() .putList(new ListTag("Pos") diff --git a/src/main/java/cn/nukkit/item/randomitem/ConstantItemSelector.java b/src/main/java/cn/nukkit/item/randomitem/ConstantItemSelector.java index 608c07b8a30..cf33851bea5 100644 --- a/src/main/java/cn/nukkit/item/randomitem/ConstantItemSelector.java +++ b/src/main/java/cn/nukkit/item/randomitem/ConstantItemSelector.java @@ -31,6 +31,7 @@ public Item getItem() { return item; } + @Override public Object select() { return getItem(); } diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 0e263270429..d8152acbfb1 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -2795,6 +2795,7 @@ public synchronized boolean setBlockAtLayer(int x, int y, int z, int layer, int return setBlockStateAt(x, y, z, layer, BlockState.of(id, data)); } + @Override @PowerNukkitOnly @Since("1.4.0.0-PN") public synchronized boolean setBlockStateAt(int x, int y, int z, int layer, BlockState state) { diff --git a/src/main/java/cn/nukkit/level/Position.java b/src/main/java/cn/nukkit/level/Position.java index a51d9a0218b..43018cb6e12 100644 --- a/src/main/java/cn/nukkit/level/Position.java +++ b/src/main/java/cn/nukkit/level/Position.java @@ -74,10 +74,12 @@ public boolean setWeak() { return false; } + @Override public Position getSide(BlockFace face) { return this.getSide(face, 1); } + @Override public Position getSide(BlockFace face, int step) { return Position.fromObject(super.getSide(face, step), getValidLevel()); } diff --git a/src/main/java/cn/nukkit/level/biome/impl/beach/ColdBeachBiome.java b/src/main/java/cn/nukkit/level/biome/impl/beach/ColdBeachBiome.java index b3202b7c771..d27432679e2 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/beach/ColdBeachBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/beach/ColdBeachBiome.java @@ -1,6 +1,5 @@ package cn.nukkit.level.biome.impl.beach; -import cn.nukkit.api.RemovedFromNewRakNet; import cn.nukkit.api.Since; import cn.nukkit.level.biome.type.SandyBiome; import cn.nukkit.level.generator.populator.impl.WaterIcePopulator; @@ -16,7 +15,6 @@ public ColdBeachBiome() { @Since("1.4.0.0-PN") @Override - @RemovedFromNewRakNet public int getCoverBlock() { if (useNewRakNetCover()) { return getCoverId(0,0) >> 4; diff --git a/src/main/java/cn/nukkit/level/biome/impl/extremehills/ExtremeHillsMBiome.java b/src/main/java/cn/nukkit/level/biome/impl/extremehills/ExtremeHillsMBiome.java index ea0a863c759..5a12def909d 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/extremehills/ExtremeHillsMBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/extremehills/ExtremeHillsMBiome.java @@ -1,6 +1,5 @@ package cn.nukkit.level.biome.impl.extremehills; -import cn.nukkit.api.NewRakNetOnly; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.blockstate.BlockState; @@ -42,13 +41,11 @@ public BlockState getSurfaceState(int x, int y, int z) { return gravelNoise.noise2D(x, z, true) < -0.75f ? STATE_GRAVEL : STATE_GRASS; } - @NewRakNetOnly @Override public int getSurfaceDepth(int x, int y, int z) { return gravelNoise.noise2D(x, z, true) < -0.75f ? 4 : 1; } - @NewRakNetOnly @Override public int getGroundDepth(int x, int y, int z) { return gravelNoise.noise2D(x, z, true) < -0.75f ? 0 : 4; diff --git a/src/main/java/cn/nukkit/level/biome/impl/extremehills/StoneBeachBiome.java b/src/main/java/cn/nukkit/level/biome/impl/extremehills/StoneBeachBiome.java index 92ac0db5b66..4d0bee1094f 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/extremehills/StoneBeachBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/extremehills/StoneBeachBiome.java @@ -1,6 +1,5 @@ package cn.nukkit.level.biome.impl.extremehills; -import cn.nukkit.api.RemovedFromNewRakNet; import cn.nukkit.api.Since; import cn.nukkit.level.biome.type.CoveredBiome; @@ -17,7 +16,6 @@ public StoneBeachBiome() { this.setHeightVariation(0.8f); } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getSurfaceDepth(int y) { @@ -27,7 +25,6 @@ public int getSurfaceDepth(int y) { return 0; } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getSurfaceBlock(int y) { @@ -37,7 +34,6 @@ public int getSurfaceBlock(int y) { return 0; } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getGroundDepth(int y) { @@ -47,7 +43,6 @@ public int getGroundDepth(int y) { return 0; } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getGroundBlock(int y) { diff --git a/src/main/java/cn/nukkit/level/biome/impl/iceplains/IcePlainsBiome.java b/src/main/java/cn/nukkit/level/biome/impl/iceplains/IcePlainsBiome.java index 8235b7341e8..f1f76b28ae2 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/iceplains/IcePlainsBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/iceplains/IcePlainsBiome.java @@ -23,6 +23,7 @@ public IcePlainsBiome() { this.setHeightVariation(0.05f); } + @Override public String getName() { return "Ice Plains"; } diff --git a/src/main/java/cn/nukkit/level/biome/impl/iceplains/IcePlainsSpikesBiome.java b/src/main/java/cn/nukkit/level/biome/impl/iceplains/IcePlainsSpikesBiome.java index 929213b8b51..2c32591dbd7 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/iceplains/IcePlainsSpikesBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/iceplains/IcePlainsSpikesBiome.java @@ -1,6 +1,5 @@ package cn.nukkit.level.biome.impl.iceplains; -import cn.nukkit.api.RemovedFromNewRakNet; import cn.nukkit.api.Since; import cn.nukkit.level.ChunkManager; import cn.nukkit.level.format.FullChunk; @@ -19,7 +18,6 @@ public IcePlainsSpikesBiome() { this.addPopulator(iceSpikes); } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getSurfaceBlock(int y) { @@ -29,6 +27,7 @@ public int getSurfaceBlock(int y) { return SNOW_BLOCK; } + @Override public String getName() { return "Ice Plains Spikes"; } diff --git a/src/main/java/cn/nukkit/level/biome/impl/mesa/MesaBiome.java b/src/main/java/cn/nukkit/level/biome/impl/mesa/MesaBiome.java index b1f68b79863..29e03c9b4a2 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/mesa/MesaBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/mesa/MesaBiome.java @@ -1,6 +1,5 @@ package cn.nukkit.level.biome.impl.mesa; -import cn.nukkit.api.NewRakNetOnly; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.block.BlockSand; @@ -86,7 +85,6 @@ public void setMoundHeight(int height) { this.moundHeight = height; } - @NewRakNetOnly @Override public int getSurfaceDepth(int x, int y, int z) { return y < (71 + Math.round((redSandNoise.noise2D(x, z, true) + 1) * 1.5f)) ? 3 : y - 66; @@ -104,7 +102,6 @@ public BlockState getSurfaceState(int x, int y, int z) { } } - @NewRakNetOnly @Override public int getGroundDepth(int x, int y, int z) { return y < (71 + Math.round((redSandNoise.noise2D(x, z, true) + 1) * 1.5f)) ? 2 : 0; diff --git a/src/main/java/cn/nukkit/level/biome/impl/mesa/MesaPlateauFBiome.java b/src/main/java/cn/nukkit/level/biome/impl/mesa/MesaPlateauFBiome.java index d1bd18906d1..ba6aa9c9162 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/mesa/MesaPlateauFBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/mesa/MesaPlateauFBiome.java @@ -1,6 +1,5 @@ package cn.nukkit.level.biome.impl.mesa; -import cn.nukkit.api.RemovedFromNewRakNet; import cn.nukkit.api.Since; import cn.nukkit.block.BlockSapling; import cn.nukkit.level.generator.populator.impl.PopulatorTree; @@ -20,7 +19,6 @@ public MesaPlateauFBiome() { @Since("1.4.0.0-PN") @Override - @RemovedFromNewRakNet public int getCoverBlock() { if (useNewRakNetCover()) { return getCoverId(0,0) >> 4; diff --git a/src/main/java/cn/nukkit/level/biome/impl/mushroom/MushroomIslandBiome.java b/src/main/java/cn/nukkit/level/biome/impl/mushroom/MushroomIslandBiome.java index 165b71767ad..cf6f0944bb1 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/mushroom/MushroomIslandBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/mushroom/MushroomIslandBiome.java @@ -1,6 +1,5 @@ package cn.nukkit.level.biome.impl.mushroom; -import cn.nukkit.api.RemovedFromNewRakNet; import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.level.biome.type.GrassyBiome; @@ -21,7 +20,6 @@ public String getName() { return "Mushroom Island"; } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getSurfaceBlock(int y) { diff --git a/src/main/java/cn/nukkit/level/biome/impl/ocean/OceanBiome.java b/src/main/java/cn/nukkit/level/biome/impl/ocean/OceanBiome.java index 5cddc60c691..a8cea54b36a 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/ocean/OceanBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/ocean/OceanBiome.java @@ -1,6 +1,6 @@ package cn.nukkit.level.biome.impl.ocean; -import cn.nukkit.api.RemovedFromNewRakNet; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.level.biome.type.WateryBiome; @@ -19,7 +19,7 @@ public String getName() { return "Ocean"; } - @RemovedFromNewRakNet + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getGroundBlock(int y) { diff --git a/src/main/java/cn/nukkit/level/biome/impl/taiga/ColdTaigaBiome.java b/src/main/java/cn/nukkit/level/biome/impl/taiga/ColdTaigaBiome.java index 41c79c8eb6e..3cccabd3fc0 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/taiga/ColdTaigaBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/taiga/ColdTaigaBiome.java @@ -1,6 +1,5 @@ package cn.nukkit.level.biome.impl.taiga; -import cn.nukkit.api.RemovedFromNewRakNet; import cn.nukkit.api.Since; import cn.nukkit.level.generator.populator.impl.WaterIcePopulator; @@ -25,7 +24,6 @@ public String getName() { @Since("1.4.0.0-PN") @Override - @RemovedFromNewRakNet public int getCoverBlock() { if (useNewRakNetCover()) { return getCoverId(0,0) >> 4; diff --git a/src/main/java/cn/nukkit/level/biome/type/CoveredBiome.java b/src/main/java/cn/nukkit/level/biome/type/CoveredBiome.java index 5dc7815e02c..a610be8a986 100644 --- a/src/main/java/cn/nukkit/level/biome/type/CoveredBiome.java +++ b/src/main/java/cn/nukkit/level/biome/type/CoveredBiome.java @@ -42,7 +42,6 @@ public abstract class CoveredBiome extends Biome { @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Exposed lock object and removed from new-raknet and not used by PowerNukkit") @Since("1.4.0.0-PN") - @RemovedFromNewRakNet public final Object synchronizeCover = new Object(); /** @@ -50,7 +49,6 @@ public abstract class CoveredBiome extends Biome { * * @return cover block */ - @NewRakNetOnly public int getCoverId(int x, int z) { useNewRakNetCover = false; return getCoverBlock() << 4; @@ -63,7 +61,6 @@ public int getCoverId(int x, int z) { * * @implNote Removed from new-raknet branch */ - @RemovedFromNewRakNet @Since("1.4.0.0-PN") public int getCoverBlock() { if (useNewRakNetCover()) { @@ -92,7 +89,6 @@ public BlockState getCoverState(int x, int z) { } } - @NewRakNetOnly public int getSurfaceDepth(int x, int y, int z) { useNewRakNetSurfaceDepth = false; return getSurfaceDepth(y); @@ -109,7 +105,6 @@ public int getSurfaceDepth(int x, int y, int z) { * * @implNote Removed from new-raknet branch */ - @RemovedFromNewRakNet @Since("1.4.0.0-PN") public int getSurfaceDepth(int y) { if (useNewRakNetSurfaceDepth()) { @@ -119,7 +114,6 @@ public int getSurfaceDepth(int y) { } } - @NewRakNetOnly public int getSurfaceId(int x, int y, int z) { useNewRakNetSurface = false; return getSurfaceBlock(y) << 4 | (getSurfaceMeta(y) & 0xF); @@ -133,7 +127,6 @@ public int getSurfaceId(int x, int y, int z) { * * @implNote Removed from new-raknet branch */ - @RemovedFromNewRakNet @Since("1.4.0.0-PN") public int getSurfaceBlock(int y) { if (useNewRakNetSurface()) { @@ -152,7 +145,6 @@ public int getSurfaceBlock(int y) { * * @implNote Removed from new-raknet branch */ - @RemovedFromNewRakNet @Since("1.4.0.0-PN") public int getSurfaceMeta(int y) { if (useNewRakNetSurface()) { @@ -175,7 +167,6 @@ public BlockState getSurfaceState(int x, int y, int z) { } } - @NewRakNetOnly public int getGroundDepth(int x, int y, int z) { useNewRakNetGroundDepth = false; return getGroundDepth(y); @@ -191,7 +182,6 @@ public int getGroundDepth(int x, int y, int z) { * * @implNote Removed from new-raknet branch */ - @RemovedFromNewRakNet @Since("1.4.0.0-PN") public int getGroundDepth(int y) { if (useNewRakNetGroundDepth()) { @@ -201,7 +191,6 @@ public int getGroundDepth(int y) { } } - @NewRakNetOnly public int getGroundId(int x, int y, int z) { useNewRakNetGroundBlock = false; return getGroundBlock(y) << 4 | (getGroundMeta(y) & 0xF); @@ -215,7 +204,7 @@ public int getGroundId(int x, int y, int z) { * * @implNote Removed from new-raknet branch */ - @RemovedFromNewRakNet + @PowerNukkitOnly @Since("1.4.0.0-PN") public int getGroundBlock(int y) { if (useNewRakNetGround()) { @@ -232,7 +221,6 @@ public int getGroundBlock(int y) { * * @implNote Removed from new-raknet branch */ - @RemovedFromNewRakNet @Since("1.4.0.0-PN") public int getGroundMeta(int y) { if (useNewRakNetGround()) { @@ -262,7 +250,6 @@ public BlockState getGroundState(int x, int y, int z) { * * @implNote Removed from new-raknet branch */ - @RemovedFromNewRakNet @Since("1.4.0.0-PN") public int getStoneBlock() { return STONE; @@ -279,13 +266,11 @@ public int getStoneBlock() { * * @implNote Removed from new-raknet branch */ - @RemovedFromNewRakNet @Since("1.4.0.0-PN") public void preCover(int x, int z) { } - @NewRakNetOnly public void doCover(int x, int z, @Nonnull FullChunk chunk) { final int fullX = (chunk.getX() << 4) | x; final int fullZ = (chunk.getZ() << 4) | z; diff --git a/src/main/java/cn/nukkit/level/biome/type/GrassyBiome.java b/src/main/java/cn/nukkit/level/biome/type/GrassyBiome.java index 0bf0222a392..209f874c864 100644 --- a/src/main/java/cn/nukkit/level/biome/type/GrassyBiome.java +++ b/src/main/java/cn/nukkit/level/biome/type/GrassyBiome.java @@ -1,6 +1,5 @@ package cn.nukkit.level.biome.type; -import cn.nukkit.api.RemovedFromNewRakNet; import cn.nukkit.api.Since; import cn.nukkit.block.BlockDoublePlant; import cn.nukkit.level.generator.populator.impl.PopulatorDoublePlant; @@ -20,7 +19,6 @@ public GrassyBiome() { this.addPopulator(tallGrass); } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getSurfaceBlock(int y) { @@ -30,7 +28,6 @@ public int getSurfaceBlock(int y) { return GRASS; } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getGroundBlock(int y) { diff --git a/src/main/java/cn/nukkit/level/biome/type/SandyBiome.java b/src/main/java/cn/nukkit/level/biome/type/SandyBiome.java index af1c20bc6cb..94e4f744003 100644 --- a/src/main/java/cn/nukkit/level/biome/type/SandyBiome.java +++ b/src/main/java/cn/nukkit/level/biome/type/SandyBiome.java @@ -1,13 +1,11 @@ package cn.nukkit.level.biome.type; -import cn.nukkit.api.RemovedFromNewRakNet; import cn.nukkit.api.Since; /** * @author MagicDroidX (Nukkit Project) */ public abstract class SandyBiome extends CoveredBiome { - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getSurfaceDepth(int y) { @@ -17,7 +15,6 @@ public int getSurfaceDepth(int y) { return 3; } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getSurfaceBlock(int y) { @@ -27,7 +24,6 @@ public int getSurfaceBlock(int y) { return SAND; } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getGroundDepth(int y) { @@ -37,7 +33,6 @@ public int getGroundDepth(int y) { return 2; } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getGroundBlock(int y) { diff --git a/src/main/java/cn/nukkit/level/biome/type/SnowyBiome.java b/src/main/java/cn/nukkit/level/biome/type/SnowyBiome.java index 039e4a2e9d1..c64d3fc50ad 100644 --- a/src/main/java/cn/nukkit/level/biome/type/SnowyBiome.java +++ b/src/main/java/cn/nukkit/level/biome/type/SnowyBiome.java @@ -1,6 +1,5 @@ package cn.nukkit.level.biome.type; -import cn.nukkit.api.RemovedFromNewRakNet; import cn.nukkit.api.Since; import cn.nukkit.level.generator.populator.impl.WaterIcePopulator; @@ -17,7 +16,6 @@ public SnowyBiome() { @Since("1.4.0.0-PN") @Override - @RemovedFromNewRakNet public int getCoverBlock() { if (useNewRakNetCover()) { return getCoverId(0,0); diff --git a/src/main/java/cn/nukkit/level/biome/type/WateryBiome.java b/src/main/java/cn/nukkit/level/biome/type/WateryBiome.java index 91006ca8983..b530388f873 100644 --- a/src/main/java/cn/nukkit/level/biome/type/WateryBiome.java +++ b/src/main/java/cn/nukkit/level/biome/type/WateryBiome.java @@ -1,13 +1,12 @@ package cn.nukkit.level.biome.type; -import cn.nukkit.api.RemovedFromNewRakNet; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; /** * @author DaPorkchop_ (Nukkit Project) */ public abstract class WateryBiome extends CoveredBiome { - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getSurfaceDepth(int y) { @@ -17,7 +16,6 @@ public int getSurfaceDepth(int y) { return 0; } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getSurfaceBlock(int y) { @@ -28,7 +26,6 @@ public int getSurfaceBlock(int y) { return 0; } - @RemovedFromNewRakNet @Since("1.4.0.0-PN") @Override public int getGroundDepth(int y) { @@ -38,7 +35,7 @@ public int getGroundDepth(int y) { return 5; } - @RemovedFromNewRakNet + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getGroundBlock(int y) { diff --git a/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java b/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java index a23078af923..1ba07212e71 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java +++ b/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java @@ -807,6 +807,7 @@ public synchronized List scanBlocks(LevelProvider provider, int offsetX, return results; } + @Override @SneakyThrows(CloneNotSupportedException.class) @Nonnull public ChunkSection copy() { diff --git a/src/main/java/cn/nukkit/level/format/anvil/palette/BiomePalette.java b/src/main/java/cn/nukkit/level/format/anvil/palette/BiomePalette.java index 0aa025eb075..38adcc35cf5 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/palette/BiomePalette.java +++ b/src/main/java/cn/nukkit/level/format/anvil/palette/BiomePalette.java @@ -118,6 +118,7 @@ public int getIndex(int x, int z) { return (z << 4) | x; } + @Override public synchronized BiomePalette clone() { return new BiomePalette(this); } diff --git a/src/main/java/cn/nukkit/level/format/anvil/palette/BitArray256.java b/src/main/java/cn/nukkit/level/format/anvil/palette/BitArray256.java index 4a60bbfadb1..0129c10d036 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/palette/BitArray256.java +++ b/src/main/java/cn/nukkit/level/format/anvil/palette/BitArray256.java @@ -85,6 +85,7 @@ public final int[] toRaw() { return toRaw(new int[256]); } + @Override public BitArray256 clone() { return new BitArray256(this); } diff --git a/src/main/java/cn/nukkit/level/format/anvil/palette/BlockDataPalette.java b/src/main/java/cn/nukkit/level/format/anvil/palette/BlockDataPalette.java index 3f8784b36ed..f9737fb6062 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/palette/BlockDataPalette.java +++ b/src/main/java/cn/nukkit/level/format/anvil/palette/BlockDataPalette.java @@ -214,6 +214,7 @@ public synchronized boolean compress() { return false; } + @Override public synchronized BlockDataPalette clone() { char[] raw = getRaw(); return new BlockDataPalette(raw.clone()); diff --git a/src/main/java/cn/nukkit/level/format/anvil/palette/IntPalette.java b/src/main/java/cn/nukkit/level/format/anvil/palette/IntPalette.java index 0c22d0c362e..2bf46a86711 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/palette/IntPalette.java +++ b/src/main/java/cn/nukkit/level/format/anvil/palette/IntPalette.java @@ -96,6 +96,7 @@ public int length() { return keys.length; } + @Override public IntPalette clone() { IntPalette p = new IntPalette(); p.keys = this.keys != EmptyArrays.EMPTY_INTS ? this.keys.clone() : EmptyArrays.EMPTY_INTS; diff --git a/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java b/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java index 76e5c8959f2..3549237b62e 100644 --- a/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java +++ b/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java @@ -131,6 +131,7 @@ public void backwardCompatibilityUpdate(Level level) { // Does nothing here } + @Override public void initChunk() { if (this.getProvider() != null && !this.isInit) { boolean changed = false; @@ -207,11 +208,13 @@ public void setPosition(int x, int z) { this.hash = Level.chunkHash(x, z); } + @Override public final void setX(int x) { this.x = x; this.hash = Level.chunkHash(x, getZ()); } + @Override public final void setZ(int z) { this.z = z; this.hash = Level.chunkHash(getX(), z); diff --git a/src/main/java/cn/nukkit/level/format/generic/BaseLevelProvider.java b/src/main/java/cn/nukkit/level/format/generic/BaseLevelProvider.java index ea90e133c25..3a81b0ab20e 100644 --- a/src/main/java/cn/nukkit/level/format/generic/BaseLevelProvider.java +++ b/src/main/java/cn/nukkit/level/format/generic/BaseLevelProvider.java @@ -364,6 +364,7 @@ public void saveLevelData() { } } + @Override public void updateLevelName(String name) { if (!this.getName().equals(name)) { this.levelData.putString("LevelName", name); diff --git a/src/main/java/cn/nukkit/level/generator/Nether.java b/src/main/java/cn/nukkit/level/generator/Nether.java index 64d7a9b08cd..5f250f433f7 100644 --- a/src/main/java/cn/nukkit/level/generator/Nether.java +++ b/src/main/java/cn/nukkit/level/generator/Nether.java @@ -154,6 +154,7 @@ public void populateChunk(int chunkX, int chunkZ) { biome.populateChunk(this.level, chunkX, chunkZ, this.nukkitRandom); } + @Override public Vector3 getSpawn() { return new Vector3(0, 64, 0); } diff --git a/src/main/java/cn/nukkit/level/generator/object/mushroom/BigMushroom.java b/src/main/java/cn/nukkit/level/generator/object/mushroom/BigMushroom.java index 19d261ef173..7312d6b0143 100644 --- a/src/main/java/cn/nukkit/level/generator/object/mushroom/BigMushroom.java +++ b/src/main/java/cn/nukkit/level/generator/object/mushroom/BigMushroom.java @@ -37,6 +37,7 @@ public BigMushroom() { this.mushroomType = -1; } + @Override public boolean generate(ChunkManager level, NukkitRandom rand, Vector3 position) { int block = this.mushroomType; if (block < 0) { diff --git a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectJungleBigTree.java b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectJungleBigTree.java index 4a4d7727c79..51b1cc91b90 100644 --- a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectJungleBigTree.java +++ b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectJungleBigTree.java @@ -13,6 +13,7 @@ public ObjectJungleBigTree(int baseHeightIn, int extraRandomHeight, Block woodMe super(baseHeightIn, extraRandomHeight, woodMetadata, leavesMetadata); } + @Override public boolean generate(ChunkManager level, NukkitRandom rand, Vector3 position) { int height = this.getHeight(rand); diff --git a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectSavannaTree.java b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectSavannaTree.java index 71226eb541f..8f8ba0e7888 100644 --- a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectSavannaTree.java +++ b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectSavannaTree.java @@ -13,6 +13,7 @@ public class ObjectSavannaTree extends TreeGenerator { private static final Block TRUNK = Block.get(BlockID.WOOD2, BlockWood2.ACACIA); private static final Block LEAF = Block.get(BlockID.LEAVES2, BlockLeaves2.ACACIA); + @Override public boolean generate(ChunkManager level, NukkitRandom rand, Vector3 position) { int i = rand.nextBoundedInt(3) + rand.nextBoundedInt(3) + 5; boolean flag = true; diff --git a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOre.java b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOre.java index 5b8852602aa..82a4270ce62 100644 --- a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOre.java +++ b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOre.java @@ -1,7 +1,5 @@ package cn.nukkit.level.generator.populator.impl; -import cn.nukkit.api.NewRakNetOnly; -import cn.nukkit.api.RemovedFromNewRakNet; import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.level.ChunkManager; @@ -21,7 +19,6 @@ public class PopulatorOre extends Populator { /** * @implNote Removed from the new-raknet branch */ - @RemovedFromNewRakNet @Since("1.4.0.0-PN") public PopulatorOre() { this(Block.STONE); @@ -30,13 +27,11 @@ public PopulatorOre() { /** * @implNote Removed from the new-raknet branch */ - @RemovedFromNewRakNet @Since("1.4.0.0-PN") public PopulatorOre(int id) { this.replaceId = id; } - @NewRakNetOnly public PopulatorOre(int replaceId, OreType[] oreTypes) { this.replaceId = replaceId; this.oreTypes = oreTypes; @@ -64,7 +59,6 @@ public void populate(ChunkManager level, int chunkX, int chunkZ, NukkitRandom ra /** * @implNote Removed from the new-raknet branch */ - @RemovedFromNewRakNet @Since("1.4.0.0-PN") public void setOreTypes(OreType[] oreTypes) { this.oreTypes = oreTypes; diff --git a/src/main/java/cn/nukkit/level/util/Pow2BitArray.java b/src/main/java/cn/nukkit/level/util/Pow2BitArray.java index 6e2c1a02965..0205697f415 100644 --- a/src/main/java/cn/nukkit/level/util/Pow2BitArray.java +++ b/src/main/java/cn/nukkit/level/util/Pow2BitArray.java @@ -36,6 +36,7 @@ public class Pow2BitArray implements BitArray { /** * Sets the entry at the given location to the given value */ + @Override public void set(int index, int value) { Preconditions.checkElementIndex(index, this.size); Preconditions.checkArgument(value >= 0 && value <= this.version.maxEntryValue, @@ -49,6 +50,7 @@ public void set(int index, int value) { /** * Gets the entry at the given index */ + @Override public int get(int index) { Preconditions.checkElementIndex(index, this.size); int bitIndex = index * this.version.bits; @@ -60,6 +62,7 @@ public int get(int index) { /** * Gets the long array that is used to store the data in this BitArray. This is useful for sending packet data. */ + @Override public int size() { return this.size; } @@ -74,6 +77,7 @@ public int[] getWords() { return this.words; } + @Override public BitArrayVersion getVersion() { return version; } diff --git a/src/main/java/cn/nukkit/math/BlockFace.java b/src/main/java/cn/nukkit/math/BlockFace.java index 34260049184..b97a1a78f06 100644 --- a/src/main/java/cn/nukkit/math/BlockFace.java +++ b/src/main/java/cn/nukkit/math/BlockFace.java @@ -289,6 +289,7 @@ public CompassRoseDirection getCompassRoseDirection() { } } + @Override public String toString() { return name; } @@ -328,10 +329,12 @@ public String getName() { return name; } + @Override public boolean test(BlockFace face) { return face != null && face.getAxis() == this; } + @Override public String toString() { return name; } @@ -353,6 +356,7 @@ public int getOffset() { return offset; } + @Override public String toString() { return description; } @@ -380,10 +384,12 @@ public BlockFace random(NukkitRandom rand) { return faces[rand.nextBoundedInt(faces.length)]; } + @Override public boolean test(BlockFace face) { return face != null && face.getAxis().getPlane() == this; } + @Override public Iterator iterator() { return Iterators.forArray(faces); } diff --git a/src/main/java/cn/nukkit/nbt/stream/FastByteArrayOutputStream.java b/src/main/java/cn/nukkit/nbt/stream/FastByteArrayOutputStream.java index 175ac8a7e09..703299a7f82 100644 --- a/src/main/java/cn/nukkit/nbt/stream/FastByteArrayOutputStream.java +++ b/src/main/java/cn/nukkit/nbt/stream/FastByteArrayOutputStream.java @@ -82,7 +82,8 @@ public FastByteArrayOutputStream reset() { return this; } - public void write( final int b ) { + @Override + public void write(final int b ) { if ( position == length ) { length++; if ( position == array.length ) array = grow( array, length ); @@ -118,7 +119,8 @@ public static byte[] grow( final byte[] array, final int length, final int prese return array; } - public void write( final byte[] b, final int off, final int len ) throws IOException { + @Override + public void write(final byte[] b, final int off, final int len ) throws IOException { if ( position + len > array.length ) array = grow( array, position + len, position ); System.arraycopy( b, off, array, position, len ); if ( position + len > length ) length = position += len; @@ -141,4 +143,4 @@ public byte[] toByteArray() { if (position == array.length) return array; return Arrays.copyOfRange(array, 0, position); } -} \ No newline at end of file +} diff --git a/src/main/java/cn/nukkit/nbt/tag/CompoundTag.java b/src/main/java/cn/nukkit/nbt/tag/CompoundTag.java index ce61165702a..6fcc93189ae 100644 --- a/src/main/java/cn/nukkit/nbt/tag/CompoundTag.java +++ b/src/main/java/cn/nukkit/nbt/tag/CompoundTag.java @@ -308,12 +308,14 @@ public boolean getBoolean(String name) { return getByte(name) != 0; } + @Override public String toString() { StringJoiner joiner = new StringJoiner(",\n\t"); tags.forEach((key, tag) -> joiner.add('\'' + key + "' : " + tag.toString().replace("\n", "\n\t"))); return "CompoundTag '" + this.getName() + "' (" + tags.size() + " entries) {\n\t" + joiner.toString() + "\n}"; } + @Override public void print(String prefix, PrintStream out) { super.print(prefix, out); out.println(prefix + "{"); @@ -329,6 +331,7 @@ public boolean isEmpty() { return tags.isEmpty(); } + @Override public CompoundTag copy() { CompoundTag tag = new CompoundTag(getName()); for (String key : tags.keySet()) { diff --git a/src/main/java/cn/nukkit/nbt/tag/ListTag.java b/src/main/java/cn/nukkit/nbt/tag/ListTag.java index bdc142ce2fa..8fe398c7bb0 100644 --- a/src/main/java/cn/nukkit/nbt/tag/ListTag.java +++ b/src/main/java/cn/nukkit/nbt/tag/ListTag.java @@ -62,6 +62,7 @@ public String toString() { return "ListTag '" + this.getName() + "' (" + list.size() + " entries of type " + Tag.getTagName(type) + ") {\n\t" + joiner.toString() + "\n}"; } + @Override public void print(String prefix, PrintStream out) { super.print(prefix, out); diff --git a/src/main/java/cn/nukkit/nbt/tag/Tag.java b/src/main/java/cn/nukkit/nbt/tag/Tag.java index 3b5a572a419..7e70c5e5854 100644 --- a/src/main/java/cn/nukkit/nbt/tag/Tag.java +++ b/src/main/java/cn/nukkit/nbt/tag/Tag.java @@ -28,6 +28,7 @@ public abstract class Tag { abstract void load(NBTInputStream dis) throws IOException; + @Override public abstract String toString(); public abstract byte getId(); diff --git a/src/main/java/cn/nukkit/network/protocol/AdventureSettingsPacket.java b/src/main/java/cn/nukkit/network/protocol/AdventureSettingsPacket.java index e0d19d80312..5da2d852b8e 100644 --- a/src/main/java/cn/nukkit/network/protocol/AdventureSettingsPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AdventureSettingsPacket.java @@ -52,6 +52,7 @@ public class AdventureSettingsPacket extends DataPacket { public long entityUniqueId; //This is a little-endian long, NOT a var-long. (WTF Mojang) + @Override public void decode() { this.flags = getUnsignedVarInt(); this.commandPermission = getUnsignedVarInt(); @@ -61,6 +62,7 @@ public void decode() { this.entityUniqueId = getLLong(); } + @Override public void encode() { this.reset(); this.putUnsignedVarInt(this.flags); diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java index bb3ff645938..b62a091591b 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePackDataInfoPacket.java @@ -62,12 +62,14 @@ public byte pid() { return NETWORK_ID; } + @Override @PowerNukkitOnly @Since("1.5.2.0-PN") public Version getPackVersion() { return packVersion; } + @Override @PowerNukkitOnly @Since("1.5.2.0-PN") public void setPackVersion(Version packVersion) { diff --git a/src/main/java/cn/nukkit/network/protocol/UpdateAttributesPacket.java b/src/main/java/cn/nukkit/network/protocol/UpdateAttributesPacket.java index 242bc1a2c4e..ea01b0188cd 100644 --- a/src/main/java/cn/nukkit/network/protocol/UpdateAttributesPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/UpdateAttributesPacket.java @@ -21,10 +21,12 @@ public byte pid() { return NETWORK_ID; } + @Override public void decode() { } + @Override public void encode() { this.reset(); diff --git a/src/main/java/cn/nukkit/network/rcon/RCONServer.java b/src/main/java/cn/nukkit/network/rcon/RCONServer.java index 334de29d376..32b9ed3cf93 100644 --- a/src/main/java/cn/nukkit/network/rcon/RCONServer.java +++ b/src/main/java/cn/nukkit/network/rcon/RCONServer.java @@ -73,6 +73,7 @@ public void close() { this.selector.wakeup(); } + @Override public void run() { while (this.running) { try { diff --git a/src/main/java/cn/nukkit/plugin/LibraryLoader.java b/src/main/java/cn/nukkit/plugin/LibraryLoader.java index 72d53b8b27b..76eadbd7c4d 100644 --- a/src/main/java/cn/nukkit/plugin/LibraryLoader.java +++ b/src/main/java/cn/nukkit/plugin/LibraryLoader.java @@ -31,14 +31,17 @@ public static void load(String library) { throw new IllegalArgumentException(library); } load(new Library() { + @Override public String getGroupId() { return split[0]; } + @Override public String getArtifactId() { return split[1]; } + @Override public String getVersion() { return split[2]; } diff --git a/src/main/java/cn/nukkit/plugin/PluginBase.java b/src/main/java/cn/nukkit/plugin/PluginBase.java index 1c1222faec8..ecdda8a3ca5 100644 --- a/src/main/java/cn/nukkit/plugin/PluginBase.java +++ b/src/main/java/cn/nukkit/plugin/PluginBase.java @@ -51,18 +51,22 @@ abstract public class PluginBase implements Plugin { private PluginLogger logger; + @Override public void onLoad() { } + @Override public void onEnable() { } + @Override public void onDisable() { } + @Override public final boolean isEnabled() { return isEnabled; } @@ -105,14 +109,17 @@ public final void setEnabled(boolean value) { } } + @Override public final boolean isDisabled() { return !isEnabled; } + @Override public final File getDataFolder() { return dataFolder; } + @Override public final PluginDescription getDescription() { return description; } @@ -149,6 +156,7 @@ public final void init(PluginLoader loader, Server server, PluginDescription des } } + @Override public PluginLogger getLogger() { return logger; } diff --git a/src/main/java/cn/nukkit/plugin/service/RegisteredServiceProvider.java b/src/main/java/cn/nukkit/plugin/service/RegisteredServiceProvider.java index 879e12323e7..b4d5d0d131b 100644 --- a/src/main/java/cn/nukkit/plugin/service/RegisteredServiceProvider.java +++ b/src/main/java/cn/nukkit/plugin/service/RegisteredServiceProvider.java @@ -67,6 +67,7 @@ public int hashCode() { return provider.hashCode(); } + @Override public int compareTo(RegisteredServiceProvider other) { return other.priority.ordinal() - priority.ordinal(); } diff --git a/src/main/java/cn/nukkit/scheduler/AsyncTask.java b/src/main/java/cn/nukkit/scheduler/AsyncTask.java index 3c05aa3547d..a22141d3af6 100644 --- a/src/main/java/cn/nukkit/scheduler/AsyncTask.java +++ b/src/main/java/cn/nukkit/scheduler/AsyncTask.java @@ -20,6 +20,7 @@ public abstract class AsyncTask implements Runnable { private int taskId; private boolean finished = false; + @Override public void run() { this.result = null; this.onRun(); diff --git a/src/main/java/cn/nukkit/scheduler/AsyncWorker.java b/src/main/java/cn/nukkit/scheduler/AsyncWorker.java index 2b44070f09c..47ecff7fd4b 100644 --- a/src/main/java/cn/nukkit/scheduler/AsyncWorker.java +++ b/src/main/java/cn/nukkit/scheduler/AsyncWorker.java @@ -32,6 +32,7 @@ public void unstack(AsyncTask task) { } } + @Override public void run() { while (true) { synchronized (stack) { diff --git a/src/main/java/cn/nukkit/utils/Utils.java b/src/main/java/cn/nukkit/utils/Utils.java index 8d8d20770b6..19aeb906c7c 100644 --- a/src/main/java/cn/nukkit/utils/Utils.java +++ b/src/main/java/cn/nukkit/utils/Utils.java @@ -409,6 +409,7 @@ public static T dynamic(T value) { public static void zipFolder(Path sourceFolderPath, Path zipPath) throws IOException { try (ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(zipPath.toFile()))) { Files.walkFileTree(sourceFolderPath, new SimpleFileVisitor() { + @Override public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException { zos.putNextEntry(new ZipEntry(sourceFolderPath.relativize(file).toString())); Files.copy(file, zos); diff --git a/src/main/java/co/aikar/timings/TimingData.java b/src/main/java/co/aikar/timings/TimingData.java index 8757d6990cf..57f1ca3a4d2 100644 --- a/src/main/java/co/aikar/timings/TimingData.java +++ b/src/main/java/co/aikar/timings/TimingData.java @@ -76,6 +76,7 @@ void reset() { this.curTickTotal = 0; } + @Override protected TimingData clone() { return new TimingData(this); } diff --git a/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java b/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java new file mode 100644 index 00000000000..1917473089c --- /dev/null +++ b/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java @@ -0,0 +1,397 @@ +package org.powernukkit.tools; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import com.google.common.base.Preconditions; +import com.google.gson.GsonBuilder; +import io.netty.util.internal.EmptyArrays; +import lombok.Getter; +import lombok.SneakyThrows; +import lombok.extern.log4j.Log4j2; +import spoon.Launcher; +import spoon.MavenLauncher; +import spoon.reflect.CtModel; +import spoon.reflect.declaration.*; +import spoon.reflect.reference.CtTypeReference; +import spoon.support.compiler.SpoonPom; + +import java.io.File; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.*; +import java.util.function.Function; +import java.util.stream.Collectors; + +/** + * @author joserobjr + * @since 2021-12-08 + */ +@PowerNukkitOnly +@Since("FUTURE") +@Log4j2 +public class AnnotationProblemScanner { + private static final String NEED_TO_ADD_POWERNUKKIT_ONLY = "Need to add @PowerNukkitOnly to "; + private static final String NEED_TO_REMOVE_POWERNUKKIT_ONLY = "Need to remove @PowerNukkitOnly from "; + + Map> nukkitTypes; + + public static void main(String[] args) { + Preconditions.checkArgument(args.length == 0 || args.length == 1, "Invalid arguments"); + Path clourburstNukkitSourceCode = Paths.get(args.length == 1? args[0] : "../../org.cloudburst/Nukkit"); + + new AnnotationProblemScanner().execute( + clourburstNukkitSourceCode, + Paths.get(".") + ); + } + + + private static boolean isApi(CtModifiable obj) { + return obj.isPublic() || obj.isProtected(); + } + + private boolean isPowerNukkitOnlyMethod(CtMethod powerNukkitMethod, CtType nukkitType) { + nukkitType = nukkitType == null? nukkitTypes.get(powerNukkitMethod.getDeclaringType().getQualifiedName()) : nukkitType; + if (nukkitType == null) { + return true; + } + String name = powerNukkitMethod.getSimpleName(); + CtTypeReference[] parameters = powerNukkitMethod.getParameters().stream().map(CtParameter::getType).toArray(CtTypeReference[]::new); + if (nukkitType.getMethod(name, parameters) != null) { + return false; + } + + String[] parameterTypes = Arrays.stream(parameters).map(CtTypeInformation::getQualifiedName).toArray(String[]::new); + return nukkitType.getAllMethods().stream() + .noneMatch(nukkitMethod -> + name.equals(nukkitMethod.getSimpleName()) + && Arrays.equals(parameterTypes, + nukkitMethod.getParameters().stream() + .map(CtParameter::getType) + .map(CtTypeInformation::getQualifiedName) + .toArray(String[]::new) + ) + ); + } + + @SneakyThrows + private void cmd(Path dir, String... command) { + int code = new ProcessBuilder() + .command(command) + .directory(dir.toAbsolutePath().normalize().toFile()) + .redirectError(ProcessBuilder.Redirect.INHERIT) + .redirectOutput(ProcessBuilder.Redirect.INHERIT) + .start() + .waitFor(); + Preconditions.checkArgument(code == 0, "Command Failed"); + } + + private void mvn(Path src, String... args) { + List parts = new ArrayList<>(); + if (System.getProperty("os.name").toLowerCase(Locale.ENGLISH).contains("windows")) { + parts.add(src.resolve("mvnw.cmd").toAbsolutePath().normalize().toString()); + } else { + parts.add("/bin/env"); + parts.add("sh"); + parts.add(src.resolve("mvnw").toAbsolutePath().normalize().toString()); + } + parts.addAll(Arrays.asList(args)); + cmd(src, parts.toArray(EmptyArrays.EMPTY_STRINGS)); + } + + private void git(Path src, String... args) { + List parts = new ArrayList<>(); + if (!System.getProperty("os.name").toLowerCase(Locale.ENGLISH).contains("windows")) { + parts.add("/bin/env"); + } + parts.add("git"); + parts.addAll(Arrays.asList(args)); + cmd(src, parts.toArray(EmptyArrays.EMPTY_STRINGS)); + } + + private void delombok(Path src) { + log.info("Delomboking " + src.toAbsolutePath().normalize()); + mvn(src, "clean", "lombok:delombok", "dependency:build-classpath", "-Dmdep.outputFile=target/classpath.txt"); + } + + private void delombokPatch(Path src) { + log.info("Adding delombok plugin to " + src.toAbsolutePath().normalize()); + Path nukkitPatch = Paths.get("src/test/resources/org/powernukkit/tools/nukkit.patch"); + git(src, "reset", "--hard", "HEAD"); + git(src, "apply", "-3", nukkitPatch.toAbsolutePath().normalize().toString()); + } + + @SneakyThrows + private Launcher createLauncher(Path src) { + log.info("Creating launcher for " + src.toAbsolutePath().normalize()); + Launcher launcher = new Launcher(); + SpoonPom pom = new SpoonPom(src.toAbsolutePath().normalize().toString(), MavenLauncher.SOURCE_TYPE.APP_SOURCE, launcher.getEnvironment()); + + List sourceDirectories = new ArrayList<>(pom.getSourceDirectories()); + File srcMainJava = src.resolve("src/main/java").toAbsolutePath().normalize().toFile(); + sourceDirectories.removeIf(file -> file.getAbsoluteFile().equals(srcMainJava)); + sourceDirectories.add(src.resolve("target/delombok").toAbsolutePath().normalize().toFile()); + sourceDirectories.forEach(file -> launcher.addInputResource(file.toPath().toAbsolutePath().normalize().toString())); + + String[] classpath = String.join("\n", Files.readAllLines(src.resolve("target/classpath.txt"))).split(File.pathSeparator); + log.info("Classpath: " + Arrays.asList(classpath)); + + launcher.getEnvironment().setNoClasspath(false); + launcher.getModelBuilder().setSourceClasspath(classpath); + + launcher.getEnvironment().setComplianceLevel(pom.getSourceVersion()); + + return launcher; + } + + @SneakyThrows + private void execute(Path nukkitSrc, Path powerNukkitSrc) { + delombokPatch(nukkitSrc); + delombok(nukkitSrc); + Launcher nukkitLauncher = createLauncher(nukkitSrc); + + log.info("Building " + powerNukkitSrc.toAbsolutePath().normalize()); + mvn(powerNukkitSrc, + "clean", "lombok:delombok", "dependency:build-classpath", "-Dmdep.outputFile=target/classpath.txt", + "compile", "compiler:testCompile"); + Launcher powerNukkitLauncher = createLauncher(powerNukkitSrc); + + log.info("Builing model for " + nukkitSrc.toAbsolutePath().normalize()); + CtModel nukkitModel = nukkitLauncher.buildModel(); + + log.info("Building model for " + powerNukkitSrc.toAbsolutePath().normalize()); + CtModel powerNukkitModel = powerNukkitLauncher.buildModel(); + + log.info("Caching Nukkit types"); + nukkitTypes = nukkitModel.getAllTypes().stream().collect(Collectors.toMap(CtType::getQualifiedName, Function.identity())); + + log.info("Verifying annotations..."); + Map neededClassChanges = powerNukkitModel.getAllTypes().parallelStream() + .map(type-> checkType(type, nukkitTypes)) + .peek(NeededClassChanges::close) + .filter(NeededClassChanges::isNotEmpty) + .collect(Collectors.toMap(NeededClassChanges::getName, Function.identity())); + + Path jsonFile = Paths.get("dumps/needed-class-changes.json").toAbsolutePath().normalize(); + log.info("Creating ..." + jsonFile); + neededClassChanges.values().forEach(NeededClassChanges::removeName); + Files.write(jsonFile, + new GsonBuilder().setPrettyPrinting().disableHtmlEscaping().create() + .toJson(neededClassChanges) + .getBytes(StandardCharsets.UTF_8) + ); + + log.info("Process completed"); + } + + private NeededClassChanges checkType(CtType powerNukkitType, Map> nukkitTypes) { + CtType nukkitType = nukkitTypes.get(powerNukkitType.getQualifiedName()); + if (nukkitType == null) { + return addPowerNukkitOnlyToEverything(powerNukkitType); + } else { + return compareTypes(powerNukkitType, nukkitType); + } + } + + private NeededClassChanges addPowerNukkitOnlyToEverything(CtType powerNukkitType) { + NeededClassChanges neededClassChanges = new NeededClassChanges(powerNukkitType.getQualifiedName()); + needsPowerNukkitOnly(neededClassChanges, powerNukkitType); + + Set> powerNukkitOnlyFields = powerNukkitType.getFields().stream() + .filter(AnnotationProblemScanner::isApi) + .peek(field -> needsPowerNukkitOnly(neededClassChanges, field)) + .collect(Collectors.toSet()); + + checkForMissingOverrides(neededClassChanges, powerNukkitType); + + Set> powerNukkitOnlyMethods = powerNukkitType.getMethods().stream() + .filter(AnnotationProblemScanner::isApi) + .filter(method -> method.getTopDefinitions().isEmpty() + || method.getTopDefinitions().stream().allMatch(powerNukkitMethod -> isPowerNukkitOnlyMethod(powerNukkitMethod, null))) + .peek(method -> needsPowerNukkitOnly(neededClassChanges, method)) + .collect(Collectors.toSet()); + + powerNukkitType.getFields().stream() + .filter(AnnotationProblemScanner::isApi) + .filter(field -> !powerNukkitOnlyFields.contains(field)) + .forEachOrdered(field -> dontNeedsPowerNukkitOnly(neededClassChanges, field)); + + powerNukkitType.getMethods().stream() + .filter(AnnotationProblemScanner::isApi) + .filter(method-> !powerNukkitOnlyMethods.contains(method)) + .forEachOrdered(method -> dontNeedsPowerNukkitOnly(neededClassChanges, method)); + + //powerNukkitType.getNestedTypes().forEach(this::addPowerNukkitOnlyToEverything); + return neededClassChanges; + } + + private NeededClassChanges compareTypes(CtType powerNukkitType, CtType nukkitType) { + final NeededClassChanges neededClassChanges = new NeededClassChanges(powerNukkitType.getQualifiedName()); + dontNeedsPowerNukkitOnly(neededClassChanges, powerNukkitType); + + List> powerNukkitOnlyFields = powerNukkitType.getFields().stream() + .filter(AnnotationProblemScanner::isApi) + .filter(powerNukkitField -> compareFields(powerNukkitField, nukkitType)) + .peek(field -> needsPowerNukkitOnly(neededClassChanges, field)) + .collect(Collectors.toList()); + + checkForMissingOverrides(neededClassChanges, powerNukkitType); + + List> powerNukkitOnlyMethods = powerNukkitType.getMethods().stream() + .filter(AnnotationProblemScanner::isApi) + .filter(powerNukkitMethod -> isPowerNukkitOnlyMethod(powerNukkitMethod, nukkitType)) + .peek(method -> needsPowerNukkitOnly(neededClassChanges, method)) + .collect(Collectors.toList()); + + powerNukkitType.getFields().stream() + .filter(AnnotationProblemScanner::isApi) + .filter(field -> !powerNukkitOnlyFields.contains(field)) + .forEachOrdered(field -> dontNeedsPowerNukkitOnly(neededClassChanges, field)); + + powerNukkitType.getMethods().stream() + .filter(AnnotationProblemScanner::isApi) + .filter(method-> !powerNukkitOnlyMethods.contains(method)) + .forEachOrdered(method -> dontNeedsPowerNukkitOnly(neededClassChanges, method)); + + return neededClassChanges; + } + + private boolean compareFields(CtField powerNukkitField, CtType nukkitType) { + CtField nukkitField = nukkitType.getField(powerNukkitField.getSimpleName()); + if (nukkitField == null) { + return true; + } + CtTypeReference nukkitFieldType = nukkitField.getType(); + CtTypeReference powerNukkitFieldType = powerNukkitField.getType(); + + boolean valid = false; + if (nukkitFieldType.isGenerics()) { + if (powerNukkitFieldType.isGenerics()) { + valid = nukkitFieldType.getSimpleName().equals(powerNukkitFieldType.getSimpleName()) && + nukkitFieldType.getTypeErasure().getQualifiedName().equals(powerNukkitFieldType.getTypeErasure().getQualifiedName()); + } + } else if (!powerNukkitFieldType.isGenerics()) { + valid = nukkitFieldType.getTypeDeclaration().getQualifiedName().equals(powerNukkitFieldType.getTypeDeclaration().getQualifiedName()); + } + if (!valid) { + log.error("Incompatible field declared at " + powerNukkitField.getDeclaringType().getQualifiedName() + "#" + powerNukkitField.getSimpleName()); + return true; + } + return false; + } + + private void checkForMissingOverrides(NeededClassChanges neededClassChanges, CtType powerNukkitType) { + powerNukkitType.getMethods().stream() + .filter(AnnotationProblemScanner::isApi) + .filter(method -> !method.getTopDefinitions().isEmpty()) + .filter(method -> !method.hasAnnotation(Override.class)) + .map(this::missingOverride) + .forEachOrdered(neededClassChanges.addOverrideAnnotation::add); + } + + private String missingOverride(CtMethod method) { + String sig = methodString(method); + log.warn("Missing @Override at " + sig); + method.getFactory().Annotation().annotate(method, Override.class); + return sig; + } + + private String methodString(CtMethod method) { + return method.getDeclaringType().getQualifiedName() + "#" + method.getSimpleName() + + "(" + + method.getParameters().stream() + .map(param -> param.getType().getSimpleName()).collect(Collectors.joining(", ")) + + ")"; + } + + private void needsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtType type) { + if (!type.hasAnnotation(PowerNukkitOnly.class)) { + log.info(NEED_TO_ADD_POWERNUKKIT_ONLY + type.getQualifiedName()); + neededClassChanges.addPowerNukkitOnlyAnnotation.add(type.getQualifiedName()); + } + } + + private void needsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtField field) { + if (!field.hasAnnotation(PowerNukkitOnly.class)) { + String sig = field.getDeclaringType().getQualifiedName() + "#" + field.getSimpleName(); + log.info(NEED_TO_ADD_POWERNUKKIT_ONLY + sig); + neededClassChanges.addPowerNukkitOnlyAnnotation.add(sig); + } + } + + private void needsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtMethod method) { + if (!method.hasAnnotation(PowerNukkitOnly.class)) { + String sig = methodString(method); + log.info(NEED_TO_ADD_POWERNUKKIT_ONLY + sig); + neededClassChanges.addPowerNukkitOnlyAnnotation.add(sig); + } + } + + private void dontNeedsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtType type) { + if (type.hasAnnotation(PowerNukkitOnly.class)) { + log.info(NEED_TO_REMOVE_POWERNUKKIT_ONLY + type.getQualifiedName()); + neededClassChanges.removePowerNukkitOnlyAnnotation.add(type.getQualifiedName()); + } + } + + private void dontNeedsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtField field) { + if (field.hasAnnotation(PowerNukkitOnly.class)) { + String sig = field.getDeclaringType().getQualifiedName() + "#" + field.getSimpleName(); + log.info(NEED_TO_REMOVE_POWERNUKKIT_ONLY + sig); + neededClassChanges.removePowerNukkitOnlyAnnotation.add(sig); + } + } + + private void dontNeedsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtMethod method) { + if (method.hasAnnotation(PowerNukkitOnly.class)) { + String sig = methodString(method); + log.info(NEED_TO_REMOVE_POWERNUKKIT_ONLY + sig); + neededClassChanges.removePowerNukkitOnlyAnnotation.add(sig); + } + } + + @Getter + static class NeededClassChanges { + private String name; + + private List addOverrideAnnotation = new ArrayList<>(); + private List addPowerNukkitOnlyAnnotation = new ArrayList<>(); + private List removePowerNukkitOnlyAnnotation = new ArrayList<>(); + + NeededClassChanges(String name) { + this.name = name; + } + + private boolean isEmpty() { + return isEmpty(addOverrideAnnotation) + && isEmpty(addPowerNukkitOnlyAnnotation) + && isEmpty(removePowerNukkitOnlyAnnotation); + } + + private boolean isNotEmpty() { + return !isEmpty(); + } + + private boolean isEmpty(List list) { + return list == null || list.isEmpty(); + } + + private void close() { + if (isEmpty(addOverrideAnnotation)) { + addOverrideAnnotation = null; + } + if (isEmpty(addPowerNukkitOnlyAnnotation)) { + addPowerNukkitOnlyAnnotation = null; + } + if (isEmpty(removePowerNukkitOnlyAnnotation)) { + removePowerNukkitOnlyAnnotation = null; + } + } + + private void removeName() { + name = null; + } + } +} diff --git a/src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations.java b/src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations.java new file mode 100644 index 00000000000..9dd7dff1804 --- /dev/null +++ b/src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations.java @@ -0,0 +1,238 @@ +package org.powernukkit.tools; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import com.google.common.base.Preconditions; +import lombok.extern.log4j.Log4j2; +import org.jboss.forge.roaster.Roaster; +import org.jboss.forge.roaster.model.*; +import org.jboss.forge.roaster.model.source.AnnotationSource; +import org.jboss.forge.roaster.model.source.AnnotationTargetSource; +import org.jboss.forge.roaster.model.source.Importer; + +import java.io.BufferedInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.UncheckedIOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Locale; +import java.util.Objects; +import java.util.Optional; +import java.util.concurrent.atomic.AtomicBoolean; +import java.util.stream.Collectors; +import java.util.stream.IntStream; +import java.util.stream.Stream; + +/** + * @author joserobjr + * @since 2021-12-02 + */ +@PowerNukkitOnly +@Since("FUTURE") +@Log4j2 +public class AutoUpdatePowerNukkitOnlyAnnotations { + public static void main(String[] args) { + Preconditions.checkArgument(args.length == 0 || args.length == 1, "Invalid arguments"); + Path clourburstNukkitSourceCode = Paths.get(args.length == 1? args[0] : "../../org.cloudburst/Nukkit"); + + new AutoUpdatePowerNukkitOnlyAnnotations().execute( + clourburstNukkitSourceCode.resolve("src/main/java"), + Paths.get("src/main/java") + ); + } + + private void execute(Path nukkitSrc, Path powerNukkitSrc) { + try (Stream walk = Files.walk(powerNukkitSrc)) { + walk.parallel() + .filter(Files::isRegularFile) + .filter(it-> it.getFileName().toString().toLowerCase(Locale.ENGLISH).endsWith(".java")) + .forEach(it-> update(it, nukkitSrc.resolve(powerNukkitSrc.relativize(it).toString()))); + } catch (IOException e) { + throw new UncheckedIOException(e); + } + } + + private void update(Path powerNukkitFilePath, Path nukkitFilePath) { + try { + if (!Files.isRegularFile(nukkitFilePath)) { + setFullyPowerNukkitOnly(powerNukkitFilePath); + } else { + compareDifferences(powerNukkitFilePath, nukkitFilePath); + } + } catch (IOException e) { + throw new UncheckedIOException(e); + } + } + + private void setFullyPowerNukkitOnly(Path powerNukkitFilePath) throws IOException { + JavaUnit javaUnit = loadJavaUnit(powerNukkitFilePath); + int changes = javaUnit.getTopLevelTypes().parallelStream().mapToInt(this::addAnnotationsToEverything).sum(); + if (changes > 0) { + log.info("{}\tchanges to\t{}", changes, powerNukkitFilePath); + //Files.write(powerNukkitFilePath, javaUnit.toString().getBytes(StandardCharsets.UTF_8)); + } + } + + private void compareDifferences(Path powerNukkitFilePath, Path nukkitFilePath) throws IOException { + JavaUnit pnJavaUnit = loadJavaUnit(powerNukkitFilePath); + JavaUnit nuJavaUnit = loadJavaUnit(nukkitFilePath); + int changes = pnJavaUnit.getTopLevelTypes().parallelStream() + .mapToInt(pnJavaType -> + nuJavaUnit.getTopLevelTypes().stream() + .filter(it -> pnJavaType.getCanonicalName().equals(it.getCanonicalName())) + .findFirst() + .map(nuJavaType -> compareDifferencesBetweenTypes(pnJavaType, nuJavaType)) + .orElseGet(() -> addAnnotationsToEverything(pnJavaType)) + ).sum(); + if (changes > 0) { + log.info("{}\tchanges to\t{}", changes, powerNukkitFilePath); + //Files.write(powerNukkitFilePath, pnJavaUnit.toString().getBytes(StandardCharsets.UTF_8)); + } + } + + private int compareDifferencesBetweenTypes(JavaType pnJavaType, JavaType nuJavaType) { + IntStream changeStream = IntStream.of(removeAnnotation(pnJavaType)); + AtomicBoolean needPowerNukkitOnly = new AtomicBoolean(); + if (pnJavaType instanceof FieldHolder) { + IntStream stream = ((FieldHolder) pnJavaType).getFields().parallelStream().filter(it-> it.isPublic() || it.isProtected()).mapToInt(pnField -> { + if (!(nuJavaType instanceof FieldHolder)) { + needPowerNukkitOnly.set(true); + return addAnnotation(pnField); + } + Field nuField = ((FieldHolder) nuJavaType).getField(pnField.getName()); + if (nuField == null || nuField.isPackagePrivate() || nuField.isPrivate()) { + needPowerNukkitOnly.set(true); + return addAnnotation(pnField); + } + if (!nuField.getType().toString().equals(pnField.getType().toString())) { + log.error("Incompatible field change detected at {} field {}", pnJavaType.getQualifiedName(), pnField.getName()); + needPowerNukkitOnly.set(true); + return addAnnotation(pnField); + } + + return removeAnnotation(pnField); + }); + changeStream = IntStream.concat(changeStream, stream); + } + if (pnJavaType instanceof MethodHolder) { + IntStream stream = ((MethodHolder) pnJavaType).getMethods().parallelStream().mapToInt(pnMethod -> { + if (pnMethod.isPrivate() || pnMethod.isPackagePrivate() || pnMethod.hasAnnotation(Override.class)) { + return removeAnnotation(pnMethod); + } + + if (!(nuJavaType instanceof MethodHolder)) { + needPowerNukkitOnly.set(true); + return addAnnotation(pnMethod); + } + Method nuMethod = ((MethodHolder) nuJavaType).getMethod( + pnMethod.getName(), + pnMethod.getParameters().stream().map(it -> it.getType().getName()).toArray(String[]::new) + ); + if (nuMethod == null || nuMethod.isPackagePrivate() || nuMethod.isPrivate()) { + needPowerNukkitOnly.set(true); + return addAnnotation(pnMethod); + } + if (!Objects.equals( + Optional.ofNullable(nuMethod.getReturnType()).map(Object::toString).orElse(null), + Optional.ofNullable(pnMethod.getReturnType()).map(Object::toString).orElse(null)) + ) { + log.error("Incompatible method change detected at {} method {}({})", + pnJavaType.getQualifiedName(), + pnMethod.getName(), + pnMethod.getParameters().stream().map(Parameter::getName).collect(Collectors.joining(", ")) + ); + needPowerNukkitOnly.set(true); + return addAnnotation(pnMethod); + } + + return removeAnnotation(pnMethod); + }); + changeStream = IntStream.concat(changeStream, stream); + } + + int changes = changeStream.sum(); + if (!needPowerNukkitOnly.get()) { + changes += removeImport(pnJavaType); + } + return changes; + } + + private int removeImport(Object source) { + if (source instanceof Importer) { + Importer imp = (Importer) source; + if (imp.hasImport(PowerNukkitOnly.class.getName())) { + imp.removeImport(PowerNukkitOnly.class.getName()); + return 1; + } + } + return 0; + } + + /*private int addImport(Object source) { + if (source instanceof Importer) { + Importer imp = (Importer) source; + if (!imp.hasImport(PowerNukkitOnly.class)) { + imp.addImport(PowerNukkitOnly.class); + return 1; + } + } + return 0; + }*/ + + private int addAnnotationsToEverything(Object source) { + int changes = addAnnotation(source)/* + addImport(source)*/; + IntStream changeStream = IntStream.empty(); + if (source instanceof MemberHolder) { + changeStream = ((MemberHolder) source).getMembers().parallelStream().mapToInt(this::addAnnotation); + } + if (source instanceof TypeHolder) { + changeStream = IntStream.concat(changeStream, + ((TypeHolder) source).getNestedTypes().parallelStream().mapToInt(this::addAnnotationsToEverything) + ); + } + return changes + changeStream.sum(); + } + + private JavaUnit loadJavaUnit(Path filePath) throws IOException { + try (InputStream is = Files.newInputStream(filePath); + BufferedInputStream input = new BufferedInputStream(is) + ) { + return Roaster.parseUnit(input); + } + } + + private int addAnnotation(Object obj) { + if (obj instanceof VisibilityScoped) { + VisibilityScoped vis = (VisibilityScoped) obj; + if (vis.isPackagePrivate() || vis.isPrivate()) { + return 0; + } + } + if (!(obj instanceof AnnotationTargetSource)) { + return 0; + } + AnnotationTargetSource ats = (AnnotationTargetSource) obj; + if (!ats.hasAnnotation(PowerNukkitOnly.class.getName())) { + ats.addAnnotation(PowerNukkitOnly.class.getName()); + log.warn("Must add @PowerNukkitOnly to " + obj); + } + return 1; + } + + @SuppressWarnings({"rawtypes", "unchecked"}) + private int removeAnnotation(Object obj) { + if (!(obj instanceof AnnotationTargetSource)) { + return 0; + } + AnnotationTargetSource ats = (AnnotationTargetSource) obj; + AnnotationSource annotation = ats.getAnnotation(PowerNukkitOnly.class.getName()); + if (annotation != null) { + //ats.removeAnnotation(annotation); + log.warn("Must remove @PowerNukkitOnly from " + obj); + return 1; + } + return 0; + } +} diff --git a/src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations2.java b/src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations2.java new file mode 100644 index 00000000000..ecd342037fd --- /dev/null +++ b/src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations2.java @@ -0,0 +1,232 @@ +package org.powernukkit.tools; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import com.google.common.base.Preconditions; +import lombok.extern.log4j.Log4j2; +import spoon.Launcher; +import spoon.reflect.CtModel; +import spoon.reflect.code.CtLambda; +import spoon.reflect.declaration.*; +import spoon.reflect.reference.CtTypeReference; + +import java.io.IOException; +import java.io.UncheckedIOException; +import java.lang.annotation.Annotation; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Locale; +import java.util.Objects; +import java.util.Optional; +import java.util.concurrent.atomic.AtomicBoolean; +import java.util.stream.Collectors; +import java.util.stream.IntStream; +import java.util.stream.Stream; + +/** + * @author joserobjr + * @since 2021-12-02 + */ +@PowerNukkitOnly +@Since("FUTURE") +@Log4j2 +public class AutoUpdatePowerNukkitOnlyAnnotations2 { + public static void main(String[] args) { + Preconditions.checkArgument(args.length == 0 || args.length == 1, "Invalid arguments"); + Path clourburstNukkitSourceCode = Paths.get(args.length == 1? args[0] : "../../org.cloudburst/Nukkit"); + + new AutoUpdatePowerNukkitOnlyAnnotations2().execute( + clourburstNukkitSourceCode.resolve("src/main/java"), + Paths.get("src/main/java") + ); + } + + private void execute(Path nukkitSrc, Path powerNukkitSrc) { + try (Stream walk = Files.walk(powerNukkitSrc)) { + walk.parallel() + .filter(Files::isRegularFile) + .filter(it-> it.getFileName().toString().toLowerCase(Locale.ENGLISH).endsWith(".java")) + .forEach(it-> update(it, nukkitSrc.resolve(powerNukkitSrc.relativize(it).toString()))); + } catch (IOException e) { + throw new UncheckedIOException(e); + } + } + + private void update(Path powerNukkitFilePath, Path nukkitFilePath) { + try { + if (!Files.isRegularFile(nukkitFilePath)) { + setFullyPowerNukkitOnly(powerNukkitFilePath); + } else { + compareDifferences(powerNukkitFilePath, nukkitFilePath); + } + } catch (IOException e) { + throw new UncheckedIOException(e); + } + } + + private String toString(CtModel javaUnit) { + return javaUnit.getAllTypes() + .stream() + .map(Object::toString) + .collect(Collectors.joining("\n\n", "", "\n")); + } + + private void setFullyPowerNukkitOnly(Path powerNukkitFilePath) throws IOException { + CtModel javaUnit = loadJavaUnit(powerNukkitFilePath); + int changes = javaUnit.getAllTypes().parallelStream().mapToInt(this::addAnnotationsToEverything).sum(); + if (changes > 0) { + log.info("{}\tchanges to\t{}", changes, powerNukkitFilePath); + //Files.write(powerNukkitFilePath, toString(javaUnit).getBytes(StandardCharsets.UTF_8)); + } + } + + private void compareDifferences(Path powerNukkitFilePath, Path nukkitFilePath) throws IOException { + CtModel pnJavaUnit = loadJavaUnit(powerNukkitFilePath); + CtModel nuJavaUnit = loadJavaUnit(nukkitFilePath); + + int changes = pnJavaUnit.getAllTypes().parallelStream() + .mapToInt(pnJavaType -> + nuJavaUnit.getAllTypes().stream() + .filter(it -> pnJavaType.getQualifiedName().equals(it.getQualifiedName())) + .findFirst() + .map(nuJavaType -> compareDifferencesBetweenTypes(pnJavaType, nuJavaType)) + .orElseGet(() -> addAnnotationsToEverything(pnJavaType)) + ).sum(); + + if (changes > 0) { + log.info("{}\tchanges to\t{}", changes, powerNukkitFilePath); + //Files.write(powerNukkitFilePath, toString(pnJavaUnit).getBytes(StandardCharsets.UTF_8)); + } + } + + private int compareDifferencesBetweenTypes(CtType pnJavaType, CtType nuJavaType) { + IntStream changeStream = IntStream.of(removeAnnotation(pnJavaType)); + AtomicBoolean needPowerNukkitOnly = new AtomicBoolean(); + IntStream stream = pnJavaType.getFields().parallelStream().filter(it-> it.isPublic() || it.isProtected()).mapToInt(pnField -> { + CtField nuField = nuJavaType.getField(pnField.getSimpleName()); + if (nuField == null || !nuField.isPublic() && !nuField.isProtected()) { + needPowerNukkitOnly.set(true); + return addAnnotation(pnField); + } + if (!nuField.getType().toString().equals(pnField.getType().toString())) { + log.error("Incompatible field change detected at {} field {}", pnJavaType.getQualifiedName(), pnField.getSimpleName()); + needPowerNukkitOnly.set(true); + return addAnnotation(pnField); + } + + return removeAnnotation(pnField); + }); + changeStream = IntStream.concat(changeStream, stream); + + stream = pnJavaType.getMethods().parallelStream().mapToInt(pnMethod -> { + if (!pnMethod.isPublic() && !pnMethod.isProtected() || pnMethod.hasAnnotation(Override.class)) { + return removeAnnotation(pnMethod); + } + + CtMethod nuMethod = nuJavaType.getMethod( + pnMethod.getSimpleName(), + pnMethod.getParameters().stream().map(CtTypedElement::getType).toArray(CtTypeReference[]::new) + ); + if (nuMethod == null || !nuMethod.isPublic() && !nuMethod.isProtected()) { + needPowerNukkitOnly.set(true); + return addAnnotation(pnMethod); + } + if (!Objects.equals(nuMethod.getSignature(), pnMethod.getSignature())) { + log.error("Incompatible method change detected at {} method {}({})", + pnJavaType.getQualifiedName(), + pnMethod.getSimpleName(), + pnMethod.getParameters().stream().map(CtParameter::getType).map(CtTypeReference::getSimpleName).collect(Collectors.joining(", ")) + ); + needPowerNukkitOnly.set(true); + return addAnnotation(pnMethod); + } + + return removeAnnotation(pnMethod); + }); + changeStream = IntStream.concat(changeStream, stream); + + int changes = changeStream.sum(); + if (!needPowerNukkitOnly.get()) { + changes += removeImport(pnJavaType); + } + return changes; + } + + private int removeImport(CtType source) { + /*if (source.hasImport(PowerNukkitOnly.class.getName())) { + imp.removeImport(PowerNukkitOnly.class.getName()); + return 1; + }*/ + return 0; + } + + private int addAnnotationsToEverything(CtType source) { + IntStream changeStream = IntStream.of(addAnnotation(source)); + changeStream = IntStream.concat(changeStream, source.getFields().parallelStream().mapToInt(this::addAnnotation)); + changeStream = IntStream.concat(changeStream, source.getMethods().parallelStream().mapToInt(this::addAnnotation)); + changeStream = IntStream.concat(changeStream, source.getNestedTypes().parallelStream().mapToInt(this::addAnnotationsToEverything)); + return changeStream.parallel().sum(); + } + + private CtModel loadJavaUnit(Path filePath) { + Launcher launcher = new Launcher(); + launcher.addInputResource(filePath.toString()); + return launcher.buildModel(); + } + + private int addAnnotation(CtElement obj) { + if (obj instanceof CtLambda) { + return 0; + } + if (obj instanceof CtConstructor || obj instanceof CtMethod || obj instanceof CtField) { + if (((CtTypeMember) obj).getDeclaringType().isAnnotationType()) { + return 0; + } + } + if (obj instanceof CtMethod && obj.hasAnnotation(Override.class)) { + return 0; + } + if (!obj.hasAnnotation(PowerNukkitOnly.class)) { + //obj.getFactory().Annotation().annotate(obj, PowerNukkitOnly.class); + log.warn("Must add annotation to " + name(obj)); + return 1; + } + return 0; + } + + private int removeAnnotation(CtElement obj) { + Optional> ctAnnotation = obj.getAnnotations().stream().filter(it -> it.getName().equals(PowerNukkitOnly.class.getName())).findFirst(); + if (!ctAnnotation.isPresent()) { + return 0; + } + //obj.removeAnnotation(ctAnnotation.get()); + log.warn("Must remove annotation from " + name(obj)); + return 1; + } + + private String name(CtElement obj) { + if (obj instanceof CtTypeInformation) { + return ((CtTypeInformation) obj).getQualifiedName(); + } else if (obj instanceof CtTypeMember) { + CtTypeMember member = (CtTypeMember) obj; + StringBuilder sb = new StringBuilder(1024) + .append(member.getDeclaringType().getQualifiedName()) + .append('#') + .append(member.getSimpleName()); + if (obj instanceof CtExecutable) { + CtExecutable executable = (CtExecutable)obj; + sb.append('(') + .append(executable.getParameters().stream() + .map(param -> param.getType().getSimpleName()) + .collect(Collectors.joining(", "))) + .append(')'); + } + return sb.toString(); + } else if (obj instanceof CtNamedElement) { + return ((CtNamedElement) obj).getSimpleName(); + } else { + return obj.toStringDebug(); + } + } +} diff --git a/src/test/resources/org/powernukkit/tools/nukkit.patch b/src/test/resources/org/powernukkit/tools/nukkit.patch new file mode 100644 index 00000000000..519d66083fb --- /dev/null +++ b/src/test/resources/org/powernukkit/tools/nukkit.patch @@ -0,0 +1,30 @@ +diff --git a/pom.xml b/pom.xml +index 9e9bea970..93ed6a857 100644 +--- a/pom.xml ++++ b/pom.xml +@@ -267,6 +267,25 @@ + ${project.build.directory}/dependency-reduced-pom.xml + + ++ ++ org.projectlombok ++ lombok-maven-plugin ++ 1.18.20.0 ++ ++ ++ generate-sources ++ ++ delombok ++ ++ ++ ++ ++ false ++ ${project.basedir}/src/main/java ++ ${project.build.directory}/delombok ++ UTF-8 ++ ++ + + pl.project13.maven + git-commit-id-plugin From e3626ae8f56de3aeb010b0df911ad9bf84eb5ec9 Mon Sep 17 00:00:00 2001 From: SupremeMortal <6178101+SupremeMortal@users.noreply.github.com> Date: Sat, 11 Dec 2021 11:37:22 +0000 Subject: [PATCH 288/394] Update Jenkinsfile --- Jenkinsfile | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9ea4f8740e0..975fd90b9ae 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,8 +9,11 @@ pipeline { } stages { stage ('Build') { + when { not { + branch "master" + }} steps { - sh 'mvn clean package' + sh 'mvn clean package -B' } post { success { @@ -32,15 +35,15 @@ pipeline { releaseRepo: "maven-releases", snapshotRepo: "maven-snapshots" ) - rtMavenResolver ( + rtMavenResolver( id: "maven-resolver", serverId: "opencollab-artifactory", - releaseRepo: "release", - snapshotRepo: "snapshot" + releaseRepo: "maven-deploy-release", + snapshotRepo: "maven-deploy-snapshot" ) rtMavenRun ( pom: 'pom.xml', - goals: 'javadoc:javadoc javadoc:jar source:jar install -DskipTests', + goals: 'javadoc:javadoc javadoc:jar source:jar install -B -DskipTests', deployerId: "maven-deployer", resolverId: "maven-resolver" ) @@ -55,6 +58,9 @@ pipeline { post { always { deleteDir() + withCredentials([string(credentialsId: 'nukkitx-discord-webhook', variable: 'DISCORD_WEBHOOK')]) { + discordSend description: "**Build:** [${currentBuild.id}](${env.BUILD_URL})\n**Status:** [${currentBuild.currentResult}](${env.BUILD_URL})", footer: 'NukkitX Jenkins', link: env.BUILD_URL, successful: currentBuild.resultIsBetterOrEqualTo('SUCCESS'), title: "${env.JOB_NAME} #${currentBuild.id}", webhookURL: DISCORD_WEBHOOK + } } } } \ No newline at end of file From 82d6898cfdb435dc73b3b38e880068e8b60e1c26 Mon Sep 17 00:00:00 2001 From: PleaseInsertNameHere <73995049+PleaseInsertNameHere@users.noreply.github.com> Date: Sat, 11 Dec 2021 13:47:19 +0100 Subject: [PATCH 289/394] Bump log4j to 2.15.0 --- pom.xml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9050293e59d..79fb8f11ec1 100644 --- a/pom.xml +++ b/pom.xml @@ -73,7 +73,7 @@ 1.8 5.7.2 3.11.2 - 2.13.3 + 2.15.0 UTF-8 UTF-8 3.9.0 @@ -176,6 +176,14 @@ com.google.code.gson gson + + org.apache.logging.log4j + log4j-api + + + org.apache.logging.log4j + log4j-core + From 0a8ef2fc20f6b634115afd28ebde62f024d6222b Mon Sep 17 00:00:00 2001 From: PleaseInsertNameHere <73995049+PleaseInsertNameHere@users.noreply.github.com> Date: Sat, 11 Dec 2021 13:52:10 +0100 Subject: [PATCH 290/394] Bump log4j to 2.15.0 | Fix build errors --- pom.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index 79fb8f11ec1..dcd3bf8d62c 100644 --- a/pom.xml +++ b/pom.xml @@ -176,14 +176,6 @@ com.google.code.gson gson - - org.apache.logging.log4j - log4j-api - - - org.apache.logging.log4j - log4j-core - @@ -195,6 +187,14 @@ com.google.code.gson gson + + org.apache.logging.log4j + log4j-api + + + org.apache.logging.log4j + log4j-core + From 250b692544a39b18abb424ff8db809827cc5689c Mon Sep 17 00:00:00 2001 From: Woder <17339354+wode490390@users.noreply.github.com> Date: Sat, 11 Dec 2021 23:34:46 +0800 Subject: [PATCH 291/394] Update Sound enum to 1.18.0 (#1924) --- src/main/java/cn/nukkit/level/Sound.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/main/java/cn/nukkit/level/Sound.java b/src/main/java/cn/nukkit/level/Sound.java index de1c7e9e26f..8552c146ad6 100644 --- a/src/main/java/cn/nukkit/level/Sound.java +++ b/src/main/java/cn/nukkit/level/Sound.java @@ -780,14 +780,25 @@ public enum Sound { MOB_ZOMBIEPIG_ZPIGDEATH("mob.zombiepig.zpigdeath"), MOB_ZOMBIEPIG_ZPIGHURT("mob.zombiepig.zpighurt"), MUSIC_GAME("music.game"), + MUSIC_GAME_BASALT_DELTAS("music.game.basalt_deltas"), MUSIC_GAME_CREATIVE("music.game.creative"), MUSIC_GAME_CREDITS("music.game.credits"), MUSIC_GAME_CRIMSON_FOREST("music.game.crimson_forest"), + MUSIC_GAME_DRIPSTONE_CAVES("music.game.dripstone_caves"), MUSIC_GAME_END("music.game.end"), MUSIC_GAME_ENDBOSS("music.game.endboss"), + MUSIC_GAME_FROZEN_PEAKS("music.game.frozen_peaks"), + MUSIC_GAME_GROVE("music.game.grove"), + MUSIC_GAME_JAGGED_PEAKS("music.game.jagged_peaks"), + MUSIC_GAME_LUSH_CAVES("music.game.lush_caves"), + MUSIC_GAME_MEADOW("music.game.meadow"), MUSIC_GAME_NETHER("music.game.nether"), MUSIC_GAME_NETHER_WASTES("music.game.nether_wastes"), + MUSIC_GAME_SNOWY_SLOPES("music.game.snowy_slopes"), + MUSIC_GAME_SOUL_SAND_VALLEY("music.game.soul_sand_valley"), MUSIC_GAME_SOULSAND_VALLEY("music.game.soulsand_valley"), + MUSIC_GAME_STONY_PEAKS("music.game.stony_peaks"), + MUSIC_GAME_WARPED_FOREST("music.game.warped_forest"), MUSIC_GAME_WATER("music.game.water"), MUSIC_MENU("music.menu"), NOTE_BANJO("note.banjo"), @@ -875,6 +886,7 @@ public enum Sound { RECORD_FAR("record.far"), RECORD_MALL("record.mall"), RECORD_MELLOHI("record.mellohi"), + RECORD_OTHERSIDE("record.otherside"), RECORD_PIGSTEP("record.pigstep"), RECORD_STAL("record.stal"), RECORD_STRAD("record.strad"), From a9db8b9a75f9f5b63640c2d59e7e59f30d73dd41 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 16:47:24 -0300 Subject: [PATCH 292/394] Change AnvilDamageEvent to match Nukkit plus extra functionalities --- .../nukkit/event/block/AnvilDamageEvent.java | 194 ++++++++---------- .../transaction/RepairItemTransaction.java | 18 +- .../transaction/action/DamageAnvilAction.java | 2 +- 3 files changed, 102 insertions(+), 112 deletions(-) diff --git a/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java b/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java index 08e5324da49..66e5c7d688b 100644 --- a/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java +++ b/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java @@ -2,26 +2,22 @@ import cn.nukkit.Player; import cn.nukkit.api.DeprecationDetails; -import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.block.Block; +import cn.nukkit.block.BlockAnvil; +import cn.nukkit.blockproperty.value.AnvilDamage; +import cn.nukkit.blockstate.BlockState; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; import cn.nukkit.inventory.transaction.CraftingTransaction; -import lombok.RequiredArgsConstructor; +import com.google.common.base.Preconditions; import javax.annotation.Nonnull; import javax.annotation.Nullable; -@PowerNukkitDifference(info = "Extends BlockFadeEvent instead of BlockEvent only in PowerNukkit") -@Deprecated @DeprecationDetails(since = "1.4.0.0-PN", - reason = "This is only a warning, this event will change in 1.5.0.0-PN, " + - "it will no longer extend BlockFadeEvent and the cause enum will be renamed!", - toBeRemovedAt = "The class will have a breaking change in 1.5.0.0-PN" -) @Since("1.1.1.0-PN") -public class AnvilDamageEvent extends BlockFadeEvent implements Cancellable { +public class AnvilDamageEvent extends BlockEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); @@ -29,120 +25,134 @@ public class AnvilDamageEvent extends BlockFadeEvent implements Cancellable { public static HandlerList getHandlers() { return handlers; } - + + @Nullable private final Player player; + + @Nullable private final CraftingTransaction transaction; + + @Nonnull private final DamageCause cause; + @Nonnull + private final BlockState oldState; + + @Nonnull + private BlockState newState; + @Since("1.4.0.0-PN") - public AnvilDamageEvent(Block block, int oldDamage, int newDamage, DamageCause cause, Player player) { - this(adjustBlock(block, oldDamage), adjustBlock(block, newDamage), player, null, cause); + public AnvilDamageEvent(@Nonnull Block block, int oldDamage, int newDamage, @Nonnull DamageCause cause, @Nullable Player player) { + this(adjustBlock(block, oldDamage), block.getCurrentState().withData(newDamage), player, null, cause); } @PowerNukkitOnly @Since("1.4.0.0-PN") - public AnvilDamageEvent(Block block, Block newState, Player player, @Nullable CraftingTransaction transaction, DamageCause cause) { - super(block, newState); + public AnvilDamageEvent(@Nonnull Block block, @Nonnull Block newState, @Nullable Player player, @Nullable CraftingTransaction transaction, @Nonnull DamageCause cause) { + this(block, newState.getCurrentState(), player, transaction, cause); + } + + @PowerNukkitOnly + @Since("FUTURE") + public AnvilDamageEvent(@Nonnull Block block, @Nonnull BlockState newState, @Nullable Player player, @Nullable CraftingTransaction transaction, @Nonnull DamageCause cause) { + super(Preconditions.checkNotNull(block, "block").clone()); + this.oldState = block.getCurrentState(); this.player = player; this.transaction = transaction; - this.cause = cause; + this.cause = Preconditions.checkNotNull(cause, "cause"); + this.newState = Preconditions.checkNotNull(newState, "newState"); } @PowerNukkitOnly @Since("1.1.1.0-PN") - public AnvilDamageEvent(Block block, Block newState, Player player, CraftingTransaction transaction, Cause cause) { - this(block, newState, player, transaction, convert(cause)); - } - - - @Since("1.1.1.0-PN") - public Player getPlayer() { - return player; - } - - - @PowerNukkitOnly - @Since("1.1.1.0-PN") + @Nullable public CraftingTransaction getTransaction() { return transaction; } @PowerNukkitOnly @Since("1.4.0.0-PN") + @Nonnull public DamageCause getDamageCause() { return cause; } - + @Deprecated + @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Unstable use of raw block state data", replaceWith = "getOldAnvilDamage or getOldBlockState") @Since("1.4.0.0-PN") public int getOldDamage() { - return getBlock().getDamage(); + return block.getDamage(); + } + + @PowerNukkitOnly + @Since("FUTURE") + @Nullable + public AnvilDamage getOldAnvilDamage() { + if (oldState.getProperties().contains(BlockAnvil.DAMAGE)) { + return oldState.getPropertyValue(BlockAnvil.DAMAGE); + } + return null; } + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public BlockState getOldBlockState() { + return oldState; + } + + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public BlockState getNewBlockState() { + return newState; + } + + @PowerNukkitOnly("Used to be inherited from BlockFadeEvent") + @Since("1.1.1.0-PN") + @Nonnull + public Block getNewState() { + return newState.getBlockRepairing(block); + } + + @Deprecated + @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Unstable use of raw block state data", replaceWith = "getNewAnvilDamage or getNewBlockState") @Since("1.4.0.0-PN") public int getNewDamage() { return getNewState().getDamage(); } + @PowerNukkitOnly + @Since("FUTURE") + public void setNewBlockState(@Nonnull BlockState state) { + this.newState = Preconditions.checkNotNull(state); + } + + @Deprecated + @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Unstable use of raw block state data", + replaceWith = "setNewBlockState example: setNewBlockState(BlockState.of(BlockID.ANVIL).withProperty(BlockAnvil.DAMAGE, AnvilDamage.VERY_DAMAGED))") @Since("1.4.0.0-PN") public void setNewDamage(int newDamage) { getNewState().setDamage(newDamage); } @PowerNukkitOnly - @Since("1.1.1.0-PN") - @Deprecated @DeprecationDetails( - since = "1.4.0.0-PN", by = "PowerNukkit", - reason = "NukkitX added the class and made getCause() return an enum with a different name.", - replaceWith = "getDamageCause()", - toBeRemovedAt = "1.6.0.0-PN" - ) - public Cause getCause() { - return convert(cause); + @Since("FUTURE") + public void setNewState(@Nonnull Block block) { + this.newState = block.getCurrentState(); } @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public DamageCause getCause() { + return this.cause; + } + @Since("1.1.1.0-PN") - @Deprecated @DeprecationDetails( - since = "1.4.0.0-PN", by = "PowerNukkit", - reason = "NukkitX added the class but with a different enum for the damage cause", - replaceWith = "DamageCause", - toBeRemovedAt = "1.6.0.0-PN" - ) - @RequiredArgsConstructor - public enum Cause { - @PowerNukkitOnly - @Since("1.1.1.0-PN") - @Deprecated @DeprecationDetails( - since = "1.4.0.0-PN", by = "PowerNukkit", - reason = "NukkitX added the class but with a different enum for the damage cause", - replaceWith = "DamageCause.USE", - toBeRemovedAt = "1.6.0.0-PN" - ) - USE, - - @PowerNukkitOnly - @Since("1.1.1.0-PN") - @Deprecated @DeprecationDetails( - since = "1.4.0.0-PN", by = "PowerNukkit", - reason = "NukkitX added the class but with a different enum for the damage cause", - replaceWith = "DamageCause.FALL", - toBeRemovedAt = "1.6.0.0-PN" - ) - IMPACT; - - @PowerNukkitOnly - @Since("1.4.0.0-PN") - @Deprecated @DeprecationDetails( - since = "1.4.0.0-PN", by = "PowerNukkit", - reason = "This is method is only a temporary helper, it will also be removed in future", - replaceWith = "Direct usage of DamageCause", - toBeRemovedAt = "1.6.0.0-PN" - ) - @Nonnull - public DamageCause getDamageCause() { - return DamageCause.valueOf(name()); - } + @Nullable + public Player getPlayer() { + return this.player; } @Since("1.4.0.0-PN") @@ -152,30 +162,8 @@ public enum DamageCause { } private static Block adjustBlock(Block block, int damage) { - Block adjusted = block.clone(); - adjusted.setDamage(damage); + Block adjusted = Preconditions.checkNotNull(block, "block").clone(); + adjusted.setDataStorage(damage); return adjusted; } - - private static DamageCause convert(Cause cause) { - switch (cause) { - case USE: - return DamageCause.USE; - case IMPACT: - return DamageCause.FALL; - default: - return null; - } - } - - private static Cause convert(DamageCause cause) { - switch (cause) { - case USE: - return Cause.USE; - case FALL: - return Cause.IMPACT; - default: - return null; - } - } } diff --git a/src/main/java/cn/nukkit/inventory/transaction/RepairItemTransaction.java b/src/main/java/cn/nukkit/inventory/transaction/RepairItemTransaction.java index 898dc72a116..5e2374a9ab0 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/RepairItemTransaction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/RepairItemTransaction.java @@ -3,6 +3,10 @@ import cn.nukkit.Player; import cn.nukkit.api.Since; import cn.nukkit.block.Block; +import cn.nukkit.block.BlockAnvil; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockproperty.value.AnvilDamage; +import cn.nukkit.blockstate.BlockState; import cn.nukkit.event.block.AnvilDamageEvent; import cn.nukkit.event.block.AnvilDamageEvent.DamageCause; import cn.nukkit.event.inventory.RepairItemEvent; @@ -86,17 +90,15 @@ public boolean execute() { ev.setCancelled(oldDamage == newDamage); this.source.getServer().getPluginManager().callEvent(ev); if (!ev.isCancelled()) { - newDamage = ev.getNewDamage(); - if (newDamage > 2) { + BlockState newState = ev.getNewBlockState(); + if (newState.getBlockId() == BlockID.AIR + || newState.getBlockId() == BlockID.ANVIL && newState.getPropertyValue(BlockAnvil.DAMAGE).equals(AnvilDamage.BROKEN)) { this.source.level.setBlock(block, Block.get(Block.AIR), true); this.source.level.addLevelEvent(block, LevelEventPacket.EVENT_SOUND_ANVIL_BREAK); } else { - if (newDamage < 0) { - newDamage = 0; - } - if (newDamage != oldDamage) { - block.setDamage((newDamage << 2) | (block.getDamage() & 0x3)); - this.source.level.setBlock(block, block, true); + if (!newState.equals(ev.getOldBlockState())) { + Block newBlock = newState.getBlockRepairing(block); + this.source.level.setBlock(block, newBlock, true); } this.source.level.addLevelEvent(block, LevelEventPacket.EVENT_SOUND_ANVIL_USE); } diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/DamageAnvilAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/DamageAnvilAction.java index 825caff7b17..1a9117cd86d 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/DamageAnvilAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/DamageAnvilAction.java @@ -46,7 +46,7 @@ public boolean execute(Player source) { } else { newState.setDamage(newState.getDamage() & (Block.DATA_MASK ^ 0b1100) | (damage << 2)); } - AnvilDamageEvent ev = new AnvilDamageEvent(levelBlock, newState, source, transaction, AnvilDamageEvent.Cause.USE); + AnvilDamageEvent ev = new AnvilDamageEvent(levelBlock, newState, source, transaction, AnvilDamageEvent.DamageCause.USE); ev.setCancelled(!shouldDamage); source.getServer().getPluginManager().callEvent(ev); if (ev.isCancelled()) { From 29ab14df8e5ec6619ae237bb88da2d40b0f29e9c Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 17:40:48 -0300 Subject: [PATCH 293/394] Remove incorrect PowerNukkitOnly annotations --- dumps/needed-class-changes.json | 3252 +++++++---------- src/main/java/cn/nukkit/Player.java | 3 - src/main/java/cn/nukkit/Server.java | 2 - src/main/java/cn/nukkit/block/Block.java | 2 - src/main/java/cn/nukkit/block/BlockBed.java | 9 +- .../java/cn/nukkit/block/BlockEndPortal.java | 4 +- src/main/java/cn/nukkit/block/BlockFire.java | 4 - .../java/cn/nukkit/block/BlockItemFrame.java | 3 +- src/main/java/cn/nukkit/block/BlockLoom.java | 1 - .../cn/nukkit/block/BlockNetherWartBlock.java | 6 +- .../java/cn/nukkit/block/BlockRedstone.java | 2 - .../java/cn/nukkit/block/BlockSeaLantern.java | 3 - .../java/cn/nukkit/block/BlockTurtleEgg.java | 1 - .../BigIntegerMutableBlockState.java | 2 - .../blockstate/ByteMutableBlockState.java | 2 - .../blockstate/IntMutableBlockState.java | 2 - .../blockstate/LongMutableBlockState.java | 2 - .../nukkit/blockstate/MutableBlockState.java | 2 - .../command/CapturingCommandSender.java | 29 +- src/main/java/cn/nukkit/entity/Entity.java | 8 +- .../projectile/EntityThrownTrident.java | 26 - .../nukkit/event/block/AnvilDamageEvent.java | 1 - .../event/entity/EntityDamageEvent.java | 6 +- src/main/java/cn/nukkit/item/Item.java | 18 +- .../java/cn/nukkit/item/ItemArmorStand.java | 4 - .../cn/nukkit/item/ItemBannerPattern.java | 4 - .../cn/nukkit/item/ItemChorusFruitPopped.java | 5 +- .../java/cn/nukkit/item/ItemDragonBreath.java | 5 - src/main/java/cn/nukkit/item/ItemID.java | 4 +- src/main/java/cn/nukkit/item/ItemLead.java | 5 - .../java/cn/nukkit/item/ItemNuggetIron.java | 5 - .../java/cn/nukkit/item/ItemRabbitHide.java | 5 - .../nukkit/item/ItemWarpedFungusOnAStick.java | 5 - .../enchantment/sideeffect/SideEffect.java | 4 +- .../sideeffect/SideEffectCombust.java | 14 +- src/main/java/cn/nukkit/level/Level.java | 10 +- .../level/format/anvil/MultiLayerStorage.java | 1 - .../level/format/anvil/util/BlockStorage.java | 2 - .../level/format/generic/BaseChunk.java | 1 - .../cn/nukkit/level/particle/Particle.java | 2 +- .../network/protocol/ItemComponentPacket.java | 4 +- ...sitionTrackingDBServerBroadcastPacket.java | 2 - .../tools/AnnotationProblemScanner.java | 137 +- 43 files changed, 1471 insertions(+), 2138 deletions(-) diff --git a/dumps/needed-class-changes.json b/dumps/needed-class-changes.json index a7124ed8f24..22042f7c511 100644 --- a/dumps/needed-class-changes.json +++ b/dumps/needed-class-changes.json @@ -1,278 +1,276 @@ { - "cn.nukkit.level.biome.impl.ocean.OceanBiome": { + "cn.nukkit.Nukkit": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.ocean.OceanBiome#getGroundBlock(int)" + "cn.nukkit.Nukkit#GIT_COMMIT" ] }, - "cn.nukkit.block.BlockCobweb": { + "cn.nukkit.Player": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCobweb#diffusesSkyLight()" + "cn.nukkit.Player#addExperience(int, boolean)", + "cn.nukkit.Player#onBlock(Entity, boolean)", + "cn.nukkit.Player#setExperience(int, int, boolean)", + "cn.nukkit.Player#(SourceInterface, Long, String, int)" ] }, - "cn.nukkit.dispenser.DropperDispenseBehavior": { + "cn.nukkit.Server": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.DropperDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + "cn.nukkit.Server#getGitCommit()", + "cn.nukkit.Server#isRedstoneEnabled()", + "cn.nukkit.Server#setRedstoneEnabled(boolean)" ] }, - "cn.nukkit.block.BlockStonecutterBlock": { + "cn.nukkit.api.DeprecationDetails": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStonecutterBlock#getToolTier()" + "cn.nukkit.api.DeprecationDetails#by()", + "cn.nukkit.api.DeprecationDetails#reason()", + "cn.nukkit.api.DeprecationDetails#replaceWith()", + "cn.nukkit.api.DeprecationDetails#since()", + "cn.nukkit.api.DeprecationDetails#toBeRemovedAt()" ] }, - "cn.nukkit.block.BlockSpruceWallSign": { + "cn.nukkit.api.PowerNukkitOnly": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSpruceWallSign#getPostId()" + "cn.nukkit.api.PowerNukkitOnly#value()" ] }, - "cn.nukkit.entity.data.IntEntityData": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.data.IntEntityData#getData()", - "cn.nukkit.entity.data.IntEntityData#setData(Integer)" + "cn.nukkit.api.Since": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.api.Since#value()" ] }, - "cn.nukkit.network.protocol.AdventureSettingsPacket": { - "addOverrideAnnotation": [ - "cn.nukkit.network.protocol.AdventureSettingsPacket#decode()", - "cn.nukkit.network.protocol.AdventureSettingsPacket#encode()" + "cn.nukkit.block.Block": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.Block#diffusesSkyLight", + "cn.nukkit.block.Block#asItemBlock()", + "cn.nukkit.block.Block#breaksWhenMoved()", + "cn.nukkit.block.Block#canBePulled()", + "cn.nukkit.block.Block#canWaterloggingFlowInto()", + "cn.nukkit.block.Block#down(int, int)", + "cn.nukkit.block.Block#east(int, int)", + "cn.nukkit.block.Block#firstInLayers(int, Predicate)", + "cn.nukkit.block.Block#firstInLayers(Predicate)", + "cn.nukkit.block.Block#get(int, Level, int, int, int, int)", + "cn.nukkit.block.Block#get(int, Integer, Position, int)", + "cn.nukkit.block.Block#getBlock()", + "cn.nukkit.block.Block#getItemId()", + "cn.nukkit.block.Block#getSideAtLayer(int, BlockFace)", + "cn.nukkit.block.Block#getSideAtLayer(int, BlockFace, int)", + "cn.nukkit.block.Block#north(int, int)", + "cn.nukkit.block.Block#south(int, int)", + "cn.nukkit.block.Block#sticksToPiston()", + "cn.nukkit.block.Block#up(int, int)", + "cn.nukkit.block.Block#west(int, int)" ] }, - "cn.nukkit.block.BlockStairsSmoothQuartz": { + "cn.nukkit.block.BlockAllow": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsSmoothQuartz#getToolTier()" + "cn.nukkit.block.BlockAllow#canBePulled()" ] }, - "cn.nukkit.level.format.anvil.util.ImmutableBlockStorage": { + "cn.nukkit.block.BlockAnvil": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.anvil.util.ImmutableBlockStorage#setBlockState(int, BlockState)" + "cn.nukkit.block.BlockAnvil#getToolTier()" ] }, - "cn.nukkit.block.BlockLiquid": { + "cn.nukkit.block.BlockBanner": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLiquid#breaksWhenMoved()", - "cn.nukkit.block.BlockLiquid#sticksToPiston()", - "cn.nukkit.block.BlockLiquid#usesWaterLogging()" + "cn.nukkit.block.BlockBanner#breaksWhenMoved()" ] }, - "cn.nukkit.block.BlockCobblestone": { + "cn.nukkit.block.BlockBasalt": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCobblestone#getToolTier()" + "cn.nukkit.block.BlockBasalt#getToolTier()" ] }, - "cn.nukkit.entity.passive.EntityTurtle": { + "cn.nukkit.block.BlockBeacon": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.passive.EntityTurtle#setBreedingAge(int)", - "cn.nukkit.entity.passive.EntityTurtle#setHomePos(Vector3)" + "cn.nukkit.block.BlockBeacon#canBePulled()" ] }, - "cn.nukkit.item.ProjectileItem": { - "addOverrideAnnotation": [ - "cn.nukkit.item.ProjectileItem#onClickAir(Player, Vector3)" - ], + "cn.nukkit.block.BlockBed": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ProjectileItem#addThrowSound(Player)", - "cn.nukkit.item.ProjectileItem#correctProjectile(Player, Entity)" + "cn.nukkit.block.BlockBed#breaksWhenMoved()", + "cn.nukkit.block.BlockBed#sticksToPiston()" ] }, - "cn.nukkit.command.CapturingCommandSender": { - "addOverrideAnnotation": [ - "cn.nukkit.command.CapturingCommandSender#getName()", - "cn.nukkit.command.CapturingCommandSender#isOp()", - "cn.nukkit.command.CapturingCommandSender#setOp(boolean)" - ], + "cn.nukkit.block.BlockBedrock": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.command.CapturingCommandSender#getCleanCapture()", - "cn.nukkit.command.CapturingCommandSender#getRawCapture()", - "cn.nukkit.command.CapturingCommandSender#resetCapture()", - "cn.nukkit.command.CapturingCommandSender#setName(String)", - "cn.nukkit.command.CapturingCommandSender#toString()" + "cn.nukkit.block.BlockBedrock#canBePulled()" ] }, - "cn.nukkit.block.BlockStairsSmoothRedSandstone": { + "cn.nukkit.block.BlockBedrockInvisible": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsSmoothRedSandstone#getToolTier()" + "cn.nukkit.block.BlockBedrockInvisible#canBePulled()" ] }, - "cn.nukkit.block.BlockRedstoneWire": { - "addOverrideAnnotation": [ - "cn.nukkit.block.BlockRedstoneWire#getStrongPower(BlockFace)", - "cn.nukkit.block.BlockRedstoneWire#getWeakPower(BlockFace)" - ], + "cn.nukkit.block.BlockBell": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockRedstoneWire#canBePlacedOn(Block)" + "cn.nukkit.block.BlockBell#getAttachmentType()", + "cn.nukkit.block.BlockBell#getToolTier()", + "cn.nukkit.block.BlockBell#setAttachmentType(int)" ] }, - "cn.nukkit.entity.EntityLiving": { + "cn.nukkit.block.BlockBorder": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.EntityLiving#isBlocking()", - "cn.nukkit.entity.EntityLiving#onBlock(Entity, boolean)", - "cn.nukkit.entity.EntityLiving#setBlocking(boolean)" + "cn.nukkit.block.BlockBorder#canBePulled()" ] }, - "cn.nukkit.api.Since": { + "cn.nukkit.block.BlockBrewingStand": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.api.Since#value()" + "cn.nukkit.block.BlockBrewingStand#getToolTier()" ] }, - "cn.nukkit.blockentity.BlockEntityDispenser": { + "cn.nukkit.block.BlockBricks": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityDispenser#createInventory()", - "cn.nukkit.blockentity.BlockEntityDispenser#getBlockEntityName()" + "cn.nukkit.block.BlockBricks#getToolTier()" ] }, - "cn.nukkit.entity.mob.EntityEvoker": { + "cn.nukkit.block.BlockBricksEndStone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityEvoker#isPreventingSleep(Player)" + "cn.nukkit.block.BlockBricksEndStone#getToolTier()" ] }, - "cn.nukkit.blockentity.BlockEntityFurnace": { + "cn.nukkit.block.BlockBricksNether": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityFurnace#getBurningBlockId()", - "cn.nukkit.blockentity.BlockEntityFurnace#getClientName()", - "cn.nukkit.blockentity.BlockEntityFurnace#getFurnaceName()", - "cn.nukkit.blockentity.BlockEntityFurnace#getIdleBlockId()", - "cn.nukkit.blockentity.BlockEntityFurnace#getInventoryType()", - "cn.nukkit.blockentity.BlockEntityFurnace#getSpeedMultiplier()", - "cn.nukkit.blockentity.BlockEntityFurnace#matchRecipe(Item)", - "cn.nukkit.blockentity.BlockEntityFurnace#setBurning(boolean)" + "cn.nukkit.block.BlockBricksNether#getToolTier()" ] }, - "cn.nukkit.entity.mob.EntityElderGuardian": { + "cn.nukkit.block.BlockBricksRedNether": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityElderGuardian#isPreventingSleep(Player)" + "cn.nukkit.block.BlockBricksRedNether#getToolTier()" ] }, - "cn.nukkit.utils.InvalidBlockDamageException": { + "cn.nukkit.block.BlockBricksStone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.InvalidBlockDamageException#canEqual(Object)", - "cn.nukkit.utils.InvalidBlockDamageException#equals(Object)", - "cn.nukkit.utils.InvalidBlockDamageException#hashCode()" + "cn.nukkit.block.BlockBricksStone#getToolTier()" ] }, - "cn.nukkit.block.BlockPistonHead": { + "cn.nukkit.block.BlockButtonStone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPistonHead#canBePulled()", - "cn.nukkit.block.BlockPistonHead#getBlockFace()" + "cn.nukkit.block.BlockButtonStone#getToolTier()" + ] + }, + "cn.nukkit.block.BlockCactus": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCactus#breaksWhenMoved()", + "cn.nukkit.block.BlockCactus#sticksToPiston()" ] }, "cn.nukkit.block.BlockCake": { - "addOverrideAnnotation": [ - "cn.nukkit.block.BlockCake#getComparatorInputOverride()", - "cn.nukkit.block.BlockCake#hasComparatorInputOverride()" - ], "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockCake#breaksWhenMoved()", "cn.nukkit.block.BlockCake#sticksToPiston()" ] }, - "cn.nukkit.entity.data.FloatEntityData": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.data.FloatEntityData#getData()", - "cn.nukkit.entity.data.FloatEntityData#setData(Float)" + "cn.nukkit.block.BlockCampfire": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCampfire#breaksWhenMoved()", + "cn.nukkit.block.BlockCampfire#canBePulled()" ] }, - "cn.nukkit.OfflinePlayer": { - "addOverrideAnnotation": [ - "cn.nukkit.OfflinePlayer#getMetadata(String)", - "cn.nukkit.OfflinePlayer#getServer()", - "cn.nukkit.OfflinePlayer#hasMetadata(String)", - "cn.nukkit.OfflinePlayer#removeMetadata(String, Plugin)", - "cn.nukkit.OfflinePlayer#setMetadata(String, MetadataValue)" + "cn.nukkit.block.BlockCarpet": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCarpet#getProperties()" ] }, - "cn.nukkit.positiontracking.PositionTrackingStorage": { + "cn.nukkit.block.BlockCarvedPumpkin": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.positiontracking.PositionTrackingStorage#close()", - "cn.nukkit.positiontracking.PositionTrackingStorage#finalize()" + "cn.nukkit.block.BlockCarvedPumpkin#()" ] }, - "cn.nukkit.item.randomitem.ConstantItemSelector": { - "addOverrideAnnotation": [ - "cn.nukkit.item.randomitem.ConstantItemSelector#select()" + "cn.nukkit.block.BlockCauldron": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCauldron#getFillLevel()", + "cn.nukkit.block.BlockCauldron#getToolTier()", + "cn.nukkit.block.BlockCauldron#setFillLevel(int)" ] }, - "cn.nukkit.level.biome.type.SandyBiome": { + "cn.nukkit.block.BlockCauldronLava": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.type.SandyBiome#getGroundBlock(int)", - "cn.nukkit.level.biome.type.SandyBiome#getGroundDepth(int)", - "cn.nukkit.level.biome.type.SandyBiome#getSurfaceBlock(int)", - "cn.nukkit.level.biome.type.SandyBiome#getSurfaceDepth(int)" + "cn.nukkit.block.BlockCauldronLava#setFillLevel(int)" ] }, - "cn.nukkit.entity.projectile.EntitySnowball": { + "cn.nukkit.block.BlockChorusFlower": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.projectile.EntitySnowball#addHitEffect()" + "cn.nukkit.block.BlockChorusFlower#breaksWhenMoved()", + "cn.nukkit.block.BlockChorusFlower#sticksToPiston()" ] }, - "cn.nukkit.block.BlockSignPost": { + "cn.nukkit.block.BlockChorusPlant": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSignPost#breaksWhenMoved()", - "cn.nukkit.block.BlockSignPost#getPostId()", - "cn.nukkit.block.BlockSignPost#getWallId()" + "cn.nukkit.block.BlockChorusPlant#breaksWhenMoved()", + "cn.nukkit.block.BlockChorusPlant#sticksToPiston()" ] }, - "cn.nukkit.entity.mob.EntityBlaze": { + "cn.nukkit.block.BlockCoal": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityBlaze#isPreventingSleep(Player)" + "cn.nukkit.block.BlockCoal#getToolTier()" ] }, - "cn.nukkit.math.AtomicIntIncrementSupplier": { + "cn.nukkit.block.BlockCobblestone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.math.AtomicIntIncrementSupplier#getAsInt()" + "cn.nukkit.block.BlockCobblestone#getToolTier()" ] }, - "cn.nukkit.dispenser.FlintAndSteelDispenseBehavior": { + "cn.nukkit.block.BlockCocoa": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.FlintAndSteelDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + "cn.nukkit.block.BlockCocoa#breaksWhenMoved()", + "cn.nukkit.block.BlockCocoa#getGrowthStage()", + "cn.nukkit.block.BlockCocoa#grow()", + "cn.nukkit.block.BlockCocoa#sticksToPiston()" ] }, - "cn.nukkit.inventory.GrindstoneInventory": { + "cn.nukkit.block.BlockConcrete": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.GrindstoneInventory#updateResult(boolean)" + "cn.nukkit.block.BlockConcrete#getToolTier()" ] }, - "cn.nukkit.block.BlockWoodStrippedOak": { + "cn.nukkit.block.BlockConcretePowder": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStrippedOak#getWoodType()" + "cn.nukkit.block.BlockConcretePowder#getDyeColor()" ] }, - "cn.nukkit.entity.data.ByteEntityData": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.data.ByteEntityData#getData()", - "cn.nukkit.entity.data.ByteEntityData#setData(Integer)" + "cn.nukkit.block.BlockCoralFanDead": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCoralFanDead#isDead()" ] }, - "cn.nukkit.item.ItemHoeNetherite": { + "cn.nukkit.block.BlockCoralFanHang": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemHoeNetherite#isLavaResistant()" + "cn.nukkit.block.BlockCoralFanHang#getRootsFace()", + "cn.nukkit.block.BlockCoralFanHang#getType()", + "cn.nukkit.block.BlockCoralFanHang#isDead()" ] }, - "cn.nukkit.level.biome.type.GrassyBiome": { + "cn.nukkit.block.BlockCoralFanHang2": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.type.GrassyBiome#getGroundBlock(int)", - "cn.nukkit.level.biome.type.GrassyBiome#getSurfaceBlock(int)" + "cn.nukkit.block.BlockCoralFanHang2#getType()" ] }, - "cn.nukkit.nbt.stream.FastByteArrayOutputStream": { - "addOverrideAnnotation": [ - "cn.nukkit.nbt.stream.FastByteArrayOutputStream#write(byte[], int, int)", - "cn.nukkit.nbt.stream.FastByteArrayOutputStream#write(int)" + "cn.nukkit.block.BlockCoralFanHang3": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockCoralFanHang3#getType()" ] }, - "cn.nukkit.entity.mob.EntityWitherSkeleton": { + "cn.nukkit.block.BlockDaylightDetector": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityWitherSkeleton#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityWitherSkeleton#isUndead()" + "cn.nukkit.block.BlockDaylightDetector#isInverted()", + "cn.nukkit.block.BlockDaylightDetector#updatePower()" + ] + }, + "cn.nukkit.block.BlockDaylightDetectorInverted": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDaylightDetectorInverted#isInverted()" ] }, - "cn.nukkit.network.protocol.UpdateAttributesPacket": { - "addOverrideAnnotation": [ - "cn.nukkit.network.protocol.UpdateAttributesPacket#decode()", - "cn.nukkit.network.protocol.UpdateAttributesPacket#encode()" + "cn.nukkit.block.BlockDeny": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDeny#canBePulled()" ] }, - "cn.nukkit.inventory.BlastFurnaceRecipe": { + "cn.nukkit.block.BlockDiamond": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.BlastFurnaceRecipe#getInput()" + "cn.nukkit.block.BlockDiamond#getToolTier()" ] }, "cn.nukkit.block.BlockDispenser": { @@ -282,962 +280,760 @@ "cn.nukkit.block.BlockDispenser#getToolTier()" ] }, - "cn.nukkit.entity.projectile.EntityEgg": { + "cn.nukkit.block.BlockDoor": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.projectile.EntityEgg#addHitEffect()" + "cn.nukkit.block.BlockDoor#PROPERTIES", + "cn.nukkit.block.BlockDoor#breaksWhenMoved()", + "cn.nukkit.block.BlockDoor#sticksToPiston()" ] }, - "cn.nukkit.level.biome.impl.taiga.ColdTaigaBiome": { + "cn.nukkit.block.BlockDoorIron": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.taiga.ColdTaigaBiome#getCoverBlock()" + "cn.nukkit.block.BlockDoorIron#getToolTier()" ] }, - "cn.nukkit.block.BlockPistonSticky": { + "cn.nukkit.block.BlockDoubleSlabBlackstone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPistonSticky#getPistonHeadBlockId()" + "cn.nukkit.block.BlockDoubleSlabBlackstone#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabBlackstone#getSlabName()" ] }, - "cn.nukkit.inventory.transaction.CraftingTransaction": { - "addOverrideAnnotation": [ - "cn.nukkit.inventory.transaction.CraftingTransaction#callExecuteEvent()", - "cn.nukkit.inventory.transaction.CraftingTransaction#canExecute()", - "cn.nukkit.inventory.transaction.CraftingTransaction#execute()", - "cn.nukkit.inventory.transaction.CraftingTransaction#sendInventories()" - ], + "cn.nukkit.block.BlockDoubleSlabBlackstonePolished": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.transaction.CraftingTransaction#recipe", - "cn.nukkit.inventory.transaction.CraftingTransaction#craftingType" - ] - }, - "cn.nukkit.item.ItemNuggetIron": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemNuggetIron" + "cn.nukkit.block.BlockDoubleSlabBlackstonePolished#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabBlackstonePolished#getSlabName()" ] }, - "cn.nukkit.block.BlockLeaves": { + "cn.nukkit.block.BlockDoubleSlabBrickBlackstonePolished": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLeaves#breaksWhenMoved()", - "cn.nukkit.block.BlockLeaves#diffusesSkyLight()", - "cn.nukkit.block.BlockLeaves#sticksToPiston()" + "cn.nukkit.block.BlockDoubleSlabBrickBlackstonePolished#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabBrickBlackstonePolished#getSlabName()" ] }, - "cn.nukkit.block.BlockVinesNether": { + "cn.nukkit.block.BlockDoubleSlabCrimson": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockVinesNether#breaksWhenMoved()", - "cn.nukkit.block.BlockVinesNether#sticksToPiston()" + "cn.nukkit.block.BlockDoubleSlabCrimson#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabCrimson#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabCrimson#isCorrectTool(Item)" ] }, - "cn.nukkit.entity.mob.EntityVindicator": { + "cn.nukkit.block.BlockDoubleSlabRedSandstone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityVindicator#isPreventingSleep(Player)" + "cn.nukkit.block.BlockDoubleSlabRedSandstone#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabRedSandstone#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabRedSandstone#getToolTier()" ] }, - "cn.nukkit.block.BlockSoulSand": { + "cn.nukkit.block.BlockDoubleSlabStone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSoulSand#isSoulSpeedCompatible()" + "cn.nukkit.block.BlockDoubleSlabStone#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabStone#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabStone#getToolTier()" ] }, - "cn.nukkit.inventory.transaction.action.DropItemAction": { - "addOverrideAnnotation": [ - "cn.nukkit.inventory.transaction.action.DropItemAction#execute(Player)", - "cn.nukkit.inventory.transaction.action.DropItemAction#isValid(Player)", - "cn.nukkit.inventory.transaction.action.DropItemAction#onExecuteFail(Player)", - "cn.nukkit.inventory.transaction.action.DropItemAction#onExecuteSuccess(Player)" + "cn.nukkit.block.BlockDoubleSlabStone3": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockDoubleSlabStone3#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabStone3#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabStone3#getToolTier()" ] }, - "cn.nukkit.block.BlockDeny": { + "cn.nukkit.block.BlockDoubleSlabStone4": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDeny#canBePulled()" + "cn.nukkit.block.BlockDoubleSlabStone4#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabStone4#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabStone4#getToolTier()" ] }, - "cn.nukkit.block.BlockBorder": { + "cn.nukkit.block.BlockDoubleSlabWarped": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBorder#canBePulled()" + "cn.nukkit.block.BlockDoubleSlabWarped#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabWarped#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabWarped#isCorrectTool(Item)" ] }, - "cn.nukkit.block.BlockSlabCrimson": { + "cn.nukkit.block.BlockDoubleSlabWood": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabCrimson#getSlabName()", - "cn.nukkit.block.BlockSlabCrimson#isSameType(BlockSlab)" + "cn.nukkit.block.BlockDoubleSlabWood#getSingleSlabId()", + "cn.nukkit.block.BlockDoubleSlabWood#getSlabName()", + "cn.nukkit.block.BlockDoubleSlabWood#isCorrectTool(Item)" ] }, - "cn.nukkit.block.BlockAnvil": { + "cn.nukkit.block.BlockDragonEgg": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockAnvil#getToolTier()" + "cn.nukkit.block.BlockDragonEgg#breaksWhenMoved()", + "cn.nukkit.block.BlockDragonEgg#sticksToPiston()" ] }, - "cn.nukkit.block.BlockConcrete": { + "cn.nukkit.block.BlockDropper": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockConcrete#getToolTier()" + "cn.nukkit.block.BlockDropper#dispense()", + "cn.nukkit.block.BlockDropper#getDispenseBehavior(Item)", + "cn.nukkit.block.BlockDropper#getToolTier()" ] }, - "cn.nukkit.block.BlockSoulSoil": { + "cn.nukkit.block.BlockEmerald": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSoulSoil#isSoulSpeedCompatible()" + "cn.nukkit.block.BlockEmerald#getToolTier()" ] }, - "cn.nukkit.entity.passive.EntityBee": { + "cn.nukkit.block.BlockEnchantingTable": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.passive.EntityBee#getHasNectar()", - "cn.nukkit.entity.passive.EntityBee#isAngry()", - "cn.nukkit.entity.passive.EntityBee#leftBeehive(BlockEntityBeehive)", - "cn.nukkit.entity.passive.EntityBee#nectarDelivered(BlockEntityBeehive)", - "cn.nukkit.entity.passive.EntityBee#setAngry(boolean)", - "cn.nukkit.entity.passive.EntityBee#setAngry(Player)", - "cn.nukkit.entity.passive.EntityBee#setHasNectar(boolean)" + "cn.nukkit.block.BlockEnchantingTable#getToolTier()" ] }, - "cn.nukkit.inventory.PlayerUIComponent": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.PlayerUIComponent#playerUI" + "cn.nukkit.block.BlockEndPortalFrame": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockEndPortalFrame#canBePulled()" ] }, - "cn.nukkit.block.BlockBanner": { + "cn.nukkit.block.BlockEndStone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBanner#breaksWhenMoved()" + "cn.nukkit.block.BlockEndStone#getToolTier()" ] }, - "cn.nukkit.block.BlockStairsPurpur": { + "cn.nukkit.block.BlockEnderChest": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsPurpur#getToolTier()" + "cn.nukkit.block.BlockEnderChest#canBePulled()", + "cn.nukkit.block.BlockEnderChest#getBlockEntity()", + "cn.nukkit.block.BlockEnderChest#getToolTier()" ] }, - "cn.nukkit.level.format.generic.BaseLevelProvider": { - "addOverrideAnnotation": [ - "cn.nukkit.level.format.generic.BaseLevelProvider#updateLevelName(String)" + "cn.nukkit.block.BlockFallable": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockFallable#createFallingEntity(CompoundTag)" ] }, - "cn.nukkit.block.BlockBed": { + "cn.nukkit.block.BlockFence": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBed#breaksWhenMoved()", - "cn.nukkit.block.BlockBed#sticksToPiston()" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBed#clone()" + "cn.nukkit.block.BlockFence#PROPERTIES" ] }, - "cn.nukkit.Server": { + "cn.nukkit.block.BlockFenceBase": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.Server#getGitCommit()", - "cn.nukkit.Server#isRedstoneEnabled()", - "cn.nukkit.Server#setRedstoneEnabled(boolean)" + "cn.nukkit.block.BlockFenceBase#getWoodType()", + "cn.nukkit.block.BlockFenceBase#setWoodType(WoodType)" ] }, - "cn.nukkit.entity.item.EntityFallingBlock": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.item.EntityFallingBlock#canCollideWith(Entity)" - ], + "cn.nukkit.block.BlockFenceNetherBrick": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.item.EntityFallingBlock#breakOnLava" + "cn.nukkit.block.BlockFenceNetherBrick#getToolTier()" ] }, - "cn.nukkit.block.BlockCoal": { + "cn.nukkit.block.BlockFlowable": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCoal#getToolTier()" + "cn.nukkit.block.BlockFlowable#breaksWhenMoved()", + "cn.nukkit.block.BlockFlowable#sticksToPiston()" ] }, - "cn.nukkit.block.BlockLectern": { + "cn.nukkit.block.BlockFlower": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLectern#executeRedstonePulse()" + "cn.nukkit.block.BlockFlower#canPlantOn(Block)" ] }, - "cn.nukkit.level.Location": { - "addOverrideAnnotation": [ - "cn.nukkit.level.Location#fromObject(Vector3)", - "cn.nukkit.level.Location#fromObject(Vector3, Level)" - ], + "cn.nukkit.block.BlockFungusCrimson": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.Location#setPitch(double)", - "cn.nukkit.level.Location#setYaw(double)" + "cn.nukkit.block.BlockFungusCrimson#canGrowOn(Block)", + "cn.nukkit.block.BlockFungusCrimson#grow(Player)" ] }, - "cn.nukkit.block.BlockStairsMossyCobblestone": { + "cn.nukkit.block.BlockFungusWarped": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsMossyCobblestone#getToolTier()" + "cn.nukkit.block.BlockFungusWarped#canGrowOn(Block)", + "cn.nukkit.block.BlockFungusWarped#grow(Player)" ] }, - "cn.nukkit.math.IntIncrementSupplier": { + "cn.nukkit.block.BlockFurnaceBurning": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.math.IntIncrementSupplier#getAsInt()" + "cn.nukkit.block.BlockFurnaceBurning#getToolTier()" ] }, - "cn.nukkit.dispenser.FireworksDispenseBehavior": { + "cn.nukkit.block.BlockGold": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.FireworksDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + "cn.nukkit.block.BlockGold#getToolTier()" ] }, - "cn.nukkit.inventory.BaseInventory": { + "cn.nukkit.block.BlockGrindstone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.BaseInventory#addListener(InventoryListener)", - "cn.nukkit.inventory.BaseInventory#removeListener(InventoryListener)" + "cn.nukkit.block.BlockGrindstone#getToolTier()" ] }, - "cn.nukkit.block.BlockAcaciaWallSign": { + "cn.nukkit.block.BlockHoney": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockAcaciaWallSign#getPostId()" + "cn.nukkit.block.BlockHoney#()" ] }, - "cn.nukkit.blockentity.BlockEntityCauldron": { + "cn.nukkit.block.BlockHopper": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_EMPTY", - "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_NORMAL", - "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_SPLASH", - "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_LINGERING", - "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_LAVA", - "cn.nukkit.blockentity.BlockEntityCauldron#getPotionType()", - "cn.nukkit.blockentity.BlockEntityCauldron#setPotionType(int)" + "cn.nukkit.block.BlockHopper#getToolTier()" ] }, - "cn.nukkit.block.BlockStairsBrick": { + "cn.nukkit.block.BlockHyphaeCrimson": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsBrick#getToolTier()" + "cn.nukkit.block.BlockHyphaeCrimson#getStrippedState()" ] }, - "cn.nukkit.block.BlockStemCrimson": { + "cn.nukkit.block.BlockHyphaeWarped": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStemCrimson#getStrippedState()" + "cn.nukkit.block.BlockHyphaeWarped#getStrippedState()" ] }, - "cn.nukkit.entity.mob.EntityZombieVillager": { + "cn.nukkit.block.BlockIron": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityZombieVillager#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityZombieVillager#isUndead()" + "cn.nukkit.block.BlockIron#getToolTier()" ] }, - "cn.nukkit.entity.data.StringEntityData": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.data.StringEntityData#getData()", - "cn.nukkit.entity.data.StringEntityData#setData(String)" + "cn.nukkit.block.BlockIronBars": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockIronBars#getToolTier()" ] }, - "cn.nukkit.level.format.updater.BeehiveUpdater": { + "cn.nukkit.block.BlockItemFrame": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.BeehiveUpdater#update(int, int, int, int, int, int, BlockState)" + "cn.nukkit.block.BlockItemFrame#breaksWhenMoved()", + "cn.nukkit.block.BlockItemFrame#sticksToPiston()" ] }, - "cn.nukkit.block.BlockOreGold": { + "cn.nukkit.block.BlockLadder": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreGold#getToolTier()" + "cn.nukkit.block.BlockLadder#breaksWhenMoved()", + "cn.nukkit.block.BlockLadder#sticksToPiston()" ] }, - "cn.nukkit.block.BlockStairsQuartz": { + "cn.nukkit.block.BlockLantern": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsQuartz#getToolTier()" + "cn.nukkit.block.BlockLantern#getToolTier()" ] }, - "cn.nukkit.dispenser.DyeDispenseBehavior": { + "cn.nukkit.block.BlockLapis": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.DyeDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + "cn.nukkit.block.BlockLapis#getToolTier()" ] }, - "cn.nukkit.level.GameRule": { + "cn.nukkit.block.BlockLeaves": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.GameRule#EXPERIMENTAL_GAMEPLAY" + "cn.nukkit.block.BlockLeaves#breaksWhenMoved()", + "cn.nukkit.block.BlockLeaves#sticksToPiston()" ] }, - "cn.nukkit.block.BlockScaffolding": { + "cn.nukkit.block.BlockLeaves2": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockScaffolding#createFallingEntity(CompoundTag)" + "cn.nukkit.block.BlockLeaves2#getType()", + "cn.nukkit.block.BlockLeaves2#setType(WoodType)" ] }, - "cn.nukkit.level.biome.type.WateryBiome": { + "cn.nukkit.block.BlockLectern": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.type.WateryBiome#getGroundBlock(int)", - "cn.nukkit.level.biome.type.WateryBiome#getGroundDepth(int)", - "cn.nukkit.level.biome.type.WateryBiome#getSurfaceBlock(int)", - "cn.nukkit.level.biome.type.WateryBiome#getSurfaceDepth(int)" + "cn.nukkit.block.BlockLectern#executeRedstonePulse()" ] }, - "cn.nukkit.level.generator.SimpleChunkManager": { + "cn.nukkit.block.BlockLiquid": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.generator.SimpleChunkManager#getBlockDataAt(int, int, int, int)", - "cn.nukkit.level.generator.SimpleChunkManager#getBlockIdAt(int, int, int, int)", - "cn.nukkit.level.generator.SimpleChunkManager#getBlockStateAt(int, int, int, int)", - "cn.nukkit.level.generator.SimpleChunkManager#setBlockAtLayer(int, int, int, int, int, int)", - "cn.nukkit.level.generator.SimpleChunkManager#setBlockDataAt(int, int, int, int, int)", - "cn.nukkit.level.generator.SimpleChunkManager#setBlockFullIdAt(int, int, int, int, int)", - "cn.nukkit.level.generator.SimpleChunkManager#setBlockIdAt(int, int, int, int, int)" + "cn.nukkit.block.BlockLiquid#breaksWhenMoved()", + "cn.nukkit.block.BlockLiquid#sticksToPiston()", + "cn.nukkit.block.BlockLiquid#usesWaterLogging()" ] }, - "cn.nukkit.block.BlockChorusPlant": { + "cn.nukkit.block.BlockLodestone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockChorusPlant#breaksWhenMoved()", - "cn.nukkit.block.BlockChorusPlant#sticksToPiston()" + "cn.nukkit.block.BlockLodestone#sticksToPiston()" ] }, - "cn.nukkit.block.BlockWall": { + "cn.nukkit.block.BlockMelon": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWall#getToolTier()" + "cn.nukkit.block.BlockMelon#breaksWhenMoved()", + "cn.nukkit.block.BlockMelon#sticksToPiston()" ] }, - "cn.nukkit.math.MathHelper": { + "cn.nukkit.block.BlockMobSpawner": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.math.MathHelper#clamp(float, float, float)" + "cn.nukkit.block.BlockMobSpawner#canBePulled()", + "cn.nukkit.block.BlockMobSpawner#getToolTier()" ] }, - "cn.nukkit.utils.OptionalBoolean": { + "cn.nukkit.block.BlockMossStone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.OptionalBoolean#toString()" + "cn.nukkit.block.BlockMossStone#getToolTier()" ] }, - "cn.nukkit.blockstate.BlockState": { - "addOverrideAnnotation": [ - "cn.nukkit.blockstate.BlockState#getBlockId()" - ], + "cn.nukkit.block.BlockMoving": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.BlockState#equals(Object)", - "cn.nukkit.blockstate.BlockState#getBigDamage()", - "cn.nukkit.blockstate.BlockState#getBitSize()", - "cn.nukkit.blockstate.BlockState#getBlock()", - "cn.nukkit.blockstate.BlockState#getBlock(Level, int, int, int, int, boolean, Consumer)", - "cn.nukkit.blockstate.BlockState#getBlockId()", - "cn.nukkit.blockstate.BlockState#getBooleanValue(String)", - "cn.nukkit.blockstate.BlockState#getCurrentState()", - "cn.nukkit.blockstate.BlockState#getDataStorage()", - "cn.nukkit.blockstate.BlockState#getIntValue(String)", - "cn.nukkit.blockstate.BlockState#getLegacyDamage()", - "cn.nukkit.blockstate.BlockState#getPersistenceValue(String)", - "cn.nukkit.blockstate.BlockState#getProperties()", - "cn.nukkit.blockstate.BlockState#getPropertyValue(String)", - "cn.nukkit.blockstate.BlockState#hashCode()", - "cn.nukkit.blockstate.BlockState#toString()" + "cn.nukkit.block.BlockMoving#canBePulled()" ] }, - "cn.nukkit.network.protocol.PositionTrackingDBClientRequestPacket": { + "cn.nukkit.block.BlockMushroom": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.PositionTrackingDBClientRequestPacket#toString()" + "cn.nukkit.block.BlockMushroom#getToolTier()" ] }, - "cn.nukkit.block.BlockStairsDiorite": { + "cn.nukkit.block.BlockNetherrack": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsDiorite#getToolTier()" + "cn.nukkit.block.BlockNetherrack#getToolTier()" ] }, - "cn.nukkit.event.vehicle.VehicleDestroyByEntityEvent": { - "addOverrideAnnotation": [ - "cn.nukkit.event.vehicle.VehicleDestroyByEntityEvent#getHandlers()" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.vehicle.VehicleDestroyByEntityEvent#getHandlers()" + "cn.nukkit.block.BlockObserver": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockObserver#getToolTier()" ] }, - "cn.nukkit.blockstate.MutableBlockState": { + "cn.nukkit.block.BlockObsidian": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.MutableBlockState#canEqual(Object)", - "cn.nukkit.blockstate.MutableBlockState#equals(Object)", - "cn.nukkit.blockstate.MutableBlockState#getBigId()", - "cn.nukkit.blockstate.MutableBlockState#getBitSize()", - "cn.nukkit.blockstate.MutableBlockState#getBlockId()", - "cn.nukkit.blockstate.MutableBlockState#getFullId()", - "cn.nukkit.blockstate.MutableBlockState#getProperties()", - "cn.nukkit.blockstate.MutableBlockState#hashCode()", - "cn.nukkit.blockstate.MutableBlockState#toString()" + "cn.nukkit.block.BlockObsidian#canBePulled()", + "cn.nukkit.block.BlockObsidian#getToolTier()" ] }, - "cn.nukkit.block.BlockStonecutter": { + "cn.nukkit.block.BlockObsidianCrying": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStonecutter#getToolTier()" + "cn.nukkit.block.BlockObsidianCrying#canBePulled()" ] }, - "cn.nukkit.event.entity.EntityExplodeEvent": { + "cn.nukkit.block.BlockObsidianGlowing": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.entity.EntityExplodeEvent#ignitions" + "cn.nukkit.block.BlockObsidianGlowing#canBePulled()" ] }, - "cn.nukkit.nbt.tag.Tag": { - "addOverrideAnnotation": [ - "cn.nukkit.nbt.tag.Tag#toString()" + "cn.nukkit.block.BlockOreCoal": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockOreCoal#getToolTier()" ] }, - "cn.nukkit.block.BlockStemStripped": { + "cn.nukkit.block.BlockOreDiamond": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStemStripped#getStrippedState()" + "cn.nukkit.block.BlockOreDiamond#getToolTier()" ] }, - "cn.nukkit.block.BlockLadder": { + "cn.nukkit.block.BlockOreEmerald": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLadder#breaksWhenMoved()", - "cn.nukkit.block.BlockLadder#sticksToPiston()" - ] - }, - "cn.nukkit.nbt.tag.ListTag": { - "addOverrideAnnotation": [ - "cn.nukkit.nbt.tag.ListTag#print(String, PrintStream)" + "cn.nukkit.block.BlockOreEmerald#getToolTier()" ] }, - "cn.nukkit.inventory.ShapelessRecipe": { - "addOverrideAnnotation": [ - "cn.nukkit.inventory.ShapelessRecipe#matchItems(List, List, int)" + "cn.nukkit.block.BlockOreGold": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockOreGold#getToolTier()" ] }, - "cn.nukkit.level.biome.impl.iceplains.IcePlainsSpikesBiome": { - "addOverrideAnnotation": [ - "cn.nukkit.level.biome.impl.iceplains.IcePlainsSpikesBiome#getName()" - ], + "cn.nukkit.block.BlockOreIron": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.iceplains.IcePlainsSpikesBiome#getSurfaceBlock(int)" + "cn.nukkit.block.BlockOreIron#getToolTier()" ] }, - "cn.nukkit.block.BlockStairsStoneBrick": { + "cn.nukkit.block.BlockOreLapis": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsStoneBrick#getToolTier()" + "cn.nukkit.block.BlockOreLapis#getToolTier()" ] }, - "cn.nukkit.block.BlockQuartz": { + "cn.nukkit.block.BlockOreQuartz": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockQuartz#getToolTier()" + "cn.nukkit.block.BlockOreQuartz#getToolTier()" ] }, - "cn.nukkit.entity.mob.EntitySpider": { + "cn.nukkit.block.BlockOreRedstone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntitySpider#isPreventingSleep(Player)" + "cn.nukkit.block.BlockOreRedstone#getToolTier()" ] }, - "cn.nukkit.item.ItemDragonBreath": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemDragonBreath" + "cn.nukkit.block.BlockPiston": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockPiston#getPistonHeadBlockId()" ] }, - "cn.nukkit.level.ListChunkManager": { + "cn.nukkit.block.BlockPistonBase": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.ListChunkManager#getBlockDataAt(int, int, int, int)", - "cn.nukkit.level.ListChunkManager#getBlockIdAt(int, int, int, int)", - "cn.nukkit.level.ListChunkManager#setBlockAtLayer(int, int, int, int, int, int)", - "cn.nukkit.level.ListChunkManager#setBlockDataAt(int, int, int, int, int)", - "cn.nukkit.level.ListChunkManager#setBlockFullIdAt(int, int, int, int, int)", - "cn.nukkit.level.ListChunkManager#setBlockIdAt(int, int, int, int, int)" + "cn.nukkit.block.BlockPistonBase#canPush(Block, BlockFace, boolean, boolean)", + "cn.nukkit.block.BlockPistonBase#createHead(int)", + "cn.nukkit.block.BlockPistonBase#getPistonHeadBlockId()" ] }, - "cn.nukkit.inventory.transaction.action.SlotChangeAction": { - "addOverrideAnnotation": [ - "cn.nukkit.inventory.transaction.action.SlotChangeAction#execute(Player)", - "cn.nukkit.inventory.transaction.action.SlotChangeAction#isValid(Player)", - "cn.nukkit.inventory.transaction.action.SlotChangeAction#onExecuteFail(Player)", - "cn.nukkit.inventory.transaction.action.SlotChangeAction#onExecuteSuccess(Player)" + "cn.nukkit.block.BlockPistonHead": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockPistonHead#canBePulled()", + "cn.nukkit.block.BlockPistonHead#getBlockFace()" ] }, - "cn.nukkit.item.ItemFishingRod": { + "cn.nukkit.block.BlockPistonSticky": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemFishingRod#damageWhenBreaking()" + "cn.nukkit.block.BlockPistonSticky#getPistonHeadBlockId()" ] }, - "cn.nukkit.entity.mob.EntityGuardian": { + "cn.nukkit.block.BlockPressurePlateStone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityGuardian#isPreventingSleep(Player)" + "cn.nukkit.block.BlockPressurePlateStone#getToolTier()" ] }, - "cn.nukkit.block.BlockBricks": { + "cn.nukkit.block.BlockPrismarine": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBricks#getToolTier()" + "cn.nukkit.block.BlockPrismarine#getToolTier()" ] }, - "cn.nukkit.level.format.anvil.ChunkSection": { - "addOverrideAnnotation": [ - "cn.nukkit.level.format.anvil.ChunkSection#copy()" - ], + "cn.nukkit.block.BlockPumpkin": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.anvil.ChunkSection#STREAM_STORAGE_VERSION", - "cn.nukkit.level.format.anvil.ChunkSection#SAVE_STORAGE_VERSION", - "cn.nukkit.level.format.anvil.ChunkSection#getAndSetBlock(int, int, int, int, Block)", - "cn.nukkit.level.format.anvil.ChunkSection#getBlockChangeStateAbove(int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#getBlockData(int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#getBlockId(int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#getBlockState(int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#getFullBlock(int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#getMaximumLayer()", - "cn.nukkit.level.format.anvil.ChunkSection#hasBlocks()", - "cn.nukkit.level.format.anvil.ChunkSection#setBlockAtLayer(int, int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#setBlockAtLayer(int, int, int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#setBlockData(int, int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#setBlockId(int, int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#setBlockStateAtLayer(int, int, int, int, BlockState)", - "cn.nukkit.level.format.anvil.ChunkSection#setFullBlockId(int, int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#toNBT()" + "cn.nukkit.block.BlockPumpkin#breaksWhenMoved()", + "cn.nukkit.block.BlockPumpkin#getProperties()", + "cn.nukkit.block.BlockPumpkin#setBlockFace(BlockFace)", + "cn.nukkit.block.BlockPumpkin#sticksToPiston()" ] }, - "cn.nukkit.scheduler.AsyncWorker": { - "addOverrideAnnotation": [ - "cn.nukkit.scheduler.AsyncWorker#run()" + "cn.nukkit.block.BlockQuartz": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockQuartz#getToolTier()" ] }, - "cn.nukkit.block.BlockSlabBlackstonePolished": { + "cn.nukkit.block.BlockRail": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabBlackstonePolished#getSlabName()", - "cn.nukkit.block.BlockSlabBlackstonePolished#isSameType(BlockSlab)" + "cn.nukkit.block.BlockRail#canBePulled()" ] }, - "cn.nukkit.block.BlockDoorIron": { + "cn.nukkit.block.BlockRedstone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoorIron#getToolTier()" + "cn.nukkit.block.BlockRedstone#getToolTier()" ] }, - "cn.nukkit.level.format.anvil.palette.BiomePalette": { - "addOverrideAnnotation": [ - "cn.nukkit.level.format.anvil.palette.BiomePalette#clone()" + "cn.nukkit.block.BlockRedstoneDiode": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockRedstoneDiode#isSupportValid(Block)" ] }, - "cn.nukkit.block.BlockDaylightDetectorInverted": { + "cn.nukkit.block.BlockRedstoneWire": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDaylightDetectorInverted#isInverted()" + "cn.nukkit.block.BlockRedstoneWire#canBePlacedOn(Block)" ] }, - "cn.nukkit.blockstate.BlockStateRepair": { + "cn.nukkit.block.BlockRespawnAnchor": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.BlockStateRepair#equals(Object)", - "cn.nukkit.blockstate.BlockStateRepair#getBlockId()", - "cn.nukkit.blockstate.BlockStateRepair#getBrokenPropertyMeta()", - "cn.nukkit.blockstate.BlockStateRepair#getCurrentState()", - "cn.nukkit.blockstate.BlockStateRepair#getFixedPropertyValue()", - "cn.nukkit.blockstate.BlockStateRepair#getNextState()", - "cn.nukkit.blockstate.BlockStateRepair#getOriginalState()", - "cn.nukkit.blockstate.BlockStateRepair#getProperties()", - "cn.nukkit.blockstate.BlockStateRepair#getProperty()", - "cn.nukkit.blockstate.BlockStateRepair#getPropertyOffset()", - "cn.nukkit.blockstate.BlockStateRepair#getProposedPropertyValue()", - "cn.nukkit.blockstate.BlockStateRepair#getRepairs()", - "cn.nukkit.blockstate.BlockStateRepair#getValidationException()", - "cn.nukkit.blockstate.BlockStateRepair#hashCode()", - "cn.nukkit.blockstate.BlockStateRepair#toString()" + "cn.nukkit.block.BlockRespawnAnchor#canBePulled()", + "cn.nukkit.block.BlockRespawnAnchor#()" ] }, - "cn.nukkit.entity.item.EntityPainting": { + "cn.nukkit.block.BlockSandstone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.item.EntityPainting#onPushByPiston(BlockEntityPistonArm)" + "cn.nukkit.block.BlockSandstone#getSandstoneType()", + "cn.nukkit.block.BlockSandstone#getToolTier()" ] }, - "cn.nukkit.network.protocol.ItemComponentPacket": { + "cn.nukkit.block.BlockScaffolding": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.ItemComponentPacket#toString()" + "cn.nukkit.block.BlockScaffolding#createFallingEntity(CompoundTag)" ] }, - "cn.nukkit.level.biome.impl.mesa.MesaPlateauFBiome": { + "cn.nukkit.block.BlockSignPost": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.mesa.MesaPlateauFBiome#getCoverBlock()" + "cn.nukkit.block.BlockSignPost#breaksWhenMoved()" ] }, - "cn.nukkit.network.protocol.DataPacket": { + "cn.nukkit.block.BlockSkull": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.DataPacket#EMPTY_ARRAY" + "cn.nukkit.block.BlockSkull#breaksWhenMoved()", + "cn.nukkit.block.BlockSkull#sticksToPiston()" ] }, - "cn.nukkit.item.ItemRabbitHide": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemRabbitHide" + "cn.nukkit.block.BlockSlabBlackstone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockSlabBlackstone#getSlabName()", + "cn.nukkit.block.BlockSlabBlackstone#isSameType(BlockSlab)" ] }, - "cn.nukkit.block.BlockEnchantingTable": { + "cn.nukkit.block.BlockSlabBlackstonePolished": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEnchantingTable#getToolTier()" + "cn.nukkit.block.BlockSlabBlackstonePolished#getSlabName()", + "cn.nukkit.block.BlockSlabBlackstonePolished#isSameType(BlockSlab)" ] }, - "cn.nukkit.entity.mob.EntityPiglin": { + "cn.nukkit.block.BlockSlabBrickBlackstonePolished": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityPiglin#isBaby()", - "cn.nukkit.entity.mob.EntityPiglin#isPreventingSleep(Player)" + "cn.nukkit.block.BlockSlabBrickBlackstonePolished#getSlabName()" ] }, - "cn.nukkit.level.format.ChunkSection": { + "cn.nukkit.block.BlockSlabCrimson": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.ChunkSection#setFullBlockId(int, int, int, int, int)" + "cn.nukkit.block.BlockSlabCrimson#getSlabName()", + "cn.nukkit.block.BlockSlabCrimson#isSameType(BlockSlab)" ] }, - "cn.nukkit.level.format.generic.BaseFullChunk": { - "addOverrideAnnotation": [ - "cn.nukkit.level.format.generic.BaseFullChunk#initChunk()", - "cn.nukkit.level.format.generic.BaseFullChunk#setX(int)", - "cn.nukkit.level.format.generic.BaseFullChunk#setZ(int)" - ], + "cn.nukkit.block.BlockSlabRedSandstone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.generic.BaseFullChunk#getBlockDataAt(int, int, int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#getBlockIdAt(int, int, int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#recalculateHeightMapColumn(int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#setBlockAtLayer(int, int, int, int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#setBlockAtLayer(int, int, int, int, int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#setBlockDataAt(int, int, int, int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#setBlockFullIdAt(int, int, int, int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#setBlockIdAt(int, int, int, int, int)" + "cn.nukkit.block.BlockSlabRedSandstone#PRISMARINE", + "cn.nukkit.block.BlockSlabRedSandstone#PRISMARINE_BRICKS", + "cn.nukkit.block.BlockSlabRedSandstone#DARK_PRISMARINE", + "cn.nukkit.block.BlockSlabRedSandstone#MOSSY_COBBLESTONE", + "cn.nukkit.block.BlockSlabRedSandstone#SMOOTH_SANDSTONE", + "cn.nukkit.block.BlockSlabRedSandstone#RED_NETHER_BRICK", + "cn.nukkit.block.BlockSlabRedSandstone#getSlabName()", + "cn.nukkit.block.BlockSlabRedSandstone#getToolTier()", + "cn.nukkit.block.BlockSlabRedSandstone#isSameType(BlockSlab)" ] }, - "cn.nukkit.block.BlockStairsRedNetherBrick": { + "cn.nukkit.block.BlockSlabStone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsRedNetherBrick#getToolTier()" + "cn.nukkit.block.BlockSlabStone#getSlabName()", + "cn.nukkit.block.BlockSlabStone#getToolTier()", + "cn.nukkit.block.BlockSlabStone#isSameType(BlockSlab)" ] }, - "cn.nukkit.block.BlockRespawnAnchor": { + "cn.nukkit.block.BlockSlabStone3": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockRespawnAnchor#canBePulled()" + "cn.nukkit.block.BlockSlabStone3#getSlabName()", + "cn.nukkit.block.BlockSlabStone3#getToolTier()", + "cn.nukkit.block.BlockSlabStone3#isSameType(BlockSlab)" ] }, - "cn.nukkit.block.BlockStairsRedSandstone": { + "cn.nukkit.block.BlockSlabStone4": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsRedSandstone#getToolTier()" + "cn.nukkit.block.BlockSlabStone4#getSlabName()", + "cn.nukkit.block.BlockSlabStone4#getToolTier()", + "cn.nukkit.block.BlockSlabStone4#isSameType(BlockSlab)" ] }, - "cn.nukkit.entity.mob.EntityHusk": { + "cn.nukkit.block.BlockSlabWarped": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityHusk#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityHusk#isUndead()" + "cn.nukkit.block.BlockSlabWarped#getSlabName()", + "cn.nukkit.block.BlockSlabWarped#isSameType(BlockSlab)" ] }, - "cn.nukkit.block.BlockWoodStrippedJungle": { + "cn.nukkit.block.BlockSlabWood": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStrippedJungle#getWoodType()" + "cn.nukkit.block.BlockSlabWood#getSlabName()", + "cn.nukkit.block.BlockSlabWood#isSameType(BlockSlab)" ] }, - "cn.nukkit.block.BlockObsidian": { + "cn.nukkit.block.BlockSmoothStone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockObsidian#canBePulled()", - "cn.nukkit.block.BlockObsidian#getToolTier()" + "cn.nukkit.block.BlockSmoothStone#getToolTier()" ] }, - "cn.nukkit.entity.passive.EntitySkeletonHorse": { + "cn.nukkit.block.BlockSoulSand": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.passive.EntitySkeletonHorse#isUndead()" + "cn.nukkit.block.BlockSoulSand#isSoulSpeedCompatible()" ] }, - "cn.nukkit.item.Item": { + "cn.nukkit.block.BlockSoulSoil": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.Item#equalsIgnoringEnchantmentOrder(Item, boolean)", - "cn.nukkit.item.Item#getBlock(int)", - "cn.nukkit.item.Item#getBlock(int, Integer)", - "cn.nukkit.item.Item#getBlock(int, Integer, int)", - "cn.nukkit.item.Item#getBlock(int, Integer, int, byte[])" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.Item#hasEnchantment(int)" + "cn.nukkit.block.BlockSoulSoil#isSoulSpeedCompatible()" ] }, - "cn.nukkit.block.BlockWarpedWallSign": { + "cn.nukkit.block.BlockSoulTorch": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWarpedWallSign#getPostId()" + "cn.nukkit.block.BlockSoulTorch#(int)" ] }, - "cn.nukkit.block.BlockObsidianCrying": { + "cn.nukkit.block.BlockStairsAndesite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockObsidianCrying#canBePulled()" + "cn.nukkit.block.BlockStairsAndesite#getToolTier()" ] }, - "cn.nukkit.block.BlockStairsSmoothSandstone": { + "cn.nukkit.block.BlockStairsAndesitePolished": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsSmoothSandstone#getToolTier()" + "cn.nukkit.block.BlockStairsAndesitePolished#getToolTier()" ] }, - "cn.nukkit.level.particle.Particle": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.particle.Particle#TYPE_CANDLE_FLAME" + "cn.nukkit.block.BlockStairsBrick": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsBrick#getToolTier()" ] }, - "cn.nukkit.network.rcon.RCONServer": { - "addOverrideAnnotation": [ - "cn.nukkit.network.rcon.RCONServer#run()" + "cn.nukkit.block.BlockStairsCobblestone": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockStairsCobblestone#getToolTier()" ] }, - "cn.nukkit.blockproperty.IntBlockProperty": { - "addOverrideAnnotation": [ - "cn.nukkit.blockproperty.IntBlockProperty#getDefaultValue()" - ], + "cn.nukkit.block.BlockStairsDarkPrismarine": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockproperty.IntBlockProperty#getIntValueForMeta(int)", - "cn.nukkit.blockproperty.IntBlockProperty#getMetaForValue(Integer)", - "cn.nukkit.blockproperty.IntBlockProperty#getPersistenceValueForMeta(int)", - "cn.nukkit.blockproperty.IntBlockProperty#getValueClass()", - "cn.nukkit.blockproperty.IntBlockProperty#getValueForMeta(int)", - "cn.nukkit.blockproperty.IntBlockProperty#validateDirectly(Integer)", - "cn.nukkit.blockproperty.IntBlockProperty#validateMetaDirectly(int)" + "cn.nukkit.block.BlockStairsDarkPrismarine#getToolTier()" ] }, - "cn.nukkit.network.protocol.PositionTrackingDBServerBroadcastPacket": { + "cn.nukkit.block.BlockStairsDiorite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.PositionTrackingDBServerBroadcastPacket#toString()" + "cn.nukkit.block.BlockStairsDiorite#getToolTier()" ] }, - "cn.nukkit.block.BlockPumpkin": { + "cn.nukkit.block.BlockStairsEndBrick": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPumpkin#breaksWhenMoved()", - "cn.nukkit.block.BlockPumpkin#getProperties()", - "cn.nukkit.block.BlockPumpkin#setBlockFace(BlockFace)", - "cn.nukkit.block.BlockPumpkin#sticksToPiston()" + "cn.nukkit.block.BlockStairsEndBrick#getToolTier()" ] }, - "cn.nukkit.blockentity.BlockEntityMovingBlock": { + "cn.nukkit.block.BlockStairsGranite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityMovingBlock#blockString", - "cn.nukkit.blockentity.BlockEntityMovingBlock#getBlockEntity()", - "cn.nukkit.blockentity.BlockEntityMovingBlock#getMovingBlock()", - "cn.nukkit.blockentity.BlockEntityMovingBlock#getMovingBlockString()", - "cn.nukkit.blockentity.BlockEntityMovingBlock#moveCollidedEntities(BlockEntityPistonArm, BlockFace)" + "cn.nukkit.block.BlockStairsGranite#getToolTier()" ] }, - "cn.nukkit.blockstate.LongMutableBlockState": { - "addOverrideAnnotation": [ - "cn.nukkit.blockstate.LongMutableBlockState#canEqual(Object)" - ], + "cn.nukkit.block.BlockStairsGranitePolished": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.LongMutableBlockState#canEqual(Object)", - "cn.nukkit.blockstate.LongMutableBlockState#copy()", - "cn.nukkit.blockstate.LongMutableBlockState#equals(Object)", - "cn.nukkit.blockstate.LongMutableBlockState#getBigDamage()", - "cn.nukkit.blockstate.LongMutableBlockState#getBooleanValue(String)", - "cn.nukkit.blockstate.LongMutableBlockState#getCurrentState()", - "cn.nukkit.blockstate.LongMutableBlockState#getDataStorage()", - "cn.nukkit.blockstate.LongMutableBlockState#getIntValue(String)", - "cn.nukkit.blockstate.LongMutableBlockState#getLegacyDamage()", - "cn.nukkit.blockstate.LongMutableBlockState#getPersistenceValue(String)", - "cn.nukkit.blockstate.LongMutableBlockState#getPropertyValue(String)", - "cn.nukkit.blockstate.LongMutableBlockState#hashCode()", - "cn.nukkit.blockstate.LongMutableBlockState#toString()", - "cn.nukkit.blockstate.LongMutableBlockState#validate()" + "cn.nukkit.block.BlockStairsGranitePolished#getToolTier()" ] }, - "cn.nukkit.item.ItemWarpedFungusOnAStick": { + "cn.nukkit.block.BlockStairsMossyCobblestone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemWarpedFungusOnAStick#damageWhenBreaking()" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemWarpedFungusOnAStick" + "cn.nukkit.block.BlockStairsMossyCobblestone#getToolTier()" ] }, - "cn.nukkit.level.format.updater.OldWoodBarkUpdater": { + "cn.nukkit.block.BlockStairsMossyStoneBrick": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.OldWoodBarkUpdater#update(int, int, int, int, int, int, BlockState)" + "cn.nukkit.block.BlockStairsMossyStoneBrick#getToolTier()" ] }, - "cn.nukkit.blockproperty.BlockProperty": { + "cn.nukkit.block.BlockStairsNetherBrick": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockproperty.BlockProperty#toString()" + "cn.nukkit.block.BlockStairsNetherBrick#getToolTier()" ] }, - "cn.nukkit.block.BlockItemFrame": { + "cn.nukkit.block.BlockStairsPrismarine": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockItemFrame#breaksWhenMoved()", - "cn.nukkit.block.BlockItemFrame#sticksToPiston()" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockItemFrame#recalculateBoundingBox()" + "cn.nukkit.block.BlockStairsPrismarine#getToolTier()" ] }, - "cn.nukkit.utils.SkinAnimation": { + "cn.nukkit.block.BlockStairsPrismarineBrick": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.SkinAnimation#canEqual(Object)" + "cn.nukkit.block.BlockStairsPrismarineBrick#getToolTier()" ] }, - "cn.nukkit.blockstate.BigIntegerMutableBlockState": { - "addOverrideAnnotation": [ - "cn.nukkit.blockstate.BigIntegerMutableBlockState#canEqual(Object)" - ], + "cn.nukkit.block.BlockStairsPurpur": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.BigIntegerMutableBlockState", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#canEqual(Object)", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#copy()", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#equals(Object)", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getBigDamage()", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getBooleanValue(String)", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getCurrentState()", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getDataStorage()", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getIntValue(String)", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getLegacyDamage()", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getPersistenceValue(String)", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getPropertyValue(String)", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#hashCode()", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#toString()", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#validate()" - ] - }, - "cn.nukkit.blockentity.BlockEntityItemFrame": { - "addOverrideAnnotation": [ - "cn.nukkit.blockentity.BlockEntityItemFrame#setDirty()" + "cn.nukkit.block.BlockStairsPurpur#getToolTier()" ] }, - "cn.nukkit.block.BlockPistonBase": { + "cn.nukkit.block.BlockStairsQuartz": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPistonBase#canPush(Block, BlockFace, boolean, boolean)", - "cn.nukkit.block.BlockPistonBase#createHead(int)", - "cn.nukkit.block.BlockPistonBase#getPistonHeadBlockId()" + "cn.nukkit.block.BlockStairsQuartz#getToolTier()" ] }, - "cn.nukkit.blockentity.BlockEntityBeehive": { + "cn.nukkit.block.BlockStairsRedNetherBrick": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityBeehive#onBreak(boolean)" + "cn.nukkit.block.BlockStairsRedNetherBrick#getToolTier()" ] }, - "cn.nukkit.block.BlockStairsCobblestone": { + "cn.nukkit.block.BlockStairsRedSandstone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsCobblestone#getToolTier()" + "cn.nukkit.block.BlockStairsRedSandstone#getToolTier()" ] }, - "cn.nukkit.block.BlockSlabWarped": { + "cn.nukkit.block.BlockStairsSandstone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabWarped#getSlabName()", - "cn.nukkit.block.BlockSlabWarped#isSameType(BlockSlab)" + "cn.nukkit.block.BlockStairsSandstone#getToolTier()" ] }, - "cn.nukkit.level.format.updater.DoorUpdater": { + "cn.nukkit.block.BlockStairsSmoothQuartz": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.DoorUpdater#update(int, int, int, int, int, int, BlockState)" + "cn.nukkit.block.BlockStairsSmoothQuartz#getToolTier()" ] }, - "cn.nukkit.blockstate.ZeroMutableBlockState": { + "cn.nukkit.block.BlockStairsSmoothRedSandstone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.ZeroMutableBlockState#copy()", - "cn.nukkit.blockstate.ZeroMutableBlockState#validate()" + "cn.nukkit.block.BlockStairsSmoothRedSandstone#getToolTier()" ] }, - "cn.nukkit.block.BlockLapis": { + "cn.nukkit.block.BlockStairsSmoothSandstone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLapis#getToolTier()" + "cn.nukkit.block.BlockStairsSmoothSandstone#getToolTier()" ] }, - "cn.nukkit.entity.mob.EntitySilverfish": { + "cn.nukkit.block.BlockStairsStone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntitySilverfish#isPreventingSleep(Player)" + "cn.nukkit.block.BlockStairsStone#getToolTier()" ] }, - "cn.nukkit.block.BlockOreLapis": { + "cn.nukkit.block.BlockStairsStoneBrick": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreLapis#getToolTier()" + "cn.nukkit.block.BlockStairsStoneBrick#getToolTier()" ] }, - "cn.nukkit.block.BlockIronBars": { + "cn.nukkit.block.BlockStemCrimson": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockIronBars#getToolTier()" + "cn.nukkit.block.BlockStemCrimson#getStrippedState()" ] }, - "cn.nukkit.block.BlockWoodBark": { + "cn.nukkit.block.BlockStemStripped": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodBark#getWoodType()", - "cn.nukkit.block.BlockWoodBark#setWoodType(WoodType)" + "cn.nukkit.block.BlockStemStripped#getStrippedState()" ] }, - "cn.nukkit.item.ItemLeggingsNetherite": { + "cn.nukkit.block.BlockStemWarped": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemLeggingsNetherite#isLavaResistant()" + "cn.nukkit.block.BlockStemWarped#getStrippedState()" ] }, - "cn.nukkit.item.enchantment.EnchantmentEfficiency": { + "cn.nukkit.block.BlockStone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.enchantment.EnchantmentEfficiency#isItemAcceptable(Item)" + "cn.nukkit.block.BlockStone#getToolTier()" ] }, - "cn.nukkit.level.format.updater.StemStrippedUpdater": { + "cn.nukkit.block.BlockStonecutter": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.StemStrippedUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.level.util.Pow2BitArray": { - "addOverrideAnnotation": [ - "cn.nukkit.level.util.Pow2BitArray#get(int)", - "cn.nukkit.level.util.Pow2BitArray#getVersion()", - "cn.nukkit.level.util.Pow2BitArray#set(int, int)", - "cn.nukkit.level.util.Pow2BitArray#size()" + "cn.nukkit.block.BlockStonecutter#getToolTier()" ] }, - "cn.nukkit.block.BlockSlabStone": { + "cn.nukkit.block.BlockStructure": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabStone#getSlabName()", - "cn.nukkit.block.BlockSlabStone#getToolTier()", - "cn.nukkit.block.BlockSlabStone#isSameType(BlockSlab)" + "cn.nukkit.block.BlockStructure#canBePulled()" ] }, - "cn.nukkit.Player": { - "addOverrideAnnotation": [ - "cn.nukkit.Player#isPlayer()" - ], + "cn.nukkit.block.BlockStructureVoid": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.Player#addExperience(int, boolean)", - "cn.nukkit.Player#onBlock(Entity, boolean)", - "cn.nukkit.Player#setExperience(int, int, boolean)" + "cn.nukkit.block.BlockStructureVoid#canBePulled()" ] }, - "cn.nukkit.blockproperty.UnsignedIntBlockProperty": { - "addOverrideAnnotation": [ - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getDefaultValue()" - ], + "cn.nukkit.block.BlockTerracotta": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getIntValueForMeta(int)", - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getMetaForValue(Integer)", - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getPersistenceValueForMeta(int)", - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getValueClass()", - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getValueForMeta(int)", - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#validateDirectly(Integer)", - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#validateMetaDirectly(int)" + "cn.nukkit.block.BlockTerracotta#getToolTier()" ] }, - "cn.nukkit.entity.mob.EntityZombieVillagerV1": { + "cn.nukkit.block.BlockTerracottaGlazed": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityZombieVillagerV1#isUndead()" + "cn.nukkit.block.BlockTerracottaGlazed#getToolTier()" ] }, - "cn.nukkit.utils.collection.ConvertingSetWrapper": { + "cn.nukkit.block.BlockTrapdoorIron": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.collection.ConvertingSetWrapper#add(V1)", - "cn.nukkit.utils.collection.ConvertingSetWrapper#clear()", - "cn.nukkit.utils.collection.ConvertingSetWrapper#contains(Object)", - "cn.nukkit.utils.collection.ConvertingSetWrapper#isEmpty()", - "cn.nukkit.utils.collection.ConvertingSetWrapper#iterator()", - "cn.nukkit.utils.collection.ConvertingSetWrapper#remove(Object)", - "cn.nukkit.utils.collection.ConvertingSetWrapper#size()" + "cn.nukkit.block.BlockTrapdoorIron#getToolTier()" ] }, - "cn.nukkit.block.BlockDarkOakWallSign": { + "cn.nukkit.block.BlockUndyedShulkerBox": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDarkOakWallSign#getPostId()" + "cn.nukkit.block.BlockUndyedShulkerBox#breaksWhenMoved()", + "cn.nukkit.block.BlockUndyedShulkerBox#sticksToPiston()" ] }, - "cn.nukkit.block.BlockCampfire": { + "cn.nukkit.block.BlockVine": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCampfire#breaksWhenMoved()", - "cn.nukkit.block.BlockCampfire#canBePulled()" + "cn.nukkit.block.BlockVine#breaksWhenMoved()", + "cn.nukkit.block.BlockVine#sticksToPiston()" ] }, - "cn.nukkit.block.BlockStairsPrismarineBrick": { + "cn.nukkit.block.BlockVinesNether": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsPrismarineBrick#getToolTier()" - ] - }, - "cn.nukkit.event.block.BlockFormEvent": { - "addOverrideAnnotation": [ - "cn.nukkit.event.block.BlockFormEvent#getHandlers()" + "cn.nukkit.block.BlockVinesNether#breaksWhenMoved()", + "cn.nukkit.block.BlockVinesNether#sticksToPiston()" ] }, - "cn.nukkit.block.BlockBricksRedNether": { + "cn.nukkit.block.BlockWall": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBricksRedNether#getToolTier()" + "cn.nukkit.block.BlockWall#getToolTier()" ] }, - "cn.nukkit.block.BlockObserver": { + "cn.nukkit.block.BlockWallBanner": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockObserver#getToolTier()" + "cn.nukkit.block.BlockWallBanner#getDirection()", + "cn.nukkit.block.BlockWallBanner#setDirection(CompassRoseDirection)" ] }, - "cn.nukkit.block.BlockStructure": { + "cn.nukkit.block.BlockWallBase": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStructure#canBePulled()" + "cn.nukkit.block.BlockWallBase#canConnect(Block)" ] }, - "cn.nukkit.network.Network": { + "cn.nukkit.block.BlockWallSign": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.Network#getPacket(byte)" + "cn.nukkit.block.BlockWallSign#getSignDirection()", + "cn.nukkit.block.BlockWallSign#getWallId()", + "cn.nukkit.block.BlockWallSign#setSignDirection(CompassRoseDirection)" ] }, - "cn.nukkit.level.format.generic.BaseChunk": { + "cn.nukkit.block.BlockWater": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.generic.BaseChunk#findBorders(int, int)", - "cn.nukkit.level.format.generic.BaseChunk#getBlockData(int, int, int, int)", - "cn.nukkit.level.format.generic.BaseChunk#getBlockStateAt(int, int, int, int)", - "cn.nukkit.level.format.generic.BaseChunk#isBlockChangeAllowed(int, int, int)", - "cn.nukkit.level.format.generic.BaseChunk#isBlockedByBorder(int, int)", - "cn.nukkit.level.format.generic.BaseChunk#setBlockData(int, int, int, int, int)" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.generic.BaseChunk#setBlock(int, int, int, int, int)" + "cn.nukkit.block.BlockWater#usesWaterLogging()" ] }, - "cn.nukkit.block.BlockFallable": { - "addOverrideAnnotation": [ - "cn.nukkit.block.BlockFallable#onUpdate(int)" - ], + "cn.nukkit.block.BlockWeightedPressurePlateHeavy": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFallable#createFallingEntity(CompoundTag)" + "cn.nukkit.block.BlockWeightedPressurePlateHeavy#getToolTier()" ] }, "cn.nukkit.block.BlockWeightedPressurePlateLight": { @@ -1245,1363 +1041,951 @@ "cn.nukkit.block.BlockWeightedPressurePlateLight#getToolTier()" ] }, - "cn.nukkit.entity.weather.EntityLightning": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.weather.EntityLightning#isEffect()", - "cn.nukkit.entity.weather.EntityLightning#setEffect(boolean)" - ] - }, - "cn.nukkit.entity.mob.EntityCaveSpider": { + "cn.nukkit.block.BlockWitherRose": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityCaveSpider#isPreventingSleep(Player)" + "cn.nukkit.block.BlockWitherRose#canPlantOn(Block)" ] }, - "cn.nukkit.event.vehicle.VehicleDamageByEntityEvent": { - "addOverrideAnnotation": [ - "cn.nukkit.event.vehicle.VehicleDamageByEntityEvent#getHandlers()" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.vehicle.VehicleDamageByEntityEvent#getHandlers()" + "cn.nukkit.block.BlockWood": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.block.BlockWood#getStrippedState()" ] }, - "cn.nukkit.item.ItemBlock": { - "addOverrideAnnotation": [ - "cn.nukkit.item.ItemBlock#getBlock()", - "cn.nukkit.item.ItemBlock#setDamage(Integer)" - ], + "cn.nukkit.block.BlockWood2": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemBlock#isLavaResistant()" + "cn.nukkit.block.BlockWood2#getWoodType()", + "cn.nukkit.block.BlockWood2#setWoodType(WoodType)" ] }, - "cn.nukkit.block.BlockButtonStone": { + "cn.nukkit.block.BlockWoodBark": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockButtonStone#getToolTier()" + "cn.nukkit.block.BlockWoodBark#getWoodType()", + "cn.nukkit.block.BlockWoodBark#setWoodType(WoodType)" ] }, - "cn.nukkit.block.BlockTerracotta": { + "cn.nukkit.block.BlockWoodStripped": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockTerracotta#getToolTier()" + "cn.nukkit.block.BlockWoodStripped#getStrippedState()", + "cn.nukkit.block.BlockWoodStripped#setWoodType(WoodType)" ] }, - "cn.nukkit.entity.mob.EntityEndermite": { + "cn.nukkit.block.BlockWoodStrippedAcacia": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityEndermite#isPreventingSleep(Player)" + "cn.nukkit.block.BlockWoodStrippedAcacia#getWoodType()" ] }, - "cn.nukkit.level.biome.type.SnowyBiome": { + "cn.nukkit.block.BlockWoodStrippedBirch": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.type.SnowyBiome#getCoverBlock()" + "cn.nukkit.block.BlockWoodStrippedBirch#getWoodType()" ] }, - "cn.nukkit.block.BlockLodestone": { + "cn.nukkit.block.BlockWoodStrippedDarkOak": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLodestone#sticksToPiston()" + "cn.nukkit.block.BlockWoodStrippedDarkOak#getWoodType()" ] }, - "cn.nukkit.item.ItemBootsNetherite": { + "cn.nukkit.block.BlockWoodStrippedJungle": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemBootsNetherite#isLavaResistant()" + "cn.nukkit.block.BlockWoodStrippedJungle#getWoodType()" ] }, - "cn.nukkit.block.BlockMoving": { + "cn.nukkit.block.BlockWoodStrippedOak": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockMoving#canBePulled()" + "cn.nukkit.block.BlockWoodStrippedOak#getWoodType()" ] }, - "cn.nukkit.block.BlockWarpedSignPost": { + "cn.nukkit.block.BlockWoodStrippedSpruce": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWarpedSignPost#getWallId()" + "cn.nukkit.block.BlockWoodStrippedSpruce#getWoodType()" ] }, - "cn.nukkit.blockproperty.ArrayBlockProperty": { + "cn.nukkit.blockentity.BlockEntity": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockproperty.ArrayBlockProperty#getIntValueForMeta(int)", - "cn.nukkit.blockproperty.ArrayBlockProperty#getMetaForValue(E)", - "cn.nukkit.blockproperty.ArrayBlockProperty#getPersistenceValueForMeta(int)", - "cn.nukkit.blockproperty.ArrayBlockProperty#getUniverse()", - "cn.nukkit.blockproperty.ArrayBlockProperty#getValueClass()", - "cn.nukkit.blockproperty.ArrayBlockProperty#getValueForMeta(int)", - "cn.nukkit.blockproperty.ArrayBlockProperty#validateDirectly(E)", - "cn.nukkit.blockproperty.ArrayBlockProperty#validateMetaDirectly(int)" + "cn.nukkit.blockentity.BlockEntity#createBlockEntity(String, Position, CompoundTag, Object[])", + "cn.nukkit.blockentity.BlockEntity#createBlockEntity(String, Position, Object[])", + "cn.nukkit.blockentity.BlockEntity#getLevelBlockEntity()", + "cn.nukkit.blockentity.BlockEntity#onBreak(boolean)" ] }, - "cn.nukkit.block.BlockRedstone": { + "cn.nukkit.blockentity.BlockEntityBeehive": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockRedstone#getToolTier()" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockRedstone#onBreak(Item)", - "cn.nukkit.block.BlockRedstone#place(Item, Block, Block, BlockFace, double, double, double, Player)" + "cn.nukkit.blockentity.BlockEntityBeehive#onBreak(boolean)" ] }, - "cn.nukkit.block.BlockBell": { + "cn.nukkit.blockentity.BlockEntityBlastFurnace": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBell#getAttachmentType()", - "cn.nukkit.block.BlockBell#getToolTier()", - "cn.nukkit.block.BlockBell#setAttachmentType(int)" - ] - }, - "cn.nukkit.command.ConsoleCommandSender": { - "addOverrideAnnotation": [ - "cn.nukkit.command.ConsoleCommandSender#isPlayer()" - ] - }, - "cn.nukkit.block.Block": { - "addOverrideAnnotation": [ - "cn.nukkit.block.Block#calculateIntercept(Vector3, Vector3)", - "cn.nukkit.block.Block#clone()", - "cn.nukkit.block.Block#down()", - "cn.nukkit.block.Block#down(int)", - "cn.nukkit.block.Block#east()", - "cn.nukkit.block.Block#east(int)", - "cn.nukkit.block.Block#getCurrentState()", - "cn.nukkit.block.Block#getFullId()", - "cn.nukkit.block.Block#getProperties()", - "cn.nukkit.block.Block#getRuntimeId()", - "cn.nukkit.block.Block#getSide(BlockFace)", - "cn.nukkit.block.Block#getSide(BlockFace, int)", - "cn.nukkit.block.Block#north()", - "cn.nukkit.block.Block#north(int)", - "cn.nukkit.block.Block#south()", - "cn.nukkit.block.Block#south(int)", - "cn.nukkit.block.Block#up()", - "cn.nukkit.block.Block#up(int)", - "cn.nukkit.block.Block#west()", - "cn.nukkit.block.Block#west(int)" - ], - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.Block#diffusesSkyLight", - "cn.nukkit.block.Block#asItemBlock()", - "cn.nukkit.block.Block#breaksWhenMoved()", - "cn.nukkit.block.Block#canBePulled()", - "cn.nukkit.block.Block#canWaterloggingFlowInto()", - "cn.nukkit.block.Block#diffusesSkyLight()", - "cn.nukkit.block.Block#down(int, int)", - "cn.nukkit.block.Block#east(int, int)", - "cn.nukkit.block.Block#firstInLayers(int, Predicate)", - "cn.nukkit.block.Block#firstInLayers(Predicate)", - "cn.nukkit.block.Block#get(int, Level, int, int, int, int)", - "cn.nukkit.block.Block#get(int, Integer, Position, int)", - "cn.nukkit.block.Block#getBlock()", - "cn.nukkit.block.Block#getItemId()", - "cn.nukkit.block.Block#getSideAtLayer(int, BlockFace)", - "cn.nukkit.block.Block#getSideAtLayer(int, BlockFace, int)", - "cn.nukkit.block.Block#north(int, int)", - "cn.nukkit.block.Block#south(int, int)", - "cn.nukkit.block.Block#sticksToPiston()", - "cn.nukkit.block.Block#up(int, int)", - "cn.nukkit.block.Block#west(int, int)" - ] - }, - "cn.nukkit.command.Command": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.command.Command#parseTilde(String, double)" - ] - }, - "cn.nukkit.entity.projectile.EntityThrownTrident": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.projectile.EntityThrownTrident#gravity", - "cn.nukkit.entity.projectile.EntityThrownTrident#drag", - "cn.nukkit.entity.projectile.EntityThrownTrident#create(Object, Position, Object[])", - "cn.nukkit.entity.projectile.EntityThrownTrident#isCritical()", - "cn.nukkit.entity.projectile.EntityThrownTrident#setCritical()", - "cn.nukkit.entity.projectile.EntityThrownTrident#setCritical(boolean)" - ] - }, - "cn.nukkit.utils.Hash": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.Hash#hashBlock(Vector3)" - ] - }, - "cn.nukkit.block.BlockStairsAndesite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsAndesite#getToolTier()" - ] - }, - "cn.nukkit.network.protocol.CraftingEventPacket": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.CraftingEventPacket#canEqual(Object)" - ] - }, - "cn.nukkit.block.BlockFungusCrimson": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFungusCrimson#canGrowOn(Block)", - "cn.nukkit.block.BlockFungusCrimson#grow(Player)" - ] - }, - "cn.nukkit.block.BlockStairsEndBrick": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsEndBrick#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsGranitePolished": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsGranitePolished#getToolTier()" - ] - }, - "cn.nukkit.dispenser.ProjectileDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.ProjectileDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", - "cn.nukkit.dispenser.ProjectileDispenseBehavior#getAccuracy()", - "cn.nukkit.dispenser.ProjectileDispenseBehavior#getMotion()" - ] - }, - "cn.nukkit.level.biome.impl.beach.ColdBeachBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.beach.ColdBeachBiome#getCoverBlock()" - ] - }, - "cn.nukkit.block.BlockConcretePowder": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockConcretePowder#getDyeColor()" - ] - }, - "cn.nukkit.entity.mob.EntityStray": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityStray#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityStray#isUndead()" - ] - }, - "cn.nukkit.blockstate.IBlockState": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.IBlockState#getBigId()" - ] - }, - "cn.nukkit.event.redstone.RedstoneUpdateEvent": { - "addOverrideAnnotation": [ - "cn.nukkit.event.redstone.RedstoneUpdateEvent#getHandlers()" - ] - }, - "cn.nukkit.network.protocol.TickSyncPacket": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.TickSyncPacket#toString()" - ] - }, - "cn.nukkit.block.BlockCoralFanHang": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCoralFanHang#getRootsFace()", - "cn.nukkit.block.BlockCoralFanHang#getType()", - "cn.nukkit.block.BlockCoralFanHang#isDead()" - ] - }, - "cn.nukkit.block.BlockFence": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFence#PROPERTIES" - ] - }, - "cn.nukkit.item.ItemLead": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemLead" - ] - }, - "cn.nukkit.entity.mob.EntityRavager": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityRavager#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityPhantom": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityPhantom#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityPhantom#isUndead()" - ] - }, - "cn.nukkit.block.BlockBedrockInvisible": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBedrockInvisible#canBePulled()" - ] - }, - "cn.nukkit.dispenser.TNTDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.TNTDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" - ] - }, - "cn.nukkit.blockstate.IntMutableBlockState": { - "addOverrideAnnotation": [ - "cn.nukkit.blockstate.IntMutableBlockState#canEqual(Object)" - ], - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.IntMutableBlockState#canEqual(Object)", - "cn.nukkit.blockstate.IntMutableBlockState#copy()", - "cn.nukkit.blockstate.IntMutableBlockState#equals(Object)", - "cn.nukkit.blockstate.IntMutableBlockState#getBigDamage()", - "cn.nukkit.blockstate.IntMutableBlockState#getBooleanValue(String)", - "cn.nukkit.blockstate.IntMutableBlockState#getCurrentState()", - "cn.nukkit.blockstate.IntMutableBlockState#getDataStorage()", - "cn.nukkit.blockstate.IntMutableBlockState#getIntValue(String)", - "cn.nukkit.blockstate.IntMutableBlockState#getLegacyDamage()", - "cn.nukkit.blockstate.IntMutableBlockState#getPersistenceValue(String)", - "cn.nukkit.blockstate.IntMutableBlockState#getPropertyValue(String)", - "cn.nukkit.blockstate.IntMutableBlockState#hashCode()", - "cn.nukkit.blockstate.IntMutableBlockState#toString()", - "cn.nukkit.blockstate.IntMutableBlockState#validate()" - ] - }, - "cn.nukkit.entity.mob.EntityCreeper": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.mob.EntityCreeper#onStruckByLightning(Entity)" - ], - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityCreeper#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.item.enchantment.EnchantmentSilkTouch": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.enchantment.EnchantmentSilkTouch#isItemAcceptable(Item)" - ] - }, - "cn.nukkit.block.BlockBedrock": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBedrock#canBePulled()" - ] - }, - "cn.nukkit.block.BlockLever": { - "addOverrideAnnotation": [ - "cn.nukkit.block.BlockLever#getStrongPower(BlockFace)" - ] - }, - "cn.nukkit.level.format.anvil.palette.IntPalette": { - "addOverrideAnnotation": [ - "cn.nukkit.level.format.anvil.palette.IntPalette#clone()" - ] - }, - "cn.nukkit.entity.item.EntityExpBottle": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.item.EntityExpBottle#addHitEffect()" - ] - }, - "cn.nukkit.block.BlockIron": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockIron#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsNetherBrick": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsNetherBrick#getToolTier()" - ] - }, - "cn.nukkit.block.BlockCoralFanDead": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCoralFanDead#isDead()" - ] - }, - "cn.nukkit.block.BlockWoodStrippedAcacia": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStrippedAcacia#getWoodType()" - ] - }, - "cn.nukkit.dispenser.EmptyBucketDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.EmptyBucketDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" - ] - }, - "cn.nukkit.dispenser.DefaultDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.DefaultDispenseBehavior#success", - "cn.nukkit.dispenser.DefaultDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" - ] - }, - "cn.nukkit.block.BlockRedstoneComparator": { - "addOverrideAnnotation": [ - "cn.nukkit.block.BlockRedstoneComparator#calculateInputStrength()", - "cn.nukkit.block.BlockRedstoneComparator#shouldBePowered()" - ] - }, - "cn.nukkit.block.BlockFlowable": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFlowable#breaksWhenMoved()", - "cn.nukkit.block.BlockFlowable#sticksToPiston()" - ] - }, - "cn.nukkit.block.BlockNetherWartBlock": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockNetherWartBlock" - ] - }, - "cn.nukkit.block.BlockHyphaeWarped": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockHyphaeWarped#getStrippedState()" - ] - }, - "cn.nukkit.level.format.anvil.palette.BlockDataPalette": { - "addOverrideAnnotation": [ - "cn.nukkit.level.format.anvil.palette.BlockDataPalette#clone()" - ] - }, - "cn.nukkit.block.BlockDoubleSlabCrimson": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabCrimson#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabCrimson#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabCrimson#isCorrectTool(Item)" - ] - }, - "cn.nukkit.item.ItemBannerPattern": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemBannerPattern#updateName()" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemBannerPattern" - ] - }, - "cn.nukkit.block.BlockMobSpawner": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockMobSpawner#canBePulled()", - "cn.nukkit.block.BlockMobSpawner#getToolTier()" - ] - }, - "cn.nukkit.level.Position": { - "addOverrideAnnotation": [ - "cn.nukkit.level.Position#getSide(BlockFace)", - "cn.nukkit.level.Position#getSide(BlockFace, int)" - ], - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.Position#getLevelBlockAtLayer(int)" - ] - }, - "cn.nukkit.nbt.tag.CompoundTag": { - "addOverrideAnnotation": [ - "cn.nukkit.nbt.tag.CompoundTag#copy()", - "cn.nukkit.nbt.tag.CompoundTag#print(String, PrintStream)", - "cn.nukkit.nbt.tag.CompoundTag#toString()" - ] - }, - "cn.nukkit.block.BlockGold": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockGold#getToolTier()" - ] - }, - "cn.nukkit.block.BlockSeaLantern": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSeaLantern" - ] - }, - "cn.nukkit.level.format.generic.EmptyChunkSection": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.generic.EmptyChunkSection#getAndSetBlock(int, int, int, int, Block)", - "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockChangeStateAbove(int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockData(int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockId(int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockState(int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#getFullBlock(int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#getMaximumLayer()", - "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockAtLayer(int, int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockAtLayer(int, int, int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockData(int, int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockId(int, int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockStateAtLayer(int, int, int, int, BlockState)", - "cn.nukkit.level.format.generic.EmptyChunkSection#setFullBlockId(int, int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#toNBT()" - ] - }, - "cn.nukkit.block.BlockWeightedPressurePlateHeavy": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWeightedPressurePlateHeavy#getToolTier()" - ] - }, - "cn.nukkit.block.BlockRedstoneDiode": { - "addOverrideAnnotation": [ - "cn.nukkit.block.BlockRedstoneDiode#getStrongPower(BlockFace)", - "cn.nukkit.block.BlockRedstoneDiode#getWeakPower(BlockFace)" - ], - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockRedstoneDiode#isSupportValid(Block)" - ] - }, - "cn.nukkit.block.BlockSlabWood": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabWood#getSlabName()", - "cn.nukkit.block.BlockSlabWood#isSameType(BlockSlab)" - ] - }, - "cn.nukkit.level.format.updater.WallUpdater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.WallUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.block.BlockBeacon": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBeacon#canBePulled()" - ] - }, - "cn.nukkit.block.BlockDoubleSlabWarped": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabWarped#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabWarped#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabWarped#isCorrectTool(Item)" - ] - }, - "cn.nukkit.entity.mob.EntityPillager": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityPillager#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.block.BlockWood2": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWood2#getWoodType()", - "cn.nukkit.block.BlockWood2#setWoodType(WoodType)" - ] - }, - "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getGroundBlock(int)", - "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getGroundDepth(int)", - "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getSurfaceBlock(int)", - "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getSurfaceDepth(int)" - ] - }, - "cn.nukkit.level.format.updater.NewLeafUpdater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.NewLeafUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.block.BlockBricksEndStone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBricksEndStone#getToolTier()" + "cn.nukkit.blockentity.BlockEntityBlastFurnace#getBurningBlockId()", + "cn.nukkit.blockentity.BlockEntityBlastFurnace#getClientName()", + "cn.nukkit.blockentity.BlockEntityBlastFurnace#getFurnaceName()", + "cn.nukkit.blockentity.BlockEntityBlastFurnace#getIdleBlockId()", + "cn.nukkit.blockentity.BlockEntityBlastFurnace#getInventoryType()", + "cn.nukkit.blockentity.BlockEntityBlastFurnace#getSpeedMultiplier()", + "cn.nukkit.blockentity.BlockEntityBlastFurnace#matchRecipe(Item)" ] }, - "cn.nukkit.dispenser.ShulkerBoxDispenseBehavior": { + "cn.nukkit.blockentity.BlockEntityCauldron": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.ShulkerBoxDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" - ] - }, - "cn.nukkit.item.ItemArmorStand": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemArmorStand" + "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_EMPTY", + "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_NORMAL", + "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_SPLASH", + "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_LINGERING", + "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_LAVA", + "cn.nukkit.blockentity.BlockEntityCauldron#getPotionType()", + "cn.nukkit.blockentity.BlockEntityCauldron#setPotionType(int)" ] }, - "cn.nukkit.block.BlockSandstone": { + "cn.nukkit.blockentity.BlockEntityDispenser": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSandstone#getSandstoneType()", - "cn.nukkit.block.BlockSandstone#getToolTier()" + "cn.nukkit.blockentity.BlockEntityDispenser#createInventory()", + "cn.nukkit.blockentity.BlockEntityDispenser#getBlockEntityName()" ] }, - "cn.nukkit.network.protocol.ItemStackResponsePacket": { + "cn.nukkit.blockentity.BlockEntityDropper": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.ItemStackResponsePacket#toString()" + "cn.nukkit.blockentity.BlockEntityDropper#createInventory()", + "cn.nukkit.blockentity.BlockEntityDropper#getBlockEntityName()" ] }, - "cn.nukkit.level.format.updater.FrameUpdater": { + "cn.nukkit.blockentity.BlockEntityFurnace": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.FrameUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.network.protocol.ResourcePackDataInfoPacket": { - "addOverrideAnnotation": [ - "cn.nukkit.network.protocol.ResourcePackDataInfoPacket#getPackVersion()", - "cn.nukkit.network.protocol.ResourcePackDataInfoPacket#setPackVersion(Version)" + "cn.nukkit.blockentity.BlockEntityFurnace#getBurningBlockId()", + "cn.nukkit.blockentity.BlockEntityFurnace#getClientName()", + "cn.nukkit.blockentity.BlockEntityFurnace#getFurnaceName()", + "cn.nukkit.blockentity.BlockEntityFurnace#getIdleBlockId()", + "cn.nukkit.blockentity.BlockEntityFurnace#getInventoryType()", + "cn.nukkit.blockentity.BlockEntityFurnace#getSpeedMultiplier()", + "cn.nukkit.blockentity.BlockEntityFurnace#matchRecipe(Item)", + "cn.nukkit.blockentity.BlockEntityFurnace#setBurning(boolean)" ] }, - "cn.nukkit.block.BlockSkull": { + "cn.nukkit.blockentity.BlockEntityMovingBlock": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSkull#breaksWhenMoved()", - "cn.nukkit.block.BlockSkull#sticksToPiston()" + "cn.nukkit.blockentity.BlockEntityMovingBlock#blockString", + "cn.nukkit.blockentity.BlockEntityMovingBlock#getBlockEntity()", + "cn.nukkit.blockentity.BlockEntityMovingBlock#getMovingBlock()", + "cn.nukkit.blockentity.BlockEntityMovingBlock#getMovingBlockString()", + "cn.nukkit.blockentity.BlockEntityMovingBlock#moveCollidedEntities(BlockEntityPistonArm, BlockFace)" ] }, - "cn.nukkit.block.BlockPressurePlateStone": { + "cn.nukkit.blockentity.BlockEntityPistonArm": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPressurePlateStone#getToolTier()" + "cn.nukkit.blockentity.BlockEntityPistonArm#MOVE_STEP", + "cn.nukkit.blockentity.BlockEntityPistonArm#state", + "cn.nukkit.blockentity.BlockEntityPistonArm#newState", + "cn.nukkit.blockentity.BlockEntityPistonArm#attachedBlocks", + "cn.nukkit.blockentity.BlockEntityPistonArm#move(boolean, List)" ] }, - "cn.nukkit.block.BlockPrismarine": { + "cn.nukkit.blockentity.BlockEntitySmoker": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPrismarine#getToolTier()" + "cn.nukkit.blockentity.BlockEntitySmoker#getBurningBlockId()", + "cn.nukkit.blockentity.BlockEntitySmoker#getClientName()", + "cn.nukkit.blockentity.BlockEntitySmoker#getFurnaceName()", + "cn.nukkit.blockentity.BlockEntitySmoker#getIdleBlockId()", + "cn.nukkit.blockentity.BlockEntitySmoker#getInventoryType()", + "cn.nukkit.blockentity.BlockEntitySmoker#getSpeedMultiplier()", + "cn.nukkit.blockentity.BlockEntitySmoker#matchRecipe(Item)" ] }, - "cn.nukkit.entity.mob.EntityHoglin": { + "cn.nukkit.blockentity.BlockEntitySpawnable": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityHoglin#isBaby()" + "cn.nukkit.blockentity.BlockEntitySpawnable#getSpawnPacket()", + "cn.nukkit.blockentity.BlockEntitySpawnable#getSpawnPacket(CompoundTag)" ] }, - "cn.nukkit.block.BlockWallSign": { + "cn.nukkit.blockproperty.ArrayBlockProperty": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWallSign#getPostId()", - "cn.nukkit.block.BlockWallSign#getSignDirection()", - "cn.nukkit.block.BlockWallSign#getWallId()", - "cn.nukkit.block.BlockWallSign#setSignDirection(CompassRoseDirection)" + "cn.nukkit.blockproperty.ArrayBlockProperty#getIntValueForMeta(int)", + "cn.nukkit.blockproperty.ArrayBlockProperty#getMetaForValue(E)", + "cn.nukkit.blockproperty.ArrayBlockProperty#getPersistenceValueForMeta(int)", + "cn.nukkit.blockproperty.ArrayBlockProperty#getUniverse()", + "cn.nukkit.blockproperty.ArrayBlockProperty#getValueClass()", + "cn.nukkit.blockproperty.ArrayBlockProperty#getValueForMeta(int)", + "cn.nukkit.blockproperty.ArrayBlockProperty#validateDirectly(E)", + "cn.nukkit.blockproperty.ArrayBlockProperty#validateMetaDirectly(int)" ] }, - "cn.nukkit.block.BlockObsidianGlowing": { + "cn.nukkit.blockproperty.BlockProperties": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockObsidianGlowing#canBePulled()" + "cn.nukkit.blockproperty.BlockProperties#getPersistenceValue(int, String)", + "cn.nukkit.blockproperty.BlockProperties#getPersistenceValue(BigInteger, String)", + "cn.nukkit.blockproperty.BlockProperties#getPersistenceValue(long, String)" ] }, - "cn.nukkit.block.BlockUndyedShulkerBox": { + "cn.nukkit.blockproperty.BooleanBlockProperty": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockUndyedShulkerBox#breaksWhenMoved()", - "cn.nukkit.block.BlockUndyedShulkerBox#sticksToPiston()" + "cn.nukkit.blockproperty.BooleanBlockProperty#getIntValue(int, int)", + "cn.nukkit.blockproperty.BooleanBlockProperty#getIntValueForMeta(int)", + "cn.nukkit.blockproperty.BooleanBlockProperty#getMetaForValue(Boolean)", + "cn.nukkit.blockproperty.BooleanBlockProperty#getPersistenceValueForMeta(int)", + "cn.nukkit.blockproperty.BooleanBlockProperty#getValue(int, int)", + "cn.nukkit.blockproperty.BooleanBlockProperty#getValue(long, int)", + "cn.nukkit.blockproperty.BooleanBlockProperty#getValueClass()", + "cn.nukkit.blockproperty.BooleanBlockProperty#getValueForMeta(int)", + "cn.nukkit.blockproperty.BooleanBlockProperty#setValue(int, int, Boolean)", + "cn.nukkit.blockproperty.BooleanBlockProperty#setValue(long, int, Boolean)", + "cn.nukkit.blockproperty.BooleanBlockProperty#validateMetaDirectly(int)" ] }, - "cn.nukkit.level.biome.impl.mushroom.MushroomIslandBiome": { + "cn.nukkit.blockproperty.IntBlockProperty": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.mushroom.MushroomIslandBiome#getSurfaceBlock(int)" + "cn.nukkit.blockproperty.IntBlockProperty#getIntValueForMeta(int)", + "cn.nukkit.blockproperty.IntBlockProperty#getMetaForValue(Integer)", + "cn.nukkit.blockproperty.IntBlockProperty#getPersistenceValueForMeta(int)", + "cn.nukkit.blockproperty.IntBlockProperty#getValueClass()", + "cn.nukkit.blockproperty.IntBlockProperty#getValueForMeta(int)", + "cn.nukkit.blockproperty.IntBlockProperty#validateDirectly(Integer)", + "cn.nukkit.blockproperty.IntBlockProperty#validateMetaDirectly(int)" ] }, - "cn.nukkit.level.format.LevelProvider": { + "cn.nukkit.blockproperty.UnsignedIntBlockProperty": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.LevelProvider#getMaximumLayer()" + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getIntValueForMeta(int)", + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getMetaForValue(Integer)", + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getPersistenceValueForMeta(int)", + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getValueClass()", + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getValueForMeta(int)", + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#validateDirectly(Integer)", + "cn.nukkit.blockproperty.UnsignedIntBlockProperty#validateMetaDirectly(int)" ] }, - "cn.nukkit.level.format.updater.MesaBiomeUpdater": { + "cn.nukkit.blockstate.BigIntegerMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.MesaBiomeUpdater#update(int, int, int, int, int, int, BlockState)" + "cn.nukkit.blockstate.BigIntegerMutableBlockState", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#canEqual(Object)", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#copy()", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getBigDamage()", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getBooleanValue(String)", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getCurrentState()", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getDataStorage()", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getIntValue(String)", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getLegacyDamage()", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getPersistenceValue(String)", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#getPropertyValue(String)", + "cn.nukkit.blockstate.BigIntegerMutableBlockState#validate()" ] }, - "cn.nukkit.level.generator.object.ObjectTallGrass": { + "cn.nukkit.blockstate.BlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.generator.object.ObjectTallGrass#growGrass(ChunkManager, Vector3, NukkitRandom, int, int)" + "cn.nukkit.blockstate.BlockState#blockId", + "cn.nukkit.blockstate.BlockState#getBigDamage()", + "cn.nukkit.blockstate.BlockState#getBitSize()", + "cn.nukkit.blockstate.BlockState#getBlock()", + "cn.nukkit.blockstate.BlockState#getBlock(Level, int, int, int, int, boolean, Consumer)", + "cn.nukkit.blockstate.BlockState#getBlockId()", + "cn.nukkit.blockstate.BlockState#getBooleanValue(String)", + "cn.nukkit.blockstate.BlockState#getCurrentState()", + "cn.nukkit.blockstate.BlockState#getDataStorage()", + "cn.nukkit.blockstate.BlockState#getIntValue(String)", + "cn.nukkit.blockstate.BlockState#getLegacyDamage()", + "cn.nukkit.blockstate.BlockState#getPersistenceValue(String)", + "cn.nukkit.blockstate.BlockState#getProperties()", + "cn.nukkit.blockstate.BlockState#getPropertyValue(String)" ] }, - "cn.nukkit.utils.PersonaPiece": { + "cn.nukkit.blockstate.BlockStateRepair": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.PersonaPiece#canEqual(Object)" - ] - }, - "cn.nukkit.event.block.AnvilDamageEvent": { - "addOverrideAnnotation": [ - "cn.nukkit.event.block.AnvilDamageEvent#getHandlers()" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.block.AnvilDamageEvent#getCause()" + "cn.nukkit.blockstate.BlockStateRepair#getBlockId()", + "cn.nukkit.blockstate.BlockStateRepair#getBrokenPropertyMeta()", + "cn.nukkit.blockstate.BlockStateRepair#getCurrentState()", + "cn.nukkit.blockstate.BlockStateRepair#getFixedPropertyValue()", + "cn.nukkit.blockstate.BlockStateRepair#getNextState()", + "cn.nukkit.blockstate.BlockStateRepair#getOriginalState()", + "cn.nukkit.blockstate.BlockStateRepair#getProperties()", + "cn.nukkit.blockstate.BlockStateRepair#getProperty()", + "cn.nukkit.blockstate.BlockStateRepair#getPropertyOffset()", + "cn.nukkit.blockstate.BlockStateRepair#getProposedPropertyValue()", + "cn.nukkit.blockstate.BlockStateRepair#getRepairs()", + "cn.nukkit.blockstate.BlockStateRepair#getValidationException()", + "cn.nukkit.blockstate.BlockStateRepair#(int, BlockProperties, Number, Number, Number, int, BlockProperty, int, int, Serializable, Serializable, InvalidBlockPropertyException)" ] }, - "cn.nukkit.block.BlockFenceBase": { + "cn.nukkit.blockstate.ByteMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFenceBase#getWoodType()", - "cn.nukkit.block.BlockFenceBase#setWoodType(WoodType)" + "cn.nukkit.blockstate.ByteMutableBlockState#canEqual(Object)", + "cn.nukkit.blockstate.ByteMutableBlockState#copy()", + "cn.nukkit.blockstate.ByteMutableBlockState#getBigDamage()", + "cn.nukkit.blockstate.ByteMutableBlockState#getBooleanValue(String)", + "cn.nukkit.blockstate.ByteMutableBlockState#getCurrentState()", + "cn.nukkit.blockstate.ByteMutableBlockState#getDataStorage()", + "cn.nukkit.blockstate.ByteMutableBlockState#getIntValue(String)", + "cn.nukkit.blockstate.ByteMutableBlockState#getLegacyDamage()", + "cn.nukkit.blockstate.ByteMutableBlockState#getPersistenceValue(String)", + "cn.nukkit.blockstate.ByteMutableBlockState#getPropertyValue(String)", + "cn.nukkit.blockstate.ByteMutableBlockState#validate()" ] }, - "cn.nukkit.utils.SerializedImage": { + "cn.nukkit.blockstate.IBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.SerializedImage#canEqual(Object)" + "cn.nukkit.blockstate.IBlockState#getBigId()" ] }, - "cn.nukkit.block.BlockFenceNetherBrick": { + "cn.nukkit.blockstate.IntMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFenceNetherBrick#getToolTier()" + "cn.nukkit.blockstate.IntMutableBlockState#canEqual(Object)", + "cn.nukkit.blockstate.IntMutableBlockState#copy()", + "cn.nukkit.blockstate.IntMutableBlockState#getBigDamage()", + "cn.nukkit.blockstate.IntMutableBlockState#getBooleanValue(String)", + "cn.nukkit.blockstate.IntMutableBlockState#getCurrentState()", + "cn.nukkit.blockstate.IntMutableBlockState#getDataStorage()", + "cn.nukkit.blockstate.IntMutableBlockState#getIntValue(String)", + "cn.nukkit.blockstate.IntMutableBlockState#getLegacyDamage()", + "cn.nukkit.blockstate.IntMutableBlockState#getPersistenceValue(String)", + "cn.nukkit.blockstate.IntMutableBlockState#getPropertyValue(String)", + "cn.nukkit.blockstate.IntMutableBlockState#validate()" ] }, - "cn.nukkit.block.BlockSlabStone4": { + "cn.nukkit.blockstate.LongMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabStone4#getSlabName()", - "cn.nukkit.block.BlockSlabStone4#getToolTier()", - "cn.nukkit.block.BlockSlabStone4#isSameType(BlockSlab)" + "cn.nukkit.blockstate.LongMutableBlockState#canEqual(Object)", + "cn.nukkit.blockstate.LongMutableBlockState#copy()", + "cn.nukkit.blockstate.LongMutableBlockState#getBigDamage()", + "cn.nukkit.blockstate.LongMutableBlockState#getBooleanValue(String)", + "cn.nukkit.blockstate.LongMutableBlockState#getCurrentState()", + "cn.nukkit.blockstate.LongMutableBlockState#getDataStorage()", + "cn.nukkit.blockstate.LongMutableBlockState#getIntValue(String)", + "cn.nukkit.blockstate.LongMutableBlockState#getLegacyDamage()", + "cn.nukkit.blockstate.LongMutableBlockState#getPersistenceValue(String)", + "cn.nukkit.blockstate.LongMutableBlockState#getPropertyValue(String)", + "cn.nukkit.blockstate.LongMutableBlockState#validate()" ] }, - "cn.nukkit.block.BlockSlabStone3": { + "cn.nukkit.blockstate.MutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabStone3#getSlabName()", - "cn.nukkit.block.BlockSlabStone3#getToolTier()", - "cn.nukkit.block.BlockSlabStone3#isSameType(BlockSlab)" + "cn.nukkit.blockstate.MutableBlockState#canEqual(Object)", + "cn.nukkit.blockstate.MutableBlockState#getBigId()", + "cn.nukkit.blockstate.MutableBlockState#getBitSize()", + "cn.nukkit.blockstate.MutableBlockState#getBlockId()", + "cn.nukkit.blockstate.MutableBlockState#getFullId()", + "cn.nukkit.blockstate.MutableBlockState#getProperties()" ] }, - "cn.nukkit.level.generator.populator.impl.PopulatorOre": { + "cn.nukkit.blockstate.ZeroMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.generator.populator.impl.PopulatorOre#setOreTypes(OreType[])" + "cn.nukkit.blockstate.ZeroMutableBlockState#copy()", + "cn.nukkit.blockstate.ZeroMutableBlockState#validate()" ] }, - "cn.nukkit.entity.EntityHuman": { + "cn.nukkit.command.CapturingCommandSender": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.EntityHuman#onBlock(Entity, boolean)" + "cn.nukkit.command.CapturingCommandSender#getCleanCapture()", + "cn.nukkit.command.CapturingCommandSender#getRawCapture()", + "cn.nukkit.command.CapturingCommandSender#resetCapture()", + "cn.nukkit.command.CapturingCommandSender#()", + "cn.nukkit.command.CapturingCommandSender#(String)", + "cn.nukkit.command.CapturingCommandSender#(String, boolean)", + "cn.nukkit.command.CapturingCommandSender#(String, boolean, Permissible)", + "cn.nukkit.command.CapturingCommandSender#(String, boolean, Function)" ] }, - "cn.nukkit.block.BlockCauldronLava": { + "cn.nukkit.command.Command": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCauldronLava#setFillLevel(int)" + "cn.nukkit.command.Command#parseTilde(String, double)" ] }, - "cn.nukkit.block.BlockGrindstone": { + "cn.nukkit.dispenser.BoatDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockGrindstone#getToolTier()" + "cn.nukkit.dispenser.BoatDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", + "cn.nukkit.dispenser.BoatDispenseBehavior#()" ] }, - "cn.nukkit.item.enchantment.EnchantmentThorns": { + "cn.nukkit.dispenser.BucketDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.enchantment.EnchantmentThorns#isItemAcceptable(Item)" - ] - }, - "cn.nukkit.math.BlockFace": { - "addOverrideAnnotation": [ - "cn.nukkit.math.BlockFace#toString()" + "cn.nukkit.dispenser.BucketDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" ] }, - "cn.nukkit.utils.PersonaPieceTint": { + "cn.nukkit.dispenser.DefaultDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.PersonaPieceTint#canEqual(Object)" + "cn.nukkit.dispenser.DefaultDispenseBehavior#success" ] }, - "cn.nukkit.api.NewRakNetOnly": { + "cn.nukkit.dispenser.DispenseBehaviorRegister": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.api.NewRakNetOnly#value()" - ] - }, - "cn.nukkit.inventory.transaction.action.CraftingTakeResultAction": { - "addOverrideAnnotation": [ - "cn.nukkit.inventory.transaction.action.CraftingTakeResultAction#onAddToTransaction(InventoryTransaction)" + "cn.nukkit.dispenser.DispenseBehaviorRegister#init()" ] }, - "cn.nukkit.block.BlockNetherrack": { + "cn.nukkit.dispenser.DropperDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockNetherrack#getToolTier()" + "cn.nukkit.dispenser.DropperDispenseBehavior#()" ] }, - "cn.nukkit.item.ItemScrapNetherite": { + "cn.nukkit.dispenser.DyeDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemScrapNetherite#isLavaResistant()" + "cn.nukkit.dispenser.DyeDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", + "cn.nukkit.dispenser.DyeDispenseBehavior#()" ] }, - "cn.nukkit.entity.mob.EntityWither": { + "cn.nukkit.dispenser.EmptyBucketDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityWither#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityWither#isUndead()" + "cn.nukkit.dispenser.EmptyBucketDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" ] }, - "cn.nukkit.block.BlockOreCoal": { + "cn.nukkit.dispenser.FireworksDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreCoal#getToolTier()" + "cn.nukkit.dispenser.FireworksDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", + "cn.nukkit.dispenser.FireworksDispenseBehavior#()" ] }, - "cn.nukkit.level.format.anvil.SingleLayerStorage": { + "cn.nukkit.dispenser.FlintAndSteelDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.anvil.SingleLayerStorage#clone()" - ] - }, - "cn.nukkit.event.player.PlayerDeathEvent": { - "addOverrideAnnotation": [ - "cn.nukkit.event.player.PlayerDeathEvent#getHandlers()" + "cn.nukkit.dispenser.FlintAndSteelDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", + "cn.nukkit.dispenser.FlintAndSteelDispenseBehavior#()" ] }, - "cn.nukkit.block.BlockBricksNether": { + "cn.nukkit.dispenser.ProjectileDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBricksNether#getToolTier()" + "cn.nukkit.dispenser.ProjectileDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", + "cn.nukkit.dispenser.ProjectileDispenseBehavior#getAccuracy()", + "cn.nukkit.dispenser.ProjectileDispenseBehavior#getMotion()" ] }, - "cn.nukkit.dispenser.DispenseBehavior": { + "cn.nukkit.dispenser.ShulkerBoxDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.DispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + "cn.nukkit.dispenser.ShulkerBoxDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", + "cn.nukkit.dispenser.ShulkerBoxDispenseBehavior#()" ] }, - "cn.nukkit.item.ItemSwordNetherite": { + "cn.nukkit.dispenser.SpawnEggDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemSwordNetherite#isLavaResistant()" + "cn.nukkit.dispenser.SpawnEggDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", + "cn.nukkit.dispenser.SpawnEggDispenseBehavior#()" ] }, - "cn.nukkit.level.format.anvil.LayerStorage": { + "cn.nukkit.dispenser.TNTDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.anvil.LayerStorage#clone()" + "cn.nukkit.dispenser.TNTDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", + "cn.nukkit.dispenser.TNTDispenseBehavior#()" ] }, - "cn.nukkit.math.AxisAlignedBB": { + "cn.nukkit.entity.Entity": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.math.AxisAlignedBB#getOffsetBoundingBox(BlockFace, double, double, double)" + "cn.nukkit.entity.Entity#canBePushed()", + "cn.nukkit.entity.Entity#isTouchingWater()", + "cn.nukkit.entity.Entity#isUndead()", + "cn.nukkit.entity.Entity#onPushByPiston(BlockEntityPistonArm)" ] }, - "cn.nukkit.item.ItemEnderPearl": { + "cn.nukkit.entity.EntityHuman": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemEnderPearl#correctProjectile(Player, Entity)" + "cn.nukkit.entity.EntityHuman#onBlock(Entity, boolean)" ] }, - "cn.nukkit.block.BlockSpruceSignPost": { + "cn.nukkit.entity.EntityLiving": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSpruceSignPost#getWallId()" - ] - }, - "cn.nukkit.event.block.DoorToggleEvent": { - "addOverrideAnnotation": [ - "cn.nukkit.event.block.DoorToggleEvent#getHandlers()" + "cn.nukkit.entity.EntityLiving#isBlocking()", + "cn.nukkit.entity.EntityLiving#onBlock(Entity, boolean)", + "cn.nukkit.entity.EntityLiving#setBlocking(boolean)" ] }, - "cn.nukkit.block.BlockEmerald": { + "cn.nukkit.entity.data.Skin": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEmerald#getToolTier()" + "cn.nukkit.entity.data.Skin#canEqual(Object)" ] }, - "cn.nukkit.entity.mob.EntityVex": { + "cn.nukkit.entity.item.EntityExpBottle": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityVex#isPreventingSleep(Player)" + "cn.nukkit.entity.item.EntityExpBottle#addHitEffect()" ] }, - "cn.nukkit.level.format.FullChunk": { + "cn.nukkit.entity.item.EntityFallingBlock": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.FullChunk#recalculateHeightMapColumn(int, int)" + "cn.nukkit.entity.item.EntityFallingBlock#breakOnLava" ] }, - "cn.nukkit.blockproperty.BlockProperties": { + "cn.nukkit.entity.item.EntityPainting": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockproperty.BlockProperties#getPersistenceValue(int, String)", - "cn.nukkit.blockproperty.BlockProperties#getPersistenceValue(BigInteger, String)", - "cn.nukkit.blockproperty.BlockProperties#getPersistenceValue(long, String)", - "cn.nukkit.blockproperty.BlockProperties#toString()" + "cn.nukkit.entity.item.EntityPainting#onPushByPiston(BlockEntityPistonArm)" ] }, - "cn.nukkit.blockentity.BlockEntityBlastFurnace": { + "cn.nukkit.entity.item.EntityPotion": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityBlastFurnace#getBurningBlockId()", - "cn.nukkit.blockentity.BlockEntityBlastFurnace#getClientName()", - "cn.nukkit.blockentity.BlockEntityBlastFurnace#getFurnaceName()", - "cn.nukkit.blockentity.BlockEntityBlastFurnace#getIdleBlockId()", - "cn.nukkit.blockentity.BlockEntityBlastFurnace#getInventoryType()", - "cn.nukkit.blockentity.BlockEntityBlastFurnace#getSpeedMultiplier()", - "cn.nukkit.blockentity.BlockEntityBlastFurnace#matchRecipe(Item)" - ] - }, - "cn.nukkit.block.BlockTurtleEgg": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockTurtleEgg#getHardness()" + "cn.nukkit.entity.item.EntityPotion#splash(Entity)" ] }, - "cn.nukkit.block.BlockCauldron": { - "addOverrideAnnotation": [ - "cn.nukkit.block.BlockCauldron#getName()" - ], + "cn.nukkit.entity.item.EntityPotionLingering": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCauldron#getFillLevel()", - "cn.nukkit.block.BlockCauldron#getToolTier()", - "cn.nukkit.block.BlockCauldron#setFillLevel(int)" + "cn.nukkit.entity.item.EntityPotionLingering#splash(Entity)" ] }, - "cn.nukkit.inventory.CampfireRecipe": { + "cn.nukkit.entity.mob.EntityBlaze": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.CampfireRecipe#getInput()" + "cn.nukkit.entity.mob.EntityBlaze#isPreventingSleep(Player)" ] }, - "cn.nukkit.block.BlockWoodStripped": { + "cn.nukkit.entity.mob.EntityCaveSpider": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStripped#getStrippedState()", - "cn.nukkit.block.BlockWoodStripped#setWoodType(WoodType)" + "cn.nukkit.entity.mob.EntityCaveSpider#isPreventingSleep(Player)" ] }, - "cn.nukkit.block.BlockHopper": { + "cn.nukkit.entity.mob.EntityCreeper": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockHopper#getToolTier()" + "cn.nukkit.entity.mob.EntityCreeper#isPreventingSleep(Player)" ] }, - "cn.nukkit.block.BlockRail": { + "cn.nukkit.entity.mob.EntityDrowned": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockRail#canBePulled()" + "cn.nukkit.entity.mob.EntityDrowned#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityDrowned#isUndead()" ] }, - "cn.nukkit.level.GlobalBlockPalette": { + "cn.nukkit.entity.mob.EntityElderGuardian": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.GlobalBlockPalette#BLOCK_PALETTE", - "cn.nukkit.level.GlobalBlockPalette#getName(int)" + "cn.nukkit.entity.mob.EntityElderGuardian#isPreventingSleep(Player)" ] }, - "cn.nukkit.math.ChunkVector2": { + "cn.nukkit.entity.mob.EntityEnderman": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.math.ChunkVector2#toString()" - ] - }, - "cn.nukkit.event.server.RemoteServerCommandEvent": { - "addOverrideAnnotation": [ - "cn.nukkit.event.server.RemoteServerCommandEvent#getHandlers()" + "cn.nukkit.entity.mob.EntityEnderman#isPreventingSleep(Player)" ] }, - "cn.nukkit.level.format.updater.SnowLayerUpdater": { + "cn.nukkit.entity.mob.EntityEndermite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.SnowLayerUpdater#update(int, int, int, int, int, int, BlockState)" + "cn.nukkit.entity.mob.EntityEndermite#isPreventingSleep(Player)" ] }, - "cn.nukkit.block.BlockVine": { + "cn.nukkit.entity.mob.EntityEvoker": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockVine#breaksWhenMoved()", - "cn.nukkit.block.BlockVine#sticksToPiston()" + "cn.nukkit.entity.mob.EntityEvoker#isPreventingSleep(Player)" ] }, - "cn.nukkit.inventory.SmokerRecipe": { + "cn.nukkit.entity.mob.EntityGuardian": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.SmokerRecipe#getInput()" + "cn.nukkit.entity.mob.EntityGuardian#isPreventingSleep(Player)" ] }, - "cn.nukkit.block.BlockPiston": { + "cn.nukkit.entity.mob.EntityHoglin": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPiston#getPistonHeadBlockId()" - ] - }, - "cn.nukkit.event.block.BlockSpreadEvent": { - "addOverrideAnnotation": [ - "cn.nukkit.event.block.BlockSpreadEvent#getHandlers()" - ] - }, - "cn.nukkit.level.generator.object.mushroom.BigMushroom": { - "addOverrideAnnotation": [ - "cn.nukkit.level.generator.object.mushroom.BigMushroom#generate(ChunkManager, NukkitRandom, Vector3)" + "cn.nukkit.entity.mob.EntityHoglin#isBaby()" ] }, - "cn.nukkit.inventory.SmithingRecipe": { + "cn.nukkit.entity.mob.EntityHusk": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.SmithingRecipe#toString()" + "cn.nukkit.entity.mob.EntityHusk#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityHusk#isUndead()" ] }, - "cn.nukkit.block.BlockDoor": { + "cn.nukkit.entity.mob.EntityPhantom": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoor#PROPERTIES", - "cn.nukkit.block.BlockDoor#breaksWhenMoved()", - "cn.nukkit.block.BlockDoor#sticksToPiston()" + "cn.nukkit.entity.mob.EntityPhantom#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityPhantom#isUndead()" ] }, - "cn.nukkit.api.DeprecationDetails": { + "cn.nukkit.entity.mob.EntityPiglin": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.api.DeprecationDetails#by()", - "cn.nukkit.api.DeprecationDetails#reason()", - "cn.nukkit.api.DeprecationDetails#replaceWith()", - "cn.nukkit.api.DeprecationDetails#since()", - "cn.nukkit.api.DeprecationDetails#toBeRemovedAt()" + "cn.nukkit.entity.mob.EntityPiglin#isBaby()", + "cn.nukkit.entity.mob.EntityPiglin#isPreventingSleep(Player)" ] }, - "cn.nukkit.block.BlockBasalt": { + "cn.nukkit.entity.mob.EntityPiglinBrute": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBasalt#getToolTier()" - ] - }, - "cn.nukkit.level.format.anvil.palette.BitArray256": { - "addOverrideAnnotation": [ - "cn.nukkit.level.format.anvil.palette.BitArray256#clone()" + "cn.nukkit.entity.mob.EntityPiglinBrute#isPreventingSleep(Player)" ] }, - "cn.nukkit.block.BlockAcaciaSignPost": { + "cn.nukkit.entity.mob.EntityPillager": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockAcaciaSignPost#getWallId()" + "cn.nukkit.entity.mob.EntityPillager#isPreventingSleep(Player)" ] }, - "cn.nukkit.block.BlockSlabBrickBlackstonePolished": { + "cn.nukkit.entity.mob.EntityRavager": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabBrickBlackstonePolished#getSlabName()" + "cn.nukkit.entity.mob.EntityRavager#isPreventingSleep(Player)" ] }, - "cn.nukkit.entity.mob.EntityEnderman": { + "cn.nukkit.entity.mob.EntitySilverfish": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityEnderman#isPreventingSleep(Player)" + "cn.nukkit.entity.mob.EntitySilverfish#isPreventingSleep(Player)" ] }, - "cn.nukkit.entity.projectile.EntityProjectile": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.projectile.EntityProjectile#attack(EntityDamageEvent)" - ], + "cn.nukkit.entity.mob.EntitySkeleton": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.projectile.EntityProjectile#inaccurate(float)", - "cn.nukkit.entity.projectile.EntityProjectile#updateRotation()" + "cn.nukkit.entity.mob.EntitySkeleton#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntitySkeleton#isUndead()" ] }, - "cn.nukkit.blockentity.BlockEntityDropper": { + "cn.nukkit.entity.mob.EntitySpider": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityDropper#createInventory()", - "cn.nukkit.blockentity.BlockEntityDropper#getBlockEntityName()" + "cn.nukkit.entity.mob.EntitySpider#isPreventingSleep(Player)" ] }, - "cn.nukkit.positiontracking.NamedPosition": { + "cn.nukkit.entity.mob.EntityStray": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.positiontracking.NamedPosition#matchesNamedPosition(NamedPosition)" + "cn.nukkit.entity.mob.EntityStray#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityStray#isUndead()" ] }, - "cn.nukkit.inventory.Inventory": { + "cn.nukkit.entity.mob.EntityVex": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.Inventory#addListener(InventoryListener)", - "cn.nukkit.inventory.Inventory#removeListener(InventoryListener)" + "cn.nukkit.entity.mob.EntityVex#isPreventingSleep(Player)" ] }, - "cn.nukkit.utils.collection.ConvertingMapWrapper": { + "cn.nukkit.entity.mob.EntityVindicator": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.collection.ConvertingMapWrapper#clear()", - "cn.nukkit.utils.collection.ConvertingMapWrapper#containsKey(Object)", - "cn.nukkit.utils.collection.ConvertingMapWrapper#containsValue(Object)", - "cn.nukkit.utils.collection.ConvertingMapWrapper#entrySet()", - "cn.nukkit.utils.collection.ConvertingMapWrapper#get(Object)", - "cn.nukkit.utils.collection.ConvertingMapWrapper#isEmpty()", - "cn.nukkit.utils.collection.ConvertingMapWrapper#keySet()", - "cn.nukkit.utils.collection.ConvertingMapWrapper#put(K, V1)", - "cn.nukkit.utils.collection.ConvertingMapWrapper#remove(Object)", - "cn.nukkit.utils.collection.ConvertingMapWrapper#remove(Object, Object)", - "cn.nukkit.utils.collection.ConvertingMapWrapper#size()" + "cn.nukkit.entity.mob.EntityVindicator#isPreventingSleep(Player)" ] }, - "cn.nukkit.block.BlockFurnaceBurning": { + "cn.nukkit.entity.mob.EntityWitch": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFurnaceBurning#getToolTier()" + "cn.nukkit.entity.mob.EntityWitch#isPreventingSleep(Player)" ] }, - "cn.nukkit.block.BlockMossStone": { + "cn.nukkit.entity.mob.EntityWither": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockMossStone#getToolTier()" + "cn.nukkit.entity.mob.EntityWither#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityWither#isUndead()" ] }, - "cn.nukkit.event.blockstate.BlockStateRepairFinishEvent": { - "addOverrideAnnotation": [ - "cn.nukkit.event.blockstate.BlockStateRepairFinishEvent#getHandlers()" - ], + "cn.nukkit.entity.mob.EntityWitherSkeleton": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.blockstate.BlockStateRepairFinishEvent#getResult()" + "cn.nukkit.entity.mob.EntityWitherSkeleton#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityWitherSkeleton#isUndead()" ] }, - "cn.nukkit.item.enchantment.EnchantmentDurability": { + "cn.nukkit.entity.mob.EntityZoglin": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.enchantment.EnchantmentDurability#isItemAcceptable(Item)" + "cn.nukkit.entity.mob.EntityZoglin#isBaby()", + "cn.nukkit.entity.mob.EntityZoglin#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityZoglin#isUndead()" ] }, - "cn.nukkit.plugin.service.RegisteredServiceProvider": { - "addOverrideAnnotation": [ - "cn.nukkit.plugin.service.RegisteredServiceProvider#compareTo(RegisteredServiceProvider)" + "cn.nukkit.entity.mob.EntityZombie": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityZombie#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityZombie#isUndead()" ] }, - "cn.nukkit.entity.passive.EntityZombieHorse": { + "cn.nukkit.entity.mob.EntityZombiePigman": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.passive.EntityZombieHorse#isUndead()" + "cn.nukkit.entity.mob.EntityZombiePigman#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityZombiePigman#isUndead()" ] }, - "cn.nukkit.block.BlockLantern": { + "cn.nukkit.entity.mob.EntityZombieVillager": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLantern#getToolTier()" + "cn.nukkit.entity.mob.EntityZombieVillager#isPreventingSleep(Player)", + "cn.nukkit.entity.mob.EntityZombieVillager#isUndead()" ] }, - "cn.nukkit.form.window.FormWindowModal": { - "addOverrideAnnotation": [ - "cn.nukkit.form.window.FormWindowModal#getResponse()", - "cn.nukkit.form.window.FormWindowModal#setResponse(String)" + "cn.nukkit.entity.mob.EntityZombieVillagerV1": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.mob.EntityZombieVillagerV1#isUndead()" ] }, - "cn.nukkit.plugin.PluginBase": { - "addOverrideAnnotation": [ - "cn.nukkit.plugin.PluginBase#getDataFolder()", - "cn.nukkit.plugin.PluginBase#getDescription()", - "cn.nukkit.plugin.PluginBase#getLogger()", - "cn.nukkit.plugin.PluginBase#isDisabled()", - "cn.nukkit.plugin.PluginBase#isEnabled()", - "cn.nukkit.plugin.PluginBase#onDisable()", - "cn.nukkit.plugin.PluginBase#onEnable()", - "cn.nukkit.plugin.PluginBase#onLoad()" + "cn.nukkit.entity.passive.EntityBee": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.entity.passive.EntityBee#getHasNectar()", + "cn.nukkit.entity.passive.EntityBee#isAngry()", + "cn.nukkit.entity.passive.EntityBee#leftBeehive(BlockEntityBeehive)", + "cn.nukkit.entity.passive.EntityBee#nectarDelivered(BlockEntityBeehive)", + "cn.nukkit.entity.passive.EntityBee#setAngry(boolean)", + "cn.nukkit.entity.passive.EntityBee#setAngry(Player)", + "cn.nukkit.entity.passive.EntityBee#setHasNectar(boolean)" ] }, - "cn.nukkit.block.BlockMelon": { - "addOverrideAnnotation": [ - "cn.nukkit.block.BlockMelon#getHardness()", - "cn.nukkit.block.BlockMelon#getName()" - ], + "cn.nukkit.entity.passive.EntitySkeletonHorse": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockMelon#breaksWhenMoved()", - "cn.nukkit.block.BlockMelon#sticksToPiston()" + "cn.nukkit.entity.passive.EntitySkeletonHorse#isUndead()" ] }, - "cn.nukkit.block.BlockSmoothStone": { + "cn.nukkit.entity.passive.EntityTurtle": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSmoothStone#getToolTier()" + "cn.nukkit.entity.passive.EntityTurtle#setBreedingAge(int)", + "cn.nukkit.entity.passive.EntityTurtle#setHomePos(Vector3)" ] }, - "cn.nukkit.block.BlockDoubleSlabBlackstone": { + "cn.nukkit.entity.passive.EntityZombieHorse": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabBlackstone#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabBlackstone#getSlabName()" + "cn.nukkit.entity.passive.EntityZombieHorse#isUndead()" ] }, - "cn.nukkit.Nukkit": { + "cn.nukkit.entity.projectile.EntityArrow": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.Nukkit#GIT_COMMIT" + "cn.nukkit.entity.projectile.EntityArrow#addHitEffect()" ] }, - "cn.nukkit.block.BlockLeaves2": { + "cn.nukkit.entity.projectile.EntityEgg": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLeaves2#getType()", - "cn.nukkit.block.BlockLeaves2#setType(WoodType)" + "cn.nukkit.entity.projectile.EntityEgg#addHitEffect()" ] }, - "cn.nukkit.block.BlockOreRedstone": { + "cn.nukkit.entity.projectile.EntityProjectile": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreRedstone#getToolTier()" + "cn.nukkit.entity.projectile.EntityProjectile#inaccurate(float)", + "cn.nukkit.entity.projectile.EntityProjectile#updateRotation()" ] }, - "cn.nukkit.block.BlockWoodStrippedBirch": { + "cn.nukkit.entity.projectile.EntitySnowball": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStrippedBirch#getWoodType()" + "cn.nukkit.entity.projectile.EntitySnowball#addHitEffect()" ] }, - "cn.nukkit.blockentity.BlockEntitySmoker": { + "cn.nukkit.entity.projectile.EntityThrownTrident": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntitySmoker#getBurningBlockId()", - "cn.nukkit.blockentity.BlockEntitySmoker#getClientName()", - "cn.nukkit.blockentity.BlockEntitySmoker#getFurnaceName()", - "cn.nukkit.blockentity.BlockEntitySmoker#getIdleBlockId()", - "cn.nukkit.blockentity.BlockEntitySmoker#getInventoryType()", - "cn.nukkit.blockentity.BlockEntitySmoker#getSpeedMultiplier()", - "cn.nukkit.blockentity.BlockEntitySmoker#matchRecipe(Item)" + "cn.nukkit.entity.projectile.EntityThrownTrident#gravity", + "cn.nukkit.entity.projectile.EntityThrownTrident#drag", + "cn.nukkit.entity.projectile.EntityThrownTrident#create(Object, Position, Object[])", + "cn.nukkit.entity.projectile.EntityThrownTrident#isCritical()", + "cn.nukkit.entity.projectile.EntityThrownTrident#setCritical()", + "cn.nukkit.entity.projectile.EntityThrownTrident#setCritical(boolean)" ] }, - "cn.nukkit.inventory.ShapedRecipe": { - "addOverrideAnnotation": [ - "cn.nukkit.inventory.ShapedRecipe#matchItems(List, List, int)" + "cn.nukkit.event.blockstate.BlockStateRepairFinishEvent": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.event.blockstate.BlockStateRepairFinishEvent#getResult()" ] }, - "cn.nukkit.entity.data.ShortEntityData": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.data.ShortEntityData#getData()", - "cn.nukkit.entity.data.ShortEntityData#setData(Integer)" + "cn.nukkit.event.entity.CreatureSpawnEvent": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.event.entity.CreatureSpawnEvent#(int, Position, SpawnReason)" ] }, - "cn.nukkit.blockentity.BlockEntitySpawnable": { + "cn.nukkit.event.entity.EntityExplodeEvent": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntitySpawnable#getSpawnPacket()", - "cn.nukkit.blockentity.BlockEntitySpawnable#getSpawnPacket(CompoundTag)" + "cn.nukkit.event.entity.EntityExplodeEvent#ignitions" ] }, - "cn.nukkit.block.BlockStairsSandstone": { + "cn.nukkit.event.inventory.EnchantItemEvent": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsSandstone#getToolTier()" + "cn.nukkit.event.inventory.EnchantItemEvent#oldItem", + "cn.nukkit.event.inventory.EnchantItemEvent#newItem", + "cn.nukkit.event.inventory.EnchantItemEvent#xpCost", + "cn.nukkit.event.inventory.EnchantItemEvent#enchanter" ] }, - "cn.nukkit.block.BlockStairsPrismarine": { + "cn.nukkit.event.player.PlayerBucketEmptyEvent": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsPrismarine#getToolTier()" + "cn.nukkit.event.player.PlayerBucketEmptyEvent#(Player, Block, BlockFace, Block, Item, Item)" ] }, - "cn.nukkit.item.ItemPotionLingering": { + "cn.nukkit.event.player.PlayerBucketEvent": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemPotionLingering#correctNBT(CompoundTag)", - "cn.nukkit.item.ItemPotionLingering#getProjectileEntityType()", - "cn.nukkit.item.ItemPotionLingering#getThrowForce()" + "cn.nukkit.event.player.PlayerBucketEvent#(Player, Block, BlockFace, Block, Item, Item)" ] }, - "cn.nukkit.event.inventory.PlayerTypingAnvilInventoryEvent": { + "cn.nukkit.event.player.PlayerBucketFillEvent": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.inventory.PlayerTypingAnvilInventoryEvent#toString()" + "cn.nukkit.event.player.PlayerBucketFillEvent#(Player, Block, BlockFace, Block, Item, Item)" ] }, - "cn.nukkit.block.BlockHyphaeCrimson": { + "cn.nukkit.event.vehicle.VehicleDamageEvent": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockHyphaeCrimson#getStrippedState()" + "cn.nukkit.event.vehicle.VehicleDamageEvent#(EntityVehicle, double)" ] }, - "cn.nukkit.item.ItemChorusFruitPopped": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemChorusFruitPopped" + "cn.nukkit.event.vehicle.VehicleDestroyEvent": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.event.vehicle.VehicleDestroyEvent#(Entity)" ] }, - "cn.nukkit.level.biome.impl.iceplains.IcePlainsBiome": { - "addOverrideAnnotation": [ - "cn.nukkit.level.biome.impl.iceplains.IcePlainsBiome#getName()" + "cn.nukkit.inventory.BaseInventory": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.BaseInventory#addListener(InventoryListener)", + "cn.nukkit.inventory.BaseInventory#removeListener(InventoryListener)" ] }, - "cn.nukkit.block.BlockWoodStrippedSpruce": { + "cn.nukkit.inventory.BlastFurnaceRecipe": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStrippedSpruce#getWoodType()" + "cn.nukkit.inventory.BlastFurnaceRecipe#getInput()" ] }, - "cn.nukkit.block.BlockCoralFanHang2": { + "cn.nukkit.inventory.CampfireRecipe": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCoralFanHang2#getType()" + "cn.nukkit.inventory.CampfireRecipe#getInput()" ] }, - "cn.nukkit.item.ItemHelmetNetherite": { + "cn.nukkit.inventory.CraftingManager": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemHelmetNetherite#isLavaResistant()" + "cn.nukkit.inventory.CraftingManager#blastFurnaceRecipes", + "cn.nukkit.inventory.CraftingManager#smokerRecipes", + "cn.nukkit.inventory.CraftingManager#campfireRecipes", + "cn.nukkit.inventory.CraftingManager#stonecutterRecipes", + "cn.nukkit.inventory.CraftingManager#cartographyRecipes", + "cn.nukkit.inventory.CraftingManager#matchBlastFurnaceRecipe(Item)", + "cn.nukkit.inventory.CraftingManager#matchCampfireRecipe(Item)", + "cn.nukkit.inventory.CraftingManager#matchCartographyRecipe(List, Item, List)", + "cn.nukkit.inventory.CraftingManager#matchSmokerRecipe(Item)", + "cn.nukkit.inventory.CraftingManager#matchStonecutterRecipe(Item)", + "cn.nukkit.inventory.CraftingManager#registerBlastFurnaceRecipe(BlastFurnaceRecipe)", + "cn.nukkit.inventory.CraftingManager#registerCampfireRecipe(CampfireRecipe)", + "cn.nukkit.inventory.CraftingManager#registerCartographyRecipe(CartographyRecipe)", + "cn.nukkit.inventory.CraftingManager#registerSmokerRecipe(SmokerRecipe)", + "cn.nukkit.inventory.CraftingManager#registerStonecutterRecipe(StonecutterRecipe)" ] }, - "cn.nukkit.entity.mob.EntityDrowned": { + "cn.nukkit.inventory.FurnaceInventory": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityDrowned#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityDrowned#isUndead()" + "cn.nukkit.inventory.FurnaceInventory#(BlockEntityFurnace, InventoryType)" ] }, - "cn.nukkit.entity.item.EntityPrimedTNT": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.item.EntityPrimedTNT#canCollideWith(Entity)", - "cn.nukkit.entity.item.EntityPrimedTNT#explode()", - "cn.nukkit.entity.item.EntityPrimedTNT#initEntity()", - "cn.nukkit.entity.item.EntityPrimedTNT#onUpdate(int)", - "cn.nukkit.entity.item.EntityPrimedTNT#saveNBT()" + "cn.nukkit.inventory.GrindstoneInventory": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.GrindstoneInventory#updateResult(boolean)" ] }, - "cn.nukkit.block.BlockCoralFanHang3": { + "cn.nukkit.inventory.Inventory": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCoralFanHang3#getType()" + "cn.nukkit.inventory.Inventory#addListener(InventoryListener)", + "cn.nukkit.inventory.Inventory#removeListener(InventoryListener)" ] }, - "cn.nukkit.block.BlockAllow": { + "cn.nukkit.inventory.PlayerUIInventory": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockAllow#canBePulled()" + "cn.nukkit.inventory.PlayerUIInventory#onSlotChangeBase(int, Item, boolean)" ] }, - "cn.nukkit.entity.projectile.EntityArrow": { + "cn.nukkit.inventory.SmokerRecipe": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.projectile.EntityArrow#addHitEffect()" + "cn.nukkit.inventory.SmokerRecipe#getInput()" ] }, - "cn.nukkit.block.BlockDoubleSlabRedSandstone": { + "cn.nukkit.inventory.StonecutterInventory": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabRedSandstone#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabRedSandstone#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabRedSandstone#getToolTier()" + "cn.nukkit.inventory.StonecutterInventory#(PlayerUIInventory, Position)" ] }, - "cn.nukkit.block.BlockDoubleSlabStone": { + "cn.nukkit.inventory.transaction.CraftingTransaction": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabStone#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabStone#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabStone#getToolTier()" + "cn.nukkit.inventory.transaction.CraftingTransaction#recipe", + "cn.nukkit.inventory.transaction.CraftingTransaction#craftingType" ] }, - "cn.nukkit.entity.data.LongEntityData": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.data.LongEntityData#getData()", - "cn.nukkit.entity.data.LongEntityData#setData(Long)" + "cn.nukkit.inventory.transaction.EnchantTransaction": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.inventory.transaction.EnchantTransaction#inputItem", + "cn.nukkit.inventory.transaction.EnchantTransaction#outputItem", + "cn.nukkit.inventory.transaction.EnchantTransaction#cost" ] }, - "cn.nukkit.block.BlockJungleSignPost": { + "cn.nukkit.inventory.transaction.action.EnchantingAction": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockJungleSignPost#getWallId()" + "cn.nukkit.inventory.transaction.action.EnchantingAction#type" ] }, - "cn.nukkit.item.RuntimeItemMapping": { + "cn.nukkit.item.Item": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.RuntimeItemMapping#getItemDataPalette()", - "cn.nukkit.item.RuntimeItemMapping#getLegacyFullId(int)", - "cn.nukkit.item.RuntimeItemMapping#getNetworkFullId(Item)" + "cn.nukkit.item.Item#equalsIgnoringEnchantmentOrder(Item, boolean)", + "cn.nukkit.item.Item#getBlock(int)", + "cn.nukkit.item.Item#getBlock(int, Integer)", + "cn.nukkit.item.Item#getBlock(int, Integer, int)", + "cn.nukkit.item.Item#getBlock(int, Integer, int, byte[])" ] }, - "cn.nukkit.item.enchantment.sideeffect.SideEffect": { + "cn.nukkit.item.ItemAxeNetherite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.enchantment.sideeffect.SideEffect#EMPTY_ARRAY" + "cn.nukkit.item.ItemAxeNetherite#isLavaResistant()" ] }, - "cn.nukkit.api.RemovedFromNewRakNet": { + "cn.nukkit.item.ItemBannerPattern": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.api.RemovedFromNewRakNet#value()" + "cn.nukkit.item.ItemBannerPattern#updateName()" ] }, - "cn.nukkit.item.ItemID": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemID#BANNER_PATTERN", - "cn.nukkit.item.ItemID#SUSPICIOUS_STEW" + "cn.nukkit.item.ItemBlock": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.item.ItemBlock#isLavaResistant()" ] }, - "cn.nukkit.block.BlockCocoa": { + "cn.nukkit.item.ItemBootsNetherite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCocoa#breaksWhenMoved()", - "cn.nukkit.block.BlockCocoa#getGrowthStage()", - "cn.nukkit.block.BlockCocoa#grow()", - "cn.nukkit.block.BlockCocoa#sticksToPiston()" + "cn.nukkit.item.ItemBootsNetherite#isLavaResistant()" ] }, - "cn.nukkit.block.BlockStone": { + "cn.nukkit.item.ItemChestplateNetherite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStone#getToolTier()" + "cn.nukkit.item.ItemChestplateNetherite#isLavaResistant()" ] }, - "cn.nukkit.block.BlockEnderChest": { + "cn.nukkit.item.ItemEnderPearl": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEnderChest#canBePulled()", - "cn.nukkit.block.BlockEnderChest#getBlockEntity()", - "cn.nukkit.block.BlockEnderChest#getToolTier()" + "cn.nukkit.item.ItemEnderPearl#correctProjectile(Player, Entity)" ] }, - "cn.nukkit.block.BlockStemWarped": { + "cn.nukkit.item.ItemFishingRod": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStemWarped#getStrippedState()" + "cn.nukkit.item.ItemFishingRod#damageWhenBreaking()" ] }, - "cn.nukkit.blockentity.BlockEntityPistonArm": { - "addOverrideAnnotation": [ - "cn.nukkit.blockentity.BlockEntityPistonArm#getSpawnCompound()", - "cn.nukkit.blockentity.BlockEntityPistonArm#isBlockEntityValid()", - "cn.nukkit.blockentity.BlockEntityPistonArm#saveNBT()" - ], + "cn.nukkit.item.ItemHelmetNetherite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityPistonArm#MOVE_STEP", - "cn.nukkit.blockentity.BlockEntityPistonArm#state", - "cn.nukkit.blockentity.BlockEntityPistonArm#newState", - "cn.nukkit.blockentity.BlockEntityPistonArm#attachedBlocks", - "cn.nukkit.blockentity.BlockEntityPistonArm#move(boolean, List)" + "cn.nukkit.item.ItemHelmetNetherite#isLavaResistant()" ] }, - "cn.nukkit.item.ItemIngotNetherite": { + "cn.nukkit.item.ItemHoeNetherite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemIngotNetherite#isLavaResistant()" + "cn.nukkit.item.ItemHoeNetherite#isLavaResistant()" ] }, - "cn.nukkit.blockproperty.BooleanBlockProperty": { - "addOverrideAnnotation": [ - "cn.nukkit.blockproperty.BooleanBlockProperty#getDefaultValue()" - ], + "cn.nukkit.item.ItemIngotNetherite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockproperty.BooleanBlockProperty#getIntValue(int, int)", - "cn.nukkit.blockproperty.BooleanBlockProperty#getIntValueForMeta(int)", - "cn.nukkit.blockproperty.BooleanBlockProperty#getMetaForValue(Boolean)", - "cn.nukkit.blockproperty.BooleanBlockProperty#getPersistenceValueForMeta(int)", - "cn.nukkit.blockproperty.BooleanBlockProperty#getValue(int, int)", - "cn.nukkit.blockproperty.BooleanBlockProperty#getValue(long, int)", - "cn.nukkit.blockproperty.BooleanBlockProperty#getValueClass()", - "cn.nukkit.blockproperty.BooleanBlockProperty#getValueForMeta(int)", - "cn.nukkit.blockproperty.BooleanBlockProperty#setValue(int, int, Boolean)", - "cn.nukkit.blockproperty.BooleanBlockProperty#setValue(long, int, Boolean)", - "cn.nukkit.blockproperty.BooleanBlockProperty#validateMetaDirectly(int)" + "cn.nukkit.item.ItemIngotNetherite#isLavaResistant()" ] }, - "cn.nukkit.entity.data.Skin": { + "cn.nukkit.item.ItemLeggingsNetherite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.data.Skin#canEqual(Object)" + "cn.nukkit.item.ItemLeggingsNetherite#isLavaResistant()" ] }, - "cn.nukkit.block.BlockDiamond": { + "cn.nukkit.item.ItemPickaxeNetherite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDiamond#getToolTier()" + "cn.nukkit.item.ItemPickaxeNetherite#isLavaResistant()" ] }, - "cn.nukkit.block.BlockWallBase": { + "cn.nukkit.item.ItemPotionLingering": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWallBase#canConnect(Block)" + "cn.nukkit.item.ItemPotionLingering#correctNBT(CompoundTag)", + "cn.nukkit.item.ItemPotionLingering#getProjectileEntityType()", + "cn.nukkit.item.ItemPotionLingering#getThrowForce()" ] }, - "cn.nukkit.entity.mob.EntityZombiePigman": { + "cn.nukkit.item.ItemScrapNetherite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityZombiePigman#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityZombiePigman#isUndead()" + "cn.nukkit.item.ItemScrapNetherite#isLavaResistant()" ] }, - "cn.nukkit.api.PowerNukkitOnly": { + "cn.nukkit.item.ItemShovelNetherite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.api.PowerNukkitOnly#value()" + "cn.nukkit.item.ItemShovelNetherite#isLavaResistant()" ] }, - "cn.nukkit.level.biome.type.CoveredBiome": { + "cn.nukkit.item.ItemSign": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.type.CoveredBiome#synchronizeCover", - "cn.nukkit.level.biome.type.CoveredBiome#getCoverBlock()", - "cn.nukkit.level.biome.type.CoveredBiome#getGroundBlock(int)", - "cn.nukkit.level.biome.type.CoveredBiome#getGroundDepth(int)", - "cn.nukkit.level.biome.type.CoveredBiome#getGroundMeta(int)", - "cn.nukkit.level.biome.type.CoveredBiome#getStoneBlock()", - "cn.nukkit.level.biome.type.CoveredBiome#getSurfaceBlock(int)", - "cn.nukkit.level.biome.type.CoveredBiome#getSurfaceDepth(int)", - "cn.nukkit.level.biome.type.CoveredBiome#getSurfaceMeta(int)", - "cn.nukkit.level.biome.type.CoveredBiome#preCover(int, int)" + "cn.nukkit.item.ItemSign#(int, Integer, int, String, BlockSignPost)" ] }, - "cn.nukkit.block.BlockDropper": { + "cn.nukkit.item.ItemSwordNetherite": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDropper#dispense()", - "cn.nukkit.block.BlockDropper#getDispenseBehavior(Item)", - "cn.nukkit.block.BlockDropper#getToolTier()" + "cn.nukkit.item.ItemSwordNetherite#isLavaResistant()" ] }, - "cn.nukkit.block.BlockWoodStrippedDarkOak": { + "cn.nukkit.item.ItemTotem": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStrippedDarkOak#getWoodType()" + "cn.nukkit.item.ItemTotem#()" ] }, - "cn.nukkit.block.BlockDarkOakSignPost": { + "cn.nukkit.item.ItemWarpedFungusOnAStick": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDarkOakSignPost#getWallId()" + "cn.nukkit.item.ItemWarpedFungusOnAStick#damageWhenBreaking()" ] }, - "cn.nukkit.entity.mob.EntityZombie": { + "cn.nukkit.item.PNAlphaItemID": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityZombie#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityZombie#isUndead()" + "cn.nukkit.item.PNAlphaItemID#badItemId", + "cn.nukkit.item.PNAlphaItemID#minecraftItemId", + "cn.nukkit.item.PNAlphaItemID#getBadItemId()", + "cn.nukkit.item.PNAlphaItemID#getMinecraftItemId()" ] }, - "cn.nukkit.block.BlockFlower": { + "cn.nukkit.item.ProjectileItem": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFlower#canPlantOn(Block)" + "cn.nukkit.item.ProjectileItem#addThrowSound(Player)", + "cn.nukkit.item.ProjectileItem#correctProjectile(Player, Entity)" ] }, - "cn.nukkit.block.BlockStairsGranite": { + "cn.nukkit.item.RuntimeItemMapping": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsGranite#getToolTier()" + "cn.nukkit.item.RuntimeItemMapping#getItemDataPalette()", + "cn.nukkit.item.RuntimeItemMapping#getLegacyFullId(int)", + "cn.nukkit.item.RuntimeItemMapping#getNetworkFullId(Item)", + "cn.nukkit.item.RuntimeItemMapping#(byte[], Int2IntMap, Int2IntMap)" ] }, "cn.nukkit.item.RuntimeItems": { @@ -2614,183 +1998,186 @@ "cn.nukkit.item.RuntimeItems#hasData(int)" ] }, - "cn.nukkit.item.ItemChestplateNetherite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemChestplateNetherite#isLavaResistant()" - ] - }, - "cn.nukkit.block.BlockStructureVoid": { + "cn.nukkit.item.enchantment.EnchantmentDurability": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStructureVoid#canBePulled()" + "cn.nukkit.item.enchantment.EnchantmentDurability#isItemAcceptable(Item)" ] }, - "cn.nukkit.block.BlockStairsDarkPrismarine": { + "cn.nukkit.item.enchantment.EnchantmentEfficiency": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsDarkPrismarine#getToolTier()" + "cn.nukkit.item.enchantment.EnchantmentEfficiency#isItemAcceptable(Item)" ] }, - "cn.nukkit.block.BlockMushroom": { + "cn.nukkit.item.enchantment.EnchantmentSilkTouch": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockMushroom#getToolTier()" + "cn.nukkit.item.enchantment.EnchantmentSilkTouch#isItemAcceptable(Item)" ] }, - "cn.nukkit.block.BlockWallBanner": { + "cn.nukkit.item.enchantment.EnchantmentThorns": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWallBanner#getDirection()", - "cn.nukkit.block.BlockWallBanner#setDirection(CompassRoseDirection)" + "cn.nukkit.item.enchantment.EnchantmentThorns#isItemAcceptable(Item)" ] }, - "cn.nukkit.dispenser.BoatDispenseBehavior": { + "cn.nukkit.item.enchantment.damage.EnchantmentDamage": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.BoatDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + "cn.nukkit.item.enchantment.damage.EnchantmentDamage#isItemAcceptable(Item)" ] }, - "cn.nukkit.block.BlockDoubleSlabWood": { + "cn.nukkit.item.enchantment.sideeffect.SideEffect": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabWood#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabWood#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabWood#isCorrectTool(Item)" + "cn.nukkit.item.enchantment.sideeffect.SideEffect#EMPTY_ARRAY" ] }, - "cn.nukkit.dispenser.BucketDispenseBehavior": { + "cn.nukkit.level.GameRule": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.BucketDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" - ] - }, - "cn.nukkit.event.entity.ProjectileLaunchEvent": { - "addOverrideAnnotation": [ - "cn.nukkit.event.entity.ProjectileLaunchEvent#getEntity()" + "cn.nukkit.level.GameRule#EXPERIMENTAL_GAMEPLAY" ] }, - "cn.nukkit.block.BlockDoubleSlabBlackstonePolished": { + "cn.nukkit.level.GlobalBlockPalette": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabBlackstonePolished#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabBlackstonePolished#getSlabName()" + "cn.nukkit.level.GlobalBlockPalette#BLOCK_PALETTE", + "cn.nukkit.level.GlobalBlockPalette#getName(int)" ] }, - "cn.nukkit.block.BlockOreIron": { + "cn.nukkit.level.Level": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreIron#getToolTier()" + "cn.nukkit.level.Level#addLevelEvent(int, int)", + "cn.nukkit.level.Level#addLevelEvent(int, int, Vector3)", + "cn.nukkit.level.Level#addLevelEvent(int, int, float, float, float)", + "cn.nukkit.level.Level#getBlock(Vector3, int)", + "cn.nukkit.level.Level#getBlock(Vector3, int, boolean)", + "cn.nukkit.level.Level#getBlock(int, int, int, int)", + "cn.nukkit.level.Level#getBlock(int, int, int, int, boolean)", + "cn.nukkit.level.Level#getBlockDataAt(int, int, int, int)", + "cn.nukkit.level.Level#getBlockEntity(BlockVector3)", + "cn.nukkit.level.Level#getBlockIdAt(int, int, int, int)", + "cn.nukkit.level.Level#getBlockStateAt(int, int, int, int)", + "cn.nukkit.level.Level#getCelestialAngle(float)", + "cn.nukkit.level.Level#getCollisionBlocks(AxisAlignedBB, boolean, boolean)", + "cn.nukkit.level.Level#getCollisionBlocks(AxisAlignedBB, boolean, boolean, Predicate)", + "cn.nukkit.level.Level#getFullBlock(int, int, int, int)", + "cn.nukkit.level.Level#getFuzzySpawnLocation()", + "cn.nukkit.level.Level#getHighestAdjacentBlockSkyLight(int, int, int)", + "cn.nukkit.level.Level#getRainStrength(float)", + "cn.nukkit.level.Level#getThunderStrength(float)", + "cn.nukkit.level.Level#setBlock(Vector3, int, Block)", + "cn.nukkit.level.Level#setBlock(Vector3, int, Block, boolean)", + "cn.nukkit.level.Level#setBlock(Vector3, int, Block, boolean, boolean)", + "cn.nukkit.level.Level#setBlock(int, int, int, int, Block, boolean, boolean)", + "cn.nukkit.level.Level#setBlockAtLayer(int, int, int, int, int, int)", + "cn.nukkit.level.Level#setBlockDataAt(int, int, int, int, int)", + "cn.nukkit.level.Level#setBlockFullIdAt(int, int, int, int, int)", + "cn.nukkit.level.Level#setBlockIdAt(int, int, int, int, int)", + "cn.nukkit.level.Level#useBreakOn(Vector3, BlockFace, Item, Player, boolean, boolean)", + "cn.nukkit.level.Level#useBreakOn(Vector3, int, BlockFace, Item, Player, boolean, boolean)" ] }, - "cn.nukkit.block.BlockFungusWarped": { + "cn.nukkit.level.ListChunkManager": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFungusWarped#canGrowOn(Block)", - "cn.nukkit.block.BlockFungusWarped#grow(Player)" + "cn.nukkit.level.ListChunkManager#getBlockDataAt(int, int, int, int)", + "cn.nukkit.level.ListChunkManager#getBlockIdAt(int, int, int, int)", + "cn.nukkit.level.ListChunkManager#setBlockAtLayer(int, int, int, int, int, int)", + "cn.nukkit.level.ListChunkManager#setBlockDataAt(int, int, int, int, int)", + "cn.nukkit.level.ListChunkManager#setBlockFullIdAt(int, int, int, int, int)", + "cn.nukkit.level.ListChunkManager#setBlockIdAt(int, int, int, int, int)" ] }, - "cn.nukkit.block.BlockDoubleSlabStone3": { + "cn.nukkit.level.Location": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabStone3#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabStone3#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabStone3#getToolTier()" + "cn.nukkit.level.Location#setPitch(double)", + "cn.nukkit.level.Location#setYaw(double)" ] }, - "cn.nukkit.block.BlockDoubleSlabStone4": { + "cn.nukkit.level.Position": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabStone4#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabStone4#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabStone4#getToolTier()" + "cn.nukkit.level.Position#getLevelBlockAtLayer(int)" ] }, - "cn.nukkit.block.BlockCactus": { + "cn.nukkit.level.biome.impl.beach.ColdBeachBiome": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCactus#breaksWhenMoved()", - "cn.nukkit.block.BlockCactus#sticksToPiston()" - ] - }, - "cn.nukkit.inventory.transaction.action.CreativeInventoryAction": { - "addOverrideAnnotation": [ - "cn.nukkit.inventory.transaction.action.CreativeInventoryAction#execute(Player)", - "cn.nukkit.inventory.transaction.action.CreativeInventoryAction#isValid(Player)", - "cn.nukkit.inventory.transaction.action.CreativeInventoryAction#onExecuteFail(Player)", - "cn.nukkit.inventory.transaction.action.CreativeInventoryAction#onExecuteSuccess(Player)" + "cn.nukkit.level.biome.impl.beach.ColdBeachBiome#getCoverBlock()" ] }, - "cn.nukkit.dispenser.DispenseBehaviorRegister": { + "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.DispenseBehaviorRegister#init()" + "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getGroundBlock(int)", + "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getGroundDepth(int)", + "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getSurfaceBlock(int)", + "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getSurfaceDepth(int)" ] }, - "cn.nukkit.block.BlockBricksStone": { + "cn.nukkit.level.biome.impl.iceplains.IcePlainsSpikesBiome": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBricksStone#getToolTier()" + "cn.nukkit.level.biome.impl.iceplains.IcePlainsSpikesBiome#getSurfaceBlock(int)" ] }, - "cn.nukkit.network.protocol.PlayerActionPacket": { + "cn.nukkit.level.biome.impl.mesa.MesaPlateauFBiome": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.PlayerActionPacket#ACTION_INTERACT_BLOCK" + "cn.nukkit.level.biome.impl.mesa.MesaPlateauFBiome#getCoverBlock()" ] }, - "cn.nukkit.block.BlockDaylightDetector": { + "cn.nukkit.level.biome.impl.mushroom.MushroomIslandBiome": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDaylightDetector#isInverted()", - "cn.nukkit.block.BlockDaylightDetector#updatePower()" + "cn.nukkit.level.biome.impl.mushroom.MushroomIslandBiome#getSurfaceBlock(int)" ] }, - "cn.nukkit.block.BlockTerracottaGlazed": { + "cn.nukkit.level.biome.impl.taiga.ColdTaigaBiome": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockTerracottaGlazed#getToolTier()" - ] - }, - "cn.nukkit.form.window.FormWindowCustom": { - "addOverrideAnnotation": [ - "cn.nukkit.form.window.FormWindowCustom#getResponse()", - "cn.nukkit.form.window.FormWindowCustom#setResponse(String)" + "cn.nukkit.level.biome.impl.taiga.ColdTaigaBiome#getCoverBlock()" ] }, - "cn.nukkit.entity.mob.EntityPiglinBrute": { + "cn.nukkit.level.biome.type.CoveredBiome": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityPiglinBrute#isPreventingSleep(Player)" + "cn.nukkit.level.biome.type.CoveredBiome#synchronizeCover", + "cn.nukkit.level.biome.type.CoveredBiome#getCoverBlock()", + "cn.nukkit.level.biome.type.CoveredBiome#getGroundDepth(int)", + "cn.nukkit.level.biome.type.CoveredBiome#getGroundMeta(int)", + "cn.nukkit.level.biome.type.CoveredBiome#getStoneBlock()", + "cn.nukkit.level.biome.type.CoveredBiome#getSurfaceBlock(int)", + "cn.nukkit.level.biome.type.CoveredBiome#getSurfaceDepth(int)", + "cn.nukkit.level.biome.type.CoveredBiome#getSurfaceMeta(int)", + "cn.nukkit.level.biome.type.CoveredBiome#preCover(int, int)" ] }, - "cn.nukkit.level.format.updater.GroupedUpdaters": { + "cn.nukkit.level.biome.type.GrassyBiome": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.GroupedUpdaters#update(int, int, int, int, int, int, BlockState)" + "cn.nukkit.level.biome.type.GrassyBiome#getGroundBlock(int)", + "cn.nukkit.level.biome.type.GrassyBiome#getSurfaceBlock(int)" ] }, - "cn.nukkit.block.BlockOreDiamond": { + "cn.nukkit.level.biome.type.SandyBiome": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreDiamond#getToolTier()" - ] - }, - "cn.nukkit.block.BlockThin": { - "addOverrideAnnotation": [ - "cn.nukkit.block.BlockThin#recalculateBoundingBox()" + "cn.nukkit.level.biome.type.SandyBiome#getGroundBlock(int)", + "cn.nukkit.level.biome.type.SandyBiome#getGroundDepth(int)", + "cn.nukkit.level.biome.type.SandyBiome#getSurfaceBlock(int)", + "cn.nukkit.level.biome.type.SandyBiome#getSurfaceDepth(int)" ] }, - "cn.nukkit.block.BlockCrimsonWallSign": { + "cn.nukkit.level.biome.type.SnowyBiome": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCrimsonWallSign#getPostId()" + "cn.nukkit.level.biome.type.SnowyBiome#getCoverBlock()" ] }, - "cn.nukkit.block.BlockEndPortalFrame": { - "addOverrideAnnotation": [ - "cn.nukkit.block.BlockEndPortalFrame#getComparatorInputOverride()", - "cn.nukkit.block.BlockEndPortalFrame#hasComparatorInputOverride()" - ], + "cn.nukkit.level.biome.type.WateryBiome": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEndPortalFrame#canBePulled()" + "cn.nukkit.level.biome.type.WateryBiome#getGroundDepth(int)", + "cn.nukkit.level.biome.type.WateryBiome#getSurfaceBlock(int)", + "cn.nukkit.level.biome.type.WateryBiome#getSurfaceDepth(int)" ] }, - "cn.nukkit.block.BlockDoubleSlabBrickBlackstonePolished": { + "cn.nukkit.level.format.ChunkSection": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabBrickBlackstonePolished#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabBrickBlackstonePolished#getSlabName()" + "cn.nukkit.level.format.ChunkSection#setFullBlockId(int, int, int, int, int)" ] }, - "cn.nukkit.positiontracking.PositionTrackingService": { + "cn.nukkit.level.format.FullChunk": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.positiontracking.PositionTrackingService#close()", - "cn.nukkit.positiontracking.PositionTrackingService#finalize()" + "cn.nukkit.level.format.FullChunk#recalculateHeightMapColumn(int, int)" ] }, - "cn.nukkit.blockentity.BlockEntity": { + "cn.nukkit.level.format.LevelProvider": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntity#createBlockEntity(String, Position, CompoundTag, Object[])", - "cn.nukkit.blockentity.BlockEntity#createBlockEntity(String, Position, Object[])", - "cn.nukkit.blockentity.BlockEntity#getLevelBlockEntity()", - "cn.nukkit.blockentity.BlockEntity#onBreak(boolean)" + "cn.nukkit.level.format.LevelProvider#getMaximumLayer()" ] }, "cn.nukkit.level.format.anvil.Anvil": { @@ -2798,357 +2185,292 @@ "cn.nukkit.level.format.anvil.Anvil#getMaximumLayer()" ] }, - "cn.nukkit.block.BlockEndPortal": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEndPortal#getCollisionBoundingBox()" - ] - }, - "cn.nukkit.block.BlockSlabRedSandstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabRedSandstone#PRISMARINE", - "cn.nukkit.block.BlockSlabRedSandstone#PRISMARINE_BRICKS", - "cn.nukkit.block.BlockSlabRedSandstone#DARK_PRISMARINE", - "cn.nukkit.block.BlockSlabRedSandstone#MOSSY_COBBLESTONE", - "cn.nukkit.block.BlockSlabRedSandstone#SMOOTH_SANDSTONE", - "cn.nukkit.block.BlockSlabRedSandstone#RED_NETHER_BRICK", - "cn.nukkit.block.BlockSlabRedSandstone#getSlabName()", - "cn.nukkit.block.BlockSlabRedSandstone#getToolTier()", - "cn.nukkit.block.BlockSlabRedSandstone#isSameType(BlockSlab)" - ] - }, - "cn.nukkit.item.enchantment.damage.EnchantmentDamage": { + "cn.nukkit.level.format.anvil.ChunkSection": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.enchantment.damage.EnchantmentDamage#isItemAcceptable(Item)" + "cn.nukkit.level.format.anvil.ChunkSection#STREAM_STORAGE_VERSION", + "cn.nukkit.level.format.anvil.ChunkSection#SAVE_STORAGE_VERSION", + "cn.nukkit.level.format.anvil.ChunkSection#getAndSetBlock(int, int, int, int, Block)", + "cn.nukkit.level.format.anvil.ChunkSection#getBlockChangeStateAbove(int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#getBlockData(int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#getBlockId(int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#getBlockState(int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#getFullBlock(int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#getMaximumLayer()", + "cn.nukkit.level.format.anvil.ChunkSection#hasBlocks()", + "cn.nukkit.level.format.anvil.ChunkSection#setBlockAtLayer(int, int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#setBlockAtLayer(int, int, int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#setBlockData(int, int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#setBlockId(int, int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#setBlockStateAtLayer(int, int, int, int, BlockState)", + "cn.nukkit.level.format.anvil.ChunkSection#setFullBlockId(int, int, int, int, int)", + "cn.nukkit.level.format.anvil.ChunkSection#toNBT()" ] }, "cn.nukkit.level.format.anvil.util.BlockStorage": { "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.anvil.util.BlockStorage#SECTION_SIZE", "cn.nukkit.level.format.anvil.util.BlockStorage#hasBlockDataExtras()", "cn.nukkit.level.format.anvil.util.BlockStorage#hasBlockIdExtras()", "cn.nukkit.level.format.anvil.util.BlockStorage#hasBlockIds()" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.anvil.util.BlockStorage#copy()" ] }, - "cn.nukkit.level.generator.populator.impl.PopulatorGroundCover": { + "cn.nukkit.level.format.anvil.util.ImmutableBlockStorage": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.generator.populator.impl.PopulatorGroundCover#STONE" + "cn.nukkit.level.format.anvil.util.ImmutableBlockStorage#setBlockState(int, BlockState)" ] }, - "cn.nukkit.entity.mob.EntityZoglin": { + "cn.nukkit.level.format.generic.BaseChunk": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityZoglin#isBaby()", - "cn.nukkit.entity.mob.EntityZoglin#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityZoglin#isUndead()" - ] - }, - "cn.nukkit.command.data.CommandEnum": { - "addOverrideAnnotation": [ - "cn.nukkit.command.data.CommandEnum#hashCode()" - ] - }, - "cn.nukkit.form.window.FormWindowSimple": { - "addOverrideAnnotation": [ - "cn.nukkit.form.window.FormWindowSimple#getResponse()", - "cn.nukkit.form.window.FormWindowSimple#setResponse(String)" + "cn.nukkit.level.format.generic.BaseChunk#findBorders(int, int)", + "cn.nukkit.level.format.generic.BaseChunk#getBlockData(int, int, int, int)", + "cn.nukkit.level.format.generic.BaseChunk#getBlockStateAt(int, int, int, int)", + "cn.nukkit.level.format.generic.BaseChunk#isBlockChangeAllowed(int, int, int)", + "cn.nukkit.level.format.generic.BaseChunk#isBlockedByBorder(int, int)", + "cn.nukkit.level.format.generic.BaseChunk#setBlockData(int, int, int, int, int)" ] }, - "cn.nukkit.inventory.PlayerUIInventory": { + "cn.nukkit.level.format.generic.BaseFullChunk": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.PlayerUIInventory#onSlotChangeBase(int, Item, boolean)" + "cn.nukkit.level.format.generic.BaseFullChunk#getBlockDataAt(int, int, int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#getBlockIdAt(int, int, int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#recalculateHeightMapColumn(int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#setBlockAtLayer(int, int, int, int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#setBlockAtLayer(int, int, int, int, int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#setBlockDataAt(int, int, int, int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#setBlockFullIdAt(int, int, int, int, int)", + "cn.nukkit.level.format.generic.BaseFullChunk#setBlockIdAt(int, int, int, int, int)" ] }, - "cn.nukkit.block.BlockLoom": { - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLoom#getBlockFace()" + "cn.nukkit.level.format.generic.EmptyChunkSection": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.generic.EmptyChunkSection#getAndSetBlock(int, int, int, int, Block)", + "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockChangeStateAbove(int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockData(int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockId(int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockState(int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#getFullBlock(int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#getMaximumLayer()", + "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockAtLayer(int, int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockAtLayer(int, int, int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockData(int, int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockId(int, int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockStateAtLayer(int, int, int, int, BlockState)", + "cn.nukkit.level.format.generic.EmptyChunkSection#setFullBlockId(int, int, int, int, int)", + "cn.nukkit.level.format.generic.EmptyChunkSection#toNBT()" ] }, - "cn.nukkit.level.Level": { - "addOverrideAnnotation": [ - "cn.nukkit.level.Level#setBlockStateAt(int, int, int, int, BlockState)" - ], + "cn.nukkit.level.format.updater.BeehiveUpdater": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.Level#addLevelEvent(int, int)", - "cn.nukkit.level.Level#addLevelEvent(int, int, Vector3)", - "cn.nukkit.level.Level#addLevelEvent(int, int, float, float, float)", - "cn.nukkit.level.Level#getBlock(Vector3, int)", - "cn.nukkit.level.Level#getBlock(Vector3, int, boolean)", - "cn.nukkit.level.Level#getBlock(int, int, int, int)", - "cn.nukkit.level.Level#getBlock(int, int, int, int, boolean)", - "cn.nukkit.level.Level#getBlockDataAt(int, int, int, int)", - "cn.nukkit.level.Level#getBlockEntity(BlockVector3)", - "cn.nukkit.level.Level#getBlockIdAt(int, int, int, int)", - "cn.nukkit.level.Level#getBlockStateAt(int, int, int, int)", - "cn.nukkit.level.Level#getCelestialAngle(float)", - "cn.nukkit.level.Level#getCollisionBlocks(AxisAlignedBB, boolean, boolean)", - "cn.nukkit.level.Level#getCollisionBlocks(AxisAlignedBB, boolean, boolean, Predicate)", - "cn.nukkit.level.Level#getFullBlock(int, int, int, int)", - "cn.nukkit.level.Level#getFuzzySpawnLocation()", - "cn.nukkit.level.Level#getHighestAdjacentBlockSkyLight(int, int, int)", - "cn.nukkit.level.Level#getRainStrength(float)", - "cn.nukkit.level.Level#getThunderStrength(float)", - "cn.nukkit.level.Level#setBlock(Vector3, int, Block)", - "cn.nukkit.level.Level#setBlock(Vector3, int, Block, boolean)", - "cn.nukkit.level.Level#setBlock(Vector3, int, Block, boolean, boolean)", - "cn.nukkit.level.Level#setBlock(int, int, int, int, Block, boolean, boolean)", - "cn.nukkit.level.Level#setBlockAtLayer(int, int, int, int, int, int)", - "cn.nukkit.level.Level#setBlockDataAt(int, int, int, int, int)", - "cn.nukkit.level.Level#setBlockFullIdAt(int, int, int, int, int)", - "cn.nukkit.level.Level#setBlockIdAt(int, int, int, int, int)", - "cn.nukkit.level.Level#useBreakOn(Vector3, BlockFace, Item, Player, boolean, boolean)", - "cn.nukkit.level.Level#useBreakOn(Vector3, int, BlockFace, Item, Player, boolean, boolean)" + "cn.nukkit.level.format.updater.BeehiveUpdater#update(int, int, int, int, int, int, BlockState)" ] }, - "cn.nukkit.block.BlockStairsAndesitePolished": { + "cn.nukkit.level.format.updater.DoorUpdater": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsAndesitePolished#getToolTier()" + "cn.nukkit.level.format.updater.DoorUpdater#update(int, int, int, int, int, int, BlockState)" ] }, - "cn.nukkit.block.BlockStairsStone": { + "cn.nukkit.level.format.updater.FrameUpdater": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsStone#getToolTier()" + "cn.nukkit.level.format.updater.FrameUpdater#update(int, int, int, int, int, int, BlockState)" ] }, - "cn.nukkit.potion.Potion": { + "cn.nukkit.level.format.updater.GroupedUpdaters": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.potion.Potion#SLOWNESS_IV" + "cn.nukkit.level.format.updater.GroupedUpdaters#update(int, int, int, int, int, int, BlockState)" ] }, - "cn.nukkit.block.BlockOreEmerald": { + "cn.nukkit.level.format.updater.MesaBiomeUpdater": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreEmerald#getToolTier()" + "cn.nukkit.level.format.updater.MesaBiomeUpdater#update(int, int, int, int, int, int, BlockState)" ] }, - "cn.nukkit.level.generator.Nether": { - "addOverrideAnnotation": [ - "cn.nukkit.level.generator.Nether#getSpawn()" + "cn.nukkit.level.format.updater.NewLeafUpdater": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.format.updater.NewLeafUpdater#update(int, int, int, int, int, int, BlockState)" ] }, - "cn.nukkit.block.BlockBirchSignPost": { + "cn.nukkit.level.format.updater.OldWoodBarkUpdater": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBirchSignPost#getWallId()" + "cn.nukkit.level.format.updater.OldWoodBarkUpdater#update(int, int, int, int, int, int, BlockState)" ] }, - "cn.nukkit.block.BlockWood": { + "cn.nukkit.level.format.updater.SnowLayerUpdater": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWood#getStrippedState()" + "cn.nukkit.level.format.updater.SnowLayerUpdater#update(int, int, int, int, int, int, BlockState)" ] }, - "cn.nukkit.inventory.CraftingManager": { + "cn.nukkit.level.format.updater.StemStrippedUpdater": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.CraftingManager#blastFurnaceRecipes", - "cn.nukkit.inventory.CraftingManager#smokerRecipes", - "cn.nukkit.inventory.CraftingManager#campfireRecipes", - "cn.nukkit.inventory.CraftingManager#stonecutterRecipes", - "cn.nukkit.inventory.CraftingManager#cartographyRecipes", - "cn.nukkit.inventory.CraftingManager#matchBlastFurnaceRecipe(Item)", - "cn.nukkit.inventory.CraftingManager#matchCampfireRecipe(Item)", - "cn.nukkit.inventory.CraftingManager#matchCartographyRecipe(List, Item, List)", - "cn.nukkit.inventory.CraftingManager#matchSmokerRecipe(Item)", - "cn.nukkit.inventory.CraftingManager#matchStonecutterRecipe(Item)", - "cn.nukkit.inventory.CraftingManager#registerBlastFurnaceRecipe(BlastFurnaceRecipe)", - "cn.nukkit.inventory.CraftingManager#registerCampfireRecipe(CampfireRecipe)", - "cn.nukkit.inventory.CraftingManager#registerCartographyRecipe(CartographyRecipe)", - "cn.nukkit.inventory.CraftingManager#registerSmokerRecipe(SmokerRecipe)", - "cn.nukkit.inventory.CraftingManager#registerStonecutterRecipe(StonecutterRecipe)" + "cn.nukkit.level.format.updater.StemStrippedUpdater#update(int, int, int, int, int, int, BlockState)" ] }, - "cn.nukkit.block.BlockBirchWallSign": { + "cn.nukkit.level.format.updater.StemUpdater": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBirchWallSign#getPostId()" + "cn.nukkit.level.format.updater.StemUpdater#update(int, int, int, int, int, int, BlockState)" ] }, - "cn.nukkit.dispenser.SpawnEggDispenseBehavior": { + "cn.nukkit.level.format.updater.WallUpdater": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.SpawnEggDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" + "cn.nukkit.level.format.updater.WallUpdater#update(int, int, int, int, int, int, BlockState)" ] }, - "cn.nukkit.inventory.StonecutterRecipe": { + "cn.nukkit.level.generator.SimpleChunkManager": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.StonecutterRecipe#toString()" + "cn.nukkit.level.generator.SimpleChunkManager#getBlockDataAt(int, int, int, int)", + "cn.nukkit.level.generator.SimpleChunkManager#getBlockIdAt(int, int, int, int)", + "cn.nukkit.level.generator.SimpleChunkManager#getBlockStateAt(int, int, int, int)", + "cn.nukkit.level.generator.SimpleChunkManager#setBlockAtLayer(int, int, int, int, int, int)", + "cn.nukkit.level.generator.SimpleChunkManager#setBlockDataAt(int, int, int, int, int)", + "cn.nukkit.level.generator.SimpleChunkManager#setBlockFullIdAt(int, int, int, int, int)", + "cn.nukkit.level.generator.SimpleChunkManager#setBlockIdAt(int, int, int, int, int)" ] }, - "cn.nukkit.entity.mob.EntitySkeleton": { + "cn.nukkit.level.generator.object.ObjectNyliumVegetation": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntitySkeleton#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntitySkeleton#isUndead()" + "cn.nukkit.level.generator.object.ObjectNyliumVegetation#()" ] }, - "cn.nukkit.entity.item.EntityBoat": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.item.EntityBoat#updatePassengers()" + "cn.nukkit.level.generator.object.ObjectTallGrass": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.generator.object.ObjectTallGrass#growGrass(ChunkManager, Vector3, NukkitRandom, int, int)" ] }, - "cn.nukkit.block.BlockOreQuartz": { + "cn.nukkit.level.generator.populator.impl.PopulatorGroundCover": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreQuartz#getToolTier()" + "cn.nukkit.level.generator.populator.impl.PopulatorGroundCover#STONE" ] }, - "cn.nukkit.block.BlockDragonEgg": { + "cn.nukkit.level.generator.populator.impl.PopulatorOre": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDragonEgg#breaksWhenMoved()", - "cn.nukkit.block.BlockDragonEgg#sticksToPiston()" + "cn.nukkit.level.generator.populator.impl.PopulatorOre#setOreTypes(OreType[])", + "cn.nukkit.level.generator.populator.impl.PopulatorOre#()", + "cn.nukkit.level.generator.populator.impl.PopulatorOre#(int)" ] }, - "cn.nukkit.block.BlockCrimsonSignPost": { + "cn.nukkit.level.generator.populator.impl.PopulatorOreEmerald": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCrimsonSignPost#getWallId()" + "cn.nukkit.level.generator.populator.impl.PopulatorOreEmerald#()" ] }, - "cn.nukkit.item.ItemPickaxeNetherite": { + "cn.nukkit.math.AxisAlignedBB": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemPickaxeNetherite#isLavaResistant()" + "cn.nukkit.math.AxisAlignedBB#getOffsetBoundingBox(BlockFace, double, double, double)" ] }, - "cn.nukkit.entity.Entity": { - "addOverrideAnnotation": [ - "cn.nukkit.entity.Entity#getDirectionVector()", - "cn.nukkit.entity.Entity#getLocation()" - ], + "cn.nukkit.math.MathHelper": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.Entity#canBePushed()", - "cn.nukkit.entity.Entity#isTouchingWater()", - "cn.nukkit.entity.Entity#isUndead()", - "cn.nukkit.entity.Entity#onPushByPiston(BlockEntityPistonArm)" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.Entity#DATA_HAS_NPC_COMPONENT", - "cn.nukkit.entity.Entity#DATA_BASE_RUNTIME_ID", - "cn.nukkit.entity.Entity#DATA_UPDATE_PROPERTIES", - "cn.nukkit.entity.Entity#DATA_FLAG_PLAYING_DEAD" + "cn.nukkit.math.MathHelper#clamp(float, float, float)" ] }, - "cn.nukkit.item.PNAlphaItemID": { + "cn.nukkit.nbt.tag.CompoundTag": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.PNAlphaItemID#getBadItemId()", - "cn.nukkit.item.PNAlphaItemID#getMinecraftItemId()" + "cn.nukkit.nbt.tag.CompoundTag#(String, Map)", + "cn.nukkit.nbt.tag.CompoundTag#(Map)" ] }, - "cn.nukkit.utils.HumanStringComparator": { + "cn.nukkit.network.Network": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.HumanStringComparator#compare(String, String)" + "cn.nukkit.network.Network#getPacket(byte)" ] }, - "cn.nukkit.block.BlockStairsMossyStoneBrick": { + "cn.nukkit.network.protocol.AbstractResourcePackDataPacket": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsMossyStoneBrick#getToolTier()" + "cn.nukkit.network.protocol.AbstractResourcePackDataPacket#()" ] }, - "cn.nukkit.block.BlockEndStone": { + "cn.nukkit.network.protocol.AnimateEntityPacket": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEndStone#getToolTier()" + "cn.nukkit.network.protocol.AnimateEntityPacket#()" ] }, - "cn.nukkit.scheduler.AsyncTask": { - "addOverrideAnnotation": [ - "cn.nukkit.scheduler.AsyncTask#run()" + "cn.nukkit.network.protocol.CraftingEventPacket": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.network.protocol.CraftingEventPacket#canEqual(Object)" ] }, - "cn.nukkit.blockstate.ByteMutableBlockState": { - "addOverrideAnnotation": [ - "cn.nukkit.blockstate.ByteMutableBlockState#canEqual(Object)" - ], + "cn.nukkit.network.protocol.DataPacket": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.ByteMutableBlockState#canEqual(Object)", - "cn.nukkit.blockstate.ByteMutableBlockState#copy()", - "cn.nukkit.blockstate.ByteMutableBlockState#equals(Object)", - "cn.nukkit.blockstate.ByteMutableBlockState#getBigDamage()", - "cn.nukkit.blockstate.ByteMutableBlockState#getBooleanValue(String)", - "cn.nukkit.blockstate.ByteMutableBlockState#getCurrentState()", - "cn.nukkit.blockstate.ByteMutableBlockState#getDataStorage()", - "cn.nukkit.blockstate.ByteMutableBlockState#getIntValue(String)", - "cn.nukkit.blockstate.ByteMutableBlockState#getLegacyDamage()", - "cn.nukkit.blockstate.ByteMutableBlockState#getPersistenceValue(String)", - "cn.nukkit.blockstate.ByteMutableBlockState#getPropertyValue(String)", - "cn.nukkit.blockstate.ByteMutableBlockState#hashCode()", - "cn.nukkit.blockstate.ByteMutableBlockState#toString()", - "cn.nukkit.blockstate.ByteMutableBlockState#validate()" + "cn.nukkit.network.protocol.DataPacket#EMPTY_ARRAY" ] }, - "cn.nukkit.block.BlockWitherRose": { + "cn.nukkit.network.protocol.ItemComponentPacket": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWitherRose#canPlantOn(Block)" + "cn.nukkit.network.protocol.ItemComponentPacket#()" ] }, - "cn.nukkit.item.ItemShovelNetherite": { + "cn.nukkit.network.protocol.ItemStackResponsePacket": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemShovelNetherite#isLavaResistant()" + "cn.nukkit.network.protocol.ItemStackResponsePacket#()" ] }, - "cn.nukkit.block.BlockCarpet": { + "cn.nukkit.network.protocol.PlayerActionPacket": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCarpet#getProperties()" + "cn.nukkit.network.protocol.PlayerActionPacket#ACTION_INTERACT_BLOCK" ] }, - "co.aikar.timings.TimingData": { - "addOverrideAnnotation": [ - "co.aikar.timings.TimingData#clone()" + "cn.nukkit.network.protocol.PositionTrackingDBClientRequestPacket": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.network.protocol.PositionTrackingDBClientRequestPacket#()" ] }, - "cn.nukkit.entity.mob.EntityWitch": { + "cn.nukkit.network.protocol.PositionTrackingDBServerBroadcastPacket": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityWitch#isPreventingSleep(Player)" + "cn.nukkit.network.protocol.PositionTrackingDBServerBroadcastPacket#()" ] }, - "cn.nukkit.level.format.updater.StemUpdater": { + "cn.nukkit.network.protocol.TickSyncPacket": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.StemUpdater#update(int, int, int, int, int, int, BlockState)" + "cn.nukkit.network.protocol.TickSyncPacket#()" ] }, - "cn.nukkit.block.BlockDeadBush": { - "addOverrideAnnotation": [ - "cn.nukkit.block.BlockDeadBush#getColor()" + "cn.nukkit.plugin.PowerNukkitPlugin": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.plugin.PowerNukkitPlugin#()" ] }, - "cn.nukkit.block.BlockChorusFlower": { + "cn.nukkit.positiontracking.NamedPosition": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockChorusFlower#breaksWhenMoved()", - "cn.nukkit.block.BlockChorusFlower#sticksToPiston()" + "cn.nukkit.positiontracking.NamedPosition#matchesNamedPosition(NamedPosition)" ] }, - "cn.nukkit.block.BlockWater": { + "cn.nukkit.potion.Potion": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWater#usesWaterLogging()" + "cn.nukkit.potion.Potion#SLOWNESS_IV" ] }, - "cn.nukkit.block.BlockBrewingStand": { - "addOverrideAnnotation": [ - "cn.nukkit.block.BlockBrewingStand#hasComparatorInputOverride()" - ], + "cn.nukkit.utils.Hash": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBrewingStand#getToolTier()" + "cn.nukkit.utils.Hash#hashBlock(Vector3)" ] }, - "cn.nukkit.block.BlockSlabBlackstone": { + "cn.nukkit.utils.HumanStringComparator": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabBlackstone#getSlabName()", - "cn.nukkit.block.BlockSlabBlackstone#isSameType(BlockSlab)" + "cn.nukkit.utils.HumanStringComparator#()" ] }, - "cn.nukkit.block.BlockTrapdoorIron": { + "cn.nukkit.utils.InvalidBlockDamageException": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockTrapdoorIron#getToolTier()" + "cn.nukkit.utils.InvalidBlockDamageException#canEqual(Object)" ] }, - "cn.nukkit.item.ItemAxeNetherite": { + "cn.nukkit.utils.PersonaPiece": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemAxeNetherite#isLavaResistant()" + "cn.nukkit.utils.PersonaPiece#canEqual(Object)" ] }, - "cn.nukkit.level.generator.object.tree.ObjectJungleBigTree": { - "addOverrideAnnotation": [ - "cn.nukkit.level.generator.object.tree.ObjectJungleBigTree#generate(ChunkManager, NukkitRandom, Vector3)" + "cn.nukkit.utils.PersonaPieceTint": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.utils.PersonaPieceTint#canEqual(Object)" ] }, - "cn.nukkit.block.BlockJungleWallSign": { + "cn.nukkit.utils.SerializedImage": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockJungleWallSign#getPostId()" + "cn.nukkit.utils.SerializedImage#canEqual(Object)" ] }, - "cn.nukkit.level.generator.object.tree.ObjectSavannaTree": { - "addOverrideAnnotation": [ - "cn.nukkit.level.generator.object.tree.ObjectSavannaTree#generate(ChunkManager, NukkitRandom, Vector3)" + "cn.nukkit.utils.SkinAnimation": { + "addPowerNukkitOnlyAnnotation": [ + "cn.nukkit.utils.SkinAnimation#canEqual(Object)" ] } } \ No newline at end of file diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 83206d113a0..e4a397003c9 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -239,8 +239,6 @@ public class Player extends EntityHuman implements CommandSender, InventoryHolde protected int inAirTicks = 0; protected int startAirTicks = 5; - @PowerNukkitOnly - @Since("1.4.0.0-PN") private int noShieldTicks; protected AdventureSettings adventureSettings; @@ -670,7 +668,6 @@ public Player(SourceInterface interfaz, Long clientID, String ip, int port) { this(interfaz, clientID, uncheckedNewInetSocketAddress(ip, port)); } - @PowerNukkitOnly public Player(SourceInterface interfaz, Long clientID, InetSocketAddress socketAddress) { super(null, new CompoundTag()); this.interfaz = interfaz; diff --git a/src/main/java/cn/nukkit/Server.java b/src/main/java/cn/nukkit/Server.java index 0636e3bc014..9fae76e76b1 100644 --- a/src/main/java/cn/nukkit/Server.java +++ b/src/main/java/cn/nukkit/Server.java @@ -276,8 +276,6 @@ public Level remove(Object key) { * Minimal initializer for testing */ @SuppressWarnings("UnstableApiUsage") - @PowerNukkitOnly - @Since("1.4.0.0-PN") Server(File tempDir) throws IOException { if (tempDir.isFile() && !tempDir.delete()) { throw new IOException("Failed to delete " + tempDir); diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index 84cfd0c675b..a78ff0aa6fb 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -899,8 +899,6 @@ public static void registerBlockImplementation(int blockId, @Nonnull Class sideEffects) { public void addSideEffects(@Nonnull SideEffect... sideEffects) { Stream safeStream = Arrays.stream(sideEffects) .filter(Objects::nonNull) - .map(SideEffect::clone); + .map(SideEffect::cloneSideEffect); this.sideEffects = Stream.concat(Arrays.stream(this.sideEffects), safeStream).toArray(SideEffect[]::new); } diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index b64e45da4f4..76b05254367 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -924,15 +924,6 @@ public boolean hasEnchantments() { return false; } - /** - * Convenience method to check if the item stack has positive level on a specific enchantment by it's id. - * @param id The enchantment ID from {@link Enchantment} constants. - */ - @PowerNukkitOnly - @Since("1.4.0.0-PN") - public boolean hasEnchantment(int id) { - return getEnchantmentLevel(id) > 0; - } /** * Find the enchantment level by the enchantment id. @@ -1038,6 +1029,15 @@ public Enchantment[] getEnchantments() { return enchantments.toArray(Enchantment.EMPTY_ARRAY); } + /** + * Convenience method to check if the item stack has positive level on a specific enchantment by it's id. + * @param id The enchantment ID from {@link Enchantment} constants. + */ + @Since("1.4.0.0-PN") + public boolean hasEnchantment(int id) { + return this.getEnchantmentLevel(id) > 0; + } + @PowerNukkitOnly @Since("1.5.1.0-PN") @Nonnull diff --git a/src/main/java/cn/nukkit/item/ItemArmorStand.java b/src/main/java/cn/nukkit/item/ItemArmorStand.java index fa66588519c..e8b50dcf4c1 100644 --- a/src/main/java/cn/nukkit/item/ItemArmorStand.java +++ b/src/main/java/cn/nukkit/item/ItemArmorStand.java @@ -18,23 +18,19 @@ import static cn.nukkit.math.CompassRoseDirection.Precision.PRIMARY_INTER_CARDINAL; -@PowerNukkitOnly @Since("1.4.0.0-PN") public class ItemArmorStand extends Item { - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemArmorStand() { this(0); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemArmorStand(Integer meta) { this(meta, 1); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemArmorStand(Integer meta, int count) { super(ARMOR_STAND, meta, count, "Armor Stand"); diff --git a/src/main/java/cn/nukkit/item/ItemBannerPattern.java b/src/main/java/cn/nukkit/item/ItemBannerPattern.java index 4b7ab52e132..08a82a24597 100644 --- a/src/main/java/cn/nukkit/item/ItemBannerPattern.java +++ b/src/main/java/cn/nukkit/item/ItemBannerPattern.java @@ -5,7 +5,6 @@ import cn.nukkit.utils.BannerPattern; @Since("1.2.1.0-PN") -@PowerNukkitOnly public class ItemBannerPattern extends Item { @PowerNukkitOnly public static final int PATTERN_CREEPER_CHARGE = 0; @@ -25,17 +24,14 @@ public class ItemBannerPattern extends Item { @PowerNukkitOnly public static final int PATTERN_BORDURE_INDENTED = 5; - @PowerNukkitOnly public ItemBannerPattern() { this(0, 1); } - @PowerNukkitOnly public ItemBannerPattern(Integer meta) { this(meta, 1); } - @PowerNukkitOnly public ItemBannerPattern(Integer meta, int count) { super(BANNER_PATTERN, meta, count, "Bone"); updateName(); diff --git a/src/main/java/cn/nukkit/item/ItemChorusFruitPopped.java b/src/main/java/cn/nukkit/item/ItemChorusFruitPopped.java index de4da6f50b4..25218b5f5e8 100644 --- a/src/main/java/cn/nukkit/item/ItemChorusFruitPopped.java +++ b/src/main/java/cn/nukkit/item/ItemChorusFruitPopped.java @@ -1,24 +1,21 @@ package cn.nukkit.item; -import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; -@PowerNukkitOnly @Since("1.4.0.0-PN") public class ItemChorusFruitPopped extends Item { - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemChorusFruitPopped() { this(0, 1); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemChorusFruitPopped(Integer meta) { this(meta, 1); } + @Since("1.4.0.0-PN") public ItemChorusFruitPopped(Integer meta, int count) { super(POPPED_CHORUS_FRUIT, meta, count, "Popped Chorus Fruit"); } diff --git a/src/main/java/cn/nukkit/item/ItemDragonBreath.java b/src/main/java/cn/nukkit/item/ItemDragonBreath.java index cad3937ae33..890b39f4f2c 100644 --- a/src/main/java/cn/nukkit/item/ItemDragonBreath.java +++ b/src/main/java/cn/nukkit/item/ItemDragonBreath.java @@ -1,25 +1,20 @@ package cn.nukkit.item; -import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; -@PowerNukkitOnly @Since("1.4.0.0-PN") public class ItemDragonBreath extends Item { - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemDragonBreath() { this(0, 1); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemDragonBreath(Integer meta) { this(meta, 1); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemDragonBreath(Integer meta, int count) { super(DRAGON_BREATH, meta, count, "Dragon's Breath"); diff --git a/src/main/java/cn/nukkit/item/ItemID.java b/src/main/java/cn/nukkit/item/ItemID.java index 59231f5ddf6..1591cb74a1e 100644 --- a/src/main/java/cn/nukkit/item/ItemID.java +++ b/src/main/java/cn/nukkit/item/ItemID.java @@ -202,7 +202,7 @@ public interface ItemID { int DARK_OAK_DOOR = 431; int CHORUS_FRUIT = 432; int POPPED_CHORUS_FRUIT = 433; - @Since("1.2.1.0-PN") @PowerNukkitOnly int BANNER_PATTERN = 434; + @Since("1.2.1.0-PN") int BANNER_PATTERN = 434; int DRAGON_BREATH = 437; int SPLASH_POTION = 438; @@ -260,7 +260,7 @@ public interface ItemID { @PowerNukkitOnly int CAMPFIRE = 720; - @PowerNukkitOnly int SUSPICIOUS_STEW = 734; + int SUSPICIOUS_STEW = 734; int HONEYCOMB = 736; int HONEY_BOTTLE = 737; diff --git a/src/main/java/cn/nukkit/item/ItemLead.java b/src/main/java/cn/nukkit/item/ItemLead.java index 1bc326c4f70..5482fdfa64a 100644 --- a/src/main/java/cn/nukkit/item/ItemLead.java +++ b/src/main/java/cn/nukkit/item/ItemLead.java @@ -1,25 +1,20 @@ package cn.nukkit.item; -import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; -@PowerNukkitOnly @Since("1.4.0.0-PN") public class ItemLead extends Item { - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemLead() { this(0, 1); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemLead(Integer meta) { this(meta, 1); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemLead(Integer meta, int count) { super(LEAD, meta, count, "Lead"); diff --git a/src/main/java/cn/nukkit/item/ItemNuggetIron.java b/src/main/java/cn/nukkit/item/ItemNuggetIron.java index 540840b679b..c264eee8171 100644 --- a/src/main/java/cn/nukkit/item/ItemNuggetIron.java +++ b/src/main/java/cn/nukkit/item/ItemNuggetIron.java @@ -1,28 +1,23 @@ package cn.nukkit.item; -import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; /** * @author good777LUCKY */ -@PowerNukkitOnly @Since("1.4.0.0-PN") public class ItemNuggetIron extends Item { - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemNuggetIron() { this(0, 1); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemNuggetIron(Integer meta) { this(meta, 1); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemNuggetIron(Integer meta, int count) { super(IRON_NUGGET, meta, count, "Iron Nugget"); diff --git a/src/main/java/cn/nukkit/item/ItemRabbitHide.java b/src/main/java/cn/nukkit/item/ItemRabbitHide.java index 36144b65f94..13824e2a7dd 100644 --- a/src/main/java/cn/nukkit/item/ItemRabbitHide.java +++ b/src/main/java/cn/nukkit/item/ItemRabbitHide.java @@ -1,25 +1,20 @@ package cn.nukkit.item; -import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; -@PowerNukkitOnly @Since("1.4.0.0-PN") public class ItemRabbitHide extends Item { - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemRabbitHide() { this(0, 1); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemRabbitHide(Integer meta) { this(meta, 1); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemRabbitHide(Integer meta, int count) { super(RABBIT_HIDE, meta, count, "Rabbit Hide"); diff --git a/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java b/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java index 69ab4de567d..5e2e69f4541 100644 --- a/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java +++ b/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java @@ -18,29 +18,24 @@ package cn.nukkit.item; -import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; /** * @author joserobjr * @since 2021-02-16 */ -@PowerNukkitOnly @Since("1.4.0.0-PN") public class ItemWarpedFungusOnAStick extends ItemTool { - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemWarpedFungusOnAStick() { this(0, 1); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemWarpedFungusOnAStick(Integer meta) { this(meta, 1); } - @PowerNukkitOnly @Since("1.4.0.0-PN") public ItemWarpedFungusOnAStick(Integer meta, int count) { super(WARPED_FUNGUS_ON_A_STICK, meta, count, "Warped Fungus on a Stick"); diff --git a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java index 3c4c85479ad..49b9c607b90 100644 --- a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java +++ b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java @@ -26,7 +26,7 @@ default void doPostAttack(@Nonnull Entity entity, @Nonnull EntityDamageEvent sou } @PowerNukkitOnly - @Since("1.5.1.0-PN") + @Since("FUTURE") @Nonnull - SideEffect clone(); + SideEffect cloneSideEffect(); } diff --git a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java index caf57547a14..b88931604b5 100644 --- a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java +++ b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java @@ -1,6 +1,7 @@ package cn.nukkit.item.enchantment.sideeffect; import cn.nukkit.Server; +import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; @@ -46,12 +47,23 @@ public void setDuration(int duration) { this.duration = duration; } + @Deprecated + @DeprecationDetails(since = "FUTURE", reason = "clone have problems when defined in an interface", by = "PowerNukkit", + replaceWith = "cloneSideEffect") @Since("1.5.1.0-PN") - @PowerNukkitOnly @SneakyThrows @Override @Nonnull public SideEffect clone() { return (SideEffect) super.clone(); } + + @Since("FUTURE") + @PowerNukkitOnly + @SneakyThrows + @Override + @Nonnull + public SideEffect cloneSideEffect() { + return (SideEffect) super.clone(); + } } diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index d8152acbfb1..d6b2bd78e8d 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -322,14 +322,18 @@ public Level(Server server, String name, String path, Class usesChunkSection, (lvl, p)-> provider); } - @PowerNukkitOnly("Makes easier to create tests") - @Since("1.4.0.0-PN") + /** + * Easier constructor to create PowerNukkit tests. + */ + @Since("1.4.0.0-PN") Level(Server server, String name, String path, BooleanSupplier usesChunkSection, BiFunction provider) { this.levelId = levelIdCounter++; this.blockMetadata = new BlockMetadataStore(this); diff --git a/src/main/java/cn/nukkit/level/format/anvil/MultiLayerStorage.java b/src/main/java/cn/nukkit/level/format/anvil/MultiLayerStorage.java index 899f13a9024..d80d8d86217 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/MultiLayerStorage.java +++ b/src/main/java/cn/nukkit/level/format/anvil/MultiLayerStorage.java @@ -168,7 +168,6 @@ public boolean hasBlocks() { } @Since("1.4.0.0-PN") - @PowerNukkitOnly @SneakyThrows(CloneNotSupportedException.class) @Override public MultiLayerStorage clone() { diff --git a/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java b/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java index a4dc870e396..68d74ead052 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java +++ b/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java @@ -68,7 +68,6 @@ public BlockStorage() { palette = new PalettedBlockStorage(); } - @PowerNukkitOnly @Since("1.4.0.0-PN") @API(definition = INTERNAL, usage = BLEEDING) BlockStorage(BlockState[] states, byte flags, PalettedBlockStorage palette, @Nullable BitSet denyStates) { @@ -442,7 +441,6 @@ private byte computeFlags(byte newFlags, BlockState... states) { } @Since("1.4.0.0-PN") - @PowerNukkitOnly public BlockStorage copy() { BitSet deny = denyStates; return new BlockStorage(states.clone(), flags, palette.copy(), (BitSet) (deny != null? deny.clone() : null)); diff --git a/src/main/java/cn/nukkit/level/format/generic/BaseChunk.java b/src/main/java/cn/nukkit/level/format/generic/BaseChunk.java index 8b4821235d3..6090eb85fc4 100644 --- a/src/main/java/cn/nukkit/level/format/generic/BaseChunk.java +++ b/src/main/java/cn/nukkit/level/format/generic/BaseChunk.java @@ -185,7 +185,6 @@ public boolean setFullBlockId(int x, int y, int z, int layer, int fullId) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") - @PowerNukkitOnly @Override public boolean setBlock(int x, int y, int z, int blockId, int meta) { return this.setBlockAtLayer(x, y, z, 0, blockId, meta); diff --git a/src/main/java/cn/nukkit/level/particle/Particle.java b/src/main/java/cn/nukkit/level/particle/Particle.java index 8fe01ce89a1..792d742a4a7 100644 --- a/src/main/java/cn/nukkit/level/particle/Particle.java +++ b/src/main/java/cn/nukkit/level/particle/Particle.java @@ -23,7 +23,7 @@ public abstract class Particle extends Vector3 { public static final int TYPE_EXPLODE = dynamic(6); public static final int TYPE_EVAPORATION = dynamic(7); public static final int TYPE_FLAME = dynamic(8); - @PowerNukkitOnly @Since("1.5.2.0-PN") public static final int TYPE_CANDLE_FLAME = dynamic(9); + @Since("1.5.2.0-PN") public static final int TYPE_CANDLE_FLAME = dynamic(9); public static final int TYPE_LAVA = dynamic(10); public static final int TYPE_LARGE_SMOKE = dynamic(11); public static final int TYPE_REDSTONE = dynamic(12); diff --git a/src/main/java/cn/nukkit/network/protocol/ItemComponentPacket.java b/src/main/java/cn/nukkit/network/protocol/ItemComponentPacket.java index c0dcb926944..883cb6c64ae 100644 --- a/src/main/java/cn/nukkit/network/protocol/ItemComponentPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ItemComponentPacket.java @@ -5,12 +5,11 @@ import cn.nukkit.nbt.NBTIO; import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.utils.MainLogger; +import lombok.ToString; import java.io.IOException; import java.nio.ByteOrder; -import lombok.ToString; - /** * @author GoodLucky777 */ @@ -22,7 +21,6 @@ public class ItemComponentPacket extends DataPacket { @Since("1.4.0.0-PN") public static final byte NETWORK_ID = ProtocolInfo.ITEM_COMPONENT_PACKET; - @PowerNukkitOnly @Since("1.4.0.0-PN") private Entry[] entries = Entry.EMPTY_ARRAY; diff --git a/src/main/java/cn/nukkit/network/protocol/PositionTrackingDBServerBroadcastPacket.java b/src/main/java/cn/nukkit/network/protocol/PositionTrackingDBServerBroadcastPacket.java index afaa3fe9e7a..d2654d17abd 100644 --- a/src/main/java/cn/nukkit/network/protocol/PositionTrackingDBServerBroadcastPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/PositionTrackingDBServerBroadcastPacket.java @@ -25,8 +25,6 @@ public class PositionTrackingDBServerBroadcastPacket extends DataPacket { @PowerNukkitOnly @Since("1.4.0.0-PN") public static final byte NETWORK_ID = ProtocolInfo.POS_TRACKING_SERVER_BROADCAST_PACKET; - @PowerNukkitOnly - @Since("1.4.0.0-PN") private static final Action[] ACTIONS = Action.values(); private Action action; diff --git a/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java b/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java index 1917473089c..65e2fdb701e 100644 --- a/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java +++ b/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java @@ -2,11 +2,11 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import cn.nukkit.utils.HumanStringComparator; import com.google.common.base.Preconditions; import com.google.gson.GsonBuilder; import io.netty.util.internal.EmptyArrays; -import lombok.Getter; -import lombok.SneakyThrows; +import lombok.*; import lombok.extern.log4j.Log4j2; import spoon.Launcher; import spoon.MavenLauncher; @@ -14,6 +14,7 @@ import spoon.reflect.declaration.*; import spoon.reflect.reference.CtTypeReference; import spoon.support.compiler.SpoonPom; +import spoon.support.reflect.declaration.CtConstructorImpl; import java.io.File; import java.nio.charset.StandardCharsets; @@ -23,6 +24,7 @@ import java.util.*; import java.util.function.Function; import java.util.stream.Collectors; +import java.util.stream.Stream; /** * @author joserobjr @@ -49,22 +51,61 @@ public static void main(String[] args) { private static boolean isApi(CtModifiable obj) { - return obj.isPublic() || obj.isProtected(); + if (obj.isPublic() || obj.isProtected()) { + return true; + } + if (obj instanceof CtField) { + CtType declaringType = ((CtField) obj).getDeclaringType(); + String fieldName = ((CtField) obj).getSimpleName(); + fieldName = fieldName.substring(0, 1).toUpperCase(Locale.ENGLISH) + fieldName.substring(1); + CtMethod getter = declaringType.getMethod("get" + fieldName); + if (getter == null || !getter.hasAnnotation(Generated.class) || !isApi(getter)) { + getter = declaringType.getMethod("is" + fieldName); + } + if (getter != null && getter.hasAnnotation(Generated.class) && isApi(getter)) { + return true; + } + CtMethod setter = declaringType.getMethod("set" + fieldName, ((CtField) obj).getType()); + if (setter != null && setter.hasAnnotation(Generated.class)) { + return isApi(setter); + } + } else if (obj instanceof CtMethod && obj.hasAnnotation(Generated.class)) { + if (((CtMethod) obj).getSimpleName().equals("canEqual")) { + return false; + } + } + return false; + } + + private boolean isPowerNukkitOnlyExecutable(CtTypedElement powerNukkitExecutable, CtType nukkitType) { + if (powerNukkitExecutable instanceof CtMethod) { + return isPowerNukkitOnlyMethod((CtMethod) powerNukkitExecutable, nukkitType); + } else { + return isPowerNukkitOnlyConstructor((CtConstructorImpl) powerNukkitExecutable, nukkitType); + } } private boolean isPowerNukkitOnlyMethod(CtMethod powerNukkitMethod, CtType nukkitType) { - nukkitType = nukkitType == null? nukkitTypes.get(powerNukkitMethod.getDeclaringType().getQualifiedName()) : nukkitType; + String qualifiedName = powerNukkitMethod.getDeclaringType().getQualifiedName(); + if (qualifiedName.startsWith("java.")) { + return false; + } + if (nukkitType == null) { + nukkitType = nukkitTypes.get(qualifiedName); + } if (nukkitType == null) { return true; } String name = powerNukkitMethod.getSimpleName(); CtTypeReference[] parameters = powerNukkitMethod.getParameters().stream().map(CtParameter::getType).toArray(CtTypeReference[]::new); - if (nukkitType.getMethod(name, parameters) != null) { - return false; + CtMethod nkMethod = nukkitType.getMethod(name, parameters); + if (nkMethod != null) { + return !isApi(nkMethod); } String[] parameterTypes = Arrays.stream(parameters).map(CtTypeInformation::getQualifiedName).toArray(String[]::new); return nukkitType.getAllMethods().stream() + .filter(AnnotationProblemScanner::isApi) .noneMatch(nukkitMethod -> name.equals(nukkitMethod.getSimpleName()) && Arrays.equals(parameterTypes, @@ -76,6 +117,32 @@ private boolean isPowerNukkitOnlyMethod(CtMethod powerNukkitMethod, CtType ); } + private boolean isPowerNukkitOnlyConstructor(CtConstructorImpl constructor, CtType nukkitType) { + if (nukkitType == null) { + nukkitType = nukkitTypes.get(constructor.getDeclaringType().getQualifiedName()); + } + if (!(nukkitType instanceof CtClass)) { + return true; + } + CtClass nukkitClass = (CtClass) nukkitType; + CtTypeReference[] parameters = constructor.getParameters().stream().map(CtParameter::getType).toArray(CtTypeReference[]::new); + CtConstructorImpl nkConstructor = (CtConstructorImpl) nukkitClass.getConstructor(parameters); + if (nkConstructor != null) { + return !isApi(nkConstructor); + } + + String[] parameterTypes = Arrays.stream(parameters).map(CtTypeInformation::getQualifiedName).toArray(String[]::new); + return nukkitClass.getConstructors().stream() + .filter(AnnotationProblemScanner::isApi) + .noneMatch(nukkitConstructor -> Arrays.equals(parameterTypes, + nukkitConstructor.getParameters().stream() + .map(CtParameter::getType) + .map(CtTypeInformation::getQualifiedName) + .toArray(String[]::new) + ) + ); + } + @SneakyThrows private void cmd(Path dir, String... command) { int code = new ProcessBuilder() @@ -172,7 +239,9 @@ private void execute(Path nukkitSrc, Path powerNukkitSrc) { .map(type-> checkType(type, nukkitTypes)) .peek(NeededClassChanges::close) .filter(NeededClassChanges::isNotEmpty) - .collect(Collectors.toMap(NeededClassChanges::getName, Function.identity())); + .collect(Collectors.toMap(NeededClassChanges::getName, Function.identity(), + (a,b)-> { throw new UnsupportedOperationException("Can't combine " + a + " with " + b); }, + ()-> new TreeMap<>(HumanStringComparator.getInstance()))); Path jsonFile = Paths.get("dumps/needed-class-changes.json").toAbsolutePath().normalize(); log.info("Creating ..." + jsonFile); @@ -208,18 +277,21 @@ private NeededClassChanges addPowerNukkitOnlyToEverything(CtType powerNukkitT Set> powerNukkitOnlyMethods = powerNukkitType.getMethods().stream() .filter(AnnotationProblemScanner::isApi) - .filter(method -> method.getTopDefinitions().isEmpty() + .filter(method -> method.isStatic() + || method.getTopDefinitions().isEmpty() || method.getTopDefinitions().stream().allMatch(powerNukkitMethod -> isPowerNukkitOnlyMethod(powerNukkitMethod, null))) .peek(method -> needsPowerNukkitOnly(neededClassChanges, method)) .collect(Collectors.toSet()); + constructorStream(powerNukkitType) + .filter(it -> isApi((CtModifiable) it)) + .forEachOrdered(method -> needsPowerNukkitOnly(neededClassChanges, method)); + powerNukkitType.getFields().stream() - .filter(AnnotationProblemScanner::isApi) .filter(field -> !powerNukkitOnlyFields.contains(field)) .forEachOrdered(field -> dontNeedsPowerNukkitOnly(neededClassChanges, field)); powerNukkitType.getMethods().stream() - .filter(AnnotationProblemScanner::isApi) .filter(method-> !powerNukkitOnlyMethods.contains(method)) .forEachOrdered(method -> dontNeedsPowerNukkitOnly(neededClassChanges, method)); @@ -239,28 +311,35 @@ private NeededClassChanges compareTypes(CtType powerNukkitType, CtType nuk checkForMissingOverrides(neededClassChanges, powerNukkitType); - List> powerNukkitOnlyMethods = powerNukkitType.getMethods().stream() - .filter(AnnotationProblemScanner::isApi) - .filter(powerNukkitMethod -> isPowerNukkitOnlyMethod(powerNukkitMethod, nukkitType)) - .peek(method -> needsPowerNukkitOnly(neededClassChanges, method)) - .collect(Collectors.toList()); + List> powerNukkitOnlyMethods = + Stream.concat(powerNukkitType.getMethods().stream(), constructorStream(powerNukkitType)) + .filter(it -> isApi((CtModifiable) it)) + .filter(powerNukkitMethod -> isPowerNukkitOnlyExecutable(powerNukkitMethod, nukkitType)) + .peek(method -> needsPowerNukkitOnly(neededClassChanges, method)) + .collect(Collectors.toList()); powerNukkitType.getFields().stream() - .filter(AnnotationProblemScanner::isApi) .filter(field -> !powerNukkitOnlyFields.contains(field)) .forEachOrdered(field -> dontNeedsPowerNukkitOnly(neededClassChanges, field)); - powerNukkitType.getMethods().stream() - .filter(AnnotationProblemScanner::isApi) + Stream.concat(powerNukkitType.getMethods().stream(), constructorStream(powerNukkitType)) .filter(method-> !powerNukkitOnlyMethods.contains(method)) .forEachOrdered(method -> dontNeedsPowerNukkitOnly(neededClassChanges, method)); return neededClassChanges; } + private Stream> constructorStream(CtType type) { + if (type instanceof CtClass) { + return ((CtClass) type).getConstructors().stream().map(it -> (CtTypedElement) it); + } else { + return Stream.empty(); + } + } + private boolean compareFields(CtField powerNukkitField, CtType nukkitType) { CtField nukkitField = nukkitType.getField(powerNukkitField.getSimpleName()); - if (nukkitField == null) { + if (nukkitField == null || !isApi(nukkitField)) { return true; } CtTypeReference nukkitFieldType = nukkitField.getType(); @@ -285,8 +364,10 @@ private boolean compareFields(CtField powerNukkitField, CtType nukkitType) private void checkForMissingOverrides(NeededClassChanges neededClassChanges, CtType powerNukkitType) { powerNukkitType.getMethods().stream() .filter(AnnotationProblemScanner::isApi) + .filter(method -> !method.isStatic()) .filter(method -> !method.getTopDefinitions().isEmpty()) .filter(method -> !method.hasAnnotation(Override.class)) + .filter(method -> !method.hasAnnotation(Generated.class)) .map(this::missingOverride) .forEachOrdered(neededClassChanges.addOverrideAnnotation::add); } @@ -298,14 +379,22 @@ private String missingOverride(CtMethod method) { return sig; } - private String methodString(CtMethod method) { - return method.getDeclaringType().getQualifiedName() + "#" + method.getSimpleName() + private String methodString(CtTypedElement method) { + return ((CtTypeMember) method).getDeclaringType().getQualifiedName() + "#" + ((CtNamedElement)method).getSimpleName() + "(" - + method.getParameters().stream() + + getParameters(method).stream() .map(param -> param.getType().getSimpleName()).collect(Collectors.joining(", ")) + ")"; } + private List> getParameters(CtTypedElement method) { + if (method instanceof CtMethod) { + return ((CtMethod) method).getParameters(); + } else { + return ((CtConstructorImpl) method).getParameters(); + } + } + private void needsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtType type) { if (!type.hasAnnotation(PowerNukkitOnly.class)) { log.info(NEED_TO_ADD_POWERNUKKIT_ONLY + type.getQualifiedName()); @@ -321,7 +410,7 @@ private void needsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtField } } - private void needsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtMethod method) { + private void needsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtTypedElement method) { if (!method.hasAnnotation(PowerNukkitOnly.class)) { String sig = methodString(method); log.info(NEED_TO_ADD_POWERNUKKIT_ONLY + sig); @@ -344,7 +433,7 @@ private void dontNeedsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtF } } - private void dontNeedsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtMethod method) { + private void dontNeedsPowerNukkitOnly(NeededClassChanges neededClassChanges, CtTypedElement method) { if (method.hasAnnotation(PowerNukkitOnly.class)) { String sig = methodString(method); log.info(NEED_TO_REMOVE_POWERNUKKIT_ONLY + sig); From a916b81ecac6aa4ea25deb00e4b50a0c8030cb82 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 17:53:45 -0300 Subject: [PATCH 294/394] Fixes type incompatibility at CraftingTransaction.recipe --- .../event/inventory/CraftItemEvent.java | 2 +- .../transaction/CraftingTransaction.java | 47 +++++++++++++++---- 2 files changed, 38 insertions(+), 11 deletions(-) diff --git a/src/main/java/cn/nukkit/event/inventory/CraftItemEvent.java b/src/main/java/cn/nukkit/event/inventory/CraftItemEvent.java index d724e7c5107..28b1abf45b1 100644 --- a/src/main/java/cn/nukkit/event/inventory/CraftItemEvent.java +++ b/src/main/java/cn/nukkit/event/inventory/CraftItemEvent.java @@ -32,7 +32,7 @@ public CraftItemEvent(CraftingTransaction transaction) { this.player = transaction.getSource(); this.input = transaction.getInputList().toArray(Item.EMPTY_ARRAY); - this.recipe = transaction.getRecipe(); + this.recipe = transaction.getTransactionRecipe(); } public CraftItemEvent(Player player, Item[] input, Recipe recipe) { diff --git a/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java b/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java index 984214b6710..b19c2a03cc7 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java @@ -1,6 +1,7 @@ package cn.nukkit.inventory.transaction; import cn.nukkit.Player; +import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @@ -12,6 +13,7 @@ import cn.nukkit.inventory.transaction.action.TakeLevelAction; import cn.nukkit.item.Item; +import javax.annotation.Nullable; import java.util.ArrayList; import java.util.List; import java.util.concurrent.ThreadLocalRandom; @@ -29,7 +31,14 @@ public class CraftingTransaction extends InventoryTransaction { protected Item primaryOutput; - protected Recipe recipe; + @Deprecated + @DeprecationDetails(since = "FUTURE", reason = "When the recipe is not a CraftingRecipe, this is set to null instead of the recipe", + by = "PowerNukkit", replaceWith = "getTransactionRecipe()") + @Nullable + @Since("FUTURE") + protected CraftingRecipe recipe; + + private Recipe transactionRecipe; protected int craftingType; @@ -94,20 +103,38 @@ public void setPrimaryOutput(Item item) { } } - public Recipe getRecipe() { + @Deprecated + @DeprecationDetails(since = "FUTURE", reason = "When the recipe is not a CraftingRecipe, returns null instead of the recipe", + by = "PowerNukkit", replaceWith = "getTransactionRecipe()") + @Since("FUTURE") + @Nullable + public CraftingRecipe getRecipe() { return recipe; } + @PowerNukkitOnly + @Since("FUTURE") + public Recipe getTransactionRecipe() { + return transactionRecipe; + } + + @PowerNukkitOnly + @Since("FUTURE") + protected void setTransactionRecipe(Recipe recipe) { + this.transactionRecipe = recipe; + this.recipe = (recipe instanceof CraftingRecipe)? (CraftingRecipe) recipe: null; + } + @Override public boolean canExecute() { CraftingManager craftingManager = source.getServer().getCraftingManager(); Inventory inventory; switch (craftingType) { case Player.CRAFTING_STONECUTTER: - recipe = craftingManager.matchStonecutterRecipe(this.primaryOutput); + setTransactionRecipe(craftingManager.matchStonecutterRecipe(this.primaryOutput)); break; case Player.CRAFTING_CARTOGRAPHY: - recipe = craftingManager.matchCartographyRecipe(inputs, this.primaryOutput, this.secondaryOutputs); + setTransactionRecipe(craftingManager.matchCartographyRecipe(inputs, this.primaryOutput, this.secondaryOutputs)); break; case Player.CRAFTING_SMITHING: inventory = source.getWindowById(Player.SMITHING_WINDOW_ID); @@ -116,7 +143,7 @@ public boolean canExecute() { SmithingInventory smithingInventory = (SmithingInventory) inventory; SmithingRecipe smithingRecipe = smithingInventory.matchRecipe(); if (smithingRecipe != null && this.primaryOutput.equals(smithingRecipe.getFinalResult(smithingInventory.getEquipment()), true, true)) { - recipe = smithingRecipe; + setTransactionRecipe(smithingRecipe); } } @@ -131,7 +158,7 @@ public boolean canExecute() { TakeLevelAction takeLevel = new TakeLevelAction(anvil.getLevelCost()); addAction(takeLevel); if (takeLevel.isValid(source)) { - recipe = new RepairRecipe(InventoryType.ANVIL, this.primaryOutput, this.inputs); + setTransactionRecipe(new RepairRecipe(InventoryType.ANVIL, this.primaryOutput, this.inputs)); PlayerUIInventory uiInventory = source.getUIInventory(); actions.add(new DamageAnvilAction(anvil, !source.isCreative() && ThreadLocalRandom.current().nextFloat() < 0.12F, this)); actions.stream() @@ -148,7 +175,7 @@ public boolean canExecute() { } } } - if (recipe == null) { + if (getTransactionRecipe() == null) { source.sendExperienceLevel(); } source.getUIInventory().setItem(AnvilInventory.RESULT, Item.get(0), false); @@ -159,17 +186,17 @@ public boolean canExecute() { GrindstoneInventory grindstone = (GrindstoneInventory) inventory; addInventory(grindstone); if (grindstone.updateResult(false) && this.primaryOutput.equals(grindstone.getResult(), true, true)) { - recipe = new RepairRecipe(InventoryType.GRINDSTONE, this.primaryOutput, this.inputs); + setTransactionRecipe(new RepairRecipe(InventoryType.GRINDSTONE, this.primaryOutput, this.inputs)); grindstone.setResult(Item.get(0), false); } } break; default: - recipe = craftingManager.matchRecipe(inputs, this.primaryOutput, this.secondaryOutputs); + setTransactionRecipe(craftingManager.matchRecipe(inputs, this.primaryOutput, this.secondaryOutputs)); break; } - return this.recipe != null && super.canExecute(); + return this.getTransactionRecipe() != null && super.canExecute(); } @Override From d51e866931c585b5baab13d8d760387a4320079d Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 17:57:51 -0300 Subject: [PATCH 295/394] Fixes type incompatibility at BlockEntityPistonArm#state and BlockEntityPistonArm#newState --- .../cn/nukkit/blockentity/BlockEntityPistonArm.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java b/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java index 5f19a2cb9c3..a2108980f02 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java @@ -41,8 +41,11 @@ public class BlockEntityPistonArm extends BlockEntitySpawnable { public boolean sticky; - public int state; - public int newState = 1; + @Since("FUTURE") + public byte state; + + @Since("FUTURE") + public byte newState = 1; public List attachedBlocks; @@ -160,7 +163,7 @@ void moveEntity(Entity entity, BlockFace moveDirection) { public void move(boolean extending, List attachedBlocks) { this.extending = extending; this.lastProgress = this.progress = extending ? 0 : 1; - this.state = this.newState = extending ? 1 : 3; + this.state = this.newState = (byte) (extending ? 1 : 3); this.attachedBlocks = attachedBlocks; this.movable = false; this.finished = false; @@ -189,7 +192,7 @@ public boolean onUpdate() { this.moveCollidedEntities(); if (this.progress == this.lastProgress) { - this.state = this.newState = extending ? 2 : 0; + this.state = this.newState = (byte) (extending ? 2 : 0); BlockFace pushDir = this.extending ? facing : facing.getOpposite(); From d8a9cd0bc4ad7b36b63b3bd3eb3d4d8367ea9341 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 18:39:44 -0300 Subject: [PATCH 296/394] Improves some basic static block attributes access, adds some PowerNukkitOnly annotations --- dumps/needed-class-changes.json | 43 ------------ src/main/java/cn/nukkit/Nukkit.java | 3 +- src/main/java/cn/nukkit/Player.java | 5 +- src/main/java/cn/nukkit/Server.java | 3 + .../cn/nukkit/api/DeprecationDetails.java | 5 ++ .../java/cn/nukkit/api/PowerNukkitOnly.java | 1 + src/main/java/cn/nukkit/api/Since.java | 1 + src/main/java/cn/nukkit/block/Block.java | 70 ++++++++++++++++--- .../nukkit/blockentity/BlockEntityBeacon.java | 2 +- .../nukkit/blockstate/BlockStateRegistry.java | 2 +- src/main/java/cn/nukkit/entity/Entity.java | 14 ++-- .../transaction/action/SlotChangeAction.java | 2 - src/main/java/cn/nukkit/level/Level.java | 6 +- .../cn/nukkit/level/format/anvil/Chunk.java | 2 +- .../level/format/generic/BaseFullChunk.java | 8 +-- .../object/mushroom/BigMushroom.java | 4 +- .../object/tree/ObjectSpruceTree.java | 2 +- .../generator/object/tree/ObjectTree.java | 2 +- .../populator/impl/PopulatorGroundFire.java | 2 +- .../populator/impl/PopulatorLava.java | 2 +- .../tools/AnnotationProblemScanner.java | 7 +- 21 files changed, 102 insertions(+), 84 deletions(-) diff --git a/dumps/needed-class-changes.json b/dumps/needed-class-changes.json index 22042f7c511..1e4ae6fa016 100644 --- a/dumps/needed-class-changes.json +++ b/dumps/needed-class-changes.json @@ -1170,8 +1170,6 @@ "cn.nukkit.blockentity.BlockEntityPistonArm": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.blockentity.BlockEntityPistonArm#MOVE_STEP", - "cn.nukkit.blockentity.BlockEntityPistonArm#state", - "cn.nukkit.blockentity.BlockEntityPistonArm#newState", "cn.nukkit.blockentity.BlockEntityPistonArm#attachedBlocks", "cn.nukkit.blockentity.BlockEntityPistonArm#move(boolean, List)" ] @@ -1252,7 +1250,6 @@ "cn.nukkit.blockstate.BigIntegerMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.blockstate.BigIntegerMutableBlockState", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#canEqual(Object)", "cn.nukkit.blockstate.BigIntegerMutableBlockState#copy()", "cn.nukkit.blockstate.BigIntegerMutableBlockState#getBigDamage()", "cn.nukkit.blockstate.BigIntegerMutableBlockState#getBooleanValue(String)", @@ -1302,7 +1299,6 @@ }, "cn.nukkit.blockstate.ByteMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.ByteMutableBlockState#canEqual(Object)", "cn.nukkit.blockstate.ByteMutableBlockState#copy()", "cn.nukkit.blockstate.ByteMutableBlockState#getBigDamage()", "cn.nukkit.blockstate.ByteMutableBlockState#getBooleanValue(String)", @@ -1322,7 +1318,6 @@ }, "cn.nukkit.blockstate.IntMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.IntMutableBlockState#canEqual(Object)", "cn.nukkit.blockstate.IntMutableBlockState#copy()", "cn.nukkit.blockstate.IntMutableBlockState#getBigDamage()", "cn.nukkit.blockstate.IntMutableBlockState#getBooleanValue(String)", @@ -1337,7 +1332,6 @@ }, "cn.nukkit.blockstate.LongMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.LongMutableBlockState#canEqual(Object)", "cn.nukkit.blockstate.LongMutableBlockState#copy()", "cn.nukkit.blockstate.LongMutableBlockState#getBigDamage()", "cn.nukkit.blockstate.LongMutableBlockState#getBooleanValue(String)", @@ -1352,7 +1346,6 @@ }, "cn.nukkit.blockstate.MutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.MutableBlockState#canEqual(Object)", "cn.nukkit.blockstate.MutableBlockState#getBigId()", "cn.nukkit.blockstate.MutableBlockState#getBitSize()", "cn.nukkit.blockstate.MutableBlockState#getBlockId()", @@ -1477,11 +1470,6 @@ "cn.nukkit.entity.EntityLiving#setBlocking(boolean)" ] }, - "cn.nukkit.entity.data.Skin": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.data.Skin#canEqual(Object)" - ] - }, "cn.nukkit.entity.item.EntityExpBottle": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.entity.item.EntityExpBottle#addHitEffect()" @@ -1844,7 +1832,6 @@ }, "cn.nukkit.inventory.transaction.CraftingTransaction": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.transaction.CraftingTransaction#recipe", "cn.nukkit.inventory.transaction.CraftingTransaction#craftingType" ] }, @@ -2383,11 +2370,6 @@ "cn.nukkit.network.protocol.AnimateEntityPacket#()" ] }, - "cn.nukkit.network.protocol.CraftingEventPacket": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.CraftingEventPacket#canEqual(Object)" - ] - }, "cn.nukkit.network.protocol.DataPacket": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.network.protocol.DataPacket#EMPTY_ARRAY" @@ -2447,30 +2429,5 @@ "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.utils.HumanStringComparator#()" ] - }, - "cn.nukkit.utils.InvalidBlockDamageException": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.InvalidBlockDamageException#canEqual(Object)" - ] - }, - "cn.nukkit.utils.PersonaPiece": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.PersonaPiece#canEqual(Object)" - ] - }, - "cn.nukkit.utils.PersonaPieceTint": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.PersonaPieceTint#canEqual(Object)" - ] - }, - "cn.nukkit.utils.SerializedImage": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.SerializedImage#canEqual(Object)" - ] - }, - "cn.nukkit.utils.SkinAnimation": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.SkinAnimation#canEqual(Object)" - ] } } \ No newline at end of file diff --git a/src/main/java/cn/nukkit/Nukkit.java b/src/main/java/cn/nukkit/Nukkit.java index d050b0d8ea2..2edf271084d 100644 --- a/src/main/java/cn/nukkit/Nukkit.java +++ b/src/main/java/cn/nukkit/Nukkit.java @@ -1,5 +1,6 @@ package cn.nukkit; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.math.NukkitMath; import cn.nukkit.network.protocol.ProtocolInfo; import cn.nukkit.utils.ServerKiller; @@ -53,7 +54,7 @@ public class Nukkit { public final static Properties GIT_INFO = getGitInfo(); public final static String VERSION = getVersion(); - public final static String GIT_COMMIT = getGitCommit(); + public @PowerNukkitOnly final static String GIT_COMMIT = getGitCommit(); public final static String API_VERSION = dynamic("1.0.13"); public final static String CODENAME = dynamic("PowerNukkit"); @Deprecated diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index e4a397003c9..7fe7401a7a0 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -664,6 +664,7 @@ private static InetSocketAddress uncheckedNewInetSocketAddress(String ip, int po } } + @PowerNukkitOnly public Player(SourceInterface interfaz, Long clientID, String ip, int port) { this(interfaz, clientID, uncheckedNewInetSocketAddress(ip, port)); } @@ -4890,6 +4891,7 @@ public void addExperience(int add) { addExperience(add, false); } + @PowerNukkitOnly public void addExperience(int add, boolean playLevelUpSound) { if (add == 0) return; int now = this.getExperience(); @@ -4923,7 +4925,7 @@ public void setExperience(int exp, int level) { } //todo something on performance, lots of exp orbs then lots of packets, could crash client - + @PowerNukkitOnly public void setExperience(int exp, int level, boolean playLevelUpSound) { int levelBefore = this.expLevel; this.exp = exp; @@ -6043,6 +6045,7 @@ private void updateBlockingFlag() { } } + @PowerNukkitOnly @Override protected void onBlock(Entity entity, boolean animate) { super.onBlock(entity, animate); diff --git a/src/main/java/cn/nukkit/Server.java b/src/main/java/cn/nukkit/Server.java index 9fae76e76b1..d11b9e8cfac 100644 --- a/src/main/java/cn/nukkit/Server.java +++ b/src/main/java/cn/nukkit/Server.java @@ -1490,6 +1490,7 @@ public String getNukkitVersion() { return Nukkit.VERSION; } + @PowerNukkitOnly public String getGitCommit() { return Nukkit.GIT_COMMIT; } @@ -2273,10 +2274,12 @@ public boolean isLanguageForced() { return forceLanguage; } + @PowerNukkitOnly public boolean isRedstoneEnabled() { return redstoneEnabled; } + @PowerNukkitOnly public void setRedstoneEnabled(boolean redstoneEnabled) { this.redstoneEnabled = redstoneEnabled; } diff --git a/src/main/java/cn/nukkit/api/DeprecationDetails.java b/src/main/java/cn/nukkit/api/DeprecationDetails.java index 07f3bba7975..497ec2dabf6 100644 --- a/src/main/java/cn/nukkit/api/DeprecationDetails.java +++ b/src/main/java/cn/nukkit/api/DeprecationDetails.java @@ -14,25 +14,30 @@ /** * The version which marked this element as deprecated. */ + @PowerNukkitOnly String since(); /** * Why it is deprecated. */ + @PowerNukkitOnly String reason(); /** * What should be used or do instead. */ + @PowerNukkitOnly String replaceWith() default ""; /** * When the annotated element will be removed or have it's signature changed. */ + @PowerNukkitOnly String toBeRemovedAt() default ""; /** * The maintainer party that has added this depreciation. For example: PowerNukkit, Cloudburst Nukkit, and Nukkit */ + @PowerNukkitOnly String by() default ""; } diff --git a/src/main/java/cn/nukkit/api/PowerNukkitOnly.java b/src/main/java/cn/nukkit/api/PowerNukkitOnly.java index 81a05273a8b..8811d760664 100644 --- a/src/main/java/cn/nukkit/api/PowerNukkitOnly.java +++ b/src/main/java/cn/nukkit/api/PowerNukkitOnly.java @@ -13,5 +13,6 @@ @Inherited @Documented public @interface PowerNukkitOnly { + @PowerNukkitOnly String value() default ""; } diff --git a/src/main/java/cn/nukkit/api/Since.java b/src/main/java/cn/nukkit/api/Since.java index e78e27c8f5e..ac1d329d381 100644 --- a/src/main/java/cn/nukkit/api/Since.java +++ b/src/main/java/cn/nukkit/api/Since.java @@ -15,5 +15,6 @@ /** * The version which added the element. */ + @PowerNukkitOnly String value(); } diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index a78ff0aa6fb..794ad88c668 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -97,39 +97,35 @@ public abstract class Block extends Position implements Metadatable, Cloneable, @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", - replaceWith = "Block.getLightLevel()") + replaceWith = "Block.getLightLevel() or Block.light(int)") @SuppressWarnings({"java:S1444", "java:S2386"}) public static int[] light = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", - replaceWith = "Block.getLightFilter()") + replaceWith = "Block.getLightFilter() or Block.lightFilter(int)") @SuppressWarnings({"java:S1444", "java:S2386"}) public static int[] lightFilter = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", - replaceWith = "Block.isSolid()") + replaceWith = "Block.isSolid() or Block.isSolid(int)") @SuppressWarnings({"java:S1444", "java:S2386"}) public static boolean[] solid = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", - replaceWith = "Block.getHardness()") + replaceWith = "Block.getHardness() or Block.hardness(int)") @SuppressWarnings({"java:S1444", "java:S2386"}) public static double[] hardness = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", - replaceWith = "Block.isTransparent()") + replaceWith = "Block.isTransparent() or Block.isTransparent(int)") @SuppressWarnings({"java:S1444", "java:S2386"}) public static boolean[] transparent = null; - @Deprecated - @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", - replaceWith = "Block.diffusesSkyLight()") - @SuppressWarnings({"java:S1444", "java:S2386"}) - public static boolean[] diffusesSkyLight = null; + private static boolean[] diffusesSkyLight = null; /** * if a block has can have variants @@ -789,6 +785,60 @@ public static Block get(int id, int meta, Level level, int x, int y, int z, int } // + @PowerNukkitOnly + @Since("FUTURE") + public static boolean isSolid(int blockId) { + if (blockId < 0 || blockId >= solid.length) { + return true; + } + return solid[blockId]; + } + + @PowerNukkitOnly + @Since("FUTURE") + public static boolean diffusesSkyLight(int blockId) { + if (blockId < 0 || blockId >= diffusesSkyLight.length) { + return false; + } + return diffusesSkyLight[blockId]; + } + + @PowerNukkitOnly + @Since("FUTURE") + public static double hardness(int blockId) { + if (blockId < 0 || blockId >= light.length) { + return Double.MAX_VALUE; + } + return hardness[blockId]; + } + + @PowerNukkitOnly + @Since("FUTURE") + public static int light(int blockId) { + if (blockId < 0 || blockId >= light.length) { + return 0; + } + return light[blockId]; + } + + @PowerNukkitOnly + @Since("FUTURE") + public static int lightFilter(int blockId) { + if (blockId < 0 || blockId >= lightFilter.length) { + return 15; + } + return lightFilter[blockId]; + } + + @PowerNukkitOnly + @Since("FUTURE") + public static boolean isTransparent(int blockId) { + if (blockId < 0 || blockId >= transparent.length) { + return false; + } + return transparent[blockId]; + } + /** * Register a new block implementation overriding the existing one. * @param blockId The block ID that will be registered. Can't be negative. diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityBeacon.java b/src/main/java/cn/nukkit/blockentity/BlockEntityBeacon.java index a67d081da5f..718e6a4f019 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityBeacon.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityBeacon.java @@ -152,7 +152,7 @@ private boolean hasSkyAccess() { //Check every block from our y coord to the top of the world for (int y = tileY + 1; y <= 255; y++) { int testBlockId = level.getBlockIdAt(tileX, y, tileZ); - if (!Block.transparent[testBlockId]) { + if (!Block.isTransparent(testBlockId)) { //There is no sky access return false; } diff --git a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java index 4b1a1bb16dd..8010780454a 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java +++ b/src/main/java/cn/nukkit/blockstate/BlockStateRegistry.java @@ -505,7 +505,7 @@ public void copyBlockPaletteBytes(byte[] target, int targetIndex) { public BlockProperties getProperties(int blockId) { int fullId = blockId << Block.DATA_BITS; Block block; - if (fullId >= Block.fullList.length || (block = Block.fullList[fullId]) == null) { + if (fullId >= Block.fullList.length || fullId < 0 || (block = Block.fullList[fullId]) == null) { return BlockUnknown.PROPERTIES; } return block.getProperties(); diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 3f159ef29bf..740ac678054 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -1428,13 +1428,13 @@ protected boolean checkObstruction(double x, double y, double z) { double diffY = y - j; double diffZ = z - k; - if (!Block.transparent[this.level.getBlockIdAt(i, j, k)]) { - boolean flag = Block.transparent[this.level.getBlockIdAt(i - 1, j, k)]; - boolean flag1 = Block.transparent[this.level.getBlockIdAt(i + 1, j, k)]; - boolean flag2 = Block.transparent[this.level.getBlockIdAt(i, j - 1, k)]; - boolean flag3 = Block.transparent[this.level.getBlockIdAt(i, j + 1, k)]; - boolean flag4 = Block.transparent[this.level.getBlockIdAt(i, j, k - 1)]; - boolean flag5 = Block.transparent[this.level.getBlockIdAt(i, j, k + 1)]; + if (!Block.isTransparent(this.level.getBlockIdAt(i, j, k))) { + boolean flag = Block.isTransparent(this.level.getBlockIdAt(i - 1, j, k)); + boolean flag1 = Block.isTransparent(this.level.getBlockIdAt(i + 1, j, k)); + boolean flag2 = Block.isTransparent(this.level.getBlockIdAt(i, j - 1, k)); + boolean flag3 = Block.isTransparent(this.level.getBlockIdAt(i, j + 1, k)); + boolean flag4 = Block.isTransparent(this.level.getBlockIdAt(i, j, k - 1)); + boolean flag5 = Block.isTransparent(this.level.getBlockIdAt(i, j, k + 1)); int direction = -1; double limit = 9999; diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/SlotChangeAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/SlotChangeAction.java index d730248c740..92277d1fbd8 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/SlotChangeAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/SlotChangeAction.java @@ -4,7 +4,6 @@ import cn.nukkit.inventory.Inventory; import cn.nukkit.inventory.transaction.InventoryTransaction; import cn.nukkit.item.Item; -import lombok.ToString; import java.util.HashSet; import java.util.Set; @@ -12,7 +11,6 @@ /** * @author CreeperFace */ -@ToString(callSuper = true) public class SlotChangeAction extends InventoryAction { protected Inventory inventory; diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index d6b2bd78e8d..70587df11b6 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -1758,7 +1758,7 @@ public void updateBlockSkyLight(int x, int y, int z) { if (yPlusOne == oldHeightMap) { // Block changed directly beneath the heightmap. Check if a block was removed or changed to a different light-filter newHeightMap = chunk.recalculateHeightMapColumn(x & 0x0f, z & 0x0f); } else if (yPlusOne > oldHeightMap) { // Block changed above the heightmap - if (Block.lightFilter[sourceId] > 1 || Block.diffusesSkyLight[sourceId]) { + if (Block.lightFilter(sourceId) > 1 || Block.diffusesSkyLight(sourceId)) { chunk.setHeightMap(x & 0xf, y & 0xf, yPlusOne); newHeightMap = yPlusOne; } else { // Block changed which has no effect on direct sky light, for example placing or removing glass. @@ -1777,7 +1777,7 @@ public void updateBlockSkyLight(int x, int y, int z) { setBlockSkyLightAt(x, i, z, 15); } } else { // No heightmap change, block changed "underground" - setBlockSkyLightAt(x, y, z, Math.max(0, getHighestAdjacentBlockSkyLight(x, y, z) - Block.lightFilter[sourceId])); + setBlockSkyLightAt(x, y, z, Math.max(0, getHighestAdjacentBlockSkyLight(x, y, z) - Block.lightFilter(sourceId))); } } @@ -1881,7 +1881,7 @@ public void updateBlockLight(Map> map) { int z = Hash.hashBlockZ(node); int lightLevel = this.getBlockLightAt(x, y, z) - - Block.lightFilter[this.getBlockIdAt(x, y, z)]; + - Block.lightFilter(this.getBlockIdAt(x, y, z)); if (lightLevel >= 1) { this.computeSpreadBlockLight(x - 1, y, z, lightLevel, lightPropagationQueue, visited); diff --git a/src/main/java/cn/nukkit/level/format/anvil/Chunk.java b/src/main/java/cn/nukkit/level/format/anvil/Chunk.java index f18486b3de8..cec07cff45d 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/Chunk.java +++ b/src/main/java/cn/nukkit/level/format/anvil/Chunk.java @@ -453,7 +453,7 @@ public int getBlockSkyLight(int x, int y, int z) { if (height < y) { return 15; } else if (height == y) { - return Block.transparent[getBlockId(x, y, z)] ? 15 : 0; + return Block.isTransparent(getBlockId(x, y, z)) ? 15 : 0; } else { return section.getBlockSkyLight(x, y & 0x0f, z); } diff --git a/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java b/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java index 3549237b62e..5af8baeb7d8 100644 --- a/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java +++ b/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java @@ -269,7 +269,7 @@ public int recalculateHeightMapColumn(int x, int z) { int max = getHighestBlockAt(x, z, false); int y; for (y = max; y >= 0; --y) { - if (Block.lightFilter[getBlockIdAt(x, y, z)] > 1 || Block.diffusesSkyLight[getBlockIdAt(x, y, z)]) { + if (Block.lightFilter(getBlockIdAt(x, y, z)) > 1 || Block.diffusesSkyLight(getBlockIdAt(x, y, z))) { break; } } @@ -339,14 +339,14 @@ public void populateSkyLight() { // START of checks for the next block int id = this.getBlockId(x, y, z); - if (!Block.transparent[id]) { // if we encounter an opaque block, all the blocks under it will + if (!Block.isTransparent(id)) { // if we encounter an opaque block, all the blocks under it will // have a skylight value of 0 (the block itself has a value of 15, if it's a top-most block) nextLight = 0; - } else if (Block.diffusesSkyLight[id]) { + } else if (Block.diffusesSkyLight(id)) { nextDecrease += 1; // skylight value decreases by one for each block under a block // that diffuses skylight. The block itself has a value of 15 (if it's a top-most block) } else { - nextDecrease -= Block.lightFilter[id]; // blocks under a light filtering block will have a skylight value + nextDecrease -= Block.lightFilter(id); // blocks under a light filtering block will have a skylight value // decreased by the lightFilter value of that block. The block itself // has a value of 15 (if it's a top-most block) } diff --git a/src/main/java/cn/nukkit/level/generator/object/mushroom/BigMushroom.java b/src/main/java/cn/nukkit/level/generator/object/mushroom/BigMushroom.java index 7312d6b0143..44634bdd0bf 100644 --- a/src/main/java/cn/nukkit/level/generator/object/mushroom/BigMushroom.java +++ b/src/main/java/cn/nukkit/level/generator/object/mushroom/BigMushroom.java @@ -174,7 +174,7 @@ public boolean generate(ChunkManager level, NukkitRandom rand, Vector3 position) if (position.getY() >= position.getY() + i - 1 || meta != ALL_INSIDE) { Vector3 blockPos = new Vector3(l1, l2, i2); - if (!Block.solid[level.getBlockIdAt(blockPos.getFloorX(), blockPos.getFloorY(), blockPos.getFloorZ())]) { + if (!Block.isSolid(level.getBlockIdAt(blockPos.getFloorX(), blockPos.getFloorY(), blockPos.getFloorZ()))) { mushroom.setDamage(meta); this.setBlockAndNotifyAdequately(level, blockPos, mushroom); } @@ -187,7 +187,7 @@ public boolean generate(ChunkManager level, NukkitRandom rand, Vector3 position) Vector3 pos = position.up(i3); int id = level.getBlockIdAt(pos.getFloorX(), pos.getFloorY(), pos.getFloorZ()); - if (!Block.solid[id]) { + if (!Block.isSolid(id)) { mushroom.setDamage(STEM); this.setBlockAndNotifyAdequately(level, pos, mushroom); } diff --git a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectSpruceTree.java b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectSpruceTree.java index b8bf6aeac21..e1e798e8c3c 100644 --- a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectSpruceTree.java +++ b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectSpruceTree.java @@ -59,7 +59,7 @@ public void placeLeaves(ChunkManager level, int topSize, int lRadius, int x, int continue; } - if (!Block.solid[level.getBlockIdAt(xx, yyy, zz)]) { + if (!Block.isSolid(level.getBlockIdAt(xx, yyy, zz))) { level.setBlockAt(xx, yyy, zz, this.getLeafBlock(), this.getType()); } } diff --git a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectTree.java b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectTree.java index 0ec0f53eba7..f1046dd8d96 100644 --- a/src/main/java/cn/nukkit/level/generator/object/tree/ObjectTree.java +++ b/src/main/java/cn/nukkit/level/generator/object/tree/ObjectTree.java @@ -140,7 +140,7 @@ public void placeObject(ChunkManager level, int x, int y, int z, NukkitRandom ra if (xOff == mid && zOff == mid && (yOff == 0 || random.nextBoundedInt(2) == 0)) { continue; } - if (!Block.solid[level.getBlockIdAt(xx, yy, zz)]) { + if (!Block.isSolid(level.getBlockIdAt(xx, yy, zz))) { level.setBlockAt(xx, yy, zz, this.getLeafBlock(), this.getType()); } } diff --git a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorGroundFire.java b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorGroundFire.java index 9f40fffd531..0aa1b55ba7d 100644 --- a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorGroundFire.java +++ b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorGroundFire.java @@ -25,7 +25,7 @@ protected int getBlockId(int x, int z, NukkitRandom random, FullChunk chunk) { @Override protected void placeBlock(int x, int y, int z, int id, FullChunk chunk, NukkitRandom random) { super.placeBlock(x, y, z, id, chunk, random); - chunk.setBlockLight(x, y, z, Block.light[FIRE]); + chunk.setBlockLight(x, y, z, Block.light(FIRE)); } @Override diff --git a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorLava.java b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorLava.java index c2f954a9474..4563474d468 100644 --- a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorLava.java +++ b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorLava.java @@ -36,7 +36,7 @@ public void populate(ChunkManager level, int chunkX, int chunkZ, NukkitRandom ra int y = this.getHighestWorkableBlock(chunk, x, z); if (y != -1 && chunk.getBlockId(x, y, z) == Block.AIR) { chunk.setBlock(x, y, z, Block.LAVA); - chunk.setBlockLight(x, y, z, Block.light[Block.LAVA]); + chunk.setBlockLight(x, y, z, Block.light(Block.LAVA)); this.lavaSpread(bx + x, y, bz + z); } } diff --git a/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java b/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java index 65e2fdb701e..94688298035 100644 --- a/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java +++ b/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java @@ -51,6 +51,9 @@ public static void main(String[] args) { private static boolean isApi(CtModifiable obj) { + if (obj instanceof CtMethod && ((CtMethod) obj).getSimpleName().equals("canEqual") && obj.hasAnnotation(Generated.class)) { + return false; + } if (obj.isPublic() || obj.isProtected()) { return true; } @@ -69,10 +72,6 @@ private static boolean isApi(CtModifiable obj) { if (setter != null && setter.hasAnnotation(Generated.class)) { return isApi(setter); } - } else if (obj instanceof CtMethod && obj.hasAnnotation(Generated.class)) { - if (((CtMethod) obj).getSimpleName().equals("canEqual")) { - return false; - } } return false; } From cab97708d747f4d75c77f9a8cf933c8a05dae692 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 18:57:14 -0300 Subject: [PATCH 297/394] Add missing PowerNukkitOnly annotations --- dumps/needed-class-changes.json | 253 +----------------- src/main/java/cn/nukkit/block/Block.java | 23 +- .../java/cn/nukkit/block/BlockBanner.java | 1 + .../java/cn/nukkit/block/BlockBeacon.java | 3 +- src/main/java/cn/nukkit/block/BlockBed.java | 4 +- .../java/cn/nukkit/block/BlockBedrock.java | 3 +- .../nukkit/block/BlockBedrockInvisible.java | 3 +- .../java/cn/nukkit/block/BlockBorder.java | 3 +- .../java/cn/nukkit/block/BlockCactus.java | 4 +- src/main/java/cn/nukkit/block/BlockCake.java | 4 +- .../java/cn/nukkit/block/BlockCampfire.java | 4 +- .../cn/nukkit/block/BlockChorusFlower.java | 4 +- .../cn/nukkit/block/BlockChorusPlant.java | 5 +- src/main/java/cn/nukkit/block/BlockCocoa.java | 4 +- src/main/java/cn/nukkit/block/BlockDeny.java | 3 +- src/main/java/cn/nukkit/block/BlockDoor.java | 4 +- .../java/cn/nukkit/block/BlockDragonEgg.java | 4 +- .../cn/nukkit/block/BlockEndPortalFrame.java | 3 +- .../java/cn/nukkit/block/BlockEnderChest.java | 3 +- .../java/cn/nukkit/block/BlockFlowable.java | 5 +- .../java/cn/nukkit/block/BlockItemFrame.java | 4 +- .../java/cn/nukkit/block/BlockLadder.java | 4 +- .../java/cn/nukkit/block/BlockLeaves.java | 4 +- .../java/cn/nukkit/block/BlockLiquid.java | 4 +- .../java/cn/nukkit/block/BlockLodestone.java | 3 +- src/main/java/cn/nukkit/block/BlockMelon.java | 5 +- .../java/cn/nukkit/block/BlockMobSpawner.java | 3 +- .../java/cn/nukkit/block/BlockMoving.java | 3 +- .../java/cn/nukkit/block/BlockObsidian.java | 3 +- .../cn/nukkit/block/BlockObsidianCrying.java | 3 +- .../cn/nukkit/block/BlockObsidianGlowing.java | 3 +- .../java/cn/nukkit/block/BlockPistonHead.java | 3 +- .../java/cn/nukkit/block/BlockPumpkin.java | 4 +- src/main/java/cn/nukkit/block/BlockRail.java | 3 +- .../cn/nukkit/block/BlockRespawnAnchor.java | 3 +- .../java/cn/nukkit/block/BlockSignPost.java | 1 + src/main/java/cn/nukkit/block/BlockSkull.java | 4 +- .../java/cn/nukkit/block/BlockStructure.java | 3 +- .../cn/nukkit/block/BlockStructureVoid.java | 3 +- .../nukkit/block/BlockUndyedShulkerBox.java | 4 +- src/main/java/cn/nukkit/block/BlockVine.java | 4 +- .../cn/nukkit/block/BlockVinesNether.java | 4 +- 42 files changed, 125 insertions(+), 290 deletions(-) diff --git a/dumps/needed-class-changes.json b/dumps/needed-class-changes.json index 1e4ae6fa016..2ec1613e128 100644 --- a/dumps/needed-class-changes.json +++ b/dumps/needed-class-changes.json @@ -1,67 +1,4 @@ { - "cn.nukkit.Nukkit": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.Nukkit#GIT_COMMIT" - ] - }, - "cn.nukkit.Player": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.Player#addExperience(int, boolean)", - "cn.nukkit.Player#onBlock(Entity, boolean)", - "cn.nukkit.Player#setExperience(int, int, boolean)", - "cn.nukkit.Player#(SourceInterface, Long, String, int)" - ] - }, - "cn.nukkit.Server": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.Server#getGitCommit()", - "cn.nukkit.Server#isRedstoneEnabled()", - "cn.nukkit.Server#setRedstoneEnabled(boolean)" - ] - }, - "cn.nukkit.api.DeprecationDetails": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.api.DeprecationDetails#by()", - "cn.nukkit.api.DeprecationDetails#reason()", - "cn.nukkit.api.DeprecationDetails#replaceWith()", - "cn.nukkit.api.DeprecationDetails#since()", - "cn.nukkit.api.DeprecationDetails#toBeRemovedAt()" - ] - }, - "cn.nukkit.api.PowerNukkitOnly": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.api.PowerNukkitOnly#value()" - ] - }, - "cn.nukkit.api.Since": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.api.Since#value()" - ] - }, - "cn.nukkit.block.Block": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.Block#diffusesSkyLight", - "cn.nukkit.block.Block#asItemBlock()", - "cn.nukkit.block.Block#breaksWhenMoved()", - "cn.nukkit.block.Block#canBePulled()", - "cn.nukkit.block.Block#canWaterloggingFlowInto()", - "cn.nukkit.block.Block#down(int, int)", - "cn.nukkit.block.Block#east(int, int)", - "cn.nukkit.block.Block#firstInLayers(int, Predicate)", - "cn.nukkit.block.Block#firstInLayers(Predicate)", - "cn.nukkit.block.Block#get(int, Level, int, int, int, int)", - "cn.nukkit.block.Block#get(int, Integer, Position, int)", - "cn.nukkit.block.Block#getBlock()", - "cn.nukkit.block.Block#getItemId()", - "cn.nukkit.block.Block#getSideAtLayer(int, BlockFace)", - "cn.nukkit.block.Block#getSideAtLayer(int, BlockFace, int)", - "cn.nukkit.block.Block#north(int, int)", - "cn.nukkit.block.Block#south(int, int)", - "cn.nukkit.block.Block#sticksToPiston()", - "cn.nukkit.block.Block#up(int, int)", - "cn.nukkit.block.Block#west(int, int)" - ] - }, "cn.nukkit.block.BlockAllow": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockAllow#canBePulled()" @@ -72,37 +9,11 @@ "cn.nukkit.block.BlockAnvil#getToolTier()" ] }, - "cn.nukkit.block.BlockBanner": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBanner#breaksWhenMoved()" - ] - }, "cn.nukkit.block.BlockBasalt": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockBasalt#getToolTier()" ] }, - "cn.nukkit.block.BlockBeacon": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBeacon#canBePulled()" - ] - }, - "cn.nukkit.block.BlockBed": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBed#breaksWhenMoved()", - "cn.nukkit.block.BlockBed#sticksToPiston()" - ] - }, - "cn.nukkit.block.BlockBedrock": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBedrock#canBePulled()" - ] - }, - "cn.nukkit.block.BlockBedrockInvisible": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBedrockInvisible#canBePulled()" - ] - }, "cn.nukkit.block.BlockBell": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockBell#getAttachmentType()", @@ -110,11 +21,6 @@ "cn.nukkit.block.BlockBell#setAttachmentType(int)" ] }, - "cn.nukkit.block.BlockBorder": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBorder#canBePulled()" - ] - }, "cn.nukkit.block.BlockBrewingStand": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockBrewingStand#getToolTier()" @@ -150,24 +56,6 @@ "cn.nukkit.block.BlockButtonStone#getToolTier()" ] }, - "cn.nukkit.block.BlockCactus": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCactus#breaksWhenMoved()", - "cn.nukkit.block.BlockCactus#sticksToPiston()" - ] - }, - "cn.nukkit.block.BlockCake": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCake#breaksWhenMoved()", - "cn.nukkit.block.BlockCake#sticksToPiston()" - ] - }, - "cn.nukkit.block.BlockCampfire": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCampfire#breaksWhenMoved()", - "cn.nukkit.block.BlockCampfire#canBePulled()" - ] - }, "cn.nukkit.block.BlockCarpet": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockCarpet#getProperties()" @@ -190,18 +78,6 @@ "cn.nukkit.block.BlockCauldronLava#setFillLevel(int)" ] }, - "cn.nukkit.block.BlockChorusFlower": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockChorusFlower#breaksWhenMoved()", - "cn.nukkit.block.BlockChorusFlower#sticksToPiston()" - ] - }, - "cn.nukkit.block.BlockChorusPlant": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockChorusPlant#breaksWhenMoved()", - "cn.nukkit.block.BlockChorusPlant#sticksToPiston()" - ] - }, "cn.nukkit.block.BlockCoal": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockCoal#getToolTier()" @@ -214,10 +90,8 @@ }, "cn.nukkit.block.BlockCocoa": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCocoa#breaksWhenMoved()", "cn.nukkit.block.BlockCocoa#getGrowthStage()", - "cn.nukkit.block.BlockCocoa#grow()", - "cn.nukkit.block.BlockCocoa#sticksToPiston()" + "cn.nukkit.block.BlockCocoa#grow()" ] }, "cn.nukkit.block.BlockConcrete": { @@ -263,11 +137,6 @@ "cn.nukkit.block.BlockDaylightDetectorInverted#isInverted()" ] }, - "cn.nukkit.block.BlockDeny": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDeny#canBePulled()" - ] - }, "cn.nukkit.block.BlockDiamond": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockDiamond#getToolTier()" @@ -282,9 +151,7 @@ }, "cn.nukkit.block.BlockDoor": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoor#PROPERTIES", - "cn.nukkit.block.BlockDoor#breaksWhenMoved()", - "cn.nukkit.block.BlockDoor#sticksToPiston()" + "cn.nukkit.block.BlockDoor#PROPERTIES" ] }, "cn.nukkit.block.BlockDoorIron": { @@ -359,12 +226,6 @@ "cn.nukkit.block.BlockDoubleSlabWood#isCorrectTool(Item)" ] }, - "cn.nukkit.block.BlockDragonEgg": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDragonEgg#breaksWhenMoved()", - "cn.nukkit.block.BlockDragonEgg#sticksToPiston()" - ] - }, "cn.nukkit.block.BlockDropper": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockDropper#dispense()", @@ -382,11 +243,6 @@ "cn.nukkit.block.BlockEnchantingTable#getToolTier()" ] }, - "cn.nukkit.block.BlockEndPortalFrame": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEndPortalFrame#canBePulled()" - ] - }, "cn.nukkit.block.BlockEndStone": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockEndStone#getToolTier()" @@ -394,7 +250,6 @@ }, "cn.nukkit.block.BlockEnderChest": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEnderChest#canBePulled()", "cn.nukkit.block.BlockEnderChest#getBlockEntity()", "cn.nukkit.block.BlockEnderChest#getToolTier()" ] @@ -420,12 +275,6 @@ "cn.nukkit.block.BlockFenceNetherBrick#getToolTier()" ] }, - "cn.nukkit.block.BlockFlowable": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFlowable#breaksWhenMoved()", - "cn.nukkit.block.BlockFlowable#sticksToPiston()" - ] - }, "cn.nukkit.block.BlockFlower": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockFlower#canPlantOn(Block)" @@ -488,18 +337,6 @@ "cn.nukkit.block.BlockIronBars#getToolTier()" ] }, - "cn.nukkit.block.BlockItemFrame": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockItemFrame#breaksWhenMoved()", - "cn.nukkit.block.BlockItemFrame#sticksToPiston()" - ] - }, - "cn.nukkit.block.BlockLadder": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLadder#breaksWhenMoved()", - "cn.nukkit.block.BlockLadder#sticksToPiston()" - ] - }, "cn.nukkit.block.BlockLantern": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockLantern#getToolTier()" @@ -510,12 +347,6 @@ "cn.nukkit.block.BlockLapis#getToolTier()" ] }, - "cn.nukkit.block.BlockLeaves": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLeaves#breaksWhenMoved()", - "cn.nukkit.block.BlockLeaves#sticksToPiston()" - ] - }, "cn.nukkit.block.BlockLeaves2": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockLeaves2#getType()", @@ -529,25 +360,11 @@ }, "cn.nukkit.block.BlockLiquid": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLiquid#breaksWhenMoved()", - "cn.nukkit.block.BlockLiquid#sticksToPiston()", "cn.nukkit.block.BlockLiquid#usesWaterLogging()" ] }, - "cn.nukkit.block.BlockLodestone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLodestone#sticksToPiston()" - ] - }, - "cn.nukkit.block.BlockMelon": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockMelon#breaksWhenMoved()", - "cn.nukkit.block.BlockMelon#sticksToPiston()" - ] - }, "cn.nukkit.block.BlockMobSpawner": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockMobSpawner#canBePulled()", "cn.nukkit.block.BlockMobSpawner#getToolTier()" ] }, @@ -556,11 +373,6 @@ "cn.nukkit.block.BlockMossStone#getToolTier()" ] }, - "cn.nukkit.block.BlockMoving": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockMoving#canBePulled()" - ] - }, "cn.nukkit.block.BlockMushroom": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockMushroom#getToolTier()" @@ -578,20 +390,9 @@ }, "cn.nukkit.block.BlockObsidian": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockObsidian#canBePulled()", "cn.nukkit.block.BlockObsidian#getToolTier()" ] }, - "cn.nukkit.block.BlockObsidianCrying": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockObsidianCrying#canBePulled()" - ] - }, - "cn.nukkit.block.BlockObsidianGlowing": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockObsidianGlowing#canBePulled()" - ] - }, "cn.nukkit.block.BlockOreCoal": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockOreCoal#getToolTier()" @@ -646,7 +447,6 @@ }, "cn.nukkit.block.BlockPistonHead": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPistonHead#canBePulled()", "cn.nukkit.block.BlockPistonHead#getBlockFace()" ] }, @@ -667,10 +467,8 @@ }, "cn.nukkit.block.BlockPumpkin": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPumpkin#breaksWhenMoved()", "cn.nukkit.block.BlockPumpkin#getProperties()", - "cn.nukkit.block.BlockPumpkin#setBlockFace(BlockFace)", - "cn.nukkit.block.BlockPumpkin#sticksToPiston()" + "cn.nukkit.block.BlockPumpkin#setBlockFace(BlockFace)" ] }, "cn.nukkit.block.BlockQuartz": { @@ -678,11 +476,6 @@ "cn.nukkit.block.BlockQuartz#getToolTier()" ] }, - "cn.nukkit.block.BlockRail": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockRail#canBePulled()" - ] - }, "cn.nukkit.block.BlockRedstone": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockRedstone#getToolTier()" @@ -700,7 +493,6 @@ }, "cn.nukkit.block.BlockRespawnAnchor": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockRespawnAnchor#canBePulled()", "cn.nukkit.block.BlockRespawnAnchor#()" ] }, @@ -715,17 +507,6 @@ "cn.nukkit.block.BlockScaffolding#createFallingEntity(CompoundTag)" ] }, - "cn.nukkit.block.BlockSignPost": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSignPost#breaksWhenMoved()" - ] - }, - "cn.nukkit.block.BlockSkull": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSkull#breaksWhenMoved()", - "cn.nukkit.block.BlockSkull#sticksToPiston()" - ] - }, "cn.nukkit.block.BlockSlabBlackstone": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockSlabBlackstone#getSlabName()", @@ -960,16 +741,6 @@ "cn.nukkit.block.BlockStonecutter#getToolTier()" ] }, - "cn.nukkit.block.BlockStructure": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStructure#canBePulled()" - ] - }, - "cn.nukkit.block.BlockStructureVoid": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStructureVoid#canBePulled()" - ] - }, "cn.nukkit.block.BlockTerracotta": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockTerracotta#getToolTier()" @@ -985,24 +756,6 @@ "cn.nukkit.block.BlockTrapdoorIron#getToolTier()" ] }, - "cn.nukkit.block.BlockUndyedShulkerBox": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockUndyedShulkerBox#breaksWhenMoved()", - "cn.nukkit.block.BlockUndyedShulkerBox#sticksToPiston()" - ] - }, - "cn.nukkit.block.BlockVine": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockVine#breaksWhenMoved()", - "cn.nukkit.block.BlockVine#sticksToPiston()" - ] - }, - "cn.nukkit.block.BlockVinesNether": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockVinesNether#breaksWhenMoved()", - "cn.nukkit.block.BlockVinesNether#sticksToPiston()" - ] - }, "cn.nukkit.block.BlockWall": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockWall#getToolTier()" diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index 794ad88c668..ec1b1afd75d 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -697,6 +697,7 @@ public static Block get(int id, Integer meta, Position pos) { return get(id, meta, pos, 0); } + @PowerNukkitOnly @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", replaceWith = "BlockState.getBlock()", since = "1.4.0.0-PN") @SuppressWarnings("unchecked") @@ -744,6 +745,7 @@ public static Block get(int fullId, Level level, int x, int y, int z) { return get(fullId, level, x, y, z, 0); } + @PowerNukkitOnly @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.3.0.0-PN") public static Block get(int fullId, Level level, int x, int y, int z, int layer) { @@ -1104,6 +1106,7 @@ public int getWaterloggingLevel() { return 0; } + @PowerNukkitOnly public final boolean canWaterloggingFlowInto() { return canBeFlowedInto() || getWaterloggingLevel() > 1; } @@ -1124,14 +1127,17 @@ public boolean canBePushed() { return true; } + @PowerNukkitOnly public boolean canBePulled() { return true; } + @PowerNukkitOnly public boolean breaksWhenMoved() { return false; } + @PowerNukkitOnly public boolean sticksToPiston() { return true; } @@ -1166,6 +1172,7 @@ public BlockColor getColor() { public abstract int getId(); + @PowerNukkitOnly public int getItemId() { int id = getId(); if (id > 255) { @@ -1527,6 +1534,7 @@ public Block getSide(BlockFace face, int step) { return getSideAtLayer(layer, face, step); } + @PowerNukkitOnly public Block getSideAtLayer(int layer, BlockFace face) { if (this.isValid()) { return this.getLevel().getBlock((int) x + face.getXOffset(), (int) y + face.getYOffset(), (int) z + face.getZOffset(), layer); @@ -1534,6 +1542,7 @@ public Block getSideAtLayer(int layer, BlockFace face) { return this.getSide(face, 1); } + @PowerNukkitOnly public Block getSideAtLayer(int layer, BlockFace face, int step) { if (this.isValid()) { if (step == 1) { @@ -1560,6 +1569,7 @@ public Block up(int step) { return getSide(BlockFace.UP, step); } + @PowerNukkitOnly public Block up(int step, int layer) { return getSideAtLayer(layer, BlockFace.UP, step); } @@ -1574,6 +1584,7 @@ public Block down(int step) { return getSide(BlockFace.DOWN, step); } + @PowerNukkitOnly public Block down(int step, int layer) { return getSideAtLayer(layer, BlockFace.DOWN, step); } @@ -1588,6 +1599,7 @@ public Block north(int step) { return getSide(BlockFace.NORTH, step); } + @PowerNukkitOnly public Block north(int step, int layer) { return getSideAtLayer(layer, BlockFace.NORTH, step); } @@ -1602,6 +1614,7 @@ public Block south(int step) { return getSide(BlockFace.SOUTH, step); } + @PowerNukkitOnly public Block south(int step, int layer) { return getSideAtLayer(layer, BlockFace.SOUTH, step); } @@ -1616,6 +1629,7 @@ public Block east(int step) { return getSide(BlockFace.EAST, step); } + @PowerNukkitOnly public Block east(int step, int layer) { return getSideAtLayer(layer, BlockFace.EAST, step); } @@ -1630,6 +1644,7 @@ public Block west(int step) { return getSide(BlockFace.WEST, step); } + @PowerNukkitOnly public Block west(int step, int layer) { return getSideAtLayer(layer, BlockFace.WEST, step); } @@ -1963,6 +1978,7 @@ public boolean isLavaResistant() { @Nonnull @Override + @PowerNukkitOnly public final ItemBlock asItemBlock() { return asItemBlock(1); } @@ -1982,11 +1998,13 @@ public boolean mustSilkTouch(Vector3 vector, int layer, BlockFace face, Item ite public boolean mustDrop(Vector3 vector, int layer, BlockFace face, Item item, Player player) { return false; } - + + @PowerNukkitOnly public Optional firstInLayers(Predicate condition) { return firstInLayers(0, condition); } - + + @PowerNukkitOnly public Optional firstInLayers(int startingLayer, Predicate condition) { int maximumLayer = this.level.requireProvider().getMaximumLayer(); for (int layer = startingLayer; layer <= maximumLayer; layer++) { @@ -2233,6 +2251,7 @@ public boolean onProjectileHit(@Nonnull Entity projectile, @Nonnull Position pos return false; } + @PowerNukkitOnly @Nonnull @Override public final Block getBlock() { diff --git a/src/main/java/cn/nukkit/block/BlockBanner.java b/src/main/java/cn/nukkit/block/BlockBanner.java index 668f5c64fd9..9613fd8db2d 100644 --- a/src/main/java/cn/nukkit/block/BlockBanner.java +++ b/src/main/java/cn/nukkit/block/BlockBanner.java @@ -214,6 +214,7 @@ public void setBlockFace(BlockFace face) { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } diff --git a/src/main/java/cn/nukkit/block/BlockBeacon.java b/src/main/java/cn/nukkit/block/BlockBeacon.java index 7bc9ae6a372..8e596ef6c40 100644 --- a/src/main/java/cn/nukkit/block/BlockBeacon.java +++ b/src/main/java/cn/nukkit/block/BlockBeacon.java @@ -109,7 +109,8 @@ public BlockColor getColor() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } } diff --git a/src/main/java/cn/nukkit/block/BlockBed.java b/src/main/java/cn/nukkit/block/BlockBed.java index d6f9b620117..d7dfdb1b750 100644 --- a/src/main/java/cn/nukkit/block/BlockBed.java +++ b/src/main/java/cn/nukkit/block/BlockBed.java @@ -352,12 +352,14 @@ public void setOccupied(boolean occupied) { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockBedrock.java b/src/main/java/cn/nukkit/block/BlockBedrock.java index d9cd32de276..34a6551dcd8 100644 --- a/src/main/java/cn/nukkit/block/BlockBedrock.java +++ b/src/main/java/cn/nukkit/block/BlockBedrock.java @@ -84,7 +84,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockBedrockInvisible.java b/src/main/java/cn/nukkit/block/BlockBedrockInvisible.java index 50405e78991..f37b962a0b2 100644 --- a/src/main/java/cn/nukkit/block/BlockBedrockInvisible.java +++ b/src/main/java/cn/nukkit/block/BlockBedrockInvisible.java @@ -61,7 +61,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockBorder.java b/src/main/java/cn/nukkit/block/BlockBorder.java index ac755d4a2ce..a268ce1632b 100644 --- a/src/main/java/cn/nukkit/block/BlockBorder.java +++ b/src/main/java/cn/nukkit/block/BlockBorder.java @@ -59,7 +59,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockCactus.java b/src/main/java/cn/nukkit/block/BlockCactus.java index 10342ddd827..60ec57e5e9d 100644 --- a/src/main/java/cn/nukkit/block/BlockCactus.java +++ b/src/main/java/cn/nukkit/block/BlockCactus.java @@ -185,12 +185,14 @@ public Item[] getDrops(Item item) { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } } diff --git a/src/main/java/cn/nukkit/block/BlockCake.java b/src/main/java/cn/nukkit/block/BlockCake.java index ae7dc59fd43..5e1e55d386b 100644 --- a/src/main/java/cn/nukkit/block/BlockCake.java +++ b/src/main/java/cn/nukkit/block/BlockCake.java @@ -169,12 +169,14 @@ public boolean hasComparatorInputOverride() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } } diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index 25ada87fa7d..3827fa0b155 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -351,12 +351,14 @@ public int getComparatorInputOverride() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockChorusFlower.java b/src/main/java/cn/nukkit/block/BlockChorusFlower.java index 3ed2155ebec..6eacf1e2ae0 100644 --- a/src/main/java/cn/nukkit/block/BlockChorusFlower.java +++ b/src/main/java/cn/nukkit/block/BlockChorusFlower.java @@ -117,12 +117,14 @@ public Item[] getDrops(Item item) { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } } diff --git a/src/main/java/cn/nukkit/block/BlockChorusPlant.java b/src/main/java/cn/nukkit/block/BlockChorusPlant.java index daaba2d4291..05d8be61178 100644 --- a/src/main/java/cn/nukkit/block/BlockChorusPlant.java +++ b/src/main/java/cn/nukkit/block/BlockChorusPlant.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; import cn.nukkit.item.ItemTool; @@ -102,12 +103,14 @@ public Item[] getDrops(Item item) { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockCocoa.java b/src/main/java/cn/nukkit/block/BlockCocoa.java index 9b8f83c316d..04d8faae491 100644 --- a/src/main/java/cn/nukkit/block/BlockCocoa.java +++ b/src/main/java/cn/nukkit/block/BlockCocoa.java @@ -263,12 +263,14 @@ public BlockFace getBlockFace() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } } diff --git a/src/main/java/cn/nukkit/block/BlockDeny.java b/src/main/java/cn/nukkit/block/BlockDeny.java index d608bb0e412..d84f66f4756 100644 --- a/src/main/java/cn/nukkit/block/BlockDeny.java +++ b/src/main/java/cn/nukkit/block/BlockDeny.java @@ -52,7 +52,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockDoor.java b/src/main/java/cn/nukkit/block/BlockDoor.java index e1f585c1985..4c719990843 100644 --- a/src/main/java/cn/nukkit/block/BlockDoor.java +++ b/src/main/java/cn/nukkit/block/BlockDoor.java @@ -452,12 +452,14 @@ public void setBlockFace(BlockFace face) { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } } diff --git a/src/main/java/cn/nukkit/block/BlockDragonEgg.java b/src/main/java/cn/nukkit/block/BlockDragonEgg.java index 1601a956089..5ec1a2630ef 100644 --- a/src/main/java/cn/nukkit/block/BlockDragonEgg.java +++ b/src/main/java/cn/nukkit/block/BlockDragonEgg.java @@ -112,12 +112,14 @@ public void teleport() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } } diff --git a/src/main/java/cn/nukkit/block/BlockEndPortalFrame.java b/src/main/java/cn/nukkit/block/BlockEndPortalFrame.java index 634eb2dd640..63abf9aec66 100644 --- a/src/main/java/cn/nukkit/block/BlockEndPortalFrame.java +++ b/src/main/java/cn/nukkit/block/BlockEndPortalFrame.java @@ -100,7 +100,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockEnderChest.java b/src/main/java/cn/nukkit/block/BlockEnderChest.java index f929a9b0315..62fb166100d 100644 --- a/src/main/java/cn/nukkit/block/BlockEnderChest.java +++ b/src/main/java/cn/nukkit/block/BlockEnderChest.java @@ -205,7 +205,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockFlowable.java b/src/main/java/cn/nukkit/block/BlockFlowable.java index 3beacce47a4..7e80bfcc0fd 100644 --- a/src/main/java/cn/nukkit/block/BlockFlowable.java +++ b/src/main/java/cn/nukkit/block/BlockFlowable.java @@ -1,5 +1,6 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.math.AxisAlignedBB; /** @@ -37,12 +38,14 @@ public boolean isSolid() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockItemFrame.java b/src/main/java/cn/nukkit/block/BlockItemFrame.java index cd942892916..17760a38532 100644 --- a/src/main/java/cn/nukkit/block/BlockItemFrame.java +++ b/src/main/java/cn/nukkit/block/BlockItemFrame.java @@ -281,12 +281,14 @@ public double getHardness() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockLadder.java b/src/main/java/cn/nukkit/block/BlockLadder.java index 184a22b611f..7ca1c24508f 100644 --- a/src/main/java/cn/nukkit/block/BlockLadder.java +++ b/src/main/java/cn/nukkit/block/BlockLadder.java @@ -233,12 +233,14 @@ public BlockFace getBlockFace() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } } diff --git a/src/main/java/cn/nukkit/block/BlockLeaves.java b/src/main/java/cn/nukkit/block/BlockLeaves.java index a153a593225..d9f6020efb9 100644 --- a/src/main/java/cn/nukkit/block/BlockLeaves.java +++ b/src/main/java/cn/nukkit/block/BlockLeaves.java @@ -281,12 +281,14 @@ public boolean diffusesSkyLight() { @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } } diff --git a/src/main/java/cn/nukkit/block/BlockLiquid.java b/src/main/java/cn/nukkit/block/BlockLiquid.java index 73a92b5c978..847acd710c0 100644 --- a/src/main/java/cn/nukkit/block/BlockLiquid.java +++ b/src/main/java/cn/nukkit/block/BlockLiquid.java @@ -528,12 +528,14 @@ public Item toItem() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockLodestone.java b/src/main/java/cn/nukkit/block/BlockLodestone.java index ee0f25503f7..25b3bd969c5 100644 --- a/src/main/java/cn/nukkit/block/BlockLodestone.java +++ b/src/main/java/cn/nukkit/block/BlockLodestone.java @@ -148,7 +148,8 @@ public BlockColor getColor() { } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockMelon.java b/src/main/java/cn/nukkit/block/BlockMelon.java index bd44818b9f6..903a66dcd18 100644 --- a/src/main/java/cn/nukkit/block/BlockMelon.java +++ b/src/main/java/cn/nukkit/block/BlockMelon.java @@ -1,5 +1,6 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import cn.nukkit.item.ItemMelon; import cn.nukkit.item.ItemTool; @@ -69,12 +70,14 @@ public boolean canSilkTouch() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } } diff --git a/src/main/java/cn/nukkit/block/BlockMobSpawner.java b/src/main/java/cn/nukkit/block/BlockMobSpawner.java index e01f3a5af07..45381aa40da 100644 --- a/src/main/java/cn/nukkit/block/BlockMobSpawner.java +++ b/src/main/java/cn/nukkit/block/BlockMobSpawner.java @@ -60,7 +60,8 @@ public int getWaterloggingLevel() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockMoving.java b/src/main/java/cn/nukkit/block/BlockMoving.java index 0b81d228bd7..16729390be8 100644 --- a/src/main/java/cn/nukkit/block/BlockMoving.java +++ b/src/main/java/cn/nukkit/block/BlockMoving.java @@ -61,7 +61,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockObsidian.java b/src/main/java/cn/nukkit/block/BlockObsidian.java index 2005814b35e..1d515db389c 100644 --- a/src/main/java/cn/nukkit/block/BlockObsidian.java +++ b/src/main/java/cn/nukkit/block/BlockObsidian.java @@ -81,7 +81,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockObsidianCrying.java b/src/main/java/cn/nukkit/block/BlockObsidianCrying.java index 2ec6a755aff..4e6995e0a5d 100644 --- a/src/main/java/cn/nukkit/block/BlockObsidianCrying.java +++ b/src/main/java/cn/nukkit/block/BlockObsidianCrying.java @@ -61,7 +61,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockObsidianGlowing.java b/src/main/java/cn/nukkit/block/BlockObsidianGlowing.java index 2536774520a..12124d36e2f 100644 --- a/src/main/java/cn/nukkit/block/BlockObsidianGlowing.java +++ b/src/main/java/cn/nukkit/block/BlockObsidianGlowing.java @@ -74,7 +74,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockPistonHead.java b/src/main/java/cn/nukkit/block/BlockPistonHead.java index 3e5c41fba76..f09c8a24219 100644 --- a/src/main/java/cn/nukkit/block/BlockPistonHead.java +++ b/src/main/java/cn/nukkit/block/BlockPistonHead.java @@ -89,7 +89,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockPumpkin.java b/src/main/java/cn/nukkit/block/BlockPumpkin.java index c2026ece48f..19c59e64005 100644 --- a/src/main/java/cn/nukkit/block/BlockPumpkin.java +++ b/src/main/java/cn/nukkit/block/BlockPumpkin.java @@ -111,12 +111,14 @@ public BlockColor getColor() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockRail.java b/src/main/java/cn/nukkit/block/BlockRail.java index 7cd0446ac2b..206f2efd80d 100644 --- a/src/main/java/cn/nukkit/block/BlockRail.java +++ b/src/main/java/cn/nukkit/block/BlockRail.java @@ -386,7 +386,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return true; } } diff --git a/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java b/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java index 041c985a5e4..e0efb49c22c 100644 --- a/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java +++ b/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java @@ -209,7 +209,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockSignPost.java b/src/main/java/cn/nukkit/block/BlockSignPost.java index f8a375c64c3..d8cce0d0b5e 100644 --- a/src/main/java/cn/nukkit/block/BlockSignPost.java +++ b/src/main/java/cn/nukkit/block/BlockSignPost.java @@ -235,6 +235,7 @@ public void setBlockFace(BlockFace face) { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } diff --git a/src/main/java/cn/nukkit/block/BlockSkull.java b/src/main/java/cn/nukkit/block/BlockSkull.java index 7d8609b035d..f8d06fbc165 100644 --- a/src/main/java/cn/nukkit/block/BlockSkull.java +++ b/src/main/java/cn/nukkit/block/BlockSkull.java @@ -204,12 +204,14 @@ public BlockColor getColor() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } } diff --git a/src/main/java/cn/nukkit/block/BlockStructure.java b/src/main/java/cn/nukkit/block/BlockStructure.java index ce24caa2d9a..1545c8521c4 100644 --- a/src/main/java/cn/nukkit/block/BlockStructure.java +++ b/src/main/java/cn/nukkit/block/BlockStructure.java @@ -122,7 +122,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockStructureVoid.java b/src/main/java/cn/nukkit/block/BlockStructureVoid.java index b56728606c7..b910bee63c6 100644 --- a/src/main/java/cn/nukkit/block/BlockStructureVoid.java +++ b/src/main/java/cn/nukkit/block/BlockStructureVoid.java @@ -101,7 +101,8 @@ public boolean canBePushed() { } @Override - public boolean canBePulled() { + @PowerNukkitOnly + public boolean canBePulled() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockUndyedShulkerBox.java b/src/main/java/cn/nukkit/block/BlockUndyedShulkerBox.java index afa510322dd..d80dfe06f2b 100644 --- a/src/main/java/cn/nukkit/block/BlockUndyedShulkerBox.java +++ b/src/main/java/cn/nukkit/block/BlockUndyedShulkerBox.java @@ -198,12 +198,14 @@ public BlockColor getColor() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockVine.java b/src/main/java/cn/nukkit/block/BlockVine.java index bdcb679faed..95cab4b1026 100644 --- a/src/main/java/cn/nukkit/block/BlockVine.java +++ b/src/main/java/cn/nukkit/block/BlockVine.java @@ -388,12 +388,14 @@ public BlockColor getColor() { } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockVinesNether.java b/src/main/java/cn/nukkit/block/BlockVinesNether.java index fe1ad20e609..53563a33e9e 100644 --- a/src/main/java/cn/nukkit/block/BlockVinesNether.java +++ b/src/main/java/cn/nukkit/block/BlockVinesNether.java @@ -428,11 +428,13 @@ public boolean canPassThrough() { } @Override - public boolean sticksToPiston() { + @PowerNukkitOnly + public boolean sticksToPiston() { return false; } @Override + @PowerNukkitOnly public boolean breaksWhenMoved() { return true; } From 9e5945a09fd58a53fd83603c3922a6fa6f5df348 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 19:03:02 -0300 Subject: [PATCH 298/394] Add missing PowerNukkitOnly annotations --- dumps/needed-class-changes.json | 420 +----------------- src/main/java/cn/nukkit/block/BlockAllow.java | 1 + src/main/java/cn/nukkit/block/BlockAnvil.java | 1 + .../java/cn/nukkit/block/BlockBasalt.java | 1 + src/main/java/cn/nukkit/block/BlockBell.java | 1 + .../cn/nukkit/block/BlockBrewingStand.java | 1 + .../java/cn/nukkit/block/BlockBricks.java | 3 + .../cn/nukkit/block/BlockBricksEndStone.java | 4 +- .../cn/nukkit/block/BlockBricksNether.java | 4 +- .../cn/nukkit/block/BlockBricksRedNether.java | 3 + .../cn/nukkit/block/BlockBricksStone.java | 1 + .../cn/nukkit/block/BlockButtonStone.java | 2 + .../java/cn/nukkit/block/BlockCauldron.java | 1 + src/main/java/cn/nukkit/block/BlockCoal.java | 3 + .../cn/nukkit/block/BlockCobblestone.java | 2 + .../java/cn/nukkit/block/BlockConcrete.java | 1 + .../java/cn/nukkit/block/BlockDiamond.java | 2 + .../java/cn/nukkit/block/BlockDispenser.java | 1 + .../java/cn/nukkit/block/BlockDoorIron.java | 2 + .../block/BlockDoubleSlabRedSandstone.java | 1 + .../cn/nukkit/block/BlockDoubleSlabStone.java | 1 + .../nukkit/block/BlockDoubleSlabStone3.java | 1 + .../nukkit/block/BlockDoubleSlabStone4.java | 1 + .../java/cn/nukkit/block/BlockDropper.java | 1 + .../java/cn/nukkit/block/BlockEmerald.java | 2 + .../cn/nukkit/block/BlockEnchantingTable.java | 1 + .../java/cn/nukkit/block/BlockEndStone.java | 4 +- .../java/cn/nukkit/block/BlockEnderChest.java | 1 + .../nukkit/block/BlockFenceNetherBrick.java | 3 +- .../cn/nukkit/block/BlockFurnaceBurning.java | 1 + src/main/java/cn/nukkit/block/BlockGold.java | 2 + .../java/cn/nukkit/block/BlockGrindstone.java | 1 + .../java/cn/nukkit/block/BlockHopper.java | 1 + src/main/java/cn/nukkit/block/BlockIron.java | 2 + .../java/cn/nukkit/block/BlockIronBars.java | 1 + .../java/cn/nukkit/block/BlockLantern.java | 1 + src/main/java/cn/nukkit/block/BlockLapis.java | 2 + .../java/cn/nukkit/block/BlockMobSpawner.java | 1 + .../java/cn/nukkit/block/BlockMossStone.java | 3 +- .../java/cn/nukkit/block/BlockMushroom.java | 1 + .../java/cn/nukkit/block/BlockNetherrack.java | 2 + .../java/cn/nukkit/block/BlockObserver.java | 1 + .../java/cn/nukkit/block/BlockObsidian.java | 1 + .../java/cn/nukkit/block/BlockOreCoal.java | 2 + .../java/cn/nukkit/block/BlockOreDiamond.java | 3 + .../java/cn/nukkit/block/BlockOreEmerald.java | 2 + .../java/cn/nukkit/block/BlockOreGold.java | 4 +- .../java/cn/nukkit/block/BlockOreIron.java | 3 +- .../java/cn/nukkit/block/BlockOreLapis.java | 3 + .../java/cn/nukkit/block/BlockOreQuartz.java | 3 + .../cn/nukkit/block/BlockOreRedstone.java | 3 + .../nukkit/block/BlockPressurePlateStone.java | 4 +- .../java/cn/nukkit/block/BlockPrismarine.java | 1 + .../java/cn/nukkit/block/BlockQuartz.java | 1 + .../java/cn/nukkit/block/BlockRedstone.java | 1 + .../java/cn/nukkit/block/BlockSandstone.java | 3 +- .../nukkit/block/BlockSlabRedSandstone.java | 1 + .../java/cn/nukkit/block/BlockSlabStone.java | 1 + .../java/cn/nukkit/block/BlockSlabStone3.java | 1 + .../java/cn/nukkit/block/BlockSlabStone4.java | 1 + .../cn/nukkit/block/BlockSmoothStone.java | 2 + .../cn/nukkit/block/BlockStairsAndesite.java | 2 + .../block/BlockStairsAndesitePolished.java | 2 + .../cn/nukkit/block/BlockStairsBrick.java | 3 + .../nukkit/block/BlockStairsCobblestone.java | 3 + .../block/BlockStairsDarkPrismarine.java | 2 + .../cn/nukkit/block/BlockStairsDiorite.java | 2 + .../cn/nukkit/block/BlockStairsEndBrick.java | 2 + .../cn/nukkit/block/BlockStairsGranite.java | 2 + .../block/BlockStairsGranitePolished.java | 2 + .../block/BlockStairsMossyCobblestone.java | 2 + .../block/BlockStairsMossyStoneBrick.java | 2 + .../nukkit/block/BlockStairsNetherBrick.java | 3 + .../nukkit/block/BlockStairsPrismarine.java | 2 + .../block/BlockStairsPrismarineBrick.java | 2 + .../cn/nukkit/block/BlockStairsPurpur.java | 3 + .../cn/nukkit/block/BlockStairsQuartz.java | 3 + .../block/BlockStairsRedNetherBrick.java | 2 + .../nukkit/block/BlockStairsRedSandstone.java | 4 +- .../cn/nukkit/block/BlockStairsSandstone.java | 3 + .../nukkit/block/BlockStairsSmoothQuartz.java | 2 + .../block/BlockStairsSmoothRedSandstone.java | 2 + .../block/BlockStairsSmoothSandstone.java | 2 + .../cn/nukkit/block/BlockStairsStone.java | 2 + .../nukkit/block/BlockStairsStoneBrick.java | 3 + src/main/java/cn/nukkit/block/BlockStone.java | 1 + .../cn/nukkit/block/BlockStonecutter.java | 3 +- .../java/cn/nukkit/block/BlockTerracotta.java | 1 + .../nukkit/block/BlockTerracottaGlazed.java | 1 + .../cn/nukkit/block/BlockTrapdoorIron.java | 3 + src/main/java/cn/nukkit/block/BlockWall.java | 1 + .../BlockWeightedPressurePlateHeavy.java | 4 +- .../BlockWeightedPressurePlateLight.java | 4 +- 93 files changed, 178 insertions(+), 426 deletions(-) diff --git a/dumps/needed-class-changes.json b/dumps/needed-class-changes.json index 2ec1613e128..ccc8d7a5c0e 100644 --- a/dumps/needed-class-changes.json +++ b/dumps/needed-class-changes.json @@ -1,61 +1,10 @@ { - "cn.nukkit.block.BlockAllow": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockAllow#canBePulled()" - ] - }, - "cn.nukkit.block.BlockAnvil": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockAnvil#getToolTier()" - ] - }, - "cn.nukkit.block.BlockBasalt": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBasalt#getToolTier()" - ] - }, "cn.nukkit.block.BlockBell": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockBell#getAttachmentType()", - "cn.nukkit.block.BlockBell#getToolTier()", "cn.nukkit.block.BlockBell#setAttachmentType(int)" ] }, - "cn.nukkit.block.BlockBrewingStand": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBrewingStand#getToolTier()" - ] - }, - "cn.nukkit.block.BlockBricks": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBricks#getToolTier()" - ] - }, - "cn.nukkit.block.BlockBricksEndStone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBricksEndStone#getToolTier()" - ] - }, - "cn.nukkit.block.BlockBricksNether": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBricksNether#getToolTier()" - ] - }, - "cn.nukkit.block.BlockBricksRedNether": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBricksRedNether#getToolTier()" - ] - }, - "cn.nukkit.block.BlockBricksStone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBricksStone#getToolTier()" - ] - }, - "cn.nukkit.block.BlockButtonStone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockButtonStone#getToolTier()" - ] - }, "cn.nukkit.block.BlockCarpet": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockCarpet#getProperties()" @@ -69,7 +18,6 @@ "cn.nukkit.block.BlockCauldron": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockCauldron#getFillLevel()", - "cn.nukkit.block.BlockCauldron#getToolTier()", "cn.nukkit.block.BlockCauldron#setFillLevel(int)" ] }, @@ -78,27 +26,12 @@ "cn.nukkit.block.BlockCauldronLava#setFillLevel(int)" ] }, - "cn.nukkit.block.BlockCoal": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCoal#getToolTier()" - ] - }, - "cn.nukkit.block.BlockCobblestone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCobblestone#getToolTier()" - ] - }, "cn.nukkit.block.BlockCocoa": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockCocoa#getGrowthStage()", "cn.nukkit.block.BlockCocoa#grow()" ] }, - "cn.nukkit.block.BlockConcrete": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockConcrete#getToolTier()" - ] - }, "cn.nukkit.block.BlockConcretePowder": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockConcretePowder#getDyeColor()" @@ -137,16 +70,10 @@ "cn.nukkit.block.BlockDaylightDetectorInverted#isInverted()" ] }, - "cn.nukkit.block.BlockDiamond": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDiamond#getToolTier()" - ] - }, "cn.nukkit.block.BlockDispenser": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockDispenser#dispense()", - "cn.nukkit.block.BlockDispenser#getDispenseBehavior(Item)", - "cn.nukkit.block.BlockDispenser#getToolTier()" + "cn.nukkit.block.BlockDispenser#getDispenseBehavior(Item)" ] }, "cn.nukkit.block.BlockDoor": { @@ -154,11 +81,6 @@ "cn.nukkit.block.BlockDoor#PROPERTIES" ] }, - "cn.nukkit.block.BlockDoorIron": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoorIron#getToolTier()" - ] - }, "cn.nukkit.block.BlockDoubleSlabBlackstone": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockDoubleSlabBlackstone#getSingleSlabId()", @@ -187,29 +109,25 @@ "cn.nukkit.block.BlockDoubleSlabRedSandstone": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockDoubleSlabRedSandstone#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabRedSandstone#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabRedSandstone#getToolTier()" + "cn.nukkit.block.BlockDoubleSlabRedSandstone#getSlabName()" ] }, "cn.nukkit.block.BlockDoubleSlabStone": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockDoubleSlabStone#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabStone#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabStone#getToolTier()" + "cn.nukkit.block.BlockDoubleSlabStone#getSlabName()" ] }, "cn.nukkit.block.BlockDoubleSlabStone3": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockDoubleSlabStone3#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabStone3#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabStone3#getToolTier()" + "cn.nukkit.block.BlockDoubleSlabStone3#getSlabName()" ] }, "cn.nukkit.block.BlockDoubleSlabStone4": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockDoubleSlabStone4#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabStone4#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabStone4#getToolTier()" + "cn.nukkit.block.BlockDoubleSlabStone4#getSlabName()" ] }, "cn.nukkit.block.BlockDoubleSlabWarped": { @@ -229,29 +147,12 @@ "cn.nukkit.block.BlockDropper": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockDropper#dispense()", - "cn.nukkit.block.BlockDropper#getDispenseBehavior(Item)", - "cn.nukkit.block.BlockDropper#getToolTier()" - ] - }, - "cn.nukkit.block.BlockEmerald": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEmerald#getToolTier()" - ] - }, - "cn.nukkit.block.BlockEnchantingTable": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEnchantingTable#getToolTier()" - ] - }, - "cn.nukkit.block.BlockEndStone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEndStone#getToolTier()" + "cn.nukkit.block.BlockDropper#getDispenseBehavior(Item)" ] }, "cn.nukkit.block.BlockEnderChest": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEnderChest#getBlockEntity()", - "cn.nukkit.block.BlockEnderChest#getToolTier()" + "cn.nukkit.block.BlockEnderChest#getBlockEntity()" ] }, "cn.nukkit.block.BlockFallable": { @@ -270,11 +171,6 @@ "cn.nukkit.block.BlockFenceBase#setWoodType(WoodType)" ] }, - "cn.nukkit.block.BlockFenceNetherBrick": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFenceNetherBrick#getToolTier()" - ] - }, "cn.nukkit.block.BlockFlower": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockFlower#canPlantOn(Block)" @@ -292,31 +188,11 @@ "cn.nukkit.block.BlockFungusWarped#grow(Player)" ] }, - "cn.nukkit.block.BlockFurnaceBurning": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFurnaceBurning#getToolTier()" - ] - }, - "cn.nukkit.block.BlockGold": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockGold#getToolTier()" - ] - }, - "cn.nukkit.block.BlockGrindstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockGrindstone#getToolTier()" - ] - }, "cn.nukkit.block.BlockHoney": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockHoney#()" ] }, - "cn.nukkit.block.BlockHopper": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockHopper#getToolTier()" - ] - }, "cn.nukkit.block.BlockHyphaeCrimson": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockHyphaeCrimson#getStrippedState()" @@ -327,26 +203,6 @@ "cn.nukkit.block.BlockHyphaeWarped#getStrippedState()" ] }, - "cn.nukkit.block.BlockIron": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockIron#getToolTier()" - ] - }, - "cn.nukkit.block.BlockIronBars": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockIronBars#getToolTier()" - ] - }, - "cn.nukkit.block.BlockLantern": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLantern#getToolTier()" - ] - }, - "cn.nukkit.block.BlockLapis": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLapis#getToolTier()" - ] - }, "cn.nukkit.block.BlockLeaves2": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockLeaves2#getType()", @@ -363,76 +219,6 @@ "cn.nukkit.block.BlockLiquid#usesWaterLogging()" ] }, - "cn.nukkit.block.BlockMobSpawner": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockMobSpawner#getToolTier()" - ] - }, - "cn.nukkit.block.BlockMossStone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockMossStone#getToolTier()" - ] - }, - "cn.nukkit.block.BlockMushroom": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockMushroom#getToolTier()" - ] - }, - "cn.nukkit.block.BlockNetherrack": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockNetherrack#getToolTier()" - ] - }, - "cn.nukkit.block.BlockObserver": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockObserver#getToolTier()" - ] - }, - "cn.nukkit.block.BlockObsidian": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockObsidian#getToolTier()" - ] - }, - "cn.nukkit.block.BlockOreCoal": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreCoal#getToolTier()" - ] - }, - "cn.nukkit.block.BlockOreDiamond": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreDiamond#getToolTier()" - ] - }, - "cn.nukkit.block.BlockOreEmerald": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreEmerald#getToolTier()" - ] - }, - "cn.nukkit.block.BlockOreGold": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreGold#getToolTier()" - ] - }, - "cn.nukkit.block.BlockOreIron": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreIron#getToolTier()" - ] - }, - "cn.nukkit.block.BlockOreLapis": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreLapis#getToolTier()" - ] - }, - "cn.nukkit.block.BlockOreQuartz": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreQuartz#getToolTier()" - ] - }, - "cn.nukkit.block.BlockOreRedstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockOreRedstone#getToolTier()" - ] - }, "cn.nukkit.block.BlockPiston": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockPiston#getPistonHeadBlockId()" @@ -455,32 +241,12 @@ "cn.nukkit.block.BlockPistonSticky#getPistonHeadBlockId()" ] }, - "cn.nukkit.block.BlockPressurePlateStone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPressurePlateStone#getToolTier()" - ] - }, - "cn.nukkit.block.BlockPrismarine": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPrismarine#getToolTier()" - ] - }, "cn.nukkit.block.BlockPumpkin": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockPumpkin#getProperties()", "cn.nukkit.block.BlockPumpkin#setBlockFace(BlockFace)" ] }, - "cn.nukkit.block.BlockQuartz": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockQuartz#getToolTier()" - ] - }, - "cn.nukkit.block.BlockRedstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockRedstone#getToolTier()" - ] - }, "cn.nukkit.block.BlockRedstoneDiode": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockRedstoneDiode#isSupportValid(Block)" @@ -498,8 +264,7 @@ }, "cn.nukkit.block.BlockSandstone": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSandstone#getSandstoneType()", - "cn.nukkit.block.BlockSandstone#getToolTier()" + "cn.nukkit.block.BlockSandstone#getSandstoneType()" ] }, "cn.nukkit.block.BlockScaffolding": { @@ -539,28 +304,24 @@ "cn.nukkit.block.BlockSlabRedSandstone#SMOOTH_SANDSTONE", "cn.nukkit.block.BlockSlabRedSandstone#RED_NETHER_BRICK", "cn.nukkit.block.BlockSlabRedSandstone#getSlabName()", - "cn.nukkit.block.BlockSlabRedSandstone#getToolTier()", "cn.nukkit.block.BlockSlabRedSandstone#isSameType(BlockSlab)" ] }, "cn.nukkit.block.BlockSlabStone": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockSlabStone#getSlabName()", - "cn.nukkit.block.BlockSlabStone#getToolTier()", "cn.nukkit.block.BlockSlabStone#isSameType(BlockSlab)" ] }, "cn.nukkit.block.BlockSlabStone3": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockSlabStone3#getSlabName()", - "cn.nukkit.block.BlockSlabStone3#getToolTier()", "cn.nukkit.block.BlockSlabStone3#isSameType(BlockSlab)" ] }, "cn.nukkit.block.BlockSlabStone4": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockSlabStone4#getSlabName()", - "cn.nukkit.block.BlockSlabStone4#getToolTier()", "cn.nukkit.block.BlockSlabStone4#isSameType(BlockSlab)" ] }, @@ -576,11 +337,6 @@ "cn.nukkit.block.BlockSlabWood#isSameType(BlockSlab)" ] }, - "cn.nukkit.block.BlockSmoothStone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSmoothStone#getToolTier()" - ] - }, "cn.nukkit.block.BlockSoulSand": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockSoulSand#isSoulSpeedCompatible()" @@ -596,126 +352,6 @@ "cn.nukkit.block.BlockSoulTorch#(int)" ] }, - "cn.nukkit.block.BlockStairsAndesite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsAndesite#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsAndesitePolished": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsAndesitePolished#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsBrick": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsBrick#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsCobblestone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsCobblestone#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsDarkPrismarine": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsDarkPrismarine#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsDiorite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsDiorite#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsEndBrick": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsEndBrick#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsGranite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsGranite#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsGranitePolished": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsGranitePolished#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsMossyCobblestone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsMossyCobblestone#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsMossyStoneBrick": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsMossyStoneBrick#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsNetherBrick": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsNetherBrick#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsPrismarine": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsPrismarine#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsPrismarineBrick": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsPrismarineBrick#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsPurpur": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsPurpur#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsQuartz": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsQuartz#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsRedNetherBrick": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsRedNetherBrick#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsRedSandstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsRedSandstone#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsSandstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsSandstone#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsSmoothQuartz": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsSmoothQuartz#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsSmoothRedSandstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsSmoothRedSandstone#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsSmoothSandstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsSmoothSandstone#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsStone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsStone#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStairsStoneBrick": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStairsStoneBrick#getToolTier()" - ] - }, "cn.nukkit.block.BlockStemCrimson": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockStemCrimson#getStrippedState()" @@ -731,36 +367,6 @@ "cn.nukkit.block.BlockStemWarped#getStrippedState()" ] }, - "cn.nukkit.block.BlockStone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStone#getToolTier()" - ] - }, - "cn.nukkit.block.BlockStonecutter": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStonecutter#getToolTier()" - ] - }, - "cn.nukkit.block.BlockTerracotta": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockTerracotta#getToolTier()" - ] - }, - "cn.nukkit.block.BlockTerracottaGlazed": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockTerracottaGlazed#getToolTier()" - ] - }, - "cn.nukkit.block.BlockTrapdoorIron": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockTrapdoorIron#getToolTier()" - ] - }, - "cn.nukkit.block.BlockWall": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWall#getToolTier()" - ] - }, "cn.nukkit.block.BlockWallBanner": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockWallBanner#getDirection()", @@ -784,16 +390,6 @@ "cn.nukkit.block.BlockWater#usesWaterLogging()" ] }, - "cn.nukkit.block.BlockWeightedPressurePlateHeavy": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWeightedPressurePlateHeavy#getToolTier()" - ] - }, - "cn.nukkit.block.BlockWeightedPressurePlateLight": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWeightedPressurePlateLight#getToolTier()" - ] - }, "cn.nukkit.block.BlockWitherRose": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockWitherRose#canPlantOn(Block)" diff --git a/src/main/java/cn/nukkit/block/BlockAllow.java b/src/main/java/cn/nukkit/block/BlockAllow.java index 8c3926e200f..f4b496dc14f 100644 --- a/src/main/java/cn/nukkit/block/BlockAllow.java +++ b/src/main/java/cn/nukkit/block/BlockAllow.java @@ -51,6 +51,7 @@ public boolean canBePushed() { return false; } + @PowerNukkitOnly @Override public boolean canBePulled() { return false; diff --git a/src/main/java/cn/nukkit/block/BlockAnvil.java b/src/main/java/cn/nukkit/block/BlockAnvil.java index b8364e07352..bf61c42a572 100644 --- a/src/main/java/cn/nukkit/block/BlockAnvil.java +++ b/src/main/java/cn/nukkit/block/BlockAnvil.java @@ -134,6 +134,7 @@ public boolean onActivate(@Nonnull Item item, Player player) { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockBasalt.java b/src/main/java/cn/nukkit/block/BlockBasalt.java index 33be4a21ea9..50402ebd886 100644 --- a/src/main/java/cn/nukkit/block/BlockBasalt.java +++ b/src/main/java/cn/nukkit/block/BlockBasalt.java @@ -65,6 +65,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockBell.java b/src/main/java/cn/nukkit/block/BlockBell.java index cafc16e0f13..f562c3f8a9e 100644 --- a/src/main/java/cn/nukkit/block/BlockBell.java +++ b/src/main/java/cn/nukkit/block/BlockBell.java @@ -499,6 +499,7 @@ public double getResistance() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockBrewingStand.java b/src/main/java/cn/nukkit/block/BlockBrewingStand.java index f2eaf20d559..79254b956ff 100644 --- a/src/main/java/cn/nukkit/block/BlockBrewingStand.java +++ b/src/main/java/cn/nukkit/block/BlockBrewingStand.java @@ -162,6 +162,7 @@ public Item toItem() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockBricks.java b/src/main/java/cn/nukkit/block/BlockBricks.java index 11a856a5451..94e4081ce01 100644 --- a/src/main/java/cn/nukkit/block/BlockBricks.java +++ b/src/main/java/cn/nukkit/block/BlockBricks.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +39,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockBricksEndStone.java b/src/main/java/cn/nukkit/block/BlockBricksEndStone.java index 682201ca0f1..cbd372d291e 100644 --- a/src/main/java/cn/nukkit/block/BlockBricksEndStone.java +++ b/src/main/java/cn/nukkit/block/BlockBricksEndStone.java @@ -1,6 +1,7 @@ package cn.nukkit.block; -import cn.nukkit.item.Item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -25,6 +26,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockBricksNether.java b/src/main/java/cn/nukkit/block/BlockBricksNether.java index 6e13500a525..1d6bc1c9d94 100644 --- a/src/main/java/cn/nukkit/block/BlockBricksNether.java +++ b/src/main/java/cn/nukkit/block/BlockBricksNether.java @@ -1,7 +1,8 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitDifference; -import cn.nukkit.item.Item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -30,6 +31,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockBricksRedNether.java b/src/main/java/cn/nukkit/block/BlockBricksRedNether.java index 2dd041547fc..c82fabf0ab2 100644 --- a/src/main/java/cn/nukkit/block/BlockBricksRedNether.java +++ b/src/main/java/cn/nukkit/block/BlockBricksRedNether.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -26,6 +28,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockBricksStone.java b/src/main/java/cn/nukkit/block/BlockBricksStone.java index 03461a40b9d..3e6350dd184 100644 --- a/src/main/java/cn/nukkit/block/BlockBricksStone.java +++ b/src/main/java/cn/nukkit/block/BlockBricksStone.java @@ -105,6 +105,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockButtonStone.java b/src/main/java/cn/nukkit/block/BlockButtonStone.java index 6ebdf9df458..848a5404645 100644 --- a/src/main/java/cn/nukkit/block/BlockButtonStone.java +++ b/src/main/java/cn/nukkit/block/BlockButtonStone.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; @@ -34,6 +35,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockCauldron.java b/src/main/java/cn/nukkit/block/BlockCauldron.java index 50ef36aa189..6d560fe9975 100644 --- a/src/main/java/cn/nukkit/block/BlockCauldron.java +++ b/src/main/java/cn/nukkit/block/BlockCauldron.java @@ -454,6 +454,7 @@ public boolean place(@Nonnull Item item, @Nonnull Block block, @Nonnull Block ta } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockCoal.java b/src/main/java/cn/nukkit/block/BlockCoal.java index c4989ccd4d1..0bdee19dc40 100644 --- a/src/main/java/cn/nukkit/block/BlockCoal.java +++ b/src/main/java/cn/nukkit/block/BlockCoal.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -47,6 +49,7 @@ public String getName() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockCobblestone.java b/src/main/java/cn/nukkit/block/BlockCobblestone.java index b411df4faf1..099367ce9b3 100644 --- a/src/main/java/cn/nukkit/block/BlockCobblestone.java +++ b/src/main/java/cn/nukkit/block/BlockCobblestone.java @@ -1,5 +1,6 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; /** @@ -36,6 +37,7 @@ public String getName() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockConcrete.java b/src/main/java/cn/nukkit/block/BlockConcrete.java index e9e4a5f3350..b2df682773f 100644 --- a/src/main/java/cn/nukkit/block/BlockConcrete.java +++ b/src/main/java/cn/nukkit/block/BlockConcrete.java @@ -62,6 +62,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockDiamond.java b/src/main/java/cn/nukkit/block/BlockDiamond.java index cf1b0c1c3b0..9bae95f151b 100644 --- a/src/main/java/cn/nukkit/block/BlockDiamond.java +++ b/src/main/java/cn/nukkit/block/BlockDiamond.java @@ -1,5 +1,6 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public String getName() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_IRON; } diff --git a/src/main/java/cn/nukkit/block/BlockDispenser.java b/src/main/java/cn/nukkit/block/BlockDispenser.java index ecff477da9c..50b5dd20c12 100644 --- a/src/main/java/cn/nukkit/block/BlockDispenser.java +++ b/src/main/java/cn/nukkit/block/BlockDispenser.java @@ -311,6 +311,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockDoorIron.java b/src/main/java/cn/nukkit/block/BlockDoorIron.java index 34251050bd0..1f1a9b5d6f8 100644 --- a/src/main/java/cn/nukkit/block/BlockDoorIron.java +++ b/src/main/java/cn/nukkit/block/BlockDoorIron.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import cn.nukkit.item.ItemDoorIron; import cn.nukkit.item.ItemTool; @@ -52,6 +53,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabRedSandstone.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabRedSandstone.java index 80b9c5176c1..615b286b14b 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabRedSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabRedSandstone.java @@ -76,6 +76,7 @@ public int getSingleSlabId() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone.java index 5005e6560dd..12aa2b77f64 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone.java @@ -83,6 +83,7 @@ public String getSlabName() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone3.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone3.java index 914acc44e77..00dbb892b04 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone3.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone3.java @@ -81,6 +81,7 @@ public int getSingleSlabId() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone4.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone4.java index 037a451e379..52595987b20 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone4.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone4.java @@ -78,6 +78,7 @@ public int getSingleSlabId() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockDropper.java b/src/main/java/cn/nukkit/block/BlockDropper.java index 19932db0560..9e60cb058d0 100644 --- a/src/main/java/cn/nukkit/block/BlockDropper.java +++ b/src/main/java/cn/nukkit/block/BlockDropper.java @@ -78,6 +78,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockEmerald.java b/src/main/java/cn/nukkit/block/BlockEmerald.java index 595276a7160..041e720a590 100644 --- a/src/main/java/cn/nukkit/block/BlockEmerald.java +++ b/src/main/java/cn/nukkit/block/BlockEmerald.java @@ -1,5 +1,6 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -38,6 +39,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_IRON; } diff --git a/src/main/java/cn/nukkit/block/BlockEnchantingTable.java b/src/main/java/cn/nukkit/block/BlockEnchantingTable.java index 0f5e2503f61..31be357b18c 100644 --- a/src/main/java/cn/nukkit/block/BlockEnchantingTable.java +++ b/src/main/java/cn/nukkit/block/BlockEnchantingTable.java @@ -93,6 +93,7 @@ public double getMaxY() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockEndStone.java b/src/main/java/cn/nukkit/block/BlockEndStone.java index 76d537a5ca7..ad2de4b7bdb 100644 --- a/src/main/java/cn/nukkit/block/BlockEndStone.java +++ b/src/main/java/cn/nukkit/block/BlockEndStone.java @@ -1,6 +1,7 @@ package cn.nukkit.block; -import cn.nukkit.item.Item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -39,6 +40,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockEnderChest.java b/src/main/java/cn/nukkit/block/BlockEnderChest.java index 62fb166100d..85fe9265e52 100644 --- a/src/main/java/cn/nukkit/block/BlockEnderChest.java +++ b/src/main/java/cn/nukkit/block/BlockEnderChest.java @@ -175,6 +175,7 @@ public boolean onActivate(@Nonnull Item item, Player player) { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockFenceNetherBrick.java b/src/main/java/cn/nukkit/block/BlockFenceNetherBrick.java index 28080651e09..337c136e321 100644 --- a/src/main/java/cn/nukkit/block/BlockFenceNetherBrick.java +++ b/src/main/java/cn/nukkit/block/BlockFenceNetherBrick.java @@ -1,8 +1,8 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; -import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -47,6 +47,7 @@ public double getResistance() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockFurnaceBurning.java b/src/main/java/cn/nukkit/block/BlockFurnaceBurning.java index cac0047e0f1..ec3ad9bf968 100644 --- a/src/main/java/cn/nukkit/block/BlockFurnaceBurning.java +++ b/src/main/java/cn/nukkit/block/BlockFurnaceBurning.java @@ -148,6 +148,7 @@ public Item toItem() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockGold.java b/src/main/java/cn/nukkit/block/BlockGold.java index bf905d488fc..a10fd3a1af9 100644 --- a/src/main/java/cn/nukkit/block/BlockGold.java +++ b/src/main/java/cn/nukkit/block/BlockGold.java @@ -1,5 +1,6 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -38,6 +39,7 @@ public double getResistance() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_IRON; } diff --git a/src/main/java/cn/nukkit/block/BlockGrindstone.java b/src/main/java/cn/nukkit/block/BlockGrindstone.java index f2b53036a97..7a42632b957 100644 --- a/src/main/java/cn/nukkit/block/BlockGrindstone.java +++ b/src/main/java/cn/nukkit/block/BlockGrindstone.java @@ -70,6 +70,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockHopper.java b/src/main/java/cn/nukkit/block/BlockHopper.java index 0dbc751acf9..3fc98e4206b 100644 --- a/src/main/java/cn/nukkit/block/BlockHopper.java +++ b/src/main/java/cn/nukkit/block/BlockHopper.java @@ -196,6 +196,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockIron.java b/src/main/java/cn/nukkit/block/BlockIron.java index 12a871b07b6..d7e4e172269 100644 --- a/src/main/java/cn/nukkit/block/BlockIron.java +++ b/src/main/java/cn/nukkit/block/BlockIron.java @@ -1,5 +1,6 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -38,6 +39,7 @@ public double getResistance() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_STONE; } diff --git a/src/main/java/cn/nukkit/block/BlockIronBars.java b/src/main/java/cn/nukkit/block/BlockIronBars.java index dfd7452d317..9b5979537a1 100644 --- a/src/main/java/cn/nukkit/block/BlockIronBars.java +++ b/src/main/java/cn/nukkit/block/BlockIronBars.java @@ -52,6 +52,7 @@ public Item toItem() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockLantern.java b/src/main/java/cn/nukkit/block/BlockLantern.java index ad1b4c5af24..bc70d59045f 100644 --- a/src/main/java/cn/nukkit/block/BlockLantern.java +++ b/src/main/java/cn/nukkit/block/BlockLantern.java @@ -186,6 +186,7 @@ public BlockColor getColor() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockLapis.java b/src/main/java/cn/nukkit/block/BlockLapis.java index b671511ad09..54a02a69d52 100644 --- a/src/main/java/cn/nukkit/block/BlockLapis.java +++ b/src/main/java/cn/nukkit/block/BlockLapis.java @@ -1,5 +1,6 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -38,6 +39,7 @@ public double getResistance() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_STONE; } diff --git a/src/main/java/cn/nukkit/block/BlockMobSpawner.java b/src/main/java/cn/nukkit/block/BlockMobSpawner.java index 45381aa40da..52d74e8881f 100644 --- a/src/main/java/cn/nukkit/block/BlockMobSpawner.java +++ b/src/main/java/cn/nukkit/block/BlockMobSpawner.java @@ -29,6 +29,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockMossStone.java b/src/main/java/cn/nukkit/block/BlockMossStone.java index efde4c63819..a25555a8b01 100644 --- a/src/main/java/cn/nukkit/block/BlockMossStone.java +++ b/src/main/java/cn/nukkit/block/BlockMossStone.java @@ -1,6 +1,6 @@ package cn.nukkit.block; -import cn.nukkit.item.Item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; /** @@ -38,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockMushroom.java b/src/main/java/cn/nukkit/block/BlockMushroom.java index b2c46f9997d..e7accd0429d 100644 --- a/src/main/java/cn/nukkit/block/BlockMushroom.java +++ b/src/main/java/cn/nukkit/block/BlockMushroom.java @@ -123,6 +123,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockNetherrack.java b/src/main/java/cn/nukkit/block/BlockNetherrack.java index e8563fab5c1..bf2f62c3c78 100644 --- a/src/main/java/cn/nukkit/block/BlockNetherrack.java +++ b/src/main/java/cn/nukkit/block/BlockNetherrack.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; import cn.nukkit.math.BlockFace; @@ -47,6 +48,7 @@ public String getName() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockObserver.java b/src/main/java/cn/nukkit/block/BlockObserver.java index f51751ecb68..3559734ba7b 100644 --- a/src/main/java/cn/nukkit/block/BlockObserver.java +++ b/src/main/java/cn/nukkit/block/BlockObserver.java @@ -163,6 +163,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockObsidian.java b/src/main/java/cn/nukkit/block/BlockObsidian.java index 1d515db389c..bd7c8030cfe 100644 --- a/src/main/java/cn/nukkit/block/BlockObsidian.java +++ b/src/main/java/cn/nukkit/block/BlockObsidian.java @@ -31,6 +31,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_DIAMOND; } diff --git a/src/main/java/cn/nukkit/block/BlockOreCoal.java b/src/main/java/cn/nukkit/block/BlockOreCoal.java index a9b5ae70ae4..4842db993cd 100644 --- a/src/main/java/cn/nukkit/block/BlockOreCoal.java +++ b/src/main/java/cn/nukkit/block/BlockOreCoal.java @@ -1,5 +1,6 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import cn.nukkit.item.ItemCoal; import cn.nukkit.item.ItemTool; @@ -43,6 +44,7 @@ public String getName() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockOreDiamond.java b/src/main/java/cn/nukkit/block/BlockOreDiamond.java index d2ffd7e375a..df64c87989f 100644 --- a/src/main/java/cn/nukkit/block/BlockOreDiamond.java +++ b/src/main/java/cn/nukkit/block/BlockOreDiamond.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.item.ItemDiamond; import cn.nukkit.item.ItemTool; @@ -38,6 +40,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_IRON; } diff --git a/src/main/java/cn/nukkit/block/BlockOreEmerald.java b/src/main/java/cn/nukkit/block/BlockOreEmerald.java index bc695a21da4..dd63f834fd9 100644 --- a/src/main/java/cn/nukkit/block/BlockOreEmerald.java +++ b/src/main/java/cn/nukkit/block/BlockOreEmerald.java @@ -1,5 +1,6 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import cn.nukkit.item.ItemEmerald; import cn.nukkit.item.ItemTool; @@ -33,6 +34,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_IRON; } diff --git a/src/main/java/cn/nukkit/block/BlockOreGold.java b/src/main/java/cn/nukkit/block/BlockOreGold.java index 224123502e2..d3a9904366e 100644 --- a/src/main/java/cn/nukkit/block/BlockOreGold.java +++ b/src/main/java/cn/nukkit/block/BlockOreGold.java @@ -1,6 +1,7 @@ package cn.nukkit.block; -import cn.nukkit.item.Item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; /** @@ -32,6 +33,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_IRON; } diff --git a/src/main/java/cn/nukkit/block/BlockOreIron.java b/src/main/java/cn/nukkit/block/BlockOreIron.java index fd21f761c46..c4d30b7421a 100644 --- a/src/main/java/cn/nukkit/block/BlockOreIron.java +++ b/src/main/java/cn/nukkit/block/BlockOreIron.java @@ -1,6 +1,6 @@ package cn.nukkit.block; -import cn.nukkit.item.Item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.ItemTool; /** @@ -33,6 +33,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_STONE; } diff --git a/src/main/java/cn/nukkit/block/BlockOreLapis.java b/src/main/java/cn/nukkit/block/BlockOreLapis.java index e2777332dfc..f5f12d678cb 100644 --- a/src/main/java/cn/nukkit/block/BlockOreLapis.java +++ b/src/main/java/cn/nukkit/block/BlockOreLapis.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; import cn.nukkit.item.MinecraftItemID; @@ -38,6 +40,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_STONE; } diff --git a/src/main/java/cn/nukkit/block/BlockOreQuartz.java b/src/main/java/cn/nukkit/block/BlockOreQuartz.java index 880356d7ffa..1a451cacb16 100644 --- a/src/main/java/cn/nukkit/block/BlockOreQuartz.java +++ b/src/main/java/cn/nukkit/block/BlockOreQuartz.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.item.ItemQuartz; import cn.nukkit.item.ItemTool; @@ -43,6 +45,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockOreRedstone.java b/src/main/java/cn/nukkit/block/BlockOreRedstone.java index df23cf8f127..f32f3a6a6fa 100644 --- a/src/main/java/cn/nukkit/block/BlockOreRedstone.java +++ b/src/main/java/cn/nukkit/block/BlockOreRedstone.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.item.ItemRedstone; import cn.nukkit.item.ItemTool; @@ -38,6 +40,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_IRON; } diff --git a/src/main/java/cn/nukkit/block/BlockPressurePlateStone.java b/src/main/java/cn/nukkit/block/BlockPressurePlateStone.java index 296e089d0da..004a9479b34 100644 --- a/src/main/java/cn/nukkit/block/BlockPressurePlateStone.java +++ b/src/main/java/cn/nukkit/block/BlockPressurePlateStone.java @@ -1,8 +1,9 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.EntityLiving; -import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; import cn.nukkit.math.AxisAlignedBB; import cn.nukkit.utils.BlockColor; @@ -48,6 +49,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockPrismarine.java b/src/main/java/cn/nukkit/block/BlockPrismarine.java index 3256b671004..4ea436ff136 100644 --- a/src/main/java/cn/nukkit/block/BlockPrismarine.java +++ b/src/main/java/cn/nukkit/block/BlockPrismarine.java @@ -86,6 +86,7 @@ public PrismarineBlockType getPrismarineBlockType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockQuartz.java b/src/main/java/cn/nukkit/block/BlockQuartz.java index 2ecf200a564..25a2b9e1d12 100644 --- a/src/main/java/cn/nukkit/block/BlockQuartz.java +++ b/src/main/java/cn/nukkit/block/BlockQuartz.java @@ -93,6 +93,7 @@ public boolean place(@Nonnull Item item, @Nonnull Block block, @Nonnull Block ta } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockRedstone.java b/src/main/java/cn/nukkit/block/BlockRedstone.java index 2baed41a729..1e59f5ff6be 100644 --- a/src/main/java/cn/nukkit/block/BlockRedstone.java +++ b/src/main/java/cn/nukkit/block/BlockRedstone.java @@ -64,6 +64,7 @@ public String getName() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockSandstone.java b/src/main/java/cn/nukkit/block/BlockSandstone.java index 0d49bdf4595..c65bbfaff0a 100644 --- a/src/main/java/cn/nukkit/block/BlockSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockSandstone.java @@ -7,8 +7,6 @@ import cn.nukkit.blockproperty.BlockProperties; import cn.nukkit.blockproperty.BlockProperty; import cn.nukkit.blockproperty.value.SandStoneType; -import cn.nukkit.item.Item; -import cn.nukkit.item.ItemBlock; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -85,6 +83,7 @@ public String getName() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java b/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java index 69631fbb2ae..396c3039ca4 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java @@ -84,6 +84,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockSlabStone.java b/src/main/java/cn/nukkit/block/BlockSlabStone.java index 2455679e23d..e93c009c469 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabStone.java +++ b/src/main/java/cn/nukkit/block/BlockSlabStone.java @@ -62,6 +62,7 @@ public boolean isSameType(BlockSlab slab) { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockSlabStone3.java b/src/main/java/cn/nukkit/block/BlockSlabStone3.java index a80c05ff289..d340990bcc4 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabStone3.java +++ b/src/main/java/cn/nukkit/block/BlockSlabStone3.java @@ -80,6 +80,7 @@ public BlockColor getColor() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockSlabStone4.java b/src/main/java/cn/nukkit/block/BlockSlabStone4.java index 8482d845eab..ae4b1667ae6 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabStone4.java +++ b/src/main/java/cn/nukkit/block/BlockSlabStone4.java @@ -76,6 +76,7 @@ public BlockColor getColor() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockSmoothStone.java b/src/main/java/cn/nukkit/block/BlockSmoothStone.java index b90dbd9a303..09aa9a1ae74 100644 --- a/src/main/java/cn/nukkit/block/BlockSmoothStone.java +++ b/src/main/java/cn/nukkit/block/BlockSmoothStone.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; @PowerNukkitOnly @@ -36,6 +37,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsAndesite.java b/src/main/java/cn/nukkit/block/BlockStairsAndesite.java index 2244bcc6d1c..09886a81e65 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsAndesite.java +++ b/src/main/java/cn/nukkit/block/BlockStairsAndesite.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsAndesitePolished.java b/src/main/java/cn/nukkit/block/BlockStairsAndesitePolished.java index cb7ee1a403e..de4d286186f 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsAndesitePolished.java +++ b/src/main/java/cn/nukkit/block/BlockStairsAndesitePolished.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsBrick.java b/src/main/java/cn/nukkit/block/BlockStairsBrick.java index becf2422ddf..6223f4bea04 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsBrick.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +39,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsCobblestone.java b/src/main/java/cn/nukkit/block/BlockStairsCobblestone.java index 93558d55218..10cc211e7fb 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsCobblestone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsCobblestone.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +39,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsDarkPrismarine.java b/src/main/java/cn/nukkit/block/BlockStairsDarkPrismarine.java index ca604ab7157..5304fe6e0a0 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsDarkPrismarine.java +++ b/src/main/java/cn/nukkit/block/BlockStairsDarkPrismarine.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsDiorite.java b/src/main/java/cn/nukkit/block/BlockStairsDiorite.java index 4f422a5fdb2..3cb41689472 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsDiorite.java +++ b/src/main/java/cn/nukkit/block/BlockStairsDiorite.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsEndBrick.java b/src/main/java/cn/nukkit/block/BlockStairsEndBrick.java index 0a6de0c7cea..32d2f670be8 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsEndBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsEndBrick.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsGranite.java b/src/main/java/cn/nukkit/block/BlockStairsGranite.java index d3d886efb9d..b6996ffd4a8 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsGranite.java +++ b/src/main/java/cn/nukkit/block/BlockStairsGranite.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsGranitePolished.java b/src/main/java/cn/nukkit/block/BlockStairsGranitePolished.java index 992845ef165..94bb392ebef 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsGranitePolished.java +++ b/src/main/java/cn/nukkit/block/BlockStairsGranitePolished.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsMossyCobblestone.java b/src/main/java/cn/nukkit/block/BlockStairsMossyCobblestone.java index 4cbdaac1aa1..3ef132b2175 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsMossyCobblestone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsMossyCobblestone.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsMossyStoneBrick.java b/src/main/java/cn/nukkit/block/BlockStairsMossyStoneBrick.java index ce5bec0c2ed..03c76ee4e3e 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsMossyStoneBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsMossyStoneBrick.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsNetherBrick.java b/src/main/java/cn/nukkit/block/BlockStairsNetherBrick.java index 5f3563ef786..1e5f4fb4769 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsNetherBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsNetherBrick.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +39,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsPrismarine.java b/src/main/java/cn/nukkit/block/BlockStairsPrismarine.java index e7f01e78960..0a81068197f 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsPrismarine.java +++ b/src/main/java/cn/nukkit/block/BlockStairsPrismarine.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsPrismarineBrick.java b/src/main/java/cn/nukkit/block/BlockStairsPrismarineBrick.java index 7a96b3d0bcf..062c48d9ef9 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsPrismarineBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsPrismarineBrick.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsPurpur.java b/src/main/java/cn/nukkit/block/BlockStairsPurpur.java index 0d6c96f2e15..62073650988 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsPurpur.java +++ b/src/main/java/cn/nukkit/block/BlockStairsPurpur.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -34,6 +36,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsQuartz.java b/src/main/java/cn/nukkit/block/BlockStairsQuartz.java index 37aa51eb07c..4fe080476e6 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsQuartz.java +++ b/src/main/java/cn/nukkit/block/BlockStairsQuartz.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +39,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsRedNetherBrick.java b/src/main/java/cn/nukkit/block/BlockStairsRedNetherBrick.java index 9e007746037..ec09c757ac5 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsRedNetherBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsRedNetherBrick.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsRedSandstone.java b/src/main/java/cn/nukkit/block/BlockStairsRedSandstone.java index fc55e3bb1af..f89bed45d65 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsRedSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsRedSandstone.java @@ -1,6 +1,7 @@ package cn.nukkit.block; -import cn.nukkit.item.Item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -39,6 +40,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsSandstone.java b/src/main/java/cn/nukkit/block/BlockStairsSandstone.java index 7f902a103d4..1e44caa92b9 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsSandstone.java @@ -1,5 +1,7 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +39,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsSmoothQuartz.java b/src/main/java/cn/nukkit/block/BlockStairsSmoothQuartz.java index 16c09395928..a937ae230c7 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsSmoothQuartz.java +++ b/src/main/java/cn/nukkit/block/BlockStairsSmoothQuartz.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsSmoothRedSandstone.java b/src/main/java/cn/nukkit/block/BlockStairsSmoothRedSandstone.java index a02ad0e128e..3107b7fd286 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsSmoothRedSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsSmoothRedSandstone.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsSmoothSandstone.java b/src/main/java/cn/nukkit/block/BlockStairsSmoothSandstone.java index c148ae198ed..a55af5cfbe3 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsSmoothSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsSmoothSandstone.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsStone.java b/src/main/java/cn/nukkit/block/BlockStairsStone.java index 8bacced143f..2865714194b 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsStone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsStone.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -37,6 +38,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStairsStoneBrick.java b/src/main/java/cn/nukkit/block/BlockStairsStoneBrick.java index b95802afc6d..69e5f466063 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsStoneBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsStoneBrick.java @@ -1,6 +1,8 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -28,6 +30,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStone.java b/src/main/java/cn/nukkit/block/BlockStone.java index 5557862ec9d..7ac87e1282c 100644 --- a/src/main/java/cn/nukkit/block/BlockStone.java +++ b/src/main/java/cn/nukkit/block/BlockStone.java @@ -112,6 +112,7 @@ public BlockColor getColor() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockStonecutter.java b/src/main/java/cn/nukkit/block/BlockStonecutter.java index 7a8181623c6..d4c348ba17c 100644 --- a/src/main/java/cn/nukkit/block/BlockStonecutter.java +++ b/src/main/java/cn/nukkit/block/BlockStonecutter.java @@ -1,7 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.item.Item; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; public class BlockStonecutter extends BlockSolid { @@ -36,6 +36,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockTerracotta.java b/src/main/java/cn/nukkit/block/BlockTerracotta.java index f3af84b012a..299224ec15f 100644 --- a/src/main/java/cn/nukkit/block/BlockTerracotta.java +++ b/src/main/java/cn/nukkit/block/BlockTerracotta.java @@ -61,6 +61,7 @@ public double getResistance() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockTerracottaGlazed.java b/src/main/java/cn/nukkit/block/BlockTerracottaGlazed.java index 7ef76aed66c..4706b0154f6 100644 --- a/src/main/java/cn/nukkit/block/BlockTerracottaGlazed.java +++ b/src/main/java/cn/nukkit/block/BlockTerracottaGlazed.java @@ -54,6 +54,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockTrapdoorIron.java b/src/main/java/cn/nukkit/block/BlockTrapdoorIron.java index 1673bc82a8a..f4c77126f41 100644 --- a/src/main/java/cn/nukkit/block/BlockTrapdoorIron.java +++ b/src/main/java/cn/nukkit/block/BlockTrapdoorIron.java @@ -1,6 +1,8 @@ package cn.nukkit.block; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; @@ -62,6 +64,7 @@ public boolean canHarvestWithHand() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockWall.java b/src/main/java/cn/nukkit/block/BlockWall.java index f3f9e26f424..289aa3127cf 100644 --- a/src/main/java/cn/nukkit/block/BlockWall.java +++ b/src/main/java/cn/nukkit/block/BlockWall.java @@ -91,6 +91,7 @@ public String getName() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateHeavy.java b/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateHeavy.java index 8e1ebb22dba..6276f75182b 100644 --- a/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateHeavy.java +++ b/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateHeavy.java @@ -1,6 +1,7 @@ package cn.nukkit.block; -import cn.nukkit.item.Item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.math.NukkitMath; import cn.nukkit.utils.BlockColor; @@ -46,6 +47,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } diff --git a/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateLight.java b/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateLight.java index 0f0821bc448..c686d117931 100644 --- a/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateLight.java +++ b/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateLight.java @@ -1,6 +1,7 @@ package cn.nukkit.block; -import cn.nukkit.item.Item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.math.NukkitMath; import cn.nukkit.utils.BlockColor; @@ -46,6 +47,7 @@ public int getToolType() { } @Override + @PowerNukkitOnly public int getToolTier() { return ItemTool.TIER_WOODEN; } From 233473b42202798758f79a4c85c382fbd80b7528 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 19:19:03 -0300 Subject: [PATCH 299/394] Add missing PowerNukkitOnly annotations --- dumps/needed-class-changes.json | 198 +----------------- src/main/java/cn/nukkit/block/BlockBell.java | 2 + .../java/cn/nukkit/block/BlockCarpet.java | 1 + .../cn/nukkit/block/BlockCarvedPumpkin.java | 4 + .../java/cn/nukkit/block/BlockCauldron.java | 6 +- .../cn/nukkit/block/BlockCauldronLava.java | 3 +- src/main/java/cn/nukkit/block/BlockCocoa.java | 2 + .../cn/nukkit/block/BlockConcretePowder.java | 1 + .../cn/nukkit/block/BlockCoralFanDead.java | 3 +- .../cn/nukkit/block/BlockCoralFanHang.java | 9 +- .../cn/nukkit/block/BlockCoralFanHang2.java | 1 + .../cn/nukkit/block/BlockCoralFanHang3.java | 1 + .../nukkit/block/BlockDaylightDetector.java | 2 + .../block/BlockDaylightDetectorInverted.java | 1 + .../java/cn/nukkit/block/BlockDispenser.java | 3 +- src/main/java/cn/nukkit/block/BlockDoor.java | 1 + .../cn/nukkit/block/BlockDoubleSlabBase.java | 2 +- .../block/BlockDoubleSlabBlackstone.java | 2 + .../BlockDoubleSlabBlackstonePolished.java | 2 + ...lockDoubleSlabBrickBlackstonePolished.java | 2 + .../nukkit/block/BlockDoubleSlabCrimson.java | 3 + .../block/BlockDoubleSlabRedSandstone.java | 2 + .../cn/nukkit/block/BlockDoubleSlabStone.java | 2 + .../nukkit/block/BlockDoubleSlabStone3.java | 2 + .../nukkit/block/BlockDoubleSlabStone4.java | 2 + .../nukkit/block/BlockDoubleSlabWarped.java | 4 +- .../cn/nukkit/block/BlockDoubleSlabWood.java | 4 +- .../java/cn/nukkit/block/BlockDropper.java | 1 + .../cn/nukkit/block/BlockSlabBlackstone.java | 2 + .../block/BlockSlabBlackstonePolished.java | 2 + .../BlockSlabBrickBlackstonePolished.java | 1 + .../cn/nukkit/block/BlockSlabCrimson.java | 2 + .../nukkit/block/BlockSlabRedSandstone.java | 2 + .../java/cn/nukkit/block/BlockSlabStone.java | 2 + .../java/cn/nukkit/block/BlockSlabStone3.java | 2 + .../java/cn/nukkit/block/BlockSlabStone4.java | 2 + .../java/cn/nukkit/block/BlockSlabWarped.java | 2 + .../java/cn/nukkit/block/BlockSlabWood.java | 2 + 38 files changed, 77 insertions(+), 208 deletions(-) diff --git a/dumps/needed-class-changes.json b/dumps/needed-class-changes.json index ccc8d7a5c0e..e235404e868 100644 --- a/dumps/needed-class-changes.json +++ b/dumps/needed-class-changes.json @@ -1,152 +1,11 @@ { - "cn.nukkit.block.BlockBell": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockBell#getAttachmentType()", - "cn.nukkit.block.BlockBell#setAttachmentType(int)" - ] - }, - "cn.nukkit.block.BlockCarpet": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCarpet#getProperties()" - ] - }, - "cn.nukkit.block.BlockCarvedPumpkin": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCarvedPumpkin#()" - ] - }, - "cn.nukkit.block.BlockCauldron": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCauldron#getFillLevel()", - "cn.nukkit.block.BlockCauldron#setFillLevel(int)" - ] - }, - "cn.nukkit.block.BlockCauldronLava": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCauldronLava#setFillLevel(int)" - ] - }, - "cn.nukkit.block.BlockCocoa": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCocoa#getGrowthStage()", - "cn.nukkit.block.BlockCocoa#grow()" - ] - }, - "cn.nukkit.block.BlockConcretePowder": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockConcretePowder#getDyeColor()" - ] - }, - "cn.nukkit.block.BlockCoralFanDead": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCoralFanDead#isDead()" - ] - }, - "cn.nukkit.block.BlockCoralFanHang": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCoralFanHang#getRootsFace()", - "cn.nukkit.block.BlockCoralFanHang#getType()", - "cn.nukkit.block.BlockCoralFanHang#isDead()" - ] - }, - "cn.nukkit.block.BlockCoralFanHang2": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCoralFanHang2#getType()" - ] - }, - "cn.nukkit.block.BlockCoralFanHang3": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockCoralFanHang3#getType()" - ] - }, - "cn.nukkit.block.BlockDaylightDetector": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDaylightDetector#isInverted()", - "cn.nukkit.block.BlockDaylightDetector#updatePower()" - ] - }, "cn.nukkit.block.BlockDaylightDetectorInverted": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockDaylightDetectorInverted#isInverted()" ] }, - "cn.nukkit.block.BlockDispenser": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDispenser#dispense()", - "cn.nukkit.block.BlockDispenser#getDispenseBehavior(Item)" - ] - }, - "cn.nukkit.block.BlockDoor": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoor#PROPERTIES" - ] - }, - "cn.nukkit.block.BlockDoubleSlabBlackstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabBlackstone#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabBlackstone#getSlabName()" - ] - }, - "cn.nukkit.block.BlockDoubleSlabBlackstonePolished": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabBlackstonePolished#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabBlackstonePolished#getSlabName()" - ] - }, - "cn.nukkit.block.BlockDoubleSlabBrickBlackstonePolished": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabBrickBlackstonePolished#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabBrickBlackstonePolished#getSlabName()" - ] - }, - "cn.nukkit.block.BlockDoubleSlabCrimson": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabCrimson#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabCrimson#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabCrimson#isCorrectTool(Item)" - ] - }, - "cn.nukkit.block.BlockDoubleSlabRedSandstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabRedSandstone#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabRedSandstone#getSlabName()" - ] - }, - "cn.nukkit.block.BlockDoubleSlabStone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabStone#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabStone#getSlabName()" - ] - }, - "cn.nukkit.block.BlockDoubleSlabStone3": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabStone3#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabStone3#getSlabName()" - ] - }, - "cn.nukkit.block.BlockDoubleSlabStone4": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabStone4#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabStone4#getSlabName()" - ] - }, - "cn.nukkit.block.BlockDoubleSlabWarped": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabWarped#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabWarped#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabWarped#isCorrectTool(Item)" - ] - }, - "cn.nukkit.block.BlockDoubleSlabWood": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDoubleSlabWood#getSingleSlabId()", - "cn.nukkit.block.BlockDoubleSlabWood#getSlabName()", - "cn.nukkit.block.BlockDoubleSlabWood#isCorrectTool(Item)" - ] - }, "cn.nukkit.block.BlockDropper": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDropper#dispense()", "cn.nukkit.block.BlockDropper#getDispenseBehavior(Item)" ] }, @@ -272,29 +131,6 @@ "cn.nukkit.block.BlockScaffolding#createFallingEntity(CompoundTag)" ] }, - "cn.nukkit.block.BlockSlabBlackstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabBlackstone#getSlabName()", - "cn.nukkit.block.BlockSlabBlackstone#isSameType(BlockSlab)" - ] - }, - "cn.nukkit.block.BlockSlabBlackstonePolished": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabBlackstonePolished#getSlabName()", - "cn.nukkit.block.BlockSlabBlackstonePolished#isSameType(BlockSlab)" - ] - }, - "cn.nukkit.block.BlockSlabBrickBlackstonePolished": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabBrickBlackstonePolished#getSlabName()" - ] - }, - "cn.nukkit.block.BlockSlabCrimson": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabCrimson#getSlabName()", - "cn.nukkit.block.BlockSlabCrimson#isSameType(BlockSlab)" - ] - }, "cn.nukkit.block.BlockSlabRedSandstone": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.block.BlockSlabRedSandstone#PRISMARINE", @@ -302,39 +138,7 @@ "cn.nukkit.block.BlockSlabRedSandstone#DARK_PRISMARINE", "cn.nukkit.block.BlockSlabRedSandstone#MOSSY_COBBLESTONE", "cn.nukkit.block.BlockSlabRedSandstone#SMOOTH_SANDSTONE", - "cn.nukkit.block.BlockSlabRedSandstone#RED_NETHER_BRICK", - "cn.nukkit.block.BlockSlabRedSandstone#getSlabName()", - "cn.nukkit.block.BlockSlabRedSandstone#isSameType(BlockSlab)" - ] - }, - "cn.nukkit.block.BlockSlabStone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabStone#getSlabName()", - "cn.nukkit.block.BlockSlabStone#isSameType(BlockSlab)" - ] - }, - "cn.nukkit.block.BlockSlabStone3": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabStone3#getSlabName()", - "cn.nukkit.block.BlockSlabStone3#isSameType(BlockSlab)" - ] - }, - "cn.nukkit.block.BlockSlabStone4": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabStone4#getSlabName()", - "cn.nukkit.block.BlockSlabStone4#isSameType(BlockSlab)" - ] - }, - "cn.nukkit.block.BlockSlabWarped": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabWarped#getSlabName()", - "cn.nukkit.block.BlockSlabWarped#isSameType(BlockSlab)" - ] - }, - "cn.nukkit.block.BlockSlabWood": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabWood#getSlabName()", - "cn.nukkit.block.BlockSlabWood#isSameType(BlockSlab)" + "cn.nukkit.block.BlockSlabRedSandstone#RED_NETHER_BRICK" ] }, "cn.nukkit.block.BlockSoulSand": { diff --git a/src/main/java/cn/nukkit/block/BlockBell.java b/src/main/java/cn/nukkit/block/BlockBell.java index f562c3f8a9e..66a05ef3b45 100644 --- a/src/main/java/cn/nukkit/block/BlockBell.java +++ b/src/main/java/cn/nukkit/block/BlockBell.java @@ -447,12 +447,14 @@ public void setAttachment(AttachmentType attachmentType) { @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Magic values.", replaceWith = "getAttachment()") + @PowerNukkitOnly public int getAttachmentType() { return getAttachment().ordinal(); } @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Magic values.", replaceWith = "setAttachment(AttachmentType)") + @PowerNukkitOnly public void setAttachmentType(int attachmentType) { setAttachment(AttachmentType.values()[attachmentType]); } diff --git a/src/main/java/cn/nukkit/block/BlockCarpet.java b/src/main/java/cn/nukkit/block/BlockCarpet.java index 4472d4e602e..467d7d7b6e2 100644 --- a/src/main/java/cn/nukkit/block/BlockCarpet.java +++ b/src/main/java/cn/nukkit/block/BlockCarpet.java @@ -42,6 +42,7 @@ public int getId() { @Nonnull @Override + @PowerNukkitOnly public BlockProperties getProperties() { return PROPERTIES; } diff --git a/src/main/java/cn/nukkit/block/BlockCarvedPumpkin.java b/src/main/java/cn/nukkit/block/BlockCarvedPumpkin.java index cf03b0d7f8f..03dbb807009 100644 --- a/src/main/java/cn/nukkit/block/BlockCarvedPumpkin.java +++ b/src/main/java/cn/nukkit/block/BlockCarvedPumpkin.java @@ -9,6 +9,10 @@ @PowerNukkitOnly public class BlockCarvedPumpkin extends BlockPumpkin { + @PowerNukkitOnly + public BlockCarvedPumpkin() { + } + @Override public int getId() { return CARVED_PUMPKIN; diff --git a/src/main/java/cn/nukkit/block/BlockCauldron.java b/src/main/java/cn/nukkit/block/BlockCauldron.java index 6d560fe9975..09f1f222f19 100644 --- a/src/main/java/cn/nukkit/block/BlockCauldron.java +++ b/src/main/java/cn/nukkit/block/BlockCauldron.java @@ -111,11 +111,13 @@ public boolean isFull() { public boolean isEmpty() { return getFillLevel() == FILL_LEVEL.getMinValue(); } - + + @PowerNukkitOnly public int getFillLevel() { return getIntValue(FILL_LEVEL); } - + + @PowerNukkitOnly public void setFillLevel(int fillLevel) { setIntValue(FILL_LEVEL, fillLevel); } diff --git a/src/main/java/cn/nukkit/block/BlockCauldronLava.java b/src/main/java/cn/nukkit/block/BlockCauldronLava.java index 99391d540fe..80b6c56b28d 100644 --- a/src/main/java/cn/nukkit/block/BlockCauldronLava.java +++ b/src/main/java/cn/nukkit/block/BlockCauldronLava.java @@ -56,7 +56,8 @@ public boolean hasEntityCollision() { protected AxisAlignedBB recalculateCollisionBoundingBox() { return shrink(0.3, 0.3, 0.3); } - + + @PowerNukkitOnly @Override public void setFillLevel(int fillLevel) { super.setFillLevel(fillLevel); diff --git a/src/main/java/cn/nukkit/block/BlockCocoa.java b/src/main/java/cn/nukkit/block/BlockCocoa.java index 04d8faae491..3d42f98a13f 100644 --- a/src/main/java/cn/nukkit/block/BlockCocoa.java +++ b/src/main/java/cn/nukkit/block/BlockCocoa.java @@ -207,10 +207,12 @@ public boolean onActivate(@Nonnull Item item, Player player) { return false; } + @PowerNukkitOnly public int getGrowthStage() { return this.getDamage() / 4; } + @PowerNukkitOnly public boolean grow() { Block block = this.clone(); block.setDamage(block.getDamage() + 4); diff --git a/src/main/java/cn/nukkit/block/BlockConcretePowder.java b/src/main/java/cn/nukkit/block/BlockConcretePowder.java index 49d1c422dbd..d2810463139 100644 --- a/src/main/java/cn/nukkit/block/BlockConcretePowder.java +++ b/src/main/java/cn/nukkit/block/BlockConcretePowder.java @@ -109,6 +109,7 @@ public BlockColor getColor() { return getDyeColor().getColor(); } + @PowerNukkitOnly public DyeColor getDyeColor() { return getPropertyValue(CommonBlockProperties.COLOR); } diff --git a/src/main/java/cn/nukkit/block/BlockCoralFanDead.java b/src/main/java/cn/nukkit/block/BlockCoralFanDead.java index 0dbfb92ab02..d50aebacddf 100644 --- a/src/main/java/cn/nukkit/block/BlockCoralFanDead.java +++ b/src/main/java/cn/nukkit/block/BlockCoralFanDead.java @@ -30,7 +30,8 @@ public String getName() { public BlockColor getColor() { return BlockColor.GRAY_BLOCK_COLOR; } - + + @PowerNukkitOnly @Override public boolean isDead() { return true; diff --git a/src/main/java/cn/nukkit/block/BlockCoralFanHang.java b/src/main/java/cn/nukkit/block/BlockCoralFanHang.java index 3d2330d258b..015347d630c 100644 --- a/src/main/java/cn/nukkit/block/BlockCoralFanHang.java +++ b/src/main/java/cn/nukkit/block/BlockCoralFanHang.java @@ -66,7 +66,8 @@ public String getName() { return name + " Wall Fan"; } } - + + @PowerNukkitOnly @Override public boolean isDead() { return (getDamage() & 0b10) == 0b10; @@ -80,7 +81,8 @@ public int onUpdate(int type) { return super.onUpdate(type); } } - + + @PowerNukkitOnly @Override public int getType() { if ((getDamage() & 0b1) == 0) { @@ -105,7 +107,8 @@ public BlockFace getBlockFace() { return BlockFace.SOUTH; } } - + + @PowerNukkitOnly @Override public BlockFace getRootsFace() { return getBlockFace().getOpposite(); diff --git a/src/main/java/cn/nukkit/block/BlockCoralFanHang2.java b/src/main/java/cn/nukkit/block/BlockCoralFanHang2.java index 317161ef2da..70679b0a397 100644 --- a/src/main/java/cn/nukkit/block/BlockCoralFanHang2.java +++ b/src/main/java/cn/nukkit/block/BlockCoralFanHang2.java @@ -45,6 +45,7 @@ public BlockProperties getProperties() { return PROPERTIES; } + @PowerNukkitOnly @Override public int getType() { if ((getDamage() & 0b1) == 0) { diff --git a/src/main/java/cn/nukkit/block/BlockCoralFanHang3.java b/src/main/java/cn/nukkit/block/BlockCoralFanHang3.java index 479ae084208..a41fd2a4573 100644 --- a/src/main/java/cn/nukkit/block/BlockCoralFanHang3.java +++ b/src/main/java/cn/nukkit/block/BlockCoralFanHang3.java @@ -45,6 +45,7 @@ public BlockProperties getProperties() { return PROPERTIES; } + @PowerNukkitOnly @Override public int getType() { return BlockCoral.TYPE_HORN; diff --git a/src/main/java/cn/nukkit/block/BlockDaylightDetector.java b/src/main/java/cn/nukkit/block/BlockDaylightDetector.java index 5692b9532ab..e800b852a3b 100644 --- a/src/main/java/cn/nukkit/block/BlockDaylightDetector.java +++ b/src/main/java/cn/nukkit/block/BlockDaylightDetector.java @@ -141,10 +141,12 @@ public boolean isPowerSource() { return true; } + @PowerNukkitOnly public boolean isInverted() { return false; } + @PowerNukkitOnly public void updatePower() { int i; if (getLevel().getDimension() == Level.DIMENSION_OVERWORLD) { diff --git a/src/main/java/cn/nukkit/block/BlockDaylightDetectorInverted.java b/src/main/java/cn/nukkit/block/BlockDaylightDetectorInverted.java index bd9368bc7c5..84fd57e3014 100644 --- a/src/main/java/cn/nukkit/block/BlockDaylightDetectorInverted.java +++ b/src/main/java/cn/nukkit/block/BlockDaylightDetectorInverted.java @@ -39,6 +39,7 @@ public boolean onActivate(@Nonnull Item item, Player player) { return true; } + @PowerNukkitDifference @Override public boolean isInverted() { return true; diff --git a/src/main/java/cn/nukkit/block/BlockDispenser.java b/src/main/java/cn/nukkit/block/BlockDispenser.java index 50b5dd20c12..79fcafc0a87 100644 --- a/src/main/java/cn/nukkit/block/BlockDispenser.java +++ b/src/main/java/cn/nukkit/block/BlockDispenser.java @@ -227,7 +227,7 @@ public int onUpdate(int type) { return 0; } - @PowerNukkitDifference(info = "Trigger observer on dispense fail (with #setDirty()).", since = "1.4.0.0-PN") + @PowerNukkitOnly public void dispense() { InventoryHolder blockEntity = getBlockEntity(); @@ -296,6 +296,7 @@ public void dispense() { } } + @PowerNukkitOnly protected DispenseBehavior getDispenseBehavior(Item item) { return DispenseBehaviorRegister.getBehavior(item.getId()); } diff --git a/src/main/java/cn/nukkit/block/BlockDoor.java b/src/main/java/cn/nukkit/block/BlockDoor.java index 4c719990843..30f123e7f1e 100644 --- a/src/main/java/cn/nukkit/block/BlockDoor.java +++ b/src/main/java/cn/nukkit/block/BlockDoor.java @@ -56,6 +56,7 @@ public abstract class BlockDoor extends BlockTransparentMeta implements Redstone BlockFace.WEST, BlockFace.NORTH }).ordinal(true); + @PowerNukkitOnly protected static final BlockProperties PROPERTIES = new BlockProperties(DOOR_DIRECTION, OPEN, UPPER_BLOCK, DOOR_HINGE); @Deprecated @DeprecationDetails(reason = "Use the accessors or properties instead", since = "1.4.0.0-PN", replaceWith = "CommonBlockProperties.OPEN") diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabBase.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabBase.java index 47bdb0f0a06..d27cf026cfd 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabBase.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabBase.java @@ -32,7 +32,7 @@ public BlockProperties getProperties() { @PowerNukkitOnly @Since("1.4.0.0-PN") public abstract String getSlabName(); - + @PowerNukkitOnly @Since("1.4.0.0-PN") public abstract int getSingleSlabId(); diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabBlackstone.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabBlackstone.java index 836ccdb18b0..e906c1a8d91 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabBlackstone.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabBlackstone.java @@ -23,6 +23,7 @@ protected BlockDoubleSlabBlackstone(int meta) { super(meta); } + @PowerNukkitOnly @Override public String getSlabName() { return "Double Blackstone Slab"; @@ -56,6 +57,7 @@ public int getToolType() { return ItemTool.TYPE_PICKAXE; } + @PowerNukkitOnly @Override public int getSingleSlabId() { return BLACKSTONE_SLAB; diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabBlackstonePolished.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabBlackstonePolished.java index 750198fcaa8..d4b90127a00 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabBlackstonePolished.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabBlackstonePolished.java @@ -25,11 +25,13 @@ public int getId() { return POLISHED_BLACKSTONE_DOUBLE_SLAB; } + @PowerNukkitOnly @Override public int getSingleSlabId() { return POLISHED_BLACKSTONE_SLAB; } + @PowerNukkitOnly @Override public String getSlabName() { return "Polished Blackstone"; diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabBrickBlackstonePolished.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabBrickBlackstonePolished.java index ec24afa1fe3..29d2e43a11d 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabBrickBlackstonePolished.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabBrickBlackstonePolished.java @@ -22,11 +22,13 @@ public int getId() { return POLISHED_BLACKSTONE_BRICK_DOUBLE_SLAB; } + @PowerNukkitOnly @Override public int getSingleSlabId() { return POLISHED_BLACKSTONE_BRICK_SLAB; } + @PowerNukkitOnly @Override public String getSlabName() { return "Polished Blackstone Brick"; diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabCrimson.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabCrimson.java index b0de9d0f8a9..81b11f66030 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabCrimson.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabCrimson.java @@ -32,17 +32,20 @@ public BlockProperties getProperties() { return BlockSlab.SIMPLE_SLAB_PROPERTIES; } + @PowerNukkitOnly @Override public String getSlabName() { return "Crimson"; } + @PowerNukkitOnly @Override public int getSingleSlabId() { return CRIMSON_SLAB; } //TODO Adjust or remove this when merging https://github.com/PowerNukkit/PowerNukkit/pull/370 + @PowerNukkitOnly @Override protected boolean isCorrectTool(Item item) { return true; diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabRedSandstone.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabRedSandstone.java index 615b286b14b..a2183b252d7 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabRedSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabRedSandstone.java @@ -50,6 +50,7 @@ public void setSlabType(StoneSlab2Type type) { setPropertyValue(StoneSlab2Type.PROPERTY, type); } + @PowerNukkitOnly @Override public String getSlabName() { return getSlabType().getEnglishName(); @@ -70,6 +71,7 @@ public int getToolType() { return ItemTool.TYPE_PICKAXE; } + @PowerNukkitOnly @Override public int getSingleSlabId() { return RED_SANDSTONE_SLAB; diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone.java index 12aa2b77f64..acdc9930830 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone.java @@ -66,6 +66,7 @@ public StoneSlab1Type getSlabType() { return getPropertyValue(StoneSlab1Type.PROPERTY); } + @PowerNukkitOnly @Override public int getSingleSlabId() { return STONE_SLAB; @@ -77,6 +78,7 @@ public void setSlabType(StoneSlab1Type type) { setPropertyValue(StoneSlab1Type.PROPERTY, type); } + @PowerNukkitOnly @Override public String getSlabName() { return getSlabType().getEnglishName(); diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone3.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone3.java index 00dbb892b04..996dc568d74 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone3.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone3.java @@ -55,6 +55,7 @@ public void setSlabType(StoneSlab3Type type) { setPropertyValue(StoneSlab3Type.PROPERTY, type); } + @PowerNukkitOnly @Override public String getSlabName() { return getSlabType().getEnglishName(); @@ -75,6 +76,7 @@ public int getToolType() { return ItemTool.TYPE_PICKAXE; } + @PowerNukkitOnly @Override public int getSingleSlabId() { return STONE_SLAB3; diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone4.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone4.java index 52595987b20..8216dd6ea04 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabStone4.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabStone4.java @@ -52,6 +52,7 @@ public void setSlabType(StoneSlab4Type type) { setPropertyValue(StoneSlab4Type.PROPERTY, type); } + @PowerNukkitOnly @Override public String getSlabName() { return getSlabType().getEnglishName(); @@ -72,6 +73,7 @@ public int getToolType() { return ItemTool.TYPE_PICKAXE; } + @PowerNukkitOnly @Override public int getSingleSlabId() { return STONE_SLAB4; diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabWarped.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabWarped.java index a639bdcd3dc..e43aa8fd3e0 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabWarped.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabWarped.java @@ -21,11 +21,13 @@ public int getId() { return WARPED_DOUBLE_SLAB; } + @PowerNukkitOnly @Override public String getSlabName() { return "Warped"; } + @PowerNukkitOnly @Override public int getSingleSlabId() { return WARPED_SLAB; @@ -33,7 +35,7 @@ public int getSingleSlabId() { //TODO Adjust or remove this when merging https://github.com/PowerNukkit/PowerNukkit/pull/370 @Override - protected boolean isCorrectTool(Item item) { + protected @PowerNukkitOnly @Since("1.4.0.0-PN") boolean isCorrectTool(Item item) { return true; } diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabWood.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabWood.java index 4f8596a81a8..9b7d307e1dc 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabWood.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabWood.java @@ -51,6 +51,7 @@ public void setWoodType(WoodType type) { setPropertyValue(WoodType.PROPERTY, type); } + @PowerNukkitOnly @Override public String getSlabName() { return getWoodType().getEnglishName(); @@ -76,6 +77,7 @@ public int getToolType() { return ItemTool.TYPE_AXE; } + @PowerNukkitOnly @Override public int getSingleSlabId() { return WOOD_SLAB; @@ -83,7 +85,7 @@ public int getSingleSlabId() { //TODO Adjust or remove this when merging https://github.com/PowerNukkit/PowerNukkit/pull/370 @Override - protected boolean isCorrectTool(Item item) { + protected @PowerNukkitOnly @Since("1.4.0.0-PN") boolean isCorrectTool(Item item) { return true; } diff --git a/src/main/java/cn/nukkit/block/BlockDropper.java b/src/main/java/cn/nukkit/block/BlockDropper.java index 9e60cb058d0..0b81cd1b574 100644 --- a/src/main/java/cn/nukkit/block/BlockDropper.java +++ b/src/main/java/cn/nukkit/block/BlockDropper.java @@ -51,6 +51,7 @@ public String getBlockEntityType() { return BlockEntity.DROPPER; } + @PowerNukkitOnly @Override public void dispense() { super.dispense(); diff --git a/src/main/java/cn/nukkit/block/BlockSlabBlackstone.java b/src/main/java/cn/nukkit/block/BlockSlabBlackstone.java index a1c65b4ab85..0a009413e82 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabBlackstone.java +++ b/src/main/java/cn/nukkit/block/BlockSlabBlackstone.java @@ -37,11 +37,13 @@ public BlockProperties getProperties() { return SIMPLE_SLAB_PROPERTIES; } + @PowerNukkitOnly @Override public String getSlabName() { return "Blackstone Slab"; } + @PowerNukkitOnly @Override public boolean isSameType(BlockSlab slab) { return slab.getId() == getId(); diff --git a/src/main/java/cn/nukkit/block/BlockSlabBlackstonePolished.java b/src/main/java/cn/nukkit/block/BlockSlabBlackstonePolished.java index 1fef43bcfbc..2ab7500790e 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabBlackstonePolished.java +++ b/src/main/java/cn/nukkit/block/BlockSlabBlackstonePolished.java @@ -45,11 +45,13 @@ public BlockProperties getProperties() { return SIMPLE_SLAB_PROPERTIES; } + @PowerNukkitOnly @Override public String getSlabName() { return "Polished Blackstone"; } + @PowerNukkitOnly @Override public boolean isSameType(BlockSlab slab) { return getId() == slab.getId(); diff --git a/src/main/java/cn/nukkit/block/BlockSlabBrickBlackstonePolished.java b/src/main/java/cn/nukkit/block/BlockSlabBrickBlackstonePolished.java index 5b973dc4008..7efcfe4bb1f 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabBrickBlackstonePolished.java +++ b/src/main/java/cn/nukkit/block/BlockSlabBrickBlackstonePolished.java @@ -29,6 +29,7 @@ public int getId() { return POLISHED_BLACKSTONE_BRICK_SLAB; } + @PowerNukkitOnly @Override public String getSlabName() { return "Polished Blackstone Brick"; diff --git a/src/main/java/cn/nukkit/block/BlockSlabCrimson.java b/src/main/java/cn/nukkit/block/BlockSlabCrimson.java index 3d375ea0092..b2c852156a6 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabCrimson.java +++ b/src/main/java/cn/nukkit/block/BlockSlabCrimson.java @@ -25,6 +25,7 @@ public BlockSlabCrimson(int meta) { super(meta, CRIMSON_DOUBLE_SLAB); } + @PowerNukkitOnly @Override public String getSlabName() { return "Crimson"; @@ -43,6 +44,7 @@ public BlockProperties getProperties() { return SIMPLE_SLAB_PROPERTIES; } + @PowerNukkitOnly @Override public boolean isSameType(BlockSlab slab) { return getId() == slab.getId(); diff --git a/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java b/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java index 396c3039ca4..f7e9d579742 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java @@ -51,6 +51,7 @@ public BlockProperties getProperties() { return PROPERTIES; } + @PowerNukkitOnly @Override public String getSlabName() { return getSlabType().getEnglishName(); @@ -68,6 +69,7 @@ public void setSlabType(StoneSlab2Type type) { setPropertyValue(StoneSlab2Type.PROPERTY, type); } + @PowerNukkitOnly @Override public boolean isSameType(BlockSlab slab) { return slab.getId() == getId() && getSlabType().equals(slab.getPropertyValue(StoneSlab2Type.PROPERTY)); diff --git a/src/main/java/cn/nukkit/block/BlockSlabStone.java b/src/main/java/cn/nukkit/block/BlockSlabStone.java index e93c009c469..84f18dd8a1d 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabStone.java +++ b/src/main/java/cn/nukkit/block/BlockSlabStone.java @@ -51,11 +51,13 @@ public BlockProperties getProperties() { return PROPERTIES; } + @PowerNukkitOnly @Override public String getSlabName() { return getSlabType().getEnglishName(); } + @PowerNukkitOnly @Override public boolean isSameType(BlockSlab slab) { return slab.getId() == getId() && getSlabType().equals(slab.getPropertyValue(StoneSlab1Type.PROPERTY)); diff --git a/src/main/java/cn/nukkit/block/BlockSlabStone3.java b/src/main/java/cn/nukkit/block/BlockSlabStone3.java index d340990bcc4..1d9b3c11cca 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabStone3.java +++ b/src/main/java/cn/nukkit/block/BlockSlabStone3.java @@ -50,6 +50,7 @@ public BlockProperties getProperties() { return PROPERTIES; } + @PowerNukkitOnly @Override public String getSlabName() { return getSlabType().getEnglishName(); @@ -68,6 +69,7 @@ public void setSlabType(StoneSlab3Type type) { } + @PowerNukkitOnly @Override public boolean isSameType(BlockSlab slab) { return slab.getId() == getId() && getSlabType().equals(slab.getPropertyValue(StoneSlab3Type.PROPERTY)); diff --git a/src/main/java/cn/nukkit/block/BlockSlabStone4.java b/src/main/java/cn/nukkit/block/BlockSlabStone4.java index ae4b1667ae6..1eb95b6febf 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabStone4.java +++ b/src/main/java/cn/nukkit/block/BlockSlabStone4.java @@ -59,11 +59,13 @@ public void setSlabType(StoneSlab4Type type) { setPropertyValue(StoneSlab4Type.PROPERTY, type); } + @PowerNukkitOnly @Override public String getSlabName() { return getSlabType().getEnglishName(); } + @PowerNukkitOnly @Override public boolean isSameType(BlockSlab slab) { return slab.getId() == getId() && getSlabType().equals(slab.getPropertyValue(StoneSlab4Type.PROPERTY)); diff --git a/src/main/java/cn/nukkit/block/BlockSlabWarped.java b/src/main/java/cn/nukkit/block/BlockSlabWarped.java index 8389bcf65f0..d8373891d1b 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabWarped.java +++ b/src/main/java/cn/nukkit/block/BlockSlabWarped.java @@ -26,6 +26,7 @@ public BlockSlabWarped(int meta) { super(meta, WARPED_DOUBLE_SLAB); } + @PowerNukkitOnly @Override public String getSlabName() { return "Warped"; @@ -44,6 +45,7 @@ public BlockProperties getProperties() { return SIMPLE_SLAB_PROPERTIES; } + @PowerNukkitOnly @Override public boolean isSameType(BlockSlab slab) { return getId() == slab.getId(); diff --git a/src/main/java/cn/nukkit/block/BlockSlabWood.java b/src/main/java/cn/nukkit/block/BlockSlabWood.java index b27c5b756e0..3564c6f6e67 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabWood.java +++ b/src/main/java/cn/nukkit/block/BlockSlabWood.java @@ -34,6 +34,7 @@ public String getName() { return (isOnTop()? "Upper " : "") + getSlabName() + " Wood Slab"; } + @PowerNukkitOnly @Override public String getSlabName() { return getWoodType().getEnglishName(); @@ -44,6 +45,7 @@ public int getId() { return WOOD_SLAB; } + @PowerNukkitOnly @Override public boolean isSameType(BlockSlab slab) { return slab.getId() == getId() && slab.getPropertyValue(WoodType.PROPERTY).equals(getWoodType()); From d942f97bd3ed0cd30e92698307306442d508a7cb Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 20:42:25 -0300 Subject: [PATCH 300/394] Add missing PowerNukkitOnly annotations --- dumps/needed-class-changes.json | 641 +----------------- .../block/BlockDaylightDetectorInverted.java | 3 +- .../java/cn/nukkit/block/BlockDropper.java | 3 +- .../java/cn/nukkit/block/BlockEnderChest.java | 1 + .../cn/nukkit/block/BlockEntityHolder.java | 2 +- .../java/cn/nukkit/block/BlockFallable.java | 2 + src/main/java/cn/nukkit/block/BlockFence.java | 1 + .../java/cn/nukkit/block/BlockFenceBase.java | 2 + .../java/cn/nukkit/block/BlockFlower.java | 2 +- .../cn/nukkit/block/BlockFungusCrimson.java | 2 + .../cn/nukkit/block/BlockFungusWarped.java | 2 + src/main/java/cn/nukkit/block/BlockHoney.java | 4 + .../cn/nukkit/block/BlockHyphaeCrimson.java | 1 + .../cn/nukkit/block/BlockHyphaeWarped.java | 1 + .../java/cn/nukkit/block/BlockLeaves2.java | 2 + .../java/cn/nukkit/block/BlockLectern.java | 2 +- .../java/cn/nukkit/block/BlockLiquid.java | 1 + .../java/cn/nukkit/block/BlockPiston.java | 2 + .../java/cn/nukkit/block/BlockPistonBase.java | 5 +- .../java/cn/nukkit/block/BlockPistonHead.java | 6 + .../cn/nukkit/block/BlockPistonSticky.java | 2 + .../java/cn/nukkit/block/BlockPumpkin.java | 6 +- .../cn/nukkit/block/BlockRedstoneDiode.java | 3 +- .../cn/nukkit/block/BlockRedstoneWire.java | 2 +- .../cn/nukkit/block/BlockRespawnAnchor.java | 14 +- .../java/cn/nukkit/block/BlockSandstone.java | 1 + .../cn/nukkit/block/BlockScaffolding.java | 1 + .../nukkit/block/BlockSlabRedSandstone.java | 12 +- .../java/cn/nukkit/block/BlockSoulSand.java | 2 + .../java/cn/nukkit/block/BlockSoulSoil.java | 1 + .../java/cn/nukkit/block/BlockSoulTorch.java | 1 + .../cn/nukkit/block/BlockStemCrimson.java | 1 + .../cn/nukkit/block/BlockStemStripped.java | 1 + .../java/cn/nukkit/block/BlockStemWarped.java | 1 + .../java/cn/nukkit/block/BlockWallBanner.java | 2 + .../java/cn/nukkit/block/BlockWallBase.java | 2 +- .../java/cn/nukkit/block/BlockWallSign.java | 3 + src/main/java/cn/nukkit/block/BlockWater.java | 1 + .../java/cn/nukkit/block/BlockWitherRose.java | 1 + src/main/java/cn/nukkit/block/BlockWood.java | 3 +- src/main/java/cn/nukkit/block/BlockWood2.java | 2 + .../java/cn/nukkit/block/BlockWoodBark.java | 2 + .../cn/nukkit/block/BlockWoodStripped.java | 2 + .../nukkit/block/BlockWoodStrippedAcacia.java | 1 + .../nukkit/block/BlockWoodStrippedBirch.java | 1 + .../block/BlockWoodStrippedDarkOak.java | 1 + .../nukkit/block/BlockWoodStrippedJungle.java | 2 + .../cn/nukkit/block/BlockWoodStrippedOak.java | 2 + .../nukkit/block/BlockWoodStrippedSpruce.java | 2 + .../cn/nukkit/blockentity/BlockEntity.java | 6 +- .../blockentity/BlockEntityBeehive.java | 3 +- .../blockentity/BlockEntityBlastFurnace.java | 7 + .../blockentity/BlockEntityCauldron.java | 11 +- .../blockentity/BlockEntityDispenser.java | 2 + .../blockentity/BlockEntityDropper.java | 2 + .../blockentity/BlockEntityFurnace.java | 9 + .../blockentity/BlockEntityMovingBlock.java | 5 + .../blockentity/BlockEntityPistonArm.java | 11 +- .../nukkit/blockentity/BlockEntitySmoker.java | 7 + .../blockentity/BlockEntitySpawnable.java | 3 + .../blockproperty/ArrayBlockProperty.java | 8 + .../nukkit/blockproperty/BlockProperties.java | 3 + .../blockproperty/BooleanBlockProperty.java | 11 + .../blockproperty/IntBlockProperty.java | 9 +- .../UnsignedIntBlockProperty.java | 7 + .../BigIntegerMutableBlockState.java | 13 +- .../java/cn/nukkit/blockstate/BlockState.java | 21 +- .../nukkit/blockstate/BlockStateRepair.java | 4 + .../blockstate/ByteMutableBlockState.java | 11 +- .../blockstate/IntMutableBlockState.java | 11 +- .../blockstate/LongMutableBlockState.java | 10 +- .../blockstate/ZeroMutableBlockState.java | 3 +- .../command/CapturingCommandSender.java | 13 +- src/main/java/cn/nukkit/command/Command.java | 4 +- .../dispenser/BoatDispenseBehavior.java | 5 + .../dispenser/BucketDispenseBehavior.java | 2 + .../dispenser/DefaultDispenseBehavior.java | 1 + .../dispenser/DispenseBehaviorRegister.java | 2 + .../dispenser/DropperDispenseBehavior.java | 4 + .../nukkit/dispenser/DyeDispenseBehavior.java | 5 + .../EmptyBucketDispenseBehavior.java | 2 + .../dispenser/FireworksDispenseBehavior.java | 5 + .../FlintAndSteelDispenseBehavior.java | 6 +- .../dispenser/ProjectileDispenseBehavior.java | 3 +- .../dispenser/ShulkerBoxDispenseBehavior.java | 5 + .../dispenser/SpawnEggDispenseBehavior.java | 5 + .../nukkit/dispenser/TNTDispenseBehavior.java | 5 + .../event/entity/CreatureSpawnEvent.java | 2 + .../event/entity/EntityExplodeEvent.java | 1 + .../event/player/PlayerBucketEmptyEvent.java | 2 + .../event/player/PlayerBucketEvent.java | 3 +- .../event/player/PlayerBucketFillEvent.java | 2 + .../event/vehicle/VehicleDamageEvent.java | 2 + .../event/vehicle/VehicleDestroyEvent.java | 2 + .../cn/nukkit/inventory/BaseInventory.java | 3 + .../nukkit/inventory/BlastFurnaceRecipe.java | 1 + .../cn/nukkit/inventory/CampfireRecipe.java | 1 + .../cn/nukkit/inventory/CraftingManager.java | 20 +- .../cn/nukkit/inventory/FurnaceInventory.java | 2 + .../nukkit/inventory/GrindstoneInventory.java | 1 + 100 files changed, 361 insertions(+), 685 deletions(-) diff --git a/dumps/needed-class-changes.json b/dumps/needed-class-changes.json index e235404e868..899b37d03ae 100644 --- a/dumps/needed-class-changes.json +++ b/dumps/needed-class-changes.json @@ -1,467 +1,7 @@ { - "cn.nukkit.block.BlockDaylightDetectorInverted": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDaylightDetectorInverted#isInverted()" - ] - }, - "cn.nukkit.block.BlockDropper": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockDropper#getDispenseBehavior(Item)" - ] - }, - "cn.nukkit.block.BlockEnderChest": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockEnderChest#getBlockEntity()" - ] - }, - "cn.nukkit.block.BlockFallable": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFallable#createFallingEntity(CompoundTag)" - ] - }, - "cn.nukkit.block.BlockFence": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFence#PROPERTIES" - ] - }, - "cn.nukkit.block.BlockFenceBase": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFenceBase#getWoodType()", - "cn.nukkit.block.BlockFenceBase#setWoodType(WoodType)" - ] - }, - "cn.nukkit.block.BlockFlower": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFlower#canPlantOn(Block)" - ] - }, - "cn.nukkit.block.BlockFungusCrimson": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFungusCrimson#canGrowOn(Block)", - "cn.nukkit.block.BlockFungusCrimson#grow(Player)" - ] - }, - "cn.nukkit.block.BlockFungusWarped": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockFungusWarped#canGrowOn(Block)", - "cn.nukkit.block.BlockFungusWarped#grow(Player)" - ] - }, - "cn.nukkit.block.BlockHoney": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockHoney#()" - ] - }, - "cn.nukkit.block.BlockHyphaeCrimson": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockHyphaeCrimson#getStrippedState()" - ] - }, - "cn.nukkit.block.BlockHyphaeWarped": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockHyphaeWarped#getStrippedState()" - ] - }, - "cn.nukkit.block.BlockLeaves2": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLeaves2#getType()", - "cn.nukkit.block.BlockLeaves2#setType(WoodType)" - ] - }, - "cn.nukkit.block.BlockLectern": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLectern#executeRedstonePulse()" - ] - }, - "cn.nukkit.block.BlockLiquid": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockLiquid#usesWaterLogging()" - ] - }, - "cn.nukkit.block.BlockPiston": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPiston#getPistonHeadBlockId()" - ] - }, - "cn.nukkit.block.BlockPistonBase": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPistonBase#canPush(Block, BlockFace, boolean, boolean)", - "cn.nukkit.block.BlockPistonBase#createHead(int)", - "cn.nukkit.block.BlockPistonBase#getPistonHeadBlockId()" - ] - }, - "cn.nukkit.block.BlockPistonHead": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPistonHead#getBlockFace()" - ] - }, - "cn.nukkit.block.BlockPistonSticky": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPistonSticky#getPistonHeadBlockId()" - ] - }, - "cn.nukkit.block.BlockPumpkin": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockPumpkin#getProperties()", - "cn.nukkit.block.BlockPumpkin#setBlockFace(BlockFace)" - ] - }, - "cn.nukkit.block.BlockRedstoneDiode": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockRedstoneDiode#isSupportValid(Block)" - ] - }, - "cn.nukkit.block.BlockRedstoneWire": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockRedstoneWire#canBePlacedOn(Block)" - ] - }, - "cn.nukkit.block.BlockRespawnAnchor": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockRespawnAnchor#()" - ] - }, - "cn.nukkit.block.BlockSandstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSandstone#getSandstoneType()" - ] - }, - "cn.nukkit.block.BlockScaffolding": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockScaffolding#createFallingEntity(CompoundTag)" - ] - }, - "cn.nukkit.block.BlockSlabRedSandstone": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSlabRedSandstone#PRISMARINE", - "cn.nukkit.block.BlockSlabRedSandstone#PRISMARINE_BRICKS", - "cn.nukkit.block.BlockSlabRedSandstone#DARK_PRISMARINE", - "cn.nukkit.block.BlockSlabRedSandstone#MOSSY_COBBLESTONE", - "cn.nukkit.block.BlockSlabRedSandstone#SMOOTH_SANDSTONE", - "cn.nukkit.block.BlockSlabRedSandstone#RED_NETHER_BRICK" - ] - }, - "cn.nukkit.block.BlockSoulSand": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSoulSand#isSoulSpeedCompatible()" - ] - }, - "cn.nukkit.block.BlockSoulSoil": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSoulSoil#isSoulSpeedCompatible()" - ] - }, - "cn.nukkit.block.BlockSoulTorch": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockSoulTorch#(int)" - ] - }, - "cn.nukkit.block.BlockStemCrimson": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStemCrimson#getStrippedState()" - ] - }, - "cn.nukkit.block.BlockStemStripped": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStemStripped#getStrippedState()" - ] - }, - "cn.nukkit.block.BlockStemWarped": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockStemWarped#getStrippedState()" - ] - }, - "cn.nukkit.block.BlockWallBanner": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWallBanner#getDirection()", - "cn.nukkit.block.BlockWallBanner#setDirection(CompassRoseDirection)" - ] - }, - "cn.nukkit.block.BlockWallBase": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWallBase#canConnect(Block)" - ] - }, - "cn.nukkit.block.BlockWallSign": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWallSign#getSignDirection()", - "cn.nukkit.block.BlockWallSign#getWallId()", - "cn.nukkit.block.BlockWallSign#setSignDirection(CompassRoseDirection)" - ] - }, - "cn.nukkit.block.BlockWater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWater#usesWaterLogging()" - ] - }, - "cn.nukkit.block.BlockWitherRose": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWitherRose#canPlantOn(Block)" - ] - }, - "cn.nukkit.block.BlockWood": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWood#getStrippedState()" - ] - }, - "cn.nukkit.block.BlockWood2": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWood2#getWoodType()", - "cn.nukkit.block.BlockWood2#setWoodType(WoodType)" - ] - }, - "cn.nukkit.block.BlockWoodBark": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodBark#getWoodType()", - "cn.nukkit.block.BlockWoodBark#setWoodType(WoodType)" - ] - }, - "cn.nukkit.block.BlockWoodStripped": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStripped#getStrippedState()", - "cn.nukkit.block.BlockWoodStripped#setWoodType(WoodType)" - ] - }, - "cn.nukkit.block.BlockWoodStrippedAcacia": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStrippedAcacia#getWoodType()" - ] - }, - "cn.nukkit.block.BlockWoodStrippedBirch": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStrippedBirch#getWoodType()" - ] - }, - "cn.nukkit.block.BlockWoodStrippedDarkOak": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStrippedDarkOak#getWoodType()" - ] - }, - "cn.nukkit.block.BlockWoodStrippedJungle": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStrippedJungle#getWoodType()" - ] - }, - "cn.nukkit.block.BlockWoodStrippedOak": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStrippedOak#getWoodType()" - ] - }, - "cn.nukkit.block.BlockWoodStrippedSpruce": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.block.BlockWoodStrippedSpruce#getWoodType()" - ] - }, - "cn.nukkit.blockentity.BlockEntity": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntity#createBlockEntity(String, Position, CompoundTag, Object[])", - "cn.nukkit.blockentity.BlockEntity#createBlockEntity(String, Position, Object[])", - "cn.nukkit.blockentity.BlockEntity#getLevelBlockEntity()", - "cn.nukkit.blockentity.BlockEntity#onBreak(boolean)" - ] - }, - "cn.nukkit.blockentity.BlockEntityBeehive": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityBeehive#onBreak(boolean)" - ] - }, - "cn.nukkit.blockentity.BlockEntityBlastFurnace": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityBlastFurnace#getBurningBlockId()", - "cn.nukkit.blockentity.BlockEntityBlastFurnace#getClientName()", - "cn.nukkit.blockentity.BlockEntityBlastFurnace#getFurnaceName()", - "cn.nukkit.blockentity.BlockEntityBlastFurnace#getIdleBlockId()", - "cn.nukkit.blockentity.BlockEntityBlastFurnace#getInventoryType()", - "cn.nukkit.blockentity.BlockEntityBlastFurnace#getSpeedMultiplier()", - "cn.nukkit.blockentity.BlockEntityBlastFurnace#matchRecipe(Item)" - ] - }, - "cn.nukkit.blockentity.BlockEntityCauldron": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_EMPTY", - "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_NORMAL", - "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_SPLASH", - "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_LINGERING", - "cn.nukkit.blockentity.BlockEntityCauldron#POTION_TYPE_LAVA", - "cn.nukkit.blockentity.BlockEntityCauldron#getPotionType()", - "cn.nukkit.blockentity.BlockEntityCauldron#setPotionType(int)" - ] - }, - "cn.nukkit.blockentity.BlockEntityDispenser": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityDispenser#createInventory()", - "cn.nukkit.blockentity.BlockEntityDispenser#getBlockEntityName()" - ] - }, - "cn.nukkit.blockentity.BlockEntityDropper": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityDropper#createInventory()", - "cn.nukkit.blockentity.BlockEntityDropper#getBlockEntityName()" - ] - }, - "cn.nukkit.blockentity.BlockEntityFurnace": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityFurnace#getBurningBlockId()", - "cn.nukkit.blockentity.BlockEntityFurnace#getClientName()", - "cn.nukkit.blockentity.BlockEntityFurnace#getFurnaceName()", - "cn.nukkit.blockentity.BlockEntityFurnace#getIdleBlockId()", - "cn.nukkit.blockentity.BlockEntityFurnace#getInventoryType()", - "cn.nukkit.blockentity.BlockEntityFurnace#getSpeedMultiplier()", - "cn.nukkit.blockentity.BlockEntityFurnace#matchRecipe(Item)", - "cn.nukkit.blockentity.BlockEntityFurnace#setBurning(boolean)" - ] - }, - "cn.nukkit.blockentity.BlockEntityMovingBlock": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityMovingBlock#blockString", - "cn.nukkit.blockentity.BlockEntityMovingBlock#getBlockEntity()", - "cn.nukkit.blockentity.BlockEntityMovingBlock#getMovingBlock()", - "cn.nukkit.blockentity.BlockEntityMovingBlock#getMovingBlockString()", - "cn.nukkit.blockentity.BlockEntityMovingBlock#moveCollidedEntities(BlockEntityPistonArm, BlockFace)" - ] - }, - "cn.nukkit.blockentity.BlockEntityPistonArm": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntityPistonArm#MOVE_STEP", - "cn.nukkit.blockentity.BlockEntityPistonArm#attachedBlocks", - "cn.nukkit.blockentity.BlockEntityPistonArm#move(boolean, List)" - ] - }, - "cn.nukkit.blockentity.BlockEntitySmoker": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntitySmoker#getBurningBlockId()", - "cn.nukkit.blockentity.BlockEntitySmoker#getClientName()", - "cn.nukkit.blockentity.BlockEntitySmoker#getFurnaceName()", - "cn.nukkit.blockentity.BlockEntitySmoker#getIdleBlockId()", - "cn.nukkit.blockentity.BlockEntitySmoker#getInventoryType()", - "cn.nukkit.blockentity.BlockEntitySmoker#getSpeedMultiplier()", - "cn.nukkit.blockentity.BlockEntitySmoker#matchRecipe(Item)" - ] - }, - "cn.nukkit.blockentity.BlockEntitySpawnable": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockentity.BlockEntitySpawnable#getSpawnPacket()", - "cn.nukkit.blockentity.BlockEntitySpawnable#getSpawnPacket(CompoundTag)" - ] - }, - "cn.nukkit.blockproperty.ArrayBlockProperty": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockproperty.ArrayBlockProperty#getIntValueForMeta(int)", - "cn.nukkit.blockproperty.ArrayBlockProperty#getMetaForValue(E)", - "cn.nukkit.blockproperty.ArrayBlockProperty#getPersistenceValueForMeta(int)", - "cn.nukkit.blockproperty.ArrayBlockProperty#getUniverse()", - "cn.nukkit.blockproperty.ArrayBlockProperty#getValueClass()", - "cn.nukkit.blockproperty.ArrayBlockProperty#getValueForMeta(int)", - "cn.nukkit.blockproperty.ArrayBlockProperty#validateDirectly(E)", - "cn.nukkit.blockproperty.ArrayBlockProperty#validateMetaDirectly(int)" - ] - }, - "cn.nukkit.blockproperty.BlockProperties": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockproperty.BlockProperties#getPersistenceValue(int, String)", - "cn.nukkit.blockproperty.BlockProperties#getPersistenceValue(BigInteger, String)", - "cn.nukkit.blockproperty.BlockProperties#getPersistenceValue(long, String)" - ] - }, - "cn.nukkit.blockproperty.BooleanBlockProperty": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockproperty.BooleanBlockProperty#getIntValue(int, int)", - "cn.nukkit.blockproperty.BooleanBlockProperty#getIntValueForMeta(int)", - "cn.nukkit.blockproperty.BooleanBlockProperty#getMetaForValue(Boolean)", - "cn.nukkit.blockproperty.BooleanBlockProperty#getPersistenceValueForMeta(int)", - "cn.nukkit.blockproperty.BooleanBlockProperty#getValue(int, int)", - "cn.nukkit.blockproperty.BooleanBlockProperty#getValue(long, int)", - "cn.nukkit.blockproperty.BooleanBlockProperty#getValueClass()", - "cn.nukkit.blockproperty.BooleanBlockProperty#getValueForMeta(int)", - "cn.nukkit.blockproperty.BooleanBlockProperty#setValue(int, int, Boolean)", - "cn.nukkit.blockproperty.BooleanBlockProperty#setValue(long, int, Boolean)", - "cn.nukkit.blockproperty.BooleanBlockProperty#validateMetaDirectly(int)" - ] - }, - "cn.nukkit.blockproperty.IntBlockProperty": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockproperty.IntBlockProperty#getIntValueForMeta(int)", - "cn.nukkit.blockproperty.IntBlockProperty#getMetaForValue(Integer)", - "cn.nukkit.blockproperty.IntBlockProperty#getPersistenceValueForMeta(int)", - "cn.nukkit.blockproperty.IntBlockProperty#getValueClass()", - "cn.nukkit.blockproperty.IntBlockProperty#getValueForMeta(int)", - "cn.nukkit.blockproperty.IntBlockProperty#validateDirectly(Integer)", - "cn.nukkit.blockproperty.IntBlockProperty#validateMetaDirectly(int)" - ] - }, - "cn.nukkit.blockproperty.UnsignedIntBlockProperty": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getIntValueForMeta(int)", - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getMetaForValue(Integer)", - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getPersistenceValueForMeta(int)", - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getValueClass()", - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#getValueForMeta(int)", - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#validateDirectly(Integer)", - "cn.nukkit.blockproperty.UnsignedIntBlockProperty#validateMetaDirectly(int)" - ] - }, - "cn.nukkit.blockstate.BigIntegerMutableBlockState": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.BigIntegerMutableBlockState", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#copy()", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getBigDamage()", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getBooleanValue(String)", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getCurrentState()", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getDataStorage()", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getIntValue(String)", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getLegacyDamage()", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getPersistenceValue(String)", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#getPropertyValue(String)", - "cn.nukkit.blockstate.BigIntegerMutableBlockState#validate()" - ] - }, - "cn.nukkit.blockstate.BlockState": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.BlockState#blockId", - "cn.nukkit.blockstate.BlockState#getBigDamage()", - "cn.nukkit.blockstate.BlockState#getBitSize()", - "cn.nukkit.blockstate.BlockState#getBlock()", - "cn.nukkit.blockstate.BlockState#getBlock(Level, int, int, int, int, boolean, Consumer)", - "cn.nukkit.blockstate.BlockState#getBlockId()", - "cn.nukkit.blockstate.BlockState#getBooleanValue(String)", - "cn.nukkit.blockstate.BlockState#getCurrentState()", - "cn.nukkit.blockstate.BlockState#getDataStorage()", - "cn.nukkit.blockstate.BlockState#getIntValue(String)", - "cn.nukkit.blockstate.BlockState#getLegacyDamage()", - "cn.nukkit.blockstate.BlockState#getPersistenceValue(String)", - "cn.nukkit.blockstate.BlockState#getProperties()", - "cn.nukkit.blockstate.BlockState#getPropertyValue(String)" - ] - }, - "cn.nukkit.blockstate.BlockStateRepair": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.BlockStateRepair#getBlockId()", - "cn.nukkit.blockstate.BlockStateRepair#getBrokenPropertyMeta()", - "cn.nukkit.blockstate.BlockStateRepair#getCurrentState()", - "cn.nukkit.blockstate.BlockStateRepair#getFixedPropertyValue()", - "cn.nukkit.blockstate.BlockStateRepair#getNextState()", - "cn.nukkit.blockstate.BlockStateRepair#getOriginalState()", - "cn.nukkit.blockstate.BlockStateRepair#getProperties()", - "cn.nukkit.blockstate.BlockStateRepair#getProperty()", - "cn.nukkit.blockstate.BlockStateRepair#getPropertyOffset()", - "cn.nukkit.blockstate.BlockStateRepair#getProposedPropertyValue()", - "cn.nukkit.blockstate.BlockStateRepair#getRepairs()", - "cn.nukkit.blockstate.BlockStateRepair#getValidationException()", - "cn.nukkit.blockstate.BlockStateRepair#(int, BlockProperties, Number, Number, Number, int, BlockProperty, int, int, Serializable, Serializable, InvalidBlockPropertyException)" - ] - }, "cn.nukkit.blockstate.ByteMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.ByteMutableBlockState#copy()", - "cn.nukkit.blockstate.ByteMutableBlockState#getBigDamage()", - "cn.nukkit.blockstate.ByteMutableBlockState#getBooleanValue(String)", - "cn.nukkit.blockstate.ByteMutableBlockState#getCurrentState()", - "cn.nukkit.blockstate.ByteMutableBlockState#getDataStorage()", - "cn.nukkit.blockstate.ByteMutableBlockState#getIntValue(String)", - "cn.nukkit.blockstate.ByteMutableBlockState#getLegacyDamage()", - "cn.nukkit.blockstate.ByteMutableBlockState#getPersistenceValue(String)", - "cn.nukkit.blockstate.ByteMutableBlockState#getPropertyValue(String)", - "cn.nukkit.blockstate.ByteMutableBlockState#validate()" + "cn.nukkit.blockstate.ByteMutableBlockState#getPersistenceValue(String)" ] }, "cn.nukkit.blockstate.IBlockState": { @@ -471,29 +11,12 @@ }, "cn.nukkit.blockstate.IntMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.IntMutableBlockState#copy()", - "cn.nukkit.blockstate.IntMutableBlockState#getBigDamage()", - "cn.nukkit.blockstate.IntMutableBlockState#getBooleanValue(String)", - "cn.nukkit.blockstate.IntMutableBlockState#getCurrentState()", - "cn.nukkit.blockstate.IntMutableBlockState#getDataStorage()", - "cn.nukkit.blockstate.IntMutableBlockState#getIntValue(String)", - "cn.nukkit.blockstate.IntMutableBlockState#getLegacyDamage()", - "cn.nukkit.blockstate.IntMutableBlockState#getPersistenceValue(String)", - "cn.nukkit.blockstate.IntMutableBlockState#getPropertyValue(String)", - "cn.nukkit.blockstate.IntMutableBlockState#validate()" + "cn.nukkit.blockstate.IntMutableBlockState#getLegacyDamage()" ] }, "cn.nukkit.blockstate.LongMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.LongMutableBlockState#copy()", - "cn.nukkit.blockstate.LongMutableBlockState#getBigDamage()", - "cn.nukkit.blockstate.LongMutableBlockState#getBooleanValue(String)", - "cn.nukkit.blockstate.LongMutableBlockState#getCurrentState()", - "cn.nukkit.blockstate.LongMutableBlockState#getDataStorage()", - "cn.nukkit.blockstate.LongMutableBlockState#getIntValue(String)", "cn.nukkit.blockstate.LongMutableBlockState#getLegacyDamage()", - "cn.nukkit.blockstate.LongMutableBlockState#getPersistenceValue(String)", - "cn.nukkit.blockstate.LongMutableBlockState#getPropertyValue(String)", "cn.nukkit.blockstate.LongMutableBlockState#validate()" ] }, @@ -508,101 +31,20 @@ }, "cn.nukkit.blockstate.ZeroMutableBlockState": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.ZeroMutableBlockState#copy()", "cn.nukkit.blockstate.ZeroMutableBlockState#validate()" ] }, "cn.nukkit.command.CapturingCommandSender": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.command.CapturingCommandSender#getCleanCapture()", - "cn.nukkit.command.CapturingCommandSender#getRawCapture()", - "cn.nukkit.command.CapturingCommandSender#resetCapture()", - "cn.nukkit.command.CapturingCommandSender#()", - "cn.nukkit.command.CapturingCommandSender#(String)", - "cn.nukkit.command.CapturingCommandSender#(String, boolean)", - "cn.nukkit.command.CapturingCommandSender#(String, boolean, Permissible)", - "cn.nukkit.command.CapturingCommandSender#(String, boolean, Function)" - ] - }, - "cn.nukkit.command.Command": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.command.Command#parseTilde(String, double)" - ] - }, - "cn.nukkit.dispenser.BoatDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.BoatDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", - "cn.nukkit.dispenser.BoatDispenseBehavior#()" - ] - }, - "cn.nukkit.dispenser.BucketDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.BucketDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" - ] - }, - "cn.nukkit.dispenser.DefaultDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.DefaultDispenseBehavior#success" - ] - }, - "cn.nukkit.dispenser.DispenseBehaviorRegister": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.DispenseBehaviorRegister#init()" - ] - }, - "cn.nukkit.dispenser.DropperDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.DropperDispenseBehavior#()" - ] - }, - "cn.nukkit.dispenser.DyeDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.DyeDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", - "cn.nukkit.dispenser.DyeDispenseBehavior#()" - ] - }, - "cn.nukkit.dispenser.EmptyBucketDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.EmptyBucketDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)" - ] - }, - "cn.nukkit.dispenser.FireworksDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.FireworksDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", - "cn.nukkit.dispenser.FireworksDispenseBehavior#()" - ] - }, - "cn.nukkit.dispenser.FlintAndSteelDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.FlintAndSteelDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", - "cn.nukkit.dispenser.FlintAndSteelDispenseBehavior#()" + "cn.nukkit.command.CapturingCommandSender#(String, boolean, Permissible)" ] }, "cn.nukkit.dispenser.ProjectileDispenseBehavior": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.ProjectileDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", "cn.nukkit.dispenser.ProjectileDispenseBehavior#getAccuracy()", "cn.nukkit.dispenser.ProjectileDispenseBehavior#getMotion()" ] }, - "cn.nukkit.dispenser.ShulkerBoxDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.ShulkerBoxDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", - "cn.nukkit.dispenser.ShulkerBoxDispenseBehavior#()" - ] - }, - "cn.nukkit.dispenser.SpawnEggDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.SpawnEggDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", - "cn.nukkit.dispenser.SpawnEggDispenseBehavior#()" - ] - }, - "cn.nukkit.dispenser.TNTDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.TNTDispenseBehavior#dispense(BlockDispenser, BlockFace, Item)", - "cn.nukkit.dispenser.TNTDispenseBehavior#()" - ] - }, "cn.nukkit.entity.Entity": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.entity.Entity#canBePushed()", @@ -874,16 +316,6 @@ "cn.nukkit.event.blockstate.BlockStateRepairFinishEvent#getResult()" ] }, - "cn.nukkit.event.entity.CreatureSpawnEvent": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.entity.CreatureSpawnEvent#(int, Position, SpawnReason)" - ] - }, - "cn.nukkit.event.entity.EntityExplodeEvent": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.entity.EntityExplodeEvent#ignitions" - ] - }, "cn.nukkit.event.inventory.EnchantItemEvent": { "addPowerNukkitOnlyAnnotation": [ "cn.nukkit.event.inventory.EnchantItemEvent#oldItem", @@ -892,74 +324,9 @@ "cn.nukkit.event.inventory.EnchantItemEvent#enchanter" ] }, - "cn.nukkit.event.player.PlayerBucketEmptyEvent": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.player.PlayerBucketEmptyEvent#(Player, Block, BlockFace, Block, Item, Item)" - ] - }, - "cn.nukkit.event.player.PlayerBucketEvent": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.player.PlayerBucketEvent#(Player, Block, BlockFace, Block, Item, Item)" - ] - }, - "cn.nukkit.event.player.PlayerBucketFillEvent": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.player.PlayerBucketFillEvent#(Player, Block, BlockFace, Block, Item, Item)" - ] - }, - "cn.nukkit.event.vehicle.VehicleDamageEvent": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.vehicle.VehicleDamageEvent#(EntityVehicle, double)" - ] - }, - "cn.nukkit.event.vehicle.VehicleDestroyEvent": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.vehicle.VehicleDestroyEvent#(Entity)" - ] - }, - "cn.nukkit.inventory.BaseInventory": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.BaseInventory#addListener(InventoryListener)", - "cn.nukkit.inventory.BaseInventory#removeListener(InventoryListener)" - ] - }, - "cn.nukkit.inventory.BlastFurnaceRecipe": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.BlastFurnaceRecipe#getInput()" - ] - }, - "cn.nukkit.inventory.CampfireRecipe": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.CampfireRecipe#getInput()" - ] - }, "cn.nukkit.inventory.CraftingManager": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.CraftingManager#blastFurnaceRecipes", - "cn.nukkit.inventory.CraftingManager#smokerRecipes", - "cn.nukkit.inventory.CraftingManager#campfireRecipes", - "cn.nukkit.inventory.CraftingManager#stonecutterRecipes", - "cn.nukkit.inventory.CraftingManager#cartographyRecipes", - "cn.nukkit.inventory.CraftingManager#matchBlastFurnaceRecipe(Item)", - "cn.nukkit.inventory.CraftingManager#matchCampfireRecipe(Item)", - "cn.nukkit.inventory.CraftingManager#matchCartographyRecipe(List, Item, List)", - "cn.nukkit.inventory.CraftingManager#matchSmokerRecipe(Item)", - "cn.nukkit.inventory.CraftingManager#matchStonecutterRecipe(Item)", - "cn.nukkit.inventory.CraftingManager#registerBlastFurnaceRecipe(BlastFurnaceRecipe)", - "cn.nukkit.inventory.CraftingManager#registerCampfireRecipe(CampfireRecipe)", - "cn.nukkit.inventory.CraftingManager#registerCartographyRecipe(CartographyRecipe)", - "cn.nukkit.inventory.CraftingManager#registerSmokerRecipe(SmokerRecipe)", - "cn.nukkit.inventory.CraftingManager#registerStonecutterRecipe(StonecutterRecipe)" - ] - }, - "cn.nukkit.inventory.FurnaceInventory": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.FurnaceInventory#(BlockEntityFurnace, InventoryType)" - ] - }, - "cn.nukkit.inventory.GrindstoneInventory": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.GrindstoneInventory#updateResult(boolean)" + "cn.nukkit.inventory.CraftingManager#registerCartographyRecipe(CartographyRecipe)" ] }, "cn.nukkit.inventory.Inventory": { diff --git a/src/main/java/cn/nukkit/block/BlockDaylightDetectorInverted.java b/src/main/java/cn/nukkit/block/BlockDaylightDetectorInverted.java index 84fd57e3014..78936346a8e 100644 --- a/src/main/java/cn/nukkit/block/BlockDaylightDetectorInverted.java +++ b/src/main/java/cn/nukkit/block/BlockDaylightDetectorInverted.java @@ -2,6 +2,7 @@ import cn.nukkit.Player; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import cn.nukkit.item.ItemBlock; @@ -39,7 +40,7 @@ public boolean onActivate(@Nonnull Item item, Player player) { return true; } - @PowerNukkitDifference + @PowerNukkitOnly @Override public boolean isInverted() { return true; diff --git a/src/main/java/cn/nukkit/block/BlockDropper.java b/src/main/java/cn/nukkit/block/BlockDropper.java index 0b81cd1b574..1119721858f 100644 --- a/src/main/java/cn/nukkit/block/BlockDropper.java +++ b/src/main/java/cn/nukkit/block/BlockDropper.java @@ -1,6 +1,5 @@ package cn.nukkit.block; -import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.blockentity.BlockEntity; @@ -57,7 +56,7 @@ public void dispense() { super.dispense(); } - @PowerNukkitDifference(info = "Spend items in container, the dropper faces to (if there is one).", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override protected DispenseBehavior getDispenseBehavior(Item item) { return new DropperDispenseBehavior(); diff --git a/src/main/java/cn/nukkit/block/BlockEnderChest.java b/src/main/java/cn/nukkit/block/BlockEnderChest.java index 85fe9265e52..a68370451ff 100644 --- a/src/main/java/cn/nukkit/block/BlockEnderChest.java +++ b/src/main/java/cn/nukkit/block/BlockEnderChest.java @@ -231,6 +231,7 @@ public BlockFace getBlockFace() { return BlockFace.fromHorizontalIndex(this.getDamage() & 0x07); } + @PowerNukkitOnly @Nullable @Override public BlockEntityEnderChest getBlockEntity() { diff --git a/src/main/java/cn/nukkit/block/BlockEntityHolder.java b/src/main/java/cn/nukkit/block/BlockEntityHolder.java index 8d3085fe742..4751aa12adb 100644 --- a/src/main/java/cn/nukkit/block/BlockEntityHolder.java +++ b/src/main/java/cn/nukkit/block/BlockEntityHolder.java @@ -18,8 +18,8 @@ @PowerNukkitOnly @Since("1.4.0.0-PN") public interface BlockEntityHolder { - @PowerNukkitOnly @Since("1.4.0.0-PN") + @PowerNukkitOnly @Nullable default E getBlockEntity() { Level level = getLevel(); diff --git a/src/main/java/cn/nukkit/block/BlockFallable.java b/src/main/java/cn/nukkit/block/BlockFallable.java index 971f733e829..6e9ac98a12c 100644 --- a/src/main/java/cn/nukkit/block/BlockFallable.java +++ b/src/main/java/cn/nukkit/block/BlockFallable.java @@ -1,5 +1,6 @@ package cn.nukkit.block; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.entity.Entity; import cn.nukkit.entity.item.EntityFallingBlock; import cn.nukkit.event.block.BlockFallEvent; @@ -35,6 +36,7 @@ public int onUpdate(int type) { return type; } + @PowerNukkitOnly protected EntityFallingBlock createFallingEntity(CompoundTag customNbt) { CompoundTag nbt = new CompoundTag() .putList(new ListTag("Pos") diff --git a/src/main/java/cn/nukkit/block/BlockFence.java b/src/main/java/cn/nukkit/block/BlockFence.java index 84b5ab86924..e51e63325d7 100644 --- a/src/main/java/cn/nukkit/block/BlockFence.java +++ b/src/main/java/cn/nukkit/block/BlockFence.java @@ -23,6 +23,7 @@ */ @PowerNukkitDifference(info = "Implements BlockConnectable only on PowerNukkit", since = "1.3.0.0-PN") public class BlockFence extends BlockTransparentMeta implements BlockConnectable { + @PowerNukkitOnly public static final BlockProperties PROPERTIES = new BlockProperties(WoodType.PROPERTY); @Deprecated @DeprecationDetails(reason = "Moved to the block property system", since = "1.4.0.0-PN", replaceWith = "getWoodType()") diff --git a/src/main/java/cn/nukkit/block/BlockFenceBase.java b/src/main/java/cn/nukkit/block/BlockFenceBase.java index 260a453295c..88ddc38fb0f 100644 --- a/src/main/java/cn/nukkit/block/BlockFenceBase.java +++ b/src/main/java/cn/nukkit/block/BlockFenceBase.java @@ -39,6 +39,7 @@ public BlockProperties getProperties() { reason = "Will always returns empty on this type. It is here for backward compatibility", since = "1.4.0.0-PN") @Override + @PowerNukkitOnly public Optional getWoodType() { return Optional.empty(); } @@ -47,6 +48,7 @@ public Optional getWoodType() { reason = "Only accepts null. It is here for backward compatibility", since = "1.4.0.0-PN") @Override + @PowerNukkitOnly public void setWoodType(@Nullable WoodType woodType) { if (woodType != null) { throw new InvalidBlockPropertyValueException(WoodType.PROPERTY, null, woodType, "This block don't have a regular wood type"); diff --git a/src/main/java/cn/nukkit/block/BlockFlower.java b/src/main/java/cn/nukkit/block/BlockFlower.java index 96b2657e92b..34565b68bb1 100644 --- a/src/main/java/cn/nukkit/block/BlockFlower.java +++ b/src/main/java/cn/nukkit/block/BlockFlower.java @@ -148,7 +148,7 @@ public static boolean isSupportValid(Block block) { } } - @PowerNukkitDifference(since = "1.4.0.0-PN", info = "Fixed support logic") + @PowerNukkitOnly public boolean canPlantOn(Block block) { return isSupportValid(block); } diff --git a/src/main/java/cn/nukkit/block/BlockFungusCrimson.java b/src/main/java/cn/nukkit/block/BlockFungusCrimson.java index 046f2c5511e..0f0d115d9d7 100644 --- a/src/main/java/cn/nukkit/block/BlockFungusCrimson.java +++ b/src/main/java/cn/nukkit/block/BlockFungusCrimson.java @@ -27,11 +27,13 @@ public String getName() { return "Crimson Fungus"; } + @PowerNukkitOnly @Override protected boolean canGrowOn(Block support) { return support.getId() == CRIMSON_NYLIUM; } + @PowerNukkitOnly @Override public boolean grow(@Nullable Player cause) { // TODO Make it grow diff --git a/src/main/java/cn/nukkit/block/BlockFungusWarped.java b/src/main/java/cn/nukkit/block/BlockFungusWarped.java index f1d83f605cb..a170dc3575a 100644 --- a/src/main/java/cn/nukkit/block/BlockFungusWarped.java +++ b/src/main/java/cn/nukkit/block/BlockFungusWarped.java @@ -27,11 +27,13 @@ public String getName() { return "Warped Fungus"; } + @PowerNukkitOnly @Override protected boolean canGrowOn(Block support) { return support.getId() == WARPED_NYLIUM; } + @PowerNukkitOnly @Override public boolean grow(@Nullable Player cause) { // TODO Make it grow diff --git a/src/main/java/cn/nukkit/block/BlockHoney.java b/src/main/java/cn/nukkit/block/BlockHoney.java index f3441e23eeb..b6bbeaeed30 100644 --- a/src/main/java/cn/nukkit/block/BlockHoney.java +++ b/src/main/java/cn/nukkit/block/BlockHoney.java @@ -16,6 +16,10 @@ public class BlockHoney extends BlockSolid { private static final Random RANDOM = new Random(); + @PowerNukkitOnly + public BlockHoney() { + } + @Override public String getName() { return "Honey Block"; diff --git a/src/main/java/cn/nukkit/block/BlockHyphaeCrimson.java b/src/main/java/cn/nukkit/block/BlockHyphaeCrimson.java index 2f23427c374..60dc22272bc 100644 --- a/src/main/java/cn/nukkit/block/BlockHyphaeCrimson.java +++ b/src/main/java/cn/nukkit/block/BlockHyphaeCrimson.java @@ -30,6 +30,7 @@ public String getName() { return "Crimson Hyphae"; } + @PowerNukkitOnly @Override protected BlockState getStrippedState() { return getCurrentState().withBlockId(STRIPPED_CRIMSON_HYPHAE); diff --git a/src/main/java/cn/nukkit/block/BlockHyphaeWarped.java b/src/main/java/cn/nukkit/block/BlockHyphaeWarped.java index eb973ffc9cb..e44e2146e32 100644 --- a/src/main/java/cn/nukkit/block/BlockHyphaeWarped.java +++ b/src/main/java/cn/nukkit/block/BlockHyphaeWarped.java @@ -31,6 +31,7 @@ public String getName() { return "Warped Hyphae"; } + @PowerNukkitOnly @Override protected BlockState getStrippedState() { return getCurrentState().withBlockId(STRIPPED_WARPED_HYPHAE); diff --git a/src/main/java/cn/nukkit/block/BlockLeaves2.java b/src/main/java/cn/nukkit/block/BlockLeaves2.java index 5e16b6df616..242f1cc4d04 100644 --- a/src/main/java/cn/nukkit/block/BlockLeaves2.java +++ b/src/main/java/cn/nukkit/block/BlockLeaves2.java @@ -46,11 +46,13 @@ public BlockProperties getProperties() { return NEW_LEAF_PROPERTIES; } + @PowerNukkitOnly @Override public WoodType getType() { return getPropertyValue(NEW_LEAF_TYPE); } + @PowerNukkitOnly @Override public void setType(WoodType type) { setPropertyValue(NEW_LEAF_TYPE, type); diff --git a/src/main/java/cn/nukkit/block/BlockLectern.java b/src/main/java/cn/nukkit/block/BlockLectern.java index 6896991a464..120306a10b2 100644 --- a/src/main/java/cn/nukkit/block/BlockLectern.java +++ b/src/main/java/cn/nukkit/block/BlockLectern.java @@ -200,7 +200,7 @@ public void setActivated(boolean activated) { } } - @PowerNukkitDifference(info = "Down side is strongly powered.", since = "1.4.0.0-PN") + @PowerNukkitOnly public void executeRedstonePulse() { if (isActivated()) { level.cancelSheduledUpdate(this, this); diff --git a/src/main/java/cn/nukkit/block/BlockLiquid.java b/src/main/java/cn/nukkit/block/BlockLiquid.java index 847acd710c0..11ef60a599e 100644 --- a/src/main/java/cn/nukkit/block/BlockLiquid.java +++ b/src/main/java/cn/nukkit/block/BlockLiquid.java @@ -117,6 +117,7 @@ protected AxisAlignedBB recalculateCollisionBoundingBox() { return this; } + @PowerNukkitOnly public boolean usesWaterLogging() { return false; } diff --git a/src/main/java/cn/nukkit/block/BlockPiston.java b/src/main/java/cn/nukkit/block/BlockPiston.java index c1a365f81c2..abe22c2b1c3 100644 --- a/src/main/java/cn/nukkit/block/BlockPiston.java +++ b/src/main/java/cn/nukkit/block/BlockPiston.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; /** * @author CreeperFace @@ -26,6 +27,7 @@ public String getName() { return "Piston"; } + @PowerNukkitOnly @Override public int getPistonHeadBlockId() { return PISTON_HEAD; diff --git a/src/main/java/cn/nukkit/block/BlockPistonBase.java b/src/main/java/cn/nukkit/block/BlockPistonBase.java index 169b3144bc3..56c3b279c49 100644 --- a/src/main/java/cn/nukkit/block/BlockPistonBase.java +++ b/src/main/java/cn/nukkit/block/BlockPistonBase.java @@ -340,13 +340,16 @@ private boolean doMove(boolean extending) { blockEntity.move(extending, attached); return true; } - + + @PowerNukkitOnly protected BlockPistonHead createHead(int damage) { return (BlockPistonHead) Block.get(getPistonHeadBlockId(), damage); } + @PowerNukkitOnly public abstract int getPistonHeadBlockId(); + @PowerNukkitOnly public static boolean canPush(Block block, BlockFace face, boolean destroyBlocks, boolean extending) { if ( block.getY() >= 0 && (face != BlockFace.DOWN || block.getY() != 0) && diff --git a/src/main/java/cn/nukkit/block/BlockPistonHead.java b/src/main/java/cn/nukkit/block/BlockPistonHead.java index f09c8a24219..772976f8745 100644 --- a/src/main/java/cn/nukkit/block/BlockPistonHead.java +++ b/src/main/java/cn/nukkit/block/BlockPistonHead.java @@ -76,6 +76,12 @@ public boolean onBreak(Item item) { return true; } + @Since("FUTURE") + public BlockFace getFacing() { + return getBlockFace(); + } + + @PowerNukkitOnly @Override public BlockFace getBlockFace() { BlockFace face = BlockFace.fromIndex(this.getDamage()); diff --git a/src/main/java/cn/nukkit/block/BlockPistonSticky.java b/src/main/java/cn/nukkit/block/BlockPistonSticky.java index 44f2525a7b4..1b01f007f20 100644 --- a/src/main/java/cn/nukkit/block/BlockPistonSticky.java +++ b/src/main/java/cn/nukkit/block/BlockPistonSticky.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; /** * @author CreeperFace @@ -27,6 +28,7 @@ public String getName() { return "Sticky Piston"; } + @PowerNukkitOnly @Override public int getPistonHeadBlockId() { return PISTON_HEAD_STICKY; diff --git a/src/main/java/cn/nukkit/block/BlockPumpkin.java b/src/main/java/cn/nukkit/block/BlockPumpkin.java index 19c59e64005..49d9dea21ef 100644 --- a/src/main/java/cn/nukkit/block/BlockPumpkin.java +++ b/src/main/java/cn/nukkit/block/BlockPumpkin.java @@ -44,7 +44,8 @@ public String getName() { public int getId() { return PUMPKIN; } - + + @PowerNukkitOnly @Nonnull @Override public BlockProperties getProperties() { @@ -126,7 +127,8 @@ public boolean sticksToPiston() { public BlockFace getBlockFace() { return getPropertyValue(DIRECTION); } - + + @PowerNukkitOnly @Override public void setBlockFace(BlockFace face) { setPropertyValue(DIRECTION, face); diff --git a/src/main/java/cn/nukkit/block/BlockRedstoneDiode.java b/src/main/java/cn/nukkit/block/BlockRedstoneDiode.java index 20107a175c7..0d993d63a1e 100644 --- a/src/main/java/cn/nukkit/block/BlockRedstoneDiode.java +++ b/src/main/java/cn/nukkit/block/BlockRedstoneDiode.java @@ -74,7 +74,8 @@ public boolean place(@Nonnull Item item, @Nonnull Block block, @Nonnull Block ta } return true; } - + + @PowerNukkitOnly protected boolean isSupportValid(Block support) { return BlockLever.isSupportValid(support, BlockFace.UP) || support instanceof BlockCauldron; } diff --git a/src/main/java/cn/nukkit/block/BlockRedstoneWire.java b/src/main/java/cn/nukkit/block/BlockRedstoneWire.java index 9155d4b005d..e8dcaa815df 100644 --- a/src/main/java/cn/nukkit/block/BlockRedstoneWire.java +++ b/src/main/java/cn/nukkit/block/BlockRedstoneWire.java @@ -248,7 +248,7 @@ public int onUpdate(int type) { return Level.BLOCK_UPDATE_NORMAL; } - @PowerNukkitDifference(since = "1.4.0.0-PN", info = "Fixed placement logic") + @PowerNukkitOnly public boolean canBePlacedOn(Block support) { return support.isSolid(BlockFace.UP); } diff --git a/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java b/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java index e0efb49c22c..735e82a984e 100644 --- a/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java +++ b/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java @@ -23,6 +23,7 @@ import cn.nukkit.api.Since; import cn.nukkit.blockproperty.BlockProperties; import cn.nukkit.blockproperty.IntBlockProperty; +import cn.nukkit.blockproperty.exception.InvalidBlockPropertyMetaException; import cn.nukkit.event.block.BlockExplosionPrimeEvent; import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; @@ -57,7 +58,18 @@ public class BlockRespawnAnchor extends BlockMeta { public int getId() { return RESPAWN_ANCHOR; } - + + @PowerNukkitOnly + public BlockRespawnAnchor() { + this(0); + } + + @PowerNukkitOnly + @Since("FUTURE") + public BlockRespawnAnchor(int meta) throws InvalidBlockPropertyMetaException { + super(meta); + } + @Since("1.4.0.0-PN") @PowerNukkitOnly @Nonnull diff --git a/src/main/java/cn/nukkit/block/BlockSandstone.java b/src/main/java/cn/nukkit/block/BlockSandstone.java index c65bbfaff0a..ad103a18270 100644 --- a/src/main/java/cn/nukkit/block/BlockSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockSandstone.java @@ -63,6 +63,7 @@ public void setSandstoneType(SandStoneType sandStoneType) { setPropertyValue(SAND_STONE_TYPE, sandStoneType); } + @PowerNukkitOnly public SandStoneType getSandstoneType() { return getPropertyValue(SAND_STONE_TYPE); } diff --git a/src/main/java/cn/nukkit/block/BlockScaffolding.java b/src/main/java/cn/nukkit/block/BlockScaffolding.java index 23e59ef2a33..0883e141afb 100644 --- a/src/main/java/cn/nukkit/block/BlockScaffolding.java +++ b/src/main/java/cn/nukkit/block/BlockScaffolding.java @@ -173,6 +173,7 @@ public int onUpdate(int type) { return 0; } + @PowerNukkitOnly @Override protected EntityFallingBlock createFallingEntity(CompoundTag customNbt) { setDamage(0); diff --git a/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java b/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java index f7e9d579742..a1ccc459eb9 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java @@ -23,12 +23,12 @@ public class BlockSlabRedSandstone extends BlockSlab { public static final int RED_SANDSTONE = 0; public static final int PURPUR = 1; - public static final int PRISMARINE = 2; - public static final int PRISMARINE_BRICKS = 3; - public static final int DARK_PRISMARINE = 4; - public static final int MOSSY_COBBLESTONE = 5; - public static final int SMOOTH_SANDSTONE = 6; - public static final int RED_NETHER_BRICK = 7; + public @PowerNukkitOnly static final int PRISMARINE = 2; + public @PowerNukkitOnly static final int PRISMARINE_BRICKS = 3; + public @PowerNukkitOnly static final int DARK_PRISMARINE = 4; + public @PowerNukkitOnly static final int MOSSY_COBBLESTONE = 5; + public @PowerNukkitOnly static final int SMOOTH_SANDSTONE = 6; + public @PowerNukkitOnly static final int RED_NETHER_BRICK = 7; public BlockSlabRedSandstone() { this(0); diff --git a/src/main/java/cn/nukkit/block/BlockSoulSand.java b/src/main/java/cn/nukkit/block/BlockSoulSand.java index 6b33af76357..0102d844676 100644 --- a/src/main/java/cn/nukkit/block/BlockSoulSand.java +++ b/src/main/java/cn/nukkit/block/BlockSoulSand.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.entity.Entity; import cn.nukkit.event.block.BlockFormEvent; import cn.nukkit.item.ItemTool; @@ -52,6 +53,7 @@ public boolean hasEntityCollision() { return true; } + @PowerNukkitOnly @Override public boolean isSoulSpeedCompatible() { return true; diff --git a/src/main/java/cn/nukkit/block/BlockSoulSoil.java b/src/main/java/cn/nukkit/block/BlockSoulSoil.java index 2ef3811748c..31fff2e8097 100644 --- a/src/main/java/cn/nukkit/block/BlockSoulSoil.java +++ b/src/main/java/cn/nukkit/block/BlockSoulSoil.java @@ -49,6 +49,7 @@ public BlockColor getColor() { return BlockColor.BROWN_BLOCK_COLOR; } + @PowerNukkitOnly @Override public boolean isSoulSpeedCompatible() { return true; diff --git a/src/main/java/cn/nukkit/block/BlockSoulTorch.java b/src/main/java/cn/nukkit/block/BlockSoulTorch.java index 77d5d165fef..bd7ce1a5de1 100644 --- a/src/main/java/cn/nukkit/block/BlockSoulTorch.java +++ b/src/main/java/cn/nukkit/block/BlockSoulTorch.java @@ -13,6 +13,7 @@ public BlockSoulTorch() { this(0); } + @PowerNukkitOnly public BlockSoulTorch(int meta) { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockStemCrimson.java b/src/main/java/cn/nukkit/block/BlockStemCrimson.java index d9f716bb1b3..d06960d0dcb 100644 --- a/src/main/java/cn/nukkit/block/BlockStemCrimson.java +++ b/src/main/java/cn/nukkit/block/BlockStemCrimson.java @@ -31,6 +31,7 @@ public String getName() { return "Crimson Stem"; } + @PowerNukkitOnly @Override protected BlockState getStrippedState() { return getCurrentState().withBlockId(STRIPPED_CRIMSON_STEM); diff --git a/src/main/java/cn/nukkit/block/BlockStemStripped.java b/src/main/java/cn/nukkit/block/BlockStemStripped.java index 43eaa6ec628..8a3e86b7cfe 100644 --- a/src/main/java/cn/nukkit/block/BlockStemStripped.java +++ b/src/main/java/cn/nukkit/block/BlockStemStripped.java @@ -17,6 +17,7 @@ public BlockStemStripped(int meta) { super(meta); } + @PowerNukkitOnly @Override protected BlockState getStrippedState() { return getCurrentState(); diff --git a/src/main/java/cn/nukkit/block/BlockStemWarped.java b/src/main/java/cn/nukkit/block/BlockStemWarped.java index 9407694f646..23442df2843 100644 --- a/src/main/java/cn/nukkit/block/BlockStemWarped.java +++ b/src/main/java/cn/nukkit/block/BlockStemWarped.java @@ -31,6 +31,7 @@ public String getName() { return "Warped Stem"; } + @PowerNukkitOnly @Override protected BlockState getStrippedState() { return getCurrentState().withBlockId(STRIPPED_WARPED_STEM); diff --git a/src/main/java/cn/nukkit/block/BlockWallBanner.java b/src/main/java/cn/nukkit/block/BlockWallBanner.java index 1343db16a3a..c9dd4044ebc 100644 --- a/src/main/java/cn/nukkit/block/BlockWallBanner.java +++ b/src/main/java/cn/nukkit/block/BlockWallBanner.java @@ -72,11 +72,13 @@ public BlockFace getBlockFace() { return getPropertyValue(FACING_DIRECTION); } + @PowerNukkitOnly @Override public void setDirection(CompassRoseDirection direction) { setBlockFace(direction.getClosestBlockFace()); } + @PowerNukkitOnly @Override public CompassRoseDirection getDirection() { return getBlockFace().getCompassRoseDirection(); diff --git a/src/main/java/cn/nukkit/block/BlockWallBase.java b/src/main/java/cn/nukkit/block/BlockWallBase.java index d6689aff80d..e9a500db8bb 100644 --- a/src/main/java/cn/nukkit/block/BlockWallBase.java +++ b/src/main/java/cn/nukkit/block/BlockWallBase.java @@ -482,7 +482,7 @@ protected AxisAlignedBB recalculateBoundingBox() { ); } - @PowerNukkitDifference(info = "Will connect to glass panes, iron bars and fence gates", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public boolean canConnect(Block block) { switch (block.getId()) { diff --git a/src/main/java/cn/nukkit/block/BlockWallSign.java b/src/main/java/cn/nukkit/block/BlockWallSign.java index 6c31972a371..2eda5f52d8c 100644 --- a/src/main/java/cn/nukkit/block/BlockWallSign.java +++ b/src/main/java/cn/nukkit/block/BlockWallSign.java @@ -44,6 +44,7 @@ public BlockProperties getProperties() { return PROPERTIES; } + @PowerNukkitOnly @Override public int getWallId() { return getId(); @@ -83,11 +84,13 @@ public BlockFace getBlockFace() { return getPropertyValue(FACING_DIRECTION); } + @PowerNukkitOnly @Override public void setSignDirection(CompassRoseDirection direction) { setBlockFace(direction.getClosestBlockFace()); } + @PowerNukkitOnly @Override public CompassRoseDirection getSignDirection() { return getBlockFace().getCompassRoseDirection(); diff --git a/src/main/java/cn/nukkit/block/BlockWater.java b/src/main/java/cn/nukkit/block/BlockWater.java index 4c377c4969c..002e339d943 100644 --- a/src/main/java/cn/nukkit/block/BlockWater.java +++ b/src/main/java/cn/nukkit/block/BlockWater.java @@ -89,6 +89,7 @@ public int tickRate() { return 5; } + @PowerNukkitOnly @Override public boolean usesWaterLogging() { return true; diff --git a/src/main/java/cn/nukkit/block/BlockWitherRose.java b/src/main/java/cn/nukkit/block/BlockWitherRose.java index 820d84d1ca9..7fe204ce15f 100644 --- a/src/main/java/cn/nukkit/block/BlockWitherRose.java +++ b/src/main/java/cn/nukkit/block/BlockWitherRose.java @@ -39,6 +39,7 @@ public BlockProperties getProperties() { return CommonBlockProperties.EMPTY_PROPERTIES; } + @PowerNukkitOnly @Override public boolean canPlantOn(Block block) { return super.canPlantOn(block) || block.getId() == BlockID.NETHERRACK || block.getId() == BlockID.SOUL_SAND; diff --git a/src/main/java/cn/nukkit/block/BlockWood.java b/src/main/java/cn/nukkit/block/BlockWood.java index 2daba6bd972..6284f98b207 100644 --- a/src/main/java/cn/nukkit/block/BlockWood.java +++ b/src/main/java/cn/nukkit/block/BlockWood.java @@ -67,7 +67,7 @@ public double getHardness() { public double getResistance() { return 2; } - + @PowerNukkitOnly @Since("1.4.0.0-PN") public WoodType getWoodType() { @@ -119,6 +119,7 @@ public int getBurnAbility() { return 10; } + @PowerNukkitOnly @Override protected BlockState getStrippedState() { int strippedId; diff --git a/src/main/java/cn/nukkit/block/BlockWood2.java b/src/main/java/cn/nukkit/block/BlockWood2.java index 12ba9aecc24..e18b0b30d68 100644 --- a/src/main/java/cn/nukkit/block/BlockWood2.java +++ b/src/main/java/cn/nukkit/block/BlockWood2.java @@ -49,11 +49,13 @@ public BlockProperties getProperties() { return PROPERTIES; } + @PowerNukkitOnly @Override public WoodType getWoodType() { return getPropertyValue(NEW_LOG_TYPE); } + @PowerNukkitOnly @Override public void setWoodType(WoodType woodType) { setPropertyValue(NEW_LOG_TYPE, woodType); diff --git a/src/main/java/cn/nukkit/block/BlockWoodBark.java b/src/main/java/cn/nukkit/block/BlockWoodBark.java index 4eae3073d07..75a2a0a1adf 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodBark.java +++ b/src/main/java/cn/nukkit/block/BlockWoodBark.java @@ -54,11 +54,13 @@ public String getName() { return (isStripped()? "Stripped ": "") + getWoodType().getEnglishName() + " Wood"; } + @PowerNukkitOnly @Override public WoodType getWoodType() { return getPropertyValue(WoodType.PROPERTY); } + @PowerNukkitOnly @Override public void setWoodType(WoodType woodType) { setPropertyValue(WoodType.PROPERTY, woodType); diff --git a/src/main/java/cn/nukkit/block/BlockWoodStripped.java b/src/main/java/cn/nukkit/block/BlockWoodStripped.java index dc9f3745bb1..a56d9c9aae2 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodStripped.java +++ b/src/main/java/cn/nukkit/block/BlockWoodStripped.java @@ -34,6 +34,7 @@ public BlockProperties getProperties() { return PILLAR_PROPERTIES; } + @PowerNukkitOnly @Override protected BlockState getStrippedState() { return getCurrentState(); @@ -44,6 +45,7 @@ public String getName() { return "Stripped " + super.getName(); } + @PowerNukkitOnly @Override public void setWoodType(WoodType woodType) { if (!woodType.equals(getWoodType())) { diff --git a/src/main/java/cn/nukkit/block/BlockWoodStrippedAcacia.java b/src/main/java/cn/nukkit/block/BlockWoodStrippedAcacia.java index 8e27a4860c9..43b0e05f57e 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodStrippedAcacia.java +++ b/src/main/java/cn/nukkit/block/BlockWoodStrippedAcacia.java @@ -21,6 +21,7 @@ public int getId() { return STRIPPED_ACACIA_LOG; } + @PowerNukkitOnly @Override public WoodType getWoodType() { return WoodType.ACACIA; diff --git a/src/main/java/cn/nukkit/block/BlockWoodStrippedBirch.java b/src/main/java/cn/nukkit/block/BlockWoodStrippedBirch.java index 8444849c055..caa0181a82d 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodStrippedBirch.java +++ b/src/main/java/cn/nukkit/block/BlockWoodStrippedBirch.java @@ -20,6 +20,7 @@ public int getId() { return STRIPPED_BIRCH_LOG; } + @PowerNukkitOnly @Override public WoodType getWoodType() { return WoodType.BIRCH; diff --git a/src/main/java/cn/nukkit/block/BlockWoodStrippedDarkOak.java b/src/main/java/cn/nukkit/block/BlockWoodStrippedDarkOak.java index 5a648725f5f..b1408357e87 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodStrippedDarkOak.java +++ b/src/main/java/cn/nukkit/block/BlockWoodStrippedDarkOak.java @@ -20,6 +20,7 @@ public int getId() { return STRIPPED_DARK_OAK_LOG; } + @PowerNukkitOnly @Override public WoodType getWoodType() { return WoodType.DARK_OAK; diff --git a/src/main/java/cn/nukkit/block/BlockWoodStrippedJungle.java b/src/main/java/cn/nukkit/block/BlockWoodStrippedJungle.java index 40202205bcd..9988c45442c 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodStrippedJungle.java +++ b/src/main/java/cn/nukkit/block/BlockWoodStrippedJungle.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.blockproperty.value.WoodType; @PowerNukkitOnly @@ -20,6 +21,7 @@ public int getId() { return STRIPPED_JUNGLE_LOG; } + @PowerNukkitOnly @Override public WoodType getWoodType() { return WoodType.JUNGLE; diff --git a/src/main/java/cn/nukkit/block/BlockWoodStrippedOak.java b/src/main/java/cn/nukkit/block/BlockWoodStrippedOak.java index aeb5903b1e7..0bbc9fe1c23 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodStrippedOak.java +++ b/src/main/java/cn/nukkit/block/BlockWoodStrippedOak.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.blockproperty.value.WoodType; @PowerNukkitOnly @@ -20,6 +21,7 @@ public int getId() { return STRIPPED_OAK_LOG; } + @PowerNukkitOnly @Override public WoodType getWoodType() { return WoodType.OAK; diff --git a/src/main/java/cn/nukkit/block/BlockWoodStrippedSpruce.java b/src/main/java/cn/nukkit/block/BlockWoodStrippedSpruce.java index d9379e92a2a..ea5ce951852 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodStrippedSpruce.java +++ b/src/main/java/cn/nukkit/block/BlockWoodStrippedSpruce.java @@ -1,6 +1,7 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.blockproperty.value.WoodType; @PowerNukkitOnly @@ -20,6 +21,7 @@ public int getId() { return STRIPPED_SPRUCE_LOG; } + @PowerNukkitOnly @Override public WoodType getWoodType() { return WoodType.SPRUCE; diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntity.java b/src/main/java/cn/nukkit/blockentity/BlockEntity.java index 1f5dcf2cef6..874020959fd 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntity.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntity.java @@ -122,10 +122,12 @@ protected void initBlockEntity() { } + @PowerNukkitOnly public static BlockEntity createBlockEntity(String type, Position position, Object... args) { return createBlockEntity(type, position, BlockEntity.getDefaultCompound(position, type), args); } + @PowerNukkitOnly public static BlockEntity createBlockEntity(String type, Position pos, CompoundTag nbt, Object... args) { return createBlockEntity(type, pos.getLevel().getChunk(pos.getFloorX() >> 4, pos.getFloorZ() >> 4), nbt, args); } @@ -250,7 +252,8 @@ public void close() { public void onBreak() { } - + + @PowerNukkitOnly public void onBreak(boolean isSilkTouch) { onBreak(); } @@ -295,6 +298,7 @@ public static CompoundTag getDefaultCompound(Vector3 pos, String id) { .putInt("z", pos.getFloorZ()); } + @PowerNukkitOnly @Nullable @Override public final BlockEntity getLevelBlockEntity() { diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityBeehive.java b/src/main/java/cn/nukkit/blockentity/BlockEntityBeehive.java index 97627076ac7..ffd01ab16c7 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityBeehive.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityBeehive.java @@ -311,7 +311,8 @@ public void onBreak() { } } } - + + @PowerNukkitOnly @Override public void onBreak(boolean isSilkTouch) { if (!isSilkTouch) { diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityBlastFurnace.java b/src/main/java/cn/nukkit/blockentity/BlockEntityBlastFurnace.java index 4a5c14d3477..d1bc9ef7759 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityBlastFurnace.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityBlastFurnace.java @@ -15,36 +15,43 @@ public BlockEntityBlastFurnace(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } + @PowerNukkitOnly @Override protected String getFurnaceName() { return "Blast Furnace"; } + @PowerNukkitOnly @Override protected String getClientName() { return BLAST_FURNACE; } + @PowerNukkitOnly @Override protected int getIdleBlockId() { return Block.BLAST_FURNACE; } + @PowerNukkitOnly @Override protected int getBurningBlockId() { return Block.LIT_BLAST_FURNACE; } + @PowerNukkitOnly @Override protected InventoryType getInventoryType() { return InventoryType.BLAST_FURNACE; } + @PowerNukkitOnly @Override protected SmeltingRecipe matchRecipe(Item raw) { return this.server.getCraftingManager().matchBlastFurnaceRecipe(raw); } + @PowerNukkitOnly @Override protected int getSpeedMultiplier() { return 2; diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityCauldron.java b/src/main/java/cn/nukkit/blockentity/BlockEntityCauldron.java index 002aada97fa..45184e6d78a 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityCauldron.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityCauldron.java @@ -28,22 +28,27 @@ public class BlockEntityCauldron extends BlockEntitySpawnable { @PowerNukkitDifference(since = "1.4.0.0-PN", info = "Using -1 instead of the overflown 0xFFFF") @Deprecated @DeprecationDetails(by = "PowerNukkit", since = "1.4.0.0-PN", reason = "Magic value", replaceWith = "PotionType") + @PowerNukkitOnly public static final int POTION_TYPE_EMPTY = -1; @Deprecated @DeprecationDetails(by = "PowerNukkit", since = "1.4.0.0-PN", reason = "Magic value", replaceWith = "PotionType") + @PowerNukkitOnly public static final int POTION_TYPE_NORMAL = 0; @Deprecated @DeprecationDetails(by = "PowerNukkit", since = "1.4.0.0-PN", reason = "Magic value", replaceWith = "PotionType") + @PowerNukkitOnly public static final int POTION_TYPE_SPLASH = 1; @Deprecated @DeprecationDetails(by = "PowerNukkit", since = "1.4.0.0-PN", reason = "Magic value", replaceWith = "PotionType") + @PowerNukkitOnly public static final int POTION_TYPE_LINGERING = 2; @Deprecated @DeprecationDetails(by = "PowerNukkit", since = "1.4.0.0-PN", reason = "Magic value", replaceWith = "PotionType") + @PowerNukkitOnly public static final int POTION_TYPE_LAVA = 0xF19B; public BlockEntityCauldron(FullChunk chunk, CompoundTag nbt) { @@ -84,11 +89,13 @@ public void setPotionId(int potionId) { public boolean hasPotion() { return (getPotionId() & 0xffff) != 0xffff; } - + + @PowerNukkitOnly public void setPotionType(int potionType) { this.namedTag.putShort("PotionType", (short)(potionType & 0xFFFF)); } - + + @PowerNukkitOnly public int getPotionType() { return (short)(this.namedTag.getShort("PotionType") & 0xFFFF); } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityDispenser.java b/src/main/java/cn/nukkit/blockentity/BlockEntityDispenser.java index 8521145eaec..55ca557e9a2 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityDispenser.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityDispenser.java @@ -16,11 +16,13 @@ public BlockEntityDispenser(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } + @PowerNukkitOnly @Override protected DispenserInventory createInventory() { return inventory = new DispenserInventory(this); } + @PowerNukkitOnly @Override protected String getBlockEntityName() { return BlockEntity.DISPENSER; diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityDropper.java b/src/main/java/cn/nukkit/blockentity/BlockEntityDropper.java index ad7b215a037..3f6fd7eca35 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityDropper.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityDropper.java @@ -16,11 +16,13 @@ public BlockEntityDropper(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } + @PowerNukkitOnly @Override protected DropperInventory createInventory() { return inventory = new DropperInventory(this); } + @PowerNukkitOnly @Override protected String getBlockEntityName() { return BlockEntity.DISPENSER; diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityFurnace.java b/src/main/java/cn/nukkit/blockentity/BlockEntityFurnace.java index 124299199fa..b19e797e8e5 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityFurnace.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityFurnace.java @@ -1,6 +1,7 @@ package cn.nukkit.blockentity; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; import cn.nukkit.event.inventory.FurnaceBurnEvent; @@ -36,6 +37,7 @@ public BlockEntityFurnace(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } + @PowerNukkitOnly protected InventoryType getInventoryType() { return InventoryType.FURNACE; } @@ -89,10 +91,12 @@ protected void initBlockEntity() { super.initBlockEntity(); } + @PowerNukkitOnly protected String getFurnaceName() { return "Furnace"; } + @PowerNukkitOnly protected String getClientName() { return FURNACE; } @@ -203,14 +207,17 @@ public FurnaceInventory getInventory() { return inventory; } + @PowerNukkitOnly protected int getIdleBlockId() { return Block.FURNACE; } + @PowerNukkitOnly protected int getBurningBlockId() { return Block.LIT_FURNACE; } + @PowerNukkitOnly protected void setBurning(boolean burning) { if (burning) { if (this.getBlock().getId() == getIdleBlockId()) { @@ -247,10 +254,12 @@ protected void checkFuel(Item fuel) { } } + @PowerNukkitOnly protected SmeltingRecipe matchRecipe(Item raw) { return this.server.getCraftingManager().matchFurnaceRecipe(raw); } + @PowerNukkitOnly protected int getSpeedMultiplier() { return 1; } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityMovingBlock.java b/src/main/java/cn/nukkit/blockentity/BlockEntityMovingBlock.java index 144672200f0..2c056eeab5d 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityMovingBlock.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityMovingBlock.java @@ -20,6 +20,7 @@ */ public class BlockEntityMovingBlock extends BlockEntitySpawnable { + @PowerNukkitOnly protected String blockString; protected Block block; @@ -49,6 +50,7 @@ protected void initBlockEntity() { super.initBlockEntity(); } + @PowerNukkitOnly @Deprecated @DeprecationDetails(by = "PowerNukkit", since = "1.4.0.0-PN", reason = "renamed", replaceWith = "getMovingBlockEntityCompound()") public CompoundTag getBlockEntity() { return getMovingBlockEntityCompound(); @@ -65,14 +67,17 @@ public CompoundTag getMovingBlockEntityCompound() { return null; } + @PowerNukkitOnly public Block getMovingBlock() { return this.block; } + @PowerNukkitOnly public String getMovingBlockString() { return this.blockString; } + @PowerNukkitOnly public void moveCollidedEntities(BlockEntityPistonArm piston, BlockFace moveDirection) { AxisAlignedBB bb = block.getBoundingBox(); diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java b/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java index a2108980f02..f2dd7082c61 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java @@ -7,7 +7,6 @@ import cn.nukkit.block.Block; import cn.nukkit.block.BlockAir; import cn.nukkit.block.BlockID; -import cn.nukkit.utils.RedstoneComponent; import cn.nukkit.entity.Entity; import cn.nukkit.event.entity.EntityMoveByPistonEvent; import cn.nukkit.level.Level; @@ -20,17 +19,21 @@ import cn.nukkit.nbt.tag.IntTag; import cn.nukkit.nbt.tag.ListTag; import cn.nukkit.utils.Faceable; +import cn.nukkit.utils.RedstoneComponent; import java.util.ArrayList; import java.util.List; +import static cn.nukkit.utils.Utils.dynamic; + /** * @author CreeperFace */ @PowerNukkitDifference(info = "The piston will work as close as possible to vanilla") public class BlockEntityPistonArm extends BlockEntitySpawnable { - public static final float MOVE_STEP = Float.valueOf(0.5f); + @PowerNukkitOnly + public static final float MOVE_STEP = dynamic(0.5f); public float progress; public float lastProgress = 1; @@ -47,6 +50,7 @@ public class BlockEntityPistonArm extends BlockEntitySpawnable { @Since("FUTURE") public byte newState = 1; + @PowerNukkitOnly public List attachedBlocks; public boolean powered; @@ -158,8 +162,7 @@ void moveEntity(Entity entity, BlockFace moveDirection) { } } - @PowerNukkitDifference(info = "Trigger observer (with #setDirty()).", since = "1.4.0.0-PN") - @PowerNukkitDifference(info = "Add option to see if blockentity is currently handling piston move (var finished)") + @PowerNukkitOnly public void move(boolean extending, List attachedBlocks) { this.extending = extending; this.lastProgress = this.progress = extending ? 0 : 1; diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntitySmoker.java b/src/main/java/cn/nukkit/blockentity/BlockEntitySmoker.java index c9c618721cd..c8c57fd5924 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntitySmoker.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntitySmoker.java @@ -15,36 +15,43 @@ public BlockEntitySmoker(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); } + @PowerNukkitOnly @Override protected String getFurnaceName() { return "Smoker"; } + @PowerNukkitOnly @Override protected String getClientName() { return SMOKER; } + @PowerNukkitOnly @Override protected int getIdleBlockId() { return Block.SMOKER; } + @PowerNukkitOnly @Override protected int getBurningBlockId() { return Block.LIT_SMOKER; } + @PowerNukkitOnly @Override protected InventoryType getInventoryType() { return InventoryType.SMOKER; } + @PowerNukkitOnly @Override protected SmeltingRecipe matchRecipe(Item raw) { return this.server.getCraftingManager().matchSmokerRecipe(raw); } + @PowerNukkitOnly @Override protected int getSpeedMultiplier() { return 2; diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntitySpawnable.java b/src/main/java/cn/nukkit/blockentity/BlockEntitySpawnable.java index 146c4d0c8f4..8f1d1f3f517 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntitySpawnable.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntitySpawnable.java @@ -1,6 +1,7 @@ package cn.nukkit.blockentity; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.NBTIO; import cn.nukkit.nbt.tag.CompoundTag; @@ -37,10 +38,12 @@ public void spawnTo(Player player) { player.dataPacket(getSpawnPacket()); } + @PowerNukkitOnly public BlockEntityDataPacket getSpawnPacket() { return getSpawnPacket(null); } + @PowerNukkitOnly public BlockEntityDataPacket getSpawnPacket(CompoundTag nbt) { if (nbt == null) { nbt = this.getSpawnCompound(); diff --git a/src/main/java/cn/nukkit/blockproperty/ArrayBlockProperty.java b/src/main/java/cn/nukkit/blockproperty/ArrayBlockProperty.java index 6e6e6509d22..66223af2aac 100644 --- a/src/main/java/cn/nukkit/blockproperty/ArrayBlockProperty.java +++ b/src/main/java/cn/nukkit/blockproperty/ArrayBlockProperty.java @@ -126,6 +126,7 @@ public ArrayBlockProperty ordinal(boolean ordinal) { return new ArrayBlockProperty<>(getName(), isExportedToItem(), universe, getBitSize(), getPersistenceName(), ordinal); } + @PowerNukkitOnly @Override public int getMetaForValue(@Nullable E value) { if (value == null) { @@ -140,11 +141,13 @@ public int getMetaForValue(@Nullable E value) { } @Nonnull + @PowerNukkitOnly @Override public E getValueForMeta(int meta) { return universe[meta]; } + @PowerNukkitOnly @Override public int getIntValueForMeta(int meta) { try { @@ -156,6 +159,7 @@ public int getIntValueForMeta(int meta) { } @Nonnull + @PowerNukkitOnly @Override public String getPersistenceValueForMeta(int meta) { try { @@ -195,6 +199,7 @@ public int getMetaForPersistenceValue(String persistenceValue) { ); } + @PowerNukkitOnly @Override protected void validateDirectly(@Nullable E value) { for (E object : universe) { @@ -205,17 +210,20 @@ protected void validateDirectly(@Nullable E value) { throw new IllegalArgumentException(value+" is not valid for this property"); } + @PowerNukkitOnly @Override protected void validateMetaDirectly(int meta) { Preconditions.checkElementIndex(meta, universe.length); } + @PowerNukkitOnly @Nonnull @Override public Class getValueClass() { return eClass; } + @PowerNukkitOnly @Nonnull public E[] getUniverse() { return universe.clone(); diff --git a/src/main/java/cn/nukkit/blockproperty/BlockProperties.java b/src/main/java/cn/nukkit/blockproperty/BlockProperties.java index f8e25a76581..08d58b2fc29 100644 --- a/src/main/java/cn/nukkit/blockproperty/BlockProperties.java +++ b/src/main/java/cn/nukkit/blockproperty/BlockProperties.java @@ -523,6 +523,7 @@ public int getIntValue(BigInteger currentMeta, String propertyName) { * @throws NoSuchElementException If the property is not registered * @throws InvalidBlockPropertyMetaException If the meta contains invalid data */ + @PowerNukkitOnly public String getPersistenceValue(int currentMeta, String propertyName) { RegisteredBlockProperty registry = requireRegisteredProperty(propertyName); return registry.property.getPersistenceValue(currentMeta, registry.offset); @@ -532,6 +533,7 @@ public String getPersistenceValue(int currentMeta, String propertyName) { * @throws NoSuchElementException If the property is not registered * @throws InvalidBlockPropertyMetaException If the meta contains invalid data */ + @PowerNukkitOnly public String getPersistenceValue(long currentMeta, String propertyName) { RegisteredBlockProperty registry = requireRegisteredProperty(propertyName); return registry.property.getPersistenceValue(currentMeta, registry.offset); @@ -541,6 +543,7 @@ public String getPersistenceValue(long currentMeta, String propertyName) { * @throws NoSuchElementException If the property is not registered * @throws InvalidBlockPropertyMetaException If the meta contains invalid data */ + @PowerNukkitOnly public String getPersistenceValue(BigInteger currentMeta, String propertyName) { RegisteredBlockProperty registry = requireRegisteredProperty(propertyName); return registry.property.getPersistenceValue(currentMeta, registry.offset); diff --git a/src/main/java/cn/nukkit/blockproperty/BooleanBlockProperty.java b/src/main/java/cn/nukkit/blockproperty/BooleanBlockProperty.java index 7f6917b656c..a0330d8aead 100644 --- a/src/main/java/cn/nukkit/blockproperty/BooleanBlockProperty.java +++ b/src/main/java/cn/nukkit/blockproperty/BooleanBlockProperty.java @@ -41,12 +41,14 @@ public BooleanBlockProperty exportingToItems(boolean exportedToItem) { return new BooleanBlockProperty(getName(), exportedToItem, getPersistenceName()); } + @PowerNukkitOnly @Override public int setValue(int currentMeta, int bitOffset, @Nullable Boolean newValue) { boolean value = newValue != null && newValue; return setValue(currentMeta, bitOffset, value); } + @PowerNukkitOnly @Override public long setValue(long currentBigMeta, int bitOffset, @Nullable Boolean newValue) { boolean value = newValue != null && newValue; @@ -68,11 +70,13 @@ public long setValue(long currentMeta, int bitOffset, boolean newValue) { } @Nonnull + @PowerNukkitOnly @Override public Boolean getValue(int currentMeta, int bitOffset) { return getBooleanValue(currentMeta, bitOffset); } + @PowerNukkitOnly @Nonnull @Override public Boolean getValue(long currentBigMeta, int bitOffset) { @@ -100,6 +104,7 @@ public boolean getBooleanValue(BigInteger currentHugeData, int bitOffset) { return mask.equals(currentHugeData.and(mask)); } + @PowerNukkitOnly @Override public int getIntValue(int currentMeta, int bitOffset) { return getBooleanValue(currentMeta, bitOffset)? 1 : 0; @@ -108,6 +113,7 @@ public int getIntValue(int currentMeta, int bitOffset) { /** * @throws InvalidBlockPropertyMetaException If the meta contains invalid data */ + @PowerNukkitOnly @Override public int getIntValueForMeta(int meta) { if (meta == 1 || meta == 0) { @@ -116,6 +122,7 @@ public int getIntValueForMeta(int meta) { throw new InvalidBlockPropertyMetaException(this, meta, meta, "Only 1 or 0 was expected"); } + @PowerNukkitOnly @Override public int getMetaForValue(@Nullable Boolean value) { return Boolean.TRUE.equals(value)? 1 : 0; @@ -125,6 +132,7 @@ public int getMetaForValue(@Nullable Boolean value) { * @throws InvalidBlockPropertyMetaException If the meta contains invalid data */ @Nonnull + @PowerNukkitOnly @Override public Boolean getValueForMeta(int meta) { return getBooleanValueForMeta(meta); @@ -160,17 +168,20 @@ public boolean isDefaultValue(@Nullable Boolean value) { return value == null || Boolean.FALSE.equals(value); } + @PowerNukkitOnly @Override protected void validateMetaDirectly(int meta) { Preconditions.checkArgument(meta == 1 || meta == 0, "Must be 1 or 0"); } + @PowerNukkitOnly @Nonnull @Override public Class getValueClass() { return Boolean.class; } + @PowerNukkitOnly @Override public String getPersistenceValueForMeta(int meta) { if (meta == 1) { diff --git a/src/main/java/cn/nukkit/blockproperty/IntBlockProperty.java b/src/main/java/cn/nukkit/blockproperty/IntBlockProperty.java index 8ab6664338a..2387cdecc6a 100644 --- a/src/main/java/cn/nukkit/blockproperty/IntBlockProperty.java +++ b/src/main/java/cn/nukkit/blockproperty/IntBlockProperty.java @@ -65,6 +65,7 @@ public IntBlockProperty exportingToItems(boolean exportedToItem) { return new IntBlockProperty(getName(), exportedToItem, getMaxValue(), getMinValue(), getBitSize(), getPersistenceName()); } + @PowerNukkitOnly @Override public int getMetaForValue(@Nullable Integer value) { if (value == null) { @@ -84,12 +85,14 @@ public int getMetaForValue(int value) { return value - minValue; } + @PowerNukkitOnly @Nonnull @Override public Integer getValueForMeta(int meta) { return getIntValueForMeta(meta); } + @PowerNukkitOnly @Override public int getIntValueForMeta(int meta) { try { @@ -100,6 +103,7 @@ public int getIntValueForMeta(int meta) { return minValue + meta; } + @PowerNukkitOnly @Override public String getPersistenceValueForMeta(int meta) { return String.valueOf(getIntValueForMeta(meta)); @@ -116,6 +120,7 @@ public int getMetaForPersistenceValue(@Nonnull String persistenceValue) { } } + @PowerNukkitOnly @Override protected void validateDirectly(@Nullable Integer value) { if (value == null) { @@ -123,12 +128,13 @@ protected void validateDirectly(@Nullable Integer value) { } validateDirectly(value.intValue()); } - + private void validateDirectly(int newValue) { Preconditions.checkArgument(newValue >= minValue, "New value (%s) must be higher or equals to %s", newValue, minValue); Preconditions.checkArgument(maxValue >= newValue, "New value (%s) must be less or equals to %s", newValue, maxValue); } + @PowerNukkitOnly @Override protected void validateMetaDirectly(int meta) { int max = maxValue - minValue; @@ -182,6 +188,7 @@ public boolean isDefaultValue(@Nullable Integer value) { return value == null || minValue == value; } + @PowerNukkitOnly @Nonnull @Override public Class getValueClass() { diff --git a/src/main/java/cn/nukkit/blockproperty/UnsignedIntBlockProperty.java b/src/main/java/cn/nukkit/blockproperty/UnsignedIntBlockProperty.java index 727197f5e44..fa40154f884 100644 --- a/src/main/java/cn/nukkit/blockproperty/UnsignedIntBlockProperty.java +++ b/src/main/java/cn/nukkit/blockproperty/UnsignedIntBlockProperty.java @@ -75,6 +75,7 @@ private static int addSign(long value) { return (int)(value & 0xFFFFFFFFL); } + @PowerNukkitOnly @Override public int getMetaForValue(@Nullable Integer value) { if (value == null) { @@ -89,12 +90,14 @@ public int getMetaForValue(@Nullable Integer value) { return (int) (unsigned - minValue); } + @PowerNukkitOnly @Nonnull @Override public Integer getValueForMeta(int meta) { return getIntValueForMeta(meta); } + @PowerNukkitOnly @Override public int getIntValueForMeta(int meta) { try { @@ -105,6 +108,7 @@ public int getIntValueForMeta(int meta) { return (int) (minValue + meta); } + @PowerNukkitOnly @Override public String getPersistenceValueForMeta(int meta) { return String.valueOf(removeSign(getIntValueForMeta(meta))); @@ -121,6 +125,7 @@ public int getMetaForPersistenceValue(@Nonnull String persistenceValue) { } } + @PowerNukkitOnly @Override protected void validateDirectly(@Nullable Integer value) { if (value == null) { @@ -137,12 +142,14 @@ private void validateDirectly(long unsigned) { Preconditions.checkArgument(maxValue >= unsigned, "New value (%s) must be less or equals to %s", unsigned, maxValue); } + @PowerNukkitOnly @Override protected void validateMetaDirectly(int meta) { long max = maxValue - minValue; Preconditions.checkArgument(0 <= meta && meta <= max, "The meta %s is outside the range of 0 .. ", meta, max); } + @PowerNukkitOnly @Nonnull @Override public Class getValueClass() { diff --git a/src/main/java/cn/nukkit/blockstate/BigIntegerMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/BigIntegerMutableBlockState.java index 7d5095c74e6..859deeb4bce 100644 --- a/src/main/java/cn/nukkit/blockstate/BigIntegerMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/BigIntegerMutableBlockState.java @@ -31,6 +31,7 @@ @ToString(callSuper = true) @EqualsAndHashCode(callSuper = true) @ParametersAreNonnullByDefault +@PowerNukkitOnly public class BigIntegerMutableBlockState extends MutableBlockState { private static final Set> LONG_COMPATIBLE_CLASSES = new HashSet<>(Arrays.asList( Long.class, Integer.class, Short.class, Byte.class)); @@ -88,6 +89,7 @@ void setDataStorageWithoutValidation(Number storage) { } } + @PowerNukkitOnly @Override public void validate() { validate(storage); @@ -121,6 +123,7 @@ private void validate(BigInteger state) { @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "getDataStorage()") @Override + @PowerNukkitOnly public int getLegacyDamage() { return storage.and(BigInteger.valueOf(Block.DATA_MASK)).intValue(); } @@ -129,6 +132,7 @@ public int getLegacyDamage() { @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "getDataStorage()") @Override + @PowerNukkitOnly public int getBigDamage() { return storage.and(BigInteger.valueOf(BlockStateRegistry.BIG_META_MASK)).intValue(); } @@ -152,6 +156,7 @@ public BigInteger getHugeDamage() { return storage; } + @PowerNukkitOnly @Nonnegative @Nonnull @Override @@ -189,15 +194,18 @@ public void setIntValue(String propertyName, int value) { @Nonnull @Override + @PowerNukkitOnly public Serializable getPropertyValue(String propertyName) { return properties.getValue(storage, propertyName); } + @PowerNukkitOnly @Override public int getIntValue(String propertyName) { return properties.getIntValue(storage, propertyName); } + @PowerNukkitOnly @Override public boolean getBooleanValue(String propertyName) { return properties.getBooleanValue(storage, propertyName); @@ -209,10 +217,12 @@ public boolean getBooleanValue(String propertyName) { */ @Nonnull @Override + @PowerNukkitOnly public String getPersistenceValue(String propertyName) { return properties.getPersistenceValue(storage, propertyName); } + @PowerNukkitOnly @Nonnull @Override public BlockState getCurrentState() { @@ -226,9 +236,10 @@ public int getExactIntStorage() { return storage.intValueExact(); } + @PowerNukkitOnly @Nonnull @Override - public BigIntegerMutableBlockState copy() { + public MutableBlockState copy() { return new BigIntegerMutableBlockState(getBlockId(), properties, storage); } } diff --git a/src/main/java/cn/nukkit/blockstate/BlockState.java b/src/main/java/cn/nukkit/blockstate/BlockState.java index 70c5bde8c7b..55b74720be6 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockState.java +++ b/src/main/java/cn/nukkit/blockstate/BlockState.java @@ -234,7 +234,6 @@ public static BlockState of(@Nonnull String persistedStateId, boolean useDefault } } - @Getter @Nonnegative private final int blockId; @@ -297,6 +296,14 @@ private BlockState(@Nonnegative int blockId, @Nonnegative BigInteger blockData) } } + @PowerNukkitOnly + @Since("1.4.0.0-PN") + @Nonnegative + @Override + public int getBlockId() { + return blockId; + } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Nonnull @@ -476,12 +483,14 @@ public ItemBlock asItemBlock(int count) { @Nonnegative @Nonnull @Override + @PowerNukkitOnly public Number getDataStorage() { return storage.getNumber(); } @Nonnull @Override + @PowerNukkitOnly public BlockProperties getProperties() { return BlockStateRegistry.getProperties(blockId); } @@ -490,6 +499,7 @@ public BlockProperties getProperties() { @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "getDataStorage()") @Override + @PowerNukkitOnly public int getLegacyDamage() { return storage.getLegacyDamage(); } @@ -497,6 +507,7 @@ public int getLegacyDamage() { @Unsigned @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "getDataStorage()") + @PowerNukkitOnly @Override public int getBigDamage() { return storage.getBigDamage(); @@ -523,15 +534,18 @@ public BigInteger getHugeDamage() { @Nonnull @Override + @PowerNukkitOnly public Serializable getPropertyValue(String propertyName) { return storage.getPropertyValue(getProperties(), propertyName); } @Override + @PowerNukkitOnly public int getIntValue(String propertyName) { return storage.getIntValue(getProperties(), propertyName); } + @PowerNukkitOnly @Override public boolean getBooleanValue(String propertyName) { return storage.getBooleanValue(getProperties(), propertyName); @@ -539,16 +553,19 @@ public boolean getBooleanValue(String propertyName) { @Nonnull @Override + @PowerNukkitOnly public String getPersistenceValue(String propertyName) { return storage.getPersistenceValue(getProperties(), propertyName); } @Nonnull @Override + @PowerNukkitOnly public BlockState getCurrentState() { return this; } + @PowerNukkitOnly @Override public int getBitSize() { return storage.getBitSize(); @@ -659,6 +676,7 @@ public OptionalBoolean getCachedValidation() { @Nonnull @Override + @PowerNukkitOnly public Block getBlock() { try { Block block = IBlockState.super.getBlock(); @@ -672,6 +690,7 @@ public Block getBlock() { @Nonnull @Override + @PowerNukkitOnly public Block getBlock(@Nullable Level level, int x, int y, int z, int layer, boolean repair, @Nullable Consumer callback) { if (valid == OptionalBoolean.TRUE) { Block block = IBlockState.super.getBlock(); diff --git a/src/main/java/cn/nukkit/blockstate/BlockStateRepair.java b/src/main/java/cn/nukkit/blockstate/BlockStateRepair.java index 8ff784d484b..2b0edf28971 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockStateRepair.java +++ b/src/main/java/cn/nukkit/blockstate/BlockStateRepair.java @@ -5,6 +5,8 @@ import cn.nukkit.blockproperty.BlockProperties; import cn.nukkit.blockproperty.BlockProperty; import cn.nukkit.blockproperty.exception.InvalidBlockPropertyException; +import lombok.AllArgsConstructor; +import lombok.Getter; import lombok.Value; import lombok.experimental.NonFinal; @@ -18,6 +20,8 @@ @PowerNukkitOnly @Since("1.4.0.0-PN") @Value +@AllArgsConstructor(onConstructor = @__(@PowerNukkitOnly)) +@Getter(onMethod = @__(@PowerNukkitOnly)) public class BlockStateRepair { /** * The block ID of the block state that is being repaired. diff --git a/src/main/java/cn/nukkit/blockstate/ByteMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/ByteMutableBlockState.java index 066f7592da1..8fabc49f511 100644 --- a/src/main/java/cn/nukkit/blockstate/ByteMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/ByteMutableBlockState.java @@ -66,6 +66,7 @@ public ByteMutableBlockState(int blockId, BlockProperties properties) { this(blockId, properties, (byte)0); } + @PowerNukkitOnly @Nonnegative @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "getDataStorage()") @@ -78,6 +79,7 @@ public int getLegacyDamage() { @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "getDataStorage()") @Override + @PowerNukkitOnly public int getBigDamage() { return storage; } @@ -94,6 +96,7 @@ public BigInteger getHugeDamage() { @Nonnegative @Nonnull @Override + @PowerNukkitOnly public Byte getDataStorage() { return storage; } @@ -138,6 +141,7 @@ void setDataStorageWithoutValidation(Number storage) { this.storage = storage.byteValue(); } + @PowerNukkitOnly @Override public void validate() { validate(storage); @@ -195,17 +199,20 @@ public void setIntValue(String propertyName, int value) { storage = (byte)properties.setIntValue(storage, propertyName, value); } + @PowerNukkitOnly @Nonnull @Override public Serializable getPropertyValue(String propertyName) { return properties.getValue(storage, propertyName); } + @PowerNukkitOnly @Override public int getIntValue(String propertyName) { return properties.getIntValue(storage, propertyName); } + @PowerNukkitOnly @Override public boolean getBooleanValue(String propertyName) { return properties.getBooleanValue(storage, propertyName); @@ -217,6 +224,7 @@ public String getPersistenceValue(String propertyName) { return properties.getPersistenceValue(storage, propertyName); } + @PowerNukkitOnly @Nonnull @Override public BlockState getCurrentState() { @@ -230,9 +238,10 @@ public int getExactIntStorage() { return storage; } + @PowerNukkitOnly @Nonnull @Override - public ByteMutableBlockState copy() { + public MutableBlockState copy() { return new ByteMutableBlockState(blockId, properties, storage); } } diff --git a/src/main/java/cn/nukkit/blockstate/IntMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/IntMutableBlockState.java index c8484b63d31..7055ec75fcb 100644 --- a/src/main/java/cn/nukkit/blockstate/IntMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/IntMutableBlockState.java @@ -56,6 +56,7 @@ public int getLegacyDamage() { @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "getDataStorage()") @Override + @PowerNukkitOnly public int getBigDamage() { return storage; } @@ -71,6 +72,7 @@ public BigInteger getHugeDamage() { @Nonnegative @Nonnull + @PowerNukkitOnly @Override public Integer getDataStorage() { return storage; @@ -115,6 +117,7 @@ void setDataStorageWithoutValidation(Number storage) { this.storage = storage.intValue(); } + @PowerNukkitOnly @Override public void validate() { validate(storage); @@ -167,22 +170,26 @@ public void setIntValue(String propertyName, int value) { storage = properties.setIntValue(storage, propertyName, value); } + @PowerNukkitOnly @Nonnull @Override public Serializable getPropertyValue(String propertyName) { return properties.getValue(storage, propertyName); } + @PowerNukkitOnly @Override public int getIntValue(String propertyName) { return properties.getIntValue(storage, propertyName); } + @PowerNukkitOnly @Override public boolean getBooleanValue(String propertyName) { return properties.getBooleanValue(storage, propertyName); } + @PowerNukkitOnly @Nonnull @Override public String getPersistenceValue(String propertyName) { @@ -191,6 +198,7 @@ public String getPersistenceValue(String propertyName) { @Nonnull @Override + @PowerNukkitOnly public BlockState getCurrentState() { return BlockState.of(blockId, storage); } @@ -202,9 +210,10 @@ public int getExactIntStorage() { return storage; } + @PowerNukkitOnly @Nonnull @Override - public IntMutableBlockState copy() { + public MutableBlockState copy() { return new IntMutableBlockState(blockId, properties, storage); } } diff --git a/src/main/java/cn/nukkit/blockstate/LongMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/LongMutableBlockState.java index 6eb7450e62d..865b9f65c8e 100644 --- a/src/main/java/cn/nukkit/blockstate/LongMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/LongMutableBlockState.java @@ -122,6 +122,7 @@ public int getLegacyDamage() { @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "getDataStorage()") @Override + @PowerNukkitOnly public int getBigDamage() { return (int) (storage & BlockStateRegistry.BIG_META_MASK); } @@ -148,6 +149,7 @@ public BigInteger getHugeDamage() { @Nonnegative @Nonnull @Override + @PowerNukkitOnly public Number getDataStorage() { return storage; } @@ -180,22 +182,26 @@ public void setIntValue(String propertyName, int value) { storage = properties.setIntValue(storage, propertyName, value); } + @PowerNukkitOnly @Nonnull @Override public Serializable getPropertyValue(String propertyName) { return properties.getValue(storage, propertyName); } + @PowerNukkitOnly @Override public int getIntValue(String propertyName) { return properties.getIntValue(storage, propertyName); } + @PowerNukkitOnly @Override public boolean getBooleanValue(String propertyName) { return properties.getBooleanValue(storage, propertyName); } + @PowerNukkitOnly @Nonnull @Override public String getPersistenceValue(String propertyName) { @@ -204,6 +210,7 @@ public String getPersistenceValue(String propertyName) { @Nonnull @Override + @PowerNukkitOnly public BlockState getCurrentState() { return BlockState.of(blockId, storage); } @@ -219,9 +226,10 @@ public int getExactIntStorage() { return (int) storage; } + @PowerNukkitOnly @Nonnull @Override - public LongMutableBlockState copy() { + public MutableBlockState copy() { return new LongMutableBlockState(getBlockId(), properties, storage); } } diff --git a/src/main/java/cn/nukkit/blockstate/ZeroMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/ZeroMutableBlockState.java index f9263a5a0ef..82d035f96ca 100644 --- a/src/main/java/cn/nukkit/blockstate/ZeroMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/ZeroMutableBlockState.java @@ -55,6 +55,7 @@ public ZeroMutableBlockState(int blockId, BlockProperties properties) { public void validate() { } + @PowerNukkitOnly @Nonnull @Override public MutableBlockState copy() { @@ -137,8 +138,8 @@ public int getLegacyDamage() { @Unsigned @Since("1.4.0.0-PN") - @PowerNukkitOnly @Override + @PowerNukkitOnly public int getBigDamage() { return 0; } diff --git a/src/main/java/cn/nukkit/command/CapturingCommandSender.java b/src/main/java/cn/nukkit/command/CapturingCommandSender.java index ff01979c875..299d387da71 100644 --- a/src/main/java/cn/nukkit/command/CapturingCommandSender.java +++ b/src/main/java/cn/nukkit/command/CapturingCommandSender.java @@ -29,21 +29,25 @@ public class CapturingCommandSender implements CommandSender { @NonNull private final Permissible perms; + @PowerNukkitOnly public CapturingCommandSender() { this("System"); } - + + @PowerNukkitOnly public CapturingCommandSender(@NonNull String name) { this.name = name; this.perms = new PermissibleBase(this); } + @PowerNukkitOnly public CapturingCommandSender(@NonNull String name, boolean isOp) { this.name = name; this.isOp = true; this.perms = new PermissibleBase(this); } + @PowerNukkitOnly public CapturingCommandSender(@NonNull String name, boolean isOp, @NonNull Function permissibleFactory) { this.name = name; this.isOp = true; @@ -71,14 +75,17 @@ public void setOp(boolean op) { isOp = op; } + @PowerNukkitOnly public void resetCapture() { captured.setLength(0); } - + + @PowerNukkitOnly public synchronized String getRawCapture() { return captured.toString(); } - + + @PowerNukkitOnly public synchronized String getCleanCapture() { return TextFormat.clean(captured.toString()); } diff --git a/src/main/java/cn/nukkit/command/Command.java b/src/main/java/cn/nukkit/command/Command.java index 90524874a33..8f2cd25f6c5 100644 --- a/src/main/java/cn/nukkit/command/Command.java +++ b/src/main/java/cn/nukkit/command/Command.java @@ -4,6 +4,7 @@ import cn.nukkit.Server; import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.command.data.*; import cn.nukkit.lang.TextContainer; import cn.nukkit.lang.TranslationContainer; @@ -134,7 +135,8 @@ public CommandDataVersions generateCustomCommandData(Player player) { public Map getOverloads() { return this.commandData.overloads; } - + + @PowerNukkitOnly protected double parseTilde(String arg, double pos) { if (arg.equals("~")) { return pos; diff --git a/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java index eeb2013c02e..2d811a59851 100644 --- a/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java @@ -15,6 +15,11 @@ @PowerNukkitOnly public class BoatDispenseBehavior extends DefaultDispenseBehavior { + @PowerNukkitOnly + public BoatDispenseBehavior() { + } + + @PowerNukkitOnly @Override public Item dispense(BlockDispenser block, BlockFace face, Item item) { Vector3 pos = block.getSide(face).multiply(1.125); diff --git a/src/main/java/cn/nukkit/dispenser/BucketDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/BucketDispenseBehavior.java index 31fec412b77..a8bd23033c7 100644 --- a/src/main/java/cn/nukkit/dispenser/BucketDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/BucketDispenseBehavior.java @@ -1,5 +1,6 @@ package cn.nukkit.dispenser; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.*; import cn.nukkit.item.Item; import cn.nukkit.item.ItemBucket; @@ -11,6 +12,7 @@ */ public class BucketDispenseBehavior extends DefaultDispenseBehavior { + @PowerNukkitOnly @Override public Item dispense(BlockDispenser block, BlockFace face, Item item) { if (!(item instanceof ItemBucket)) { diff --git a/src/main/java/cn/nukkit/dispenser/DefaultDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/DefaultDispenseBehavior.java index 7d6ce0ef7cf..8f17cc7179f 100644 --- a/src/main/java/cn/nukkit/dispenser/DefaultDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/DefaultDispenseBehavior.java @@ -15,6 +15,7 @@ */ public class DefaultDispenseBehavior implements DispenseBehavior { + @PowerNukkitOnly public boolean success = true; @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/dispenser/DispenseBehaviorRegister.java b/src/main/java/cn/nukkit/dispenser/DispenseBehaviorRegister.java index e57d7fa5ee9..41494fc2f57 100644 --- a/src/main/java/cn/nukkit/dispenser/DispenseBehaviorRegister.java +++ b/src/main/java/cn/nukkit/dispenser/DispenseBehaviorRegister.java @@ -1,5 +1,6 @@ package cn.nukkit.dispenser; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockID; import cn.nukkit.item.ItemID; @@ -26,6 +27,7 @@ public static void removeDispenseBehavior(int id) { behaviors.remove(id); } + @PowerNukkitOnly public static void init() { registerBehavior(ItemID.BOAT, new BoatDispenseBehavior()); registerBehavior(ItemID.BUCKET, new BucketDispenseBehavior()); diff --git a/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java index 0393352346f..fa8ae1b488b 100644 --- a/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java @@ -12,6 +12,10 @@ @PowerNukkitOnly public class DropperDispenseBehavior extends DefaultDispenseBehavior { + @PowerNukkitOnly + public DropperDispenseBehavior() { + } + @PowerNukkitOnly @Override public Item dispense(BlockDispenser block, BlockFace face, Item item) { diff --git a/src/main/java/cn/nukkit/dispenser/DyeDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/DyeDispenseBehavior.java index 59850fe9a1b..bed8053b9c4 100644 --- a/src/main/java/cn/nukkit/dispenser/DyeDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/DyeDispenseBehavior.java @@ -8,6 +8,11 @@ @PowerNukkitOnly public class DyeDispenseBehavior extends DefaultDispenseBehavior { + @PowerNukkitOnly + public DyeDispenseBehavior() { + } + + @PowerNukkitOnly @Override public Item dispense(BlockDispenser block, BlockFace face, Item item) { Block target = block.getSide(face); diff --git a/src/main/java/cn/nukkit/dispenser/EmptyBucketDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/EmptyBucketDispenseBehavior.java index 088a356afaa..a664478b2cb 100644 --- a/src/main/java/cn/nukkit/dispenser/EmptyBucketDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/EmptyBucketDispenseBehavior.java @@ -1,5 +1,6 @@ package cn.nukkit.dispenser; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.*; import cn.nukkit.item.Item; import cn.nukkit.item.MinecraftItemID; @@ -10,6 +11,7 @@ */ public class EmptyBucketDispenseBehavior extends DefaultDispenseBehavior { + @PowerNukkitOnly @Override public Item dispense(BlockDispenser block, BlockFace face, Item item) { Block target = block.getSide(face); diff --git a/src/main/java/cn/nukkit/dispenser/FireworksDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/FireworksDispenseBehavior.java index 1d7eadf1c8f..380d9ed9dfb 100644 --- a/src/main/java/cn/nukkit/dispenser/FireworksDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/FireworksDispenseBehavior.java @@ -13,6 +13,11 @@ @PowerNukkitOnly public class FireworksDispenseBehavior extends DefaultDispenseBehavior { + @PowerNukkitOnly + public FireworksDispenseBehavior() { + } + + @PowerNukkitOnly @Override public Item dispense(BlockDispenser block, BlockFace face, Item item) { BlockFace opposite = face.getOpposite(); diff --git a/src/main/java/cn/nukkit/dispenser/FlintAndSteelDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/FlintAndSteelDispenseBehavior.java index 1bf4cb3b4d9..3aee9a176df 100644 --- a/src/main/java/cn/nukkit/dispenser/FlintAndSteelDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/FlintAndSteelDispenseBehavior.java @@ -12,9 +12,13 @@ @PowerNukkitOnly public class FlintAndSteelDispenseBehavior extends DefaultDispenseBehavior { + @PowerNukkitOnly + public FlintAndSteelDispenseBehavior() { + } + @Override @PowerNukkitDifference(info = "Reduce flint and steel usage instead of clearing.", since = "1.4.0.0-PN") - public Item dispense(BlockDispenser block, BlockFace face, Item item) { + public @PowerNukkitOnly Item dispense(BlockDispenser block, BlockFace face, Item item) { Block target = block.getSide(face); item = item.clone(); diff --git a/src/main/java/cn/nukkit/dispenser/ProjectileDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/ProjectileDispenseBehavior.java index a6d083d4921..4dcb053c5b8 100644 --- a/src/main/java/cn/nukkit/dispenser/ProjectileDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/ProjectileDispenseBehavior.java @@ -1,6 +1,7 @@ package cn.nukkit.dispenser; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.BlockDispenser; import cn.nukkit.entity.Entity; import cn.nukkit.entity.projectile.EntityProjectile; @@ -23,7 +24,7 @@ public ProjectileDispenseBehavior(String entity) { @Override @PowerNukkitDifference(info = "Implement sound.", since = "1.4.0.0-PN") - public Item dispense(BlockDispenser source, BlockFace face, Item item) { + public @PowerNukkitOnly Item dispense(BlockDispenser source, BlockFace face, Item item) { Vector3 dispensePos = source.getDispensePosition(); CompoundTag nbt = Entity.getDefaultNBT(dispensePos); diff --git a/src/main/java/cn/nukkit/dispenser/ShulkerBoxDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/ShulkerBoxDispenseBehavior.java index 0b19acafbda..7be9022887c 100644 --- a/src/main/java/cn/nukkit/dispenser/ShulkerBoxDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/ShulkerBoxDispenseBehavior.java @@ -10,6 +10,11 @@ @PowerNukkitOnly public class ShulkerBoxDispenseBehavior extends DefaultDispenseBehavior { + @PowerNukkitOnly + public ShulkerBoxDispenseBehavior() { + } + + @PowerNukkitOnly @Override public Item dispense(BlockDispenser block, BlockFace face, Item item) { Block target = block.getSide(face); diff --git a/src/main/java/cn/nukkit/dispenser/SpawnEggDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/SpawnEggDispenseBehavior.java index 14482939acd..1af5c8eee62 100644 --- a/src/main/java/cn/nukkit/dispenser/SpawnEggDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/SpawnEggDispenseBehavior.java @@ -12,6 +12,11 @@ @PowerNukkitOnly public class SpawnEggDispenseBehavior extends DefaultDispenseBehavior { + @PowerNukkitOnly + public SpawnEggDispenseBehavior() { + } + + @PowerNukkitOnly @Override public Item dispense(BlockDispenser block, BlockFace face, Item item) { Vector3 pos = block.getSide(face).add(0.5, 0.7, 0.5); diff --git a/src/main/java/cn/nukkit/dispenser/TNTDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/TNTDispenseBehavior.java index 0848aa4fe7b..d6f97a979df 100644 --- a/src/main/java/cn/nukkit/dispenser/TNTDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/TNTDispenseBehavior.java @@ -11,6 +11,11 @@ @PowerNukkitOnly public class TNTDispenseBehavior extends DefaultDispenseBehavior { + @PowerNukkitOnly + public TNTDispenseBehavior() { + } + + @PowerNukkitOnly @Override public Item dispense(BlockDispenser block, BlockFace face, Item item) { Vector3 pos = block.getSide(face).add(0.5, 0, 0.5); diff --git a/src/main/java/cn/nukkit/event/entity/CreatureSpawnEvent.java b/src/main/java/cn/nukkit/event/entity/CreatureSpawnEvent.java index c2efc1a3207..2e6529acf14 100644 --- a/src/main/java/cn/nukkit/event/entity/CreatureSpawnEvent.java +++ b/src/main/java/cn/nukkit/event/entity/CreatureSpawnEvent.java @@ -1,5 +1,6 @@ package cn.nukkit.event.entity; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.entity.Entity; import cn.nukkit.event.Cancellable; import cn.nukkit.event.Event; @@ -27,6 +28,7 @@ public CreatureSpawnEvent(int networkId, Position position, CompoundTag nbt, Spa this.compoundTag = nbt; } + @PowerNukkitOnly public CreatureSpawnEvent(int networkId, Position position, SpawnReason reason) { this.reason = reason; this.entityNetworkId = networkId; diff --git a/src/main/java/cn/nukkit/event/entity/EntityExplodeEvent.java b/src/main/java/cn/nukkit/event/entity/EntityExplodeEvent.java index a3f7d11b609..38909860459 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityExplodeEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityExplodeEvent.java @@ -25,6 +25,7 @@ public static HandlerList getHandlers() { protected final Position position; protected List blocks; + @PowerNukkitOnly protected Set ignitions; protected double yield; diff --git a/src/main/java/cn/nukkit/event/player/PlayerBucketEmptyEvent.java b/src/main/java/cn/nukkit/event/player/PlayerBucketEmptyEvent.java index e2487ab265d..69b2a337760 100644 --- a/src/main/java/cn/nukkit/event/player/PlayerBucketEmptyEvent.java +++ b/src/main/java/cn/nukkit/event/player/PlayerBucketEmptyEvent.java @@ -1,6 +1,7 @@ package cn.nukkit.event.player; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.event.HandlerList; import cn.nukkit.item.Item; @@ -13,6 +14,7 @@ public static HandlerList getHandlers() { return handlers; } + @PowerNukkitOnly public PlayerBucketEmptyEvent(Player who, Block blockClicked, BlockFace blockFace, Block liquid, Item bucket, Item itemInHand) { super(who, blockClicked, blockFace, liquid, bucket, itemInHand); } diff --git a/src/main/java/cn/nukkit/event/player/PlayerBucketEvent.java b/src/main/java/cn/nukkit/event/player/PlayerBucketEvent.java index 22a5f434f44..652644b59da 100644 --- a/src/main/java/cn/nukkit/event/player/PlayerBucketEvent.java +++ b/src/main/java/cn/nukkit/event/player/PlayerBucketEvent.java @@ -1,6 +1,7 @@ package cn.nukkit.event.player; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.event.Cancellable; import cn.nukkit.item.Item; @@ -18,7 +19,7 @@ abstract class PlayerBucketEvent extends PlayerEvent implements Cancellable { private Item item; - + @PowerNukkitOnly public PlayerBucketEvent(Player who, Block blockClicked, BlockFace blockFace, Block liquid, Item bucket, Item itemInHand) { this.player = who; this.blockClicked = blockClicked; diff --git a/src/main/java/cn/nukkit/event/player/PlayerBucketFillEvent.java b/src/main/java/cn/nukkit/event/player/PlayerBucketFillEvent.java index 1a327f420e6..4c6e5135fdc 100644 --- a/src/main/java/cn/nukkit/event/player/PlayerBucketFillEvent.java +++ b/src/main/java/cn/nukkit/event/player/PlayerBucketFillEvent.java @@ -1,6 +1,7 @@ package cn.nukkit.event.player; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.event.HandlerList; import cn.nukkit.item.Item; @@ -13,6 +14,7 @@ public static HandlerList getHandlers() { return handlers; } + @PowerNukkitOnly public PlayerBucketFillEvent(Player who, Block blockClicked, BlockFace blockFace, Block liquid, Item bucket, Item itemInHand) { super(who, blockClicked, blockFace, liquid, bucket, itemInHand); } diff --git a/src/main/java/cn/nukkit/event/vehicle/VehicleDamageEvent.java b/src/main/java/cn/nukkit/event/vehicle/VehicleDamageEvent.java index fffdabb2c5d..cecceebc478 100644 --- a/src/main/java/cn/nukkit/event/vehicle/VehicleDamageEvent.java +++ b/src/main/java/cn/nukkit/event/vehicle/VehicleDamageEvent.java @@ -1,5 +1,6 @@ package cn.nukkit.event.vehicle; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.entity.item.EntityVehicle; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; @@ -20,6 +21,7 @@ public class VehicleDamageEvent extends VehicleEvent implements Cancellable { * @param damage the caused damage on the vehicle */ + @PowerNukkitOnly public VehicleDamageEvent(final EntityVehicle vehicle, final double damage) { super(vehicle); diff --git a/src/main/java/cn/nukkit/event/vehicle/VehicleDestroyEvent.java b/src/main/java/cn/nukkit/event/vehicle/VehicleDestroyEvent.java index 6b866b79e2c..ddd9cda5e53 100644 --- a/src/main/java/cn/nukkit/event/vehicle/VehicleDestroyEvent.java +++ b/src/main/java/cn/nukkit/event/vehicle/VehicleDestroyEvent.java @@ -1,5 +1,6 @@ package cn.nukkit.event.vehicle; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.entity.Entity; import cn.nukkit.event.Cancellable; import cn.nukkit.event.HandlerList; @@ -17,6 +18,7 @@ public class VehicleDestroyEvent extends VehicleEvent implements Cancellable { * @param vehicle the destroyed vehicle */ + @PowerNukkitOnly public VehicleDestroyEvent(final Entity vehicle) { super(vehicle); } diff --git a/src/main/java/cn/nukkit/inventory/BaseInventory.java b/src/main/java/cn/nukkit/inventory/BaseInventory.java index e5ba0d467aa..2b357b328be 100644 --- a/src/main/java/cn/nukkit/inventory/BaseInventory.java +++ b/src/main/java/cn/nukkit/inventory/BaseInventory.java @@ -2,6 +2,7 @@ import cn.nukkit.Player; import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; import cn.nukkit.blockentity.BlockEntity; @@ -579,6 +580,7 @@ public void sendSlot(int index, Collection players) { this.sendSlot(index, players.toArray(Player.EMPTY_ARRAY)); } + @PowerNukkitOnly @Override public void addListener(InventoryListener listener) { if (this.listeners == null) { @@ -588,6 +590,7 @@ public void addListener(InventoryListener listener) { this.listeners.add(listener); } + @PowerNukkitOnly @Override public void removeListener(InventoryListener listener) { if (this.listeners != null) { diff --git a/src/main/java/cn/nukkit/inventory/BlastFurnaceRecipe.java b/src/main/java/cn/nukkit/inventory/BlastFurnaceRecipe.java index 36c9b100f1f..251651b469b 100644 --- a/src/main/java/cn/nukkit/inventory/BlastFurnaceRecipe.java +++ b/src/main/java/cn/nukkit/inventory/BlastFurnaceRecipe.java @@ -21,6 +21,7 @@ public void setInput(Item item) { this.ingredient = item.clone(); } + @PowerNukkitOnly @Override public Item getInput() { return this.ingredient.clone(); diff --git a/src/main/java/cn/nukkit/inventory/CampfireRecipe.java b/src/main/java/cn/nukkit/inventory/CampfireRecipe.java index a45bc61b5a1..cd51e046280 100644 --- a/src/main/java/cn/nukkit/inventory/CampfireRecipe.java +++ b/src/main/java/cn/nukkit/inventory/CampfireRecipe.java @@ -21,6 +21,7 @@ public void setInput(Item item) { this.ingredient = item.clone(); } + @PowerNukkitOnly @Override public Item getInput() { return this.ingredient.clone(); diff --git a/src/main/java/cn/nukkit/inventory/CraftingManager.java b/src/main/java/cn/nukkit/inventory/CraftingManager.java index 848007cb683..ff3f036aeff 100644 --- a/src/main/java/cn/nukkit/inventory/CraftingManager.java +++ b/src/main/java/cn/nukkit/inventory/CraftingManager.java @@ -50,19 +50,19 @@ public class CraftingManager { protected final Map> shapedRecipes = new Int2ObjectOpenHashMap<>(); public final Map furnaceRecipes = new Int2ObjectOpenHashMap<>(); - public final Map blastFurnaceRecipes = new Int2ObjectOpenHashMap<>(); - public final Map smokerRecipes = new Int2ObjectOpenHashMap<>(); - public final Map campfireRecipes = new Int2ObjectOpenHashMap<>(); + public @PowerNukkitOnly final Map blastFurnaceRecipes = new Int2ObjectOpenHashMap<>(); + public @PowerNukkitOnly final Map smokerRecipes = new Int2ObjectOpenHashMap<>(); + public @PowerNukkitOnly final Map campfireRecipes = new Int2ObjectOpenHashMap<>(); @Since("1.4.0.0-PN") public final Map multiRecipes = new HashMap<>(); public final Map brewingRecipes = new Int2ObjectOpenHashMap<>(); public final Map containerRecipes = new Int2ObjectOpenHashMap<>(); - public final Map stonecutterRecipes = new Int2ObjectOpenHashMap<>(); + public @PowerNukkitOnly final Map stonecutterRecipes = new Int2ObjectOpenHashMap<>(); private static int RECIPE_COUNT = 0; protected final Map> shapelessRecipes = new Int2ObjectOpenHashMap<>(); - protected final Map> cartographyRecipes = new Int2ObjectOpenHashMap<>(); + protected @PowerNukkitOnly final Map> cartographyRecipes = new Int2ObjectOpenHashMap<>(); private final Int2ObjectOpenHashMap> smithingRecipes = new Int2ObjectOpenHashMap<>(); @@ -518,18 +518,21 @@ public FurnaceRecipe matchFurnaceRecipe(Item input) { return recipe; } + @PowerNukkitOnly public CampfireRecipe matchCampfireRecipe(Item input) { CampfireRecipe recipe = this.campfireRecipes.get(getItemHash(input)); if (recipe == null) recipe = this.campfireRecipes.get(getItemHash(input.getId(), 0)); return recipe; } + @PowerNukkitOnly public BlastFurnaceRecipe matchBlastFurnaceRecipe(Item input) { BlastFurnaceRecipe recipe = this.blastFurnaceRecipes.get(getItemHash(input)); if (recipe == null) recipe = this.blastFurnaceRecipes.get(getItemHash(input.getId(), 0)); return recipe; } + @PowerNukkitOnly public SmokerRecipe matchSmokerRecipe(Item input) { SmokerRecipe recipe = this.smokerRecipes.get(getItemHash(input)); if (recipe == null) recipe = this.smokerRecipes.get(getItemHash(input.getId(), 0)); @@ -548,6 +551,7 @@ private static int getFullItemHash(Item item) { return 31 * getItemHash(item) + item.getCount(); } + @PowerNukkitOnly public void registerStonecutterRecipe(StonecutterRecipe recipe) { this.stonecutterRecipes.put(getItemHash(recipe.getResult()), recipe); } @@ -557,17 +561,19 @@ public void registerFurnaceRecipe(FurnaceRecipe recipe) { this.furnaceRecipes.put(getItemHash(input), recipe); } - + @PowerNukkitOnly public void registerBlastFurnaceRecipe(BlastFurnaceRecipe recipe) { Item input = recipe.getInput(); this.blastFurnaceRecipes.put(getItemHash(input), recipe); } + @PowerNukkitOnly public void registerSmokerRecipe(SmokerRecipe recipe) { Item input = recipe.getInput(); this.smokerRecipes.put(getItemHash(input), recipe); } + @PowerNukkitOnly public void registerCampfireRecipe(CampfireRecipe recipe) { Item input = recipe.getInput(); this.campfireRecipes.put(getItemHash(input), recipe); @@ -744,10 +750,12 @@ public ContainerRecipe matchContainerRecipe(Item input, Item potion) { return this.containerRecipes.get(getContainerHash(input.getId(), potion.getId())); } + @PowerNukkitOnly public StonecutterRecipe matchStonecutterRecipe(Item output) { return this.stonecutterRecipes.get(getItemHash(output)); } + @PowerNukkitOnly public CartographyRecipe matchCartographyRecipe(List inputList, Item primaryOutput, List extraOutputList) { int outputHash = getItemHash(primaryOutput); diff --git a/src/main/java/cn/nukkit/inventory/FurnaceInventory.java b/src/main/java/cn/nukkit/inventory/FurnaceInventory.java index 6b2106a92c9..7fe61e2d200 100644 --- a/src/main/java/cn/nukkit/inventory/FurnaceInventory.java +++ b/src/main/java/cn/nukkit/inventory/FurnaceInventory.java @@ -1,5 +1,6 @@ package cn.nukkit.inventory; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.blockentity.BlockEntityFurnace; import cn.nukkit.item.Item; @@ -12,6 +13,7 @@ public FurnaceInventory(BlockEntityFurnace furnace) { super(furnace, InventoryType.FURNACE); } + @PowerNukkitOnly public FurnaceInventory(BlockEntityFurnace furnace, InventoryType inventoryType) { super(furnace, inventoryType); } diff --git a/src/main/java/cn/nukkit/inventory/GrindstoneInventory.java b/src/main/java/cn/nukkit/inventory/GrindstoneInventory.java index 8675221260f..9b1d2d8d120 100644 --- a/src/main/java/cn/nukkit/inventory/GrindstoneInventory.java +++ b/src/main/java/cn/nukkit/inventory/GrindstoneInventory.java @@ -128,6 +128,7 @@ public void onSlotChange(int index, Item before, boolean send) { } } + @PowerNukkitOnly public boolean updateResult(boolean send) { Item firstItem = getFirstItem(); Item secondItem = getSecondItem(); From feee6adc80de2299ad4cfeefb022f7e2ba75ba41 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 21:25:38 -0300 Subject: [PATCH 301/394] Add missing PowerNukkitOnly annotations --- dumps/needed-class-changes.json | 590 +----------------- .../blockstate/ByteMutableBlockState.java | 1 + .../cn/nukkit/blockstate/IBlockState.java | 1 + .../blockstate/IntMutableBlockState.java | 1 + .../blockstate/LongMutableBlockState.java | 2 + .../nukkit/blockstate/MutableBlockState.java | 5 + .../blockstate/ZeroMutableBlockState.java | 1 + .../command/CapturingCommandSender.java | 2 +- .../dispenser/ProjectileDispenseBehavior.java | 2 + src/main/java/cn/nukkit/entity/Entity.java | 4 + .../java/cn/nukkit/entity/EntityHuman.java | 1 + .../java/cn/nukkit/entity/EntityLiving.java | 3 + .../nukkit/entity/item/EntityExpBottle.java | 3 +- .../entity/item/EntityFallingBlock.java | 2 +- .../cn/nukkit/entity/item/EntityPainting.java | 1 + .../cn/nukkit/entity/item/EntityPotion.java | 3 +- .../entity/item/EntityPotionLingering.java | 1 + .../cn/nukkit/entity/mob/EntityBlaze.java | 1 + .../nukkit/entity/mob/EntityCaveSpider.java | 1 + .../cn/nukkit/entity/mob/EntityCreeper.java | 1 + .../cn/nukkit/entity/mob/EntityDrowned.java | 2 + .../entity/mob/EntityElderGuardian.java | 1 + .../cn/nukkit/entity/mob/EntityEnderman.java | 1 + .../cn/nukkit/entity/mob/EntityEndermite.java | 1 + .../cn/nukkit/entity/mob/EntityEvoker.java | 1 + .../cn/nukkit/entity/mob/EntityGuardian.java | 1 + .../cn/nukkit/entity/mob/EntityHoglin.java | 1 + .../java/cn/nukkit/entity/mob/EntityHusk.java | 2 + .../cn/nukkit/entity/mob/EntityPhantom.java | 2 + .../cn/nukkit/entity/mob/EntityPiglin.java | 2 + .../nukkit/entity/mob/EntityPiglinBrute.java | 1 + .../cn/nukkit/entity/mob/EntityPillager.java | 1 + .../cn/nukkit/entity/mob/EntityRavager.java | 1 + .../nukkit/entity/mob/EntitySilverfish.java | 1 + .../cn/nukkit/entity/mob/EntitySkeleton.java | 2 + .../cn/nukkit/entity/mob/EntitySpider.java | 1 + .../cn/nukkit/entity/mob/EntityStray.java | 2 + .../java/cn/nukkit/entity/mob/EntityVex.java | 1 + .../nukkit/entity/mob/EntityVindicator.java | 1 + .../cn/nukkit/entity/mob/EntityWitch.java | 1 + .../cn/nukkit/entity/mob/EntityWither.java | 2 + .../entity/mob/EntityWitherSkeleton.java | 2 + .../cn/nukkit/entity/mob/EntityZoglin.java | 3 + .../cn/nukkit/entity/mob/EntityZombie.java | 2 + .../nukkit/entity/mob/EntityZombiePigman.java | 2 + .../entity/mob/EntityZombieVillager.java | 2 + .../entity/mob/EntityZombieVillagerV1.java | 1 + .../cn/nukkit/entity/passive/EntityBee.java | 7 + .../entity/passive/EntitySkeletonHorse.java | 1 + .../nukkit/entity/passive/EntityTurtle.java | 2 + .../entity/passive/EntityZombieHorse.java | 1 + .../nukkit/entity/projectile/EntityArrow.java | 1 + .../nukkit/entity/projectile/EntityEgg.java | 3 +- .../entity/projectile/EntityProjectile.java | 2 + .../entity/projectile/EntitySnowball.java | 1 + .../projectile/EntityThrownTrident.java | 6 + .../BlockStateRepairFinishEvent.java | 1 + .../event/inventory/EnchantItemEvent.java | 44 +- .../cn/nukkit/inventory/CraftingManager.java | 3 +- .../java/cn/nukkit/inventory/Inventory.java | 3 + .../nukkit/inventory/PlayerUIInventory.java | 4 +- .../cn/nukkit/inventory/SmokerRecipe.java | 1 + .../inventory/StonecutterInventory.java | 1 + .../transaction/CraftingTransaction.java | 1 + .../transaction/EnchantTransaction.java | 34 +- .../transaction/action/EnchantingAction.java | 7 +- src/main/java/cn/nukkit/item/Item.java | 6 + .../java/cn/nukkit/item/ItemAxeNetherite.java | 2 + .../cn/nukkit/item/ItemBannerPattern.java | 1 + src/main/java/cn/nukkit/item/ItemBlock.java | 2 + .../cn/nukkit/item/ItemBootsNetherite.java | 2 + .../nukkit/item/ItemChestplateNetherite.java | 2 + .../java/cn/nukkit/item/ItemEnderPearl.java | 2 + .../java/cn/nukkit/item/ItemFishingRod.java | 2 + .../cn/nukkit/item/ItemHelmetNetherite.java | 2 + .../java/cn/nukkit/item/ItemHoeNetherite.java | 4 +- .../cn/nukkit/item/ItemIngotNetherite.java | 2 + .../cn/nukkit/item/ItemLeggingsNetherite.java | 2 + .../cn/nukkit/item/ItemPickaxeNetherite.java | 2 + .../cn/nukkit/item/ItemPotionLingering.java | 12 +- .../cn/nukkit/item/ItemScrapNetherite.java | 2 + .../cn/nukkit/item/ItemShovelNetherite.java | 2 + src/main/java/cn/nukkit/item/ItemSign.java | 2 + .../cn/nukkit/item/ItemSwordNetherite.java | 2 + src/main/java/cn/nukkit/item/ItemTotem.java | 3 + .../nukkit/item/ItemWarpedFungusOnAStick.java | 2 + .../java/cn/nukkit/item/PNAlphaItemID.java | 14 +- .../java/cn/nukkit/item/ProjectileItem.java | 3 + .../cn/nukkit/item/RuntimeItemMapping.java | 4 + .../java/cn/nukkit/item/RuntimeItems.java | 6 + .../enchantment/EnchantmentDurability.java | 4 +- .../enchantment/EnchantmentEfficiency.java | 4 +- .../enchantment/EnchantmentSilkTouch.java | 5 +- .../item/enchantment/EnchantmentThorns.java | 2 + .../enchantment/damage/EnchantmentDamage.java | 1 + .../enchantment/sideeffect/SideEffect.java | 1 + src/main/java/cn/nukkit/level/GameRule.java | 2 +- .../cn/nukkit/level/GlobalBlockPalette.java | 3 + src/main/java/cn/nukkit/level/Level.java | 42 +- .../cn/nukkit/level/ListChunkManager.java | 10 +- 100 files changed, 324 insertions(+), 622 deletions(-) diff --git a/dumps/needed-class-changes.json b/dumps/needed-class-changes.json index 899b37d03ae..c893e18c873 100644 --- a/dumps/needed-class-changes.json +++ b/dumps/needed-class-changes.json @@ -1,592 +1,16 @@ { - "cn.nukkit.blockstate.ByteMutableBlockState": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.ByteMutableBlockState#getPersistenceValue(String)" - ] - }, - "cn.nukkit.blockstate.IBlockState": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.IBlockState#getBigId()" - ] - }, - "cn.nukkit.blockstate.IntMutableBlockState": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.IntMutableBlockState#getLegacyDamage()" - ] - }, - "cn.nukkit.blockstate.LongMutableBlockState": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.LongMutableBlockState#getLegacyDamage()", - "cn.nukkit.blockstate.LongMutableBlockState#validate()" - ] - }, - "cn.nukkit.blockstate.MutableBlockState": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.MutableBlockState#getBigId()", - "cn.nukkit.blockstate.MutableBlockState#getBitSize()", - "cn.nukkit.blockstate.MutableBlockState#getBlockId()", - "cn.nukkit.blockstate.MutableBlockState#getFullId()", - "cn.nukkit.blockstate.MutableBlockState#getProperties()" - ] - }, - "cn.nukkit.blockstate.ZeroMutableBlockState": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.blockstate.ZeroMutableBlockState#validate()" - ] - }, - "cn.nukkit.command.CapturingCommandSender": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.command.CapturingCommandSender#(String, boolean, Permissible)" - ] - }, - "cn.nukkit.dispenser.ProjectileDispenseBehavior": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.dispenser.ProjectileDispenseBehavior#getAccuracy()", - "cn.nukkit.dispenser.ProjectileDispenseBehavior#getMotion()" - ] - }, - "cn.nukkit.entity.Entity": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.Entity#canBePushed()", - "cn.nukkit.entity.Entity#isTouchingWater()", - "cn.nukkit.entity.Entity#isUndead()", - "cn.nukkit.entity.Entity#onPushByPiston(BlockEntityPistonArm)" - ] - }, - "cn.nukkit.entity.EntityHuman": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.EntityHuman#onBlock(Entity, boolean)" - ] - }, - "cn.nukkit.entity.EntityLiving": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.EntityLiving#isBlocking()", - "cn.nukkit.entity.EntityLiving#onBlock(Entity, boolean)", - "cn.nukkit.entity.EntityLiving#setBlocking(boolean)" - ] - }, - "cn.nukkit.entity.item.EntityExpBottle": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.item.EntityExpBottle#addHitEffect()" - ] - }, - "cn.nukkit.entity.item.EntityFallingBlock": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.item.EntityFallingBlock#breakOnLava" - ] - }, - "cn.nukkit.entity.item.EntityPainting": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.item.EntityPainting#onPushByPiston(BlockEntityPistonArm)" - ] - }, - "cn.nukkit.entity.item.EntityPotion": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.item.EntityPotion#splash(Entity)" - ] - }, - "cn.nukkit.entity.item.EntityPotionLingering": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.item.EntityPotionLingering#splash(Entity)" - ] - }, - "cn.nukkit.entity.mob.EntityBlaze": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityBlaze#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityCaveSpider": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityCaveSpider#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityCreeper": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityCreeper#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityDrowned": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityDrowned#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityDrowned#isUndead()" - ] - }, - "cn.nukkit.entity.mob.EntityElderGuardian": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityElderGuardian#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityEnderman": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityEnderman#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityEndermite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityEndermite#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityEvoker": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityEvoker#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityGuardian": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityGuardian#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityHoglin": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityHoglin#isBaby()" - ] - }, - "cn.nukkit.entity.mob.EntityHusk": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityHusk#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityHusk#isUndead()" - ] - }, - "cn.nukkit.entity.mob.EntityPhantom": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityPhantom#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityPhantom#isUndead()" - ] - }, - "cn.nukkit.entity.mob.EntityPiglin": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityPiglin#isBaby()", - "cn.nukkit.entity.mob.EntityPiglin#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityPiglinBrute": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityPiglinBrute#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityPillager": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityPillager#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityRavager": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityRavager#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntitySilverfish": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntitySilverfish#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntitySkeleton": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntitySkeleton#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntitySkeleton#isUndead()" - ] - }, - "cn.nukkit.entity.mob.EntitySpider": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntitySpider#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityStray": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityStray#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityStray#isUndead()" - ] - }, - "cn.nukkit.entity.mob.EntityVex": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityVex#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityVindicator": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityVindicator#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityWitch": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityWitch#isPreventingSleep(Player)" - ] - }, - "cn.nukkit.entity.mob.EntityWither": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityWither#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityWither#isUndead()" - ] - }, - "cn.nukkit.entity.mob.EntityWitherSkeleton": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityWitherSkeleton#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityWitherSkeleton#isUndead()" - ] - }, - "cn.nukkit.entity.mob.EntityZoglin": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityZoglin#isBaby()", - "cn.nukkit.entity.mob.EntityZoglin#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityZoglin#isUndead()" - ] - }, - "cn.nukkit.entity.mob.EntityZombie": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityZombie#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityZombie#isUndead()" - ] - }, - "cn.nukkit.entity.mob.EntityZombiePigman": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityZombiePigman#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityZombiePigman#isUndead()" - ] - }, - "cn.nukkit.entity.mob.EntityZombieVillager": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityZombieVillager#isPreventingSleep(Player)", - "cn.nukkit.entity.mob.EntityZombieVillager#isUndead()" - ] - }, - "cn.nukkit.entity.mob.EntityZombieVillagerV1": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.mob.EntityZombieVillagerV1#isUndead()" - ] - }, - "cn.nukkit.entity.passive.EntityBee": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.passive.EntityBee#getHasNectar()", - "cn.nukkit.entity.passive.EntityBee#isAngry()", - "cn.nukkit.entity.passive.EntityBee#leftBeehive(BlockEntityBeehive)", - "cn.nukkit.entity.passive.EntityBee#nectarDelivered(BlockEntityBeehive)", - "cn.nukkit.entity.passive.EntityBee#setAngry(boolean)", - "cn.nukkit.entity.passive.EntityBee#setAngry(Player)", - "cn.nukkit.entity.passive.EntityBee#setHasNectar(boolean)" - ] - }, - "cn.nukkit.entity.passive.EntitySkeletonHorse": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.passive.EntitySkeletonHorse#isUndead()" - ] - }, - "cn.nukkit.entity.passive.EntityTurtle": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.passive.EntityTurtle#setBreedingAge(int)", - "cn.nukkit.entity.passive.EntityTurtle#setHomePos(Vector3)" - ] - }, - "cn.nukkit.entity.passive.EntityZombieHorse": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.passive.EntityZombieHorse#isUndead()" - ] - }, - "cn.nukkit.entity.projectile.EntityArrow": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.projectile.EntityArrow#addHitEffect()" - ] - }, - "cn.nukkit.entity.projectile.EntityEgg": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.projectile.EntityEgg#addHitEffect()" - ] - }, - "cn.nukkit.entity.projectile.EntityProjectile": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.projectile.EntityProjectile#inaccurate(float)", - "cn.nukkit.entity.projectile.EntityProjectile#updateRotation()" - ] - }, - "cn.nukkit.entity.projectile.EntitySnowball": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.projectile.EntitySnowball#addHitEffect()" - ] - }, - "cn.nukkit.entity.projectile.EntityThrownTrident": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.entity.projectile.EntityThrownTrident#gravity", - "cn.nukkit.entity.projectile.EntityThrownTrident#drag", - "cn.nukkit.entity.projectile.EntityThrownTrident#create(Object, Position, Object[])", - "cn.nukkit.entity.projectile.EntityThrownTrident#isCritical()", - "cn.nukkit.entity.projectile.EntityThrownTrident#setCritical()", - "cn.nukkit.entity.projectile.EntityThrownTrident#setCritical(boolean)" - ] - }, - "cn.nukkit.event.blockstate.BlockStateRepairFinishEvent": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.blockstate.BlockStateRepairFinishEvent#getResult()" - ] - }, - "cn.nukkit.event.inventory.EnchantItemEvent": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.event.inventory.EnchantItemEvent#oldItem", - "cn.nukkit.event.inventory.EnchantItemEvent#newItem", - "cn.nukkit.event.inventory.EnchantItemEvent#xpCost", - "cn.nukkit.event.inventory.EnchantItemEvent#enchanter" - ] - }, - "cn.nukkit.inventory.CraftingManager": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.CraftingManager#registerCartographyRecipe(CartographyRecipe)" - ] - }, - "cn.nukkit.inventory.Inventory": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.Inventory#addListener(InventoryListener)", - "cn.nukkit.inventory.Inventory#removeListener(InventoryListener)" - ] - }, - "cn.nukkit.inventory.PlayerUIInventory": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.PlayerUIInventory#onSlotChangeBase(int, Item, boolean)" - ] - }, - "cn.nukkit.inventory.SmokerRecipe": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.SmokerRecipe#getInput()" - ] - }, - "cn.nukkit.inventory.StonecutterInventory": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.StonecutterInventory#(PlayerUIInventory, Position)" - ] - }, - "cn.nukkit.inventory.transaction.CraftingTransaction": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.transaction.CraftingTransaction#craftingType" - ] - }, - "cn.nukkit.inventory.transaction.EnchantTransaction": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.transaction.EnchantTransaction#inputItem", - "cn.nukkit.inventory.transaction.EnchantTransaction#outputItem", - "cn.nukkit.inventory.transaction.EnchantTransaction#cost" - ] - }, - "cn.nukkit.inventory.transaction.action.EnchantingAction": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.inventory.transaction.action.EnchantingAction#type" - ] - }, - "cn.nukkit.item.Item": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.Item#equalsIgnoringEnchantmentOrder(Item, boolean)", - "cn.nukkit.item.Item#getBlock(int)", - "cn.nukkit.item.Item#getBlock(int, Integer)", - "cn.nukkit.item.Item#getBlock(int, Integer, int)", - "cn.nukkit.item.Item#getBlock(int, Integer, int, byte[])" - ] - }, - "cn.nukkit.item.ItemAxeNetherite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemAxeNetherite#isLavaResistant()" - ] - }, - "cn.nukkit.item.ItemBannerPattern": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemBannerPattern#updateName()" - ] - }, - "cn.nukkit.item.ItemBlock": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemBlock#isLavaResistant()" - ] - }, - "cn.nukkit.item.ItemBootsNetherite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemBootsNetherite#isLavaResistant()" - ] - }, - "cn.nukkit.item.ItemChestplateNetherite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemChestplateNetherite#isLavaResistant()" - ] - }, - "cn.nukkit.item.ItemEnderPearl": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemEnderPearl#correctProjectile(Player, Entity)" - ] - }, - "cn.nukkit.item.ItemFishingRod": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemFishingRod#damageWhenBreaking()" - ] - }, - "cn.nukkit.item.ItemHelmetNetherite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemHelmetNetherite#isLavaResistant()" - ] - }, - "cn.nukkit.item.ItemHoeNetherite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemHoeNetherite#isLavaResistant()" - ] - }, - "cn.nukkit.item.ItemIngotNetherite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemIngotNetherite#isLavaResistant()" - ] - }, - "cn.nukkit.item.ItemLeggingsNetherite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemLeggingsNetherite#isLavaResistant()" - ] - }, - "cn.nukkit.item.ItemPickaxeNetherite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemPickaxeNetherite#isLavaResistant()" - ] - }, - "cn.nukkit.item.ItemPotionLingering": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemPotionLingering#correctNBT(CompoundTag)", - "cn.nukkit.item.ItemPotionLingering#getProjectileEntityType()", - "cn.nukkit.item.ItemPotionLingering#getThrowForce()" - ] - }, - "cn.nukkit.item.ItemScrapNetherite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemScrapNetherite#isLavaResistant()" - ] - }, - "cn.nukkit.item.ItemShovelNetherite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemShovelNetherite#isLavaResistant()" - ] - }, - "cn.nukkit.item.ItemSign": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemSign#(int, Integer, int, String, BlockSignPost)" - ] - }, - "cn.nukkit.item.ItemSwordNetherite": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemSwordNetherite#isLavaResistant()" - ] - }, - "cn.nukkit.item.ItemTotem": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemTotem#()" - ] - }, - "cn.nukkit.item.ItemWarpedFungusOnAStick": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ItemWarpedFungusOnAStick#damageWhenBreaking()" - ] - }, - "cn.nukkit.item.PNAlphaItemID": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.PNAlphaItemID#badItemId", - "cn.nukkit.item.PNAlphaItemID#minecraftItemId", - "cn.nukkit.item.PNAlphaItemID#getBadItemId()", - "cn.nukkit.item.PNAlphaItemID#getMinecraftItemId()" - ] - }, - "cn.nukkit.item.ProjectileItem": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.ProjectileItem#addThrowSound(Player)", - "cn.nukkit.item.ProjectileItem#correctProjectile(Player, Entity)" - ] - }, - "cn.nukkit.item.RuntimeItemMapping": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.RuntimeItemMapping#getItemDataPalette()", - "cn.nukkit.item.RuntimeItemMapping#getLegacyFullId(int)", - "cn.nukkit.item.RuntimeItemMapping#getNetworkFullId(Item)", - "cn.nukkit.item.RuntimeItemMapping#(byte[], Int2IntMap, Int2IntMap)" - ] - }, - "cn.nukkit.item.RuntimeItems": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.RuntimeItems#getData(int)", - "cn.nukkit.item.RuntimeItems#getFullId(int, int)", - "cn.nukkit.item.RuntimeItems#getId(int)", - "cn.nukkit.item.RuntimeItems#getNetworkId(int)", - "cn.nukkit.item.RuntimeItems#getRuntimeMapping()", - "cn.nukkit.item.RuntimeItems#hasData(int)" - ] - }, - "cn.nukkit.item.enchantment.EnchantmentDurability": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.enchantment.EnchantmentDurability#isItemAcceptable(Item)" - ] - }, - "cn.nukkit.item.enchantment.EnchantmentEfficiency": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.enchantment.EnchantmentEfficiency#isItemAcceptable(Item)" - ] - }, - "cn.nukkit.item.enchantment.EnchantmentSilkTouch": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.enchantment.EnchantmentSilkTouch#isItemAcceptable(Item)" - ] - }, - "cn.nukkit.item.enchantment.EnchantmentThorns": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.enchantment.EnchantmentThorns#isItemAcceptable(Item)" - ] - }, - "cn.nukkit.item.enchantment.damage.EnchantmentDamage": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.enchantment.damage.EnchantmentDamage#isItemAcceptable(Item)" - ] - }, - "cn.nukkit.item.enchantment.sideeffect.SideEffect": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.item.enchantment.sideeffect.SideEffect#EMPTY_ARRAY" - ] - }, - "cn.nukkit.level.GameRule": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.GameRule#EXPERIMENTAL_GAMEPLAY" - ] - }, - "cn.nukkit.level.GlobalBlockPalette": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.GlobalBlockPalette#BLOCK_PALETTE", - "cn.nukkit.level.GlobalBlockPalette#getName(int)" - ] - }, "cn.nukkit.level.Level": { "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.Level#addLevelEvent(int, int)", - "cn.nukkit.level.Level#addLevelEvent(int, int, Vector3)", - "cn.nukkit.level.Level#addLevelEvent(int, int, float, float, float)", - "cn.nukkit.level.Level#getBlock(Vector3, int)", - "cn.nukkit.level.Level#getBlock(Vector3, int, boolean)", - "cn.nukkit.level.Level#getBlock(int, int, int, int)", - "cn.nukkit.level.Level#getBlock(int, int, int, int, boolean)", - "cn.nukkit.level.Level#getBlockDataAt(int, int, int, int)", "cn.nukkit.level.Level#getBlockEntity(BlockVector3)", - "cn.nukkit.level.Level#getBlockIdAt(int, int, int, int)", - "cn.nukkit.level.Level#getBlockStateAt(int, int, int, int)", - "cn.nukkit.level.Level#getCelestialAngle(float)", - "cn.nukkit.level.Level#getCollisionBlocks(AxisAlignedBB, boolean, boolean)", - "cn.nukkit.level.Level#getCollisionBlocks(AxisAlignedBB, boolean, boolean, Predicate)", - "cn.nukkit.level.Level#getFullBlock(int, int, int, int)", - "cn.nukkit.level.Level#getFuzzySpawnLocation()", - "cn.nukkit.level.Level#getHighestAdjacentBlockSkyLight(int, int, int)", - "cn.nukkit.level.Level#getRainStrength(float)", - "cn.nukkit.level.Level#getThunderStrength(float)", - "cn.nukkit.level.Level#setBlock(Vector3, int, Block)", - "cn.nukkit.level.Level#setBlock(Vector3, int, Block, boolean)", - "cn.nukkit.level.Level#setBlock(Vector3, int, Block, boolean, boolean)", - "cn.nukkit.level.Level#setBlock(int, int, int, int, Block, boolean, boolean)", - "cn.nukkit.level.Level#setBlockAtLayer(int, int, int, int, int, int)", "cn.nukkit.level.Level#setBlockDataAt(int, int, int, int, int)", "cn.nukkit.level.Level#setBlockFullIdAt(int, int, int, int, int)", - "cn.nukkit.level.Level#setBlockIdAt(int, int, int, int, int)", - "cn.nukkit.level.Level#useBreakOn(Vector3, BlockFace, Item, Player, boolean, boolean)", - "cn.nukkit.level.Level#useBreakOn(Vector3, int, BlockFace, Item, Player, boolean, boolean)" - ] - }, - "cn.nukkit.level.ListChunkManager": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.ListChunkManager#getBlockDataAt(int, int, int, int)", - "cn.nukkit.level.ListChunkManager#getBlockIdAt(int, int, int, int)", - "cn.nukkit.level.ListChunkManager#setBlockAtLayer(int, int, int, int, int, int)", - "cn.nukkit.level.ListChunkManager#setBlockDataAt(int, int, int, int, int)", - "cn.nukkit.level.ListChunkManager#setBlockFullIdAt(int, int, int, int, int)", - "cn.nukkit.level.ListChunkManager#setBlockIdAt(int, int, int, int, int)" + "cn.nukkit.level.Level#setBlockIdAt(int, int, int, int, int)" + ], + "removePowerNukkitOnlyAnnotation": [ + "cn.nukkit.level.Level#getBlockEntity(Vector3)", + "cn.nukkit.level.Level#setBlockDataAt(int, int, int, int)", + "cn.nukkit.level.Level#setBlockFullIdAt(int, int, int, int)", + "cn.nukkit.level.Level#setBlockIdAt(int, int, int, int)" ] }, "cn.nukkit.level.Location": { diff --git a/src/main/java/cn/nukkit/blockstate/ByteMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/ByteMutableBlockState.java index 8fabc49f511..b849ffdcccf 100644 --- a/src/main/java/cn/nukkit/blockstate/ByteMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/ByteMutableBlockState.java @@ -218,6 +218,7 @@ public boolean getBooleanValue(String propertyName) { return properties.getBooleanValue(storage, propertyName); } + @PowerNukkitOnly @Nonnull @Override public String getPersistenceValue(String propertyName) { diff --git a/src/main/java/cn/nukkit/blockstate/IBlockState.java b/src/main/java/cn/nukkit/blockstate/IBlockState.java index 2266fa4ca80..1755372160f 100644 --- a/src/main/java/cn/nukkit/blockstate/IBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/IBlockState.java @@ -442,6 +442,7 @@ default int getFullId() { return (getBlockId() << Block.DATA_BITS) | (getLegacyDamage() & Block.DATA_MASK); } + @PowerNukkitOnly @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "the BlockState itself") default long getBigId() { diff --git a/src/main/java/cn/nukkit/blockstate/IntMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/IntMutableBlockState.java index 7055ec75fcb..7471014ecd8 100644 --- a/src/main/java/cn/nukkit/blockstate/IntMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/IntMutableBlockState.java @@ -48,6 +48,7 @@ public IntMutableBlockState(int blockId, BlockProperties properties) { @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "getDataStorage()") @Override + @PowerNukkitOnly public int getLegacyDamage() { return storage & Block.DATA_MASK; } diff --git a/src/main/java/cn/nukkit/blockstate/LongMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/LongMutableBlockState.java index 865b9f65c8e..dbb31e6435a 100644 --- a/src/main/java/cn/nukkit/blockstate/LongMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/LongMutableBlockState.java @@ -79,6 +79,7 @@ void setDataStorageWithoutValidation(Number storage) { this.storage = storage.longValue(); } + @PowerNukkitOnly @Override public void validate() { validate(storage); @@ -114,6 +115,7 @@ private void validate(long state) { @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "getDataStorage()") @Override + @PowerNukkitOnly public int getLegacyDamage() { return (int) (storage & Block.DATA_MASK); } diff --git a/src/main/java/cn/nukkit/blockstate/MutableBlockState.java b/src/main/java/cn/nukkit/blockstate/MutableBlockState.java index e2a746478fe..8a4f93aed92 100644 --- a/src/main/java/cn/nukkit/blockstate/MutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/MutableBlockState.java @@ -55,18 +55,21 @@ public void setState(IBlockState state) throws InvalidBlockStateException { } } + @PowerNukkitOnly @Nonnull @Override public final BlockProperties getProperties() { return properties; } + @PowerNukkitOnly @Nonnegative @Override public final int getBlockId() { return blockId; } + @PowerNukkitOnly @Override @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "the BlockState itself") @@ -77,10 +80,12 @@ public final int getFullId() { @Override @Deprecated @DeprecationDetails(reason = "Can't store all data, exists for backward compatibility reasons", since = "1.4.0.0-PN", replaceWith = "the BlockState itself") + @PowerNukkitOnly public final long getBigId() { return IMutableBlockState.super.getBigId(); } + @PowerNukkitOnly @Override public final int getBitSize() { return getProperties().getBitSize(); diff --git a/src/main/java/cn/nukkit/blockstate/ZeroMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/ZeroMutableBlockState.java index 82d035f96ca..5c9e995eb69 100644 --- a/src/main/java/cn/nukkit/blockstate/ZeroMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/ZeroMutableBlockState.java @@ -51,6 +51,7 @@ public ZeroMutableBlockState(int blockId, BlockProperties properties) { state = BlockState.of(blockId); } + @PowerNukkitOnly @Override public void validate() { } diff --git a/src/main/java/cn/nukkit/command/CapturingCommandSender.java b/src/main/java/cn/nukkit/command/CapturingCommandSender.java index 299d387da71..10afad1b66e 100644 --- a/src/main/java/cn/nukkit/command/CapturingCommandSender.java +++ b/src/main/java/cn/nukkit/command/CapturingCommandSender.java @@ -17,7 +17,7 @@ * @since 1.2.1.0-PN */ @PowerNukkitOnly -@AllArgsConstructor +@AllArgsConstructor(onConstructor = @__(@PowerNukkitOnly)) public class CapturingCommandSender implements CommandSender { private final StringBuilder captured = new StringBuilder(); diff --git a/src/main/java/cn/nukkit/dispenser/ProjectileDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/ProjectileDispenseBehavior.java index 4dcb053c5b8..c40a1095b1e 100644 --- a/src/main/java/cn/nukkit/dispenser/ProjectileDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/ProjectileDispenseBehavior.java @@ -51,10 +51,12 @@ public ProjectileDispenseBehavior(String entity) { return null; } + @PowerNukkitOnly protected double getMotion() { return 1.1; } + @PowerNukkitOnly protected float getAccuracy() { return 6; } diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 740ac678054..867834ac1aa 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -1887,6 +1887,7 @@ public void setAbsorption(float absorption) { } } + @PowerNukkitOnly public boolean canBePushed() { return true; } @@ -2063,6 +2064,7 @@ public void onStruckByLightning(Entity entity) { } } + @PowerNukkitOnly public void onPushByPiston(BlockEntityPistonArm piston) { } @@ -2111,6 +2113,7 @@ public Location getLocation() { return new Location(this.x, this.y, this.z, this.yaw, this.pitch, this.headYaw, this.level); } + @PowerNukkitOnly public boolean isTouchingWater() { return hasWaterAt(0) || hasWaterAt(this.getEyeHeight()); } @@ -2865,6 +2868,7 @@ public Server getServer() { return server; } + @PowerNukkitOnly public boolean isUndead() { return false; } diff --git a/src/main/java/cn/nukkit/entity/EntityHuman.java b/src/main/java/cn/nukkit/entity/EntityHuman.java index 03321d30e90..07db9539922 100644 --- a/src/main/java/cn/nukkit/entity/EntityHuman.java +++ b/src/main/java/cn/nukkit/entity/EntityHuman.java @@ -377,6 +377,7 @@ public void close() { } } + @PowerNukkitOnly @Override protected void onBlock(Entity entity, boolean animate) { super.onBlock(entity, animate); diff --git a/src/main/java/cn/nukkit/entity/EntityLiving.java b/src/main/java/cn/nukkit/entity/EntityLiving.java index f243aab244a..4b5ba5d1a6d 100644 --- a/src/main/java/cn/nukkit/entity/EntityLiving.java +++ b/src/main/java/cn/nukkit/entity/EntityLiving.java @@ -448,16 +448,19 @@ protected boolean blockedByShield(EntityDamageEvent source) { return true; } + @PowerNukkitOnly protected void onBlock(Entity entity, boolean animate) { if (animate) { getLevel().addSound(this, Sound.ITEM_SHIELD_BLOCK); } } + @PowerNukkitOnly public boolean isBlocking() { return this.getDataFlag(DATA_FLAGS_EXTENDED, DATA_FLAG_BLOCKING); } + @PowerNukkitOnly public void setBlocking(boolean value) { this.setDataFlag(DATA_FLAGS_EXTENDED, DATA_FLAG_BLOCKING, value); } diff --git a/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java b/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java index 593275862bb..88273cfe9ff 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java +++ b/src/main/java/cn/nukkit/entity/item/EntityExpBottle.java @@ -1,6 +1,5 @@ package cn.nukkit.entity.item; -import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; @@ -100,7 +99,7 @@ public void dropXp() { this.getLevel().dropExpOrb(this, ThreadLocalRandom.current().nextInt(3, 12)); } - @PowerNukkitDifference(info = "Using new method to play sounds", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override protected void addHitEffect() { this.getLevel().addSound(this, Sound.RANDOM_GLASS); diff --git a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java index 7cf4ca615b1..abab66f6dcf 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java @@ -66,7 +66,7 @@ public boolean canCollide() { protected int blockId; protected int damage; - protected boolean breakOnLava; + protected @PowerNukkitOnly boolean breakOnLava; public EntityFallingBlock(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); diff --git a/src/main/java/cn/nukkit/entity/item/EntityPainting.java b/src/main/java/cn/nukkit/entity/item/EntityPainting.java index 334a05bb992..dbe31b23522 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPainting.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPainting.java @@ -135,6 +135,7 @@ public void saveNBT() { this.namedTag.putString("Motive", this.motive.title); } + @PowerNukkitOnly @Override public void onPushByPiston(BlockEntityPistonArm piston) { if (this.level.getGameRules().getBoolean(GameRule.DO_ENTITY_DROPS)) { diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotion.java b/src/main/java/cn/nukkit/entity/item/EntityPotion.java index b35d214c2f8..543379f6826 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotion.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotion.java @@ -1,6 +1,5 @@ package cn.nukkit.entity.item; -import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; @@ -91,7 +90,7 @@ public void onCollideWithEntity(Entity entity) { this.splash(entity); } - @PowerNukkitDifference(info = "Using new method to play sounds", since = "1.4.0.0-PN") + @PowerNukkitOnly protected void splash(Entity collidedWith) { Potion potion = Potion.getPotion(this.potionId); PotionCollideEvent event = new PotionCollideEvent(potion, this); diff --git a/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java b/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java index 8f07fcc8834..8521c7e50f6 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java +++ b/src/main/java/cn/nukkit/entity/item/EntityPotionLingering.java @@ -33,6 +33,7 @@ protected void initEntity() { setDataFlag(DATA_FLAGS, DATA_FLAG_LINGER, true); } + @PowerNukkitOnly @Override protected void splash(Entity collidedWith) { super.splash(collidedWith); diff --git a/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java b/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java index 34fd0135e31..065e6e4af47 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityBlaze.java @@ -45,6 +45,7 @@ public String getOriginalName() { return "Blaze"; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java b/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java index 55d0ffd2f0d..2affa521617 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityCaveSpider.java @@ -46,6 +46,7 @@ public String getOriginalName() { return "Cave Spider"; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java b/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java index 90a6d47404e..dc1ad16e59c 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityCreeper.java @@ -99,6 +99,7 @@ public Item[] getDrops() { return Item.EMPTY_ARRAY; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java b/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java index a73b4896907..b9b093cf33f 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityDrowned.java @@ -52,11 +52,13 @@ public Item[] getDrops() { return new Item[]{Item.get(Item.ROTTEN_FLESH)}; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java b/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java index a716734af0b..6dab4e23621 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityElderGuardian.java @@ -46,6 +46,7 @@ public String getOriginalName() { return "Elder Guardian"; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java b/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java index 843c0db6f56..27b8a9b3b85 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEnderman.java @@ -45,6 +45,7 @@ public String getOriginalName() { return "Enderman"; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return this.getDataPropertyBoolean(DATA_FLAG_ANGRY); diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java b/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java index e4ab5830a43..a4eca36fde6 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEndermite.java @@ -46,6 +46,7 @@ public String getOriginalName() { return "Endermite"; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java b/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java index 2f061a4cd27..d4f0c2055db 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityEvoker.java @@ -45,6 +45,7 @@ public String getOriginalName() { return "Evoker"; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java b/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java index ea3885ff7b6..3ce38363a5b 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityGuardian.java @@ -45,6 +45,7 @@ public float getHeight() { return 0.85f; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java b/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java index a998e3c5593..3213b93f2b3 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityHoglin.java @@ -54,6 +54,7 @@ public String getOriginalName() { return "Hoglin"; } + @PowerNukkitOnly @Override public boolean isBaby() { return this.getDataFlag(DATA_FLAGS, DATA_FLAG_BABY); diff --git a/src/main/java/cn/nukkit/entity/mob/EntityHusk.java b/src/main/java/cn/nukkit/entity/mob/EntityHusk.java index 25dd5ecd9da..6a0a4238ae4 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityHusk.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityHusk.java @@ -46,11 +46,13 @@ public String getOriginalName() { return "Husk"; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java b/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java index 6bc7afdf3ae..71b7be08c6e 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPhantom.java @@ -52,11 +52,13 @@ public Item[] getDrops() { return new Item[]{Item.get(470)}; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java b/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java index a9918d07830..0e554406679 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPiglin.java @@ -48,11 +48,13 @@ public String getOriginalName() { return "Piglin"; } + @PowerNukkitOnly @Override public boolean isBaby() { return this.getDataFlag(DATA_FLAGS, Entity.DATA_FLAG_BABY); } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return !this.isBaby()/*TODO: Should this check player's golden armor?*/; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java b/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java index 9cd797a9631..5e8ff2d7561 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPiglinBrute.java @@ -45,6 +45,7 @@ public float getHeight() { return 1.9f; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityPillager.java b/src/main/java/cn/nukkit/entity/mob/EntityPillager.java index b4a81e649d0..6c169d2424e 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityPillager.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityPillager.java @@ -42,6 +42,7 @@ public String getOriginalName() { return "Pillager"; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityRavager.java b/src/main/java/cn/nukkit/entity/mob/EntityRavager.java index 56198e00694..848d4861568 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityRavager.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityRavager.java @@ -42,6 +42,7 @@ public String getOriginalName() { return "Ravager"; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java b/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java index 4815af3eaa8..2817468138b 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySilverfish.java @@ -46,6 +46,7 @@ public void initEntity() { this.setMaxHealth(8); } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java b/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java index 9fdd01943ea..e14d6765203 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySkeleton.java @@ -52,11 +52,13 @@ public Item[] getDrops() { return new Item[]{Item.get(Item.BONE, Item.ARROW)}; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntitySpider.java b/src/main/java/cn/nukkit/entity/mob/EntitySpider.java index 7509e5a85f5..b6f50dd80d7 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntitySpider.java +++ b/src/main/java/cn/nukkit/entity/mob/EntitySpider.java @@ -52,6 +52,7 @@ public Item[] getDrops() { return new Item[]{Item.get(Item.STRING, Item.SPIDER_EYE)}; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityStray.java b/src/main/java/cn/nukkit/entity/mob/EntityStray.java index 5bfe2cf1de0..dd73a7233cf 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityStray.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityStray.java @@ -52,11 +52,13 @@ public Item[] getDrops() { return new Item[]{Item.get(Item.BONE, Item.ARROW)}; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityVex.java b/src/main/java/cn/nukkit/entity/mob/EntityVex.java index 4e18ec5df2e..0ba5ee8690a 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityVex.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityVex.java @@ -45,6 +45,7 @@ public String getOriginalName() { return "Vex"; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java b/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java index d58d513ae72..3936b523919 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityVindicator.java @@ -51,6 +51,7 @@ public Item[] getDrops() { return new Item[]{Item.get(Item.IRON_AXE)}; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWitch.java b/src/main/java/cn/nukkit/entity/mob/EntityWitch.java index a111651a5da..62878d383a7 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWitch.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWitch.java @@ -45,6 +45,7 @@ public String getOriginalName() { return "Witch"; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWither.java b/src/main/java/cn/nukkit/entity/mob/EntityWither.java index 14d6e8762b0..5a02b1fb7e9 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWither.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWither.java @@ -46,11 +46,13 @@ public String getOriginalName() { return "Wither"; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java b/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java index d0557735dbb..c829a39f9a0 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityWitherSkeleton.java @@ -45,11 +45,13 @@ public String getOriginalName() { return "Wither Skeleton"; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java b/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java index a3ea1a6d437..2bd7f4de2dc 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZoglin.java @@ -55,16 +55,19 @@ public String getOriginalName() { return "Zoglin"; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; } + @PowerNukkitOnly @Override public boolean isBaby() { return this.getDataFlag(DATA_FLAGS, DATA_FLAG_BABY); diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombie.java b/src/main/java/cn/nukkit/entity/mob/EntityZombie.java index 1de9f5204c5..a250ca3f01f 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombie.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombie.java @@ -47,11 +47,13 @@ public String getOriginalName() { return "Zombie"; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java b/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java index cf852e6c98f..f1e23b9e68b 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombiePigman.java @@ -46,11 +46,13 @@ public String getOriginalName() { return "Zombified Piglin"; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return this.getDataPropertyBoolean(DATA_FLAG_ANGRY); diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java index fdac8a533ad..dab9f05fb56 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillager.java @@ -43,11 +43,13 @@ public String getOriginalName() { return "Zombie Villager"; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; } + @PowerNukkitOnly @Override public boolean isPreventingSleep(Player player) { return true; diff --git a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java index b6ceb668dc4..5b41fbb01ad 100644 --- a/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java +++ b/src/main/java/cn/nukkit/entity/mob/EntityZombieVillagerV1.java @@ -45,6 +45,7 @@ public String getOriginalName() { return "Zombie Villager"; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityBee.java b/src/main/java/cn/nukkit/entity/passive/EntityBee.java index 077df04c5f2..9a08794ef3e 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityBee.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityBee.java @@ -50,21 +50,25 @@ public float getHeight() { return 0.5f; } + @PowerNukkitOnly @Since("1.1.1.0-PN") public boolean getHasNectar() { return false; } + @PowerNukkitOnly @Since("1.1.1.0-PN") public void setHasNectar(boolean hasNectar) { } + @PowerNukkitOnly @Since("1.1.1.0-PN") public boolean isAngry() { return false; } + @PowerNukkitOnly @Since("1.1.1.0-PN") public void setAngry(boolean angry) { @@ -107,16 +111,19 @@ protected void initEntity() { this.setMaxHealth(10); } + @PowerNukkitOnly @Since("1.1.1.0-PN") public void nectarDelivered(BlockEntityBeehive blockEntityBeehive) { } + @PowerNukkitOnly @Since("1.1.1.0-PN") public void leftBeehive(BlockEntityBeehive blockEntityBeehive) { } + @PowerNukkitOnly @Since("1.1.1.0-PN") public void setAngry(Player player) { diff --git a/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java b/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java index 36b51aa390b..25f9c2d5476 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntitySkeletonHorse.java @@ -44,6 +44,7 @@ public Item[] getDrops() { return new Item[]{Item.get(Item.BONE)}; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java b/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java index 3b53118e95b..23f9c862710 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityTurtle.java @@ -51,10 +51,12 @@ public void initEntity() { this.setMaxHealth(30); } + @PowerNukkitOnly public void setBreedingAge(int ticks) { } + @PowerNukkitOnly public void setHomePos(Vector3 pos) { } diff --git a/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java b/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java index c533dfdb36a..eb635579b74 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityZombieHorse.java @@ -44,6 +44,7 @@ public Item[] getDrops() { return new Item[]{Item.get(Item.ROTTEN_FLESH, 1, 1)}; } + @PowerNukkitOnly @Override public boolean isUndead() { return true; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java index 452db9308c3..89b4aa4dce9 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java @@ -165,6 +165,7 @@ protected void afterCollisionWithEntity(Entity entity) { } } + @PowerNukkitOnly @Override protected void addHitEffect() { this.level.addSound(this, Sound.RANDOM_BOWHIT); diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java b/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java index 70ca3d07aa4..62c0280b2af 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityEgg.java @@ -70,7 +70,8 @@ public boolean onUpdate(int currentTick) { return hasUpdate; } - + + @PowerNukkitOnly @Override protected void addHitEffect() { int particles = ThreadLocalRandom.current().nextInt(10) + 5; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index 5be702af0a8..6cccd1397f9 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -250,12 +250,14 @@ public boolean onUpdate(int currentTick) { return hasUpdate; } + @PowerNukkitOnly public void updateRotation() { double f = Math.sqrt((this.motionX * this.motionX) + (this.motionZ * this.motionZ)); this.yaw = Math.atan2(this.motionX, this.motionZ) * 180 / Math.PI; this.pitch = Math.atan2(this.motionY, f) * 180 / Math.PI; } + @PowerNukkitOnly public void inaccurate(float modifier) { Random rand = ThreadLocalRandom.current(); diff --git a/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java b/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java index 3b2bd96575b..4700d5209f8 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntitySnowball.java @@ -102,6 +102,7 @@ public int getResultDamage(@Nullable Entity entity) { return entity instanceof EntityBlaze ? 3 : super.getResultDamage(entity); } + @PowerNukkitOnly @Override protected void addHitEffect() { int particles = nextParticleCount(); diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index e6781367600..6f710424874 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -62,8 +62,10 @@ public class EntityThrownTrident extends EntityProjectile { private int impalingLevel; // Default Values + @PowerNukkitOnly protected float gravity = 0.04f; + @PowerNukkitOnly protected float drag = 0.01f; private static final Vector3 defaultCollisionPos = new Vector3(0, 0, 0); @@ -219,14 +221,17 @@ public void setItem(Item item) { this.impalingLevel = this.trident.getEnchantmentLevel(Enchantment.ID_TRIDENT_IMPALING); } + @PowerNukkitOnly public void setCritical() { this.setCritical(true); } + @PowerNukkitOnly public void setCritical(boolean value) { this.setDataFlag(DATA_FLAGS, DATA_FLAG_CRITICAL, value); } + @PowerNukkitOnly public boolean isCritical() { return this.getDataFlag(DATA_FLAGS, DATA_FLAG_CRITICAL); } @@ -353,6 +358,7 @@ public void onCollideWithEntity(Entity entity) { } } + @PowerNukkitOnly public Entity create(Object type, Position source, Object... args) { FullChunk chunk = source.getLevel().getChunk((int) source.x >> 4, (int) source.z >> 4); if (chunk == null) return null; diff --git a/src/main/java/cn/nukkit/event/blockstate/BlockStateRepairFinishEvent.java b/src/main/java/cn/nukkit/event/blockstate/BlockStateRepairFinishEvent.java index d98777aa44e..76a14e89094 100644 --- a/src/main/java/cn/nukkit/event/blockstate/BlockStateRepairFinishEvent.java +++ b/src/main/java/cn/nukkit/event/blockstate/BlockStateRepairFinishEvent.java @@ -39,6 +39,7 @@ public List getAllRepairs() { return allRepairs; } + @PowerNukkitOnly @Nonnull public Block getResult() { return result; diff --git a/src/main/java/cn/nukkit/event/inventory/EnchantItemEvent.java b/src/main/java/cn/nukkit/event/inventory/EnchantItemEvent.java index 411c7b2db87..9605cd10d6a 100644 --- a/src/main/java/cn/nukkit/event/inventory/EnchantItemEvent.java +++ b/src/main/java/cn/nukkit/event/inventory/EnchantItemEvent.java @@ -6,11 +6,7 @@ import cn.nukkit.event.HandlerList; import cn.nukkit.inventory.EnchantInventory; import cn.nukkit.item.Item; -import lombok.Getter; -import lombok.Setter; -@Getter -@Setter @Since("1.3.1.0-PN") public class EnchantItemEvent extends InventoryEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); @@ -32,4 +28,44 @@ public EnchantItemEvent(EnchantInventory inventory, Item oldItem, Item newItem, this.xpCost = cost; this.enchanter = p; } + + @Since("1.3.1.0-PN") + public Item getOldItem() { + return oldItem; + } + + @Since("1.3.1.0-PN") + public void setOldItem(Item oldItem) { + this.oldItem = oldItem; + } + + @Since("1.3.1.0-PN") + public Item getNewItem() { + return newItem; + } + + @Since("1.3.1.0-PN") + public void setNewItem(Item newItem) { + this.newItem = newItem; + } + + @Since("1.3.1.0-PN") + public int getXpCost() { + return xpCost; + } + + @Since("1.3.1.0-PN") + public void setXpCost(int xpCost) { + this.xpCost = xpCost; + } + + @Since("1.3.1.0-PN") + public Player getEnchanter() { + return enchanter; + } + + @Since("1.3.1.0-PN") + public void setEnchanter(Player enchanter) { + this.enchanter = enchanter; + } } diff --git a/src/main/java/cn/nukkit/inventory/CraftingManager.java b/src/main/java/cn/nukkit/inventory/CraftingManager.java index ff3f036aeff..053094f0fb4 100644 --- a/src/main/java/cn/nukkit/inventory/CraftingManager.java +++ b/src/main/java/cn/nukkit/inventory/CraftingManager.java @@ -609,7 +609,8 @@ public void registerRecipe(Recipe recipe) { recipe.registerToCraftingManager(this); } - + + @PowerNukkitOnly public void registerCartographyRecipe(CartographyRecipe recipe) { List list = recipe.getIngredientList(); list.sort(recipeComparator); diff --git a/src/main/java/cn/nukkit/inventory/Inventory.java b/src/main/java/cn/nukkit/inventory/Inventory.java index 512abe3e9f9..c9b099cfe4c 100644 --- a/src/main/java/cn/nukkit/inventory/Inventory.java +++ b/src/main/java/cn/nukkit/inventory/Inventory.java @@ -1,6 +1,7 @@ package cn.nukkit.inventory; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import java.util.Collection; @@ -98,7 +99,9 @@ default boolean clear(int index) { void onSlotChange(int index, Item before, boolean send); + @PowerNukkitOnly void addListener(InventoryListener listener); + @PowerNukkitOnly void removeListener(InventoryListener listener); } diff --git a/src/main/java/cn/nukkit/inventory/PlayerUIInventory.java b/src/main/java/cn/nukkit/inventory/PlayerUIInventory.java index bebd5a67649..703ea8b5702 100644 --- a/src/main/java/cn/nukkit/inventory/PlayerUIInventory.java +++ b/src/main/java/cn/nukkit/inventory/PlayerUIInventory.java @@ -1,6 +1,7 @@ package cn.nukkit.inventory; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import cn.nukkit.network.protocol.InventorySlotPacket; import cn.nukkit.network.protocol.types.ContainerIds; @@ -101,7 +102,8 @@ public void onSlotChange(int index, Item before, boolean send) { super.onSlotChange(index, before, send); } } - + + @PowerNukkitOnly public void onSlotChangeBase(int index, Item before, boolean send) { super.onSlotChange(index, before, send); } diff --git a/src/main/java/cn/nukkit/inventory/SmokerRecipe.java b/src/main/java/cn/nukkit/inventory/SmokerRecipe.java index 3c8e508b995..97fee15e3af 100644 --- a/src/main/java/cn/nukkit/inventory/SmokerRecipe.java +++ b/src/main/java/cn/nukkit/inventory/SmokerRecipe.java @@ -21,6 +21,7 @@ public void setInput(Item item) { this.ingredient = item.clone(); } + @PowerNukkitOnly @Override public Item getInput() { return this.ingredient.clone(); diff --git a/src/main/java/cn/nukkit/inventory/StonecutterInventory.java b/src/main/java/cn/nukkit/inventory/StonecutterInventory.java index 47c38a6ce11..46bd73cea30 100644 --- a/src/main/java/cn/nukkit/inventory/StonecutterInventory.java +++ b/src/main/java/cn/nukkit/inventory/StonecutterInventory.java @@ -7,6 +7,7 @@ @PowerNukkitOnly public class StonecutterInventory extends FakeBlockUIComponent { + @PowerNukkitOnly public StonecutterInventory(PlayerUIInventory playerUI, Position position) { super(playerUI, InventoryType.STONECUTTER, 3, position); } diff --git a/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java b/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java index b19c2a03cc7..740b8381e29 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java @@ -40,6 +40,7 @@ public class CraftingTransaction extends InventoryTransaction { private Recipe transactionRecipe; + @PowerNukkitOnly protected int craftingType; private boolean readyToExecute; diff --git a/src/main/java/cn/nukkit/inventory/transaction/EnchantTransaction.java b/src/main/java/cn/nukkit/inventory/transaction/EnchantTransaction.java index a45385d0107..fe230613883 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/EnchantTransaction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/EnchantTransaction.java @@ -10,13 +10,9 @@ import cn.nukkit.item.Item; import cn.nukkit.item.ItemDye; import cn.nukkit.network.protocol.types.NetworkInventoryAction; -import lombok.Getter; -import lombok.Setter; import java.util.List; -@Getter -@Setter @Since("1.3.1.0-PN") public class EnchantTransaction extends InventoryTransaction { private Item inputItem; @@ -113,4 +109,34 @@ public boolean checkForEnchantPart(List actions) { } return false; } + + @Since("1.3.1.0-PN") + public Item getInputItem() { + return inputItem; + } + + @Since("1.3.1.0-PN") + public void setInputItem(Item inputItem) { + this.inputItem = inputItem; + } + + @Since("1.3.1.0-PN") + public Item getOutputItem() { + return outputItem; + } + + @Since("1.3.1.0-PN") + public void setOutputItem(Item outputItem) { + this.outputItem = outputItem; + } + + @Since("1.3.1.0-PN") + public int getCost() { + return cost; + } + + @Since("1.3.1.0-PN") + public void setCost(int cost) { + this.cost = cost; + } } diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/EnchantingAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/EnchantingAction.java index c3c1c3ff1dd..ce822ad22d0 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/EnchantingAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/EnchantingAction.java @@ -3,13 +3,11 @@ import cn.nukkit.Player; import cn.nukkit.api.Since; import cn.nukkit.item.Item; -import lombok.Getter; import lombok.ToString; @Since("1.3.1.0-PN") @ToString(callSuper = true) public class EnchantingAction extends InventoryAction { - @Getter @Since("1.3.1.0-PN") private int type; @Since("1.3.1.0-PN") @@ -36,4 +34,9 @@ public void onExecuteSuccess(Player source) { public void onExecuteFail(Player source) { } + + @Since("1.3.1.0-PN") + public int getType() { + return type; + } } diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index 76b05254367..b2b8646c2ef 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -598,18 +598,22 @@ public static int getCreativeItemIndex(Item item) { return -1; } + @PowerNukkitOnly public static Item getBlock(int id) { return getBlock(id, 0); } + @PowerNukkitOnly public static Item getBlock(int id, Integer meta) { return getBlock(id, meta, 1); } + @PowerNukkitOnly public static Item getBlock(int id, Integer meta, int count) { return getBlock(id, meta, count, EmptyArrays.EMPTY_BYTES); } + @PowerNukkitOnly public static Item getBlock(int id, Integer meta, int count, byte[] tags) { if (id > 255) { id = 255 - id; @@ -1546,6 +1550,8 @@ public final boolean equalsExact(Item other) { * Same as {@link #equals(Item, boolean)} but the enchantment order of the items does not affect the result. * @since 1.2.1.0-PN */ + @PowerNukkitOnly + @Since("1.2.1.0-PN") public final boolean equalsIgnoringEnchantmentOrder(Item item, boolean checkDamage) { if (!this.equals(item, checkDamage, false)) { return false; diff --git a/src/main/java/cn/nukkit/item/ItemAxeNetherite.java b/src/main/java/cn/nukkit/item/ItemAxeNetherite.java index f9d632e5871..24cd75b02f5 100644 --- a/src/main/java/cn/nukkit/item/ItemAxeNetherite.java +++ b/src/main/java/cn/nukkit/item/ItemAxeNetherite.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @Since("1.4.0.0-PN") @@ -40,6 +41,7 @@ public int getAttackDamage() { return 8; } + @PowerNukkitOnly @Override public boolean isLavaResistant() { return true; diff --git a/src/main/java/cn/nukkit/item/ItemBannerPattern.java b/src/main/java/cn/nukkit/item/ItemBannerPattern.java index 08a82a24597..5748eafa8e5 100644 --- a/src/main/java/cn/nukkit/item/ItemBannerPattern.java +++ b/src/main/java/cn/nukkit/item/ItemBannerPattern.java @@ -71,6 +71,7 @@ public BannerPattern.Type getPatternType() { } } + @PowerNukkitOnly protected void updateName() { if (getId() != BANNER_PATTERN) { return; diff --git a/src/main/java/cn/nukkit/item/ItemBlock.java b/src/main/java/cn/nukkit/item/ItemBlock.java index 0934c337fde..78b6d178ec3 100644 --- a/src/main/java/cn/nukkit/item/ItemBlock.java +++ b/src/main/java/cn/nukkit/item/ItemBlock.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockUnknown; import cn.nukkit.blockstate.BlockState; @@ -71,6 +72,7 @@ public Block getBlock() { return this.block; } + @PowerNukkitOnly @Override public boolean isLavaResistant() { return block.isLavaResistant(); diff --git a/src/main/java/cn/nukkit/item/ItemBootsNetherite.java b/src/main/java/cn/nukkit/item/ItemBootsNetherite.java index e3c6f3aff89..3361ef54af5 100644 --- a/src/main/java/cn/nukkit/item/ItemBootsNetherite.java +++ b/src/main/java/cn/nukkit/item/ItemBootsNetherite.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @Since("1.4.0.0-PN") @@ -45,6 +46,7 @@ public int getToughness() { return 3; } + @PowerNukkitOnly @Override public boolean isLavaResistant() { return true; diff --git a/src/main/java/cn/nukkit/item/ItemChestplateNetherite.java b/src/main/java/cn/nukkit/item/ItemChestplateNetherite.java index 6af802dfa09..0b29a33e5c1 100644 --- a/src/main/java/cn/nukkit/item/ItemChestplateNetherite.java +++ b/src/main/java/cn/nukkit/item/ItemChestplateNetherite.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @Since("1.4.0.0-PN") @@ -45,6 +46,7 @@ public int getToughness() { return 3; } + @PowerNukkitOnly @Override public boolean isLavaResistant() { return true; diff --git a/src/main/java/cn/nukkit/item/ItemEnderPearl.java b/src/main/java/cn/nukkit/item/ItemEnderPearl.java index 927818beeed..8016b135bf2 100644 --- a/src/main/java/cn/nukkit/item/ItemEnderPearl.java +++ b/src/main/java/cn/nukkit/item/ItemEnderPearl.java @@ -1,6 +1,7 @@ package cn.nukkit.item; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.entity.Entity; import cn.nukkit.entity.projectile.EntityEnderPearl; @@ -33,6 +34,7 @@ public float getThrowForce() { return 1.5f; } + @PowerNukkitOnly @Override protected Entity correctProjectile(Player player, Entity projectile) { if (projectile instanceof EntityEnderPearl) { diff --git a/src/main/java/cn/nukkit/item/ItemFishingRod.java b/src/main/java/cn/nukkit/item/ItemFishingRod.java index 70a079e7e20..48748e7f48a 100644 --- a/src/main/java/cn/nukkit/item/ItemFishingRod.java +++ b/src/main/java/cn/nukkit/item/ItemFishingRod.java @@ -1,6 +1,7 @@ package cn.nukkit.item; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.math.Vector3; /** @@ -52,6 +53,7 @@ public boolean noDamageOnBreak() { return true; } + @PowerNukkitOnly @Override public boolean damageWhenBreaking() { return false; diff --git a/src/main/java/cn/nukkit/item/ItemHelmetNetherite.java b/src/main/java/cn/nukkit/item/ItemHelmetNetherite.java index 59f2f3b9f17..293533e8d6d 100644 --- a/src/main/java/cn/nukkit/item/ItemHelmetNetherite.java +++ b/src/main/java/cn/nukkit/item/ItemHelmetNetherite.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @Since("1.4.0.0-PN") @@ -45,6 +46,7 @@ public int getToughness() { return 3; } + @PowerNukkitOnly @Override public boolean isLavaResistant() { return true; diff --git a/src/main/java/cn/nukkit/item/ItemHoeNetherite.java b/src/main/java/cn/nukkit/item/ItemHoeNetherite.java index 5faca0659e1..d2e68441536 100644 --- a/src/main/java/cn/nukkit/item/ItemHoeNetherite.java +++ b/src/main/java/cn/nukkit/item/ItemHoeNetherite.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @Since("1.4.0.0-PN") @@ -39,7 +40,8 @@ public int getTier() { public int getMaxDurability() { return ItemTool.DURABILITY_NETHERITE; } - + + @PowerNukkitOnly @Override public boolean isLavaResistant() { return true; diff --git a/src/main/java/cn/nukkit/item/ItemIngotNetherite.java b/src/main/java/cn/nukkit/item/ItemIngotNetherite.java index 6427e231794..d3b65d89055 100644 --- a/src/main/java/cn/nukkit/item/ItemIngotNetherite.java +++ b/src/main/java/cn/nukkit/item/ItemIngotNetherite.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @Since("1.4.0.0-PN") @@ -19,6 +20,7 @@ public ItemIngotNetherite(Integer meta, int count) { super(NETHERITE_INGOT, 0, count, "Netherite Ingot"); } + @PowerNukkitOnly @Override public boolean isLavaResistant() { return true; diff --git a/src/main/java/cn/nukkit/item/ItemLeggingsNetherite.java b/src/main/java/cn/nukkit/item/ItemLeggingsNetherite.java index 691cb6883ec..0ac8bc01cca 100644 --- a/src/main/java/cn/nukkit/item/ItemLeggingsNetherite.java +++ b/src/main/java/cn/nukkit/item/ItemLeggingsNetherite.java @@ -1,6 +1,7 @@ package cn.nukkit.item; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @Since("1.4.0.0-PN") @@ -47,6 +48,7 @@ public int getToughness() { return 3; } + @PowerNukkitOnly @Override public boolean isLavaResistant() { return true; diff --git a/src/main/java/cn/nukkit/item/ItemPickaxeNetherite.java b/src/main/java/cn/nukkit/item/ItemPickaxeNetherite.java index bff545100d9..9966a9213fc 100644 --- a/src/main/java/cn/nukkit/item/ItemPickaxeNetherite.java +++ b/src/main/java/cn/nukkit/item/ItemPickaxeNetherite.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @Since("1.4.0.0-PN") @@ -40,6 +41,7 @@ public int getAttackDamage() { return 6; } + @PowerNukkitOnly @Override public boolean isLavaResistant() { return true; diff --git a/src/main/java/cn/nukkit/item/ItemPotionLingering.java b/src/main/java/cn/nukkit/item/ItemPotionLingering.java index a31695bcc17..459084ba765 100644 --- a/src/main/java/cn/nukkit/item/ItemPotionLingering.java +++ b/src/main/java/cn/nukkit/item/ItemPotionLingering.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.nbt.tag.CompoundTag; public class ItemPotionLingering extends ProjectileItem { @@ -25,17 +26,22 @@ public int getMaxStackSize() { public boolean canBeActivated() { return true; } - + + @PowerNukkitOnly + @Override public String getProjectileEntityType() { return "LingeringPotion"; } - + + @PowerNukkitOnly @Override public float getThrowForce() { return 0.5f; } - + + @PowerNukkitOnly + @Override protected void correctNBT(CompoundTag nbt) { nbt.putInt("PotionId", this.meta); diff --git a/src/main/java/cn/nukkit/item/ItemScrapNetherite.java b/src/main/java/cn/nukkit/item/ItemScrapNetherite.java index 41131d63c35..a9a044567f8 100644 --- a/src/main/java/cn/nukkit/item/ItemScrapNetherite.java +++ b/src/main/java/cn/nukkit/item/ItemScrapNetherite.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @Since("1.4.0.0-PN") @@ -20,6 +21,7 @@ public ItemScrapNetherite(Integer meta, int count) { super(NETHERITE_SCRAP, 0, count, "Netherite Scrap"); } + @PowerNukkitOnly @Override public boolean isLavaResistant() { return true; diff --git a/src/main/java/cn/nukkit/item/ItemShovelNetherite.java b/src/main/java/cn/nukkit/item/ItemShovelNetherite.java index be5c6934766..04a0e65a28b 100644 --- a/src/main/java/cn/nukkit/item/ItemShovelNetherite.java +++ b/src/main/java/cn/nukkit/item/ItemShovelNetherite.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @Since("1.4.0.0-PN") @@ -40,6 +41,7 @@ public int getAttackDamage() { return 5; } + @PowerNukkitOnly @Override public boolean isLavaResistant() { return true; diff --git a/src/main/java/cn/nukkit/item/ItemSign.java b/src/main/java/cn/nukkit/item/ItemSign.java index b984b5c53a6..11bed656cc6 100644 --- a/src/main/java/cn/nukkit/item/ItemSign.java +++ b/src/main/java/cn/nukkit/item/ItemSign.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; import cn.nukkit.block.BlockSignPost; @@ -17,6 +18,7 @@ public ItemSign(Integer meta) { this(meta, 1); } + @PowerNukkitOnly protected ItemSign(int id, Integer meta, int count, String name, BlockSignPost block) { super(id, meta, count, name); this.block = block; diff --git a/src/main/java/cn/nukkit/item/ItemSwordNetherite.java b/src/main/java/cn/nukkit/item/ItemSwordNetherite.java index ec2ab642b4b..ecef2daf365 100644 --- a/src/main/java/cn/nukkit/item/ItemSwordNetherite.java +++ b/src/main/java/cn/nukkit/item/ItemSwordNetherite.java @@ -1,5 +1,6 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @Since("1.4.0.0-PN") @@ -40,6 +41,7 @@ public int getAttackDamage() { return 8; } + @PowerNukkitOnly @Override public boolean isLavaResistant() { return true; diff --git a/src/main/java/cn/nukkit/item/ItemTotem.java b/src/main/java/cn/nukkit/item/ItemTotem.java index bc9397bd18d..8208a244c5b 100644 --- a/src/main/java/cn/nukkit/item/ItemTotem.java +++ b/src/main/java/cn/nukkit/item/ItemTotem.java @@ -1,7 +1,10 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; + public class ItemTotem extends Item { + @PowerNukkitOnly public ItemTotem() { this(0, 1); } diff --git a/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java b/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java index 5e2e69f4541..23faee8cd79 100644 --- a/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java +++ b/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java @@ -18,6 +18,7 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; /** @@ -56,6 +57,7 @@ public boolean noDamageOnBreak() { return true; } + @PowerNukkitOnly @Override public boolean damageWhenBreaking() { return false; diff --git a/src/main/java/cn/nukkit/item/PNAlphaItemID.java b/src/main/java/cn/nukkit/item/PNAlphaItemID.java index 28eac648cfa..1b7a5f43f5a 100644 --- a/src/main/java/cn/nukkit/item/PNAlphaItemID.java +++ b/src/main/java/cn/nukkit/item/PNAlphaItemID.java @@ -24,7 +24,6 @@ import cn.nukkit.api.Since; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; -import lombok.Getter; import lombok.RequiredArgsConstructor; /** @@ -39,7 +38,6 @@ "This interface was created to map item ids which were used in v1.4.0.0-PN-ALPHA.1, v1.4.0.0-PN-ALPHA.2 and v1.4.0.0-PN-ALPHA.1 " + "and will no longer be used because Nukkit took an other way and we will follow it to keep plugin compatibility in future.") @RequiredArgsConstructor -@Getter public enum PNAlphaItemID { @Since("1.4.0.0-PN") @PowerNukkitOnly COD_BUCKET(802, MinecraftItemID.COD_BUCKET), @Since("1.4.0.0-PN") @PowerNukkitOnly GHAST_SPAWN_EGG(803, MinecraftItemID.GHAST_SPAWN_EGG), @@ -163,4 +161,16 @@ public enum PNAlphaItemID { public static PNAlphaItemID getBadAlphaId(int id) { return byId.get(id); } + + @PowerNukkitOnly + @Since("1.4.0.0-PN") + public int getBadItemId() { + return badItemId; + } + + @PowerNukkitOnly + @Since("1.4.0.0-PN") + public MinecraftItemID getMinecraftItemId() { + return minecraftItemId; + } } diff --git a/src/main/java/cn/nukkit/item/ProjectileItem.java b/src/main/java/cn/nukkit/item/ProjectileItem.java index 5c528b50794..3eb7326f536 100644 --- a/src/main/java/cn/nukkit/item/ProjectileItem.java +++ b/src/main/java/cn/nukkit/item/ProjectileItem.java @@ -1,6 +1,7 @@ package cn.nukkit.item; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.entity.Entity; import cn.nukkit.entity.projectile.EntityEnderPearl; import cn.nukkit.entity.projectile.EntityProjectile; @@ -74,10 +75,12 @@ public boolean onClickAir(Player player, Vector3 directionVector) { return true; } + @PowerNukkitOnly protected void addThrowSound(Player player) { player.getLevel().addLevelSoundEvent(player, LevelSoundEventPacketV2.SOUND_THROW, -1, "minecraft:player", false, false); } + @PowerNukkitOnly protected Entity correctProjectile(Player player, Entity projectile) { return projectile; } diff --git a/src/main/java/cn/nukkit/item/RuntimeItemMapping.java b/src/main/java/cn/nukkit/item/RuntimeItemMapping.java index 6e076903604..c5a401705ab 100644 --- a/src/main/java/cn/nukkit/item/RuntimeItemMapping.java +++ b/src/main/java/cn/nukkit/item/RuntimeItemMapping.java @@ -38,6 +38,7 @@ public class RuntimeItemMapping { private final Int2ObjectMap networkNamespaceMap; @Since("1.4.0.0-PN") + @PowerNukkitOnly public RuntimeItemMapping(byte[] itemDataPalette, Int2IntMap legacyNetworkMap, Int2IntMap networkLegacyMap) { this.itemDataPalette = itemDataPalette; this.legacyNetworkMap = legacyNetworkMap; @@ -71,6 +72,7 @@ public RuntimeItemMapping( * @return The network id * @throws IllegalArgumentException If the mapping of the full id to the network id is unknown */ + @PowerNukkitOnly @Since("1.4.0.0-PN") public int getNetworkFullId(Item item) { int fullId = RuntimeItems.getFullId(item.getId(), item.hasMeta() ? item.getDamage() : -1); @@ -94,6 +96,7 @@ public int getNetworkFullId(Item item) { * @return The full id * @throws IllegalArgumentException If the mapping of the full id to the network id is unknown */ + @PowerNukkitOnly @Since("1.4.0.0-PN") public int getLegacyFullId(int networkId) { int fullId = networkLegacyMap.get(networkId); @@ -103,6 +106,7 @@ public int getLegacyFullId(int networkId) { return fullId; } + @PowerNukkitOnly @Since("1.4.0.0-PN") public byte[] getItemDataPalette() { return this.itemDataPalette; diff --git a/src/main/java/cn/nukkit/item/RuntimeItems.java b/src/main/java/cn/nukkit/item/RuntimeItems.java index fb865f9f518..661ae1eec5a 100644 --- a/src/main/java/cn/nukkit/item/RuntimeItems.java +++ b/src/main/java/cn/nukkit/item/RuntimeItems.java @@ -84,31 +84,37 @@ public class RuntimeItems { namespaceNetworkMap, networkNamespaceMap); } + @PowerNukkitOnly @Since("1.4.0.0-PN") public static RuntimeItemMapping getRuntimeMapping() { return itemPalette; } + @PowerNukkitOnly @Since("1.4.0.0-PN") public static int getId(int fullId) { return (short) (fullId >> 16); } + @PowerNukkitOnly @Since("1.4.0.0-PN") public static int getData(int fullId) { return ((fullId >> 1) & 0x7fff); } + @PowerNukkitOnly @Since("1.4.0.0-PN") public static int getFullId(int id, int data) { return (((short) id) << 16) | ((data & 0x7fff) << 1); } + @PowerNukkitOnly @Since("1.4.0.0-PN") public static int getNetworkId(int networkFullId) { return networkFullId >> 1; } + @PowerNukkitOnly @Since("1.4.0.0-PN") public static boolean hasData(int id) { return (id & 0x1) != 0; diff --git a/src/main/java/cn/nukkit/item/enchantment/EnchantmentDurability.java b/src/main/java/cn/nukkit/item/enchantment/EnchantmentDurability.java index b6983767232..16e73107cf8 100644 --- a/src/main/java/cn/nukkit/item/enchantment/EnchantmentDurability.java +++ b/src/main/java/cn/nukkit/item/enchantment/EnchantmentDurability.java @@ -1,5 +1,6 @@ package cn.nukkit.item.enchantment; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; import java.util.Random; @@ -35,7 +36,8 @@ public boolean canEnchant(Item item) { public static boolean negateDamage(Item item, int level, Random random) { return !(item.isArmor() && random.nextFloat() < 0.6f) && random.nextInt(level + 1) > 0; } - + + @PowerNukkitOnly @Override public boolean isItemAcceptable(Item item) { if (!item.isNull() && item.getMaxDurability() != -1 && !item.isUnbreakable()) { diff --git a/src/main/java/cn/nukkit/item/enchantment/EnchantmentEfficiency.java b/src/main/java/cn/nukkit/item/enchantment/EnchantmentEfficiency.java index 363f8f216e8..a6db0f4f599 100644 --- a/src/main/java/cn/nukkit/item/enchantment/EnchantmentEfficiency.java +++ b/src/main/java/cn/nukkit/item/enchantment/EnchantmentEfficiency.java @@ -1,5 +1,6 @@ package cn.nukkit.item.enchantment; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; /** @@ -29,7 +30,8 @@ public int getMaxLevel() { public boolean canEnchant(Item item) { return item.isShears() || super.canEnchant(item); } - + + @PowerNukkitOnly @Override public boolean isItemAcceptable(Item item) { if (item.isShears()) { diff --git a/src/main/java/cn/nukkit/item/enchantment/EnchantmentSilkTouch.java b/src/main/java/cn/nukkit/item/enchantment/EnchantmentSilkTouch.java index f1fa6e45d91..e10023c6dad 100644 --- a/src/main/java/cn/nukkit/item/enchantment/EnchantmentSilkTouch.java +++ b/src/main/java/cn/nukkit/item/enchantment/EnchantmentSilkTouch.java @@ -1,5 +1,6 @@ package cn.nukkit.item.enchantment; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.item.Item; /** @@ -29,8 +30,8 @@ public boolean checkCompatibility(Enchantment enchantment) { public boolean canEnchant(Item item) { return item.isShears() || super.canEnchant(item); } - - + + @PowerNukkitOnly @Override public boolean isItemAcceptable(Item item) { if (item.isShears()) { diff --git a/src/main/java/cn/nukkit/item/enchantment/EnchantmentThorns.java b/src/main/java/cn/nukkit/item/enchantment/EnchantmentThorns.java index 4277a2df082..fa5bd2a66f3 100644 --- a/src/main/java/cn/nukkit/item/enchantment/EnchantmentThorns.java +++ b/src/main/java/cn/nukkit/item/enchantment/EnchantmentThorns.java @@ -1,5 +1,6 @@ package cn.nukkit.item.enchantment; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.entity.Entity; import cn.nukkit.entity.EntityHumanType; import cn.nukkit.event.entity.EntityDamageByEntityEvent; @@ -63,6 +64,7 @@ public boolean canEnchant(@Nonnull Item item) { return !(item instanceof ItemElytra) && super.canEnchant(item); } + @PowerNukkitOnly @Override public boolean isItemAcceptable(Item item) { if (item instanceof ItemArmor) { diff --git a/src/main/java/cn/nukkit/item/enchantment/damage/EnchantmentDamage.java b/src/main/java/cn/nukkit/item/enchantment/damage/EnchantmentDamage.java index de41500194c..84bc2cee517 100644 --- a/src/main/java/cn/nukkit/item/enchantment/damage/EnchantmentDamage.java +++ b/src/main/java/cn/nukkit/item/enchantment/damage/EnchantmentDamage.java @@ -59,6 +59,7 @@ public boolean isMajor() { return true; } + @PowerNukkitOnly @Override public boolean isItemAcceptable(Item item) { if (item.isAxe()) { diff --git a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java index 49b9c607b90..eb6314ebd80 100644 --- a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java +++ b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java @@ -11,6 +11,7 @@ @PowerNukkitOnly @Since("1.5.1.0-PN") public interface SideEffect extends Cloneable { + @PowerNukkitOnly SideEffect[] EMPTY_ARRAY = new SideEffect[0]; @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/level/GameRule.java b/src/main/java/cn/nukkit/level/GameRule.java index 48d23b069c0..7ec23c26951 100644 --- a/src/main/java/cn/nukkit/level/GameRule.java +++ b/src/main/java/cn/nukkit/level/GameRule.java @@ -44,7 +44,7 @@ public enum GameRule { SPAWN_RADIUS("spawnRadius"), TNT_EXPLODES("tntExplodes"), - EXPERIMENTAL_GAMEPLAY("experimentalGameplay"), + @PowerNukkitOnly EXPERIMENTAL_GAMEPLAY("experimentalGameplay"), SHOW_TAGS("showTags"); private final String name; diff --git a/src/main/java/cn/nukkit/level/GlobalBlockPalette.java b/src/main/java/cn/nukkit/level/GlobalBlockPalette.java index a3358305d7a..2e211d3d470 100644 --- a/src/main/java/cn/nukkit/level/GlobalBlockPalette.java +++ b/src/main/java/cn/nukkit/level/GlobalBlockPalette.java @@ -1,6 +1,7 @@ package cn.nukkit.level; import cn.nukkit.api.DeprecationDetails; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.blockstate.BlockStateRegistry; import lombok.extern.log4j.Log4j2; @@ -11,6 +12,7 @@ public class GlobalBlockPalette { @Deprecated @DeprecationDetails(reason = "Public mutable array", replaceWith = "BlockStateRegistry.getBlockPaletteBytes() or BlockStateRegistry.copyBlockPaletteBytes()", since = "1.4.0.0-PN") + @PowerNukkitOnly public static final byte[] BLOCK_PALETTE = BlockStateRegistry.getBlockPaletteBytes(); @Deprecated @@ -27,6 +29,7 @@ public static int getOrCreateRuntimeId(int legacyId) { @Deprecated @DeprecationDetails(reason = "Moved to BlockStateRegistry", replaceWith = "BlockStateRegistry.getPersistenceName(int)", since = "1.3.0.0-PN") + @PowerNukkitOnly public static String getName(int blockId) { return BlockStateRegistry.getPersistenceName(blockId); } diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 70587df11b6..7a68ffe29fb 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -547,11 +547,13 @@ public void addSound(Vector3 pos, Sound sound, float volume, float pitch, Player Server.broadcastPacket(players, packet); } } - + + @PowerNukkitOnly public void addLevelEvent(int type, int data) { addLevelEvent(type, data, null); } - + + @PowerNukkitOnly public void addLevelEvent(int type, int data, Vector3 pos) { if (pos == null) { addLevelEvent(type, data, 0, 0, 0); @@ -559,7 +561,8 @@ public void addLevelEvent(int type, int data, Vector3 pos) { addLevelEvent(type, data, (float) pos.x, (float) pos.y, (float) pos.z); } } - + + @PowerNukkitOnly public void addLevelEvent(int type, int data, float x, float y, float z) { LevelEventPacket packet = new LevelEventPacket(); packet.evid = type; @@ -1470,11 +1473,13 @@ public Block[] getCollisionBlocks(AxisAlignedBB bb) { public Block[] getCollisionBlocks(AxisAlignedBB bb, boolean targetFirst) { return getCollisionBlocks(bb, targetFirst, false); } - + + @PowerNukkitOnly public Block[] getCollisionBlocks(AxisAlignedBB bb, boolean targetFirst, boolean ignoreCollidesCheck) { return getCollisionBlocks(bb, targetFirst, ignoreCollidesCheck, block -> block.getId() != 0); } - + + @PowerNukkitOnly public Block[] getCollisionBlocks(AxisAlignedBB bb, boolean targetFirst, boolean ignoreCollidesCheck, Predicate condition) { int minX = NukkitMath.floorDouble(bb.getMinX()); int minY = NukkitMath.floorDouble(bb.getMinY()); @@ -1619,14 +1624,17 @@ public int calculateSkylightSubtracted(float tickDiff) { return (int)(light * 11.0F); } + @PowerNukkitOnly public float getRainStrength(float tickDiff) { return isRaining() ? 1 : 0; // TODO: real implementation } + @PowerNukkitOnly public float getThunderStrength(float tickDiff) { return isThundering() ? 1 : 0; // TODO: real implementation } + @PowerNukkitOnly public float getCelestialAngle(float tickDiff) { return calculateCelestialAngle(getTime(), tickDiff); } @@ -1660,6 +1668,7 @@ public int getFullBlock(int x, int y, int z) { @Deprecated @DeprecationDetails(reason ="The meta is limited to 32 bits", since = "1.3.0.0-PN") + @PowerNukkitOnly public int getFullBlock(int x, int y, int z, int layer) { return this.getChunk(x >> 4, z >> 4, false).getFullBlock(x & 0x0f, y & 0xff, z & 0x0f, layer); } @@ -1680,6 +1689,7 @@ public synchronized Block getBlock(Vector3 pos) { return getBlock(pos, 0); } + @PowerNukkitOnly public synchronized Block getBlock(Vector3 pos, int layer) { return this.getBlock(pos.getFloorX(), pos.getFloorY(), pos.getFloorZ(), layer); } @@ -1688,6 +1698,7 @@ public synchronized Block getBlock(Vector3 pos, boolean load) { return getBlock(pos, 0, load); } + @PowerNukkitOnly public synchronized Block getBlock(Vector3 pos, int layer, boolean load) { return this.getBlock(pos.getFloorX(), pos.getFloorY(), pos.getFloorZ(), layer, load); } @@ -1696,6 +1707,7 @@ public synchronized Block getBlock(int x, int y, int z) { return getBlock(x, y, z, 0); } + @PowerNukkitOnly public synchronized Block getBlock(int x, int y, int z, int layer) { return getBlock(x, y, z, layer, true); } @@ -1704,7 +1716,7 @@ public synchronized Block getBlock(int x, int y, int z, boolean load) { return getBlock(x, y, z, 0, load); } - @PowerNukkitDifference(since = "1.4.0.0-PN", info = "Will automatically repair broken block states") + @PowerNukkitOnly public synchronized Block getBlock(int x, int y, int z, int layer, boolean load) { BlockState fullState; if (y >= 0 && y < 256) { @@ -1784,6 +1796,7 @@ public void updateBlockSkyLight(int x, int y, int z) { /** * Returns the highest block skylight level available in the positions adjacent to the specified block coordinates. */ + @PowerNukkitOnly public int getHighestAdjacentBlockSkyLight(int x, int y, int z) { int[] lightLevels = new int[] { getBlockSkyLightAt(x + 1, y, z), @@ -1945,6 +1958,7 @@ public void addLightUpdate(int x, int y, int z) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public synchronized void setBlockFullIdAt(int x, int y, int z, int fullId) { setBlockFullIdAt(x, y, z, 0, fullId); @@ -1961,6 +1975,7 @@ public synchronized boolean setBlock(Vector3 pos, Block block) { return setBlock(pos, 0, block); } + @PowerNukkitOnly public synchronized boolean setBlock(Vector3 pos, int layer, Block block) { return this.setBlock(pos, layer, block, false); } @@ -1969,6 +1984,7 @@ public synchronized boolean setBlock(Vector3 pos, Block block, boolean direct) { return this.setBlock(pos, 0, block, direct); } + @PowerNukkitOnly public synchronized boolean setBlock(Vector3 pos, int layer, Block block, boolean direct) { return this.setBlock(pos, layer, block, direct, true); } @@ -1977,6 +1993,7 @@ public synchronized boolean setBlock(Vector3 pos, Block block, boolean direct, b return setBlock(pos, 0, block, direct, update); } + @PowerNukkitOnly public synchronized boolean setBlock(Vector3 pos, int layer, Block block, boolean direct, boolean update) { return setBlock(pos.getFloorX(), pos.getFloorY(), pos.getFloorZ(), layer, block, direct, update); } @@ -1985,6 +2002,7 @@ public synchronized boolean setBlock(int x, int y, int z, Block block, boolean d return setBlock(x, y, z, 0, block, direct, update); } + @PowerNukkitOnly public synchronized boolean setBlock(int x, int y, int z, int layer, Block block, boolean direct, boolean update) { if (y < 0 || y >= 256 || layer < 0 || layer > this.requireProvider().getMaximumLayer()) { return false; @@ -2181,7 +2199,8 @@ public Item useBreakOn(Vector3 vector, Item item, Player player, boolean createP public Item useBreakOn(Vector3 vector, BlockFace face, Item item, Player player, boolean createParticles) { return useBreakOn(vector, face, item, player, createParticles, false); } - + + @PowerNukkitOnly public Item useBreakOn(Vector3 vector, BlockFace face, Item item, Player player, boolean createParticles, boolean setBlockDestroy) { if (vector instanceof Block) { return useBreakOn(vector, ((Block) vector).layer, face, item, player, createParticles, setBlockDestroy); @@ -2190,6 +2209,7 @@ public Item useBreakOn(Vector3 vector, BlockFace face, Item item, Player player, } } + @PowerNukkitOnly public Item useBreakOn(Vector3 vector, int layer, BlockFace face, Item item, Player player, boolean createParticles, boolean setBlockDestroy) { if (player != null && player.getGamemode() > 2) { return null; @@ -2717,6 +2737,7 @@ public Map getLoaders() { return loaders; } + @PowerNukkitOnly public BlockEntity getBlockEntity(Vector3 pos) { return getBlockEntity(pos.asBlockVector3()); } @@ -2755,6 +2776,7 @@ public Map getChunkBlockEntities(int X, int Z) { return (chunk = this.getChunk(X, Z)) != null ? chunk.getBlockEntities() : Collections.emptyMap(); } + @PowerNukkitOnly @Override public BlockState getBlockStateAt(int x, int y, int z, int layer) { return getChunk(x >> 4, z >> 4, true).getBlockStateAt(x & 0x0f, y & 0xff, z & 0x0f, layer); @@ -2765,11 +2787,13 @@ public int getBlockIdAt(int x, int y, int z) { return getBlockIdAt(x, y, z, 0); } + @PowerNukkitOnly @Override public synchronized int getBlockIdAt(int x, int y, int z, int layer) { return this.getChunk(x >> 4, z >> 4, true).getBlockId(x & 0x0f, y & 0xff, z & 0x0f, layer); } + @PowerNukkitOnly @Override public void setBlockIdAt(int x, int y, int z, int id) { setBlockIdAt(x, y, z, 0, id); @@ -2794,6 +2818,7 @@ public synchronized void setBlockAt(int x, int y, int z, int id, int data) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public synchronized boolean setBlockAtLayer(int x, int y, int z, int layer, int id, int data) { return setBlockStateAt(x, y, z, layer, BlockState.of(id, data)); @@ -2832,6 +2857,7 @@ public synchronized void setBlockExtraDataAt(int x, int y, int z, int id, int da @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public synchronized int getBlockDataAt(int x, int y, int z, int layer) { return this.getChunk(x >> 4, z >> 4, true).getBlockData(x & 0x0f, y & 0xff, z & 0x0f, layer); @@ -2839,6 +2865,7 @@ public synchronized int getBlockDataAt(int x, int y, int z, int layer) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public void setBlockDataAt(int x, int y, int z, int data) { setBlockDataAt(x, y, z, 0, data); @@ -3065,6 +3092,7 @@ public Position getSpawnLocation() { return Position.fromObject(this.requireProvider().getSpawn(), this); } + @PowerNukkitOnly public Position getFuzzySpawnLocation() { Position spawn = getSpawnLocation(); int radius = gameRules.getInteger(GameRule.SPAWN_RADIUS); diff --git a/src/main/java/cn/nukkit/level/ListChunkManager.java b/src/main/java/cn/nukkit/level/ListChunkManager.java index db947f3c785..92bba16f253 100644 --- a/src/main/java/cn/nukkit/level/ListChunkManager.java +++ b/src/main/java/cn/nukkit/level/ListChunkManager.java @@ -35,7 +35,8 @@ private Optional findBlockAt(int x, int y, int z, int layer) { && block.layer == layer ).findAny(); } - + + @PowerNukkitOnly @Override public int getBlockIdAt(int x, int y, int z, int layer) { return findBlockAt(x, y, z, layer).map(Block::getId).orElseGet(() -> this.parent.getBlockIdAt(x, y, z, layer)); @@ -46,6 +47,7 @@ public void setBlockFullIdAt(int x, int y, int z, int fullId) { setBlockFullIdAt(x, y, z, 0, fullId); } + @PowerNukkitOnly @Override public void setBlockFullIdAt(int x, int y, int z, int layer, int fullId) { this.blocks.removeIf(block -> block.getFloorX() == x && block.getFloorY() == y && block.getFloorZ() == z && block.layer == layer); @@ -57,6 +59,7 @@ public void setBlockIdAt(int x, int y, int z, int id) { setBlockIdAt(x, y, z, 0, id); } + @PowerNukkitOnly @Override public void setBlockIdAt(int x, int y, int z, int layer, int id) { Optional optionalBlock = this.blocks.stream().filter(block -> block.getFloorX() == x && block.getFloorY() == y && block.getFloorZ() == z && block.layer == layer).findAny(); @@ -71,6 +74,7 @@ public void setBlockAt(int x, int y, int z, int id, int data) { this.blocks.add(Block.get(id, data, new Position(x, y, z), 0)); } + @PowerNukkitOnly @Override public boolean setBlockAtLayer(int x, int y, int z, int layer, int id, int data) { boolean removed = this.blocks.removeIf(block -> block.getFloorX() == x && block.getFloorY() == y && block.getFloorZ() == z && block.layer == layer); @@ -99,6 +103,7 @@ public int getBlockDataAt(int x, int y, int z) { return getBlockIdAt(x, y, z, 0); } + @PowerNukkitOnly @Override public int getBlockDataAt(int x, int y, int z, int layer) { Optional optionalBlock = this.blocks.stream().filter(block -> block.getFloorX() == x && block.getFloorY() == y && block.getFloorZ() == z && block.layer == layer).findAny(); @@ -109,7 +114,8 @@ public int getBlockDataAt(int x, int y, int z, int layer) { public void setBlockDataAt(int x, int y, int z, int data) { setBlockIdAt(x, y, z, 0, data); } - + + @PowerNukkitOnly @Override public void setBlockDataAt(int x, int y, int z, int layer, int data) { Optional optionalBlock = this.blocks.stream().filter(block -> block.getFloorX() == x && block.getFloorY() == y && block.getFloorZ() == z && block.layer == layer).findAny(); From b8b6d474ea68a46435adf9b58ae0258050c6935c Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 21:57:27 -0300 Subject: [PATCH 302/394] Add missing PowerNukkitOnly annotations --- dumps/needed-class-changes.json | 378 +----------------- src/main/java/cn/nukkit/level/Level.java | 8 +- src/main/java/cn/nukkit/level/Location.java | 3 + src/main/java/cn/nukkit/level/Position.java | 1 + .../biome/impl/beach/ColdBeachBiome.java | 2 + .../impl/extremehills/StoneBeachBiome.java | 5 + .../impl/iceplains/IcePlainsSpikesBiome.java | 2 + .../biome/impl/mesa/MesaPlateauFBiome.java | 2 + .../impl/mushroom/MushroomIslandBiome.java | 2 + .../biome/impl/taiga/ColdTaigaBiome.java | 2 + .../nukkit/level/biome/type/CoveredBiome.java | 9 + .../nukkit/level/biome/type/GrassyBiome.java | 3 + .../nukkit/level/biome/type/SandyBiome.java | 5 + .../nukkit/level/biome/type/SnowyBiome.java | 2 + .../nukkit/level/biome/type/WateryBiome.java | 3 + .../cn/nukkit/level/format/ChunkSection.java | 1 + .../cn/nukkit/level/format/FullChunk.java | 1 + .../cn/nukkit/level/format/LevelProvider.java | 4 +- .../cn/nukkit/level/format/anvil/Anvil.java | 4 +- .../level/format/anvil/ChunkSection.java | 20 +- .../level/format/anvil/util/BlockStorage.java | 5 +- .../anvil/util/ImmutableBlockStorage.java | 1 + .../level/format/generic/BaseChunk.java | 6 + .../level/format/generic/BaseFullChunk.java | 10 +- .../format/generic/EmptyChunkSection.java | 18 +- .../level/format/updater/BeehiveUpdater.java | 1 + .../level/format/updater/DoorUpdater.java | 1 + .../level/format/updater/FrameUpdater.java | 1 + .../level/format/updater/GroupedUpdaters.java | 1 + .../format/updater/MesaBiomeUpdater.java | 1 + .../level/format/updater/NewLeafUpdater.java | 1 + .../format/updater/OldWoodBarkUpdater.java | 1 + .../format/updater/SnowLayerUpdater.java | 1 + .../format/updater/StemStrippedUpdater.java | 1 + .../level/format/updater/StemUpdater.java | 1 + .../level/format/updater/WallUpdater.java | 1 + .../level/generator/SimpleChunkManager.java | 7 + .../object/ObjectNyliumVegetation.java | 2 + .../generator/object/ObjectTallGrass.java | 2 + .../populator/impl/PopulatorGroundCover.java | 2 + .../populator/impl/PopulatorOre.java | 4 + .../populator/impl/PopulatorOreEmerald.java | 6 +- .../java/cn/nukkit/math/AxisAlignedBB.java | 1 + src/main/java/cn/nukkit/math/MathHelper.java | 3 + .../java/cn/nukkit/nbt/tag/CompoundTag.java | 2 + src/main/java/cn/nukkit/network/Network.java | 2 + .../AbstractResourcePackDataPacket.java | 2 + .../network/protocol/AnimateEntityPacket.java | 2 + .../nukkit/network/protocol/DataPacket.java | 2 + .../network/protocol/ItemComponentPacket.java | 2 + .../protocol/ItemStackResponsePacket.java | 2 + .../network/protocol/PlayerActionPacket.java | 3 +- ...PositionTrackingDBClientRequestPacket.java | 2 + ...sitionTrackingDBServerBroadcastPacket.java | 2 + .../network/protocol/TickSyncPacket.java | 2 + .../cn/nukkit/plugin/PowerNukkitPlugin.java | 2 + .../positiontracking/NamedPosition.java | 3 +- src/main/java/cn/nukkit/potion/Potion.java | 3 +- src/main/java/cn/nukkit/utils/Hash.java | 7 +- .../nukkit/utils/HumanStringComparator.java | 2 + 60 files changed, 179 insertions(+), 396 deletions(-) diff --git a/dumps/needed-class-changes.json b/dumps/needed-class-changes.json index c893e18c873..9e26dfeeb6e 100644 --- a/dumps/needed-class-changes.json +++ b/dumps/needed-class-changes.json @@ -1,377 +1 @@ -{ - "cn.nukkit.level.Level": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.Level#getBlockEntity(BlockVector3)", - "cn.nukkit.level.Level#setBlockDataAt(int, int, int, int, int)", - "cn.nukkit.level.Level#setBlockFullIdAt(int, int, int, int, int)", - "cn.nukkit.level.Level#setBlockIdAt(int, int, int, int, int)" - ], - "removePowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.Level#getBlockEntity(Vector3)", - "cn.nukkit.level.Level#setBlockDataAt(int, int, int, int)", - "cn.nukkit.level.Level#setBlockFullIdAt(int, int, int, int)", - "cn.nukkit.level.Level#setBlockIdAt(int, int, int, int)" - ] - }, - "cn.nukkit.level.Location": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.Location#setPitch(double)", - "cn.nukkit.level.Location#setYaw(double)" - ] - }, - "cn.nukkit.level.Position": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.Position#getLevelBlockAtLayer(int)" - ] - }, - "cn.nukkit.level.biome.impl.beach.ColdBeachBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.beach.ColdBeachBiome#getCoverBlock()" - ] - }, - "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getGroundBlock(int)", - "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getGroundDepth(int)", - "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getSurfaceBlock(int)", - "cn.nukkit.level.biome.impl.extremehills.StoneBeachBiome#getSurfaceDepth(int)" - ] - }, - "cn.nukkit.level.biome.impl.iceplains.IcePlainsSpikesBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.iceplains.IcePlainsSpikesBiome#getSurfaceBlock(int)" - ] - }, - "cn.nukkit.level.biome.impl.mesa.MesaPlateauFBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.mesa.MesaPlateauFBiome#getCoverBlock()" - ] - }, - "cn.nukkit.level.biome.impl.mushroom.MushroomIslandBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.mushroom.MushroomIslandBiome#getSurfaceBlock(int)" - ] - }, - "cn.nukkit.level.biome.impl.taiga.ColdTaigaBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.impl.taiga.ColdTaigaBiome#getCoverBlock()" - ] - }, - "cn.nukkit.level.biome.type.CoveredBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.type.CoveredBiome#synchronizeCover", - "cn.nukkit.level.biome.type.CoveredBiome#getCoverBlock()", - "cn.nukkit.level.biome.type.CoveredBiome#getGroundDepth(int)", - "cn.nukkit.level.biome.type.CoveredBiome#getGroundMeta(int)", - "cn.nukkit.level.biome.type.CoveredBiome#getStoneBlock()", - "cn.nukkit.level.biome.type.CoveredBiome#getSurfaceBlock(int)", - "cn.nukkit.level.biome.type.CoveredBiome#getSurfaceDepth(int)", - "cn.nukkit.level.biome.type.CoveredBiome#getSurfaceMeta(int)", - "cn.nukkit.level.biome.type.CoveredBiome#preCover(int, int)" - ] - }, - "cn.nukkit.level.biome.type.GrassyBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.type.GrassyBiome#getGroundBlock(int)", - "cn.nukkit.level.biome.type.GrassyBiome#getSurfaceBlock(int)" - ] - }, - "cn.nukkit.level.biome.type.SandyBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.type.SandyBiome#getGroundBlock(int)", - "cn.nukkit.level.biome.type.SandyBiome#getGroundDepth(int)", - "cn.nukkit.level.biome.type.SandyBiome#getSurfaceBlock(int)", - "cn.nukkit.level.biome.type.SandyBiome#getSurfaceDepth(int)" - ] - }, - "cn.nukkit.level.biome.type.SnowyBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.type.SnowyBiome#getCoverBlock()" - ] - }, - "cn.nukkit.level.biome.type.WateryBiome": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.biome.type.WateryBiome#getGroundDepth(int)", - "cn.nukkit.level.biome.type.WateryBiome#getSurfaceBlock(int)", - "cn.nukkit.level.biome.type.WateryBiome#getSurfaceDepth(int)" - ] - }, - "cn.nukkit.level.format.ChunkSection": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.ChunkSection#setFullBlockId(int, int, int, int, int)" - ] - }, - "cn.nukkit.level.format.FullChunk": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.FullChunk#recalculateHeightMapColumn(int, int)" - ] - }, - "cn.nukkit.level.format.LevelProvider": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.LevelProvider#getMaximumLayer()" - ] - }, - "cn.nukkit.level.format.anvil.Anvil": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.anvil.Anvil#getMaximumLayer()" - ] - }, - "cn.nukkit.level.format.anvil.ChunkSection": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.anvil.ChunkSection#STREAM_STORAGE_VERSION", - "cn.nukkit.level.format.anvil.ChunkSection#SAVE_STORAGE_VERSION", - "cn.nukkit.level.format.anvil.ChunkSection#getAndSetBlock(int, int, int, int, Block)", - "cn.nukkit.level.format.anvil.ChunkSection#getBlockChangeStateAbove(int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#getBlockData(int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#getBlockId(int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#getBlockState(int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#getFullBlock(int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#getMaximumLayer()", - "cn.nukkit.level.format.anvil.ChunkSection#hasBlocks()", - "cn.nukkit.level.format.anvil.ChunkSection#setBlockAtLayer(int, int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#setBlockAtLayer(int, int, int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#setBlockData(int, int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#setBlockId(int, int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#setBlockStateAtLayer(int, int, int, int, BlockState)", - "cn.nukkit.level.format.anvil.ChunkSection#setFullBlockId(int, int, int, int, int)", - "cn.nukkit.level.format.anvil.ChunkSection#toNBT()" - ] - }, - "cn.nukkit.level.format.anvil.util.BlockStorage": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.anvil.util.BlockStorage#SECTION_SIZE", - "cn.nukkit.level.format.anvil.util.BlockStorage#hasBlockDataExtras()", - "cn.nukkit.level.format.anvil.util.BlockStorage#hasBlockIdExtras()", - "cn.nukkit.level.format.anvil.util.BlockStorage#hasBlockIds()" - ] - }, - "cn.nukkit.level.format.anvil.util.ImmutableBlockStorage": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.anvil.util.ImmutableBlockStorage#setBlockState(int, BlockState)" - ] - }, - "cn.nukkit.level.format.generic.BaseChunk": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.generic.BaseChunk#findBorders(int, int)", - "cn.nukkit.level.format.generic.BaseChunk#getBlockData(int, int, int, int)", - "cn.nukkit.level.format.generic.BaseChunk#getBlockStateAt(int, int, int, int)", - "cn.nukkit.level.format.generic.BaseChunk#isBlockChangeAllowed(int, int, int)", - "cn.nukkit.level.format.generic.BaseChunk#isBlockedByBorder(int, int)", - "cn.nukkit.level.format.generic.BaseChunk#setBlockData(int, int, int, int, int)" - ] - }, - "cn.nukkit.level.format.generic.BaseFullChunk": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.generic.BaseFullChunk#getBlockDataAt(int, int, int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#getBlockIdAt(int, int, int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#recalculateHeightMapColumn(int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#setBlockAtLayer(int, int, int, int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#setBlockAtLayer(int, int, int, int, int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#setBlockDataAt(int, int, int, int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#setBlockFullIdAt(int, int, int, int, int)", - "cn.nukkit.level.format.generic.BaseFullChunk#setBlockIdAt(int, int, int, int, int)" - ] - }, - "cn.nukkit.level.format.generic.EmptyChunkSection": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.generic.EmptyChunkSection#getAndSetBlock(int, int, int, int, Block)", - "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockChangeStateAbove(int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockData(int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockId(int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#getBlockState(int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#getFullBlock(int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#getMaximumLayer()", - "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockAtLayer(int, int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockAtLayer(int, int, int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockData(int, int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockId(int, int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#setBlockStateAtLayer(int, int, int, int, BlockState)", - "cn.nukkit.level.format.generic.EmptyChunkSection#setFullBlockId(int, int, int, int, int)", - "cn.nukkit.level.format.generic.EmptyChunkSection#toNBT()" - ] - }, - "cn.nukkit.level.format.updater.BeehiveUpdater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.BeehiveUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.level.format.updater.DoorUpdater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.DoorUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.level.format.updater.FrameUpdater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.FrameUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.level.format.updater.GroupedUpdaters": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.GroupedUpdaters#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.level.format.updater.MesaBiomeUpdater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.MesaBiomeUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.level.format.updater.NewLeafUpdater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.NewLeafUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.level.format.updater.OldWoodBarkUpdater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.OldWoodBarkUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.level.format.updater.SnowLayerUpdater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.SnowLayerUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.level.format.updater.StemStrippedUpdater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.StemStrippedUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.level.format.updater.StemUpdater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.StemUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.level.format.updater.WallUpdater": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.format.updater.WallUpdater#update(int, int, int, int, int, int, BlockState)" - ] - }, - "cn.nukkit.level.generator.SimpleChunkManager": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.generator.SimpleChunkManager#getBlockDataAt(int, int, int, int)", - "cn.nukkit.level.generator.SimpleChunkManager#getBlockIdAt(int, int, int, int)", - "cn.nukkit.level.generator.SimpleChunkManager#getBlockStateAt(int, int, int, int)", - "cn.nukkit.level.generator.SimpleChunkManager#setBlockAtLayer(int, int, int, int, int, int)", - "cn.nukkit.level.generator.SimpleChunkManager#setBlockDataAt(int, int, int, int, int)", - "cn.nukkit.level.generator.SimpleChunkManager#setBlockFullIdAt(int, int, int, int, int)", - "cn.nukkit.level.generator.SimpleChunkManager#setBlockIdAt(int, int, int, int, int)" - ] - }, - "cn.nukkit.level.generator.object.ObjectNyliumVegetation": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.generator.object.ObjectNyliumVegetation#()" - ] - }, - "cn.nukkit.level.generator.object.ObjectTallGrass": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.generator.object.ObjectTallGrass#growGrass(ChunkManager, Vector3, NukkitRandom, int, int)" - ] - }, - "cn.nukkit.level.generator.populator.impl.PopulatorGroundCover": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.generator.populator.impl.PopulatorGroundCover#STONE" - ] - }, - "cn.nukkit.level.generator.populator.impl.PopulatorOre": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.generator.populator.impl.PopulatorOre#setOreTypes(OreType[])", - "cn.nukkit.level.generator.populator.impl.PopulatorOre#()", - "cn.nukkit.level.generator.populator.impl.PopulatorOre#(int)" - ] - }, - "cn.nukkit.level.generator.populator.impl.PopulatorOreEmerald": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.level.generator.populator.impl.PopulatorOreEmerald#()" - ] - }, - "cn.nukkit.math.AxisAlignedBB": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.math.AxisAlignedBB#getOffsetBoundingBox(BlockFace, double, double, double)" - ] - }, - "cn.nukkit.math.MathHelper": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.math.MathHelper#clamp(float, float, float)" - ] - }, - "cn.nukkit.nbt.tag.CompoundTag": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.nbt.tag.CompoundTag#(String, Map)", - "cn.nukkit.nbt.tag.CompoundTag#(Map)" - ] - }, - "cn.nukkit.network.Network": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.Network#getPacket(byte)" - ] - }, - "cn.nukkit.network.protocol.AbstractResourcePackDataPacket": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.AbstractResourcePackDataPacket#()" - ] - }, - "cn.nukkit.network.protocol.AnimateEntityPacket": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.AnimateEntityPacket#()" - ] - }, - "cn.nukkit.network.protocol.DataPacket": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.DataPacket#EMPTY_ARRAY" - ] - }, - "cn.nukkit.network.protocol.ItemComponentPacket": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.ItemComponentPacket#()" - ] - }, - "cn.nukkit.network.protocol.ItemStackResponsePacket": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.ItemStackResponsePacket#()" - ] - }, - "cn.nukkit.network.protocol.PlayerActionPacket": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.PlayerActionPacket#ACTION_INTERACT_BLOCK" - ] - }, - "cn.nukkit.network.protocol.PositionTrackingDBClientRequestPacket": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.PositionTrackingDBClientRequestPacket#()" - ] - }, - "cn.nukkit.network.protocol.PositionTrackingDBServerBroadcastPacket": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.PositionTrackingDBServerBroadcastPacket#()" - ] - }, - "cn.nukkit.network.protocol.TickSyncPacket": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.network.protocol.TickSyncPacket#()" - ] - }, - "cn.nukkit.plugin.PowerNukkitPlugin": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.plugin.PowerNukkitPlugin#()" - ] - }, - "cn.nukkit.positiontracking.NamedPosition": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.positiontracking.NamedPosition#matchesNamedPosition(NamedPosition)" - ] - }, - "cn.nukkit.potion.Potion": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.potion.Potion#SLOWNESS_IV" - ] - }, - "cn.nukkit.utils.Hash": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.Hash#hashBlock(Vector3)" - ] - }, - "cn.nukkit.utils.HumanStringComparator": { - "addPowerNukkitOnlyAnnotation": [ - "cn.nukkit.utils.HumanStringComparator#()" - ] - } -} \ No newline at end of file +{} \ No newline at end of file diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 7a68ffe29fb..4858d490554 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -1958,7 +1958,6 @@ public void addLightUpdate(int x, int y, int z) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") - @PowerNukkitOnly @Override public synchronized void setBlockFullIdAt(int x, int y, int z, int fullId) { setBlockFullIdAt(x, y, z, 0, fullId); @@ -1966,6 +1965,7 @@ public synchronized void setBlockFullIdAt(int x, int y, int z, int fullId) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public synchronized void setBlockFullIdAt(int x, int y, int z, int layer, int fullId) { setBlock(x, y, z, layer, Block.fullList[fullId], false, false); @@ -2737,11 +2737,11 @@ public Map getLoaders() { return loaders; } - @PowerNukkitOnly public BlockEntity getBlockEntity(Vector3 pos) { return getBlockEntity(pos.asBlockVector3()); } + @PowerNukkitOnly public BlockEntity getBlockEntity(BlockVector3 pos) { FullChunk chunk = this.getChunk(pos.x >> 4, pos.z >> 4, false); @@ -2793,12 +2793,12 @@ public synchronized int getBlockIdAt(int x, int y, int z, int layer) { return this.getChunk(x >> 4, z >> 4, true).getBlockId(x & 0x0f, y & 0xff, z & 0x0f, layer); } - @PowerNukkitOnly @Override public void setBlockIdAt(int x, int y, int z, int id) { setBlockIdAt(x, y, z, 0, id); } + @PowerNukkitOnly @Override public synchronized void setBlockIdAt(int x, int y, int z, int layer, int id) { this.getChunk(x >> 4, z >> 4, true).setBlockId(x & 0x0f, y & 0xff, z & 0x0f, layer, id & 0xfff); @@ -2865,7 +2865,6 @@ public synchronized int getBlockDataAt(int x, int y, int z, int layer) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") - @PowerNukkitOnly @Override public void setBlockDataAt(int x, int y, int z, int data) { setBlockDataAt(x, y, z, 0, data); @@ -2873,6 +2872,7 @@ public void setBlockDataAt(int x, int y, int z, int data) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public synchronized void setBlockDataAt(int x, int y, int z, int layer, int data) { this.getChunk(x >> 4, z >> 4, true).setBlockData(x & 0x0f, y & 0xff, z & 0x0f, layer, data); diff --git a/src/main/java/cn/nukkit/level/Location.java b/src/main/java/cn/nukkit/level/Location.java index badc4dde490..7bc34f3090b 100644 --- a/src/main/java/cn/nukkit/level/Location.java +++ b/src/main/java/cn/nukkit/level/Location.java @@ -1,5 +1,6 @@ package cn.nukkit.level; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.math.Vector3; import cn.nukkit.utils.LevelException; @@ -92,11 +93,13 @@ public double getHeadYaw() { return this.headYaw; } + @PowerNukkitOnly public Location setYaw(double yaw) { this.yaw = yaw; return this; } + @PowerNukkitOnly public Location setPitch(double pitch) { this.pitch = pitch; return this; diff --git a/src/main/java/cn/nukkit/level/Position.java b/src/main/java/cn/nukkit/level/Position.java index 43018cb6e12..e87b8730b3b 100644 --- a/src/main/java/cn/nukkit/level/Position.java +++ b/src/main/java/cn/nukkit/level/Position.java @@ -138,6 +138,7 @@ public Block getLevelBlock() { return getValidLevel().getBlock(this); } + @PowerNukkitOnly public Block getLevelBlockAtLayer(int layer) { return getValidLevel().getBlock(this, layer); } diff --git a/src/main/java/cn/nukkit/level/biome/impl/beach/ColdBeachBiome.java b/src/main/java/cn/nukkit/level/biome/impl/beach/ColdBeachBiome.java index d27432679e2..ebe993d6755 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/beach/ColdBeachBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/beach/ColdBeachBiome.java @@ -1,5 +1,6 @@ package cn.nukkit.level.biome.impl.beach; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.level.biome.type.SandyBiome; import cn.nukkit.level.generator.populator.impl.WaterIcePopulator; @@ -14,6 +15,7 @@ public ColdBeachBiome() { } @Since("1.4.0.0-PN") + @PowerNukkitOnly @Override public int getCoverBlock() { if (useNewRakNetCover()) { diff --git a/src/main/java/cn/nukkit/level/biome/impl/extremehills/StoneBeachBiome.java b/src/main/java/cn/nukkit/level/biome/impl/extremehills/StoneBeachBiome.java index 4d0bee1094f..796d75cf0bd 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/extremehills/StoneBeachBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/extremehills/StoneBeachBiome.java @@ -1,5 +1,6 @@ package cn.nukkit.level.biome.impl.extremehills; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.level.biome.type.CoveredBiome; @@ -16,6 +17,7 @@ public StoneBeachBiome() { this.setHeightVariation(0.8f); } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getSurfaceDepth(int y) { @@ -25,6 +27,7 @@ public int getSurfaceDepth(int y) { return 0; } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getSurfaceBlock(int y) { @@ -34,6 +37,7 @@ public int getSurfaceBlock(int y) { return 0; } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getGroundDepth(int y) { @@ -43,6 +47,7 @@ public int getGroundDepth(int y) { return 0; } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getGroundBlock(int y) { diff --git a/src/main/java/cn/nukkit/level/biome/impl/iceplains/IcePlainsSpikesBiome.java b/src/main/java/cn/nukkit/level/biome/impl/iceplains/IcePlainsSpikesBiome.java index 2c32591dbd7..d52518517ab 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/iceplains/IcePlainsSpikesBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/iceplains/IcePlainsSpikesBiome.java @@ -1,5 +1,6 @@ package cn.nukkit.level.biome.impl.iceplains; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.level.ChunkManager; import cn.nukkit.level.format.FullChunk; @@ -18,6 +19,7 @@ public IcePlainsSpikesBiome() { this.addPopulator(iceSpikes); } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getSurfaceBlock(int y) { diff --git a/src/main/java/cn/nukkit/level/biome/impl/mesa/MesaPlateauFBiome.java b/src/main/java/cn/nukkit/level/biome/impl/mesa/MesaPlateauFBiome.java index ba6aa9c9162..ddaa0926918 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/mesa/MesaPlateauFBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/mesa/MesaPlateauFBiome.java @@ -1,5 +1,6 @@ package cn.nukkit.level.biome.impl.mesa; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.block.BlockSapling; import cn.nukkit.level.generator.populator.impl.PopulatorTree; @@ -18,6 +19,7 @@ public MesaPlateauFBiome() { } @Since("1.4.0.0-PN") + @PowerNukkitOnly @Override public int getCoverBlock() { if (useNewRakNetCover()) { diff --git a/src/main/java/cn/nukkit/level/biome/impl/mushroom/MushroomIslandBiome.java b/src/main/java/cn/nukkit/level/biome/impl/mushroom/MushroomIslandBiome.java index cf6f0944bb1..62bb35f141b 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/mushroom/MushroomIslandBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/mushroom/MushroomIslandBiome.java @@ -1,5 +1,6 @@ package cn.nukkit.level.biome.impl.mushroom; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.level.biome.type.GrassyBiome; @@ -20,6 +21,7 @@ public String getName() { return "Mushroom Island"; } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getSurfaceBlock(int y) { diff --git a/src/main/java/cn/nukkit/level/biome/impl/taiga/ColdTaigaBiome.java b/src/main/java/cn/nukkit/level/biome/impl/taiga/ColdTaigaBiome.java index 3cccabd3fc0..259f96639ff 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/taiga/ColdTaigaBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/taiga/ColdTaigaBiome.java @@ -1,5 +1,6 @@ package cn.nukkit.level.biome.impl.taiga; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.level.generator.populator.impl.WaterIcePopulator; @@ -23,6 +24,7 @@ public String getName() { } @Since("1.4.0.0-PN") + @PowerNukkitOnly @Override public int getCoverBlock() { if (useNewRakNetCover()) { diff --git a/src/main/java/cn/nukkit/level/biome/type/CoveredBiome.java b/src/main/java/cn/nukkit/level/biome/type/CoveredBiome.java index a610be8a986..0f20bc29b15 100644 --- a/src/main/java/cn/nukkit/level/biome/type/CoveredBiome.java +++ b/src/main/java/cn/nukkit/level/biome/type/CoveredBiome.java @@ -42,6 +42,7 @@ public abstract class CoveredBiome extends Biome { @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Exposed lock object and removed from new-raknet and not used by PowerNukkit") @Since("1.4.0.0-PN") + @PowerNukkitOnly public final Object synchronizeCover = new Object(); /** @@ -61,6 +62,7 @@ public int getCoverId(int x, int z) { * * @implNote Removed from new-raknet branch */ + @PowerNukkitOnly @Since("1.4.0.0-PN") public int getCoverBlock() { if (useNewRakNetCover()) { @@ -105,6 +107,7 @@ public int getSurfaceDepth(int x, int y, int z) { * * @implNote Removed from new-raknet branch */ + @PowerNukkitOnly @Since("1.4.0.0-PN") public int getSurfaceDepth(int y) { if (useNewRakNetSurfaceDepth()) { @@ -127,6 +130,7 @@ public int getSurfaceId(int x, int y, int z) { * * @implNote Removed from new-raknet branch */ + @PowerNukkitOnly @Since("1.4.0.0-PN") public int getSurfaceBlock(int y) { if (useNewRakNetSurface()) { @@ -145,6 +149,7 @@ public int getSurfaceBlock(int y) { * * @implNote Removed from new-raknet branch */ + @PowerNukkitOnly @Since("1.4.0.0-PN") public int getSurfaceMeta(int y) { if (useNewRakNetSurface()) { @@ -182,6 +187,7 @@ public int getGroundDepth(int x, int y, int z) { * * @implNote Removed from new-raknet branch */ + @PowerNukkitOnly @Since("1.4.0.0-PN") public int getGroundDepth(int y) { if (useNewRakNetGroundDepth()) { @@ -221,6 +227,7 @@ public int getGroundBlock(int y) { * * @implNote Removed from new-raknet branch */ + @PowerNukkitOnly @Since("1.4.0.0-PN") public int getGroundMeta(int y) { if (useNewRakNetGround()) { @@ -250,6 +257,7 @@ public BlockState getGroundState(int x, int y, int z) { * * @implNote Removed from new-raknet branch */ + @PowerNukkitOnly @Since("1.4.0.0-PN") public int getStoneBlock() { return STONE; @@ -266,6 +274,7 @@ public int getStoneBlock() { * * @implNote Removed from new-raknet branch */ + @PowerNukkitOnly @Since("1.4.0.0-PN") public void preCover(int x, int z) { diff --git a/src/main/java/cn/nukkit/level/biome/type/GrassyBiome.java b/src/main/java/cn/nukkit/level/biome/type/GrassyBiome.java index 209f874c864..c884a16b27c 100644 --- a/src/main/java/cn/nukkit/level/biome/type/GrassyBiome.java +++ b/src/main/java/cn/nukkit/level/biome/type/GrassyBiome.java @@ -1,5 +1,6 @@ package cn.nukkit.level.biome.type; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.block.BlockDoublePlant; import cn.nukkit.level.generator.populator.impl.PopulatorDoublePlant; @@ -19,6 +20,7 @@ public GrassyBiome() { this.addPopulator(tallGrass); } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getSurfaceBlock(int y) { @@ -28,6 +30,7 @@ public int getSurfaceBlock(int y) { return GRASS; } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getGroundBlock(int y) { diff --git a/src/main/java/cn/nukkit/level/biome/type/SandyBiome.java b/src/main/java/cn/nukkit/level/biome/type/SandyBiome.java index 94e4f744003..46e029d9c69 100644 --- a/src/main/java/cn/nukkit/level/biome/type/SandyBiome.java +++ b/src/main/java/cn/nukkit/level/biome/type/SandyBiome.java @@ -1,11 +1,13 @@ package cn.nukkit.level.biome.type; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; /** * @author MagicDroidX (Nukkit Project) */ public abstract class SandyBiome extends CoveredBiome { + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getSurfaceDepth(int y) { @@ -15,6 +17,7 @@ public int getSurfaceDepth(int y) { return 3; } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getSurfaceBlock(int y) { @@ -24,6 +27,7 @@ public int getSurfaceBlock(int y) { return SAND; } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getGroundDepth(int y) { @@ -33,6 +37,7 @@ public int getGroundDepth(int y) { return 2; } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getGroundBlock(int y) { diff --git a/src/main/java/cn/nukkit/level/biome/type/SnowyBiome.java b/src/main/java/cn/nukkit/level/biome/type/SnowyBiome.java index c64d3fc50ad..e431e6f12c9 100644 --- a/src/main/java/cn/nukkit/level/biome/type/SnowyBiome.java +++ b/src/main/java/cn/nukkit/level/biome/type/SnowyBiome.java @@ -1,5 +1,6 @@ package cn.nukkit.level.biome.type; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.level.generator.populator.impl.WaterIcePopulator; @@ -15,6 +16,7 @@ public SnowyBiome() { } @Since("1.4.0.0-PN") + @PowerNukkitOnly @Override public int getCoverBlock() { if (useNewRakNetCover()) { diff --git a/src/main/java/cn/nukkit/level/biome/type/WateryBiome.java b/src/main/java/cn/nukkit/level/biome/type/WateryBiome.java index b530388f873..41d34c9319f 100644 --- a/src/main/java/cn/nukkit/level/biome/type/WateryBiome.java +++ b/src/main/java/cn/nukkit/level/biome/type/WateryBiome.java @@ -7,6 +7,7 @@ * @author DaPorkchop_ (Nukkit Project) */ public abstract class WateryBiome extends CoveredBiome { + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getSurfaceDepth(int y) { @@ -16,6 +17,7 @@ public int getSurfaceDepth(int y) { return 0; } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getSurfaceBlock(int y) { @@ -26,6 +28,7 @@ public int getSurfaceBlock(int y) { return 0; } + @PowerNukkitOnly @Since("1.4.0.0-PN") @Override public int getGroundDepth(int y) { diff --git a/src/main/java/cn/nukkit/level/format/ChunkSection.java b/src/main/java/cn/nukkit/level/format/ChunkSection.java index fbfa6764a37..d3557770193 100644 --- a/src/main/java/cn/nukkit/level/format/ChunkSection.java +++ b/src/main/java/cn/nukkit/level/format/ChunkSection.java @@ -100,6 +100,7 @@ default BlockState getAndSetBlockState(int x, int y, int z, BlockState state) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.3.0.0-PN", replaceWith = "setBlockStateAtLayer(int x, int y, int z, int layer, BlockState state)") + @PowerNukkitOnly boolean setFullBlockId(int x, int y, int z, int layer, int fullId); @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/level/format/FullChunk.java b/src/main/java/cn/nukkit/level/format/FullChunk.java index a6a29a7fc3b..f832c17ca8e 100644 --- a/src/main/java/cn/nukkit/level/format/FullChunk.java +++ b/src/main/java/cn/nukkit/level/format/FullChunk.java @@ -172,6 +172,7 @@ default boolean setBlockState(int x, int y, int z, BlockState state) { void recalculateHeightMap(); + @PowerNukkitOnly int recalculateHeightMapColumn(int chunkX, int chunkZ); void populateSkyLight(); diff --git a/src/main/java/cn/nukkit/level/format/LevelProvider.java b/src/main/java/cn/nukkit/level/format/LevelProvider.java index e56693aee39..208d058218b 100644 --- a/src/main/java/cn/nukkit/level/format/LevelProvider.java +++ b/src/main/java/cn/nukkit/level/format/LevelProvider.java @@ -1,5 +1,6 @@ package cn.nukkit.level.format; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.level.GameRules; import cn.nukkit.level.Level; import cn.nukkit.level.format.generic.BaseFullChunk; @@ -112,7 +113,8 @@ default void doGarbageCollection(long time) { GameRules getGamerules(); void setGameRules(GameRules rules); - + + @PowerNukkitOnly default int getMaximumLayer() { return 0; } diff --git a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java index e158aa8598b..4d848ae1ab0 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java +++ b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java @@ -1,6 +1,7 @@ package cn.nukkit.level.format.anvil; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.blockentity.BlockEntity; import cn.nukkit.blockentity.BlockEntitySpawnable; import cn.nukkit.level.Level; @@ -272,7 +273,8 @@ protected synchronized BaseRegionLoader loadRegion(int x, int z) { return region; } } - + + @PowerNukkitOnly @Override public int getMaximumLayer() { return 1; diff --git a/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java b/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java index 1ba07212e71..9265615c368 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java +++ b/src/main/java/cn/nukkit/level/format/anvil/ChunkSection.java @@ -40,7 +40,10 @@ @ParametersAreNonnullByDefault public class ChunkSection implements cn.nukkit.level.format.ChunkSection { + @PowerNukkitOnly public static final int STREAM_STORAGE_VERSION = 8; + + @PowerNukkitOnly public static final int SAVE_STORAGE_VERSION = 7; private static final String STORAGE_TAG_NAME = "Storage"; @@ -238,6 +241,7 @@ public int getBlockId(int x, int y, int z) { return getBlockId(x, y, z, 0); } + @PowerNukkitOnly @Override public int getBlockId(int x, int y, int z, int layer) { return layerStorage.getStorageOrEmpty(layer).getBlockId(x, y, z); @@ -248,6 +252,7 @@ public void setBlockId(int x, int y, int z, int id) { setBlockId(x, y, z, 0, id); } + @PowerNukkitOnly @Override public synchronized void setBlockId(int x, int y, int z, int layer, int id) { if (id != 0) { @@ -274,6 +279,7 @@ public boolean setFullBlockId(int x, int y, int z, int fullId) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public synchronized boolean setFullBlockId(int x, int y, int z, int layer, int fullId) { if (fullId != 0) { @@ -296,6 +302,7 @@ public int getBlockData(int x, int y, int z) { @Deprecated @DeprecationDetails(reason = "The data is limited to 32 bits", replaceWith = "getBlockState", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public int getBlockData(int x, int y, int z, int layer) { return layerStorage.getStorageOrEmpty(layer).getBlockData(x, y, z); @@ -310,6 +317,7 @@ public void setBlockData(int x, int y, int z, int data) { @Deprecated @DeprecationDetails(reason = "The data is limited to 32 bits", replaceWith = "getBlockState", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public synchronized void setBlockData(int x, int y, int z, int layer, int data) { if (data != 0) { @@ -329,12 +337,14 @@ public int getFullBlock(int x, int y, int z) { return getFullBlock(x, y, z, 0); } + @PowerNukkitOnly @Nonnull @Override public BlockState getBlockState(int x, int y, int z, int layer) { return layerStorage.getStorageOrEmpty(layer).getBlockState(x, y, z); } + @PowerNukkitOnly @Deprecated @DeprecationDetails(reason = "The data is limited to 32 bits", replaceWith = "getBlockState", since = "1.4.0.0-PN") @Override @@ -347,6 +357,7 @@ public boolean setBlock(int x, int y, int z, int blockId) { return setBlockStateAtLayer(x, y, z, 0, BlockState.of(blockId)); } + @PowerNukkitOnly @Override public boolean setBlockAtLayer(int x, int y, int z, int layer, int blockId) { return setBlockStateAtLayer(x, y, z, layer, BlockState.of(blockId)); @@ -358,6 +369,7 @@ public Block getAndSetBlock(int x, int y, int z, Block block) { return getAndSetBlock(x, y, z, 0, block); } + @PowerNukkitOnly @Nonnull @Override public synchronized Block getAndSetBlock(int x, int y, int z, int layer, Block block) { @@ -403,17 +415,20 @@ public boolean setBlock(int x, int y, int z, int blockId, int meta) { @Deprecated @DeprecationDetails(reason = "The data is limited to 32 bits", replaceWith = "getBlockState", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public boolean setBlockAtLayer(int x, int y, int z, int layer, int blockId, int meta) { return setBlockStateAtLayer(x, y, z, layer, BlockState.of(blockId, meta)); } + @PowerNukkitOnly @Override public synchronized boolean setBlockStateAtLayer(int x, int y, int z, int layer, BlockState state) { BlockState previous = getAndSetBlockState(x, y, z, layer, state); return !state.equals(previous); } + @PowerNukkitOnly @Override public int getBlockChangeStateAbove(int x, int y, int z) { BlockStorage storage = layerStorage.getStorageOrNull(0); @@ -660,6 +675,7 @@ private byte[] allocateBlob(List hugeList, int pos) { return blob; } + @PowerNukkitOnly @Nonnull @Override public synchronized CompoundTag toNBT() { @@ -821,7 +837,8 @@ public ChunkSection copy() { this.hasSkyLight ); } - + + @PowerNukkitOnly @Override public int getMaximumLayer() { return 1; @@ -841,6 +858,7 @@ public void setContentVersion(int contentVersion) { this.contentVersion = contentVersion; } + @PowerNukkitOnly @Override public boolean hasBlocks() { return layerStorage.hasBlocks(); diff --git a/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java b/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java index 68d74ead052..ec3165e6b42 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java +++ b/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java @@ -50,7 +50,7 @@ public class BlockStorage { private static final int BLOCK_ID_EXTRA_MASK = 0xFF00; private static final int BLOCK_ID_FULL = BLOCK_ID_MASK | BLOCK_ID_EXTRA_MASK; - public static final int SECTION_SIZE = 4096; + public @PowerNukkitOnly static final int SECTION_SIZE = 4096; private static final BlockState[] EMPTY = new BlockState[SECTION_SIZE]; static { @@ -465,14 +465,17 @@ private void setFlag(byte flag, boolean value) { } } + @PowerNukkitOnly public boolean hasBlockIds() { return getFlag(FLAG_HAS_ID); } + @PowerNukkitOnly public boolean hasBlockIdExtras() { return getFlag(FLAG_HAS_ID_EXTRA); } + @PowerNukkitOnly public boolean hasBlockDataExtras() { return getFlag(FLAG_HAS_DATA_EXTRA); } diff --git a/src/main/java/cn/nukkit/level/format/anvil/util/ImmutableBlockStorage.java b/src/main/java/cn/nukkit/level/format/anvil/util/ImmutableBlockStorage.java index b0d5a341664..c37cab3b82c 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/util/ImmutableBlockStorage.java +++ b/src/main/java/cn/nukkit/level/format/anvil/util/ImmutableBlockStorage.java @@ -49,6 +49,7 @@ public final class ImmutableBlockStorage extends BlockStorage { super(states.clone(), flags, palette.copy(), denyStates != null? (BitSet)denyStates.clone() : null); } + @PowerNukkitOnly @Override protected BlockState setBlockState(int index, @Nonnull BlockState state) { throw new UnsupportedOperationException("This BlockStorage is immutable"); diff --git a/src/main/java/cn/nukkit/level/format/generic/BaseChunk.java b/src/main/java/cn/nukkit/level/format/generic/BaseChunk.java index 6090eb85fc4..41b6a29bfcd 100644 --- a/src/main/java/cn/nukkit/level/format/generic/BaseChunk.java +++ b/src/main/java/cn/nukkit/level/format/generic/BaseChunk.java @@ -270,6 +270,7 @@ public int getBlockData(int x, int y, int z) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") @Override + @PowerNukkitOnly public int getBlockData(int x, int y, int z, int layer) { return this.sections[y >> 4].getBlockData(x, y & 0x0f, z, layer); } @@ -283,6 +284,7 @@ public void setBlockData(int x, int y, int z, int data) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public void setBlockData(int x, int y, int z, int layer, int data) { int sectionY = y >> 4; @@ -397,11 +399,13 @@ public boolean setBlockStateAt(int x, int y, int z, int layer, BlockState state) return setBlockStateAtLayer(x & 0xF, y, z & 0XF, layer, state); } + @PowerNukkitOnly @Override public BlockState getBlockStateAt(int x, int y, int z, int layer) { return getBlockState(x & 0xF, y, z & 0xF, layer); } + @PowerNukkitOnly @Override public boolean isBlockChangeAllowed(int x, int y, int z) { for (ChunkSection section: sections) { @@ -435,6 +439,7 @@ public boolean isBlockChangeAllowed(int x, int y, int z) { } @Nonnull + @PowerNukkitOnly @Override public List findBorders(int x, int z) { List borders = null; @@ -454,6 +459,7 @@ public List findBorders(int x, int z) { return borders != null? borders : Collections.emptyList(); } + @PowerNukkitOnly @Override public boolean isBlockedByBorder(int x, int z) { for (ChunkSection section : sections) { diff --git a/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java b/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java index 5af8baeb7d8..b974e228d7d 100644 --- a/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java +++ b/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java @@ -2,7 +2,6 @@ import cn.nukkit.Player; import cn.nukkit.api.DeprecationDetails; -import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.block.Block; @@ -264,6 +263,7 @@ public void recalculateHeightMap() { } } + @PowerNukkitOnly @Override public int recalculateHeightMapColumn(int x, int z) { int max = getHighestBlockAt(x, z, false); @@ -574,6 +574,7 @@ public int getBlockIdAt(int x, int y, int z) { return getBlockIdAt(x, y, z, 0); } + @PowerNukkitOnly @Override public int getBlockIdAt(int x, int y, int z, int layer) { if (x >> 4 == getX() && z >> 4 == getZ()) { @@ -591,6 +592,7 @@ public void setBlockFullIdAt(int x, int y, int z, int fullId) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public void setBlockFullIdAt(int x, int y, int z, int layer, int fullId) { if (x >> 4 == getX() && z >> 4 == getZ()) { @@ -598,6 +600,7 @@ public void setBlockFullIdAt(int x, int y, int z, int layer, int fullId) { } } + @PowerNukkitOnly @Override public boolean setBlockAtLayer(int x, int y, int z, int layer, int blockId) { return setBlockStateAtLayer(x, y, z, layer, BlockState.of(blockId)); @@ -605,6 +608,7 @@ public boolean setBlockAtLayer(int x, int y, int z, int layer, int blockId) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public boolean setBlockAtLayer(int x, int y, int z, int layer, int blockId, int meta) { return setBlockStateAtLayer(x, y, z, layer, BlockState.of(blockId, meta)); @@ -615,6 +619,7 @@ public void setBlockIdAt(int x, int y, int z, int id) { setBlockIdAt(x, y, z, 0, id); } + @PowerNukkitOnly @Override public void setBlockIdAt(int x, int y, int z, int layer, int id) { if (x >> 4 == getX() && z >> 4 == getZ()) { @@ -641,7 +646,7 @@ public int getBlockDataAt(int x, int y, int z) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") @Override - @PowerNukkitDifference(info = "Was returning the block id instead of the data", since = "1.4.0.0-PN") + @PowerNukkitOnly public int getBlockDataAt(int x, int y, int z, int layer) { if (x >> 4 == getX() && z >> 4 == getZ()) { return getBlockData(x & 15, y, z & 15, layer); @@ -658,6 +663,7 @@ public void setBlockDataAt(int x, int y, int z, int data) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public void setBlockDataAt(int x, int y, int z, int layer, int data) { if (x >> 4 == getX() && z >> 4 == getZ()) { diff --git a/src/main/java/cn/nukkit/level/format/generic/EmptyChunkSection.java b/src/main/java/cn/nukkit/level/format/generic/EmptyChunkSection.java index dbe5db1360a..4be9320b818 100644 --- a/src/main/java/cn/nukkit/level/format/generic/EmptyChunkSection.java +++ b/src/main/java/cn/nukkit/level/format/generic/EmptyChunkSection.java @@ -68,6 +68,7 @@ public final int getBlockId(int x, int y, int z) { return 0; } + @PowerNukkitOnly @Override public int getBlockId(int x, int y, int z, int layer) { return 0; @@ -78,18 +79,21 @@ public int getFullBlock(int x, int y, int z) { return 0; } + @PowerNukkitOnly @Nonnull @Override public BlockState getBlockState(int x, int y, int z, int layer) { return BlockState.AIR; } + @PowerNukkitOnly @Override public boolean setBlockAtLayer(int x, int y, int z, int layer, int blockId) { if (blockId != 0) throw new ChunkException(MODIFICATION_ERROR_MESSAGE); return false; } + @PowerNukkitOnly @Nonnull @Override public Block getAndSetBlock(int x, int y, int z, int layer, Block block) { @@ -113,6 +117,7 @@ public BlockState getAndSetBlockState(int x, int y, int z, int layer, BlockState return BlockState.AIR; } + @PowerNukkitOnly @Override public void setBlockId(int x, int y, int z, int layer, int id) { if (id != 0) throw new ChunkException(MODIFICATION_ERROR_MESSAGE); @@ -134,12 +139,14 @@ public boolean setBlock(int x, int y, int z, int blockId, int meta) { @Deprecated @DeprecationDetails(reason = "The data is limited to 32 bits", replaceWith = "getBlockState", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public boolean setBlockAtLayer(int x, int y, int z, int layer, int blockId, int meta) { if (blockId != 0) throw new ChunkException(MODIFICATION_ERROR_MESSAGE); return false; } + @PowerNukkitOnly @Override public boolean setBlockStateAtLayer(int x, int y, int z, int layer, BlockState state) { if (!state.equals(BlockState.AIR)) throw new ChunkException(MODIFICATION_ERROR_MESSAGE); @@ -170,6 +177,7 @@ public final int getBlockData(int x, int y, int z) { @Deprecated @DeprecationDetails(reason = "The data is limited to 32 bits", replaceWith = "getBlockState", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public int getBlockData(int x, int y, int z, int layer) { return 0; @@ -184,6 +192,7 @@ public void setBlockData(int x, int y, int z, int data) { @Deprecated @DeprecationDetails(reason = "The data is limited to 32 bits", replaceWith = "getBlockState", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public void setBlockData(int x, int y, int z, int layer, int data) { if (data != 0) throw new ChunkException(MODIFICATION_ERROR_MESSAGE); @@ -199,12 +208,14 @@ public boolean setFullBlockId(int x, int y, int z, int fullId) { @Deprecated @DeprecationDetails(reason = "The data is limited to 32 bits", replaceWith = "getBlockState", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public boolean setFullBlockId(int x, int y, int z, int layer, int fullId) { if (fullId != 0) throw new ChunkException(MODIFICATION_ERROR_MESSAGE); return false; } + @PowerNukkitOnly @Deprecated @DeprecationDetails(reason = "The data is limited to 32 bits", replaceWith = "getBlockState", since = "1.4.0.0-PN") @Override @@ -241,12 +252,14 @@ public boolean isEmpty() { public void writeTo(@Nonnull BinaryStream stream) { stream.put(EMPTY_CHUNK_DATA); } - + + @PowerNukkitOnly @Override public int getMaximumLayer() { return 0; } - + + @PowerNukkitOnly @Nonnull @Override public CompoundTag toNBT() { @@ -275,6 +288,7 @@ public void setContentVersion(int contentVersion) { } } + @PowerNukkitOnly @Override public int getBlockChangeStateAbove(int x, int y, int z) { return 0; diff --git a/src/main/java/cn/nukkit/level/format/updater/BeehiveUpdater.java b/src/main/java/cn/nukkit/level/format/updater/BeehiveUpdater.java index 2170cc728e2..98bd7f151bb 100644 --- a/src/main/java/cn/nukkit/level/format/updater/BeehiveUpdater.java +++ b/src/main/java/cn/nukkit/level/format/updater/BeehiveUpdater.java @@ -20,6 +20,7 @@ public BeehiveUpdater(ChunkSection section, boolean updateDirection) { this.updateDirection = updateDirection; } + @PowerNukkitOnly @Override public boolean update(int offsetX, int offsetY, int offsetZ, int x, int y, int z, BlockState state) { int blockId = state.getBlockId(); diff --git a/src/main/java/cn/nukkit/level/format/updater/DoorUpdater.java b/src/main/java/cn/nukkit/level/format/updater/DoorUpdater.java index e2071b51114..79350774a92 100644 --- a/src/main/java/cn/nukkit/level/format/updater/DoorUpdater.java +++ b/src/main/java/cn/nukkit/level/format/updater/DoorUpdater.java @@ -29,6 +29,7 @@ public DoorUpdater(Chunk chunk, ChunkSection section) { this.section = section; } + @PowerNukkitOnly @Override public boolean update(int offsetX, int offsetY, int offsetZ, int x, int y, int z, BlockState state) { switch (state.getBlockId()) { diff --git a/src/main/java/cn/nukkit/level/format/updater/FrameUpdater.java b/src/main/java/cn/nukkit/level/format/updater/FrameUpdater.java index cee52a3963e..87885b4634c 100644 --- a/src/main/java/cn/nukkit/level/format/updater/FrameUpdater.java +++ b/src/main/java/cn/nukkit/level/format/updater/FrameUpdater.java @@ -21,6 +21,7 @@ public FrameUpdater(ChunkSection section) { this.section = section; } + @PowerNukkitOnly @Override public boolean update(int offsetX, int offsetY, int offsetZ, int x, int y, int z, BlockState state) { if (state.getBlockId() != BlockID.ITEM_FRAME_BLOCK) { diff --git a/src/main/java/cn/nukkit/level/format/updater/GroupedUpdaters.java b/src/main/java/cn/nukkit/level/format/updater/GroupedUpdaters.java index ac4fe8af576..33d22220764 100644 --- a/src/main/java/cn/nukkit/level/format/updater/GroupedUpdaters.java +++ b/src/main/java/cn/nukkit/level/format/updater/GroupedUpdaters.java @@ -15,6 +15,7 @@ public GroupedUpdaters(Updater... updaters) { this.updaters = updaters; } + @PowerNukkitOnly @Override public boolean update(int offsetX, int offsetY, int offsetZ, int x, int y, int z, BlockState state) { for (Updater updater : updaters) { diff --git a/src/main/java/cn/nukkit/level/format/updater/MesaBiomeUpdater.java b/src/main/java/cn/nukkit/level/format/updater/MesaBiomeUpdater.java index 6c2ffa30b79..87ce0c4a2f6 100644 --- a/src/main/java/cn/nukkit/level/format/updater/MesaBiomeUpdater.java +++ b/src/main/java/cn/nukkit/level/format/updater/MesaBiomeUpdater.java @@ -17,6 +17,7 @@ public MesaBiomeUpdater(ChunkSection section) { this.section = section; } + @PowerNukkitOnly @SuppressWarnings("deprecation") @Override public boolean update(int offsetX, int offsetY, int offsetZ, int x, int y, int z, BlockState state) { diff --git a/src/main/java/cn/nukkit/level/format/updater/NewLeafUpdater.java b/src/main/java/cn/nukkit/level/format/updater/NewLeafUpdater.java index 7f83e19c1ba..73e70056c03 100644 --- a/src/main/java/cn/nukkit/level/format/updater/NewLeafUpdater.java +++ b/src/main/java/cn/nukkit/level/format/updater/NewLeafUpdater.java @@ -18,6 +18,7 @@ public NewLeafUpdater(ChunkSection section) { this.section = section; } + @PowerNukkitOnly @Override public boolean update(int offsetX, int offsetY, int offsetZ, int x, int y, int z, BlockState state) { if (state.getBlockId() == BlockID.LEAVES2) { diff --git a/src/main/java/cn/nukkit/level/format/updater/OldWoodBarkUpdater.java b/src/main/java/cn/nukkit/level/format/updater/OldWoodBarkUpdater.java index ecf030f1dcf..ec851fbfeab 100644 --- a/src/main/java/cn/nukkit/level/format/updater/OldWoodBarkUpdater.java +++ b/src/main/java/cn/nukkit/level/format/updater/OldWoodBarkUpdater.java @@ -21,6 +21,7 @@ public OldWoodBarkUpdater(ChunkSection section, int fromLog, int increment) { this.increment = increment; } + @PowerNukkitOnly @Override public boolean update(int offsetX, int offsetY, int offsetZ, int x, int y, int z, BlockState state) { if (state.getBlockId() != fromLog) { diff --git a/src/main/java/cn/nukkit/level/format/updater/SnowLayerUpdater.java b/src/main/java/cn/nukkit/level/format/updater/SnowLayerUpdater.java index 2f57693789e..b27a4b20316 100644 --- a/src/main/java/cn/nukkit/level/format/updater/SnowLayerUpdater.java +++ b/src/main/java/cn/nukkit/level/format/updater/SnowLayerUpdater.java @@ -21,6 +21,7 @@ public SnowLayerUpdater(Level level, ChunkSection section) { this.section = section; } + @PowerNukkitOnly @Override public boolean update(int offsetX, int offsetY, int offsetZ, int x, int y, int z, BlockState state) { if (state.getBlockId() != BlockID.SNOW_LAYER) { diff --git a/src/main/java/cn/nukkit/level/format/updater/StemStrippedUpdater.java b/src/main/java/cn/nukkit/level/format/updater/StemStrippedUpdater.java index a94ab8741ae..40ad3e986f1 100644 --- a/src/main/java/cn/nukkit/level/format/updater/StemStrippedUpdater.java +++ b/src/main/java/cn/nukkit/level/format/updater/StemStrippedUpdater.java @@ -25,6 +25,7 @@ public StemStrippedUpdater(ChunkSection section) { this.section = section; } + @PowerNukkitOnly @Override public boolean update(int offsetX, int offsetY, int offsetZ, int x, int y, int z, BlockState state) { switch (state.getBlockId()) { diff --git a/src/main/java/cn/nukkit/level/format/updater/StemUpdater.java b/src/main/java/cn/nukkit/level/format/updater/StemUpdater.java index ed12755b1a7..368bce4016b 100644 --- a/src/main/java/cn/nukkit/level/format/updater/StemUpdater.java +++ b/src/main/java/cn/nukkit/level/format/updater/StemUpdater.java @@ -26,6 +26,7 @@ public StemUpdater(Level level, ChunkSection section, int stemId, int productId) this.productId = productId; } + @PowerNukkitOnly @Override public boolean update(int offsetX, int offsetY, int offsetZ, int x, int y, int z, BlockState state) { if (state.getBlockId() != stemId) { diff --git a/src/main/java/cn/nukkit/level/format/updater/WallUpdater.java b/src/main/java/cn/nukkit/level/format/updater/WallUpdater.java index 01882ad9c63..543d3cdc8a2 100644 --- a/src/main/java/cn/nukkit/level/format/updater/WallUpdater.java +++ b/src/main/java/cn/nukkit/level/format/updater/WallUpdater.java @@ -27,6 +27,7 @@ public WallUpdater(Level level, ChunkSection section) { this.section = section; } + @PowerNukkitOnly @Override public boolean update(int offsetX, int offsetY, int offsetZ, int x, int y, int z, BlockState state) { if (state.getBlockId() != BlockID.COBBLE_WALL) { diff --git a/src/main/java/cn/nukkit/level/generator/SimpleChunkManager.java b/src/main/java/cn/nukkit/level/generator/SimpleChunkManager.java index 597dab73cea..75f3fc60e1f 100644 --- a/src/main/java/cn/nukkit/level/generator/SimpleChunkManager.java +++ b/src/main/java/cn/nukkit/level/generator/SimpleChunkManager.java @@ -23,6 +23,7 @@ public int getBlockIdAt(int x, int y, int z) { return getBlockIdAt(x, y, z, 0); } + @PowerNukkitOnly @Override public int getBlockIdAt(int x, int y, int z, int layer) { FullChunk chunk = this.getChunk(x >> 4, z >> 4); @@ -32,6 +33,7 @@ public int getBlockIdAt(int x, int y, int z, int layer) { return 0; } + @PowerNukkitOnly @Override public BlockState getBlockStateAt(int x, int y, int z, int layer) { FullChunk chunk = this.getChunk(x >> 4, z >> 4); @@ -46,6 +48,7 @@ public void setBlockIdAt(int x, int y, int z, int id) { setBlockIdAt(x, y, z, 0, id); } + @PowerNukkitOnly @Override public void setBlockIdAt(int x, int y, int z, int layer, int id) { FullChunk chunk = this.getChunk(x >> 4, z >> 4); @@ -63,6 +66,7 @@ public void setBlockAt(int x, int y, int z, int id, int data) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public boolean setBlockAtLayer(int x, int y, int z, int layer, int id, int data) { FullChunk chunk = this.getChunk(x >> 4, z >> 4); @@ -81,6 +85,7 @@ public void setBlockFullIdAt(int x, int y, int z, int fullId) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public void setBlockFullIdAt(int x, int y, int z, int layer, int fullId) { FullChunk chunk = this.getChunk(x >> 4, z >> 4); @@ -109,6 +114,7 @@ public int getBlockDataAt(int x, int y, int z) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public int getBlockDataAt(int x, int y, int z, int layer) { FullChunk chunk = this.getChunk(x >> 4, z >> 4); @@ -127,6 +133,7 @@ public void setBlockDataAt(int x, int y, int z, int data) { @Deprecated @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.4.0.0-PN") + @PowerNukkitOnly @Override public void setBlockDataAt(int x, int y, int z, int layer, int data) { FullChunk chunk = this.getChunk(x >> 4, z >> 4); diff --git a/src/main/java/cn/nukkit/level/generator/object/ObjectNyliumVegetation.java b/src/main/java/cn/nukkit/level/generator/object/ObjectNyliumVegetation.java index ef3bbb47799..8a6affc3171 100644 --- a/src/main/java/cn/nukkit/level/generator/object/ObjectNyliumVegetation.java +++ b/src/main/java/cn/nukkit/level/generator/object/ObjectNyliumVegetation.java @@ -6,9 +6,11 @@ import cn.nukkit.level.ChunkManager; import cn.nukkit.math.NukkitRandom; import cn.nukkit.math.Vector3; +import lombok.experimental.UtilityClass; @PowerNukkitOnly @Since("1.4.0.0-PN") +@UtilityClass public class ObjectNyliumVegetation { @PowerNukkitOnly @Since("1.4.0.0-PN") diff --git a/src/main/java/cn/nukkit/level/generator/object/ObjectTallGrass.java b/src/main/java/cn/nukkit/level/generator/object/ObjectTallGrass.java index 9191ee519f9..1246705a489 100644 --- a/src/main/java/cn/nukkit/level/generator/object/ObjectTallGrass.java +++ b/src/main/java/cn/nukkit/level/generator/object/ObjectTallGrass.java @@ -1,5 +1,6 @@ package cn.nukkit.level.generator.object; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.level.ChunkManager; import cn.nukkit.math.NukkitRandom; @@ -48,6 +49,7 @@ public static void growGrass(ChunkManager level, Vector3 pos, NukkitRandom rando } } + @PowerNukkitOnly public static void growGrass(ChunkManager level, Vector3 pos, NukkitRandom random, int count, int radius) { int[][] arr = { {Block.DANDELION, 0}, diff --git a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorGroundCover.java b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorGroundCover.java index 6e015728f88..4963e7ea075 100644 --- a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorGroundCover.java +++ b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorGroundCover.java @@ -1,5 +1,6 @@ package cn.nukkit.level.generator.populator.impl; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; import cn.nukkit.level.ChunkManager; @@ -14,6 +15,7 @@ * @author DaPorkchop_ */ public class PopulatorGroundCover extends Populator { + @PowerNukkitOnly public static final int STONE = BlockID.STONE << Block.DATA_BITS; @Override diff --git a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOre.java b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOre.java index 82a4270ce62..8f02a8d036b 100644 --- a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOre.java +++ b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOre.java @@ -1,5 +1,6 @@ package cn.nukkit.level.generator.populator.impl; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.level.ChunkManager; @@ -20,6 +21,7 @@ public class PopulatorOre extends Populator { * @implNote Removed from the new-raknet branch */ @Since("1.4.0.0-PN") + @PowerNukkitOnly public PopulatorOre() { this(Block.STONE); } @@ -28,6 +30,7 @@ public PopulatorOre() { * @implNote Removed from the new-raknet branch */ @Since("1.4.0.0-PN") + @PowerNukkitOnly public PopulatorOre(int id) { this.replaceId = id; } @@ -59,6 +62,7 @@ public void populate(ChunkManager level, int chunkX, int chunkZ, NukkitRandom ra /** * @implNote Removed from the new-raknet branch */ + @PowerNukkitOnly @Since("1.4.0.0-PN") public void setOreTypes(OreType[] oreTypes) { this.oreTypes = oreTypes; diff --git a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOreEmerald.java b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOreEmerald.java index 75718b38b33..fb1c625466c 100644 --- a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOreEmerald.java +++ b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOreEmerald.java @@ -18,7 +18,11 @@ public class PopulatorOreEmerald extends Populator { private static final BlockState STATE_STONE = BlockState.of(STONE); private static final BlockState STATE_EMERALD_ORE = BlockState.of(EMERALD_ORE); - + + @PowerNukkitOnly + public PopulatorOreEmerald() { + } + @Override public void populate(ChunkManager level, int chunkX, int chunkZ, NukkitRandom random, FullChunk chunk) { for (int i = 0; i < 11; i++) { diff --git a/src/main/java/cn/nukkit/math/AxisAlignedBB.java b/src/main/java/cn/nukkit/math/AxisAlignedBB.java index 7425568bda3..046e65967d5 100644 --- a/src/main/java/cn/nukkit/math/AxisAlignedBB.java +++ b/src/main/java/cn/nukkit/math/AxisAlignedBB.java @@ -92,6 +92,7 @@ default AxisAlignedBB setBB(AxisAlignedBB bb) { return this; } + @PowerNukkitOnly default AxisAlignedBB getOffsetBoundingBox(BlockFace face, double x, double y, double z) { return getOffsetBoundingBox(face.getXOffset() * x, face.getYOffset() * y, face.getZOffset() * z); } diff --git a/src/main/java/cn/nukkit/math/MathHelper.java b/src/main/java/cn/nukkit/math/MathHelper.java index 109b56506d3..536d78cc497 100644 --- a/src/main/java/cn/nukkit/math/MathHelper.java +++ b/src/main/java/cn/nukkit/math/MathHelper.java @@ -1,5 +1,7 @@ package cn.nukkit.math; +import cn.nukkit.api.PowerNukkitOnly; + import java.util.Random; public class MathHelper { @@ -92,6 +94,7 @@ public static int clamp(int check, int min, int max) { return check > max ? max : (check < min ? min : check); } + @PowerNukkitOnly public static float clamp(float num, float min, float max) { return num > max ? max : (num < min ? min : num); } diff --git a/src/main/java/cn/nukkit/nbt/tag/CompoundTag.java b/src/main/java/cn/nukkit/nbt/tag/CompoundTag.java index 6fcc93189ae..4d3f50d9594 100644 --- a/src/main/java/cn/nukkit/nbt/tag/CompoundTag.java +++ b/src/main/java/cn/nukkit/nbt/tag/CompoundTag.java @@ -24,10 +24,12 @@ public CompoundTag(String name) { this(name, new HashMap<>()); } + @PowerNukkitOnly public CompoundTag(Map tags) { this("", tags); } + @PowerNukkitOnly public CompoundTag(String name, Map tags) { super(name); this.tags = tags; diff --git a/src/main/java/cn/nukkit/network/Network.java b/src/main/java/cn/nukkit/network/Network.java index 9d29427aa87..55b76d645ee 100644 --- a/src/main/java/cn/nukkit/network/Network.java +++ b/src/main/java/cn/nukkit/network/Network.java @@ -4,6 +4,7 @@ import cn.nukkit.Server; import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.nbt.stream.FastByteArrayOutputStream; import cn.nukkit.network.protocol.*; @@ -311,6 +312,7 @@ public void processPackets(Player player, List packets) { @DeprecationDetails(since = "1.4.0.0-PN", by = "Cloudburst Nukkit", reason = "Changed the id to int without backward compatibility", replaceWith = "getPacket(int id)") + @PowerNukkitOnly public DataPacket getPacket(byte id) { return getPacket((int) id); } diff --git a/src/main/java/cn/nukkit/network/protocol/AbstractResourcePackDataPacket.java b/src/main/java/cn/nukkit/network/protocol/AbstractResourcePackDataPacket.java index 471602a5a9d..708b578d6df 100644 --- a/src/main/java/cn/nukkit/network/protocol/AbstractResourcePackDataPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AbstractResourcePackDataPacket.java @@ -2,12 +2,14 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import lombok.NoArgsConstructor; import org.powernukkit.version.Version; import java.util.UUID; @PowerNukkitOnly @Since("1.5.2.0-PN") +@NoArgsConstructor(onConstructor = @__(@PowerNukkitOnly)) public abstract class AbstractResourcePackDataPacket extends DataPacket { @PowerNukkitOnly @Since("1.5.2.0-PN") diff --git a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java index 51e3613c2e0..1720e24e201 100644 --- a/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AnimateEntityPacket.java @@ -2,6 +2,7 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import lombok.NoArgsConstructor; import java.util.ArrayList; import java.util.List; @@ -11,6 +12,7 @@ */ @PowerNukkitOnly @Since("1.5.1.0-PN") +@NoArgsConstructor(onConstructor = @__(@PowerNukkitOnly)) public class AnimateEntityPacket extends DataPacket { @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/network/protocol/DataPacket.java b/src/main/java/cn/nukkit/network/protocol/DataPacket.java index 81fe8b501ea..7fc62c9ae71 100644 --- a/src/main/java/cn/nukkit/network/protocol/DataPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/DataPacket.java @@ -1,6 +1,7 @@ package cn.nukkit.network.protocol; import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.network.Network; import cn.nukkit.utils.Binary; import cn.nukkit.utils.BinaryStream; @@ -10,6 +11,7 @@ * @author MagicDroidX (Nukkit Project) */ public abstract class DataPacket extends BinaryStream implements Cloneable { + @PowerNukkitOnly public static final DataPacket[] EMPTY_ARRAY = new DataPacket[0]; public volatile boolean isEncoded = false; diff --git a/src/main/java/cn/nukkit/network/protocol/ItemComponentPacket.java b/src/main/java/cn/nukkit/network/protocol/ItemComponentPacket.java index 883cb6c64ae..bdbc1367316 100644 --- a/src/main/java/cn/nukkit/network/protocol/ItemComponentPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ItemComponentPacket.java @@ -5,6 +5,7 @@ import cn.nukkit.nbt.NBTIO; import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.utils.MainLogger; +import lombok.NoArgsConstructor; import lombok.ToString; import java.io.IOException; @@ -16,6 +17,7 @@ @ToString @PowerNukkitOnly @Since("1.4.0.0-PN") +@NoArgsConstructor(onConstructor = @__(@PowerNukkitOnly)) public class ItemComponentPacket extends DataPacket { @PowerNukkitOnly @Since("1.4.0.0-PN") diff --git a/src/main/java/cn/nukkit/network/protocol/ItemStackResponsePacket.java b/src/main/java/cn/nukkit/network/protocol/ItemStackResponsePacket.java index 89f1dabc01b..c1e0c7baebf 100644 --- a/src/main/java/cn/nukkit/network/protocol/ItemStackResponsePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ItemStackResponsePacket.java @@ -2,6 +2,7 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import lombok.NoArgsConstructor; import lombok.ToString; /** @@ -10,6 +11,7 @@ @PowerNukkitOnly @Since("1.4.0.0-PN") @ToString +@NoArgsConstructor(onConstructor = @__(@PowerNukkitOnly)) public class ItemStackResponsePacket extends DataPacket { @PowerNukkitOnly @Since("1.4.0.0-PN") diff --git a/src/main/java/cn/nukkit/network/protocol/PlayerActionPacket.java b/src/main/java/cn/nukkit/network/protocol/PlayerActionPacket.java index 2107901b9b6..835c40ea6c5 100644 --- a/src/main/java/cn/nukkit/network/protocol/PlayerActionPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/PlayerActionPacket.java @@ -1,5 +1,6 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.math.BlockVector3; import lombok.ToString; @@ -35,7 +36,7 @@ public class PlayerActionPacket extends DataPacket { public static final int ACTION_STOP_SWIMMING = 22; public static final int ACTION_START_SPIN_ATTACK = 23; public static final int ACTION_STOP_SPIN_ATTACK = 24; - public static final int ACTION_INTERACT_BLOCK = 25; + public @PowerNukkitOnly static final int ACTION_INTERACT_BLOCK = 25; public long entityId; public int action; diff --git a/src/main/java/cn/nukkit/network/protocol/PositionTrackingDBClientRequestPacket.java b/src/main/java/cn/nukkit/network/protocol/PositionTrackingDBClientRequestPacket.java index eda91ed7f26..5773a62a24a 100644 --- a/src/main/java/cn/nukkit/network/protocol/PositionTrackingDBClientRequestPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/PositionTrackingDBClientRequestPacket.java @@ -2,6 +2,7 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import lombok.NoArgsConstructor; import lombok.ToString; /** @@ -10,6 +11,7 @@ @PowerNukkitOnly @Since("1.4.0.0-PN") @ToString +@NoArgsConstructor(onConstructor = @__(@PowerNukkitOnly)) public class PositionTrackingDBClientRequestPacket extends DataPacket { @PowerNukkitOnly @Since("1.4.0.0-PN") diff --git a/src/main/java/cn/nukkit/network/protocol/PositionTrackingDBServerBroadcastPacket.java b/src/main/java/cn/nukkit/network/protocol/PositionTrackingDBServerBroadcastPacket.java index d2654d17abd..a65ab5b615f 100644 --- a/src/main/java/cn/nukkit/network/protocol/PositionTrackingDBServerBroadcastPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/PositionTrackingDBServerBroadcastPacket.java @@ -10,6 +10,7 @@ import cn.nukkit.nbt.tag.ListTag; import io.netty.handler.codec.EncoderException; import it.unimi.dsi.fastutil.io.FastByteArrayInputStream; +import lombok.NoArgsConstructor; import lombok.ToString; import javax.annotation.Nullable; @@ -21,6 +22,7 @@ @PowerNukkitOnly @Since("1.4.0.0-PN") @ToString +@NoArgsConstructor(onConstructor = @__(@PowerNukkitOnly)) public class PositionTrackingDBServerBroadcastPacket extends DataPacket { @PowerNukkitOnly @Since("1.4.0.0-PN") diff --git a/src/main/java/cn/nukkit/network/protocol/TickSyncPacket.java b/src/main/java/cn/nukkit/network/protocol/TickSyncPacket.java index 294640434a3..d2614543d88 100644 --- a/src/main/java/cn/nukkit/network/protocol/TickSyncPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/TickSyncPacket.java @@ -3,6 +3,7 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import lombok.NoArgsConstructor; import lombok.ToString; /** @@ -11,6 +12,7 @@ @PowerNukkitOnly @Since("1.5.0.0-PN") @ToString +@NoArgsConstructor(onConstructor = @__(@PowerNukkitOnly)) public class TickSyncPacket extends DataPacket { @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/plugin/PowerNukkitPlugin.java b/src/main/java/cn/nukkit/plugin/PowerNukkitPlugin.java index cf44a7b1b58..6d96fd6245d 100644 --- a/src/main/java/cn/nukkit/plugin/PowerNukkitPlugin.java +++ b/src/main/java/cn/nukkit/plugin/PowerNukkitPlugin.java @@ -2,9 +2,11 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import lombok.NoArgsConstructor; @PowerNukkitOnly @Since("1.3.0.0-PN") +@NoArgsConstructor(onConstructor = @__(@PowerNukkitOnly)) public class PowerNukkitPlugin extends PluginBase { private static final PowerNukkitPlugin INSTANCE = new PowerNukkitPlugin(); diff --git a/src/main/java/cn/nukkit/positiontracking/NamedPosition.java b/src/main/java/cn/nukkit/positiontracking/NamedPosition.java index b40b5515c1d..50af725aedf 100644 --- a/src/main/java/cn/nukkit/positiontracking/NamedPosition.java +++ b/src/main/java/cn/nukkit/positiontracking/NamedPosition.java @@ -39,7 +39,8 @@ public NamedPosition(double x, double y, double z) { @Since("1.4.0.0-PN") @Nonnull public abstract String getLevelName(); - + + @PowerNukkitOnly public boolean matchesNamedPosition(NamedPosition position) { return x == position.x && y == position.y && z == position.z && getLevelName().equals(position.getLevelName()); } diff --git a/src/main/java/cn/nukkit/potion/Potion.java b/src/main/java/cn/nukkit/potion/Potion.java index 41f63637ad7..7200f4de81a 100644 --- a/src/main/java/cn/nukkit/potion/Potion.java +++ b/src/main/java/cn/nukkit/potion/Potion.java @@ -1,6 +1,7 @@ package cn.nukkit.potion; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.EntityLiving; @@ -59,7 +60,7 @@ public class Potion implements Cloneable { public static final int SLOW_FALLING = 40; public static final int SLOW_FALLING_LONG = 41; @Since("1.4.0.0-PN") public static final int SLOWNESS_LONG_II = 42; - @Since("1.4.0.0-PN") public static final int SLOWNESS_IV = 43; + @Since("1.4.0.0-PN") @PowerNukkitOnly public static final int SLOWNESS_IV = 43; protected static Potion[] potions; diff --git a/src/main/java/cn/nukkit/utils/Hash.java b/src/main/java/cn/nukkit/utils/Hash.java index e7d43dc4c25..897d028a680 100644 --- a/src/main/java/cn/nukkit/utils/Hash.java +++ b/src/main/java/cn/nukkit/utils/Hash.java @@ -1,5 +1,7 @@ package cn.nukkit.utils; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.math.Vector3; public class Hash { @@ -20,9 +22,8 @@ public static final int hashBlockZ(long triple) { return (int) ((((triple >> 34) & 0x3FFFFFF) << 38) >> 38); } - /** - * @since 1.2.1.0-PN - */ + @PowerNukkitOnly + @Since("1.2.1.0-PN") public static long hashBlock(Vector3 blockPos) { return hashBlock(blockPos.getFloorX(), blockPos.getFloorY(), blockPos.getFloorZ()); } diff --git a/src/main/java/cn/nukkit/utils/HumanStringComparator.java b/src/main/java/cn/nukkit/utils/HumanStringComparator.java index 6488a7b53cc..4a6a1bcbbcb 100644 --- a/src/main/java/cn/nukkit/utils/HumanStringComparator.java +++ b/src/main/java/cn/nukkit/utils/HumanStringComparator.java @@ -2,6 +2,7 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import lombok.NoArgsConstructor; import javax.annotation.Nonnull; import java.util.ArrayList; @@ -11,6 +12,7 @@ @PowerNukkitOnly @Since("1.4.0.0-PN") +@NoArgsConstructor(onConstructor = @__(@PowerNukkitOnly)) public class HumanStringComparator implements Comparator { private static final HumanStringComparator INSTANCE = new HumanStringComparator(); private static final int LEFT = -1; From 0c47dd2e45d87a00c4578d8ae4537d761f7a4d58 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 22:26:16 -0300 Subject: [PATCH 303/394] Downgrade spoon to fix builds on JDK 8 --- pom.xml | 15 +- .../tools/AnnotationProblemScanner.java | 10 +- .../AutoUpdatePowerNukkitOnlyAnnotations.java | 238 ------------------ ...AutoUpdatePowerNukkitOnlyAnnotations2.java | 232 ----------------- 4 files changed, 9 insertions(+), 486 deletions(-) delete mode 100644 src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations.java delete mode 100644 src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations2.java diff --git a/pom.xml b/pom.xml index 116c9736ffc..13c2dab3289 100644 --- a/pom.xml +++ b/pom.xml @@ -77,7 +77,6 @@ UTF-8 UTF-8 3.9.0 - 2.23.0.Final true true PowerNukkit_PowerNukkit @@ -303,23 +302,11 @@ jsr305 3.0.2 - - org.jboss.forge.roaster - roaster-api - ${roaster.version} - test - - - org.jboss.forge.roaster - roaster-jdt - ${roaster.version} - test - fr.inria.gforge.spoon spoon-core - 10.0.0 + 9.1.0 test diff --git a/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java b/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java index 94688298035..b0872044aaf 100644 --- a/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java +++ b/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java @@ -51,8 +51,14 @@ public static void main(String[] args) { private static boolean isApi(CtModifiable obj) { - if (obj instanceof CtMethod && ((CtMethod) obj).getSimpleName().equals("canEqual") && obj.hasAnnotation(Generated.class)) { - return false; + if (obj instanceof CtMethod) { + CtMethod method = (CtMethod) obj; + if (method.getSimpleName().equals("canEqual") && obj.hasAnnotation(Generated.class)) { + return false; + } + if (method.getDeclaringType().isAnnotationType()) { + return true; + } } if (obj.isPublic() || obj.isProtected()) { return true; diff --git a/src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations.java b/src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations.java deleted file mode 100644 index 9dd7dff1804..00000000000 --- a/src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations.java +++ /dev/null @@ -1,238 +0,0 @@ -package org.powernukkit.tools; - -import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; -import com.google.common.base.Preconditions; -import lombok.extern.log4j.Log4j2; -import org.jboss.forge.roaster.Roaster; -import org.jboss.forge.roaster.model.*; -import org.jboss.forge.roaster.model.source.AnnotationSource; -import org.jboss.forge.roaster.model.source.AnnotationTargetSource; -import org.jboss.forge.roaster.model.source.Importer; - -import java.io.BufferedInputStream; -import java.io.IOException; -import java.io.InputStream; -import java.io.UncheckedIOException; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.util.Locale; -import java.util.Objects; -import java.util.Optional; -import java.util.concurrent.atomic.AtomicBoolean; -import java.util.stream.Collectors; -import java.util.stream.IntStream; -import java.util.stream.Stream; - -/** - * @author joserobjr - * @since 2021-12-02 - */ -@PowerNukkitOnly -@Since("FUTURE") -@Log4j2 -public class AutoUpdatePowerNukkitOnlyAnnotations { - public static void main(String[] args) { - Preconditions.checkArgument(args.length == 0 || args.length == 1, "Invalid arguments"); - Path clourburstNukkitSourceCode = Paths.get(args.length == 1? args[0] : "../../org.cloudburst/Nukkit"); - - new AutoUpdatePowerNukkitOnlyAnnotations().execute( - clourburstNukkitSourceCode.resolve("src/main/java"), - Paths.get("src/main/java") - ); - } - - private void execute(Path nukkitSrc, Path powerNukkitSrc) { - try (Stream walk = Files.walk(powerNukkitSrc)) { - walk.parallel() - .filter(Files::isRegularFile) - .filter(it-> it.getFileName().toString().toLowerCase(Locale.ENGLISH).endsWith(".java")) - .forEach(it-> update(it, nukkitSrc.resolve(powerNukkitSrc.relativize(it).toString()))); - } catch (IOException e) { - throw new UncheckedIOException(e); - } - } - - private void update(Path powerNukkitFilePath, Path nukkitFilePath) { - try { - if (!Files.isRegularFile(nukkitFilePath)) { - setFullyPowerNukkitOnly(powerNukkitFilePath); - } else { - compareDifferences(powerNukkitFilePath, nukkitFilePath); - } - } catch (IOException e) { - throw new UncheckedIOException(e); - } - } - - private void setFullyPowerNukkitOnly(Path powerNukkitFilePath) throws IOException { - JavaUnit javaUnit = loadJavaUnit(powerNukkitFilePath); - int changes = javaUnit.getTopLevelTypes().parallelStream().mapToInt(this::addAnnotationsToEverything).sum(); - if (changes > 0) { - log.info("{}\tchanges to\t{}", changes, powerNukkitFilePath); - //Files.write(powerNukkitFilePath, javaUnit.toString().getBytes(StandardCharsets.UTF_8)); - } - } - - private void compareDifferences(Path powerNukkitFilePath, Path nukkitFilePath) throws IOException { - JavaUnit pnJavaUnit = loadJavaUnit(powerNukkitFilePath); - JavaUnit nuJavaUnit = loadJavaUnit(nukkitFilePath); - int changes = pnJavaUnit.getTopLevelTypes().parallelStream() - .mapToInt(pnJavaType -> - nuJavaUnit.getTopLevelTypes().stream() - .filter(it -> pnJavaType.getCanonicalName().equals(it.getCanonicalName())) - .findFirst() - .map(nuJavaType -> compareDifferencesBetweenTypes(pnJavaType, nuJavaType)) - .orElseGet(() -> addAnnotationsToEverything(pnJavaType)) - ).sum(); - if (changes > 0) { - log.info("{}\tchanges to\t{}", changes, powerNukkitFilePath); - //Files.write(powerNukkitFilePath, pnJavaUnit.toString().getBytes(StandardCharsets.UTF_8)); - } - } - - private int compareDifferencesBetweenTypes(JavaType pnJavaType, JavaType nuJavaType) { - IntStream changeStream = IntStream.of(removeAnnotation(pnJavaType)); - AtomicBoolean needPowerNukkitOnly = new AtomicBoolean(); - if (pnJavaType instanceof FieldHolder) { - IntStream stream = ((FieldHolder) pnJavaType).getFields().parallelStream().filter(it-> it.isPublic() || it.isProtected()).mapToInt(pnField -> { - if (!(nuJavaType instanceof FieldHolder)) { - needPowerNukkitOnly.set(true); - return addAnnotation(pnField); - } - Field nuField = ((FieldHolder) nuJavaType).getField(pnField.getName()); - if (nuField == null || nuField.isPackagePrivate() || nuField.isPrivate()) { - needPowerNukkitOnly.set(true); - return addAnnotation(pnField); - } - if (!nuField.getType().toString().equals(pnField.getType().toString())) { - log.error("Incompatible field change detected at {} field {}", pnJavaType.getQualifiedName(), pnField.getName()); - needPowerNukkitOnly.set(true); - return addAnnotation(pnField); - } - - return removeAnnotation(pnField); - }); - changeStream = IntStream.concat(changeStream, stream); - } - if (pnJavaType instanceof MethodHolder) { - IntStream stream = ((MethodHolder) pnJavaType).getMethods().parallelStream().mapToInt(pnMethod -> { - if (pnMethod.isPrivate() || pnMethod.isPackagePrivate() || pnMethod.hasAnnotation(Override.class)) { - return removeAnnotation(pnMethod); - } - - if (!(nuJavaType instanceof MethodHolder)) { - needPowerNukkitOnly.set(true); - return addAnnotation(pnMethod); - } - Method nuMethod = ((MethodHolder) nuJavaType).getMethod( - pnMethod.getName(), - pnMethod.getParameters().stream().map(it -> it.getType().getName()).toArray(String[]::new) - ); - if (nuMethod == null || nuMethod.isPackagePrivate() || nuMethod.isPrivate()) { - needPowerNukkitOnly.set(true); - return addAnnotation(pnMethod); - } - if (!Objects.equals( - Optional.ofNullable(nuMethod.getReturnType()).map(Object::toString).orElse(null), - Optional.ofNullable(pnMethod.getReturnType()).map(Object::toString).orElse(null)) - ) { - log.error("Incompatible method change detected at {} method {}({})", - pnJavaType.getQualifiedName(), - pnMethod.getName(), - pnMethod.getParameters().stream().map(Parameter::getName).collect(Collectors.joining(", ")) - ); - needPowerNukkitOnly.set(true); - return addAnnotation(pnMethod); - } - - return removeAnnotation(pnMethod); - }); - changeStream = IntStream.concat(changeStream, stream); - } - - int changes = changeStream.sum(); - if (!needPowerNukkitOnly.get()) { - changes += removeImport(pnJavaType); - } - return changes; - } - - private int removeImport(Object source) { - if (source instanceof Importer) { - Importer imp = (Importer) source; - if (imp.hasImport(PowerNukkitOnly.class.getName())) { - imp.removeImport(PowerNukkitOnly.class.getName()); - return 1; - } - } - return 0; - } - - /*private int addImport(Object source) { - if (source instanceof Importer) { - Importer imp = (Importer) source; - if (!imp.hasImport(PowerNukkitOnly.class)) { - imp.addImport(PowerNukkitOnly.class); - return 1; - } - } - return 0; - }*/ - - private int addAnnotationsToEverything(Object source) { - int changes = addAnnotation(source)/* + addImport(source)*/; - IntStream changeStream = IntStream.empty(); - if (source instanceof MemberHolder) { - changeStream = ((MemberHolder) source).getMembers().parallelStream().mapToInt(this::addAnnotation); - } - if (source instanceof TypeHolder) { - changeStream = IntStream.concat(changeStream, - ((TypeHolder) source).getNestedTypes().parallelStream().mapToInt(this::addAnnotationsToEverything) - ); - } - return changes + changeStream.sum(); - } - - private JavaUnit loadJavaUnit(Path filePath) throws IOException { - try (InputStream is = Files.newInputStream(filePath); - BufferedInputStream input = new BufferedInputStream(is) - ) { - return Roaster.parseUnit(input); - } - } - - private int addAnnotation(Object obj) { - if (obj instanceof VisibilityScoped) { - VisibilityScoped vis = (VisibilityScoped) obj; - if (vis.isPackagePrivate() || vis.isPrivate()) { - return 0; - } - } - if (!(obj instanceof AnnotationTargetSource)) { - return 0; - } - AnnotationTargetSource ats = (AnnotationTargetSource) obj; - if (!ats.hasAnnotation(PowerNukkitOnly.class.getName())) { - ats.addAnnotation(PowerNukkitOnly.class.getName()); - log.warn("Must add @PowerNukkitOnly to " + obj); - } - return 1; - } - - @SuppressWarnings({"rawtypes", "unchecked"}) - private int removeAnnotation(Object obj) { - if (!(obj instanceof AnnotationTargetSource)) { - return 0; - } - AnnotationTargetSource ats = (AnnotationTargetSource) obj; - AnnotationSource annotation = ats.getAnnotation(PowerNukkitOnly.class.getName()); - if (annotation != null) { - //ats.removeAnnotation(annotation); - log.warn("Must remove @PowerNukkitOnly from " + obj); - return 1; - } - return 0; - } -} diff --git a/src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations2.java b/src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations2.java deleted file mode 100644 index ecd342037fd..00000000000 --- a/src/test/java/org/powernukkit/tools/AutoUpdatePowerNukkitOnlyAnnotations2.java +++ /dev/null @@ -1,232 +0,0 @@ -package org.powernukkit.tools; - -import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; -import com.google.common.base.Preconditions; -import lombok.extern.log4j.Log4j2; -import spoon.Launcher; -import spoon.reflect.CtModel; -import spoon.reflect.code.CtLambda; -import spoon.reflect.declaration.*; -import spoon.reflect.reference.CtTypeReference; - -import java.io.IOException; -import java.io.UncheckedIOException; -import java.lang.annotation.Annotation; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.util.Locale; -import java.util.Objects; -import java.util.Optional; -import java.util.concurrent.atomic.AtomicBoolean; -import java.util.stream.Collectors; -import java.util.stream.IntStream; -import java.util.stream.Stream; - -/** - * @author joserobjr - * @since 2021-12-02 - */ -@PowerNukkitOnly -@Since("FUTURE") -@Log4j2 -public class AutoUpdatePowerNukkitOnlyAnnotations2 { - public static void main(String[] args) { - Preconditions.checkArgument(args.length == 0 || args.length == 1, "Invalid arguments"); - Path clourburstNukkitSourceCode = Paths.get(args.length == 1? args[0] : "../../org.cloudburst/Nukkit"); - - new AutoUpdatePowerNukkitOnlyAnnotations2().execute( - clourburstNukkitSourceCode.resolve("src/main/java"), - Paths.get("src/main/java") - ); - } - - private void execute(Path nukkitSrc, Path powerNukkitSrc) { - try (Stream walk = Files.walk(powerNukkitSrc)) { - walk.parallel() - .filter(Files::isRegularFile) - .filter(it-> it.getFileName().toString().toLowerCase(Locale.ENGLISH).endsWith(".java")) - .forEach(it-> update(it, nukkitSrc.resolve(powerNukkitSrc.relativize(it).toString()))); - } catch (IOException e) { - throw new UncheckedIOException(e); - } - } - - private void update(Path powerNukkitFilePath, Path nukkitFilePath) { - try { - if (!Files.isRegularFile(nukkitFilePath)) { - setFullyPowerNukkitOnly(powerNukkitFilePath); - } else { - compareDifferences(powerNukkitFilePath, nukkitFilePath); - } - } catch (IOException e) { - throw new UncheckedIOException(e); - } - } - - private String toString(CtModel javaUnit) { - return javaUnit.getAllTypes() - .stream() - .map(Object::toString) - .collect(Collectors.joining("\n\n", "", "\n")); - } - - private void setFullyPowerNukkitOnly(Path powerNukkitFilePath) throws IOException { - CtModel javaUnit = loadJavaUnit(powerNukkitFilePath); - int changes = javaUnit.getAllTypes().parallelStream().mapToInt(this::addAnnotationsToEverything).sum(); - if (changes > 0) { - log.info("{}\tchanges to\t{}", changes, powerNukkitFilePath); - //Files.write(powerNukkitFilePath, toString(javaUnit).getBytes(StandardCharsets.UTF_8)); - } - } - - private void compareDifferences(Path powerNukkitFilePath, Path nukkitFilePath) throws IOException { - CtModel pnJavaUnit = loadJavaUnit(powerNukkitFilePath); - CtModel nuJavaUnit = loadJavaUnit(nukkitFilePath); - - int changes = pnJavaUnit.getAllTypes().parallelStream() - .mapToInt(pnJavaType -> - nuJavaUnit.getAllTypes().stream() - .filter(it -> pnJavaType.getQualifiedName().equals(it.getQualifiedName())) - .findFirst() - .map(nuJavaType -> compareDifferencesBetweenTypes(pnJavaType, nuJavaType)) - .orElseGet(() -> addAnnotationsToEverything(pnJavaType)) - ).sum(); - - if (changes > 0) { - log.info("{}\tchanges to\t{}", changes, powerNukkitFilePath); - //Files.write(powerNukkitFilePath, toString(pnJavaUnit).getBytes(StandardCharsets.UTF_8)); - } - } - - private int compareDifferencesBetweenTypes(CtType pnJavaType, CtType nuJavaType) { - IntStream changeStream = IntStream.of(removeAnnotation(pnJavaType)); - AtomicBoolean needPowerNukkitOnly = new AtomicBoolean(); - IntStream stream = pnJavaType.getFields().parallelStream().filter(it-> it.isPublic() || it.isProtected()).mapToInt(pnField -> { - CtField nuField = nuJavaType.getField(pnField.getSimpleName()); - if (nuField == null || !nuField.isPublic() && !nuField.isProtected()) { - needPowerNukkitOnly.set(true); - return addAnnotation(pnField); - } - if (!nuField.getType().toString().equals(pnField.getType().toString())) { - log.error("Incompatible field change detected at {} field {}", pnJavaType.getQualifiedName(), pnField.getSimpleName()); - needPowerNukkitOnly.set(true); - return addAnnotation(pnField); - } - - return removeAnnotation(pnField); - }); - changeStream = IntStream.concat(changeStream, stream); - - stream = pnJavaType.getMethods().parallelStream().mapToInt(pnMethod -> { - if (!pnMethod.isPublic() && !pnMethod.isProtected() || pnMethod.hasAnnotation(Override.class)) { - return removeAnnotation(pnMethod); - } - - CtMethod nuMethod = nuJavaType.getMethod( - pnMethod.getSimpleName(), - pnMethod.getParameters().stream().map(CtTypedElement::getType).toArray(CtTypeReference[]::new) - ); - if (nuMethod == null || !nuMethod.isPublic() && !nuMethod.isProtected()) { - needPowerNukkitOnly.set(true); - return addAnnotation(pnMethod); - } - if (!Objects.equals(nuMethod.getSignature(), pnMethod.getSignature())) { - log.error("Incompatible method change detected at {} method {}({})", - pnJavaType.getQualifiedName(), - pnMethod.getSimpleName(), - pnMethod.getParameters().stream().map(CtParameter::getType).map(CtTypeReference::getSimpleName).collect(Collectors.joining(", ")) - ); - needPowerNukkitOnly.set(true); - return addAnnotation(pnMethod); - } - - return removeAnnotation(pnMethod); - }); - changeStream = IntStream.concat(changeStream, stream); - - int changes = changeStream.sum(); - if (!needPowerNukkitOnly.get()) { - changes += removeImport(pnJavaType); - } - return changes; - } - - private int removeImport(CtType source) { - /*if (source.hasImport(PowerNukkitOnly.class.getName())) { - imp.removeImport(PowerNukkitOnly.class.getName()); - return 1; - }*/ - return 0; - } - - private int addAnnotationsToEverything(CtType source) { - IntStream changeStream = IntStream.of(addAnnotation(source)); - changeStream = IntStream.concat(changeStream, source.getFields().parallelStream().mapToInt(this::addAnnotation)); - changeStream = IntStream.concat(changeStream, source.getMethods().parallelStream().mapToInt(this::addAnnotation)); - changeStream = IntStream.concat(changeStream, source.getNestedTypes().parallelStream().mapToInt(this::addAnnotationsToEverything)); - return changeStream.parallel().sum(); - } - - private CtModel loadJavaUnit(Path filePath) { - Launcher launcher = new Launcher(); - launcher.addInputResource(filePath.toString()); - return launcher.buildModel(); - } - - private int addAnnotation(CtElement obj) { - if (obj instanceof CtLambda) { - return 0; - } - if (obj instanceof CtConstructor || obj instanceof CtMethod || obj instanceof CtField) { - if (((CtTypeMember) obj).getDeclaringType().isAnnotationType()) { - return 0; - } - } - if (obj instanceof CtMethod && obj.hasAnnotation(Override.class)) { - return 0; - } - if (!obj.hasAnnotation(PowerNukkitOnly.class)) { - //obj.getFactory().Annotation().annotate(obj, PowerNukkitOnly.class); - log.warn("Must add annotation to " + name(obj)); - return 1; - } - return 0; - } - - private int removeAnnotation(CtElement obj) { - Optional> ctAnnotation = obj.getAnnotations().stream().filter(it -> it.getName().equals(PowerNukkitOnly.class.getName())).findFirst(); - if (!ctAnnotation.isPresent()) { - return 0; - } - //obj.removeAnnotation(ctAnnotation.get()); - log.warn("Must remove annotation from " + name(obj)); - return 1; - } - - private String name(CtElement obj) { - if (obj instanceof CtTypeInformation) { - return ((CtTypeInformation) obj).getQualifiedName(); - } else if (obj instanceof CtTypeMember) { - CtTypeMember member = (CtTypeMember) obj; - StringBuilder sb = new StringBuilder(1024) - .append(member.getDeclaringType().getQualifiedName()) - .append('#') - .append(member.getSimpleName()); - if (obj instanceof CtExecutable) { - CtExecutable executable = (CtExecutable)obj; - sb.append('(') - .append(executable.getParameters().stream() - .map(param -> param.getType().getSimpleName()) - .collect(Collectors.joining(", "))) - .append(')'); - } - return sb.toString(); - } else if (obj instanceof CtNamedElement) { - return ((CtNamedElement) obj).getSimpleName(); - } else { - return obj.toStringDebug(); - } - } -} From 51a460977a46c201c68c2ff5f21d2aa3b362d35b Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sat, 11 Dec 2021 23:38:29 -0300 Subject: [PATCH 304/394] Fixes sonar code smells --- src/main/java/cn/nukkit/Nukkit.java | 2 +- src/main/java/cn/nukkit/Player.java | 28 +++++++------ src/main/java/cn/nukkit/block/Block.java | 31 ++++++++------ .../java/cn/nukkit/block/BlockBricks.java | 1 - .../cn/nukkit/block/BlockBricksEndStone.java | 1 - .../cn/nukkit/block/BlockBricksNether.java | 1 - .../cn/nukkit/block/BlockBricksRedNether.java | 1 - .../cn/nukkit/block/BlockCarvedPumpkin.java | 1 + src/main/java/cn/nukkit/block/BlockCoal.java | 1 - src/main/java/cn/nukkit/block/BlockCrops.java | 2 - .../java/cn/nukkit/block/BlockEndStone.java | 1 - .../java/cn/nukkit/block/BlockGravel.java | 1 - src/main/java/cn/nukkit/block/BlockHoney.java | 1 + .../java/cn/nukkit/block/BlockOreDiamond.java | 1 - .../java/cn/nukkit/block/BlockOreGold.java | 1 - .../java/cn/nukkit/block/BlockOreLapis.java | 1 - .../java/cn/nukkit/block/BlockOreQuartz.java | 1 - .../cn/nukkit/block/BlockOreRedstone.java | 1 - .../nukkit/block/BlockPressurePlateStone.java | 1 - .../cn/nukkit/block/BlockRedSandstone.java | 1 - .../nukkit/block/BlockSlabRedSandstone.java | 12 +++--- .../cn/nukkit/block/BlockSmoothStone.java | 1 - .../java/cn/nukkit/block/BlockSnowLayer.java | 1 - .../cn/nukkit/block/BlockStairsAndesite.java | 1 - .../block/BlockStairsAndesitePolished.java | 1 - .../cn/nukkit/block/BlockStairsBrick.java | 1 - .../nukkit/block/BlockStairsCobblestone.java | 1 - .../block/BlockStairsDarkPrismarine.java | 1 - .../cn/nukkit/block/BlockStairsDiorite.java | 1 - .../cn/nukkit/block/BlockStairsEndBrick.java | 1 - .../cn/nukkit/block/BlockStairsGranite.java | 1 - .../block/BlockStairsGranitePolished.java | 1 - .../block/BlockStairsMossyCobblestone.java | 1 - .../block/BlockStairsMossyStoneBrick.java | 1 - .../nukkit/block/BlockStairsNetherBrick.java | 1 - .../nukkit/block/BlockStairsPrismarine.java | 1 - .../block/BlockStairsPrismarineBrick.java | 1 - .../cn/nukkit/block/BlockStairsPurpur.java | 1 - .../cn/nukkit/block/BlockStairsQuartz.java | 1 - .../block/BlockStairsRedNetherBrick.java | 1 - .../nukkit/block/BlockStairsRedSandstone.java | 1 - .../cn/nukkit/block/BlockStairsSandstone.java | 1 - .../nukkit/block/BlockStairsSmoothQuartz.java | 1 - .../block/BlockStairsSmoothRedSandstone.java | 1 - .../block/BlockStairsSmoothSandstone.java | 1 - .../cn/nukkit/block/BlockStairsStone.java | 1 - .../nukkit/block/BlockStairsStoneBrick.java | 1 - .../cn/nukkit/block/BlockStonecutter.java | 1 - .../cn/nukkit/block/BlockTrapdoorIron.java | 1 - .../BlockWeightedPressurePlateHeavy.java | 1 - .../BlockWeightedPressurePlateLight.java | 1 - .../nukkit/block/BlockWoodStrippedJungle.java | 1 - .../cn/nukkit/block/BlockWoodStrippedOak.java | 1 - .../nukkit/block/BlockWoodStrippedSpruce.java | 1 - .../blockentity/BlockEntityDispenser.java | 7 ++-- .../blockentity/BlockEntityDropper.java | 7 ++-- .../dispenser/BoatDispenseBehavior.java | 1 + .../dispenser/DropperDispenseBehavior.java | 1 + .../nukkit/dispenser/DyeDispenseBehavior.java | 1 + .../dispenser/FireworksDispenseBehavior.java | 1 + .../FlintAndSteelDispenseBehavior.java | 1 + .../dispenser/ShulkerBoxDispenseBehavior.java | 1 + .../dispenser/SpawnEggDispenseBehavior.java | 1 + .../nukkit/dispenser/TNTDispenseBehavior.java | 1 + .../nukkit/entity/item/EntityFishingHook.java | 5 +-- .../entity/projectile/EntityProjectile.java | 1 - .../projectile/EntityThrownTrident.java | 21 ++++++---- .../entity/EntityDamageByEntityEvent.java | 6 +-- .../cn/nukkit/inventory/CraftingManager.java | 10 ++--- .../transaction/InventoryTransaction.java | 1 - .../transaction/action/EnchantingAction.java | 18 ++------ .../action/NoOpIventoryAction.java | 33 +++++++++++++++ .../transaction/action/RepairItemAction.java | 21 +++------- src/main/java/cn/nukkit/item/ItemBow.java | 2 +- .../java/cn/nukkit/item/ItemFireCharge.java | 1 - .../java/cn/nukkit/item/ItemSpyglass.java | 2 +- src/main/java/cn/nukkit/item/ItemTrident.java | 2 - .../cn/nukkit/item/randomitem/Fishing.java | 42 ++++++++++--------- src/main/java/cn/nukkit/level/Level.java | 6 +-- src/main/java/cn/nukkit/level/Location.java | 5 ++- .../nukkit/level/biome/type/CoveredBiome.java | 6 ++- .../level/format/anvil/util/BlockStorage.java | 4 +- .../level/format/generic/BaseFullChunk.java | 4 +- .../java/cn/nukkit/level/generator/Flat.java | 1 - .../populator/impl/PopulatorGroundFire.java | 2 +- .../populator/impl/PopulatorLava.java | 2 +- .../populator/impl/PopulatorOreEmerald.java | 1 + .../network/protocol/PlayerActionPacket.java | 2 +- .../protocol/PlayerEnchantOptionsPacket.java | 2 - .../protocol/SetSpawnPositionPacket.java | 2 - .../nukkit/network/protocol/TextPacket.java | 2 - .../network/protocol/types/EntityLink.java | 1 - 92 files changed, 164 insertions(+), 187 deletions(-) create mode 100644 src/main/java/cn/nukkit/inventory/transaction/action/NoOpIventoryAction.java diff --git a/src/main/java/cn/nukkit/Nukkit.java b/src/main/java/cn/nukkit/Nukkit.java index 2edf271084d..e1acba4bde7 100644 --- a/src/main/java/cn/nukkit/Nukkit.java +++ b/src/main/java/cn/nukkit/Nukkit.java @@ -54,7 +54,7 @@ public class Nukkit { public final static Properties GIT_INFO = getGitInfo(); public final static String VERSION = getVersion(); - public @PowerNukkitOnly final static String GIT_COMMIT = getGitCommit(); + @PowerNukkitOnly public final static String GIT_COMMIT = getGitCommit(); public final static String API_VERSION = dynamic("1.0.13"); public final static String CODENAME = dynamic("PowerNukkit"); @Deprecated diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 7fe7401a7a0..423501af699 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -782,7 +782,7 @@ public String getButtonText() { public void setButtonText(String text) { this.buttonText = text; - this.setDataProperty(new StringEntityData(Entity.DATA_INTERACT_TEXT, this.buttonText)); + this.setDataProperty(new StringEntityData(Entity.DATA_INTERACTIVE_TAG, this.buttonText)); } public void unloadChunk(int x, int z) { @@ -1830,6 +1830,10 @@ public void sendAttributes() { this.dataPacket(pk); } + private void logTriedToSetButHadInHand(Item tried, Item had) { + log.debug("Tried to set item {} but {} had item {} in their hand slot", tried.getId(), this.username, had.getId()); + } + @Override public boolean onUpdate(int currentTick) { if (!this.loggedIn) { @@ -2318,7 +2322,7 @@ public void handleDataPacket(DataPacket packet) { } if (!verified && packet.pid() != ProtocolInfo.LOGIN_PACKET && packet.pid() != ProtocolInfo.BATCH_PACKET) { - server.getLogger().warning("Ignoring " + packet.getClass().getSimpleName() + " from " + getAddress() + " due to player not verified yet"); + log.warn("Ignoring {} from {} due to player not verified yet", packet.getClass().getSimpleName(), getAddress()); if (unverifiedPackets++ > 100) { this.close("", "Too many failed login attempts"); } @@ -2577,7 +2581,7 @@ public void onCompletion(Server server) { } EmotePacket emotePacket = (EmotePacket) packet; if (emotePacket.runtimeId != this.id) { - server.getLogger().warning(this.username + " sent EmotePacket with invalid entity id: " + emotePacket.runtimeId + " != " + this.id); + log.warn("{} sent EmotePacket with invalid entity id: {} != {}", this.username, emotePacket.runtimeId, this.id); return; } for (Player viewer : this.getViewers().values()) { @@ -3709,7 +3713,7 @@ public void onCompletion(Server server) { if (oldItem.getId() == i.getId() || i.getId() == 0) { inventory.setItemInHand(i); } else { - server.getLogger().debug("Tried to set item " + i.getId() + " but " + this.username + " had item " + oldItem.getId() + " in their hand slot"); + logTriedToSetButHadInHand(i, oldItem); } inventory.sendHeldItem(this.getViewers().values()); } @@ -3748,7 +3752,7 @@ public void onCompletion(Server server) { if (oldItem.getId() == i.getId() || i.getId() == 0) { inventory.setItemInHand(i); } else { - server.getLogger().debug("Tried to set item " + i.getId() + " but " + this.username + " had item " + oldItem.getId() + " in their hand slot"); + logTriedToSetButHadInHand(i, oldItem); } inventory.sendHeldItem(this.getViewers().values()); } @@ -3795,7 +3799,7 @@ public void onCompletion(Server server) { if (item.getId() == 0 || this.inventory.getItemInHand().getId() == item.getId()) { this.inventory.setItemInHand(item); } else { - server.getLogger().debug("Tried to set item " + item.getId() + " but " + this.username + " had item " + this.inventory.getItemInHand().getId() + " in their hand slot"); + logTriedToSetButHadInHand(item, this.inventory.getItemInHand()); } } @@ -3861,7 +3865,7 @@ public void onCompletion(Server server) { if (item.getId() == 0 || this.inventory.getItemInHand().getId() == item.getId()) { this.inventory.setItemInHand(item); } else { - server.getLogger().debug("Tried to set item " + item.getId() + " but " + this.username + " had item " + this.inventory.getItemInHand().getId() + " in their hand slot"); + logTriedToSetButHadInHand(item, this.inventory.getItemInHand()); } } break; @@ -3939,7 +3943,7 @@ public void onCompletion(Server server) { if (item.getId() == 0 || this.inventory.getItemInHand().getId() == item.getId()) { this.inventory.setItemInHand(item); } else { - server.getLogger().debug("Tried to set item " + item.getId() + " but " + this.username + " had item " + this.inventory.getItemInHand().getId() + " in their hand slot"); + logTriedToSetButHadInHand(item, this.inventory.getItemInHand()); } } } @@ -4635,9 +4639,9 @@ public void kill() { case CONTACT: if (cause instanceof EntityDamageByBlockEvent) { int id = ((EntityDamageByBlockEvent) cause).getDamager().getId(); - if (id == Block.CACTUS) { + if (id == BlockID.CACTUS) { message = "death.attack.cactus"; - } else if (id == Block.ANVIL) { + } else if (id == BlockID.ANVIL) { message = "death.attack.anvil"; } } @@ -5800,7 +5804,7 @@ public boolean pickupEntity(Entity entity, boolean near) { InventoryPickupArrowEvent ev = new InventoryPickupArrowEvent(inventory, (EntityArrow) entity); int pickupMode = ((EntityArrow) entity).getPickupMode(); - if (pickupMode == EntityArrow.PICKUP_NONE || (pickupMode == EntityArrow.PICKUP_CREATIVE && !this.isCreative())) { + if (pickupMode == EntityProjectile.PICKUP_NONE || (pickupMode == EntityProjectile.PICKUP_CREATIVE && !this.isCreative())) { ev.setCancelled(); } @@ -5844,7 +5848,7 @@ public boolean pickupEntity(Entity entity, boolean near) { InventoryPickupTridentEvent ev = new InventoryPickupTridentEvent(this.inventory, (EntityThrownTrident) entity); int pickupMode = ((EntityThrownTrident) entity).getPickupMode(); - if (pickupMode == EntityThrownTrident.PICKUP_NONE || (pickupMode == EntityThrownTrident.PICKUP_CREATIVE && !this.isCreative())) { + if (pickupMode == EntityProjectile.PICKUP_NONE || (pickupMode == EntityProjectile.PICKUP_CREATIVE && !this.isCreative())) { ev.setCancelled(); } diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index ec1b1afd75d..86e243eaf40 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -85,44 +85,44 @@ public abstract class Block extends Position implements Metadatable, Cloneable, @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Not encapsulated, easy to break", replaceWith = "Block.get(int).getClass(), to register new blocks use registerBlockImplementation()") - @SuppressWarnings({"java:S1444", "java:S2386"}) + @SuppressWarnings({"java:S1444", "java:S2386", "MS_PKGPROTECT"}) public static Class[] list = null; @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.3.0.0-PN", replaceWith = "To register/override implementations use registerBlockImplementation(), " + "to get the block with a given state use BlockState.of and than BlockState.getBlock()") @Deprecated - @SuppressWarnings({"java:S1444", "java:S2386", "java:S1123", "java:S1133", "DeprecatedIsStillUsed"}) + @SuppressWarnings({"java:S1444", "java:S2386", "java:S1123", "java:S1133", "DeprecatedIsStillUsed", "MS_PKGPROTECT"}) public static Block[] fullList = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", - replaceWith = "Block.getLightLevel() or Block.light(int)") - @SuppressWarnings({"java:S1444", "java:S2386"}) + replaceWith = "Block.getLightLevel() or Block.getLightLevel(int)") + @SuppressWarnings({"java:S1444", "java:S2386", "MS_PKGPROTECT"}) public static int[] light = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", - replaceWith = "Block.getLightFilter() or Block.lightFilter(int)") - @SuppressWarnings({"java:S1444", "java:S2386"}) + replaceWith = "Block.getLightFilter() or Block.getLightFilter(int)") + @SuppressWarnings({"java:S1444", "java:S2386", "MS_PKGPROTECT"}) public static int[] lightFilter = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", replaceWith = "Block.isSolid() or Block.isSolid(int)") - @SuppressWarnings({"java:S1444", "java:S2386"}) + @SuppressWarnings({"java:S1444", "java:S2386", "MS_PKGPROTECT"}) public static boolean[] solid = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", - replaceWith = "Block.getHardness() or Block.hardness(int)") - @SuppressWarnings({"java:S1444", "java:S2386"}) + replaceWith = "Block.getHardness() or Block.getHardness(int)") + @SuppressWarnings({"java:S1444", "java:S2386", "MS_PKGPROTECT"}) public static double[] hardness = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", replaceWith = "Block.isTransparent() or Block.isTransparent(int)") - @SuppressWarnings({"java:S1444", "java:S2386"}) + @SuppressWarnings({"java:S1444", "java:S2386", "MS_PKGPROTECT"}) public static boolean[] transparent = null; private static boolean[] diffusesSkyLight = null; @@ -789,6 +789,7 @@ public static Block get(int id, int meta, Level level, int x, int y, int z, int @PowerNukkitOnly @Since("FUTURE") + @SuppressWarnings("java:S1874") public static boolean isSolid(int blockId) { if (blockId < 0 || blockId >= solid.length) { return true; @@ -807,7 +808,8 @@ public static boolean diffusesSkyLight(int blockId) { @PowerNukkitOnly @Since("FUTURE") - public static double hardness(int blockId) { + @SuppressWarnings("java:S1874") + public static double getHardness(int blockId) { if (blockId < 0 || blockId >= light.length) { return Double.MAX_VALUE; } @@ -816,7 +818,8 @@ public static double hardness(int blockId) { @PowerNukkitOnly @Since("FUTURE") - public static int light(int blockId) { + @SuppressWarnings("java:S1874") + public static int getLightLevel(int blockId) { if (blockId < 0 || blockId >= light.length) { return 0; } @@ -825,7 +828,8 @@ public static int light(int blockId) { @PowerNukkitOnly @Since("FUTURE") - public static int lightFilter(int blockId) { + @SuppressWarnings("java:S1874") + public static int getLightFilter(int blockId) { if (blockId < 0 || blockId >= lightFilter.length) { return 15; } @@ -834,6 +838,7 @@ public static int lightFilter(int blockId) { @PowerNukkitOnly @Since("FUTURE") + @SuppressWarnings("java:S1874") public static boolean isTransparent(int blockId) { if (blockId < 0 || blockId >= transparent.length) { return false; diff --git a/src/main/java/cn/nukkit/block/BlockBricks.java b/src/main/java/cn/nukkit/block/BlockBricks.java index 94e4081ce01..db22e545384 100644 --- a/src/main/java/cn/nukkit/block/BlockBricks.java +++ b/src/main/java/cn/nukkit/block/BlockBricks.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockBricksEndStone.java b/src/main/java/cn/nukkit/block/BlockBricksEndStone.java index cbd372d291e..fbbbe5aa6a6 100644 --- a/src/main/java/cn/nukkit/block/BlockBricksEndStone.java +++ b/src/main/java/cn/nukkit/block/BlockBricksEndStone.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockBricksNether.java b/src/main/java/cn/nukkit/block/BlockBricksNether.java index 1d6bc1c9d94..cd3a6523f86 100644 --- a/src/main/java/cn/nukkit/block/BlockBricksNether.java +++ b/src/main/java/cn/nukkit/block/BlockBricksNether.java @@ -2,7 +2,6 @@ import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockBricksRedNether.java b/src/main/java/cn/nukkit/block/BlockBricksRedNether.java index c82fabf0ab2..cded4e46cce 100644 --- a/src/main/java/cn/nukkit/block/BlockBricksRedNether.java +++ b/src/main/java/cn/nukkit/block/BlockBricksRedNether.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockCarvedPumpkin.java b/src/main/java/cn/nukkit/block/BlockCarvedPumpkin.java index 03dbb807009..9bc28eb0223 100644 --- a/src/main/java/cn/nukkit/block/BlockCarvedPumpkin.java +++ b/src/main/java/cn/nukkit/block/BlockCarvedPumpkin.java @@ -11,6 +11,7 @@ public class BlockCarvedPumpkin extends BlockPumpkin { @PowerNukkitOnly public BlockCarvedPumpkin() { + super(); } @Override diff --git a/src/main/java/cn/nukkit/block/BlockCoal.java b/src/main/java/cn/nukkit/block/BlockCoal.java index 0bdee19dc40..0797c1a07e3 100644 --- a/src/main/java/cn/nukkit/block/BlockCoal.java +++ b/src/main/java/cn/nukkit/block/BlockCoal.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockCrops.java b/src/main/java/cn/nukkit/block/BlockCrops.java index c82fc24a9a2..22f35ce8f44 100644 --- a/src/main/java/cn/nukkit/block/BlockCrops.java +++ b/src/main/java/cn/nukkit/block/BlockCrops.java @@ -8,12 +8,10 @@ import cn.nukkit.blockproperty.IntBlockProperty; import cn.nukkit.event.block.BlockGrowEvent; import cn.nukkit.item.Item; -import cn.nukkit.item.ItemID; import cn.nukkit.level.Level; import cn.nukkit.level.particle.BoneMealParticle; import cn.nukkit.math.BlockFace; import cn.nukkit.utils.BlockColor; -import cn.nukkit.utils.DyeColor; import javax.annotation.Nonnull; import java.util.concurrent.ThreadLocalRandom; diff --git a/src/main/java/cn/nukkit/block/BlockEndStone.java b/src/main/java/cn/nukkit/block/BlockEndStone.java index ad2de4b7bdb..c7a41ff8413 100644 --- a/src/main/java/cn/nukkit/block/BlockEndStone.java +++ b/src/main/java/cn/nukkit/block/BlockEndStone.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockGravel.java b/src/main/java/cn/nukkit/block/BlockGravel.java index 7acbeae1f7f..7a014c1334f 100644 --- a/src/main/java/cn/nukkit/block/BlockGravel.java +++ b/src/main/java/cn/nukkit/block/BlockGravel.java @@ -3,7 +3,6 @@ import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; -import cn.nukkit.item.ItemFlint; import cn.nukkit.item.ItemTool; import cn.nukkit.math.NukkitRandom; diff --git a/src/main/java/cn/nukkit/block/BlockHoney.java b/src/main/java/cn/nukkit/block/BlockHoney.java index b6bbeaeed30..518a7546654 100644 --- a/src/main/java/cn/nukkit/block/BlockHoney.java +++ b/src/main/java/cn/nukkit/block/BlockHoney.java @@ -18,6 +18,7 @@ public class BlockHoney extends BlockSolid { @PowerNukkitOnly public BlockHoney() { + super(); } @Override diff --git a/src/main/java/cn/nukkit/block/BlockOreDiamond.java b/src/main/java/cn/nukkit/block/BlockOreDiamond.java index df64c87989f..6e29ae64ece 100644 --- a/src/main/java/cn/nukkit/block/BlockOreDiamond.java +++ b/src/main/java/cn/nukkit/block/BlockOreDiamond.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.item.ItemDiamond; import cn.nukkit.item.ItemTool; diff --git a/src/main/java/cn/nukkit/block/BlockOreGold.java b/src/main/java/cn/nukkit/block/BlockOreGold.java index d3a9904366e..ec16269062f 100644 --- a/src/main/java/cn/nukkit/block/BlockOreGold.java +++ b/src/main/java/cn/nukkit/block/BlockOreGold.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; /** diff --git a/src/main/java/cn/nukkit/block/BlockOreLapis.java b/src/main/java/cn/nukkit/block/BlockOreLapis.java index f5f12d678cb..577cf8a6517 100644 --- a/src/main/java/cn/nukkit/block/BlockOreLapis.java +++ b/src/main/java/cn/nukkit/block/BlockOreLapis.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; import cn.nukkit.item.MinecraftItemID; diff --git a/src/main/java/cn/nukkit/block/BlockOreQuartz.java b/src/main/java/cn/nukkit/block/BlockOreQuartz.java index 1a451cacb16..53202565816 100644 --- a/src/main/java/cn/nukkit/block/BlockOreQuartz.java +++ b/src/main/java/cn/nukkit/block/BlockOreQuartz.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.item.ItemQuartz; import cn.nukkit.item.ItemTool; diff --git a/src/main/java/cn/nukkit/block/BlockOreRedstone.java b/src/main/java/cn/nukkit/block/BlockOreRedstone.java index f32f3a6a6fa..e86e6a01960 100644 --- a/src/main/java/cn/nukkit/block/BlockOreRedstone.java +++ b/src/main/java/cn/nukkit/block/BlockOreRedstone.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.item.ItemRedstone; import cn.nukkit.item.ItemTool; diff --git a/src/main/java/cn/nukkit/block/BlockPressurePlateStone.java b/src/main/java/cn/nukkit/block/BlockPressurePlateStone.java index 004a9479b34..0fd5c0a41c7 100644 --- a/src/main/java/cn/nukkit/block/BlockPressurePlateStone.java +++ b/src/main/java/cn/nukkit/block/BlockPressurePlateStone.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.entity.EntityLiving; import cn.nukkit.item.ItemTool; diff --git a/src/main/java/cn/nukkit/block/BlockRedSandstone.java b/src/main/java/cn/nukkit/block/BlockRedSandstone.java index 4b219ded082..6c53975fa5f 100644 --- a/src/main/java/cn/nukkit/block/BlockRedSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockRedSandstone.java @@ -2,7 +2,6 @@ import cn.nukkit.item.Item; import cn.nukkit.item.ItemBlock; -import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; /** diff --git a/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java b/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java index a1ccc459eb9..6d5770c168a 100644 --- a/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockSlabRedSandstone.java @@ -23,12 +23,12 @@ public class BlockSlabRedSandstone extends BlockSlab { public static final int RED_SANDSTONE = 0; public static final int PURPUR = 1; - public @PowerNukkitOnly static final int PRISMARINE = 2; - public @PowerNukkitOnly static final int PRISMARINE_BRICKS = 3; - public @PowerNukkitOnly static final int DARK_PRISMARINE = 4; - public @PowerNukkitOnly static final int MOSSY_COBBLESTONE = 5; - public @PowerNukkitOnly static final int SMOOTH_SANDSTONE = 6; - public @PowerNukkitOnly static final int RED_NETHER_BRICK = 7; + @PowerNukkitOnly public static final int PRISMARINE = 2; + @PowerNukkitOnly public static final int PRISMARINE_BRICKS = 3; + @PowerNukkitOnly public static final int DARK_PRISMARINE = 4; + @PowerNukkitOnly public static final int MOSSY_COBBLESTONE = 5; + @PowerNukkitOnly public static final int SMOOTH_SANDSTONE = 6; + @PowerNukkitOnly public static final int RED_NETHER_BRICK = 7; public BlockSlabRedSandstone() { this(0); diff --git a/src/main/java/cn/nukkit/block/BlockSmoothStone.java b/src/main/java/cn/nukkit/block/BlockSmoothStone.java index 09aa9a1ae74..7c3f94e85c7 100644 --- a/src/main/java/cn/nukkit/block/BlockSmoothStone.java +++ b/src/main/java/cn/nukkit/block/BlockSmoothStone.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/block/BlockSnowLayer.java b/src/main/java/cn/nukkit/block/BlockSnowLayer.java index c78d1693876..9072e898e63 100644 --- a/src/main/java/cn/nukkit/block/BlockSnowLayer.java +++ b/src/main/java/cn/nukkit/block/BlockSnowLayer.java @@ -13,7 +13,6 @@ import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; import cn.nukkit.item.ItemTool; -import cn.nukkit.level.GameRule; import cn.nukkit.level.Level; import cn.nukkit.level.biome.Biome; import cn.nukkit.math.AxisAlignedBB; diff --git a/src/main/java/cn/nukkit/block/BlockStairsAndesite.java b/src/main/java/cn/nukkit/block/BlockStairsAndesite.java index 09886a81e65..e321a7a853d 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsAndesite.java +++ b/src/main/java/cn/nukkit/block/BlockStairsAndesite.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsAndesitePolished.java b/src/main/java/cn/nukkit/block/BlockStairsAndesitePolished.java index de4d286186f..a23527c86bd 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsAndesitePolished.java +++ b/src/main/java/cn/nukkit/block/BlockStairsAndesitePolished.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsBrick.java b/src/main/java/cn/nukkit/block/BlockStairsBrick.java index 6223f4bea04..1afc0961682 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsBrick.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsCobblestone.java b/src/main/java/cn/nukkit/block/BlockStairsCobblestone.java index 10cc211e7fb..c220f3d6c7f 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsCobblestone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsCobblestone.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsDarkPrismarine.java b/src/main/java/cn/nukkit/block/BlockStairsDarkPrismarine.java index 5304fe6e0a0..a332d598c8f 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsDarkPrismarine.java +++ b/src/main/java/cn/nukkit/block/BlockStairsDarkPrismarine.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsDiorite.java b/src/main/java/cn/nukkit/block/BlockStairsDiorite.java index 3cb41689472..b43813f40d7 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsDiorite.java +++ b/src/main/java/cn/nukkit/block/BlockStairsDiorite.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsEndBrick.java b/src/main/java/cn/nukkit/block/BlockStairsEndBrick.java index 32d2f670be8..da68e232592 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsEndBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsEndBrick.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsGranite.java b/src/main/java/cn/nukkit/block/BlockStairsGranite.java index b6996ffd4a8..b2a3198034d 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsGranite.java +++ b/src/main/java/cn/nukkit/block/BlockStairsGranite.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsGranitePolished.java b/src/main/java/cn/nukkit/block/BlockStairsGranitePolished.java index 94bb392ebef..ae48361a84c 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsGranitePolished.java +++ b/src/main/java/cn/nukkit/block/BlockStairsGranitePolished.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsMossyCobblestone.java b/src/main/java/cn/nukkit/block/BlockStairsMossyCobblestone.java index 3ef132b2175..8de8afb444a 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsMossyCobblestone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsMossyCobblestone.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsMossyStoneBrick.java b/src/main/java/cn/nukkit/block/BlockStairsMossyStoneBrick.java index 03c76ee4e3e..183c82f6916 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsMossyStoneBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsMossyStoneBrick.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsNetherBrick.java b/src/main/java/cn/nukkit/block/BlockStairsNetherBrick.java index 1e5f4fb4769..1ad5034280a 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsNetherBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsNetherBrick.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsPrismarine.java b/src/main/java/cn/nukkit/block/BlockStairsPrismarine.java index 0a81068197f..209d5a4f338 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsPrismarine.java +++ b/src/main/java/cn/nukkit/block/BlockStairsPrismarine.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsPrismarineBrick.java b/src/main/java/cn/nukkit/block/BlockStairsPrismarineBrick.java index 062c48d9ef9..8d429284d57 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsPrismarineBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsPrismarineBrick.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsPurpur.java b/src/main/java/cn/nukkit/block/BlockStairsPurpur.java index 62073650988..9e2b8eda06d 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsPurpur.java +++ b/src/main/java/cn/nukkit/block/BlockStairsPurpur.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsQuartz.java b/src/main/java/cn/nukkit/block/BlockStairsQuartz.java index 4fe080476e6..b36617057bb 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsQuartz.java +++ b/src/main/java/cn/nukkit/block/BlockStairsQuartz.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsRedNetherBrick.java b/src/main/java/cn/nukkit/block/BlockStairsRedNetherBrick.java index ec09c757ac5..e0548612d13 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsRedNetherBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsRedNetherBrick.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsRedSandstone.java b/src/main/java/cn/nukkit/block/BlockStairsRedSandstone.java index f89bed45d65..e783462ed70 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsRedSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsRedSandstone.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsSandstone.java b/src/main/java/cn/nukkit/block/BlockStairsSandstone.java index 1e44caa92b9..44f4f3c143b 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsSandstone.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsSmoothQuartz.java b/src/main/java/cn/nukkit/block/BlockStairsSmoothQuartz.java index a937ae230c7..328bb231864 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsSmoothQuartz.java +++ b/src/main/java/cn/nukkit/block/BlockStairsSmoothQuartz.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsSmoothRedSandstone.java b/src/main/java/cn/nukkit/block/BlockStairsSmoothRedSandstone.java index 3107b7fd286..496c9b06f2d 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsSmoothRedSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsSmoothRedSandstone.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsSmoothSandstone.java b/src/main/java/cn/nukkit/block/BlockStairsSmoothSandstone.java index a55af5cfbe3..2468191b715 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsSmoothSandstone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsSmoothSandstone.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsStone.java b/src/main/java/cn/nukkit/block/BlockStairsStone.java index 2865714194b..0e83f8f035e 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsStone.java +++ b/src/main/java/cn/nukkit/block/BlockStairsStone.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStairsStoneBrick.java b/src/main/java/cn/nukkit/block/BlockStairsStoneBrick.java index 69e5f466063..4f89429f122 100644 --- a/src/main/java/cn/nukkit/block/BlockStairsStoneBrick.java +++ b/src/main/java/cn/nukkit/block/BlockStairsStoneBrick.java @@ -2,7 +2,6 @@ import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockStonecutter.java b/src/main/java/cn/nukkit/block/BlockStonecutter.java index d4c348ba17c..0422f312967 100644 --- a/src/main/java/cn/nukkit/block/BlockStonecutter.java +++ b/src/main/java/cn/nukkit/block/BlockStonecutter.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; public class BlockStonecutter extends BlockSolid { diff --git a/src/main/java/cn/nukkit/block/BlockTrapdoorIron.java b/src/main/java/cn/nukkit/block/BlockTrapdoorIron.java index f4c77126f41..3ab653f810e 100644 --- a/src/main/java/cn/nukkit/block/BlockTrapdoorIron.java +++ b/src/main/java/cn/nukkit/block/BlockTrapdoorIron.java @@ -2,7 +2,6 @@ import cn.nukkit.Player; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateHeavy.java b/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateHeavy.java index 6276f75182b..83cf4c669bf 100644 --- a/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateHeavy.java +++ b/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateHeavy.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.math.NukkitMath; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateLight.java b/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateLight.java index c686d117931..61a6257d232 100644 --- a/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateLight.java +++ b/src/main/java/cn/nukkit/block/BlockWeightedPressurePlateLight.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.item.ItemTool; import cn.nukkit.math.NukkitMath; import cn.nukkit.utils.BlockColor; diff --git a/src/main/java/cn/nukkit/block/BlockWoodStrippedJungle.java b/src/main/java/cn/nukkit/block/BlockWoodStrippedJungle.java index 9988c45442c..83e7517995c 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodStrippedJungle.java +++ b/src/main/java/cn/nukkit/block/BlockWoodStrippedJungle.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.blockproperty.value.WoodType; @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/block/BlockWoodStrippedOak.java b/src/main/java/cn/nukkit/block/BlockWoodStrippedOak.java index 0bbc9fe1c23..b46315be3a0 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodStrippedOak.java +++ b/src/main/java/cn/nukkit/block/BlockWoodStrippedOak.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.blockproperty.value.WoodType; @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/block/BlockWoodStrippedSpruce.java b/src/main/java/cn/nukkit/block/BlockWoodStrippedSpruce.java index ea5ce951852..c40c71e408a 100644 --- a/src/main/java/cn/nukkit/block/BlockWoodStrippedSpruce.java +++ b/src/main/java/cn/nukkit/block/BlockWoodStrippedSpruce.java @@ -1,7 +1,6 @@ package cn.nukkit.block; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.api.Since; import cn.nukkit.blockproperty.value.WoodType; @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityDispenser.java b/src/main/java/cn/nukkit/blockentity/BlockEntityDispenser.java index 55ca557e9a2..8d1877ad1d2 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityDispenser.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityDispenser.java @@ -9,8 +9,6 @@ @PowerNukkitOnly public class BlockEntityDispenser extends BlockEntityEjectable { - @PowerNukkitOnly protected DispenserInventory inventory; - @PowerNukkitOnly public BlockEntityDispenser(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); @@ -19,7 +17,8 @@ public BlockEntityDispenser(FullChunk chunk, CompoundTag nbt) { @PowerNukkitOnly @Override protected DispenserInventory createInventory() { - return inventory = new DispenserInventory(this); + inventory = new DispenserInventory(this); + return getInventory(); } @PowerNukkitOnly @@ -30,7 +29,7 @@ protected String getBlockEntityName() { @Override public DispenserInventory getInventory() { - return inventory; + return (DispenserInventory) inventory; } @Override diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityDropper.java b/src/main/java/cn/nukkit/blockentity/BlockEntityDropper.java index 3f6fd7eca35..5e28ca02f4a 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityDropper.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityDropper.java @@ -9,8 +9,6 @@ @PowerNukkitOnly public class BlockEntityDropper extends BlockEntityEjectable { - @PowerNukkitOnly protected DropperInventory inventory; - @PowerNukkitOnly public BlockEntityDropper(FullChunk chunk, CompoundTag nbt) { super(chunk, nbt); @@ -19,7 +17,8 @@ public BlockEntityDropper(FullChunk chunk, CompoundTag nbt) { @PowerNukkitOnly @Override protected DropperInventory createInventory() { - return inventory = new DropperInventory(this); + inventory = new DropperInventory(this); + return getInventory(); } @PowerNukkitOnly @@ -30,7 +29,7 @@ protected String getBlockEntityName() { @Override public DropperInventory getInventory() { - return inventory; + return (DropperInventory) inventory; } @Override diff --git a/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java index 2d811a59851..6ff342ed353 100644 --- a/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java @@ -17,6 +17,7 @@ public class BoatDispenseBehavior extends DefaultDispenseBehavior { @PowerNukkitOnly public BoatDispenseBehavior() { + super(); } @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java index fa8ae1b488b..d38318adbce 100644 --- a/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/DropperDispenseBehavior.java @@ -14,6 +14,7 @@ public class DropperDispenseBehavior extends DefaultDispenseBehavior { @PowerNukkitOnly public DropperDispenseBehavior() { + super(); } @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/dispenser/DyeDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/DyeDispenseBehavior.java index bed8053b9c4..638cc0de850 100644 --- a/src/main/java/cn/nukkit/dispenser/DyeDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/DyeDispenseBehavior.java @@ -10,6 +10,7 @@ public class DyeDispenseBehavior extends DefaultDispenseBehavior { @PowerNukkitOnly public DyeDispenseBehavior() { + super(); } @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/dispenser/FireworksDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/FireworksDispenseBehavior.java index 380d9ed9dfb..f7c80d2a8e1 100644 --- a/src/main/java/cn/nukkit/dispenser/FireworksDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/FireworksDispenseBehavior.java @@ -15,6 +15,7 @@ public class FireworksDispenseBehavior extends DefaultDispenseBehavior { @PowerNukkitOnly public FireworksDispenseBehavior() { + super(); } @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/dispenser/FlintAndSteelDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/FlintAndSteelDispenseBehavior.java index 3aee9a176df..fd88e362bc3 100644 --- a/src/main/java/cn/nukkit/dispenser/FlintAndSteelDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/FlintAndSteelDispenseBehavior.java @@ -14,6 +14,7 @@ public class FlintAndSteelDispenseBehavior extends DefaultDispenseBehavior { @PowerNukkitOnly public FlintAndSteelDispenseBehavior() { + super(); } @Override diff --git a/src/main/java/cn/nukkit/dispenser/ShulkerBoxDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/ShulkerBoxDispenseBehavior.java index 7be9022887c..4c6f5d9072c 100644 --- a/src/main/java/cn/nukkit/dispenser/ShulkerBoxDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/ShulkerBoxDispenseBehavior.java @@ -12,6 +12,7 @@ public class ShulkerBoxDispenseBehavior extends DefaultDispenseBehavior { @PowerNukkitOnly public ShulkerBoxDispenseBehavior() { + super(); } @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/dispenser/SpawnEggDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/SpawnEggDispenseBehavior.java index 1af5c8eee62..27ff98de721 100644 --- a/src/main/java/cn/nukkit/dispenser/SpawnEggDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/SpawnEggDispenseBehavior.java @@ -14,6 +14,7 @@ public class SpawnEggDispenseBehavior extends DefaultDispenseBehavior { @PowerNukkitOnly public SpawnEggDispenseBehavior() { + super(); } @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/dispenser/TNTDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/TNTDispenseBehavior.java index d6f97a979df..5f6abc7ce91 100644 --- a/src/main/java/cn/nukkit/dispenser/TNTDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/TNTDispenseBehavior.java @@ -13,6 +13,7 @@ public class TNTDispenseBehavior extends DefaultDispenseBehavior { @PowerNukkitOnly public TNTDispenseBehavior() { + super(); } @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java index 55db780c1d2..786fc9ae88d 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java @@ -140,8 +140,6 @@ public boolean onUpdate(int currentTick) { hasUpdate = true; } - Random random = ThreadLocalRandom.current(); - if (inWater) { if (this.waitTimer == 240) { this.waitTimer = this.waitChance << 1; @@ -153,6 +151,7 @@ public boolean onUpdate(int currentTick) { --this.waitTimer; } if (this.waitTimer == 0) { + ThreadLocalRandom random = ThreadLocalRandom.current(); if (random.nextInt(100) < 90) { this.attractTimer = (random.nextInt(40) + 20); this.spawnFish(); @@ -164,7 +163,7 @@ public boolean onUpdate(int currentTick) { } } else if (!this.caught) { if (this.attractFish()) { - this.caughtTimer = (random.nextInt(20) + 30); + this.caughtTimer = (ThreadLocalRandom.current().nextInt(20) + 30); this.fishBites(); this.caught = true; } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index 6cccd1397f9..a0073d39092 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -8,7 +8,6 @@ import cn.nukkit.entity.EntityLiving; import cn.nukkit.entity.data.LongEntityData; import cn.nukkit.entity.item.EntityEndCrystal; -import cn.nukkit.event.block.BellRingEvent; import cn.nukkit.event.entity.*; import cn.nukkit.event.entity.EntityDamageEvent.DamageCause; import cn.nukkit.level.MovingObjectPosition; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index 6f710424874..6243a4a6fc7 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -39,6 +39,9 @@ public class EntityThrownTrident extends EntityProjectile { public static final int NETWORK_ID = 73; + private static final String TAG_PICKUP = "pickup"; + private static final String TAG_TRIDENT = "Trident"; + private static final String NAME_TRIDENT = "Trident"; protected Item trident; @@ -122,21 +125,21 @@ public EntityThrownTrident(FullChunk chunk, CompoundTag nbt, Entity shootingEnti @Since("1.5.1.0-PN") @Override public String getOriginalName() { - return "Trident"; + return NAME_TRIDENT; } @Override protected void initEntity() { super.initEntity(); - this.trident = namedTag.contains("Trident") ? NBTIO.getItemHelper(namedTag.getCompound("Trident")) : Item.get(0); - this.pickupMode = namedTag.contains("pickup") ? namedTag.getByte("pickup") : PICKUP_ANY; + this.trident = namedTag.contains(TAG_TRIDENT) ? NBTIO.getItemHelper(namedTag.getCompound(TAG_TRIDENT)) : Item.get(0); + this.pickupMode = namedTag.contains(TAG_PICKUP) ? namedTag.getByte(TAG_PICKUP) : PICKUP_ANY; this.closeOnCollide = false; this.hasAge = false; - if (namedTag.contains("Trident")) { - this.trident = NBTIO.getItemHelper(namedTag.getCompound("Trident")); + if (namedTag.contains(TAG_TRIDENT)) { + this.trident = NBTIO.getItemHelper(namedTag.getCompound(TAG_TRIDENT)); this.loyaltyLevel = this.trident.getEnchantmentLevel(Enchantment.ID_TRIDENT_LOYALTY); this.hasChanneling = this.trident.hasEnchantment(Enchantment.ID_TRIDENT_CHANNELING); this.riptideLevel = this.trident.getEnchantmentLevel(Enchantment.ID_TRIDENT_RIPTIDE); @@ -159,14 +162,14 @@ protected void initEntity() { ListTag collisionPosList = this.namedTag.getList("CollisionPos", DoubleTag.class); collisionPos = new Vector3(collisionPosList.get(0).data, collisionPosList.get(1).data, collisionPosList.get(2).data); } else { - collisionPos = this.defaultCollisionPos.clone(); + collisionPos = defaultCollisionPos.clone(); } if (namedTag.contains("StuckToBlockPos")) { ListTag stuckToBlockPosList = this.namedTag.getList("StuckToBlockPos", IntTag.class); stuckToBlockPos = new BlockVector3(stuckToBlockPosList.get(0).data, stuckToBlockPosList.get(1).data, stuckToBlockPosList.get(2).data); } else { - stuckToBlockPos = this.defaultStuckToBlockPos.clone(); + stuckToBlockPos = defaultStuckToBlockPos.clone(); } if (namedTag.contains("favoredSlot")) { @@ -192,8 +195,8 @@ protected void initEntity() { public void saveNBT() { super.saveNBT(); - this.namedTag.put("Trident", NBTIO.putItemHelper(this.trident)); - this.namedTag.putByte("pickup", this.pickupMode); + this.namedTag.put(TAG_TRIDENT, NBTIO.putItemHelper(this.trident)); + this.namedTag.putByte(TAG_PICKUP, this.pickupMode); this.namedTag.putList(new ListTag("CollisionPos") .add(new DoubleTag("0", this.collisionPos.x)) .add(new DoubleTag("1", this.collisionPos.y)) diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java index 80d30cf869f..2d2c2d68e4c 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java @@ -33,14 +33,14 @@ public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause caus } public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause cause, Map modifiers, float knockBack) { - this(damager, entity, cause, modifiers, knockBack, new Enchantment[0]); + this(damager, entity, cause, modifiers, knockBack, Enchantment.EMPTY_ARRAY); } public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause cause, Map modifiers, float knockBack, Enchantment[] enchantments) { super(entity, cause, modifiers); this.damager = damager; this.knockBack = knockBack; - this.enchantments = enchantments; + this.enchantments = enchantments == null? Enchantment.EMPTY_ARRAY : enchantments.clone(); this.addAttackerModifiers(damager); } @@ -67,6 +67,6 @@ public void setKnockBack(float knockBack) { } public Enchantment[] getWeaponEnchantments() { - return enchantments; + return enchantments.length > 0? enchantments.clone() : Enchantment.EMPTY_ARRAY; } } diff --git a/src/main/java/cn/nukkit/inventory/CraftingManager.java b/src/main/java/cn/nukkit/inventory/CraftingManager.java index 053094f0fb4..f4a32ba1b42 100644 --- a/src/main/java/cn/nukkit/inventory/CraftingManager.java +++ b/src/main/java/cn/nukkit/inventory/CraftingManager.java @@ -50,19 +50,19 @@ public class CraftingManager { protected final Map> shapedRecipes = new Int2ObjectOpenHashMap<>(); public final Map furnaceRecipes = new Int2ObjectOpenHashMap<>(); - public @PowerNukkitOnly final Map blastFurnaceRecipes = new Int2ObjectOpenHashMap<>(); - public @PowerNukkitOnly final Map smokerRecipes = new Int2ObjectOpenHashMap<>(); - public @PowerNukkitOnly final Map campfireRecipes = new Int2ObjectOpenHashMap<>(); + @PowerNukkitOnly public final Map blastFurnaceRecipes = new Int2ObjectOpenHashMap<>(); + @PowerNukkitOnly public final Map smokerRecipes = new Int2ObjectOpenHashMap<>(); + @PowerNukkitOnly public final Map campfireRecipes = new Int2ObjectOpenHashMap<>(); @Since("1.4.0.0-PN") public final Map multiRecipes = new HashMap<>(); public final Map brewingRecipes = new Int2ObjectOpenHashMap<>(); public final Map containerRecipes = new Int2ObjectOpenHashMap<>(); - public @PowerNukkitOnly final Map stonecutterRecipes = new Int2ObjectOpenHashMap<>(); + @PowerNukkitOnly public final Map stonecutterRecipes = new Int2ObjectOpenHashMap<>(); private static int RECIPE_COUNT = 0; protected final Map> shapelessRecipes = new Int2ObjectOpenHashMap<>(); - protected @PowerNukkitOnly final Map> cartographyRecipes = new Int2ObjectOpenHashMap<>(); + @PowerNukkitOnly protected final Map> cartographyRecipes = new Int2ObjectOpenHashMap<>(); private final Int2ObjectOpenHashMap> smithingRecipes = new Int2ObjectOpenHashMap<>(); diff --git a/src/main/java/cn/nukkit/inventory/transaction/InventoryTransaction.java b/src/main/java/cn/nukkit/inventory/transaction/InventoryTransaction.java index ce166042b4b..7e9a179c9ac 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/InventoryTransaction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/InventoryTransaction.java @@ -6,7 +6,6 @@ import cn.nukkit.event.inventory.InventoryClickEvent; import cn.nukkit.event.inventory.InventoryTransactionEvent; import cn.nukkit.inventory.Inventory; -import cn.nukkit.inventory.PlayerInventory; import cn.nukkit.inventory.transaction.action.InventoryAction; import cn.nukkit.inventory.transaction.action.SlotChangeAction; import cn.nukkit.inventory.transaction.action.TakeLevelAction; diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/EnchantingAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/EnchantingAction.java index ce822ad22d0..ad16934b53b 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/EnchantingAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/EnchantingAction.java @@ -1,13 +1,15 @@ package cn.nukkit.inventory.transaction.action; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.Since; import cn.nukkit.item.Item; import lombok.ToString; @Since("1.3.1.0-PN") @ToString(callSuper = true) -public class EnchantingAction extends InventoryAction { +@PowerNukkitDifference(extendsOnlyInPowerNukkit = NoOpIventoryAction.class, insteadOf = InventoryAction.class) +public class EnchantingAction extends NoOpIventoryAction { private int type; @Since("1.3.1.0-PN") @@ -21,20 +23,6 @@ public boolean isValid(Player source) { return source.getWindowById(Player.ENCHANT_WINDOW_ID) != null; } - @Override - public boolean execute(Player source) { - return true; - } - - @Override - public void onExecuteSuccess(Player source) { - } - - @Override - public void onExecuteFail(Player source) { - - } - @Since("1.3.1.0-PN") public int getType() { return type; diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/NoOpIventoryAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/NoOpIventoryAction.java new file mode 100644 index 00000000000..4f4eca905e2 --- /dev/null +++ b/src/main/java/cn/nukkit/inventory/transaction/action/NoOpIventoryAction.java @@ -0,0 +1,33 @@ +package cn.nukkit.inventory.transaction.action; + +import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.item.Item; + +/** + * @author joserobjr + * @since 2021-12-11 + */ +@PowerNukkitOnly +@Since("FUTURE") +public abstract class NoOpIventoryAction extends InventoryAction { + public NoOpIventoryAction(Item sourceItem, Item targetItem) { + super(sourceItem, targetItem); + } + + @Override + public boolean execute(Player source) { + return true; + } + + @Override + public void onExecuteSuccess(Player source) { + // Does nothing + } + + @Override + public void onExecuteFail(Player source) { + // Does nothing + } +} diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/RepairItemAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/RepairItemAction.java index 1fb3f4a8f26..7c6cd48a14c 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/RepairItemAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/RepairItemAction.java @@ -1,11 +1,15 @@ package cn.nukkit.inventory.transaction.action; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.Since; import cn.nukkit.item.Item; +import lombok.ToString; @Since("1.4.0.0-PN") -public class RepairItemAction extends InventoryAction { +@ToString(callSuper = true) +@PowerNukkitDifference(extendsOnlyInPowerNukkit = NoOpIventoryAction.class, insteadOf = InventoryAction.class) +public class RepairItemAction extends NoOpIventoryAction { private int type; @@ -20,21 +24,6 @@ public boolean isValid(Player source) { return source.getWindowById(Player.ANVIL_WINDOW_ID) != null; } - @Override - public boolean execute(Player source) { - return true; - } - - @Override - public void onExecuteSuccess(Player source) { - - } - - @Override - public void onExecuteFail(Player source) { - - } - @Since("1.4.0.0-PN") public int getType() { return this.type; diff --git a/src/main/java/cn/nukkit/item/ItemBow.java b/src/main/java/cn/nukkit/item/ItemBow.java index bc2d9276df9..4db6ed992a4 100644 --- a/src/main/java/cn/nukkit/item/ItemBow.java +++ b/src/main/java/cn/nukkit/item/ItemBow.java @@ -118,7 +118,7 @@ public boolean onRelease(Player player, int ticksUsed) { boolean infinity = infinityEnchant != null && infinityEnchant.getLevel() > 0; EntityProjectile projectile; if (infinity && (projectile = entityShootBowEvent.getProjectile()) instanceof EntityArrow) { - ((EntityArrow) projectile).setPickupMode(EntityArrow.PICKUP_CREATIVE); + ((EntityArrow) projectile).setPickupMode(EntityProjectile.PICKUP_CREATIVE); } if (player.isAdventure() || player.isSurvival()) { if (!infinity) { diff --git a/src/main/java/cn/nukkit/item/ItemFireCharge.java b/src/main/java/cn/nukkit/item/ItemFireCharge.java index 3644e44c85f..1482cee2f88 100644 --- a/src/main/java/cn/nukkit/item/ItemFireCharge.java +++ b/src/main/java/cn/nukkit/item/ItemFireCharge.java @@ -6,7 +6,6 @@ import cn.nukkit.block.BlockID; import cn.nukkit.event.block.BlockIgniteEvent; import cn.nukkit.level.Level; -import cn.nukkit.level.Sound; import cn.nukkit.math.BlockFace; import cn.nukkit.network.protocol.LevelEventPacket; diff --git a/src/main/java/cn/nukkit/item/ItemSpyglass.java b/src/main/java/cn/nukkit/item/ItemSpyglass.java index efb7c4d1b4d..eee373b8818 100644 --- a/src/main/java/cn/nukkit/item/ItemSpyglass.java +++ b/src/main/java/cn/nukkit/item/ItemSpyglass.java @@ -14,7 +14,7 @@ public ItemSpyglass(Integer meta) { } public ItemSpyglass(Integer meta, int count) { - super(SPYGLASS, 0, count, "Spyglass"); + super(SPYGLASS, meta, count, "Spyglass"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemTrident.java b/src/main/java/cn/nukkit/item/ItemTrident.java index f7bae8b7df6..b62457c6225 100644 --- a/src/main/java/cn/nukkit/item/ItemTrident.java +++ b/src/main/java/cn/nukkit/item/ItemTrident.java @@ -3,8 +3,6 @@ import cn.nukkit.Player; import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitDifference; -import cn.nukkit.entity.Entity; -import cn.nukkit.entity.projectile.EntityProjectile; import cn.nukkit.entity.projectile.EntityThrownTrident; import cn.nukkit.event.entity.EntityShootBowEvent; import cn.nukkit.event.entity.ProjectileLaunchEvent; diff --git a/src/main/java/cn/nukkit/item/randomitem/Fishing.java b/src/main/java/cn/nukkit/item/randomitem/Fishing.java index 31ca82ed496..12ec5110b0b 100644 --- a/src/main/java/cn/nukkit/item/randomitem/Fishing.java +++ b/src/main/java/cn/nukkit/item/randomitem/Fishing.java @@ -1,6 +1,8 @@ package cn.nukkit.item.randomitem; +import cn.nukkit.block.BlockID; import cn.nukkit.item.Item; +import cn.nukkit.item.ItemID; import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.math.NukkitMath; import cn.nukkit.potion.Potion; @@ -18,26 +20,26 @@ public final class Fishing { public static final Selector FISHES = putSelector(new Selector(ROOT_FISHING), 0.85F); public static final Selector TREASURES = putSelector(new Selector(ROOT_FISHING), 0.05F); public static final Selector JUNKS = putSelector(new Selector(ROOT_FISHING), 0.1F); - public static final Selector FISH = putSelector(new ConstantItemSelector(Item.RAW_FISH, FISHES), 0.6F); - public static final Selector SALMON = putSelector(new ConstantItemSelector(Item.RAW_SALMON, FISHES), 0.25F); - public static final Selector CLOWNFISH = putSelector(new ConstantItemSelector(Item.CLOWNFISH, FISHES), 0.02F); - public static final Selector PUFFERFISH = putSelector(new ConstantItemSelector(Item.PUFFERFISH, FISHES), 0.13F); - public static final Selector TREASURE_BOW = putSelector(new ConstantItemSelector(Item.BOW, TREASURES), 0.1667F); - public static final Selector TREASURE_ENCHANTED_BOOK = putSelector(new ConstantItemSelector(Item.ENCHANTED_BOOK, TREASURES), 0.1667F); - public static final Selector TREASURE_FISHING_ROD = putSelector(new ConstantItemSelector(Item.FISHING_ROD, TREASURES), 0.1667F); - public static final Selector TREASURE_NAME_TAG = putSelector(new ConstantItemSelector(Item.NAME_TAG, TREASURES), 0.1667F); - public static final Selector TREASURE_SADDLE = putSelector(new ConstantItemSelector(Item.SADDLE, TREASURES), 0.1667F); - public static final Selector TREASURE_NAUTILUS_SHELL = putSelector(new ConstantItemSelector(Item.NAUTILUS_SHELL, TREASURES), 0.1667F); - public static final Selector JUNK_BOWL = putSelector(new ConstantItemSelector(Item.BOWL, JUNKS), 0.12F); - public static final Selector JUNK_FISHING_ROD = putSelector(new ConstantItemSelector(Item.FISHING_ROD, JUNKS), 0.024F); - public static final Selector JUNK_LEATHER = putSelector(new ConstantItemSelector(Item.LEATHER, JUNKS), 0.12F); - public static final Selector JUNK_LEATHER_BOOTS = putSelector(new ConstantItemSelector(Item.LEATHER_BOOTS, JUNKS), 0.12F); - public static final Selector JUNK_ROTTEN_FLESH = putSelector(new ConstantItemSelector(Item.ROTTEN_FLESH, JUNKS), 0.12F); - public static final Selector JUNK_STICK = putSelector(new ConstantItemSelector(Item.STICK, JUNKS), 0.06F); - public static final Selector JUNK_STRING_ITEM = putSelector(new ConstantItemSelector(Item.STRING, JUNKS), 0.06F); - public static final Selector JUNK_WATTER_BOTTLE = putSelector(new ConstantItemSelector(Item.POTION, Potion.NO_EFFECTS, JUNKS), 0.12F); - public static final Selector JUNK_BONE = putSelector(new ConstantItemSelector(Item.BONE, JUNKS), 0.12F); - public static final Selector JUNK_TRIPWIRE_HOOK = putSelector(new ConstantItemSelector(Item.TRIPWIRE_HOOK, JUNKS), 0.12F); + public static final Selector FISH = putSelector(new ConstantItemSelector(ItemID.RAW_FISH, FISHES), 0.6F); + public static final Selector SALMON = putSelector(new ConstantItemSelector(ItemID.RAW_SALMON, FISHES), 0.25F); + public static final Selector CLOWNFISH = putSelector(new ConstantItemSelector(ItemID.CLOWNFISH, FISHES), 0.02F); + public static final Selector PUFFERFISH = putSelector(new ConstantItemSelector(ItemID.PUFFERFISH, FISHES), 0.13F); + public static final Selector TREASURE_BOW = putSelector(new ConstantItemSelector(ItemID.BOW, TREASURES), 0.1667F); + public static final Selector TREASURE_ENCHANTED_BOOK = putSelector(new ConstantItemSelector(ItemID.ENCHANTED_BOOK, TREASURES), 0.1667F); + public static final Selector TREASURE_FISHING_ROD = putSelector(new ConstantItemSelector(ItemID.FISHING_ROD, TREASURES), 0.1667F); + public static final Selector TREASURE_NAME_TAG = putSelector(new ConstantItemSelector(ItemID.NAME_TAG, TREASURES), 0.1667F); + public static final Selector TREASURE_SADDLE = putSelector(new ConstantItemSelector(ItemID.SADDLE, TREASURES), 0.1667F); + public static final Selector TREASURE_NAUTILUS_SHELL = putSelector(new ConstantItemSelector(ItemID.NAUTILUS_SHELL, TREASURES), 0.1667F); + public static final Selector JUNK_BOWL = putSelector(new ConstantItemSelector(ItemID.BOWL, JUNKS), 0.12F); + public static final Selector JUNK_FISHING_ROD = putSelector(new ConstantItemSelector(ItemID.FISHING_ROD, JUNKS), 0.024F); + public static final Selector JUNK_LEATHER = putSelector(new ConstantItemSelector(ItemID.LEATHER, JUNKS), 0.12F); + public static final Selector JUNK_LEATHER_BOOTS = putSelector(new ConstantItemSelector(ItemID.LEATHER_BOOTS, JUNKS), 0.12F); + public static final Selector JUNK_ROTTEN_FLESH = putSelector(new ConstantItemSelector(ItemID.ROTTEN_FLESH, JUNKS), 0.12F); + public static final Selector JUNK_STICK = putSelector(new ConstantItemSelector(ItemID.STICK, JUNKS), 0.06F); + public static final Selector JUNK_STRING_ITEM = putSelector(new ConstantItemSelector(ItemID.STRING, JUNKS), 0.06F); + public static final Selector JUNK_WATTER_BOTTLE = putSelector(new ConstantItemSelector(ItemID.POTION, Potion.NO_EFFECTS, JUNKS), 0.12F); + public static final Selector JUNK_BONE = putSelector(new ConstantItemSelector(ItemID.BONE, JUNKS), 0.12F); + public static final Selector JUNK_TRIPWIRE_HOOK = putSelector(new ConstantItemSelector(Item.getBlock(BlockID.TRIPWIRE_HOOK), JUNKS), 0.12F); public static Item getFishingResult(Item rod) { int fortuneLevel = 0; diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 4858d490554..f918c7de45e 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -1770,7 +1770,7 @@ public void updateBlockSkyLight(int x, int y, int z) { if (yPlusOne == oldHeightMap) { // Block changed directly beneath the heightmap. Check if a block was removed or changed to a different light-filter newHeightMap = chunk.recalculateHeightMapColumn(x & 0x0f, z & 0x0f); } else if (yPlusOne > oldHeightMap) { // Block changed above the heightmap - if (Block.lightFilter(sourceId) > 1 || Block.diffusesSkyLight(sourceId)) { + if (Block.getLightFilter(sourceId) > 1 || Block.diffusesSkyLight(sourceId)) { chunk.setHeightMap(x & 0xf, y & 0xf, yPlusOne); newHeightMap = yPlusOne; } else { // Block changed which has no effect on direct sky light, for example placing or removing glass. @@ -1789,7 +1789,7 @@ public void updateBlockSkyLight(int x, int y, int z) { setBlockSkyLightAt(x, i, z, 15); } } else { // No heightmap change, block changed "underground" - setBlockSkyLightAt(x, y, z, Math.max(0, getHighestAdjacentBlockSkyLight(x, y, z) - Block.lightFilter(sourceId))); + setBlockSkyLightAt(x, y, z, Math.max(0, getHighestAdjacentBlockSkyLight(x, y, z) - Block.getLightFilter(sourceId))); } } @@ -1894,7 +1894,7 @@ public void updateBlockLight(Map> map) { int z = Hash.hashBlockZ(node); int lightLevel = this.getBlockLightAt(x, y, z) - - Block.lightFilter(this.getBlockIdAt(x, y, z)); + - Block.getLightFilter(this.getBlockIdAt(x, y, z)); if (lightLevel >= 1) { this.computeSpreadBlockLight(x - 1, y, z, lightLevel, lightPropagationQueue, visited); diff --git a/src/main/java/cn/nukkit/level/Location.java b/src/main/java/cn/nukkit/level/Location.java index 7bc34f3090b..0574a76f508 100644 --- a/src/main/java/cn/nukkit/level/Location.java +++ b/src/main/java/cn/nukkit/level/Location.java @@ -78,7 +78,10 @@ public static Location fromObject(Vector3 pos, Level level, double yaw, double p } public static Location fromObject(Vector3 pos, Level level, double yaw, double pitch, double headYaw) { - return new Location(pos.x, pos.y, pos.z, yaw, pitch, headYaw, (level == null) ? ((pos instanceof Position) ? ((Position) pos).level : null) : level); + if (level == null && pos instanceof Position) { + level = ((Position) pos).level; + } + return new Location(pos.x, pos.y, pos.z, yaw, pitch, headYaw, level); } public double getYaw() { diff --git a/src/main/java/cn/nukkit/level/biome/type/CoveredBiome.java b/src/main/java/cn/nukkit/level/biome/type/CoveredBiome.java index 0f20bc29b15..0b1960bcc65 100644 --- a/src/main/java/cn/nukkit/level/biome/type/CoveredBiome.java +++ b/src/main/java/cn/nukkit/level/biome/type/CoveredBiome.java @@ -50,6 +50,7 @@ public abstract class CoveredBiome extends Biome { * * @return cover block */ + @SuppressWarnings("unused") public int getCoverId(int x, int z) { useNewRakNetCover = false; return getCoverBlock() << 4; @@ -117,6 +118,7 @@ public int getSurfaceDepth(int y) { } } + @SuppressWarnings("unused") public int getSurfaceId(int x, int y, int z) { useNewRakNetSurface = false; return getSurfaceBlock(y) << 4 | (getSurfaceMeta(y) & 0xF); @@ -197,6 +199,7 @@ public int getGroundDepth(int y) { } } + @SuppressWarnings("unused") public int getGroundId(int x, int y, int z) { useNewRakNetGroundBlock = false; return getGroundBlock(y) << 4 | (getGroundMeta(y) & 0xF); @@ -276,8 +279,9 @@ public int getStoneBlock() { */ @PowerNukkitOnly @Since("1.4.0.0-PN") + @SuppressWarnings("unused") public void preCover(int x, int z) { - + // Does nothing } public void doCover(int x, int z, @Nonnull FullChunk chunk) { diff --git a/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java b/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java index ec3165e6b42..13836682a54 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java +++ b/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java @@ -49,8 +49,8 @@ public class BlockStorage { private static final int BLOCK_ID_MASK = 0x00FF; private static final int BLOCK_ID_EXTRA_MASK = 0xFF00; private static final int BLOCK_ID_FULL = BLOCK_ID_MASK | BLOCK_ID_EXTRA_MASK; - - public @PowerNukkitOnly static final int SECTION_SIZE = 4096; + + @PowerNukkitOnly public static final int SECTION_SIZE = 4096; private static final BlockState[] EMPTY = new BlockState[SECTION_SIZE]; static { diff --git a/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java b/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java index b974e228d7d..b704b4158d2 100644 --- a/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java +++ b/src/main/java/cn/nukkit/level/format/generic/BaseFullChunk.java @@ -269,7 +269,7 @@ public int recalculateHeightMapColumn(int x, int z) { int max = getHighestBlockAt(x, z, false); int y; for (y = max; y >= 0; --y) { - if (Block.lightFilter(getBlockIdAt(x, y, z)) > 1 || Block.diffusesSkyLight(getBlockIdAt(x, y, z))) { + if (Block.getLightFilter(getBlockIdAt(x, y, z)) > 1 || Block.diffusesSkyLight(getBlockIdAt(x, y, z))) { break; } } @@ -346,7 +346,7 @@ public void populateSkyLight() { nextDecrease += 1; // skylight value decreases by one for each block under a block // that diffuses skylight. The block itself has a value of 15 (if it's a top-most block) } else { - nextDecrease -= Block.lightFilter(id); // blocks under a light filtering block will have a skylight value + nextDecrease -= Block.getLightFilter(id); // blocks under a light filtering block will have a skylight value // decreased by the lightFilter value of that block. The block itself // has a value of 15 (if it's a top-most block) } diff --git a/src/main/java/cn/nukkit/level/generator/Flat.java b/src/main/java/cn/nukkit/level/generator/Flat.java index 6a6d4c72b59..b9f47d6d384 100644 --- a/src/main/java/cn/nukkit/level/generator/Flat.java +++ b/src/main/java/cn/nukkit/level/generator/Flat.java @@ -1,6 +1,5 @@ package cn.nukkit.level.generator; -import cn.nukkit.Server; import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; import cn.nukkit.level.ChunkManager; diff --git a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorGroundFire.java b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorGroundFire.java index 0aa1b55ba7d..9ee1b4ad492 100644 --- a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorGroundFire.java +++ b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorGroundFire.java @@ -25,7 +25,7 @@ protected int getBlockId(int x, int z, NukkitRandom random, FullChunk chunk) { @Override protected void placeBlock(int x, int y, int z, int id, FullChunk chunk, NukkitRandom random) { super.placeBlock(x, y, z, id, chunk, random); - chunk.setBlockLight(x, y, z, Block.light(FIRE)); + chunk.setBlockLight(x, y, z, Block.getLightLevel(FIRE)); } @Override diff --git a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorLava.java b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorLava.java index 4563474d468..b8b49772bf3 100644 --- a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorLava.java +++ b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorLava.java @@ -36,7 +36,7 @@ public void populate(ChunkManager level, int chunkX, int chunkZ, NukkitRandom ra int y = this.getHighestWorkableBlock(chunk, x, z); if (y != -1 && chunk.getBlockId(x, y, z) == Block.AIR) { chunk.setBlock(x, y, z, Block.LAVA); - chunk.setBlockLight(x, y, z, Block.light(Block.LAVA)); + chunk.setBlockLight(x, y, z, Block.getLightLevel(Block.LAVA)); this.lavaSpread(bx + x, y, bz + z); } } diff --git a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOreEmerald.java b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOreEmerald.java index fb1c625466c..9610f440e6c 100644 --- a/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOreEmerald.java +++ b/src/main/java/cn/nukkit/level/generator/populator/impl/PopulatorOreEmerald.java @@ -21,6 +21,7 @@ public class PopulatorOreEmerald extends Populator { @PowerNukkitOnly public PopulatorOreEmerald() { + super(); } @Override diff --git a/src/main/java/cn/nukkit/network/protocol/PlayerActionPacket.java b/src/main/java/cn/nukkit/network/protocol/PlayerActionPacket.java index 835c40ea6c5..52dfbce295c 100644 --- a/src/main/java/cn/nukkit/network/protocol/PlayerActionPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/PlayerActionPacket.java @@ -36,7 +36,7 @@ public class PlayerActionPacket extends DataPacket { public static final int ACTION_STOP_SWIMMING = 22; public static final int ACTION_START_SPIN_ATTACK = 23; public static final int ACTION_STOP_SPIN_ATTACK = 24; - public @PowerNukkitOnly static final int ACTION_INTERACT_BLOCK = 25; + @PowerNukkitOnly public static final int ACTION_INTERACT_BLOCK = 25; public long entityId; public int action; diff --git a/src/main/java/cn/nukkit/network/protocol/PlayerEnchantOptionsPacket.java b/src/main/java/cn/nukkit/network/protocol/PlayerEnchantOptionsPacket.java index a9a0a089e46..b5709d3aaa2 100644 --- a/src/main/java/cn/nukkit/network/protocol/PlayerEnchantOptionsPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/PlayerEnchantOptionsPacket.java @@ -1,7 +1,5 @@ package cn.nukkit.network.protocol; -import cn.nukkit.api.DeprecationDetails; -import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import it.unimi.dsi.fastutil.objects.ObjectArrayList; import lombok.ToString; diff --git a/src/main/java/cn/nukkit/network/protocol/SetSpawnPositionPacket.java b/src/main/java/cn/nukkit/network/protocol/SetSpawnPositionPacket.java index 3c8345c97a5..e7099c47113 100644 --- a/src/main/java/cn/nukkit/network/protocol/SetSpawnPositionPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SetSpawnPositionPacket.java @@ -1,7 +1,5 @@ package cn.nukkit.network.protocol; -import cn.nukkit.api.DeprecationDetails; -import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import lombok.ToString; diff --git a/src/main/java/cn/nukkit/network/protocol/TextPacket.java b/src/main/java/cn/nukkit/network/protocol/TextPacket.java index a0eb44b41be..79096adca48 100644 --- a/src/main/java/cn/nukkit/network/protocol/TextPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/TextPacket.java @@ -1,7 +1,5 @@ package cn.nukkit.network.protocol; -import cn.nukkit.api.DeprecationDetails; -import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.utils.BinaryStream; import io.netty.util.internal.EmptyArrays; diff --git a/src/main/java/cn/nukkit/network/protocol/types/EntityLink.java b/src/main/java/cn/nukkit/network/protocol/types/EntityLink.java index 8c22e0bde24..35e1ab69ec9 100644 --- a/src/main/java/cn/nukkit/network/protocol/types/EntityLink.java +++ b/src/main/java/cn/nukkit/network/protocol/types/EntityLink.java @@ -1,6 +1,5 @@ package cn.nukkit.network.protocol.types; -import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; From bad50e7a552a1ac3640dfa5c77ac1b7b1fdfbd2f Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 12 Dec 2021 01:02:09 -0300 Subject: [PATCH 305/394] Create a test unit for AnvilDamageEventTest and fixes getOldDamage, getNewDamage and setNewDamage --- .../nukkit/event/block/AnvilDamageEvent.java | 13 +- .../event/block/AnvilDamageEventTest.java | 171 ++++++++++++++++++ 2 files changed, 181 insertions(+), 3 deletions(-) create mode 100644 src/test/java/cn/nukkit/event/block/AnvilDamageEventTest.java diff --git a/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java b/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java index 5831defefbc..19d36803739 100644 --- a/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java +++ b/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java @@ -81,7 +81,10 @@ public DamageCause getDamageCause() { @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Unstable use of raw block state data", replaceWith = "getOldAnvilDamage or getOldBlockState") @Since("1.4.0.0-PN") public int getOldDamage() { - return block.getDamage(); + if (!block.getProperties().contains(BlockAnvil.DAMAGE)) { + return 0; + } + return block.getIntValue(BlockAnvil.DAMAGE); } @PowerNukkitOnly @@ -119,7 +122,8 @@ public Block getNewState() { @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Unstable use of raw block state data", replaceWith = "getNewAnvilDamage or getNewBlockState") @Since("1.4.0.0-PN") public int getNewDamage() { - return getNewState().getDamage(); + BlockState newState = getNewBlockState(); + return newState.getProperties().contains(BlockAnvil.DAMAGE)? newState.getIntValue(BlockAnvil.DAMAGE) : 0; } @PowerNukkitOnly @@ -133,7 +137,10 @@ public void setNewBlockState(@Nonnull BlockState state) { replaceWith = "setNewBlockState example: setNewBlockState(BlockState.of(BlockID.ANVIL).withProperty(BlockAnvil.DAMAGE, AnvilDamage.VERY_DAMAGED))") @Since("1.4.0.0-PN") public void setNewDamage(int newDamage) { - getNewState().setDamage(newDamage); + BlockState newState = getNewBlockState(); + if (newState.getProperties().contains(BlockAnvil.DAMAGE)) { + this.setNewBlockState(newState.withProperty(BlockAnvil.DAMAGE, BlockAnvil.DAMAGE.getValueForMeta(newDamage))); + } } @PowerNukkitOnly diff --git a/src/test/java/cn/nukkit/event/block/AnvilDamageEventTest.java b/src/test/java/cn/nukkit/event/block/AnvilDamageEventTest.java new file mode 100644 index 00000000000..ca86fc7018d --- /dev/null +++ b/src/test/java/cn/nukkit/event/block/AnvilDamageEventTest.java @@ -0,0 +1,171 @@ +package cn.nukkit.event.block; + +import cn.nukkit.Player; +import cn.nukkit.block.Block; +import cn.nukkit.block.BlockAnvil; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockproperty.value.AnvilDamage; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.inventory.transaction.CraftingTransaction; +import cn.nukkit.level.Level; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import java.util.Collections; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-12-11 + */ +@ExtendWith(PowerNukkitExtension.class) +class AnvilDamageEventTest { + + AnvilDamageEvent event; + + @MockLevel + Level level; + + @MockPlayer + Player player; + + CraftingTransaction fakeTransaction; + + @BeforeEach + void setUp() { + fakeTransaction = new CraftingTransaction(player, Collections.emptyList()); + level.setBlockIdAt(0, 1, 0, BlockID.STONE); + level.setBlockIdAt(0, 2, 0, BlockID.ANVIL); + Block block = level.getBlock(0, 2, 0); + event = new AnvilDamageEvent( + block, + BlockState.of(BlockID.ANVIL).withProperty(BlockAnvil.DAMAGE, AnvilDamage.SLIGHTLY_DAMAGED), + player, + fakeTransaction, + AnvilDamageEvent.DamageCause.USE + ); + } + + @Test + void constructor2() { + Block block = level.getBlock(0, 2, 0); + BlockState before = block.getCurrentState(); + Block result = block.clone(); + result.setPropertyValue(BlockAnvil.DAMAGE, AnvilDamage.VERY_DAMAGED); + BlockState after = result.getCurrentState(); + event = new AnvilDamageEvent( + block, + result, + player, + fakeTransaction, + AnvilDamageEvent.DamageCause.USE + ); + assertEquals(before, event.getOldBlockState()); + assertEquals(after, event.getNewBlockState()); + } + + @SuppressWarnings("deprecation") + @Test + void constructor3() { + Block block = level.getBlock(0, 2, 0); + BlockState before = block.getCurrentState(); + Block result = block.clone(); + result.setPropertyValue(BlockAnvil.DAMAGE, AnvilDamage.VERY_DAMAGED); + BlockState after = result.getCurrentState(); + event = new AnvilDamageEvent( + block, + before.getLegacyDamage(), + after.getLegacyDamage(), + AnvilDamageEvent.DamageCause.USE, + player + ); + assertEquals(before, event.getOldBlockState()); + assertEquals(after, event.getNewBlockState()); + } + + @Test + void getHandlers() { + assertNotNull(AnvilDamageEvent.getHandlers()); + } + + @Test + void getTransaction() { + assertSame(fakeTransaction, event.getTransaction()); + } + + @Test + void getDamageCause() { + assertEquals(AnvilDamageEvent.DamageCause.USE, event.getDamageCause()); + } + + @SuppressWarnings("deprecation") + @Test + void getOldDamage() { + assertEquals(0, event.getOldDamage()); + } + + @Test + void getOldAnvilDamage() { + assertEquals(AnvilDamage.UNDAMAGED, event.getOldAnvilDamage()); + } + + @Test + void getOldBlockState() { + assertEquals(BlockState.of(BlockID.ANVIL).withProperty(BlockAnvil.DAMAGE, AnvilDamage.UNDAMAGED), event.getOldBlockState()); + } + + @Test + void getNewBlockState() { + assertEquals(BlockState.of(BlockID.ANVIL).withProperty(BlockAnvil.DAMAGE, AnvilDamage.SLIGHTLY_DAMAGED), event.getNewBlockState()); + } + + @Test + void getNewState() { + assertEquals(event.getNewBlockState().getBlock(level, 0, 2, 0), event.getNewState()); + } + + @SuppressWarnings("deprecation") + @Test + void getNewDamage() { + assertEquals(AnvilDamage.SLIGHTLY_DAMAGED.ordinal(), event.getNewDamage()); + } + + @Test + void setNewBlockState() { + BlockState anvil = BlockState.of(BlockID.ANVIL); + assertEquals(anvil.withProperty(BlockAnvil.DAMAGE, AnvilDamage.SLIGHTLY_DAMAGED), event.getNewBlockState()); + event.setNewBlockState(anvil.withProperty(BlockAnvil.DAMAGE, AnvilDamage.VERY_DAMAGED)); + assertEquals(anvil.withProperty(BlockAnvil.DAMAGE, AnvilDamage.VERY_DAMAGED), event.getNewBlockState()); + } + + @Test + void setNewDamage() { + BlockState anvil = BlockState.of(BlockID.ANVIL); + assertEquals(anvil.withProperty(BlockAnvil.DAMAGE, AnvilDamage.SLIGHTLY_DAMAGED), event.getNewBlockState()); + event.setNewDamage(AnvilDamage.VERY_DAMAGED.ordinal()); + assertEquals(anvil.withProperty(BlockAnvil.DAMAGE, AnvilDamage.VERY_DAMAGED), event.getNewBlockState()); + } + + @Test + void setNewState() { + BlockState anvil = BlockState.of(BlockID.ANVIL); + assertEquals(anvil.withProperty(BlockAnvil.DAMAGE, AnvilDamage.SLIGHTLY_DAMAGED), event.getNewBlockState()); + event.setNewState(anvil.withProperty(BlockAnvil.DAMAGE, AnvilDamage.VERY_DAMAGED).getBlock(level, 0, 2, 0)); + assertEquals(anvil.withProperty(BlockAnvil.DAMAGE, AnvilDamage.VERY_DAMAGED), event.getNewBlockState()); + } + + @Test + void getCause() { + assertEquals(AnvilDamageEvent.DamageCause.USE, event.getDamageCause()); + } + + @Test + void getPlayer() { + assertSame(player, event.getPlayer()); + } +} From f35e2329da824bccb66cd6c91a7092a7ffbf5615 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 12 Dec 2021 16:57:10 -0300 Subject: [PATCH 306/394] Create some unit tests --- src/main/java/cn/nukkit/Player.java | 9 +- src/main/java/cn/nukkit/network/Network.java | 11 +- src/test/java/cn/nukkit/PlayerTest.java | 213 ++++++++++++++++++- 3 files changed, 223 insertions(+), 10 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 423501af699..23ae60506b9 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -84,6 +84,7 @@ import it.unimi.dsi.fastutil.longs.Long2ObjectOpenHashMap; import it.unimi.dsi.fastutil.longs.LongIterator; import it.unimi.dsi.fastutil.objects.ObjectIterator; +import lombok.SneakyThrows; import lombok.extern.log4j.Log4j2; import org.powernukkit.version.Version; @@ -2316,6 +2317,11 @@ protected void completeLoginSequence() { this.server.onPlayerCompleteLoginSequence(this); } + @SneakyThrows + private List unpackBatchedPackets(BatchPacket packet) { + return this.server.getNetwork().unpackBatchedPackets(packet); + } + public void handleDataPacket(DataPacket packet) { if (!connected) { return; @@ -2337,7 +2343,8 @@ public void handleDataPacket(DataPacket packet) { } if (packet.pid() == ProtocolInfo.BATCH_PACKET) { - this.server.getNetwork().processBatch((BatchPacket) packet, this); + List dataPackets = unpackBatchedPackets((BatchPacket) packet); + dataPackets.forEach(this::handleDataPacket); return; } diff --git a/src/main/java/cn/nukkit/network/Network.java b/src/main/java/cn/nukkit/network/Network.java index 55b76d645ee..0f3e4ad3228 100644 --- a/src/main/java/cn/nukkit/network/Network.java +++ b/src/main/java/cn/nukkit/network/Network.java @@ -224,15 +224,22 @@ public Server getServer() { } public void processBatch(BatchPacket packet, Player player) { - List packets = new ObjectArrayList<>(); try { - processBatch(packet.payload, packets); + unpackBatchedPackets(packet); } catch (ProtocolException e) { player.close("", e.getMessage()); log.error("Unable to process player packets ", e); } } + @PowerNukkitOnly + @Since("FUTURE") + public List unpackBatchedPackets(BatchPacket packet) throws ProtocolException { + List packets = new ObjectArrayList<>(); + processBatch(packet.payload, packets); + return packets; + } + @Since("1.4.0.0-PN") public void processBatch(byte[] payload, Collection packets) throws ProtocolException { byte[] data; diff --git a/src/test/java/cn/nukkit/PlayerTest.java b/src/test/java/cn/nukkit/PlayerTest.java index 64b58ff61ef..0b6c972c405 100644 --- a/src/test/java/cn/nukkit/PlayerTest.java +++ b/src/test/java/cn/nukkit/PlayerTest.java @@ -1,23 +1,32 @@ package cn.nukkit; import cn.nukkit.block.BlockID; +import cn.nukkit.command.SimpleCommandMap; +import cn.nukkit.entity.Entity; import cn.nukkit.entity.data.Skin; +import cn.nukkit.entity.item.EntityBoat; +import cn.nukkit.entity.passive.EntityPig; import cn.nukkit.event.entity.EntityDamageEvent; +import cn.nukkit.event.server.DataPacketReceiveEvent; +import cn.nukkit.event.server.DataPacketSendEvent; +import cn.nukkit.event.vehicle.VehicleMoveEvent; import cn.nukkit.inventory.PlayerInventory; import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; import cn.nukkit.level.Level; import cn.nukkit.level.Position; import cn.nukkit.nbt.tag.CompoundTag; +import cn.nukkit.network.Network; import cn.nukkit.network.SourceInterface; -import cn.nukkit.network.protocol.InventoryTransactionPacket; -import cn.nukkit.network.protocol.LoginPacket; -import cn.nukkit.network.protocol.ProtocolInfo; +import cn.nukkit.network.protocol.*; import cn.nukkit.network.protocol.types.NetworkInventoryAction; +import cn.nukkit.plugin.PluginManager; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.Mock; +import org.mockito.internal.verification.Times; +import org.powernukkit.tests.api.MockEntity; import org.powernukkit.tests.api.MockLevel; import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; @@ -27,9 +36,8 @@ import java.util.List; import java.util.UUID; -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertTrue; -import static org.mockito.Mockito.doReturn; +import static org.junit.jupiter.api.Assertions.*; +import static org.mockito.Mockito.*; @ExtendWith(PowerNukkitExtension.class) class PlayerTest { @@ -43,10 +51,201 @@ class PlayerTest { @Mock SourceInterface sourceInterface; + @MockEntity(type = EntityPig.class) + EntityPig pig; + + @MockEntity(type = EntityBoat.class) + EntityBoat boat; + Skin skin; Player player; - + + private MoveEntityAbsolutePacket buildMoveEntityAbsolutePacket(long eid) { + MoveEntityAbsolutePacket packet = new MoveEntityAbsolutePacket(); + packet.eid = eid; + packet.x = player.getX() - 1; + packet.y = player.getY() - 1; + packet.z = player.getZ() - 1; + packet.yaw = 2.0; + packet.headYaw = 2.0; + packet.pitch = 2.0; + packet.encode(); + return packet; + } + + @Test + void moveEntityAbsolutePacketRidingBoat() { + boat.mountEntity(player); + assertSame(boat, player.getRiding()); + when(player.getServer().getPluginManager()).thenReturn(mock(PluginManager.class)); + player.handleDataPacket(buildMoveEntityAbsolutePacket(boat.getId())); + verify(player.getServer().getPluginManager(), new Times(1)).callEvent(any(DataPacketReceiveEvent.class)); + verify(player.getServer().getPluginManager(), new Times(1)).callEvent(any(VehicleMoveEvent.class)); + } + + @Test + void moveEntityAbsolutePacketRidingPig() { + player.mountEntity(pig); + assertSame(pig, player.getRiding()); + when(player.getServer().getPluginManager()).thenReturn(mock(PluginManager.class)); + player.handleDataPacket(buildMoveEntityAbsolutePacket(pig.getId())); + verify(player.getServer().getPluginManager(), new Times(0)).callEvent(any(VehicleMoveEvent.class)); + } + + @Test + void moveEntityAbsolutePacketNotRiding() { + assertNull(player.getRiding()); + when(player.getServer().getPluginManager()).thenReturn(mock(PluginManager.class)); + player.handleDataPacket(buildMoveEntityAbsolutePacket(player.getId())); + verify(player.getServer().getPluginManager(), new Times(0)).callEvent(any(VehicleMoveEvent.class)); + } + + @Test + void moveEntityAbsolutePacketNotSpawned() { + assertTrue(player.isAlive()); + player.spawned = false; + when(player.getServer().getPluginManager()).thenReturn(mock(PluginManager.class)); + player.handleDataPacket(buildMoveEntityAbsolutePacket(player.getId())); + verify(player.getServer().getPluginManager(), new Times(0)).callEvent(any(VehicleMoveEvent.class)); + } + + @Test + void moveEntityAbsolutePacketNotAlive() { + player.setHealth(0); + when(player.getServer().getPluginManager()).thenReturn(mock(PluginManager.class)); + player.handleDataPacket(buildMoveEntityAbsolutePacket(player.getId())); + verify(player.getServer().getPluginManager(), new Times(0)).callEvent(any(VehicleMoveEvent.class)); + } + + @Test + void emotePacketNotSpawned() { + EmotePacket packet = new EmotePacket(); + packet.runtimeId = player.getId(); + packet.emoteID = "emote"; + packet.encode(); + when(player.getServer().getPluginManager()).thenReturn(mock(PluginManager.class)); + player.spawned = false; + player.getViewers().put(1, player); + player.handleDataPacket(packet); + verify(player.getServer().getPluginManager(), new Times(0)).callEvent(any(DataPacketSendEvent.class)); + } + + @Test + void emotePacketBadId() { + EmotePacket packet = new EmotePacket(); + packet.runtimeId = player.getId() + 1; + packet.emoteID = "emote"; + packet.encode(); + when(player.getServer().getPluginManager()).thenReturn(mock(PluginManager.class)); + player.getViewers().put(1, player); + player.handleDataPacket(packet); + verify(player.getServer().getPluginManager(), new Times(0)).callEvent(any(DataPacketSendEvent.class)); + } + + @Test + void emotePacketOk() { + EmotePacket packet = new EmotePacket(); + packet.runtimeId = player.getId(); + packet.emoteID = "emote"; + packet.encode(); + when(player.getServer().getPluginManager()).thenReturn(mock(PluginManager.class)); + player.getViewers().put(1, player); + player.handleDataPacket(packet); + verify(player.getServer().getPluginManager(), new Times(1)).callEvent(any(DataPacketSendEvent.class)); + } + + @Test + void sendCommandDataNotSpawned() { + player.spawned = false; + SimpleCommandMap filled = new SimpleCommandMap(player.getServer()); + when(player.getServer().getCommandMap()).thenReturn(filled); + assertFalse(filled.getCommands().isEmpty()); + when(player.getServer().getPluginManager()).thenReturn(mock(PluginManager.class)); + player.setOp(true); + when(player.getServer().isOp(eq(player.getName()))).thenReturn(true); + assertTrue(player.isOp()); + player.sendCommandData(); + verify(player.getServer().getPluginManager(), new Times(0)).callEvent(any(DataPacketSendEvent.class)); + } + + @Test + void sendCommandDataZeroCommands() { + player.spawned = true; + player.connected = true; + SimpleCommandMap zero = new SimpleCommandMap(player.getServer()); + zero.getCommands().clear(); + when(player.getServer().getCommandMap()).thenReturn(zero); + assertTrue(zero.getCommands().isEmpty()); + PluginManager previous = player.getServer().getPluginManager(); + player.setOp(true); + when(player.getServer().isOp(eq(player.getName()))).thenReturn(true); + assertTrue(player.isOp()); + try { + when(player.getServer().getPluginManager()).thenReturn(mock(PluginManager.class)); + player.sendCommandData(); + verify(player.getServer().getPluginManager(), new Times(0)).callEvent(any(DataPacketSendEvent.class)); + } finally { + lenient().when(player.getServer().getPluginManager()).thenReturn(previous); + } + } + + @Test + void sendCommandDataSpawned() { + player.spawned = true; + player.connected = true; + SimpleCommandMap filled = new SimpleCommandMap(player.getServer()); + when(player.getServer().getCommandMap()).thenReturn(filled); + assertFalse(filled.getCommands().isEmpty()); + PluginManager previous = player.getServer().getPluginManager(); + player.setOp(true); + when(player.getServer().isOp(eq(player.getName()))).thenReturn(true); + assertTrue(player.isOp()); + try { + when(player.getServer().getPluginManager()).thenReturn(mock(PluginManager.class)); + player.sendCommandData(); + verify(player.getServer().getPluginManager(), new Times(1)).callEvent(any(DataPacketSendEvent.class)); + } finally { + lenient().when(player.getServer().getPluginManager()).thenReturn(previous); + } + } + + @Test + void setButtonText() { + player.setButtonText("button.text"); + assertEquals("button.text", player.getDataPropertyString(Entity.DATA_INTERACTIVE_TAG)); + assertEquals("button.text", player.getButtonText()); + } + + @Test + void tooManyFailedLoginAttempts() { + PluginManager pluginManager = mock(PluginManager.class); + when(player.getServer().getPluginManager()).thenReturn(pluginManager); + Player player = new Player(sourceInterface, clientId, clientIp, clientPort); + + FilterTextPacket packet = new FilterTextPacket(); + packet.text = "asd"; + packet.fromServer = false; + + Network network = new Network(Server.getInstance()); + when(Server.getInstance().getNetwork()).thenReturn(network); + + player.handleDataPacket(packet); + verify(pluginManager, times(0)).callEvent(any()); + + packet.encode(); + player.handleDataPacket(packet.compress(2)); + verify(pluginManager, times(1)).callEvent(any()); + + for (int i = 2; i <= 100; i++) { + player.handleDataPacket(packet); + assertFalse(player.closed); + } + + player.handleDataPacket(packet); + assertTrue(player.closed); + } + @Test void armorDamage() { player.attack(new EntityDamageEvent(player, EntityDamageEvent.DamageCause.FALL, 1)); From d680063717a6a7e4ef715ae2db14b4aa00083925 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 12 Dec 2021 17:13:20 -0300 Subject: [PATCH 307/394] Fix a broken test --- src/test/java/cn/nukkit/PlayerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/cn/nukkit/PlayerTest.java b/src/test/java/cn/nukkit/PlayerTest.java index 0b6c972c405..e7083283259 100644 --- a/src/test/java/cn/nukkit/PlayerTest.java +++ b/src/test/java/cn/nukkit/PlayerTest.java @@ -86,7 +86,7 @@ void moveEntityAbsolutePacketRidingBoat() { @Test void moveEntityAbsolutePacketRidingPig() { - player.mountEntity(pig); + pig.mountEntity(player); assertSame(pig, player.getRiding()); when(player.getServer().getPluginManager()).thenReturn(mock(PluginManager.class)); player.handleDataPacket(buildMoveEntityAbsolutePacket(pig.getId())); From f66ce260fb8eb795569149ba6043105acb256865 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 12 Dec 2021 18:58:02 -0300 Subject: [PATCH 308/394] Add missing Since annotations --- CHANGELOG.md | 17 + src/main/java/cn/nukkit/Player.java | 1 + .../nukkit/block/BlockDoubleSlabWarped.java | 3 +- .../cn/nukkit/block/BlockDoubleSlabWood.java | 3 +- .../BigIntegerMutableBlockState.java | 2 +- .../blockstate/ByteMutableBlockState.java | 2 +- .../blockstate/IntMutableBlockState.java | 2 +- .../blockstate/LongMutableBlockState.java | 2 +- .../blockstate/ZeroMutableBlockState.java | 2 +- src/main/java/cn/nukkit/entity/Entity.java | 16 +- .../nukkit/entity/item/EntityFishingHook.java | 2 + .../entity/projectile/EntityProjectile.java | 7 +- .../projectile/EntityThrownTrident.java | 6 +- .../entity/EntityDamageByEntityEvent.java | 3 + src/main/java/cn/nukkit/item/Item.java | 5 +- .../java/cn/nukkit/item/ItemFireworkStar.java | 6 + .../java/cn/nukkit/item/ItemFishingRod.java | 7 - .../cn/nukkit/item/ItemHeartOfTheSea.java | 6 + src/main/java/cn/nukkit/item/ItemID.java | 2 +- .../cn/nukkit/item/ItemNautilusShell.java | 6 + .../cn/nukkit/item/ItemPhantomMembrane.java | 6 + src/main/java/cn/nukkit/item/ItemScute.java | 6 + .../java/cn/nukkit/item/ItemSpyglass.java | 6 + src/main/java/cn/nukkit/item/ItemTool.java | 6 +- .../nukkit/item/ItemWarpedFungusOnAStick.java | 7 - .../cn/nukkit/item/RuntimeItemMapping.java | 8 + .../nukkit/item/enchantment/Enchantment.java | 1 + .../cn/nukkit/item/randomitem/Fishing.java | 9 +- .../cn/nukkit/level/GlobalBlockPalette.java | 2 + src/main/java/cn/nukkit/level/Location.java | 7 +- .../java/cn/nukkit/level/ParticleEffect.java | 20 +- src/main/java/cn/nukkit/level/Sound.java | 397 ++++++++---------- .../java/cn/nukkit/math/BlockVector3.java | 3 + src/main/java/cn/nukkit/math/Vector3.java | 3 + src/main/java/cn/nukkit/math/Vector3f.java | 3 + .../protocol/MoveEntityAbsolutePacket.java | 3 +- .../protocol/MoveEntityDeltaPacket.java | 15 +- .../network/protocol/NPCRequestPacket.java | 1 + .../protocol/ResourcePacksInfoPacket.java | 2 +- .../network/protocol/SetTitlePacket.java | 4 +- 40 files changed, 327 insertions(+), 282 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7da6551c181..ac1cfd1fd97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,9 +11,24 @@ Click the link above to see the future. This work in progress version supports Minecraft `1.18.0`. +### CRITICAL SECURITY FIX +- [#1266] Changed Log4J library from `2.13.3` to `2.15.0` + +### Breaking changes +- [#1267] Changed Nimbus Jose JWT library from `7.9` to `9.13` +- [#1267] Removed some deprecated APIs, check the JDiff for details. + +### Depreciation +- [#1266] Some APIs become deprecated, check the JDiff for details. + ### Changed - [#1258] Changed supported version to Minecraft Bedrock Edition `1.18.0`. +### Documentation +- [#1267] Added all missing `@PowerNukkitOnly` annotations +- [#1267] Added all missing `@Override` annotations +- [#1267] Removed all incorrect `@PowerNukkitOnly` annotations + ## [1.5.2.0-PN] - 2021-12-01 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/28?closed=1)) This new version adds protocol support for Minecraft `1.17.40` as if it was `1.16.221` with some new features and fixes. @@ -963,3 +978,5 @@ Fixes several anvil issues. [#1244]: https://github.com/PowerNukkit/PowerNukkit/issues/1244 [#1216]: https://github.com/PowerNukkit/PowerNukkit/issues/1216 [#1258]: https://github.com/PowerNukkit/PowerNukkit/issues/1258 +[#1266]: https://github.com/PowerNukkit/PowerNukkit/issues/1266 +[#1267]: https://github.com/PowerNukkit/PowerNukkit/issues/1267 diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 23ae60506b9..c7168e0c31f 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -150,6 +150,7 @@ public class Player extends EntityHuman implements CommandSender, InventoryHolde public static final @PowerNukkitOnly int GRINDSTONE_WINDOW_ID = dynamic(5); public static final @Since("1.4.0.0-PN") @PowerNukkitOnly int SMITHING_WINDOW_ID = dynamic(6); + @Since("FUTURE") protected static final int RESOURCE_PACK_CHUNK_SIZE = 8 * 1024; // 8KB protected final SourceInterface interfaz; diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabWarped.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabWarped.java index e43aa8fd3e0..adea1af5444 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabWarped.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabWarped.java @@ -35,7 +35,8 @@ public int getSingleSlabId() { //TODO Adjust or remove this when merging https://github.com/PowerNukkit/PowerNukkit/pull/370 @Override - protected @PowerNukkitOnly @Since("1.4.0.0-PN") boolean isCorrectTool(Item item) { + @PowerNukkitOnly + protected boolean isCorrectTool(Item item) { return true; } diff --git a/src/main/java/cn/nukkit/block/BlockDoubleSlabWood.java b/src/main/java/cn/nukkit/block/BlockDoubleSlabWood.java index 9b7d307e1dc..95c2c1f1ce8 100644 --- a/src/main/java/cn/nukkit/block/BlockDoubleSlabWood.java +++ b/src/main/java/cn/nukkit/block/BlockDoubleSlabWood.java @@ -85,7 +85,8 @@ public int getSingleSlabId() { //TODO Adjust or remove this when merging https://github.com/PowerNukkit/PowerNukkit/pull/370 @Override - protected @PowerNukkitOnly @Since("1.4.0.0-PN") boolean isCorrectTool(Item item) { + @PowerNukkitOnly + protected boolean isCorrectTool(Item item) { return true; } diff --git a/src/main/java/cn/nukkit/blockstate/BigIntegerMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/BigIntegerMutableBlockState.java index 859deeb4bce..1dc673eb53c 100644 --- a/src/main/java/cn/nukkit/blockstate/BigIntegerMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/BigIntegerMutableBlockState.java @@ -239,7 +239,7 @@ public int getExactIntStorage() { @PowerNukkitOnly @Nonnull @Override - public MutableBlockState copy() { + public BigIntegerMutableBlockState copy() { return new BigIntegerMutableBlockState(getBlockId(), properties, storage); } } diff --git a/src/main/java/cn/nukkit/blockstate/ByteMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/ByteMutableBlockState.java index b849ffdcccf..37240c2404a 100644 --- a/src/main/java/cn/nukkit/blockstate/ByteMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/ByteMutableBlockState.java @@ -242,7 +242,7 @@ public int getExactIntStorage() { @PowerNukkitOnly @Nonnull @Override - public MutableBlockState copy() { + public ByteMutableBlockState copy() { return new ByteMutableBlockState(blockId, properties, storage); } } diff --git a/src/main/java/cn/nukkit/blockstate/IntMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/IntMutableBlockState.java index 7471014ecd8..e6c13b15561 100644 --- a/src/main/java/cn/nukkit/blockstate/IntMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/IntMutableBlockState.java @@ -214,7 +214,7 @@ public int getExactIntStorage() { @PowerNukkitOnly @Nonnull @Override - public MutableBlockState copy() { + public IntMutableBlockState copy() { return new IntMutableBlockState(blockId, properties, storage); } } diff --git a/src/main/java/cn/nukkit/blockstate/LongMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/LongMutableBlockState.java index dbb31e6435a..d53df31a76a 100644 --- a/src/main/java/cn/nukkit/blockstate/LongMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/LongMutableBlockState.java @@ -231,7 +231,7 @@ public int getExactIntStorage() { @PowerNukkitOnly @Nonnull @Override - public MutableBlockState copy() { + public LongMutableBlockState copy() { return new LongMutableBlockState(getBlockId(), properties, storage); } } diff --git a/src/main/java/cn/nukkit/blockstate/ZeroMutableBlockState.java b/src/main/java/cn/nukkit/blockstate/ZeroMutableBlockState.java index 5c9e995eb69..20537a9926f 100644 --- a/src/main/java/cn/nukkit/blockstate/ZeroMutableBlockState.java +++ b/src/main/java/cn/nukkit/blockstate/ZeroMutableBlockState.java @@ -59,7 +59,7 @@ public void validate() { @PowerNukkitOnly @Nonnull @Override - public MutableBlockState copy() { + public ZeroMutableBlockState copy() { return this; } diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 867834ac1aa..edcd24915b5 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -313,7 +313,7 @@ public abstract class Entity extends Location implements Metadatable { @Since("1.2.0.0-PN") public static final int DATA_FLAG_BLOCKED_USING_SHIELD = dynamic(73); @Since("1.2.0.0-PN") public static final int DATA_FLAG_BLOCKED_USING_DAMAGED_SHIELD = dynamic(74); @Since("1.2.0.0-PN") public static final int DATA_FLAG_SLEEPING = dynamic(75); - @Since("1.2.0.0-PN") public static final int DATA_FLAG_ENTITY_GROW_UP = dynamic(76); + @Since("FUTURE") public static final int DATA_FLAG_ENTITY_GROW_UP = dynamic(76); @Since("1.2.0.0-PN") public static final int DATA_FLAG_TRADE_INTEREST = dynamic(77); @Since("1.2.0.0-PN") public static final int DATA_FLAG_DOOR_BREAKER = dynamic(78); @Since("1.2.0.0-PN") public static final int DATA_FLAG_BREAKING_OBSTRUCTION = dynamic(79); @@ -334,8 +334,8 @@ public abstract class Entity extends Location implements Metadatable { @Since("1.3.0.0-PN") public static final int DATA_FLAG_CELEBRATING_SPECIAL = dynamic(94); @Since("1.4.0.0-PN") public static final int DATA_FLAG_RAM_ATTACK = dynamic(96); @Since("1.5.0.0-PN") public static final int DATA_FLAG_PLAYING_DEAD = dynamic(97); - public static final int DATA_FLAG_IN_ASCENDABLE_BLOCK = dynamic(98); - public static final int DATA_FLAG_OVER_DESCENDABLE_BLOCK = dynamic(99); + @Since("FUTURE") public static final int DATA_FLAG_IN_ASCENDABLE_BLOCK = dynamic(98); + @Since("FUTURE") public static final int DATA_FLAG_OVER_DESCENDABLE_BLOCK = dynamic(99); public static long entityCount = 1; @@ -384,12 +384,12 @@ public abstract class Entity extends Location implements Metadatable { public double lastMotionZ; public double lastPitch; - public double lastYaw; - public double lastHeadYaw; + @Since("FUTURE") public double lastYaw; + @Since("FUTURE") public double lastHeadYaw; public double pitchDelta; - public double yawDelta; - public double headYawDelta; + @Since("FUTURE") public double yawDelta; + @Since("FUTURE") public double headYawDelta; public double entityCollisionReduction = 0; // Higher than 0.9 will result a fast collisions public AxisAlignedBB boundingBox; @@ -2484,6 +2484,7 @@ public boolean setPositionAndRotation(Vector3 pos, double yaw, double pitch) { return false; } + @Since("FUTURE") public boolean setPositionAndRotation(Vector3 pos, double yaw, double pitch, double headYaw) { if (this.setPosition(pos)) { this.setRotation(yaw, pitch, headYaw); @@ -2499,6 +2500,7 @@ public void setRotation(double yaw, double pitch) { this.scheduleUpdate(); } + @Since("FUTURE") public void setRotation(double yaw, double pitch, double headYaw) { this.yaw = yaw; this.pitch = pitch; diff --git a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java index 786fc9ae88d..44363f19835 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java @@ -316,6 +316,7 @@ public void onCollideWithEntity(Entity entity) { } } + @Since("FUTURE") public void checkLure() { if (rod != null) { Enchantment ench = rod.getEnchantment(Enchantment.ID_LURE); @@ -325,6 +326,7 @@ public void checkLure() { } } + @Since("FUTURE") public void setTarget(long eid) { this.setDataProperty(new LongEntityData(DATA_TARGET_EID, eid)); this.canCollide = eid == 0; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index a0073d39092..903bb4ea063 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -28,6 +28,9 @@ public abstract class EntityProjectile extends Entity { public static final int DATA_SHOOTER_ID = 17; + @Since("FUTURE") public static final int PICKUP_NONE = 0; + @Since("FUTURE") public static final int PICKUP_ANY = 1; + @Since("FUTURE") public static final int PICKUP_CREATIVE = 2; public Entity shootingEntity = null; @@ -49,10 +52,6 @@ protected double getBaseDamage() { protected double damage = 0; - public static final int PICKUP_NONE = 0; - public static final int PICKUP_ANY = 1; - public static final int PICKUP_CREATIVE = 2; - public EntityProjectile(FullChunk chunk, CompoundTag nbt) { this(chunk, nbt, null); } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index 6243a4a6fc7..b7b69c96a23 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -75,8 +75,8 @@ public class EntityThrownTrident extends EntityProjectile { private static final BlockVector3 defaultStuckToBlockPos = new BlockVector3(0, 0, 0); - protected int pickupMode; - public boolean alreadyCollided; + @Since("FUTURE") protected int pickupMode; + @Since("FUTURE") public boolean alreadyCollided; @Override public int getNetworkId() { @@ -375,10 +375,12 @@ public Entity create(Object type, Position source, Object... args) { return Entity.createEntity(type.toString(), chunk, nbt, args); } + @Since("FUTURE") public int getPickupMode() { return this.pickupMode; } + @Since("FUTURE") public void setPickupMode(int pickupMode) { this.pickupMode = pickupMode; } diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java index 2d2c2d68e4c..36490835d89 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java @@ -1,5 +1,6 @@ package cn.nukkit.event.entity; +import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.potion.Effect; @@ -36,6 +37,7 @@ public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause caus this(damager, entity, cause, modifiers, knockBack, Enchantment.EMPTY_ARRAY); } + @Since("FUTURE") public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause cause, Map modifiers, float knockBack, Enchantment[] enchantments) { super(entity, cause, modifiers); this.damager = damager; @@ -66,6 +68,7 @@ public void setKnockBack(float knockBack) { this.knockBack = knockBack; } + @Since("FUTURE") public Enchantment[] getWeaponEnchantments() { return enchantments.length > 0? enchantments.clone() : Enchantment.EMPTY_ARRAY; } diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index b2b8646c2ef..fcb691a913a 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -1455,10 +1455,6 @@ public boolean onRelease(Player player, int ticksUsed) { return false; } - @PowerNukkitOnly - @Since("1.4.0.0-PN") - public boolean damageWhenBreaking() { return true; } - @Override final public String toString() { return "Item " + this.name + " (" + this.id + ":" + (!this.hasMeta ? "?" : this.meta) + ")x" + this.count + (this.hasCompoundTag() ? " tags:0x" + Binary.bytesToHexString(this.getCompoundTag()) : ""); @@ -1627,6 +1623,7 @@ public Item clone() { } } + @Since("FUTURE") public final RuntimeEntry getRuntimeEntry() { //TODO Implement throw new UnsupportedOperationException(); diff --git a/src/main/java/cn/nukkit/item/ItemFireworkStar.java b/src/main/java/cn/nukkit/item/ItemFireworkStar.java index 6bd8a8d27ac..b7d45608b6f 100644 --- a/src/main/java/cn/nukkit/item/ItemFireworkStar.java +++ b/src/main/java/cn/nukkit/item/ItemFireworkStar.java @@ -1,15 +1,21 @@ package cn.nukkit.item; +import cn.nukkit.api.Since; + +@Since("FUTURE") public class ItemFireworkStar extends Item { + @Since("FUTURE") public ItemFireworkStar() { this(0, 1); } + @Since("FUTURE") public ItemFireworkStar(Integer meta) { this(meta, 1); } + @Since("FUTURE") public ItemFireworkStar(Integer meta, int count) { super(FIREWORKSCHARGE, meta, count, "Firework Star"); } diff --git a/src/main/java/cn/nukkit/item/ItemFishingRod.java b/src/main/java/cn/nukkit/item/ItemFishingRod.java index 48748e7f48a..e3bfa8e8794 100644 --- a/src/main/java/cn/nukkit/item/ItemFishingRod.java +++ b/src/main/java/cn/nukkit/item/ItemFishingRod.java @@ -1,7 +1,6 @@ package cn.nukkit.item; import cn.nukkit.Player; -import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.math.Vector3; /** @@ -52,10 +51,4 @@ public boolean noDamageOnAttack() { public boolean noDamageOnBreak() { return true; } - - @PowerNukkitOnly - @Override - public boolean damageWhenBreaking() { - return false; - } } diff --git a/src/main/java/cn/nukkit/item/ItemHeartOfTheSea.java b/src/main/java/cn/nukkit/item/ItemHeartOfTheSea.java index ed4a0163967..db2cce2f88f 100644 --- a/src/main/java/cn/nukkit/item/ItemHeartOfTheSea.java +++ b/src/main/java/cn/nukkit/item/ItemHeartOfTheSea.java @@ -1,15 +1,21 @@ package cn.nukkit.item; +import cn.nukkit.api.Since; + +@Since("FUTURE") public class ItemHeartOfTheSea extends Item { + @Since("FUTURE") public ItemHeartOfTheSea() { this(0, 1); } + @Since("FUTURE") public ItemHeartOfTheSea(Integer meta) { this(meta, 1); } + @Since("FUTURE") public ItemHeartOfTheSea(Integer meta, int count) { super(HEART_OF_THE_SEA, meta, count, "Heart Of The Sea"); } diff --git a/src/main/java/cn/nukkit/item/ItemID.java b/src/main/java/cn/nukkit/item/ItemID.java index 1591cb74a1e..3cb91ffebec 100644 --- a/src/main/java/cn/nukkit/item/ItemID.java +++ b/src/main/java/cn/nukkit/item/ItemID.java @@ -287,7 +287,7 @@ public interface ItemID { @Since("1.4.0.0-PN") int RECORD_PIGSTEP = 759; @Since("1.4.0.0-PN") @PowerNukkitOnly int NETHER_SPROUTS = 760; - int SPYGLASS = 772; + @Since("FUTURE") int SPYGLASS = 772; @Since("1.4.0.0-PN") @PowerNukkitOnly int SOUL_CAMPFIRE = 801; diff --git a/src/main/java/cn/nukkit/item/ItemNautilusShell.java b/src/main/java/cn/nukkit/item/ItemNautilusShell.java index b3163e13b30..0af9e2dd198 100644 --- a/src/main/java/cn/nukkit/item/ItemNautilusShell.java +++ b/src/main/java/cn/nukkit/item/ItemNautilusShell.java @@ -1,15 +1,21 @@ package cn.nukkit.item; +import cn.nukkit.api.Since; + +@Since("FUTURE") public class ItemNautilusShell extends Item { + @Since("FUTURE") public ItemNautilusShell() { this(0, 1); } + @Since("FUTURE") public ItemNautilusShell(Integer meta) { this(meta, 1); } + @Since("FUTURE") public ItemNautilusShell(Integer meta, int count) { super(NAUTILUS_SHELL, meta, count, "Nautilus Shell"); } diff --git a/src/main/java/cn/nukkit/item/ItemPhantomMembrane.java b/src/main/java/cn/nukkit/item/ItemPhantomMembrane.java index a04643b269c..acb89d99246 100644 --- a/src/main/java/cn/nukkit/item/ItemPhantomMembrane.java +++ b/src/main/java/cn/nukkit/item/ItemPhantomMembrane.java @@ -1,15 +1,21 @@ package cn.nukkit.item; +import cn.nukkit.api.Since; + +@Since("FUTURE") public class ItemPhantomMembrane extends Item { + @Since("FUTURE") public ItemPhantomMembrane() { this(0, 1); } + @Since("FUTURE") public ItemPhantomMembrane(Integer meta) { this(meta, 1); } + @Since("FUTURE") public ItemPhantomMembrane(Integer meta, int count) { super(PHANTOM_MEMBRANE, meta, count, "Phantom Membrane"); } diff --git a/src/main/java/cn/nukkit/item/ItemScute.java b/src/main/java/cn/nukkit/item/ItemScute.java index 3e6ff1f51cc..227f865bf1e 100644 --- a/src/main/java/cn/nukkit/item/ItemScute.java +++ b/src/main/java/cn/nukkit/item/ItemScute.java @@ -1,15 +1,21 @@ package cn.nukkit.item; +import cn.nukkit.api.Since; + +@Since("FUTURE") public class ItemScute extends Item { + @Since("FUTURE") public ItemScute() { this(0, 1); } + @Since("FUTURE") public ItemScute(Integer meta) { this(meta, 1); } + @Since("FUTURE") public ItemScute(Integer meta, int count) { super(SCUTE, meta, count, "Scute"); } diff --git a/src/main/java/cn/nukkit/item/ItemSpyglass.java b/src/main/java/cn/nukkit/item/ItemSpyglass.java index eee373b8818..7b500867816 100644 --- a/src/main/java/cn/nukkit/item/ItemSpyglass.java +++ b/src/main/java/cn/nukkit/item/ItemSpyglass.java @@ -1,18 +1,24 @@ package cn.nukkit.item; +import cn.nukkit.api.Since; + /** * @author LT_Name */ +@Since("FUTURE") public class ItemSpyglass extends Item { + @Since("FUTURE") public ItemSpyglass() { this(0, 1); } + @Since("FUTURE") public ItemSpyglass(Integer meta) { this(meta, 1); } + @Since("FUTURE") public ItemSpyglass(Integer meta, int count) { super(SPYGLASS, meta, count, "Spyglass"); } diff --git a/src/main/java/cn/nukkit/item/ItemTool.java b/src/main/java/cn/nukkit/item/ItemTool.java index 678a062e8b2..031f9a8faa1 100644 --- a/src/main/java/cn/nukkit/item/ItemTool.java +++ b/src/main/java/cn/nukkit/item/ItemTool.java @@ -51,8 +51,8 @@ public abstract class ItemTool extends Item implements ItemDurable { public static final int DURABILITY_TRIDENT = dynamic(251); public static final int DURABILITY_FISHING_ROD = dynamic(65); @Since("1.4.0.0-PN") public static final int DURABILITY_CROSSBOW = dynamic(465); - public static final int DURABILITY_CARROT_ON_A_STICK = dynamic(25); - public static final int DURABILITY_WARPED_FUNGUS_ON_A_STICK = dynamic(100); + @Since("future") public static final int DURABILITY_CARROT_ON_A_STICK = dynamic(25); + @Since("future") public static final int DURABILITY_WARPED_FUNGUS_ON_A_STICK = dynamic(100); @PowerNukkitOnly @Since("1.4.0.0-PN") @@ -220,6 +220,7 @@ public int getEnchantAbility() { * No damage to item when it's used to attack entities * @return whether the item should take damage when used to attack entities */ + @Since("FUTURE") public boolean noDamageOnAttack() { return false; } @@ -228,6 +229,7 @@ public boolean noDamageOnAttack() { * No damage to item when it's used to break blocks * @return whether the item should take damage when used to break blocks */ + @Since("FUTURE") public boolean noDamageOnBreak() { return false; } diff --git a/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java b/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java index 23faee8cd79..50a8a5da679 100644 --- a/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java +++ b/src/main/java/cn/nukkit/item/ItemWarpedFungusOnAStick.java @@ -18,7 +18,6 @@ package cn.nukkit.item; -import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; /** @@ -56,10 +55,4 @@ public int getMaxDurability() { public boolean noDamageOnBreak() { return true; } - - @PowerNukkitOnly - @Override - public boolean damageWhenBreaking() { - return false; - } } diff --git a/src/main/java/cn/nukkit/item/RuntimeItemMapping.java b/src/main/java/cn/nukkit/item/RuntimeItemMapping.java index c5a401705ab..defe00e9421 100644 --- a/src/main/java/cn/nukkit/item/RuntimeItemMapping.java +++ b/src/main/java/cn/nukkit/item/RuntimeItemMapping.java @@ -7,6 +7,8 @@ import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; import lombok.Data; +import lombok.Getter; +import lombok.RequiredArgsConstructor; import javax.annotation.Nonnull; import javax.annotation.Nullable; @@ -161,6 +163,9 @@ public Item getItemByNamespaceId(@Nonnull String namespaceId, int amount) { } @Data + @Getter(onMethod = @__(@Since("FUTURE"))) + @RequiredArgsConstructor(onConstructor = @__(@Since("FUTURE"))) + @Since("FUTURE") public static class LegacyEntry { private final int legacyId; private final boolean hasDamage; @@ -172,6 +177,9 @@ public int getDamage() { } @Data + @Getter(onMethod = @__(@Since("FUTURE"))) + @RequiredArgsConstructor(onConstructor = @__(@Since("FUTURE"))) + @Since("FUTURE") public static class RuntimeEntry { private final String identifier; private final int runtimeId; diff --git a/src/main/java/cn/nukkit/item/enchantment/Enchantment.java b/src/main/java/cn/nukkit/item/enchantment/Enchantment.java index 6d31a1bbe47..0337197a404 100644 --- a/src/main/java/cn/nukkit/item/enchantment/Enchantment.java +++ b/src/main/java/cn/nukkit/item/enchantment/Enchantment.java @@ -369,6 +369,7 @@ public void doPostAttack(Entity attacker, Entity entity) { } + @Since("FUTURE") public void doAttack(Entity attacker, Entity entity) { } diff --git a/src/main/java/cn/nukkit/item/randomitem/Fishing.java b/src/main/java/cn/nukkit/item/randomitem/Fishing.java index 12ec5110b0b..075ae6850f9 100644 --- a/src/main/java/cn/nukkit/item/randomitem/Fishing.java +++ b/src/main/java/cn/nukkit/item/randomitem/Fishing.java @@ -1,5 +1,6 @@ package cn.nukkit.item.randomitem; +import cn.nukkit.api.Since; import cn.nukkit.block.BlockID; import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; @@ -26,10 +27,10 @@ public final class Fishing { public static final Selector PUFFERFISH = putSelector(new ConstantItemSelector(ItemID.PUFFERFISH, FISHES), 0.13F); public static final Selector TREASURE_BOW = putSelector(new ConstantItemSelector(ItemID.BOW, TREASURES), 0.1667F); public static final Selector TREASURE_ENCHANTED_BOOK = putSelector(new ConstantItemSelector(ItemID.ENCHANTED_BOOK, TREASURES), 0.1667F); - public static final Selector TREASURE_FISHING_ROD = putSelector(new ConstantItemSelector(ItemID.FISHING_ROD, TREASURES), 0.1667F); - public static final Selector TREASURE_NAME_TAG = putSelector(new ConstantItemSelector(ItemID.NAME_TAG, TREASURES), 0.1667F); - public static final Selector TREASURE_SADDLE = putSelector(new ConstantItemSelector(ItemID.SADDLE, TREASURES), 0.1667F); - public static final Selector TREASURE_NAUTILUS_SHELL = putSelector(new ConstantItemSelector(ItemID.NAUTILUS_SHELL, TREASURES), 0.1667F); + @Since("FUTURE") public static final Selector TREASURE_FISHING_ROD = putSelector(new ConstantItemSelector(ItemID.FISHING_ROD, TREASURES), 0.1667F); + @Since("FUTURE") public static final Selector TREASURE_NAME_TAG = putSelector(new ConstantItemSelector(ItemID.NAME_TAG, TREASURES), 0.1667F); + @Since("FUTURE") public static final Selector TREASURE_SADDLE = putSelector(new ConstantItemSelector(ItemID.SADDLE, TREASURES), 0.1667F); + @Since("FUTURE") public static final Selector TREASURE_NAUTILUS_SHELL = putSelector(new ConstantItemSelector(ItemID.NAUTILUS_SHELL, TREASURES), 0.1667F); public static final Selector JUNK_BOWL = putSelector(new ConstantItemSelector(ItemID.BOWL, JUNKS), 0.12F); public static final Selector JUNK_FISHING_ROD = putSelector(new ConstantItemSelector(ItemID.FISHING_ROD, JUNKS), 0.024F); public static final Selector JUNK_LEATHER = putSelector(new ConstantItemSelector(ItemID.LEATHER, JUNKS), 0.12F); diff --git a/src/main/java/cn/nukkit/level/GlobalBlockPalette.java b/src/main/java/cn/nukkit/level/GlobalBlockPalette.java index 2e211d3d470..61bc3f4650d 100644 --- a/src/main/java/cn/nukkit/level/GlobalBlockPalette.java +++ b/src/main/java/cn/nukkit/level/GlobalBlockPalette.java @@ -2,6 +2,7 @@ import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.block.Block; import cn.nukkit.blockstate.BlockStateRegistry; import lombok.extern.log4j.Log4j2; @@ -34,6 +35,7 @@ public static String getName(int blockId) { return BlockStateRegistry.getPersistenceName(blockId); } + @Since("FUTURE") public static int getLegacyFullId(int runtimeId) { //TODO Implement throw new UnsupportedOperationException(); diff --git a/src/main/java/cn/nukkit/level/Location.java b/src/main/java/cn/nukkit/level/Location.java index 0574a76f508..b431fa178ec 100644 --- a/src/main/java/cn/nukkit/level/Location.java +++ b/src/main/java/cn/nukkit/level/Location.java @@ -1,6 +1,7 @@ package cn.nukkit.level; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.math.Vector3; import cn.nukkit.utils.LevelException; @@ -13,7 +14,7 @@ public class Location extends Position { public double yaw; public double pitch; - public double headYaw; + @Since("FUTURE") public double headYaw; public Location() { this(0); @@ -47,10 +48,12 @@ public Location(double x, double y, double z, double yaw, double pitch, Level le this(x, y, z, yaw, pitch, 0, level); } + @Since("FUTURE") public Location(double x, double y, double z, double yaw, double pitch, double headYaw) { this(x, y, z, yaw, pitch, headYaw, null); } + @Since("FUTURE") public Location(double x, double y, double z, double yaw, double pitch, double headYaw, Level level) { this.x = x; this.y = y; @@ -77,6 +80,7 @@ public static Location fromObject(Vector3 pos, Level level, double yaw, double p return new Location(pos.x, pos.y, pos.z, yaw, pitch, (level == null) ? ((pos instanceof Position) ? ((Position) pos).level : null) : level); } + @Since("FUTURE") public static Location fromObject(Vector3 pos, Level level, double yaw, double pitch, double headYaw) { if (level == null && pos instanceof Position) { level = ((Position) pos).level; @@ -92,6 +96,7 @@ public double getPitch() { return this.pitch; } + @Since("FUTURE") public double getHeadYaw() { return this.headYaw; } diff --git a/src/main/java/cn/nukkit/level/ParticleEffect.java b/src/main/java/cn/nukkit/level/ParticleEffect.java index dbad891bbd1..f72cb0bb375 100644 --- a/src/main/java/cn/nukkit/level/ParticleEffect.java +++ b/src/main/java/cn/nukkit/level/ParticleEffect.java @@ -23,7 +23,7 @@ public enum ParticleEffect { CAMERA_SHOOT_EXPLOSION("minecraft:camera_shoot_explosion"), CAMPFIRE_SMOKE("minecraft:campfire_smoke_particle"), CAMPFIRE_SMOKE_TALL("minecraft:campfire_tall_smoke_particle"), - CANDLE_FLAME("minecraft:candle_flame_particle"), + @Since("FUTURE") CANDLE_FLAME("minecraft:candle_flame_particle"), CAULDRONSPELL("minecraft:cauldron_spell_emitter"), CAULDRON_BUBBLE("minecraft:cauldron_bubble_particle"), CAULDRON_SPLASH("minecraft:cauldron_splash_particle"), @@ -33,7 +33,7 @@ public enum ParticleEffect { CONDUIT_ATTACK("minecraft:conduit_attack_emitter"), CRITICAL_HIT("minecraft:critical_hit_emitter"), @Since("1.3.0.0-PN") CROP_GROWTH("minecraft:crop_growth_emitter"), - CROP_GROWTH_AREA("minecraft:crop_growth_area_emitter"), + @Since("FUTURE") CROP_GROWTH_AREA("minecraft:crop_growth_area_emitter"), DOLPHIN_MOVE("minecraft:dolphin_move_particle"), DRAGON_BREATH_FIRE("minecraft:dragon_breath_fire"), DRAGON_BREATH_LINGERING("minecraft:dragon_breath_lingering"), @@ -41,9 +41,9 @@ public enum ParticleEffect { DRAGON_DEATH_EXPLOSION("minecraft:dragon_death_explosion_emitter"), DRAGON_DESTROY_BLOCK("minecraft:dragon_destroy_block"), DRAGON_DYING_EXPLOSION("minecraft:dragon_dying_explosion"), - DRIPSTONE_LAVA_DRIP("minecraft:stalactite_lava_drip_particle"), - DRIPSTONE_WATER_DRIP("minecraft:stalactite_water_drip_particle"), - ELECTRIC_SPARK("minecraft:electric_spark_particle"), + @Since("FUTURE") DRIPSTONE_LAVA_DRIP("minecraft:stalactite_lava_drip_particle"), + @Since("FUTURE") DRIPSTONE_WATER_DRIP("minecraft:stalactite_water_drip_particle"), + @Since("FUTURE") ELECTRIC_SPARK("minecraft:electric_spark_particle"), ENCHANTING_TABLE_PARTICLE("minecraft:enchanting_table_particle"), ENDROD("minecraft:endrod"), END_CHEST("minecraft:end_chest"), @@ -69,7 +69,7 @@ public enum ParticleEffect { FALLING_DUST_TOP_SNOW("minecraft:falling_dust_top_snow_particle"), FISH_HOOK("minecraft:fish_hook_particle"), FISH_POS("minecraft:fish_pos_particle"), - GLOW("minecraft:glow_particle"), + @Since("FUTURE") GLOW("minecraft:glow_particle"), GUARDIAN_ATTACK("minecraft:guardian_attack_particle"), GUARDIAN_WATER_MOVE("minecraft:guardian_water_move_particle"), HEART("minecraft:heart_particle"), @@ -109,13 +109,13 @@ public enum ParticleEffect { RISING_BORDER_DUST("minecraft:rising_border_dust_particle"), SHULKER_BULLET("minecraft:shulker_bullet"), SILVERFISH_GRIEF("minecraft:silverfish_grief_emitter"), - SNOWFLAKE("minecraft:snowflake_particle"), + @Since("FUTURE") SNOWFLAKE("minecraft:snowflake_particle"), @Since("1.3.0.0-PN") SOUL("minecraft:soul_particle"), SPARKLER("minecraft:sparkler_emitter"), SPLASHPOTIONSPELL("minecraft:splash_spell_emitter"), SPONGE_ABSORB_BUBBLE("minecraft:sponge_absorb_water_particle"), - SPORE_BLOSSOM_AMBIENT_BLOCK_ACTOR("minecraft:spore_blossom_ambient_particle"), - SPORE_BLOSSOM_SHOWER("minecraft:spore_blossom_shower_particle"), + @Since("FUTURE") SPORE_BLOSSOM_AMBIENT_BLOCK_ACTOR("minecraft:spore_blossom_ambient_particle"), + @Since("FUTURE") SPORE_BLOSSOM_SHOWER("minecraft:spore_blossom_shower_particle"), SQUID_FLEE("minecraft:squid_flee_particle"), SQUID_INK_BUBBLE("minecraft:squid_ink_bubble"), SQUID_MOVE("minecraft:squid_move_particle"), @@ -132,7 +132,7 @@ public enum ParticleEffect { WATER_SPASH_MANUAL("minecraft:water_splash_particle_manual"), WATER_SPLASH("minecraft:water_splash_particle"), WATER_WAKE("minecraft:water_wake_particle"), - WAX("minecraft:wax_particle"), + @Since("FUTURE") WAX("minecraft:wax_particle"), WITHER_BOSS_INVULNERABLE("minecraft:wither_boss_invulnerable"); private final String identifier; diff --git a/src/main/java/cn/nukkit/level/Sound.java b/src/main/java/cn/nukkit/level/Sound.java index 2deb6011287..1af86ab164e 100644 --- a/src/main/java/cn/nukkit/level/Sound.java +++ b/src/main/java/cn/nukkit/level/Sound.java @@ -1,7 +1,5 @@ package cn.nukkit.level; -import cn.nukkit.api.DeprecationDetails; -import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; /** @@ -11,7 +9,7 @@ public enum Sound { @Since("1.4.0.0-PN") AMBIENT_BASALT_DELTAS_ADDITIONS("ambient.basalt_deltas.additions"), @Since("1.4.0.0-PN") AMBIENT_BASALT_DELTAS_LOOP("ambient.basalt_deltas.loop"), AMBIENT_BASALT_DELTAS_MOOD("ambient.basalt_deltas.mood"), - AMBIENT_CANDLE("ambient.candle"), + @Since("FUTURE") AMBIENT_CANDLE("ambient.candle"), AMBIENT_CAVE("ambient.cave"), @Since("1.4.0.0-PN") AMBIENT_CRIMSON_FOREST_ADDITIONS("ambient.crimson_forest.additions"), @Since("1.4.0.0-PN") AMBIENT_CRIMSON_FOREST_LOOP("ambient.crimson_forest.loop"), @@ -55,12 +53,12 @@ public enum Sound { BLOCK_BEEHIVE_WORK("block.beehive.work"), BLOCK_BELL_HIT("block.bell.hit"), BLOCK_BLASTFURNACE_FIRE_CRACKLE("block.blastfurnace.fire_crackle"), - BLOCK_BOWHIT("block.bowhit"), + @Since("FUTURE") BLOCK_BOWHIT("block.bowhit"), BLOCK_CAMPFIRE_CRACKLE("block.campfire.crackle"), BLOCK_CARTOGRAPHY_TABLE_USE("block.cartography_table.use"), BLOCK_CHORUSFLOWER_DEATH("block.chorusflower.death"), BLOCK_CHORUSFLOWER_GROW("block.chorusflower.grow"), - BLOCK_CLICK("block.click"), + @Since("FUTURE") BLOCK_CLICK("block.click"), BLOCK_COMPOSTER_EMPTY("block.composter.empty"), BLOCK_COMPOSTER_FILL("block.composter.fill"), BLOCK_COMPOSTER_FILL_SUCCESS("block.composter.fill_success"), @@ -97,20 +95,20 @@ public enum Sound { BLOCK_TURTLE_EGG_CRACK("block.turtle_egg.crack"), BLOCK_TURTLE_EGG_DROP("block.turtle_egg.drop"), BOTTLE_DRAGONBREATH("bottle.dragonbreath"), - BREAK_AMETHYST_BLOCK("break.amethyst_block"), - BREAK_AMETHYST_CLUSTER("break.amethyst_cluster"), - BREAK_AZALEA("break.azalea"), - BREAK_BIG_DRIPLEAF("break.big_dripleaf"), - BREAK_CALCITE("break.calcite"), - BREAK_DIRT_WITH_ROOTS("break.dirt_with_roots"), - BREAK_DRIPSTONE_BLOCK("break.dripstone_block"), - BREAK_HANGING_ROOTS("break.hanging_roots"), - BREAK_LARGE_AMETHYST_BUD("break.large_amethyst_bud"), - BREAK_MEDIUM_AMETHYST_BUD("break.medium_amethyst_bud"), - BREAK_POINTED_DRIPSTONE("break.pointed_dripstone"), - BREAK_SMALL_AMETHYST_BUD("break.small_amethyst_bud"), - BREAK_SPORE_BLOSSOM("break.spore_blossom"), - BREAK_TUFF("break.tuff"), + @Since("FUTURE") BREAK_AMETHYST_BLOCK("break.amethyst_block"), + @Since("FUTURE") BREAK_AMETHYST_CLUSTER("break.amethyst_cluster"), + @Since("FUTURE") BREAK_AZALEA("break.azalea"), + @Since("FUTURE") BREAK_BIG_DRIPLEAF("break.big_dripleaf"), + @Since("FUTURE") BREAK_CALCITE("break.calcite"), + @Since("FUTURE") BREAK_DIRT_WITH_ROOTS("break.dirt_with_roots"), + @Since("FUTURE") BREAK_DRIPSTONE_BLOCK("break.dripstone_block"), + @Since("FUTURE") BREAK_HANGING_ROOTS("break.hanging_roots"), + @Since("FUTURE") BREAK_LARGE_AMETHYST_BUD("break.large_amethyst_bud"), + @Since("FUTURE") BREAK_MEDIUM_AMETHYST_BUD("break.medium_amethyst_bud"), + @Since("FUTURE") BREAK_POINTED_DRIPSTONE("break.pointed_dripstone"), + @Since("FUTURE") BREAK_SMALL_AMETHYST_BUD("break.small_amethyst_bud"), + @Since("FUTURE") BREAK_SPORE_BLOSSOM("break.spore_blossom"), + @Since("FUTURE") BREAK_TUFF("break.tuff"), BUBBLE_DOWN("bubble.down"), BUBBLE_DOWNINSIDE("bubble.downinside"), BUBBLE_POP("bubble.pop"), @@ -118,13 +116,13 @@ public enum Sound { BUBBLE_UPINSIDE("bubble.upinside"), BUCKET_EMPTY_FISH("bucket.empty_fish"), BUCKET_EMPTY_LAVA("bucket.empty_lava"), - BUCKET_EMPTY_POWDER_SNOW("bucket.empty_powder_snow"), + @Since("FUTURE") BUCKET_EMPTY_POWDER_SNOW("bucket.empty_powder_snow"), BUCKET_EMPTY_WATER("bucket.empty_water"), BUCKET_FILL_FISH("bucket.fill_fish"), BUCKET_FILL_LAVA("bucket.fill_lava"), - BUCKET_FILL_POWDER_SNOW("bucket.fill_powder_snow"), + @Since("FUTURE") BUCKET_FILL_POWDER_SNOW("bucket.fill_powder_snow"), BUCKET_FILL_WATER("bucket.fill_water"), - CAKE_ADD_CANDLE("cake.add_candle"), + @Since("FUTURE") CAKE_ADD_CANDLE("cake.add_candle"), CAMERA_TAKE_PICTURE("camera.take_picture"), CAULDRON_ADDDYE("cauldron.adddye"), CAULDRON_CLEANARMOR("cauldron.cleanarmor"), @@ -135,17 +133,17 @@ public enum Sound { CAULDRON_FILLWATER("cauldron.fillwater"), CAULDRON_TAKEPOTION("cauldron.takepotion"), CAULDRON_TAKEWATER("cauldron.takewater"), - CAULDRON_DRIP_LAVA_POINTED_DRIPSTONE("cauldron_drip.lava.pointed_dripstone"), - CAULDRON_DRIP_WATER_POINTED_DRIPSTONE("cauldron_drip.water.pointed_dripstone"), - CHIME_AMETHYST_BLOCK("chime.amethyst_block"), - COMPONENT_JUMP_TO_BLOCK("component.jump_to_block"), + @Since("FUTURE") CAULDRON_DRIP_LAVA_POINTED_DRIPSTONE("cauldron_drip.lava.pointed_dripstone"), + @Since("FUTURE") CAULDRON_DRIP_WATER_POINTED_DRIPSTONE("cauldron_drip.water.pointed_dripstone"), + @Since("FUTURE") CHIME_AMETHYST_BLOCK("chime.amethyst_block"), + @Since("FUTURE") COMPONENT_JUMP_TO_BLOCK("component.jump_to_block"), CONDUIT_ACTIVATE("conduit.activate"), CONDUIT_AMBIENT("conduit.ambient"), CONDUIT_ATTACK("conduit.attack"), CONDUIT_DEACTIVATE("conduit.deactivate"), CONDUIT_SHORT("conduit.short"), - COPPER_WAX_OFF("copper.wax.off"), - COPPER_WAX_ON("copper.wax.on"), + @Since("FUTURE") COPPER_WAX_OFF("copper.wax.off"), + @Since("FUTURE") COPPER_WAX_ON("copper.wax.on"), CROSSBOW_LOADING_END("crossbow.loading.end"), CROSSBOW_LOADING_MIDDLE("crossbow.loading.middle"), CROSSBOW_LOADING_START("crossbow.loading.start"), @@ -156,23 +154,23 @@ public enum Sound { DAMAGE_FALLBIG("damage.fallbig"), DAMAGE_FALLSMALL("damage.fallsmall"), DIG_ANCIENT_DEBRIS("dig.ancient_debris"), - DIG_AZALEA_LEAVES("dig.azalea_leaves"), + @Since("FUTURE") DIG_AZALEA_LEAVES("dig.azalea_leaves"), DIG_BASALT("dig.basalt"), DIG_BONE_BLOCK("dig.bone_block"), - DIG_CANDLE("dig.candle"), - DIG_CAVE_VINES("dig.cave_vines"), + @Since("FUTURE") DIG_CANDLE("dig.candle"), + @Since("FUTURE") DIG_CAVE_VINES("dig.cave_vines"), DIG_CHAIN("dig.chain"), DIG_CLOTH("dig.cloth"), - DIG_COPPER("dig.copper"), + @Since("FUTURE") DIG_COPPER("dig.copper"), DIG_CORAL("dig.coral"), - DIG_DEEPSLATE("dig.deepslate"), - DIG_DEEPSLATE_BRICKS("dig.deepslate_bricks"), + @Since("FUTURE") DIG_DEEPSLATE("dig.deepslate"), + @Since("FUTURE") DIG_DEEPSLATE_BRICKS("dig.deepslate_bricks"), DIG_FUNGUS("dig.fungus"), DIG_GRASS("dig.grass"), DIG_GRAVEL("dig.gravel"), DIG_HONEY_BLOCK("dig.honey_block"), DIG_LODESTONE("dig.lodestone"), - DIG_MOSS("dig.moss"), + @Since("FUTURE") DIG_MOSS("dig.moss"), DIG_NETHER_BRICK("dig.nether_brick"), DIG_NETHER_GOLD_ORE("dig.nether_gold_ore"), DIG_NETHER_SPROUTS("dig.nether_sprouts"), @@ -180,7 +178,7 @@ public enum Sound { DIG_NETHERITE("dig.netherite"), DIG_NETHERRACK("dig.netherrack"), DIG_NYLIUM("dig.nylium"), - DIG_POWDER_SNOW("dig.powder_snow"), + @Since("FUTURE") DIG_POWDER_SNOW("dig.powder_snow"), DIG_ROOTS("dig.roots"), DIG_SAND("dig.sand"), DIG_SHROOMLIGHT("dig.shroomlight"), @@ -191,36 +189,36 @@ public enum Sound { DIG_STONE("dig.stone"), DIG_VINES("dig.vines"), DIG_WOOD("dig.wood"), - DRIP_LAVA_POINTED_DRIPSTONE("drip.lava.pointed_dripstone"), - DRIP_WATER_POINTED_DRIPSTONE("drip.water.pointed_dripstone"), + @Since("FUTURE") DRIP_LAVA_POINTED_DRIPSTONE("drip.lava.pointed_dripstone"), + @Since("FUTURE") DRIP_WATER_POINTED_DRIPSTONE("drip.water.pointed_dripstone"), ELYTRA_LOOP("elytra.loop"), ENTITY_ZOMBIE_CONVERTED_TO_DROWNED("entity.zombie.converted_to_drowned"), - EXTINGUISH_CANDLE("extinguish.candle"), - FALL_AMETHYST_BLOCK("fall.amethyst_block"), - FALL_AMETHYST_CLUSTER("fall.amethyst_cluster"), + @Since("FUTURE") EXTINGUISH_CANDLE("extinguish.candle"), + @Since("FUTURE") FALL_AMETHYST_BLOCK("fall.amethyst_block"), + @Since("FUTURE") FALL_AMETHYST_CLUSTER("fall.amethyst_cluster"), FALL_ANCIENT_DEBRIS("fall.ancient_debris"), - FALL_AZALEA("fall.azalea"), - FALL_AZALEA_LEAVES("fall.azalea_leaves"), + @Since("FUTURE") FALL_AZALEA("fall.azalea"), + @Since("FUTURE") FALL_AZALEA_LEAVES("fall.azalea_leaves"), FALL_BASALT("fall.basalt"), - FALL_BIG_DRIPLEAF("fall.big_dripleaf"), + @Since("FUTURE") FALL_BIG_DRIPLEAF("fall.big_dripleaf"), FALL_BONE_BLOCK("fall.bone_block"), - FALL_CALCITE("fall.calcite"), - FALL_CAVE_VINES("fall.cave_vines"), + @Since("FUTURE") FALL_CALCITE("fall.calcite"), + @Since("FUTURE") FALL_CAVE_VINES("fall.cave_vines"), FALL_CHAIN("fall.chain"), FALL_CLOTH("fall.cloth"), - FALL_COPPER("fall.copper"), + @Since("FUTURE") FALL_COPPER("fall.copper"), FALL_CORAL("fall.coral"), - FALL_DEEPSLATE("fall.deepslate"), - FALL_DEEPSLATE_BRICKS("fall.deepslate_bricks"), - FALL_DIRT_WITH_ROOTS("fall.dirt_with_roots"), - FALL_DRIPSTONE_BLOCK("fall.dripstone_block"), + @Since("FUTURE") FALL_DEEPSLATE("fall.deepslate"), + @Since("FUTURE") FALL_DEEPSLATE_BRICKS("fall.deepslate_bricks"), + @Since("FUTURE") FALL_DIRT_WITH_ROOTS("fall.dirt_with_roots"), + @Since("FUTURE") FALL_DRIPSTONE_BLOCK("fall.dripstone_block"), FALL_EGG("fall.egg"), FALL_GRASS("fall.grass"), FALL_GRAVEL("fall.gravel"), - FALL_HANGING_ROOTS("fall.hanging_roots"), + @Since("FUTURE") FALL_HANGING_ROOTS("fall.hanging_roots"), FALL_HONEY_BLOCK("fall.honey_block"), FALL_LADDER("fall.ladder"), - FALL_MOSS("fall.moss"), + @Since("FUTURE") FALL_MOSS("fall.moss"), FALL_NETHER_BRICK("fall.nether_brick"), FALL_NETHER_GOLD_ORE("fall.nether_gold_ore"), FALL_NETHER_SPROUTS("fall.nether_sprouts"), @@ -228,8 +226,8 @@ public enum Sound { FALL_NETHERITE("fall.netherite"), FALL_NETHERRACK("fall.netherrack"), FALL_NYLIUM("fall.nylium"), - FALL_POINTED_DRIPSTONE("fall.pointed_dripstone"), - FALL_POWDER_SNOW("fall.powder_snow"), + @Since("FUTURE") FALL_POINTED_DRIPSTONE("fall.pointed_dripstone"), + @Since("FUTURE") FALL_POWDER_SNOW("fall.powder_snow"), FALL_ROOTS("fall.roots"), FALL_SAND("fall.sand"), FALL_SHROOMLIGHT("fall.shroomlight"), @@ -237,10 +235,10 @@ public enum Sound { FALL_SNOW("fall.snow"), FALL_SOUL_SAND("fall.soul_sand"), FALL_SOUL_SOIL("fall.soul_soil"), - FALL_SPORE_BLOSSOM("fall.spore_blossom"), + @Since("FUTURE") FALL_SPORE_BLOSSOM("fall.spore_blossom"), FALL_STEM("fall.stem"), FALL_STONE("fall.stone"), - FALL_TUFF("fall.tuff"), + @Since("FUTURE") FALL_TUFF("fall.tuff"), FALL_VINES("fall.vines"), FALL_WOOD("fall.wood"), FIRE_FIRE("fire.fire"), @@ -254,32 +252,32 @@ public enum Sound { GAME_PLAYER_ATTACK_STRONG("game.player.attack.strong"), GAME_PLAYER_DIE("game.player.die"), GAME_PLAYER_HURT("game.player.hurt"), - HIT_AMETHYST_BLOCK("hit.amethyst_block"), - HIT_AMETHYST_CLUSTER("hit.amethyst_cluster"), + @Since("FUTURE") HIT_AMETHYST_BLOCK("hit.amethyst_block"), + @Since("FUTURE") HIT_AMETHYST_CLUSTER("hit.amethyst_cluster"), HIT_ANCIENT_DEBRIS("hit.ancient_debris"), HIT_ANVIL("hit.anvil"), - HIT_AZALEA("hit.azalea"), - HIT_AZALEA_LEAVES("hit.azalea_leaves"), + @Since("FUTURE") HIT_AZALEA("hit.azalea"), + @Since("FUTURE") HIT_AZALEA_LEAVES("hit.azalea_leaves"), HIT_BASALT("hit.basalt"), - HIT_BIG_DRIPLEAF("hit.big_dripleaf"), + @Since("FUTURE") HIT_BIG_DRIPLEAF("hit.big_dripleaf"), HIT_BONE_BLOCK("hit.bone_block"), - HIT_CALCITE("hit.calcite"), - HIT_CANDLE("hit.candle"), - HIT_CAVE_VINES("hit.cave_vines"), + @Since("FUTURE") HIT_CALCITE("hit.calcite"), + @Since("FUTURE") HIT_CANDLE("hit.candle"), + @Since("FUTURE") HIT_CAVE_VINES("hit.cave_vines"), HIT_CHAIN("hit.chain"), HIT_CLOTH("hit.cloth"), - HIT_COPPER("hit.copper"), + @Since("FUTURE") HIT_COPPER("hit.copper"), HIT_CORAL("hit.coral"), - HIT_DEEPSLATE("hit.deepslate"), - HIT_DEEPSLATE_BRICKS("hit.deepslate_bricks"), - HIT_DIRT_WITH_ROOTS("hit.dirt_with_roots"), - HIT_DRIPSTONE_BLOCK("hit.dripstone_block"), + @Since("FUTURE") HIT_DEEPSLATE("hit.deepslate"), + @Since("FUTURE") HIT_DEEPSLATE_BRICKS("hit.deepslate_bricks"), + @Since("FUTURE") HIT_DIRT_WITH_ROOTS("hit.dirt_with_roots"), + @Since("FUTURE") HIT_DRIPSTONE_BLOCK("hit.dripstone_block"), HIT_GRASS("hit.grass"), HIT_GRAVEL("hit.gravel"), - HIT_HANGING_ROOTS("hit.hanging_roots"), + @Since("FUTURE") HIT_HANGING_ROOTS("hit.hanging_roots"), HIT_HONEY_BLOCK("hit.honey_block"), HIT_LADDER("hit.ladder"), - HIT_MOSS("hit.moss"), + @Since("FUTURE") HIT_MOSS("hit.moss"), HIT_NETHER_BRICK("hit.nether_brick"), HIT_NETHER_GOLD_ORE("hit.nether_gold_ore"), HIT_NETHER_SPROUTS("hit.nether_sprouts"), @@ -287,8 +285,8 @@ public enum Sound { HIT_NETHERITE("hit.netherite"), HIT_NETHERRACK("hit.netherrack"), HIT_NYLIUM("hit.nylium"), - HIT_POINTED_DRIPSTONE("hit.pointed_dripstone"), - HIT_POWDER_SNOW("hit.powder_snow"), + @Since("FUTURE") HIT_POINTED_DRIPSTONE("hit.pointed_dripstone"), + @Since("FUTURE") HIT_POWDER_SNOW("hit.powder_snow"), HIT_ROOTS("hit.roots"), HIT_SAND("hit.sand"), HIT_SHROOMLIGHT("hit.shroomlight"), @@ -296,18 +294,18 @@ public enum Sound { HIT_SNOW("hit.snow"), HIT_SOUL_SAND("hit.soul_sand"), HIT_SOUL_SOIL("hit.soul_soil"), - HIT_SPORE_BLOSSOM("hit.spore_blossom"), + @Since("FUTURE") HIT_SPORE_BLOSSOM("hit.spore_blossom"), HIT_STEM("hit.stem"), HIT_STONE("hit.stone"), - HIT_TUFF("hit.tuff"), + @Since("FUTURE") HIT_TUFF("hit.tuff"), HIT_VINES("hit.vines"), HIT_WOOD("hit.wood"), - ITEM_BONE_MEAL_USE("item.bone_meal.use"), + @Since("FUTURE") ITEM_BONE_MEAL_USE("item.bone_meal.use"), ITEM_BOOK_PAGE_TURN("item.book.page_turn"), ITEM_BOOK_PUT("item.book.put"), ITEM_SHIELD_BLOCK("item.shield.block"), - ITEM_SPYGLASS_STOP_USING("item.spyglass.stop_using"), - ITEM_SPYGLASS_USE("item.spyglass.use"), + @Since("FUTURE") ITEM_SPYGLASS_STOP_USING("item.spyglass.stop_using"), + @Since("FUTURE") ITEM_SPYGLASS_USE("item.spyglass.use"), ITEM_TRIDENT_HIT("item.trident.hit"), ITEM_TRIDENT_HIT_GROUND("item.trident.hit_ground"), ITEM_TRIDENT_RETURN("item.trident.return"), @@ -317,23 +315,23 @@ public enum Sound { ITEM_TRIDENT_THROW("item.trident.throw"), ITEM_TRIDENT_THUNDER("item.trident.thunder"), JUMP_ANCIENT_DEBRIS("jump.ancient_debris"), - JUMP_AZALEA("jump.azalea"), + @Since("FUTURE") JUMP_AZALEA("jump.azalea"), JUMP_BASALT("jump.basalt"), - JUMP_BIG_DRIPLEAF("jump.big_dripleaf"), + @Since("FUTURE") JUMP_BIG_DRIPLEAF("jump.big_dripleaf"), JUMP_BONE_BLOCK("jump.bone_block"), - JUMP_CAVE_VINES("jump.cave_vines"), + @Since("FUTURE") JUMP_CAVE_VINES("jump.cave_vines"), JUMP_CHAIN("jump.chain"), JUMP_CLOTH("jump.cloth"), JUMP_CORAL("jump.coral"), - JUMP_DEEPSLATE("jump.deepslate"), - JUMP_DEEPSLATE_BRICKS("jump.deepslate_bricks"), - JUMP_DIRT_WITH_ROOTS("jump.dirt_with_roots"), - JUMP_DRIPSTONE_BLOCK("jump.dripstone_block"), + @Since("FUTURE") JUMP_DEEPSLATE("jump.deepslate"), + @Since("FUTURE") JUMP_DEEPSLATE_BRICKS("jump.deepslate_bricks"), + @Since("FUTURE") JUMP_DIRT_WITH_ROOTS("jump.dirt_with_roots"), + @Since("FUTURE") JUMP_DRIPSTONE_BLOCK("jump.dripstone_block"), JUMP_GRASS("jump.grass"), JUMP_GRAVEL("jump.gravel"), - JUMP_HANGING_ROOTS("jump.hanging_roots"), + @Since("FUTURE") JUMP_HANGING_ROOTS("jump.hanging_roots"), JUMP_HONEY_BLOCK("jump.honey_block"), - JUMP_MOSS("jump.moss"), + @Since("FUTURE") JUMP_MOSS("jump.moss"), JUMP_NETHER_BRICK("jump.nether_brick"), JUMP_NETHER_GOLD_ORE("jump.nether_gold_ore"), JUMP_NETHER_SPROUTS("jump.nether_sprouts"), @@ -341,7 +339,7 @@ public enum Sound { JUMP_NETHERITE("jump.netherite"), JUMP_NETHERRACK("jump.netherrack"), JUMP_NYLIUM("jump.nylium"), - JUMP_POINTED_DRIPSTONE("jump.pointed_dripstone"), + @Since("FUTURE") JUMP_POINTED_DRIPSTONE("jump.pointed_dripstone"), JUMP_ROOTS("jump.roots"), JUMP_SAND("jump.sand"), JUMP_SHROOMLIGHT("jump.shroomlight"), @@ -349,29 +347,29 @@ public enum Sound { JUMP_SNOW("jump.snow"), JUMP_SOUL_SAND("jump.soul_sand"), JUMP_SOUL_SOIL("jump.soul_soil"), - JUMP_SPORE_BLOSSOM("jump.spore_blossom"), + @Since("FUTURE") JUMP_SPORE_BLOSSOM("jump.spore_blossom"), JUMP_STEM("jump.stem"), JUMP_STONE("jump.stone"), JUMP_VINES("jump.vines"), JUMP_WOOD("jump.wood"), LAND_ANCIENT_DEBRIS("land.ancient_debris"), - LAND_AZALEA("land.azalea"), + @Since("FUTURE") LAND_AZALEA("land.azalea"), LAND_BASALT("land.basalt"), - LAND_BIG_DRIPLEAF("land.big_dripleaf"), + @Since("FUTURE") LAND_BIG_DRIPLEAF("land.big_dripleaf"), LAND_BONE_BLOCK("land.bone_block"), - LAND_CAVE_VINES("land.cave_vines"), + @Since("FUTURE") LAND_CAVE_VINES("land.cave_vines"), LAND_CHAIN("land.chain"), LAND_CLOTH("land.cloth"), LAND_CORAL("land.coral"), - LAND_DEEPSLATE("land.deepslate"), - LAND_DEEPSLATE_BRICKS("land.deepslate_bricks"), - LAND_DIRT_WITH_ROOTS("land.dirt_with_roots"), - LAND_DRIPSTONE_BLOCK("land.dripstone_block"), + @Since("FUTURE") LAND_DEEPSLATE("land.deepslate"), + @Since("FUTURE") LAND_DEEPSLATE_BRICKS("land.deepslate_bricks"), + @Since("FUTURE") LAND_DIRT_WITH_ROOTS("land.dirt_with_roots"), + @Since("FUTURE") LAND_DRIPSTONE_BLOCK("land.dripstone_block"), LAND_GRASS("land.grass"), LAND_GRAVEL("land.gravel"), - LAND_HANGING_ROOTS("land.hanging_roots"), + @Since("FUTURE") LAND_HANGING_ROOTS("land.hanging_roots"), LAND_HONEY_BLOCK("land.honey_block"), - LAND_MOSS("land.moss"), + @Since("FUTURE") LAND_MOSS("land.moss"), LAND_NETHER_BRICK("land.nether_brick"), LAND_NETHER_GOLD_ORE("land.nether_gold_ore"), LAND_NETHER_SPROUTS("land.nether_sprouts"), @@ -379,7 +377,7 @@ public enum Sound { LAND_NETHERITE("land.netherite"), LAND_NETHERRACK("land.netherrack"), LAND_NYLIUM("land.nylium"), - LAND_POINTED_DRIPSTONE("land.pointed_dripstone"), + @Since("FUTURE") LAND_POINTED_DRIPSTONE("land.pointed_dripstone"), LAND_ROOTS("land.roots"), LAND_SAND("land.sand"), LAND_SHROOMLIGHT("land.shroomlight"), @@ -387,7 +385,7 @@ public enum Sound { LAND_SNOW("land.snow"), LAND_SOUL_SAND("land.soul_sand"), LAND_SOUL_SOIL("land.soul_soil"), - LAND_SPORE_BLOSSOM("land.spore_blossom"), + @Since("FUTURE") LAND_SPORE_BLOSSOM("land.spore_blossom"), LAND_STEM("land.stem"), LAND_STONE("land.stone"), LAND_VINES("land.vines"), @@ -405,13 +403,13 @@ public enum Sound { MOB_ARMOR_STAND_HIT("mob.armor_stand.hit"), MOB_ARMOR_STAND_LAND("mob.armor_stand.land"), MOB_ARMOR_STAND_PLACE("mob.armor_stand.place"), - MOB_AXOLOTL_ATTACK("mob.axolotl.attack"), - MOB_AXOLOTL_DEATH("mob.axolotl.death"), - MOB_AXOLOTL_HURT("mob.axolotl.hurt"), - MOB_AXOLOTL_IDLE("mob.axolotl.idle"), - MOB_AXOLOTL_IDLE_WATER("mob.axolotl.idle_water"), - MOB_AXOLOTL_SPLASH("mob.axolotl.splash"), - MOB_AXOLOTL_SWIM("mob.axolotl.swim"), + @Since("FUTURE") MOB_AXOLOTL_ATTACK("mob.axolotl.attack"), + @Since("FUTURE") MOB_AXOLOTL_DEATH("mob.axolotl.death"), + @Since("FUTURE") MOB_AXOLOTL_HURT("mob.axolotl.hurt"), + @Since("FUTURE") MOB_AXOLOTL_IDLE("mob.axolotl.idle"), + @Since("FUTURE") MOB_AXOLOTL_IDLE_WATER("mob.axolotl.idle_water"), + @Since("FUTURE") MOB_AXOLOTL_SPLASH("mob.axolotl.splash"), + @Since("FUTURE") MOB_AXOLOTL_SWIM("mob.axolotl.swim"), MOB_BAT_DEATH("mob.bat.death"), MOB_BAT_HURT("mob.bat.hurt"), MOB_BAT_IDLE("mob.bat.idle"), @@ -510,23 +508,23 @@ public enum Sound { MOB_GHAST_FIREBALL("mob.ghast.fireball"), MOB_GHAST_MOAN("mob.ghast.moan"), MOB_GHAST_SCREAM("mob.ghast.scream"), - MOB_GLOW_SQUID_AMBIENT("mob.glow_squid.ambient"), - MOB_GLOW_SQUID_DEATH("mob.glow_squid.death"), - MOB_GLOW_SQUID_HURT("mob.glow_squid.hurt"), - MOB_GLOW_SQUID_INK_SQUIRT("mob.glow_squid.ink_squirt"), - MOB_GOAT_AMBIENT("mob.goat.ambient"), - MOB_GOAT_AMBIENT_SCREAMER("mob.goat.ambient.screamer"), - MOB_GOAT_DEATH("mob.goat.death"), - MOB_GOAT_DEATH_SCREAMER("mob.goat.death.screamer"), - MOB_GOAT_EAT("mob.goat.eat"), - MOB_GOAT_HURT("mob.goat.hurt"), - MOB_GOAT_HURT_SCREAMER("mob.goat.hurt.screamer"), - MOB_GOAT_MILK_SCREAMER("mob.goat.milk.screamer"), - MOB_GOAT_PREPARE_RAM("mob.goat.prepare_ram"), - MOB_GOAT_PREPARE_RAM_SCREAMER("mob.goat.prepare_ram.screamer"), - MOB_GOAT_RAM_IMPACT("mob.goat.ram_impact"), - MOB_GOAT_RAM_IMPACT_SCREAMER("mob.goat.ram_impact.screamer"), - MOB_GOAT_STEP("mob.goat.step"), + @Since("FUTURE") MOB_GLOW_SQUID_AMBIENT("mob.glow_squid.ambient"), + @Since("FUTURE") MOB_GLOW_SQUID_DEATH("mob.glow_squid.death"), + @Since("FUTURE") MOB_GLOW_SQUID_HURT("mob.glow_squid.hurt"), + @Since("FUTURE") MOB_GLOW_SQUID_INK_SQUIRT("mob.glow_squid.ink_squirt"), + @Since("FUTURE") MOB_GOAT_AMBIENT("mob.goat.ambient"), + @Since("FUTURE") MOB_GOAT_AMBIENT_SCREAMER("mob.goat.ambient.screamer"), + @Since("FUTURE") MOB_GOAT_DEATH("mob.goat.death"), + @Since("FUTURE") MOB_GOAT_DEATH_SCREAMER("mob.goat.death.screamer"), + @Since("FUTURE") MOB_GOAT_EAT("mob.goat.eat"), + @Since("FUTURE") MOB_GOAT_HURT("mob.goat.hurt"), + @Since("FUTURE") MOB_GOAT_HURT_SCREAMER("mob.goat.hurt.screamer"), + @Since("FUTURE") MOB_GOAT_MILK_SCREAMER("mob.goat.milk.screamer"), + @Since("FUTURE") MOB_GOAT_PREPARE_RAM("mob.goat.prepare_ram"), + @Since("FUTURE") MOB_GOAT_PREPARE_RAM_SCREAMER("mob.goat.prepare_ram.screamer"), + @Since("FUTURE") MOB_GOAT_RAM_IMPACT("mob.goat.ram_impact"), + @Since("FUTURE") MOB_GOAT_RAM_IMPACT_SCREAMER("mob.goat.ram_impact.screamer"), + @Since("FUTURE") MOB_GOAT_STEP("mob.goat.step"), MOB_GUARDIAN_AMBIENT("mob.guardian.ambient"), MOB_GUARDIAN_ATTACK_LOOP("mob.guardian.attack_loop"), MOB_GUARDIAN_DEATH("mob.guardian.death"), @@ -638,9 +636,9 @@ public enum Sound { MOB_PILLAGER_DEATH("mob.pillager.death"), MOB_PILLAGER_HURT("mob.pillager.hurt"), MOB_PILLAGER_IDLE("mob.pillager.idle"), - MOB_PLAYER_HURT_DROWN("mob.player.hurt_drown"), - MOB_PLAYER_HURT_FREEZE("mob.player.hurt_freeze"), - MOB_PLAYER_HURT_ON_FIRE("mob.player.hurt_on_fire"), + @Since("FUTURE") MOB_PLAYER_HURT_DROWN("mob.player.hurt_drown"), + @Since("FUTURE") MOB_PLAYER_HURT_FREEZE("mob.player.hurt_freeze"), + @Since("FUTURE") MOB_PLAYER_HURT_ON_FIRE("mob.player.hurt_on_fire"), MOB_POLARBEAR_DEATH("mob.polarbear.death"), MOB_POLARBEAR_HURT("mob.polarbear.hurt"), MOB_POLARBEAR_IDLE("mob.polarbear.idle"), @@ -675,7 +673,7 @@ public enum Sound { MOB_SILVERFISH_KILL("mob.silverfish.kill"), MOB_SILVERFISH_SAY("mob.silverfish.say"), MOB_SILVERFISH_STEP("mob.silverfish.step"), - MOB_SKELETON_CONVERT_TO_STRAY("mob.skeleton.convert_to_stray"), + @Since("FUTURE") MOB_SKELETON_CONVERT_TO_STRAY("mob.skeleton.convert_to_stray"), MOB_SKELETON_DEATH("mob.skeleton.death"), MOB_SKELETON_HURT("mob.skeleton.hurt"), MOB_SKELETON_SAY("mob.skeleton.say"), @@ -696,7 +694,7 @@ public enum Sound { MOB_SQUID_AMBIENT("mob.squid.ambient"), MOB_SQUID_DEATH("mob.squid.death"), MOB_SQUID_HURT("mob.squid.hurt"), - MOB_SQUID_INK_SQUIRT("mob.squid.ink_squirt"), + @Since("FUTURE") MOB_SQUID_INK_SQUIRT("mob.squid.ink_squirt"), MOB_STRAY_AMBIENT("mob.stray.ambient"), MOB_STRAY_DEATH("mob.stray.death"), MOB_STRAY_HURT("mob.stray.hurt"), @@ -764,19 +762,9 @@ public enum Sound { MOB_WOLF_WHINE("mob.wolf.whine"), @Since("1.4.0.0-PN") MOB_ZOGLIN_ANGRY("mob.zoglin.angry"), @Since("1.4.0.0-PN") MOB_ZOGLIN_ATTACK("mob.zoglin.attack"), - - @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Removed from Nukkit") - @PowerNukkitOnly("Re-added for backward compatibility. Actual removal reason is unknown.") - MOB_ZOGLIN_BOOST("mob.zoglin.boost"), - MOB_ZOGLIN_DEATH("mob.zoglin.death"), @Since("1.4.0.0-PN") MOB_ZOGLIN_HURT("mob.zoglin.hurt"), @Since("1.4.0.0-PN") MOB_ZOGLIN_IDLE("mob.zoglin.idle"), - - @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Removed from Nukkit") - @PowerNukkitOnly("Re-added for backward compatibility. Actual removal reason is unknown.") - MOB_ZOGLIN_SAY("mob.zoglin.say"), - MOB_ZOGLIN_STEP("mob.zoglin.step"), MOB_ZOMBIE_DEATH("mob.zombie.death"), MOB_ZOMBIE_HURT("mob.zombie.hurt"), @@ -822,27 +810,27 @@ public enum Sound { NOTE_SNARE("note.snare"), NOTE_XYLOPHONE("note.xylophone"), PARTICLE_SOUL_ESCAPE("particle.soul_escape"), - PICK_BERRIES_CAVE_VINES("pick_berries.cave_vines"), - PLACE_AMETHYST_BLOCK("place.amethyst_block"), - PLACE_AMETHYST_CLUSTER("place.amethyst_cluster"), - PLACE_AZALEA("place.azalea"), - PLACE_AZALEA_LEAVES("place.azalea_leaves"), - PLACE_BIG_DRIPLEAF("place.big_dripleaf"), - PLACE_CALCITE("place.calcite"), - PLACE_COPPER("place.copper"), - PLACE_DEEPSLATE("place.deepslate"), - PLACE_DEEPSLATE_BRICKS("place.deepslate_bricks"), - PLACE_DIRT_WITH_ROOTS("place.dirt_with_roots"), - PLACE_DRIPSTONE_BLOCK("place.dripstone_block"), - PLACE_HANGING_ROOTS("place.hanging_roots"), - PLACE_LARGE_AMETHYST_BUD("place.large_amethyst_bud"), - PLACE_MEDIUM_AMETHYST_BUD("place.medium_amethyst_bud"), - PLACE_MOSS("place.moss"), - PLACE_POINTED_DRIPSTONE("place.pointed_dripstone"), - PLACE_POWDER_SNOW("place.powder_snow"), - PLACE_SMALL_AMETHYST_BUD("place.small_amethyst_bud"), - PLACE_SPORE_BLOSSOM("place.spore_blossom"), - PLACE_TUFF("place.tuff"), + @Since("FUTURE") PICK_BERRIES_CAVE_VINES("pick_berries.cave_vines"), + @Since("FUTURE") PLACE_AMETHYST_BLOCK("place.amethyst_block"), + @Since("FUTURE") PLACE_AMETHYST_CLUSTER("place.amethyst_cluster"), + @Since("FUTURE") PLACE_AZALEA("place.azalea"), + @Since("FUTURE") PLACE_AZALEA_LEAVES("place.azalea_leaves"), + @Since("FUTURE") PLACE_BIG_DRIPLEAF("place.big_dripleaf"), + @Since("FUTURE") PLACE_CALCITE("place.calcite"), + @Since("FUTURE") PLACE_COPPER("place.copper"), + @Since("FUTURE") PLACE_DEEPSLATE("place.deepslate"), + @Since("FUTURE") PLACE_DEEPSLATE_BRICKS("place.deepslate_bricks"), + @Since("FUTURE") PLACE_DIRT_WITH_ROOTS("place.dirt_with_roots"), + @Since("FUTURE") PLACE_DRIPSTONE_BLOCK("place.dripstone_block"), + @Since("FUTURE") PLACE_HANGING_ROOTS("place.hanging_roots"), + @Since("FUTURE") PLACE_LARGE_AMETHYST_BUD("place.large_amethyst_bud"), + @Since("FUTURE") PLACE_MEDIUM_AMETHYST_BUD("place.medium_amethyst_bud"), + @Since("FUTURE") PLACE_MOSS("place.moss"), + @Since("FUTURE") PLACE_POINTED_DRIPSTONE("place.pointed_dripstone"), + @Since("FUTURE") PLACE_POWDER_SNOW("place.powder_snow"), + @Since("FUTURE") PLACE_SMALL_AMETHYST_BUD("place.small_amethyst_bud"), + @Since("FUTURE") PLACE_SPORE_BLOSSOM("place.spore_blossom"), + @Since("FUTURE") PLACE_TUFF("place.tuff"), PORTAL_PORTAL("portal.portal"), PORTAL_TRAVEL("portal.travel"), PORTAL_TRIGGER("portal.trigger"), @@ -893,61 +881,40 @@ public enum Sound { RECORD_STAL("record.stal"), RECORD_STRAD("record.strad"), RECORD_WAIT("record.wait"), - - @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Removed from Nukkit") - @PowerNukkitOnly("Re-added for backward compatibility. Actual removal reason is unknown.") - BLOCK_LECTERN_PLACE("block.lectern.place"), - - @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Removed from Nukkit") - @PowerNukkitOnly("Re-added for backward compatibility. Actual removal reason is unknown.") - BLOCK_LECTERN_BREAK("block.lectern.break"), - - @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Removed from Nukkit") - @PowerNukkitOnly("Re-added for backward compatibility. Actual removal reason is unknown.") - BLOCK_LECTERN_HIT("block.lectern.hit"), - - @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Removed from Nukkit") - @PowerNukkitOnly("Re-added for backward compatibility. Actual removal reason is unknown.") - BLOCK_LECTERN_STEP("block.lectern.step"), - - @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Removed from Nukkit") - @PowerNukkitOnly("Re-added for backward compatibility. Actual removal reason is unknown.") - BLOCK_LECTERN_FALL("block.lectern.fall"), - RECORD_WARD("record.ward"), RESPAWN_ANCHOR_AMBIENT("respawn_anchor.ambient"), RESPAWN_ANCHOR_CHARGE("respawn_anchor.charge"), RESPAWN_ANCHOR_DEPLETE("respawn_anchor.deplete"), RESPAWN_ANCHOR_SET_SPAWN("respawn_anchor.set_spawn"), - SCRAPE("scrape"), + @Since("FUTURE") SCRAPE("scrape"), @Since("1.4.0.0-PN") SIGN_DYE_USE("sign.dye.use"), @Since("1.4.0.0-PN") SIGN_INK_SAC_USE("sign.ink_sac.use"), SMITHING_TABLE_USE("smithing_table.use"), - STEP_AMETHYST_BLOCK("step.amethyst_block"), - STEP_AMETHYST_CLUSTER("step.amethyst_cluster"), + @Since("FUTURE") STEP_AMETHYST_BLOCK("step.amethyst_block"), + @Since("FUTURE") STEP_AMETHYST_CLUSTER("step.amethyst_cluster"), STEP_ANCIENT_DEBRIS("step.ancient_debris"), - STEP_AZALEA("step.azalea"), - STEP_AZALEA_LEAVES("step.azalea_leaves"), + @Since("FUTURE") STEP_AZALEA("step.azalea"), + @Since("FUTURE") STEP_AZALEA_LEAVES("step.azalea_leaves"), STEP_BASALT("step.basalt"), - STEP_BIG_DRIPLEAF("step.big_dripleaf"), + @Since("FUTURE") STEP_BIG_DRIPLEAF("step.big_dripleaf"), STEP_BONE_BLOCK("step.bone_block"), - STEP_CALCITE("step.calcite"), - STEP_CANDLE("step.candle"), - STEP_CAVE_VINES("step.cave_vines"), + @Since("FUTURE") STEP_CALCITE("step.calcite"), + @Since("FUTURE") STEP_CANDLE("step.candle"), + @Since("FUTURE") STEP_CAVE_VINES("step.cave_vines"), STEP_CHAIN("step.chain"), STEP_CLOTH("step.cloth"), - STEP_COPPER("step.copper"), + @Since("FUTURE") STEP_COPPER("step.copper"), STEP_CORAL("step.coral"), - STEP_DEEPSLATE("step.deepslate"), - STEP_DEEPSLATE_BRICKS("step.deepslate_bricks"), - STEP_DIRT_WITH_ROOTS("step.dirt_with_roots"), - STEP_DRIPSTONE_BLOCK("step.dripstone_block"), + @Since("FUTURE") STEP_DEEPSLATE("step.deepslate"), + @Since("FUTURE") STEP_DEEPSLATE_BRICKS("step.deepslate_bricks"), + @Since("FUTURE") STEP_DIRT_WITH_ROOTS("step.dirt_with_roots"), + @Since("FUTURE") STEP_DRIPSTONE_BLOCK("step.dripstone_block"), STEP_GRASS("step.grass"), STEP_GRAVEL("step.gravel"), - STEP_HANGING_ROOTS("step.hanging_roots"), + @Since("FUTURE") STEP_HANGING_ROOTS("step.hanging_roots"), STEP_HONEY_BLOCK("step.honey_block"), STEP_LADDER("step.ladder"), - STEP_MOSS("step.moss"), + @Since("FUTURE") STEP_MOSS("step.moss"), STEP_NETHER_BRICK("step.nether_brick"), STEP_NETHER_GOLD_ORE("step.nether_gold_ore"), STEP_NETHER_SPROUTS("step.nether_sprouts"), @@ -955,8 +922,8 @@ public enum Sound { STEP_NETHERITE("step.netherite"), STEP_NETHERRACK("step.netherrack"), STEP_NYLIUM("step.nylium"), - STEP_POINTED_DRIPSTONE("step.pointed_dripstone"), - STEP_POWDER_SNOW("step.powder_snow"), + @Since("FUTURE") STEP_POINTED_DRIPSTONE("step.pointed_dripstone"), + @Since("FUTURE") STEP_POWDER_SNOW("step.powder_snow"), STEP_ROOTS("step.roots"), STEP_SAND("step.sand"), STEP_SHROOMLIGHT("step.shroomlight"), @@ -964,16 +931,16 @@ public enum Sound { STEP_SNOW("step.snow"), STEP_SOUL_SAND("step.soul_sand"), STEP_SOUL_SOIL("step.soul_soil"), - STEP_SPORE_BLOSSOM("step.spore_blossom"), + @Since("FUTURE") STEP_SPORE_BLOSSOM("step.spore_blossom"), STEP_STEM("step.stem"), STEP_STONE("step.stone"), - STEP_TUFF("step.tuff"), + @Since("FUTURE") STEP_TUFF("step.tuff"), STEP_VINES("step.vines"), STEP_WOOD("step.wood"), TILE_PISTON_IN("tile.piston.in"), TILE_PISTON_OUT("tile.piston.out"), - TILT_DOWN_BIG_DRIPLEAF("tilt_down.big_dripleaf"), - TILT_UP_BIG_DRIPLEAF("tilt_up.big_dripleaf"), + @Since("FUTURE") TILT_DOWN_BIG_DRIPLEAF("tilt_down.big_dripleaf"), + @Since("FUTURE") TILT_UP_BIG_DRIPLEAF("tilt_up.big_dripleaf"), UI_CARTOGRAPHY_TABLE_TAKE_RESULT("ui.cartography_table.take_result"), UI_LOOM_SELECT_PATTERN("ui.loom.select_pattern"), UI_LOOM_TAKE_RESULT("ui.loom.take_result"), @@ -981,22 +948,22 @@ public enum Sound { USE_ANCIENT_DEBRIS("use.ancient_debris"), USE_BASALT("use.basalt"), USE_BONE_BLOCK("use.bone_block"), - USE_CANDLE("use.candle"), - USE_CAVE_VINES("use.cave_vines"), + @Since("FUTURE") USE_CANDLE("use.candle"), + @Since("FUTURE") USE_CAVE_VINES("use.cave_vines"), USE_CHAIN("use.chain"), USE_CLOTH("use.cloth"), - USE_COPPER("use.copper"), + @Since("FUTURE") USE_COPPER("use.copper"), USE_CORAL("use.coral"), - USE_DEEPSLATE("use.deepslate"), - USE_DEEPSLATE_BRICKS("use.deepslate_bricks"), - USE_DIRT_WITH_ROOTS("use.dirt_with_roots"), - USE_DRIPSTONE_BLOCK("use.dripstone_block"), + @Since("FUTURE") USE_DEEPSLATE("use.deepslate"), + @Since("FUTURE") USE_DEEPSLATE_BRICKS("use.deepslate_bricks"), + @Since("FUTURE") USE_DIRT_WITH_ROOTS("use.dirt_with_roots"), + @Since("FUTURE") USE_DRIPSTONE_BLOCK("use.dripstone_block"), USE_GRASS("use.grass"), USE_GRAVEL("use.gravel"), - USE_HANGING_ROOTS("use.hanging_roots"), + @Since("FUTURE") USE_HANGING_ROOTS("use.hanging_roots"), USE_HONEY_BLOCK("use.honey_block"), USE_LADDER("use.ladder"), - USE_MOSS("use.moss"), + @Since("FUTURE") USE_MOSS("use.moss"), USE_NETHER_BRICK("use.nether_brick"), USE_NETHER_GOLD_ORE("use.nether_gold_ore"), USE_NETHER_SPROUTS("use.nether_sprouts"), @@ -1004,7 +971,7 @@ public enum Sound { USE_NETHERITE("use.netherite"), USE_NETHERRACK("use.netherrack"), USE_NYLIUM("use.nylium"), - USE_POINTED_DRIPSTONE("use.pointed_dripstone"), + @Since("FUTURE") USE_POINTED_DRIPSTONE("use.pointed_dripstone"), USE_ROOTS("use.roots"), USE_SAND("use.sand"), USE_SHROOMLIGHT("use.shroomlight"), @@ -1012,7 +979,7 @@ public enum Sound { USE_SNOW("use.snow"), USE_SOUL_SAND("use.soul_sand"), USE_SOUL_SOIL("use.soul_soil"), - USE_SPORE_BLOSSOM("use.spore_blossom"), + @Since("FUTURE") USE_SPORE_BLOSSOM("use.spore_blossom"), USE_STEM("use.stem"), USE_STONE("use.stone"), USE_VINES("use.vines"), diff --git a/src/main/java/cn/nukkit/math/BlockVector3.java b/src/main/java/cn/nukkit/math/BlockVector3.java index 98d6be771f6..b35e5a8d605 100644 --- a/src/main/java/cn/nukkit/math/BlockVector3.java +++ b/src/main/java/cn/nukkit/math/BlockVector3.java @@ -45,16 +45,19 @@ public int getZ() { return this.z; } + @Since("FUTURE") public BlockVector3 setX(int x) { this.x = x; return this; } + @Since("FUTURE") public BlockVector3 setY(int y) { this.y = y; return this; } + @Since("FUTURE") public BlockVector3 setZ(int z) { this.z = z; return this; diff --git a/src/main/java/cn/nukkit/math/Vector3.java b/src/main/java/cn/nukkit/math/Vector3.java index 9ca68a1fd1b..580f2f6a5ea 100644 --- a/src/main/java/cn/nukkit/math/Vector3.java +++ b/src/main/java/cn/nukkit/math/Vector3.java @@ -46,16 +46,19 @@ public double getZ() { return this.z; } + @Since("FUTURE") public Vector3 setX(double x) { this.x = x; return this; } + @Since("FUTURE") public Vector3 setY(double y) { this.y = y; return this; } + @Since("FUTURE") public Vector3 setZ(double z) { this.z = z; return this; diff --git a/src/main/java/cn/nukkit/math/Vector3f.java b/src/main/java/cn/nukkit/math/Vector3f.java index 11f9b68c8a7..0c5a35b3cca 100644 --- a/src/main/java/cn/nukkit/math/Vector3f.java +++ b/src/main/java/cn/nukkit/math/Vector3f.java @@ -45,16 +45,19 @@ public float getZ() { return this.z; } + @Since("FUTURE") public Vector3f setX(float x) { this.x = x; return this; } + @Since("FUTURE") public Vector3f setY(float y) { this.y = y; return this; } + @Since("FUTURE") public Vector3f setZ(float z) { this.z = z; return this; diff --git a/src/main/java/cn/nukkit/network/protocol/MoveEntityAbsolutePacket.java b/src/main/java/cn/nukkit/network/protocol/MoveEntityAbsolutePacket.java index 4854cb85123..d55a63f2d3e 100644 --- a/src/main/java/cn/nukkit/network/protocol/MoveEntityAbsolutePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/MoveEntityAbsolutePacket.java @@ -1,5 +1,6 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.Since; import cn.nukkit.math.Vector3f; import lombok.ToString; @@ -19,7 +20,7 @@ public class MoveEntityAbsolutePacket extends DataPacket { public double pitch; public boolean onGround; public boolean teleport; - public boolean forceMoveLocalEntity; + @Since("FUTURE") public boolean forceMoveLocalEntity; @Override public byte pid() { diff --git a/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java b/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java index f52794961fd..d22efd78ebb 100644 --- a/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java @@ -13,18 +13,18 @@ public class MoveEntityDeltaPacket extends DataPacket { public static final int FLAG_HAS_PITCH = 0B1000; public static final int FLAG_HAS_YAW = 0B10000; public static final int FLAG_HAS_HEAD_YAW = 0B100000; - public static final int FLAG_ON_GROUND = 0B1000000; - public static final int FLAG_TELEPORTING = 0B10000000; - public static final int FLAG_FORCE_MOVE_LOCAL_ENTITY = 0B100000000; + @Since("FUTURE") public static final int FLAG_ON_GROUND = 0B1000000; + @Since("FUTURE") public static final int FLAG_TELEPORTING = 0B10000000; + @Since("FUTURE") public static final int FLAG_FORCE_MOVE_LOCAL_ENTITY = 0B100000000; - public long runtimeEntityId; + @Since("FUTURE") public long runtimeEntityId; public int flags = 0; @Since("1.4.0.0-PN") public float x = 0; @Since("1.4.0.0-PN") public float y = 0; @Since("1.4.0.0-PN") public float z = 0; - public float pitch = 0; - public float yaw = 0; - public float headYaw = 0; + @Since("FUTURE") public float pitch = 0; + @Since("FUTURE") public float yaw = 0; + @Since("FUTURE") public float headYaw = 0; @Override public byte pid() { @@ -96,6 +96,7 @@ private void putRotation(float value) { this.putByte((byte) (value / (360F / 256F))); } + @Since("FUTURE") public boolean hasFlag(int flag) { return (this.flags & flag) != 0; } diff --git a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java index 9fd482ec3a7..0f4cb6f455e 100644 --- a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java @@ -19,6 +19,7 @@ public class NPCRequestPacket extends DataPacket { @Since("1.4.0.0-PN") public int actionType; + @Since("FUTURE") public String sceneName; @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java index 2967a15f433..29b57716bb4 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java @@ -12,7 +12,7 @@ public class ResourcePacksInfoPacket extends DataPacket { public boolean mustAccept; public boolean scripting; - public boolean forceServerPacks; + @Since("FUTURE") public boolean forceServerPacks; public ResourcePack[] behaviourPackEntries = ResourcePack.EMPTY_ARRAY; public ResourcePack[] resourcePackEntries = ResourcePack.EMPTY_ARRAY; diff --git a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java index 4fe3d32e47d..4679c3edd92 100644 --- a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java @@ -27,8 +27,8 @@ public class SetTitlePacket extends DataPacket { public int fadeInTime = 0; public int stayTime = 0; public int fadeOutTime = 0; - public String xuid = ""; - public String platformOnlineId = ""; + @Since("FUTURE") public String xuid = ""; + @Since("FUTURE") public String platformOnlineId = ""; @Override public byte pid() { From e8b75994c1ae1b78365a107cb09083e0677fbca5 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 13 Dec 2021 14:58:28 -0300 Subject: [PATCH 309/394] Fixes MoveEntityDeltaPacket decoding, adds test unit --- .../protocol/MoveEntityDeltaPacket.java | 2 +- .../protocol/MoveEntityDeltaPacketTest.java | 169 ++++++++++++++++++ src/test/java/cn/nukkit/utils/BinaryTest.java | 21 +++ 3 files changed, 191 insertions(+), 1 deletion(-) create mode 100644 src/test/java/cn/nukkit/network/protocol/MoveEntityDeltaPacketTest.java create mode 100644 src/test/java/cn/nukkit/utils/BinaryTest.java diff --git a/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java b/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java index d22efd78ebb..b086ee2db15 100644 --- a/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java @@ -34,7 +34,7 @@ public byte pid() { @Override public void decode() { this.runtimeEntityId = this.getEntityRuntimeId(); - this.flags = this.getByte(); + this.flags = this.getLShort(); if ((this.flags & FLAG_HAS_X) != 0) { this.x = this.getCoordinate(); } diff --git a/src/test/java/cn/nukkit/network/protocol/MoveEntityDeltaPacketTest.java b/src/test/java/cn/nukkit/network/protocol/MoveEntityDeltaPacketTest.java new file mode 100644 index 00000000000..559f711654e --- /dev/null +++ b/src/test/java/cn/nukkit/network/protocol/MoveEntityDeltaPacketTest.java @@ -0,0 +1,169 @@ +package cn.nukkit.network.protocol; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-12-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +class MoveEntityDeltaPacketTest { + + MoveEntityDeltaPacket packet; + + @BeforeEach + void setUp() { + packet = new MoveEntityDeltaPacket(); + packet.x = 1f; + packet.y = 2f; + packet.z = 3f; + packet.pitch = 4f; + packet.yaw = 5f; + packet.headYaw = 6f; + } + + @Test + void x() { + packet.flags = MoveEntityDeltaPacket.FLAG_HAS_X; + packet = encodeDecode(); + assertEquals(1f, packet.x); + assertEquals(0f, packet.y); + assertEquals(0f, packet.z); + assertEquals(0f, packet.pitch); + assertEquals(0f, packet.yaw); + assertEquals(0f, packet.headYaw); + assertTrue(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_X)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Y)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Z)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_PITCH)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_YAW)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_HEAD_YAW)); + } + + @Test + void y() { + packet.flags = MoveEntityDeltaPacket.FLAG_HAS_Y; + packet = encodeDecode(); + assertEquals(0f, packet.x); + assertEquals(2f, packet.y); + assertEquals(0f, packet.z); + assertEquals(0f, packet.pitch); + assertEquals(0f, packet.yaw); + assertEquals(0f, packet.headYaw); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_X)); + assertTrue(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Y)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Z)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_PITCH)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_YAW)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_HEAD_YAW)); + } + + @Test + void z() { + packet.flags = MoveEntityDeltaPacket.FLAG_HAS_Z; + packet = encodeDecode(); + assertEquals(0f, packet.x); + assertEquals(0f, packet.y); + assertEquals(3f, packet.z); + assertEquals(0f, packet.pitch); + assertEquals(0f, packet.yaw); + assertEquals(0f, packet.headYaw); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_X)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Y)); + assertTrue(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Z)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_PITCH)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_YAW)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_HEAD_YAW)); + } + + @Test + void pitch() { + packet.flags = MoveEntityDeltaPacket.FLAG_HAS_PITCH; + packet = encodeDecode(); + assertEquals(0f, packet.x); + assertEquals(0f, packet.y); + assertEquals(0f, packet.z); + assertEquals(impreciseRotation(4f), packet.pitch); + assertEquals(0f, packet.yaw); + assertEquals(0f, packet.headYaw); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_X)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Y)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Z)); + assertTrue(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_PITCH)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_YAW)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_HEAD_YAW)); + } + + @Test + void yaw() { + packet.flags = MoveEntityDeltaPacket.FLAG_HAS_YAW; + packet = encodeDecode(); + assertEquals(0f, packet.x); + assertEquals(0f, packet.y); + assertEquals(0f, packet.z); + assertEquals(0f, packet.pitch); + assertEquals(impreciseRotation(5f), packet.yaw); + assertEquals(0f, packet.headYaw); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_X)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Y)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Z)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_PITCH)); + assertTrue(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_YAW)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_HEAD_YAW)); + } + + @Test + void headYaw() { + packet.flags = MoveEntityDeltaPacket.FLAG_HAS_HEAD_YAW; + packet = encodeDecode(); + assertEquals(0f, packet.x); + assertEquals(0f, packet.y); + assertEquals(0f, packet.z); + assertEquals(0f, packet.pitch); + assertEquals(0f, packet.yaw); + assertEquals(impreciseRotation(6f), packet.headYaw); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_X)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Y)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Z)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_PITCH)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_YAW)); + assertTrue(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_HEAD_YAW)); + } + + @Test + void xyz() { + packet.flags = MoveEntityDeltaPacket.FLAG_HAS_X | MoveEntityDeltaPacket.FLAG_HAS_Y | MoveEntityDeltaPacket.FLAG_HAS_Z; + packet = encodeDecode(); + assertEquals(1f, packet.x); + assertEquals(2f, packet.y); + assertEquals(3f, packet.z); + assertEquals(0f, packet.pitch); + assertEquals(0f, packet.yaw); + assertEquals(0f, packet.headYaw); + assertTrue(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_X)); + assertTrue(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Y)); + assertTrue(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_Z)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_PITCH)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_YAW)); + assertFalse(packet.hasFlag(MoveEntityDeltaPacket.FLAG_HAS_HEAD_YAW)); + } + + private MoveEntityDeltaPacket encodeDecode() { + packet.encode(); + MoveEntityDeltaPacket other = new MoveEntityDeltaPacket(); + other.setBuffer(packet.getBuffer()); + other.getUnsignedVarInt(); + other.decode(); + return other; + } + + private float impreciseRotation(float rotation) { + return ((byte) (rotation / (360F / 256F))) * (360F / 256F); + } +} diff --git a/src/test/java/cn/nukkit/utils/BinaryTest.java b/src/test/java/cn/nukkit/utils/BinaryTest.java new file mode 100644 index 00000000000..eec6a3488f7 --- /dev/null +++ b/src/test/java/cn/nukkit/utils/BinaryTest.java @@ -0,0 +1,21 @@ +package cn.nukkit.utils; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author joserobjr + * @since 2021-12-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +class BinaryTest { + @Test + void writeReadLInt() { + final byte[] bytes = Binary.writeLInt(1065353216); + assertEquals(1065353216, Binary.readLInt(bytes)); + } +} From bd1ae2652d4c99a34b704ab15b5149d3393e7a28 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 13 Dec 2021 15:43:24 -0300 Subject: [PATCH 310/394] Fixes regression of #267 and add unit tests --- .../nukkit/entity/item/EntityFishingHook.java | 5 - .../nukkit/entity/projectile/EntityArrow.java | 2 +- .../entity/projectile/EntityProjectile.java | 47 ++++++-- .../projectile/EntityThrownTrident.java | 3 +- .../entity/EntityDamageByEntityEvent.java | 26 +++-- .../entity/item/EntityFishingHookTest.java | 107 ++++++++++++++++++ .../cn/nukkit/level/ParticleEffectTest.java | 20 ++++ 7 files changed, 184 insertions(+), 26 deletions(-) create mode 100644 src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java create mode 100644 src/test/java/cn/nukkit/level/ParticleEffectTest.java diff --git a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java index 44363f19835..454891eb1a8 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java @@ -60,11 +60,6 @@ public EntityFishingHook(FullChunk chunk, CompoundTag nbt) { public EntityFishingHook(FullChunk chunk, CompoundTag nbt, Entity shootingEntity) { super(chunk, nbt, shootingEntity); - } - - @Override - protected void initEntity() { - super.initEntity(); // https://github.com/PowerNukkit/PowerNukkit/issues/267 if (this.age > 0) { this.close(); diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java index 89b4aa4dce9..f5688a31678 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityArrow.java @@ -79,13 +79,13 @@ public EntityArrow(FullChunk chunk, CompoundTag nbt, Entity shootingEntity) { public EntityArrow(FullChunk chunk, CompoundTag nbt, Entity shootingEntity, boolean critical) { super(chunk, nbt, shootingEntity); - closeOnCollide = false; this.setCritical(critical); } @Override protected void initEntity() { super.initEntity(); + closeOnCollide = false; this.damage = namedTag.contains("damage") ? namedTag.getDouble("damage") : 2; this.pickupMode = namedTag.contains("pickup") ? namedTag.getByte("pickup") : PICKUP_ANY; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index 903bb4ea063..928bacb9379 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -1,5 +1,6 @@ package cn.nukkit.entity.projectile; +import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.Player; @@ -32,11 +33,14 @@ public abstract class EntityProjectile extends Entity { @Since("FUTURE") public static final int PICKUP_ANY = 1; @Since("FUTURE") public static final int PICKUP_CREATIVE = 2; - public Entity shootingEntity = null; + public Entity shootingEntity; - @PowerNukkitOnly - @Since("1.4.0.0-PN") - public boolean hasAge = true; + /** + * It's inverted from {@link #getHasAge()} because of the poor architecture chosen by the original devs + * on the entity construction and initialization. It's impossible to set it to true before + * the initialization of the child classes. + */ + private boolean noAge; protected double getDamage() { return namedTag.contains("damage") ? namedTag.getDouble("damage") : getBaseDamage(); @@ -46,11 +50,11 @@ protected double getBaseDamage() { return 0; } - public boolean hadCollision = false; + public boolean hadCollision; - public boolean closeOnCollide = true; + public boolean closeOnCollide; - protected double damage = 0; + protected double damage; public EntityProjectile(FullChunk chunk, CompoundTag nbt) { this(chunk, nbt, null); @@ -63,6 +67,8 @@ public EntityProjectile(FullChunk chunk, CompoundTag nbt, Entity shootingEntity) this.setDataProperty(new LongEntityData(DATA_SHOOTER_ID, shootingEntity.getId())); } } + + @PowerNukkitOnly("Allows to modify the damage based on the entity being damaged") @Since("1.4.0.0-PN") @@ -121,11 +127,12 @@ protected void afterCollisionWithEntity(Entity entity) { @Override protected void initEntity() { + this.closeOnCollide = true; super.initEntity(); this.setMaxHealth(1); this.setHealth(1); - if (this.namedTag.contains("Age") && this.hasAge) { + if (this.namedTag.contains("Age") && !this.noAge) { this.age = this.namedTag.getShort("Age"); } } @@ -138,7 +145,7 @@ public boolean canCollideWith(Entity entity) { @Override public void saveNBT() { super.saveNBT(); - if (this.hasAge) { + if (this.noAge) { this.namedTag.putShort("Age", this.age); } } @@ -285,13 +292,31 @@ protected void addHitEffect() { @PowerNukkitOnly @Since("1.4.0.0-PN") + @Deprecated + @DeprecationDetails( + by = "PowerNukkit", since = "FUTURE", reason = "Bad method name", replaceWith = "getHasAge", + toBeRemovedAt = "1.7.0.0-PN") public boolean hasAge() { - return hasAge; + return !noAge; } @PowerNukkitOnly @Since("1.4.0.0-PN") + @Deprecated + @DeprecationDetails( + by = "PowerNukkit", since = "FUTURE", reason = "Bad method name", replaceWith = "setHasAge", + toBeRemovedAt = "1.7.0.0-PN") public void setAge(boolean hasAge) { - this.hasAge = hasAge; + this.noAge = hasAge; + } + + @PowerNukkitOnly + @Since("1.4.0.0-PN") + public void setHasAge(boolean hasAge) { + this.noAge = !hasAge; + } + + public boolean getHasAge() { + return !this.noAge; } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index b7b69c96a23..f4efd8bb891 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -130,14 +130,13 @@ public String getOriginalName() { @Override protected void initEntity() { + super.setHasAge(false); super.initEntity(); this.trident = namedTag.contains(TAG_TRIDENT) ? NBTIO.getItemHelper(namedTag.getCompound(TAG_TRIDENT)) : Item.get(0); this.pickupMode = namedTag.contains(TAG_PICKUP) ? namedTag.getByte(TAG_PICKUP) : PICKUP_ANY; this.closeOnCollide = false; - this.hasAge = false; - if (namedTag.contains(TAG_TRIDENT)) { this.trident = NBTIO.getItemHelper(namedTag.getCompound(TAG_TRIDENT)); this.loyaltyLevel = this.trident.getEnchantmentLevel(Enchantment.ID_TRIDENT_LOYALTY); diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java index 36490835d89..7c471c654ac 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java @@ -5,6 +5,8 @@ import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.potion.Effect; +import javax.annotation.Nonnull; +import javax.annotation.Nullable; import java.util.Map; /** @@ -12,37 +14,42 @@ */ public class EntityDamageByEntityEvent extends EntityDamageEvent { + @Nonnull private final Entity damager; private float knockBack; + @Nullable private Enchantment[] enchantments; - public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause cause, float damage) { + public EntityDamageByEntityEvent(@Nonnull Entity damager, @Nonnull Entity entity, @Nonnull DamageCause cause, float damage) { this(damager, entity, cause, damage, 0.3f); } - public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause cause, Map modifiers) { + public EntityDamageByEntityEvent(@Nonnull Entity damager, @Nonnull Entity entity, @Nonnull DamageCause cause, Map modifiers) { this(damager, entity, cause, modifiers, 0.3f); } - public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause cause, float damage, float knockBack) { + public EntityDamageByEntityEvent(@Nonnull Entity damager, @Nonnull Entity entity, @Nonnull DamageCause cause, float damage, float knockBack) { super(entity, cause, damage); this.damager = damager; this.knockBack = knockBack; this.addAttackerModifiers(damager); } - public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause cause, Map modifiers, float knockBack) { - this(damager, entity, cause, modifiers, knockBack, Enchantment.EMPTY_ARRAY); + public EntityDamageByEntityEvent(@Nonnull Entity damager, @Nonnull Entity entity, @Nonnull DamageCause cause, @Nonnull Map modifiers, float knockBack) { + this(damager, entity, cause, modifiers, knockBack, null); } @Since("FUTURE") - public EntityDamageByEntityEvent(Entity damager, Entity entity, DamageCause cause, Map modifiers, float knockBack, Enchantment[] enchantments) { + public EntityDamageByEntityEvent(@Nonnull Entity damager, @Nonnull Entity entity, @Nonnull DamageCause cause, @Nonnull Map modifiers, float knockBack, @Nullable Enchantment[] enchantments) { super(entity, cause, modifiers); + if (enchantments != null) { + enchantments = enchantments.length == 0 ? Enchantment.EMPTY_ARRAY : enchantments.clone(); + } this.damager = damager; this.knockBack = knockBack; - this.enchantments = enchantments == null? Enchantment.EMPTY_ARRAY : enchantments.clone(); + this.enchantments = enchantments; this.addAttackerModifiers(damager); } @@ -56,6 +63,7 @@ protected void addAttackerModifiers(Entity damager) { } } + @Nonnull public Entity getDamager() { return damager; } @@ -69,7 +77,11 @@ public void setKnockBack(float knockBack) { } @Since("FUTURE") + @Nullable public Enchantment[] getWeaponEnchantments() { + if (enchantments == null) { + return null; + } return enchantments.length > 0? enchantments.clone() : Enchantment.EMPTY_ARRAY; } } diff --git a/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java b/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java new file mode 100644 index 00000000000..6dbf656daf1 --- /dev/null +++ b/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java @@ -0,0 +1,107 @@ +package cn.nukkit.entity.item; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.entity.Entity; +import cn.nukkit.entity.passive.EntityPig; +import cn.nukkit.item.Item; +import cn.nukkit.item.ItemID; +import cn.nukkit.item.enchantment.Enchantment; +import cn.nukkit.level.Level; +import cn.nukkit.math.Vector3; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockEntity; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-12-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class EntityFishingHookTest { + @MockLevel + Level level; + + @MockEntity(type = EntityPig.class) + EntityPig pig; + + EntityFishingHook fishingHook; + + @BeforeEach + void setUp() { + level.setBlockStateAt(0, 63, 0, BlockState.of(BlockID.STILL_WATER)); + fishingHook = new EntityFishingHook(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0))); + } + + @Test + void overAgedFishingHook() { + fishingHook = new EntityFishingHook(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0)) + .putShort("Age", 1)); + assertTrue(fishingHook.closed); + } + + @Test + void canCollide() { + fishingHook.canCollide = false; + assertFalse(fishingHook.canCollide()); + + fishingHook.canCollide = true; + assertTrue(fishingHook.canCollide()); + } + + @Test + void setTarget() { + fishingHook.setTarget(1); + assertEquals(1L, fishingHook.getDataPropertyLong(Entity.DATA_TARGET_EID)); + assertFalse(fishingHook.canCollide); + } + + @Test + void checkLureNoRod() { + assertEquals(120, fishingHook.waitChance); + fishingHook.checkLure(); + assertEquals(120, fishingHook.waitChance); + } + + @Test + void checkLureNoLure() { + fishingHook.rod = Item.get(ItemID.FISHING_ROD); + assertEquals(120, fishingHook.waitChance); + fishingHook.checkLure(); + assertEquals(120, fishingHook.waitChance); + } + + @Test + void checkLureLv1() { + fishingHook.rod = Item.get(ItemID.FISHING_ROD); + fishingHook.rod.addEnchantment(Enchantment.getEnchantment(Enchantment.ID_LURE)); + assertEquals(120, fishingHook.waitChance); + fishingHook.checkLure(); + assertEquals(120 - 25, fishingHook.waitChance); + } + + @Test + void checkLureLv2() { + fishingHook.rod = Item.get(ItemID.FISHING_ROD); + fishingHook.rod.addEnchantment(Enchantment.getEnchantment(Enchantment.ID_LURE).setLevel(2)); + assertEquals(120, fishingHook.waitChance); + fishingHook.checkLure(); + assertEquals(120 - 50, fishingHook.waitChance); + } + + @Test + void onCollideWithEntity() { + assertNotEquals(0, pig.getId()); + fishingHook.onCollideWithEntity(pig); + assertEquals(pig.getId(), fishingHook.getDataPropertyLong(Entity.DATA_TARGET_EID)); + } +} diff --git a/src/test/java/cn/nukkit/level/ParticleEffectTest.java b/src/test/java/cn/nukkit/level/ParticleEffectTest.java new file mode 100644 index 00000000000..adb3ea65bc9 --- /dev/null +++ b/src/test/java/cn/nukkit/level/ParticleEffectTest.java @@ -0,0 +1,20 @@ +package cn.nukkit.level; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author joserobjr + * @since 2021-12-13 + */ +@PowerNukkitOnly +@Since("FUTURE") +class ParticleEffectTest { + @Test + void getIdentifier() { + assertEquals("minecraft:wax_particle", ParticleEffect.WAX.getIdentifier()); + } +} From 6f02b4bc566f546e9c43aeebb634cd59db3e7b07 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 13 Dec 2021 15:56:58 -0300 Subject: [PATCH 311/394] Add new Since annotations --- CHANGELOG.md | 4 ++++ src/main/java/cn/nukkit/level/Sound.java | 24 ++++++++++++------------ 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac1cfd1fd97..1be25b36de8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,10 @@ This work in progress version supports Minecraft `1.18.0`. ### Changed - [#1258] Changed supported version to Minecraft Bedrock Edition `1.18.0`. +### Fixes +- [#267] Regression of: Fishing hooks without players, loaded from the level save. +- [#1267] Network decoding of the `MoveEntityDeltaPacket` + ### Documentation - [#1267] Added all missing `@PowerNukkitOnly` annotations - [#1267] Added all missing `@Override` annotations diff --git a/src/main/java/cn/nukkit/level/Sound.java b/src/main/java/cn/nukkit/level/Sound.java index d70122974cf..4b2247888c7 100644 --- a/src/main/java/cn/nukkit/level/Sound.java +++ b/src/main/java/cn/nukkit/level/Sound.java @@ -782,25 +782,25 @@ public enum Sound { MOB_ZOMBIEPIG_ZPIGDEATH("mob.zombiepig.zpigdeath"), MOB_ZOMBIEPIG_ZPIGHURT("mob.zombiepig.zpighurt"), MUSIC_GAME("music.game"), - MUSIC_GAME_BASALT_DELTAS("music.game.basalt_deltas"), + @Since("FUTURE") MUSIC_GAME_BASALT_DELTAS("music.game.basalt_deltas"), MUSIC_GAME_CREATIVE("music.game.creative"), MUSIC_GAME_CREDITS("music.game.credits"), MUSIC_GAME_CRIMSON_FOREST("music.game.crimson_forest"), - MUSIC_GAME_DRIPSTONE_CAVES("music.game.dripstone_caves"), + @Since("FUTURE") MUSIC_GAME_DRIPSTONE_CAVES("music.game.dripstone_caves"), MUSIC_GAME_END("music.game.end"), MUSIC_GAME_ENDBOSS("music.game.endboss"), - MUSIC_GAME_FROZEN_PEAKS("music.game.frozen_peaks"), - MUSIC_GAME_GROVE("music.game.grove"), - MUSIC_GAME_JAGGED_PEAKS("music.game.jagged_peaks"), - MUSIC_GAME_LUSH_CAVES("music.game.lush_caves"), - MUSIC_GAME_MEADOW("music.game.meadow"), + @Since("FUTURE") MUSIC_GAME_FROZEN_PEAKS("music.game.frozen_peaks"), + @Since("FUTURE") MUSIC_GAME_GROVE("music.game.grove"), + @Since("FUTURE") MUSIC_GAME_JAGGED_PEAKS("music.game.jagged_peaks"), + @Since("FUTURE") MUSIC_GAME_LUSH_CAVES("music.game.lush_caves"), + @Since("FUTURE") MUSIC_GAME_MEADOW("music.game.meadow"), MUSIC_GAME_NETHER("music.game.nether"), MUSIC_GAME_NETHER_WASTES("music.game.nether_wastes"), - MUSIC_GAME_SNOWY_SLOPES("music.game.snowy_slopes"), - MUSIC_GAME_SOUL_SAND_VALLEY("music.game.soul_sand_valley"), + @Since("FUTURE") MUSIC_GAME_SNOWY_SLOPES("music.game.snowy_slopes"), + @Since("FUTURE") MUSIC_GAME_SOUL_SAND_VALLEY("music.game.soul_sand_valley"), MUSIC_GAME_SOULSAND_VALLEY("music.game.soulsand_valley"), - MUSIC_GAME_STONY_PEAKS("music.game.stony_peaks"), - MUSIC_GAME_WARPED_FOREST("music.game.warped_forest"), + @Since("FUTURE") MUSIC_GAME_STONY_PEAKS("music.game.stony_peaks"), + @Since("FUTURE") MUSIC_GAME_WARPED_FOREST("music.game.warped_forest"), MUSIC_GAME_WATER("music.game.water"), MUSIC_MENU("music.menu"), NOTE_BANJO("note.banjo"), @@ -888,7 +888,7 @@ public enum Sound { RECORD_FAR("record.far"), RECORD_MALL("record.mall"), RECORD_MELLOHI("record.mellohi"), - RECORD_OTHERSIDE("record.otherside"), + @Since("FUTURE") RECORD_OTHERSIDE("record.otherside"), RECORD_PIGSTEP("record.pigstep"), RECORD_STAL("record.stal"), RECORD_STRAD("record.strad"), From 4857ca29fcdf629046f80f0c1463aa78eeee20d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Dec 2021 23:36:24 +0200 Subject: [PATCH 312/394] Bump log4j from 2.15.0 to 2.16.0 (#1927) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 855a2b9bf50..ae53881e78f 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ 1.8 5.0.0-M4 1.0.0-M4 - 2.15.0 + 2.16.0 UTF-8 3.9.0 From 0ce8bb474d3b5c11b8d834e78b5059903b402bc6 Mon Sep 17 00:00:00 2001 From: Kevims Date: Wed, 15 Dec 2021 11:44:20 +0100 Subject: [PATCH 313/394] Fix Bossbar color (#1925) --- .../network/protocol/BossEventPacket.java | 2 +- .../java/cn/nukkit/utils/BossBarColor.java | 13 +++++++++ .../java/cn/nukkit/utils/DummyBossBar.java | 28 ++++--------------- 3 files changed, 20 insertions(+), 23 deletions(-) create mode 100644 src/main/java/cn/nukkit/utils/BossBarColor.java diff --git a/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java b/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java index 60dc42ec17e..a9623fbc61f 100644 --- a/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java @@ -25,7 +25,7 @@ public class BossEventPacket extends DataPacket { public static final int TYPE_TITLE = 5; /* S2C: Not sure on this. Includes color and overlay fields, plus an unknown short. TODO: check this */ public static final int TYPE_UNKNOWN_6 = 6; - /* S2C: Not implemented :( Intended to alter bar appearance, but these currently produce no effect on clientside whatsoever. */ + /* S2C: Sets color and overlay of the bar. */ public static final int TYPE_TEXTURE = 7; public long bossEid; diff --git a/src/main/java/cn/nukkit/utils/BossBarColor.java b/src/main/java/cn/nukkit/utils/BossBarColor.java new file mode 100644 index 00000000000..a23b8d2401a --- /dev/null +++ b/src/main/java/cn/nukkit/utils/BossBarColor.java @@ -0,0 +1,13 @@ +package cn.nukkit.utils; + +public enum BossBarColor { + + PINK, + BLUE, + RED, + GREEN, + YELLOW, + PURPLE, + WHITE + +} diff --git a/src/main/java/cn/nukkit/utils/DummyBossBar.java b/src/main/java/cn/nukkit/utils/DummyBossBar.java index 3e95c14d945..7dc1f9811eb 100644 --- a/src/main/java/cn/nukkit/utils/DummyBossBar.java +++ b/src/main/java/cn/nukkit/utils/DummyBossBar.java @@ -23,7 +23,7 @@ public class DummyBossBar { private String text; private float length; - private BlockColor color; + private BossBarColor color; private DummyBossBar(Builder builder) { this.player = builder.player; @@ -39,7 +39,7 @@ public static class Builder { private String text = ""; private float length = 100; - private BlockColor color = null; + private BossBarColor color = null; public Builder(Player player) { this.player = player; @@ -56,15 +56,11 @@ public Builder length(float length) { return this; } - public Builder color(BlockColor color) { + public Builder color(BossBarColor color) { this.color = color; return this; } - public Builder color(int red, int green, int blue) { - return color(new BlockColor(red, green, blue)); - } - public DummyBossBar build() { return new DummyBossBar(this); } @@ -102,26 +98,14 @@ public void setLength(float length) { } } - /** - * Color is not working in the current version. We are keep waiting for client support. - * @param color the boss bar color - */ - public void setColor(BlockColor color) { + public void setColor(BossBarColor color) { if (this.color == null || !this.color.equals(color)) { this.color = color; this.sendSetBossBarTexture(); } } - public void setColor(int red, int green, int blue) { - this.setColor(new BlockColor(red, green, blue)); - } - - public int getMixedColor() { - return this.color.getRGB();//(this.color.getRed() << 16 | this.color.getGreen() << 8 | this.color.getBlue()) & 0xffffff; - } - - public BlockColor getColor() { + public BossBarColor getColor() { return this.color; } @@ -178,7 +162,7 @@ private void sendSetBossBarTexture() { BossEventPacket pk = new BossEventPacket(); pk.bossEid = this.bossBarId; pk.type = BossEventPacket.TYPE_TEXTURE; - pk.color = this.getMixedColor(); + pk.color = color.ordinal(); player.dataPacket(pk); } From 08ba1b1dbb30c0411372b1a2d6eac1484f3d6168 Mon Sep 17 00:00:00 2001 From: Kevims Date: Wed, 15 Dec 2021 13:55:27 +0100 Subject: [PATCH 314/394] Fix Player#getDummyBossBar javadoc (#1928) --- src/main/java/cn/nukkit/Player.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 5fe75360324..b72ff6a9ca6 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -4562,7 +4562,7 @@ public long createBossBar(DummyBossBar dummyBossBar) { * @return DummyBossBar object * @see DummyBossBar#setText(String) Set BossBar text * @see DummyBossBar#setLength(float) Set BossBar length - * @see DummyBossBar#setColor(BlockColor) Set BossBar color + * @see DummyBossBar#setColor(BossBarColor) Set BossBar color */ public DummyBossBar getDummyBossBar(long bossBarId) { return this.dummyBossBars.getOrDefault(bossBarId, null); From 8e8b5c2cc00265155ad001d70b26ce683f0dbeb1 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 15 Dec 2021 13:29:39 -0300 Subject: [PATCH 315/394] Fixes EntityProjectile.setAge(boolean) and add test units --- .../entity/projectile/EntityProjectile.java | 4 +- .../projectile/EntityThrownTrident.java | 32 +-- .../projectile/EntityProjectileTest.java | 98 ++++++++++ .../projectile/EntityThrownTridentTest.java | 74 +++++++ .../java/cn/nukkit/level/LocationTest.java | 182 ++++++++++++++++++ 5 files changed, 363 insertions(+), 27 deletions(-) create mode 100644 src/test/java/cn/nukkit/entity/projectile/EntityProjectileTest.java create mode 100644 src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java create mode 100644 src/test/java/cn/nukkit/level/LocationTest.java diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index 928bacb9379..de5b7684eda 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -54,6 +54,8 @@ protected double getBaseDamage() { public boolean closeOnCollide; + @Deprecated + @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Redundant and unused", replaceWith = "getDamage()") protected double damage; public EntityProjectile(FullChunk chunk, CompoundTag nbt) { @@ -307,7 +309,7 @@ public boolean hasAge() { by = "PowerNukkit", since = "FUTURE", reason = "Bad method name", replaceWith = "setHasAge", toBeRemovedAt = "1.7.0.0-PN") public void setAge(boolean hasAge) { - this.noAge = hasAge; + this.noAge = !hasAge; } @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index f4efd8bb891..da039fe9324 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -133,10 +133,14 @@ protected void initEntity() { super.setHasAge(false); super.initEntity(); - this.trident = namedTag.contains(TAG_TRIDENT) ? NBTIO.getItemHelper(namedTag.getCompound(TAG_TRIDENT)) : Item.get(0); - this.pickupMode = namedTag.contains(TAG_PICKUP) ? namedTag.getByte(TAG_PICKUP) : PICKUP_ANY; this.closeOnCollide = false; + this.pickupMode = namedTag.contains(TAG_PICKUP) ? namedTag.getByte(TAG_PICKUP) : PICKUP_ANY; + this.damage = namedTag.contains("damage") ? namedTag.getDouble("damage") : 8; + this.favoredSlot = namedTag.contains("favoredSlot") ? namedTag.getInt("favoredSlot") : -1; + this.isCreative = namedTag.contains("isCreative") && namedTag.getBoolean("isCreative"); + this.player = !namedTag.contains("player") || namedTag.getBoolean("player"); + if (namedTag.contains(TAG_TRIDENT)) { this.trident = NBTIO.getItemHelper(namedTag.getCompound(TAG_TRIDENT)); this.loyaltyLevel = this.trident.getEnchantmentLevel(Enchantment.ID_TRIDENT_LOYALTY); @@ -151,12 +155,6 @@ protected void initEntity() { this.impalingLevel = 0; } - if (namedTag.contains("damage")) { - this.damage = namedTag.getDouble("damage"); - } else { - this.damage = 8; - } - if (namedTag.contains("CollisionPos")) { ListTag collisionPosList = this.namedTag.getList("CollisionPos", DoubleTag.class); collisionPos = new Vector3(collisionPosList.get(0).data, collisionPosList.get(1).data, collisionPosList.get(2).data); @@ -170,24 +168,6 @@ protected void initEntity() { } else { stuckToBlockPos = defaultStuckToBlockPos.clone(); } - - if (namedTag.contains("favoredSlot")) { - this.favoredSlot = namedTag.getInt("favoredSlot"); - } else { - this.favoredSlot = -1; - } - - if (namedTag.contains("isCreative")) { - this.isCreative = namedTag.getBoolean("isCreative"); - } else { - this.isCreative = false; - } - - if (namedTag.contains("player")) { - this.player = namedTag.getBoolean("player"); - } else { - this.player = true; - } } @Override diff --git a/src/test/java/cn/nukkit/entity/projectile/EntityProjectileTest.java b/src/test/java/cn/nukkit/entity/projectile/EntityProjectileTest.java new file mode 100644 index 00000000000..c54673c58e9 --- /dev/null +++ b/src/test/java/cn/nukkit/entity/projectile/EntityProjectileTest.java @@ -0,0 +1,98 @@ +package cn.nukkit.entity.projectile; + +import cn.nukkit.Player; +import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.entity.Entity; +import cn.nukkit.event.entity.EntityCombustByEntityEvent; +import cn.nukkit.level.Level; +import cn.nukkit.level.format.FullChunk; +import cn.nukkit.math.Vector3; +import cn.nukkit.nbt.tag.CompoundTag; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.Mockito.verify; + +/** + * @author joserobjr + * @since 2021-12-15 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class EntityProjectileTest { + @MockPlayer(position = {0, 64, 0}) + Player player; + + @MockLevel + Level level; + + TestProjectile projectile; + @BeforeEach + void setUp() { + level.setBlockStateAt(0, 63, 0, BlockState.of(BlockID.STONE)); + projectile = new TestProjectile(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0)), player); + } + + @Test + void getDamage() { + projectile.motionX = 0.5; + projectile.motionY = -0.005; + projectile.motionZ = 0.5; + double damage = projectile.getResultDamage(); + assertEquals(damage, projectile.getResultDamage(player)); + assertEquals(3, damage); + } + + @Test + void fire() { + projectile.fireTicks = 20; + projectile.onCollideWithEntity(player); + verify(Server.getInstance().getPluginManager()).callEvent(any(EntityCombustByEntityEvent.class)); + verify(player).setOnFire(eq(5)); + } + + @SuppressWarnings("deprecation") + @Test + void noAge() { + assertTrue(projectile.getHasAge()); + assertTrue(projectile.hasAge()); + projectile.setAge(false); + assertFalse(projectile.getHasAge()); + assertFalse(projectile.hasAge()); + projectile.setHasAge(true); + assertTrue(projectile.getHasAge()); + assertTrue(projectile.hasAge()); + } + + public static class TestProjectile extends EntityProjectile { + public TestProjectile(FullChunk chunk, CompoundTag nbt) { + super(chunk, nbt); + } + + public TestProjectile(FullChunk chunk, CompoundTag nbt, Entity shootingEntity) { + super(chunk, nbt, shootingEntity); + } + + @Override + public int getNetworkId() { + return 1; + } + + @Override + protected double getDamage() { + return 3; + } + } +} diff --git a/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java b/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java new file mode 100644 index 00000000000..33e2553153b --- /dev/null +++ b/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java @@ -0,0 +1,74 @@ +package cn.nukkit.entity.projectile; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.entity.Entity; +import cn.nukkit.entity.passive.EntityPig; +import cn.nukkit.event.entity.EntityDamageEvent; +import cn.nukkit.item.Item; +import cn.nukkit.item.ItemID; +import cn.nukkit.item.enchantment.Enchantment; +import cn.nukkit.level.Level; +import cn.nukkit.math.Vector3; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockEntity; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; + +/** + * @author joserobjr + * @since 2021-12-15 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class EntityThrownTridentTest { + @MockLevel + Level level; + + @MockEntity(type = EntityPig.class, position = {0, 64, 0}) + EntityPig pig; + + EntityThrownTrident trident; + + @BeforeEach + void setUp() { + level.setBlockStateAt(0, 64, 0, BlockState.of(BlockID.STILL_WATER)); + trident = new EntityThrownTrident(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0))); + } + + @Test + void pickupMode() { + trident.setPickupMode(EntityProjectile.PICKUP_CREATIVE); + assertEquals(EntityProjectile.PICKUP_CREATIVE, trident.getPickupMode()); + } + + @Test + void alreadyCollided() { + trident.alreadyCollided = true; + trident.onCollideWithEntity(pig); + verify(pig, times(0)).attack(any(EntityDamageEvent.class)); + } + + @Test + void saveLoad() { + trident.trident = Item.get(ItemID.TRIDENT); + trident.trident.addEnchantment(Enchantment.getEnchantment(Enchantment.ID_MENDING)); + Item itemTrident = trident.trident.clone(); + trident.setPickupMode(EntityProjectile.PICKUP_ANY); + trident.saveNBT(); + EntityThrownTrident other = new EntityThrownTrident(level.getChunk(0, 0), trident.namedTag.copy()); + assertEquals(EntityProjectile.PICKUP_ANY, trident.getPickupMode()); + assertEquals(itemTrident, other.trident); + assertEquals(0.05f, trident.getGravity()); + } +} diff --git a/src/test/java/cn/nukkit/level/LocationTest.java b/src/test/java/cn/nukkit/level/LocationTest.java new file mode 100644 index 00000000000..df4260c327a --- /dev/null +++ b/src/test/java/cn/nukkit/level/LocationTest.java @@ -0,0 +1,182 @@ +package cn.nukkit.level; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.block.Block; +import cn.nukkit.block.BlockID; +import cn.nukkit.math.Vector3; +import cn.nukkit.utils.LevelException; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-12-15 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class LocationTest { + public static final double X = 2; + public static final double Y = 64; + public static final double Z = 3; + public static final float PITCH = 30f; + public static final float YAW = 40f; + public static final float HEAD_YAW = 50f; + + @MockLevel + Level level; + + @BeforeEach + void setUp() { + level.setBlock(new Vector3(X, Y, Z), Block.get(BlockID.STONE), true, false); + } + + @Test + void constructorLevel() { + Location location = new Location(X, Y, Z, level); + assertEquals(X, location.x); + assertEquals(Y, location.y); + assertEquals(Z, location.z); + assertSame(level, location.level); + assertEquals(0, location.yaw); + assertEquals(0, location.pitch); + assertEquals(0, location.headYaw); + } + + @Test + void constructorYawPitchLevel() { + Location location = new Location(X, Y, Z, YAW, PITCH, level); + assertEquals(X, location.x); + assertEquals(Y, location.y); + assertEquals(Z, location.z); + assertSame(level, location.level); + assertEquals(YAW, location.yaw); + assertEquals(PITCH, location.pitch); + assertEquals(0, location.headYaw); + } + + @Test + void constructorYawPitchHeadYawLevel() { + Location location = new Location(X, Y, Z, YAW, PITCH, HEAD_YAW, level); + assertEquals(X, location.x); + assertEquals(Y, location.y); + assertEquals(Z, location.z); + assertSame(level, location.level); + assertEquals(YAW, location.yaw); + assertEquals(PITCH, location.pitch); + assertEquals(HEAD_YAW, location.headYaw); + } + + @Test + void fromObjectWithEverything() { + Location location = Location.fromObject(new Vector3(X, Y, Z), level, YAW, PITCH, HEAD_YAW); + assertEquals(X, location.x); + assertEquals(Y, location.y); + assertEquals(Z, location.z); + assertSame(level, location.level); + assertEquals(YAW, location.yaw); + assertEquals(PITCH, location.pitch); + assertEquals(HEAD_YAW, location.headYaw); + } + + @Test + void fromObjectWithoutLevel() { + Location location = Location.fromObject(new Vector3(X, Y, Z), null, YAW, PITCH, HEAD_YAW); + assertEquals(X, location.x); + assertEquals(Y, location.y); + assertEquals(Z, location.z); + assertNull(location.getLevel()); + assertEquals(YAW, location.yaw); + assertEquals(PITCH, location.pitch); + assertEquals(HEAD_YAW, location.headYaw); + assertEquals("Location (level=null, x=" + X + ", y=" + Y + ", z=" + Z + ", yaw=" + YAW + ", pitch=" + PITCH + ", headYaw=" + HEAD_YAW + ")", location.toString()); + } + + @Test + void fromObjectWithLevelFromPosition() { + Location location = Location.fromObject(new Position(X, Y, Z, level), null, YAW, PITCH, HEAD_YAW); + assertEquals(X, location.x); + assertEquals(Y, location.y); + assertEquals(Z, location.z); + assertSame(level, location.getLevel()); + assertEquals(YAW, location.yaw); + assertEquals(PITCH, location.pitch); + assertEquals(HEAD_YAW, location.headYaw); + assertEquals(HEAD_YAW, location.getHeadYaw()); + assertEquals("Location (level=" + level.getName() + ", x=" + X + ", y=" + Y + ", z=" + Z + ", yaw=" + YAW + ", pitch=" + PITCH + ", headYaw=" + HEAD_YAW + ")", location.toString()); + } + + @Test + void getLocationValid() { + Location location = new Location(X, Y, Z, YAW, PITCH, HEAD_YAW, level); + Location other = location.getLocation(); + assertNotSame(location, other); + assertEquals(location, other); + } + + @Test + void getLocationNotValid() { + Location location = new Location(X, Y, Z, YAW, PITCH, HEAD_YAW, null); + assertThrows(LevelException.class, location::getLocation); + } + + @Test + void add() { + Location location = new Location(X, Y, Z, YAW, PITCH, HEAD_YAW, level); + assertEquals(new Location(X + 1, Y, Z, YAW, PITCH, HEAD_YAW, level), location.add(1)); + assertEquals(new Location(X + 1, Y + 2, Z, YAW, PITCH, HEAD_YAW, level), location.add(1, 2)); + assertEquals(new Location(X + 1, Y + 2, Z + 3, YAW, PITCH, HEAD_YAW, level), location.add(1, 2, 3)); + assertEquals(new Location(X + 1, Y + 2, Z + 3, YAW, PITCH, HEAD_YAW, level), location.add(new Vector3(1, 2, 3))); + } + + @Test + void subtract() { + Location location = new Location(X, Y, Z, YAW, PITCH, HEAD_YAW, level); + assertEquals(new Location(X - 1, Y, Z, YAW, PITCH, HEAD_YAW, level), location.subtract(1)); + assertEquals(new Location(X - 1, Y - 2, Z, YAW, PITCH, HEAD_YAW, level), location.subtract(1, 2)); + assertEquals(new Location(X - 1, Y - 2, Z - 3, YAW, PITCH, HEAD_YAW, level), location.subtract(1, 2, 3)); + assertEquals(new Location(X - 1, Y - 2, Z - 3, YAW, PITCH, HEAD_YAW, level), location.subtract(new Vector3(1, 2, 3))); + } + + @Test + void multiply() { + Location location = new Location(X, Y, Z, YAW, PITCH, HEAD_YAW, level); + assertEquals(new Location(X * 4, Y * 4, Z * 4, YAW, PITCH, HEAD_YAW, level), location.multiply(4)); + } + + @Test + void divide() { + Location location = new Location(X, Y, Z, YAW, PITCH, HEAD_YAW, level); + assertEquals(new Location(X / 2, Y / 2, Z / 2, YAW, PITCH, HEAD_YAW, level), location.divide(2)); + } + + @Test + void ceil() { + Location location = new Location(X + 0.8, Y + 0.8, Z + 0.8, YAW + 0.8, PITCH + 0.8, HEAD_YAW + 0.8, level); + assertEquals(new Location(X + 1, Y + 1, Z + 1, YAW + 0.8, PITCH + 0.8, HEAD_YAW + 0.8, level), location.ceil()); + } + + @Test + void floor() { + Location location = new Location(X + 0.8, Y + 0.8, Z + 0.8, YAW + 0.8, PITCH + 0.8, HEAD_YAW + 0.8, level); + assertEquals(new Location(X, Y, Z, YAW + 0.8, PITCH + 0.8, HEAD_YAW + 0.8, level), location.floor()); + } + + @Test + void round() { + Location location = new Location(X + 0.8, Y + 0.8, Z + 0.8, YAW + 0.8, PITCH + 0.8, HEAD_YAW + 0.8, level); + assertEquals(new Location(X + 1, Y + 1, Z + 1, YAW + 0.8, PITCH + 0.8, HEAD_YAW + 0.8, level), location.round()); + } + + @Test + void abs() { + Location location = new Location(X + 0.8, Y + 0.8, Z + 0.8, YAW + 0.8, PITCH + 0.8, HEAD_YAW + 0.8, level); + assertEquals(new Location(X, Y, Z, YAW + 0.8, PITCH + 0.8, HEAD_YAW + 0.8, level), location.abs()); + } +} From 97d85cda8c07d3fe8dc90ea7f26919e8033ed74a Mon Sep 17 00:00:00 2001 From: SupremeMortal <6178101+SupremeMortal@users.noreply.github.com> Date: Wed, 15 Dec 2021 19:01:21 +0000 Subject: [PATCH 316/394] Fix jenkins artifacts --- Jenkinsfile | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 975fd90b9ae..1849774ce09 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,12 +15,6 @@ pipeline { steps { sh 'mvn clean package -B' } - post { - success { - junit 'target/surefire-reports/**/*.xml' - archiveArtifacts artifacts: 'target/nukkit-*-SNAPSHOT.jar', fingerprint: true - } - } } stage ('Deploy') { @@ -43,7 +37,7 @@ pipeline { ) rtMavenRun ( pom: 'pom.xml', - goals: 'javadoc:javadoc javadoc:jar source:jar install -B -DskipTests', + goals: 'javadoc:javadoc javadoc:jar source:jar install -B', deployerId: "maven-deployer", resolverId: "maven-resolver" ) @@ -56,6 +50,10 @@ pipeline { } post { + success { + junit 'target/surefire-reports/**/*.xml' + archiveArtifacts artifacts: 'target/nukkit-*-SNAPSHOT.jar', fingerprint: true + } always { deleteDir() withCredentials([string(credentialsId: 'nukkitx-discord-webhook', variable: 'DISCORD_WEBHOOK')]) { From 7a08140fd0bd2b2ad997da4df7462d7f4e4e2241 Mon Sep 17 00:00:00 2001 From: SupremeMortal <6178101+SupremeMortal@users.noreply.github.com> Date: Wed, 15 Dec 2021 19:16:22 +0000 Subject: [PATCH 317/394] Fix Jenkins artifact archiving --- Jenkinsfile | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1849774ce09..f1796308198 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,12 +9,15 @@ pipeline { } stages { stage ('Build') { - when { not { - branch "master" - }} steps { sh 'mvn clean package -B' } + post { + success { + junit 'target/surefire-reports/**/*.xml' + archiveArtifacts artifacts: 'target/nukkit-*-SNAPSHOT.jar', fingerprint: true + } + } } stage ('Deploy') { @@ -37,7 +40,7 @@ pipeline { ) rtMavenRun ( pom: 'pom.xml', - goals: 'javadoc:javadoc javadoc:jar source:jar install -B', + goals: 'javadoc:javadoc javadoc:jar source:jar install -B -DskipTests', deployerId: "maven-deployer", resolverId: "maven-resolver" ) @@ -50,10 +53,6 @@ pipeline { } post { - success { - junit 'target/surefire-reports/**/*.xml' - archiveArtifacts artifacts: 'target/nukkit-*-SNAPSHOT.jar', fingerprint: true - } always { deleteDir() withCredentials([string(credentialsId: 'nukkitx-discord-webhook', variable: 'DISCORD_WEBHOOK')]) { From 6462309df794049272e60e86b5bab39828051cfe Mon Sep 17 00:00:00 2001 From: PleaseInsertNameHere <73995049+PleaseInsertNameHere@users.noreply.github.com> Date: Wed, 15 Dec 2021 22:11:09 +0100 Subject: [PATCH 318/394] Bump log4j to 2.16.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dcd3bf8d62c..cb9b9994692 100644 --- a/pom.xml +++ b/pom.xml @@ -73,7 +73,7 @@ 1.8 5.7.2 3.11.2 - 2.15.0 + 2.16.0 UTF-8 UTF-8 3.9.0 From 4e7b23b54f4527b1c92e2595adc5a95087e6876b Mon Sep 17 00:00:00 2001 From: SupremeMortal <6178101+SupremeMortal@users.noreply.github.com> Date: Sat, 18 Dec 2021 15:57:08 +0000 Subject: [PATCH 319/394] Update RakNet to 1.16.28-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ae53881e78f..e3158969723 100644 --- a/pom.xml +++ b/pom.xml @@ -44,7 +44,7 @@ com.nukkitx.network raknet - 1.6.25 + 1.6.28-SNAPSHOT compile From 9805a371c24a4f09bff1a7956af14a0e8cb04577 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 Dec 2021 18:18:07 +0000 Subject: [PATCH 320/394] Bump log4j-api from 2.16.0 to 2.17.0 (#1931) Bumps log4j-api from 2.16.0 to 2.17.0. --- updated-dependencies: - dependency-name: org.apache.logging.log4j:log4j-api dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e3158969723..19717e4c178 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ 1.8 5.0.0-M4 1.0.0-M4 - 2.16.0 + 2.17.0 UTF-8 3.9.0 From 4d7b0f68392cef4af768a16ec66ec97490619a91 Mon Sep 17 00:00:00 2001 From: PleaseInsertNameHere <73995049+PleaseInsertNameHere@users.noreply.github.com> Date: Sat, 18 Dec 2021 22:17:51 +0100 Subject: [PATCH 321/394] Bump to 2.17.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cb9b9994692..39bcc99174c 100644 --- a/pom.xml +++ b/pom.xml @@ -73,7 +73,7 @@ 1.8 5.7.2 3.11.2 - 2.16.0 + 2.17.0 UTF-8 UTF-8 3.9.0 From 82490e373af9ef072b7a425fe6b9d8683a98a5f0 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 19 Dec 2021 01:37:53 -0300 Subject: [PATCH 322/394] Fixes naming, durability and some small item things, adds a big test unit for all basic item properties --- .../dispenser/BoatDispenseBehavior.java | 3 +- src/main/java/cn/nukkit/inventory/Fuel.java | 3 +- src/main/java/cn/nukkit/item/ItemArmor.java | 15 +- src/main/java/cn/nukkit/item/ItemArrow.java | 49 ++ src/main/java/cn/nukkit/item/ItemAxeGold.java | 2 +- src/main/java/cn/nukkit/item/ItemBanner.java | 23 +- .../cn/nukkit/item/ItemBannerPattern.java | 12 +- src/main/java/cn/nukkit/item/ItemBed.java | 13 +- src/main/java/cn/nukkit/item/ItemBoat.java | 43 +- .../java/cn/nukkit/item/ItemBootsGold.java | 2 +- .../cn/nukkit/item/ItemCarrotOnAStick.java | 2 +- .../cn/nukkit/item/ItemChestplateChain.java | 2 +- .../cn/nukkit/item/ItemChestplateGold.java | 2 +- src/main/java/cn/nukkit/item/ItemClay.java | 2 +- .../java/cn/nukkit/item/ItemClownfish.java | 2 +- src/main/java/cn/nukkit/item/ItemElytra.java | 2 +- .../java/cn/nukkit/item/ItemEmptyMap.java | 16 +- .../java/cn/nukkit/item/ItemFirework.java | 2 +- src/main/java/cn/nukkit/item/ItemFish.java | 2 +- .../java/cn/nukkit/item/ItemFishCooked.java | 2 +- .../java/cn/nukkit/item/ItemHelmetGold.java | 2 +- src/main/java/cn/nukkit/item/ItemHoeGold.java | 2 +- .../cn/nukkit/item/ItemHorseArmorGold.java | 2 +- .../cn/nukkit/item/ItemLeggingsChain.java | 2 +- .../java/cn/nukkit/item/ItemLeggingsGold.java | 2 +- src/main/java/cn/nukkit/item/ItemMap.java | 21 +- src/main/java/cn/nukkit/item/ItemMelon.java | 2 +- .../cn/nukkit/item/ItemMelonGlistering.java | 2 +- .../java/cn/nukkit/item/ItemPickaxeGold.java | 2 +- src/main/java/cn/nukkit/item/ItemPotion.java | 78 ++- .../cn/nukkit/item/ItemPotionLingering.java | 16 + .../java/cn/nukkit/item/ItemPotionSplash.java | 16 + .../java/cn/nukkit/item/ItemRecord11.java | 1 + .../java/cn/nukkit/item/ItemRecord13.java | 1 + .../java/cn/nukkit/item/ItemRecordBlocks.java | 1 + .../java/cn/nukkit/item/ItemRecordCat.java | 1 + .../java/cn/nukkit/item/ItemRecordChirp.java | 1 + .../java/cn/nukkit/item/ItemRecordFar.java | 1 + .../java/cn/nukkit/item/ItemRecordMall.java | 1 + .../cn/nukkit/item/ItemRecordMellohi.java | 1 + .../cn/nukkit/item/ItemRecordPigstep.java | 1 + .../java/cn/nukkit/item/ItemRecordStal.java | 1 + .../java/cn/nukkit/item/ItemRecordStrad.java | 1 + .../java/cn/nukkit/item/ItemRecordWait.java | 1 + .../java/cn/nukkit/item/ItemRecordWard.java | 1 + src/main/java/cn/nukkit/item/ItemShield.java | 2 +- .../java/cn/nukkit/item/ItemShovelGold.java | 2 +- src/main/java/cn/nukkit/item/ItemSign.java | 2 +- src/main/java/cn/nukkit/item/ItemSkull.java | 13 +- .../java/cn/nukkit/item/ItemSpawnEgg.java | 47 +- .../java/cn/nukkit/item/ItemSwordGold.java | 2 +- src/main/java/cn/nukkit/item/ItemTool.java | 9 +- src/main/java/cn/nukkit/item/ItemTrident.java | 5 - src/main/java/cn/nukkit/potion/Potion.java | 144 +++- src/main/java/cn/nukkit/utils/DyeColor.java | 8 +- .../java/cn/nukkit/utils/TerracottaColor.java | 2 +- .../cn/nukkit/entity/item/EntityItemTest.java | 2 +- .../nukkit/item/BasicAttributesXmlTest.java | 316 +++++++++ .../java/cn/nukkit/item/ItemArrowTest.java | 38 ++ .../cn/nukkit/item/basicAttributes.dtd | 66 ++ .../cn/nukkit/item/basicItemAttributes.xml | 613 ++++++++++++++++++ 61 files changed, 1541 insertions(+), 89 deletions(-) create mode 100644 src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java create mode 100644 src/test/java/cn/nukkit/item/ItemArrowTest.java create mode 100644 src/test/resources/cn/nukkit/item/basicAttributes.dtd create mode 100644 src/test/resources/cn/nukkit/item/basicItemAttributes.xml diff --git a/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java b/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java index 6ff342ed353..d252a9db1a7 100644 --- a/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java +++ b/src/main/java/cn/nukkit/dispenser/BoatDispenseBehavior.java @@ -8,7 +8,6 @@ import cn.nukkit.entity.Entity; import cn.nukkit.entity.item.EntityBoat; import cn.nukkit.item.Item; -import cn.nukkit.item.ItemBoat; import cn.nukkit.math.BlockFace; import cn.nukkit.math.Vector3; @@ -37,7 +36,7 @@ public Item dispense(BlockDispenser block, BlockFace face, Item item) { EntityBoat boat = new EntityBoat(block.level.getChunk(target.getChunkX(), target.getChunkZ()), Entity.getDefaultNBT(pos) - .putByte("woodID", ((ItemBoat)item).getLegacyBoatDamage().orElse(0)) + .putInt("Variant", item.getDamage()) ); boat.spawnToAll(); diff --git a/src/main/java/cn/nukkit/inventory/Fuel.java b/src/main/java/cn/nukkit/inventory/Fuel.java index 42c3f5db879..b32608d397d 100644 --- a/src/main/java/cn/nukkit/inventory/Fuel.java +++ b/src/main/java/cn/nukkit/inventory/Fuel.java @@ -42,7 +42,7 @@ public abstract class Fuel { addItem(ItemID.BUCKET, (short) 20000); addBlock(BlockID.LADDER, (short) 300); addItem(ItemID.BOW, (short) 200); - addItem(ItemID.BOWL, (short) 200); + addItem(ItemID.BOWL, (short) 100); addBlock(BlockID.WOOD2, (short) 300); addBlock(BlockID.WOODEN_PRESSURE_PLATE, (short) 300); addBlock(BlockID.ACACIA_WOOD_STAIRS, (short) 300); @@ -75,6 +75,7 @@ public abstract class Fuel { addItem(ItemID.DARK_OAK_SIGN, (short) 200); addItem(ItemID.JUNGLE_SIGN, (short) 200); addBlock(BlockID.DRIED_KELP_BLOCK, (short) 4000); + addItem(ItemID.CROSSBOW, (short) 200); } private static void addItem(int itemID, short fuelDuration) { diff --git a/src/main/java/cn/nukkit/item/ItemArmor.java b/src/main/java/cn/nukkit/item/ItemArmor.java index 9bd7254c170..87ba82924ac 100644 --- a/src/main/java/cn/nukkit/item/ItemArmor.java +++ b/src/main/java/cn/nukkit/item/ItemArmor.java @@ -1,7 +1,6 @@ package cn.nukkit.item; import cn.nukkit.Player; -import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.Since; import cn.nukkit.level.Sound; @@ -9,6 +8,8 @@ import cn.nukkit.nbt.tag.ByteTag; import cn.nukkit.nbt.tag.Tag; +import static cn.nukkit.utils.Utils.dynamic; + /** * @author MagicDroidX (Nukkit Project) */ @@ -21,13 +22,7 @@ abstract public class ItemArmor extends Item implements ItemDurable { public static final int TIER_DIAMOND = 5; @Since("1.4.0.0-PN") public static final int TIER_NETHERITE = 6; - @Deprecated - @DeprecationDetails(since = "1.4.0.0-PN", - reason = "The value of this 'constant' is unstable, it may change if new tiers gets added. Refrain from using it. " + - "Changes in this value will not be considered as an API breaking change and will not affect code that " + - "is already compiled." - ) - public static final int TIER_OTHER = 1000; + public static final int TIER_OTHER = dynamic(1000); public ItemArmor(int id) { super(id); @@ -83,7 +78,8 @@ public boolean onClickAir(Player player, Vector3 directionVector) { } if (equip) { player.getInventory().setItem(player.getInventory().getHeldItemIndex(), oldSlotItem); - switch (this.getTier()) { + final int tier = this.getTier(); + switch (tier) { case TIER_CHAIN: player.getLevel().addSound(player, Sound.ARMOR_EQUIP_CHAIN); break; @@ -102,7 +98,6 @@ public boolean onClickAir(Player player, Vector3 directionVector) { case TIER_NETHERITE: player.getLevel().addSound(player, Sound.ARMOR_EQUIP_NETHERITE); break; - case TIER_OTHER: default: player.getLevel().addSound(player, Sound.ARMOR_EQUIP_GENERIC); } diff --git a/src/main/java/cn/nukkit/item/ItemArrow.java b/src/main/java/cn/nukkit/item/ItemArrow.java index ba63bfe1659..6b2ed30f825 100644 --- a/src/main/java/cn/nukkit/item/ItemArrow.java +++ b/src/main/java/cn/nukkit/item/ItemArrow.java @@ -1,5 +1,12 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.potion.Potion; +import cn.nukkit.utils.ServerException; + +import javax.annotation.Nullable; + /** * @author MagicDroidX (Nukkit Project) */ @@ -15,6 +22,48 @@ public ItemArrow(Integer meta) { public ItemArrow(Integer meta, int count) { super(ARROW, meta, count, "Arrow"); + updateName(); + } + + @Override + public void setDamage(Integer meta) { + super.setDamage(meta); + updateName(); } + private void updateName() { + final int damage = getDamage(); + switch (damage) { + case 0: + name = "Arrow"; + return; + case 1: + name = "Arrow of Splashing"; + return; + case 2: + case 3: + case 4: + case 5: + name = "Tipped Arrow"; + return; + default: + name = ItemPotion.buildName(damage - 1, "Arrow", false); + } + } + + @PowerNukkitOnly + @Since("FUTURE") + @Nullable + public Potion getTippedArrowPotion() { + final int damage = getDamage(); + if (damage > 0) { + try { + return Potion.getPotion(damage - 1); + } catch (ServerException ignored) { + // Not found + return null; + } + } + return null; + } } diff --git a/src/main/java/cn/nukkit/item/ItemAxeGold.java b/src/main/java/cn/nukkit/item/ItemAxeGold.java index 0d80331684b..373ba31df46 100644 --- a/src/main/java/cn/nukkit/item/ItemAxeGold.java +++ b/src/main/java/cn/nukkit/item/ItemAxeGold.java @@ -14,7 +14,7 @@ public ItemAxeGold(Integer meta) { } public ItemAxeGold(Integer meta, int count) { - super(GOLD_AXE, meta, count, "Gold Axe"); + super(GOLD_AXE, meta, count, "Golden Axe"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemBanner.java b/src/main/java/cn/nukkit/item/ItemBanner.java index 40e54c4f48f..57f3f45511d 100644 --- a/src/main/java/cn/nukkit/item/ItemBanner.java +++ b/src/main/java/cn/nukkit/item/ItemBanner.java @@ -9,6 +9,9 @@ import cn.nukkit.utils.BannerPattern; import cn.nukkit.utils.DyeColor; +import javax.annotation.Nonnull; +import java.util.Objects; + /** * @author PetteriM1 */ @@ -25,6 +28,17 @@ public ItemBanner(Integer meta) { public ItemBanner(Integer meta, int count) { super(BANNER, meta, count, "Banner"); this.block = Block.get(Block.STANDING_BANNER); + updateName(); + } + + @Override + public void setDamage(Integer meta) { + super.setDamage(meta); + updateName(); + } + + private void updateName() { + name = getBaseDyeColor().getName() + " Banner"; } @Override @@ -36,10 +50,17 @@ public int getBaseColor() { return this.getDamage() & 0x0f; } - public void setBaseColor(DyeColor color) { + public void setBaseColor(@Nonnull DyeColor color) { this.setDamage(color.getDyeData() & 0x0f); } + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public DyeColor getBaseDyeColor() { + return Objects.requireNonNull(DyeColor.getByDyeData(getBaseColor())); + } + public int getType() { return this.getNamedTag().getInt("Type"); } diff --git a/src/main/java/cn/nukkit/item/ItemBannerPattern.java b/src/main/java/cn/nukkit/item/ItemBannerPattern.java index 5748eafa8e5..5f8de11a6df 100644 --- a/src/main/java/cn/nukkit/item/ItemBannerPattern.java +++ b/src/main/java/cn/nukkit/item/ItemBannerPattern.java @@ -24,6 +24,10 @@ public class ItemBannerPattern extends Item { @PowerNukkitOnly public static final int PATTERN_BORDURE_INDENTED = 5; + @PowerNukkitOnly + @Since("FUTURE") + public static final int PATTERN_SNOUT = 6; + public ItemBannerPattern() { this(0, 1); } @@ -68,6 +72,7 @@ public BannerPattern.Type getPatternType() { case PATTERN_THING: return BannerPattern.Type.PATTERN_MOJANG; case PATTERN_FIELD_MASONED: return BannerPattern.Type.PATTERN_BRICK; case PATTERN_BORDURE_INDENTED: return BannerPattern.Type.PATTERN_CURLY_BORDER; + case PATTERN_SNOUT: return BannerPattern.Type.PATTERN_SNOUT; } } @@ -76,7 +81,7 @@ protected void updateName() { if (getId() != BANNER_PATTERN) { return; } - switch (super.meta % 6) { + switch (super.meta % 7) { case PATTERN_CREEPER_CHARGE: name = "Creeper Charge Banner Pattern"; return; @@ -93,7 +98,10 @@ protected void updateName() { name = "Field Banner Pattern"; return; case PATTERN_BORDURE_INDENTED: - name = "Bordure Idented Banner Pattern"; + name = "Bordure Indented Banner Pattern"; + return; + case PATTERN_SNOUT: + name = "Snout Banner Pattern"; return; default: name = "Banner Pattern"; diff --git a/src/main/java/cn/nukkit/item/ItemBed.java b/src/main/java/cn/nukkit/item/ItemBed.java index 93595eb9056..8cb8dba0cc4 100644 --- a/src/main/java/cn/nukkit/item/ItemBed.java +++ b/src/main/java/cn/nukkit/item/ItemBed.java @@ -18,8 +18,19 @@ public ItemBed(Integer meta) { } public ItemBed(Integer meta, int count) { - super(BED, meta, count, DyeColor.getByWoolData(meta).getName() + " Bed"); + super(BED, meta, count, "Bed"); this.block = Block.get(BlockID.BED_BLOCK); + updateName(); + } + + @Override + public void setDamage(Integer meta) { + super.setDamage(meta); + updateName(); + } + + private void updateName() { + name = DyeColor.getByWoolData(meta).getName() + " Bed"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemBoat.java b/src/main/java/cn/nukkit/item/ItemBoat.java index 256b07d9898..a7c6a649519 100644 --- a/src/main/java/cn/nukkit/item/ItemBoat.java +++ b/src/main/java/cn/nukkit/item/ItemBoat.java @@ -14,8 +14,6 @@ import cn.nukkit.nbt.tag.FloatTag; import cn.nukkit.nbt.tag.ListTag; -import java.util.OptionalInt; - /** * @author yescallop * @since 2016/2/13 @@ -31,27 +29,44 @@ public ItemBoat(Integer meta) { } public ItemBoat(Integer meta, int count) { - super(BOAT, meta, count, "Boat"); + this(BOAT, meta, count, "Boat"); } @PowerNukkitOnly @Since("1.4.0.0-PN") protected ItemBoat(int id, Integer meta, int count, String name) { super(id, meta, count, name); + adjustName(); } @Override - public int getDamage() { - return super.getDamage(); + public void setDamage(Integer meta) { + super.setDamage(meta); + adjustName(); } - - @PowerNukkitOnly - @Since("1.4.0.0-PN") - public OptionalInt getLegacyBoatDamage() { - if (getId() == BOAT) { - return OptionalInt.of(super.getDamage()); - } else { - return OptionalInt.empty(); + + private void adjustName() { + switch (getDamage()) { + case 0: + name = "Oak Boat"; + return; + case 1: + name = "Spruce Boat"; + return; + case 2: + name = "Birch Boat"; + return; + case 3: + name = "Jungle Boat"; + return; + case 4: + name = "Acacia Boat"; + return; + case 5: + name = "Dark Oak Boat"; + return; + default: + name = "Boat"; } } @@ -76,7 +91,7 @@ public boolean onActivate(Level level, Player player, Block block, Block target, .putList(new ListTag("Rotation") .add(new FloatTag("", (float) ((player.yaw + 90f) % 360))) .add(new FloatTag("", 0))) - .putInt("Variant", getLegacyBoatDamage().orElse(0)) + .putInt("Variant", getDamage()) ); if (boat == null) { diff --git a/src/main/java/cn/nukkit/item/ItemBootsGold.java b/src/main/java/cn/nukkit/item/ItemBootsGold.java index a7b5553a940..fcbcdc83e75 100644 --- a/src/main/java/cn/nukkit/item/ItemBootsGold.java +++ b/src/main/java/cn/nukkit/item/ItemBootsGold.java @@ -14,7 +14,7 @@ public ItemBootsGold(Integer meta) { } public ItemBootsGold(Integer meta, int count) { - super(GOLD_BOOTS, meta, count, "Gold Boots"); + super(GOLD_BOOTS, meta, count, "Golden Boots"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemCarrotOnAStick.java b/src/main/java/cn/nukkit/item/ItemCarrotOnAStick.java index c5e62959b16..9e6737fb300 100644 --- a/src/main/java/cn/nukkit/item/ItemCarrotOnAStick.java +++ b/src/main/java/cn/nukkit/item/ItemCarrotOnAStick.java @@ -15,7 +15,7 @@ public ItemCarrotOnAStick(Integer meta) { } public ItemCarrotOnAStick(Integer meta, int count) { - super(CARROT_ON_A_STICK, meta, count, "Carrot on a stick"); + super(CARROT_ON_A_STICK, meta, count, "Carrot on a Stick"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemChestplateChain.java b/src/main/java/cn/nukkit/item/ItemChestplateChain.java index ce0f5778ef3..c6e4c70b563 100644 --- a/src/main/java/cn/nukkit/item/ItemChestplateChain.java +++ b/src/main/java/cn/nukkit/item/ItemChestplateChain.java @@ -14,7 +14,7 @@ public ItemChestplateChain(Integer meta) { } public ItemChestplateChain(Integer meta, int count) { - super(CHAIN_CHESTPLATE, meta, count, "Chain Chestplate"); + super(CHAIN_CHESTPLATE, meta, count, "Chainmail Chestplate"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemChestplateGold.java b/src/main/java/cn/nukkit/item/ItemChestplateGold.java index dbbac37d3bd..11b27ca31ac 100644 --- a/src/main/java/cn/nukkit/item/ItemChestplateGold.java +++ b/src/main/java/cn/nukkit/item/ItemChestplateGold.java @@ -14,7 +14,7 @@ public ItemChestplateGold(Integer meta) { } public ItemChestplateGold(Integer meta, int count) { - super(GOLD_CHESTPLATE, meta, count, "Gold Chestplate"); + super(GOLD_CHESTPLATE, meta, count, "Golden Chestplate"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemClay.java b/src/main/java/cn/nukkit/item/ItemClay.java index 1510e25a15c..4fe3893afae 100644 --- a/src/main/java/cn/nukkit/item/ItemClay.java +++ b/src/main/java/cn/nukkit/item/ItemClay.java @@ -14,6 +14,6 @@ public ItemClay(Integer meta) { } public ItemClay(Integer meta, int count) { - super(CLAY, meta, count, "Clay"); + super(CLAY, meta, count, "Clay Ball"); } } diff --git a/src/main/java/cn/nukkit/item/ItemClownfish.java b/src/main/java/cn/nukkit/item/ItemClownfish.java index 1c08ae370e3..654ca68f80a 100644 --- a/src/main/java/cn/nukkit/item/ItemClownfish.java +++ b/src/main/java/cn/nukkit/item/ItemClownfish.java @@ -15,6 +15,6 @@ public ItemClownfish(Integer meta) { } public ItemClownfish(Integer meta, int count) { - super(CLOWNFISH, meta, count, "Clownfish"); + super(CLOWNFISH, meta, count, "Tropical Fish"); } } diff --git a/src/main/java/cn/nukkit/item/ItemElytra.java b/src/main/java/cn/nukkit/item/ItemElytra.java index d5215ebcd0e..520a5dcfe2c 100644 --- a/src/main/java/cn/nukkit/item/ItemElytra.java +++ b/src/main/java/cn/nukkit/item/ItemElytra.java @@ -19,7 +19,7 @@ public ItemElytra(Integer meta, int count) { @Override public int getMaxDurability() { - return 431; + return 433; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemEmptyMap.java b/src/main/java/cn/nukkit/item/ItemEmptyMap.java index 94a00db0199..64668bb8dbd 100644 --- a/src/main/java/cn/nukkit/item/ItemEmptyMap.java +++ b/src/main/java/cn/nukkit/item/ItemEmptyMap.java @@ -12,8 +12,20 @@ public ItemEmptyMap(Integer meta) { public ItemEmptyMap(Integer meta, int count) { super(EMPTY_MAP, meta, count, "Empty Map"); - if (meta == 2) { - this.name = "Empty Locator Map"; + updateName(); + } + + @Override + public void setDamage(Integer meta) { + super.setDamage(meta); + updateName(); + } + + private void updateName() { + if (getDamage() == 2) { + name = "Empty Locator Map"; + } else { + name = "Empty Map"; } } } diff --git a/src/main/java/cn/nukkit/item/ItemFirework.java b/src/main/java/cn/nukkit/item/ItemFirework.java index 0958bccb834..de971a2c567 100644 --- a/src/main/java/cn/nukkit/item/ItemFirework.java +++ b/src/main/java/cn/nukkit/item/ItemFirework.java @@ -33,7 +33,7 @@ public ItemFirework(Integer meta) { @PowerNukkitDifference(info = "Will not add compound tag automatically") public ItemFirework(Integer meta, int count) { - super(FIREWORKS, meta, count, "Fireworks"); + super(FIREWORKS, meta, count, "Firework Rocket"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemFish.java b/src/main/java/cn/nukkit/item/ItemFish.java index e401a1d71ae..8e1cd8d51f9 100644 --- a/src/main/java/cn/nukkit/item/ItemFish.java +++ b/src/main/java/cn/nukkit/item/ItemFish.java @@ -14,7 +14,7 @@ public ItemFish(Integer meta) { } public ItemFish(Integer meta, int count) { - super(RAW_FISH, meta, count, "Raw Fish"); + super(RAW_FISH, meta, count, "Cod"); } protected ItemFish(int id, Integer meta, int count, String name) { diff --git a/src/main/java/cn/nukkit/item/ItemFishCooked.java b/src/main/java/cn/nukkit/item/ItemFishCooked.java index 9fb0d9eaff5..21edd0a459e 100644 --- a/src/main/java/cn/nukkit/item/ItemFishCooked.java +++ b/src/main/java/cn/nukkit/item/ItemFishCooked.java @@ -14,7 +14,7 @@ public ItemFishCooked(Integer meta) { } public ItemFishCooked(Integer meta, int count) { - super(COOKED_FISH, meta, count, "Cooked Fish"); + super(COOKED_FISH, meta, count, "Cooked Cod"); } } diff --git a/src/main/java/cn/nukkit/item/ItemHelmetGold.java b/src/main/java/cn/nukkit/item/ItemHelmetGold.java index 4499770b205..e530cbf8650 100644 --- a/src/main/java/cn/nukkit/item/ItemHelmetGold.java +++ b/src/main/java/cn/nukkit/item/ItemHelmetGold.java @@ -14,7 +14,7 @@ public ItemHelmetGold(Integer meta) { } public ItemHelmetGold(Integer meta, int count) { - super(GOLD_HELMET, meta, count, "Gold Helmet"); + super(GOLD_HELMET, meta, count, "Golden Helmet"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemHoeGold.java b/src/main/java/cn/nukkit/item/ItemHoeGold.java index 716b7c22f0f..45a082c5616 100644 --- a/src/main/java/cn/nukkit/item/ItemHoeGold.java +++ b/src/main/java/cn/nukkit/item/ItemHoeGold.java @@ -14,7 +14,7 @@ public ItemHoeGold(Integer meta) { } public ItemHoeGold(Integer meta, int count) { - super(GOLD_HOE, meta, count, "Gold Hoe"); + super(GOLD_HOE, meta, count, "Golden Hoe"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemHorseArmorGold.java b/src/main/java/cn/nukkit/item/ItemHorseArmorGold.java index 5cb642ee643..0263c64ad98 100644 --- a/src/main/java/cn/nukkit/item/ItemHorseArmorGold.java +++ b/src/main/java/cn/nukkit/item/ItemHorseArmorGold.java @@ -10,7 +10,7 @@ public ItemHorseArmorGold(Integer meta) { } public ItemHorseArmorGold(Integer meta, int count) { - super(GOLD_HORSE_ARMOR, meta, count, "Gold Horse Armor"); + super(GOLD_HORSE_ARMOR, meta, count, "Golden Horse Armor"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemLeggingsChain.java b/src/main/java/cn/nukkit/item/ItemLeggingsChain.java index 4127e17e0f6..d4a92283372 100644 --- a/src/main/java/cn/nukkit/item/ItemLeggingsChain.java +++ b/src/main/java/cn/nukkit/item/ItemLeggingsChain.java @@ -14,7 +14,7 @@ public ItemLeggingsChain(Integer meta) { } public ItemLeggingsChain(Integer meta, int count) { - super(CHAIN_LEGGINGS, meta, count, "Chain Leggings"); + super(CHAIN_LEGGINGS, meta, count, "Chainmail Leggings"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemLeggingsGold.java b/src/main/java/cn/nukkit/item/ItemLeggingsGold.java index ffd00cc0614..bc30e41d8b5 100644 --- a/src/main/java/cn/nukkit/item/ItemLeggingsGold.java +++ b/src/main/java/cn/nukkit/item/ItemLeggingsGold.java @@ -14,7 +14,7 @@ public ItemLeggingsGold(Integer meta) { } public ItemLeggingsGold(Integer meta, int count) { - super(GOLD_LEGGINGS, meta, count, "Gold Leggings"); + super(GOLD_LEGGINGS, meta, count, "Golden Leggings"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemMap.java b/src/main/java/cn/nukkit/item/ItemMap.java index db0dc744f5e..4553fc6c73a 100644 --- a/src/main/java/cn/nukkit/item/ItemMap.java +++ b/src/main/java/cn/nukkit/item/ItemMap.java @@ -35,12 +35,7 @@ public ItemMap(Integer meta) { public ItemMap(Integer meta, int count) { super(MAP, meta, count, "Map"); - switch (meta) { - case 3: this.name = "Ocean Explorer Map"; break; - case 4: this.name = "Woodland Explorer Map"; break; - case 5: this.name = "Treasure Map"; break; - } - + updateName(); if (!hasCompoundTag() || !getNamedTag().contains("map_uuid")) { CompoundTag tag = new CompoundTag(); tag.putLong("map_uuid", mapCount++); @@ -48,6 +43,20 @@ public ItemMap(Integer meta, int count) { } } + @Override + public void setDamage(Integer meta) { + super.setDamage(meta); + updateName(); + } + + private void updateName() { + switch (meta) { + case 3: this.name = "Ocean Explorer Map"; break; + case 4: this.name = "Woodland Explorer Map"; break; + case 5: this.name = "Treasure Map"; break; + } + } + public void setImage(File file) throws IOException { setImage(ImageIO.read(file)); } diff --git a/src/main/java/cn/nukkit/item/ItemMelon.java b/src/main/java/cn/nukkit/item/ItemMelon.java index 1cd107bfae3..6fb7619b9c7 100644 --- a/src/main/java/cn/nukkit/item/ItemMelon.java +++ b/src/main/java/cn/nukkit/item/ItemMelon.java @@ -14,6 +14,6 @@ public ItemMelon(Integer meta) { } public ItemMelon(Integer meta, int count) { - super(MELON, meta, count, "Melon"); + super(MELON, meta, count, "Melon Slice"); } } diff --git a/src/main/java/cn/nukkit/item/ItemMelonGlistering.java b/src/main/java/cn/nukkit/item/ItemMelonGlistering.java index 9581bcdb0c8..c40c062bb6c 100644 --- a/src/main/java/cn/nukkit/item/ItemMelonGlistering.java +++ b/src/main/java/cn/nukkit/item/ItemMelonGlistering.java @@ -15,6 +15,6 @@ public ItemMelonGlistering(Integer meta) { } public ItemMelonGlistering(Integer meta, int count) { - super(GLISTERING_MELON, meta, count, "Glistering Melon"); + super(GLISTERING_MELON, meta, count, "Glistering Melon Slice"); } } diff --git a/src/main/java/cn/nukkit/item/ItemPickaxeGold.java b/src/main/java/cn/nukkit/item/ItemPickaxeGold.java index 9cccee8ac4a..62b9b1e8baf 100644 --- a/src/main/java/cn/nukkit/item/ItemPickaxeGold.java +++ b/src/main/java/cn/nukkit/item/ItemPickaxeGold.java @@ -14,7 +14,7 @@ public ItemPickaxeGold(Integer meta) { } public ItemPickaxeGold(Integer meta, int count) { - super(GOLD_PICKAXE, meta, count, "Gold Pickaxe"); + super(GOLD_PICKAXE, meta, count, "Golden Pickaxe"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemPotion.java b/src/main/java/cn/nukkit/item/ItemPotion.java index 70d9bb6d6b9..88bbd2933ca 100644 --- a/src/main/java/cn/nukkit/item/ItemPotion.java +++ b/src/main/java/cn/nukkit/item/ItemPotion.java @@ -1,9 +1,14 @@ package cn.nukkit.item; import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.event.player.PlayerItemConsumeEvent; import cn.nukkit.math.Vector3; import cn.nukkit.potion.Potion; +import cn.nukkit.utils.ServerException; + +import javax.annotation.Nullable; public class ItemPotion extends Item { @@ -55,6 +60,62 @@ public ItemPotion(Integer meta) { public ItemPotion(Integer meta, int count) { super(POTION, meta, count, "Potion"); + updateName(); + } + + @Override + public void setDamage(Integer meta) { + super.setDamage(meta); + updateName(); + } + + private void updateName() { + int damage = getDamage(); + if (damage == 0) { + name = "Water Bottle"; + } else { + name = buildName(damage, "Potion", true); + } + } + + static String buildName(int damage, String type, boolean includeLevel) { + switch (damage) { + case 0: + return "Water " + type; + case 1: + case 2: + return "Mundane " + type; + case 3: + return "Thick " + type; + case 4: + return "Awkward " + type; + case 37: + case 38: + case 39: { + String name = type + " of the Turtle Master"; + if (!includeLevel) { + return name; + } + Potion potion = getPotion(damage); + if (potion == null || potion.getLevel() <= 1) { + return name; + } + return name + " " + potion.getRomanLevel(); + } + default: { + Potion potion = getPotion(damage); + String finalName = potion != null ? potion.getPotionTypeName() : ""; + if (finalName.isEmpty()) { + finalName = type; + } else { + finalName = type + " of " + finalName; + } + if (includeLevel && potion != null && potion.getLevel() > 1) { + finalName += " " + potion.getRomanLevel(); + } + return finalName; + } + } } @Override @@ -87,4 +148,19 @@ public boolean onUse(Player player, int ticksUsed) { } return true; } -} \ No newline at end of file + + @PowerNukkitOnly + @Since("FUTURE") + @Nullable + public Potion getPotion() { + return getPotion(getDamage()); + } + + static Potion getPotion(int damage) { + try { + return Potion.getPotion(damage); + } catch (ServerException ignored) { + return null; + } + } +} diff --git a/src/main/java/cn/nukkit/item/ItemPotionLingering.java b/src/main/java/cn/nukkit/item/ItemPotionLingering.java index 459084ba765..37e701d809d 100644 --- a/src/main/java/cn/nukkit/item/ItemPotionLingering.java +++ b/src/main/java/cn/nukkit/item/ItemPotionLingering.java @@ -15,6 +15,22 @@ public ItemPotionLingering(Integer meta) { public ItemPotionLingering(Integer meta, int count) { super(LINGERING_POTION, meta, count, "Lingering Potion"); + updateName(); + } + + @Override + public void setDamage(Integer meta) { + super.setDamage(meta); + updateName(); + } + + private void updateName() { + int damage = getDamage(); + if (damage == 0) { + name = "Lingering Water Bottle"; + } else { + name = ItemPotion.buildName(damage, "Lingering Potion", true); + } } @Override diff --git a/src/main/java/cn/nukkit/item/ItemPotionSplash.java b/src/main/java/cn/nukkit/item/ItemPotionSplash.java index 383f1686c6a..923c2abf9a3 100644 --- a/src/main/java/cn/nukkit/item/ItemPotionSplash.java +++ b/src/main/java/cn/nukkit/item/ItemPotionSplash.java @@ -14,6 +14,22 @@ public ItemPotionSplash(Integer meta) { public ItemPotionSplash(Integer meta, int count) { super(SPLASH_POTION, meta, count, "Splash Potion"); + updateName(); + } + + @Override + public void setDamage(Integer meta) { + super.setDamage(meta); + updateName(); + } + + private void updateName() { + int damage = getDamage(); + if (damage == 0) { + name = "Splash Water Bottle"; + } else { + name = ItemPotion.buildName(damage, "Splash Potion", true); + } } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecord11.java b/src/main/java/cn/nukkit/item/ItemRecord11.java index 56f3b8f7a50..523a13bc89f 100644 --- a/src/main/java/cn/nukkit/item/ItemRecord11.java +++ b/src/main/java/cn/nukkit/item/ItemRecord11.java @@ -15,6 +15,7 @@ public ItemRecord11(Integer meta) { public ItemRecord11(Integer meta, int count) { super(RECORD_11, meta, count); + name = "Music Disc 11"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecord13.java b/src/main/java/cn/nukkit/item/ItemRecord13.java index 173e8b029fb..50a8454dd47 100644 --- a/src/main/java/cn/nukkit/item/ItemRecord13.java +++ b/src/main/java/cn/nukkit/item/ItemRecord13.java @@ -15,6 +15,7 @@ public ItemRecord13(Integer meta) { public ItemRecord13(Integer meta, int count) { super(RECORD_13, meta, count); + name = "Music Disc 13"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecordBlocks.java b/src/main/java/cn/nukkit/item/ItemRecordBlocks.java index 00be58db636..6c15a82b757 100644 --- a/src/main/java/cn/nukkit/item/ItemRecordBlocks.java +++ b/src/main/java/cn/nukkit/item/ItemRecordBlocks.java @@ -15,6 +15,7 @@ public ItemRecordBlocks(Integer meta) { public ItemRecordBlocks(Integer meta, int count) { super(RECORD_BLOCKS, meta, count); + name = "Music Disc Blocks"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecordCat.java b/src/main/java/cn/nukkit/item/ItemRecordCat.java index 8f4eef89fb9..8d76cb96e03 100644 --- a/src/main/java/cn/nukkit/item/ItemRecordCat.java +++ b/src/main/java/cn/nukkit/item/ItemRecordCat.java @@ -15,6 +15,7 @@ public ItemRecordCat(Integer meta) { public ItemRecordCat(Integer meta, int count) { super(RECORD_CAT, meta, count); + name = "Music Disc Cat"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecordChirp.java b/src/main/java/cn/nukkit/item/ItemRecordChirp.java index 82bd15366a9..65ea24053b0 100644 --- a/src/main/java/cn/nukkit/item/ItemRecordChirp.java +++ b/src/main/java/cn/nukkit/item/ItemRecordChirp.java @@ -15,6 +15,7 @@ public ItemRecordChirp(Integer meta) { public ItemRecordChirp(Integer meta, int count) { super(RECORD_CHIRP, meta, count); + name = "Music Disc Chirp"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecordFar.java b/src/main/java/cn/nukkit/item/ItemRecordFar.java index 9f8d1a29c1c..d72a44448e6 100644 --- a/src/main/java/cn/nukkit/item/ItemRecordFar.java +++ b/src/main/java/cn/nukkit/item/ItemRecordFar.java @@ -15,6 +15,7 @@ public ItemRecordFar(Integer meta) { public ItemRecordFar(Integer meta, int count) { super(RECORD_FAR, meta, count); + name = "Music Disc Far"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecordMall.java b/src/main/java/cn/nukkit/item/ItemRecordMall.java index aa49939e6b6..398a794c572 100644 --- a/src/main/java/cn/nukkit/item/ItemRecordMall.java +++ b/src/main/java/cn/nukkit/item/ItemRecordMall.java @@ -15,6 +15,7 @@ public ItemRecordMall(Integer meta) { public ItemRecordMall(Integer meta, int count) { super(RECORD_MALL, meta, count); + name = "Music Disc Mall"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecordMellohi.java b/src/main/java/cn/nukkit/item/ItemRecordMellohi.java index 9c5119d950b..ab09d4418ba 100644 --- a/src/main/java/cn/nukkit/item/ItemRecordMellohi.java +++ b/src/main/java/cn/nukkit/item/ItemRecordMellohi.java @@ -15,6 +15,7 @@ public ItemRecordMellohi(Integer meta) { public ItemRecordMellohi(Integer meta, int count) { super(RECORD_MELLOHI, meta, count); + name = "Music Disc Mellohi"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecordPigstep.java b/src/main/java/cn/nukkit/item/ItemRecordPigstep.java index 4cf113a5362..8abb9921715 100644 --- a/src/main/java/cn/nukkit/item/ItemRecordPigstep.java +++ b/src/main/java/cn/nukkit/item/ItemRecordPigstep.java @@ -21,6 +21,7 @@ public ItemRecordPigstep(Integer meta) { @Since("1.4.0.0-PN") public ItemRecordPigstep(Integer meta, int count) { super(RECORD_PIGSTEP, meta, count); + name = "Music Disc Pigstep"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecordStal.java b/src/main/java/cn/nukkit/item/ItemRecordStal.java index ec3b623f8d2..f9e50374262 100644 --- a/src/main/java/cn/nukkit/item/ItemRecordStal.java +++ b/src/main/java/cn/nukkit/item/ItemRecordStal.java @@ -15,6 +15,7 @@ public ItemRecordStal(Integer meta) { public ItemRecordStal(Integer meta, int count) { super(RECORD_STAL, meta, count); + name = "Music Disc Stal"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecordStrad.java b/src/main/java/cn/nukkit/item/ItemRecordStrad.java index 2edf6eb9b6c..a62b1186871 100644 --- a/src/main/java/cn/nukkit/item/ItemRecordStrad.java +++ b/src/main/java/cn/nukkit/item/ItemRecordStrad.java @@ -15,6 +15,7 @@ public ItemRecordStrad(Integer meta) { public ItemRecordStrad(Integer meta, int count) { super(RECORD_STRAD, meta, count); + name = "Music Disc Strad"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecordWait.java b/src/main/java/cn/nukkit/item/ItemRecordWait.java index 8816d6d8e2e..1756d4c0a8f 100644 --- a/src/main/java/cn/nukkit/item/ItemRecordWait.java +++ b/src/main/java/cn/nukkit/item/ItemRecordWait.java @@ -15,6 +15,7 @@ public ItemRecordWait(Integer meta) { public ItemRecordWait(Integer meta, int count) { super(RECORD_WAIT, meta, count); + name = "Music Disc Wait"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemRecordWard.java b/src/main/java/cn/nukkit/item/ItemRecordWard.java index 0d65d8fb8df..b271be461dc 100644 --- a/src/main/java/cn/nukkit/item/ItemRecordWard.java +++ b/src/main/java/cn/nukkit/item/ItemRecordWard.java @@ -15,6 +15,7 @@ public ItemRecordWard(Integer meta) { public ItemRecordWard(Integer meta, int count) { super(RECORD_WARD, meta, count); + name = "Music Disc Ward"; } @Override diff --git a/src/main/java/cn/nukkit/item/ItemShield.java b/src/main/java/cn/nukkit/item/ItemShield.java index 68221020f49..9de765fbe5c 100644 --- a/src/main/java/cn/nukkit/item/ItemShield.java +++ b/src/main/java/cn/nukkit/item/ItemShield.java @@ -24,6 +24,6 @@ public int getMaxStackSize() { @Override public int getMaxDurability() { - return 336; + return DURABILITY_SHIELD; } } diff --git a/src/main/java/cn/nukkit/item/ItemShovelGold.java b/src/main/java/cn/nukkit/item/ItemShovelGold.java index 40ef032e44f..1e3abbdfbf4 100644 --- a/src/main/java/cn/nukkit/item/ItemShovelGold.java +++ b/src/main/java/cn/nukkit/item/ItemShovelGold.java @@ -14,7 +14,7 @@ public ItemShovelGold(Integer meta) { } public ItemShovelGold(Integer meta, int count) { - super(GOLD_SHOVEL, meta, count, "Gold Shovel"); + super(GOLD_SHOVEL, meta, count, "Golden Shovel"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemSign.java b/src/main/java/cn/nukkit/item/ItemSign.java index 11bed656cc6..b0005a0370a 100644 --- a/src/main/java/cn/nukkit/item/ItemSign.java +++ b/src/main/java/cn/nukkit/item/ItemSign.java @@ -25,7 +25,7 @@ protected ItemSign(int id, Integer meta, int count, String name, BlockSignPost b } public ItemSign(Integer meta, int count) { - super(SIGN, 0, count, "Sign"); + super(SIGN, 0, count, "Oak Sign"); this.block = Block.get(BlockID.SIGN_POST); } diff --git a/src/main/java/cn/nukkit/item/ItemSkull.java b/src/main/java/cn/nukkit/item/ItemSkull.java index 96a57e4a29a..744112d751e 100644 --- a/src/main/java/cn/nukkit/item/ItemSkull.java +++ b/src/main/java/cn/nukkit/item/ItemSkull.java @@ -23,8 +23,19 @@ public ItemSkull(Integer meta) { } public ItemSkull(Integer meta, int count) { - super(SKULL, meta, count, getItemSkullName(meta)); + super(SKULL, meta, count, "Skull"); this.block = Block.get(Block.SKULL_BLOCK); + updateName(); + } + + @Override + public void setDamage(Integer meta) { + super.setDamage(meta); + updateName(); + } + + private void updateName() { + name = getItemSkullName(getDamage()); } public static String getItemSkullName(int meta) { diff --git a/src/main/java/cn/nukkit/item/ItemSpawnEgg.java b/src/main/java/cn/nukkit/item/ItemSpawnEgg.java index 3f6de6fe43f..5173f1fc95d 100644 --- a/src/main/java/cn/nukkit/item/ItemSpawnEgg.java +++ b/src/main/java/cn/nukkit/item/ItemSpawnEgg.java @@ -15,6 +15,7 @@ import cn.nukkit.nbt.tag.FloatTag; import cn.nukkit.nbt.tag.ListTag; +import javax.annotation.Nullable; import java.util.Random; /** @@ -31,7 +32,8 @@ public ItemSpawnEgg(Integer meta) { } public ItemSpawnEgg(Integer meta, int count) { - super(SPAWN_EGG, meta, count, "Spawn EntityEgg"); + this(SPAWN_EGG, meta, count, "Spawn Egg"); + updateName(); } @PowerNukkitOnly @@ -40,6 +42,23 @@ protected ItemSpawnEgg(int id, Integer meta, int count, String name) { super(id, meta, count, name); } + @Override + public void setDamage(Integer meta) { + super.setDamage(meta); + updateName(); + } + + @PowerNukkitOnly + @Since("FUTURE") + protected void updateName() { + String entityName = getEntityName(); + if (entityName == null) { + name = "Spawn Egg"; + } else { + name = entityName + " Spawn Egg"; + } + } + @Override public boolean canBeActivated() { return true; @@ -95,15 +114,29 @@ public boolean onActivate(Level level, Player player, Block block, Block target, return false; } - @Since("1.4.0.0-PN") - @PowerNukkitOnly - public Item getLegacySpawnEgg() { - return Item.get(SPAWN_EGG, getEntityNetworkId(), getCount(), getCompoundTag()); - } - @PowerNukkitOnly @Since("1.4.0.0-PN") public int getEntityNetworkId() { return this.meta; } + + @PowerNukkitOnly + @Since("FUTURE") + @Nullable + public String getEntityName() { + String saveId = Entity.getSaveId(getEntityNetworkId()); + if (saveId == null) { + return null; + } + switch (saveId) { + case "VillagerV1": + return "Villager"; + case "ZombieVillagerV1": + return "Zombie Villager"; + case "NPC": + return "NPC"; + default: + return String.join(" ", saveId.split("(?=\\p{Lu})")); + } + } } diff --git a/src/main/java/cn/nukkit/item/ItemSwordGold.java b/src/main/java/cn/nukkit/item/ItemSwordGold.java index b262f73a8a1..6c66e3300ee 100644 --- a/src/main/java/cn/nukkit/item/ItemSwordGold.java +++ b/src/main/java/cn/nukkit/item/ItemSwordGold.java @@ -14,7 +14,7 @@ public ItemSwordGold(Integer meta) { } public ItemSwordGold(Integer meta, int count) { - super(GOLD_SWORD, meta, count, "Gold Sword"); + super(GOLD_SWORD, meta, count, "Golden Sword"); } @Override diff --git a/src/main/java/cn/nukkit/item/ItemTool.java b/src/main/java/cn/nukkit/item/ItemTool.java index 031f9a8faa1..5b8a0059833 100644 --- a/src/main/java/cn/nukkit/item/ItemTool.java +++ b/src/main/java/cn/nukkit/item/ItemTool.java @@ -49,10 +49,11 @@ public abstract class ItemTool extends Item implements ItemDurable { public static final int DURABILITY_SHEARS = dynamic(239); public static final int DURABILITY_BOW = dynamic(385); public static final int DURABILITY_TRIDENT = dynamic(251); - public static final int DURABILITY_FISHING_ROD = dynamic(65); - @Since("1.4.0.0-PN") public static final int DURABILITY_CROSSBOW = dynamic(465); - @Since("future") public static final int DURABILITY_CARROT_ON_A_STICK = dynamic(25); - @Since("future") public static final int DURABILITY_WARPED_FUNGUS_ON_A_STICK = dynamic(100); + public static final int DURABILITY_FISHING_ROD = dynamic(384); + @Since("1.4.0.0-PN") public static final int DURABILITY_CROSSBOW = dynamic(464); + @Since("FUTURE") public static final int DURABILITY_CARROT_ON_A_STICK = dynamic(26); + @Since("FUTURE") public static final int DURABILITY_WARPED_FUNGUS_ON_A_STICK = dynamic(101); + @Since("FUTURE") @PowerNukkitOnly public static final int DURABILITY_SHIELD = dynamic(337); @PowerNukkitOnly @Since("1.4.0.0-PN") diff --git a/src/main/java/cn/nukkit/item/ItemTrident.java b/src/main/java/cn/nukkit/item/ItemTrident.java index b62457c6225..c9a7d15a235 100644 --- a/src/main/java/cn/nukkit/item/ItemTrident.java +++ b/src/main/java/cn/nukkit/item/ItemTrident.java @@ -36,11 +36,6 @@ public int getMaxDurability() { return ItemTool.DURABILITY_TRIDENT; } - @Override - public boolean isSword() { - return true; - } - @Override public int getAttackDamage() { return 9; diff --git a/src/main/java/cn/nukkit/potion/Potion.java b/src/main/java/cn/nukkit/potion/Potion.java index 7200f4de81a..8d298aec772 100644 --- a/src/main/java/cn/nukkit/potion/Potion.java +++ b/src/main/java/cn/nukkit/potion/Potion.java @@ -1,6 +1,8 @@ package cn.nukkit.potion; import cn.nukkit.Player; +import cn.nukkit.api.DeprecationDetails; +import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.entity.Entity; @@ -10,10 +12,15 @@ import cn.nukkit.event.entity.EntityRegainHealthEvent; import cn.nukkit.event.potion.PotionApplyEvent; import cn.nukkit.utils.ServerException; +import lombok.EqualsAndHashCode; + +import javax.annotation.Nonnull; /** * @author MagicDroidX (Nukkit Project) */ +@PowerNukkitDifference(since = "FUTURE", info = "Implements equals() and hashcode() only in PowerNukkit") +@EqualsAndHashCode public class Potion implements Cloneable { public static final int NO_EFFECTS = 0; @@ -59,8 +66,14 @@ public class Potion implements Cloneable { public static final int TURTLE_MASTER_II = 39; public static final int SLOW_FALLING = 40; public static final int SLOW_FALLING_LONG = 41; - @Since("1.4.0.0-PN") public static final int SLOWNESS_LONG_II = 42; - @Since("1.4.0.0-PN") @PowerNukkitOnly public static final int SLOWNESS_IV = 43; + @Since("1.4.0.0-PN") @PowerNukkitOnly public static final int SLOWNESS_IV = 42; + + @Since("1.4.0.0-PN") + @Deprecated + @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = + "Incorrect name, there is vanilla potion with slowness long 2, the result of potion with slowness 1 + glowstone is slowness 4", + replaceWith = "SLOWNESS_IV") + public static final int SLOWNESS_LONG_II = SLOWNESS_IV; protected static Potion[] potions; @@ -109,7 +122,6 @@ public static void init() { potions[Potion.TURTLE_MASTER_II] = new Potion(Potion.TURTLE_MASTER_II, 2); potions[Potion.SLOW_FALLING] = new Potion(Potion.SLOW_FALLING); potions[Potion.SLOW_FALLING_LONG] = new Potion(Potion.SLOW_FALLING_LONG); - potions[Potion.SLOWNESS_LONG_II] = new Potion(Potion.SLOWNESS_LONG_II, 2); potions[Potion.SLOWNESS_IV] = new Potion(Potion.SLOWNESS, 4); } @@ -430,4 +442,130 @@ public static int getApplySeconds(int potionType, boolean isSplash) { } } } + + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public String getPotionTypeName() { + switch (getId()) { + case WATER: + return "Water"; + case MUNDANE: + case MUNDANE_II: + return "Mundane"; + case THICK: + return "thick"; + case AWKWARD: + return "Awkward"; + case NIGHT_VISION_LONG: + case NIGHT_VISION: + return "Night Vision"; + case INVISIBLE: + case INVISIBLE_LONG: + return "Invisibility"; + case LEAPING_LONG: + case LEAPING_II: + case LEAPING: + return "Leaping"; + case FIRE_RESISTANCE_LONG: + case FIRE_RESISTANCE: + return "Fire Resistance"; + case SPEED: + case SPEED_LONG: + case SPEED_II: + return "Swiftness"; + case SLOWNESS_LONG: + case SLOWNESS: + case SLOWNESS_IV: + return "Slowness"; + case WATER_BREATHING_LONG: + case WATER_BREATHING: + return "Water Breathing"; + case INSTANT_HEALTH: + case INSTANT_HEALTH_II: + return "Healing"; + case HARMING: + case HARMING_II: + return "Harming"; + case POISON: + case POISON_LONG: + case POISON_II: + return "Poison"; + case REGENERATION: + case REGENERATION_LONG: + case REGENERATION_II: + return "Regeneration"; + case STRENGTH: + case STRENGTH_LONG: + case STRENGTH_II: + return "Strength"; + case WEAKNESS: + case WEAKNESS_LONG: + return "Weakness"; + case WITHER_II: + return "Decay"; + case TURTLE_MASTER: + case TURTLE_MASTER_LONG: + case TURTLE_MASTER_II: + return "Turtle Master"; + case SLOW_FALLING: + case SLOW_FALLING_LONG: + return "Slow Falling"; + default: + return ""; + } + } + + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public String getName() { + String name = getPotionTypeName(); + StringBuilder finalName = new StringBuilder(255).append("Potion"); + if (!name.isEmpty()) { + finalName.append(" of ").append(name); + } + + int currentLevel = getLevel(); + if (currentLevel > 1) { + finalName.append(' '); + appendRoman(finalName, currentLevel); + } + return finalName.toString(); + } + + @PowerNukkitOnly + @Since("FUTURE") + @Nonnull + public String getRomanLevel() { + int currentLevel = getLevel(); + if (currentLevel == 0) { + return "0"; + } + + StringBuilder sb = new StringBuilder(4); + if (currentLevel < 0) { + sb.append('-'); + currentLevel *= -1; + } + + appendRoman(sb, currentLevel); + return sb.toString(); + } + + private static void appendRoman(StringBuilder sb, int num) { + int times; + String[] romans = new String[] { "I", "IV", "V", "IX", "X", "XL", "L", + "XC", "C", "CD", "D", "CM", "M" }; + int[] ints = new int[] { 1, 4, 5, 9, 10, 40, 50, 90, 100, 400, 500, + 900, 1000 }; + for (int i = ints.length - 1; i >= 0; i--) { + times = num / ints[i]; + num %= ints[i]; + while (times > 0) { + sb.append(romans[i]); + times--; + } + } + } } diff --git a/src/main/java/cn/nukkit/utils/DyeColor.java b/src/main/java/cn/nukkit/utils/DyeColor.java index 51cef26c47f..a36bc75f767 100644 --- a/src/main/java/cn/nukkit/utils/DyeColor.java +++ b/src/main/java/cn/nukkit/utils/DyeColor.java @@ -10,9 +10,9 @@ public enum DyeColor { - BLACK(0, 15, 16, "Black", "Ink Sack", BlockColor.BLACK_BLOCK_COLOR, new BlockColor(0x1D1D21)), - RED(1, 14, 1, "Red", "Rose Red", BlockColor.RED_BLOCK_COLOR, new BlockColor(0xB02E26)), - GREEN(2, 13, 2, "Green", "Cactus Green", BlockColor.GREEN_BLOCK_COLOR, new BlockColor(0x5E7C16)), + BLACK(0, 15, 16, "Black", "Ink Sac", BlockColor.BLACK_BLOCK_COLOR, new BlockColor(0x1D1D21)), + RED(1, 14, 1, "Red", "Red Dye", BlockColor.RED_BLOCK_COLOR, new BlockColor(0xB02E26)), + GREEN(2, 13, 2, "Green", "Green Dye", BlockColor.GREEN_BLOCK_COLOR, new BlockColor(0x5E7C16)), BROWN(3, 12, 17, "Brown", "Cocoa Beans", BlockColor.BROWN_BLOCK_COLOR, new BlockColor(0x835432)), BLUE(4, 11, 18, "Blue", "Lapis Lazuli", BlockColor.BLUE_BLOCK_COLOR, new BlockColor(0x3C44AA)), PURPLE(5, 10, 5, "Purple", BlockColor.PURPLE_BLOCK_COLOR, new BlockColor(0x8932B8)), @@ -21,7 +21,7 @@ public enum DyeColor { GRAY(8, 7, 8, "Gray", BlockColor.GRAY_BLOCK_COLOR, new BlockColor(0x474F52)), PINK(9, 6, 9, "Pink", BlockColor.PINK_BLOCK_COLOR, new BlockColor(0xF38BAA)), LIME(10, 5, 10, "Lime", BlockColor.LIME_BLOCK_COLOR, new BlockColor(0x80C71F)), - YELLOW(11, 4, 11, "Yellow", "Dandelion Yellow", BlockColor.YELLOW_BLOCK_COLOR, new BlockColor(0xFED83D)), + YELLOW(11, 4, 11, "Yellow", "Yellow Dye", BlockColor.YELLOW_BLOCK_COLOR, new BlockColor(0xFED83D)), LIGHT_BLUE(12, 3, 12, "Light Blue", BlockColor.LIGHT_BLUE_BLOCK_COLOR, new BlockColor(0x3AB3DA)), MAGENTA(13, 2, 13, "Magenta", BlockColor.MAGENTA_BLOCK_COLOR, new BlockColor(0xC74EBD)), ORANGE(14, 1, 14, "Orange", BlockColor.ORANGE_BLOCK_COLOR, new BlockColor(0xFF9801)), diff --git a/src/main/java/cn/nukkit/utils/TerracottaColor.java b/src/main/java/cn/nukkit/utils/TerracottaColor.java index 03800a599cd..94f004da8a7 100644 --- a/src/main/java/cn/nukkit/utils/TerracottaColor.java +++ b/src/main/java/cn/nukkit/utils/TerracottaColor.java @@ -2,7 +2,7 @@ public enum TerracottaColor { - BLACK(0, 15, "Black", "Ink Sack", BlockColor.BLACK_TERRACOTA_BLOCK_COLOR), + BLACK(0, 15, "Black", "Ink Sac", BlockColor.BLACK_TERRACOTA_BLOCK_COLOR), RED(1, 14, "Red", "Rose Red", BlockColor.RED_TERRACOTA_BLOCK_COLOR), GREEN(2, 13, "Green", "Cactus Green", BlockColor.GREEN_TERRACOTA_BLOCK_COLOR), BROWN(3, 12, "Brown", "Cocoa Beans", BlockColor.BROWN_TERRACOTA_BLOCK_COLOR), diff --git a/src/test/java/cn/nukkit/entity/item/EntityItemTest.java b/src/test/java/cn/nukkit/entity/item/EntityItemTest.java index 245415c5ab3..6872e9885ad 100644 --- a/src/test/java/cn/nukkit/entity/item/EntityItemTest.java +++ b/src/test/java/cn/nukkit/entity/item/EntityItemTest.java @@ -71,6 +71,6 @@ void getNameWithItemWithCustomName() { @Test void getNameWithItem() { entityItem.item = Item.get(ItemID.GOLD_SWORD); - assertEquals("1x Gold Sword", entityItem.getName()); + assertEquals("1x Golden Sword", entityItem.getName()); } } diff --git a/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java b/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java new file mode 100644 index 00000000000..4639b9a140b --- /dev/null +++ b/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java @@ -0,0 +1,316 @@ +package cn.nukkit.item; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.extension.ExtendWith; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.Arguments; +import org.junit.jupiter.params.provider.MethodSource; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; +import org.w3c.dom.*; +import org.xml.sax.InputSource; +import org.xml.sax.SAXException; + +import javax.xml.XMLConstants; +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.parsers.ParserConfigurationException; +import java.io.BufferedInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.util.*; +import java.util.stream.Stream; + +import static java.util.Spliterator.*; +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author joserobjr + * @since 2021-12-15 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +public class BasicAttributesXmlTest { + private static Document document; + + @ParameterizedTest + @MethodSource("createComparisonStream") + void testAttribute(Item item, Element definition) { + final String namespaceId; + try { + namespaceId = item.getNamespaceId(); + } catch (IllegalArgumentException e) { + throw new IllegalArgumentException("item.getNamespaceId() failed for " + definition.getAttribute("namespaced-id") + " with damage " + definition.getAttribute("damage"), e); + } + String prefix = namespaceId + (item.getDamage() != 0? ":" + item.getDamage() : "") + " -> " + item.getClass().getSimpleName() + " -> "; + assertEquals(definition.getAttribute("namespaced-id"), namespaceId, ()-> prefix + "Wrong namespaced-id"); + getInt("numeric-id", definition).ifPresent(id-> assertEquals(id, item.getId(), ()-> prefix + "Wrong numeric-id")); + assertEquals(definition.getAttribute("name"), item.getName(), ()-> prefix + "Wrong name"); + assertEquals(getInt("stack-size", definition).orElse(64), item.getMaxStackSize(), ()-> prefix + "Wrong stack-size"); + assertEquals(getInt("durability", definition).orElse(-1), item.getMaxDurability(), ()-> prefix + "Wrong durability"); + assertEquals(getInt("fuel-time", definition), Optional.ofNullable(item.getFuelTime()).map(OptionalInt::of).orElseGet(OptionalInt::empty), ()-> prefix + "Wrong fuel-time"); + boolean tool = isTool(definition); + boolean armor = isArmor(definition); + assertEquals(tool, item.isTool(), ()-> prefix + "Wrong isTool()"); + assertEquals(armor, item.isArmor(), ()-> prefix + "Wrong isArmor()"); + assertEquals(getTier(definition, tool, armor), item.getTier(), ()-> prefix + "Wrong tier"); + assertEquals(isTrue("axe", definition), item.isAxe(), ()-> prefix + "Wrong isAxe()"); + assertEquals(isTrue("pickaxe", definition), item.isPickaxe(), ()-> prefix + "Wrong isPickaxe()"); + assertEquals(isTrue("shovel", definition), item.isShovel(), ()-> prefix + "Wrong isShovel()"); + assertEquals(isTrue("hoe", definition), item.isHoe(), ()-> prefix + "Wrong isHoe()"); + assertEquals(isTrue("sword", definition), item.isSword(), ()-> prefix + "Wrong isSword()"); + assertEquals(isTrue("shears", definition), item.isShears(), ()-> prefix + "Wrong isShears()"); + assertEquals(isTrue("helmet", definition), item.isHelmet(), ()-> prefix + "Wrong isHelmet()"); + assertEquals(isTrue("chestplate", definition), item.isChestplate(), ()-> prefix + "Wrong isChestplate()"); + assertEquals(isTrue("leggings", definition), item.isLeggings(), ()-> prefix + "Wrong isLeggings()"); + assertEquals(isTrue("boots", definition), item.isBoots(), ()-> prefix + "Wrong isBoots()"); + } + + static int getTier(Element definition, boolean tool, boolean armor) { + if (tool) { + switch (definition.getAttribute("tier")) { + case "wood": + return ItemTool.TIER_WOODEN; + case "gold": + return ItemTool.TIER_GOLD; + case "stone": + return ItemTool.TIER_STONE; + case "iron": + return ItemTool.TIER_IRON; + case "diamond": + return ItemTool.TIER_DIAMOND; + case "netherite": + return ItemTool.TIER_NETHERITE; + case "none": + return 0; + } + } + if (armor) { + switch (definition.getAttribute("tier")) { + case "leather": + return ItemArmor.TIER_LEATHER; + case "chain": + return ItemArmor.TIER_CHAIN; + case "other": + return ItemArmor.TIER_OTHER; + case "gold": + return ItemArmor.TIER_GOLD; + case "iron": + return ItemArmor.TIER_IRON; + case "diamond": + return ItemArmor.TIER_DIAMOND; + case "netherite": + return ItemArmor.TIER_NETHERITE; + case "none": + return 0; + } + } + return 0; + } + + static boolean isTool(Element definition) { + String tool = definition.getAttribute("tool"); + if ("true".equals(tool)) { + return true; + } else if ("false".equals(tool)) { + return false; + } else { + return isTrue("axe", definition) || isTrue("pickaxe", definition) + || isTrue("shovel", definition) || isTrue("hoe", definition) + || isTrue("sword", definition); + } + } + + static boolean isArmor(Element definition) { + String tool = definition.getAttribute("armor"); + if ("true".equals(tool)) { + return true; + } else if ("false".equals(tool)) { + return false; + } else { + return isTrue("helmet", definition) || isTrue("chestplate", definition) + || isTrue("leggings", definition) || isTrue("boots", definition); + } + } + + static Stream createComparisonStream() { + return createItemStateStream() + .map(stateDefinition -> { + String id = stateDefinition.getAttribute("namespaced-id"); + String damage = stateDefinition.getAttribute("damage"); + if (!damage.isEmpty()) { + id = id + ":" + damage; + } + Item item = Item.fromString(id); + return Arguments.of(item, stateDefinition); + }); + } + + static void adjustEnchantability(Element element) { + if (element.hasAttribute("enchantability")) { + return; + } + int enchantability = getEnchantability(element); + if (enchantability > 0) { + element.setAttribute("enchantability", Integer.toString(enchantability)); + } + } + + static OptionalInt getInt(String name, Element element) { + String attr = element.getAttribute(name); + if (attr.isEmpty()) { + return OptionalInt.empty(); + } + return OptionalInt.of(Integer.parseInt(attr)); + } + + static boolean isTrue(String name, Element element) { + return is(name, "true", element); + } + + static boolean is(String name, String expected, Element element) { + return expected.equals(element.getAttribute(name)); + } + + static Stream createItemStateStream() { + return createItemDefinitionStream().flatMap(itemDefinition -> { + NodeList itemStates = itemDefinition.getElementsByTagName("item-state"); + if (itemStates.getLength() == 0) { + Element damageZero = createItemStateZero(itemDefinition); + adjustEnchantability(damageZero); + return Stream.of(damageZero); + } else { + //noinspection MismatchedQueryAndUpdateOfCollection + ElementList elements = new ElementList<>(itemStates, Element.class); + Stream stream = elements.stream(); + if (elements.stream().noneMatch(itemState-> "0".equals(itemState.getAttribute("damage")))) { + stream = Stream.concat(Stream.of(createItemStateZero(itemDefinition)), stream); + } + return stream + .map(itemState -> (Element) itemState.cloneNode(true)) + .peek(itemState -> copyUnsetAttributes(itemDefinition, itemState)) + .peek(BasicAttributesXmlTest::adjustEnchantability); + } + }); + } + + static Element createItemStateZero(Element itemDefinition) { + Element itemState = document.createElement("item-state"); + itemState.setAttribute("damage", "0"); + copyUnsetAttributes(itemDefinition, itemState); + return itemState; + } + + static void copyUnsetAttributes(Element from, Element to) { + NamedNodeMap attributes = from.getAttributes(); + for (int i = 0; i < attributes.getLength(); i++) { + Attr attr = (Attr) attributes.item(i); + if (attr.getNamespaceURI() != null) { + if (!to.hasAttributeNS(attr.getNamespaceURI(), attr.getLocalName())) { + to.setAttributeNode((Attr) attr.cloneNode(false)); + } + } else { + if (!to.hasAttribute(attr.getName())) { + to.setAttributeNode((Attr) attr.cloneNode(false)); + } + } + } + } + + static Stream createItemDefinitionStream() { + return new ElementList<>(document.getElementsByTagName("item"), Element.class).stream(); + } + + static int getEnchantability(Element element) { + if (isTrue("tool", element)) { + switch (element.getAttribute("tier")) { + case "wood": + case "netherite": + return 15; + case "stone": + return 5; + case "iron": + return 14; + case "gold": + return 22; + case "diamond": + return 10; + default: + return 1; + } + } + if (isTrue("armor", element)) { + switch (element.getAttribute("tier")) { + case "leather": + case "netherite": + return 15; + case "chain": + return 12; + case "iron": + case "turtle": + return 9; + case "gold": + return 25; + case "diamond": + return 10; + default: + return 1; + } + } + return 0; + } + + static class ElementList extends AbstractList implements RandomAccess { + final NodeList nodeList; + final Class eClass; + + ElementList(NodeList nodeList, Class eClass) { + this.nodeList = nodeList; + this.eClass = eClass; + } + + @Override + public E get(int index) { + return eClass.cast(nodeList.item(index)); + } + + @Override + public int size() { + return nodeList.getLength(); + } + + @Override + public Spliterator spliterator() { + return Spliterators.spliterator(this, ORDERED | DISTINCT | NONNULL | SIZED | SUBSIZED); + } + } + + @BeforeAll + static void loadBasicAttributesXml() throws IOException, ParserConfigurationException, SAXException { + try(InputStream is = Objects.requireNonNull(ItemTest.class.getClassLoader().getResourceAsStream("cn/nukkit/item/basicItemAttributes.xml")); + BufferedInputStream input = new BufferedInputStream(is); + InputStream dtdIS = Objects.requireNonNull(ItemTest.class.getClassLoader().getResourceAsStream("cn/nukkit/item/basicAttributes.dtd")); + BufferedInputStream dtdInput = new BufferedInputStream(dtdIS) + ) { + DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance(); + documentBuilderFactory.setValidating(true); + documentBuilderFactory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true); + DocumentBuilder documentBuilder = documentBuilderFactory.newDocumentBuilder(); + documentBuilder.setEntityResolver((publicId, systemId) -> { + if (systemId == null || !systemId.endsWith("basicAttributes.dtd")) { + return null; + } + return new InputSource(dtdInput); + }); + document = documentBuilder.parse(input); + } + } + + @AfterAll + static void unloadBasicAttributesXml() { + document = null; + } +} diff --git a/src/test/java/cn/nukkit/item/ItemArrowTest.java b/src/test/java/cn/nukkit/item/ItemArrowTest.java new file mode 100644 index 00000000000..a380e9b7b38 --- /dev/null +++ b/src/test/java/cn/nukkit/item/ItemArrowTest.java @@ -0,0 +1,38 @@ +package cn.nukkit.item; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.potion.Potion; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; + +/** + * @author joserobjr + * @since 2021-12-18 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class ItemArrowTest { + ItemArrow arrow; + + @BeforeEach + void setUp() { + arrow = new ItemArrow(); + } + + @Test + void getTippedArrowEffect() { + assertNull(arrow.getTippedArrowPotion()); + for (int damage = 1; damage <= 43; damage++) { + arrow.setDamage(damage); + Potion potion = Potion.getPotion(damage - 1); + assertEquals(potion, arrow.getTippedArrowPotion()); + } + } +} diff --git a/src/test/resources/cn/nukkit/item/basicAttributes.dtd b/src/test/resources/cn/nukkit/item/basicAttributes.dtd new file mode 100644 index 00000000000..56991f18848 --- /dev/null +++ b/src/test/resources/cn/nukkit/item/basicAttributes.dtd @@ -0,0 +1,66 @@ + + + + + + + + + diff --git a/src/test/resources/cn/nukkit/item/basicItemAttributes.xml b/src/test/resources/cn/nukkit/item/basicItemAttributes.xml new file mode 100644 index 00000000000..205edb26ab3 --- /dev/null +++ b/src/test/resources/cn/nukkit/item/basicItemAttributes.xml @@ -0,0 +1,613 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 87d21663a4197a17c9adfb74dcf48d1b96efea91 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 19 Dec 2021 16:54:47 -0300 Subject: [PATCH 323/394] Adds some test units and small fixes --- src/main/java/cn/nukkit/Server.java | 2 +- .../entity/projectile/EntityProjectile.java | 2 +- .../nukkit/event/block/AnvilDamageEvent.java | 10 ++-- src/main/java/cn/nukkit/item/ItemArrow.java | 25 +++++---- .../cn/nukkit/item/ItemBannerPattern.java | 2 +- src/main/java/cn/nukkit/item/ItemMap.java | 1 + src/main/java/cn/nukkit/item/ItemPotion.java | 33 +++++------ .../cn/nukkit/item/ItemPotionLingering.java | 7 ++- .../java/cn/nukkit/item/ItemPotionSplash.java | 15 ++++- .../projectile/EntityProjectileTest.java | 16 ++++++ .../event/block/AnvilDamageEventTest.java | 17 ++++++ .../nukkit/item/BasicAttributesXmlTest.java | 37 ++++++++++++- .../java/cn/nukkit/item/ItemArmorTest.java | 35 ++++++++++++ .../java/cn/nukkit/item/ItemArrowTest.java | 2 + .../java/cn/nukkit/item/ItemBoatTest.java | 55 +++++++++++++++++++ .../java/cn/nukkit/item/ItemPotionTest.java | 28 ++++++++++ .../java/cn/nukkit/level/LocationTest.java | 12 ++++ .../cn/nukkit/utils/BannerPatternTest.java | 43 +++++++++++++++ 18 files changed, 299 insertions(+), 43 deletions(-) create mode 100644 src/test/java/cn/nukkit/item/ItemArmorTest.java create mode 100644 src/test/java/cn/nukkit/item/ItemBoatTest.java create mode 100644 src/test/java/cn/nukkit/item/ItemPotionTest.java create mode 100644 src/test/java/cn/nukkit/utils/BannerPatternTest.java diff --git a/src/main/java/cn/nukkit/Server.java b/src/main/java/cn/nukkit/Server.java index d11b9e8cfac..f52bdc1ddcb 100644 --- a/src/main/java/cn/nukkit/Server.java +++ b/src/main/java/cn/nukkit/Server.java @@ -646,10 +646,10 @@ public Level remove(Object key) { Block.init(); Enchantment.init(); RuntimeItems.getRuntimeMapping(); + Potion.init(); Item.init(); EnumBiome.values(); //load class, this also registers biomes Effect.init(); - Potion.init(); Attribute.init(); DispenseBehaviorRegister.init(); GlobalBlockPalette.getOrCreateRuntimeId(0, 0); //Force it to load diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index de5b7684eda..27d0eb1bdb4 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -147,7 +147,7 @@ public boolean canCollideWith(Entity entity) { @Override public void saveNBT() { super.saveNBT(); - if (this.noAge) { + if (!this.noAge) { this.namedTag.putShort("Age", this.age); } } diff --git a/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java b/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java index 19d36803739..8f71ddde73a 100644 --- a/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java +++ b/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java @@ -122,8 +122,8 @@ public Block getNewState() { @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Unstable use of raw block state data", replaceWith = "getNewAnvilDamage or getNewBlockState") @Since("1.4.0.0-PN") public int getNewDamage() { - BlockState newState = getNewBlockState(); - return newState.getProperties().contains(BlockAnvil.DAMAGE)? newState.getIntValue(BlockAnvil.DAMAGE) : 0; + BlockState newBlockState = getNewBlockState(); + return newBlockState.getProperties().contains(BlockAnvil.DAMAGE)? newBlockState.getIntValue(BlockAnvil.DAMAGE) : 0; } @PowerNukkitOnly @@ -137,9 +137,9 @@ public void setNewBlockState(@Nonnull BlockState state) { replaceWith = "setNewBlockState example: setNewBlockState(BlockState.of(BlockID.ANVIL).withProperty(BlockAnvil.DAMAGE, AnvilDamage.VERY_DAMAGED))") @Since("1.4.0.0-PN") public void setNewDamage(int newDamage) { - BlockState newState = getNewBlockState(); - if (newState.getProperties().contains(BlockAnvil.DAMAGE)) { - this.setNewBlockState(newState.withProperty(BlockAnvil.DAMAGE, BlockAnvil.DAMAGE.getValueForMeta(newDamage))); + BlockState newBlockState = getNewBlockState(); + if (newBlockState.getProperties().contains(BlockAnvil.DAMAGE)) { + this.setNewBlockState(newBlockState.withProperty(BlockAnvil.DAMAGE, BlockAnvil.DAMAGE.getValueForMeta(newDamage))); } } diff --git a/src/main/java/cn/nukkit/item/ItemArrow.java b/src/main/java/cn/nukkit/item/ItemArrow.java index 6b2ed30f825..62a0a7c9c92 100644 --- a/src/main/java/cn/nukkit/item/ItemArrow.java +++ b/src/main/java/cn/nukkit/item/ItemArrow.java @@ -32,22 +32,25 @@ public void setDamage(Integer meta) { } private void updateName() { - final int damage = getDamage(); - switch (damage) { - case 0: - name = "Arrow"; - return; - case 1: + final int type = getDamage(); + if (type <= 0) { + name = "Arrow"; + return; + } + + final int potionId = type - 1; + switch (potionId) { + case Potion.WATER: name = "Arrow of Splashing"; return; - case 2: - case 3: - case 4: - case 5: + case Potion.MUNDANE: + case Potion.MUNDANE_II: + case Potion.THICK: + case Potion.AWKWARD: name = "Tipped Arrow"; return; default: - name = ItemPotion.buildName(damage - 1, "Arrow", false); + name = ItemPotion.buildName(potionId, "Arrow", false); } } diff --git a/src/main/java/cn/nukkit/item/ItemBannerPattern.java b/src/main/java/cn/nukkit/item/ItemBannerPattern.java index 5f8de11a6df..fc16930aae3 100644 --- a/src/main/java/cn/nukkit/item/ItemBannerPattern.java +++ b/src/main/java/cn/nukkit/item/ItemBannerPattern.java @@ -81,7 +81,7 @@ protected void updateName() { if (getId() != BANNER_PATTERN) { return; } - switch (super.meta % 7) { + switch (super.meta) { case PATTERN_CREEPER_CHARGE: name = "Creeper Charge Banner Pattern"; return; diff --git a/src/main/java/cn/nukkit/item/ItemMap.java b/src/main/java/cn/nukkit/item/ItemMap.java index 4553fc6c73a..d6f11085e76 100644 --- a/src/main/java/cn/nukkit/item/ItemMap.java +++ b/src/main/java/cn/nukkit/item/ItemMap.java @@ -54,6 +54,7 @@ private void updateName() { case 3: this.name = "Ocean Explorer Map"; break; case 4: this.name = "Woodland Explorer Map"; break; case 5: this.name = "Treasure Map"; break; + default: this.name = "Map"; break; } } diff --git a/src/main/java/cn/nukkit/item/ItemPotion.java b/src/main/java/cn/nukkit/item/ItemPotion.java index 88bbd2933ca..d5fa0440978 100644 --- a/src/main/java/cn/nukkit/item/ItemPotion.java +++ b/src/main/java/cn/nukkit/item/ItemPotion.java @@ -9,6 +9,7 @@ import cn.nukkit.utils.ServerException; import javax.annotation.Nullable; +import java.util.Objects; public class ItemPotion extends Item { @@ -70,40 +71,40 @@ public void setDamage(Integer meta) { } private void updateName() { - int damage = getDamage(); - if (damage == 0) { + int potionId = getDamage(); + if (potionId == Potion.WATER) { name = "Water Bottle"; } else { - name = buildName(damage, "Potion", true); + name = buildName(potionId, "Potion", true); } } - static String buildName(int damage, String type, boolean includeLevel) { - switch (damage) { - case 0: + static String buildName(int potionId, String type, boolean includeLevel) { + switch (potionId) { + case Potion.WATER: return "Water " + type; - case 1: - case 2: + case Potion.MUNDANE: + case Potion.MUNDANE_II: return "Mundane " + type; - case 3: + case Potion.THICK: return "Thick " + type; - case 4: + case Potion.AWKWARD: return "Awkward " + type; - case 37: - case 38: - case 39: { + case Potion.TURTLE_MASTER: + case Potion.TURTLE_MASTER_II: + case Potion.TURTLE_MASTER_LONG: { String name = type + " of the Turtle Master"; if (!includeLevel) { return name; } - Potion potion = getPotion(damage); - if (potion == null || potion.getLevel() <= 1) { + Potion potion = Objects.requireNonNull(getPotion(potionId)); + if (potion.getLevel() <= 1) { return name; } return name + " " + potion.getRomanLevel(); } default: { - Potion potion = getPotion(damage); + Potion potion = getPotion(potionId); String finalName = potion != null ? potion.getPotionTypeName() : ""; if (finalName.isEmpty()) { finalName = type; diff --git a/src/main/java/cn/nukkit/item/ItemPotionLingering.java b/src/main/java/cn/nukkit/item/ItemPotionLingering.java index 37e701d809d..c35520dda41 100644 --- a/src/main/java/cn/nukkit/item/ItemPotionLingering.java +++ b/src/main/java/cn/nukkit/item/ItemPotionLingering.java @@ -2,6 +2,7 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.nbt.tag.CompoundTag; +import cn.nukkit.potion.Potion; public class ItemPotionLingering extends ProjectileItem { @@ -25,11 +26,11 @@ public void setDamage(Integer meta) { } private void updateName() { - int damage = getDamage(); - if (damage == 0) { + int potionId = getDamage(); + if (potionId == Potion.WATER) { name = "Lingering Water Bottle"; } else { - name = ItemPotion.buildName(damage, "Lingering Potion", true); + name = ItemPotion.buildName(potionId, "Lingering Potion", true); } } diff --git a/src/main/java/cn/nukkit/item/ItemPotionSplash.java b/src/main/java/cn/nukkit/item/ItemPotionSplash.java index 923c2abf9a3..7bfe8ded2e0 100644 --- a/src/main/java/cn/nukkit/item/ItemPotionSplash.java +++ b/src/main/java/cn/nukkit/item/ItemPotionSplash.java @@ -1,6 +1,9 @@ package cn.nukkit.item; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.nbt.tag.CompoundTag; +import cn.nukkit.potion.Potion; /** * @author xtypr @@ -8,6 +11,12 @@ */ public class ItemPotionSplash extends ProjectileItem { + @PowerNukkitOnly + @Since("FUTURE") + public ItemPotionSplash() { + this(0, 1); + } + public ItemPotionSplash(Integer meta) { this(meta, 1); } @@ -24,11 +33,11 @@ public void setDamage(Integer meta) { } private void updateName() { - int damage = getDamage(); - if (damage == 0) { + int potionId = getDamage(); + if (potionId == Potion.WATER) { name = "Splash Water Bottle"; } else { - name = ItemPotion.buildName(damage, "Splash Potion", true); + name = ItemPotion.buildName(potionId, "Splash Potion", true); } } diff --git a/src/test/java/cn/nukkit/entity/projectile/EntityProjectileTest.java b/src/test/java/cn/nukkit/entity/projectile/EntityProjectileTest.java index c54673c58e9..36e43809b61 100644 --- a/src/test/java/cn/nukkit/entity/projectile/EntityProjectileTest.java +++ b/src/test/java/cn/nukkit/entity/projectile/EntityProjectileTest.java @@ -68,10 +68,26 @@ void fire() { void noAge() { assertTrue(projectile.getHasAge()); assertTrue(projectile.hasAge()); + projectile.setAge(false); + projectile.namedTag.remove("Age"); + projectile.saveNBT(); assertFalse(projectile.getHasAge()); assertFalse(projectile.hasAge()); + assertFalse(projectile.namedTag.contains("Age")); + projectile.setHasAge(true); + projectile.namedTag.remove("Age"); + projectile.saveNBT(); + assertTrue(projectile.getHasAge()); + assertTrue(projectile.hasAge()); + assertTrue(projectile.namedTag.contains("Age")); + + projectile.setHasAge(false); + assertFalse(projectile.getHasAge()); + assertFalse(projectile.hasAge()); + + projectile.setAge(true); assertTrue(projectile.getHasAge()); assertTrue(projectile.hasAge()); } diff --git a/src/test/java/cn/nukkit/event/block/AnvilDamageEventTest.java b/src/test/java/cn/nukkit/event/block/AnvilDamageEventTest.java index ca86fc7018d..5195d9d4501 100644 --- a/src/test/java/cn/nukkit/event/block/AnvilDamageEventTest.java +++ b/src/test/java/cn/nukkit/event/block/AnvilDamageEventTest.java @@ -168,4 +168,21 @@ void getCause() { void getPlayer() { assertSame(player, event.getPlayer()); } + + @SuppressWarnings("deprecation") + @Test + void nonAnvil() { + level.setBlockStateAt(1, 2, 3, BlockState.of(BlockID.STONE)); + Block block = level.getBlock(1, 2, 3); + event = new AnvilDamageEvent(block, BlockState.of(BlockID.GLASS), null, null, AnvilDamageEvent.DamageCause.FALL); + assertEquals(0, event.getOldDamage()); + assertEquals(0, event.getNewDamage()); + assertNull(event.getOldAnvilDamage()); + + event.setNewDamage(1); + assertEquals(0, event.getNewDamage()); + assertNull(event.getOldAnvilDamage()); + + assertEquals(AnvilDamageEvent.DamageCause.FALL, event.getCause()); + } } diff --git a/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java b/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java index 4639b9a140b..621fa39662c 100644 --- a/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java +++ b/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java @@ -20,11 +20,13 @@ import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream; +import java.lang.reflect.Constructor; import java.util.*; import java.util.stream.Stream; import static java.util.Spliterator.*; import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.fail; /** * @author joserobjr @@ -45,10 +47,41 @@ void testAttribute(Item item, Element definition) { } catch (IllegalArgumentException e) { throw new IllegalArgumentException("item.getNamespaceId() failed for " + definition.getAttribute("namespaced-id") + " with damage " + definition.getAttribute("damage"), e); } - String prefix = namespaceId + (item.getDamage() != 0? ":" + item.getDamage() : "") + " -> " + item.getClass().getSimpleName() + " -> "; + final int damage = item.getDamage(); + String prefix = namespaceId + (damage != 0? ":" + damage : "") + " -> " + item.getClass().getSimpleName() + " -> "; assertEquals(definition.getAttribute("namespaced-id"), namespaceId, ()-> prefix + "Wrong namespaced-id"); getInt("numeric-id", definition).ifPresent(id-> assertEquals(id, item.getId(), ()-> prefix + "Wrong numeric-id")); - assertEquals(definition.getAttribute("name"), item.getName(), ()-> prefix + "Wrong name"); + assertEquals(definition.getAttribute("name"), item.getName(), ()-> prefix + "Wrong name test method 1"); + final int id = item.getId(); + Item item2 = Item.get(id, damage); + assertEquals(definition.getAttribute("name"), item2.getName(), ()-> prefix + "Wrong name test method 2"); + if (id >= 0 && id < Item.list.length) { + try { + Constructor constructor = ((Class) Item.list[id]).getDeclaredConstructor(Integer.class); + item2 = (Item) constructor.newInstance(damage); + assertEquals(definition.getAttribute("name"), item2.getName(), ()-> prefix + "Wrong name test method 3"); + } catch (ReflectiveOperationException e) { + fail(prefix + "Missing constructor (Integer)", e); + } + + try { + Constructor constructor = ((Class) Item.list[id]).getDeclaredConstructor(Integer.class, Integer.TYPE); + item2 = (Item) constructor.newInstance(damage, 1); + assertEquals(definition.getAttribute("name"), item2.getName(), ()-> prefix + "Wrong name test method 4"); + } catch (ReflectiveOperationException e) { + fail(prefix + "Missing constructor (Integer, int)", e); + } + + if (damage == 0) { + try { + Constructor constructor = ((Class) Item.list[id]).getDeclaredConstructor(); + item2 = (Item) constructor.newInstance(); + assertEquals(definition.getAttribute("name"), item2.getName(), ()-> prefix + "Wrong name test method 5"); + } catch (ReflectiveOperationException e) { + fail(prefix + "Missing constructor ()", e); + } + } + } assertEquals(getInt("stack-size", definition).orElse(64), item.getMaxStackSize(), ()-> prefix + "Wrong stack-size"); assertEquals(getInt("durability", definition).orElse(-1), item.getMaxDurability(), ()-> prefix + "Wrong durability"); assertEquals(getInt("fuel-time", definition), Optional.ofNullable(item.getFuelTime()).map(OptionalInt::of).orElseGet(OptionalInt::empty), ()-> prefix + "Wrong fuel-time"); diff --git a/src/test/java/cn/nukkit/item/ItemArmorTest.java b/src/test/java/cn/nukkit/item/ItemArmorTest.java new file mode 100644 index 00000000000..fd33ed89cb5 --- /dev/null +++ b/src/test/java/cn/nukkit/item/ItemArmorTest.java @@ -0,0 +1,35 @@ +package cn.nukkit.item; + +import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.level.Sound; +import cn.nukkit.math.Vector3; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.ArgumentMatchers.same; +import static org.mockito.Mockito.verify; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class ItemArmorTest { + @MockPlayer + Player player; + + @Test + void onClickAir() { + ItemArmor armor = (ItemArmor) Item.get(ItemID.IRON_CHESTPLATE); + player.getInventory().setItemInHand(armor); + armor.onClickAir(player, new Vector3()); + verify(player.getLevel()).addSound(same(player), eq(Sound.ARMOR_EQUIP_IRON)); + } +} diff --git a/src/test/java/cn/nukkit/item/ItemArrowTest.java b/src/test/java/cn/nukkit/item/ItemArrowTest.java index a380e9b7b38..5e4f663ae77 100644 --- a/src/test/java/cn/nukkit/item/ItemArrowTest.java +++ b/src/test/java/cn/nukkit/item/ItemArrowTest.java @@ -34,5 +34,7 @@ void getTippedArrowEffect() { Potion potion = Potion.getPotion(damage - 1); assertEquals(potion, arrow.getTippedArrowPotion()); } + arrow.setDamage(100); + assertNull(arrow.getTippedArrowPotion()); } } diff --git a/src/test/java/cn/nukkit/item/ItemBoatTest.java b/src/test/java/cn/nukkit/item/ItemBoatTest.java new file mode 100644 index 00000000000..0e41ee87fd4 --- /dev/null +++ b/src/test/java/cn/nukkit/item/ItemBoatTest.java @@ -0,0 +1,55 @@ +package cn.nukkit.item; + +import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.block.Block; +import cn.nukkit.block.BlockID; +import cn.nukkit.entity.item.EntityBoat; +import cn.nukkit.level.Level; +import cn.nukkit.math.BlockFace; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import java.util.Arrays; +import java.util.Optional; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class ItemBoatTest { + ItemBoat item; + + @MockLevel + Level level; + + @MockPlayer(position = {0, 66, 0}) + Player player; + + @Test + void defaultName() { + item = new ItemBoat(1000); + assertEquals("Boat", item.getName()); + } + + @Test + void onActivate() { + level.setBlock(0, 64 , 0, Block.get(BlockID.STILL_WATER), true, false); + Block water = level.getBlock(0, 64, 0); + item = new ItemBoat(2); + item.onActivate(level, player, water.up(), water, BlockFace.UP, 0.5, 0.5, 0.5); + final Optional boat = Arrays.stream(level.getEntities()).filter(EntityBoat.class::isInstance).map(EntityBoat.class::cast).findFirst(); + assertTrue(boat.isPresent(), "The boat did not spawn"); + assertEquals(2, boat.get().namedTag.getInt("Variant")); + } +} diff --git a/src/test/java/cn/nukkit/item/ItemPotionTest.java b/src/test/java/cn/nukkit/item/ItemPotionTest.java new file mode 100644 index 00000000000..eae86a66ba9 --- /dev/null +++ b/src/test/java/cn/nukkit/item/ItemPotionTest.java @@ -0,0 +1,28 @@ +package cn.nukkit.item; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class ItemPotionTest { + ItemPotion item; + + @Test + void defaultName() { + item = new ItemPotion(1000); + assertEquals("Potion", item.getName()); + assertNull(item.getPotion()); + } +} diff --git a/src/test/java/cn/nukkit/level/LocationTest.java b/src/test/java/cn/nukkit/level/LocationTest.java index df4260c327a..9b091100ad9 100644 --- a/src/test/java/cn/nukkit/level/LocationTest.java +++ b/src/test/java/cn/nukkit/level/LocationTest.java @@ -61,6 +61,18 @@ void constructorYawPitchLevel() { assertEquals(0, location.headYaw); } + @Test + void constructorYawPitchHeadYaw() { + Location location = new Location(X, Y, Z, YAW, PITCH, HEAD_YAW); + assertEquals(X, location.x); + assertEquals(Y, location.y); + assertEquals(Z, location.z); + assertNull(location.level); + assertEquals(YAW, location.yaw); + assertEquals(PITCH, location.pitch); + assertEquals(HEAD_YAW, location.headYaw); + } + @Test void constructorYawPitchHeadYawLevel() { Location location = new Location(X, Y, Z, YAW, PITCH, HEAD_YAW, level); diff --git a/src/test/java/cn/nukkit/utils/BannerPatternTest.java b/src/test/java/cn/nukkit/utils/BannerPatternTest.java new file mode 100644 index 00000000000..27e2b4c92a8 --- /dev/null +++ b/src/test/java/cn/nukkit/utils/BannerPatternTest.java @@ -0,0 +1,43 @@ +package cn.nukkit.utils; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.item.ItemBannerPattern; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class BannerPatternTest { + ItemBannerPattern item; + @Test + void defaultName() { + item = new ItemBannerPattern(1000); + assertEquals("Banner Pattern", item.getName()); + } + + @Test + void types() { + item = new ItemBannerPattern(); + assertEquals(BannerPattern.Type.PATTERN_CREEPER, setAndReturnType(ItemBannerPattern.PATTERN_CREEPER_CHARGE)); + assertEquals(BannerPattern.Type.PATTERN_SKULL, setAndReturnType(ItemBannerPattern.PATTERN_SKULL_CHARGE)); + assertEquals(BannerPattern.Type.PATTERN_FLOWER, setAndReturnType(ItemBannerPattern.PATTERN_FLOWER_CHARGE)); + assertEquals(BannerPattern.Type.PATTERN_MOJANG, setAndReturnType(ItemBannerPattern.PATTERN_THING)); + assertEquals(BannerPattern.Type.PATTERN_BRICK, setAndReturnType(ItemBannerPattern.PATTERN_FIELD_MASONED)); + assertEquals(BannerPattern.Type.PATTERN_CURLY_BORDER, setAndReturnType(ItemBannerPattern.PATTERN_BORDURE_INDENTED)); + assertEquals(BannerPattern.Type.PATTERN_SNOUT, setAndReturnType(ItemBannerPattern.PATTERN_SNOUT)); + } + + BannerPattern.Type setAndReturnType(int damage) { + item.setDamage(damage); + return item.getPatternType(); + } +} From 63dca2fad63fd885145626a546df79c3552f4251 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 19 Dec 2021 17:51:38 -0300 Subject: [PATCH 324/394] Adds more test units --- src/main/java/cn/nukkit/potion/Potion.java | 11 +++- src/test/java/cn/nukkit/block/BlockTest.java | 46 +++++++++++++++- .../nukkit/event/block/BellRingEventTest.java | 52 +++++++++++++++++++ .../java/cn/nukkit/potion/PotionTest.java | 31 +++++++++++ 4 files changed, 137 insertions(+), 3 deletions(-) create mode 100644 src/test/java/cn/nukkit/event/block/BellRingEventTest.java create mode 100644 src/test/java/cn/nukkit/potion/PotionTest.java diff --git a/src/main/java/cn/nukkit/potion/Potion.java b/src/main/java/cn/nukkit/potion/Potion.java index 8d298aec772..df3b9629183 100644 --- a/src/main/java/cn/nukkit/potion/Potion.java +++ b/src/main/java/cn/nukkit/potion/Potion.java @@ -454,7 +454,7 @@ public String getPotionTypeName() { case MUNDANE_II: return "Mundane"; case THICK: - return "thick"; + return "Thick"; case AWKWARD: return "Awkward"; case NIGHT_VISION_LONG: @@ -523,7 +523,14 @@ public String getName() { String name = getPotionTypeName(); StringBuilder finalName = new StringBuilder(255).append("Potion"); if (!name.isEmpty()) { - finalName.append(" of ").append(name); + int id = getId(); + if (id >= TURTLE_MASTER && id <= TURTLE_MASTER_II) { + finalName.append(" of the ").append(name); + } else if (id <= AWKWARD) { + finalName.insert(0, name + " "); + } else { + finalName.append(" of ").append(name); + } } int currentLevel = getLevel(); diff --git a/src/test/java/cn/nukkit/block/BlockTest.java b/src/test/java/cn/nukkit/block/BlockTest.java index bb3e80d78db..c112126944f 100644 --- a/src/test/java/cn/nukkit/block/BlockTest.java +++ b/src/test/java/cn/nukkit/block/BlockTest.java @@ -444,7 +444,51 @@ private MutableBlockState getDirectMutableState() { private MutableBlockState getDirectMutableState(Block b) { return (MutableBlockState) MUTABLE_STATE.get(b); } - + + @Test + void isSolid() { + assertTrue(Block.isSolid(-1)); + assertTrue(Block.isSolid(100000000)); + assertTrue(Block.isSolid(BlockID.STONE)); + assertFalse(Block.isSolid(BlockID.DOOR_BLOCK)); + } + + @Test + void diffusesSkyLight() { + assertFalse(Block.diffusesSkyLight(-1)); + assertFalse(Block.diffusesSkyLight(100000000)); + assertFalse(Block.diffusesSkyLight(BlockID.STONE)); + assertTrue(Block.diffusesSkyLight(BlockID.LEAVES)); + } + + @Test + void getHardness() { + assertEquals(15, Block.getHardness(-1)); + assertEquals(15, Block.getHardness(100000000)); + assertEquals(1.5, Block.getHardness(BlockID.STONE)); + } + + @Test + void getLightLevel() { + assertEquals(0, Block.getLightLevel(-1)); + assertEquals(0, Block.getLightLevel(100000000)); + assertEquals(14, Block.getLightLevel(BlockID.TORCH)); + } + + @Test + void getLightFilter() { + assertEquals(15, Block.getLightLevel(-1)); + assertEquals(15, Block.getLightLevel(100000000)); + assertEquals(1, Block.getLightLevel(BlockID.GLASS)); + } + + @Test + void isTransparent() { + assertFalse(Block.isTransparent(-1)); + assertFalse(Block.isTransparent(100000000)); + assertTrue(Block.isTransparent(BlockID.GLASS)); + } + public static class BlockTestBlock extends BlockMeta { public static BlockProperties PROPERTIES = new BlockProperties(FACING_DIRECTION, TOGGLE, REDSTONE_SIGNAL, HUGE); diff --git a/src/test/java/cn/nukkit/event/block/BellRingEventTest.java b/src/test/java/cn/nukkit/event/block/BellRingEventTest.java new file mode 100644 index 00000000000..ffaf35df7eb --- /dev/null +++ b/src/test/java/cn/nukkit/event/block/BellRingEventTest.java @@ -0,0 +1,52 @@ +package cn.nukkit.event.block; + +import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.block.BlockBell; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockproperty.value.AttachmentType; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.level.Level; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertSame; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class BellRingEventTest { + @MockLevel + Level level; + + @MockPlayer + Player player; + + BellRingEvent event; + BlockBell bell; + + @BeforeEach + void setUp() { + level.setBlockStateAt(0, 1, 0, BlockState.of(BlockID.STONE)); + level.setBlockStateAt(0, 2, 0, BlockState.of(BlockID.BELL).withProperty(BlockBell.ATTACHMENT_TYPE, AttachmentType.STANDING)); + bell = (BlockBell) level.getBlock(0, 2, 0); + } + + @Test + void construction() { + event = new BellRingEvent(bell, BellRingEvent.RingCause.HUMAN_INTERACTION, player); + assertEquals(bell, event.getBlock()); + assertSame(player, event.getEntity()); + assertEquals(BellRingEvent.RingCause.HUMAN_INTERACTION, event.getCause()); + } +} diff --git a/src/test/java/cn/nukkit/potion/PotionTest.java b/src/test/java/cn/nukkit/potion/PotionTest.java new file mode 100644 index 00000000000..5c26c747aad --- /dev/null +++ b/src/test/java/cn/nukkit/potion/PotionTest.java @@ -0,0 +1,31 @@ +package cn.nukkit.potion; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class PotionTest { + @Test + void names() { + assertEquals("Water Potion", Potion.getPotion(Potion.WATER).getName()); + assertEquals("Mundane Potion", Potion.getPotion(Potion.MUNDANE).getName()); + assertEquals("Mundane Potion II", Potion.getPotion(Potion.MUNDANE_II).getName()); + assertEquals("Thick Potion", Potion.getPotion(Potion.THICK).getName()); + assertEquals("Awkward Potion", Potion.getPotion(Potion.AWKWARD).getName()); + assertEquals("Potion", new Potion(100000).getName()); + assertEquals("Potion", new Potion(100000).getName()); + assertEquals("Potion of the Turtle Master II", Potion.getPotion(Potion.TURTLE_MASTER_II).getName()); + assertEquals("Potion of Slowness IV", Potion.getPotion(Potion.SLOWNESS_IV).getName()); + } +} From 36e72d330174f9f28dda90cfaf614d92f67d2ee1 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 19 Dec 2021 17:58:56 -0300 Subject: [PATCH 325/394] Fixes failed tests --- src/test/java/cn/nukkit/block/BlockTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/test/java/cn/nukkit/block/BlockTest.java b/src/test/java/cn/nukkit/block/BlockTest.java index c112126944f..a221d9b1ab8 100644 --- a/src/test/java/cn/nukkit/block/BlockTest.java +++ b/src/test/java/cn/nukkit/block/BlockTest.java @@ -463,8 +463,8 @@ void diffusesSkyLight() { @Test void getHardness() { - assertEquals(15, Block.getHardness(-1)); - assertEquals(15, Block.getHardness(100000000)); + assertEquals(Double.MAX_VALUE, Block.getHardness(-1)); + assertEquals(Double.MAX_VALUE, Block.getHardness(100000000)); assertEquals(1.5, Block.getHardness(BlockID.STONE)); } @@ -477,9 +477,9 @@ void getLightLevel() { @Test void getLightFilter() { - assertEquals(15, Block.getLightLevel(-1)); - assertEquals(15, Block.getLightLevel(100000000)); - assertEquals(1, Block.getLightLevel(BlockID.GLASS)); + assertEquals(15, Block.getLightFilter(-1)); + assertEquals(15, Block.getLightFilter(100000000)); + assertEquals(1, Block.getLightFilter(BlockID.GLASS)); } @Test From bec55c4a0a78eb2942949266a81a6afc39c1f091 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 19 Dec 2021 18:48:48 -0300 Subject: [PATCH 326/394] Creates more test units --- .../cn/nukkit/item/randomitem/Fishing.java | 11 ++- .../java/cn/nukkit/math/BlockVector3.java | 8 +-- src/main/java/cn/nukkit/math/Vector3.java | 8 +-- src/main/java/cn/nukkit/math/Vector3f.java | 8 +-- .../event/inventory/EnchantItemEventTest.java | 72 +++++++++++++++++++ .../transaction/EnchantTransactionTest.java | 47 ++++++++++++ .../nukkit/item/randomitem/FishingTest.java | 36 ++++++++++ .../java/cn/nukkit/math/BlockVector3Test.java | 30 ++++++++ src/test/java/cn/nukkit/math/Vector3Test.java | 30 ++++++++ .../java/cn/nukkit/math/Vector3fTest.java | 30 ++++++++ 10 files changed, 259 insertions(+), 21 deletions(-) create mode 100644 src/test/java/cn/nukkit/event/inventory/EnchantItemEventTest.java create mode 100644 src/test/java/cn/nukkit/inventory/transaction/EnchantTransactionTest.java create mode 100644 src/test/java/cn/nukkit/item/randomitem/FishingTest.java create mode 100644 src/test/java/cn/nukkit/math/BlockVector3Test.java create mode 100644 src/test/java/cn/nukkit/math/Vector3Test.java create mode 100644 src/test/java/cn/nukkit/math/Vector3fTest.java diff --git a/src/main/java/cn/nukkit/item/randomitem/Fishing.java b/src/main/java/cn/nukkit/item/randomitem/Fishing.java index 075ae6850f9..7a75b762d7b 100644 --- a/src/main/java/cn/nukkit/item/randomitem/Fishing.java +++ b/src/main/java/cn/nukkit/item/randomitem/Fishing.java @@ -46,11 +46,8 @@ public static Item getFishingResult(Item rod) { int fortuneLevel = 0; int lureLevel = 0; if (rod != null) { - if (rod.getEnchantment(Enchantment.ID_FORTUNE_FISHING) != null) { - fortuneLevel = rod.getEnchantment(Enchantment.ID_FORTUNE_FISHING).getLevel(); - } else if (rod.getEnchantment(Enchantment.ID_LURE) != null) { - lureLevel = rod.getEnchantment(Enchantment.ID_LURE).getLevel(); - } + fortuneLevel = rod.getEnchantmentLevel(Enchantment.ID_FORTUNE_FISHING); + lureLevel = rod.getEnchantmentLevel(Enchantment.ID_LURE); } return getFishingResult(fortuneLevel, lureLevel); } @@ -63,7 +60,9 @@ public static Item getFishingResult(int fortuneLevel, int lureLevel) { putSelector(TREASURES, treasureChance); putSelector(JUNKS, junkChance); Object result = selectFrom(ROOT_FISHING); - if (result instanceof Item) return (Item) result; + if (result instanceof Item) { + return (Item) result; + } return null; } } diff --git a/src/main/java/cn/nukkit/math/BlockVector3.java b/src/main/java/cn/nukkit/math/BlockVector3.java index b35e5a8d605..baeac624e02 100644 --- a/src/main/java/cn/nukkit/math/BlockVector3.java +++ b/src/main/java/cn/nukkit/math/BlockVector3.java @@ -2,6 +2,7 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import lombok.SneakyThrows; public class BlockVector3 implements Cloneable { public int x; @@ -275,13 +276,10 @@ public String toString() { return "BlockPosition(level=" + ",x=" + this.x + ",y=" + this.y + ",z=" + this.z + ")"; } + @SneakyThrows @Override public BlockVector3 clone() { - try { - return (BlockVector3) super.clone(); - } catch (CloneNotSupportedException e) { - return null; - } + return (BlockVector3) super.clone(); } public Vector3 asVector3() { diff --git a/src/main/java/cn/nukkit/math/Vector3.java b/src/main/java/cn/nukkit/math/Vector3.java index 580f2f6a5ea..1e32bc03c94 100644 --- a/src/main/java/cn/nukkit/math/Vector3.java +++ b/src/main/java/cn/nukkit/math/Vector3.java @@ -3,6 +3,7 @@ import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import lombok.SneakyThrows; import javax.annotation.Nonnull; import javax.annotation.Nullable; @@ -477,13 +478,10 @@ public int rawHashCode() { return super.hashCode(); } + @SneakyThrows @Override public Vector3 clone() { - try { - return (Vector3) super.clone(); - } catch (CloneNotSupportedException e) { - return null; - } + return (Vector3) super.clone(); } public Vector3f asVector3f() { diff --git a/src/main/java/cn/nukkit/math/Vector3f.java b/src/main/java/cn/nukkit/math/Vector3f.java index 0c5a35b3cca..a2f4df1910c 100644 --- a/src/main/java/cn/nukkit/math/Vector3f.java +++ b/src/main/java/cn/nukkit/math/Vector3f.java @@ -2,6 +2,7 @@ import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; +import lombok.SneakyThrows; public class Vector3f implements Cloneable { public static final int SIDE_DOWN = 0; @@ -389,13 +390,10 @@ public int rawHashCode() { return super.hashCode(); } + @SneakyThrows @Override public Vector3f clone() { - try { - return (Vector3f) super.clone(); - } catch (CloneNotSupportedException e) { - return null; - } + return (Vector3f) super.clone(); } public Vector3 asVector3() { diff --git a/src/test/java/cn/nukkit/event/inventory/EnchantItemEventTest.java b/src/test/java/cn/nukkit/event/inventory/EnchantItemEventTest.java new file mode 100644 index 00000000000..ee6b404abc9 --- /dev/null +++ b/src/test/java/cn/nukkit/event/inventory/EnchantItemEventTest.java @@ -0,0 +1,72 @@ +package cn.nukkit.event.inventory; + +import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.inventory.EnchantInventory; +import cn.nukkit.item.Item; +import cn.nukkit.item.ItemID; +import cn.nukkit.item.MinecraftItemID; +import cn.nukkit.item.enchantment.Enchantment; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.Mock; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class EnchantItemEventTest { + @Mock + EnchantInventory inventory; + + @MockPlayer + Player player; + + EnchantItemEvent event; + + @Test + void construction() { + assertNotNull(EnchantItemEvent.getHandlers()); + + Item before = Item.get(ItemID.IRON_SWORD); + Item after = before.clone(); + after.addEnchantment(Enchantment.getEnchantment(Enchantment.ID_DAMAGE_SMITE)); + event = new EnchantItemEvent(inventory, before, after, 2, player); + + assertSame(before, event.getOldItem()); + assertSame(after, event.getNewItem()); + assertEquals(2, event.getXpCost()); + assertSame(player, event.getEnchanter()); + } + + @Test + void setters() { + Item before = Item.get(ItemID.IRON_SWORD); + Item after = before.clone(); + after.addEnchantment(Enchantment.getEnchantment(Enchantment.ID_DAMAGE_SMITE)); + event = new EnchantItemEvent(inventory, before, after, 2, null); + assertNull(event.getEnchanter()); + + before = MinecraftItemID.IRON_AXE.get(1); + after = before.clone(); + after.addEnchantment(Enchantment.getEnchantment(Enchantment.ID_DAMAGE_SMITE)); + + event.setOldItem(before); + event.setNewItem(after); + event.setXpCost(3); + event.setEnchanter(player); + + assertSame(before, event.getOldItem()); + assertSame(after, event.getNewItem()); + assertEquals(3, event.getXpCost()); + assertSame(player, event.getEnchanter()); + } +} diff --git a/src/test/java/cn/nukkit/inventory/transaction/EnchantTransactionTest.java b/src/test/java/cn/nukkit/inventory/transaction/EnchantTransactionTest.java new file mode 100644 index 00000000000..1e537b4723b --- /dev/null +++ b/src/test/java/cn/nukkit/inventory/transaction/EnchantTransactionTest.java @@ -0,0 +1,47 @@ +package cn.nukkit.inventory.transaction; + +import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.item.Item; +import cn.nukkit.item.ItemID; +import cn.nukkit.item.enchantment.Enchantment; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import java.util.ArrayList; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertSame; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class EnchantTransactionTest { + @MockPlayer + Player player; + + EnchantTransaction transaction; + + @Test + void getterSetter() { + transaction = new EnchantTransaction(player, new ArrayList<>()); + Item input = Item.get(ItemID.IRON_SWORD); + transaction.setInputItem(input); + assertSame(input, transaction.getInputItem()); + + Item output = input.clone(); + output.addEnchantment(Enchantment.getEnchantment(Enchantment.ID_DAMAGE_SMITE)); + transaction.setOutputItem(output); + assertSame(output, transaction.getOutputItem()); + + transaction.setCost(2); + assertEquals(2, transaction.getCost()); + } +} diff --git a/src/test/java/cn/nukkit/item/randomitem/FishingTest.java b/src/test/java/cn/nukkit/item/randomitem/FishingTest.java new file mode 100644 index 00000000000..8dcb04096b8 --- /dev/null +++ b/src/test/java/cn/nukkit/item/randomitem/FishingTest.java @@ -0,0 +1,36 @@ +package cn.nukkit.item.randomitem; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.item.Item; +import cn.nukkit.item.ItemID; +import cn.nukkit.item.enchantment.Enchantment; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertNotNull; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class FishingTest { + + @Test + void getFishingResult() { + assertNotNull(Fishing.getFishingResult(null)); + + Item fishingRod = Item.get(ItemID.FISHING_ROD); + assertNotNull(Fishing.getFishingResult(fishingRod)); + + fishingRod.addEnchantment(Enchantment.getEnchantment(Enchantment.ID_LURE)); + assertNotNull(Fishing.getFishingResult(fishingRod)); + + fishingRod.addEnchantment(Enchantment.getEnchantment(Enchantment.ID_FORTUNE_FISHING)); + assertNotNull(Fishing.getFishingResult(fishingRod)); + } +} diff --git a/src/test/java/cn/nukkit/math/BlockVector3Test.java b/src/test/java/cn/nukkit/math/BlockVector3Test.java new file mode 100644 index 00000000000..d17f95ece52 --- /dev/null +++ b/src/test/java/cn/nukkit/math/BlockVector3Test.java @@ -0,0 +1,30 @@ +package cn.nukkit.math; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotSame; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +class BlockVector3Test { + BlockVector3 vector3; + @Test + void setGet() { + vector3 = new BlockVector3(); + vector3.setX(1); + vector3.setY(2); + vector3.setZ(3); + assertEquals(1, vector3.getX()); + assertEquals(2, vector3.getY()); + assertEquals(3, vector3.getZ()); + assertNotSame(vector3, vector3.clone()); + assertEquals(vector3, vector3.clone()); + } +} diff --git a/src/test/java/cn/nukkit/math/Vector3Test.java b/src/test/java/cn/nukkit/math/Vector3Test.java new file mode 100644 index 00000000000..9ed88fdf262 --- /dev/null +++ b/src/test/java/cn/nukkit/math/Vector3Test.java @@ -0,0 +1,30 @@ +package cn.nukkit.math; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotSame; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +class Vector3Test { + Vector3 vector3; + @Test + void setGet() { + vector3 = new Vector3(); + vector3.setX(1); + vector3.setY(2); + vector3.setZ(3); + assertEquals(1, vector3.getX()); + assertEquals(2, vector3.getY()); + assertEquals(3, vector3.getZ()); + assertNotSame(vector3, vector3.clone()); + assertEquals(vector3, vector3.clone()); + } +} diff --git a/src/test/java/cn/nukkit/math/Vector3fTest.java b/src/test/java/cn/nukkit/math/Vector3fTest.java new file mode 100644 index 00000000000..5d4d1d2ec4b --- /dev/null +++ b/src/test/java/cn/nukkit/math/Vector3fTest.java @@ -0,0 +1,30 @@ +package cn.nukkit.math; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotSame; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +class Vector3fTest { + Vector3f vector3; + @Test + void setGet() { + vector3 = new Vector3f(); + vector3.setX(1); + vector3.setY(2); + vector3.setZ(3); + assertEquals(1, vector3.getX()); + assertEquals(2, vector3.getY()); + assertEquals(3, vector3.getZ()); + assertNotSame(vector3, vector3.clone()); + assertEquals(vector3, vector3.clone()); + } +} From 4504c33b0a77b0f98292b41fe47f9d9bb3b50b80 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 19 Dec 2021 20:32:09 -0300 Subject: [PATCH 327/394] More tests and small fixes --- src/main/java/cn/nukkit/Player.java | 1 - src/main/java/cn/nukkit/block/Block.java | 10 +- src/main/java/cn/nukkit/entity/Entity.java | 10 +- .../nukkit/entity/item/EntityFishingHook.java | 1 + .../entity/projectile/EntityProjectile.java | 4 +- .../projectile/EntityThrownTrident.java | 15 +- .../entity/EntityDamageByEntityEvent.java | 5 + .../action/NoOpIventoryAction.java | 4 +- src/main/java/cn/nukkit/item/Item.java | 6 + src/main/java/cn/nukkit/item/ItemTrident.java | 1 + .../java/cn/nukkit/entity/EntityTest.java | 145 +++++++++++++++++- 11 files changed, 179 insertions(+), 23 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index c7168e0c31f..69754a44b6c 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -3911,7 +3911,6 @@ public void onCompletion(Server server) { } EntityDamageByEntityEvent entityDamageByEntityEvent = new EntityDamageByEntityEvent(this, target, DamageCause.ENTITY_ATTACK, damage, knockBack, enchantments); - entityDamageByEntityEvent.setSideEffects(item.getAttackSideEffects(this, target)); if (this.isSpectator()) entityDamageByEntityEvent.setCancelled(); if ((target instanceof Player) && !this.level.getGameRules().getBoolean(GameRule.PVP)) { entityDamageByEntityEvent.setCancelled(); diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index 86e243eaf40..173e63b6991 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -98,31 +98,31 @@ public abstract class Block extends Position implements Metadatable, Cloneable, @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", replaceWith = "Block.getLightLevel() or Block.getLightLevel(int)") - @SuppressWarnings({"java:S1444", "java:S2386", "MS_PKGPROTECT"}) + @SuppressWarnings({"java:S1444", "java:S2386", "spotbugs:MS_PKGPROTECT"}) public static int[] light = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", replaceWith = "Block.getLightFilter() or Block.getLightFilter(int)") - @SuppressWarnings({"java:S1444", "java:S2386", "MS_PKGPROTECT"}) + @SuppressWarnings({"java:S1444", "java:S2386", "spotbugs:MS_PKGPROTECT"}) public static int[] lightFilter = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", replaceWith = "Block.isSolid() or Block.isSolid(int)") - @SuppressWarnings({"java:S1444", "java:S2386", "MS_PKGPROTECT"}) + @SuppressWarnings({"java:S1444", "java:S2386", "spotbugs:MS_PKGPROTECT"}) public static boolean[] solid = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", replaceWith = "Block.getHardness() or Block.getHardness(int)") - @SuppressWarnings({"java:S1444", "java:S2386", "MS_PKGPROTECT"}) + @SuppressWarnings({"java:S1444", "java:S2386", "spotbugs:MS_PKGPROTECT"}) public static double[] hardness = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", replaceWith = "Block.isTransparent() or Block.isTransparent(int)") - @SuppressWarnings({"java:S1444", "java:S2386", "MS_PKGPROTECT"}) + @SuppressWarnings({"java:S1444", "java:S2386", "spotbugs:MS_PKGPROTECT"}) public static boolean[] transparent = null; private static boolean[] diffusesSkyLight = null; diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index edcd24915b5..64477c77048 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -1950,16 +1950,14 @@ public void fall(float fallDistance) { Block down = this.level.getBlock(floorLocation.down()); if (!this.isPlayer || level.getGameRules().getBoolean(GameRule.FALL_DAMAGE)) { - float damage = (float) Math.floor(fallDistance - 3 - (this.hasEffect(Effect.JUMP) ? this.getEffect(Effect.JUMP).getAmplifier() + 1 : 0)); + int jumpBoost = this.hasEffect(Effect.JUMP_BOOST)? (getEffect(Effect.JUMP_BOOST).getAmplifier() + 1) : 0; + float damage = (float) Math.floor(fallDistance - 3 - jumpBoost); - if(down instanceof BlockHayBale) { - damage -= (damage * 0.8f); + if(down instanceof BlockHayBale || down instanceof BlockHoney) { + damage *= 0.2F; } if (damage > 0) { - if (down.getId() == BlockID.HONEY_BLOCK) { - damage *= 0.2F; - } this.attack(new EntityDamageEvent(this, DamageCause.FALL, damage)); } } diff --git a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java index 454891eb1a8..01e82a6add1 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java @@ -48,6 +48,7 @@ public class EntityFishingHook extends EntityProjectile { public int attractTimer = 0; public boolean caught = false; public int caughtTimer = 0; + @SuppressWarnings("java:S1845") public boolean canCollide = true; public Vector3 fish = null; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index 27d0eb1bdb4..b170e406e6e 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -299,7 +299,7 @@ protected void addHitEffect() { by = "PowerNukkit", since = "FUTURE", reason = "Bad method name", replaceWith = "getHasAge", toBeRemovedAt = "1.7.0.0-PN") public boolean hasAge() { - return !noAge; + return getHasAge(); } @PowerNukkitOnly @@ -309,7 +309,7 @@ public boolean hasAge() { by = "PowerNukkit", since = "FUTURE", reason = "Bad method name", replaceWith = "setHasAge", toBeRemovedAt = "1.7.0.0-PN") public void setAge(boolean hasAge) { - this.noAge = !hasAge; + setHasAge(hasAge); } @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index da039fe9324..3b8ed42a318 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -41,6 +41,9 @@ public class EntityThrownTrident extends EntityProjectile { public static final int NETWORK_ID = 73; private static final String TAG_PICKUP = "pickup"; private static final String TAG_TRIDENT = "Trident"; + private static final String TAG_FAVORED_SLOT = "favoredSlot"; + private static final String TAG_CREATIVE = "isCreative"; + private static final String TAG_PLAYER = "player"; private static final String NAME_TRIDENT = "Trident"; protected Item trident; @@ -137,9 +140,9 @@ protected void initEntity() { this.pickupMode = namedTag.contains(TAG_PICKUP) ? namedTag.getByte(TAG_PICKUP) : PICKUP_ANY; this.damage = namedTag.contains("damage") ? namedTag.getDouble("damage") : 8; - this.favoredSlot = namedTag.contains("favoredSlot") ? namedTag.getInt("favoredSlot") : -1; - this.isCreative = namedTag.contains("isCreative") && namedTag.getBoolean("isCreative"); - this.player = !namedTag.contains("player") || namedTag.getBoolean("player"); + this.favoredSlot = namedTag.contains(TAG_FAVORED_SLOT) ? namedTag.getInt(TAG_FAVORED_SLOT) : -1; + this.isCreative = namedTag.contains(TAG_CREATIVE) && namedTag.getBoolean(TAG_CREATIVE); + this.player = !namedTag.contains(TAG_PLAYER) || namedTag.getBoolean(TAG_PLAYER); if (namedTag.contains(TAG_TRIDENT)) { this.trident = NBTIO.getItemHelper(namedTag.getCompound(TAG_TRIDENT)); @@ -186,9 +189,9 @@ public void saveNBT() { .add(new IntTag("1", this.stuckToBlockPos.y)) .add(new IntTag("2", this.stuckToBlockPos.z)) ); - this.namedTag.putInt("favoredSlot", this.favoredSlot); - this.namedTag.putBoolean("isCreative", this.isCreative); - this.namedTag.putBoolean("player", this.player); + this.namedTag.putInt(TAG_FAVORED_SLOT, this.favoredSlot); + this.namedTag.putBoolean(TAG_CREATIVE, this.isCreative); + this.namedTag.putBoolean(TAG_PLAYER, this.player); } public Item getItem() { diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java index 7c471c654ac..087fc048f29 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java @@ -46,6 +46,11 @@ public EntityDamageByEntityEvent(@Nonnull Entity damager, @Nonnull Entity entity super(entity, cause, modifiers); if (enchantments != null) { enchantments = enchantments.length == 0 ? Enchantment.EMPTY_ARRAY : enchantments.clone(); + for (Enchantment enchantment : enchantments) { + if (enchantment != null) { + addSideEffects(enchantment.getAttackSideEffects(damager, entity)); + } + } } this.damager = damager; this.knockBack = knockBack; diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/NoOpIventoryAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/NoOpIventoryAction.java index 4f4eca905e2..8cfbec6bf28 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/NoOpIventoryAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/NoOpIventoryAction.java @@ -12,7 +12,9 @@ @PowerNukkitOnly @Since("FUTURE") public abstract class NoOpIventoryAction extends InventoryAction { - public NoOpIventoryAction(Item sourceItem, Item targetItem) { + @PowerNukkitOnly + @Since("FUTURE") + protected NoOpIventoryAction(Item sourceItem, Item targetItem) { super(sourceItem, targetItem); } diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index fcb691a913a..6669b86df1a 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -1451,6 +1451,12 @@ public boolean onUse(Player player, int ticksUsed) { return false; } + /** + * Allows the item to execute code when the player releases the item after long clicking it. + * @param player The player who released the click button + * @param ticksUsed How many ticks the item was held. + * @return If an inventory contents update should be sent to the player + */ public boolean onRelease(Player player, int ticksUsed) { return false; } diff --git a/src/main/java/cn/nukkit/item/ItemTrident.java b/src/main/java/cn/nukkit/item/ItemTrident.java index c9a7d15a235..b44054e10f8 100644 --- a/src/main/java/cn/nukkit/item/ItemTrident.java +++ b/src/main/java/cn/nukkit/item/ItemTrident.java @@ -48,6 +48,7 @@ public boolean onClickAir(Player player, Vector3 directionVector) { @PowerNukkitDifference(info = "Using new method to play sounds", since = "1.4.0.0-PN") @Override + @SuppressWarnings("java:S3516") public boolean onRelease(Player player, int ticksUsed) { if (this.hasEnchantment(Enchantment.ID_TRIDENT_RIPTIDE)) { return true; diff --git a/src/test/java/cn/nukkit/entity/EntityTest.java b/src/test/java/cn/nukkit/entity/EntityTest.java index f823621916b..ab8260094d9 100644 --- a/src/test/java/cn/nukkit/entity/EntityTest.java +++ b/src/test/java/cn/nukkit/entity/EntityTest.java @@ -18,12 +18,29 @@ package cn.nukkit.entity; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.entity.item.EntityItem; +import cn.nukkit.entity.mob.EntityBlaze; +import cn.nukkit.entity.mob.EntityZombie; +import cn.nukkit.entity.mob.EntityZombiePigman; +import cn.nukkit.entity.passive.EntityChicken; +import cn.nukkit.entity.passive.EntityPig; +import cn.nukkit.event.entity.EntityDamageByEntityEvent; +import cn.nukkit.event.entity.EntityDamageEvent; +import cn.nukkit.event.player.PlayerTeleportEvent; +import cn.nukkit.item.ItemID; +import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.level.Level; +import cn.nukkit.level.Position; import cn.nukkit.level.format.FullChunk; import cn.nukkit.level.format.LevelProvider; import cn.nukkit.math.Vector3; +import cn.nukkit.nbt.tag.CompoundTag; +import cn.nukkit.potion.Effect; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; @@ -31,8 +48,7 @@ import org.powernukkit.tests.api.MockLevel; import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; -import java.util.Arrays; -import java.util.Objects; +import java.util.*; import java.util.stream.Stream; import static org.junit.jupiter.api.Assertions.*; @@ -58,6 +74,101 @@ void setUp() { lenient().when(chunk.getProvider()).thenReturn(provider); } + @Test + void flameAttack() { + entity = createEntity(EntityPig.NETWORK_ID); + Entity attacker = createEntity(EntityZombiePigman.NETWORK_ID); + Map modifiers = new EnumMap<>(EntityDamageEvent.DamageModifier.class); + modifiers.put(EntityDamageEvent.DamageModifier.BASE, 10_000f); + Enchantment enchantment = Enchantment.getEnchantment(Enchantment.ID_FIRE_ASPECT).setLevel(2); + EntityDamageByEntityEvent event = new EntityDamageByEntityEvent(attacker, entity, EntityDamageEvent.DamageCause.CONTACT, modifiers, 0.3f, + new Enchantment[]{enchantment}); + entity.attack(event); + assertFalse(entity.isAlive()); + assertTrue(entity.isOnFire()); + Optional drop = Arrays.stream(level.getEntities()).filter(EntityItem.class::isInstance).map(EntityItem.class::cast).findFirst(); + assertTrue(drop.isPresent()); + assertEquals(ItemID.COOKED_PORKCHOP, drop.get().getItem().getId()); + } + + @Test + void checkObstruction() { + level.setBlockStateAt(1, 1, 3, BlockState.of(BlockID.GRASS)); + level.setBlockStateAt(1, 2, 3, BlockState.of(BlockID.DOOR_BLOCK)); + EntityObstructionTest entity = new EntityObstructionTest(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(1, 2, 3))); + assertFalse(entity.checkObstruction(1, 2, 3)); + level.setBlockStateAt(1, 2, 3, BlockState.of(BlockID.STONE)); + assertTrue(entity.checkObstruction(1, 2, 3)); + } + + @Test + void teleport() { + entity = createEntity(EntityPig.NETWORK_ID); + entity.yaw = 1.0; + entity.pitch = 2.0; + entity.headYaw = 3.0; + assertTrue(entity.teleport(new Position(5, 6, 7), PlayerTeleportEvent.TeleportCause.PLUGIN)); + assertEquals(1, entity.yaw); + assertEquals(2, entity.pitch); + assertEquals(3, entity.headYaw); + assertEquals(5, entity.x); + assertEquals(6, entity.y); + assertEquals(7, entity.z); + } + + @Test + void setRotation() { + entity = createEntity(EntityChicken.NETWORK_ID); + entity.setRotation(1, 2, 3); + assertEquals(1, entity.yaw); + assertEquals(2, entity.pitch); + assertEquals(3, entity.headYaw); + } + + @Test + void setPositionAndRotation() { + entity = createEntity(EntityBlaze.NETWORK_ID); + entity.setPositionAndRotation(new Vector3(1, 2, 3), 4, 5, 6); + assertEquals(1, entity.x); + assertEquals(2, entity.y); + assertEquals(3, entity.z); + assertEquals(4, entity.yaw); + assertEquals(5, entity.pitch); + assertEquals(6, entity.headYaw); + } + + @Test + void fallSlowFalling() { + entity = createEntity(EntityZombie.NETWORK_ID); + level.setBlockStateAt(1, 2, 3, BlockState.of(BlockID.STONE)); + entity.setPosition(new Vector3(1, 3, 3)); + entity.addEffect(Effect.getEffect(Effect.SLOW_FALLING)); + float health = entity.getHealth(); + entity.fall(200); + assertEquals(health, entity.getHealth()); + + entity.removeAllEffects(); + entity.setMaxHealth(1000); + entity.setHealth(1000); + entity.fall(200); + assertEquals(803, entity.getHealth()); + + entity.removeAllEffects(); + entity.setHealth(1000); + entity.noDamageTicks = 0; + entity.entityBaseTick(10); + level.setBlockStateAt(1, 2, 3, BlockState.of(BlockID.HAY_BALE)); + entity.fall(200); + assertEquals(960.6f, entity.getHealth()); + + entity.setHealth(1000); + entity.noDamageTicks = 0; + entity.entityBaseTick(10); + level.setBlockStateAt(1, 2, 3, BlockState.of(BlockID.HONEY_BLOCK)); + entity.fall(200); + assertEquals(960.6f, entity.getHealth()); + } + @ParameterizedTest @MethodSource("getEntityIdStream") void testNames(String id) { @@ -90,6 +201,10 @@ void testNames(String id) { } } + Entity createEntity(int id) { + return createEntity(Integer.toString(id)); + } + Entity createEntity(String id) { return Entity.createEntity(id, chunk, Entity.getDefaultNBT(new Vector3(0, 64, 0))); } @@ -110,4 +225,30 @@ void tearDown() { entity = null; } } + + static class EntityObstructionTest extends Entity { + @Override + public int getNetworkId() { + return EntityItem.NETWORK_ID; + } + + public EntityObstructionTest(FullChunk chunk, CompoundTag nbt) { + super(chunk, nbt); + } + + @Override + public boolean checkObstruction(double x, double y, double z) { + return super.checkObstruction(x, y, z); + } + + @Override + public float getWidth() { + return 1; + } + + @Override + public float getHeight() { + return 1; + } + } } From 9350b3fb46c6fd48a54d63a058e11d0efc900731 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Sun, 19 Dec 2021 21:12:04 -0300 Subject: [PATCH 328/394] More tests and small fixes --- .../java/cn/nukkit/item/MinecraftItemID.java | 3 +- src/main/resources/runtime_item_ids.json | 7 +- .../transaction/CraftingTransactionTest.java | 64 +++++++++++++++++++ .../nukkit/item/BasicAttributesXmlTest.java | 1 + .../java/cn/nukkit/item/ItemArmorTest.java | 44 ++++++++++++- .../cn/nukkit/item/basicItemAttributes.xml | 1 + 6 files changed, 116 insertions(+), 4 deletions(-) create mode 100644 src/test/java/cn/nukkit/inventory/transaction/CraftingTransactionTest.java diff --git a/src/main/java/cn/nukkit/item/MinecraftItemID.java b/src/main/java/cn/nukkit/item/MinecraftItemID.java index 8a43dbef25c..15db78264dc 100644 --- a/src/main/java/cn/nukkit/item/MinecraftItemID.java +++ b/src/main/java/cn/nukkit/item/MinecraftItemID.java @@ -953,7 +953,8 @@ public enum MinecraftItemID { @PowerNukkitOnly @Since("1.4.0.0-PN") WATER_BUCKET, @PowerNukkitOnly @Since("1.4.0.0-PN") LIGHT_GRAY_DYE, @PowerNukkitOnly @Since("1.4.0.0-PN") CHARCOAL, - @PowerNukkitOnly @Since("1.4.0.0-PN") AGENT_SPAWN_EGG(false, false, true) + @PowerNukkitOnly @Since("1.4.0.0-PN") AGENT_SPAWN_EGG(false, false, true), + @PowerNukkitOnly @Since("FUTURE") SPYGLASS ; private static final Map namespacedIdMap = Arrays.stream(values()) .flatMap(id-> diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index 8a8dad1f547..c3ce611c12b 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -4697,5 +4697,10 @@ "name": "minecraft:end_crystal", "id": 631, "oldId": 426 + }, + { + "name": "minecraft:spyglass", + "id": 625, + "oldId": 772 } -] \ No newline at end of file +] diff --git a/src/test/java/cn/nukkit/inventory/transaction/CraftingTransactionTest.java b/src/test/java/cn/nukkit/inventory/transaction/CraftingTransactionTest.java new file mode 100644 index 00000000000..e5793f73a01 --- /dev/null +++ b/src/test/java/cn/nukkit/inventory/transaction/CraftingTransactionTest.java @@ -0,0 +1,64 @@ +package cn.nukkit.inventory.transaction; + +import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.block.BlockID; +import cn.nukkit.inventory.InventoryType; +import cn.nukkit.inventory.Recipe; +import cn.nukkit.inventory.RepairRecipe; +import cn.nukkit.inventory.ShapelessRecipe; +import cn.nukkit.inventory.transaction.action.InventoryAction; +import cn.nukkit.item.Item; +import cn.nukkit.item.ItemID; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.List; + +import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertSame; + +/** + * @author joserobjr + * @since 2021-12-19 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class CraftingTransactionTest { + @MockPlayer + Player player; + + List actions; + + CraftingTransaction transaction; + + @BeforeEach + void setUp() { + actions = new ArrayList<>(); + transaction = new CraftingTransaction(player, actions); + } + + @SuppressWarnings("deprecation") + @Test + void recipe() { + Recipe recipe = new ShapelessRecipe(Item.get(ItemID.COAL), Collections.singletonList(Item.getBlock(BlockID.COAL_ORE))); + transaction.setTransactionRecipe(recipe); + assertSame(recipe, transaction.getTransactionRecipe()); + assertSame(recipe, transaction.getRecipe()); + assertSame(recipe, transaction.recipe); + + recipe = new RepairRecipe(InventoryType.GRINDSTONE, Item.get(ItemID.IRON_SWORD), Arrays.asList(Item.get(ItemID.IRON_SWORD, 33), Item.get(ItemID.IRON_SWORD, 12))); + transaction.setTransactionRecipe(recipe); + assertSame(recipe, transaction.getTransactionRecipe()); + assertNull(transaction.getRecipe()); + assertNull(transaction.recipe); + } +} diff --git a/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java b/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java index 621fa39662c..faf488d6ed4 100644 --- a/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java +++ b/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java @@ -45,6 +45,7 @@ void testAttribute(Item item, Element definition) { try { namespaceId = item.getNamespaceId(); } catch (IllegalArgumentException e) { + Item.fromString(definition.getAttribute("namespaced-id")); throw new IllegalArgumentException("item.getNamespaceId() failed for " + definition.getAttribute("namespaced-id") + " with damage " + definition.getAttribute("damage"), e); } final int damage = item.getDamage(); diff --git a/src/test/java/cn/nukkit/item/ItemArmorTest.java b/src/test/java/cn/nukkit/item/ItemArmorTest.java index fd33ed89cb5..07c17326d62 100644 --- a/src/test/java/cn/nukkit/item/ItemArmorTest.java +++ b/src/test/java/cn/nukkit/item/ItemArmorTest.java @@ -26,10 +26,50 @@ class ItemArmorTest { Player player; @Test - void onClickAir() { - ItemArmor armor = (ItemArmor) Item.get(ItemID.IRON_CHESTPLATE); + void onClickAirHelmet() { + ItemArmor armor = (ItemArmor) Item.get(ItemID.CHAIN_HELMET); + player.getInventory().setItemInHand(armor); + armor.onClickAir(player, new Vector3()); + verify(player.getLevel()).addSound(same(player), eq(Sound.ARMOR_EQUIP_CHAIN)); + } + + @Test + void onClickAirChestplate() { + ItemArmor armor = (ItemArmor) Item.get(ItemID.DIAMOND_CHESTPLATE); + player.getInventory().setItemInHand(armor); + armor.onClickAir(player, new Vector3()); + verify(player.getLevel()).addSound(same(player), eq(Sound.ARMOR_EQUIP_DIAMOND)); + } + + @Test + void onClickAirLeggings() { + ItemArmor armor = (ItemArmor) Item.get(ItemID.GOLD_LEGGINGS); + player.getInventory().setItemInHand(armor); + armor.onClickAir(player, new Vector3()); + verify(player.getLevel()).addSound(same(player), eq(Sound.ARMOR_EQUIP_GOLD)); + } + + @Test + void onClickAirBoots() { + ItemArmor armor = (ItemArmor) Item.get(ItemID.IRON_BOOTS); player.getInventory().setItemInHand(armor); armor.onClickAir(player, new Vector3()); verify(player.getLevel()).addSound(same(player), eq(Sound.ARMOR_EQUIP_IRON)); } + + @Test + void onClickAirLeather() { + ItemArmor armor = (ItemArmor) Item.get(ItemID.LEATHER_CAP); + player.getInventory().setItemInHand(armor); + armor.onClickAir(player, new Vector3()); + verify(player.getLevel()).addSound(same(player), eq(Sound.ARMOR_EQUIP_LEATHER)); + } + + @Test + void onClickAirNetherite() { + ItemArmor armor = (ItemArmor) Item.get(ItemID.NETHERITE_BOOTS); + player.getInventory().setItemInHand(armor); + armor.onClickAir(player, new Vector3()); + verify(player.getLevel()).addSound(same(player), eq(Sound.ARMOR_EQUIP_NETHERITE)); + } } diff --git a/src/test/resources/cn/nukkit/item/basicItemAttributes.xml b/src/test/resources/cn/nukkit/item/basicItemAttributes.xml index 205edb26ab3..755d4e04972 100644 --- a/src/test/resources/cn/nukkit/item/basicItemAttributes.xml +++ b/src/test/resources/cn/nukkit/item/basicItemAttributes.xml @@ -609,5 +609,6 @@ + From 17e064a75c261743904187f5e0daf2005ebcec68 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 20 Dec 2021 14:41:29 -0300 Subject: [PATCH 329/394] More tests and small fixes --- .../command/CapturingCommandSender.java | 4 +- .../command/CapturingCommandSenderTest.java | 44 ++++++++++ .../entity/item/EntityFallingBlockTest.java | 88 +++++++++++++++++++ .../action/NoOpIventoryActionTest.java | 65 ++++++++++++++ .../damage/EnchantmentDamageAllTest.java | 50 +++++++++++ 5 files changed, 249 insertions(+), 2 deletions(-) create mode 100644 src/test/java/cn/nukkit/command/CapturingCommandSenderTest.java create mode 100644 src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java create mode 100644 src/test/java/cn/nukkit/inventory/transaction/action/NoOpIventoryActionTest.java create mode 100644 src/test/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAllTest.java diff --git a/src/main/java/cn/nukkit/command/CapturingCommandSender.java b/src/main/java/cn/nukkit/command/CapturingCommandSender.java index 10afad1b66e..fdcca3d68d3 100644 --- a/src/main/java/cn/nukkit/command/CapturingCommandSender.java +++ b/src/main/java/cn/nukkit/command/CapturingCommandSender.java @@ -43,14 +43,14 @@ public CapturingCommandSender(@NonNull String name) { @PowerNukkitOnly public CapturingCommandSender(@NonNull String name, boolean isOp) { this.name = name; - this.isOp = true; + this.isOp = isOp; this.perms = new PermissibleBase(this); } @PowerNukkitOnly public CapturingCommandSender(@NonNull String name, boolean isOp, @NonNull Function permissibleFactory) { this.name = name; - this.isOp = true; + this.isOp = isOp; this.perms = permissibleFactory.apply(this); } diff --git a/src/test/java/cn/nukkit/command/CapturingCommandSenderTest.java b/src/test/java/cn/nukkit/command/CapturingCommandSenderTest.java new file mode 100644 index 00000000000..5f0887ba5cc --- /dev/null +++ b/src/test/java/cn/nukkit/command/CapturingCommandSenderTest.java @@ -0,0 +1,44 @@ +package cn.nukkit.command; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-12-20 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class CapturingCommandSenderTest { + CapturingCommandSender commandSender; + + @BeforeEach + void setUp() { + commandSender = new CapturingCommandSender(); + } + + @Test + void getterSetter() { + assertEquals("System", commandSender.getName()); + assertFalse(commandSender.isOp()); + + commandSender.setName("Test"); + assertEquals("Test", commandSender.getName()); + assertFalse(commandSender.isOp()); + + commandSender.setOp(true); + assertEquals("Test", commandSender.getName()); + assertTrue(commandSender.isOp()); + + commandSender.setOp(false); + assertEquals("Test", commandSender.getName()); + assertFalse(commandSender.isOp()); + } +} diff --git a/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java b/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java new file mode 100644 index 00000000000..e818eab71aa --- /dev/null +++ b/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java @@ -0,0 +1,88 @@ +package cn.nukkit.entity.item; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.block.BlockFallable; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.entity.Entity; +import cn.nukkit.level.Level; +import cn.nukkit.nbt.tag.CompoundTag; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; +import static org.mockito.Mockito.mock; + +/** + * @author joserobjr + * @since 2021-12-20 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class EntityFallingBlockTest { + @MockLevel + Level level; + + EntityFallingBlock fallingBlock; + + @BeforeEach + void setUp() { + level.setBlockStateAt(0, 63, 0, BlockState.of(BlockID.STILL_WATER)); + fallingBlock = new TestBlock(BlockID.SAND, 0, 100, 0, level).createFallingEntity(new CompoundTag()); + } + + @Test + void resetFallDistance() { + fallingBlock.highestPosition = 255; + fallingBlock.resetFallDistance(); + assertEquals(100, fallingBlock.highestPosition); + + fallingBlock.highestPosition = 255; + fallingBlock.close(); + fallingBlock.resetFallDistance(); + assertEquals(255, fallingBlock.highestPosition); + } + + @Test + void canCollideWith() { + Entity entity = mock(Entity.class); + assertFalse(fallingBlock.canCollide()); + assertFalse(fallingBlock.canCollideWith(entity)); + + fallingBlock.blockId = BlockID.ANVIL; + assertTrue(fallingBlock.canCollide()); + assertTrue(fallingBlock.canCollideWith(entity)); + } + + static class TestBlock extends BlockFallable { + private final int id; + public TestBlock(int id, int x, int y, int z, Level level) { + this.id = id; + this.x = x; + this.y = y; + this.z = z; + this.level = level; + } + + @Override + public String getName() { + return "Test Block"; + } + + @Override + public int getId() { + return id; + } + + @PowerNukkitOnly + @Override + public EntityFallingBlock createFallingEntity(CompoundTag customNbt) { + return super.createFallingEntity(customNbt); + } + } +} diff --git a/src/test/java/cn/nukkit/inventory/transaction/action/NoOpIventoryActionTest.java b/src/test/java/cn/nukkit/inventory/transaction/action/NoOpIventoryActionTest.java new file mode 100644 index 00000000000..a5e8039d537 --- /dev/null +++ b/src/test/java/cn/nukkit/inventory/transaction/action/NoOpIventoryActionTest.java @@ -0,0 +1,65 @@ +package cn.nukkit.inventory.transaction.action; + +import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.item.Item; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.Mock; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.mockito.Mockito.verifyNoInteractions; + +/** + * @author joserobjr + * @since 2021-12-20 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class NoOpIventoryActionTest { + @Mock + Player player; + + @Mock + Item source; + + @Mock + Item target; + + NoOpIventoryAction action; + + @BeforeEach + void setUp() { + action = new NoOpIventoryAction(source, target) { + @Override + public boolean isValid(Player source) { + return true; + } + }; + } + + @Test + void execute() { + assertTrue(action.execute(player)); + } + + @Test + void onExecuteSuccess() { + action.onExecuteSuccess(player); + verifyNoInteractions(player); + verifyNoInteractions(source); + verifyNoInteractions(target); + } + + @Test + void onExecuteFail() { + action.onExecuteFail(player); + verifyNoInteractions(player); + verifyNoInteractions(source); + verifyNoInteractions(target); + } +} diff --git a/src/test/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAllTest.java b/src/test/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAllTest.java new file mode 100644 index 00000000000..2b800a4dd1f --- /dev/null +++ b/src/test/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAllTest.java @@ -0,0 +1,50 @@ +package cn.nukkit.item.enchantment.damage; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.entity.Entity; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.Mock; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author joserobjr + * @since 2021-12-20 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class EnchantmentDamageAllTest { + @Mock + Entity entity; + EnchantmentDamageAll enchant; + + @BeforeEach + void setUp() { + enchant = new EnchantmentDamageAll(); + } + + @Test + void getDamageBonus() { + enchant.setLevel(-1, false); + assertEquals(0, enchant.getDamageBonus(entity)); + + enchant.setLevel(1, false); + assertEquals(1.25, enchant.getDamageBonus(entity)); + + enchant.setLevel(2, false); + assertEquals(2.5, enchant.getDamageBonus(entity)); + + enchant.setLevel(3, false); + assertEquals(3.75, enchant.getDamageBonus(entity)); + + enchant.setLevel(4, false); + assertEquals(5.00, enchant.getDamageBonus(entity)); + + assertEquals(4, enchant.getMaxEnchantableLevel()); + } +} From e46ef1a767fa5b5e44899fd503290245b578fab5 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 20 Dec 2021 15:39:29 -0300 Subject: [PATCH 330/394] More tests and small fixes --- pom.xml | 6 +++ src/main/java/cn/nukkit/block/Block.java | 26 +++++++---- .../entity/item/EntityFallingBlock.java | 4 +- src/main/java/cn/nukkit/item/ItemArrow.java | 8 ++-- src/main/java/cn/nukkit/item/ItemPotion.java | 2 +- .../cn/nukkit/item/randomitem/Fishing.java | 5 +- .../entity/item/EntityFallingBlockTest.java | 46 ++++++++++++++++++- 7 files changed, 77 insertions(+), 20 deletions(-) diff --git a/pom.xml b/pom.xml index de52079820c..a81b09de9b5 100644 --- a/pom.xml +++ b/pom.xml @@ -329,6 +329,12 @@ 2.11.0 test + + com.github.spotbugs + spotbugs-annotations + 4.5.2 + true + diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index 173e63b6991..61a1eaeba1d 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -26,6 +26,7 @@ import cn.nukkit.utils.BlockColor; import cn.nukkit.utils.InvalidBlockDamageException; import com.google.common.base.Preconditions; +import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import lombok.extern.log4j.Log4j2; import javax.annotation.Nonnegative; @@ -56,6 +57,7 @@ public abstract class Block extends Position implements Metadatable, Cloneable, public static final Block[] EMPTY_ARRAY = new Block[0]; // + @SuppressWarnings("DeprecatedIsStillUsed") @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "It is being replaced by an other solution that don't require a fixed size") @PowerNukkitOnly @@ -68,6 +70,7 @@ public abstract class Block extends Position implements Metadatable, Cloneable, @PowerNukkitOnly public static final int DATA_BITS = dynamic(4); + @SuppressWarnings("DeprecatedIsStillUsed") @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "It's not a constant value, it may be changed on major updates and" + " plugins will have to be recompiled in order to update this value in the binary files, " + @@ -85,44 +88,51 @@ public abstract class Block extends Position implements Metadatable, Cloneable, @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "Not encapsulated, easy to break", replaceWith = "Block.get(int).getClass(), to register new blocks use registerBlockImplementation()") - @SuppressWarnings({"java:S1444", "java:S2386", "MS_PKGPROTECT"}) + @SuppressWarnings({"java:S1444", "java:S2386"}) + @SuppressFBWarnings(value = "MS_PKGPROTECT", justification = "Changing it would break compatibility with some regular Nukkit plugins") public static Class[] list = null; @DeprecationDetails(reason = "The meta is limited to 32 bits", since = "1.3.0.0-PN", replaceWith = "To register/override implementations use registerBlockImplementation(), " + "to get the block with a given state use BlockState.of and than BlockState.getBlock()") @Deprecated - @SuppressWarnings({"java:S1444", "java:S2386", "java:S1123", "java:S1133", "DeprecatedIsStillUsed", "MS_PKGPROTECT"}) + @SuppressWarnings({"java:S1444", "java:S2386", "java:S1123", "java:S1133", "DeprecatedIsStillUsed"}) + @SuppressFBWarnings(value = "MS_PKGPROTECT", justification = "Changing it would break compatibility with some regular Nukkit plugins") public static Block[] fullList = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", replaceWith = "Block.getLightLevel() or Block.getLightLevel(int)") - @SuppressWarnings({"java:S1444", "java:S2386", "spotbugs:MS_PKGPROTECT"}) + @SuppressWarnings({"java:S1444", "java:S2386"}) + @SuppressFBWarnings(value = "MS_PKGPROTECT", justification = "Changing it would break compatibility with some regular Nukkit plugins") public static int[] light = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", replaceWith = "Block.getLightFilter() or Block.getLightFilter(int)") - @SuppressWarnings({"java:S1444", "java:S2386", "spotbugs:MS_PKGPROTECT"}) + @SuppressWarnings({"java:S1444", "java:S2386", "DeprecatedIsStillUsed"}) + @SuppressFBWarnings(value = "MS_PKGPROTECT", justification = "Changing it would break compatibility with some regular Nukkit plugins") public static int[] lightFilter = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", replaceWith = "Block.isSolid() or Block.isSolid(int)") - @SuppressWarnings({"java:S1444", "java:S2386", "spotbugs:MS_PKGPROTECT"}) + @SuppressWarnings({"java:S1444", "java:S2386"}) + @SuppressFBWarnings(value = "MS_PKGPROTECT", justification = "Changing it would break compatibility with some regular Nukkit plugins") public static boolean[] solid = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", replaceWith = "Block.getHardness() or Block.getHardness(int)") - @SuppressWarnings({"java:S1444", "java:S2386", "spotbugs:MS_PKGPROTECT"}) + @SuppressWarnings({"java:S1444", "java:S2386", "DeprecatedIsStillUsed"}) + @SuppressFBWarnings(value = "MS_PKGPROTECT", justification = "Changing it would break compatibility with some regular Nukkit plugins") public static double[] hardness = null; @Deprecated @DeprecationDetails(reason = "Not encapsulated, easy to break", since = "1.4.0.0-PN", replaceWith = "Block.isTransparent() or Block.isTransparent(int)") - @SuppressWarnings({"java:S1444", "java:S2386", "spotbugs:MS_PKGPROTECT"}) + @SuppressWarnings({"java:S1444", "java:S2386", "DeprecatedIsStillUsed"}) + @SuppressFBWarnings(value = "MS_PKGPROTECT", justification = "Changing it would break compatibility with some regular Nukkit plugins") public static boolean[] transparent = null; private static boolean[] diffusesSkyLight = null; @@ -810,7 +820,7 @@ public static boolean diffusesSkyLight(int blockId) { @Since("FUTURE") @SuppressWarnings("java:S1874") public static double getHardness(int blockId) { - if (blockId < 0 || blockId >= light.length) { + if (blockId < 0 || blockId >= hardness.length) { return Double.MAX_VALUE; } return hardness[blockId]; diff --git a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java index abab66f6dcf..34645527973 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java @@ -198,8 +198,8 @@ public boolean onUpdate(int currentTick) { Entity[] e = level.getCollidingEntities(this.getBoundingBox(), this); for (Entity entity : e) { - if (entity instanceof EntityLiving && highestPosition > y) { - entity.attack(new EntityDamageByBlockEvent(event.getTo(), entity, DamageCause.CONTACT, (float) Math.min(40, Math.max(0, (highestPosition - y) * 2)))); + if (entity instanceof EntityLiving && fallDistance > 0) { + entity.attack(new EntityDamageByBlockEvent(event.getTo(), entity, DamageCause.FALLING_BLOCK, Math.min(40f, Math.max(0f, fallDistance * 2f)))); } } } diff --git a/src/main/java/cn/nukkit/item/ItemArrow.java b/src/main/java/cn/nukkit/item/ItemArrow.java index 62a0a7c9c92..d754e7c9f18 100644 --- a/src/main/java/cn/nukkit/item/ItemArrow.java +++ b/src/main/java/cn/nukkit/item/ItemArrow.java @@ -12,6 +12,8 @@ */ public class ItemArrow extends Item { + private static final String GENERIC_NAME = "Arrow"; + public ItemArrow() { this(0, 1); } @@ -21,7 +23,7 @@ public ItemArrow(Integer meta) { } public ItemArrow(Integer meta, int count) { - super(ARROW, meta, count, "Arrow"); + super(ARROW, meta, count, GENERIC_NAME); updateName(); } @@ -34,7 +36,7 @@ public void setDamage(Integer meta) { private void updateName() { final int type = getDamage(); if (type <= 0) { - name = "Arrow"; + name = GENERIC_NAME; return; } @@ -50,7 +52,7 @@ private void updateName() { name = "Tipped Arrow"; return; default: - name = ItemPotion.buildName(potionId, "Arrow", false); + name = ItemPotion.buildName(potionId, GENERIC_NAME, false); } } diff --git a/src/main/java/cn/nukkit/item/ItemPotion.java b/src/main/java/cn/nukkit/item/ItemPotion.java index d5fa0440978..81ae9e80519 100644 --- a/src/main/java/cn/nukkit/item/ItemPotion.java +++ b/src/main/java/cn/nukkit/item/ItemPotion.java @@ -73,7 +73,7 @@ public void setDamage(Integer meta) { private void updateName() { int potionId = getDamage(); if (potionId == Potion.WATER) { - name = "Water Bottle"; + name = buildName(potionId, "Water", true); } else { name = buildName(potionId, "Potion", true); } diff --git a/src/main/java/cn/nukkit/item/randomitem/Fishing.java b/src/main/java/cn/nukkit/item/randomitem/Fishing.java index 7a75b762d7b..e0c50d75eba 100644 --- a/src/main/java/cn/nukkit/item/randomitem/Fishing.java +++ b/src/main/java/cn/nukkit/item/randomitem/Fishing.java @@ -60,9 +60,6 @@ public static Item getFishingResult(int fortuneLevel, int lureLevel) { putSelector(TREASURES, treasureChance); putSelector(JUNKS, junkChance); Object result = selectFrom(ROOT_FISHING); - if (result instanceof Item) { - return (Item) result; - } - return null; + return (Item) result; } } diff --git a/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java b/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java index e818eab71aa..8a471ad603c 100644 --- a/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java +++ b/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java @@ -1,12 +1,18 @@ package cn.nukkit.entity.item; +import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.block.BlockFallable; import cn.nukkit.block.BlockID; import cn.nukkit.blockstate.BlockState; import cn.nukkit.entity.Entity; +import cn.nukkit.entity.passive.EntityPig; +import cn.nukkit.event.entity.EntityDamageByBlockEvent; import cn.nukkit.level.Level; +import cn.nukkit.math.AxisAlignedBB; +import cn.nukkit.math.SimpleAxisAlignedBB; +import cn.nukkit.math.Vector3; import cn.nukkit.nbt.tag.CompoundTag; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; @@ -15,7 +21,8 @@ import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; import static org.junit.jupiter.api.Assertions.*; -import static org.mockito.Mockito.mock; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.*; /** * @author joserobjr @@ -32,7 +39,7 @@ class EntityFallingBlockTest { @BeforeEach void setUp() { - level.setBlockStateAt(0, 63, 0, BlockState.of(BlockID.STILL_WATER)); + level.setBlockStateAt(0, 63, 0, BlockState.of(BlockID.STONE)); fallingBlock = new TestBlock(BlockID.SAND, 0, 100, 0, level).createFallingEntity(new CompoundTag()); } @@ -59,6 +66,41 @@ void canCollideWith() { assertTrue(fallingBlock.canCollideWith(entity)); } + @Test + void sandFall() { + Entity pig = Entity.createEntity(EntityPig.NETWORK_ID, level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0))); + assertNotNull(pig); + fallingBlock.highestPosition = 255; + fallingBlock.lastY = 255; + fallingBlock.setPosition(new Vector3(0, 65, 0)); + fallingBlock.setMotion(new Vector3(0, -1, 0)); + lenient().doReturn(new Entity[]{pig}).when(level).getCollidingEntities(any(), same(fallingBlock)); + doReturn(new AxisAlignedBB[]{new SimpleAxisAlignedBB(0, 63, 0, 1, 64, 1)}) + .when(fallingBlock.getLevel()) + .getCollisionCubes(same(fallingBlock), any(), eq(false)); + fallingBlock.onUpdate(fallingBlock.lastUpdate + 1); + assertTrue(pig.isAlive()); + verify(Server.getInstance().getPluginManager(), times(0)).callEvent(any(EntityDamageByBlockEvent.class)); + } + + @Test + void anvilDamage() { + Entity pig = Entity.createEntity(EntityPig.NETWORK_ID, level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0))); + assertNotNull(pig); + fallingBlock.highestPosition = 255; + fallingBlock.lastY = 255; + fallingBlock.blockId = BlockID.ANVIL; + fallingBlock.setPosition(new Vector3(0, 65, 0)); + fallingBlock.setMotion(new Vector3(0, -1, 0)); + doReturn(new Entity[]{pig}).when(level).getCollidingEntities(any(), same(fallingBlock)); + doReturn(new AxisAlignedBB[]{new SimpleAxisAlignedBB(0, 63, 0, 1, 64, 1)}) + .when(fallingBlock.getLevel()) + .getCollisionCubes(same(fallingBlock), any(), eq(false)); + fallingBlock.onUpdate(fallingBlock.lastUpdate + 1); + assertFalse(pig.isAlive()); + verify(Server.getInstance().getPluginManager()).callEvent(any(EntityDamageByBlockEvent.class)); + } + static class TestBlock extends BlockFallable { private final int id; public TestBlock(int id, int x, int y, int z, Level level) { From ee6164489f190499037be636ff742e8c3afc04e6 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 20 Dec 2021 16:30:59 -0300 Subject: [PATCH 331/394] More tests and small fixes --- .../nukkit/entity/item/EntityFishingHook.java | 5 +- src/main/java/cn/nukkit/item/ItemPotion.java | 2 +- .../java/cn/nukkit/utils/BossBarColor.java | 20 ++++--- .../java/cn/nukkit/utils/DummyBossBar.java | 13 +++-- .../java/cn/nukkit/block/BlockBellTest.java | 51 ++++++++++++++++++ .../cn/nukkit/block/BlockDispenserTest.java | 52 +++++++++++++++++++ .../cn/nukkit/block/BlockDropperTest.java | 52 +++++++++++++++++++ .../entity/item/EntityFallingBlockTest.java | 1 - .../cn/nukkit/utils/DummyBossBarTest.java | 39 ++++++++++++++ 9 files changed, 220 insertions(+), 15 deletions(-) create mode 100644 src/test/java/cn/nukkit/block/BlockBellTest.java create mode 100644 src/test/java/cn/nukkit/block/BlockDispenserTest.java create mode 100644 src/test/java/cn/nukkit/block/BlockDropperTest.java create mode 100644 src/test/java/cn/nukkit/utils/DummyBossBarTest.java diff --git a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java index 01e82a6add1..53e1c68f07a 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java @@ -31,7 +31,6 @@ import cn.nukkit.network.protocol.EntityEventPacket; import java.util.Collection; -import java.util.Random; import java.util.concurrent.ThreadLocalRandom; @@ -206,7 +205,7 @@ public void fishBites() { teasePk.event = EntityEventPacket.FISH_HOOK_TEASE; Server.broadcastPacket(viewers, teasePk); - Random random = ThreadLocalRandom.current(); + ThreadLocalRandom random = ThreadLocalRandom.current(); for (int i = 0; i < 5; i++) { this.level.addParticle(new BubbleParticle(this.setComponents( this.x + random.nextDouble() * 0.5 - 0.25, @@ -217,7 +216,7 @@ public void fishBites() { } public void spawnFish() { - Random random = ThreadLocalRandom.current(); + ThreadLocalRandom random = ThreadLocalRandom.current(); this.fish = new Vector3( this.x + (random.nextDouble() * 1.2 + 1) * (random.nextBoolean() ? -1 : 1), this.getWaterHeight(), diff --git a/src/main/java/cn/nukkit/item/ItemPotion.java b/src/main/java/cn/nukkit/item/ItemPotion.java index 81ae9e80519..30d87d790cc 100644 --- a/src/main/java/cn/nukkit/item/ItemPotion.java +++ b/src/main/java/cn/nukkit/item/ItemPotion.java @@ -73,7 +73,7 @@ public void setDamage(Integer meta) { private void updateName() { int potionId = getDamage(); if (potionId == Potion.WATER) { - name = buildName(potionId, "Water", true); + name = buildName(potionId, "Bottle", true); } else { name = buildName(potionId, "Potion", true); } diff --git a/src/main/java/cn/nukkit/utils/BossBarColor.java b/src/main/java/cn/nukkit/utils/BossBarColor.java index a23b8d2401a..5c8cd4c3bad 100644 --- a/src/main/java/cn/nukkit/utils/BossBarColor.java +++ b/src/main/java/cn/nukkit/utils/BossBarColor.java @@ -1,13 +1,19 @@ package cn.nukkit.utils; +import cn.nukkit.api.Since; + +/** + * @author Kevims + */ +@Since("FUTURE") public enum BossBarColor { - PINK, - BLUE, - RED, - GREEN, - YELLOW, - PURPLE, - WHITE + @Since("FUTURE") PINK, + @Since("FUTURE") BLUE, + @Since("FUTURE") RED, + @Since("FUTURE") GREEN, + @Since("FUTURE") YELLOW, + @Since("FUTURE") PURPLE, + @Since("FUTURE") WHITE } diff --git a/src/main/java/cn/nukkit/utils/DummyBossBar.java b/src/main/java/cn/nukkit/utils/DummyBossBar.java index da25015eb11..5da1e7fcbde 100644 --- a/src/main/java/cn/nukkit/utils/DummyBossBar.java +++ b/src/main/java/cn/nukkit/utils/DummyBossBar.java @@ -1,12 +1,14 @@ package cn.nukkit.utils; import cn.nukkit.Player; +import cn.nukkit.api.Since; import cn.nukkit.entity.Attribute; import cn.nukkit.entity.Entity; import cn.nukkit.entity.data.EntityMetadata; import cn.nukkit.entity.mob.EntityCreeper; import cn.nukkit.network.protocol.*; +import javax.annotation.Nullable; import java.util.concurrent.ThreadLocalRandom; /** @@ -52,6 +54,7 @@ public Builder length(float length) { return this; } + @Since("FUTURE") public Builder color(BossBarColor color) { this.color = color; return this; @@ -94,13 +97,17 @@ public void setLength(float length) { } } - public void setColor(BossBarColor color) { - if (this.color == null || !this.color.equals(color)) { + @Since("FUTURE") + public void setColor(@Nullable BossBarColor color) { + final BossBarColor currentColor = this.color; + if (currentColor == null || !currentColor.equals(color)) { this.color = color; this.sendSetBossBarTexture(); } } + @Since("FUTURE") + @Nullable public BossBarColor getColor() { return this.color; } @@ -158,7 +165,7 @@ private void sendSetBossBarTexture() { BossEventPacket pk = new BossEventPacket(); pk.bossEid = this.bossBarId; pk.type = BossEventPacket.TYPE_TEXTURE; - pk.color = color.ordinal(); + pk.color = color != null? color.ordinal() : 0; player.dataPacket(pk); } diff --git a/src/test/java/cn/nukkit/block/BlockBellTest.java b/src/test/java/cn/nukkit/block/BlockBellTest.java new file mode 100644 index 00000000000..519998890f3 --- /dev/null +++ b/src/test/java/cn/nukkit/block/BlockBellTest.java @@ -0,0 +1,51 @@ +package cn.nukkit.block; + +import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.blockentity.BlockEntityBell; +import cn.nukkit.item.Item; +import cn.nukkit.level.Level; +import cn.nukkit.math.BlockFace; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertTrue; + +/** + * @author joserobjr + * @since 2021-12-20 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class BlockBellTest { + @MockLevel + Level level; + + @MockPlayer + Player player; + + @Test + void testPlacement() { + BlockBell bell = new BlockBell(); + bell.level = level; + bell.x = 0; + bell.y = 101; + bell.z = 0; + Block grass = Block.get(BlockID.GRASS); + Block tallGrass = Block.get(BlockID.TALL_GRASS); + level.setBlock(0, 100, 0, grass, true, false); + level.setBlock(0, 101, 0, tallGrass, true, false); + + assertTrue(bell.place(Item.getBlock(BlockID.BELL), tallGrass, tallGrass, BlockFace.NORTH, 0, 0, 0, player)); + BlockEntityBell entityBell = bell.getBlockEntity(); + assertNotNull(entityBell); + assertTrue(entityBell.isBlockEntityValid()); + assertNotNull(entityBell.spawnExceptions); + } +} diff --git a/src/test/java/cn/nukkit/block/BlockDispenserTest.java b/src/test/java/cn/nukkit/block/BlockDispenserTest.java new file mode 100644 index 00000000000..773c359e015 --- /dev/null +++ b/src/test/java/cn/nukkit/block/BlockDispenserTest.java @@ -0,0 +1,52 @@ +package cn.nukkit.block; + +import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.blockentity.BlockEntity; +import cn.nukkit.blockentity.BlockEntityDispenser; +import cn.nukkit.item.Item; +import cn.nukkit.level.Level; +import cn.nukkit.math.BlockFace; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-12-20 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class BlockDispenserTest { + @MockLevel + Level level; + + @MockPlayer + Player player; + + @Test + void testPlacement() { + BlockDispenser dispenser = new BlockDispenser(); + dispenser.level = level; + dispenser.x = 0; + dispenser.y = 101; + dispenser.z = 0; + Block grass = Block.get(BlockID.GRASS); + Block tallGrass = Block.get(BlockID.TALL_GRASS); + level.setBlock(0, 100, 0, grass, true, false); + level.setBlock(0, 101, 0, tallGrass, true, false); + + assertTrue(dispenser.place(Item.getBlock(BlockID.DISPENSER), tallGrass, tallGrass, BlockFace.NORTH, 0, 0, 0, player)); + BlockEntityDispenser entityDispenser = (BlockEntityDispenser) dispenser.getBlockEntity(); + assertNotNull(entityDispenser); + assertTrue(entityDispenser.isBlockEntityValid()); + assertNotNull(entityDispenser.getInventory()); + assertEquals(BlockEntity.DISPENSER, entityDispenser.getSpawnCompound().getString("id")); + } +} diff --git a/src/test/java/cn/nukkit/block/BlockDropperTest.java b/src/test/java/cn/nukkit/block/BlockDropperTest.java new file mode 100644 index 00000000000..e8ac04acdbc --- /dev/null +++ b/src/test/java/cn/nukkit/block/BlockDropperTest.java @@ -0,0 +1,52 @@ +package cn.nukkit.block; + +import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.blockentity.BlockEntity; +import cn.nukkit.blockentity.BlockEntityDropper; +import cn.nukkit.item.Item; +import cn.nukkit.level.Level; +import cn.nukkit.math.BlockFace; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * @author joserobjr + * @since 2021-12-20 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class BlockDropperTest { + @MockLevel + Level level; + + @MockPlayer + Player player; + + @Test + void testPlacement() { + BlockDropper dropper = new BlockDropper(); + dropper.level = level; + dropper.x = 0; + dropper.y = 101; + dropper.z = 0; + Block grass = Block.get(BlockID.GRASS); + Block tallGrass = Block.get(BlockID.TALL_GRASS); + level.setBlock(0, 100, 0, grass, true, false); + level.setBlock(0, 101, 0, tallGrass, true, false); + + assertTrue(dropper.place(Item.getBlock(BlockID.DROPPER), tallGrass, tallGrass, BlockFace.NORTH, 0, 0, 0, player)); + BlockEntityDropper entityDropper = (BlockEntityDropper) dropper.getBlockEntity(); + assertNotNull(entityDropper); + assertTrue(entityDropper.isBlockEntityValid()); + assertNotNull(entityDropper.getInventory()); + assertEquals(BlockEntity.DISPENSER, entityDropper.getSpawnCompound().getString("id")); + } +} diff --git a/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java b/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java index 8a471ad603c..ba9db8c2b07 100644 --- a/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java +++ b/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java @@ -80,7 +80,6 @@ void sandFall() { .getCollisionCubes(same(fallingBlock), any(), eq(false)); fallingBlock.onUpdate(fallingBlock.lastUpdate + 1); assertTrue(pig.isAlive()); - verify(Server.getInstance().getPluginManager(), times(0)).callEvent(any(EntityDamageByBlockEvent.class)); } @Test diff --git a/src/test/java/cn/nukkit/utils/DummyBossBarTest.java b/src/test/java/cn/nukkit/utils/DummyBossBarTest.java new file mode 100644 index 00000000000..d4b74404368 --- /dev/null +++ b/src/test/java/cn/nukkit/utils/DummyBossBarTest.java @@ -0,0 +1,39 @@ +package cn.nukkit.utils; + +import cn.nukkit.Player; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; + +/** + * @author joserobjr + * @since 2021-12-20 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class DummyBossBarTest { + @MockPlayer + Player player; + DummyBossBar bossBar; + + @Test + void color() { + bossBar = new DummyBossBar.Builder(player).color(BossBarColor.BLUE).text("Testing").build(); + assertEquals(BossBarColor.BLUE, bossBar.getColor()); + bossBar.setColor(BossBarColor.GREEN); + assertEquals(BossBarColor.GREEN, bossBar.getColor()); + bossBar.setColor(null); + assertNull(bossBar.getColor()); + bossBar.setColor(BossBarColor.RED); + assertEquals(BossBarColor.RED, bossBar.getColor()); + bossBar.setColor(BossBarColor.RED); + assertEquals(BossBarColor.RED, bossBar.getColor()); + } +} From d9417d832281d62162670ea430eb3f1937959276 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 20 Dec 2021 17:02:12 -0300 Subject: [PATCH 332/394] Create more tests --- .../entity/item/EntityFishingHookTest.java | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java b/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java index 6dbf656daf1..59e1d570621 100644 --- a/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java +++ b/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java @@ -1,5 +1,6 @@ package cn.nukkit.entity.item; +import cn.nukkit.Player; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.block.BlockID; @@ -10,7 +11,10 @@ import cn.nukkit.item.ItemID; import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.level.Level; +import cn.nukkit.level.particle.BubbleParticle; +import cn.nukkit.level.particle.WaterParticle; import cn.nukkit.math.Vector3; +import cn.nukkit.network.protocol.AddEntityPacket; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -19,6 +23,7 @@ import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; import static org.junit.jupiter.api.Assertions.*; +import static org.mockito.Mockito.*; /** * @author joserobjr @@ -63,6 +68,37 @@ void setTarget() { fishingHook.setTarget(1); assertEquals(1L, fishingHook.getDataPropertyLong(Entity.DATA_TARGET_EID)); assertFalse(fishingHook.canCollide); + fishingHook.setTarget(0); + assertEquals(0L, fishingHook.getDataPropertyLong(Entity.DATA_TARGET_EID)); + assertTrue(fishingHook.canCollide); + } + + @Test + void spawnPacket() { + Player player = mock(Player.class); + fishingHook.spawnTo(player); + verify(player).dataPacket(any(AddEntityPacket.class)); + } + + @Test + void spawnFish() { + assertNull(fishingHook.fish); + fishingHook.spawnFish(); + assertNotNull(fishingHook.fish); + } + + @Test + void attractFish() { + fishingHook.level = mock(Level.class); + fishingHook.fish = new Vector3(100, fishingHook.y, 100); + int attempts = 0; + do { + if (attempts++ == 1000) { + fail(); + } + } while (!fishingHook.attractFish()); + + verify(fishingHook.level, atLeastOnce()).addParticle(any(WaterParticle.class)); } @Test @@ -104,4 +140,11 @@ void onCollideWithEntity() { fishingHook.onCollideWithEntity(pig); assertEquals(pig.getId(), fishingHook.getDataPropertyLong(Entity.DATA_TARGET_EID)); } + + @Test + void fishBites() { + fishingHook.level = mock(Level.class); + fishingHook.fishBites(); + verify(fishingHook.level, times(5)).addParticle(any(BubbleParticle.class)); + } } From 006c3b7d44ba4262043fb6677c09264fe5a93860 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 20 Dec 2021 17:11:10 -0300 Subject: [PATCH 333/394] Fixes a failed test --- .../java/cn/nukkit/entity/item/EntityFishingHookTest.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java b/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java index 59e1d570621..f046d3530c3 100644 --- a/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java +++ b/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java @@ -20,6 +20,7 @@ import org.junit.jupiter.api.extension.ExtendWith; import org.powernukkit.tests.api.MockEntity; import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.api.MockPlayer; import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; import static org.junit.jupiter.api.Assertions.*; @@ -39,6 +40,9 @@ class EntityFishingHookTest { @MockEntity(type = EntityPig.class) EntityPig pig; + @MockPlayer + Player player; + EntityFishingHook fishingHook; @BeforeEach @@ -75,7 +79,7 @@ void setTarget() { @Test void spawnPacket() { - Player player = mock(Player.class); + player.usedChunks.put(Level.chunkHash(0, 0), true); fishingHook.spawnTo(player); verify(player).dataPacket(any(AddEntityPacket.class)); } From c6fa2cfb2d59c78bb070ea81da60422dd5706d6c Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 20 Dec 2021 17:40:14 -0300 Subject: [PATCH 334/394] Create unit test for the ItemTrident --- .../java/cn/nukkit/entity/AttributeTest.java | 23 +++++ .../java/cn/nukkit/item/ItemTridentTest.java | 93 +++++++++++++++++++ 2 files changed, 116 insertions(+) create mode 100644 src/test/java/cn/nukkit/entity/AttributeTest.java create mode 100644 src/test/java/cn/nukkit/item/ItemTridentTest.java diff --git a/src/test/java/cn/nukkit/entity/AttributeTest.java b/src/test/java/cn/nukkit/entity/AttributeTest.java new file mode 100644 index 00000000000..b0c1b2e4164 --- /dev/null +++ b/src/test/java/cn/nukkit/entity/AttributeTest.java @@ -0,0 +1,23 @@ +package cn.nukkit.entity; + +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author joserobjr + * @since 2021-12-20 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class AttributeTest { + @Test + void testToString() { + assertEquals("minecraft:player.saturation{min=0.0, max=20.0, def=5.0, val=5.0}", Attribute.getAttribute(1).toString()); + } +} diff --git a/src/test/java/cn/nukkit/item/ItemTridentTest.java b/src/test/java/cn/nukkit/item/ItemTridentTest.java new file mode 100644 index 00000000000..ad8f887d674 --- /dev/null +++ b/src/test/java/cn/nukkit/item/ItemTridentTest.java @@ -0,0 +1,93 @@ +package cn.nukkit.item; + +import cn.nukkit.Player; +import cn.nukkit.Server; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockstate.BlockState; +import cn.nukkit.entity.projectile.EntityThrownTrident; +import cn.nukkit.event.Event; +import cn.nukkit.event.entity.EntityShootBowEvent; +import cn.nukkit.event.entity.ProjectileLaunchEvent; +import cn.nukkit.item.enchantment.Enchantment; +import cn.nukkit.level.Level; +import cn.nukkit.plugin.PluginManager; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.powernukkit.tests.api.MockLevel; +import org.powernukkit.tests.api.MockPlayer; +import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; + +import java.util.Arrays; +import java.util.Optional; + +import static org.junit.jupiter.api.Assertions.*; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.doAnswer; + +/** + * @author joserobjr + * @since 2021-12-20 + */ +@PowerNukkitOnly +@Since("FUTURE") +@ExtendWith(PowerNukkitExtension.class) +class ItemTridentTest { + @MockLevel + Level level; + + @MockPlayer(position = {0, 65, 0}) + Player player; + + ItemTrident item; + + @BeforeEach + void setUp() { + level.setBlockStateAt(0, 64, 0, BlockState.of(BlockID.STONE)); + item = new ItemTrident(); + } + + @Test + void onReleaseRiptide() { + item.addEnchantment(Enchantment.getEnchantment(Enchantment.ID_TRIDENT_RIPTIDE)); + assertTrue(item.onRelease(player, 20)); + assertEquals(0, item.getDamage()); + } + + @Test + void onReleaseCreative() { + player.setGamemode(Player.CREATIVE); + assertTrue(player.isCreative()); + + assertTrue(item.onRelease(player, 20)); + Optional optTrident = Arrays.stream(level.getEntities()).filter(EntityThrownTrident.class::isInstance).map(EntityThrownTrident.class::cast).findFirst(); + assertTrue(optTrident.isPresent()); + assertTrue(optTrident.get().isCreative()); + } + + @Test + void onReleaseCancelBow() { + PluginManager pluginManager = Server.getInstance().getPluginManager(); + doAnswer(call -> { + ((Event)call.getArgument(0)).setCancelled(); + return null; + }).when(pluginManager).callEvent(any(EntityShootBowEvent.class)); + assertTrue(item.onRelease(player, 20)); + Optional optTrident = Arrays.stream(level.getEntities()).filter(EntityThrownTrident.class::isInstance).map(EntityThrownTrident.class::cast).findFirst(); + assertFalse(optTrident.isPresent()); + } + + @Test + void onReleaseCancelProjectLaunch() { + PluginManager pluginManager = Server.getInstance().getPluginManager(); + doAnswer(call -> { + ((Event)call.getArgument(0)).setCancelled(); + return null; + }).when(pluginManager).callEvent(any(ProjectileLaunchEvent.class)); + assertTrue(item.onRelease(player, 20)); + Optional optTrident = Arrays.stream(level.getEntities()).filter(EntityThrownTrident.class::isInstance).map(EntityThrownTrident.class::cast).findFirst(); + assertFalse(optTrident.isPresent()); + } +} From db90fb98803a6a78b6bfea2a7bf5adb3440d798e Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 20 Dec 2021 18:26:09 -0300 Subject: [PATCH 335/394] Create a test for EntityFishingHook.update() --- .../entity/item/EntityFishingHookTest.java | 61 ++++++++++++++++++- 1 file changed, 60 insertions(+), 1 deletion(-) diff --git a/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java b/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java index f046d3530c3..0747829e352 100644 --- a/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java +++ b/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java @@ -1,20 +1,25 @@ package cn.nukkit.entity.item; import cn.nukkit.Player; +import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.block.BlockID; import cn.nukkit.blockstate.BlockState; import cn.nukkit.entity.Entity; import cn.nukkit.entity.passive.EntityPig; +import cn.nukkit.event.entity.ProjectileHitEvent; import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; import cn.nukkit.item.enchantment.Enchantment; import cn.nukkit.level.Level; +import cn.nukkit.level.format.FullChunk; import cn.nukkit.level.particle.BubbleParticle; import cn.nukkit.level.particle.WaterParticle; import cn.nukkit.math.Vector3; +import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.network.protocol.AddEntityPacket; +import cn.nukkit.plugin.PluginManager; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -47,10 +52,38 @@ class EntityFishingHookTest { @BeforeEach void setUp() { - level.setBlockStateAt(0, 63, 0, BlockState.of(BlockID.STILL_WATER)); + level.setBlock(0, 63, 0, BlockState.of(BlockID.STILL_WATER).getBlock(), true, false); fishingHook = new EntityFishingHook(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0))); } + @Test + void onUpdateCollidedInWater() { + fishingHook = new CollidedFishingHook(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0)), true); + int attempts = 0; + while (true) { + if (attempts++ == 1_000) { + fail(); + } + if (fishingHook.attracted) { + if (fishingHook.caughtTimer == 1 && fishingHook.caught) { + fishingHook.onUpdate(fishingHook.lastUpdate + 1); + assertFalse(fishingHook.attracted); + assertFalse(fishingHook.caught); + break; + } + } + fishingHook.onUpdate(fishingHook.lastUpdate + 1); + } + } + + @Test + void onUpdateCollidedNotInWater() { + fishingHook = new CollidedFishingHook(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0)), false); + fishingHook.onUpdate(fishingHook.lastUpdate + 1); + final PluginManager pluginManager = Server.getInstance().getPluginManager(); + verify(pluginManager, atLeastOnce()).callEvent(any(ProjectileHitEvent.class)); + } + @Test void overAgedFishingHook() { fishingHook = new EntityFishingHook(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0)) @@ -151,4 +184,30 @@ void fishBites() { fishingHook.fishBites(); verify(fishingHook.level, times(5)).addParticle(any(BubbleParticle.class)); } + + static class CollidedFishingHook extends EntityFishingHook { + final boolean inWater; + public CollidedFishingHook(FullChunk chunk, CompoundTag nbt, boolean inWater) { + super(chunk, nbt); + this.inWater = inWater; + } + + @Override + public boolean move(double dx, double dy, double dz) { + hadCollision = false; + isCollided = true; + isCollidedVertically = true; + return true; + } + + @Override + public boolean entityBaseTick() { + return false; + } + + @Override + public boolean isInsideOfWater() { + return inWater; + } + } } From 9fbb7e15f9fee859fe1a0c804a9f4027a6315361 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 21 Dec 2021 01:20:43 -0300 Subject: [PATCH 336/394] Update powernukkit-tests-junit5 to 0.1.1 --- pom.xml | 2 +- src/test/java/cn/nukkit/PlayerTest.java | 4 ++-- .../java/cn/nukkit/entity/item/EntityFishingHookTest.java | 2 +- .../cn/nukkit/entity/projectile/EntityThrownTridentTest.java | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 3414e81493a..bec1846cc4d 100644 --- a/pom.xml +++ b/pom.xml @@ -107,7 +107,7 @@ org.powernukkit powernukkit-tests-junit5 - 0.1.0 + 0.1.1 test diff --git a/src/test/java/cn/nukkit/PlayerTest.java b/src/test/java/cn/nukkit/PlayerTest.java index e7083283259..2333993a890 100644 --- a/src/test/java/cn/nukkit/PlayerTest.java +++ b/src/test/java/cn/nukkit/PlayerTest.java @@ -51,10 +51,10 @@ class PlayerTest { @Mock SourceInterface sourceInterface; - @MockEntity(type = EntityPig.class) + @MockEntity EntityPig pig; - @MockEntity(type = EntityBoat.class) + @MockEntity EntityBoat boat; Skin skin; diff --git a/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java b/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java index 0747829e352..9a412b60468 100644 --- a/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java +++ b/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java @@ -42,7 +42,7 @@ class EntityFishingHookTest { @MockLevel Level level; - @MockEntity(type = EntityPig.class) + @MockEntity EntityPig pig; @MockPlayer diff --git a/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java b/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java index 33e2553153b..f763c1073c7 100644 --- a/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java +++ b/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java @@ -35,7 +35,7 @@ class EntityThrownTridentTest { @MockLevel Level level; - @MockEntity(type = EntityPig.class, position = {0, 64, 0}) + @MockEntity(position = {0, 64, 0}) EntityPig pig; EntityThrownTrident trident; From 56bddf37eaa59a9173ae1e759705e8f8a7278241 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 21 Dec 2021 14:46:26 -0300 Subject: [PATCH 337/394] Fix: Survival players were able to fake-pickup creative tridents --- CHANGELOG.md | 7 ++++- .../projectile/EntityThrownTrident.java | 26 ++++++++++++++----- src/main/java/cn/nukkit/item/ItemTrident.java | 3 ++- 3 files changed, 28 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1be25b36de8..dfd77d680e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,11 +12,12 @@ Click the link above to see the future. This work in progress version supports Minecraft `1.18.0`. ### CRITICAL SECURITY FIX -- [#1266] Changed Log4J library from `2.13.3` to `2.15.0` +- [#1266] Changed Log4J library from `2.13.3` to `2.17.0` ### Breaking changes - [#1267] Changed Nimbus Jose JWT library from `7.9` to `9.13` - [#1267] Removed some deprecated APIs, check the JDiff for details. +- [#1267] Changed the method signature to customize the boss bar color ### Depreciation - [#1266] Some APIs become deprecated, check the JDiff for details. @@ -27,6 +28,10 @@ This work in progress version supports Minecraft `1.18.0`. ### Fixes - [#267] Regression of: Fishing hooks without players, loaded from the level save. - [#1267] Network decoding of the `MoveEntityDeltaPacket` +- [#1267] `isOp` param of the `CapturingCommandSender` constructors were not being used +- [#1267] Boats placed by dispenser could have the wrong wood type +- [#1267] Falling anvil was not dealing damage to the entities correctly +- [#1267] Some randomizers could pick the same number over and over again. ### Documentation - [#1267] Added all missing `@PowerNukkitOnly` annotations diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index 3b8ed42a318..493e2101eac 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -1,6 +1,7 @@ package cn.nukkit.entity.projectile; import cn.nukkit.Player; +import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @@ -54,8 +55,6 @@ public class EntityThrownTrident extends EntityProjectile { private int favoredSlot; - private boolean isCreative; - private boolean player; // Enchantment @@ -141,9 +140,15 @@ protected void initEntity() { this.pickupMode = namedTag.contains(TAG_PICKUP) ? namedTag.getByte(TAG_PICKUP) : PICKUP_ANY; this.damage = namedTag.contains("damage") ? namedTag.getDouble("damage") : 8; this.favoredSlot = namedTag.contains(TAG_FAVORED_SLOT) ? namedTag.getInt(TAG_FAVORED_SLOT) : -1; - this.isCreative = namedTag.contains(TAG_CREATIVE) && namedTag.getBoolean(TAG_CREATIVE); this.player = !namedTag.contains(TAG_PLAYER) || namedTag.getBoolean(TAG_PLAYER); + if (namedTag.contains(TAG_CREATIVE)) { + if (pickupMode == EntityThrownTrident.PICKUP_ANY && namedTag.getBoolean(TAG_CREATIVE)) { + pickupMode = EntityThrownTrident.PICKUP_CREATIVE; + } + namedTag.remove(TAG_CREATIVE); + } + if (namedTag.contains(TAG_TRIDENT)) { this.trident = NBTIO.getItemHelper(namedTag.getCompound(TAG_TRIDENT)); this.loyaltyLevel = this.trident.getEnchantmentLevel(Enchantment.ID_TRIDENT_LOYALTY); @@ -190,7 +195,6 @@ public void saveNBT() { .add(new IntTag("2", this.stuckToBlockPos.z)) ); this.namedTag.putInt(TAG_FAVORED_SLOT, this.favoredSlot); - this.namedTag.putBoolean(TAG_CREATIVE, this.isCreative); this.namedTag.putBoolean(TAG_PLAYER, this.player); } @@ -425,14 +429,24 @@ public void setFavoredSlot(int favoredSlot) { @PowerNukkitOnly @Since("1.4.0.0-PN") + @Deprecated + @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", replaceWith = "getPickupMode() == EntityProjectile.PICKUP_CREATIVE", + reason = "Nukkit added this API in 3-states, NONE, ANY, and CREATIVE") public boolean isCreative() { - return isCreative; + return getPickupMode() == EntityProjectile.PICKUP_CREATIVE; } @PowerNukkitOnly @Since("1.4.0.0-PN") + @Deprecated + @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", replaceWith = "setPickupMode(EntityProjectile.PICKUP_)", + reason = "Nukkit added this API in 3-states, NONE, ANY, and CREATIVE") public void setCreative(boolean isCreative) { - this.isCreative = isCreative; + if (isCreative) { + setPickupMode(EntityProjectile.PICKUP_CREATIVE); + } else if (getPickupMode() == EntityProjectile.PICKUP_CREATIVE) { + setPickupMode(EntityProjectile.PICKUP_ANY); + } } @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/item/ItemTrident.java b/src/main/java/cn/nukkit/item/ItemTrident.java index b44054e10f8..da10838fb70 100644 --- a/src/main/java/cn/nukkit/item/ItemTrident.java +++ b/src/main/java/cn/nukkit/item/ItemTrident.java @@ -3,6 +3,7 @@ import cn.nukkit.Player; import cn.nukkit.Server; import cn.nukkit.api.PowerNukkitDifference; +import cn.nukkit.entity.projectile.EntityProjectile; import cn.nukkit.entity.projectile.EntityThrownTrident; import cn.nukkit.event.entity.EntityShootBowEvent; import cn.nukkit.event.entity.ProjectileLaunchEvent; @@ -76,7 +77,7 @@ public boolean onRelease(Player player, int ticksUsed) { double f = Math.min((p * p + p * 2) / 3, 1) * 2.5; if (player.isCreative()) { - trident.setCreative(true); + trident.setPickupMode(EntityProjectile.PICKUP_CREATIVE); } trident.setFavoredSlot(player.getInventory().getHeldItemIndex()); From 2b8830a67737bbaebef183970fedf16297068eb2 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 21 Dec 2021 15:59:53 -0300 Subject: [PATCH 338/394] Create a test unit for the trident fix --- CHANGELOG.md | 8 ++++++++ .../entity/projectile/EntityThrownTrident.java | 7 ++----- .../projectile/EntityThrownTridentTest.java | 18 +++++++++++++++++- 3 files changed, 27 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dfd77d680e9..97fdedc3456 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,9 +18,15 @@ This work in progress version supports Minecraft `1.18.0`. - [#1267] Changed Nimbus Jose JWT library from `7.9` to `9.13` - [#1267] Removed some deprecated APIs, check the JDiff for details. - [#1267] Changed the method signature to customize the boss bar color +- [#1267] `ItemArmor.TIER_OTHER` is not a constant anymore. ### Depreciation - [#1266] Some APIs become deprecated, check the JDiff for details. +- [#1266] `ItemTrident.setCreative` and `getCreative` are now deprecated. + +### Added +- [#1266] API to get the potion names, level in roman string and tipped arrow potion. +- [#1266] API for the banner pattern snout (Piglin) ### Changed - [#1258] Changed supported version to Minecraft Bedrock Edition `1.18.0`. @@ -32,6 +38,8 @@ This work in progress version supports Minecraft `1.18.0`. - [#1267] Boats placed by dispenser could have the wrong wood type - [#1267] Falling anvil was not dealing damage to the entities correctly - [#1267] Some randomizers could pick the same number over and over again. +- [#1267] Bowl and Crossbow fuel time +- [#1267] The durability of some items ### Documentation - [#1267] Added all missing `@PowerNukkitOnly` annotations diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index 493e2101eac..c3d6a89cdb7 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -143,8 +143,8 @@ protected void initEntity() { this.player = !namedTag.contains(TAG_PLAYER) || namedTag.getBoolean(TAG_PLAYER); if (namedTag.contains(TAG_CREATIVE)) { - if (pickupMode == EntityThrownTrident.PICKUP_ANY && namedTag.getBoolean(TAG_CREATIVE)) { - pickupMode = EntityThrownTrident.PICKUP_CREATIVE; + if (pickupMode == PICKUP_ANY && namedTag.getBoolean(TAG_CREATIVE)) { + pickupMode = PICKUP_CREATIVE; } namedTag.remove(TAG_CREATIVE); } @@ -429,9 +429,6 @@ public void setFavoredSlot(int favoredSlot) { @PowerNukkitOnly @Since("1.4.0.0-PN") - @Deprecated - @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", replaceWith = "getPickupMode() == EntityProjectile.PICKUP_CREATIVE", - reason = "Nukkit added this API in 3-states, NONE, ANY, and CREATIVE") public boolean isCreative() { return getPickupMode() == EntityProjectile.PICKUP_CREATIVE; } diff --git a/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java b/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java index f763c1073c7..5f278c5dbfb 100644 --- a/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java +++ b/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java @@ -19,7 +19,7 @@ import org.powernukkit.tests.api.MockLevel; import org.powernukkit.tests.junit.jupiter.PowerNukkitExtension; -import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.*; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; @@ -46,6 +46,22 @@ void setUp() { trident = new EntityThrownTrident(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0))); } + @Test + void backwardIsCreative() { + trident = new EntityThrownTrident(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0)) + .putBoolean("isCreative", true)); + assertTrue(trident.isCreative()); + + trident = new EntityThrownTrident(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0)) + .putBoolean("isCreative", false)); + assertFalse(trident.isCreative()); + + trident = new EntityThrownTrident(level.getChunk(0, 0), Entity.getDefaultNBT(new Vector3(0, 64, 0)) + .putBoolean("isCreative", true) + .putByte("pickup", EntityProjectile.PICKUP_NONE)); + assertFalse(trident.isCreative()); + } + @Test void pickupMode() { trident.setPickupMode(EntityProjectile.PICKUP_CREATIVE); From 3281db336d2c39a2bad074c83e3dfe1657caad8e Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 21 Dec 2021 16:08:24 -0300 Subject: [PATCH 339/394] Changes the version to 1.5.2.1-PN-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index af60939bcd7..e1aaf34bc6e 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.5.2.0-PN-CUSTOM + 1.5.2.1-PN-SNAPSHOT 2020 From f44546c6b09db561db5c92101eae2339591336ad Mon Sep 17 00:00:00 2001 From: PleaseInsertNameHere <73995049+PleaseInsertNameHere@users.noreply.github.com> Date: Sat, 11 Dec 2021 13:47:19 +0100 Subject: [PATCH 340/394] Bump log4j to 2.15.0 (cherry picked from commit 82d6898cfdb435dc73b3b38e880068e8b60e1c26) --- pom.xml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e1aaf34bc6e..aaa642d6675 100644 --- a/pom.xml +++ b/pom.xml @@ -73,7 +73,7 @@ 1.8 5.7.2 3.11.2 - 2.13.3 + 2.15.0 UTF-8 UTF-8 3.9.0 @@ -176,6 +176,14 @@ com.google.code.gson gson + + org.apache.logging.log4j + log4j-api + + + org.apache.logging.log4j + log4j-core + From 5327a72d9327e8de9b955ef13be7de14301290a2 Mon Sep 17 00:00:00 2001 From: PleaseInsertNameHere <73995049+PleaseInsertNameHere@users.noreply.github.com> Date: Sat, 11 Dec 2021 13:52:10 +0100 Subject: [PATCH 341/394] Bump log4j to 2.15.0 | Fix build errors (cherry picked from commit 0a8ef2fc20f6b634115afd28ebde62f024d6222b) --- pom.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index aaa642d6675..5256def0db3 100644 --- a/pom.xml +++ b/pom.xml @@ -176,14 +176,6 @@ com.google.code.gson gson - - org.apache.logging.log4j - log4j-api - - - org.apache.logging.log4j - log4j-core - @@ -195,6 +187,14 @@ com.google.code.gson gson + + org.apache.logging.log4j + log4j-api + + + org.apache.logging.log4j + log4j-core + From deb44dacfc26eb9b867f40299e5d725558f9c6f4 Mon Sep 17 00:00:00 2001 From: PleaseInsertNameHere <73995049+PleaseInsertNameHere@users.noreply.github.com> Date: Wed, 15 Dec 2021 22:11:09 +0100 Subject: [PATCH 342/394] Bump log4j to 2.16.0 (cherry picked from commit 6462309df794049272e60e86b5bab39828051cfe) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5256def0db3..d9355f7fcd8 100644 --- a/pom.xml +++ b/pom.xml @@ -73,7 +73,7 @@ 1.8 5.7.2 3.11.2 - 2.15.0 + 2.16.0 UTF-8 UTF-8 3.9.0 From 65354ac168744acbfc86271df97f03b8c0fe2f46 Mon Sep 17 00:00:00 2001 From: PleaseInsertNameHere <73995049+PleaseInsertNameHere@users.noreply.github.com> Date: Sat, 18 Dec 2021 22:17:51 +0100 Subject: [PATCH 343/394] Bump to 2.17.0 (cherry picked from commit 4d7b0f68392cef4af768a16ec66ec97490619a91) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d9355f7fcd8..9631f3b21ed 100644 --- a/pom.xml +++ b/pom.xml @@ -73,7 +73,7 @@ 1.8 5.7.2 3.11.2 - 2.16.0 + 2.17.0 UTF-8 UTF-8 3.9.0 From 5c5bc38f1d9aad5d005e40a3c36948432e32fd40 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 21 Dec 2021 16:17:54 -0300 Subject: [PATCH 344/394] Release 1.5.2.1-PN --- CHANGELOG.md | 10 +++++++++- README.md | 4 ++-- pom.xml | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69ebc6b7b1b..6b530003eb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,11 @@ Nukkit 1.X and 2.X. ## [Unreleased 1.6.0.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/29?closed=1)) Click the link above to see the future. +## [1.5.2.1-PN] - 2021-12-21 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/30?closed=1)) + +### CRITICAL SECURITY FIX +- [#1266], [#1270] Changed Log4J library from `2.13.3` to `2.17.0` + ## [1.5.2.0-PN] - 2021-12-01 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/28?closed=1)) This new version add protocol support for Minecraft `1.17.40` as if it was `1.16.221` with some new features and fixes. @@ -763,7 +768,8 @@ Fixes several anvil issues. [updated changelog]:https://github.com/PowerNukkit/PowerNukkit/blob/bleeding/CHANGELOG.md [discord guild]: https://powernukkit.org/discord -[Unreleased 1.6.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.2.0-PN...bleeding +[Unreleased 1.6.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.2.1-PN...bleeding +[1.5.2.1-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.2.0-PN...v1.5.2.1-PN [1.5.2.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.1.0-PN...v1.5.2.0-PN [1.5.1.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.0.0-PN...v1.5.1.0-PN [1.5.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.4.0.0-PN...v1.5.0.0-PN @@ -957,3 +963,5 @@ Fixes several anvil issues. [#1233]: https://github.com/PowerNukkit/PowerNukkit/issues/1233 [#1244]: https://github.com/PowerNukkit/PowerNukkit/issues/1244 [#1216]: https://github.com/PowerNukkit/PowerNukkit/issues/1216 +[#1266]: https://github.com/PowerNukkit/PowerNukkit/issues/1266 +[#1270]: https://github.com/PowerNukkit/PowerNukkit/issues/1270 diff --git a/README.md b/README.md index d407d9651c8..9aec18ee812 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ repositories { } dependencies { - compile group: 'org.powernukkit', name: 'powernukkit', version: '1.5.2.0-PN' + compile group: 'org.powernukkit', name: 'powernukkit', version: '1.5.2.1-PN' } ``` @@ -60,7 +60,7 @@ dependencies { org.powernukkit powernukkit - 1.5.2.0-PN + 1.5.2.1-PN ``` diff --git a/pom.xml b/pom.xml index 9631f3b21ed..a2dce381d68 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.5.2.1-PN-SNAPSHOT + 1.5.2.1-PN 2020 From a8304eef9a3efcf0cc74027a308c6fcd6457ab6e Mon Sep 17 00:00:00 2001 From: PowerNukkitBot Date: Tue, 21 Dec 2021 14:22:33 -0500 Subject: [PATCH 345/394] Releasing PowerNukkit v1.5.2.1-PN From 10a33298453d733172c7d21626606f826b96f9ad Mon Sep 17 00:00:00 2001 From: joserobjr Date: Tue, 21 Dec 2021 16:36:38 -0300 Subject: [PATCH 346/394] Add custom suffix --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a2dce381d68..6a3db674778 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.5.2.1-PN + 1.5.2.1-PN-CUSTOM 2020 From 7774e6c88cfb605d462f1c962f6e69836e05262e Mon Sep 17 00:00:00 2001 From: Petteri <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 22 Dec 2021 12:53:10 +0200 Subject: [PATCH 347/394] Fix player data properties being sent twice (#1935) --- src/main/java/cn/nukkit/Player.java | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index b72ff6a9ca6..b22f0d10dbb 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -1295,20 +1295,6 @@ public Item[] getDrops() { return new Item[0]; } - @Override - public boolean setDataProperty(EntityData data) { - return setDataProperty(data, true); - } - - @Override - public boolean setDataProperty(EntityData data, boolean send) { - if (super.setDataProperty(data, send)) { - if (send) this.sendData(this, new EntityMetadata().put(this.getDataProperty(data.getId()))); - return true; - } - return false; - } - @Override protected void checkGroundState(double movX, double movY, double movZ, double dx, double dy, double dz) { if (!this.onGround || movX != 0 || movY != 0 || movZ != 0) { From 5ae52285f0e0280fbc7e9213deea62567cc6ea85 Mon Sep 17 00:00:00 2001 From: Petteri <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 22 Dec 2021 12:58:57 +0200 Subject: [PATCH 348/394] Send normal data flags with extended flags (#1937) --- src/main/java/cn/nukkit/entity/Entity.java | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 682239c84dd..cfa8e0e7f71 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -2355,14 +2355,20 @@ public boolean setDataProperty(EntityData data) { } public boolean setDataProperty(EntityData data, boolean send) { - if (!Objects.equals(data, this.getDataProperties().get(data.getId()))) { - this.getDataProperties().put(data); - if (send) { - this.sendData(this.hasSpawned.values().toArray(new Player[0]), new EntityMetadata().put(this.dataProperties.get(data.getId()))); + if (Objects.equals(data, this.dataProperties.get(data.getId()))) { + return false; + } + + this.dataProperties.put(data); + if (send) { + EntityMetadata metadata = new EntityMetadata(); + metadata.put(this.dataProperties.get(data.getId())); + if (data.getId() == DATA_FLAGS_EXTENDED) { + metadata.put(this.dataProperties.get(DATA_FLAGS)); } - return true; + this.sendData(this.hasSpawned.values().toArray(new Player[0]), metadata); } - return false; + return true; } public EntityMetadata getDataProperties() { From 12a2d3fc9a73ec17ef7b7e7227226bc44a8accac Mon Sep 17 00:00:00 2001 From: Petteri <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 22 Dec 2021 12:59:12 +0200 Subject: [PATCH 349/394] Item Net ID (#1933) --- src/main/java/cn/nukkit/utils/BinaryStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index 66e5984bc90..999c0c6a69a 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -508,7 +508,7 @@ public void putSlot(Item item, boolean instanceItem) { if (!instanceItem) { this.putBoolean(true); - this.putVarInt(0); //TODO + this.putVarInt(1); } Block block = item.getBlockUnsafe(); From 4451117d809f9d5a4c65a3a1da7002b03b2fbc1f Mon Sep 17 00:00:00 2001 From: Petteri <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 22 Dec 2021 13:22:34 +0200 Subject: [PATCH 350/394] Make player movement more accurate (#1936) --- src/main/java/cn/nukkit/Player.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index b22f0d10dbb..44db154272a 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -2295,11 +2295,12 @@ public void onCompletion(Server server) { MovePlayerPacket movePlayerPacket = (MovePlayerPacket) packet; Vector3 newPos = new Vector3(movePlayerPacket.x, movePlayerPacket.y - this.getEyeHeight(), movePlayerPacket.z); - if (newPos.distanceSquared(this) < 0.01 && movePlayerPacket.yaw % 360 == this.yaw && movePlayerPacket.pitch % 360 == this.pitch) { + double dis = newPos.distanceSquared(this); + if (dis == 0 && movePlayerPacket.yaw % 360 == this.yaw && movePlayerPacket.pitch % 360 == this.pitch) { break; } - if (newPos.distanceSquared(this) > 100) { + if (dis > 100) { this.sendPosition(this, movePlayerPacket.yaw, movePlayerPacket.pitch, MovePlayerPacket.MODE_RESET); break; } From 47e7289c184935fd38a933005e1d41371294f3d7 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Fri, 24 Dec 2021 02:46:26 -0300 Subject: [PATCH 351/394] Fixes BlockState.equals in Kotlin --- src/main/java/cn/nukkit/blockstate/BlockState.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/blockstate/BlockState.java b/src/main/java/cn/nukkit/blockstate/BlockState.java index 55b74720be6..20caf6c9bba 100644 --- a/src/main/java/cn/nukkit/blockstate/BlockState.java +++ b/src/main/java/cn/nukkit/blockstate/BlockState.java @@ -593,7 +593,7 @@ public boolean isDefaultState() { } @Override - public boolean equals(Object o) { + public boolean equals(@Nullable Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; From e5d32878cb7d55dec9b477da76b6e7b723abec19 Mon Sep 17 00:00:00 2001 From: Woder <17339354+wode490390@users.noreply.github.com> Date: Tue, 28 Dec 2021 23:54:34 +0800 Subject: [PATCH 352/394] Fixed maximum message size limits to match vanilla (#1938) --- src/main/java/cn/nukkit/Player.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 44db154272a..29638baa0b9 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -3449,7 +3449,7 @@ public boolean chat(String message) { } for (String msg : message.split("\n")) { - if (!msg.trim().isEmpty() && msg.length() <= 255 && this.messageCounter-- > 0) { + if (!msg.trim().isEmpty() && msg.length() <= 512 && this.messageCounter-- > 0) { PlayerChatEvent chatEvent = new PlayerChatEvent(this, msg); this.server.getPluginManager().callEvent(chatEvent); if (!chatEvent.isCancelled()) { From 5c6d80d9b41c8dad869e4550e1d3849146f93984 Mon Sep 17 00:00:00 2001 From: Woder <17339354+wode490390@users.noreply.github.com> Date: Mon, 3 Jan 2022 04:15:33 +0800 Subject: [PATCH 353/394] Cornflower and Lily of the Valley can now be generated in flower forest biome (#1941) --- src/main/java/cn/nukkit/block/BlockFlower.java | 6 ++++-- .../nukkit/level/biome/impl/forest/FlowerForestBiome.java | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/main/java/cn/nukkit/block/BlockFlower.java b/src/main/java/cn/nukkit/block/BlockFlower.java index c3d41cb842a..60b7e1a24c7 100644 --- a/src/main/java/cn/nukkit/block/BlockFlower.java +++ b/src/main/java/cn/nukkit/block/BlockFlower.java @@ -24,6 +24,8 @@ public class BlockFlower extends BlockFlowable { public static final int TYPE_WHITE_TULIP = 6; public static final int TYPE_PINK_TULIP = 7; public static final int TYPE_OXEYE_DAISY = 8; + public static final int TYPE_CORNFLOWER = 9; + public static final int TYPE_LILY_OF_THE_VALLEY = 10; public BlockFlower() { this(0); @@ -50,8 +52,8 @@ public String getName() { "White Tulip", "Pink Tulip", "Oxeye Daisy", - "Unknown", - "Unknown", + "Cornflower", + "Lily of the Valley", "Unknown", "Unknown", "Unknown", diff --git a/src/main/java/cn/nukkit/level/biome/impl/forest/FlowerForestBiome.java b/src/main/java/cn/nukkit/level/biome/impl/forest/FlowerForestBiome.java index bf6e4156996..714ab73fd31 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/forest/FlowerForestBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/forest/FlowerForestBiome.java @@ -28,6 +28,8 @@ public FlowerForestBiome(int type) { flower.addType(RED_FLOWER, BlockFlower.TYPE_WHITE_TULIP); flower.addType(RED_FLOWER, BlockFlower.TYPE_PINK_TULIP); flower.addType(RED_FLOWER, BlockFlower.TYPE_OXEYE_DAISY); + flower.addType(RED_FLOWER, BlockFlower.TYPE_CORNFLOWER); + flower.addType(RED_FLOWER, BlockFlower.TYPE_LILY_OF_THE_VALLEY); flower.addType(DOUBLE_PLANT, BlockDoublePlant.LILAC); flower.addType(DOUBLE_PLANT, BlockDoublePlant.ROSE_BUSH); flower.addType(DOUBLE_PLANT, BlockDoublePlant.PEONY); From 1ed5cf6cf330460c7404fd9af150094176555d01 Mon Sep 17 00:00:00 2001 From: Kheshav Sewnundun Date: Mon, 3 Jan 2022 00:19:05 +0400 Subject: [PATCH 354/394] Update Log4j to 2.17.1 (#1939) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 19717e4c178..ac50c3af3d0 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ 1.8 5.0.0-M4 1.0.0-M4 - 2.17.0 + 2.17.1 UTF-8 3.9.0 From 6d22283ba325c045b298ec2fd99ca552b4e00995 Mon Sep 17 00:00:00 2001 From: Ermolay <60964356+Egor-Ermolaev@users.noreply.github.com> Date: Mon, 10 Jan 2022 21:42:25 +0300 Subject: [PATCH 355/394] Correction of efficiency in Block.java In the article about breaking blocks (https://minecraft.fandom.com/wiki/Breaking ) exponentiation is used to calculate the speed. In java, exponentiation is achieved thanks to Math.pow(). This solves all the problems with breaking blocks with a pickaxe with enchantment efficiency. --- src/main/java/cn/nukkit/block/Block.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index 5ee8d440d1f..ee974810fa7 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -1343,7 +1343,7 @@ public double calculateBreakTime(@Nonnull Item item, @Nullable Player player) { .map(Enchantment::getLevel).orElse(0); if (canHarvest && efficiencyLevel > 0) { - speedMultiplier += efficiencyLevel ^ 2 + 1; + speedMultiplier += Math.pow(efficiencyLevel, 2) + 1; } if (hasConduitPower) hasteEffectLevel = Integer.max(hasteEffectLevel, 2); From 95ea0fd6d7277bc1f8a9c630caa7e0aba519dcc9 Mon Sep 17 00:00:00 2001 From: roridev Date: Wed, 26 Jan 2022 13:30:20 -0300 Subject: [PATCH 356/394] Fix nametag being applied on adventure mode (#1298) --- src/main/java/cn/nukkit/entity/EntityCreature.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/entity/EntityCreature.java b/src/main/java/cn/nukkit/entity/EntityCreature.java index 5a57a7a4ff8..8e20e723525 100644 --- a/src/main/java/cn/nukkit/entity/EntityCreature.java +++ b/src/main/java/cn/nukkit/entity/EntityCreature.java @@ -23,7 +23,7 @@ public EntityCreature(FullChunk chunk, CompoundTag nbt) { // Armor stands, when implemented, should also check this. @Override public boolean onInteract(Player player, Item item, Vector3 clickedPos) { - if (item.getId() == Item.NAME_TAG) { + if (item.getId() == Item.NAME_TAG && !player.isAdventure()) { return applyNameTag(player, item); } return false; From daa9576271d2ee9b910d666900910505f8379a83 Mon Sep 17 00:00:00 2001 From: roridev Date: Sun, 6 Feb 2022 14:42:45 -0300 Subject: [PATCH 357/394] Fix nametag deleting the whole stack on right-click --- src/main/java/cn/nukkit/entity/EntityNameable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/entity/EntityNameable.java b/src/main/java/cn/nukkit/entity/EntityNameable.java index 0786f1ca83a..2498555eb11 100644 --- a/src/main/java/cn/nukkit/entity/EntityNameable.java +++ b/src/main/java/cn/nukkit/entity/EntityNameable.java @@ -58,7 +58,7 @@ default boolean playerApplyNameTag(@Nonnull Player player, @Nonnull Item item, b this.setNameTagVisible(true); if(consume && !player.isCreative()) { - player.getInventory().removeItem(item); + item.decrement(1); } // Set entity as persistent. return true; From d07434cb127e82bb613bb184cd347f62c13cfe48 Mon Sep 17 00:00:00 2001 From: Ermolay <60964356+Egor-Ermolaev@users.noreply.github.com> Date: Wed, 9 Feb 2022 13:47:41 +0300 Subject: [PATCH 358/394] Potion Speed II, fix time of action Level 2 Speed Potion should run for 90 seconds, not 8 minutes (480 sec) https://youtu.be/QFIFExQ3XVo --- src/main/java/cn/nukkit/potion/Potion.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/potion/Potion.java b/src/main/java/cn/nukkit/potion/Potion.java index df3b9629183..7404709c109 100644 --- a/src/main/java/cn/nukkit/potion/Potion.java +++ b/src/main/java/cn/nukkit/potion/Potion.java @@ -410,7 +410,6 @@ public static int getApplySeconds(int potionType, boolean isSplash) { case NIGHT_VISION_LONG: case STRENGTH_LONG: case WATER_BREATHING_LONG: - case SPEED_II: case SPEED_LONG: case FIRE_RESISTANCE_LONG: case LEAPING_LONG: @@ -420,6 +419,7 @@ public static int getApplySeconds(int potionType, boolean isSplash) { case WEAKNESS: case STRENGTH_II: case SLOWNESS: + case SPEED_II: return 90; case SLOWNESS_LONG: case WEAKNESS_LONG: From 64876eccafb4c9a92b2b2c2496a60bd1b300644a Mon Sep 17 00:00:00 2001 From: Alemiz <45739737+Alemiz112@users.noreply.github.com> Date: Wed, 9 Feb 2022 10:57:59 +0100 Subject: [PATCH 359/394] Add support for 1.18.10 (#1962) * Add support for 1.18.10 * Fix creative items, recipes * Support baseGameVersion 1.18 --- src/main/java/cn/nukkit/entity/Entity.java | 2 + .../java/cn/nukkit/level/biome/Biome.java | 37 +- .../cn/nukkit/level/format/anvil/Anvil.java | 43 +- .../level/util/PalettedBlockStorage.java | 29 +- .../network/protocol/BossEventPacket.java | 9 +- .../network/protocol/LevelChunkPacket.java | 12 +- .../protocol/LevelSoundEventPacket.java | 5 +- .../nukkit/network/protocol/ProtocolInfo.java | 4 +- .../network/protocol/StartGamePacket.java | 6 +- .../java/cn/nukkit/utils/BinaryStream.java | 2 +- src/main/resources/biome_id_map.json | 85 ++ src/main/resources/creative_items.json | 874 +++++++++--------- src/main/resources/runtime_item_states.json | 130 ++- 13 files changed, 735 insertions(+), 503 deletions(-) create mode 100644 src/main/resources/biome_id_map.json diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index 64477c77048..d03895bb576 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -336,6 +336,8 @@ public abstract class Entity extends Location implements Metadatable { @Since("1.5.0.0-PN") public static final int DATA_FLAG_PLAYING_DEAD = dynamic(97); @Since("FUTURE") public static final int DATA_FLAG_IN_ASCENDABLE_BLOCK = dynamic(98); @Since("FUTURE") public static final int DATA_FLAG_OVER_DESCENDABLE_BLOCK = dynamic(99); + public static final int DATA_FLAG_CROAKING = 100; + public static final int DATA_FLAG_EAT_MOB = 101; public static long entityCount = 1; diff --git a/src/main/java/cn/nukkit/level/biome/Biome.java b/src/main/java/cn/nukkit/level/biome/Biome.java index 57b7bfa4c54..bab9a2ce88d 100644 --- a/src/main/java/cn/nukkit/level/biome/Biome.java +++ b/src/main/java/cn/nukkit/level/biome/Biome.java @@ -7,7 +7,15 @@ import cn.nukkit.level.format.FullChunk; import cn.nukkit.level.generator.populator.type.Populator; import cn.nukkit.math.NukkitRandom; - +import com.google.gson.JsonObject; +import com.google.gson.JsonParser; +import it.unimi.dsi.fastutil.ints.Int2ObjectMap; +import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; +import it.unimi.dsi.fastutil.objects.ObjectArrayList; + +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; import java.util.ArrayList; import java.util.List; @@ -15,15 +23,40 @@ * @author MagicDroidX (Nukkit Project) */ public abstract class Biome implements BlockID { + public static final int MAX_BIOMES = 256; public static final Biome[] biomes = new Biome[MAX_BIOMES]; - public static final List unorderedBiomes = new ArrayList<>(); + public static final List unorderedBiomes = new ObjectArrayList<>(); + private static final Int2ObjectMap runtimeId2Identifier = new Int2ObjectOpenHashMap<>(); private final ArrayList populators = new ArrayList<>(); private int id; private float baseHeight = 0.1f; private float heightVariation = 0.3f; + static { + try (InputStream stream = Biome.class.getClassLoader().getResourceAsStream("biome_id_map.json")) { + JsonObject json = JsonParser.parseReader(new InputStreamReader(stream)).getAsJsonObject(); + for (String identifier : json.keySet()) { + int biomeId = json.get(identifier).getAsInt(); + runtimeId2Identifier.put(biomeId, identifier); + } + } catch (NullPointerException | IOException e) { + throw new AssertionError("Unable to load biome mapping from biome_id_map.json", e); + } + } + + public static String getBiomeNameFromId(int biomeId) { + return runtimeId2Identifier.get(biomeId); + } + + public static int getBiomeIdOrCorrect(int biomeId) { + if (runtimeId2Identifier.get(biomeId) == null) { + return EnumBiome.OCEAN.id; + } + return biomeId; + } + protected static void register(int id, Biome biome) { biome.setId(id); biomes[id] = biome; diff --git a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java index 4d848ae1ab0..15d11ad0e56 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java +++ b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java @@ -5,11 +5,13 @@ import cn.nukkit.blockentity.BlockEntity; import cn.nukkit.blockentity.BlockEntitySpawnable; import cn.nukkit.level.Level; +import cn.nukkit.level.biome.Biome; import cn.nukkit.level.format.FullChunk; import cn.nukkit.level.format.generic.BaseFullChunk; import cn.nukkit.level.format.generic.BaseLevelProvider; import cn.nukkit.level.format.generic.BaseRegionLoader; import cn.nukkit.level.generator.Generator; +import cn.nukkit.level.util.PalettedBlockStorage; import cn.nukkit.nbt.NBTIO; import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.scheduler.AsyncTask; @@ -35,7 +37,8 @@ @Log4j2 public class Anvil extends BaseLevelProvider { public static final int VERSION = 19133; - static private final byte[] PAD_256 = new byte[256]; + private static final byte[] PAD_256 = new byte[256]; + public static final int EXTENDED_NEGATIVE_SUB_CHUNKS = 4; public Anvil(Level level, String path) throws IOException { super(level, path); @@ -142,7 +145,6 @@ public AsyncTask requestChunkTask(int x, int z) throws ChunkException { } } - BinaryStream stream = ThreadCache.binaryStream.get().reset(); int count = 0; cn.nukkit.level.format.ChunkSection[] sections = chunk.getSections(); for (int i = sections.length - 1; i >= 0; i--) { @@ -152,17 +154,48 @@ public AsyncTask requestChunkTask(int x, int z) throws ChunkException { } } + // In 1.18 3D biome palettes were introduced. However, current world format + // used internally doesn't support them, so we need to convert from legacy 2D + byte[] biomePalettes = this.convert2DBiomesTo3D(chunk); + + BinaryStream stream = ThreadCache.binaryStream.get().reset(); + // Build up 4 SubChunks for the extended negative height + for (int i = 0; i < EXTENDED_NEGATIVE_SUB_CHUNKS; i++) { + stream.putByte((byte) 8); // SubChunk version + stream.putByte((byte) 0); // 0 layers + } + for (int i = 0; i < count; i++) { sections[i].writeTo(stream); } - stream.put(chunk.getBiomeIdArray()); + stream.put(biomePalettes); stream.putByte((byte) 0); // Border blocks stream.put(blockEntities); + this.getLevel().chunkRequestCallback(timestamp, x, z, EXTENDED_NEGATIVE_SUB_CHUNKS + count, stream.getBuffer()); + return null; + } - this.getLevel().chunkRequestCallback(timestamp, x, z, count, stream.getBuffer()); + private byte[] convert2DBiomesTo3D(BaseFullChunk chunk) { + PalettedBlockStorage palette = PalettedBlockStorage.createWithDefaultState(Biome.getBiomeIdOrCorrect(chunk.getBiomeId(0, 0))); + for (int x = 0; x < 16; x++) { + for (int z = 0; z < 16; z++) { + int biomeId = Biome.getBiomeIdOrCorrect(chunk.getBiomeId(x, z)); + for (int y = 0; y < 16; y++) { + palette.setBlock(x, y, z, biomeId); + } + } + } - return null; + BinaryStream stream = ThreadCache.binaryStream.get().reset(); + palette.writeTo(stream); + byte[] bytes = stream.getBuffer(); + stream.reset(); + + for (int i = 0; i < 25; i++) { + stream.put(bytes); + } + return stream.getBuffer(); } private int lastPosition = 0; diff --git a/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java b/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java index 5e3ad0e62cf..2484d8db35a 100644 --- a/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java +++ b/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java @@ -14,14 +14,27 @@ public class PalettedBlockStorage { private final IntList palette; private BitArray bitArray; - public PalettedBlockStorage() { - this(BitArrayVersion.V2); + public static PalettedBlockStorage createFromBlockPalette() { + return createFromBlockPalette(BitArrayVersion.V2); } - public PalettedBlockStorage(BitArrayVersion version) { + public static PalettedBlockStorage createFromBlockPalette(BitArrayVersion version) { + int runtimeId = GlobalBlockPalette.getOrCreateRuntimeId(0); // Air is first + return new PalettedBlockStorage(version, runtimeId); + } + + public static PalettedBlockStorage createWithDefaultState(int defaultState) { + return createWithDefaultState(BitArrayVersion.V2, defaultState); + } + + public static PalettedBlockStorage createWithDefaultState(BitArrayVersion version, int defaultState) { + return new PalettedBlockStorage(version, defaultState); + } + + private PalettedBlockStorage(BitArrayVersion version, int defaultState) { this.bitArray = version.createPalette(SIZE); this.palette = new IntArrayList(16); - this.palette.add(GlobalBlockPalette.getOrCreateRuntimeId(0)); // Air is at the start of every palette. + this.palette.add(defaultState); } private PalettedBlockStorage(BitArray bitArray, IntList palette) { @@ -33,6 +46,14 @@ private int getPaletteHeader(BitArrayVersion version, boolean runtime) { return (version.getId() << 1) | (runtime ? 1 : 0); } + private int getIndex(int x, int y, int z) { + return (x << 8) | (z << 4) | y; + } + + public void setBlock(int x, int y, int z, int runtimeId) { + this.setBlock(this.getIndex(x, y, z), runtimeId); + } + public void setBlock(int index, int runtimeId) { try { int id = this.idFor(runtimeId); diff --git a/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java b/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java index 2b8c3b3dd7b..854d88005af 100644 --- a/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java @@ -25,9 +25,10 @@ public class BossEventPacket extends DataPacket { /* S2C: Sets title of the bar. */ public static final int TYPE_TITLE = 5; /* S2C: Not sure on this. Includes color and overlay fields, plus an unknown short. TODO: check this */ - public static final int TYPE_UNKNOWN_6 = 6; + public static final int TYPE_UPDATE_PROPERTIES = 6; /* S2C: Sets color and overlay of the bar. */ public static final int TYPE_TEXTURE = 7; + public static final int TYPE_QUERY = 8; public long bossEid; public int type; @@ -50,12 +51,13 @@ public void decode() { switch (this.type) { case TYPE_REGISTER_PLAYER: case TYPE_UNREGISTER_PLAYER: + case TYPE_QUERY: this.playerEid = this.getEntityUniqueId(); break; case TYPE_SHOW: this.title = this.getString(); this.healthPercent = this.getLFloat(); - case TYPE_UNKNOWN_6: + case TYPE_UPDATE_PROPERTIES: this.unknown = (short) this.getShort(); case TYPE_TEXTURE: this.color = (int) this.getUnsignedVarInt(); @@ -78,12 +80,13 @@ public void encode() { switch (this.type) { case TYPE_REGISTER_PLAYER: case TYPE_UNREGISTER_PLAYER: + case TYPE_QUERY: this.putEntityUniqueId(this.playerEid); break; case TYPE_SHOW: this.putString(this.title); this.putLFloat(this.healthPercent); - case TYPE_UNKNOWN_6: + case TYPE_UPDATE_PROPERTIES: this.putShort(this.unknown); case TYPE_TEXTURE: this.putUnsignedVarInt(this.color); diff --git a/src/main/java/cn/nukkit/network/protocol/LevelChunkPacket.java b/src/main/java/cn/nukkit/network/protocol/LevelChunkPacket.java index 34643af62bb..2b94bd067ec 100644 --- a/src/main/java/cn/nukkit/network/protocol/LevelChunkPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/LevelChunkPacket.java @@ -18,6 +18,8 @@ public byte pid() { public int chunkZ; public int subChunkCount; public boolean cacheEnabled; + public boolean requestSubChunks; + public int subChunkLimit; public long[] blobIds; public byte[] data; @@ -31,7 +33,15 @@ public void encode() { this.reset(); this.putVarInt(this.chunkX); this.putVarInt(this.chunkZ); - this.putUnsignedVarInt(this.subChunkCount); + if (!this.requestSubChunks) { + this.putUnsignedVarInt(this.subChunkCount); + } else if (this.subChunkLimit < 0) { + this.putUnsignedVarInt(-1); + } else { + this.putUnsignedVarInt(-2); + this.putUnsignedVarInt(this.subChunkLimit); + } + this.putBoolean(cacheEnabled); if (this.cacheEnabled) { this.putUnsignedVarInt(blobIds.length); diff --git a/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java b/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java index ca523c49d3c..b9c757089c1 100644 --- a/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java @@ -386,7 +386,10 @@ public class LevelSoundEventPacket extends DataPacket { @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RECORD_OTHERSIDE = 371; @PowerNukkitDifference(info = "Not constant", since = "FUTURE") - public static final int SOUND_UNDEFINED = dynamic(372); + public static final int SOUND_TONGUE = dynamic(372); + public static final int SOUND_CRACK_IRON_GOLEM = 373; + public static final int SOUND_REPAIR_IRON_GOLEM = 374; + public static final int SOUND_UNDEFINED = 375; public int sound; public float x; diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index 94de069cabb..43489965822 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -21,8 +21,8 @@ public interface ProtocolInfo { List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION = dynamic("v1.18.0"); - String MINECRAFT_VERSION_NETWORK = dynamic("1.18.0"); + String MINECRAFT_VERSION = dynamic("v1.18.10"); + String MINECRAFT_VERSION_NETWORK = dynamic("1.18.10"); byte LOGIN_PACKET = 0x01; byte PLAY_STATUS_PACKET = 0x02; diff --git a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java index a01a6bc8e08..0d1eae33ed1 100644 --- a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java @@ -68,11 +68,7 @@ public byte pid() { public boolean isFromWorldTemplate = false; public boolean isWorldTemplateOptionLocked = false; public boolean isOnlySpawningV1Villagers = false; - - public String vanillaVersion = "1.17.40"; - //HACK: For now we can specify this version, since the new chunk changes are not relevant for our Anvil format. - //However, it could be that Microsoft will prevent this in a new update. - + public String vanillaVersion = ProtocolInfo.MINECRAFT_VERSION_NETWORK; public String levelId = ""; //base64 string, usually the same as world folder name in vanilla public String worldName; public String premiumWorldTemplateId = ""; diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index a2fd3bb2737..a547f5cd46c 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -440,7 +440,7 @@ public Item getSlot() { } if (compoundTag != null && compoundTag.getAllTags().size() > 0) { - if (compoundTag.contains("Damage")) { + if (compoundTag.contains("Damage") && !legacyEntry.isHasDamage()) { if (id > 255) { damage = compoundTag.getInt("Damage"); } diff --git a/src/main/resources/biome_id_map.json b/src/main/resources/biome_id_map.json new file mode 100644 index 00000000000..2ea58ae9cd6 --- /dev/null +++ b/src/main/resources/biome_id_map.json @@ -0,0 +1,85 @@ +{ + "bamboo_jungle": 48, + "bamboo_jungle_hills": 49, + "basalt_deltas": 181, + "beach": 16, + "birch_forest": 27, + "birch_forest_hills": 28, + "birch_forest_hills_mutated": 156, + "birch_forest_mutated": 155, + "cold_beach": 26, + "cold_ocean": 44, + "cold_taiga": 30, + "cold_taiga_hills": 31, + "cold_taiga_mutated": 158, + "crimson_forest": 179, + "deep_cold_ocean": 45, + "deep_frozen_ocean": 47, + "deep_lukewarm_ocean": 43, + "deep_ocean": 24, + "deep_warm_ocean": 41, + "desert": 2, + "desert_hills": 17, + "desert_mutated": 130, + "dripstone_caves": 188, + "extreme_hills": 3, + "extreme_hills_edge": 20, + "extreme_hills_mutated": 131, + "extreme_hills_plus_trees": 34, + "extreme_hills_plus_trees_mutated": 162, + "flower_forest": 132, + "forest": 4, + "forest_hills": 18, + "frozen_ocean": 46, + "frozen_peaks": 183, + "frozen_river": 11, + "grove": 185, + "hell": 8, + "ice_mountains": 13, + "ice_plains": 12, + "ice_plains_spikes": 140, + "jagged_peaks": 182, + "jungle": 21, + "jungle_edge": 23, + "jungle_edge_mutated": 151, + "jungle_hills": 22, + "jungle_mutated": 149, + "legacy_frozen_ocean": 10, + "lukewarm_ocean": 42, + "lush_caves": 187, + "meadow": 186, + "mega_taiga": 32, + "mega_taiga_hills": 33, + "mesa": 37, + "mesa_bryce": 165, + "mesa_plateau": 39, + "mesa_plateau_mutated": 167, + "mesa_plateau_stone": 38, + "mesa_plateau_stone_mutated": 166, + "mushroom_island": 14, + "mushroom_island_shore": 15, + "ocean": 0, + "plains": 1, + "redwood_taiga_hills_mutated": 161, + "redwood_taiga_mutated": 160, + "river": 7, + "roofed_forest": 29, + "roofed_forest_mutated": 157, + "savanna": 35, + "savanna_mutated": 163, + "savanna_plateau": 36, + "savanna_plateau_mutated": 164, + "snowy_slopes": 184, + "soulsand_valley": 178, + "stone_beach": 25, + "stony_peaks": 189, + "sunflower_plains": 129, + "swampland": 6, + "swampland_mutated": 134, + "taiga": 5, + "taiga_hills": 19, + "taiga_mutated": 133, + "the_end": 9, + "warm_ocean": 40, + "warped_forest": 180 +} \ No newline at end of file diff --git a/src/main/resources/creative_items.json b/src/main/resources/creative_items.json index 5bdc412a55a..dadabf91fcb 100644 --- a/src/main/resources/creative_items.json +++ b/src/main/resources/creative_items.json @@ -2,27 +2,27 @@ "items" : [ { "id" : "minecraft:planks", - "blockRuntimeId" : 5797 + "blockRuntimeId" : 5800 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5798 + "blockRuntimeId" : 5801 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5799 + "blockRuntimeId" : 5802 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5803 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5804 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5802 + "blockRuntimeId" : 5805 }, { "id" : "minecraft:crimson_planks", @@ -30,7 +30,7 @@ }, { "id" : "minecraft:warped_planks", - "blockRuntimeId" : 7598 + "blockRuntimeId" : 7596 }, { "id" : "minecraft:cobblestone_wall", @@ -94,11 +94,11 @@ }, { "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6041 + "blockRuntimeId" : 6044 }, { "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5838 + "blockRuntimeId" : 5841 }, { "id" : "minecraft:cobbled_deepslate_wall", @@ -110,7 +110,7 @@ }, { "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6216 + "blockRuntimeId" : 6219 }, { "id" : "minecraft:deepslate_brick_wall", @@ -142,7 +142,7 @@ }, { "id" : "minecraft:nether_brick_fence", - "blockRuntimeId" : 5689 + "blockRuntimeId" : 5690 }, { "id" : "minecraft:crimson_fence", @@ -150,7 +150,7 @@ }, { "id" : "minecraft:warped_fence", - "blockRuntimeId" : 7576 + "blockRuntimeId" : 7574 }, { "id" : "minecraft:fence_gate", @@ -158,7 +158,7 @@ }, { "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 7010 + "blockRuntimeId" : 7007 }, { "id" : "minecraft:birch_fence_gate", @@ -166,7 +166,7 @@ }, { "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5253 + "blockRuntimeId" : 5254 }, { "id" : "minecraft:acacia_fence_gate", @@ -182,27 +182,27 @@ }, { "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7577 + "blockRuntimeId" : 7575 }, { "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5708 + "blockRuntimeId" : 5709 }, { "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7281 + "blockRuntimeId" : 7278 }, { "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5668 + "blockRuntimeId" : 5669 }, { "id" : "minecraft:oak_stairs", - "blockRuntimeId" : 5717 + "blockRuntimeId" : 5718 }, { "id" : "minecraft:spruce_stairs", - "blockRuntimeId" : 7042 + "blockRuntimeId" : 7039 }, { "id" : "minecraft:birch_stairs", @@ -210,7 +210,7 @@ }, { "id" : "minecraft:jungle_stairs", - "blockRuntimeId" : 5285 + "blockRuntimeId" : 5286 }, { "id" : "minecraft:acacia_stairs", @@ -222,35 +222,35 @@ }, { "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7187 + "blockRuntimeId" : 7184 }, { "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5676 + "blockRuntimeId" : 5677 }, { "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6710 + "blockRuntimeId" : 6713 }, { "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6903 + "blockRuntimeId" : 6900 }, { "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6637 + "blockRuntimeId" : 6640 }, { "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6895 + "blockRuntimeId" : 6892 }, { "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4989 + "blockRuntimeId" : 4990 }, { "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6386 + "blockRuntimeId" : 6389 }, { "id" : "minecraft:diorite_stairs", @@ -258,7 +258,7 @@ }, { "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6378 + "blockRuntimeId" : 6381 }, { "id" : "minecraft:andesite_stairs", @@ -266,7 +266,7 @@ }, { "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5814 + "blockRuntimeId" : 5817 }, { "id" : "minecraft:brick_stairs", @@ -274,11 +274,11 @@ }, { "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5690 + "blockRuntimeId" : 5691 }, { "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6625 + "blockRuntimeId" : 6628 }, { "id" : "minecraft:end_brick_stairs", @@ -286,19 +286,19 @@ }, { "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6559 + "blockRuntimeId" : 6562 }, { "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6887 + "blockRuntimeId" : 6884 }, { "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6537 + "blockRuntimeId" : 6540 }, { "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6449 + "blockRuntimeId" : 6452 }, { "id" : "minecraft:dark_prismarine_stairs", @@ -306,7 +306,7 @@ }, { "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6441 + "blockRuntimeId" : 6444 }, { "id" : "minecraft:crimson_stairs", @@ -314,7 +314,7 @@ }, { "id" : "minecraft:warped_stairs", - "blockRuntimeId" : 7618 + "blockRuntimeId" : 7616 }, { "id" : "minecraft:blackstone_stairs", @@ -322,11 +322,11 @@ }, { "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6033 + "blockRuntimeId" : 6036 }, { "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5830 + "blockRuntimeId" : 5833 }, { "id" : "minecraft:cut_copper_stairs", @@ -338,27 +338,27 @@ }, { "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7745 + "blockRuntimeId" : 7743 }, { "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5758 + "blockRuntimeId" : 5760 }, { "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7689 + "blockRuntimeId" : 7687 }, { "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7703 + "blockRuntimeId" : 7701 }, { "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7731 + "blockRuntimeId" : 7729 }, { "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7717 + "blockRuntimeId" : 7715 }, { "id" : "minecraft:cobbled_deepslate_stairs", @@ -370,7 +370,7 @@ }, { "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6208 + "blockRuntimeId" : 6211 }, { "id" : "minecraft:deepslate_brick_stairs", @@ -405,11 +405,11 @@ }, { "id" : "minecraft:trapdoor", - "blockRuntimeId" : 7363 + "blockRuntimeId" : 7360 }, { "id" : "minecraft:spruce_trapdoor", - "blockRuntimeId" : 7066 + "blockRuntimeId" : 7063 }, { "id" : "minecraft:birch_trapdoor", @@ -417,7 +417,7 @@ }, { "id" : "minecraft:jungle_trapdoor", - "blockRuntimeId" : 5309 + "blockRuntimeId" : 5310 }, { "id" : "minecraft:acacia_trapdoor", @@ -429,7 +429,7 @@ }, { "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5168 + "blockRuntimeId" : 5169 }, { "id" : "minecraft:crimson_trapdoor", @@ -437,295 +437,295 @@ }, { "id" : "minecraft:warped_trapdoor", - "blockRuntimeId" : 7645 + "blockRuntimeId" : 7643 }, { "id" : "minecraft:iron_bars", - "blockRuntimeId" : 5133 + "blockRuntimeId" : 5134 }, { "id" : "minecraft:glass", - "blockRuntimeId" : 4883 + "blockRuntimeId" : 4884 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7088 + "blockRuntimeId" : 7085 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7096 + "blockRuntimeId" : 7093 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7095 + "blockRuntimeId" : 7092 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7103 + "blockRuntimeId" : 7100 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7100 + "blockRuntimeId" : 7097 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7102 + "blockRuntimeId" : 7099 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7089 + "blockRuntimeId" : 7086 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7092 + "blockRuntimeId" : 7089 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7093 + "blockRuntimeId" : 7090 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7101 + "blockRuntimeId" : 7098 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7097 + "blockRuntimeId" : 7094 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7091 + "blockRuntimeId" : 7088 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7099 + "blockRuntimeId" : 7096 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7098 + "blockRuntimeId" : 7095 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7090 + "blockRuntimeId" : 7087 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7094 + "blockRuntimeId" : 7091 }, { "id" : "minecraft:tinted_glass", - "blockRuntimeId" : 7352 + "blockRuntimeId" : 7349 }, { "id" : "minecraft:glass_pane", - "blockRuntimeId" : 4884 + "blockRuntimeId" : 4885 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7104 + "blockRuntimeId" : 7101 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7112 + "blockRuntimeId" : 7109 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7111 + "blockRuntimeId" : 7108 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7119 + "blockRuntimeId" : 7116 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7116 + "blockRuntimeId" : 7113 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7118 + "blockRuntimeId" : 7115 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7105 + "blockRuntimeId" : 7102 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7108 + "blockRuntimeId" : 7105 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7109 + "blockRuntimeId" : 7106 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7117 + "blockRuntimeId" : 7114 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7113 + "blockRuntimeId" : 7110 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7107 + "blockRuntimeId" : 7104 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7115 + "blockRuntimeId" : 7112 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7114 + "blockRuntimeId" : 7111 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7106 + "blockRuntimeId" : 7103 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7110 + "blockRuntimeId" : 7107 }, { "id" : "minecraft:ladder", - "blockRuntimeId" : 5357 + "blockRuntimeId" : 5358 }, { "id" : "minecraft:scaffolding", - "blockRuntimeId" : 6730 + "blockRuntimeId" : 6733 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7223 + "blockRuntimeId" : 7220 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7273 + "blockRuntimeId" : 7270 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7226 + "blockRuntimeId" : 7223 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7244 + "blockRuntimeId" : 7241 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7903 + "blockRuntimeId" : 7901 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7904 + "blockRuntimeId" : 7902 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7905 + "blockRuntimeId" : 7903 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7906 + "blockRuntimeId" : 7904 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7907 + "blockRuntimeId" : 7905 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7908 + "blockRuntimeId" : 7906 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7228 + "blockRuntimeId" : 7225 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7271 + "blockRuntimeId" : 7268 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7224 + "blockRuntimeId" : 7221 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7274 + "blockRuntimeId" : 7271 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7245 + "blockRuntimeId" : 7242 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7239 + "blockRuntimeId" : 7236 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7275 + "blockRuntimeId" : 7272 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7256 + "blockRuntimeId" : 7253 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7261 + "blockRuntimeId" : 7258 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7262 + "blockRuntimeId" : 7259 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7259 + "blockRuntimeId" : 7256 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7260 + "blockRuntimeId" : 7257 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7258 + "blockRuntimeId" : 7255 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7257 + "blockRuntimeId" : 7254 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7227 + "blockRuntimeId" : 7224 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7230 + "blockRuntimeId" : 7227 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7246 + "blockRuntimeId" : 7243 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7255 + "blockRuntimeId" : 7252 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7229 + "blockRuntimeId" : 7226 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7272 + "blockRuntimeId" : 7269 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7240 + "blockRuntimeId" : 7237 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7241 + "blockRuntimeId" : 7238 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7242 + "blockRuntimeId" : 7239 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7243 + "blockRuntimeId" : 7240 }, { "id" : "minecraft:crimson_slab", @@ -733,7 +733,7 @@ }, { "id" : "minecraft:warped_slab", - "blockRuntimeId" : 7616 + "blockRuntimeId" : 7614 }, { "id" : "minecraft:blackstone_slab", @@ -741,11 +741,11 @@ }, { "id" : "minecraft:polished_blackstone_slab", - "blockRuntimeId" : 6031 + "blockRuntimeId" : 6034 }, { "id" : "minecraft:polished_blackstone_brick_slab", - "blockRuntimeId" : 5828 + "blockRuntimeId" : 5831 }, { "id" : "minecraft:cut_copper_slab", @@ -757,27 +757,27 @@ }, { "id" : "minecraft:weathered_cut_copper_slab", - "blockRuntimeId" : 7743 + "blockRuntimeId" : 7741 }, { "id" : "minecraft:oxidized_cut_copper_slab", - "blockRuntimeId" : 5756 + "blockRuntimeId" : 5758 }, { "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7687 + "blockRuntimeId" : 7685 }, { "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7701 + "blockRuntimeId" : 7699 }, { "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7729 + "blockRuntimeId" : 7727 }, { "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7715 + "blockRuntimeId" : 7713 }, { "id" : "minecraft:cobbled_deepslate_slab", @@ -785,7 +785,7 @@ }, { "id" : "minecraft:polished_deepslate_slab", - "blockRuntimeId" : 6206 + "blockRuntimeId" : 6209 }, { "id" : "minecraft:deepslate_tile_slab", @@ -809,23 +809,23 @@ }, { "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6557 + "blockRuntimeId" : 6560 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7289 + "blockRuntimeId" : 7286 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7290 + "blockRuntimeId" : 7287 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7291 + "blockRuntimeId" : 7288 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7292 + "blockRuntimeId" : 7289 }, { "id" : "minecraft:end_bricks", @@ -833,11 +833,11 @@ }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6440 + "blockRuntimeId" : 6443 }, { "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 6000 + "blockRuntimeId" : 6003 }, { "id" : "minecraft:cracked_polished_blackstone_bricks", @@ -845,7 +845,7 @@ }, { "id" : "minecraft:gilded_blackstone", - "blockRuntimeId" : 4882 + "blockRuntimeId" : 4883 }, { "id" : "minecraft:chiseled_polished_blackstone", @@ -877,7 +877,7 @@ }, { "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5667 + "blockRuntimeId" : 5668 }, { "id" : "minecraft:cobbled_deepslate", @@ -885,39 +885,39 @@ }, { "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6911 + "blockRuntimeId" : 6908 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6706 + "blockRuntimeId" : 6709 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6707 + "blockRuntimeId" : 6710 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6708 + "blockRuntimeId" : 6711 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6709 + "blockRuntimeId" : 6712 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6633 + "blockRuntimeId" : 6636 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6634 + "blockRuntimeId" : 6637 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6635 + "blockRuntimeId" : 6638 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6636 + "blockRuntimeId" : 6639 }, { "id" : "minecraft:coal_block", @@ -929,11 +929,11 @@ }, { "id" : "minecraft:gold_block", - "blockRuntimeId" : 4975 + "blockRuntimeId" : 4976 }, { "id" : "minecraft:iron_block", - "blockRuntimeId" : 5134 + "blockRuntimeId" : 5135 }, { "id" : "minecraft:copper_block", @@ -945,27 +945,27 @@ }, { "id" : "minecraft:weathered_copper", - "blockRuntimeId" : 7741 + "blockRuntimeId" : 7739 }, { "id" : "minecraft:oxidized_copper", - "blockRuntimeId" : 5754 + "blockRuntimeId" : 5756 }, { "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7685 + "blockRuntimeId" : 7683 }, { "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7699 + "blockRuntimeId" : 7697 }, { "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7727 + "blockRuntimeId" : 7725 }, { "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7713 + "blockRuntimeId" : 7711 }, { "id" : "minecraft:cut_copper", @@ -977,27 +977,27 @@ }, { "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7742 + "blockRuntimeId" : 7740 }, { "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5755 + "blockRuntimeId" : 5757 }, { "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7686 + "blockRuntimeId" : 7684 }, { "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7700 + "blockRuntimeId" : 7698 }, { "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7728 + "blockRuntimeId" : 7726 }, { "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7714 + "blockRuntimeId" : 7712 }, { "id" : "minecraft:emerald_block", @@ -1009,59 +1009,59 @@ }, { "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5365 + "blockRuntimeId" : 5366 }, { "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6579 + "blockRuntimeId" : 6582 }, { "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6577 + "blockRuntimeId" : 6580 }, { "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6578 + "blockRuntimeId" : 6581 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6545 + "blockRuntimeId" : 6548 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6547 + "blockRuntimeId" : 6550 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6546 + "blockRuntimeId" : 6549 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6548 + "blockRuntimeId" : 6551 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6438 + "blockRuntimeId" : 6441 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6439 + "blockRuntimeId" : 6442 }, { "id" : "minecraft:slime", - "blockRuntimeId" : 6864 + "blockRuntimeId" : 6861 }, { "id" : "minecraft:honey_block", - "blockRuntimeId" : 5112 + "blockRuntimeId" : 5113 }, { "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5113 + "blockRuntimeId" : 5114 }, { "id" : "minecraft:hay_block", - "blockRuntimeId" : 5084 + "blockRuntimeId" : 5085 }, { "id" : "minecraft:bone_block", @@ -1069,83 +1069,83 @@ }, { "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5688 + "blockRuntimeId" : 5689 }, { "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6624 + "blockRuntimeId" : 6627 }, { "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5705 + "blockRuntimeId" : 5706 }, { "id" : "minecraft:lodestone", - "blockRuntimeId" : 5563 + "blockRuntimeId" : 5564 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 }, { "id" : "minecraft:carpet", @@ -1345,83 +1345,83 @@ }, { "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5083 + "blockRuntimeId" : 5084 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7120 + "blockRuntimeId" : 7117 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7128 + "blockRuntimeId" : 7125 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7127 + "blockRuntimeId" : 7124 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7135 + "blockRuntimeId" : 7132 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7132 + "blockRuntimeId" : 7129 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7134 + "blockRuntimeId" : 7131 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7121 + "blockRuntimeId" : 7118 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7124 + "blockRuntimeId" : 7121 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7125 + "blockRuntimeId" : 7122 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7133 + "blockRuntimeId" : 7130 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7129 + "blockRuntimeId" : 7126 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7123 + "blockRuntimeId" : 7120 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7131 + "blockRuntimeId" : 7128 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7130 + "blockRuntimeId" : 7127 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7122 + "blockRuntimeId" : 7119 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7126 + "blockRuntimeId" : 7123 }, { "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7800 + "blockRuntimeId" : 7798 }, { "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 6849 }, { "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 5010 + "blockRuntimeId" : 5011 }, { "id" : "minecraft:black_glazed_terracotta", @@ -1433,23 +1433,23 @@ }, { "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6601 + "blockRuntimeId" : 6604 }, { "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5748 + "blockRuntimeId" : 5750 }, { "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7942 + "blockRuntimeId" : 7940 }, { "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5532 + "blockRuntimeId" : 5533 }, { "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5026 + "blockRuntimeId" : 5027 }, { "id" : "minecraft:cyan_glazed_terracotta", @@ -1457,7 +1457,7 @@ }, { "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5484 + "blockRuntimeId" : 5485 }, { "id" : "minecraft:blue_glazed_terracotta", @@ -1465,35 +1465,35 @@ }, { "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6519 + "blockRuntimeId" : 6522 }, { "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5596 + "blockRuntimeId" : 5597 }, { "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5779 + "blockRuntimeId" : 5782 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6525 + "blockRuntimeId" : 6528 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6527 + "blockRuntimeId" : 6530 }, { "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5704 + "blockRuntimeId" : 5705 }, { "id" : "minecraft:warped_wart_block", - "blockRuntimeId" : 7667 + "blockRuntimeId" : 7665 }, { "id" : "minecraft:shroomlight", - "blockRuntimeId" : 6829 + "blockRuntimeId" : 6832 }, { "id" : "minecraft:crimson_nylium", @@ -1501,7 +1501,7 @@ }, { "id" : "minecraft:warped_nylium", - "blockRuntimeId" : 7597 + "blockRuntimeId" : 7595 }, { "id" : "minecraft:basalt", @@ -1509,15 +1509,15 @@ }, { "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5822 + "blockRuntimeId" : 5825 }, { "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6886 + "blockRuntimeId" : 6883 }, { "id" : "minecraft:soul_soil", - "blockRuntimeId" : 6956 + "blockRuntimeId" : 6953 }, { "id" : "minecraft:dirt", @@ -1533,31 +1533,31 @@ }, { "id" : "minecraft:grass", - "blockRuntimeId" : 4997 + "blockRuntimeId" : 4998 }, { "id" : "minecraft:grass_path", - "blockRuntimeId" : 4998 + "blockRuntimeId" : 4999 }, { "id" : "minecraft:podzol", - "blockRuntimeId" : 5803 + "blockRuntimeId" : 5806 }, { "id" : "minecraft:mycelium", - "blockRuntimeId" : 5685 + "blockRuntimeId" : 5686 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7180 + "blockRuntimeId" : 7177 }, { "id" : "minecraft:iron_ore", - "blockRuntimeId" : 5167 + "blockRuntimeId" : 5168 }, { "id" : "minecraft:gold_ore", - "blockRuntimeId" : 4976 + "blockRuntimeId" : 4977 }, { "id" : "minecraft:diamond_ore", @@ -1565,11 +1565,11 @@ }, { "id" : "minecraft:lapis_ore", - "blockRuntimeId" : 5366 + "blockRuntimeId" : 5367 }, { "id" : "minecraft:redstone_ore", - "blockRuntimeId" : 6647 + "blockRuntimeId" : 6650 }, { "id" : "minecraft:coal_ore", @@ -1585,11 +1585,11 @@ }, { "id" : "minecraft:quartz_ore", - "blockRuntimeId" : 6558 + "blockRuntimeId" : 6561 }, { "id" : "minecraft:nether_gold_ore", - "blockRuntimeId" : 5698 + "blockRuntimeId" : 5699 }, { "id" : "minecraft:ancient_debris", @@ -1629,19 +1629,19 @@ }, { "id" : "minecraft:gravel", - "blockRuntimeId" : 4999 + "blockRuntimeId" : 5000 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7181 + "blockRuntimeId" : 7178 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7183 + "blockRuntimeId" : 7180 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7185 + "blockRuntimeId" : 7182 }, { "id" : "minecraft:blackstone", @@ -1653,31 +1653,31 @@ }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7182 + "blockRuntimeId" : 7179 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7184 + "blockRuntimeId" : 7181 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7186 + "blockRuntimeId" : 7183 }, { "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5825 + "blockRuntimeId" : 5828 }, { "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6203 + "blockRuntimeId" : 6206 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6704 + "blockRuntimeId" : 6707 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6705 + "blockRuntimeId" : 6708 }, { "id" : "minecraft:cactus", @@ -1685,51 +1685,51 @@ }, { "id" : "minecraft:log", - "blockRuntimeId" : 5564 + "blockRuntimeId" : 5565 }, { "id" : "minecraft:stripped_oak_log", - "blockRuntimeId" : 7319 + "blockRuntimeId" : 7316 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5565 + "blockRuntimeId" : 5566 }, { "id" : "minecraft:stripped_spruce_log", - "blockRuntimeId" : 7322 + "blockRuntimeId" : 7319 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5566 + "blockRuntimeId" : 5567 }, { "id" : "minecraft:stripped_birch_log", - "blockRuntimeId" : 7304 + "blockRuntimeId" : 7301 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5567 + "blockRuntimeId" : 5568 }, { "id" : "minecraft:stripped_jungle_log", - "blockRuntimeId" : 7316 + "blockRuntimeId" : 7313 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5576 + "blockRuntimeId" : 5577 }, { "id" : "minecraft:stripped_acacia_log", - "blockRuntimeId" : 7301 + "blockRuntimeId" : 7298 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5577 + "blockRuntimeId" : 5578 }, { "id" : "minecraft:stripped_dark_oak_log", - "blockRuntimeId" : 7313 + "blockRuntimeId" : 7310 }, { "id" : "minecraft:crimson_stem", @@ -1737,63 +1737,63 @@ }, { "id" : "minecraft:stripped_crimson_stem", - "blockRuntimeId" : 7310 + "blockRuntimeId" : 7307 }, { "id" : "minecraft:warped_stem", - "blockRuntimeId" : 7642 + "blockRuntimeId" : 7640 }, { "id" : "minecraft:stripped_warped_stem", - "blockRuntimeId" : 7328 + "blockRuntimeId" : 7325 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7807 + "blockRuntimeId" : 7805 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7813 + "blockRuntimeId" : 7811 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7808 + "blockRuntimeId" : 7806 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7814 + "blockRuntimeId" : 7812 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7809 + "blockRuntimeId" : 7807 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7815 + "blockRuntimeId" : 7813 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7810 + "blockRuntimeId" : 7808 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7816 + "blockRuntimeId" : 7814 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7811 + "blockRuntimeId" : 7809 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7817 + "blockRuntimeId" : 7815 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7812 + "blockRuntimeId" : 7810 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7818 + "blockRuntimeId" : 7816 }, { "id" : "minecraft:crimson_hyphae", @@ -1801,19 +1801,15 @@ }, { "id" : "minecraft:stripped_crimson_hyphae", - "blockRuntimeId" : 7307 + "blockRuntimeId" : 7304 }, { "id" : "minecraft:warped_hyphae", - "blockRuntimeId" : 7594 + "blockRuntimeId" : 7592 }, { "id" : "minecraft:stripped_warped_hyphae", - "blockRuntimeId" : 7325 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5410 + "blockRuntimeId" : 7322 }, { "id" : "minecraft:leaves", @@ -1828,13 +1824,17 @@ "blockRuntimeId" : 5413 }, { - "id" : "minecraft:leaves2", - "blockRuntimeId" : 5426 + "id" : "minecraft:leaves", + "blockRuntimeId" : 5414 }, { "id" : "minecraft:leaves2", "blockRuntimeId" : 5427 }, + { + "id" : "minecraft:leaves2", + "blockRuntimeId" : 5428 + }, { "id" : "minecraft:azalea_leaves", "blockRuntimeId" : 169 @@ -1845,27 +1845,27 @@ }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6718 + "blockRuntimeId" : 6721 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6719 + "blockRuntimeId" : 6722 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6720 + "blockRuntimeId" : 6723 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6721 + "blockRuntimeId" : 6724 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6722 + "blockRuntimeId" : 6725 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6723 + "blockRuntimeId" : 6726 }, { "id" : "minecraft:bee_nest", @@ -1912,7 +1912,7 @@ }, { "id" : "minecraft:melon_block", - "blockRuntimeId" : 5609 + "blockRuntimeId" : 5610 }, { "id" : "minecraft:melon_slice" @@ -1928,7 +1928,7 @@ }, { "id" : "minecraft:pumpkin", - "blockRuntimeId" : 6457 + "blockRuntimeId" : 6460 }, { "id" : "minecraft:carved_pumpkin", @@ -1936,14 +1936,14 @@ }, { "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5551 + "blockRuntimeId" : 5552 }, { "id" : "minecraft:honeycomb" }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7349 + "blockRuntimeId" : 7346 }, { "id" : "minecraft:double_plant", @@ -1951,7 +1951,7 @@ }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7348 + "blockRuntimeId" : 7345 }, { "id" : "minecraft:double_plant", @@ -2045,7 +2045,7 @@ }, { "id" : "minecraft:seagrass", - "blockRuntimeId" : 6825 + "blockRuntimeId" : 6828 }, { "id" : "minecraft:crimson_roots", @@ -2053,55 +2053,55 @@ }, { "id" : "minecraft:warped_roots", - "blockRuntimeId" : 7615 + "blockRuntimeId" : 7613 }, { "id" : "minecraft:yellow_flower", - "blockRuntimeId" : 7941 + "blockRuntimeId" : 7939 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6590 + "blockRuntimeId" : 6593 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6591 + "blockRuntimeId" : 6594 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6592 + "blockRuntimeId" : 6595 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6593 + "blockRuntimeId" : 6596 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6594 + "blockRuntimeId" : 6597 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6595 + "blockRuntimeId" : 6598 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6596 + "blockRuntimeId" : 6599 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6597 + "blockRuntimeId" : 6600 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6598 + "blockRuntimeId" : 6601 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6599 + "blockRuntimeId" : 6602 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6600 + "blockRuntimeId" : 6603 }, { "id" : "minecraft:double_plant", @@ -2121,7 +2121,7 @@ }, { "id" : "minecraft:wither_rose", - "blockRuntimeId" : 7806 + "blockRuntimeId" : 7804 }, { "id" : "minecraft:white_dye" @@ -2188,19 +2188,19 @@ }, { "id" : "minecraft:vine", - "blockRuntimeId" : 7502 + "blockRuntimeId" : 7500 }, { "id" : "minecraft:weeping_vines", - "blockRuntimeId" : 7756 + "blockRuntimeId" : 7754 }, { "id" : "minecraft:twisting_vines", - "blockRuntimeId" : 7430 + "blockRuntimeId" : 7427 }, { "id" : "minecraft:waterlily", - "blockRuntimeId" : 7684 + "blockRuntimeId" : 7682 }, { "id" : "minecraft:deadbush", @@ -2212,15 +2212,15 @@ }, { "id" : "minecraft:snow", - "blockRuntimeId" : 6912 + "blockRuntimeId" : 6909 }, { "id" : "minecraft:ice", - "blockRuntimeId" : 5126 + "blockRuntimeId" : 5127 }, { "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5768 + "blockRuntimeId" : 5770 }, { "id" : "minecraft:blue_ice", @@ -2228,11 +2228,11 @@ }, { "id" : "minecraft:snow_layer", - "blockRuntimeId" : 6913 + "blockRuntimeId" : 6910 }, { "id" : "minecraft:pointed_dripstone", - "blockRuntimeId" : 5809 + "blockRuntimeId" : 5812 }, { "id" : "minecraft:dripstone_block", @@ -2240,11 +2240,11 @@ }, { "id" : "minecraft:moss_carpet", - "blockRuntimeId" : 5666 + "blockRuntimeId" : 5667 }, { "id" : "minecraft:moss_block", - "blockRuntimeId" : 5665 + "blockRuntimeId" : 5666 }, { "id" : "minecraft:dirt_with_roots", @@ -2252,7 +2252,7 @@ }, { "id" : "minecraft:hanging_roots", - "blockRuntimeId" : 5048 + "blockRuntimeId" : 5049 }, { "id" : "minecraft:big_dripleaf", @@ -2260,11 +2260,11 @@ }, { "id" : "minecraft:small_dripleaf_block", - "blockRuntimeId" : 6878 + "blockRuntimeId" : 6875 }, { "id" : "minecraft:spore_blossom", - "blockRuntimeId" : 6965 + "blockRuntimeId" : 6962 }, { "id" : "minecraft:azalea", @@ -2276,7 +2276,7 @@ }, { "id" : "minecraft:glow_lichen", - "blockRuntimeId" : 4972 + "blockRuntimeId" : 4973 }, { "id" : "minecraft:amethyst_block", @@ -2288,23 +2288,23 @@ }, { "id" : "minecraft:amethyst_cluster", - "blockRuntimeId" : 137 + "blockRuntimeId" : 138 }, { "id" : "minecraft:large_amethyst_bud", - "blockRuntimeId" : 5367 + "blockRuntimeId" : 5369 }, { "id" : "minecraft:medium_amethyst_bud", - "blockRuntimeId" : 5603 + "blockRuntimeId" : 5605 }, { "id" : "minecraft:small_amethyst_bud", - "blockRuntimeId" : 6865 + "blockRuntimeId" : 6863 }, { "id" : "minecraft:tuff", - "blockRuntimeId" : 7417 + "blockRuntimeId" : 7414 }, { "id" : "minecraft:calcite", @@ -2343,7 +2343,7 @@ }, { "id" : "minecraft:red_mushroom", - "blockRuntimeId" : 6607 + "blockRuntimeId" : 6610 }, { "id" : "minecraft:crimson_fungus", @@ -2351,7 +2351,7 @@ }, { "id" : "minecraft:warped_fungus", - "blockRuntimeId" : 7593 + "blockRuntimeId" : 7591 }, { "id" : "minecraft:brown_mushroom_block", @@ -2359,7 +2359,7 @@ }, { "id" : "minecraft:red_mushroom_block", - "blockRuntimeId" : 6622 + "blockRuntimeId" : 6625 }, { "id" : "minecraft:brown_mushroom_block", @@ -2386,17 +2386,13 @@ }, { "id" : "minecraft:web", - "blockRuntimeId" : 7755 + "blockRuntimeId" : 7753 }, { "id" : "minecraft:spider_eye" }, { "id" : "minecraft:mob_spawner", - "blockRuntimeId" : 5658 - }, - { - "id" : "minecraft:monster_egg", "blockRuntimeId" : 5659 }, { @@ -2419,9 +2415,13 @@ "id" : "minecraft:monster_egg", "blockRuntimeId" : 5664 }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5665 + }, { "id" : "minecraft:infested_deepslate", - "blockRuntimeId" : 5127 + "blockRuntimeId" : 5128 }, { "id" : "minecraft:dragon_egg", @@ -2429,7 +2429,7 @@ }, { "id" : "minecraft:turtle_egg", - "blockRuntimeId" : 7418 + "blockRuntimeId" : 7415 }, { "id" : "minecraft:chicken_spawn_egg" @@ -2631,7 +2631,7 @@ }, { "id" : "minecraft:obsidian", - "blockRuntimeId" : 5737 + "blockRuntimeId" : 5738 }, { "id" : "minecraft:crying_obsidian", @@ -2643,15 +2643,15 @@ }, { "id" : "minecraft:soul_sand", - "blockRuntimeId" : 6955 + "blockRuntimeId" : 6952 }, { "id" : "minecraft:netherrack", - "blockRuntimeId" : 5706 + "blockRuntimeId" : 5707 }, { "id" : "minecraft:magma", - "blockRuntimeId" : 5602 + "blockRuntimeId" : 5603 }, { "id" : "minecraft:nether_wart" @@ -2676,11 +2676,11 @@ }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6963 + "blockRuntimeId" : 6960 }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6964 + "blockRuntimeId" : 6961 }, { "id" : "minecraft:coral_block", @@ -3747,23 +3747,23 @@ }, { "id" : "minecraft:torch", - "blockRuntimeId" : 7357 + "blockRuntimeId" : 7354 }, { "id" : "minecraft:soul_torch", - "blockRuntimeId" : 6957 + "blockRuntimeId" : 6954 }, { "id" : "minecraft:sea_pickle", - "blockRuntimeId" : 6817 + "blockRuntimeId" : 6820 }, { "id" : "minecraft:lantern", - "blockRuntimeId" : 5363 + "blockRuntimeId" : 5364 }, { "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6953 + "blockRuntimeId" : 6950 }, { "id" : "minecraft:candle", @@ -3771,39 +3771,39 @@ }, { "id" : "minecraft:white_candle", - "blockRuntimeId" : 7790 + "blockRuntimeId" : 7788 }, { "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5738 + "blockRuntimeId" : 5740 }, { "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5586 + "blockRuntimeId" : 5587 }, { "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5474 + "blockRuntimeId" : 5475 }, { "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7931 + "blockRuntimeId" : 7929 }, { "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5522 + "blockRuntimeId" : 5523 }, { "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5769 + "blockRuntimeId" : 5772 }, { "id" : "minecraft:gray_candle", - "blockRuntimeId" : 5000 + "blockRuntimeId" : 5001 }, { "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5490 + "blockRuntimeId" : 5491 }, { "id" : "minecraft:cyan_candle", @@ -3811,7 +3811,7 @@ }, { "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6509 + "blockRuntimeId" : 6512 }, { "id" : "minecraft:blue_candle", @@ -3823,11 +3823,11 @@ }, { "id" : "minecraft:green_candle", - "blockRuntimeId" : 5016 + "blockRuntimeId" : 5017 }, { "id" : "minecraft:red_candle", - "blockRuntimeId" : 6580 + "blockRuntimeId" : 6583 }, { "id" : "minecraft:black_candle", @@ -3847,7 +3847,7 @@ }, { "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6879 + "blockRuntimeId" : 6876 }, { "id" : "minecraft:beehive", @@ -3861,7 +3861,7 @@ }, { "id" : "minecraft:furnace", - "blockRuntimeId" : 4876 + "blockRuntimeId" : 4877 }, { "id" : "minecraft:blast_furnace", @@ -3869,11 +3869,11 @@ }, { "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 }, { "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6699 + "blockRuntimeId" : 6702 }, { "id" : "minecraft:brewing_stand" @@ -3892,7 +3892,7 @@ }, { "id" : "minecraft:grindstone", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5033 }, { "id" : "minecraft:enchanting_table", @@ -3904,7 +3904,7 @@ }, { "id" : "minecraft:lectern", - "blockRuntimeId" : 5434 + "blockRuntimeId" : 5435 }, { "id" : "minecraft:cauldron" @@ -3919,7 +3919,7 @@ }, { "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7379 + "blockRuntimeId" : 7376 }, { "id" : "minecraft:ender_chest", @@ -3931,82 +3931,82 @@ }, { "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7462 + "blockRuntimeId" : 7459 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 }, { "id" : "minecraft:armor_stand" }, { "id" : "minecraft:noteblock", - "blockRuntimeId" : 5716 + "blockRuntimeId" : 5717 }, { "id" : "minecraft:jukebox", - "blockRuntimeId" : 5208 + "blockRuntimeId" : 5209 }, { "id" : "minecraft:music_disc_13" @@ -4044,6 +4044,9 @@ { "id" : "minecraft:music_disc_wait" }, + { + "id" : "minecraft:music_disc_otherside" + }, { "id" : "minecraft:music_disc_pigstep" }, @@ -4052,15 +4055,15 @@ }, { "id" : "minecraft:glowstone", - "blockRuntimeId" : 4974 + "blockRuntimeId" : 4975 }, { "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6646 + "blockRuntimeId" : 6649 }, { "id" : "minecraft:sealantern", - "blockRuntimeId" : 6828 + "blockRuntimeId" : 6831 }, { "id" : "minecraft:oak_sign" @@ -4171,7 +4174,7 @@ }, { "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7295 + "blockRuntimeId" : 7292 }, { "id" : "minecraft:end_portal_frame", @@ -4315,7 +4318,7 @@ }, { "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5516 + "blockRuntimeId" : 5517 }, { "id" : "minecraft:end_crystal" @@ -4777,11 +4780,11 @@ }, { "id" : "minecraft:rail", - "blockRuntimeId" : 6567 + "blockRuntimeId" : 6570 }, { "id" : "minecraft:golden_rail", - "blockRuntimeId" : 4977 + "blockRuntimeId" : 4978 }, { "id" : "minecraft:detector_rail", @@ -4808,23 +4811,23 @@ }, { "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6645 + "blockRuntimeId" : 6648 }, { "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6648 + "blockRuntimeId" : 6651 }, { "id" : "minecraft:lever", - "blockRuntimeId" : 5442 + "blockRuntimeId" : 5443 }, { "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7843 + "blockRuntimeId" : 7841 }, { "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6966 + "blockRuntimeId" : 6963 }, { "id" : "minecraft:birch_button", @@ -4832,7 +4835,7 @@ }, { "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5209 + "blockRuntimeId" : 5210 }, { "id" : "minecraft:acacia_button" @@ -4843,7 +4846,7 @@ }, { "id" : "minecraft:stone_button", - "blockRuntimeId" : 7195 + "blockRuntimeId" : 7192 }, { "id" : "minecraft:crimson_button", @@ -4851,23 +4854,23 @@ }, { "id" : "minecraft:warped_button", - "blockRuntimeId" : 7530 + "blockRuntimeId" : 7528 }, { "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 6001 + "blockRuntimeId" : 6004 }, { "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7401 + "blockRuntimeId" : 7398 }, { "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7887 + "blockRuntimeId" : 7885 }, { "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 7026 + "blockRuntimeId" : 7023 }, { "id" : "minecraft:birch_pressure_plate", @@ -4875,7 +4878,7 @@ }, { "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5269 + "blockRuntimeId" : 5270 }, { "id" : "minecraft:acacia_pressure_plate", @@ -4891,27 +4894,27 @@ }, { "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7599 + "blockRuntimeId" : 7597 }, { "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7207 + "blockRuntimeId" : 7204 }, { "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5500 + "blockRuntimeId" : 5501 }, { "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5096 + "blockRuntimeId" : 5097 }, { "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 6015 + "blockRuntimeId" : 6018 }, { "id" : "minecraft:observer", - "blockRuntimeId" : 5725 + "blockRuntimeId" : 5726 }, { "id" : "minecraft:daylight_detector", @@ -4936,22 +4939,22 @@ }, { "id" : "minecraft:piston", - "blockRuntimeId" : 5786 + "blockRuntimeId" : 5789 }, { "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7169 + "blockRuntimeId" : 7166 }, { "id" : "minecraft:tnt", - "blockRuntimeId" : 7353 + "blockRuntimeId" : 7350 }, { "id" : "minecraft:name_tag" }, { "id" : "minecraft:loom", - "blockRuntimeId" : 5582 + "blockRuntimeId" : 5583 }, { "id" : "minecraft:banner" @@ -5042,6 +5045,9 @@ { "id" : "minecraft:piglin_banner_pattern" }, + { + "id" : "minecraft:globe_banner_pattern" + }, { "id" : "minecraft:firework_rocket", "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" @@ -5194,10 +5200,10 @@ }, { "id" : "minecraft:target", - "blockRuntimeId" : 7351 + "blockRuntimeId" : 7348 }, { "id" : "minecraft:lodestone_compass" } ] -} +} \ No newline at end of file diff --git a/src/main/resources/runtime_item_states.json b/src/main/resources/runtime_item_states.json index 31554743812..5bebcaf997f 100644 --- a/src/main/resources/runtime_item_states.json +++ b/src/main/resources/runtime_item_states.json @@ -51,6 +51,10 @@ "name" : "minecraft:air", "id" : -158 }, + { + "name" : "minecraft:allay_spawn_egg", + "id" : 631 + }, { "name" : "minecraft:allow", "id" : 210 @@ -65,7 +69,7 @@ }, { "name" : "minecraft:amethyst_shard", - "id" : 624 + "id" : 625 }, { "name" : "minecraft:ancient_debris", @@ -117,7 +121,7 @@ }, { "name" : "minecraft:balloon", - "id" : 597 + "id" : 598 }, { "name" : "minecraft:bamboo", @@ -133,7 +137,7 @@ }, { "name" : "minecraft:banner_pattern", - "id" : 629 + "id" : 635 }, { "name" : "minecraft:barrel", @@ -293,7 +297,7 @@ }, { "name" : "minecraft:bleach", - "id" : 595 + "id" : 596 }, { "name" : "minecraft:blue_candle", @@ -317,7 +321,7 @@ }, { "name" : "minecraft:boat", - "id" : 627 + "id" : 633 }, { "name" : "minecraft:bone", @@ -429,11 +433,11 @@ }, { "name" : "minecraft:camera", - "id" : 592 + "id" : 593 }, { "name" : "minecraft:campfire", - "id" : 588 + "id" : 589 }, { "name" : "minecraft:candle", @@ -493,7 +497,7 @@ }, { "name" : "minecraft:chain", - "id" : 618 + "id" : 619 }, { "name" : "minecraft:chain_command_block", @@ -673,7 +677,7 @@ }, { "name" : "minecraft:compound", - "id" : 593 + "id" : 594 }, { "name" : "minecraft:concrete", @@ -797,7 +801,7 @@ }, { "name" : "minecraft:crimson_door", - "id" : 615 + "id" : 616 }, { "name" : "minecraft:crimson_double_slab", @@ -837,7 +841,7 @@ }, { "name" : "minecraft:crimson_sign", - "id" : 613 + "id" : 614 }, { "name" : "minecraft:crimson_slab", @@ -1173,7 +1177,7 @@ }, { "name" : "minecraft:dye", - "id" : 628 + "id" : 634 }, { "name" : "minecraft:egg", @@ -1701,7 +1705,7 @@ }, { "name" : "minecraft:end_crystal", - "id" : 631 + "id" : 637 }, { "name" : "minecraft:end_gateway", @@ -1807,6 +1811,10 @@ "name" : "minecraft:fire_charge", "id" : 509 }, + { + "name" : "minecraft:firefly_spawn_egg", + "id" : 632 + }, { "name" : "minecraft:firework_rocket", "id" : 519 @@ -1859,6 +1867,14 @@ "name" : "minecraft:frame", "id" : 513 }, + { + "name" : "minecraft:frog_egg", + "id" : -468 + }, + { + "name" : "minecraft:frog_spawn_egg", + "id" : 628 + }, { "name" : "minecraft:frosted_ice", "id" : 207 @@ -1895,13 +1911,17 @@ "name" : "minecraft:glistering_melon_slice", "id" : 434 }, + { + "name" : "minecraft:globe_banner_pattern", + "id" : 588 + }, { "name" : "minecraft:glow_berries", - "id" : 632 + "id" : 638 }, { "name" : "minecraft:glow_frame", - "id" : 622 + "id" : 623 }, { "name" : "minecraft:glow_ink_sac", @@ -1917,7 +1937,7 @@ }, { "name" : "minecraft:glow_stick", - "id" : 600 + "id" : 601 }, { "name" : "minecraft:glowingobsidian", @@ -1933,7 +1953,7 @@ }, { "name" : "minecraft:goat_horn", - "id" : 623 + "id" : 624 }, { "name" : "minecraft:goat_spawn_egg", @@ -2113,11 +2133,11 @@ }, { "name" : "minecraft:honey_bottle", - "id" : 591 + "id" : 592 }, { "name" : "minecraft:honeycomb", - "id" : 590 + "id" : 591 }, { "name" : "minecraft:honeycomb_block", @@ -2145,7 +2165,7 @@ }, { "name" : "minecraft:ice_bomb", - "id" : 594 + "id" : 595 }, { "name" : "minecraft:infested_deepslate", @@ -2573,7 +2593,7 @@ }, { "name" : "minecraft:lodestone_compass", - "id" : 601 + "id" : 602 }, { "name" : "minecraft:log", @@ -2617,7 +2637,7 @@ }, { "name" : "minecraft:medicine", - "id" : 598 + "id" : 599 }, { "name" : "minecraft:medium_amethyst_bud", @@ -2729,11 +2749,11 @@ }, { "name" : "minecraft:music_disc_otherside", - "id" : 626 + "id" : 627 }, { "name" : "minecraft:music_disc_pigstep", - "id" : 619 + "id" : 620 }, { "name" : "minecraft:music_disc_stal", @@ -2793,7 +2813,7 @@ }, { "name" : "minecraft:nether_sprouts", - "id" : 620 + "id" : 621 }, { "name" : "minecraft:nether_star", @@ -2813,7 +2833,7 @@ }, { "name" : "minecraft:netherite_axe", - "id" : 606 + "id" : 607 }, { "name" : "minecraft:netherite_block", @@ -2821,43 +2841,43 @@ }, { "name" : "minecraft:netherite_boots", - "id" : 611 + "id" : 612 }, { "name" : "minecraft:netherite_chestplate", - "id" : 609 + "id" : 610 }, { "name" : "minecraft:netherite_helmet", - "id" : 608 + "id" : 609 }, { "name" : "minecraft:netherite_hoe", - "id" : 607 + "id" : 608 }, { "name" : "minecraft:netherite_ingot", - "id" : 602 + "id" : 603 }, { "name" : "minecraft:netherite_leggings", - "id" : 610 + "id" : 611 }, { "name" : "minecraft:netherite_pickaxe", - "id" : 605 + "id" : 606 }, { "name" : "minecraft:netherite_scrap", - "id" : 612 + "id" : 613 }, { "name" : "minecraft:netherite_shovel", - "id" : 604 + "id" : 605 }, { "name" : "minecraft:netherite_sword", - "id" : 603 + "id" : 604 }, { "name" : "minecraft:netherrack", @@ -2903,6 +2923,10 @@ "name" : "minecraft:ocelot_spawn_egg", "id" : 451 }, + { + "name" : "minecraft:ochre_froglight", + "id" : -471 + }, { "name" : "minecraft:orange_candle", "id" : -414 @@ -2959,6 +2983,10 @@ "name" : "minecraft:parrot_spawn_egg", "id" : 478 }, + { + "name" : "minecraft:pearlescent_froglight", + "id" : -469 + }, { "name" : "minecraft:phantom_membrane", "id" : 574 @@ -3273,7 +3301,7 @@ }, { "name" : "minecraft:rapid_fertilizer", - "id" : 596 + "id" : 597 }, { "name" : "minecraft:ravager_spawn_egg", @@ -3593,7 +3621,7 @@ }, { "name" : "minecraft:soul_campfire", - "id" : 621 + "id" : 622 }, { "name" : "minecraft:soul_fire", @@ -3617,11 +3645,11 @@ }, { "name" : "minecraft:sparkler", - "id" : 599 + "id" : 600 }, { "name" : "minecraft:spawn_egg", - "id" : 630 + "id" : 636 }, { "name" : "minecraft:spider_eye", @@ -3685,7 +3713,7 @@ }, { "name" : "minecraft:spyglass", - "id" : 625 + "id" : 626 }, { "name" : "minecraft:squid_spawn_egg", @@ -3845,7 +3873,7 @@ }, { "name" : "minecraft:suspicious_stew", - "id" : 589 + "id" : 590 }, { "name" : "minecraft:sweet_berries", @@ -3855,6 +3883,14 @@ "name" : "minecraft:sweet_berry_bush", "id" : -207 }, + { + "name" : "minecraft:tadpole_bucket", + "id" : 630 + }, + { + "name" : "minecraft:tadpole_spawn_egg", + "id" : 629 + }, { "name" : "minecraft:tallgrass", "id" : 31 @@ -3959,6 +3995,10 @@ "name" : "minecraft:unpowered_repeater", "id" : 93 }, + { + "name" : "minecraft:verdant_froglight", + "id" : -470 + }, { "name" : "minecraft:vex_spawn_egg", "id" : 476 @@ -3993,7 +4033,7 @@ }, { "name" : "minecraft:warped_door", - "id" : 616 + "id" : 617 }, { "name" : "minecraft:warped_double_slab", @@ -4013,7 +4053,7 @@ }, { "name" : "minecraft:warped_fungus_on_a_stick", - "id" : 617 + "id" : 618 }, { "name" : "minecraft:warped_hyphae", @@ -4037,7 +4077,7 @@ }, { "name" : "minecraft:warped_sign", - "id" : 614 + "id" : 615 }, { "name" : "minecraft:warped_slab", From 5445b9521122b3bf9f6d79ad9f6a926cbbb5acb7 Mon Sep 17 00:00:00 2001 From: PetteriM1 <26197131+PetteriM1@users.noreply.github.com> Date: Wed, 9 Feb 2022 16:19:22 +0200 Subject: [PATCH 360/394] 1.18.10 vanilla: Use fire damage game rule for magma block damage (#1963) --- src/main/java/cn/nukkit/block/BlockMagma.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/block/BlockMagma.java b/src/main/java/cn/nukkit/block/BlockMagma.java index d8c774e72f5..b63b53449ad 100644 --- a/src/main/java/cn/nukkit/block/BlockMagma.java +++ b/src/main/java/cn/nukkit/block/BlockMagma.java @@ -8,6 +8,7 @@ import cn.nukkit.item.Item; import cn.nukkit.item.ItemTool; import cn.nukkit.item.enchantment.Enchantment; +import cn.nukkit.level.GameRule; import cn.nukkit.level.Level; import cn.nukkit.potion.Effect; import cn.nukkit.utils.BlockColor; @@ -68,7 +69,7 @@ public void onEntityCollide(Entity entity) { if (entity instanceof Player) { Player p = (Player) entity; if (p.getInventory().getBoots().getEnchantment(Enchantment.ID_FROST_WALKER) != null - || p.isCreative() || p.isSpectator() || p.isSneaking()) { + || p.isCreative() || p.isSpectator() || p.isSneaking() || !p.level.getGameRules().getBoolean(GameRule.FIRE_DAMAGE)) { return; } } From 37b1ff978998183eebd0b454687df6d69460abfa Mon Sep 17 00:00:00 2001 From: Gabriel8579 Date: Thu, 10 Feb 2022 10:51:06 -0300 Subject: [PATCH 361/394] feat: Update protocol version --- dumps/block-properties.ini | 1 - dumps/block-states.ini | 9 +- dumps/item-id-dump.properties | 1 + dumps/runtime_block_states.dat.dump.txt | 6188 ++++++++--------- dumps/simple-blocks-nukkit.txt | 4 + .../level/format/anvil/util/BlockStorage.java | 2 +- .../nukkit/network/protocol/ProtocolInfo.java | 2 +- .../java/cn/nukkit/utils/BinaryStream.java | 2 +- src/main/resources/biome_definitions.dat | Bin 41668 -> 41897 bytes src/main/resources/canonical_block_states.nbt | Bin 1174943 -> 1174608 bytes src/main/resources/creativeitems.json | 11 +- src/main/resources/entity_identifiers.dat | Bin 7382 -> 7382 bytes src/main/resources/recipes.json | 344 +- src/main/resources/runtime_item_ids.json | 82 +- .../updater/AllResourceUpdater.java | 2 + .../dumps/pmmp/required_item_list.json | 130 +- .../dumps/proxypass/creativeitems.json | 869 +-- .../updater/dumps/proxypass/recipes.json | 2882 ++++---- .../dumps/proxypass/runtime_item_states.json | 2298 +++--- 19 files changed, 6666 insertions(+), 6161 deletions(-) diff --git a/dumps/block-properties.ini b/dumps/block-properties.ini index 7d8292e7269..857a443f6bb 100644 --- a/dumps/block-properties.ini +++ b/dumps/block-properties.ini @@ -73,7 +73,6 @@ monster_egg_stone_type=chiseled_stone_brick,cobblestone,cracked_stone_brick,moss multi_face_direction_bits=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63 new_leaf_type=acacia,dark_oak new_log_type=acacia,dark_oak -no_drop_bit=0,1 occupied_bit=0,1 old_leaf_type=birch,jungle,oak,spruce old_log_type=birch,jungle,oak,spruce diff --git a/dumps/block-states.ini b/dumps/block-states.ini index 7f6b7977dd5..f576534345c 100644 --- a/dumps/block-states.ini +++ b/dumps/block-states.ini @@ -967,6 +967,8 @@ facing_direction=0,1,2,3,4,5 item_frame_map_bit=0,1 item_frame_photo_bit=0,1 +[minecraft:frog_egg] + [minecraft:frosted_ice] age=0,1,2,3 @@ -1324,6 +1326,8 @@ powered_bit=0,1 [minecraft:obsidian] +[minecraft:ochre_froglight] + [minecraft:orange_candle] candles=0,1,2,3 lit=0,1 @@ -1350,6 +1354,8 @@ top_slot_bit=0,1 [minecraft:packed_ice] +[minecraft:pearlescent_froglight] + [minecraft:pink_candle] candles=0,1,2,3 lit=0,1 @@ -1634,7 +1640,6 @@ facing_direction=0,1,2,3,4,5 [minecraft:skull] facing_direction=0,1,2,3,4,5 -no_drop_bit=0,1 [minecraft:slime] @@ -1890,6 +1895,8 @@ output_subtract_bit=0,1 direction=0,1,2,3 repeater_delay=0,1,2,3 +[minecraft:verdant_froglight] + [minecraft:vine] vine_direction_bits=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 diff --git a/dumps/item-id-dump.properties b/dumps/item-id-dump.properties index e3a47cdb41e..c558ae4e881 100644 --- a/dumps/item-id-dump.properties +++ b/dumps/item-id-dump.properties @@ -914,4 +914,5 @@ 758=minecraft:chain 759=minecraft:music_disc_pigstep 760=minecraft:nether_sprouts +772=minecraft:spyglass 801=minecraft:soul_campfire diff --git a/dumps/runtime_block_states.dat.dump.txt b/dumps/runtime_block_states.dat.dump.txt index 121d650dd0b..34fbbefedfe 100644 --- a/dumps/runtime_block_states.dat.dump.txt +++ b/dumps/runtime_block_states.dat.dump.txt @@ -19488,12307 +19488,12299 @@ minecraft:frame;facing_direction=5;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 runtimeId=4871 +minecraft:frog_egg +blockId=-1 +runtimeId=4872 + minecraft:frosted_ice;age=0 blockId=207 -runtimeId=4872 +runtimeId=4873 minecraft:frosted_ice;age=1 blockId=207 -runtimeId=4873 +runtimeId=4874 minecraft:frosted_ice;age=2 blockId=207 -runtimeId=4874 +runtimeId=4875 minecraft:frosted_ice;age=3 blockId=207 -runtimeId=4875 +runtimeId=4876 minecraft:furnace;facing_direction=0 blockId=61 -runtimeId=4876 +runtimeId=4877 minecraft:furnace;facing_direction=1 blockId=61 -runtimeId=4877 +runtimeId=4878 minecraft:furnace;facing_direction=2 blockId=61 -runtimeId=4878 +runtimeId=4879 minecraft:furnace;facing_direction=3 blockId=61 -runtimeId=4879 +runtimeId=4880 minecraft:furnace;facing_direction=4 blockId=61 -runtimeId=4880 +runtimeId=4881 minecraft:furnace;facing_direction=5 blockId=61 -runtimeId=4881 +runtimeId=4882 minecraft:gilded_blackstone blockId=536 -runtimeId=4882 +runtimeId=4883 minecraft:glass blockId=20 -runtimeId=4883 +runtimeId=4884 minecraft:glass_pane blockId=102 -runtimeId=4884 +runtimeId=4885 minecraft:glow_frame;facing_direction=0;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4885 +runtimeId=4886 minecraft:glow_frame;facing_direction=0;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4891 +runtimeId=4892 minecraft:glow_frame;facing_direction=0;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4897 +runtimeId=4898 minecraft:glow_frame;facing_direction=0;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4903 +runtimeId=4904 minecraft:glow_frame;facing_direction=1;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4886 +runtimeId=4887 minecraft:glow_frame;facing_direction=1;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4892 +runtimeId=4893 minecraft:glow_frame;facing_direction=1;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4898 +runtimeId=4899 minecraft:glow_frame;facing_direction=1;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4904 +runtimeId=4905 minecraft:glow_frame;facing_direction=2;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4887 +runtimeId=4888 minecraft:glow_frame;facing_direction=2;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4893 +runtimeId=4894 minecraft:glow_frame;facing_direction=2;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4899 +runtimeId=4900 minecraft:glow_frame;facing_direction=2;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4905 +runtimeId=4906 minecraft:glow_frame;facing_direction=3;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4888 +runtimeId=4889 minecraft:glow_frame;facing_direction=3;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4894 +runtimeId=4895 minecraft:glow_frame;facing_direction=3;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4900 +runtimeId=4901 minecraft:glow_frame;facing_direction=3;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4906 +runtimeId=4907 minecraft:glow_frame;facing_direction=4;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4889 +runtimeId=4890 minecraft:glow_frame;facing_direction=4;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4895 +runtimeId=4896 minecraft:glow_frame;facing_direction=4;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4901 +runtimeId=4902 minecraft:glow_frame;facing_direction=4;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4907 +runtimeId=4908 minecraft:glow_frame;facing_direction=5;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4890 +runtimeId=4891 minecraft:glow_frame;facing_direction=5;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4896 +runtimeId=4897 minecraft:glow_frame;facing_direction=5;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4902 +runtimeId=4903 minecraft:glow_frame;facing_direction=5;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4908 +runtimeId=4909 minecraft:glow_lichen;multi_face_direction_bits=0 blockId=666 -runtimeId=4909 +runtimeId=4910 minecraft:glow_lichen;multi_face_direction_bits=1 blockId=666 -runtimeId=4910 +runtimeId=4911 minecraft:glow_lichen;multi_face_direction_bits=2 blockId=666 -runtimeId=4911 +runtimeId=4912 minecraft:glow_lichen;multi_face_direction_bits=3 blockId=666 -runtimeId=4912 +runtimeId=4913 minecraft:glow_lichen;multi_face_direction_bits=4 blockId=666 -runtimeId=4913 +runtimeId=4914 minecraft:glow_lichen;multi_face_direction_bits=5 blockId=666 -runtimeId=4914 +runtimeId=4915 minecraft:glow_lichen;multi_face_direction_bits=6 blockId=666 -runtimeId=4915 +runtimeId=4916 minecraft:glow_lichen;multi_face_direction_bits=7 blockId=666 -runtimeId=4916 +runtimeId=4917 minecraft:glow_lichen;multi_face_direction_bits=8 blockId=666 -runtimeId=4917 +runtimeId=4918 minecraft:glow_lichen;multi_face_direction_bits=9 blockId=666 -runtimeId=4918 +runtimeId=4919 minecraft:glow_lichen;multi_face_direction_bits=10 blockId=666 -runtimeId=4919 +runtimeId=4920 minecraft:glow_lichen;multi_face_direction_bits=11 blockId=666 -runtimeId=4920 +runtimeId=4921 minecraft:glow_lichen;multi_face_direction_bits=12 blockId=666 -runtimeId=4921 +runtimeId=4922 minecraft:glow_lichen;multi_face_direction_bits=13 blockId=666 -runtimeId=4922 +runtimeId=4923 minecraft:glow_lichen;multi_face_direction_bits=14 blockId=666 -runtimeId=4923 +runtimeId=4924 minecraft:glow_lichen;multi_face_direction_bits=15 blockId=666 -runtimeId=4924 +runtimeId=4925 minecraft:glow_lichen;multi_face_direction_bits=16 blockId=666 -runtimeId=4925 +runtimeId=4926 minecraft:glow_lichen;multi_face_direction_bits=17 blockId=666 -runtimeId=4926 +runtimeId=4927 minecraft:glow_lichen;multi_face_direction_bits=18 blockId=666 -runtimeId=4927 +runtimeId=4928 minecraft:glow_lichen;multi_face_direction_bits=19 blockId=666 -runtimeId=4928 +runtimeId=4929 minecraft:glow_lichen;multi_face_direction_bits=20 blockId=666 -runtimeId=4929 +runtimeId=4930 minecraft:glow_lichen;multi_face_direction_bits=21 blockId=666 -runtimeId=4930 +runtimeId=4931 minecraft:glow_lichen;multi_face_direction_bits=22 blockId=666 -runtimeId=4931 +runtimeId=4932 minecraft:glow_lichen;multi_face_direction_bits=23 blockId=666 -runtimeId=4932 +runtimeId=4933 minecraft:glow_lichen;multi_face_direction_bits=24 blockId=666 -runtimeId=4933 +runtimeId=4934 minecraft:glow_lichen;multi_face_direction_bits=25 blockId=666 -runtimeId=4934 +runtimeId=4935 minecraft:glow_lichen;multi_face_direction_bits=26 blockId=666 -runtimeId=4935 +runtimeId=4936 minecraft:glow_lichen;multi_face_direction_bits=27 blockId=666 -runtimeId=4936 +runtimeId=4937 minecraft:glow_lichen;multi_face_direction_bits=28 blockId=666 -runtimeId=4937 +runtimeId=4938 minecraft:glow_lichen;multi_face_direction_bits=29 blockId=666 -runtimeId=4938 +runtimeId=4939 minecraft:glow_lichen;multi_face_direction_bits=30 blockId=666 -runtimeId=4939 +runtimeId=4940 minecraft:glow_lichen;multi_face_direction_bits=31 blockId=666 -runtimeId=4940 +runtimeId=4941 minecraft:glow_lichen;multi_face_direction_bits=32 blockId=666 -runtimeId=4941 +runtimeId=4942 minecraft:glow_lichen;multi_face_direction_bits=33 blockId=666 -runtimeId=4942 +runtimeId=4943 minecraft:glow_lichen;multi_face_direction_bits=34 blockId=666 -runtimeId=4943 +runtimeId=4944 minecraft:glow_lichen;multi_face_direction_bits=35 blockId=666 -runtimeId=4944 +runtimeId=4945 minecraft:glow_lichen;multi_face_direction_bits=36 blockId=666 -runtimeId=4945 +runtimeId=4946 minecraft:glow_lichen;multi_face_direction_bits=37 blockId=666 -runtimeId=4946 +runtimeId=4947 minecraft:glow_lichen;multi_face_direction_bits=38 blockId=666 -runtimeId=4947 +runtimeId=4948 minecraft:glow_lichen;multi_face_direction_bits=39 blockId=666 -runtimeId=4948 +runtimeId=4949 minecraft:glow_lichen;multi_face_direction_bits=40 blockId=666 -runtimeId=4949 +runtimeId=4950 minecraft:glow_lichen;multi_face_direction_bits=41 blockId=666 -runtimeId=4950 +runtimeId=4951 minecraft:glow_lichen;multi_face_direction_bits=42 blockId=666 -runtimeId=4951 +runtimeId=4952 minecraft:glow_lichen;multi_face_direction_bits=43 blockId=666 -runtimeId=4952 +runtimeId=4953 minecraft:glow_lichen;multi_face_direction_bits=44 blockId=666 -runtimeId=4953 +runtimeId=4954 minecraft:glow_lichen;multi_face_direction_bits=45 blockId=666 -runtimeId=4954 +runtimeId=4955 minecraft:glow_lichen;multi_face_direction_bits=46 blockId=666 -runtimeId=4955 +runtimeId=4956 minecraft:glow_lichen;multi_face_direction_bits=47 blockId=666 -runtimeId=4956 +runtimeId=4957 minecraft:glow_lichen;multi_face_direction_bits=48 blockId=666 -runtimeId=4957 +runtimeId=4958 minecraft:glow_lichen;multi_face_direction_bits=49 blockId=666 -runtimeId=4958 +runtimeId=4959 minecraft:glow_lichen;multi_face_direction_bits=50 blockId=666 -runtimeId=4959 +runtimeId=4960 minecraft:glow_lichen;multi_face_direction_bits=51 blockId=666 -runtimeId=4960 +runtimeId=4961 minecraft:glow_lichen;multi_face_direction_bits=52 blockId=666 -runtimeId=4961 +runtimeId=4962 minecraft:glow_lichen;multi_face_direction_bits=53 blockId=666 -runtimeId=4962 +runtimeId=4963 minecraft:glow_lichen;multi_face_direction_bits=54 blockId=666 -runtimeId=4963 +runtimeId=4964 minecraft:glow_lichen;multi_face_direction_bits=55 blockId=666 -runtimeId=4964 +runtimeId=4965 minecraft:glow_lichen;multi_face_direction_bits=56 blockId=666 -runtimeId=4965 +runtimeId=4966 minecraft:glow_lichen;multi_face_direction_bits=57 blockId=666 -runtimeId=4966 +runtimeId=4967 minecraft:glow_lichen;multi_face_direction_bits=58 blockId=666 -runtimeId=4967 +runtimeId=4968 minecraft:glow_lichen;multi_face_direction_bits=59 blockId=666 -runtimeId=4968 +runtimeId=4969 minecraft:glow_lichen;multi_face_direction_bits=60 blockId=666 -runtimeId=4969 +runtimeId=4970 minecraft:glow_lichen;multi_face_direction_bits=61 blockId=666 -runtimeId=4970 +runtimeId=4971 minecraft:glow_lichen;multi_face_direction_bits=62 blockId=666 -runtimeId=4971 +runtimeId=4972 minecraft:glow_lichen;multi_face_direction_bits=63 blockId=666 -runtimeId=4972 +runtimeId=4973 minecraft:glowingobsidian blockId=246 -runtimeId=4973 +runtimeId=4974 minecraft:glowstone blockId=89 -runtimeId=4974 +runtimeId=4975 minecraft:gold_block blockId=41 -runtimeId=4975 +runtimeId=4976 minecraft:gold_ore blockId=14 -runtimeId=4976 +runtimeId=4977 minecraft:golden_rail;rail_direction=0;rail_data_bit=0 blockId=27 -runtimeId=4977 +runtimeId=4978 minecraft:golden_rail;rail_direction=0;rail_data_bit=1 blockId=27 -runtimeId=4983 +runtimeId=4984 minecraft:golden_rail;rail_direction=1;rail_data_bit=0 blockId=27 -runtimeId=4978 +runtimeId=4979 minecraft:golden_rail;rail_direction=1;rail_data_bit=1 blockId=27 -runtimeId=4984 +runtimeId=4985 minecraft:golden_rail;rail_direction=2;rail_data_bit=0 blockId=27 -runtimeId=4979 +runtimeId=4980 minecraft:golden_rail;rail_direction=2;rail_data_bit=1 blockId=27 -runtimeId=4985 +runtimeId=4986 minecraft:golden_rail;rail_direction=3;rail_data_bit=0 blockId=27 -runtimeId=4980 +runtimeId=4981 minecraft:golden_rail;rail_direction=3;rail_data_bit=1 blockId=27 -runtimeId=4986 +runtimeId=4987 minecraft:golden_rail;rail_direction=4;rail_data_bit=0 blockId=27 -runtimeId=4981 +runtimeId=4982 minecraft:golden_rail;rail_direction=4;rail_data_bit=1 blockId=27 -runtimeId=4987 +runtimeId=4988 minecraft:golden_rail;rail_direction=5;rail_data_bit=0 blockId=27 -runtimeId=4982 +runtimeId=4983 minecraft:golden_rail;rail_direction=5;rail_data_bit=1 blockId=27 -runtimeId=4988 +runtimeId=4989 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=424 -runtimeId=4989 +runtimeId=4990 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=424 -runtimeId=4990 +runtimeId=4991 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=424 -runtimeId=4991 +runtimeId=4992 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=424 -runtimeId=4992 +runtimeId=4993 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=424 -runtimeId=4993 +runtimeId=4994 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=424 -runtimeId=4994 +runtimeId=4995 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=424 -runtimeId=4995 +runtimeId=4996 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=424 -runtimeId=4996 +runtimeId=4997 minecraft:grass blockId=2 -runtimeId=4997 +runtimeId=4998 minecraft:grass_path blockId=198 -runtimeId=4998 +runtimeId=4999 minecraft:gravel blockId=13 -runtimeId=4999 +runtimeId=5000 minecraft:gray_candle;lit=0;candles=0 blockId=675 -runtimeId=5000 +runtimeId=5001 minecraft:gray_candle;lit=0;candles=1 blockId=675 -runtimeId=5001 +runtimeId=5002 minecraft:gray_candle;lit=0;candles=2 blockId=675 -runtimeId=5002 +runtimeId=5003 minecraft:gray_candle;lit=0;candles=3 blockId=675 -runtimeId=5003 +runtimeId=5004 minecraft:gray_candle;lit=1;candles=0 blockId=675 -runtimeId=5004 +runtimeId=5005 minecraft:gray_candle;lit=1;candles=1 blockId=675 -runtimeId=5005 +runtimeId=5006 minecraft:gray_candle;lit=1;candles=2 blockId=675 -runtimeId=5006 +runtimeId=5007 minecraft:gray_candle;lit=1;candles=3 blockId=675 -runtimeId=5007 +runtimeId=5008 minecraft:gray_candle_cake;lit=0 blockId=692 -runtimeId=5008 +runtimeId=5009 minecraft:gray_candle_cake;lit=1 blockId=692 -runtimeId=5009 +runtimeId=5010 minecraft:gray_glazed_terracotta;facing_direction=0 blockId=227 -runtimeId=5010 +runtimeId=5011 minecraft:gray_glazed_terracotta;facing_direction=1 blockId=227 -runtimeId=5011 +runtimeId=5012 minecraft:gray_glazed_terracotta;facing_direction=2 blockId=227 -runtimeId=5012 +runtimeId=5013 minecraft:gray_glazed_terracotta;facing_direction=3 blockId=227 -runtimeId=5013 +runtimeId=5014 minecraft:gray_glazed_terracotta;facing_direction=4 blockId=227 -runtimeId=5014 +runtimeId=5015 minecraft:gray_glazed_terracotta;facing_direction=5 blockId=227 -runtimeId=5015 +runtimeId=5016 minecraft:green_candle;lit=0;candles=0 blockId=681 -runtimeId=5016 +runtimeId=5017 minecraft:green_candle;lit=0;candles=1 blockId=681 -runtimeId=5017 +runtimeId=5018 minecraft:green_candle;lit=0;candles=2 blockId=681 -runtimeId=5018 +runtimeId=5019 minecraft:green_candle;lit=0;candles=3 blockId=681 -runtimeId=5019 +runtimeId=5020 minecraft:green_candle;lit=1;candles=0 blockId=681 -runtimeId=5020 +runtimeId=5021 minecraft:green_candle;lit=1;candles=1 blockId=681 -runtimeId=5021 +runtimeId=5022 minecraft:green_candle;lit=1;candles=2 blockId=681 -runtimeId=5022 +runtimeId=5023 minecraft:green_candle;lit=1;candles=3 blockId=681 -runtimeId=5023 +runtimeId=5024 minecraft:green_candle_cake;lit=0 blockId=698 -runtimeId=5024 +runtimeId=5025 minecraft:green_candle_cake;lit=1 blockId=698 -runtimeId=5025 +runtimeId=5026 minecraft:green_glazed_terracotta;facing_direction=0 blockId=233 -runtimeId=5026 +runtimeId=5027 minecraft:green_glazed_terracotta;facing_direction=1 blockId=233 -runtimeId=5027 +runtimeId=5028 minecraft:green_glazed_terracotta;facing_direction=2 blockId=233 -runtimeId=5028 +runtimeId=5029 minecraft:green_glazed_terracotta;facing_direction=3 blockId=233 -runtimeId=5029 +runtimeId=5030 minecraft:green_glazed_terracotta;facing_direction=4 blockId=233 -runtimeId=5030 +runtimeId=5031 minecraft:green_glazed_terracotta;facing_direction=5 blockId=233 -runtimeId=5031 +runtimeId=5032 minecraft:grindstone;attachment=hanging;direction=0 blockId=450 -runtimeId=5036 +runtimeId=5037 minecraft:grindstone;attachment=hanging;direction=1 blockId=450 -runtimeId=5037 +runtimeId=5038 minecraft:grindstone;attachment=hanging;direction=2 blockId=450 -runtimeId=5038 +runtimeId=5039 minecraft:grindstone;attachment=hanging;direction=3 blockId=450 -runtimeId=5039 +runtimeId=5040 minecraft:grindstone;attachment=multiple;direction=0 blockId=450 -runtimeId=5044 +runtimeId=5045 minecraft:grindstone;attachment=multiple;direction=1 blockId=450 -runtimeId=5045 +runtimeId=5046 minecraft:grindstone;attachment=multiple;direction=2 blockId=450 -runtimeId=5046 +runtimeId=5047 minecraft:grindstone;attachment=multiple;direction=3 blockId=450 -runtimeId=5047 +runtimeId=5048 minecraft:grindstone;attachment=side;direction=0 blockId=450 -runtimeId=5040 +runtimeId=5041 minecraft:grindstone;attachment=side;direction=1 blockId=450 -runtimeId=5041 +runtimeId=5042 minecraft:grindstone;attachment=side;direction=2 blockId=450 -runtimeId=5042 +runtimeId=5043 minecraft:grindstone;attachment=side;direction=3 blockId=450 -runtimeId=5043 +runtimeId=5044 minecraft:grindstone;attachment=standing;direction=0 blockId=450 -runtimeId=5032 +runtimeId=5033 minecraft:grindstone;attachment=standing;direction=1 blockId=450 -runtimeId=5033 +runtimeId=5034 minecraft:grindstone;attachment=standing;direction=2 blockId=450 -runtimeId=5034 +runtimeId=5035 minecraft:grindstone;attachment=standing;direction=3 blockId=450 -runtimeId=5035 +runtimeId=5036 minecraft:hanging_roots blockId=574 -runtimeId=5048 +runtimeId=5049 minecraft:hard_glass blockId=253 -runtimeId=5049 +runtimeId=5050 minecraft:hard_glass_pane blockId=190 -runtimeId=5050 +runtimeId=5051 minecraft:hard_stained_glass;color=black blockId=254 -runtimeId=5066 +runtimeId=5067 minecraft:hard_stained_glass;color=blue blockId=254 -runtimeId=5062 +runtimeId=5063 minecraft:hard_stained_glass;color=brown blockId=254 -runtimeId=5063 +runtimeId=5064 minecraft:hard_stained_glass;color=cyan blockId=254 -runtimeId=5060 +runtimeId=5061 minecraft:hard_stained_glass;color=gray blockId=254 -runtimeId=5058 +runtimeId=5059 minecraft:hard_stained_glass;color=green blockId=254 -runtimeId=5064 +runtimeId=5065 minecraft:hard_stained_glass;color=light_blue blockId=254 -runtimeId=5054 +runtimeId=5055 minecraft:hard_stained_glass;color=lime blockId=254 -runtimeId=5056 +runtimeId=5057 minecraft:hard_stained_glass;color=magenta blockId=254 -runtimeId=5053 +runtimeId=5054 minecraft:hard_stained_glass;color=orange blockId=254 -runtimeId=5052 +runtimeId=5053 minecraft:hard_stained_glass;color=pink blockId=254 -runtimeId=5057 +runtimeId=5058 minecraft:hard_stained_glass;color=purple blockId=254 -runtimeId=5061 +runtimeId=5062 minecraft:hard_stained_glass;color=red blockId=254 -runtimeId=5065 +runtimeId=5066 minecraft:hard_stained_glass;color=silver blockId=254 -runtimeId=5059 +runtimeId=5060 minecraft:hard_stained_glass;color=white blockId=254 -runtimeId=5051 +runtimeId=5052 minecraft:hard_stained_glass;color=yellow blockId=254 -runtimeId=5055 +runtimeId=5056 minecraft:hard_stained_glass_pane;color=black blockId=191 -runtimeId=5082 +runtimeId=5083 minecraft:hard_stained_glass_pane;color=blue blockId=191 -runtimeId=5078 +runtimeId=5079 minecraft:hard_stained_glass_pane;color=brown blockId=191 -runtimeId=5079 +runtimeId=5080 minecraft:hard_stained_glass_pane;color=cyan blockId=191 -runtimeId=5076 +runtimeId=5077 minecraft:hard_stained_glass_pane;color=gray blockId=191 -runtimeId=5074 +runtimeId=5075 minecraft:hard_stained_glass_pane;color=green blockId=191 -runtimeId=5080 +runtimeId=5081 minecraft:hard_stained_glass_pane;color=light_blue blockId=191 -runtimeId=5070 +runtimeId=5071 minecraft:hard_stained_glass_pane;color=lime blockId=191 -runtimeId=5072 +runtimeId=5073 minecraft:hard_stained_glass_pane;color=magenta blockId=191 -runtimeId=5069 +runtimeId=5070 minecraft:hard_stained_glass_pane;color=orange blockId=191 -runtimeId=5068 +runtimeId=5069 minecraft:hard_stained_glass_pane;color=pink blockId=191 -runtimeId=5073 +runtimeId=5074 minecraft:hard_stained_glass_pane;color=purple blockId=191 -runtimeId=5077 +runtimeId=5078 minecraft:hard_stained_glass_pane;color=red blockId=191 -runtimeId=5081 +runtimeId=5082 minecraft:hard_stained_glass_pane;color=silver blockId=191 -runtimeId=5075 +runtimeId=5076 minecraft:hard_stained_glass_pane;color=white blockId=191 -runtimeId=5067 +runtimeId=5068 minecraft:hard_stained_glass_pane;color=yellow blockId=191 -runtimeId=5071 +runtimeId=5072 minecraft:hardened_clay blockId=172 -runtimeId=5083 +runtimeId=5084 minecraft:hay_block;deprecated=0;pillar_axis=x blockId=170 -runtimeId=5088 +runtimeId=5089 minecraft:hay_block;deprecated=0;pillar_axis=y blockId=170 -runtimeId=5084 +runtimeId=5085 minecraft:hay_block;deprecated=0;pillar_axis=z blockId=170 -runtimeId=5092 +runtimeId=5093 minecraft:hay_block;deprecated=1;pillar_axis=x blockId=170 -runtimeId=5089 +runtimeId=5090 minecraft:hay_block;deprecated=1;pillar_axis=y blockId=170 -runtimeId=5085 +runtimeId=5086 minecraft:hay_block;deprecated=1;pillar_axis=z blockId=170 -runtimeId=5093 +runtimeId=5094 minecraft:hay_block;deprecated=2;pillar_axis=x blockId=170 -runtimeId=5090 +runtimeId=5091 minecraft:hay_block;deprecated=2;pillar_axis=y blockId=170 -runtimeId=5086 +runtimeId=5087 minecraft:hay_block;deprecated=2;pillar_axis=z blockId=170 -runtimeId=5094 +runtimeId=5095 minecraft:hay_block;deprecated=3;pillar_axis=x blockId=170 -runtimeId=5091 +runtimeId=5092 minecraft:hay_block;deprecated=3;pillar_axis=y blockId=170 -runtimeId=5087 +runtimeId=5088 minecraft:hay_block;deprecated=3;pillar_axis=z blockId=170 -runtimeId=5095 +runtimeId=5096 minecraft:heavy_weighted_pressure_plate;redstone_signal=0 blockId=148 -runtimeId=5096 +runtimeId=5097 minecraft:heavy_weighted_pressure_plate;redstone_signal=1 blockId=148 -runtimeId=5097 +runtimeId=5098 minecraft:heavy_weighted_pressure_plate;redstone_signal=2 blockId=148 -runtimeId=5098 +runtimeId=5099 minecraft:heavy_weighted_pressure_plate;redstone_signal=3 blockId=148 -runtimeId=5099 +runtimeId=5100 minecraft:heavy_weighted_pressure_plate;redstone_signal=4 blockId=148 -runtimeId=5100 +runtimeId=5101 minecraft:heavy_weighted_pressure_plate;redstone_signal=5 blockId=148 -runtimeId=5101 +runtimeId=5102 minecraft:heavy_weighted_pressure_plate;redstone_signal=6 blockId=148 -runtimeId=5102 +runtimeId=5103 minecraft:heavy_weighted_pressure_plate;redstone_signal=7 blockId=148 -runtimeId=5103 +runtimeId=5104 minecraft:heavy_weighted_pressure_plate;redstone_signal=8 blockId=148 -runtimeId=5104 +runtimeId=5105 minecraft:heavy_weighted_pressure_plate;redstone_signal=9 blockId=148 -runtimeId=5105 +runtimeId=5106 minecraft:heavy_weighted_pressure_plate;redstone_signal=10 blockId=148 -runtimeId=5106 +runtimeId=5107 minecraft:heavy_weighted_pressure_plate;redstone_signal=11 blockId=148 -runtimeId=5107 +runtimeId=5108 minecraft:heavy_weighted_pressure_plate;redstone_signal=12 blockId=148 -runtimeId=5108 +runtimeId=5109 minecraft:heavy_weighted_pressure_plate;redstone_signal=13 blockId=148 -runtimeId=5109 +runtimeId=5110 minecraft:heavy_weighted_pressure_plate;redstone_signal=14 blockId=148 -runtimeId=5110 +runtimeId=5111 minecraft:heavy_weighted_pressure_plate;redstone_signal=15 blockId=148 -runtimeId=5111 +runtimeId=5112 minecraft:honey_block blockId=475 -runtimeId=5112 +runtimeId=5113 minecraft:honeycomb_block blockId=476 -runtimeId=5113 +runtimeId=5114 minecraft:hopper;facing_direction=0;toggle_bit=0 blockId=154 -runtimeId=5114 +runtimeId=5115 minecraft:hopper;facing_direction=0;toggle_bit=1 blockId=154 -runtimeId=5120 +runtimeId=5121 minecraft:hopper;facing_direction=1;toggle_bit=0 blockId=154 -runtimeId=5115 +runtimeId=5116 minecraft:hopper;facing_direction=1;toggle_bit=1 blockId=154 -runtimeId=5121 +runtimeId=5122 minecraft:hopper;facing_direction=2;toggle_bit=0 blockId=154 -runtimeId=5116 +runtimeId=5117 minecraft:hopper;facing_direction=2;toggle_bit=1 blockId=154 -runtimeId=5122 +runtimeId=5123 minecraft:hopper;facing_direction=3;toggle_bit=0 blockId=154 -runtimeId=5117 +runtimeId=5118 minecraft:hopper;facing_direction=3;toggle_bit=1 blockId=154 -runtimeId=5123 +runtimeId=5124 minecraft:hopper;facing_direction=4;toggle_bit=0 blockId=154 -runtimeId=5118 +runtimeId=5119 minecraft:hopper;facing_direction=4;toggle_bit=1 blockId=154 -runtimeId=5124 +runtimeId=5125 minecraft:hopper;facing_direction=5;toggle_bit=0 blockId=154 -runtimeId=5119 +runtimeId=5120 minecraft:hopper;facing_direction=5;toggle_bit=1 blockId=154 -runtimeId=5125 +runtimeId=5126 minecraft:ice blockId=79 -runtimeId=5126 +runtimeId=5127 minecraft:infested_deepslate;pillar_axis=x blockId=709 -runtimeId=5128 +runtimeId=5129 minecraft:infested_deepslate;pillar_axis=y blockId=709 -runtimeId=5127 +runtimeId=5128 minecraft:infested_deepslate;pillar_axis=z blockId=709 -runtimeId=5129 +runtimeId=5130 minecraft:info_update blockId=248 -runtimeId=5130 +runtimeId=5131 minecraft:info_update2 blockId=249 -runtimeId=5131 +runtimeId=5132 minecraft:invisibleBedrock blockId=95 -runtimeId=5132 +runtimeId=5133 minecraft:iron_bars blockId=101 -runtimeId=5133 +runtimeId=5134 minecraft:iron_block blockId=42 -runtimeId=5134 +runtimeId=5135 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5135 +runtimeId=5136 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5136 +runtimeId=5137 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5137 +runtimeId=5138 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5138 +runtimeId=5139 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5151 +runtimeId=5152 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5152 +runtimeId=5153 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5153 +runtimeId=5154 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5154 +runtimeId=5155 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5143 +runtimeId=5144 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5144 +runtimeId=5145 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5145 +runtimeId=5146 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5146 +runtimeId=5147 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5159 +runtimeId=5160 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5160 +runtimeId=5161 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5161 +runtimeId=5162 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5162 +runtimeId=5163 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5139 +runtimeId=5140 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5140 +runtimeId=5141 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5141 +runtimeId=5142 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5142 +runtimeId=5143 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5155 +runtimeId=5156 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5156 +runtimeId=5157 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5157 +runtimeId=5158 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5158 +runtimeId=5159 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5147 +runtimeId=5148 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5148 +runtimeId=5149 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5149 +runtimeId=5150 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5150 +runtimeId=5151 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5163 +runtimeId=5164 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5164 +runtimeId=5165 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5165 +runtimeId=5166 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5166 +runtimeId=5167 minecraft:iron_ore blockId=15 -runtimeId=5167 +runtimeId=5168 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=167 -runtimeId=5168 +runtimeId=5169 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=167 -runtimeId=5169 +runtimeId=5170 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=167 -runtimeId=5170 +runtimeId=5171 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=167 -runtimeId=5171 +runtimeId=5172 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=167 -runtimeId=5172 +runtimeId=5173 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=167 -runtimeId=5173 +runtimeId=5174 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=167 -runtimeId=5174 +runtimeId=5175 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=167 -runtimeId=5175 +runtimeId=5176 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=167 -runtimeId=5176 +runtimeId=5177 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=167 -runtimeId=5177 +runtimeId=5178 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=167 -runtimeId=5178 +runtimeId=5179 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=167 -runtimeId=5179 +runtimeId=5180 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=167 -runtimeId=5180 +runtimeId=5181 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=167 -runtimeId=5181 +runtimeId=5182 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=167 -runtimeId=5182 +runtimeId=5183 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=167 -runtimeId=5183 +runtimeId=5184 minecraft:jigsaw;facing_direction=0;rotation=0 blockId=466 -runtimeId=5184 +runtimeId=5185 minecraft:jigsaw;facing_direction=0;rotation=1 blockId=466 -runtimeId=5190 +runtimeId=5191 minecraft:jigsaw;facing_direction=0;rotation=2 blockId=466 -runtimeId=5196 +runtimeId=5197 minecraft:jigsaw;facing_direction=0;rotation=3 blockId=466 -runtimeId=5202 +runtimeId=5203 minecraft:jigsaw;facing_direction=1;rotation=0 blockId=466 -runtimeId=5185 +runtimeId=5186 minecraft:jigsaw;facing_direction=1;rotation=1 blockId=466 -runtimeId=5191 +runtimeId=5192 minecraft:jigsaw;facing_direction=1;rotation=2 blockId=466 -runtimeId=5197 +runtimeId=5198 minecraft:jigsaw;facing_direction=1;rotation=3 blockId=466 -runtimeId=5203 +runtimeId=5204 minecraft:jigsaw;facing_direction=2;rotation=0 blockId=466 -runtimeId=5186 +runtimeId=5187 minecraft:jigsaw;facing_direction=2;rotation=1 blockId=466 -runtimeId=5192 +runtimeId=5193 minecraft:jigsaw;facing_direction=2;rotation=2 blockId=466 -runtimeId=5198 +runtimeId=5199 minecraft:jigsaw;facing_direction=2;rotation=3 blockId=466 -runtimeId=5204 +runtimeId=5205 minecraft:jigsaw;facing_direction=3;rotation=0 blockId=466 -runtimeId=5187 +runtimeId=5188 minecraft:jigsaw;facing_direction=3;rotation=1 blockId=466 -runtimeId=5193 +runtimeId=5194 minecraft:jigsaw;facing_direction=3;rotation=2 blockId=466 -runtimeId=5199 +runtimeId=5200 minecraft:jigsaw;facing_direction=3;rotation=3 blockId=466 -runtimeId=5205 +runtimeId=5206 minecraft:jigsaw;facing_direction=4;rotation=0 blockId=466 -runtimeId=5188 +runtimeId=5189 minecraft:jigsaw;facing_direction=4;rotation=1 blockId=466 -runtimeId=5194 +runtimeId=5195 minecraft:jigsaw;facing_direction=4;rotation=2 blockId=466 -runtimeId=5200 +runtimeId=5201 minecraft:jigsaw;facing_direction=4;rotation=3 blockId=466 -runtimeId=5206 +runtimeId=5207 minecraft:jigsaw;facing_direction=5;rotation=0 blockId=466 -runtimeId=5189 +runtimeId=5190 minecraft:jigsaw;facing_direction=5;rotation=1 blockId=466 -runtimeId=5195 +runtimeId=5196 minecraft:jigsaw;facing_direction=5;rotation=2 blockId=466 -runtimeId=5201 +runtimeId=5202 minecraft:jigsaw;facing_direction=5;rotation=3 blockId=466 -runtimeId=5207 +runtimeId=5208 minecraft:jukebox blockId=84 -runtimeId=5208 +runtimeId=5209 minecraft:jungle_button;button_pressed_bit=0;facing_direction=0 blockId=398 -runtimeId=5209 +runtimeId=5210 minecraft:jungle_button;button_pressed_bit=0;facing_direction=1 blockId=398 -runtimeId=5210 +runtimeId=5211 minecraft:jungle_button;button_pressed_bit=0;facing_direction=2 blockId=398 -runtimeId=5211 +runtimeId=5212 minecraft:jungle_button;button_pressed_bit=0;facing_direction=3 blockId=398 -runtimeId=5212 +runtimeId=5213 minecraft:jungle_button;button_pressed_bit=0;facing_direction=4 blockId=398 -runtimeId=5213 +runtimeId=5214 minecraft:jungle_button;button_pressed_bit=0;facing_direction=5 blockId=398 -runtimeId=5214 +runtimeId=5215 minecraft:jungle_button;button_pressed_bit=1;facing_direction=0 blockId=398 -runtimeId=5215 +runtimeId=5216 minecraft:jungle_button;button_pressed_bit=1;facing_direction=1 blockId=398 -runtimeId=5216 +runtimeId=5217 minecraft:jungle_button;button_pressed_bit=1;facing_direction=2 blockId=398 -runtimeId=5217 +runtimeId=5218 minecraft:jungle_button;button_pressed_bit=1;facing_direction=3 blockId=398 -runtimeId=5218 +runtimeId=5219 minecraft:jungle_button;button_pressed_bit=1;facing_direction=4 blockId=398 -runtimeId=5219 +runtimeId=5220 minecraft:jungle_button;button_pressed_bit=1;facing_direction=5 blockId=398 -runtimeId=5220 +runtimeId=5221 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5221 +runtimeId=5222 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5222 +runtimeId=5223 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5223 +runtimeId=5224 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5224 +runtimeId=5225 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5237 +runtimeId=5238 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5238 +runtimeId=5239 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5239 +runtimeId=5240 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5240 +runtimeId=5241 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5229 +runtimeId=5230 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5230 +runtimeId=5231 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5231 +runtimeId=5232 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5232 +runtimeId=5233 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5245 +runtimeId=5246 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5246 +runtimeId=5247 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5247 +runtimeId=5248 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5248 +runtimeId=5249 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5225 +runtimeId=5226 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5226 +runtimeId=5227 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5227 +runtimeId=5228 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5228 +runtimeId=5229 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5241 +runtimeId=5242 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5242 +runtimeId=5243 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5243 +runtimeId=5244 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5244 +runtimeId=5245 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5233 +runtimeId=5234 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5234 +runtimeId=5235 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5235 +runtimeId=5236 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5236 +runtimeId=5237 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5249 +runtimeId=5250 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5250 +runtimeId=5251 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5251 +runtimeId=5252 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5252 +runtimeId=5253 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=185 -runtimeId=5253 +runtimeId=5254 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=185 -runtimeId=5254 +runtimeId=5255 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=185 -runtimeId=5255 +runtimeId=5256 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=185 -runtimeId=5256 +runtimeId=5257 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=185 -runtimeId=5257 +runtimeId=5258 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=185 -runtimeId=5258 +runtimeId=5259 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=185 -runtimeId=5259 +runtimeId=5260 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=185 -runtimeId=5260 +runtimeId=5261 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=185 -runtimeId=5261 +runtimeId=5262 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=185 -runtimeId=5262 +runtimeId=5263 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=185 -runtimeId=5263 +runtimeId=5264 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=185 -runtimeId=5264 +runtimeId=5265 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=185 -runtimeId=5265 +runtimeId=5266 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=185 -runtimeId=5266 +runtimeId=5267 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=185 -runtimeId=5267 +runtimeId=5268 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=185 -runtimeId=5268 +runtimeId=5269 minecraft:jungle_pressure_plate;redstone_signal=0 blockId=408 -runtimeId=5269 +runtimeId=5270 minecraft:jungle_pressure_plate;redstone_signal=1 blockId=408 -runtimeId=5270 +runtimeId=5271 minecraft:jungle_pressure_plate;redstone_signal=2 blockId=408 -runtimeId=5271 +runtimeId=5272 minecraft:jungle_pressure_plate;redstone_signal=3 blockId=408 -runtimeId=5272 +runtimeId=5273 minecraft:jungle_pressure_plate;redstone_signal=4 blockId=408 -runtimeId=5273 +runtimeId=5274 minecraft:jungle_pressure_plate;redstone_signal=5 blockId=408 -runtimeId=5274 +runtimeId=5275 minecraft:jungle_pressure_plate;redstone_signal=6 blockId=408 -runtimeId=5275 +runtimeId=5276 minecraft:jungle_pressure_plate;redstone_signal=7 blockId=408 -runtimeId=5276 +runtimeId=5277 minecraft:jungle_pressure_plate;redstone_signal=8 blockId=408 -runtimeId=5277 +runtimeId=5278 minecraft:jungle_pressure_plate;redstone_signal=9 blockId=408 -runtimeId=5278 +runtimeId=5279 minecraft:jungle_pressure_plate;redstone_signal=10 blockId=408 -runtimeId=5279 +runtimeId=5280 minecraft:jungle_pressure_plate;redstone_signal=11 blockId=408 -runtimeId=5280 +runtimeId=5281 minecraft:jungle_pressure_plate;redstone_signal=12 blockId=408 -runtimeId=5281 +runtimeId=5282 minecraft:jungle_pressure_plate;redstone_signal=13 blockId=408 -runtimeId=5282 +runtimeId=5283 minecraft:jungle_pressure_plate;redstone_signal=14 blockId=408 -runtimeId=5283 +runtimeId=5284 minecraft:jungle_pressure_plate;redstone_signal=15 blockId=408 -runtimeId=5284 +runtimeId=5285 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=0 blockId=136 -runtimeId=5285 +runtimeId=5286 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=1 blockId=136 -runtimeId=5286 +runtimeId=5287 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=2 blockId=136 -runtimeId=5287 +runtimeId=5288 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=3 blockId=136 -runtimeId=5288 +runtimeId=5289 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=0 blockId=136 -runtimeId=5289 +runtimeId=5290 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=1 blockId=136 -runtimeId=5290 +runtimeId=5291 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=2 blockId=136 -runtimeId=5291 +runtimeId=5292 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=3 blockId=136 -runtimeId=5292 +runtimeId=5293 minecraft:jungle_standing_sign;ground_sign_direction=0 blockId=443 -runtimeId=5293 +runtimeId=5294 minecraft:jungle_standing_sign;ground_sign_direction=1 blockId=443 -runtimeId=5294 +runtimeId=5295 minecraft:jungle_standing_sign;ground_sign_direction=2 blockId=443 -runtimeId=5295 +runtimeId=5296 minecraft:jungle_standing_sign;ground_sign_direction=3 blockId=443 -runtimeId=5296 +runtimeId=5297 minecraft:jungle_standing_sign;ground_sign_direction=4 blockId=443 -runtimeId=5297 +runtimeId=5298 minecraft:jungle_standing_sign;ground_sign_direction=5 blockId=443 -runtimeId=5298 +runtimeId=5299 minecraft:jungle_standing_sign;ground_sign_direction=6 blockId=443 -runtimeId=5299 +runtimeId=5300 minecraft:jungle_standing_sign;ground_sign_direction=7 blockId=443 -runtimeId=5300 +runtimeId=5301 minecraft:jungle_standing_sign;ground_sign_direction=8 blockId=443 -runtimeId=5301 +runtimeId=5302 minecraft:jungle_standing_sign;ground_sign_direction=9 blockId=443 -runtimeId=5302 +runtimeId=5303 minecraft:jungle_standing_sign;ground_sign_direction=10 blockId=443 -runtimeId=5303 +runtimeId=5304 minecraft:jungle_standing_sign;ground_sign_direction=11 blockId=443 -runtimeId=5304 +runtimeId=5305 minecraft:jungle_standing_sign;ground_sign_direction=12 blockId=443 -runtimeId=5305 +runtimeId=5306 minecraft:jungle_standing_sign;ground_sign_direction=13 blockId=443 -runtimeId=5306 +runtimeId=5307 minecraft:jungle_standing_sign;ground_sign_direction=14 blockId=443 -runtimeId=5307 +runtimeId=5308 minecraft:jungle_standing_sign;ground_sign_direction=15 blockId=443 -runtimeId=5308 +runtimeId=5309 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=403 -runtimeId=5309 +runtimeId=5310 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=403 -runtimeId=5310 +runtimeId=5311 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=403 -runtimeId=5311 +runtimeId=5312 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=403 -runtimeId=5312 +runtimeId=5313 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=403 -runtimeId=5313 +runtimeId=5314 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=403 -runtimeId=5314 +runtimeId=5315 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=403 -runtimeId=5315 +runtimeId=5316 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=403 -runtimeId=5316 +runtimeId=5317 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=403 -runtimeId=5317 +runtimeId=5318 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=403 -runtimeId=5318 +runtimeId=5319 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=403 -runtimeId=5319 +runtimeId=5320 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=403 -runtimeId=5320 +runtimeId=5321 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=403 -runtimeId=5321 +runtimeId=5322 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=403 -runtimeId=5322 +runtimeId=5323 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=403 -runtimeId=5323 +runtimeId=5324 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=403 -runtimeId=5324 +runtimeId=5325 minecraft:jungle_wall_sign;facing_direction=0 blockId=444 -runtimeId=5325 +runtimeId=5326 minecraft:jungle_wall_sign;facing_direction=1 blockId=444 -runtimeId=5326 +runtimeId=5327 minecraft:jungle_wall_sign;facing_direction=2 blockId=444 -runtimeId=5327 +runtimeId=5328 minecraft:jungle_wall_sign;facing_direction=3 blockId=444 -runtimeId=5328 +runtimeId=5329 minecraft:jungle_wall_sign;facing_direction=4 blockId=444 -runtimeId=5329 +runtimeId=5330 minecraft:jungle_wall_sign;facing_direction=5 blockId=444 -runtimeId=5330 +runtimeId=5331 minecraft:kelp;kelp_age=0 blockId=393 -runtimeId=5331 +runtimeId=5332 minecraft:kelp;kelp_age=1 blockId=393 -runtimeId=5332 +runtimeId=5333 minecraft:kelp;kelp_age=2 blockId=393 -runtimeId=5333 +runtimeId=5334 minecraft:kelp;kelp_age=3 blockId=393 -runtimeId=5334 +runtimeId=5335 minecraft:kelp;kelp_age=4 blockId=393 -runtimeId=5335 +runtimeId=5336 minecraft:kelp;kelp_age=5 blockId=393 -runtimeId=5336 +runtimeId=5337 minecraft:kelp;kelp_age=6 blockId=393 -runtimeId=5337 +runtimeId=5338 minecraft:kelp;kelp_age=7 blockId=393 -runtimeId=5338 +runtimeId=5339 minecraft:kelp;kelp_age=8 blockId=393 -runtimeId=5339 +runtimeId=5340 minecraft:kelp;kelp_age=9 blockId=393 -runtimeId=5340 +runtimeId=5341 minecraft:kelp;kelp_age=10 blockId=393 -runtimeId=5341 +runtimeId=5342 minecraft:kelp;kelp_age=11 blockId=393 -runtimeId=5342 +runtimeId=5343 minecraft:kelp;kelp_age=12 blockId=393 -runtimeId=5343 +runtimeId=5344 minecraft:kelp;kelp_age=13 blockId=393 -runtimeId=5344 +runtimeId=5345 minecraft:kelp;kelp_age=14 blockId=393 -runtimeId=5345 +runtimeId=5346 minecraft:kelp;kelp_age=15 blockId=393 -runtimeId=5346 +runtimeId=5347 minecraft:kelp;kelp_age=16 blockId=393 -runtimeId=5347 +runtimeId=5348 minecraft:kelp;kelp_age=17 blockId=393 -runtimeId=5348 +runtimeId=5349 minecraft:kelp;kelp_age=18 blockId=393 -runtimeId=5349 +runtimeId=5350 minecraft:kelp;kelp_age=19 blockId=393 -runtimeId=5350 +runtimeId=5351 minecraft:kelp;kelp_age=20 blockId=393 -runtimeId=5351 +runtimeId=5352 minecraft:kelp;kelp_age=21 blockId=393 -runtimeId=5352 +runtimeId=5353 minecraft:kelp;kelp_age=22 blockId=393 -runtimeId=5353 +runtimeId=5354 minecraft:kelp;kelp_age=23 blockId=393 -runtimeId=5354 +runtimeId=5355 minecraft:kelp;kelp_age=24 blockId=393 -runtimeId=5355 +runtimeId=5356 minecraft:kelp;kelp_age=25 blockId=393 -runtimeId=5356 +runtimeId=5357 minecraft:ladder;facing_direction=0 blockId=65 -runtimeId=5357 +runtimeId=5358 minecraft:ladder;facing_direction=1 blockId=65 -runtimeId=5358 +runtimeId=5359 minecraft:ladder;facing_direction=2 blockId=65 -runtimeId=5359 +runtimeId=5360 minecraft:ladder;facing_direction=3 blockId=65 -runtimeId=5360 +runtimeId=5361 minecraft:ladder;facing_direction=4 blockId=65 -runtimeId=5361 +runtimeId=5362 minecraft:ladder;facing_direction=5 blockId=65 -runtimeId=5362 +runtimeId=5363 minecraft:lantern;hanging=0 blockId=463 -runtimeId=5363 +runtimeId=5364 minecraft:lantern;hanging=1 blockId=463 -runtimeId=5364 +runtimeId=5365 minecraft:lapis_block blockId=22 -runtimeId=5365 +runtimeId=5366 minecraft:lapis_ore blockId=21 -runtimeId=5366 +runtimeId=5367 minecraft:large_amethyst_bud;facing_direction=0 blockId=585 -runtimeId=5367 +runtimeId=5368 minecraft:large_amethyst_bud;facing_direction=1 blockId=585 -runtimeId=5368 +runtimeId=5369 minecraft:large_amethyst_bud;facing_direction=2 blockId=585 -runtimeId=5369 +runtimeId=5370 minecraft:large_amethyst_bud;facing_direction=3 blockId=585 -runtimeId=5370 +runtimeId=5371 minecraft:large_amethyst_bud;facing_direction=4 blockId=585 -runtimeId=5371 +runtimeId=5372 minecraft:large_amethyst_bud;facing_direction=5 blockId=585 -runtimeId=5372 +runtimeId=5373 minecraft:lava;liquid_depth=0 blockId=11 -runtimeId=5373 +runtimeId=5374 minecraft:lava;liquid_depth=1 blockId=11 -runtimeId=5374 +runtimeId=5375 minecraft:lava;liquid_depth=2 blockId=11 -runtimeId=5375 +runtimeId=5376 minecraft:lava;liquid_depth=3 blockId=11 -runtimeId=5376 +runtimeId=5377 minecraft:lava;liquid_depth=4 blockId=11 -runtimeId=5377 +runtimeId=5378 minecraft:lava;liquid_depth=5 blockId=11 -runtimeId=5378 +runtimeId=5379 minecraft:lava;liquid_depth=6 blockId=11 -runtimeId=5379 +runtimeId=5380 minecraft:lava;liquid_depth=7 blockId=11 -runtimeId=5380 +runtimeId=5381 minecraft:lava;liquid_depth=8 blockId=11 -runtimeId=5381 +runtimeId=5382 minecraft:lava;liquid_depth=9 blockId=11 -runtimeId=5382 +runtimeId=5383 minecraft:lava;liquid_depth=10 blockId=11 -runtimeId=5383 +runtimeId=5384 minecraft:lava;liquid_depth=11 blockId=11 -runtimeId=5384 +runtimeId=5385 minecraft:lava;liquid_depth=12 blockId=11 -runtimeId=5385 +runtimeId=5386 minecraft:lava;liquid_depth=13 blockId=11 -runtimeId=5386 +runtimeId=5387 minecraft:lava;liquid_depth=14 blockId=11 -runtimeId=5387 +runtimeId=5388 minecraft:lava;liquid_depth=15 blockId=11 -runtimeId=5388 +runtimeId=5389 minecraft:lava_cauldron;fill_level=0;cauldron_liquid=lava blockId=465 -runtimeId=5396 +runtimeId=5397 minecraft:lava_cauldron;fill_level=0;cauldron_liquid=powder_snow blockId=465 -runtimeId=5403 +runtimeId=5404 minecraft:lava_cauldron;fill_level=0;cauldron_liquid=water blockId=465 -runtimeId=5389 +runtimeId=5390 minecraft:lava_cauldron;fill_level=1;cauldron_liquid=lava blockId=465 -runtimeId=5397 +runtimeId=5398 minecraft:lava_cauldron;fill_level=1;cauldron_liquid=powder_snow blockId=465 -runtimeId=5404 +runtimeId=5405 minecraft:lava_cauldron;fill_level=1;cauldron_liquid=water blockId=465 -runtimeId=5390 +runtimeId=5391 minecraft:lava_cauldron;fill_level=2;cauldron_liquid=lava blockId=465 -runtimeId=5398 +runtimeId=5399 minecraft:lava_cauldron;fill_level=2;cauldron_liquid=powder_snow blockId=465 -runtimeId=5405 +runtimeId=5406 minecraft:lava_cauldron;fill_level=2;cauldron_liquid=water blockId=465 -runtimeId=5391 +runtimeId=5392 minecraft:lava_cauldron;fill_level=3;cauldron_liquid=lava blockId=465 -runtimeId=5399 +runtimeId=5400 minecraft:lava_cauldron;fill_level=3;cauldron_liquid=powder_snow blockId=465 -runtimeId=5406 +runtimeId=5407 minecraft:lava_cauldron;fill_level=3;cauldron_liquid=water blockId=465 -runtimeId=5392 +runtimeId=5393 minecraft:lava_cauldron;fill_level=4;cauldron_liquid=lava blockId=465 -runtimeId=5400 +runtimeId=5401 minecraft:lava_cauldron;fill_level=4;cauldron_liquid=powder_snow blockId=465 -runtimeId=5407 +runtimeId=5408 minecraft:lava_cauldron;fill_level=4;cauldron_liquid=water blockId=465 -runtimeId=5393 +runtimeId=5394 minecraft:lava_cauldron;fill_level=5;cauldron_liquid=lava blockId=465 -runtimeId=5401 +runtimeId=5402 minecraft:lava_cauldron;fill_level=5;cauldron_liquid=powder_snow blockId=465 -runtimeId=5408 +runtimeId=5409 minecraft:lava_cauldron;fill_level=5;cauldron_liquid=water blockId=465 -runtimeId=5394 +runtimeId=5395 minecraft:lava_cauldron;fill_level=6;cauldron_liquid=lava blockId=465 -runtimeId=5402 +runtimeId=5403 minecraft:lava_cauldron;fill_level=6;cauldron_liquid=powder_snow blockId=465 -runtimeId=5409 +runtimeId=5410 minecraft:lava_cauldron;fill_level=6;cauldron_liquid=water blockId=465 -runtimeId=5395 +runtimeId=5396 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=birch blockId=18 -runtimeId=5412 +runtimeId=5413 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=jungle blockId=18 -runtimeId=5413 +runtimeId=5414 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=oak blockId=18 -runtimeId=5410 +runtimeId=5411 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=spruce blockId=18 -runtimeId=5411 +runtimeId=5412 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=birch blockId=18 -runtimeId=5416 +runtimeId=5417 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=jungle blockId=18 -runtimeId=5417 +runtimeId=5418 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=oak blockId=18 -runtimeId=5414 +runtimeId=5415 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=spruce blockId=18 -runtimeId=5415 +runtimeId=5416 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=birch blockId=18 -runtimeId=5420 +runtimeId=5421 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=jungle blockId=18 -runtimeId=5421 +runtimeId=5422 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=oak blockId=18 -runtimeId=5418 +runtimeId=5419 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=spruce blockId=18 -runtimeId=5419 +runtimeId=5420 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=birch blockId=18 -runtimeId=5424 +runtimeId=5425 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=jungle blockId=18 -runtimeId=5425 +runtimeId=5426 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=oak blockId=18 -runtimeId=5422 +runtimeId=5423 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=spruce blockId=18 -runtimeId=5423 +runtimeId=5424 minecraft:leaves2;persistent_bit=0;update_bit=0;new_leaf_type=acacia blockId=161 -runtimeId=5426 +runtimeId=5427 minecraft:leaves2;persistent_bit=0;update_bit=0;new_leaf_type=dark_oak blockId=161 -runtimeId=5427 +runtimeId=5428 minecraft:leaves2;persistent_bit=0;update_bit=1;new_leaf_type=acacia blockId=161 -runtimeId=5428 +runtimeId=5429 minecraft:leaves2;persistent_bit=0;update_bit=1;new_leaf_type=dark_oak blockId=161 -runtimeId=5429 +runtimeId=5430 minecraft:leaves2;persistent_bit=1;update_bit=0;new_leaf_type=acacia blockId=161 -runtimeId=5430 +runtimeId=5431 minecraft:leaves2;persistent_bit=1;update_bit=0;new_leaf_type=dark_oak blockId=161 -runtimeId=5431 +runtimeId=5432 minecraft:leaves2;persistent_bit=1;update_bit=1;new_leaf_type=acacia blockId=161 -runtimeId=5432 +runtimeId=5433 minecraft:leaves2;persistent_bit=1;update_bit=1;new_leaf_type=dark_oak blockId=161 -runtimeId=5433 +runtimeId=5434 minecraft:lectern;powered_bit=0;direction=0 blockId=449 -runtimeId=5434 +runtimeId=5435 minecraft:lectern;powered_bit=0;direction=1 blockId=449 -runtimeId=5435 +runtimeId=5436 minecraft:lectern;powered_bit=0;direction=2 blockId=449 -runtimeId=5436 +runtimeId=5437 minecraft:lectern;powered_bit=0;direction=3 blockId=449 -runtimeId=5437 +runtimeId=5438 minecraft:lectern;powered_bit=1;direction=0 blockId=449 -runtimeId=5438 +runtimeId=5439 minecraft:lectern;powered_bit=1;direction=1 blockId=449 -runtimeId=5439 +runtimeId=5440 minecraft:lectern;powered_bit=1;direction=2 blockId=449 -runtimeId=5440 +runtimeId=5441 minecraft:lectern;powered_bit=1;direction=3 blockId=449 -runtimeId=5441 +runtimeId=5442 minecraft:lever;open_bit=0;lever_direction=down_east_west blockId=69 -runtimeId=5442 +runtimeId=5443 minecraft:lever;open_bit=0;lever_direction=down_north_south blockId=69 -runtimeId=5449 +runtimeId=5450 minecraft:lever;open_bit=0;lever_direction=east blockId=69 -runtimeId=5443 +runtimeId=5444 minecraft:lever;open_bit=0;lever_direction=north blockId=69 -runtimeId=5446 +runtimeId=5447 minecraft:lever;open_bit=0;lever_direction=south blockId=69 -runtimeId=5445 +runtimeId=5446 minecraft:lever;open_bit=0;lever_direction=up_east_west blockId=69 -runtimeId=5448 +runtimeId=5449 minecraft:lever;open_bit=0;lever_direction=up_north_south blockId=69 -runtimeId=5447 +runtimeId=5448 minecraft:lever;open_bit=0;lever_direction=west blockId=69 -runtimeId=5444 +runtimeId=5445 minecraft:lever;open_bit=1;lever_direction=down_east_west blockId=69 -runtimeId=5450 +runtimeId=5451 minecraft:lever;open_bit=1;lever_direction=down_north_south blockId=69 -runtimeId=5457 +runtimeId=5458 minecraft:lever;open_bit=1;lever_direction=east blockId=69 -runtimeId=5451 +runtimeId=5452 minecraft:lever;open_bit=1;lever_direction=north blockId=69 -runtimeId=5454 +runtimeId=5455 minecraft:lever;open_bit=1;lever_direction=south blockId=69 -runtimeId=5453 +runtimeId=5454 minecraft:lever;open_bit=1;lever_direction=up_east_west blockId=69 -runtimeId=5456 +runtimeId=5457 minecraft:lever;open_bit=1;lever_direction=up_north_south blockId=69 -runtimeId=5455 +runtimeId=5456 minecraft:lever;open_bit=1;lever_direction=west blockId=69 -runtimeId=5452 +runtimeId=5453 minecraft:light_block;block_light_level=0 blockId=470 -runtimeId=5458 +runtimeId=5459 minecraft:light_block;block_light_level=1 blockId=470 -runtimeId=5459 +runtimeId=5460 minecraft:light_block;block_light_level=2 blockId=470 -runtimeId=5460 +runtimeId=5461 minecraft:light_block;block_light_level=3 blockId=470 -runtimeId=5461 +runtimeId=5462 minecraft:light_block;block_light_level=4 blockId=470 -runtimeId=5462 +runtimeId=5463 minecraft:light_block;block_light_level=5 blockId=470 -runtimeId=5463 +runtimeId=5464 minecraft:light_block;block_light_level=6 blockId=470 -runtimeId=5464 +runtimeId=5465 minecraft:light_block;block_light_level=7 blockId=470 -runtimeId=5465 +runtimeId=5466 minecraft:light_block;block_light_level=8 blockId=470 -runtimeId=5466 +runtimeId=5467 minecraft:light_block;block_light_level=9 blockId=470 -runtimeId=5467 +runtimeId=5468 minecraft:light_block;block_light_level=10 blockId=470 -runtimeId=5468 +runtimeId=5469 minecraft:light_block;block_light_level=11 blockId=470 -runtimeId=5469 +runtimeId=5470 minecraft:light_block;block_light_level=12 blockId=470 -runtimeId=5470 +runtimeId=5471 minecraft:light_block;block_light_level=13 blockId=470 -runtimeId=5471 +runtimeId=5472 minecraft:light_block;block_light_level=14 blockId=470 -runtimeId=5472 +runtimeId=5473 minecraft:light_block;block_light_level=15 blockId=470 -runtimeId=5473 +runtimeId=5474 minecraft:light_blue_candle;lit=0;candles=0 blockId=671 -runtimeId=5474 +runtimeId=5475 minecraft:light_blue_candle;lit=0;candles=1 blockId=671 -runtimeId=5475 +runtimeId=5476 minecraft:light_blue_candle;lit=0;candles=2 blockId=671 -runtimeId=5476 +runtimeId=5477 minecraft:light_blue_candle;lit=0;candles=3 blockId=671 -runtimeId=5477 +runtimeId=5478 minecraft:light_blue_candle;lit=1;candles=0 blockId=671 -runtimeId=5478 +runtimeId=5479 minecraft:light_blue_candle;lit=1;candles=1 blockId=671 -runtimeId=5479 +runtimeId=5480 minecraft:light_blue_candle;lit=1;candles=2 blockId=671 -runtimeId=5480 +runtimeId=5481 minecraft:light_blue_candle;lit=1;candles=3 blockId=671 -runtimeId=5481 +runtimeId=5482 minecraft:light_blue_candle_cake;lit=0 blockId=688 -runtimeId=5482 +runtimeId=5483 minecraft:light_blue_candle_cake;lit=1 blockId=688 -runtimeId=5483 +runtimeId=5484 minecraft:light_blue_glazed_terracotta;facing_direction=0 blockId=223 -runtimeId=5484 +runtimeId=5485 minecraft:light_blue_glazed_terracotta;facing_direction=1 blockId=223 -runtimeId=5485 +runtimeId=5486 minecraft:light_blue_glazed_terracotta;facing_direction=2 blockId=223 -runtimeId=5486 +runtimeId=5487 minecraft:light_blue_glazed_terracotta;facing_direction=3 blockId=223 -runtimeId=5487 +runtimeId=5488 minecraft:light_blue_glazed_terracotta;facing_direction=4 blockId=223 -runtimeId=5488 +runtimeId=5489 minecraft:light_blue_glazed_terracotta;facing_direction=5 blockId=223 -runtimeId=5489 +runtimeId=5490 minecraft:light_gray_candle;lit=0;candles=0 blockId=676 -runtimeId=5490 +runtimeId=5491 minecraft:light_gray_candle;lit=0;candles=1 blockId=676 -runtimeId=5491 +runtimeId=5492 minecraft:light_gray_candle;lit=0;candles=2 blockId=676 -runtimeId=5492 +runtimeId=5493 minecraft:light_gray_candle;lit=0;candles=3 blockId=676 -runtimeId=5493 +runtimeId=5494 minecraft:light_gray_candle;lit=1;candles=0 blockId=676 -runtimeId=5494 +runtimeId=5495 minecraft:light_gray_candle;lit=1;candles=1 blockId=676 -runtimeId=5495 +runtimeId=5496 minecraft:light_gray_candle;lit=1;candles=2 blockId=676 -runtimeId=5496 +runtimeId=5497 minecraft:light_gray_candle;lit=1;candles=3 blockId=676 -runtimeId=5497 +runtimeId=5498 minecraft:light_gray_candle_cake;lit=0 blockId=693 -runtimeId=5498 +runtimeId=5499 minecraft:light_gray_candle_cake;lit=1 blockId=693 -runtimeId=5499 +runtimeId=5500 minecraft:light_weighted_pressure_plate;redstone_signal=0 blockId=147 -runtimeId=5500 +runtimeId=5501 minecraft:light_weighted_pressure_plate;redstone_signal=1 blockId=147 -runtimeId=5501 +runtimeId=5502 minecraft:light_weighted_pressure_plate;redstone_signal=2 blockId=147 -runtimeId=5502 +runtimeId=5503 minecraft:light_weighted_pressure_plate;redstone_signal=3 blockId=147 -runtimeId=5503 +runtimeId=5504 minecraft:light_weighted_pressure_plate;redstone_signal=4 blockId=147 -runtimeId=5504 +runtimeId=5505 minecraft:light_weighted_pressure_plate;redstone_signal=5 blockId=147 -runtimeId=5505 +runtimeId=5506 minecraft:light_weighted_pressure_plate;redstone_signal=6 blockId=147 -runtimeId=5506 +runtimeId=5507 minecraft:light_weighted_pressure_plate;redstone_signal=7 blockId=147 -runtimeId=5507 +runtimeId=5508 minecraft:light_weighted_pressure_plate;redstone_signal=8 blockId=147 -runtimeId=5508 +runtimeId=5509 minecraft:light_weighted_pressure_plate;redstone_signal=9 blockId=147 -runtimeId=5509 +runtimeId=5510 minecraft:light_weighted_pressure_plate;redstone_signal=10 blockId=147 -runtimeId=5510 +runtimeId=5511 minecraft:light_weighted_pressure_plate;redstone_signal=11 blockId=147 -runtimeId=5511 +runtimeId=5512 minecraft:light_weighted_pressure_plate;redstone_signal=12 blockId=147 -runtimeId=5512 +runtimeId=5513 minecraft:light_weighted_pressure_plate;redstone_signal=13 blockId=147 -runtimeId=5513 +runtimeId=5514 minecraft:light_weighted_pressure_plate;redstone_signal=14 blockId=147 -runtimeId=5514 +runtimeId=5515 minecraft:light_weighted_pressure_plate;redstone_signal=15 blockId=147 -runtimeId=5515 +runtimeId=5516 minecraft:lightning_rod;facing_direction=0 blockId=567 -runtimeId=5516 +runtimeId=5517 minecraft:lightning_rod;facing_direction=1 blockId=567 -runtimeId=5517 +runtimeId=5518 minecraft:lightning_rod;facing_direction=2 blockId=567 -runtimeId=5518 +runtimeId=5519 minecraft:lightning_rod;facing_direction=3 blockId=567 -runtimeId=5519 +runtimeId=5520 minecraft:lightning_rod;facing_direction=4 blockId=567 -runtimeId=5520 +runtimeId=5521 minecraft:lightning_rod;facing_direction=5 blockId=567 -runtimeId=5521 +runtimeId=5522 minecraft:lime_candle;lit=0;candles=0 blockId=673 -runtimeId=5522 +runtimeId=5523 minecraft:lime_candle;lit=0;candles=1 blockId=673 -runtimeId=5523 +runtimeId=5524 minecraft:lime_candle;lit=0;candles=2 blockId=673 -runtimeId=5524 +runtimeId=5525 minecraft:lime_candle;lit=0;candles=3 blockId=673 -runtimeId=5525 +runtimeId=5526 minecraft:lime_candle;lit=1;candles=0 blockId=673 -runtimeId=5526 +runtimeId=5527 minecraft:lime_candle;lit=1;candles=1 blockId=673 -runtimeId=5527 +runtimeId=5528 minecraft:lime_candle;lit=1;candles=2 blockId=673 -runtimeId=5528 +runtimeId=5529 minecraft:lime_candle;lit=1;candles=3 blockId=673 -runtimeId=5529 +runtimeId=5530 minecraft:lime_candle_cake;lit=0 blockId=690 -runtimeId=5530 +runtimeId=5531 minecraft:lime_candle_cake;lit=1 blockId=690 -runtimeId=5531 +runtimeId=5532 minecraft:lime_glazed_terracotta;facing_direction=0 blockId=225 -runtimeId=5532 +runtimeId=5533 minecraft:lime_glazed_terracotta;facing_direction=1 blockId=225 -runtimeId=5533 +runtimeId=5534 minecraft:lime_glazed_terracotta;facing_direction=2 blockId=225 -runtimeId=5534 +runtimeId=5535 minecraft:lime_glazed_terracotta;facing_direction=3 blockId=225 -runtimeId=5535 +runtimeId=5536 minecraft:lime_glazed_terracotta;facing_direction=4 blockId=225 -runtimeId=5536 +runtimeId=5537 minecraft:lime_glazed_terracotta;facing_direction=5 blockId=225 -runtimeId=5537 +runtimeId=5538 minecraft:lit_blast_furnace;facing_direction=0 blockId=469 -runtimeId=5538 +runtimeId=5539 minecraft:lit_blast_furnace;facing_direction=1 blockId=469 -runtimeId=5539 +runtimeId=5540 minecraft:lit_blast_furnace;facing_direction=2 blockId=469 -runtimeId=5540 +runtimeId=5541 minecraft:lit_blast_furnace;facing_direction=3 blockId=469 -runtimeId=5541 +runtimeId=5542 minecraft:lit_blast_furnace;facing_direction=4 blockId=469 -runtimeId=5542 +runtimeId=5543 minecraft:lit_blast_furnace;facing_direction=5 blockId=469 -runtimeId=5543 +runtimeId=5544 minecraft:lit_deepslate_redstone_ore blockId=659 -runtimeId=5544 +runtimeId=5545 minecraft:lit_furnace;facing_direction=0 blockId=62 -runtimeId=5545 +runtimeId=5546 minecraft:lit_furnace;facing_direction=1 blockId=62 -runtimeId=5546 +runtimeId=5547 minecraft:lit_furnace;facing_direction=2 blockId=62 -runtimeId=5547 +runtimeId=5548 minecraft:lit_furnace;facing_direction=3 blockId=62 -runtimeId=5548 +runtimeId=5549 minecraft:lit_furnace;facing_direction=4 blockId=62 -runtimeId=5549 +runtimeId=5550 minecraft:lit_furnace;facing_direction=5 blockId=62 -runtimeId=5550 +runtimeId=5551 minecraft:lit_pumpkin;direction=0 blockId=91 -runtimeId=5551 +runtimeId=5552 minecraft:lit_pumpkin;direction=1 blockId=91 -runtimeId=5552 +runtimeId=5553 minecraft:lit_pumpkin;direction=2 blockId=91 -runtimeId=5553 +runtimeId=5554 minecraft:lit_pumpkin;direction=3 blockId=91 -runtimeId=5554 +runtimeId=5555 minecraft:lit_redstone_lamp blockId=124 -runtimeId=5555 +runtimeId=5556 minecraft:lit_redstone_ore blockId=74 -runtimeId=5556 +runtimeId=5557 minecraft:lit_smoker;facing_direction=0 blockId=454 -runtimeId=5557 +runtimeId=5558 minecraft:lit_smoker;facing_direction=1 blockId=454 -runtimeId=5558 +runtimeId=5559 minecraft:lit_smoker;facing_direction=2 blockId=454 -runtimeId=5559 +runtimeId=5560 minecraft:lit_smoker;facing_direction=3 blockId=454 -runtimeId=5560 +runtimeId=5561 minecraft:lit_smoker;facing_direction=4 blockId=454 -runtimeId=5561 +runtimeId=5562 minecraft:lit_smoker;facing_direction=5 blockId=454 -runtimeId=5562 +runtimeId=5563 minecraft:lodestone blockId=477 -runtimeId=5563 +runtimeId=5564 minecraft:log;old_log_type=birch;pillar_axis=x blockId=17 -runtimeId=5570 +runtimeId=5571 minecraft:log;old_log_type=birch;pillar_axis=y blockId=17 -runtimeId=5566 +runtimeId=5567 minecraft:log;old_log_type=birch;pillar_axis=z blockId=17 -runtimeId=5574 +runtimeId=5575 minecraft:log;old_log_type=jungle;pillar_axis=x blockId=17 -runtimeId=5571 +runtimeId=5572 minecraft:log;old_log_type=jungle;pillar_axis=y blockId=17 -runtimeId=5567 +runtimeId=5568 minecraft:log;old_log_type=jungle;pillar_axis=z blockId=17 -runtimeId=5575 +runtimeId=5576 minecraft:log;old_log_type=oak;pillar_axis=x blockId=17 -runtimeId=5568 +runtimeId=5569 minecraft:log;old_log_type=oak;pillar_axis=y blockId=17 -runtimeId=5564 +runtimeId=5565 minecraft:log;old_log_type=oak;pillar_axis=z blockId=17 -runtimeId=5572 +runtimeId=5573 minecraft:log;old_log_type=spruce;pillar_axis=x blockId=17 -runtimeId=5569 +runtimeId=5570 minecraft:log;old_log_type=spruce;pillar_axis=y blockId=17 -runtimeId=5565 +runtimeId=5566 minecraft:log;old_log_type=spruce;pillar_axis=z blockId=17 -runtimeId=5573 +runtimeId=5574 minecraft:log2;new_log_type=acacia;pillar_axis=x blockId=162 -runtimeId=5578 +runtimeId=5579 minecraft:log2;new_log_type=acacia;pillar_axis=y blockId=162 -runtimeId=5576 +runtimeId=5577 minecraft:log2;new_log_type=acacia;pillar_axis=z blockId=162 -runtimeId=5580 +runtimeId=5581 minecraft:log2;new_log_type=dark_oak;pillar_axis=x blockId=162 -runtimeId=5579 +runtimeId=5580 minecraft:log2;new_log_type=dark_oak;pillar_axis=y blockId=162 -runtimeId=5577 +runtimeId=5578 minecraft:log2;new_log_type=dark_oak;pillar_axis=z blockId=162 -runtimeId=5581 +runtimeId=5582 minecraft:loom;direction=0 blockId=459 -runtimeId=5582 +runtimeId=5583 minecraft:loom;direction=1 blockId=459 -runtimeId=5583 +runtimeId=5584 minecraft:loom;direction=2 blockId=459 -runtimeId=5584 +runtimeId=5585 minecraft:loom;direction=3 blockId=459 -runtimeId=5585 +runtimeId=5586 minecraft:magenta_candle;lit=0;candles=0 blockId=670 -runtimeId=5586 +runtimeId=5587 minecraft:magenta_candle;lit=0;candles=1 blockId=670 -runtimeId=5587 +runtimeId=5588 minecraft:magenta_candle;lit=0;candles=2 blockId=670 -runtimeId=5588 +runtimeId=5589 minecraft:magenta_candle;lit=0;candles=3 blockId=670 -runtimeId=5589 +runtimeId=5590 minecraft:magenta_candle;lit=1;candles=0 blockId=670 -runtimeId=5590 +runtimeId=5591 minecraft:magenta_candle;lit=1;candles=1 blockId=670 -runtimeId=5591 +runtimeId=5592 minecraft:magenta_candle;lit=1;candles=2 blockId=670 -runtimeId=5592 +runtimeId=5593 minecraft:magenta_candle;lit=1;candles=3 blockId=670 -runtimeId=5593 +runtimeId=5594 minecraft:magenta_candle_cake;lit=0 blockId=687 -runtimeId=5594 +runtimeId=5595 minecraft:magenta_candle_cake;lit=1 blockId=687 -runtimeId=5595 +runtimeId=5596 minecraft:magenta_glazed_terracotta;facing_direction=0 blockId=222 -runtimeId=5596 +runtimeId=5597 minecraft:magenta_glazed_terracotta;facing_direction=1 blockId=222 -runtimeId=5597 +runtimeId=5598 minecraft:magenta_glazed_terracotta;facing_direction=2 blockId=222 -runtimeId=5598 +runtimeId=5599 minecraft:magenta_glazed_terracotta;facing_direction=3 blockId=222 -runtimeId=5599 +runtimeId=5600 minecraft:magenta_glazed_terracotta;facing_direction=4 blockId=222 -runtimeId=5600 +runtimeId=5601 minecraft:magenta_glazed_terracotta;facing_direction=5 blockId=222 -runtimeId=5601 +runtimeId=5602 minecraft:magma blockId=213 -runtimeId=5602 +runtimeId=5603 minecraft:medium_amethyst_bud;facing_direction=0 blockId=586 -runtimeId=5603 +runtimeId=5604 minecraft:medium_amethyst_bud;facing_direction=1 blockId=586 -runtimeId=5604 +runtimeId=5605 minecraft:medium_amethyst_bud;facing_direction=2 blockId=586 -runtimeId=5605 +runtimeId=5606 minecraft:medium_amethyst_bud;facing_direction=3 blockId=586 -runtimeId=5606 +runtimeId=5607 minecraft:medium_amethyst_bud;facing_direction=4 blockId=586 -runtimeId=5607 +runtimeId=5608 minecraft:medium_amethyst_bud;facing_direction=5 blockId=586 -runtimeId=5608 +runtimeId=5609 minecraft:melon_block blockId=103 -runtimeId=5609 +runtimeId=5610 minecraft:melon_stem;facing_direction=0;growth=0 blockId=105 -runtimeId=5610 +runtimeId=5611 minecraft:melon_stem;facing_direction=0;growth=1 blockId=105 -runtimeId=5611 +runtimeId=5612 minecraft:melon_stem;facing_direction=0;growth=2 blockId=105 -runtimeId=5612 +runtimeId=5613 minecraft:melon_stem;facing_direction=0;growth=3 blockId=105 -runtimeId=5613 +runtimeId=5614 minecraft:melon_stem;facing_direction=0;growth=4 blockId=105 -runtimeId=5614 +runtimeId=5615 minecraft:melon_stem;facing_direction=0;growth=5 blockId=105 -runtimeId=5615 +runtimeId=5616 minecraft:melon_stem;facing_direction=0;growth=6 blockId=105 -runtimeId=5616 +runtimeId=5617 minecraft:melon_stem;facing_direction=0;growth=7 blockId=105 -runtimeId=5617 +runtimeId=5618 minecraft:melon_stem;facing_direction=1;growth=0 blockId=105 -runtimeId=5618 +runtimeId=5619 minecraft:melon_stem;facing_direction=1;growth=1 blockId=105 -runtimeId=5619 +runtimeId=5620 minecraft:melon_stem;facing_direction=1;growth=2 blockId=105 -runtimeId=5620 +runtimeId=5621 minecraft:melon_stem;facing_direction=1;growth=3 blockId=105 -runtimeId=5621 +runtimeId=5622 minecraft:melon_stem;facing_direction=1;growth=4 blockId=105 -runtimeId=5622 +runtimeId=5623 minecraft:melon_stem;facing_direction=1;growth=5 blockId=105 -runtimeId=5623 +runtimeId=5624 minecraft:melon_stem;facing_direction=1;growth=6 blockId=105 -runtimeId=5624 +runtimeId=5625 minecraft:melon_stem;facing_direction=1;growth=7 blockId=105 -runtimeId=5625 +runtimeId=5626 minecraft:melon_stem;facing_direction=2;growth=0 blockId=105 -runtimeId=5626 +runtimeId=5627 minecraft:melon_stem;facing_direction=2;growth=1 blockId=105 -runtimeId=5627 +runtimeId=5628 minecraft:melon_stem;facing_direction=2;growth=2 blockId=105 -runtimeId=5628 +runtimeId=5629 minecraft:melon_stem;facing_direction=2;growth=3 blockId=105 -runtimeId=5629 +runtimeId=5630 minecraft:melon_stem;facing_direction=2;growth=4 blockId=105 -runtimeId=5630 +runtimeId=5631 minecraft:melon_stem;facing_direction=2;growth=5 blockId=105 -runtimeId=5631 +runtimeId=5632 minecraft:melon_stem;facing_direction=2;growth=6 blockId=105 -runtimeId=5632 +runtimeId=5633 minecraft:melon_stem;facing_direction=2;growth=7 blockId=105 -runtimeId=5633 +runtimeId=5634 minecraft:melon_stem;facing_direction=3;growth=0 blockId=105 -runtimeId=5634 +runtimeId=5635 minecraft:melon_stem;facing_direction=3;growth=1 blockId=105 -runtimeId=5635 +runtimeId=5636 minecraft:melon_stem;facing_direction=3;growth=2 blockId=105 -runtimeId=5636 +runtimeId=5637 minecraft:melon_stem;facing_direction=3;growth=3 blockId=105 -runtimeId=5637 +runtimeId=5638 minecraft:melon_stem;facing_direction=3;growth=4 blockId=105 -runtimeId=5638 +runtimeId=5639 minecraft:melon_stem;facing_direction=3;growth=5 blockId=105 -runtimeId=5639 +runtimeId=5640 minecraft:melon_stem;facing_direction=3;growth=6 blockId=105 -runtimeId=5640 +runtimeId=5641 minecraft:melon_stem;facing_direction=3;growth=7 blockId=105 -runtimeId=5641 +runtimeId=5642 minecraft:melon_stem;facing_direction=4;growth=0 blockId=105 -runtimeId=5642 +runtimeId=5643 minecraft:melon_stem;facing_direction=4;growth=1 blockId=105 -runtimeId=5643 +runtimeId=5644 minecraft:melon_stem;facing_direction=4;growth=2 blockId=105 -runtimeId=5644 +runtimeId=5645 minecraft:melon_stem;facing_direction=4;growth=3 blockId=105 -runtimeId=5645 +runtimeId=5646 minecraft:melon_stem;facing_direction=4;growth=4 blockId=105 -runtimeId=5646 +runtimeId=5647 minecraft:melon_stem;facing_direction=4;growth=5 blockId=105 -runtimeId=5647 +runtimeId=5648 minecraft:melon_stem;facing_direction=4;growth=6 blockId=105 -runtimeId=5648 +runtimeId=5649 minecraft:melon_stem;facing_direction=4;growth=7 blockId=105 -runtimeId=5649 +runtimeId=5650 minecraft:melon_stem;facing_direction=5;growth=0 blockId=105 -runtimeId=5650 +runtimeId=5651 minecraft:melon_stem;facing_direction=5;growth=1 blockId=105 -runtimeId=5651 +runtimeId=5652 minecraft:melon_stem;facing_direction=5;growth=2 blockId=105 -runtimeId=5652 +runtimeId=5653 minecraft:melon_stem;facing_direction=5;growth=3 blockId=105 -runtimeId=5653 +runtimeId=5654 minecraft:melon_stem;facing_direction=5;growth=4 blockId=105 -runtimeId=5654 +runtimeId=5655 minecraft:melon_stem;facing_direction=5;growth=5 blockId=105 -runtimeId=5655 +runtimeId=5656 minecraft:melon_stem;facing_direction=5;growth=6 blockId=105 -runtimeId=5656 +runtimeId=5657 minecraft:melon_stem;facing_direction=5;growth=7 blockId=105 -runtimeId=5657 +runtimeId=5658 minecraft:mob_spawner blockId=52 -runtimeId=5658 +runtimeId=5659 minecraft:monster_egg;monster_egg_stone_type=chiseled_stone_brick blockId=97 -runtimeId=5664 +runtimeId=5665 minecraft:monster_egg;monster_egg_stone_type=cobblestone blockId=97 -runtimeId=5660 +runtimeId=5661 minecraft:monster_egg;monster_egg_stone_type=cracked_stone_brick blockId=97 -runtimeId=5663 +runtimeId=5664 minecraft:monster_egg;monster_egg_stone_type=mossy_stone_brick blockId=97 -runtimeId=5662 +runtimeId=5663 minecraft:monster_egg;monster_egg_stone_type=stone blockId=97 -runtimeId=5659 +runtimeId=5660 minecraft:monster_egg;monster_egg_stone_type=stone_brick blockId=97 -runtimeId=5661 +runtimeId=5662 minecraft:moss_block blockId=575 -runtimeId=5665 +runtimeId=5666 minecraft:moss_carpet blockId=590 -runtimeId=5666 +runtimeId=5667 minecraft:mossy_cobblestone blockId=48 -runtimeId=5667 +runtimeId=5668 minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=434 -runtimeId=5668 +runtimeId=5669 minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=434 -runtimeId=5669 +runtimeId=5670 minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=434 -runtimeId=5670 +runtimeId=5671 minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=434 -runtimeId=5671 +runtimeId=5672 minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=434 -runtimeId=5672 +runtimeId=5673 minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=434 -runtimeId=5673 +runtimeId=5674 minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=434 -runtimeId=5674 +runtimeId=5675 minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=434 -runtimeId=5675 +runtimeId=5676 minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=430 -runtimeId=5676 +runtimeId=5677 minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=430 -runtimeId=5677 +runtimeId=5678 minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=430 -runtimeId=5678 +runtimeId=5679 minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=430 -runtimeId=5679 +runtimeId=5680 minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=430 -runtimeId=5680 +runtimeId=5681 minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=430 -runtimeId=5681 +runtimeId=5682 minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=430 -runtimeId=5682 +runtimeId=5683 minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=430 -runtimeId=5683 +runtimeId=5684 minecraft:movingBlock blockId=250 -runtimeId=5684 +runtimeId=5685 minecraft:mycelium blockId=110 -runtimeId=5685 +runtimeId=5686 minecraft:mysterious_frame blockId=721 -runtimeId=5686 +runtimeId=5687 minecraft:mysterious_frame_slot blockId=722 -runtimeId=5687 +runtimeId=5688 minecraft:nether_brick blockId=112 -runtimeId=5688 +runtimeId=5689 minecraft:nether_brick_fence blockId=113 -runtimeId=5689 +runtimeId=5690 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=114 -runtimeId=5690 +runtimeId=5691 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=114 -runtimeId=5691 +runtimeId=5692 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=114 -runtimeId=5692 +runtimeId=5693 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=114 -runtimeId=5693 +runtimeId=5694 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=114 -runtimeId=5694 +runtimeId=5695 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=114 -runtimeId=5695 +runtimeId=5696 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=114 -runtimeId=5696 +runtimeId=5697 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=114 -runtimeId=5697 +runtimeId=5698 minecraft:nether_gold_ore blockId=543 -runtimeId=5698 +runtimeId=5699 minecraft:nether_sprouts blockId=493 -runtimeId=5699 +runtimeId=5700 minecraft:nether_wart;age=0 blockId=115 -runtimeId=5700 +runtimeId=5701 minecraft:nether_wart;age=1 blockId=115 -runtimeId=5701 +runtimeId=5702 minecraft:nether_wart;age=2 blockId=115 -runtimeId=5702 +runtimeId=5703 minecraft:nether_wart;age=3 blockId=115 -runtimeId=5703 +runtimeId=5704 minecraft:nether_wart_block blockId=214 -runtimeId=5704 +runtimeId=5705 minecraft:netherite_block blockId=525 -runtimeId=5705 +runtimeId=5706 minecraft:netherrack blockId=87 -runtimeId=5706 +runtimeId=5707 minecraft:netherreactor blockId=247 -runtimeId=5707 +runtimeId=5708 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=435 -runtimeId=5708 +runtimeId=5709 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=435 -runtimeId=5709 +runtimeId=5710 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=435 -runtimeId=5710 +runtimeId=5711 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=435 -runtimeId=5711 +runtimeId=5712 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=435 -runtimeId=5712 +runtimeId=5713 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=435 -runtimeId=5713 +runtimeId=5714 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=435 -runtimeId=5714 +runtimeId=5715 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=435 -runtimeId=5715 +runtimeId=5716 minecraft:noteblock blockId=25 -runtimeId=5716 +runtimeId=5717 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=0 blockId=53 -runtimeId=5717 +runtimeId=5718 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=1 blockId=53 -runtimeId=5718 +runtimeId=5719 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=2 blockId=53 -runtimeId=5719 +runtimeId=5720 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=3 blockId=53 -runtimeId=5720 +runtimeId=5721 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=0 blockId=53 -runtimeId=5721 +runtimeId=5722 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=1 blockId=53 -runtimeId=5722 +runtimeId=5723 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=2 blockId=53 -runtimeId=5723 +runtimeId=5724 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=3 blockId=53 -runtimeId=5724 +runtimeId=5725 minecraft:observer;facing_direction=0;powered_bit=0 blockId=251 -runtimeId=5725 +runtimeId=5726 minecraft:observer;facing_direction=0;powered_bit=1 blockId=251 -runtimeId=5731 +runtimeId=5732 minecraft:observer;facing_direction=1;powered_bit=0 blockId=251 -runtimeId=5726 +runtimeId=5727 minecraft:observer;facing_direction=1;powered_bit=1 blockId=251 -runtimeId=5732 +runtimeId=5733 minecraft:observer;facing_direction=2;powered_bit=0 blockId=251 -runtimeId=5727 +runtimeId=5728 minecraft:observer;facing_direction=2;powered_bit=1 blockId=251 -runtimeId=5733 +runtimeId=5734 minecraft:observer;facing_direction=3;powered_bit=0 blockId=251 -runtimeId=5728 +runtimeId=5729 minecraft:observer;facing_direction=3;powered_bit=1 blockId=251 -runtimeId=5734 +runtimeId=5735 minecraft:observer;facing_direction=4;powered_bit=0 blockId=251 -runtimeId=5729 +runtimeId=5730 minecraft:observer;facing_direction=4;powered_bit=1 blockId=251 -runtimeId=5735 +runtimeId=5736 minecraft:observer;facing_direction=5;powered_bit=0 blockId=251 -runtimeId=5730 +runtimeId=5731 minecraft:observer;facing_direction=5;powered_bit=1 blockId=251 -runtimeId=5736 +runtimeId=5737 minecraft:obsidian blockId=49 -runtimeId=5737 +runtimeId=5738 + +minecraft:ochre_froglight +blockId=-1 +runtimeId=5739 minecraft:orange_candle;lit=0;candles=0 blockId=669 -runtimeId=5738 +runtimeId=5740 minecraft:orange_candle;lit=0;candles=1 blockId=669 -runtimeId=5739 +runtimeId=5741 minecraft:orange_candle;lit=0;candles=2 blockId=669 -runtimeId=5740 +runtimeId=5742 minecraft:orange_candle;lit=0;candles=3 blockId=669 -runtimeId=5741 +runtimeId=5743 minecraft:orange_candle;lit=1;candles=0 blockId=669 -runtimeId=5742 +runtimeId=5744 minecraft:orange_candle;lit=1;candles=1 blockId=669 -runtimeId=5743 +runtimeId=5745 minecraft:orange_candle;lit=1;candles=2 blockId=669 -runtimeId=5744 +runtimeId=5746 minecraft:orange_candle;lit=1;candles=3 blockId=669 -runtimeId=5745 +runtimeId=5747 minecraft:orange_candle_cake;lit=0 blockId=686 -runtimeId=5746 +runtimeId=5748 minecraft:orange_candle_cake;lit=1 blockId=686 -runtimeId=5747 +runtimeId=5749 minecraft:orange_glazed_terracotta;facing_direction=0 blockId=221 -runtimeId=5748 +runtimeId=5750 minecraft:orange_glazed_terracotta;facing_direction=1 blockId=221 -runtimeId=5749 +runtimeId=5751 minecraft:orange_glazed_terracotta;facing_direction=2 blockId=221 -runtimeId=5750 +runtimeId=5752 minecraft:orange_glazed_terracotta;facing_direction=3 blockId=221 -runtimeId=5751 +runtimeId=5753 minecraft:orange_glazed_terracotta;facing_direction=4 blockId=221 -runtimeId=5752 +runtimeId=5754 minecraft:orange_glazed_terracotta;facing_direction=5 blockId=221 -runtimeId=5753 +runtimeId=5755 minecraft:oxidized_copper blockId=598 -runtimeId=5754 +runtimeId=5756 minecraft:oxidized_cut_copper blockId=605 -runtimeId=5755 +runtimeId=5757 minecraft:oxidized_cut_copper_slab;top_slot_bit=0 blockId=619 -runtimeId=5756 +runtimeId=5758 minecraft:oxidized_cut_copper_slab;top_slot_bit=1 blockId=619 -runtimeId=5757 +runtimeId=5759 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=612 -runtimeId=5758 +runtimeId=5760 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=612 -runtimeId=5759 +runtimeId=5761 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=612 -runtimeId=5760 +runtimeId=5762 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=612 -runtimeId=5761 +runtimeId=5763 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=612 -runtimeId=5762 +runtimeId=5764 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=612 -runtimeId=5763 +runtimeId=5765 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=612 -runtimeId=5764 +runtimeId=5766 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=612 -runtimeId=5765 +runtimeId=5767 minecraft:oxidized_double_cut_copper_slab;top_slot_bit=0 blockId=626 -runtimeId=5766 +runtimeId=5768 minecraft:oxidized_double_cut_copper_slab;top_slot_bit=1 blockId=626 -runtimeId=5767 +runtimeId=5769 minecraft:packed_ice blockId=174 -runtimeId=5768 +runtimeId=5770 + +minecraft:pearlescent_froglight +blockId=-1 +runtimeId=5771 minecraft:pink_candle;lit=0;candles=0 blockId=674 -runtimeId=5769 +runtimeId=5772 minecraft:pink_candle;lit=0;candles=1 blockId=674 -runtimeId=5770 +runtimeId=5773 minecraft:pink_candle;lit=0;candles=2 blockId=674 -runtimeId=5771 +runtimeId=5774 minecraft:pink_candle;lit=0;candles=3 blockId=674 -runtimeId=5772 +runtimeId=5775 minecraft:pink_candle;lit=1;candles=0 blockId=674 -runtimeId=5773 +runtimeId=5776 minecraft:pink_candle;lit=1;candles=1 blockId=674 -runtimeId=5774 +runtimeId=5777 minecraft:pink_candle;lit=1;candles=2 blockId=674 -runtimeId=5775 +runtimeId=5778 minecraft:pink_candle;lit=1;candles=3 blockId=674 -runtimeId=5776 +runtimeId=5779 minecraft:pink_candle_cake;lit=0 blockId=691 -runtimeId=5777 +runtimeId=5780 minecraft:pink_candle_cake;lit=1 blockId=691 -runtimeId=5778 +runtimeId=5781 minecraft:pink_glazed_terracotta;facing_direction=0 blockId=226 -runtimeId=5779 +runtimeId=5782 minecraft:pink_glazed_terracotta;facing_direction=1 blockId=226 -runtimeId=5780 +runtimeId=5783 minecraft:pink_glazed_terracotta;facing_direction=2 blockId=226 -runtimeId=5781 +runtimeId=5784 minecraft:pink_glazed_terracotta;facing_direction=3 blockId=226 -runtimeId=5782 +runtimeId=5785 minecraft:pink_glazed_terracotta;facing_direction=4 blockId=226 -runtimeId=5783 +runtimeId=5786 minecraft:pink_glazed_terracotta;facing_direction=5 blockId=226 -runtimeId=5784 +runtimeId=5787 minecraft:piston;facing_direction=0 blockId=33 -runtimeId=5785 +runtimeId=5788 minecraft:piston;facing_direction=1 blockId=33 -runtimeId=5786 +runtimeId=5789 minecraft:piston;facing_direction=2 blockId=33 -runtimeId=5787 +runtimeId=5790 minecraft:piston;facing_direction=3 blockId=33 -runtimeId=5788 +runtimeId=5791 minecraft:piston;facing_direction=4 blockId=33 -runtimeId=5789 +runtimeId=5792 minecraft:piston;facing_direction=5 blockId=33 -runtimeId=5790 +runtimeId=5793 minecraft:pistonArmCollision;facing_direction=0 blockId=34 -runtimeId=5791 +runtimeId=5794 minecraft:pistonArmCollision;facing_direction=1 blockId=34 -runtimeId=5792 +runtimeId=5795 minecraft:pistonArmCollision;facing_direction=2 blockId=34 -runtimeId=5793 +runtimeId=5796 minecraft:pistonArmCollision;facing_direction=3 blockId=34 -runtimeId=5794 +runtimeId=5797 minecraft:pistonArmCollision;facing_direction=4 blockId=34 -runtimeId=5795 +runtimeId=5798 minecraft:pistonArmCollision;facing_direction=5 blockId=34 -runtimeId=5796 +runtimeId=5799 minecraft:planks;wood_type=acacia blockId=5 -runtimeId=5801 +runtimeId=5804 minecraft:planks;wood_type=birch blockId=5 -runtimeId=5799 +runtimeId=5802 minecraft:planks;wood_type=dark_oak blockId=5 -runtimeId=5802 +runtimeId=5805 minecraft:planks;wood_type=jungle blockId=5 -runtimeId=5800 +runtimeId=5803 minecraft:planks;wood_type=oak blockId=5 -runtimeId=5797 +runtimeId=5800 minecraft:planks;wood_type=spruce blockId=5 -runtimeId=5798 +runtimeId=5801 minecraft:podzol blockId=243 -runtimeId=5803 +runtimeId=5806 minecraft:pointed_dripstone;dripstone_thickness=base;hanging=0 blockId=563 -runtimeId=5807 +runtimeId=5810 minecraft:pointed_dripstone;dripstone_thickness=base;hanging=1 blockId=563 -runtimeId=5812 +runtimeId=5815 minecraft:pointed_dripstone;dripstone_thickness=frustum;hanging=0 blockId=563 -runtimeId=5805 +runtimeId=5808 minecraft:pointed_dripstone;dripstone_thickness=frustum;hanging=1 blockId=563 -runtimeId=5810 +runtimeId=5813 minecraft:pointed_dripstone;dripstone_thickness=merge;hanging=0 blockId=563 -runtimeId=5808 +runtimeId=5811 minecraft:pointed_dripstone;dripstone_thickness=merge;hanging=1 blockId=563 -runtimeId=5813 +runtimeId=5816 minecraft:pointed_dripstone;dripstone_thickness=middle;hanging=0 blockId=563 -runtimeId=5806 +runtimeId=5809 minecraft:pointed_dripstone;dripstone_thickness=middle;hanging=1 blockId=563 -runtimeId=5811 +runtimeId=5814 minecraft:pointed_dripstone;dripstone_thickness=tip;hanging=0 blockId=563 -runtimeId=5804 +runtimeId=5807 minecraft:pointed_dripstone;dripstone_thickness=tip;hanging=1 blockId=563 -runtimeId=5809 +runtimeId=5812 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=429 -runtimeId=5814 +runtimeId=5817 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=429 -runtimeId=5815 +runtimeId=5818 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=429 -runtimeId=5816 +runtimeId=5819 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=429 -runtimeId=5817 +runtimeId=5820 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=429 -runtimeId=5818 +runtimeId=5821 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=429 -runtimeId=5819 +runtimeId=5822 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=429 -runtimeId=5820 +runtimeId=5823 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=429 -runtimeId=5821 +runtimeId=5824 minecraft:polished_basalt;pillar_axis=x blockId=490 -runtimeId=5823 +runtimeId=5826 minecraft:polished_basalt;pillar_axis=y blockId=490 -runtimeId=5822 +runtimeId=5825 minecraft:polished_basalt;pillar_axis=z blockId=490 -runtimeId=5824 +runtimeId=5827 minecraft:polished_blackstone blockId=546 -runtimeId=5825 +runtimeId=5828 minecraft:polished_blackstone_brick_double_slab;top_slot_bit=0 blockId=540 -runtimeId=5826 +runtimeId=5829 minecraft:polished_blackstone_brick_double_slab;top_slot_bit=1 blockId=540 -runtimeId=5827 +runtimeId=5830 minecraft:polished_blackstone_brick_slab;top_slot_bit=0 blockId=539 -runtimeId=5828 +runtimeId=5831 minecraft:polished_blackstone_brick_slab;top_slot_bit=1 blockId=539 -runtimeId=5829 +runtimeId=5832 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=530 -runtimeId=5830 +runtimeId=5833 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=530 -runtimeId=5831 +runtimeId=5834 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=530 -runtimeId=5832 +runtimeId=5835 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=530 -runtimeId=5833 +runtimeId=5836 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=530 -runtimeId=5834 +runtimeId=5837 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=530 -runtimeId=5835 +runtimeId=5838 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=530 -runtimeId=5836 +runtimeId=5839 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=530 -runtimeId=5837 +runtimeId=5840 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5838 +runtimeId=5841 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5840 +runtimeId=5843 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5842 +runtimeId=5845 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5892 +runtimeId=5895 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5894 +runtimeId=5897 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5896 +runtimeId=5899 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5946 +runtimeId=5949 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5948 +runtimeId=5951 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5950 +runtimeId=5953 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5856 +runtimeId=5859 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5858 +runtimeId=5861 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5860 +runtimeId=5863 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5910 +runtimeId=5913 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5912 +runtimeId=5915 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5914 +runtimeId=5917 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5964 +runtimeId=5967 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5966 +runtimeId=5969 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5968 +runtimeId=5971 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5874 +runtimeId=5877 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5876 +runtimeId=5879 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5878 +runtimeId=5881 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5928 +runtimeId=5931 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5930 +runtimeId=5933 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5932 +runtimeId=5935 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5982 +runtimeId=5985 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5984 +runtimeId=5987 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5986 +runtimeId=5989 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5839 +runtimeId=5842 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5841 +runtimeId=5844 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5843 +runtimeId=5846 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5893 +runtimeId=5896 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5895 +runtimeId=5898 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5897 +runtimeId=5900 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5947 +runtimeId=5950 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5949 +runtimeId=5952 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5951 +runtimeId=5954 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5857 +runtimeId=5860 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5859 +runtimeId=5862 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5861 +runtimeId=5864 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5911 +runtimeId=5914 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5913 +runtimeId=5916 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5915 +runtimeId=5918 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5965 +runtimeId=5968 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5967 +runtimeId=5970 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5969 +runtimeId=5972 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5875 +runtimeId=5878 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5877 +runtimeId=5880 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5879 +runtimeId=5882 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5929 +runtimeId=5932 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5931 +runtimeId=5934 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5933 +runtimeId=5936 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5983 +runtimeId=5986 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5985 +runtimeId=5988 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5987 +runtimeId=5990 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5844 +runtimeId=5847 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5846 +runtimeId=5849 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5848 +runtimeId=5851 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5898 +runtimeId=5901 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5900 +runtimeId=5903 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5902 +runtimeId=5905 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5952 +runtimeId=5955 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5954 +runtimeId=5957 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5956 +runtimeId=5959 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5862 +runtimeId=5865 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5864 +runtimeId=5867 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5866 +runtimeId=5869 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5916 +runtimeId=5919 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5918 +runtimeId=5921 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5920 +runtimeId=5923 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5970 +runtimeId=5973 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5972 +runtimeId=5975 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5974 +runtimeId=5977 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5880 +runtimeId=5883 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5882 +runtimeId=5885 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5884 +runtimeId=5887 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5934 +runtimeId=5937 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5936 +runtimeId=5939 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5938 +runtimeId=5941 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5988 +runtimeId=5991 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5990 +runtimeId=5993 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5992 +runtimeId=5995 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5845 +runtimeId=5848 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5847 +runtimeId=5850 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5849 +runtimeId=5852 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5899 +runtimeId=5902 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5901 +runtimeId=5904 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5903 +runtimeId=5906 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5953 +runtimeId=5956 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5955 +runtimeId=5958 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5957 +runtimeId=5960 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5863 +runtimeId=5866 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5865 +runtimeId=5868 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5867 +runtimeId=5870 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5917 +runtimeId=5920 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5919 +runtimeId=5922 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5921 +runtimeId=5924 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5971 +runtimeId=5974 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5973 +runtimeId=5976 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5975 +runtimeId=5978 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5881 +runtimeId=5884 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5883 +runtimeId=5886 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5885 +runtimeId=5888 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5935 +runtimeId=5938 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5937 +runtimeId=5940 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5939 +runtimeId=5942 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5989 +runtimeId=5992 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5991 +runtimeId=5994 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5993 +runtimeId=5996 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5850 +runtimeId=5853 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5852 +runtimeId=5855 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5854 +runtimeId=5857 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5904 +runtimeId=5907 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5906 +runtimeId=5909 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5908 +runtimeId=5911 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5958 +runtimeId=5961 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5960 +runtimeId=5963 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5962 +runtimeId=5965 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5868 +runtimeId=5871 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5870 +runtimeId=5873 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5872 +runtimeId=5875 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5922 +runtimeId=5925 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5924 +runtimeId=5927 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5926 +runtimeId=5929 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5976 +runtimeId=5979 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5978 +runtimeId=5981 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5980 +runtimeId=5983 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5886 +runtimeId=5889 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5888 +runtimeId=5891 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5890 +runtimeId=5893 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5940 +runtimeId=5943 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5942 +runtimeId=5945 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5944 +runtimeId=5947 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5994 +runtimeId=5997 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5996 +runtimeId=5999 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5998 +runtimeId=6001 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5851 +runtimeId=5854 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5853 +runtimeId=5856 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5855 +runtimeId=5858 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5905 +runtimeId=5908 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5907 +runtimeId=5910 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5909 +runtimeId=5912 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5959 +runtimeId=5962 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5961 +runtimeId=5964 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5963 +runtimeId=5966 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5869 +runtimeId=5872 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5871 +runtimeId=5874 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5873 +runtimeId=5876 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5923 +runtimeId=5926 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5925 +runtimeId=5928 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5927 +runtimeId=5930 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5977 +runtimeId=5980 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5979 +runtimeId=5982 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5981 +runtimeId=5984 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5887 +runtimeId=5890 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5889 +runtimeId=5892 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5891 +runtimeId=5894 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5941 +runtimeId=5944 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5943 +runtimeId=5946 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5945 +runtimeId=5948 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5995 +runtimeId=5998 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5997 +runtimeId=6000 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5999 +runtimeId=6002 minecraft:polished_blackstone_bricks blockId=529 -runtimeId=6000 +runtimeId=6003 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=0 blockId=551 -runtimeId=6001 +runtimeId=6004 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=1 blockId=551 -runtimeId=6002 +runtimeId=6005 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=2 blockId=551 -runtimeId=6003 +runtimeId=6006 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=3 blockId=551 -runtimeId=6004 +runtimeId=6007 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=4 blockId=551 -runtimeId=6005 +runtimeId=6008 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=5 blockId=551 -runtimeId=6006 +runtimeId=6009 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=0 blockId=551 -runtimeId=6007 +runtimeId=6010 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=1 blockId=551 -runtimeId=6008 +runtimeId=6011 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=2 blockId=551 -runtimeId=6009 +runtimeId=6012 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=3 blockId=551 -runtimeId=6010 +runtimeId=6013 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=4 blockId=551 -runtimeId=6011 +runtimeId=6014 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=5 blockId=551 -runtimeId=6012 +runtimeId=6015 minecraft:polished_blackstone_double_slab;top_slot_bit=0 blockId=549 -runtimeId=6013 +runtimeId=6016 minecraft:polished_blackstone_double_slab;top_slot_bit=1 blockId=549 -runtimeId=6014 +runtimeId=6017 minecraft:polished_blackstone_pressure_plate;redstone_signal=0 blockId=550 -runtimeId=6015 +runtimeId=6018 minecraft:polished_blackstone_pressure_plate;redstone_signal=1 blockId=550 -runtimeId=6016 +runtimeId=6019 minecraft:polished_blackstone_pressure_plate;redstone_signal=2 blockId=550 -runtimeId=6017 +runtimeId=6020 minecraft:polished_blackstone_pressure_plate;redstone_signal=3 blockId=550 -runtimeId=6018 +runtimeId=6021 minecraft:polished_blackstone_pressure_plate;redstone_signal=4 blockId=550 -runtimeId=6019 +runtimeId=6022 minecraft:polished_blackstone_pressure_plate;redstone_signal=5 blockId=550 -runtimeId=6020 +runtimeId=6023 minecraft:polished_blackstone_pressure_plate;redstone_signal=6 blockId=550 -runtimeId=6021 +runtimeId=6024 minecraft:polished_blackstone_pressure_plate;redstone_signal=7 blockId=550 -runtimeId=6022 +runtimeId=6025 minecraft:polished_blackstone_pressure_plate;redstone_signal=8 blockId=550 -runtimeId=6023 +runtimeId=6026 minecraft:polished_blackstone_pressure_plate;redstone_signal=9 blockId=550 -runtimeId=6024 +runtimeId=6027 minecraft:polished_blackstone_pressure_plate;redstone_signal=10 blockId=550 -runtimeId=6025 +runtimeId=6028 minecraft:polished_blackstone_pressure_plate;redstone_signal=11 blockId=550 -runtimeId=6026 +runtimeId=6029 minecraft:polished_blackstone_pressure_plate;redstone_signal=12 blockId=550 -runtimeId=6027 +runtimeId=6030 minecraft:polished_blackstone_pressure_plate;redstone_signal=13 blockId=550 -runtimeId=6028 +runtimeId=6031 minecraft:polished_blackstone_pressure_plate;redstone_signal=14 blockId=550 -runtimeId=6029 +runtimeId=6032 minecraft:polished_blackstone_pressure_plate;redstone_signal=15 blockId=550 -runtimeId=6030 +runtimeId=6033 minecraft:polished_blackstone_slab;top_slot_bit=0 blockId=548 -runtimeId=6031 +runtimeId=6034 minecraft:polished_blackstone_slab;top_slot_bit=1 blockId=548 -runtimeId=6032 +runtimeId=6035 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=547 -runtimeId=6033 +runtimeId=6036 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=547 -runtimeId=6034 +runtimeId=6037 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=547 -runtimeId=6035 +runtimeId=6038 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=547 -runtimeId=6036 +runtimeId=6039 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=547 -runtimeId=6037 +runtimeId=6040 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=547 -runtimeId=6038 +runtimeId=6041 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=547 -runtimeId=6039 +runtimeId=6042 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=547 -runtimeId=6040 +runtimeId=6043 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6041 +runtimeId=6044 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6043 +runtimeId=6046 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6045 +runtimeId=6048 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6095 +runtimeId=6098 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6097 +runtimeId=6100 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6099 +runtimeId=6102 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6149 +runtimeId=6152 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6151 +runtimeId=6154 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6153 +runtimeId=6156 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6059 +runtimeId=6062 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6061 +runtimeId=6064 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6063 +runtimeId=6066 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6113 +runtimeId=6116 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6115 +runtimeId=6118 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6117 +runtimeId=6120 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6167 +runtimeId=6170 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6169 +runtimeId=6172 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6171 +runtimeId=6174 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6077 +runtimeId=6080 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6079 +runtimeId=6082 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6081 +runtimeId=6084 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6131 +runtimeId=6134 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6133 +runtimeId=6136 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6135 +runtimeId=6138 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6185 +runtimeId=6188 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6187 +runtimeId=6190 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6189 +runtimeId=6192 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6042 +runtimeId=6045 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6044 +runtimeId=6047 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6046 +runtimeId=6049 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6096 +runtimeId=6099 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6098 +runtimeId=6101 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6100 +runtimeId=6103 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6150 +runtimeId=6153 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6152 +runtimeId=6155 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6154 +runtimeId=6157 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6060 +runtimeId=6063 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6062 +runtimeId=6065 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6064 +runtimeId=6067 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6114 +runtimeId=6117 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6116 +runtimeId=6119 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6118 +runtimeId=6121 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6168 +runtimeId=6171 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6170 +runtimeId=6173 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6172 +runtimeId=6175 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6078 +runtimeId=6081 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6080 +runtimeId=6083 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6082 +runtimeId=6085 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6132 +runtimeId=6135 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6134 +runtimeId=6137 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6136 +runtimeId=6139 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6186 +runtimeId=6189 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6188 +runtimeId=6191 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6190 +runtimeId=6193 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6047 +runtimeId=6050 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6049 +runtimeId=6052 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6051 +runtimeId=6054 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6101 +runtimeId=6104 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6103 +runtimeId=6106 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6105 +runtimeId=6108 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6155 +runtimeId=6158 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6157 +runtimeId=6160 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6159 +runtimeId=6162 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6065 +runtimeId=6068 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6067 +runtimeId=6070 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6069 +runtimeId=6072 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6119 +runtimeId=6122 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6121 +runtimeId=6124 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6123 +runtimeId=6126 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6173 +runtimeId=6176 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6175 +runtimeId=6178 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6177 +runtimeId=6180 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6083 +runtimeId=6086 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6085 +runtimeId=6088 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6087 +runtimeId=6090 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6137 +runtimeId=6140 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6139 +runtimeId=6142 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6141 +runtimeId=6144 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6191 +runtimeId=6194 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6193 +runtimeId=6196 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6195 +runtimeId=6198 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6048 +runtimeId=6051 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6050 +runtimeId=6053 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6052 +runtimeId=6055 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6102 +runtimeId=6105 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6104 +runtimeId=6107 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6106 +runtimeId=6109 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6156 +runtimeId=6159 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6158 +runtimeId=6161 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6160 +runtimeId=6163 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6066 +runtimeId=6069 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6068 +runtimeId=6071 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6070 +runtimeId=6073 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6120 +runtimeId=6123 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6122 +runtimeId=6125 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6124 +runtimeId=6127 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6174 +runtimeId=6177 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6176 +runtimeId=6179 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6178 +runtimeId=6181 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6084 +runtimeId=6087 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6086 +runtimeId=6089 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6088 +runtimeId=6091 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6138 +runtimeId=6141 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6140 +runtimeId=6143 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6142 +runtimeId=6145 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6192 +runtimeId=6195 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6194 +runtimeId=6197 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6196 +runtimeId=6199 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6053 +runtimeId=6056 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6055 +runtimeId=6058 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6057 +runtimeId=6060 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6107 +runtimeId=6110 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6109 +runtimeId=6112 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6111 +runtimeId=6114 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6161 +runtimeId=6164 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6163 +runtimeId=6166 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6165 +runtimeId=6168 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6071 +runtimeId=6074 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6073 +runtimeId=6076 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6075 +runtimeId=6078 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6125 +runtimeId=6128 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6127 +runtimeId=6130 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6129 +runtimeId=6132 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6179 +runtimeId=6182 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6181 +runtimeId=6184 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6183 +runtimeId=6186 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6089 +runtimeId=6092 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6091 +runtimeId=6094 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6093 +runtimeId=6096 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6143 +runtimeId=6146 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6145 +runtimeId=6148 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6147 +runtimeId=6150 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6197 +runtimeId=6200 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6199 +runtimeId=6202 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6201 +runtimeId=6204 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6054 +runtimeId=6057 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6056 +runtimeId=6059 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6058 +runtimeId=6061 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6108 +runtimeId=6111 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6110 +runtimeId=6113 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6112 +runtimeId=6115 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6162 +runtimeId=6165 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6164 +runtimeId=6167 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6166 +runtimeId=6169 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6072 +runtimeId=6075 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6074 +runtimeId=6077 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6076 +runtimeId=6079 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6126 +runtimeId=6129 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6128 +runtimeId=6131 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6130 +runtimeId=6133 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6180 +runtimeId=6183 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6182 +runtimeId=6185 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6184 +runtimeId=6187 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6090 +runtimeId=6093 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6092 +runtimeId=6095 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6094 +runtimeId=6097 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6144 +runtimeId=6147 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6146 +runtimeId=6149 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6148 +runtimeId=6151 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6198 +runtimeId=6201 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6200 +runtimeId=6203 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6202 +runtimeId=6205 minecraft:polished_deepslate blockId=638 -runtimeId=6203 +runtimeId=6206 minecraft:polished_deepslate_double_slab;top_slot_bit=0 blockId=652 -runtimeId=6204 +runtimeId=6207 minecraft:polished_deepslate_double_slab;top_slot_bit=1 blockId=652 -runtimeId=6205 +runtimeId=6208 minecraft:polished_deepslate_slab;top_slot_bit=0 blockId=639 -runtimeId=6206 +runtimeId=6209 minecraft:polished_deepslate_slab;top_slot_bit=1 blockId=639 -runtimeId=6207 +runtimeId=6210 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=0 blockId=640 -runtimeId=6208 +runtimeId=6211 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=1 blockId=640 -runtimeId=6209 +runtimeId=6212 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=2 blockId=640 -runtimeId=6210 +runtimeId=6213 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=3 blockId=640 -runtimeId=6211 +runtimeId=6214 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=0 blockId=640 -runtimeId=6212 +runtimeId=6215 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=1 blockId=640 -runtimeId=6213 +runtimeId=6216 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=2 blockId=640 -runtimeId=6214 +runtimeId=6217 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=3 blockId=640 -runtimeId=6215 +runtimeId=6218 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6216 +runtimeId=6219 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6218 +runtimeId=6221 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6220 +runtimeId=6223 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6270 +runtimeId=6273 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6272 +runtimeId=6275 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6274 +runtimeId=6277 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6324 +runtimeId=6327 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6326 +runtimeId=6329 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6328 +runtimeId=6331 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6234 +runtimeId=6237 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6236 +runtimeId=6239 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6238 +runtimeId=6241 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6288 +runtimeId=6291 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6290 +runtimeId=6293 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6292 +runtimeId=6295 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6342 +runtimeId=6345 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6344 +runtimeId=6347 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6346 +runtimeId=6349 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6252 +runtimeId=6255 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6254 +runtimeId=6257 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6256 +runtimeId=6259 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6306 +runtimeId=6309 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6308 +runtimeId=6311 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6310 +runtimeId=6313 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6360 +runtimeId=6363 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6362 +runtimeId=6365 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6364 +runtimeId=6367 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6217 +runtimeId=6220 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6219 +runtimeId=6222 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6221 +runtimeId=6224 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6271 +runtimeId=6274 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6273 +runtimeId=6276 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6275 +runtimeId=6278 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6325 +runtimeId=6328 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6327 +runtimeId=6330 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6329 +runtimeId=6332 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6235 +runtimeId=6238 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6237 +runtimeId=6240 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6239 +runtimeId=6242 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6289 +runtimeId=6292 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6291 +runtimeId=6294 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6293 +runtimeId=6296 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6343 +runtimeId=6346 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6345 +runtimeId=6348 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6347 +runtimeId=6350 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6253 +runtimeId=6256 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6255 +runtimeId=6258 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6257 +runtimeId=6260 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6307 +runtimeId=6310 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6309 +runtimeId=6312 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6311 +runtimeId=6314 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6361 +runtimeId=6364 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6363 +runtimeId=6366 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6365 +runtimeId=6368 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6222 +runtimeId=6225 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6224 +runtimeId=6227 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6226 +runtimeId=6229 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6276 +runtimeId=6279 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6278 +runtimeId=6281 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6280 +runtimeId=6283 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6330 +runtimeId=6333 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6332 +runtimeId=6335 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6334 +runtimeId=6337 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6240 +runtimeId=6243 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6242 +runtimeId=6245 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6244 +runtimeId=6247 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6294 +runtimeId=6297 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6296 +runtimeId=6299 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6298 +runtimeId=6301 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6348 +runtimeId=6351 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6350 +runtimeId=6353 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6352 +runtimeId=6355 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6258 +runtimeId=6261 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6260 +runtimeId=6263 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6262 +runtimeId=6265 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6312 +runtimeId=6315 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6314 +runtimeId=6317 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6316 +runtimeId=6319 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6366 +runtimeId=6369 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6368 +runtimeId=6371 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6370 +runtimeId=6373 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6223 +runtimeId=6226 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6225 +runtimeId=6228 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6227 +runtimeId=6230 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6277 +runtimeId=6280 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6279 +runtimeId=6282 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6281 +runtimeId=6284 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6331 +runtimeId=6334 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6333 +runtimeId=6336 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6335 +runtimeId=6338 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6241 +runtimeId=6244 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6243 +runtimeId=6246 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6245 +runtimeId=6248 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6295 +runtimeId=6298 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6297 +runtimeId=6300 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6299 +runtimeId=6302 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6349 +runtimeId=6352 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6351 +runtimeId=6354 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6353 +runtimeId=6356 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6259 +runtimeId=6262 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6261 +runtimeId=6264 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6263 +runtimeId=6266 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6313 +runtimeId=6316 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6315 +runtimeId=6318 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6317 +runtimeId=6320 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6367 +runtimeId=6370 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6369 +runtimeId=6372 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6371 +runtimeId=6374 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6228 +runtimeId=6231 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6230 +runtimeId=6233 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6232 +runtimeId=6235 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6282 +runtimeId=6285 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6284 +runtimeId=6287 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6286 +runtimeId=6289 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6336 +runtimeId=6339 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6338 +runtimeId=6341 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6340 +runtimeId=6343 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6246 +runtimeId=6249 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6248 +runtimeId=6251 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6250 +runtimeId=6253 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6300 +runtimeId=6303 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6302 +runtimeId=6305 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6304 +runtimeId=6307 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6354 +runtimeId=6357 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6356 +runtimeId=6359 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6358 +runtimeId=6361 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6264 +runtimeId=6267 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6266 +runtimeId=6269 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6268 +runtimeId=6271 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6318 +runtimeId=6321 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6320 +runtimeId=6323 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6322 +runtimeId=6325 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6372 +runtimeId=6375 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6374 +runtimeId=6377 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6376 +runtimeId=6379 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6229 +runtimeId=6232 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6231 +runtimeId=6234 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6233 +runtimeId=6236 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6283 +runtimeId=6286 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6285 +runtimeId=6288 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6287 +runtimeId=6290 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6337 +runtimeId=6340 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6339 +runtimeId=6342 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6341 +runtimeId=6344 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6247 +runtimeId=6250 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6249 +runtimeId=6252 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6251 +runtimeId=6254 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6301 +runtimeId=6304 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6303 +runtimeId=6306 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6305 +runtimeId=6308 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6355 +runtimeId=6358 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6357 +runtimeId=6360 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6359 +runtimeId=6362 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6265 +runtimeId=6268 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6267 +runtimeId=6270 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6269 +runtimeId=6272 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6319 +runtimeId=6322 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6321 +runtimeId=6324 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6323 +runtimeId=6326 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6373 +runtimeId=6376 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6375 +runtimeId=6378 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6377 +runtimeId=6380 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=428 -runtimeId=6378 +runtimeId=6381 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=428 -runtimeId=6379 +runtimeId=6382 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=428 -runtimeId=6380 +runtimeId=6383 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=428 -runtimeId=6381 +runtimeId=6384 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=428 -runtimeId=6382 +runtimeId=6385 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=428 -runtimeId=6383 +runtimeId=6386 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=428 -runtimeId=6384 +runtimeId=6387 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=428 -runtimeId=6385 +runtimeId=6388 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=427 -runtimeId=6386 +runtimeId=6389 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=427 -runtimeId=6387 +runtimeId=6390 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=427 -runtimeId=6388 +runtimeId=6391 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=427 -runtimeId=6389 +runtimeId=6392 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=427 -runtimeId=6390 +runtimeId=6393 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=427 -runtimeId=6391 +runtimeId=6394 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=427 -runtimeId=6392 +runtimeId=6395 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=427 -runtimeId=6393 +runtimeId=6396 minecraft:portal;portal_axis=unknown blockId=90 -runtimeId=6394 +runtimeId=6397 minecraft:portal;portal_axis=x blockId=90 -runtimeId=6395 +runtimeId=6398 minecraft:portal;portal_axis=z blockId=90 -runtimeId=6396 +runtimeId=6399 minecraft:potatoes;growth=0 blockId=142 -runtimeId=6397 +runtimeId=6400 minecraft:potatoes;growth=1 blockId=142 -runtimeId=6398 +runtimeId=6401 minecraft:potatoes;growth=2 blockId=142 -runtimeId=6399 +runtimeId=6402 minecraft:potatoes;growth=3 blockId=142 -runtimeId=6400 +runtimeId=6403 minecraft:potatoes;growth=4 blockId=142 -runtimeId=6401 +runtimeId=6404 minecraft:potatoes;growth=5 blockId=142 -runtimeId=6402 +runtimeId=6405 minecraft:potatoes;growth=6 blockId=142 -runtimeId=6403 +runtimeId=6406 minecraft:potatoes;growth=7 blockId=142 -runtimeId=6404 +runtimeId=6407 minecraft:powder_snow blockId=561 -runtimeId=6405 +runtimeId=6408 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=0 blockId=150 -runtimeId=6406 +runtimeId=6409 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=1 blockId=150 -runtimeId=6407 +runtimeId=6410 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=2 blockId=150 -runtimeId=6408 +runtimeId=6411 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=3 blockId=150 -runtimeId=6409 +runtimeId=6412 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=0 blockId=150 -runtimeId=6414 +runtimeId=6417 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=1 blockId=150 -runtimeId=6415 +runtimeId=6418 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=2 blockId=150 -runtimeId=6416 +runtimeId=6419 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=3 blockId=150 -runtimeId=6417 +runtimeId=6420 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=0 blockId=150 -runtimeId=6410 +runtimeId=6413 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=1 blockId=150 -runtimeId=6411 +runtimeId=6414 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=2 blockId=150 -runtimeId=6412 +runtimeId=6415 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=3 blockId=150 -runtimeId=6413 +runtimeId=6416 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=0 blockId=150 -runtimeId=6418 +runtimeId=6421 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=1 blockId=150 -runtimeId=6419 +runtimeId=6422 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=2 blockId=150 -runtimeId=6420 +runtimeId=6423 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=3 blockId=150 -runtimeId=6421 +runtimeId=6424 minecraft:powered_repeater;repeater_delay=0;direction=0 blockId=94 -runtimeId=6422 +runtimeId=6425 minecraft:powered_repeater;repeater_delay=0;direction=1 blockId=94 -runtimeId=6423 +runtimeId=6426 minecraft:powered_repeater;repeater_delay=0;direction=2 blockId=94 -runtimeId=6424 +runtimeId=6427 minecraft:powered_repeater;repeater_delay=0;direction=3 blockId=94 -runtimeId=6425 +runtimeId=6428 minecraft:powered_repeater;repeater_delay=1;direction=0 blockId=94 -runtimeId=6426 +runtimeId=6429 minecraft:powered_repeater;repeater_delay=1;direction=1 blockId=94 -runtimeId=6427 +runtimeId=6430 minecraft:powered_repeater;repeater_delay=1;direction=2 blockId=94 -runtimeId=6428 +runtimeId=6431 minecraft:powered_repeater;repeater_delay=1;direction=3 blockId=94 -runtimeId=6429 +runtimeId=6432 minecraft:powered_repeater;repeater_delay=2;direction=0 blockId=94 -runtimeId=6430 +runtimeId=6433 minecraft:powered_repeater;repeater_delay=2;direction=1 blockId=94 -runtimeId=6431 +runtimeId=6434 minecraft:powered_repeater;repeater_delay=2;direction=2 blockId=94 -runtimeId=6432 +runtimeId=6435 minecraft:powered_repeater;repeater_delay=2;direction=3 blockId=94 -runtimeId=6433 +runtimeId=6436 minecraft:powered_repeater;repeater_delay=3;direction=0 blockId=94 -runtimeId=6434 +runtimeId=6437 minecraft:powered_repeater;repeater_delay=3;direction=1 blockId=94 -runtimeId=6435 +runtimeId=6438 minecraft:powered_repeater;repeater_delay=3;direction=2 blockId=94 -runtimeId=6436 +runtimeId=6439 minecraft:powered_repeater;repeater_delay=3;direction=3 blockId=94 -runtimeId=6437 +runtimeId=6440 minecraft:prismarine;prismarine_block_type=bricks blockId=168 -runtimeId=6440 +runtimeId=6443 minecraft:prismarine;prismarine_block_type=dark blockId=168 -runtimeId=6439 +runtimeId=6442 minecraft:prismarine;prismarine_block_type=default blockId=168 -runtimeId=6438 +runtimeId=6441 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=0 blockId=259 -runtimeId=6441 +runtimeId=6444 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=1 blockId=259 -runtimeId=6442 +runtimeId=6445 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=2 blockId=259 -runtimeId=6443 +runtimeId=6446 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=3 blockId=259 -runtimeId=6444 +runtimeId=6447 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=0 blockId=259 -runtimeId=6445 +runtimeId=6448 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=1 blockId=259 -runtimeId=6446 +runtimeId=6449 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=2 blockId=259 -runtimeId=6447 +runtimeId=6450 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=3 blockId=259 -runtimeId=6448 +runtimeId=6451 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=0 blockId=257 -runtimeId=6449 +runtimeId=6452 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=1 blockId=257 -runtimeId=6450 +runtimeId=6453 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=2 blockId=257 -runtimeId=6451 +runtimeId=6454 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=3 blockId=257 -runtimeId=6452 +runtimeId=6455 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=0 blockId=257 -runtimeId=6453 +runtimeId=6456 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=1 blockId=257 -runtimeId=6454 +runtimeId=6457 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=2 blockId=257 -runtimeId=6455 +runtimeId=6458 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=3 blockId=257 -runtimeId=6456 +runtimeId=6459 minecraft:pumpkin;direction=0 blockId=86 -runtimeId=6457 +runtimeId=6460 minecraft:pumpkin;direction=1 blockId=86 -runtimeId=6458 +runtimeId=6461 minecraft:pumpkin;direction=2 blockId=86 -runtimeId=6459 +runtimeId=6462 minecraft:pumpkin;direction=3 blockId=86 -runtimeId=6460 +runtimeId=6463 minecraft:pumpkin_stem;facing_direction=0;growth=0 blockId=104 -runtimeId=6461 +runtimeId=6464 minecraft:pumpkin_stem;facing_direction=0;growth=1 blockId=104 -runtimeId=6462 +runtimeId=6465 minecraft:pumpkin_stem;facing_direction=0;growth=2 blockId=104 -runtimeId=6463 +runtimeId=6466 minecraft:pumpkin_stem;facing_direction=0;growth=3 blockId=104 -runtimeId=6464 +runtimeId=6467 minecraft:pumpkin_stem;facing_direction=0;growth=4 blockId=104 -runtimeId=6465 +runtimeId=6468 minecraft:pumpkin_stem;facing_direction=0;growth=5 blockId=104 -runtimeId=6466 +runtimeId=6469 minecraft:pumpkin_stem;facing_direction=0;growth=6 blockId=104 -runtimeId=6467 +runtimeId=6470 minecraft:pumpkin_stem;facing_direction=0;growth=7 blockId=104 -runtimeId=6468 +runtimeId=6471 minecraft:pumpkin_stem;facing_direction=1;growth=0 blockId=104 -runtimeId=6469 +runtimeId=6472 minecraft:pumpkin_stem;facing_direction=1;growth=1 blockId=104 -runtimeId=6470 +runtimeId=6473 minecraft:pumpkin_stem;facing_direction=1;growth=2 blockId=104 -runtimeId=6471 +runtimeId=6474 minecraft:pumpkin_stem;facing_direction=1;growth=3 blockId=104 -runtimeId=6472 +runtimeId=6475 minecraft:pumpkin_stem;facing_direction=1;growth=4 blockId=104 -runtimeId=6473 +runtimeId=6476 minecraft:pumpkin_stem;facing_direction=1;growth=5 blockId=104 -runtimeId=6474 +runtimeId=6477 minecraft:pumpkin_stem;facing_direction=1;growth=6 blockId=104 -runtimeId=6475 +runtimeId=6478 minecraft:pumpkin_stem;facing_direction=1;growth=7 blockId=104 -runtimeId=6476 +runtimeId=6479 minecraft:pumpkin_stem;facing_direction=2;growth=0 blockId=104 -runtimeId=6477 +runtimeId=6480 minecraft:pumpkin_stem;facing_direction=2;growth=1 blockId=104 -runtimeId=6478 +runtimeId=6481 minecraft:pumpkin_stem;facing_direction=2;growth=2 blockId=104 -runtimeId=6479 +runtimeId=6482 minecraft:pumpkin_stem;facing_direction=2;growth=3 blockId=104 -runtimeId=6480 +runtimeId=6483 minecraft:pumpkin_stem;facing_direction=2;growth=4 blockId=104 -runtimeId=6481 +runtimeId=6484 minecraft:pumpkin_stem;facing_direction=2;growth=5 blockId=104 -runtimeId=6482 +runtimeId=6485 minecraft:pumpkin_stem;facing_direction=2;growth=6 blockId=104 -runtimeId=6483 +runtimeId=6486 minecraft:pumpkin_stem;facing_direction=2;growth=7 blockId=104 -runtimeId=6484 +runtimeId=6487 minecraft:pumpkin_stem;facing_direction=3;growth=0 blockId=104 -runtimeId=6485 +runtimeId=6488 minecraft:pumpkin_stem;facing_direction=3;growth=1 blockId=104 -runtimeId=6486 +runtimeId=6489 minecraft:pumpkin_stem;facing_direction=3;growth=2 blockId=104 -runtimeId=6487 +runtimeId=6490 minecraft:pumpkin_stem;facing_direction=3;growth=3 blockId=104 -runtimeId=6488 +runtimeId=6491 minecraft:pumpkin_stem;facing_direction=3;growth=4 blockId=104 -runtimeId=6489 +runtimeId=6492 minecraft:pumpkin_stem;facing_direction=3;growth=5 blockId=104 -runtimeId=6490 +runtimeId=6493 minecraft:pumpkin_stem;facing_direction=3;growth=6 blockId=104 -runtimeId=6491 +runtimeId=6494 minecraft:pumpkin_stem;facing_direction=3;growth=7 blockId=104 -runtimeId=6492 +runtimeId=6495 minecraft:pumpkin_stem;facing_direction=4;growth=0 blockId=104 -runtimeId=6493 +runtimeId=6496 minecraft:pumpkin_stem;facing_direction=4;growth=1 blockId=104 -runtimeId=6494 +runtimeId=6497 minecraft:pumpkin_stem;facing_direction=4;growth=2 blockId=104 -runtimeId=6495 +runtimeId=6498 minecraft:pumpkin_stem;facing_direction=4;growth=3 blockId=104 -runtimeId=6496 +runtimeId=6499 minecraft:pumpkin_stem;facing_direction=4;growth=4 blockId=104 -runtimeId=6497 +runtimeId=6500 minecraft:pumpkin_stem;facing_direction=4;growth=5 blockId=104 -runtimeId=6498 +runtimeId=6501 minecraft:pumpkin_stem;facing_direction=4;growth=6 blockId=104 -runtimeId=6499 +runtimeId=6502 minecraft:pumpkin_stem;facing_direction=4;growth=7 blockId=104 -runtimeId=6500 +runtimeId=6503 minecraft:pumpkin_stem;facing_direction=5;growth=0 blockId=104 -runtimeId=6501 +runtimeId=6504 minecraft:pumpkin_stem;facing_direction=5;growth=1 blockId=104 -runtimeId=6502 +runtimeId=6505 minecraft:pumpkin_stem;facing_direction=5;growth=2 blockId=104 -runtimeId=6503 +runtimeId=6506 minecraft:pumpkin_stem;facing_direction=5;growth=3 blockId=104 -runtimeId=6504 +runtimeId=6507 minecraft:pumpkin_stem;facing_direction=5;growth=4 blockId=104 -runtimeId=6505 +runtimeId=6508 minecraft:pumpkin_stem;facing_direction=5;growth=5 blockId=104 -runtimeId=6506 +runtimeId=6509 minecraft:pumpkin_stem;facing_direction=5;growth=6 blockId=104 -runtimeId=6507 +runtimeId=6510 minecraft:pumpkin_stem;facing_direction=5;growth=7 blockId=104 -runtimeId=6508 +runtimeId=6511 minecraft:purple_candle;lit=0;candles=0 blockId=678 -runtimeId=6509 +runtimeId=6512 minecraft:purple_candle;lit=0;candles=1 blockId=678 -runtimeId=6510 +runtimeId=6513 minecraft:purple_candle;lit=0;candles=2 blockId=678 -runtimeId=6511 +runtimeId=6514 minecraft:purple_candle;lit=0;candles=3 blockId=678 -runtimeId=6512 +runtimeId=6515 minecraft:purple_candle;lit=1;candles=0 blockId=678 -runtimeId=6513 +runtimeId=6516 minecraft:purple_candle;lit=1;candles=1 blockId=678 -runtimeId=6514 +runtimeId=6517 minecraft:purple_candle;lit=1;candles=2 blockId=678 -runtimeId=6515 +runtimeId=6518 minecraft:purple_candle;lit=1;candles=3 blockId=678 -runtimeId=6516 +runtimeId=6519 minecraft:purple_candle_cake;lit=0 blockId=695 -runtimeId=6517 +runtimeId=6520 minecraft:purple_candle_cake;lit=1 blockId=695 -runtimeId=6518 +runtimeId=6521 minecraft:purple_glazed_terracotta;facing_direction=0 blockId=219 -runtimeId=6519 +runtimeId=6522 minecraft:purple_glazed_terracotta;facing_direction=1 blockId=219 -runtimeId=6520 +runtimeId=6523 minecraft:purple_glazed_terracotta;facing_direction=2 blockId=219 -runtimeId=6521 +runtimeId=6524 minecraft:purple_glazed_terracotta;facing_direction=3 blockId=219 -runtimeId=6522 +runtimeId=6525 minecraft:purple_glazed_terracotta;facing_direction=4 blockId=219 -runtimeId=6523 +runtimeId=6526 minecraft:purple_glazed_terracotta;facing_direction=5 blockId=219 -runtimeId=6524 +runtimeId=6527 minecraft:purpur_block;chisel_type=chiseled;pillar_axis=x blockId=201 -runtimeId=6530 +runtimeId=6533 minecraft:purpur_block;chisel_type=chiseled;pillar_axis=y blockId=201 -runtimeId=6526 +runtimeId=6529 minecraft:purpur_block;chisel_type=chiseled;pillar_axis=z blockId=201 -runtimeId=6534 +runtimeId=6537 minecraft:purpur_block;chisel_type=default;pillar_axis=x blockId=201 -runtimeId=6529 +runtimeId=6532 minecraft:purpur_block;chisel_type=default;pillar_axis=y blockId=201 -runtimeId=6525 +runtimeId=6528 minecraft:purpur_block;chisel_type=default;pillar_axis=z blockId=201 -runtimeId=6533 +runtimeId=6536 minecraft:purpur_block;chisel_type=lines;pillar_axis=x blockId=201 -runtimeId=6531 +runtimeId=6534 minecraft:purpur_block;chisel_type=lines;pillar_axis=y blockId=201 -runtimeId=6527 +runtimeId=6530 minecraft:purpur_block;chisel_type=lines;pillar_axis=z blockId=201 -runtimeId=6535 +runtimeId=6538 minecraft:purpur_block;chisel_type=smooth;pillar_axis=x blockId=201 -runtimeId=6532 +runtimeId=6535 minecraft:purpur_block;chisel_type=smooth;pillar_axis=y blockId=201 -runtimeId=6528 +runtimeId=6531 minecraft:purpur_block;chisel_type=smooth;pillar_axis=z blockId=201 -runtimeId=6536 +runtimeId=6539 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=0 blockId=203 -runtimeId=6537 +runtimeId=6540 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=1 blockId=203 -runtimeId=6538 +runtimeId=6541 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=2 blockId=203 -runtimeId=6539 +runtimeId=6542 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=3 blockId=203 -runtimeId=6540 +runtimeId=6543 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=0 blockId=203 -runtimeId=6541 +runtimeId=6544 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=1 blockId=203 -runtimeId=6542 +runtimeId=6545 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=2 blockId=203 -runtimeId=6543 +runtimeId=6546 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=3 blockId=203 -runtimeId=6544 +runtimeId=6547 minecraft:quartz_block;chisel_type=chiseled;pillar_axis=x blockId=155 -runtimeId=6550 +runtimeId=6553 minecraft:quartz_block;chisel_type=chiseled;pillar_axis=y blockId=155 -runtimeId=6546 +runtimeId=6549 minecraft:quartz_block;chisel_type=chiseled;pillar_axis=z blockId=155 -runtimeId=6554 +runtimeId=6557 minecraft:quartz_block;chisel_type=default;pillar_axis=x blockId=155 -runtimeId=6549 +runtimeId=6552 minecraft:quartz_block;chisel_type=default;pillar_axis=y blockId=155 -runtimeId=6545 +runtimeId=6548 minecraft:quartz_block;chisel_type=default;pillar_axis=z blockId=155 -runtimeId=6553 +runtimeId=6556 minecraft:quartz_block;chisel_type=lines;pillar_axis=x blockId=155 -runtimeId=6551 +runtimeId=6554 minecraft:quartz_block;chisel_type=lines;pillar_axis=y blockId=155 -runtimeId=6547 +runtimeId=6550 minecraft:quartz_block;chisel_type=lines;pillar_axis=z blockId=155 -runtimeId=6555 +runtimeId=6558 minecraft:quartz_block;chisel_type=smooth;pillar_axis=x blockId=155 -runtimeId=6552 +runtimeId=6555 minecraft:quartz_block;chisel_type=smooth;pillar_axis=y blockId=155 -runtimeId=6548 +runtimeId=6551 minecraft:quartz_block;chisel_type=smooth;pillar_axis=z blockId=155 -runtimeId=6556 +runtimeId=6559 minecraft:quartz_bricks blockId=559 -runtimeId=6557 +runtimeId=6560 minecraft:quartz_ore blockId=153 -runtimeId=6558 +runtimeId=6561 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=0 blockId=156 -runtimeId=6559 +runtimeId=6562 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=1 blockId=156 -runtimeId=6560 +runtimeId=6563 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=2 blockId=156 -runtimeId=6561 +runtimeId=6564 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=3 blockId=156 -runtimeId=6562 +runtimeId=6565 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=0 blockId=156 -runtimeId=6563 +runtimeId=6566 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=1 blockId=156 -runtimeId=6564 +runtimeId=6567 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=2 blockId=156 -runtimeId=6565 +runtimeId=6568 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=3 blockId=156 -runtimeId=6566 +runtimeId=6569 minecraft:rail;rail_direction=0 blockId=66 -runtimeId=6567 +runtimeId=6570 minecraft:rail;rail_direction=1 blockId=66 -runtimeId=6568 +runtimeId=6571 minecraft:rail;rail_direction=2 blockId=66 -runtimeId=6569 +runtimeId=6572 minecraft:rail;rail_direction=3 blockId=66 -runtimeId=6570 +runtimeId=6573 minecraft:rail;rail_direction=4 blockId=66 -runtimeId=6571 +runtimeId=6574 minecraft:rail;rail_direction=5 blockId=66 -runtimeId=6572 +runtimeId=6575 minecraft:rail;rail_direction=6 blockId=66 -runtimeId=6573 +runtimeId=6576 minecraft:rail;rail_direction=7 blockId=66 -runtimeId=6574 +runtimeId=6577 minecraft:rail;rail_direction=8 blockId=66 -runtimeId=6575 +runtimeId=6578 minecraft:rail;rail_direction=9 blockId=66 -runtimeId=6576 +runtimeId=6579 minecraft:raw_copper_block blockId=707 -runtimeId=6577 +runtimeId=6580 minecraft:raw_gold_block blockId=708 -runtimeId=6578 +runtimeId=6581 minecraft:raw_iron_block blockId=706 -runtimeId=6579 +runtimeId=6582 minecraft:red_candle;lit=0;candles=0 blockId=682 -runtimeId=6580 +runtimeId=6583 minecraft:red_candle;lit=0;candles=1 blockId=682 -runtimeId=6581 +runtimeId=6584 minecraft:red_candle;lit=0;candles=2 blockId=682 -runtimeId=6582 +runtimeId=6585 minecraft:red_candle;lit=0;candles=3 blockId=682 -runtimeId=6583 +runtimeId=6586 minecraft:red_candle;lit=1;candles=0 blockId=682 -runtimeId=6584 +runtimeId=6587 minecraft:red_candle;lit=1;candles=1 blockId=682 -runtimeId=6585 +runtimeId=6588 minecraft:red_candle;lit=1;candles=2 blockId=682 -runtimeId=6586 +runtimeId=6589 minecraft:red_candle;lit=1;candles=3 blockId=682 -runtimeId=6587 +runtimeId=6590 minecraft:red_candle_cake;lit=0 blockId=699 -runtimeId=6588 +runtimeId=6591 minecraft:red_candle_cake;lit=1 blockId=699 -runtimeId=6589 +runtimeId=6592 minecraft:red_flower;flower_type=allium blockId=38 -runtimeId=6592 +runtimeId=6595 minecraft:red_flower;flower_type=cornflower blockId=38 -runtimeId=6599 +runtimeId=6602 minecraft:red_flower;flower_type=houstonia blockId=38 -runtimeId=6593 +runtimeId=6596 minecraft:red_flower;flower_type=lily_of_the_valley blockId=38 -runtimeId=6600 +runtimeId=6603 minecraft:red_flower;flower_type=orchid blockId=38 -runtimeId=6591 +runtimeId=6594 minecraft:red_flower;flower_type=oxeye blockId=38 -runtimeId=6598 +runtimeId=6601 minecraft:red_flower;flower_type=poppy blockId=38 -runtimeId=6590 +runtimeId=6593 minecraft:red_flower;flower_type=tulip_orange blockId=38 -runtimeId=6595 +runtimeId=6598 minecraft:red_flower;flower_type=tulip_pink blockId=38 -runtimeId=6597 +runtimeId=6600 minecraft:red_flower;flower_type=tulip_red blockId=38 -runtimeId=6594 +runtimeId=6597 minecraft:red_flower;flower_type=tulip_white blockId=38 -runtimeId=6596 +runtimeId=6599 minecraft:red_glazed_terracotta;facing_direction=0 blockId=234 -runtimeId=6601 +runtimeId=6604 minecraft:red_glazed_terracotta;facing_direction=1 blockId=234 -runtimeId=6602 +runtimeId=6605 minecraft:red_glazed_terracotta;facing_direction=2 blockId=234 -runtimeId=6603 +runtimeId=6606 minecraft:red_glazed_terracotta;facing_direction=3 blockId=234 -runtimeId=6604 +runtimeId=6607 minecraft:red_glazed_terracotta;facing_direction=4 blockId=234 -runtimeId=6605 +runtimeId=6608 minecraft:red_glazed_terracotta;facing_direction=5 blockId=234 -runtimeId=6606 +runtimeId=6609 minecraft:red_mushroom blockId=40 -runtimeId=6607 +runtimeId=6610 minecraft:red_mushroom_block;huge_mushroom_bits=0 blockId=100 -runtimeId=6608 +runtimeId=6611 minecraft:red_mushroom_block;huge_mushroom_bits=1 blockId=100 -runtimeId=6609 +runtimeId=6612 minecraft:red_mushroom_block;huge_mushroom_bits=2 blockId=100 -runtimeId=6610 +runtimeId=6613 minecraft:red_mushroom_block;huge_mushroom_bits=3 blockId=100 -runtimeId=6611 +runtimeId=6614 minecraft:red_mushroom_block;huge_mushroom_bits=4 blockId=100 -runtimeId=6612 +runtimeId=6615 minecraft:red_mushroom_block;huge_mushroom_bits=5 blockId=100 -runtimeId=6613 +runtimeId=6616 minecraft:red_mushroom_block;huge_mushroom_bits=6 blockId=100 -runtimeId=6614 +runtimeId=6617 minecraft:red_mushroom_block;huge_mushroom_bits=7 blockId=100 -runtimeId=6615 +runtimeId=6618 minecraft:red_mushroom_block;huge_mushroom_bits=8 blockId=100 -runtimeId=6616 +runtimeId=6619 minecraft:red_mushroom_block;huge_mushroom_bits=9 blockId=100 -runtimeId=6617 +runtimeId=6620 minecraft:red_mushroom_block;huge_mushroom_bits=10 blockId=100 -runtimeId=6618 +runtimeId=6621 minecraft:red_mushroom_block;huge_mushroom_bits=11 blockId=100 -runtimeId=6619 +runtimeId=6622 minecraft:red_mushroom_block;huge_mushroom_bits=12 blockId=100 -runtimeId=6620 +runtimeId=6623 minecraft:red_mushroom_block;huge_mushroom_bits=13 blockId=100 -runtimeId=6621 +runtimeId=6624 minecraft:red_mushroom_block;huge_mushroom_bits=14 blockId=100 -runtimeId=6622 +runtimeId=6625 minecraft:red_mushroom_block;huge_mushroom_bits=15 blockId=100 -runtimeId=6623 +runtimeId=6626 minecraft:red_nether_brick blockId=215 -runtimeId=6624 +runtimeId=6627 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=439 -runtimeId=6625 +runtimeId=6628 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=439 -runtimeId=6626 +runtimeId=6629 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=439 -runtimeId=6627 +runtimeId=6630 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=439 -runtimeId=6628 +runtimeId=6631 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=439 -runtimeId=6629 +runtimeId=6632 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=439 -runtimeId=6630 +runtimeId=6633 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=439 -runtimeId=6631 +runtimeId=6634 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=439 -runtimeId=6632 +runtimeId=6635 minecraft:red_sandstone;sand_stone_type=cut blockId=179 -runtimeId=6635 +runtimeId=6638 minecraft:red_sandstone;sand_stone_type=default blockId=179 -runtimeId=6633 +runtimeId=6636 minecraft:red_sandstone;sand_stone_type=heiroglyphs blockId=179 -runtimeId=6634 +runtimeId=6637 minecraft:red_sandstone;sand_stone_type=smooth blockId=179 -runtimeId=6636 +runtimeId=6639 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=180 -runtimeId=6637 +runtimeId=6640 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=180 -runtimeId=6638 +runtimeId=6641 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=180 -runtimeId=6639 +runtimeId=6642 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=180 -runtimeId=6640 +runtimeId=6643 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=180 -runtimeId=6641 +runtimeId=6644 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=180 -runtimeId=6642 +runtimeId=6645 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=180 -runtimeId=6643 +runtimeId=6646 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=180 -runtimeId=6644 +runtimeId=6647 minecraft:redstone_block blockId=152 -runtimeId=6645 +runtimeId=6648 minecraft:redstone_lamp blockId=123 -runtimeId=6646 +runtimeId=6649 minecraft:redstone_ore blockId=73 -runtimeId=6647 +runtimeId=6650 minecraft:redstone_torch;torch_facing_direction=east blockId=76 -runtimeId=6650 +runtimeId=6653 minecraft:redstone_torch;torch_facing_direction=north blockId=76 -runtimeId=6651 +runtimeId=6654 minecraft:redstone_torch;torch_facing_direction=south blockId=76 -runtimeId=6652 +runtimeId=6655 minecraft:redstone_torch;torch_facing_direction=top blockId=76 -runtimeId=6653 +runtimeId=6656 minecraft:redstone_torch;torch_facing_direction=unknown blockId=76 -runtimeId=6648 +runtimeId=6651 minecraft:redstone_torch;torch_facing_direction=west blockId=76 -runtimeId=6649 +runtimeId=6652 minecraft:redstone_wire;redstone_signal=0 blockId=55 -runtimeId=6654 +runtimeId=6657 minecraft:redstone_wire;redstone_signal=1 blockId=55 -runtimeId=6655 +runtimeId=6658 minecraft:redstone_wire;redstone_signal=2 blockId=55 -runtimeId=6656 +runtimeId=6659 minecraft:redstone_wire;redstone_signal=3 blockId=55 -runtimeId=6657 +runtimeId=6660 minecraft:redstone_wire;redstone_signal=4 blockId=55 -runtimeId=6658 +runtimeId=6661 minecraft:redstone_wire;redstone_signal=5 blockId=55 -runtimeId=6659 +runtimeId=6662 minecraft:redstone_wire;redstone_signal=6 blockId=55 -runtimeId=6660 +runtimeId=6663 minecraft:redstone_wire;redstone_signal=7 blockId=55 -runtimeId=6661 +runtimeId=6664 minecraft:redstone_wire;redstone_signal=8 blockId=55 -runtimeId=6662 +runtimeId=6665 minecraft:redstone_wire;redstone_signal=9 blockId=55 -runtimeId=6663 +runtimeId=6666 minecraft:redstone_wire;redstone_signal=10 blockId=55 -runtimeId=6664 +runtimeId=6667 minecraft:redstone_wire;redstone_signal=11 blockId=55 -runtimeId=6665 +runtimeId=6668 minecraft:redstone_wire;redstone_signal=12 blockId=55 -runtimeId=6666 +runtimeId=6669 minecraft:redstone_wire;redstone_signal=13 blockId=55 -runtimeId=6667 +runtimeId=6670 minecraft:redstone_wire;redstone_signal=14 blockId=55 -runtimeId=6668 +runtimeId=6671 minecraft:redstone_wire;redstone_signal=15 blockId=55 -runtimeId=6669 +runtimeId=6672 minecraft:reeds;age=0 blockId=83 -runtimeId=6670 +runtimeId=6673 minecraft:reeds;age=1 blockId=83 -runtimeId=6671 +runtimeId=6674 minecraft:reeds;age=2 blockId=83 -runtimeId=6672 +runtimeId=6675 minecraft:reeds;age=3 blockId=83 -runtimeId=6673 +runtimeId=6676 minecraft:reeds;age=4 blockId=83 -runtimeId=6674 +runtimeId=6677 minecraft:reeds;age=5 blockId=83 -runtimeId=6675 +runtimeId=6678 minecraft:reeds;age=6 blockId=83 -runtimeId=6676 +runtimeId=6679 minecraft:reeds;age=7 blockId=83 -runtimeId=6677 +runtimeId=6680 minecraft:reeds;age=8 blockId=83 -runtimeId=6678 +runtimeId=6681 minecraft:reeds;age=9 blockId=83 -runtimeId=6679 +runtimeId=6682 minecraft:reeds;age=10 blockId=83 -runtimeId=6680 +runtimeId=6683 minecraft:reeds;age=11 blockId=83 -runtimeId=6681 +runtimeId=6684 minecraft:reeds;age=12 blockId=83 -runtimeId=6682 +runtimeId=6685 minecraft:reeds;age=13 blockId=83 -runtimeId=6683 +runtimeId=6686 minecraft:reeds;age=14 blockId=83 -runtimeId=6684 +runtimeId=6687 minecraft:reeds;age=15 blockId=83 -runtimeId=6685 +runtimeId=6688 minecraft:repeating_command_block;conditional_bit=0;facing_direction=0 blockId=188 -runtimeId=6686 +runtimeId=6689 minecraft:repeating_command_block;conditional_bit=0;facing_direction=1 blockId=188 -runtimeId=6687 +runtimeId=6690 minecraft:repeating_command_block;conditional_bit=0;facing_direction=2 blockId=188 -runtimeId=6688 +runtimeId=6691 minecraft:repeating_command_block;conditional_bit=0;facing_direction=3 blockId=188 -runtimeId=6689 +runtimeId=6692 minecraft:repeating_command_block;conditional_bit=0;facing_direction=4 blockId=188 -runtimeId=6690 +runtimeId=6693 minecraft:repeating_command_block;conditional_bit=0;facing_direction=5 blockId=188 -runtimeId=6691 +runtimeId=6694 minecraft:repeating_command_block;conditional_bit=1;facing_direction=0 blockId=188 -runtimeId=6692 +runtimeId=6695 minecraft:repeating_command_block;conditional_bit=1;facing_direction=1 blockId=188 -runtimeId=6693 +runtimeId=6696 minecraft:repeating_command_block;conditional_bit=1;facing_direction=2 blockId=188 -runtimeId=6694 +runtimeId=6697 minecraft:repeating_command_block;conditional_bit=1;facing_direction=3 blockId=188 -runtimeId=6695 +runtimeId=6698 minecraft:repeating_command_block;conditional_bit=1;facing_direction=4 blockId=188 -runtimeId=6696 +runtimeId=6699 minecraft:repeating_command_block;conditional_bit=1;facing_direction=5 blockId=188 -runtimeId=6697 +runtimeId=6700 minecraft:reserved6 blockId=255 -runtimeId=6698 +runtimeId=6701 minecraft:respawn_anchor;respawn_anchor_charge=0 blockId=527 -runtimeId=6699 +runtimeId=6702 minecraft:respawn_anchor;respawn_anchor_charge=1 blockId=527 -runtimeId=6700 +runtimeId=6703 minecraft:respawn_anchor;respawn_anchor_charge=2 blockId=527 -runtimeId=6701 +runtimeId=6704 minecraft:respawn_anchor;respawn_anchor_charge=3 blockId=527 -runtimeId=6702 +runtimeId=6705 minecraft:respawn_anchor;respawn_anchor_charge=4 blockId=527 -runtimeId=6703 +runtimeId=6706 minecraft:sand;sand_type=normal blockId=12 -runtimeId=6704 +runtimeId=6707 minecraft:sand;sand_type=red blockId=12 -runtimeId=6705 +runtimeId=6708 minecraft:sandstone;sand_stone_type=cut blockId=24 -runtimeId=6708 +runtimeId=6711 minecraft:sandstone;sand_stone_type=default blockId=24 -runtimeId=6706 +runtimeId=6709 minecraft:sandstone;sand_stone_type=heiroglyphs blockId=24 -runtimeId=6707 +runtimeId=6710 minecraft:sandstone;sand_stone_type=smooth blockId=24 -runtimeId=6709 +runtimeId=6712 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=128 -runtimeId=6710 +runtimeId=6713 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=128 -runtimeId=6711 +runtimeId=6714 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=128 -runtimeId=6712 +runtimeId=6715 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=128 -runtimeId=6713 +runtimeId=6716 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=128 -runtimeId=6714 +runtimeId=6717 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=128 -runtimeId=6715 +runtimeId=6718 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=128 -runtimeId=6716 +runtimeId=6719 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=128 -runtimeId=6717 +runtimeId=6720 minecraft:sapling;sapling_type=acacia;age_bit=0 blockId=6 -runtimeId=6722 +runtimeId=6725 minecraft:sapling;sapling_type=acacia;age_bit=1 blockId=6 -runtimeId=6728 +runtimeId=6731 minecraft:sapling;sapling_type=birch;age_bit=0 blockId=6 -runtimeId=6720 +runtimeId=6723 minecraft:sapling;sapling_type=birch;age_bit=1 blockId=6 -runtimeId=6726 +runtimeId=6729 minecraft:sapling;sapling_type=dark_oak;age_bit=0 blockId=6 -runtimeId=6723 +runtimeId=6726 minecraft:sapling;sapling_type=dark_oak;age_bit=1 blockId=6 -runtimeId=6729 +runtimeId=6732 minecraft:sapling;sapling_type=jungle;age_bit=0 blockId=6 -runtimeId=6721 +runtimeId=6724 minecraft:sapling;sapling_type=jungle;age_bit=1 blockId=6 -runtimeId=6727 +runtimeId=6730 minecraft:sapling;sapling_type=oak;age_bit=0 blockId=6 -runtimeId=6718 +runtimeId=6721 minecraft:sapling;sapling_type=oak;age_bit=1 blockId=6 -runtimeId=6724 +runtimeId=6727 minecraft:sapling;sapling_type=spruce;age_bit=0 blockId=6 -runtimeId=6719 +runtimeId=6722 minecraft:sapling;sapling_type=spruce;age_bit=1 blockId=6 -runtimeId=6725 +runtimeId=6728 minecraft:scaffolding;stability=0;stability_check=0 blockId=420 -runtimeId=6730 +runtimeId=6733 minecraft:scaffolding;stability=0;stability_check=1 blockId=420 -runtimeId=6738 +runtimeId=6741 minecraft:scaffolding;stability=1;stability_check=0 blockId=420 -runtimeId=6731 +runtimeId=6734 minecraft:scaffolding;stability=1;stability_check=1 blockId=420 -runtimeId=6739 +runtimeId=6742 minecraft:scaffolding;stability=2;stability_check=0 blockId=420 -runtimeId=6732 +runtimeId=6735 minecraft:scaffolding;stability=2;stability_check=1 blockId=420 -runtimeId=6740 +runtimeId=6743 minecraft:scaffolding;stability=3;stability_check=0 blockId=420 -runtimeId=6733 +runtimeId=6736 minecraft:scaffolding;stability=3;stability_check=1 blockId=420 -runtimeId=6741 +runtimeId=6744 minecraft:scaffolding;stability=4;stability_check=0 blockId=420 -runtimeId=6734 +runtimeId=6737 minecraft:scaffolding;stability=4;stability_check=1 blockId=420 -runtimeId=6742 +runtimeId=6745 minecraft:scaffolding;stability=5;stability_check=0 blockId=420 -runtimeId=6735 +runtimeId=6738 minecraft:scaffolding;stability=5;stability_check=1 blockId=420 -runtimeId=6743 +runtimeId=6746 minecraft:scaffolding;stability=6;stability_check=0 blockId=420 -runtimeId=6736 +runtimeId=6739 minecraft:scaffolding;stability=6;stability_check=1 blockId=420 -runtimeId=6744 +runtimeId=6747 minecraft:scaffolding;stability=7;stability_check=0 blockId=420 -runtimeId=6737 +runtimeId=6740 minecraft:scaffolding;stability=7;stability_check=1 blockId=420 -runtimeId=6745 +runtimeId=6748 minecraft:sculk blockId=713 -runtimeId=6746 +runtimeId=6749 minecraft:sculk_catalyst;bloom=0 blockId=715 -runtimeId=6747 +runtimeId=6750 minecraft:sculk_catalyst;bloom=1 blockId=715 -runtimeId=6748 +runtimeId=6751 minecraft:sculk_sensor;powered_bit=0 blockId=562 -runtimeId=6749 +runtimeId=6752 minecraft:sculk_sensor;powered_bit=1 blockId=562 -runtimeId=6750 +runtimeId=6753 minecraft:sculk_shrieker;active=0 blockId=716 -runtimeId=6751 +runtimeId=6754 minecraft:sculk_shrieker;active=1 blockId=716 -runtimeId=6752 +runtimeId=6755 minecraft:sculk_vein;multi_face_direction_bits=0 blockId=714 -runtimeId=6753 +runtimeId=6756 minecraft:sculk_vein;multi_face_direction_bits=1 blockId=714 -runtimeId=6754 +runtimeId=6757 minecraft:sculk_vein;multi_face_direction_bits=2 blockId=714 -runtimeId=6755 +runtimeId=6758 minecraft:sculk_vein;multi_face_direction_bits=3 blockId=714 -runtimeId=6756 +runtimeId=6759 minecraft:sculk_vein;multi_face_direction_bits=4 blockId=714 -runtimeId=6757 +runtimeId=6760 minecraft:sculk_vein;multi_face_direction_bits=5 blockId=714 -runtimeId=6758 +runtimeId=6761 minecraft:sculk_vein;multi_face_direction_bits=6 blockId=714 -runtimeId=6759 +runtimeId=6762 minecraft:sculk_vein;multi_face_direction_bits=7 blockId=714 -runtimeId=6760 +runtimeId=6763 minecraft:sculk_vein;multi_face_direction_bits=8 blockId=714 -runtimeId=6761 +runtimeId=6764 minecraft:sculk_vein;multi_face_direction_bits=9 blockId=714 -runtimeId=6762 +runtimeId=6765 minecraft:sculk_vein;multi_face_direction_bits=10 blockId=714 -runtimeId=6763 +runtimeId=6766 minecraft:sculk_vein;multi_face_direction_bits=11 blockId=714 -runtimeId=6764 +runtimeId=6767 minecraft:sculk_vein;multi_face_direction_bits=12 blockId=714 -runtimeId=6765 +runtimeId=6768 minecraft:sculk_vein;multi_face_direction_bits=13 blockId=714 -runtimeId=6766 +runtimeId=6769 minecraft:sculk_vein;multi_face_direction_bits=14 blockId=714 -runtimeId=6767 +runtimeId=6770 minecraft:sculk_vein;multi_face_direction_bits=15 blockId=714 -runtimeId=6768 +runtimeId=6771 minecraft:sculk_vein;multi_face_direction_bits=16 blockId=714 -runtimeId=6769 +runtimeId=6772 minecraft:sculk_vein;multi_face_direction_bits=17 blockId=714 -runtimeId=6770 +runtimeId=6773 minecraft:sculk_vein;multi_face_direction_bits=18 blockId=714 -runtimeId=6771 +runtimeId=6774 minecraft:sculk_vein;multi_face_direction_bits=19 blockId=714 -runtimeId=6772 +runtimeId=6775 minecraft:sculk_vein;multi_face_direction_bits=20 blockId=714 -runtimeId=6773 +runtimeId=6776 minecraft:sculk_vein;multi_face_direction_bits=21 blockId=714 -runtimeId=6774 +runtimeId=6777 minecraft:sculk_vein;multi_face_direction_bits=22 blockId=714 -runtimeId=6775 +runtimeId=6778 minecraft:sculk_vein;multi_face_direction_bits=23 blockId=714 -runtimeId=6776 +runtimeId=6779 minecraft:sculk_vein;multi_face_direction_bits=24 blockId=714 -runtimeId=6777 +runtimeId=6780 minecraft:sculk_vein;multi_face_direction_bits=25 blockId=714 -runtimeId=6778 +runtimeId=6781 minecraft:sculk_vein;multi_face_direction_bits=26 blockId=714 -runtimeId=6779 +runtimeId=6782 minecraft:sculk_vein;multi_face_direction_bits=27 blockId=714 -runtimeId=6780 +runtimeId=6783 minecraft:sculk_vein;multi_face_direction_bits=28 blockId=714 -runtimeId=6781 +runtimeId=6784 minecraft:sculk_vein;multi_face_direction_bits=29 blockId=714 -runtimeId=6782 +runtimeId=6785 minecraft:sculk_vein;multi_face_direction_bits=30 blockId=714 -runtimeId=6783 +runtimeId=6786 minecraft:sculk_vein;multi_face_direction_bits=31 blockId=714 -runtimeId=6784 +runtimeId=6787 minecraft:sculk_vein;multi_face_direction_bits=32 blockId=714 -runtimeId=6785 +runtimeId=6788 minecraft:sculk_vein;multi_face_direction_bits=33 blockId=714 -runtimeId=6786 +runtimeId=6789 minecraft:sculk_vein;multi_face_direction_bits=34 blockId=714 -runtimeId=6787 +runtimeId=6790 minecraft:sculk_vein;multi_face_direction_bits=35 blockId=714 -runtimeId=6788 +runtimeId=6791 minecraft:sculk_vein;multi_face_direction_bits=36 blockId=714 -runtimeId=6789 +runtimeId=6792 minecraft:sculk_vein;multi_face_direction_bits=37 blockId=714 -runtimeId=6790 +runtimeId=6793 minecraft:sculk_vein;multi_face_direction_bits=38 blockId=714 -runtimeId=6791 +runtimeId=6794 minecraft:sculk_vein;multi_face_direction_bits=39 blockId=714 -runtimeId=6792 +runtimeId=6795 minecraft:sculk_vein;multi_face_direction_bits=40 blockId=714 -runtimeId=6793 +runtimeId=6796 minecraft:sculk_vein;multi_face_direction_bits=41 blockId=714 -runtimeId=6794 +runtimeId=6797 minecraft:sculk_vein;multi_face_direction_bits=42 blockId=714 -runtimeId=6795 +runtimeId=6798 minecraft:sculk_vein;multi_face_direction_bits=43 blockId=714 -runtimeId=6796 +runtimeId=6799 minecraft:sculk_vein;multi_face_direction_bits=44 blockId=714 -runtimeId=6797 +runtimeId=6800 minecraft:sculk_vein;multi_face_direction_bits=45 blockId=714 -runtimeId=6798 +runtimeId=6801 minecraft:sculk_vein;multi_face_direction_bits=46 blockId=714 -runtimeId=6799 +runtimeId=6802 minecraft:sculk_vein;multi_face_direction_bits=47 blockId=714 -runtimeId=6800 +runtimeId=6803 minecraft:sculk_vein;multi_face_direction_bits=48 blockId=714 -runtimeId=6801 +runtimeId=6804 minecraft:sculk_vein;multi_face_direction_bits=49 blockId=714 -runtimeId=6802 +runtimeId=6805 minecraft:sculk_vein;multi_face_direction_bits=50 blockId=714 -runtimeId=6803 +runtimeId=6806 minecraft:sculk_vein;multi_face_direction_bits=51 blockId=714 -runtimeId=6804 +runtimeId=6807 minecraft:sculk_vein;multi_face_direction_bits=52 blockId=714 -runtimeId=6805 +runtimeId=6808 minecraft:sculk_vein;multi_face_direction_bits=53 blockId=714 -runtimeId=6806 +runtimeId=6809 minecraft:sculk_vein;multi_face_direction_bits=54 blockId=714 -runtimeId=6807 +runtimeId=6810 minecraft:sculk_vein;multi_face_direction_bits=55 blockId=714 -runtimeId=6808 +runtimeId=6811 minecraft:sculk_vein;multi_face_direction_bits=56 blockId=714 -runtimeId=6809 +runtimeId=6812 minecraft:sculk_vein;multi_face_direction_bits=57 blockId=714 -runtimeId=6810 +runtimeId=6813 minecraft:sculk_vein;multi_face_direction_bits=58 blockId=714 -runtimeId=6811 +runtimeId=6814 minecraft:sculk_vein;multi_face_direction_bits=59 blockId=714 -runtimeId=6812 +runtimeId=6815 minecraft:sculk_vein;multi_face_direction_bits=60 blockId=714 -runtimeId=6813 +runtimeId=6816 minecraft:sculk_vein;multi_face_direction_bits=61 blockId=714 -runtimeId=6814 +runtimeId=6817 minecraft:sculk_vein;multi_face_direction_bits=62 blockId=714 -runtimeId=6815 +runtimeId=6818 minecraft:sculk_vein;multi_face_direction_bits=63 blockId=714 -runtimeId=6816 +runtimeId=6819 minecraft:seaLantern blockId=169 -runtimeId=6828 +runtimeId=6831 minecraft:sea_pickle;cluster_count=0;dead_bit=0 blockId=411 -runtimeId=6817 +runtimeId=6820 minecraft:sea_pickle;cluster_count=0;dead_bit=1 blockId=411 -runtimeId=6821 +runtimeId=6824 minecraft:sea_pickle;cluster_count=1;dead_bit=0 blockId=411 -runtimeId=6818 +runtimeId=6821 minecraft:sea_pickle;cluster_count=1;dead_bit=1 blockId=411 -runtimeId=6822 +runtimeId=6825 minecraft:sea_pickle;cluster_count=2;dead_bit=0 blockId=411 -runtimeId=6819 +runtimeId=6822 minecraft:sea_pickle;cluster_count=2;dead_bit=1 blockId=411 -runtimeId=6823 +runtimeId=6826 minecraft:sea_pickle;cluster_count=3;dead_bit=0 blockId=411 -runtimeId=6820 +runtimeId=6823 minecraft:sea_pickle;cluster_count=3;dead_bit=1 blockId=411 -runtimeId=6824 +runtimeId=6827 minecraft:seagrass;sea_grass_type=default blockId=385 -runtimeId=6825 +runtimeId=6828 minecraft:seagrass;sea_grass_type=double_bot blockId=385 -runtimeId=6827 +runtimeId=6830 minecraft:seagrass;sea_grass_type=double_top blockId=385 -runtimeId=6826 +runtimeId=6829 minecraft:shroomlight blockId=485 -runtimeId=6829 +runtimeId=6832 minecraft:shulker_box;color=black blockId=218 -runtimeId=6845 +runtimeId=6848 minecraft:shulker_box;color=blue blockId=218 -runtimeId=6841 +runtimeId=6844 minecraft:shulker_box;color=brown blockId=218 -runtimeId=6842 +runtimeId=6845 minecraft:shulker_box;color=cyan blockId=218 -runtimeId=6839 +runtimeId=6842 minecraft:shulker_box;color=gray blockId=218 -runtimeId=6837 +runtimeId=6840 minecraft:shulker_box;color=green blockId=218 -runtimeId=6843 +runtimeId=6846 minecraft:shulker_box;color=light_blue blockId=218 -runtimeId=6833 +runtimeId=6836 minecraft:shulker_box;color=lime blockId=218 -runtimeId=6835 +runtimeId=6838 minecraft:shulker_box;color=magenta blockId=218 -runtimeId=6832 +runtimeId=6835 minecraft:shulker_box;color=orange blockId=218 -runtimeId=6831 +runtimeId=6834 minecraft:shulker_box;color=pink blockId=218 -runtimeId=6836 +runtimeId=6839 minecraft:shulker_box;color=purple blockId=218 -runtimeId=6840 +runtimeId=6843 minecraft:shulker_box;color=red blockId=218 -runtimeId=6844 +runtimeId=6847 minecraft:shulker_box;color=silver blockId=218 -runtimeId=6838 +runtimeId=6841 minecraft:shulker_box;color=white blockId=218 -runtimeId=6830 +runtimeId=6833 minecraft:shulker_box;color=yellow blockId=218 -runtimeId=6834 +runtimeId=6837 minecraft:silver_glazed_terracotta;facing_direction=0 blockId=228 -runtimeId=6846 +runtimeId=6849 minecraft:silver_glazed_terracotta;facing_direction=1 blockId=228 -runtimeId=6847 +runtimeId=6850 minecraft:silver_glazed_terracotta;facing_direction=2 blockId=228 -runtimeId=6848 +runtimeId=6851 minecraft:silver_glazed_terracotta;facing_direction=3 blockId=228 -runtimeId=6849 +runtimeId=6852 minecraft:silver_glazed_terracotta;facing_direction=4 blockId=228 -runtimeId=6850 +runtimeId=6853 minecraft:silver_glazed_terracotta;facing_direction=5 blockId=228 -runtimeId=6851 - -minecraft:skull;facing_direction=0;no_drop_bit=0 -blockId=144 -runtimeId=6852 - -minecraft:skull;facing_direction=0;no_drop_bit=1 -blockId=144 -runtimeId=6858 - -minecraft:skull;facing_direction=1;no_drop_bit=0 -blockId=144 -runtimeId=6853 - -minecraft:skull;facing_direction=1;no_drop_bit=1 -blockId=144 -runtimeId=6859 - -minecraft:skull;facing_direction=2;no_drop_bit=0 -blockId=144 runtimeId=6854 -minecraft:skull;facing_direction=2;no_drop_bit=1 -blockId=144 -runtimeId=6860 - -minecraft:skull;facing_direction=3;no_drop_bit=0 +minecraft:skull;facing_direction=0 blockId=144 runtimeId=6855 -minecraft:skull;facing_direction=3;no_drop_bit=1 +minecraft:skull;facing_direction=1 blockId=144 -runtimeId=6861 +runtimeId=6856 -minecraft:skull;facing_direction=4;no_drop_bit=0 +minecraft:skull;facing_direction=2 blockId=144 -runtimeId=6856 +runtimeId=6857 -minecraft:skull;facing_direction=4;no_drop_bit=1 +minecraft:skull;facing_direction=3 blockId=144 -runtimeId=6862 +runtimeId=6858 -minecraft:skull;facing_direction=5;no_drop_bit=0 +minecraft:skull;facing_direction=4 blockId=144 -runtimeId=6857 +runtimeId=6859 -minecraft:skull;facing_direction=5;no_drop_bit=1 +minecraft:skull;facing_direction=5 blockId=144 -runtimeId=6863 +runtimeId=6860 minecraft:slime blockId=165 -runtimeId=6864 +runtimeId=6861 minecraft:small_amethyst_bud;facing_direction=0 blockId=587 -runtimeId=6865 +runtimeId=6862 minecraft:small_amethyst_bud;facing_direction=1 blockId=587 -runtimeId=6866 +runtimeId=6863 minecraft:small_amethyst_bud;facing_direction=2 blockId=587 -runtimeId=6867 +runtimeId=6864 minecraft:small_amethyst_bud;facing_direction=3 blockId=587 -runtimeId=6868 +runtimeId=6865 minecraft:small_amethyst_bud;facing_direction=4 blockId=587 -runtimeId=6869 +runtimeId=6866 minecraft:small_amethyst_bud;facing_direction=5 blockId=587 -runtimeId=6870 +runtimeId=6867 minecraft:small_dripleaf_block;upper_block_bit=0;direction=0 blockId=591 -runtimeId=6871 +runtimeId=6868 minecraft:small_dripleaf_block;upper_block_bit=0;direction=1 blockId=591 -runtimeId=6873 +runtimeId=6870 minecraft:small_dripleaf_block;upper_block_bit=0;direction=2 blockId=591 -runtimeId=6875 +runtimeId=6872 minecraft:small_dripleaf_block;upper_block_bit=0;direction=3 blockId=591 -runtimeId=6877 +runtimeId=6874 minecraft:small_dripleaf_block;upper_block_bit=1;direction=0 blockId=591 -runtimeId=6872 +runtimeId=6869 minecraft:small_dripleaf_block;upper_block_bit=1;direction=1 blockId=591 -runtimeId=6874 +runtimeId=6871 minecraft:small_dripleaf_block;upper_block_bit=1;direction=2 blockId=591 -runtimeId=6876 +runtimeId=6873 minecraft:small_dripleaf_block;upper_block_bit=1;direction=3 blockId=591 -runtimeId=6878 +runtimeId=6875 minecraft:smithing_table blockId=457 -runtimeId=6879 +runtimeId=6876 minecraft:smoker;facing_direction=0 blockId=453 -runtimeId=6880 +runtimeId=6877 minecraft:smoker;facing_direction=1 blockId=453 -runtimeId=6881 +runtimeId=6878 minecraft:smoker;facing_direction=2 blockId=453 -runtimeId=6882 +runtimeId=6879 minecraft:smoker;facing_direction=3 blockId=453 -runtimeId=6883 +runtimeId=6880 minecraft:smoker;facing_direction=4 blockId=453 -runtimeId=6884 +runtimeId=6881 minecraft:smoker;facing_direction=5 blockId=453 -runtimeId=6885 +runtimeId=6882 minecraft:smooth_basalt blockId=632 -runtimeId=6886 +runtimeId=6883 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=0 blockId=440 -runtimeId=6887 +runtimeId=6884 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=1 blockId=440 -runtimeId=6888 +runtimeId=6885 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=2 blockId=440 -runtimeId=6889 +runtimeId=6886 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=3 blockId=440 -runtimeId=6890 +runtimeId=6887 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=0 blockId=440 -runtimeId=6891 +runtimeId=6888 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=1 blockId=440 -runtimeId=6892 +runtimeId=6889 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=2 blockId=440 -runtimeId=6893 +runtimeId=6890 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=3 blockId=440 -runtimeId=6894 +runtimeId=6891 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=431 -runtimeId=6895 +runtimeId=6892 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=431 -runtimeId=6896 +runtimeId=6893 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=431 -runtimeId=6897 +runtimeId=6894 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=431 -runtimeId=6898 +runtimeId=6895 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=431 -runtimeId=6899 +runtimeId=6896 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=431 -runtimeId=6900 +runtimeId=6897 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=431 -runtimeId=6901 +runtimeId=6898 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=431 -runtimeId=6902 +runtimeId=6899 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=432 -runtimeId=6903 +runtimeId=6900 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=432 -runtimeId=6904 +runtimeId=6901 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=432 -runtimeId=6905 +runtimeId=6902 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=432 -runtimeId=6906 +runtimeId=6903 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=432 -runtimeId=6907 +runtimeId=6904 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=432 -runtimeId=6908 +runtimeId=6905 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=432 -runtimeId=6909 +runtimeId=6906 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=432 -runtimeId=6910 +runtimeId=6907 minecraft:smooth_stone blockId=438 -runtimeId=6911 +runtimeId=6908 minecraft:snow blockId=80 -runtimeId=6912 +runtimeId=6909 minecraft:snow_layer;covered_bit=0;height=0 blockId=78 -runtimeId=6913 +runtimeId=6910 minecraft:snow_layer;covered_bit=0;height=1 blockId=78 -runtimeId=6914 +runtimeId=6911 minecraft:snow_layer;covered_bit=0;height=2 blockId=78 -runtimeId=6915 +runtimeId=6912 minecraft:snow_layer;covered_bit=0;height=3 blockId=78 -runtimeId=6916 +runtimeId=6913 minecraft:snow_layer;covered_bit=0;height=4 blockId=78 -runtimeId=6917 +runtimeId=6914 minecraft:snow_layer;covered_bit=0;height=5 blockId=78 -runtimeId=6918 +runtimeId=6915 minecraft:snow_layer;covered_bit=0;height=6 blockId=78 -runtimeId=6919 +runtimeId=6916 minecraft:snow_layer;covered_bit=0;height=7 blockId=78 -runtimeId=6920 +runtimeId=6917 minecraft:snow_layer;covered_bit=1;height=0 blockId=78 -runtimeId=6921 +runtimeId=6918 minecraft:snow_layer;covered_bit=1;height=1 blockId=78 -runtimeId=6922 +runtimeId=6919 minecraft:snow_layer;covered_bit=1;height=2 blockId=78 -runtimeId=6923 +runtimeId=6920 minecraft:snow_layer;covered_bit=1;height=3 blockId=78 -runtimeId=6924 +runtimeId=6921 minecraft:snow_layer;covered_bit=1;height=4 blockId=78 -runtimeId=6925 +runtimeId=6922 minecraft:snow_layer;covered_bit=1;height=5 blockId=78 -runtimeId=6926 +runtimeId=6923 minecraft:snow_layer;covered_bit=1;height=6 blockId=78 -runtimeId=6927 +runtimeId=6924 minecraft:snow_layer;covered_bit=1;height=7 blockId=78 -runtimeId=6928 +runtimeId=6925 minecraft:soul_campfire;extinguished=0;direction=0 blockId=545 -runtimeId=6929 +runtimeId=6926 minecraft:soul_campfire;extinguished=0;direction=1 blockId=545 -runtimeId=6930 +runtimeId=6927 minecraft:soul_campfire;extinguished=0;direction=2 blockId=545 -runtimeId=6931 +runtimeId=6928 minecraft:soul_campfire;extinguished=0;direction=3 blockId=545 -runtimeId=6932 +runtimeId=6929 minecraft:soul_campfire;extinguished=1;direction=0 blockId=545 -runtimeId=6933 +runtimeId=6930 minecraft:soul_campfire;extinguished=1;direction=1 blockId=545 -runtimeId=6934 +runtimeId=6931 minecraft:soul_campfire;extinguished=1;direction=2 blockId=545 -runtimeId=6935 +runtimeId=6932 minecraft:soul_campfire;extinguished=1;direction=3 blockId=545 -runtimeId=6936 +runtimeId=6933 minecraft:soul_fire;age=0 blockId=492 -runtimeId=6937 +runtimeId=6934 minecraft:soul_fire;age=1 blockId=492 -runtimeId=6938 +runtimeId=6935 minecraft:soul_fire;age=2 blockId=492 -runtimeId=6939 +runtimeId=6936 minecraft:soul_fire;age=3 blockId=492 -runtimeId=6940 +runtimeId=6937 minecraft:soul_fire;age=4 blockId=492 -runtimeId=6941 +runtimeId=6938 minecraft:soul_fire;age=5 blockId=492 -runtimeId=6942 +runtimeId=6939 minecraft:soul_fire;age=6 blockId=492 -runtimeId=6943 +runtimeId=6940 minecraft:soul_fire;age=7 blockId=492 -runtimeId=6944 +runtimeId=6941 minecraft:soul_fire;age=8 blockId=492 -runtimeId=6945 +runtimeId=6942 minecraft:soul_fire;age=9 blockId=492 -runtimeId=6946 +runtimeId=6943 minecraft:soul_fire;age=10 blockId=492 -runtimeId=6947 +runtimeId=6944 minecraft:soul_fire;age=11 blockId=492 -runtimeId=6948 +runtimeId=6945 minecraft:soul_fire;age=12 blockId=492 -runtimeId=6949 +runtimeId=6946 minecraft:soul_fire;age=13 blockId=492 -runtimeId=6950 +runtimeId=6947 minecraft:soul_fire;age=14 blockId=492 -runtimeId=6951 +runtimeId=6948 minecraft:soul_fire;age=15 blockId=492 -runtimeId=6952 +runtimeId=6949 minecraft:soul_lantern;hanging=0 blockId=524 -runtimeId=6953 +runtimeId=6950 minecraft:soul_lantern;hanging=1 blockId=524 -runtimeId=6954 +runtimeId=6951 minecraft:soul_sand blockId=88 -runtimeId=6955 +runtimeId=6952 minecraft:soul_soil blockId=491 -runtimeId=6956 +runtimeId=6953 minecraft:soul_torch;torch_facing_direction=east blockId=523 -runtimeId=6959 +runtimeId=6956 minecraft:soul_torch;torch_facing_direction=north blockId=523 -runtimeId=6960 +runtimeId=6957 minecraft:soul_torch;torch_facing_direction=south blockId=523 -runtimeId=6961 +runtimeId=6958 minecraft:soul_torch;torch_facing_direction=top blockId=523 -runtimeId=6962 +runtimeId=6959 minecraft:soul_torch;torch_facing_direction=unknown blockId=523 -runtimeId=6957 +runtimeId=6954 minecraft:soul_torch;torch_facing_direction=west blockId=523 -runtimeId=6958 +runtimeId=6955 minecraft:sponge;sponge_type=dry blockId=19 -runtimeId=6963 +runtimeId=6960 minecraft:sponge;sponge_type=wet blockId=19 -runtimeId=6964 +runtimeId=6961 minecraft:spore_blossom blockId=576 -runtimeId=6965 +runtimeId=6962 minecraft:spruce_button;button_pressed_bit=0;facing_direction=0 blockId=399 -runtimeId=6966 +runtimeId=6963 minecraft:spruce_button;button_pressed_bit=0;facing_direction=1 blockId=399 -runtimeId=6967 +runtimeId=6964 minecraft:spruce_button;button_pressed_bit=0;facing_direction=2 blockId=399 -runtimeId=6968 +runtimeId=6965 minecraft:spruce_button;button_pressed_bit=0;facing_direction=3 blockId=399 -runtimeId=6969 +runtimeId=6966 minecraft:spruce_button;button_pressed_bit=0;facing_direction=4 blockId=399 -runtimeId=6970 +runtimeId=6967 minecraft:spruce_button;button_pressed_bit=0;facing_direction=5 blockId=399 -runtimeId=6971 +runtimeId=6968 minecraft:spruce_button;button_pressed_bit=1;facing_direction=0 blockId=399 -runtimeId=6972 +runtimeId=6969 minecraft:spruce_button;button_pressed_bit=1;facing_direction=1 blockId=399 -runtimeId=6973 +runtimeId=6970 minecraft:spruce_button;button_pressed_bit=1;facing_direction=2 blockId=399 -runtimeId=6974 +runtimeId=6971 minecraft:spruce_button;button_pressed_bit=1;facing_direction=3 blockId=399 -runtimeId=6975 +runtimeId=6972 minecraft:spruce_button;button_pressed_bit=1;facing_direction=4 blockId=399 -runtimeId=6976 +runtimeId=6973 minecraft:spruce_button;button_pressed_bit=1;facing_direction=5 blockId=399 -runtimeId=6977 +runtimeId=6974 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6978 +runtimeId=6975 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6979 +runtimeId=6976 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6980 +runtimeId=6977 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6981 +runtimeId=6978 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=6994 +runtimeId=6991 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=6995 +runtimeId=6992 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=6996 +runtimeId=6993 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=6997 +runtimeId=6994 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6986 +runtimeId=6983 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6987 +runtimeId=6984 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6988 +runtimeId=6985 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6989 +runtimeId=6986 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=7002 +runtimeId=6999 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=7003 +runtimeId=7000 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=7004 +runtimeId=7001 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=7005 +runtimeId=7002 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6982 +runtimeId=6979 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6983 +runtimeId=6980 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6984 +runtimeId=6981 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6985 +runtimeId=6982 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=6998 +runtimeId=6995 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=6999 +runtimeId=6996 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=7000 +runtimeId=6997 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=7001 +runtimeId=6998 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6990 +runtimeId=6987 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6991 +runtimeId=6988 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6992 +runtimeId=6989 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6993 +runtimeId=6990 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=7006 +runtimeId=7003 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=7007 +runtimeId=7004 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=7008 +runtimeId=7005 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=7009 +runtimeId=7006 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=183 -runtimeId=7010 +runtimeId=7007 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=183 -runtimeId=7011 +runtimeId=7008 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=183 -runtimeId=7012 +runtimeId=7009 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=183 -runtimeId=7013 +runtimeId=7010 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=183 -runtimeId=7014 +runtimeId=7011 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=183 -runtimeId=7015 +runtimeId=7012 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=183 -runtimeId=7016 +runtimeId=7013 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=183 -runtimeId=7017 +runtimeId=7014 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=183 -runtimeId=7018 +runtimeId=7015 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=183 -runtimeId=7019 +runtimeId=7016 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=183 -runtimeId=7020 +runtimeId=7017 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=183 -runtimeId=7021 +runtimeId=7018 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=183 -runtimeId=7022 +runtimeId=7019 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=183 -runtimeId=7023 +runtimeId=7020 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=183 -runtimeId=7024 +runtimeId=7021 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=183 -runtimeId=7025 +runtimeId=7022 minecraft:spruce_pressure_plate;redstone_signal=0 blockId=409 -runtimeId=7026 +runtimeId=7023 minecraft:spruce_pressure_plate;redstone_signal=1 blockId=409 -runtimeId=7027 +runtimeId=7024 minecraft:spruce_pressure_plate;redstone_signal=2 blockId=409 -runtimeId=7028 +runtimeId=7025 minecraft:spruce_pressure_plate;redstone_signal=3 blockId=409 -runtimeId=7029 +runtimeId=7026 minecraft:spruce_pressure_plate;redstone_signal=4 blockId=409 -runtimeId=7030 +runtimeId=7027 minecraft:spruce_pressure_plate;redstone_signal=5 blockId=409 -runtimeId=7031 +runtimeId=7028 minecraft:spruce_pressure_plate;redstone_signal=6 blockId=409 -runtimeId=7032 +runtimeId=7029 minecraft:spruce_pressure_plate;redstone_signal=7 blockId=409 -runtimeId=7033 +runtimeId=7030 minecraft:spruce_pressure_plate;redstone_signal=8 blockId=409 -runtimeId=7034 +runtimeId=7031 minecraft:spruce_pressure_plate;redstone_signal=9 blockId=409 -runtimeId=7035 +runtimeId=7032 minecraft:spruce_pressure_plate;redstone_signal=10 blockId=409 -runtimeId=7036 +runtimeId=7033 minecraft:spruce_pressure_plate;redstone_signal=11 blockId=409 -runtimeId=7037 +runtimeId=7034 minecraft:spruce_pressure_plate;redstone_signal=12 blockId=409 -runtimeId=7038 +runtimeId=7035 minecraft:spruce_pressure_plate;redstone_signal=13 blockId=409 -runtimeId=7039 +runtimeId=7036 minecraft:spruce_pressure_plate;redstone_signal=14 blockId=409 -runtimeId=7040 +runtimeId=7037 minecraft:spruce_pressure_plate;redstone_signal=15 blockId=409 -runtimeId=7041 +runtimeId=7038 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=0 blockId=134 -runtimeId=7042 +runtimeId=7039 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=1 blockId=134 -runtimeId=7043 +runtimeId=7040 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=2 blockId=134 -runtimeId=7044 +runtimeId=7041 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=3 blockId=134 -runtimeId=7045 +runtimeId=7042 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=0 blockId=134 -runtimeId=7046 +runtimeId=7043 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=1 blockId=134 -runtimeId=7047 +runtimeId=7044 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=2 blockId=134 -runtimeId=7048 +runtimeId=7045 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=3 blockId=134 -runtimeId=7049 +runtimeId=7046 minecraft:spruce_standing_sign;ground_sign_direction=0 blockId=436 -runtimeId=7050 +runtimeId=7047 minecraft:spruce_standing_sign;ground_sign_direction=1 blockId=436 -runtimeId=7051 +runtimeId=7048 minecraft:spruce_standing_sign;ground_sign_direction=2 blockId=436 -runtimeId=7052 +runtimeId=7049 minecraft:spruce_standing_sign;ground_sign_direction=3 blockId=436 -runtimeId=7053 +runtimeId=7050 minecraft:spruce_standing_sign;ground_sign_direction=4 blockId=436 -runtimeId=7054 +runtimeId=7051 minecraft:spruce_standing_sign;ground_sign_direction=5 blockId=436 -runtimeId=7055 +runtimeId=7052 minecraft:spruce_standing_sign;ground_sign_direction=6 blockId=436 -runtimeId=7056 +runtimeId=7053 minecraft:spruce_standing_sign;ground_sign_direction=7 blockId=436 -runtimeId=7057 +runtimeId=7054 minecraft:spruce_standing_sign;ground_sign_direction=8 blockId=436 -runtimeId=7058 +runtimeId=7055 minecraft:spruce_standing_sign;ground_sign_direction=9 blockId=436 -runtimeId=7059 +runtimeId=7056 minecraft:spruce_standing_sign;ground_sign_direction=10 blockId=436 -runtimeId=7060 +runtimeId=7057 minecraft:spruce_standing_sign;ground_sign_direction=11 blockId=436 -runtimeId=7061 +runtimeId=7058 minecraft:spruce_standing_sign;ground_sign_direction=12 blockId=436 -runtimeId=7062 +runtimeId=7059 minecraft:spruce_standing_sign;ground_sign_direction=13 blockId=436 -runtimeId=7063 +runtimeId=7060 minecraft:spruce_standing_sign;ground_sign_direction=14 blockId=436 -runtimeId=7064 +runtimeId=7061 minecraft:spruce_standing_sign;ground_sign_direction=15 blockId=436 -runtimeId=7065 +runtimeId=7062 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=404 -runtimeId=7066 +runtimeId=7063 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=404 -runtimeId=7067 +runtimeId=7064 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=404 -runtimeId=7068 +runtimeId=7065 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=404 -runtimeId=7069 +runtimeId=7066 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=404 -runtimeId=7070 +runtimeId=7067 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=404 -runtimeId=7071 +runtimeId=7068 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=404 -runtimeId=7072 +runtimeId=7069 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=404 -runtimeId=7073 +runtimeId=7070 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=404 -runtimeId=7074 +runtimeId=7071 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=404 -runtimeId=7075 +runtimeId=7072 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=404 -runtimeId=7076 +runtimeId=7073 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=404 -runtimeId=7077 +runtimeId=7074 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=404 -runtimeId=7078 +runtimeId=7075 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=404 -runtimeId=7079 +runtimeId=7076 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=404 -runtimeId=7080 +runtimeId=7077 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=404 -runtimeId=7081 +runtimeId=7078 minecraft:spruce_wall_sign;facing_direction=0 blockId=437 -runtimeId=7082 +runtimeId=7079 minecraft:spruce_wall_sign;facing_direction=1 blockId=437 -runtimeId=7083 +runtimeId=7080 minecraft:spruce_wall_sign;facing_direction=2 blockId=437 -runtimeId=7084 +runtimeId=7081 minecraft:spruce_wall_sign;facing_direction=3 blockId=437 -runtimeId=7085 +runtimeId=7082 minecraft:spruce_wall_sign;facing_direction=4 blockId=437 -runtimeId=7086 +runtimeId=7083 minecraft:spruce_wall_sign;facing_direction=5 blockId=437 -runtimeId=7087 +runtimeId=7084 minecraft:stained_glass;color=black blockId=241 -runtimeId=7103 +runtimeId=7100 minecraft:stained_glass;color=blue blockId=241 -runtimeId=7099 +runtimeId=7096 minecraft:stained_glass;color=brown blockId=241 -runtimeId=7100 +runtimeId=7097 minecraft:stained_glass;color=cyan blockId=241 -runtimeId=7097 +runtimeId=7094 minecraft:stained_glass;color=gray blockId=241 -runtimeId=7095 +runtimeId=7092 minecraft:stained_glass;color=green blockId=241 -runtimeId=7101 +runtimeId=7098 minecraft:stained_glass;color=light_blue blockId=241 -runtimeId=7091 +runtimeId=7088 minecraft:stained_glass;color=lime blockId=241 -runtimeId=7093 +runtimeId=7090 minecraft:stained_glass;color=magenta blockId=241 -runtimeId=7090 +runtimeId=7087 minecraft:stained_glass;color=orange blockId=241 -runtimeId=7089 +runtimeId=7086 minecraft:stained_glass;color=pink blockId=241 -runtimeId=7094 +runtimeId=7091 minecraft:stained_glass;color=purple blockId=241 -runtimeId=7098 +runtimeId=7095 minecraft:stained_glass;color=red blockId=241 -runtimeId=7102 +runtimeId=7099 minecraft:stained_glass;color=silver blockId=241 -runtimeId=7096 +runtimeId=7093 minecraft:stained_glass;color=white blockId=241 -runtimeId=7088 +runtimeId=7085 minecraft:stained_glass;color=yellow blockId=241 -runtimeId=7092 +runtimeId=7089 minecraft:stained_glass_pane;color=black blockId=160 -runtimeId=7119 +runtimeId=7116 minecraft:stained_glass_pane;color=blue blockId=160 -runtimeId=7115 +runtimeId=7112 minecraft:stained_glass_pane;color=brown blockId=160 -runtimeId=7116 +runtimeId=7113 minecraft:stained_glass_pane;color=cyan blockId=160 -runtimeId=7113 +runtimeId=7110 minecraft:stained_glass_pane;color=gray blockId=160 -runtimeId=7111 +runtimeId=7108 minecraft:stained_glass_pane;color=green blockId=160 -runtimeId=7117 +runtimeId=7114 minecraft:stained_glass_pane;color=light_blue blockId=160 -runtimeId=7107 +runtimeId=7104 minecraft:stained_glass_pane;color=lime blockId=160 -runtimeId=7109 +runtimeId=7106 minecraft:stained_glass_pane;color=magenta blockId=160 -runtimeId=7106 +runtimeId=7103 minecraft:stained_glass_pane;color=orange blockId=160 -runtimeId=7105 +runtimeId=7102 minecraft:stained_glass_pane;color=pink blockId=160 -runtimeId=7110 +runtimeId=7107 minecraft:stained_glass_pane;color=purple blockId=160 -runtimeId=7114 +runtimeId=7111 minecraft:stained_glass_pane;color=red blockId=160 -runtimeId=7118 +runtimeId=7115 minecraft:stained_glass_pane;color=silver blockId=160 -runtimeId=7112 +runtimeId=7109 minecraft:stained_glass_pane;color=white blockId=160 -runtimeId=7104 +runtimeId=7101 minecraft:stained_glass_pane;color=yellow blockId=160 -runtimeId=7108 +runtimeId=7105 minecraft:stained_hardened_clay;color=black blockId=159 -runtimeId=7135 +runtimeId=7132 minecraft:stained_hardened_clay;color=blue blockId=159 -runtimeId=7131 +runtimeId=7128 minecraft:stained_hardened_clay;color=brown blockId=159 -runtimeId=7132 +runtimeId=7129 minecraft:stained_hardened_clay;color=cyan blockId=159 -runtimeId=7129 +runtimeId=7126 minecraft:stained_hardened_clay;color=gray blockId=159 -runtimeId=7127 +runtimeId=7124 minecraft:stained_hardened_clay;color=green blockId=159 -runtimeId=7133 +runtimeId=7130 minecraft:stained_hardened_clay;color=light_blue blockId=159 -runtimeId=7123 +runtimeId=7120 minecraft:stained_hardened_clay;color=lime blockId=159 -runtimeId=7125 +runtimeId=7122 minecraft:stained_hardened_clay;color=magenta blockId=159 -runtimeId=7122 +runtimeId=7119 minecraft:stained_hardened_clay;color=orange blockId=159 -runtimeId=7121 +runtimeId=7118 minecraft:stained_hardened_clay;color=pink blockId=159 -runtimeId=7126 +runtimeId=7123 minecraft:stained_hardened_clay;color=purple blockId=159 -runtimeId=7130 +runtimeId=7127 minecraft:stained_hardened_clay;color=red blockId=159 -runtimeId=7134 +runtimeId=7131 minecraft:stained_hardened_clay;color=silver blockId=159 -runtimeId=7128 +runtimeId=7125 minecraft:stained_hardened_clay;color=white blockId=159 -runtimeId=7120 +runtimeId=7117 minecraft:stained_hardened_clay;color=yellow blockId=159 -runtimeId=7124 +runtimeId=7121 minecraft:standing_banner;ground_sign_direction=0 blockId=176 -runtimeId=7136 +runtimeId=7133 minecraft:standing_banner;ground_sign_direction=1 blockId=176 -runtimeId=7137 +runtimeId=7134 minecraft:standing_banner;ground_sign_direction=2 blockId=176 -runtimeId=7138 +runtimeId=7135 minecraft:standing_banner;ground_sign_direction=3 blockId=176 -runtimeId=7139 +runtimeId=7136 minecraft:standing_banner;ground_sign_direction=4 blockId=176 -runtimeId=7140 +runtimeId=7137 minecraft:standing_banner;ground_sign_direction=5 blockId=176 -runtimeId=7141 +runtimeId=7138 minecraft:standing_banner;ground_sign_direction=6 blockId=176 -runtimeId=7142 +runtimeId=7139 minecraft:standing_banner;ground_sign_direction=7 blockId=176 -runtimeId=7143 +runtimeId=7140 minecraft:standing_banner;ground_sign_direction=8 blockId=176 -runtimeId=7144 +runtimeId=7141 minecraft:standing_banner;ground_sign_direction=9 blockId=176 -runtimeId=7145 +runtimeId=7142 minecraft:standing_banner;ground_sign_direction=10 blockId=176 -runtimeId=7146 +runtimeId=7143 minecraft:standing_banner;ground_sign_direction=11 blockId=176 -runtimeId=7147 +runtimeId=7144 minecraft:standing_banner;ground_sign_direction=12 blockId=176 -runtimeId=7148 +runtimeId=7145 minecraft:standing_banner;ground_sign_direction=13 blockId=176 -runtimeId=7149 +runtimeId=7146 minecraft:standing_banner;ground_sign_direction=14 blockId=176 -runtimeId=7150 +runtimeId=7147 minecraft:standing_banner;ground_sign_direction=15 blockId=176 -runtimeId=7151 +runtimeId=7148 minecraft:standing_sign;ground_sign_direction=0 blockId=63 -runtimeId=7152 +runtimeId=7149 minecraft:standing_sign;ground_sign_direction=1 blockId=63 -runtimeId=7153 +runtimeId=7150 minecraft:standing_sign;ground_sign_direction=2 blockId=63 -runtimeId=7154 +runtimeId=7151 minecraft:standing_sign;ground_sign_direction=3 blockId=63 -runtimeId=7155 +runtimeId=7152 minecraft:standing_sign;ground_sign_direction=4 blockId=63 -runtimeId=7156 +runtimeId=7153 minecraft:standing_sign;ground_sign_direction=5 blockId=63 -runtimeId=7157 +runtimeId=7154 minecraft:standing_sign;ground_sign_direction=6 blockId=63 -runtimeId=7158 +runtimeId=7155 minecraft:standing_sign;ground_sign_direction=7 blockId=63 -runtimeId=7159 +runtimeId=7156 minecraft:standing_sign;ground_sign_direction=8 blockId=63 -runtimeId=7160 +runtimeId=7157 minecraft:standing_sign;ground_sign_direction=9 blockId=63 -runtimeId=7161 +runtimeId=7158 minecraft:standing_sign;ground_sign_direction=10 blockId=63 -runtimeId=7162 +runtimeId=7159 minecraft:standing_sign;ground_sign_direction=11 blockId=63 -runtimeId=7163 +runtimeId=7160 minecraft:standing_sign;ground_sign_direction=12 blockId=63 -runtimeId=7164 +runtimeId=7161 minecraft:standing_sign;ground_sign_direction=13 blockId=63 -runtimeId=7165 +runtimeId=7162 minecraft:standing_sign;ground_sign_direction=14 blockId=63 -runtimeId=7166 +runtimeId=7163 minecraft:standing_sign;ground_sign_direction=15 blockId=63 -runtimeId=7167 +runtimeId=7164 minecraft:stickyPistonArmCollision;facing_direction=0 blockId=472 -runtimeId=7174 +runtimeId=7171 minecraft:stickyPistonArmCollision;facing_direction=1 blockId=472 -runtimeId=7175 +runtimeId=7172 minecraft:stickyPistonArmCollision;facing_direction=2 blockId=472 -runtimeId=7176 +runtimeId=7173 minecraft:stickyPistonArmCollision;facing_direction=3 blockId=472 -runtimeId=7177 +runtimeId=7174 minecraft:stickyPistonArmCollision;facing_direction=4 blockId=472 -runtimeId=7178 +runtimeId=7175 minecraft:stickyPistonArmCollision;facing_direction=5 blockId=472 -runtimeId=7179 +runtimeId=7176 minecraft:sticky_piston;facing_direction=0 blockId=29 -runtimeId=7168 +runtimeId=7165 minecraft:sticky_piston;facing_direction=1 blockId=29 -runtimeId=7169 +runtimeId=7166 minecraft:sticky_piston;facing_direction=2 blockId=29 -runtimeId=7170 +runtimeId=7167 minecraft:sticky_piston;facing_direction=3 blockId=29 -runtimeId=7171 +runtimeId=7168 minecraft:sticky_piston;facing_direction=4 blockId=29 -runtimeId=7172 +runtimeId=7169 minecraft:sticky_piston;facing_direction=5 blockId=29 -runtimeId=7173 +runtimeId=7170 minecraft:stone;stone_type=andesite blockId=1 -runtimeId=7185 +runtimeId=7182 minecraft:stone;stone_type=andesite_smooth blockId=1 -runtimeId=7186 +runtimeId=7183 minecraft:stone;stone_type=diorite blockId=1 -runtimeId=7183 +runtimeId=7180 minecraft:stone;stone_type=diorite_smooth blockId=1 -runtimeId=7184 +runtimeId=7181 minecraft:stone;stone_type=granite blockId=1 -runtimeId=7181 +runtimeId=7178 minecraft:stone;stone_type=granite_smooth blockId=1 -runtimeId=7182 +runtimeId=7179 minecraft:stone;stone_type=stone blockId=1 -runtimeId=7180 +runtimeId=7177 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=109 -runtimeId=7187 +runtimeId=7184 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=109 -runtimeId=7188 +runtimeId=7185 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=109 -runtimeId=7189 +runtimeId=7186 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=109 -runtimeId=7190 +runtimeId=7187 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=109 -runtimeId=7191 +runtimeId=7188 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=109 -runtimeId=7192 +runtimeId=7189 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=109 -runtimeId=7193 +runtimeId=7190 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=109 -runtimeId=7194 +runtimeId=7191 minecraft:stone_button;button_pressed_bit=0;facing_direction=0 blockId=77 -runtimeId=7195 +runtimeId=7192 minecraft:stone_button;button_pressed_bit=0;facing_direction=1 blockId=77 -runtimeId=7196 +runtimeId=7193 minecraft:stone_button;button_pressed_bit=0;facing_direction=2 blockId=77 -runtimeId=7197 +runtimeId=7194 minecraft:stone_button;button_pressed_bit=0;facing_direction=3 blockId=77 -runtimeId=7198 +runtimeId=7195 minecraft:stone_button;button_pressed_bit=0;facing_direction=4 blockId=77 -runtimeId=7199 +runtimeId=7196 minecraft:stone_button;button_pressed_bit=0;facing_direction=5 blockId=77 -runtimeId=7200 +runtimeId=7197 minecraft:stone_button;button_pressed_bit=1;facing_direction=0 blockId=77 -runtimeId=7201 +runtimeId=7198 minecraft:stone_button;button_pressed_bit=1;facing_direction=1 blockId=77 -runtimeId=7202 +runtimeId=7199 minecraft:stone_button;button_pressed_bit=1;facing_direction=2 blockId=77 -runtimeId=7203 +runtimeId=7200 minecraft:stone_button;button_pressed_bit=1;facing_direction=3 blockId=77 -runtimeId=7204 +runtimeId=7201 minecraft:stone_button;button_pressed_bit=1;facing_direction=4 blockId=77 -runtimeId=7205 +runtimeId=7202 minecraft:stone_button;button_pressed_bit=1;facing_direction=5 blockId=77 -runtimeId=7206 +runtimeId=7203 minecraft:stone_pressure_plate;redstone_signal=0 blockId=70 -runtimeId=7207 +runtimeId=7204 minecraft:stone_pressure_plate;redstone_signal=1 blockId=70 -runtimeId=7208 +runtimeId=7205 minecraft:stone_pressure_plate;redstone_signal=2 blockId=70 -runtimeId=7209 +runtimeId=7206 minecraft:stone_pressure_plate;redstone_signal=3 blockId=70 -runtimeId=7210 +runtimeId=7207 minecraft:stone_pressure_plate;redstone_signal=4 blockId=70 -runtimeId=7211 +runtimeId=7208 minecraft:stone_pressure_plate;redstone_signal=5 blockId=70 -runtimeId=7212 +runtimeId=7209 minecraft:stone_pressure_plate;redstone_signal=6 blockId=70 -runtimeId=7213 +runtimeId=7210 minecraft:stone_pressure_plate;redstone_signal=7 blockId=70 -runtimeId=7214 +runtimeId=7211 minecraft:stone_pressure_plate;redstone_signal=8 blockId=70 -runtimeId=7215 +runtimeId=7212 minecraft:stone_pressure_plate;redstone_signal=9 blockId=70 -runtimeId=7216 +runtimeId=7213 minecraft:stone_pressure_plate;redstone_signal=10 blockId=70 -runtimeId=7217 +runtimeId=7214 minecraft:stone_pressure_plate;redstone_signal=11 blockId=70 -runtimeId=7218 +runtimeId=7215 minecraft:stone_pressure_plate;redstone_signal=12 blockId=70 -runtimeId=7219 +runtimeId=7216 minecraft:stone_pressure_plate;redstone_signal=13 blockId=70 -runtimeId=7220 +runtimeId=7217 minecraft:stone_pressure_plate;redstone_signal=14 blockId=70 -runtimeId=7221 +runtimeId=7218 minecraft:stone_pressure_plate;redstone_signal=15 blockId=70 -runtimeId=7222 +runtimeId=7219 minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=0 blockId=44 -runtimeId=7227 +runtimeId=7224 minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=1 blockId=44 -runtimeId=7235 +runtimeId=7232 minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=0 blockId=44 -runtimeId=7226 +runtimeId=7223 minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=1 blockId=44 -runtimeId=7234 +runtimeId=7231 minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0 blockId=44 -runtimeId=7230 +runtimeId=7227 minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=1 blockId=44 -runtimeId=7238 +runtimeId=7235 minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0 blockId=44 -runtimeId=7229 +runtimeId=7226 minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=1 blockId=44 -runtimeId=7237 +runtimeId=7234 minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0 blockId=44 -runtimeId=7224 +runtimeId=7221 minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=1 blockId=44 -runtimeId=7232 +runtimeId=7229 minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0 blockId=44 -runtimeId=7223 +runtimeId=7220 minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=1 blockId=44 -runtimeId=7231 +runtimeId=7228 minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0 blockId=44 -runtimeId=7228 +runtimeId=7225 minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=1 blockId=44 -runtimeId=7236 +runtimeId=7233 minecraft:stone_slab;stone_slab_type=wood;top_slot_bit=0 blockId=44 -runtimeId=7225 +runtimeId=7222 minecraft:stone_slab;stone_slab_type=wood;top_slot_bit=1 blockId=44 -runtimeId=7233 +runtimeId=7230 minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0 blockId=182 -runtimeId=7244 +runtimeId=7241 minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=1 blockId=182 -runtimeId=7252 +runtimeId=7249 minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0 blockId=182 -runtimeId=7243 +runtimeId=7240 minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=1 blockId=182 -runtimeId=7251 +runtimeId=7248 minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0 blockId=182 -runtimeId=7242 +runtimeId=7239 minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=1 blockId=182 -runtimeId=7250 +runtimeId=7247 minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0 blockId=182 -runtimeId=7241 +runtimeId=7238 minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=1 blockId=182 -runtimeId=7249 +runtimeId=7246 minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0 blockId=182 -runtimeId=7240 +runtimeId=7237 minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=1 blockId=182 -runtimeId=7248 +runtimeId=7245 minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0 blockId=182 -runtimeId=7246 +runtimeId=7243 minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=1 blockId=182 -runtimeId=7254 +runtimeId=7251 minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0 blockId=182 -runtimeId=7239 +runtimeId=7236 minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=1 blockId=182 -runtimeId=7247 +runtimeId=7244 minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0 blockId=182 -runtimeId=7245 +runtimeId=7242 minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=1 blockId=182 -runtimeId=7253 +runtimeId=7250 minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0 blockId=417 -runtimeId=7258 +runtimeId=7255 minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=1 blockId=417 -runtimeId=7266 +runtimeId=7263 minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0 blockId=417 -runtimeId=7259 +runtimeId=7256 minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=1 blockId=417 -runtimeId=7267 +runtimeId=7264 minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0 blockId=417 -runtimeId=7255 +runtimeId=7252 minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=1 blockId=417 -runtimeId=7263 +runtimeId=7260 minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=0 blockId=417 -runtimeId=7261 +runtimeId=7258 minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=1 blockId=417 -runtimeId=7269 +runtimeId=7266 minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0 blockId=417 -runtimeId=7257 +runtimeId=7254 minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=1 blockId=417 -runtimeId=7265 +runtimeId=7262 minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0 blockId=417 -runtimeId=7260 +runtimeId=7257 minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=1 blockId=417 -runtimeId=7268 +runtimeId=7265 minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0 blockId=417 -runtimeId=7262 +runtimeId=7259 minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=1 blockId=417 -runtimeId=7270 +runtimeId=7267 minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0 blockId=417 -runtimeId=7256 +runtimeId=7253 minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=1 blockId=417 -runtimeId=7264 +runtimeId=7261 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_red_sandstone blockId=421 -runtimeId=7275 +runtimeId=7272 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_sandstone blockId=421 -runtimeId=7274 +runtimeId=7271 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=mossy_stone_brick blockId=421 -runtimeId=7271 +runtimeId=7268 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=smooth_quartz blockId=421 -runtimeId=7272 +runtimeId=7269 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=stone blockId=421 -runtimeId=7273 +runtimeId=7270 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_red_sandstone blockId=421 -runtimeId=7280 +runtimeId=7277 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_sandstone blockId=421 -runtimeId=7279 +runtimeId=7276 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=mossy_stone_brick blockId=421 -runtimeId=7276 +runtimeId=7273 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=smooth_quartz blockId=421 -runtimeId=7277 +runtimeId=7274 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=stone blockId=421 -runtimeId=7278 +runtimeId=7275 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=67 -runtimeId=7281 +runtimeId=7278 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=67 -runtimeId=7282 +runtimeId=7279 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=67 -runtimeId=7283 +runtimeId=7280 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=67 -runtimeId=7284 +runtimeId=7281 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=67 -runtimeId=7285 +runtimeId=7282 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=67 -runtimeId=7286 +runtimeId=7283 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=67 -runtimeId=7287 +runtimeId=7284 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=67 -runtimeId=7288 +runtimeId=7285 minecraft:stonebrick;stone_brick_type=chiseled blockId=98 -runtimeId=7292 +runtimeId=7289 minecraft:stonebrick;stone_brick_type=cracked blockId=98 -runtimeId=7291 +runtimeId=7288 minecraft:stonebrick;stone_brick_type=default blockId=98 -runtimeId=7289 +runtimeId=7286 minecraft:stonebrick;stone_brick_type=mossy blockId=98 -runtimeId=7290 +runtimeId=7287 minecraft:stonebrick;stone_brick_type=smooth blockId=98 -runtimeId=7293 +runtimeId=7290 minecraft:stonecutter blockId=245 -runtimeId=7294 +runtimeId=7291 minecraft:stonecutter_block;facing_direction=0 blockId=452 -runtimeId=7295 +runtimeId=7292 minecraft:stonecutter_block;facing_direction=1 blockId=452 -runtimeId=7296 +runtimeId=7293 minecraft:stonecutter_block;facing_direction=2 blockId=452 -runtimeId=7297 +runtimeId=7294 minecraft:stonecutter_block;facing_direction=3 blockId=452 -runtimeId=7298 +runtimeId=7295 minecraft:stonecutter_block;facing_direction=4 blockId=452 -runtimeId=7299 +runtimeId=7296 minecraft:stonecutter_block;facing_direction=5 blockId=452 -runtimeId=7300 +runtimeId=7297 minecraft:stripped_acacia_log;pillar_axis=x blockId=263 -runtimeId=7302 +runtimeId=7299 minecraft:stripped_acacia_log;pillar_axis=y blockId=263 -runtimeId=7301 +runtimeId=7298 minecraft:stripped_acacia_log;pillar_axis=z blockId=263 -runtimeId=7303 +runtimeId=7300 minecraft:stripped_birch_log;pillar_axis=x blockId=261 -runtimeId=7305 +runtimeId=7302 minecraft:stripped_birch_log;pillar_axis=y blockId=261 -runtimeId=7304 +runtimeId=7301 minecraft:stripped_birch_log;pillar_axis=z blockId=261 -runtimeId=7306 +runtimeId=7303 minecraft:stripped_crimson_hyphae;pillar_axis=x blockId=555 -runtimeId=7308 +runtimeId=7305 minecraft:stripped_crimson_hyphae;pillar_axis=y blockId=555 -runtimeId=7307 +runtimeId=7304 minecraft:stripped_crimson_hyphae;pillar_axis=z blockId=555 -runtimeId=7309 +runtimeId=7306 minecraft:stripped_crimson_stem;pillar_axis=x blockId=495 -runtimeId=7311 +runtimeId=7308 minecraft:stripped_crimson_stem;pillar_axis=y blockId=495 -runtimeId=7310 +runtimeId=7307 minecraft:stripped_crimson_stem;pillar_axis=z blockId=495 -runtimeId=7312 +runtimeId=7309 minecraft:stripped_dark_oak_log;pillar_axis=x blockId=264 -runtimeId=7314 +runtimeId=7311 minecraft:stripped_dark_oak_log;pillar_axis=y blockId=264 -runtimeId=7313 +runtimeId=7310 minecraft:stripped_dark_oak_log;pillar_axis=z blockId=264 -runtimeId=7315 +runtimeId=7312 minecraft:stripped_jungle_log;pillar_axis=x blockId=262 -runtimeId=7317 +runtimeId=7314 minecraft:stripped_jungle_log;pillar_axis=y blockId=262 -runtimeId=7316 +runtimeId=7313 minecraft:stripped_jungle_log;pillar_axis=z blockId=262 -runtimeId=7318 +runtimeId=7315 minecraft:stripped_oak_log;pillar_axis=x blockId=265 -runtimeId=7320 +runtimeId=7317 minecraft:stripped_oak_log;pillar_axis=y blockId=265 -runtimeId=7319 +runtimeId=7316 minecraft:stripped_oak_log;pillar_axis=z blockId=265 -runtimeId=7321 +runtimeId=7318 minecraft:stripped_spruce_log;pillar_axis=x blockId=260 -runtimeId=7323 +runtimeId=7320 minecraft:stripped_spruce_log;pillar_axis=y blockId=260 -runtimeId=7322 +runtimeId=7319 minecraft:stripped_spruce_log;pillar_axis=z blockId=260 -runtimeId=7324 +runtimeId=7321 minecraft:stripped_warped_hyphae;pillar_axis=x blockId=556 -runtimeId=7326 +runtimeId=7323 minecraft:stripped_warped_hyphae;pillar_axis=y blockId=556 -runtimeId=7325 +runtimeId=7322 minecraft:stripped_warped_hyphae;pillar_axis=z blockId=556 -runtimeId=7327 +runtimeId=7324 minecraft:stripped_warped_stem;pillar_axis=x blockId=496 -runtimeId=7329 +runtimeId=7326 minecraft:stripped_warped_stem;pillar_axis=y blockId=496 -runtimeId=7328 +runtimeId=7325 minecraft:stripped_warped_stem;pillar_axis=z blockId=496 -runtimeId=7330 +runtimeId=7327 minecraft:structure_block;structure_block_type=corner blockId=252 -runtimeId=7334 +runtimeId=7331 minecraft:structure_block;structure_block_type=data blockId=252 -runtimeId=7331 +runtimeId=7328 minecraft:structure_block;structure_block_type=export blockId=252 -runtimeId=7336 +runtimeId=7333 minecraft:structure_block;structure_block_type=invalid blockId=252 -runtimeId=7335 +runtimeId=7332 minecraft:structure_block;structure_block_type=load blockId=252 -runtimeId=7333 +runtimeId=7330 minecraft:structure_block;structure_block_type=save blockId=252 -runtimeId=7332 +runtimeId=7329 minecraft:structure_void;structure_void_type=air blockId=217 -runtimeId=7338 +runtimeId=7335 minecraft:structure_void;structure_void_type=void blockId=217 -runtimeId=7337 +runtimeId=7334 minecraft:sweet_berry_bush;growth=0 blockId=462 -runtimeId=7339 +runtimeId=7336 minecraft:sweet_berry_bush;growth=1 blockId=462 -runtimeId=7340 +runtimeId=7337 minecraft:sweet_berry_bush;growth=2 blockId=462 -runtimeId=7341 +runtimeId=7338 minecraft:sweet_berry_bush;growth=3 blockId=462 -runtimeId=7342 +runtimeId=7339 minecraft:sweet_berry_bush;growth=4 blockId=462 -runtimeId=7343 +runtimeId=7340 minecraft:sweet_berry_bush;growth=5 blockId=462 -runtimeId=7344 +runtimeId=7341 minecraft:sweet_berry_bush;growth=6 blockId=462 -runtimeId=7345 +runtimeId=7342 minecraft:sweet_berry_bush;growth=7 blockId=462 -runtimeId=7346 +runtimeId=7343 minecraft:tallgrass;tall_grass_type=default blockId=31 -runtimeId=7347 +runtimeId=7344 minecraft:tallgrass;tall_grass_type=fern blockId=31 -runtimeId=7349 +runtimeId=7346 minecraft:tallgrass;tall_grass_type=snow blockId=31 -runtimeId=7350 +runtimeId=7347 minecraft:tallgrass;tall_grass_type=tall blockId=31 -runtimeId=7348 +runtimeId=7345 minecraft:target blockId=494 -runtimeId=7351 +runtimeId=7348 minecraft:tinted_glass blockId=589 -runtimeId=7352 +runtimeId=7349 minecraft:tnt;explode_bit=0;allow_underwater_bit=0 blockId=46 -runtimeId=7353 +runtimeId=7350 minecraft:tnt;explode_bit=0;allow_underwater_bit=1 blockId=46 -runtimeId=7355 +runtimeId=7352 minecraft:tnt;explode_bit=1;allow_underwater_bit=0 blockId=46 -runtimeId=7354 +runtimeId=7351 minecraft:tnt;explode_bit=1;allow_underwater_bit=1 blockId=46 -runtimeId=7356 +runtimeId=7353 minecraft:torch;torch_facing_direction=east blockId=50 -runtimeId=7359 +runtimeId=7356 minecraft:torch;torch_facing_direction=north blockId=50 -runtimeId=7360 +runtimeId=7357 minecraft:torch;torch_facing_direction=south blockId=50 -runtimeId=7361 +runtimeId=7358 minecraft:torch;torch_facing_direction=top blockId=50 -runtimeId=7362 +runtimeId=7359 minecraft:torch;torch_facing_direction=unknown blockId=50 -runtimeId=7357 +runtimeId=7354 minecraft:torch;torch_facing_direction=west blockId=50 -runtimeId=7358 +runtimeId=7355 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=96 -runtimeId=7363 +runtimeId=7360 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=96 -runtimeId=7364 +runtimeId=7361 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=96 -runtimeId=7365 +runtimeId=7362 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=96 -runtimeId=7366 +runtimeId=7363 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=96 -runtimeId=7367 +runtimeId=7364 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=96 -runtimeId=7368 +runtimeId=7365 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=96 -runtimeId=7369 +runtimeId=7366 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=96 -runtimeId=7370 +runtimeId=7367 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=96 -runtimeId=7371 +runtimeId=7368 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=96 -runtimeId=7372 +runtimeId=7369 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=96 -runtimeId=7373 +runtimeId=7370 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=96 -runtimeId=7374 +runtimeId=7371 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=96 -runtimeId=7375 +runtimeId=7372 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=96 -runtimeId=7376 +runtimeId=7373 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=96 -runtimeId=7377 +runtimeId=7374 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=96 -runtimeId=7378 +runtimeId=7375 minecraft:trapped_chest;facing_direction=0 blockId=146 -runtimeId=7379 +runtimeId=7376 minecraft:trapped_chest;facing_direction=1 blockId=146 -runtimeId=7380 +runtimeId=7377 minecraft:trapped_chest;facing_direction=2 blockId=146 -runtimeId=7381 +runtimeId=7378 minecraft:trapped_chest;facing_direction=3 blockId=146 -runtimeId=7382 +runtimeId=7379 minecraft:trapped_chest;facing_direction=4 blockId=146 -runtimeId=7383 +runtimeId=7380 minecraft:trapped_chest;facing_direction=5 blockId=146 -runtimeId=7384 +runtimeId=7381 minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7385 +runtimeId=7382 minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7389 +runtimeId=7386 minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7393 +runtimeId=7390 minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7397 +runtimeId=7394 minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7387 +runtimeId=7384 minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7391 +runtimeId=7388 minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7395 +runtimeId=7392 minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7399 +runtimeId=7396 minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7386 +runtimeId=7383 minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7390 +runtimeId=7387 minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7394 +runtimeId=7391 minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7398 +runtimeId=7395 minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7388 +runtimeId=7385 minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7392 +runtimeId=7389 minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7396 +runtimeId=7393 minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7400 +runtimeId=7397 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=0 blockId=131 -runtimeId=7401 +runtimeId=7398 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=1 blockId=131 -runtimeId=7402 +runtimeId=7399 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=2 blockId=131 -runtimeId=7403 +runtimeId=7400 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=3 blockId=131 -runtimeId=7404 +runtimeId=7401 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=0 blockId=131 -runtimeId=7405 +runtimeId=7402 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=1 blockId=131 -runtimeId=7406 +runtimeId=7403 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=2 blockId=131 -runtimeId=7407 +runtimeId=7404 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=3 blockId=131 -runtimeId=7408 +runtimeId=7405 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=0 blockId=131 -runtimeId=7409 +runtimeId=7406 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=1 blockId=131 -runtimeId=7410 +runtimeId=7407 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=2 blockId=131 -runtimeId=7411 +runtimeId=7408 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=3 blockId=131 -runtimeId=7412 +runtimeId=7409 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=0 blockId=131 -runtimeId=7413 +runtimeId=7410 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=1 blockId=131 -runtimeId=7414 +runtimeId=7411 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=2 blockId=131 -runtimeId=7415 +runtimeId=7412 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=3 blockId=131 -runtimeId=7416 +runtimeId=7413 minecraft:tuff blockId=588 -runtimeId=7417 +runtimeId=7414 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=four_egg blockId=414 -runtimeId=7425 +runtimeId=7422 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=one_egg blockId=414 -runtimeId=7422 +runtimeId=7419 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=three_egg blockId=414 -runtimeId=7424 +runtimeId=7421 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=two_egg blockId=414 -runtimeId=7423 +runtimeId=7420 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=four_egg blockId=414 -runtimeId=7429 +runtimeId=7426 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=one_egg blockId=414 -runtimeId=7426 +runtimeId=7423 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=three_egg blockId=414 -runtimeId=7428 +runtimeId=7425 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=two_egg blockId=414 -runtimeId=7427 +runtimeId=7424 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=four_egg blockId=414 -runtimeId=7421 +runtimeId=7418 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=one_egg blockId=414 -runtimeId=7418 +runtimeId=7415 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=three_egg blockId=414 -runtimeId=7420 +runtimeId=7417 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=two_egg blockId=414 -runtimeId=7419 +runtimeId=7416 minecraft:twisting_vines;twisting_vines_age=0 blockId=542 -runtimeId=7430 +runtimeId=7427 minecraft:twisting_vines;twisting_vines_age=1 blockId=542 -runtimeId=7431 +runtimeId=7428 minecraft:twisting_vines;twisting_vines_age=2 blockId=542 -runtimeId=7432 +runtimeId=7429 minecraft:twisting_vines;twisting_vines_age=3 blockId=542 -runtimeId=7433 +runtimeId=7430 minecraft:twisting_vines;twisting_vines_age=4 blockId=542 -runtimeId=7434 +runtimeId=7431 minecraft:twisting_vines;twisting_vines_age=5 blockId=542 -runtimeId=7435 +runtimeId=7432 minecraft:twisting_vines;twisting_vines_age=6 blockId=542 -runtimeId=7436 +runtimeId=7433 minecraft:twisting_vines;twisting_vines_age=7 blockId=542 -runtimeId=7437 +runtimeId=7434 minecraft:twisting_vines;twisting_vines_age=8 blockId=542 -runtimeId=7438 +runtimeId=7435 minecraft:twisting_vines;twisting_vines_age=9 blockId=542 -runtimeId=7439 +runtimeId=7436 minecraft:twisting_vines;twisting_vines_age=10 blockId=542 -runtimeId=7440 +runtimeId=7437 minecraft:twisting_vines;twisting_vines_age=11 blockId=542 -runtimeId=7441 +runtimeId=7438 minecraft:twisting_vines;twisting_vines_age=12 blockId=542 -runtimeId=7442 +runtimeId=7439 minecraft:twisting_vines;twisting_vines_age=13 blockId=542 -runtimeId=7443 +runtimeId=7440 minecraft:twisting_vines;twisting_vines_age=14 blockId=542 -runtimeId=7444 +runtimeId=7441 minecraft:twisting_vines;twisting_vines_age=15 blockId=542 -runtimeId=7445 +runtimeId=7442 minecraft:twisting_vines;twisting_vines_age=16 blockId=542 -runtimeId=7446 +runtimeId=7443 minecraft:twisting_vines;twisting_vines_age=17 blockId=542 -runtimeId=7447 +runtimeId=7444 minecraft:twisting_vines;twisting_vines_age=18 blockId=542 -runtimeId=7448 +runtimeId=7445 minecraft:twisting_vines;twisting_vines_age=19 blockId=542 -runtimeId=7449 +runtimeId=7446 minecraft:twisting_vines;twisting_vines_age=20 blockId=542 -runtimeId=7450 +runtimeId=7447 minecraft:twisting_vines;twisting_vines_age=21 blockId=542 -runtimeId=7451 +runtimeId=7448 minecraft:twisting_vines;twisting_vines_age=22 blockId=542 -runtimeId=7452 +runtimeId=7449 minecraft:twisting_vines;twisting_vines_age=23 blockId=542 -runtimeId=7453 +runtimeId=7450 minecraft:twisting_vines;twisting_vines_age=24 blockId=542 -runtimeId=7454 +runtimeId=7451 minecraft:twisting_vines;twisting_vines_age=25 blockId=542 -runtimeId=7455 +runtimeId=7452 minecraft:underwater_torch;torch_facing_direction=east blockId=239 -runtimeId=7458 +runtimeId=7455 minecraft:underwater_torch;torch_facing_direction=north blockId=239 -runtimeId=7459 +runtimeId=7456 minecraft:underwater_torch;torch_facing_direction=south blockId=239 -runtimeId=7460 +runtimeId=7457 minecraft:underwater_torch;torch_facing_direction=top blockId=239 -runtimeId=7461 +runtimeId=7458 minecraft:underwater_torch;torch_facing_direction=unknown blockId=239 -runtimeId=7456 +runtimeId=7453 minecraft:underwater_torch;torch_facing_direction=west blockId=239 -runtimeId=7457 +runtimeId=7454 minecraft:undyed_shulker_box blockId=205 -runtimeId=7462 +runtimeId=7459 minecraft:unknown blockId=560 -runtimeId=7463 +runtimeId=7460 minecraft:unlit_redstone_torch;torch_facing_direction=east blockId=75 -runtimeId=7466 +runtimeId=7463 minecraft:unlit_redstone_torch;torch_facing_direction=north blockId=75 -runtimeId=7467 +runtimeId=7464 minecraft:unlit_redstone_torch;torch_facing_direction=south blockId=75 -runtimeId=7468 +runtimeId=7465 minecraft:unlit_redstone_torch;torch_facing_direction=top blockId=75 -runtimeId=7469 +runtimeId=7466 minecraft:unlit_redstone_torch;torch_facing_direction=unknown blockId=75 -runtimeId=7464 +runtimeId=7461 minecraft:unlit_redstone_torch;torch_facing_direction=west blockId=75 -runtimeId=7465 +runtimeId=7462 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=0 blockId=149 -runtimeId=7470 +runtimeId=7467 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=1 blockId=149 -runtimeId=7471 +runtimeId=7468 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=2 blockId=149 -runtimeId=7472 +runtimeId=7469 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=3 blockId=149 -runtimeId=7473 +runtimeId=7470 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=0 blockId=149 -runtimeId=7478 +runtimeId=7475 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=1 blockId=149 -runtimeId=7479 +runtimeId=7476 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=2 blockId=149 -runtimeId=7480 +runtimeId=7477 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=3 blockId=149 -runtimeId=7481 +runtimeId=7478 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=0 blockId=149 -runtimeId=7474 +runtimeId=7471 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=1 blockId=149 -runtimeId=7475 +runtimeId=7472 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=2 blockId=149 -runtimeId=7476 +runtimeId=7473 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=3 blockId=149 -runtimeId=7477 +runtimeId=7474 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=0 blockId=149 -runtimeId=7482 +runtimeId=7479 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=1 blockId=149 -runtimeId=7483 +runtimeId=7480 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=2 blockId=149 -runtimeId=7484 +runtimeId=7481 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=3 blockId=149 -runtimeId=7485 +runtimeId=7482 minecraft:unpowered_repeater;repeater_delay=0;direction=0 blockId=93 -runtimeId=7486 +runtimeId=7483 minecraft:unpowered_repeater;repeater_delay=0;direction=1 blockId=93 -runtimeId=7487 +runtimeId=7484 minecraft:unpowered_repeater;repeater_delay=0;direction=2 blockId=93 -runtimeId=7488 +runtimeId=7485 minecraft:unpowered_repeater;repeater_delay=0;direction=3 blockId=93 -runtimeId=7489 +runtimeId=7486 minecraft:unpowered_repeater;repeater_delay=1;direction=0 blockId=93 -runtimeId=7490 +runtimeId=7487 minecraft:unpowered_repeater;repeater_delay=1;direction=1 blockId=93 -runtimeId=7491 +runtimeId=7488 minecraft:unpowered_repeater;repeater_delay=1;direction=2 blockId=93 -runtimeId=7492 +runtimeId=7489 minecraft:unpowered_repeater;repeater_delay=1;direction=3 blockId=93 -runtimeId=7493 +runtimeId=7490 minecraft:unpowered_repeater;repeater_delay=2;direction=0 blockId=93 -runtimeId=7494 +runtimeId=7491 minecraft:unpowered_repeater;repeater_delay=2;direction=1 blockId=93 -runtimeId=7495 +runtimeId=7492 minecraft:unpowered_repeater;repeater_delay=2;direction=2 blockId=93 -runtimeId=7496 +runtimeId=7493 minecraft:unpowered_repeater;repeater_delay=2;direction=3 blockId=93 -runtimeId=7497 +runtimeId=7494 minecraft:unpowered_repeater;repeater_delay=3;direction=0 blockId=93 -runtimeId=7498 +runtimeId=7495 minecraft:unpowered_repeater;repeater_delay=3;direction=1 blockId=93 -runtimeId=7499 +runtimeId=7496 minecraft:unpowered_repeater;repeater_delay=3;direction=2 blockId=93 -runtimeId=7500 +runtimeId=7497 minecraft:unpowered_repeater;repeater_delay=3;direction=3 blockId=93 -runtimeId=7501 +runtimeId=7498 + +minecraft:verdant_froglight +blockId=-1 +runtimeId=7499 minecraft:vine;vine_direction_bits=0 blockId=106 -runtimeId=7502 +runtimeId=7500 minecraft:vine;vine_direction_bits=1 blockId=106 -runtimeId=7503 +runtimeId=7501 minecraft:vine;vine_direction_bits=2 blockId=106 -runtimeId=7504 +runtimeId=7502 minecraft:vine;vine_direction_bits=3 blockId=106 -runtimeId=7505 +runtimeId=7503 minecraft:vine;vine_direction_bits=4 blockId=106 -runtimeId=7506 +runtimeId=7504 minecraft:vine;vine_direction_bits=5 blockId=106 -runtimeId=7507 +runtimeId=7505 minecraft:vine;vine_direction_bits=6 blockId=106 -runtimeId=7508 +runtimeId=7506 minecraft:vine;vine_direction_bits=7 blockId=106 -runtimeId=7509 +runtimeId=7507 minecraft:vine;vine_direction_bits=8 blockId=106 -runtimeId=7510 +runtimeId=7508 minecraft:vine;vine_direction_bits=9 blockId=106 -runtimeId=7511 +runtimeId=7509 minecraft:vine;vine_direction_bits=10 blockId=106 -runtimeId=7512 +runtimeId=7510 minecraft:vine;vine_direction_bits=11 blockId=106 -runtimeId=7513 +runtimeId=7511 minecraft:vine;vine_direction_bits=12 blockId=106 -runtimeId=7514 +runtimeId=7512 minecraft:vine;vine_direction_bits=13 blockId=106 -runtimeId=7515 +runtimeId=7513 minecraft:vine;vine_direction_bits=14 blockId=106 -runtimeId=7516 +runtimeId=7514 minecraft:vine;vine_direction_bits=15 blockId=106 -runtimeId=7517 +runtimeId=7515 minecraft:wall_banner;facing_direction=0 blockId=177 -runtimeId=7518 +runtimeId=7516 minecraft:wall_banner;facing_direction=1 blockId=177 -runtimeId=7519 +runtimeId=7517 minecraft:wall_banner;facing_direction=2 blockId=177 -runtimeId=7520 +runtimeId=7518 minecraft:wall_banner;facing_direction=3 blockId=177 -runtimeId=7521 +runtimeId=7519 minecraft:wall_banner;facing_direction=4 blockId=177 -runtimeId=7522 +runtimeId=7520 minecraft:wall_banner;facing_direction=5 blockId=177 -runtimeId=7523 +runtimeId=7521 minecraft:wall_sign;facing_direction=0 blockId=68 -runtimeId=7524 +runtimeId=7522 minecraft:wall_sign;facing_direction=1 blockId=68 -runtimeId=7525 +runtimeId=7523 minecraft:wall_sign;facing_direction=2 blockId=68 -runtimeId=7526 +runtimeId=7524 minecraft:wall_sign;facing_direction=3 blockId=68 -runtimeId=7527 +runtimeId=7525 minecraft:wall_sign;facing_direction=4 blockId=68 -runtimeId=7528 +runtimeId=7526 minecraft:wall_sign;facing_direction=5 blockId=68 -runtimeId=7529 +runtimeId=7527 minecraft:warped_button;button_pressed_bit=0;facing_direction=0 blockId=516 -runtimeId=7530 +runtimeId=7528 minecraft:warped_button;button_pressed_bit=0;facing_direction=1 blockId=516 -runtimeId=7531 +runtimeId=7529 minecraft:warped_button;button_pressed_bit=0;facing_direction=2 blockId=516 -runtimeId=7532 +runtimeId=7530 minecraft:warped_button;button_pressed_bit=0;facing_direction=3 blockId=516 -runtimeId=7533 +runtimeId=7531 minecraft:warped_button;button_pressed_bit=0;facing_direction=4 blockId=516 -runtimeId=7534 +runtimeId=7532 minecraft:warped_button;button_pressed_bit=0;facing_direction=5 blockId=516 -runtimeId=7535 +runtimeId=7533 minecraft:warped_button;button_pressed_bit=1;facing_direction=0 blockId=516 -runtimeId=7536 +runtimeId=7534 minecraft:warped_button;button_pressed_bit=1;facing_direction=1 blockId=516 -runtimeId=7537 +runtimeId=7535 minecraft:warped_button;button_pressed_bit=1;facing_direction=2 blockId=516 -runtimeId=7538 +runtimeId=7536 minecraft:warped_button;button_pressed_bit=1;facing_direction=3 blockId=516 -runtimeId=7539 +runtimeId=7537 minecraft:warped_button;button_pressed_bit=1;facing_direction=4 blockId=516 -runtimeId=7540 +runtimeId=7538 minecraft:warped_button;button_pressed_bit=1;facing_direction=5 blockId=516 -runtimeId=7541 +runtimeId=7539 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7542 +runtimeId=7540 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7543 +runtimeId=7541 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7544 +runtimeId=7542 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7545 +runtimeId=7543 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7558 +runtimeId=7556 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7559 +runtimeId=7557 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7560 +runtimeId=7558 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7561 +runtimeId=7559 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7550 +runtimeId=7548 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7551 +runtimeId=7549 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7552 +runtimeId=7550 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7553 +runtimeId=7551 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7566 +runtimeId=7564 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7567 +runtimeId=7565 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7568 +runtimeId=7566 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7569 +runtimeId=7567 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7546 +runtimeId=7544 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7547 +runtimeId=7545 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7548 +runtimeId=7546 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7549 +runtimeId=7547 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7562 +runtimeId=7560 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7563 +runtimeId=7561 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7564 +runtimeId=7562 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7565 +runtimeId=7563 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7554 +runtimeId=7552 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7555 +runtimeId=7553 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7556 +runtimeId=7554 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7557 +runtimeId=7555 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7570 +runtimeId=7568 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7571 +runtimeId=7569 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7572 +runtimeId=7570 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7573 +runtimeId=7571 minecraft:warped_double_slab;top_slot_bit=0 blockId=522 -runtimeId=7574 +runtimeId=7572 minecraft:warped_double_slab;top_slot_bit=1 blockId=522 -runtimeId=7575 +runtimeId=7573 minecraft:warped_fence blockId=512 -runtimeId=7576 +runtimeId=7574 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=514 -runtimeId=7577 +runtimeId=7575 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=514 -runtimeId=7578 +runtimeId=7576 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=514 -runtimeId=7579 +runtimeId=7577 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=514 -runtimeId=7580 +runtimeId=7578 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=514 -runtimeId=7581 +runtimeId=7579 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=514 -runtimeId=7582 +runtimeId=7580 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=514 -runtimeId=7583 +runtimeId=7581 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=514 -runtimeId=7584 +runtimeId=7582 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=514 -runtimeId=7585 +runtimeId=7583 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=514 -runtimeId=7586 +runtimeId=7584 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=514 -runtimeId=7587 +runtimeId=7585 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=514 -runtimeId=7588 +runtimeId=7586 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=514 -runtimeId=7589 +runtimeId=7587 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=514 -runtimeId=7590 +runtimeId=7588 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=514 -runtimeId=7591 +runtimeId=7589 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=514 -runtimeId=7592 +runtimeId=7590 minecraft:warped_fungus blockId=484 -runtimeId=7593 +runtimeId=7591 minecraft:warped_hyphae;pillar_axis=x blockId=553 -runtimeId=7595 +runtimeId=7593 minecraft:warped_hyphae;pillar_axis=y blockId=553 -runtimeId=7594 +runtimeId=7592 minecraft:warped_hyphae;pillar_axis=z blockId=553 -runtimeId=7596 +runtimeId=7594 minecraft:warped_nylium blockId=488 -runtimeId=7597 +runtimeId=7595 minecraft:warped_planks blockId=498 -runtimeId=7598 +runtimeId=7596 minecraft:warped_pressure_plate;redstone_signal=0 blockId=518 -runtimeId=7599 +runtimeId=7597 minecraft:warped_pressure_plate;redstone_signal=1 blockId=518 -runtimeId=7600 +runtimeId=7598 minecraft:warped_pressure_plate;redstone_signal=2 blockId=518 -runtimeId=7601 +runtimeId=7599 minecraft:warped_pressure_plate;redstone_signal=3 blockId=518 -runtimeId=7602 +runtimeId=7600 minecraft:warped_pressure_plate;redstone_signal=4 blockId=518 -runtimeId=7603 +runtimeId=7601 minecraft:warped_pressure_plate;redstone_signal=5 blockId=518 -runtimeId=7604 +runtimeId=7602 minecraft:warped_pressure_plate;redstone_signal=6 blockId=518 -runtimeId=7605 +runtimeId=7603 minecraft:warped_pressure_plate;redstone_signal=7 blockId=518 -runtimeId=7606 +runtimeId=7604 minecraft:warped_pressure_plate;redstone_signal=8 blockId=518 -runtimeId=7607 +runtimeId=7605 minecraft:warped_pressure_plate;redstone_signal=9 blockId=518 -runtimeId=7608 +runtimeId=7606 minecraft:warped_pressure_plate;redstone_signal=10 blockId=518 -runtimeId=7609 +runtimeId=7607 minecraft:warped_pressure_plate;redstone_signal=11 blockId=518 -runtimeId=7610 +runtimeId=7608 minecraft:warped_pressure_plate;redstone_signal=12 blockId=518 -runtimeId=7611 +runtimeId=7609 minecraft:warped_pressure_plate;redstone_signal=13 blockId=518 -runtimeId=7612 +runtimeId=7610 minecraft:warped_pressure_plate;redstone_signal=14 blockId=518 -runtimeId=7613 +runtimeId=7611 minecraft:warped_pressure_plate;redstone_signal=15 blockId=518 -runtimeId=7614 +runtimeId=7612 minecraft:warped_roots blockId=479 -runtimeId=7615 +runtimeId=7613 minecraft:warped_slab;top_slot_bit=0 blockId=520 -runtimeId=7616 +runtimeId=7614 minecraft:warped_slab;top_slot_bit=1 blockId=520 -runtimeId=7617 +runtimeId=7615 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=0 blockId=510 -runtimeId=7618 +runtimeId=7616 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=1 blockId=510 -runtimeId=7619 +runtimeId=7617 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=2 blockId=510 -runtimeId=7620 +runtimeId=7618 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=3 blockId=510 -runtimeId=7621 +runtimeId=7619 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=0 blockId=510 -runtimeId=7622 +runtimeId=7620 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=1 blockId=510 -runtimeId=7623 +runtimeId=7621 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=2 blockId=510 -runtimeId=7624 +runtimeId=7622 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=3 blockId=510 -runtimeId=7625 +runtimeId=7623 minecraft:warped_standing_sign;ground_sign_direction=0 blockId=506 -runtimeId=7626 +runtimeId=7624 minecraft:warped_standing_sign;ground_sign_direction=1 blockId=506 -runtimeId=7627 +runtimeId=7625 minecraft:warped_standing_sign;ground_sign_direction=2 blockId=506 -runtimeId=7628 +runtimeId=7626 minecraft:warped_standing_sign;ground_sign_direction=3 blockId=506 -runtimeId=7629 +runtimeId=7627 minecraft:warped_standing_sign;ground_sign_direction=4 blockId=506 -runtimeId=7630 +runtimeId=7628 minecraft:warped_standing_sign;ground_sign_direction=5 blockId=506 -runtimeId=7631 +runtimeId=7629 minecraft:warped_standing_sign;ground_sign_direction=6 blockId=506 -runtimeId=7632 +runtimeId=7630 minecraft:warped_standing_sign;ground_sign_direction=7 blockId=506 -runtimeId=7633 +runtimeId=7631 minecraft:warped_standing_sign;ground_sign_direction=8 blockId=506 -runtimeId=7634 +runtimeId=7632 minecraft:warped_standing_sign;ground_sign_direction=9 blockId=506 -runtimeId=7635 +runtimeId=7633 minecraft:warped_standing_sign;ground_sign_direction=10 blockId=506 -runtimeId=7636 +runtimeId=7634 minecraft:warped_standing_sign;ground_sign_direction=11 blockId=506 -runtimeId=7637 +runtimeId=7635 minecraft:warped_standing_sign;ground_sign_direction=12 blockId=506 -runtimeId=7638 +runtimeId=7636 minecraft:warped_standing_sign;ground_sign_direction=13 blockId=506 -runtimeId=7639 +runtimeId=7637 minecraft:warped_standing_sign;ground_sign_direction=14 blockId=506 -runtimeId=7640 +runtimeId=7638 minecraft:warped_standing_sign;ground_sign_direction=15 blockId=506 -runtimeId=7641 +runtimeId=7639 minecraft:warped_stem;pillar_axis=x blockId=481 -runtimeId=7643 +runtimeId=7641 minecraft:warped_stem;pillar_axis=y blockId=481 -runtimeId=7642 +runtimeId=7640 minecraft:warped_stem;pillar_axis=z blockId=481 -runtimeId=7644 +runtimeId=7642 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=502 -runtimeId=7645 +runtimeId=7643 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=502 -runtimeId=7646 +runtimeId=7644 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=502 -runtimeId=7647 +runtimeId=7645 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=502 -runtimeId=7648 +runtimeId=7646 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=502 -runtimeId=7649 +runtimeId=7647 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=502 -runtimeId=7650 +runtimeId=7648 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=502 -runtimeId=7651 +runtimeId=7649 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=502 -runtimeId=7652 +runtimeId=7650 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=502 -runtimeId=7653 +runtimeId=7651 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=502 -runtimeId=7654 +runtimeId=7652 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=502 -runtimeId=7655 +runtimeId=7653 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=502 -runtimeId=7656 +runtimeId=7654 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=502 -runtimeId=7657 +runtimeId=7655 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=502 -runtimeId=7658 +runtimeId=7656 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=502 -runtimeId=7659 +runtimeId=7657 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=502 -runtimeId=7660 +runtimeId=7658 minecraft:warped_wall_sign;facing_direction=0 blockId=508 -runtimeId=7661 +runtimeId=7659 minecraft:warped_wall_sign;facing_direction=1 blockId=508 -runtimeId=7662 +runtimeId=7660 minecraft:warped_wall_sign;facing_direction=2 blockId=508 -runtimeId=7663 +runtimeId=7661 minecraft:warped_wall_sign;facing_direction=3 blockId=508 -runtimeId=7664 +runtimeId=7662 minecraft:warped_wall_sign;facing_direction=4 blockId=508 -runtimeId=7665 +runtimeId=7663 minecraft:warped_wall_sign;facing_direction=5 blockId=508 -runtimeId=7666 +runtimeId=7664 minecraft:warped_wart_block blockId=482 -runtimeId=7667 +runtimeId=7665 minecraft:water;liquid_depth=0 blockId=9 -runtimeId=7668 +runtimeId=7666 minecraft:water;liquid_depth=1 blockId=9 -runtimeId=7669 +runtimeId=7667 minecraft:water;liquid_depth=2 blockId=9 -runtimeId=7670 +runtimeId=7668 minecraft:water;liquid_depth=3 blockId=9 -runtimeId=7671 +runtimeId=7669 minecraft:water;liquid_depth=4 blockId=9 -runtimeId=7672 +runtimeId=7670 minecraft:water;liquid_depth=5 blockId=9 -runtimeId=7673 +runtimeId=7671 minecraft:water;liquid_depth=6 blockId=9 -runtimeId=7674 +runtimeId=7672 minecraft:water;liquid_depth=7 blockId=9 -runtimeId=7675 +runtimeId=7673 minecraft:water;liquid_depth=8 blockId=9 -runtimeId=7676 +runtimeId=7674 minecraft:water;liquid_depth=9 blockId=9 -runtimeId=7677 +runtimeId=7675 minecraft:water;liquid_depth=10 blockId=9 -runtimeId=7678 +runtimeId=7676 minecraft:water;liquid_depth=11 blockId=9 -runtimeId=7679 +runtimeId=7677 minecraft:water;liquid_depth=12 blockId=9 -runtimeId=7680 +runtimeId=7678 minecraft:water;liquid_depth=13 blockId=9 -runtimeId=7681 +runtimeId=7679 minecraft:water;liquid_depth=14 blockId=9 -runtimeId=7682 +runtimeId=7680 minecraft:water;liquid_depth=15 blockId=9 -runtimeId=7683 +runtimeId=7681 minecraft:waterlily blockId=111 -runtimeId=7684 +runtimeId=7682 minecraft:waxed_copper blockId=599 -runtimeId=7685 +runtimeId=7683 minecraft:waxed_cut_copper blockId=606 -runtimeId=7686 +runtimeId=7684 minecraft:waxed_cut_copper_slab;top_slot_bit=0 blockId=620 -runtimeId=7687 +runtimeId=7685 minecraft:waxed_cut_copper_slab;top_slot_bit=1 blockId=620 -runtimeId=7688 +runtimeId=7686 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=613 -runtimeId=7689 +runtimeId=7687 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=613 -runtimeId=7690 +runtimeId=7688 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=613 -runtimeId=7691 +runtimeId=7689 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=613 -runtimeId=7692 +runtimeId=7690 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=613 -runtimeId=7693 +runtimeId=7691 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=613 -runtimeId=7694 +runtimeId=7692 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=613 -runtimeId=7695 +runtimeId=7693 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=613 -runtimeId=7696 +runtimeId=7694 minecraft:waxed_double_cut_copper_slab;top_slot_bit=0 blockId=627 -runtimeId=7697 +runtimeId=7695 minecraft:waxed_double_cut_copper_slab;top_slot_bit=1 blockId=627 -runtimeId=7698 +runtimeId=7696 minecraft:waxed_exposed_copper blockId=600 -runtimeId=7699 +runtimeId=7697 minecraft:waxed_exposed_cut_copper blockId=607 -runtimeId=7700 +runtimeId=7698 minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=0 blockId=621 -runtimeId=7701 +runtimeId=7699 minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=1 blockId=621 -runtimeId=7702 +runtimeId=7700 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=614 -runtimeId=7703 +runtimeId=7701 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=614 -runtimeId=7704 +runtimeId=7702 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=614 -runtimeId=7705 +runtimeId=7703 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=614 -runtimeId=7706 +runtimeId=7704 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=614 -runtimeId=7707 +runtimeId=7705 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=614 -runtimeId=7708 +runtimeId=7706 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=614 -runtimeId=7709 +runtimeId=7707 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=614 -runtimeId=7710 +runtimeId=7708 minecraft:waxed_exposed_double_cut_copper_slab;top_slot_bit=0 blockId=628 -runtimeId=7711 +runtimeId=7709 minecraft:waxed_exposed_double_cut_copper_slab;top_slot_bit=1 blockId=628 -runtimeId=7712 +runtimeId=7710 minecraft:waxed_oxidized_copper blockId=701 -runtimeId=7713 +runtimeId=7711 minecraft:waxed_oxidized_cut_copper blockId=702 -runtimeId=7714 +runtimeId=7712 minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=0 blockId=704 -runtimeId=7715 +runtimeId=7713 minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=1 blockId=704 -runtimeId=7716 +runtimeId=7714 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=703 -runtimeId=7717 +runtimeId=7715 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=703 -runtimeId=7718 +runtimeId=7716 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=703 -runtimeId=7719 +runtimeId=7717 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=703 -runtimeId=7720 +runtimeId=7718 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=703 -runtimeId=7721 +runtimeId=7719 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=703 -runtimeId=7722 +runtimeId=7720 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=703 -runtimeId=7723 +runtimeId=7721 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=703 -runtimeId=7724 +runtimeId=7722 minecraft:waxed_oxidized_double_cut_copper_slab;top_slot_bit=0 blockId=705 -runtimeId=7725 +runtimeId=7723 minecraft:waxed_oxidized_double_cut_copper_slab;top_slot_bit=1 blockId=705 -runtimeId=7726 +runtimeId=7724 minecraft:waxed_weathered_copper blockId=601 -runtimeId=7727 +runtimeId=7725 minecraft:waxed_weathered_cut_copper blockId=608 -runtimeId=7728 +runtimeId=7726 minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=0 blockId=622 -runtimeId=7729 +runtimeId=7727 minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=1 blockId=622 -runtimeId=7730 +runtimeId=7728 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=615 -runtimeId=7731 +runtimeId=7729 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=615 -runtimeId=7732 +runtimeId=7730 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=615 -runtimeId=7733 +runtimeId=7731 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=615 -runtimeId=7734 +runtimeId=7732 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=615 -runtimeId=7735 +runtimeId=7733 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=615 -runtimeId=7736 +runtimeId=7734 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=615 -runtimeId=7737 +runtimeId=7735 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=615 -runtimeId=7738 +runtimeId=7736 minecraft:waxed_weathered_double_cut_copper_slab;top_slot_bit=0 blockId=629 -runtimeId=7739 +runtimeId=7737 minecraft:waxed_weathered_double_cut_copper_slab;top_slot_bit=1 blockId=629 -runtimeId=7740 +runtimeId=7738 minecraft:weathered_copper blockId=597 -runtimeId=7741 +runtimeId=7739 minecraft:weathered_cut_copper blockId=604 -runtimeId=7742 +runtimeId=7740 minecraft:weathered_cut_copper_slab;top_slot_bit=0 blockId=618 -runtimeId=7743 +runtimeId=7741 minecraft:weathered_cut_copper_slab;top_slot_bit=1 blockId=618 -runtimeId=7744 +runtimeId=7742 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=611 -runtimeId=7745 +runtimeId=7743 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=611 -runtimeId=7746 +runtimeId=7744 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=611 -runtimeId=7747 +runtimeId=7745 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=611 -runtimeId=7748 +runtimeId=7746 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=611 -runtimeId=7749 +runtimeId=7747 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=611 -runtimeId=7750 +runtimeId=7748 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=611 -runtimeId=7751 +runtimeId=7749 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=611 -runtimeId=7752 +runtimeId=7750 minecraft:weathered_double_cut_copper_slab;top_slot_bit=0 blockId=625 -runtimeId=7753 +runtimeId=7751 minecraft:weathered_double_cut_copper_slab;top_slot_bit=1 blockId=625 -runtimeId=7754 +runtimeId=7752 minecraft:web blockId=30 -runtimeId=7755 +runtimeId=7753 minecraft:weeping_vines;weeping_vines_age=0 blockId=486 -runtimeId=7756 +runtimeId=7754 minecraft:weeping_vines;weeping_vines_age=1 blockId=486 -runtimeId=7757 +runtimeId=7755 minecraft:weeping_vines;weeping_vines_age=2 blockId=486 -runtimeId=7758 +runtimeId=7756 minecraft:weeping_vines;weeping_vines_age=3 blockId=486 -runtimeId=7759 +runtimeId=7757 minecraft:weeping_vines;weeping_vines_age=4 blockId=486 -runtimeId=7760 +runtimeId=7758 minecraft:weeping_vines;weeping_vines_age=5 blockId=486 -runtimeId=7761 +runtimeId=7759 minecraft:weeping_vines;weeping_vines_age=6 blockId=486 -runtimeId=7762 +runtimeId=7760 minecraft:weeping_vines;weeping_vines_age=7 blockId=486 -runtimeId=7763 +runtimeId=7761 minecraft:weeping_vines;weeping_vines_age=8 blockId=486 -runtimeId=7764 +runtimeId=7762 minecraft:weeping_vines;weeping_vines_age=9 blockId=486 -runtimeId=7765 +runtimeId=7763 minecraft:weeping_vines;weeping_vines_age=10 blockId=486 -runtimeId=7766 +runtimeId=7764 minecraft:weeping_vines;weeping_vines_age=11 blockId=486 -runtimeId=7767 +runtimeId=7765 minecraft:weeping_vines;weeping_vines_age=12 blockId=486 -runtimeId=7768 +runtimeId=7766 minecraft:weeping_vines;weeping_vines_age=13 blockId=486 -runtimeId=7769 +runtimeId=7767 minecraft:weeping_vines;weeping_vines_age=14 blockId=486 -runtimeId=7770 +runtimeId=7768 minecraft:weeping_vines;weeping_vines_age=15 blockId=486 -runtimeId=7771 +runtimeId=7769 minecraft:weeping_vines;weeping_vines_age=16 blockId=486 -runtimeId=7772 +runtimeId=7770 minecraft:weeping_vines;weeping_vines_age=17 blockId=486 -runtimeId=7773 +runtimeId=7771 minecraft:weeping_vines;weeping_vines_age=18 blockId=486 -runtimeId=7774 +runtimeId=7772 minecraft:weeping_vines;weeping_vines_age=19 blockId=486 -runtimeId=7775 +runtimeId=7773 minecraft:weeping_vines;weeping_vines_age=20 blockId=486 -runtimeId=7776 +runtimeId=7774 minecraft:weeping_vines;weeping_vines_age=21 blockId=486 -runtimeId=7777 +runtimeId=7775 minecraft:weeping_vines;weeping_vines_age=22 blockId=486 -runtimeId=7778 +runtimeId=7776 minecraft:weeping_vines;weeping_vines_age=23 blockId=486 -runtimeId=7779 +runtimeId=7777 minecraft:weeping_vines;weeping_vines_age=24 blockId=486 -runtimeId=7780 +runtimeId=7778 minecraft:weeping_vines;weeping_vines_age=25 blockId=486 -runtimeId=7781 +runtimeId=7779 minecraft:wheat;growth=0 blockId=59 -runtimeId=7782 +runtimeId=7780 minecraft:wheat;growth=1 blockId=59 -runtimeId=7783 +runtimeId=7781 minecraft:wheat;growth=2 blockId=59 -runtimeId=7784 +runtimeId=7782 minecraft:wheat;growth=3 blockId=59 -runtimeId=7785 +runtimeId=7783 minecraft:wheat;growth=4 blockId=59 -runtimeId=7786 +runtimeId=7784 minecraft:wheat;growth=5 blockId=59 -runtimeId=7787 +runtimeId=7785 minecraft:wheat;growth=6 blockId=59 -runtimeId=7788 +runtimeId=7786 minecraft:wheat;growth=7 blockId=59 -runtimeId=7789 +runtimeId=7787 minecraft:white_candle;lit=0;candles=0 blockId=668 -runtimeId=7790 +runtimeId=7788 minecraft:white_candle;lit=0;candles=1 blockId=668 -runtimeId=7791 +runtimeId=7789 minecraft:white_candle;lit=0;candles=2 blockId=668 -runtimeId=7792 +runtimeId=7790 minecraft:white_candle;lit=0;candles=3 blockId=668 -runtimeId=7793 +runtimeId=7791 minecraft:white_candle;lit=1;candles=0 blockId=668 -runtimeId=7794 +runtimeId=7792 minecraft:white_candle;lit=1;candles=1 blockId=668 -runtimeId=7795 +runtimeId=7793 minecraft:white_candle;lit=1;candles=2 blockId=668 -runtimeId=7796 +runtimeId=7794 minecraft:white_candle;lit=1;candles=3 blockId=668 -runtimeId=7797 +runtimeId=7795 minecraft:white_candle_cake;lit=0 blockId=685 -runtimeId=7798 +runtimeId=7796 minecraft:white_candle_cake;lit=1 blockId=685 -runtimeId=7799 +runtimeId=7797 minecraft:white_glazed_terracotta;facing_direction=0 blockId=220 -runtimeId=7800 +runtimeId=7798 minecraft:white_glazed_terracotta;facing_direction=1 blockId=220 -runtimeId=7801 +runtimeId=7799 minecraft:white_glazed_terracotta;facing_direction=2 blockId=220 -runtimeId=7802 +runtimeId=7800 minecraft:white_glazed_terracotta;facing_direction=3 blockId=220 -runtimeId=7803 +runtimeId=7801 minecraft:white_glazed_terracotta;facing_direction=4 blockId=220 -runtimeId=7804 +runtimeId=7802 minecraft:white_glazed_terracotta;facing_direction=5 blockId=220 -runtimeId=7805 +runtimeId=7803 minecraft:wither_rose blockId=471 -runtimeId=7806 +runtimeId=7804 minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7823 +runtimeId=7821 minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7811 +runtimeId=7809 minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7835 +runtimeId=7833 minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7829 +runtimeId=7827 minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7817 +runtimeId=7815 minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7841 +runtimeId=7839 minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7821 +runtimeId=7819 minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7809 +runtimeId=7807 minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7833 +runtimeId=7831 minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7827 +runtimeId=7825 minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7815 +runtimeId=7813 minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7839 +runtimeId=7837 minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7824 +runtimeId=7822 minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7812 +runtimeId=7810 minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7836 +runtimeId=7834 minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7830 +runtimeId=7828 minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7818 +runtimeId=7816 minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7842 +runtimeId=7840 minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7822 +runtimeId=7820 minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7810 +runtimeId=7808 minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7834 +runtimeId=7832 minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7828 +runtimeId=7826 minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7816 +runtimeId=7814 minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7840 +runtimeId=7838 minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7819 +runtimeId=7817 minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7807 +runtimeId=7805 minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7831 +runtimeId=7829 minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7825 +runtimeId=7823 minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7813 +runtimeId=7811 minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7837 +runtimeId=7835 minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7820 +runtimeId=7818 minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7808 +runtimeId=7806 minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7832 +runtimeId=7830 minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7826 +runtimeId=7824 minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7814 +runtimeId=7812 minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7838 +runtimeId=7836 minecraft:wooden_button;button_pressed_bit=0;facing_direction=0 blockId=143 -runtimeId=7843 +runtimeId=7841 minecraft:wooden_button;button_pressed_bit=0;facing_direction=1 blockId=143 -runtimeId=7844 +runtimeId=7842 minecraft:wooden_button;button_pressed_bit=0;facing_direction=2 blockId=143 -runtimeId=7845 +runtimeId=7843 minecraft:wooden_button;button_pressed_bit=0;facing_direction=3 blockId=143 -runtimeId=7846 +runtimeId=7844 minecraft:wooden_button;button_pressed_bit=0;facing_direction=4 blockId=143 -runtimeId=7847 +runtimeId=7845 minecraft:wooden_button;button_pressed_bit=0;facing_direction=5 blockId=143 -runtimeId=7848 +runtimeId=7846 minecraft:wooden_button;button_pressed_bit=1;facing_direction=0 blockId=143 -runtimeId=7849 +runtimeId=7847 minecraft:wooden_button;button_pressed_bit=1;facing_direction=1 blockId=143 -runtimeId=7850 +runtimeId=7848 minecraft:wooden_button;button_pressed_bit=1;facing_direction=2 blockId=143 -runtimeId=7851 +runtimeId=7849 minecraft:wooden_button;button_pressed_bit=1;facing_direction=3 blockId=143 -runtimeId=7852 +runtimeId=7850 minecraft:wooden_button;button_pressed_bit=1;facing_direction=4 blockId=143 -runtimeId=7853 +runtimeId=7851 minecraft:wooden_button;button_pressed_bit=1;facing_direction=5 blockId=143 -runtimeId=7854 +runtimeId=7852 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7855 +runtimeId=7853 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7856 +runtimeId=7854 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7857 +runtimeId=7855 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7858 +runtimeId=7856 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7871 +runtimeId=7869 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7872 +runtimeId=7870 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7873 +runtimeId=7871 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7874 +runtimeId=7872 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7863 +runtimeId=7861 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7864 +runtimeId=7862 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7865 +runtimeId=7863 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7866 +runtimeId=7864 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7879 +runtimeId=7877 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7880 +runtimeId=7878 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7881 +runtimeId=7879 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7882 +runtimeId=7880 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7859 +runtimeId=7857 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7860 +runtimeId=7858 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7861 +runtimeId=7859 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7862 +runtimeId=7860 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7875 +runtimeId=7873 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7876 +runtimeId=7874 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7877 +runtimeId=7875 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7878 +runtimeId=7876 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7867 +runtimeId=7865 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7868 +runtimeId=7866 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7869 +runtimeId=7867 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7870 +runtimeId=7868 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7883 +runtimeId=7881 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7884 +runtimeId=7882 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7885 +runtimeId=7883 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7886 +runtimeId=7884 minecraft:wooden_pressure_plate;redstone_signal=0 blockId=72 -runtimeId=7887 +runtimeId=7885 minecraft:wooden_pressure_plate;redstone_signal=1 blockId=72 -runtimeId=7888 +runtimeId=7886 minecraft:wooden_pressure_plate;redstone_signal=2 blockId=72 -runtimeId=7889 +runtimeId=7887 minecraft:wooden_pressure_plate;redstone_signal=3 blockId=72 -runtimeId=7890 +runtimeId=7888 minecraft:wooden_pressure_plate;redstone_signal=4 blockId=72 -runtimeId=7891 +runtimeId=7889 minecraft:wooden_pressure_plate;redstone_signal=5 blockId=72 -runtimeId=7892 +runtimeId=7890 minecraft:wooden_pressure_plate;redstone_signal=6 blockId=72 -runtimeId=7893 +runtimeId=7891 minecraft:wooden_pressure_plate;redstone_signal=7 blockId=72 -runtimeId=7894 +runtimeId=7892 minecraft:wooden_pressure_plate;redstone_signal=8 blockId=72 -runtimeId=7895 +runtimeId=7893 minecraft:wooden_pressure_plate;redstone_signal=9 blockId=72 -runtimeId=7896 +runtimeId=7894 minecraft:wooden_pressure_plate;redstone_signal=10 blockId=72 -runtimeId=7897 +runtimeId=7895 minecraft:wooden_pressure_plate;redstone_signal=11 blockId=72 -runtimeId=7898 +runtimeId=7896 minecraft:wooden_pressure_plate;redstone_signal=12 blockId=72 -runtimeId=7899 +runtimeId=7897 minecraft:wooden_pressure_plate;redstone_signal=13 blockId=72 -runtimeId=7900 +runtimeId=7898 minecraft:wooden_pressure_plate;redstone_signal=14 blockId=72 -runtimeId=7901 +runtimeId=7899 minecraft:wooden_pressure_plate;redstone_signal=15 blockId=72 -runtimeId=7902 +runtimeId=7900 minecraft:wooden_slab;top_slot_bit=0;wood_type=acacia blockId=158 -runtimeId=7907 +runtimeId=7905 minecraft:wooden_slab;top_slot_bit=0;wood_type=birch blockId=158 -runtimeId=7905 +runtimeId=7903 minecraft:wooden_slab;top_slot_bit=0;wood_type=dark_oak blockId=158 -runtimeId=7908 +runtimeId=7906 minecraft:wooden_slab;top_slot_bit=0;wood_type=jungle blockId=158 -runtimeId=7906 +runtimeId=7904 minecraft:wooden_slab;top_slot_bit=0;wood_type=oak blockId=158 -runtimeId=7903 +runtimeId=7901 minecraft:wooden_slab;top_slot_bit=0;wood_type=spruce blockId=158 -runtimeId=7904 +runtimeId=7902 minecraft:wooden_slab;top_slot_bit=1;wood_type=acacia blockId=158 -runtimeId=7913 +runtimeId=7911 minecraft:wooden_slab;top_slot_bit=1;wood_type=birch blockId=158 -runtimeId=7911 +runtimeId=7909 minecraft:wooden_slab;top_slot_bit=1;wood_type=dark_oak blockId=158 -runtimeId=7914 +runtimeId=7912 minecraft:wooden_slab;top_slot_bit=1;wood_type=jungle blockId=158 -runtimeId=7912 +runtimeId=7910 minecraft:wooden_slab;top_slot_bit=1;wood_type=oak blockId=158 -runtimeId=7909 +runtimeId=7907 minecraft:wooden_slab;top_slot_bit=1;wood_type=spruce blockId=158 -runtimeId=7910 +runtimeId=7908 minecraft:wool;color=black blockId=35 -runtimeId=7930 +runtimeId=7928 minecraft:wool;color=blue blockId=35 -runtimeId=7926 +runtimeId=7924 minecraft:wool;color=brown blockId=35 -runtimeId=7927 +runtimeId=7925 minecraft:wool;color=cyan blockId=35 -runtimeId=7924 +runtimeId=7922 minecraft:wool;color=gray blockId=35 -runtimeId=7922 +runtimeId=7920 minecraft:wool;color=green blockId=35 -runtimeId=7928 +runtimeId=7926 minecraft:wool;color=light_blue blockId=35 -runtimeId=7918 +runtimeId=7916 minecraft:wool;color=lime blockId=35 -runtimeId=7920 +runtimeId=7918 minecraft:wool;color=magenta blockId=35 -runtimeId=7917 +runtimeId=7915 minecraft:wool;color=orange blockId=35 -runtimeId=7916 +runtimeId=7914 minecraft:wool;color=pink blockId=35 -runtimeId=7921 +runtimeId=7919 minecraft:wool;color=purple blockId=35 -runtimeId=7925 +runtimeId=7923 minecraft:wool;color=red blockId=35 -runtimeId=7929 +runtimeId=7927 minecraft:wool;color=silver blockId=35 -runtimeId=7923 +runtimeId=7921 minecraft:wool;color=white blockId=35 -runtimeId=7915 +runtimeId=7913 minecraft:wool;color=yellow blockId=35 -runtimeId=7919 +runtimeId=7917 minecraft:yellow_candle;lit=0;candles=0 blockId=672 -runtimeId=7931 +runtimeId=7929 minecraft:yellow_candle;lit=0;candles=1 blockId=672 -runtimeId=7932 +runtimeId=7930 minecraft:yellow_candle;lit=0;candles=2 blockId=672 -runtimeId=7933 +runtimeId=7931 minecraft:yellow_candle;lit=0;candles=3 blockId=672 -runtimeId=7934 +runtimeId=7932 minecraft:yellow_candle;lit=1;candles=0 blockId=672 -runtimeId=7935 +runtimeId=7933 minecraft:yellow_candle;lit=1;candles=1 blockId=672 -runtimeId=7936 +runtimeId=7934 minecraft:yellow_candle;lit=1;candles=2 blockId=672 -runtimeId=7937 +runtimeId=7935 minecraft:yellow_candle;lit=1;candles=3 blockId=672 -runtimeId=7938 +runtimeId=7936 minecraft:yellow_candle_cake;lit=0 blockId=689 -runtimeId=7939 +runtimeId=7937 minecraft:yellow_candle_cake;lit=1 blockId=689 -runtimeId=7940 +runtimeId=7938 minecraft:yellow_flower blockId=37 -runtimeId=7941 +runtimeId=7939 minecraft:yellow_glazed_terracotta;facing_direction=0 blockId=224 -runtimeId=7942 +runtimeId=7940 minecraft:yellow_glazed_terracotta;facing_direction=1 blockId=224 -runtimeId=7943 +runtimeId=7941 minecraft:yellow_glazed_terracotta;facing_direction=2 blockId=224 -runtimeId=7944 +runtimeId=7942 minecraft:yellow_glazed_terracotta;facing_direction=3 blockId=224 -runtimeId=7945 +runtimeId=7943 minecraft:yellow_glazed_terracotta;facing_direction=4 blockId=224 -runtimeId=7946 +runtimeId=7944 minecraft:yellow_glazed_terracotta;facing_direction=5 blockId=224 -runtimeId=7947 +runtimeId=7945 diff --git a/dumps/simple-blocks-nukkit.txt b/dumps/simple-blocks-nukkit.txt index 2a08a73f0a2..e8bac3acda2 100644 --- a/dumps/simple-blocks-nukkit.txt +++ b/dumps/simple-blocks-nukkit.txt @@ -343,6 +343,7 @@ minecraft:flowering_azalea minecraft:flowing_lava minecraft:flowing_water minecraft:frame +minecraft:frog_egg minecraft:frosted_ice minecraft:furnace minecraft:gilded_blackstone @@ -464,6 +465,7 @@ minecraft:noteblock minecraft:oak_stairs minecraft:observer minecraft:obsidian +minecraft:ochre_froglight minecraft:orange_candle minecraft:orange_candle_cake minecraft:orange_glazed_terracotta @@ -473,6 +475,7 @@ minecraft:oxidized_cut_copper_slab minecraft:oxidized_cut_copper_stairs minecraft:oxidized_double_cut_copper_slab minecraft:packed_ice +minecraft:pearlescent_froglight minecraft:pink_candle minecraft:pink_candle_cake minecraft:pink_glazed_terracotta @@ -639,6 +642,7 @@ minecraft:unknown minecraft:unlit_redstone_torch minecraft:unpowered_comparator minecraft:unpowered_repeater +minecraft:verdant_froglight minecraft:vine minecraft:wall_banner minecraft:wall_sign diff --git a/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java b/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java index 13836682a54..6b5eaf7fecc 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java +++ b/src/main/java/cn/nukkit/level/format/anvil/util/BlockStorage.java @@ -65,7 +65,7 @@ public class BlockStorage { public BlockStorage() { states = EMPTY.clone(); - palette = new PalettedBlockStorage(); + palette = PalettedBlockStorage.createFromBlockPalette(); } @Since("1.4.0.0-PN") diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index 43489965822..f6dd69cc831 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -17,7 +17,7 @@ public interface ProtocolInfo { /** * Actual Minecraft: PE protocol version */ - int CURRENT_PROTOCOL = dynamic(475); + int CURRENT_PROTOCOL = dynamic(486); List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); diff --git a/src/main/java/cn/nukkit/utils/BinaryStream.java b/src/main/java/cn/nukkit/utils/BinaryStream.java index a547f5cd46c..a2fd3bb2737 100644 --- a/src/main/java/cn/nukkit/utils/BinaryStream.java +++ b/src/main/java/cn/nukkit/utils/BinaryStream.java @@ -440,7 +440,7 @@ public Item getSlot() { } if (compoundTag != null && compoundTag.getAllTags().size() > 0) { - if (compoundTag.contains("Damage") && !legacyEntry.isHasDamage()) { + if (compoundTag.contains("Damage")) { if (id > 255) { damage = compoundTag.getInt("Damage"); } diff --git a/src/main/resources/biome_definitions.dat b/src/main/resources/biome_definitions.dat index 1bd332601f39d973b89e009e17a3f4f9bd4ba3c5..f40feb22dfb41ffeaa10db59d3ed6725aef504d6 100644 GIT binary patch delta 93 zcmX?dlxgL0rVXEMCL7oniE^=}73Ei@=J7zN_=42L?BdA}-0e1d+SYTSD#=PrPftyO WDB1kL-NKavrW>e1X0vH;zbF8;xFgp9 delta 48 zcmZ2^oax9>rVXEMCd+Y&Po6SSYw~js(ak$->$zY8o1c5|yG}m6kaIIz-(pb!3DFda diff --git a/src/main/resources/canonical_block_states.nbt b/src/main/resources/canonical_block_states.nbt index f971910ed0ba6cd7afdb99f8c8a190693b954677..ff4dc590c5c89307378209ec8c7be463cb2a45c6 100644 GIT binary patch literal 1174608 zcmd?SdvD}Omba%YsZ?t9rK);*dZ%k=XJ^;zeHV+xVyC<3)-Vj?g<%+mVZ1O5!!Qh| znVFQtDT>TxQl+kj;XnEl^vCFr=}4w7OeIe+F27T84i{MLv`XR$K5-%rppFjTm)9a&iZ1`uq;ZJzOpYn!3;|+ff3_s%?IRoL5BWEBy za^wtzM~<9<@W_!f5S|)2zdWcptGaIPE6(vpk5y&%+4eW{D^qLouJX*z>UCc2{`2L{ zdYw1(MOiQ3cK<>QROjZNec0wsK5TQRAGWz8OLMc?2hANrbGFcCwoGo_@&DnCtP@)fNW-oUP&DnCt(3~xI49(eccQ{n= z$Gcwc7@D)?j-feQ?%bRE>jS^L$g5>OzceS51}*R7qMF}kW%*R`h=rwR{AV-X_$SQq zPnqK%QSqtCg6e-ze6s&R@yY%N#ozD$UOk}}2~quzkH6pl`1t$%kB?9GKPbQZ^{2Q0 zp!j6}gW{9@PsRV+gZkfHJh*A{`MT^M170@yYGW=oQ+{aSc?Ms-uH^7*R1-Cf%_es!A{&8iN$!0I2Hs*;HPrV1t^HdQ;lW1DMN zZ2dhD8`j?gv0?o^5S!}n-y9t8%^0j!+ZzP7$MySRe*DYJroO3G-9L_x?6{~@AIC+d zdN(dAPrp(Nfw+C8Rs(TSsU<;NRBBxi7nNEZ#6_i62ys!VWkOt3YON3#m0B>wMWt2^ zaZ#zILtIp9{qWU6eQld;P2MxHe~ZNa!h%?#c(w5C$weuA3n%O?oU*rYWNU#kXIvg2 zEm-paX~CKYNDI9@bZ4;fqqR35m|E!NfvJUF9++CN<^hsvYaSpiSn~jB!I}rEg*OMs zhwfs^-rC#wj@_VO)M`5@7`4a_3P!E1gMv{@>Y!lMO8Qs*Y_`R_tTlH)Hd#^Ld(`aH z?N9Sn)|#8Ow|8TIw)=VPUhL?=RFjpM#Vv3YE*pMs};q=9n{1k|7Guw%d)<`uP4Nx_lNRz-d?@mw7Yw)N4D!1 z!~5-)<;|weA9m3FDS)70)QAiUMvcOtVARM93Pz2#pkUMp>yLtJS>#naU*(IYcsO}Y zjGn&9RI7YbwB{lo?5sB?IyFu((W!xhiB65Afan8fdZ`PsnCQTMAJ}(bzYj#G`n_LV zt9Or!wX@SzcAZ`3ADI*1-G8k5&$kehCny-zt3ko2P7Deb+GnpeWpR1cmha74ciV@E zuCv7q?Lk}2(2lgl4DHWP%oCc(zNF%X_9GQ9v=6Cxq5XHdXzI6l1(?8xkwW|IFj8o5 z9Y&)1=~Ztb`9oIb*~p5pe?7MQ`?=ZXUH-6yn0;oRi+^?jHFg zYGhPU>P(7n&>6>`?ggdx^tVrQaM!2v3$wD%&3#q(ISJ}qOmz6Z@AV9|MhV{cz39}w z_s0GryI$1wLqESTN2qS}p1s=rW}A@zTHE<*_q>(Z(fws%J2zLsX|(%ft`P>Da;?0z+G->>uII(ti$JNKBgGknaW z{g|hlb#t@K(YuNY`($sQFN$V)h2B|E)F=CT`j?yPvc&f+DD2a{-Mx?p-Ltq9GnS1wS5Z&q#t#`edT8nx_>s?z0MC)Bg21Gl9_S-o$ zTK~QRXil9Bz&_r3IR!-P6csa-=ZJVrY?+@^2AFqqj ztRv>x_r+%RK5p~x<2L`nVe>p&KE6F+7 zRV;3r-NRZ$;dPHd?ZfB2BW9k@&3VFyLty{FaQyL=d4%@8ITiITCm*48i}ef`>jW6< z6d3DhFBWy(C8WRNV(s@=T&(^6ii@@1U)0s5kp7B`wclTHvG)5bF4lg3QPs3^!{l1C{wcl4%sQqJo+tl@=C!U&jF5I?P)M3G4Q>scjY)TakhfS$D z#y$nbesPsmm*!prhVC8+jq2@z(5TKH2#xCNlkKD03?2P6E~=NG z#zl4U)3~VqJ-fas+hSdE^zl$^R6h^JM)mbjY*>Gf)oSWIFrrq2WAF7hIQCwDN5mc| zP3F$>$3r7F^xo*khDLSvK!>3E`e}_qb@bD?s9t^=7uCg26+_dq=?0+5W$^McJNI=BitNc|xqTF|D25 zROaxp*gsgaw)n|9YuX|!=Udnh#`)33jd_HCt;yL3P2^B(yonrYkw1|`tuiOlWkynG zF8F37Z;MnSd0QP!B(BM!vGcUF^0qcKBY9ioPvlUqGAGhyMp7pP`DP?m`Qs>$EW+ZQmR3dp>9ZV#y$)U0HbVl;FHZ&u7 zTjWpVP_Kq3(mVu*{dD@?3=EF$w2%po?o^b6qdN_-;ONw4LQKC?R}urFo3{{MWXtW_ z^dCQr?PC6JJu?s;IA#W-1INrjbl{j7hz=Yx1JS85^F{xB)i$f-tG^MSOLuMU;47BB zC-Dxy^GMx*;M$sbKmhP5c-PjB8QYpIZ+JFa-tev2 z@^&~%Vtdk7C-JS>@`i8CmN)m-dN1VeUY0b+eh%F){QlR7d!|9vUBB@AA0vi`-~Sdd zJpBHrpnKt|N#fTzWZz@LlYNf~Pxd_~{C?l}i$8I)E2i(^;rII<9)7>?;o-@?$E0?D z-1qh#6Q1mQOn9>Isqnq80PgC2Y$|EQqUA|NU#wGxO5N-YPXf>LXO zsG!usASx)eI*1BNEfJ!EQtO2NTi3TQ5uc+!YwpuP|835*mp5yt??n4F(0dthcgh#u zK=1v)JPq{DhaEOR$*@lsS#yABz?uU@1J)cM8tCPqI{^(JMZFyGG|f;4=&5>2lHNi^UdnUyu9DMZt4EvaQAz$V`5U3 zC?+OVkz!&}l_@4BRiR>HQkANI@8x#nZCdk8|9z^7y43r=;NoE$b4&J(c{qQ*DYM1> z_OnmgdTsut-hI>(8;%;u{W|`*cmBKO8;9DTr&F`*Vc?g*QSqr6hl)?lK2&^aCI-bH zI44RSrBU&r{Xek((EcBYPxb%sJlZa7@5{v5SKTt#d?KdGmu*p3-N)+YdA8ZTV&v@2 z;P0!tX|KA60Es`?)HnBkFx%@TTUY_EGR5lu?`?*MJy3ZqP$pXWgT6tyV?yh>t6)JB+3lS?59?EQO8Pax9?^@ zM^R?Ui>=p{6|yuaX|iG+g26MNWwwl_g@+|gUTm<+(!zqmla=jDD~TnrTMfG#f|F3n zAeJ+X*q{+64l`d*VwhmkWM+Kw>q!g`3rk+C zW5{tiCMGedU=n4s2E#LB#xgTL{ljQ@idia}G`X>rh_0Gx zN(~bXOJ=N-!fk0LC^gAw66MCqD{bCbceWd9*1w3rNt7L?I>2(gv39-NBJD1O=fZ|1 zH@2QvSJYC$q{)nRAV$;xmRU2J8ZMeNxv}A@OAQkYPiDq!VEoGF$i1?=fvV)nW(Z4~ zyo}HP-7xe#Xz~=Zu|dWJlO{8x(_c|ycvx8SVjV+nOEWo%Nd=QAGgjR0_^&B7Of-pd z!&3rSjx*MdcT>%vamJDvTfb{7XNg$Svd&?EDcJUtXPMjtTHy579N%~d9lGN zOA8AMPgc5O%6hMC*BLsL@@_i$>2aF8jL-Za7?y)RKq`Y^(qv|I@&~b`NemAQOJ1xK z!fiPwCo!pD5@p7U+a3EgrG|+nQEqrj082TucD$Qh28}b8%-H%}TRBU_k|r9meXWqeCq2-3lB@0 zyo}C#J!xSnpI#rGADx|4*>&z8 z=>!((6c*_W7U`Ub^vizkZu0put5)S>=3eZ6-W<)2%c7;y<{0D|BFG6M$SESou1}~* z;ngRRL3Vu-8D!TdRFF4=ZHW!B8I?~BdseQdmE;CLtCc&FfaPx|kBaQ{Wed(wZ=@t*Wwbi611_XD{9 zqT@a3zvy^R`j3kDi~jtr-)^q*^5TB_5?%CVf0JgFH~W+RZ1_4uZWgJwv-^(jJa+T) z_V-Ut|5Ga{Z5-5Lnvui7G<76|2P8p8#wAlnLRdKP`LK=~O(iQ4NQ#VDQFrH*M9dNE ze!5<+2p~z36PD?YKd_Idgarhj5!-HRDqCqd66C`=@&pyF(S-1TB*=)3R8vA&I2iKL z9m#l~q}n#2Ko0Mw(6C3}=64?b1SCO5#;1A^3I4D?dftJFBtcF_XS)5 z2VeNu!q1Y?lrWJb$cYVARZ4h37%~!Vi#t+3$6}ZxNjMVZV|=bFNeB-}f{ct#btMU5 z;lSs^I&R#SS~3!n2qZ;Dtf<{_T}w)MNK)j4WxC@J?A8udCct8?l#73$qAuJpW`G|L_E&}a_yOH_i0v!GrGJ4s{_6NIx6#|kVBMwtN zgd{;qm`D=jWPG+ONeK@KJ|otl5@ck2!tX|(e4}R~NsyD#`K~1;JRtatSci_=vP(!xQjw&{iIsJC zemJBEr|=UdloVOvne!=$q`TYKcflB9Igrv7!o^Bi8-w#+LOjf=N>3gk`$pk0aI&cU)=(Om}=nZ2hgNY^C8y zkPqv~3!duu88Vs>9*_hXv5{&@2nz>8KE{^tqgN8|MxK5-3<61zk@2Y>M8Z(C#>N&C zNrIe=&UP&+;Q_&C#5#1`mRdqml8PinPOPlm(Opeam{3w=g=fy=k0;hHchkh6;f2qM zt;baruS6gTGGZNkl1kTTN|;Czg_)(U02Vj#R%ahHxav$M{?i0l^>I zZR4gpAo74D$jInaSCSAG4tzeWB4ewNt!TT|Ie!;v5#){!TuXpJU>2P8p8Y^0hJ!oor2?AMQC`F6f2>*d?~>OoBQFQ0B?YE98>?zft~yjgFGRX$(Uw^dg(j$hs8MYF2s ztD?!5ttlQZOUY)tKmMVg@$K~qU+7a%=ow#M4}?bb^+0G;Uk`+K>g(;;U790lnct7= z;}^T1H%GJM(i}itGG>YL3=-u866F*UW!EoM>D{Xuqx}*aW!EpUQFi@8MfvM~9egA* z!{+V7ps{wWa{y`&{_g1>T$b4n`D)(gO_MF_w#^;}@2iV!xm_NPmf)C}R6U4^Nfm;a zm{bLbiFroUgP54-M9g13&HMGu=Blad>-%&Q+x>>xZvVJ{{Q1?*Wj?Q-7K<{UFYEH=y1Fm3vyWCyW{#=m;7`>@j}X*R{!OoH->g>KqqsTc(q6sa zwD&tg?EkCBEtlD{y?Jo7nMbf?% zRR`@`QKinl6;;jbTTunez7|0S~$G#O+S?pU;#lyZ8RUba<&#%Wt|M4eg#k8#z zH|31)VmgW}?%^)P#K9PgS`z`SGcp*Lm}xQbeu& zyx+j}`of&*x^Ln5qettSeUg9Qni76fY_9SZH8$LWJwpaNK?XZT20PjhMja-D`YbNk zlRk?J_N33KV0)D+;QZA1_VzPV(SwBi(^~AxHfCq zs?7p7KQD{RtJa(Vxe48Y)AxB<*0+J}pOnRQXv-(-qIw(J?q!p`58U>2QHtvf1>VxrDI3xn9359?o?1m#}~s)bQ}x4{D(J#Gr=E-dggeTs8GW zPn^A6X1jlxm&L!|6szaA=1!aD`23lW)W ztIQ3k^tA`yIMmqkjYEwi-#FBm@r^@`58pV{Sn!R5$~(1o_1z!pT8M8P>gtGZ9O`26>MDzG9O}A@Zyf4MjBlLZ5)$JZ=kGyr{s9!{A3<^c2^8m_L2>>C z6z5+-asCYy=W8O)KMoyF=ZkvvetuiDSM!Cr!>i8ZXnL6UfN2b;Q@sX)jL40Itoe&?HS~1d}M09 z5g(aafy76q)+F(fsZ~mRWNO_KADLRo#7CyqHt~_E)lPh5YW))*nOYIWNA_DIUFF$| zXN}|&*>8>H6WMQ#8>H6WMQ#8>H6WMQ# z8>H6WMQ#8>H6WMQ#8>H6WMQ#v=nNjzFxo!PD zaSqFE>mP`%|K`b_o7?HHugwG5`;RKlUM}luRczlWkd=2Y8*qKn71si_+QYR#t@>~+ zP^&*&3)CtQ*8;T~3~a%?JAipC4YU9rO9L%{$I?Ix;ITB&0(dM9v_Ore-UEHhtNglH znz~~u^}`L(L^=DaU(U>Co3?p!Yu?!xUA)I%%-i?t{FNztYx5w{YQAhtD|O>=Cmu&z z)Uf1eiyELDZBautxUK8$-GGG|6y~noo29uiu=nr}dTdzQg6GT97Cc{;w$S z`Qwx3?n@%~2vl#nN1(dOJwkjxP)ic`eV~>czwWOcijApQtNAL=*PGHDYwjO1C5|n> z9oV)qFAp&HfG)OgSbMlhkJ!F{`u^&!?R8ytPp=vkGf$Un+PWIsi@ilt-P~;E7v_nn zyt&_b>-z|tHm1gq)5g^BaoU&~IZhi>gT`rNYP|GbwY9wJdb_*t^1ic)O!ptJF0=O| zfBnzBaa9)E189@~`;93S+j~5h`BhzRZ!>mzonZf#t9mQ(4zD2W-$lROrha_bnxN}H z98+&!<>5Ys{!89r0A2%kLd9iA?xbLyqCvCmny=ry)qE%vt;-XT|Y4)f4!M^(M zWMDXI@BZG_lm4%Iq`DT|3{_gd%}_-M+zeH&Vwy4f?D~dJa5Ega8KB|F%|J6$ZmiSr zHY>~f(sMTash&LBw4>i_vHijB1>9pF?cV<0@iPv3iKyE4L5LjQ_O2~SJV;5iH2w;B zZAoGw;>?kCR5^Z;Ls*g$A*Icd6pP1o+cI~&Met> zSZB#gLzFZ})^RDa;Eg7U2PtWmY|J{7#6rZHqwW~_W^2FOYj@@|NZXr$x@+chw`zAc zE{B!*)||@hj98V>1|cQQ(s*$QV&Ysn*iMuH&KAE&TpVyl6OvK$4GEWtC zI}9e`%#n4XxGnKQh8^cjN`#a)OIB!+bIH2Lj$#`!^wQ=@UCA3y6AKb&mTWt$v*e{A zN}40QU(L8PQvawrb!(!|7+ zG*9F8L0y`7kT|ns9axS_JZWi4#gsNrR_fgfLSLeopwecFr%EI~Q8aowFJ$m>=E;@? zrG+mMQqn9jRS3@6G@2$RrlfhYLCZWk+4gu>AoSI|t_TlbbaAVBcSF)6s-`jSDV&6E{e=$x|db2t91e-S~IHdjog zf^$J(O@!OR?=FPrDv2{wwmfJpf2o*~=E*ubBgzElj2cZ87gW+r*{HQ9iiwFePh&1+ zyPven(+=9Rn6u8OG)PIaG+rX~rHP3tX`V(aguXQKAaQ2NI4*ON5j(OV*(&v+RwgiHRv`o@~%c)5L?s znx%Lh>>|*H+x5w$Zd)EAN}3~w>Yy!2JV;5iG+rFEC5eTIGe_1@<+#KXmZU^TX|rU7 z-mM+frHO|rZJt;PgmkS97lnkQQU=_;PSH1QyDX309R z+?IIa(v*rRZJw;uGUt?kCRJkqjq$Md4Qraw8p}Vz%zBKVLrOgvdf#6&`Sd-wUwIL&qGfTD{=q!0@ zh?3^WIxa;PywN1_ASKO`jag@sScs?`{qnjn-==M{i}t%^y;zjyyRvnapPz2ptj#w^ z$1mRH&BlDW_Q#)pdVO?$baql@*ZG^ljpo~r-QI6`_Oko*?V_xgZ@aJFe%uRBe5oYQ z?mlXJ7IXD??3Kmc@1I=HrVei*ps%m%&E~!N=sP8#>cWs_A!n@<~ZRn*PYA?~W+{QE)%0^7blk{sScTqr6)E2f#dE zH^t^UYs^Y>(go?$CST3}V;o*yZBhTj%u~_sLYdt}-35s&)?J{GQr!g!Dc4<)l!Dy_ zi7C`wkcgt)1qrIaU68o4-33W1*j@8$GnMLx-H5n+SSd&3g3N{%ereu>ra!NHBB%^GTL6T}P86>Z8 zlR=_NHW?(RXp=#LN;erKs{)fj;-XAu{7IonU6K)xi|`ovkN}Ml4+*gt@st>e5sw+~ zFyawW3L_pAYcS$*VFDwb6yq=AF+utwo)c#;;!&aUBA!;XyC5YEdl7~uuSi_6?gE9B z>Mlq~x$c6b6zncYOrh?AL=^2VNKggtg2a{WE=W?r?t;XW>@G-7;qHP&mG3S{T1R)W z-Z16(`bJF`UM9fnU@udk9M_i#P`dcb1TdWhW&)g}1~UOhM}?UHsh7h{fY()GCV=W> zF%#f))0hc>I(y6nSbaoh0=TkG2I*{GmthiR7Rf8uWT2E{O$JFR*kq8Hl1&E5Db-|< zjIvDzNvgqQki5c828k-!WRRSqO$G@n-DHrg3QPux3o{w(+JE;YplMx{kq-=U83mXK znURl)u^IWCAf1s93h){EkT9WN%aSgn!IE8J_4 z3J1PK!;@Piuwbu&V#@UzB&KAqL2`=r8YHM#uR%fz_ZlRs3a>!|OZOTit7xx5g39(9 zB&m3>LBeYA8YC~wYgnF$KRP;o@h)#RMP2>)^G~mj&X3Mcs_Z&v{}`rKT6WJ2wOLu7 zy}332f4;1%Dqpr{FX!$1bv_qyc?x1R;hFY+lN{vsa}BQWwg;|)eW zBT8Z9lVTl4J}*pS4( zlR;uiHW?(RRFgq6$~GA!sRoll@(MQ@B&uYSL2`;V86>E5lR>g7Fc~B+%4BSJU`_Cn zjCfpx$H<2SXpDGBh{cGf#7K;I%y@?pkBCwj@t|0P5swQK81bYSe-V!f(iicZIC~L~ z3Y8b}w4&VwDQVb?Ff4gR;)-<_D5O+(K|;!P7bK-%cR^wbbr&R}Xm>$^DsUGhu55Qf zk_vVgB&K9{L2?Rr7bL2DcR|v+x=U48Iq?+~w|9`;-Awn@;D=Oh^G$oQZDRIm_xp9d zY3GZgP4-=wZfA7!y4Z{UtU7!bW&*i%@)!NdbQ2i;oZ|+gpV3ue^ppBIjDB8ciP4Yh zW-p{kXDC2I*{mmtoRm7Rf8uWT2D|7h?41Qn1M&lPTF`kepIY z2FWPfWRRp9Oa{p-++>ibl1&E5DcWR^pwdkS$*RC)khmz58GnDl#4gGx07kfs226m= zD8Pi+i~>%K&L{wl_ZbC{D4|h+iZvPqz%Zpzz>0Ai1)w0QQ9z2b8U?UWtx>=$+-r~u zhrL9@lv^aQV6TB<%Jmu~rev={a*FmEB&b-gK|%`m8YHR;uR#J!_ZlRtXsJ}K5`U zbu=04omEqOvDp-W9b9G-nBy`t1xy#4nF6Pi&P)Mx)Musu=_oW)K=m@3DFC}F%@kOj zoMsB3Zc;M^QfI4~0<4eLOo3Op*B}+n>k>_>+#-Pmdkqv*uGb(jC3_8$Q?%D0LB)Cv z5>mL=AW>C#4H8(o*C1I%dkqp)w$~s@#d{4BR)g0dd0}2-6#*Gfm4L-Y0WrjEG;ku+ zMgb?rZ4`ilaZLnv3Sct!pgQBB&l%AL88jH z93-s@%RvIeEQjY&?4zUO7w__BQ`FUuKmYXl==|vHq{^=IH`hg#FPrS5{cc$=7G=I^ z>nfk$nwONFpKjW$%{ON+w?EAnWxaemZ{M$Tu;j=GhB%G_OoZad$HW+pd`^(y$Oi@Z zjeJO$-pEG<+l_o+oZQG~1-XrUP?XxpCk2{~d|0g5$mbRAHAsb1;WbEL!CnK!ldjxh4ap6l*d_O2HlM&?rE~8jS*An9?X<#W;-uP>|FpAjMgY0$8ZlDBu`nJtwPjtI7qGSFy=>jP)#fsI5msaC1|gIHsgX|!aT@uU z7^RWV8E-W58BszbpA_pe@_Au8BOeuGGx9k>G9w=p=Q8qHp(-OESGLI@oeg_|h9|Q~ zUb!X%r4(y2NJ_ybgT$0c&}RLLfT

c(NKok}gJe}; zGDuuklc~&SUWiK&ZtpeQE&ab5yohmYJ|lCoZDICl_xp9dY3GZgP4*RT#U~Mm?#Uzo^G_)ED)f?)IV{)k|K~ z(~5Q%q@?*>gh`TDB(7L@fkH}k7bK)ycR^ALb{8b3PvaxB&lF` zL1IdF7bK@}cR`}ccNZir%3a1^XE3b`FY(NWRR>1Oa_UIGMUk*+^2O( zMm#RUW8^~uG)6om#A3u#VkAa9X1v3QM?@)%cu=gth{uHqjCfLvzlg^K>5F(yoV|!g zh02R~TG8%;lr-!`7?!*uamBg|6jG|YAR*yC5-zx(gCfw7Vcd6}Sr$SGKz# zNd>zL5>v9fAUTD*3ldenyC7*D-Nkyt)C6BbHUVA-dzk{|xV}t)(#2mUfaxSK6W|;* zm60aPc8nELW4}z?E$>NN4l943j9cNM5-n z1EmyeGDu3nCWFM3Y%)krsV0MDlx;FdQVk}98Rp&k52Q`Je!wkq-$I8u_ST zqmd7cQyTfKAg7TJijo@nq(G~Y4~x|r`Mkot2B~o1OEf&WMFI=<8Yre*uR&r;_8KIo zXsKq;Ri6qN?y3B(QX^L9&YW8YHM}uR)TE_ZlRu2CqT#!n}s%iTIeJFk3awP`sn=V?4-)B^EcN;l`os@qWx}JFBWCKY3nMV-)3cbe!6M1Hs74R-2OCQ zl=brMynVmU!CE7p7h*N?DG^d5o)Y6U;xR!=Bc2mrG~yXyLL;6O>@(tdaXKR&6=XBw zIZ-kr9u(*@;#sjOBOX__$snCggUKLy<(dqXQmn}!DFvGh5>v9tAUUO)43bf{$skEJ zm<*CvxXB<yC5-zx(gCfw7Vcd6}Sr$SGKz#Nd>zL5>v9fAUTD*3lden zyC7*%?!xoLd$MO?M&(65FT!3FPy+NtJ|)Co}439%p!T^nhcautjQoL1)B^KQ?kh*Ii;Em zl2NwFAW1ct43by4$skcBn+%duw8N;&8SgOS5m5>w9u#XZ;&EXDBc2rFFXAyl`XZhaXD{MWq4FZ0R)@T#}!<0q=E5>OQfP$n(0V&RE6u?5YMggyIuR$st z_7V+KZjr!(y#|UY*K3fNlD!7WDcWn0pkloS2`Subkfy#@&?+iQ@d z;=Kk5tHEoKyeO|3f6>9TF4xHCMOcjjN`TbJr-V3-d`yhe$mfhV8u^SUp^;CD^%?oR zFrAT)im@5_oFJKz4~lac`K(Ztk&i3eWRT8=y+Fg0StPGqlYvr-H5nwOV3R>&N;VlJ zr&NJ?lRmqdqeQNJpWW0;-qMOaa(cX{NyH z0Vqgr6p#Y!Mgb*EZxpbC{YC*XPH+^!f(%CiDN1n^paLC70WDT?6aY)N9Hh~KFW)d_ z7fCGHa-f`oEeFXd+H#PfvMmQmD%Wz5l+rB+$*RM0ki_CG2MH_Na*(9LEeDAz-*S+& zDl7*H46_`b$Lf!cj$gdXn@v$yKmPpF>!b6dvy&>j&fi=YRlaPpi}t%^y;zj_rmd@d zew&r$`RS(3+I(~Na{JSKQP#`1^Y;BZ2TP88V2I-=z(gpHd`yht$mawJj(kvn-^hoA z>5Y6;u-(W9#>tI*R*>7s2Surkd{Us<$cM#>jeK6=UV~IP6<&h`7VI@pOu1fz#FXqc zNKVmSg9H`pHAqO|UV}tc;WbEL>0X0m740=hP}yFCBo*&9NLUSCgXDGe8k?X^@l|OP z;B~N?DNv3}%>*c2oMr-;PD(QY&QYV80HdSOOn}tOXC}bwsxuQnb+VZWaJtFN1VEi# zW&*4}Dl-9G*(QT@Hm?gbi871im1{CkO0gz`q!es2NKDBlgXENIGDt?*CW9o^U@}Nv z;U3V4Nk4N~E-muQ%Biv$+z zHBd~sUW3Gx>@`SE(O!cD73(!fNa0?CL{;H6NMPw+gJc!$HAqm|UV|hR?=?tR4PJxf zMR|?w`i6{exnQ+MJ}<&*6i@=BMm{CPY2;&Kltw;hywS*KL%gASis*HSG*(QT@HVr0&;m*m1Y90ZcZ}+P)Dhm0I9pxOaRtPYbL-e+-r~u=XZ%FQErjI zg1rWcDc5U|n3BB)$tl`vkf36{1_>$LYmlfayaov@-D{AnqP+$QD%)$2q~g5>39G?t zki00b8GlrMY8PxY5F^Y+1t&mlG;l)PMgu5DZZwd_+l>ZFl-_7y#rll~Vwm7)fW;V& z22zmXXh6j|js{w&#`}!|NR-|vK*idP0$`ZjC}737jRH`R+9)8!nT-Ni zsMsjr749`ig~MLFVahEMSg_YXG39y<5>v9*AUQ>Q4H8tW*B~K?$~ufORsQNsziJ&LmKs9cL1>K9VyDVCj~FG&--#H_5V#B$jMB zP)@;?gX9!#IY?01mV+dfYdJ_t>6U|J)nPeEV)2%Pgq3YMNK)aJgG7~YIY?R+mV*R_ zS&r2TgglG_)*KDU5YJHoiVz(QpcvE9KnhYF4X6Ou(SQk)9SyKx+tGlG(;W@8Am7n| ziV_|TtU%+@fQwZg4aDM|2Pt?;oCk?4+IgU$lAQ+$D%*LGq{5vCi7ME6keK3~2MMdh zd63BRod-!P+9k0s5etU z^|G5O0K3Y~6j+_yW(uHgYBL2=XS10CtdH1CfmgWKAQjH*;!UdDB7p^a4HQ$Z*B~(^ zdkvCPwAUa(#d-}AQn=S3QB`;i5?H#|AX!Cw4H8tg*C0v7dkqp+gV!K=QC_3r-3nN- z(Ljta8x@=Ywb8%{aT^Vw7`f3v8gDlmC{cQ&ffegF8i-+nqX8CUI2uSnilYG)=QtW@ zp^~EkSi0pPjZTN5T$ZtlcO8hRKZrR*c&y00pUy0#cmW zD1e2EjRIcbUV~IP?8O_V+#-Pmdkqv*uGb(jC3_8$Q?%D0LB)Cv5>mL=AW>C#4H8(o z*C1I%dkqp)w$~s@#d{4BR)g0dd0oAxGGCP;u1>hUD{bciUkzU0xHVs`+1nb8mG?lSsWy;Md&u56P*I-B1Gnlzb3^2#+CD5Y4FK~f4f86>7;lRL$lR@I5OlJJ82ot*~qW~D;G8!-eGNS+! zVlxUjF*>6FG~QvL6ad4NMgc3vX%v8hq(%WL&T16ELbXN#uW+wHDjfC_ z4O4EBz=FL7iYeD?keHIa2FWSfYmlH~y#@&>+-s1iD!c{>EZu96tfIXJ2`bxbkfh?h z1_`UdYmmGsuNi$*eqxtv&d$AXycd3=-GTWUO~qP4UHMQvh~wnMq)d z%ghuoU2J9woK8A31<+BSnF6Gv&`bf<%V?$m?5Z?VV0ChuDS*03%@jzTt!4_aK3X#c zUg2JYR5-6oG^uin1QzTyP)xaAgT$2VHAqg;UV{V`>orJ7;a-D8RpB*AVCi0iWEJf- zNKn~cgCrI2HAq+uUW4R?d5u*Bx-ZP{Zr0NBB^oPFcZJIO7cz(;W}|@a#( z6eKqaNC9@EfD)!R3RuB@qktGEI0|4vhNFNKr8o*ufsUhq7ArXlfTddw(&)gKZ6U|J)nPeEV)2%Pgq3YMNK)aJgG7~YIY?R+ zmV*R_Sq{%*^+!j?FW%+Nrl_kQfBxz9(fQHYNtIpaZ?20fUpCoA``xl$EXsV-)>S^g z&C2rpbkk;SzBzlj{b{}^>*d>d`+l8+B}YCm#Bmg0A{0kHCdP2&bAkj%J}AI%!(zooKCf`EK`NXIuR#I}_8KUrT(3c5O7ra!NHBB%^GTL6T}P86>Z8 zlR=_NHW?(RXp=#LN;erKs{)fj;-XB3>9P4_&(Msji~?YU%V@v^$czF^h|MVA#ORCy z(0HFw0ErSB1*lk~Q2-268U?Hvr%?b3k{Si1IIB?r3)LD0yu!T(sc_g!G)%cg0t@yU zD5hMmL1Iew8YHJ^uR(%}^%^9kaIZn4s_+^luyn6MvWoT^B&ck!L6VC18YHX+uR-#n zyvBBYL&mpUuv#OZ7hyFDC;?IJ}Ay*N#E?#?)U3@)6N$~o9+o3^|&q`qaV^iW7I=BS&Vv0H;GY?Iqop( z5nUBVJ*c0-sK<2{81r1qvzE zU67D+-33W0*ju$VAQ45o3lda;yC898y9<(3u)82JCA$lfQ@FbzQRTY} zlGf2(tT#+e@Fipu;B~N^gsQ zT~zt9$u8ROmi1y$=9{*z^7(C6mglFNHf!_E*~{%u^F>)N-_G0j>l~~#;&~xfBcBo> zHR35TP9q)@q%`6=0Y)R95hgU^Nx?oNo)@Px;!#01Bc2l_GvYykE+d{5t1{woWt$Ar z*)*68l2@+DKqvW3Wt$9=RD;PNd4-z{5>>LvAUQ>w3=&kj z$sk!3m<$rv(PV5!Ho@1L>Bn{OmeQj5k$b^AaP~83zAf@yC5+oy9<(2xVs=x<+}@#7UeEHPrN647G_jlfZ7d5nBksL062 zm2EOeXTx5G;mItLSFXuGDaD!$l2WkAATcGI43bl-$sieJn+%dvgUKLyg_{f#RkFz- zIYpZc5>&d$AXycd3=$V*GPa8tB0jEy6&dlk2#=8u3D6kvkPwRzPl=Hj@tE-rBOVc@ zFycY61|uF9CNSbjG5#VR6QnQVIdS$P9u+Dt;%P;@3sTY)xC;_jth+!VrMe3eQm(ro zDFwR=5>u$VAQ45o3lda;yC898y9<(3u)82JCA$lfQ@FbzQRTY}lGfE-D)Zfyvp3zR zR+e>TKFZRXZ?$yaTbaAPgY52>tFHz_+?o%&becE&wEO+K-n8>Y(WZMAMnA8My-a}8 zL0|M!I{Ax!OgDki&pB=|`WamnMn9>a!|3OAmKgo0ZWg1T(@|segSvZ+epWA$(T^+J zWRTA0cNr#4W|6#dO$JIS)?|>Bf=vdADcNL@oKj5&$tc@okfa(+2FWYjWRR$mO$Ny+ z+GLQR(oF`*s=#EBxG0kuf69Gg7iAOxBV0xUCO~EsU_xw00VhUh6oAJ2i~>lM&?rE~ z8jS*An9?X<#W;-uP>|FpAjMgY0$8ZlDBujEfQF;*FZ7ldJPg&vezIv zMSBerRIJw^A%%Ml5>0X0m740=hP}yFC zBo*&9NLUSCgXD#Ija39>JXHb~8wJD=v(dnbP#XoD7`IUX3X&TIqyW27Knc?u1*~Ad zQ9z6n90jl-!%;wrQXB=SK*v!)i>X)2T3g1a-f`oEeFXd+H#PfvMmQm zD%Wz5l+rB+$*RM0ki_CG2MH_Na*(9LEeDAz-*S+&Dl7*H46_`b$Lf!cj$gdXn@v$y zKmPpF>!b6dvy&>j&fi=YRlaPpi}t%^y;zj_rmd@dersM*c7D2Pvo_zHz1;pZUzGLo z?Yw=z&cTu+9~j~|3NR6hBOeoEIPy6`f+HUk;5YIiVR|DU6>K;1fpKyppB3ab@&R=AW6l04H8y^*C2Tvy~ZYJQ+!q01b7{+W(t(!QZoTc7pIv3rjyc4 zfOFJnCcx+@G!r28@|g+ny6VgXP@QaM0-SC#GXYR%mze;okIGB{SGLI@oz3e4O`^;q zdF7f6lv1q8ASnf#3=&ha$sjqUnhcUrw#gt#HJA*NSGdU_Q6-xUl2f$FAVH;@43brW z$slo2CZph`2w0U-0E}=M4VVC#QGf}t83mjeolyW9?=uP@Q9`2t6>BsKfMH6bfED93 z3P3?pqkt4=H40#%TBCqhxYr;RPKDPXfdzXF6jQF(ATcF-4U$u|*C0W~dJPg%xYr<2 zRd@{&Si09BSw(vd5>&R=AW6l04H8y^*C2UOUSqpeOX1gRY&g4ThFbGNwX-+fYt@!@ zWnRG6n)kAG?^c`3;6+%Cts8_;0;EPhCB$juV`7v>K4-kq$Y(?ejeJt9&&cP6>5P0- zjLpdB1j&qiP@K!iXN9Vad|cTkgLF3R1sa~rB6;PS43tu=$sj2On+y_DvdJJhrJ4+q zQMSn-Ni~=Zl2^FNAW0~kLDcvMSJ?6N>s7G{F81QTMqMLn%(cR@;;-$j@tc}3!ibr&e4RChr_%5@hc zrC@hKVhVK^B%)|{L4qo97bLE1cR`X0b{8b3WOqSw3U?PIs(g1r(xTjD{B;J?y6_^O z7hx|7C;|E+pAzCP@-Z<2BcC(gVB|BR6h=NN)?wuH!X!pMD#l{ubAmKRJ}Ay(Bf=vdADcNL@oKj5&$tc@okfa(+2FWYjWRR$m zO$Ny++GLQR(oF`*s=#EBxG0kuead}Wmt@4_B0NSuBtT=tLqaS@JS9eA#AC)gjCe$p z!iWdO8jN^cn81i9#rTVOOpv~a=fv5IcvPsoh^H0pE=WnkUW8%ED-u_%yFekOx(gCg zuDc*91-lCpQ>eQj5k$b^AaP~83zAf@yC5+oy9<(2xVs=x<+}@#*3n(8H%v|N zC1exeb+DHyP>$=%1SnnnWdfK^0y6>5QG=NPqocx1fYi%jCcx_|F%v*_vX}{Qx@pV= zK%G5i0<1nFGXY%LCWCY~ugfrrGK=JuYcfzuu_lA06l^j`OvxsL^gsQT~zt9$u8RO zmi1y$=9{*z^7(C6mglFNHf!_E*~{%u^F>)N-_G0j>l~~#;&~xfBcBo>HR35TP9q)@ zq%`6=0Y)R95hgU^Nx?oNo)@Px;!#01Bc2l_GvYykE+d{5t1{woWt$Ar*)*68l2@+D zKqvW3Wt$9=RD;PNd4-z{5>>LvAUQ>w3=&kj$sk!3m<$rv z(PV5!Ho@1L>Bn{OmeQj5k$b^AaP~83zAf@yC5+oy9<(2xVs=x<+}@#7UeEHPrN647G_jlfZ7d5nBksL062m2EOeXTx5G z;mItLSFXuGDaD!$l2WkAATcGI43bl-$sieJn+%dvgUKLyg_{f#RkFz-IYpZc5>&d$ zAXycd3=$V*GPa8tB0jEy6&dlk2#=8u3D6kvkPwRzPl=Hj@tE-rBOVc@FycY61|uF9 zCNSbjG5#VR6QnQVIdS$P9u+Dt;%P;@3sTY)xC;_jth+!VrMe3eQm(roDFwR=5>u$V zAQ45o3lda;yC898y9<(3u)82JCA$lfQ@FbzQRTY}Mf;vC>4Ho$2}fM>CN&<_yQ2mJs+eb5gO)CVWAeb5gO)Cc_l zL4D8$yf8XZkAW`#rl3)%syJy<~Q?2(H@f4GKZJ<_8Zq0{{n48Em?k1jhFC*l|c-~#Zp zM-|-$Zd8$Ngp8`@@Orq;2D*k{CQ1`+!l6??`wP6lGb#>qfz*f<%84I3u|v0>w6AT~8l zez8|i*7c^%oBLXF{Kc}q-u=`3qA(wME%SGINmUR3NYohck3?nMKN6K+|439e{UhOW z_X$xg{P*cISfp1(q|f^!vsyNJo8J%2v*+EJgXgzbMQcv14Su?KeDl+~$*S#%xxnpT zT$|H+RhtC|I4_IKtJWO9Z^C!t^nG5I^=GT%*|P zg=>scYt?X#a$>0+t}(0?#5stqj<^P~R1?<_)|&EqucoYSiuQgPLDaA>`x~s+xw%47 z*2}jeTYYh`mAU9Kvd!M*x+W{{|NP9{(P)00cdMK(+q1J(o*C6QK2PkmTdeJj1jV`= z%b;l6Q2+{cR{%lLo^-#{wO=xo``sTE>!ACiqV0EoRH%dQr=tC`KV!DTeQ%nD%mJT> z`>CL2l}E&bgaBghrv(u3AUS}Tjx)rgD?6=toWFnpbdVfC%>Cp50v;rXin*uj+nIBb zRrImr_!qmQiTR_)3+q(g-9v9D5Krj4Wbp*wW{oHEUHW)}cav-|w9{EM>mVUB86Db| z$>`u@CZi+UGD!vBTdUr6_k6o(15HfN_+(D0iSHNRmRL*+WOgy(Z7IgI;6G#iQqUbF zy()rVd|Qe!lYmSyCcG`hUM*ai)5Q0)_}E-u-OlcZJJgP5cZb*QU(MV1>%6nH$JLA1 zXbNa*_Tid3dTfeXnhcJyI4WFI&puqPhMQu^)o@cRxf*V&M}^DP$%o6;a8o@h+!P*e ziX~UWP4%d7xjOxDxf*V&M}^DPa8oR~8g8mbMdj+Nr{_?%lD93lU*iv0u(oz_}-iJLdU|Yk-lpYtb4~N_8ak016<6`f_9v85!;bTgV3)qLlZS}a=+v;(# z_hFBVYU}TN{?(ZK+RS6Ft2|$C%B(f#0h?m^c5{CqBktSyJ6nXdDD$xZe|s39%G;~$ zZ7VMA|I6X#>$)s9R|ciKRd3VQl_N|4 znSwNXdGmO?pzU5g_x7HB;Py^FaC@g8xVoTiGukZc#@L=3s#JXwnxe3raAip$ErtL1aZHi0t z_BN{Ogh!;VKZHl5t~i88q^>c9N2IPQgh!;VBZNn!Ud$98k$OQ>ctq+&P2mwgC+1ps z#4q3xzl2Bp6+Ge_c*I}BBmRbnIN&%J01n)oorhtGf3T8PPif2R;AbRN03Fr;Y%S;MBpuKe)LX%-81w!Et>)5FFR% z1Hq|2-@DIfcap>mMf0v%bCb_@!E(QTI{xKlQ{R~P(r*88e1u1arTRHCEY-u2VVU}t zTH!?QEw#*v3`?zbBEwP(p2)D&swXlmwe*P$ORaw*!%~Z&$gtE(C^9Uy9EuD}t%)MT zQVXM@#Yvk#XsVlgdj+A)+bam=-ThCs+?~sAn`}+qXZ3gz`f&Y3ESCJ5c=qJV_5KnK z(!>dW6Q}%5m|L#*F7fYm6tyY_<^t1%H5ZsBthvB6(aS}5d225h)Cr^DTyQnf%LP{x zynhQ)5)?83c{Pp2^)9wo8o@zLM+9E6(B^P1QD5nUEMyW(t zG|C{tqEX_|f6~5rzZJ)NVJcYh`1U&Du-kvR>P>6ji@Lqf`d&DRZTgKpY!h%n-#3oS zfbQ)N>{L-dRWb2h27OF?muV0a-(_Mr#~(O9LLFs;`hOrkwEqX(16bb={t7zkl&*+x}&l{jmLdY2KIzJnOc7{H(9@>LVf~RShCSQUxF) zBsJ$FLQ*S|h>#A;l2z8co!8l0?DMC+B}7~U)M$V;K#dJp1Jp=?H9(CUSOeHmWDcON zpXUoB7-#@HiUu0Mj-r7Eu%l?80qiImXn-0;z02VbrGh+1ig*^)qrroR0eWXZ4sVvH z*2x|X9^6gN-QdCPYRe%@gSH&9G-%5qOM|u?9!?8t z*$K)aOM|u?vNUMRAxnd{93BoD<{Yv#Xv-l>gSH&9GIg9dPTI;f@G4Ibo> zyTOATayMwp;o+cR&LK;Kwj8oFXv-l>gSH$V&O?q`Y8|D325mWHA++U?r9oQ`4+jmP zOKr83r9oQ`SsJwE(7nOlfCZfNa}2IL`drVaYRV!jB!Lr>Q4NKkknoH z5h1BN@FPM}ci%^Zr0%?r2ua;_9}$we<31uJb+>&)Na{}eh>+A>_Cpud{GYI+R=Swz zR29WUrwS@2I#pW(qMNH|u8;6xq67PVVBdlLJ`kPi_ugG<59Mpe$eXyzS_mshR%x>}nr z+upZ%T;G})6wE23u6yQ`P}g8i`E(8Dlup-R&}>pizo2YV$Go6m)R8VI7Fn)e|UVQ!76()o#sXLE^pd=b^lcRv1?(Ai%M0v zxTsXAi;GItytt@T@r#Q}Rl&HZR5^@`O4Y@xTsXgjEhRu&bX*l5siyV zRnxerR9TISO4ZlTd-XNXR*Rd>)qOQ3?(O`T-cSE`_XY){_N;$$bN}g!E!^gJEzCacT3FW`>&Ke3@=$f`1MocGT$wZx8Pu2{ z9-xF7I%&;RoKS*Tc=+;T9ZwodTq2;98L}b^EOOTU?Z%w-FM^3u=7^;%Q0v6_1FJOw zyRyJhxA`(;>wk@9E)7q@{8&e1a7o~sL8A%c0ZN!58?nX&vG6eFC)!o-M&xv4H3%qS zhQ>=m5D{aM8yj;>Lrmeu#Kngz{&%ZFhipyL0N)Wc=+;T9ZzmcIavux1e7vER^;6| zZc#@e>;9^&a^plSWr6QFln97#7TNk=W0_0ClQ2Kl5h<|9jV6c(C}DE;;9X?wKZhe@#V;t0hPrr5m3SmG1UdWSu~m=CZdEnvLQ=68rk-DR~BL) zgxKZyiR>|Es4KfM&$QkR$_eRf7*WC;jn{=RB*s!VHte{N5@yL(JGxq@E=f#8d^xg? zDz{~wv?L`%N|_}qw8*(+-Q#ZLS^pw}DP^9R3IyMA$(jVW1>Ri<&-D;rmTWoDS@Kd5 zCCrg^Tt*ZJzL_+dBrc?cS+X(fOcE0jV~)ne!gi-;m!loBXZdEFM`?f(W@x-HXiE_j zQNkRJ)&*@T;sN5zkabA8E$f7(C>2r499fwq9*wL!?5MFp<1S^EcxnURl3_eaJVbms zvhAuN(7WLLssP7IziMNvhJ^|v<48R z%n?gjNIHvRZ>$?y`S4}P*8dvITpFH)`LPxafkkdKK|DYSGh`#ym>?D&#{6_gMAkcp zyB<*_t9Mh(&%P68XuKo@5%Db(M$acO5hcvgXjRabA|4>V3|WVi+fq(gic%4!%#oG3 zTP>(d5))F&Eb-I^zT=TK1-sfXrmaE4jxR^H45%!2iGUJj$T}z`mb%dtF%c!qkqud8 zig~VphQ3^Gh{^$uG)M@A?yBjW6t^)!9*!@#8MVgricZIFGIH7)mY}z@FdI+ zPf6gLL8A%c0ZN!58*y;WPM9DT9x6X?u8S&PHrYk{-73%5n=)(j`JyS7Z#U^lGT(3ZuMFcd48QYS?RL*Aopb*zHQOemBViT%@B2&t&5Gr#=jlfxXD+WwytuA?f+qD`?e_a z`KrEInEx>YXK|nO*(YtiHvdw$^F`58Gbth@HJAsxsM|~b-3y6D?bqOd-R)PK70ts; zo4veQZ;I8nQ*W!T?~Y&H=0&rr=c}U0m#vwDRCglVct%WlWE&?Rpp8>>8?z6PkAXJe z`50&eo{xbxsC>|K?be*tyDuwe!)G(|Y}49KA3CnG$L^rr{{G4NMQSQ4#i6PfKaRta zR8@L-c+%x(d_}4%JuEnE*|82Lg~crqPs03IiFbx7Y5rJu*Yz}M08qjVu~Y=M<-vG@ zSa{g-W7}JW1uhLvy6jkoqrCDqnjRjWbosFXD@+dy4qtY<10nBoDBC9VsOjDG8kYIn z{7&Yd@TAMncr^$DVp|-Ho(f?CN|&M0f}kuxJUndqv5qIV<(sSor2`LPlQm+OQH;sHvSA(o1eFhMLlZ27V6t-=DA1}9y1c&Y*0>={iD z4^O)M*ns67eQbN{cJgf(!B6G*vNPsB<0{uhpmBD?^~qI7zS)z8CtZFVs)4QqF#)B^ zkga0u>YJ_v@$j(a$2y)Imv5pHlnN+ehOEc}=a6-OyD?||i*TZZIpQe`YzqZz0vs1| zA!UIrL$?0cSmqM(q|1+WM243Hwiz^=!*qGxYN|&S2s-P`JOh9ZIvJNS?rJS%7B_m3hBP(;aT2PlHE~JE6 zVyX>n$0KVB+_W`p*stoy67%8e84Cdu%5aFr?I0b-j)w%yfO<`VIw%a3)637kQr31R|D zmmwRm#su;3@Z~4oRl5kZ+jSkHNL2%H(q+e?90c&NEwd4#8o-k-KjYOP04H5~Sa8^~ zW1Sq1%Qs2sNyL*dKUU)1>Ofb5cz_aSh@~R16*z16?<&IRiMW6P$Ce*k?<*{DX>ihI z$2uJ4mABFK@bIL|j}2I1dRTDyveOmX;d7sEwe4;=PDV|Gc+%x(ycz@nu`Lb&avB7b zE<>XQA&4hkf_Qk?@?)JK8cSR%poAH+B6n*9S#!v`zulO#{zW)Z!W{9G1-3G0O~9@! zj7e(Hm}AS3t^YNaxkNna@?#y5;U$4>28||&2`F8LY{VK9#KXgvpJ-Rz0Z&F%LvYe% zXS^JQ@bHzlvC+oElP*7_)j(HzSa8^~V;xLx%QsQ!NyL*dKUU&yb)YOkJU|IE#8MI1 zjz8A!cN5f*0mqgfTkk6@aA|PTWyd-k<(0S5^ziVc%a09MVR~3_sO)@oT~zt9$u8RO zR(ZbOlv$h4+oH@j=ck+2{IEGXe(^4EHbq_i`14P%kIs+IPO9uW|E#}Z^?u~9|EmAj zZN6;lX5M5)dB550)9p|5Rn}(nMbRD|f42L%Xw2W5rl~_sY}{uAU2NPFrnsj}anG3I zo@3(9n8w3FT+nzphzlAI2XR5;;UF$(JRHPz84pEvU0195qO6y1@9P6GjDFcGD|egK zO+K>GulgI+O<@Y2sdPp2Q1NCjZ`PY)mCsl8ZM7>$uWs|AS=IB^SV4jWr$!+pI5iX@ z!Kv}+AAEMq*yjVmaeY1z9M|Uq!Kps)AEAq;y`L3lADKbi&fE9v{M5+DbygCS%VGOv zoi&@B*uKBC*tU3Ev{&<{uG@!+Mr`LObf)n#uc&OU9M;_@gd?fQ+Zr(*yU_30SEM1492Fj1e50Zi1V zV}OeK+g=^0Zx&@fU*5FyWxZbK&D@yE;=U-%K56T<`Iox26@b8S)ZTr0uy^Y+s~*ej z>(y?byMOJY}V~^Jcrk*g|w`9NRwoH}YchzA^PNV{GF2Ws_|-j18PzEYT~aC>e8mIE8{r5 zf_e7x@!z`A^vUMhEX=Nq2$?^1E2ly2e6-1`6?Y>iw{^W@g!p(_FU--18{_$+DVA?J zId+49yP4B}zsZ{R2S$)js=U409!{A%%rZ-$vyqx5&_)Jk2{b-EOQ6jR%@Sw>ACt2L z+RWfAfwo|oB~&}Vwj4{ozF&Qxz25cE_5jlzOy*yIx^;2SQXksZ>H4NI|L0a-LK}It zZi>xyW>(g@IfZd^dBxk@%U*MX#{%`Nmusi$BcS+B^F&&AeC@ z-DN&rm{$*-_d%L_VNSwT>=}B5`XJ5OXBc`uJIpY2lVdXs-5xQ+(9I0bFmx-AgK=<% zp_?0?Vdz#Kp$2DINORxP$FOhjRs_(an614}?~Y~Y-0o6*4Wr^Z*P0DJg@dH4?LMdXCH0< zraQHBTxV~I`zsD-tykpJ&APc+QumTX27kUNn&lPKj{oJRx-6M?{4`sd+g&oAJwMx? zTAD*MI%69v{mAgK(hrUvEB)A~=&`aF96eV0!Nh%{wCI)4WqLdpG>$WqzGk z?fl>FXFO4r1~&QK$R@qwci+nI#+vEfy8gIL&_-i>H`vm{)jOgW1~+;*m*=z5gK_w5 z^!t$>AKbk^glzQ3kd6KnveBPMHX0g5A-N42dcO;5DP$D=E@Tw_E@Tw_E@Tw_E@Tw_ zE@Tw_Zfq0{4T!NGAKGTD!-uvR>+hj$#=3iGo3Y*=+Geb?hqejn>#+$taHI%G&(~u` ze*ov}vDrGbO~}3l44tn7hR)XkL+9&&q4RaX(D^!G=zJY8bOO5in}DJ7O~BCkCSd4% z6T%ZPbiN4~I^P5goo@n$&Nl%==bM0`6VPqn1`M5V1BTAG0Ym58fT8nkNFM|Yoo@q% z&bI+W=i7jx^KHP;3Fv~~2MnFx2MnFx2MnFx2MnFx2MnFxhxA*((D{A9(D{A9(D{A9 z&4(&8y{=d4PQTa*H-I&lirIF5cVH z?BVv=H{gqGK;fy^s(`{%FIEACr(UfR5`N&#E!5RYP}$`|@*C^U817|_?4(1U%A2|d`?ROsG)3EL6d)T@W# zeE32p;zF-a461bb#GvYvPYkLE`NW{!rRNiadT(C;5|qhHcO%q&W{5QG*Fy8u{PN1Y z%HV#Zf!m-!aj2B~?hln#-#AoiedAE+^^HTNxcBP3{QI?ean0)P6-f6fBl6R`W%gma zhu0^KZ2NbQx5*uDYr9pL*q6|FR5|*u?E43Mns>9cm6mwKK35q!!BP zc3AQ=z{8TCfp)0;{L|t5xqDk#)Em|!!&0;T^T)lt$eL^OmbJ&#$LH5|v1xCb;)m^1 ztJn2SMZN&iGYmBrJi}0__6$R1(lZQou<{H;9jiRUd_o*9Ji~lOgn8K;H|FHZgMqm{ zqu{W${W%1O0M=&>9JaSVPv8>3`pkes0FUPaF19)7-1~m@v8Tcx7uEbWE6dJ-XJ@r} z@2gFRdv)xn=K)jn1^XtsKe!_e~ zX!b?#AJ>` z9xp&2+s?K-Y)ZMT!={wLI&4Z=YwteBi<_p(dYp&rZQ=~0PYjCQCkE9GJ~0seK{>q7 zeozMA`#{%aQLfAoT$Gu)SAP46ulqACL^^th>dVr6>u==Gd#9$mKcBC&(I)n`sc)a$ zBY!w>h8D%dp@ljF?b+mD#pi8uu)QmM2)a2lZ<)s`PvAj(Vj#%C%2S+S#lY=9c zm?WU#Gq@_?ZE|qL@-{g*VtJb!9I?Dj4vtvQCVS#^Y3_}fmxXzrs=8k=AAfayQ?|wY z!dTJ#;knQ4)r1Xo01ggFc~NjcN|J&DQpOY5(E|&%e zq^_I>2c#~d1_z|Brv?Y4F0BR!q^`0C2c#~z1_z|By#@#TEpaX)IN;x-1O5X#;6I`R z{u4UjKcfTw3p(Jxq67XLI^fsnfZw76{sA5EPw0T(p#%Om=z#w%I^chY4)~wZ0snh+ z!2baq@P9-H{GZSP|7Uc-{{_sjt=;LpacG&=z#whI^h3}4*36| z11``3SLlEj=zv$~fPX;;EYSfgbig$_V1o|Wq65A|2mBr#@CS6j{}&zb|04qS9w^(M zKQzx))r(EBDzb-jh{T4yS3hkxbh)hGzc^DnzSXjK@5|+OoAFm#_J!SSVIJdevf|;z zd9zQqKh4e4ZdrFz_3>xBpC8_dN8rXqbvZZczppMQNd2R_oF(;->T;^oKdQ_5($T0h zmN9S;6*2}6qC&>NK~%^XIEV@v0|!y5G0=N)+1;njfv=~91gAy>BseuNAi=5e;U9e9 ztx?pKDM)Z!pAYOguFnU8Q+?jQS+4QBS#JC1=4QF}>i&8maqxTf_$DJWmEPqKM^obO z`v=P=dp}>AS7trFQ2O}A?&rw<`o)S{sG{P<;)8#f3lO|DVwwaGP#y*Rl>u~#S8 zDE9K?8pU3pT%*_vlxq}wh3enL-WxCOCCWJfRik?EuHB7TK#_`xNmZ$sm{ggHiAmL| zn3zA%j9I66fIr7|BCluCV6 zP%8J%L0_0JpAIspgr#v?EtdlCSL)f{}6q(phg z8?RH|A??M=JDjaz`3JLxV8}3QpQ8y$7_FZha zCw&(i?n&QK;r`R(<(;cMd-r~Rn{Q3SOn5U}H=CO#pRY?ZX&>hCOS8u6&a=%o#buS1 z)TPPjz?5P~2c|STIxwZ$(SfORs?mX|6RXjIsb?yq1Aj&=%cBER&satW{+w%%sb?;u z_n3P2GCJ_DxVqvES77Ry%;>IgcsBFOyaejWDvH4DpJ3Z=w5+ce`^zt4!`@9RSM_?` zd%gGJ#r)ZMTVGz5)(;?f#CrygcLI)g3XXRMj&}}@chrwZU1$x>FCgAtegX0J@(YN! zmtR1+dq89G~p{TWN@6Im+ zSkHGKY`I^#61~#92coyp*CSi??y4%Pcg3byl=*+oS541&iS~MSQ8cyreqPpiTyxoN z(idyTW>$6m`0a-N=j}h+{${@YM$WFX_dbUL6 z8{v)Fat3eAmNR%`2RZ9~A@Xp5Q0J~f=NV^X2RY+x>>y{HjoET`I6xS425-!kGk9aR zoWUEj;p-5C**W*>t(Q|kv|diBXua=u{pIFuzNo*yKcEtq)Ori_zuZ*aoe(#z`BK;YX0y*1-Osx_ z=gh^`?RSa?4$i#csj>vxduoP&!c)ltg{N+$1BItOYIRoLTk<+`S;jZS8r+g6C)}5O>IK9_XzQYrj)WCIa?%)I; zZ*vEy_;{N;I5FF6uJc=`n=qU^)0R7i=4`oRXwH^9hURR!JDdoV+e324(3~xI49(ec z$IzTDcZWlTHFpfn*>cCwoGo_@%^l>fcYWz_s6-!t4r(TEa|gNOZSEjcCwoGo{U^A2A#ts^tKIa}@+=xn)TXwH_q!=V!0nYNnA(3~xI49(ec z=iXfJ)pvJ(cac}-JCv9GM=txfYkyo+^V_T}yOT@3%h<$8CC~WJX1wuFnB$)^$3LRt zQT&qsfYf8~!2zkq-w!WkZQuF$_=M#4QK|jA z`Ho+iHq}j(>UC)Hl_t`^WK-9T%1AJ?CA9`=Xx$`OXV=`VX^lnt| z&gbqgU5IlQUM=))RcC6Uce6TE3%%PN4qKqi*{heVd4RNF%>$$bYaSpi^zzW1!N!l) zULKfQ=;eW_gAFlucb6pUI@2L+>6(w{xr)Z4sVKV z>iy9Tsh%F)Ft}GK1sQFTvW(FUDUlf6kaC654JjQM-H=-Gk8VgU>PI)E*6pJkQcLsE z4XM@l=!U-~mb{}I{(b0%{}8(2KZb7jPoW$BbLfWu61w5PhHm(8p&NcpY}k7ws?1g^ z>x)R^Lr~S-V=t&W?-7Ek_#Pps+V2s9Ituh2k1DgueD3vOfi%1S`Wba}b=Z_zpY?8p zF0*y9ae9kw?{!VPjmBT5(R=Hp`3`}3^dIT;@@wI?Hf5U!MkMzb4Ye;%yhjk>qvBO%D-q>M1NpDQ8 zDSKBaw;P+U3g49GJ-ZJ_qqCRy|1#gr@aMPY-pS_p{K9-xrn{$aGa5@;t#&k;)sAFAD`P z7|XsIWf9{`%7-UaF=yxSi*ZoA5jd z9%irAH_Tb2?i^UFA(lE9WA>stou4|9(A2Om#kcWx(;_w4aQZlP$%C6PKnUi$n`QvALg!2ld%~SU%U&<%olGnz?Vi0qnS11 z0)xKrnlbUkyTHtRF*38zXW-8pUxcd8f2c0yq+a@|JvA? zd{IC-dCc#3nI+r&p78}Q*Gb9>e7)VwOXi&WRbMHxgywI{Xp(tn7^&WM;3!i4dCf@m z<{d|>Kkz70y@4=Ny~!X_y}3lBBDTJ6UEH7DT(>@dcT-&1rxqxRer*L1eoEO9#udY7MdzRO)4e5(e-YPg&RizLsV zb^sag=JE!kHrX4D+GuYuYO}q;s15f9qc*)&1@F?}kty?0D9g-8p)4~Wg|f_i6v{I5 zQK+h{P`$QN&@%H;Z)KVJG?Yi?BPpna{^~gMsUsQG$U>z(&(njv!6@^2gHh)52BXa9 z4Mv&I8;mlaHyDj>yuoO+;|)fmA8#-k4S9pn=*Sz4MoZpcG%yH!DzIl zZxbvM@w&LSBTXDWB(Nu;jB8IqDb}8Za;iNEB~g14%9@QK_sVgMYzU$Ih=vflcW4Nq z`-O%Ox<_aTq5Fb{5V{v=2%-Cb+K0<=RL6;V&(HLE)aPrAnU#HpajpjvWgQPBNFh>B61&lmx^6TitQ!q!`n5iC z%hktd;Ufg@9Q$%XU&Zx0D!4iX{u*4uiEHS8#SYl8W(ZAqMmTIq&%7lkyDi9W*YT_n$hd;i4RepMq+|^$m zT)*6?4*`R89(;_l*`o(-zlE0%Snb#4lRExnkX zZ|S8DC`%(|vO1(}gAP!m%sQV$jc)&wsGaS95;d*ge`=Xl>I|}VUVOCfu<^p2L(eOj zbLgoha}GVbWX_={n9Mo!9FsYRo@O%V&@)Ycj^f9BvdIF0=9_-nehY>vCqF8x<$hF@ z0sN>aJNQviKirRsy5-t_ewE2q^;R0tiP57jTt?fK=c!7rJQOCbJQN_VJQNzPJQNhJ zJQNPvJj5!DlXY{GGYAT8gjhYKz5#z~``df6&ac$f2RnR3lPeDeg)0vQg)0vQg)0vQ zg)0vQg)0wjHgM&kJqDJ%XUy?e^O)kV<}t-z&0~tcn#UA>HIFI&Y93Sk)jX#7yI_vL zn#UA>HIFI&Y93Sk)jX#7t9eZESM!+SujVnu-xYKG)jX#7t9eZESM!+SujVnuU(I8R zznaGse>IOO{;rwhujVnuU(I8RznaGse>IOO{%Rgm{M9_B_^WwL@%Mr`{%Rgm{M9_B z_^WwL@mKSh;;-g0#b3>1iocqN;!htmCpYtK6YSPctI%N3+<0iMM$G9vyn9;Y{9={V zznoXwMv8;hF3bOAMZR1lH#c#$Aj=D`Ui&7E77wi8cdI1J9`~ifkN<3;J}Y}rUs_1L z|L2SQC<|jF3;Nhrd2KWw(+Dl~%pyoPVSZSQ0a9q&H>%>*!lLKVue5pOQW@=0Rft@d zyE22jqQcci8k(<0 zBb$~kk@~KpJb0@oIcmeG%4RXd>v=}|0CE3J7%cLnK1>lvsn@V1T?O%e94V7a{Vbrs z;PU~+51$1TW{ws*vV=)4wa}r%0<#Vs7MOMDuz+;XHvX@ZJhZH>YI{24P)JJyZeS#o zHyG*T4Mwuqfjjg@wZa?BQ^p-{%u~i4U{uE1m?OE#!c;qnx8vKS#?i&7bghuhBaB&) z&7+K2kj*2FS&-NKW%+_1X?9q(hvI1CuNAVXI193=I193=I193=xEV59MnV1EC+Hw* zo!De?pN48mA-OA$a5V3bCTXx%SDHF~bfEQXX$<|%fiZ^uOO>cX&|l&1~ilKR1IZuYS5O8a3o6C2zd%+Frs$)=o}rS8~p2BKP_ zofXmH9^=4=-4Loh?1oT{VmE|pnV+GK(E{q>vKx}osKX-}jXDe=jeh>LVp7+mWwKS< zTIP#7TR2pBUoNWm+8B9L?KO#d*J!jwrA-*5YRAr^xM|U}^QcYOZld*rTi4MLLU$Yu zA#}IV5JGnv4Iy-w(GWs+7!4tGchL|+cNVo(Pc2T&yNagIqpG2uvQ^q==q7p~Q3~}y zqGaiTL}}3jiMod#NYpvh?j7Bz>tmnpeeakf14C*H1X9!jffTerAjK>YNFfUZQbZf> zRf_ywy84GCj-xDcQO6O7lybx&)f{n1K}Q@?(-DW1)q^7r)(`c%^z|pZBvE%N>@RaR zsAuT${TWIggzC^555WGE8XrP+KdA?yJ~_pJku1MW;=@oB{JpknzDc5WaT5G8jW*?e zvBRU+pVhyb=l5#c^*YS5^E}$jp5LqaLbX#0jXj*{&u`OhmTy;b7Oqy&Qe9~yXW-%{ z$OQ41t1!J2ccPY1+*8lV7o#3~IFKpfm8-PxDb)WKn{BU7RDE@VzpyAJOpwd*j4v@@#CyCANIP1ipteo_mA z>vg!u)jUNxmMyQjzF4cXhOd9v`S0ab$kZQ{cW+mJ&~2f(?YaE-*{7w2O`^{5zrmMn zPTw<>D^Kd#Wp=ObTL-F6TQnKhMxok8t}5wwQZy0IPN5kYZPQMV1GzR1)kx<@ogm3K zFC&ut3uoWPp_@n|L48)vCYuzcN+c55{}ifGnoK)I4&&J?Ia1ZFCv9}8-;GYd1Sh>$+&h3)yRM| z>q3rJwxN6*hi;_zWshXS!U;Jy4&`LB$tl`5QWmqJwo_1^LN`j4i6_c|TpNXIWXO&? zP4>zrT%!TYnyztZXu_okBG-;0(KvW0h?v-^QUE>3!8BnXYg`&W%GknQStZp|(p< zo`+-fR`_ZuUB&wCk+vgkY zeaL<%hum(yjY7BnOycI;Nz!CrP)a#B3gxJ5Q|8GD3n%2;DRd)a&a68*Uf~9FZXC*y z?vK3Ak?&r{CHWT~-i<>$p_Fopc8(OrtYf)HSoXe7p&X^l)YIiqzKudRGHN~2$th}F zuW(Y%jY2uf`>6{jl^M+`+Q5?D(5X5fs@p?VO$%9YW=BXy0QuRHVWN(Gs$#i zlX2}7s*wR_)}0)!Y(x1r4&6xa$KAS-uWmT>c8bbzC?}ImPSGvt7f!~vQ|Ly$`NR|D zK(38KH8Nz!ohEx_6Y^~ox>3$gTs9fkPNJIsu(TxL5qDWON9*~gXxXT#0>kX@;MpiN zGsq$iu8l%88P`UkT7MFms%RpfokBA*+T@bRDQen4u8l)A()p?{GSa$6zPaf@+rhVS z=q8d#MpD~+H%@l-vreHJrOC8Y2%lX2}7s*wR_)`c9cY(x1r z4&6xa%O1&ug%fga9LmXLlT);Bq%2i7=^JW01?4Gpqg0uAq8!MzQK&|S?6}ipuWUlT zjY2od`H9OWrEn)6-~smQ)os;n^_lftfCF%+Bj4rop;Xtr)bs4H!mZS{0nE_#-W=?A{mElBCef6 zHR{Euog#QvdtnD$9dB%+AiAe+bhoO4fh)(;wfRy*RtRSO=@HkFm`a>%f@3 zzbSv7Z_+T!3Tsh*cK-G@SVZf)`7%nwMXn4WB_wP;JE30}C$x2SLR;4-wDm&D*6f6F z*kMa74m)g##bJjnu{i9oB^HMrwon}YoX)AsWP1~b^DGW->ZJH8Pd4f|NnWNy5Z}IB z)CT;Le%~@tZ_{wTiB%(Tc;)jqX}GK!i7dKX2QkXnJakkyc<87$@X%5G^UzVm^UzU@ z^Uz;`Navxy7Nx%xrN0-Ye=bV@LX`e}QTh)>=|2*s{}|A}qVv0bL*xuZEl^LdUX4DY zv>t`b-fTBnv<&CVWVhZAA9i7sE)(zJgS{ctF0p%rnkaTdsI~Glq`FV1(Wt|aj7A-X zWHjn9gf!}@m^-zGd+5JicdufHL6%dC#fGz-eczE4|9-TZjQWpL_6g;?6ZvE?{Wm?K zWSkmUss1^?=?Nv`ldMi;Y)v)w4dm3&N|A0?D+HsfQ{+3Fu6R3mHMCYDsY13x(Jz&V zQ?g1?uRPWCH;hjM>qJK9NRwZ$P%=&ptQ6(-RD}}pNm!?{)s+1jyD%}aLGQlGb{H_$v8E1jq2+rO;D)b)aT-p ztWIQXnRWeKoRUp_135LcQl#6?8GUG}WV{+$E0I(&v{WKa$tp#?@>J8`Fg^{elT4bB ztx>%~$v8EzQk2&tZKbGJHk%$Qt)bPD$rrL+ z3sMThPM}M^kkyJ(VzNnaAg2aaiVRTqTp?SldZiNbYGAD>w>Sgqc4F-ft6ypq+5j4-oq;26ak%&no-A{{UL z7t@qW%CDjI5=t7f?G`D9*?`zB3T4%zw3u!x9LlSKwIXA5w281+EGf4JR*Uj`x?%}= zC9GB7prn6wxM%lp6~hx77FSw+*G9!oUdeVYsPHOV;rs_RbkE68S1cK?WNQ}n&XY}o135LY zQe?FoYpv>)O315$wW8dftW+{i2`lA43N8tFz*v^b)CR#0J`JpsL7s4MO187kF$8vS zYG9@M(}aUh0}CbMldMi;g)!{MsYHT@0a)4)2B(K*uO*DI8aQv)kSc|BF3M0^s~sm#UQv#(~EZy%lCtwFDo zQv)m2pC+8VlI>0~411lt8d$5|OyT6zz*5OLC94!!X(pQhhw^G@tw_JiUd0IO75UO- z2$Fx{?$*$1$>a;!BuGk8<%_=IuTu!hYDFnA*(5lSQv)kS2B>?kkgZj{QVDrAuvV1Y zla)%wDPg6&N5PfX->pHgi%$dV)So9@oDxoceZeQ=)WAyhrilp(CE}B;PGoGEb^XRC z)Id%RtrY2Y*`JuAR5D%-t(8cskZq?(AQN7;S2oG-(0lf^+EzPQSA^`GqQ{P~A4&7x%e zhd=%C-Pwz?>x*@;3csPAoiCH^O&rb@=;pwgy~>k~`c0D0Z=xKvFrHZC=}*YFwSP@l z9(uo@((jiCQJU2S`DVMxqGhNGdABah^8D>CjM8N?Uq)%T$dy#6c)9I71JS{4=i)?m zt|aWtPNYwV9T9yx?1<>oVF&3$*T-ED$A{W;-95Dy2K&pouYI<#RGSdGEuibaQB|F= zODM~o#wCNkPT#)K;@=Iwu9>n=!|K%E)tQ`3A})!lL{=8VaqHM*8px-Cbt1j4hC|a6 zO2(;yl@iGkqTL8m2E!RUhu{;{iBe&riEkK}hE<6S&2gr^UYTTk8dfLD>50lD;*zXN zWfJxo;qF88J2k|0@@ZI|`ZI)+Q=*-SlYF631o+X&eORS>lf(ptlJQAYC$hqrb@#?6 z)KE?htQ6^X*_W82R6<@2td&fv5N)SOAk(I@)yXO*lqB0HS)4)2BUXQark*{0^ANd!~P7SP-NR}A7M)e&* z;F2Xob)r<5XyO~jrD0W)$q=HosaGZ$pN7?ma@skO4=a<1OR_5Yk8n!@9^qD@JFZSS z;dB*wEzB1y^2ww+6vZJ`Jl=f1Yr1O0-MCFa&mTYFMSJSN7Q7TuD8y zy%fIN{5pLS)rqVyW?et0;1jJ;Lpe3DQl#5ue`1PK33)ZJRufErq!3lAm|p&)beL-T z8^|Zo8rAC)8J#0denUAmtWuQMQx!_aCt02R$GkmT{>nlbR|lQ&xe7f8mxfizAn!T& zB-%aa81OpyG^|ej8N$J(VPz6=NmM1WvKV&v#wOE1J`JoB>9unz7p+g^E0@7X{)Mws z11lwxB?cBs#3xams5hQy;v2@LVO5gJ5TdoIS0)*shSiC3+BuOAE0c&zvMQBbweBS* zvz)gNO}wmI7Rt1SxK2I|t5bi5aB@nvKJ^8kkW<4d)te+HD3pv(qB@bWHPzHNlv4vM zMY>(~CB|2$$agjz>N7@Ldp0ft5e^wgIav6W+wX1l`Z~#T0`DSN4rt{uqySZ2p6A3I}%i28Fu+xd>U4# z-VEX5(y%g#xFo6)Sy{}wd!v(SAfE=-iS&A$trPjmQ_Xw*PKjg*(Zn~9Pog!7QemQr zZy1+`Rf!DEai+aqnPhw#Rwv5oiOMA6l9ftPl16zr&+;HjvlmzDzj>I=-fTBnv<&CV zWVfE*METkI+g%u?%VfTc(r}SS$=a&5aJKU7?ELwMFwK;~Km6&B@6KMFU0blf+SWA1>9ax%zT(5-V5yR%R#BrNfGVE*(|`bm_2Sqsv_ytmW&AyA>N< z+^yK?;%-Gimk#x9@|dA79aaQ%>98W8ONSMt%UeAsr)r+^(41Vq+$6=%^WbBYJ>RY$ z)~ZF-m6a)s3B4rI8MRFNDdhK3J zFWet}<^Jev@aXq+U3becoo6Zr5Ag{e`cdPdFjZZQMY7risfvsA@a*{~Pd%d9>tvg6 zw)s4c^0L=7`)vP(hL>@ykcg$(ve277jlMLkE)vgN_H%9aP)Dq9|Gt87u%+OuqVu&uJ? z!M4hl2iq!JH1_Z;TOMqyYwS1dK*(ylYoaSL%as9nb{k!>1oGc#Z`Qs*h zz6@`JZLB6_JEuimkQd7!ePHBW-K5dtAp^v(x}2U@k1)C>J zm?uIV0%kK3+H`m$p-qPwq|Kjo)*HTM8!kRlgNu)3;Nr8Ee}}%PQaHVT2cNb4JNT^S z-@!-a|4xhl?P~K7tq(1wJ_83D9ixX)$r(M2ipA(*2M-Uf?keW$I- z_Dxc|6H)276H$@56Zy*#O@O<Lc|gn)fq617D9Wf_P?S`?peV0;K~ZY; zf*NJlbhAyXCBlQ^*Dn|MQ5MFHB}26fH;UsREqCG09zh5+=6HI@*OirU$&bE_)mmuA z&%Mf4Ns{05gAWU{O)}c1%uvc4=&n-c;C7ZW2e`YG(Qa;rQszK+l`;pnvy>6|s3BGv zgKzDSgN<4b4mN5;IM}Eyv1WIyg&B4@`?c&~vz2!To2|S%*r>d(3?D}YWB9nI z?`V3!&^nq3Fnk=%sTw|xCQuC@f9t3Fd+@lni98K<>f6lCMt#^>?v?Jz;osNebvM6D z;-$-TQJSdJF^av}J@&LVqx_20WtQ2DK~FK8G3fbaGX_1mY{sBxmdzMdd7w#DGX_1U zY{sA`lz*VbWAT-786W1e$%c;`mcnhE?4G{(x_(*xTuvokZd4sZV}qlDATU=+s%8$C zpjumS)KRF>cID0aAEuG?cV!1iXZ36?L5B^=O0v%g(&9#qFHenmSEh8 zsC(p2L_H>VBI-oB6H&j)ortD4y7Pm`qHjSZqsTj|rEYIYmW-`{WV!Wvne z9g(5&hcghxhcgg`hcggGhcgfbhcghxhBFX#%$drd@Kj*G`UvLAz z&kg(`H}FT?z#jvkK4?=}bRDWTRt?&UnYW%nly>A_kxBI@8P~FSt)QICYXv1@UMna& zdsyk1VnWRxuN47ZI(!k(rNau+MVkaI>Pw~umBk>Zo~yooQ~XL*9re4$MiEeRt$8o+ z)sdmeUHrJYM_+?mGtU=W^zFMfYrk3m-2HL0YhM>1W3FK|fdZP*1d3)x6DX8jO?1>2 zlwTN4aBI=w1-BL*CXg2T+-X>4l;&Ut)Td_ktg=oVtTsKZesk1SJ=VYA*7cI=(7wg} z!P@l~<&X2@FKByCr*!6C?7|EsE_Y}c@Ix=llk0(q&aZk|9?;EAJXloD}KU;&)xY-(n#>>_q zG)}e#q4BXb2#t%aL1;W|4MO8!YY-a$T7%HI_l@42RGFvFL+62--3LjGd<#NY=}!xU)hXL0(;Eaop`g6_D2os?K!-_zRbyyLIu?{N&G1g%P#n@+hzaR_K58?7} z4}AmBD`*VDvQ40_=n2+~d+kj6@1>#s`}yKNNO3R2m4`yjm4|}Lm50K|m4^aF+XYw5 z5+2mM{-m5=El%ycQe*0s8e(=I+S&j7xf-j2hqd^rrzq<;u$f_qG zLz0+1R|C+pTYUX$|4-#=(0LM|&0Y4et89~Q7igE4J@4`+Qj@tLCEDYze!pGc#eA=K z6)e=rjA%EZ{rg=PM>Nm91etNFdj#`V_lW1K?h(#g-D94wx<|Y|b+yZjvPE!vt9Gkv z_4oV}^}Wwcq|PUKJe$3#|6ld_!o>p`*BT?A@gpzzkyrf4YkuSle&j2D^hUPh(i_>1ON7+s6SKuO?%P+U4F}6VSKnQzy9yt( zyzU`gs`tFs^XPT874FJ@7Ou0W!Td~Jo~XXZP&;^vsY}r1v0fVc}Sg}|45+80MCbvqv^3V{#m52KL zt~}Jqcjcjp4ObqT>vH9x1s+!(TKjS3p=BXg9$GPS<)OtSR~}kta^;~VC|4d@opR-& zg)3JcTGMjneF<6xSKe35ysw#gKV#;7!_4~yGw+woyk9Z%e$CAL4Kwez%)Gy4=KULH z-tU-s|CX8e@0fZ2o|*Ue%)I}=%=?eby#K_^`$uNpKQZ(EGc)g>nR)+(nfG6rdH;=> z_dl3<|C5>bznFRdo0<22n0YtMyd^X5mYIhZl3e@Gzh{0wv~j@o{npIyw_)a`%)FeL z_ko%Bk(u``Gw=U0^ZuU!FAU}z^-ZvL82_h>Se??MJ{Ddi+jV|6yIzI?IVq}Fk3QTp zUfcyQ?ur+um7U2{tVP*z;Iy*iz-eWNaPOb?;ALTOmj+qAJ^%W(`pvxjmB}}<7Ni%; zWP78ooWP$jIlyiblUx@D{}ilMO{%ZZ1ocs0jVsSOiKDywdRfHeA+`EaeBGaXJglW$ zUoMh3NiV5$h#F=QL7gE*oQq_Hc)n6QU)Fixbp3lv5ZC=eJ;pg>_Xfda|ZM8^j&Xh$TY32rSqyx`WN!vxaeFB=K2 zs27dX;ut@UaXW<@Th&(@N$u;S?B!+7Ux&$)Kay|fdqCyAr&1^NGb;u(!&9TI{OYN)aiFXnS3>1 z7!0q$;L!Z7W_)o~qx|ElM)}88jq;DH8s#5XHOfD(YLtIm)hHBK`VcqS#_Ef-)#g?| zyz-O!1E{mvtMFrS_|-Pb?$s$FAW|)e&)A6GP)f zpcvuybit2(&61~kLO}@Vy{p1Yjsv`%nAG9jZb0JTZYLmlXtx`YIE z@2j8Z8+9UIb{JwB?{i?nqehkqkD6j8JZi9+@Tgg5!lTCD1+QjROb-=h!gEGW$J=v8 zP6wVdaysywk<)=kk)vd`V2;wR z9V*_1N##rdbCh-h<|yq1%(b+eowmJ`HP_Nk)?7QHcXXhPWsHveLa zgN?Ez2OA|!4mQf2)@-$QWqL;w2b-kXh1%6c2Iq;*R z9)cegbrbxksITBhMI8n|D(W@(QBl{ykBa&aKWL4o@-*1MJrhs!XYGy!m{GH`piUZW zY{F=ET{tYL1N4L~s5AA1EvO?3u>~}8=F@@20;vOw1yTnV3z`n)3^sqXYV|?Lf~JFz z1x*Jb3#1M#N|QRUSRi#^u|Vp8Ea>;fR{igCF{RP>Hr{vX1Vg=TCm8BvJHb%j+6jib z)J`zelh#L=YMNlJ_FSv81+@cR4GthRWY9;D8bW#wAvL7*A46&gq7Nc9giuG3nj(n9 zNKFyMaioR_`an`c2z4Z>A%Z@X)DUt(97}45AP*)rWl%?x8ZwB(Nev0)@ud3EdU_6- zZ-RBb1aESZu?>jMCN`v=lwyPG&nq@GI=R@8s0?GpA<~Q$hsZTH96I6Hkf^LHXJeuS%IibWCJ47kqw5-N&2$NJ}2D==`t)jI16>2$zhtq$dQ8Ig=~n-R$NsDogyIOX>bDUHwB6$59qN z9eQIfqZbq@>IFsOdO?xSUQi^t7ZjAAn6NCQy-8KxV7vu@ z%>b(ZYz9y+U^9U7f}4SkEyrkcFq;8h4LUsF)u6)w(m+2Vu}pES2fOjmQR(y0QPK0z zWy>8kjy&&O@O0*t0Y6 zNqt$91pQ){Bufdfy29q>CJxKelHjX_Yc&d#Ait~>7UN%4w>(O``m43N`#4Oi5weH@ z9PMZ`J5RLp&^w}?2aKbghu;@zuHgH+6DdS+<`d<6)UdYZH&CW7N4Rf<~Vd?HzO;u+_`XD#J$CW2~dfu-T!j44WC#9GJJOEDr05mZ*VK~H*dn?6pgY$>d*&`BRXp)W#;pJrr~PSC|mC~iCTkI z_rJ{#t2`df4rQobi4x*J->;bo;osKfBx~oelqv4Ue!Wx34qa2&Dx^V8VYAg&Q`iiF zn!?8Kt|@Hzo|?jDr@N-G;h)^-tSMG@ev8|b-|ib@o>ql2^y$7;v6^J?xpZ@sn?8Vvj#X4ApmVRC@?xQS>xo}ri zs|?=lxb;$PQ~vbL8+b@Rro0%dRu2{TQZ612`k8MYaigKC;6_8y??yub??yx00o-V4 zGr*r~N73bJwAmB`_C>IWf_a?W9aO!3xryR9Naw-FD4U@xPhD6aL9Ds3z6Gqt-om|) zH&ME{w|CJ2g*ty9R#~#1-#>2dgQwlmMnbyskgKjdsZ>6J{EG&<-L%PUv{L~U62+{rc0J}#34@|amd-muBv^G z-8*ZaVx3^fQ70I3v+)JBx-LC0E;VWNXs8x z$pV4KOcn^VXW9aRwn=~X6uP;(YELaDXh({^DSkCCe`hj@V#T^B*dSQ#K(}GKW&vgE zWCuWR^FZrshyd{ zMfWdNPKpzCKMb)+*qw;xlWmAI_IGR&(K~8i)aHpAp&!J${-XSGe*9(9^X>XUX^*1F z7I(2z8MV8?BW!H<~PK zKN+>SZojo3nk;KSG+EXNtsSjXTt`z(Yb@?ndw6Jr&6jrUNod$%PeP*)dlDLi*ptv$ z#GZtPB#p!oZT@?d)>HnoS3#Z!O37u_`FypEvLIa@etfw}c44tCrRyJDRm>Q9s7o69gItow8pL*Y3@-qTaw4Vd0RV*l4eOB$E0^jlGcuWleKp2n`}uQ`-ZGFTFPj%Q|;UQ zK1u3rCr6Fk`6o;D7mHkN$x*W{dW{1unmb=z1~1B2m%)qj)n)MP{F!k1>wJmw*ZC6V zuk$6!{|uHtfBkBfKR>@&{`~xA`Sb8~eVh4*pD$7V`uj_izs@%+|JT}F;`a9TFeC-p zT-$l6)^l^Ug(SRt+ROIoe%oeof?ytgvQFmZFS6^mPk*dF``xbd=f!D*>QQMk`7Swu znNRZjG(3er*SEvy>CMn_Yfi8) zIo}Q;?Z#ZGU;Dr5>6ZR`k*snQZzX339Gnlqhh-3eY2btOmV zz4`!?Bm6w+R0#T_i7@m;lcDI#roz#aO@w5Fe3&g>B&$u31}aVtG1i!Me62Q_ZPbYe zMNpMX%b)Fkk!^3(_JRd@LaM#NXR{Loj6~m6|OFb&4fpBz=THu!i49HoQ|6jQAf|^?K|+Ck<)?ajGPWUXXJF?IU}b7k0Phh zzLZBgEfch|QT)sNUhTW84se)VC+d^AYLVm3R(&_AR_cl)G0We8VTZ9fH5YeEb805; zl;+et+$qhenN(=5{JQsa+6kDWv=cB#X(wQg(ylzrprIX_xfQB+-sULn1iYiP6EH_< z*A5l$!lZJhfH_J#0dtgg0_IxU%}(3i$(n0vCu^>yovb-ZyLPCcUax!3)VvcgM`9L@P(}Ib3sh0Q`T|vyuf728=A)>v)EAaN6Caj86Caj86TeyhT5d!g9asN>YCk0^@O#UMs` z#u|IvS@oY$$kW8!!U0|`L5S&w@dbHl;b(rDBW|g zQRcU1tHoQ>D>gaUY~|hY-fZRF!A9k+eSWp?t*97WFN@Pc8hf6;r>+iB-d^R6QLo02in=y_RMfxmqoPiZ9~Jd<{HUnA z<3~k(9zQDT`1ny#@28^=Vtw7DydflqPjxu|Vp;Vu92FSkZf}!Do z6AX$ z(@0FSr;&PQPb0a^o<@T;v!~IZ%}fPOGJ6^gg3O*q zgB`P{(V(XB{gyh*B97w6LmdYxp)m{mQJq${NQzG&dY)<|wDKu+RFu(^jcM%WlMZ`% z+-Rts{K?btYrEk1-EwusZ#_BQ>ad@g&vx=!LFty)3QEhoR#5u(u+lN(isnXntqADS z;fsJS9afMoKRd23`#pJ!IvF@rX)h?M*^N1*qGlJjif5+T?yF-z>!)i+d-CO9^%ES5 z%8!c5>gOi!%9agftfAT`V-3|p8EdFEGFa=V`zTw=SQFH(!#6?QI;b`F zqfF82eI*~GW%R9STK(y<<4=#9=GAWu5Dtme6N}307e;T(mRg0(p*kvL4pmYibEuYb znCnOiD7^}qlhm%mJ4x+2%pvXm8rD0G6w5MCUq)mIjK9r*zzTPb^@`gQmxs$Yja zq~EV`{o_cuOn8(%^tnyDT&vGAJUv-w$euX@y*u3Tv_pP%C!(_XOHJ9%cVx?{{FYE{ z;7N40oSVe?Q24Oy_p0Q3g>7Mt=7?&6?WE>v69)Rlrso(FXfGCq0V zhlw(k4-;iEA12ChK1`JTe3&RR>K{2p#p=a8Rl9EvT7%|EyWU}!B+J8JU%%W$aU7)c z;A51{9%rwzJdMvn8Ke($URh^y5u>B|BSxpQM~n{VkC+CXJz{h^OT>JX%P|C+Az}!+ zf5Z@QhKQl){t-jaB_c+TNZ(fJ=+$*Jf5hl?_K4Bp{1MZjvqy|hXNj0^<#G&xW{4Pq z?jJD(oFQT;x_`tFbcu-3Bhoj=9KE`Z=8qVi&K@y3oIhe3boPkR>3tES&o-;^PjQ{i zHqVp#YP8w=>gRcRaLHb-eE z;2ou%fH_LLcBpt4CY3V<%u(72n4`24FxS#fJJY@$D*QQ9)?7iM8vQ%JAsX*H1JMZI8HmR8&OkJZcLt)}Y|cQm&CMBzwtPDS(Z+9Q zAlm-z3`Cp2oq=d8xHAxK2zLgeZQ;&9v^l&z5GHQEFxyq)ilkRzT&d*hiz}2~b#bPW zt1Yh7zEu_*uD*IhtjD<``657nQML%sp?ne0pt41PPVI|;=AOj3-jjH_Na7^D+!dQz zjW)j>KYEp(%wTSBwV zoyP@zahC>Gg>-on2MZJr+7e_Ht8U*(7-Q%UC5$ojmlDPp`cnyG4E?QyF{UaTG<-M4&|ga! zW9ZK%w0oi(aby0yggL>yL~d2G?LD4XJFs&9>I@%RctOz+-V2I`@m^3gl=p(7;k+00 Icu4>M0RWTU=l}o! literal 1174943 zcmd?Sdv7F3cDKiBve_KYrMqWmM?0<6Y9-5h1wjzBGqbmWVHhtA!!Qivg<%+mVYr-C zl_YaJnOVw8Hm3)M|Lo5;AIni$ykxQRM8@TJI?hP}f_B(sp2#Oo#L0N_dVX|vQf1fq zUtJefzHG9K_J?elEsJcvxM|zEIzQdCS(|TWU+#XMubX_c$yf75(Hv`8 zEq8}Qh4Q8FwMvhUp*dUb7@D)?j-feQ?ifn+LCx&tj-feQ?iiZ0<&L2_TkZ~r3jTQ4 z%N;{=w%jo^XUm;?bANr{cNclJ%;%TpgwmkpeOgrW+pH{~Dju=0^o;*(#vA{HIsPeg z{39wpHCa&o4~kFrKPW!g|DgE${oku6)FL6O|MBtn`yU^FzyI;^$^HlBcfbDh_8%0V z?0-;vvj3_0e|u2>yNd@mO+H_j{bRt(CSPsL#fE&oDK4w5qy~I&KYQ$HKbim&b0S~XS znro{?v$J?C3*w?ui-WkR)CwUkDz!|Ai%P8(;-XRuhPbHIsv#~a zwRDJ!O06HhIjFB~ldZ{nCiZWU*k4!>D-^F5o;|rJg>T`6y@gZu7LIH!Q09!w1Ed9O z9w04P^8jg~mxt~QHh#4B<^xj;y*x0r(8~i;3)Vb9GHuNRqy=jpAT3z)K(+AZ;P}v8 zOxas|JKwPz6pUJJ2L+=R*+IdmwRKQ1YDpawj9N+ms-Mlac$c;24#*}e%6pHReZKu^ zzRFs2v-b9G>@RjdkKKzM9hk~;bYLpu(SfP#M+c@xLUdr%sF-n$ii5zYQE?C$H7X7Q zqejI+VAQBM2uzKN&wI6^c({X_SmeL#{c%~=xA*mg`1AfyzRugL_nUTiul2}w{bG2( z-LkydwE4phx<3UF6pR{?LBXg|7!-^ec|pOb(H0bp8e#oWP%VqRYUitb(G(9SuZhvq zH<@acZ;IAjiuiEmxS?g~55YctE zn4vvriy7LHwwR&)`I&h_6WNzkywHB6;)V7h6)&{^P8Uu6Hm?8^_%KpvpB+XD?XAN| zR6o7yEhK-+$~+rc5%#agc7H!N+q}ykmJqWq%yWF3!mJR@>SAlOv-6v^(c9f4e?*Op z3QCOLnyor{SM-}k+qq1GtD`@R>Q+V|er zUu4&dx_;>A7v>1njo!0YyWeaxa$zoZ|CE1H)pzMR`}*#8W-VO4owrxT@@-`vtUodT zRS_edsmbSE zAa!b$0oG+G;bC1`wZit!NZi-bY+ah0jRq?5XPe!x=I#4+eq3j7iE`&2b9RQ0d9)w% zbhB=5mN|M?QDL9#?ej&^EU(Zz3yS(=Ur+yXQ(cz$o&|+{y0^O*@}Rr+6cqN!-kz

&Sp;XV88-heqq) zR{+halL6SrTQ8@8XuX^QqV;kLh}O#~747w-u`aTvDIPBexuk8AmF@ij{_N9rQJQtc zJo~ZO%-+Xs{$t$cKRIlkXUoSIsu6$RyOOtfl=uFrrr8%)dA6Fbi`+a)+npu(tX?i} z%+I@*vV{gVPowh$HqS2e1U648^8_}}l3N2)LwhuNV|^SPc&v|u1CRA_aNvVJp3RuX zF)HvuAEN>v^f4;%SRV%`?_eB1+2i2AV|^SPc&v}9!2P3DzG}=X=I)O^voDJ3qNs|+ zO|yGgizvMA5vYCmvUkMH^SL=s_;3j99~h25y)uu`zBi|$-sR*Yv~IDU0b`v2W1RwH z9qq-UuDgWvS6r<9{)&sW-(PXD_WO&vx)jo1ak2LMD=yZ4f5pYx?=R{aT1bDz#oF($ zxLEuB6&Gv2zo?sagJixZhV%q4xVKD%5^oMTOe$E9#ID z&{t8R_WLR-)P7$@h1%~c>TnUzS5cw%`zk8beqTj}+V3msP!Z5qQK9zxDk{`|Uqyx5 z@2jZ8#D2Ys3bo%?QK9zxiVC%VtZ$pTe)Pms^Uj6a_KG?zIBZH)Nrz3TqT#S9HHREF zrG}KlrV%|%y~4nuRq8zjU-bRIe7LT4cAm9uw!FGFx67T~ziFd?LSS~@)|ciwXLpvE zI6Dy-`x#^G6UNx5px7_2vg*>@YrxRm1EEp9JrEkz*#n_beSNZhRGXorpT+guz1EtB_ zS^juv#D?A*-Pq8m&K~FxR9`=>QK*i78W+{ePvfGx_-R~J{|?n9R38t;M)mVhY*b$l z#dhlNuY2q2!hFQ8*&YP5i-!w*uNS?4op0|5I6B+^x3(zTlgeCm>n~4;l{Tievzy8s zJ{J22Yt|M&TW3vMWaWGd`_VW*xwtWp5U@2l`>2T=YK=FMLoMdXb- zjO1;RN+fTqgNej7IW%^jmR8=@hGryhi~NZk>Q&}My39!GgdpFHxie#5FlIcAm~i-qwa@ByWrS zi5%+H@I;!2;IN-g-pKqKj;~eVhK{ zhp}DE->qi`q65dwKy=`k8Hf%XGXv3qV`d;aHDL`pms6n=Nnn)@*shw`R*5zBOCk z4rc&$O$d=Ud~3G6;ajui4d0qAZ-=9VGjI6TYIG2zL+$AsVS`+o5!PIkrgJv{t=-^0W2_dPs3+4q>#?vMN4 z-eba(eUAxG_B|E8_Z7fhy^s9-d1yT9JZ@+_>db9uJnCF+XguodY-l{{d~9eu>Jg#P zc+_)4q46BPZ0a?h9lmMm70=;ore5(JzGLbY&*2NEUhy2hUFsFj;j5)y@u=^W9$e!x zcdmjycMb?mRYgE(sz3rlQ?=4Jw7Kl$`l)k3XjESh>@}*d2SQVQ{Wnjq!`(m76Z4t# zsGwB;Mg^sMHYzAfpHc_>s6C~Q`cXltLw{6I>i8cOlv)Ht1*KL3Q9-HYKvYm_O%N57 zS{OtHrB(+~L8&D|R8VT2(0}Xt_9fzT^k>a|8tA{xdG_*V?ev{!p9Xp_1MW`w!W-zl zADE|s-ubY@1}GW!=^|?m5Di#!fM~#)14IM89CRn3;iIUR1D*zYIpAramjj*#tT{j= z*_s1H1J)cM8nEVoYM}RZ$(@Hre8xN^7PXoViA61JcC3zfkZilMA`KVHB0>ZB{s^gUt*)|`h|+} z*FCT9jTbX)-aZT(YsWeVp!VSJp6rT4KXdBe`G4ANS6Gw|wJJ`}1^ac0COI5;!V8HRDk6so95$PtC-j_ygxe zsiQP1KD7S__8;2+1M#W;AD&0sh3$QrIQyns=9*8$RQa+k>Z?^;;b8*8Ofh(c8*UX~atV1w(=CjO}(X{Zeq{)j7R#{qDP&eCmg=@RYH!5yr!kCNHBiUr$bA2-S_0q!g~Oq$G$Pkud#;bCFPi**b+ zF2}?qCKXJg%vf=E$9_erVWLTt8=ev%RxU%v8B1nt{jRN?C1OdF7pCdYGGj&)!vvEi zGd5abM;Y6$I-VwzQ^~qLiFwxYZWK;KGQ(haX3SV-#;1Q64NoykMUy5swi3}*Gfk;s zf?>&wbyB!3%><<;8BLcUz?0h45V1u;j+p z^XiIPDws5xu@1zD8o)AZMpMH@lO{JdTy?2og5k-`m<^0y*&Ml7b~jL!T-gj^Nt2iH z`M(>6o(D~yVm3C&m|)UmW_0>1N(>JROJ1yF$ZcsRCo!pD5@p7U+a3QkrG|+nQEqrj z0LyX4+VO6x88psVGGps^ZRIQxOPah`N1?D{HkueFm^7KO(P~Q!4+~FT#+Lu%j@d<^ zRi^6k|r-USY>Hp zLE*_tS4>&&mF+r1hf>~6CqF$-lb7+C9|Xg4&<99m5KNlPj86U_mNbdsVPVOObwao; z$K)g?6-=VcSaG{!zoyhM(ImRA zFu|nBjEz=XVt811@)GTsJ6Jz0V>!Z%nvCrab|*1LZj9|vpV)Gmtc*{6J!#=#Nt2h+ znXe};EGR5lu?`@&<(QbXBw|UF7b|UWNoF~^Sa-D>WY)h3hDnqemf4>uF)S=Bd9m%O zvO<;yB~4a%WP+9q_>!Qk+O?J`#uqd-lJHNPTs%)8` zpKjW$%{RxdF0y4&UCviUlP}w%uBcA&kM!*5_{F=t*_faoe*WuKB0oV85}2OxV(KBEY?1C-JWXyw@=!?EVG~T)x6D{CR^5RoB0=;h>%p( zi3mxRpNNoD9f}A^6{LueRAu_|NydxE0}4^gzUpmZKBzojl=brM!?-wKA#=A{TChY zN&iL1d(wYYykGR^Z~b<2m6sRy)0gO?ult)ctGwBt^k>7@8FI5owVmB}bmy^~m$$!v za{8ZIL22Wl4%3Vr4yLIiAv_=nGBPfiIugRdfzO9^+-NFUi9k|h#EQB*rzB#ISohQQ zazy}1ikz@acl?2UJS8k3_>92P8p8Y^0hJ!otCjkM2mu z`y|!22?cU^H-&~h`ZmAw=qDfvGBQ5ZgGlg)_0jVVOe6_%GCJF}q=W|qpAqZOaa(E$ zNl7Y_6gjc7c1L$LNnt`skrkdfk3XJRyL>n2yW7-3 zAJ%c>w$zf5kVGIUGGayTj_X=d!b6fGCoIz)e_*$ExSJw|j4gadZ2hgNY^C8ykPqv~ z6I8TD6T$R<=Lb4XhB51Q~Id>LDZv zQo=-%ASdIqT}euKK=2u{4jsp(mW-67B1w@GD{FWW#+NSZj&{S#`WN9SDYC*d=Tjtw zhXkJ!+kUDlUWq^wWQ1wH<7dfeN|;CzB>0?IM~|-Zl?)|CR;;kyabC(?vF@p(HiogJ z$P3fN#~)Y5)53&;&x&nFb(OGGBnfh29e<(<*l1F?P!eRt#;PkROe73B8C&3wU!)s( zrTuPvYPi}M0+Jvj;}d>2`s5ou6G?)cjLvs0Dd7RZXT&;m+?HKJQj&@!MNX`&yYs^# zML30@FrlQ#3eTKRkrW;hd`@ipsj7G-0!fe&rumMaC8H@}B1w=F8>*zEiETf3(|zoD z>sXSuXE(O2e-TWQA}1`<9e*6LcDUnGD`2|gGh*v+O=T+$M}mA< zM_%w$$Ip<_gz$hQ$cT+pQ$koc81gZ;gde?k{~BGR8=YA0b$6<*ouDC7I&ojWif;!K|aRkdI$*q&~6(y z-2ssYBtb?-r@E4auyEk>VI4PaOD!1*Nd%H2BUaSiIpC4|O}mt_-;ZM5PgPZGoP=e% zWK}BmcAv_=nGGZguln@pUDj$D!T~zt9$u8O-7EOLz zRG0Hjn^mjxQ}aJ|a0K$kdvm+1zh6dwH|o6svr`s&A{VXdJ(~&5LGL&sRm0 zFI!VQT$Yl}c7OasKjYi$6TZ-=pwKhEz8(mT>g$2fsJbx)94)~yF{yeG6O$?gF)^tM z5EJu^s0T4I&xx47dYbp^o6S{I*Vp&yCbs(xwcY-4|M<(Ro6CHDA9Q;R-%#Z)A|y3h zB0^GwB_bp>Rw6=DLnR_4HBur%euf`JU*JQ&!iW44AMz`F$glAse}xbE1|Ra*_>jLL zLiSH<+$$i&B33lj~*eYqx_p*)xKG+wnuSu%B8(}ziIDx zgxLRAk6SLYWqb4BXvfFdWlrs~eJiSJ+qa?$vwbV7_S(0i%By`Vs)E|LqKc$_E2<9K zx1vg&eJiS(*|(w!mVGO#CfT>5%8q?2s-B{>)pg&(@h6YgHTx|8u{9<9rr2END{5@G1$%}Jc7hCciVSwNAB;Lo2K8B7uqS;M z7wk!&QNi{qRlxbF@$KzrrpC9opOYHj-hMV}e0%$OsPXN0{Nep?Kle1=zWuCI@09)S ze5CvNCWlR(sGD{Eu<|^6ZkEJ#^ZfS8lvJWL?ja9sd|EeIW!9s^*A~aNesOKqvQ?V} zZhl@CmshPh0df<%1E=rvvaD|d+dnCb>(G`@)82>nW#GWAPnPeq zDsbD=^-Z%bgZnEY%g-0hR`bHf=<~}a&qFspZp=a-d(`qIG;rYQ;LfCAC}~-;!FZj&JF-P#w$)Wskkf3CpZ$Ycs*uSMTR- zws^dVMU11~31zeCJ97zPeRI8jTRfcU=r3UbF{t6;vmewz@rgkVnZ32-O}T37hn_fl zxy*L|GB1mNzbRJFZ_S-H&GGp~QI_*Ef0vikw26yK^;uk0su$y;^7Jb;P2={Jn!<5W zsp;(#^`y++W$1x*5EL=44uT?v)j?3is5%IW7*q#A5o78gC}K!`x~^|mc{ATs^(}g2 zQLzyNjEapIXH;y&aHC=)MjaI!G5Dz1)ENA#fA;HLK7VKKOMP5UzTPe;x7RJ!WmcIR zQ0Z$AzHz9rizt-Xs_lAbBA9MbcBtMOdWIMBU4A=_{h|8IX*IVq>hhF z9lPTrQ%Cdo$kg#YJ~DO0kB>~P0pcT5tAhB*)H)$PGPQDuk4&v4;v-Y5i}=XYdLuqE zwE~HcOsz@cBU7uC_{h|{B|b8>l8KK@t!?5XQ>&f$$kh5LJ~Fi;ijVBKM!L$g70(*U zC$irf$tSYk8p$WJ-x|p$vfmoXC$irf$tSYk8p$WJ-x|p$vfmoXC$irf$tSYk8p$WJ z-x|p$vfmoXC$irf$tSYk8p$WJ-x|p$vfmoXC$irf$tSYk8p$WJ-x|p$vfmoXC$irf z$tSYk8p$WJ-x|p$vfmoXCo;80df7XVbd^2c&vEwY+T5;?HS_GpVl$)e19RK@N8%io z+txo3TmQ|IJvX=0UtgOCviBcVoV{Gu)vDOOQy?qvUN+$Rq${okYPE-Jfm-$9TA)^c zxE82YAg%>!H5k}}d3ONwSQ=;nJeCGp0FR}C7Qka^pat+)8fbwUOT7pBmRI?8u{3qZ zRO*KtqKR_$O~0I(%{FcGqSbuam{#h>;Z8h`wy0sr z(H1p8IohIzYH(ZE+q(e^GbqemyEjX7V_@&$AN1I;v<1(Xr7d{AEN!9l^^3gBug&8F zW_eMWsduyFonj-+p|dv996E6$&7pJmNtrEnw>L9RvcX2sc^Yg4ot?o(sGRIA-t)&N z&E1zo?h&ZobdNxFm3xHvexQ~l?)yM3Iey(=I}{sJu~zd{p078hIo8}iWJ(-cemk&j zWnLa&?g3qF->~*@lOC~s|MdOUUEAxr?4DjVDrTN8*|c>vwikPgrnvF@;br(Em!qc;vHT=*uRT@yG{N0ur)!~e>kSz zzRJUW3jL=Z>eEflyFYGBF!N&7Y;oUXv(MUky?fQ__C>424#h>Kp4044_k(@)-^svm z)ZYEQttb6o^+!@=4B8RXfB|=J@B`dVZqmp%xT|YAvF!a*qiKReL>wCnZc05fiNSs-+?Xb?0 zmxd^5j;!NSWWgIv5)V?+EZLZKCW(cJHAmes^3B$Mx7Y5>XOOlx0d?2R=Wf;RZd?v4 z^Q}3R*%`4ap$$Sxnx*mL5X8i}bg-Q$aa`a9F(u8@XnhDmN}47fB+e{ZCyUaemx?KE zo~+c}3PRj`vhK3hx;GBRQzbYHUn(Zf8D-0Y(!!SrDQT9hLsMqi8%+}vQ_?)ypp~YH z2Z=RH(T2NYo|52(5GBpgcy$Ot;#@ue^fm-3X_j_7JbW@~cRsH*=b4DRD`cK3>UJ1R z#F-=OL~&cMle&^Oo+cI~&Met>SZB#gLzFZ} z)^RDa;Eg7U2PtWmY|J{7#6rZHqj;Ykxi4xrZdF~e-Psnc=z~Z}v*b`5)TN1uDQTX@ z>w~&9@gQ+#$vUtcmw3|Bl!_^Bo~+cn6@^4Y%u)N!_+QM3gi~4%I5lr&Ga0@77HeQDxB;>?nDV7V>v z#HA?}Q`$UPsb$V5>n?YL&-xePP-!#8QzbZ;5!N)gE%xq0_#JaO^JL3{(!!SrDQT9h zLo>WWaL%UDG%+zH&65pUX_|PDShEzZgF9xwD$Y8Wk`N`$(Rg)Gmn0sfq*)p*4(gJ` zLd2OP>!@;D;z>(VBBZogvO;%j2YqScVM?1PmIA@Kc(5kHO>09&9%q(pInY`1(hw!h zk#$^(EO?_y;z3H9B^$HOB(V@tIr`;wVZKePj*efv z%bSh)a_xtoKfFFVKRP?9vg`cK;70T9$8PVpJbT%F`gT#)%eUQEZ$IsYC%#mYXLld9 zJ&U>eJNC-r?)OiwXH$o_5YX4x^=9+leDwFBHz$qz;r>X2tywaPbB zr~G7NFuNi*=@I*U(G<(KlScfs%i?_cpm#@<|0uYhRe5`rH~#?=`$=A{{sUm1ubX0X zoi%2qIq8D*d6Tc^|1l0PuePZFVdkl5ccIK~qV9sk73(fgNU83Egp}(pNJ_!(g2WW+ zE=WYt?t%nW;4Vm9+3tcQ73?lZOv&zov9tAUUO)43bf{$skEJm<*CvxXB<< zC7TSAQ?$t-L8Y4vl2w7pAaPM9GybH|q%O&b$3=LId`N)Ch=+t&jCe|n#E8d?cNp=A zD1{LZiZvMVxG;ecPm1vu@t7ce5zmRU7xAc2c@a-5+Fg*6hP?>Gl2;_ISa*R!N_7_` zq+EAFQVMn#B&JYzK_ZHF7bK_xcR}LHb{8b6V0S@cN_H0{r*L;cqRMv{B(0;nSZ|ne ze0`&)3ojGkb+DHyP>$=%1SnnnWdfK^0y6>5QG=NPqocx1fYi%jCcx_|F%v*_vX}{Q zx@pV=K%G5i0<1nFGXY%LCWCY~ugfrrGK=JuYcfzuu_lA06l^j`OvxsL>tClO3UtA(MMtoLZAf!e-CB|vQV}g`MJSV_t#52N#Mm#ClXTi3X8Lg*JZ1ur z;~JwM(#2x*Q#whEe#}va(U0h;F#18g3`Re$tH9_db@CVem~Q%_pVQf1^rQO7i+)n>18sqTV=l@G-5 z$?k&W6z(oaRQc|Lq(!-l_2Cf_&xT;-MLsXWUKCIQ^hG`;#9!oNVgyD$XS~74XGAHC zd{V5#$mfMgjC@p##mMIbX^ebOoX5y#g^G-PT-hdrbT$npgXEQKGEhpfCWE9DY%)kp z$tHv3lxi|aM%gBVB-LOtNM7M4gG7~VGDuF*CW8c(ZZb$#1tx>UMVXB44y*}Yk`a%K z@EG}!0F4n339%UQlo*K-j~VYU;t^2_BOVlMFye7x0wbOj<1gYdLHZ(|6K5~tQK9l8 zo>sKGASDfZ5r!qNNL;b*0)>?7E=WkZ?t-Kg>@G-5q3(i26zwiZPzCOS#FgzXNK(P> zg2a^UE=W${?t(;>?=DDMS9huEDkr{z;`R=*yPN608T^pSZN6zwwoS}F?|#3oH|=~; zw8_2;)9s9IUKe}OpH+wN!b~8SPX3}lnQj83pL5(`^fS6DjDAu-htbdLEHU~~-7H2w zr=!N`2X*%t{j6RhqaRnc$snE0?=no9%p!T^nhccE;X;i5TnaWBWHKe243bl-$sieJ zn+%dvgUKLyg_{f#RkFz-IYpZc5>&d$AXycd3=$V*GUM+rnAk-b1;7ZG(SQk%83mXS zn^C}t(HRAx@jjyf5+yVWP_ag%02rn;3Rp2tqW}~nH3~>^R-*tGsx=CDg?kNB;jouz zm~x8*7VI@pOu1fz#FXqcNKVmSg9H`pHAqO|UV}tc;WbEL>0X0m740=hP}yFCBo*&9 zNLUSCgXBed&FBO1cOEdAXK322EQyC~x_7lD=S5hJ{H#Krp%I@;h||bVCPr!GbH*Eu zd`6Ve$S1}6jC@|0&d5i_*o=Hmkj%&j#kq`pR;bFz$CYg|NN2-dpyA0Zl2@+DKq zXXNKnu*o2kDcNL@oKj5&$tc@okfa(+2FWYjWRR$mO$Ny++GLQR(oF`*s=#EBxQ-@c zy|ZeHFE*P3u!GA?0&`qurhw^UGgIJn(wQlMj{3|LARUEf3aDO2GX-E*rI`Y&lhaHA z)Jc*C?JNIjRsDH+9=?} zxQzl(klZLB1=x)ON|@d#U^?mV*S9Z8=C%xt4>Zlx{glRvnguBo=QuNLbmHgCrGhIY?CbmV=~K zVL3=(nC0+1ihXo+{Ni2SY>K-2@bib)N9RXpCslTxzqu}|eA#3d?GMX(u_*IRTUYt~ z*1V+b{B+Z1ZN52sx&3LrDC_0hdHa5ygC$2kFvM{bU?LPpJ|@O+!|3-%f)rd+Q)@T#}!<0q=E5>OQfP$n(0V&RE6u?5YMggyIuR$uD3a>!|3-%f)rd+Q< zVoLTJB&TSvL4u0)8YHA}uR)@!@ERnrbgx0OiuM{LsBEu6l8W~lB&-InLGq%!#&)Zg z!mroZaCXlOwdRFtXK%XKsx9lvynwAW?`7-Wtu~jzi?AA7Hwd8wNR50-h||c+q? z&UmAd&xjHl`J`B%k1@~wG(4F_^2#+C zD5Y4FK~f4f86>7;lRL$lR@IT znoMOr^FmyLaC@)WZt4Hc;6;pE^BI|wZ40x{yWg+tO*>x{ZL+V>bUULO*TrMh=k$ex z#;AvMvKaN0ZW5y&bKGInBf2V#dQd-uQIG2^FzQL&{6#&cqrRx;bhj7vs9y4-o>sKG zASKQ3B21FJB5}pK3lvhSyC5Oux(kw0u)82Jg}Mt8QM9`tK^3?Q5?8jnAV~$g3ldYZ zyC6A*y9*LkzPli4QSLJSI)iClc#+SGuonfC0DX~93Go;Cm>7YP&lztp@)=PIBcBxO zF!Fg}5+ffKV=?kMK^h|;6z4JWS)n2$A6K@?Ae{|+8HOjbNM5-n1EmyeGDu3nCWFM3 zY%)krsV0MDlx;FdQVk}9Q^5+gCqTK}vs=!^4xU$^^Nh;V~ zkeHI)1<5JgU682q-33YO=q}b9rY86jvI+1y*vk|s$Mt0blrH`<0Zb=>nE>ag!AyYB zQDG)P>g6yK;B}Rl37|Sz%mg^yG-d*z&K@%XRv(d>0IqD4K{}h)Wtc>nMe@ou87QS# zlR;7nHW?(QWRpR1N;MfIqimBwl4>v+B(HFjL83}F86>A@lR<(?HyI?W0+T`F!c4}x z_V2#yzPkrY$(LcQINe1k>tBcfhPaFZOoYtH$Hdr-d`^(g$Oi@ZjC@F#(8xyx8;yKm zoYKf=1v!m;P?XfjCk0xKd|0g3$mbRAHAsa6U!vj3EfQF;*FZ7ldJPg&vezIvMSBer zRIJw^A%%Ml5>{B+Z1ZN52sx&3LrDC_0h zdHa5ygSAFHFT`r(QzE2BJSE0y#AAY#Mm#6LXv8zZgho6m*k{D^;&etlD#&KUbE0HM zJSfm*#Is^mMm(-;lR-M029rVZ$~74%rC5_eQVKR1B&KAOL2^np86=}@lR=VdFc~DT zaFaozN;VlJr)ZNwf=V|TB&!0GLE<`^jLpa<_*yglxDFmO0myNU(GTfjG5RT;Bt}2x zsKe+-bW|Aqpk4-}AJ$^DsUGhu55Qfk_vVgB&K9{L2?Rr7bL2DcR|vk z+=b_f_hiq)jLM6AUWC0UpakfPd`gJF$j8J8jC{^`gOSgOQW*K9Scj3%3zHc6s2Gcp z&k52P`JgzDkra!NHBB%^GT zL6T}P86>Z8lR=_NHW?(RXp=#LN;erKs{)fj;-XB(b`e9w$5pT*BOVvwG4de+8Y3PO zVlm<=F%lylGu~muBcc>WJSf&+#N)yQMm#CTU&LdA^hG=;&R)c$Lghs~t!Q^aN}2+9 zLE?&a7bv7ucR@nRbr&S1V0S@c3UwDGqG)$Pf+}zqB(7|CL6Qn~7bK=+cR_LrcNZk8 ze0M?8y1GkczPobvru)>&vaZZWSz7b0mhO8ibH{g(brHT9jBsnd>$1BgYxa5f2kUy% z&KE_S?pYZ9ye{@K0ZIpb(NF2*FZwav1V%sSxWVXWbX6Grq<#*gpVwJp^rO02jDAi> zjnNP4?lJmVy+lSou56P*I-B2Rm^7J1^2#+CD5Y4FK~f4f86>7;lRL$lR@I5Ovd3U_f8Hbb5TYCFv4XtU;<=D0Vc#| z6mVj6MgeHN&nSRI35^0&tkEa{hAE8#R*cgq00l{n0#cmSD1e1(jRIcbUV~IP>?Ine z+#-Pmdkqv*uGb(jC3_8$Q?%D0LB)Cv5>mL=AW>C#4H8(o*C1I%dkqp)w$~s@#d{4B zR)g0dc~M?7{-T3vU9OSOi?A96lmMxbPYH1v`Is1`kof9sVLBrp z6=O5@@>!uOBOh0`$snB#dx3^0vq)aKCIh7uYcfbm!6t*mlx#9cPN^n? zWRz_(NKy?ZgX9%%GDuX(CWGV@Z8Atu=_Z3@RbVnmTt}0!-dQ!p7n@B1*uiBcfjKTS zQ^0hwnJI8O>C6;BM}1}rkd8t#1ynDinF6q@(oBKX$!Vql>LxW)Aa%ByDZu(@%@lZr zdks?Iye`qC$}JLDu-8B_<$4VgQ?l0}IYoO75>%|$AR&c&4H8v_*C2tVdkvCRwAUa( zWqS>hRJ_+9VKsOSk{9MRRuS0LH|^Dls;6kIJlz#4>tDzqhM0{8PK4Sh;KaC%0#K0L zC?EycjRH!T-Y8%N`;7u(oZu*c1sRS4Qk3E-Km|IE0$Qx(C;*mjIY^@eU%p|=E|OTX z z{B+Z1ZN52sx&3LrDC_0hdHa5ygC$2kFvM{bU?LPpJ|@O+!|3-%f)rd+QG$ zQ2>b&8U?6Wqfr11QyK-V7^hJH3X&QHq&TZl01MR`1-!z&2B~n^OEgTmMFI=<8Yre* zuR&r;_8KIoXsKq;Ri6qN?y3B(QX^L9&YW8YHM}uR)TE_ZlRu2CqT#qP)g- zeM82#T(DXrpBG^@3Mc_mBcBrDH1aVqN+X{$-e}}AqJ&01Db{D?^TKpSJ}Sm$7;lRL$lR@ITnoMOr^K$m4`?AZjuFN-JTJvd`?(;5lxA&Ue z-JA8zV2E4u9hu!9%s%h_U|nz8`J!mkJwr1AU>BE}0;Yq^OaRl#W+uStrZW=&9ru|D zK)MRe1W^5qW&*&@N;3ggH>a5ZsH4Hh!JL^f)k)N8aN?tqX85nHyTLe?M4G7N^dla$qf-MKhDcW+7pt3CoNh;TJkd)Fb2g$0# za*)L0Ee8oJ+j5Yk!Yv1hD&KODv??qI35>Fw(f1|XNx^iUy=k+uB%Vg(GYmkt_y#|S@!fTMg(!B=BD%xw1 zpt8LNNh;oJkgyuO2FdH_HP&0OCi$|oNf0}j%``a2)n*c$E^adkP$#*W1nH>VOoGx; zZzjR&aZLnv3Sct!pgQBB&l%AL88jH93-s@%RvIeEXQgE zLLNo|YmNqFi07yPMTm|DP>ktlAO)$822_CSXuyQYjs{q;?Px&8>5c|kknd25jNKEn0gM?M$JV<2u z&V!^C?mS3T>CS^>Rp2~GTpiAXB!)Q;)3f6u^Q^M*%5HbQGWhJx2j8R&x{pOSc@P z(dn=pB(Y@6fpQAA93-b`%Rz$5wj3m>T+2aHO1B&&s}9RS5{tJSB&=-9L6Qo$93-lI z%R$nrupA_?qvhCqZIZ8Fn*y+d<4gi`Tyds=>0&rj;B*q4DS(dp%@iOV^=1mFUUoAD zU{|@B0;`kTOaatQZKgo#Y&KJX^%0vX@Cx@Dq{4Y!yh)W?B(Pwwfnv(_8YHGT+2aHO1B&&s}9RS5{tJSB&=-9L6Qo$ z93-lI%R$nrupA^X%5rS?bZPurj*Vycuu*GX(suTydsW-AuFOl_TJx^A?tN`@A;1X7 zvGs!#On~Ajz=Rl%0#1zJC;*N38wHRky-|RQwHpP%Fu75{ig6nSpdhtTK#DUP1+Y-D zQNSzQYmf?uy?DcvTO_bxuYqF9^%^9mWUoPTiuM{Ls93K-LJId9B&rIpK>|zn8YHV| zuR(&!_8KIqc&|aiYVaB)udCNo=BqNq)d{zErR_Z6o5AZFx8|!gyIc5XpLc(-t~c#` zQMAdvdUK+m*TrfkKc&}RLLfT

c(NKok}gJe};GDuvM$&9}hVPY3$6aXV!Mgt~5W)xsTY(@bm zMrRa&#`}x{NR-ehK*bu30$`ZZC}71njRH`R)F>duS&af%sMaXp749`ig~MK=VahEM zSg_YXG39y<5>v9*AUQ>Q4H8tW*B~Kl+CRJ{cz=FL7iYeD?keHIa2FWSfYmlH~y#@&>+-s1iD!c{>EZu96tfIXJ2`bxb zkfh?h1_`UdYmmG!ud#|i_l5c0&01Q%L}TUYu25P3LIyF!Y&38p)J6d(#%&aUg5*X4 zDZp+NP{Q;^0V~*V6cFPCM*%Fza1@ZD6h{Fn&~X&dVkJibuyo5o8XfrZ4O4cJ#F8xs z$|=}#kes3|2MH?Ma*(8QEeA;{-ExquIxGiCEZ%aEu(B-&Nh;iOkf`!42T7~Ka*)6< z%i(#f{^;oV#k;)O6m|9C=MS%s&X3Mcs_Z&{b6r&VvdJ#mAC~oEQRbVruJZY9R+i_d zn>K6n&DqQCPxD1tFW=7F_v;)iIr4!aj-vn*p*Zp}F@__b6C^nDK>>av9}=cF@=?Kd zBOe$iH}Y9QZX+KQr8e?Ofo3Bg7ArRLd4+ooQsGp14H8(e*FZ7ldJPg&vezIvMSBer zRIJw^A%%Ml5>g>!D^;J zIW9F5pmcGX31B)Y%>+0{jb;LjjzTj5QZJvG0I#dgOaRr%W+uStCNmQNb#|Evu==RX z1aM`W4AR-WF3=>(ERt8Q$v`Q^nhcUsu*o1XC7TSAQ>w`z8D*Ocl2n7qAbEwG3=&nc z$sjpJn+y_Ey2&6}6_^YX7iBU`kIg50hGtY{6aXV!Mgt~5W)xsTY(@bmMrRa&#`}x{ zNR-ehK*bu30$`ZZC}71njRH`R)F>duS&af%sMaXp749`ig~MK=VahEMSg_YXG39y< z5>v9*AUQ>Q4H8tW*B~KMlq`(e8o-Rp2g2T-ok|Bo*u~NKDD@g5(tLE=W}Q?t-L6xr@Ui@0|}! z<-&`6UWC0UpakfPd`gJF$j8J8jC{^`gOSgOQW*K9Scj3%3zHc6s2Gcp&k52P`JgzD zkra!NHBB%^GTL6T}P86>Z8 zlR=_NHW?(RXp=#LN;erKs{)fj;-XAu{QU)!x+EhW7vVATApsgA9ui_P;wdo_BOWu} zVZF&lR@$dHyI?VWRpR1iZ&S}sC1J-vMMkcBreQktZV;GebZi@XnGpPiql<$vi^k# zV2H~oz(mN5d`yhZ$may_35|SIu+hi|#wm?_R*=)k2SrJZd{Us*$cM#h zjeK6=UV~IP@Fg0a+#-Pmdkqv*uGb(jC3_8$Q?%D0LB)Cv5>mL=AW>C#4H8(o*C1I% zdkqp)w$~s@#d{4BR)g0dd0}3|@ch_;ULTzwot;$Kb^hkMsPbi# zU9>+e>&2qXH*HAvlR+}dHW?(T29rVZ3O5-fs$`Qva*8$?B&c+gL9!|^ z86>Ww$=Hl+g0D5xkL%zu6M!7o82ykg7NeiiNn-S4jyjBfL`Q|u59(zw`f*(aMn9>O zzv#zw(--}m&i0}o)kj|R(~5Q%q@;OWgh`WEB(7L@fkH}k7bK)ycR^ALb{8b3PvaxB&lF`L1IdF7bK@}cR`}ccNZir%3XM#cu)2$%&5G`=SA3y0!o0s z$ftz(i+oIsz{ux}HyHVhD20(vigg(IyfBH8kBYGv`J5n)kq?UV82PMFk&%xp+hmZ= zhP@2KlUXFMT$6!PiZvM|rC^gmVoEj{B&Sr9K{CoV86>F&lR@$dHyI?VWRpR1iZ&S} zsC1J-vMMkcBreKiY!@*^d|U-9GU9O&9wQ$TpfTbhAr>Q^5+gCZUUp9bKGF`GrB5_eo{Y&(a-BFG5S&6EJi=4qsHh5b@v$ktX?9cA6K@?Af3(c zGEADxB6;PS43tu=$sj2On+y_DvdJJhrJ4+qQMSn-Ni~=Zl2^FNAW5Xk$|wLvxQqr&fXpbsgxHJ%PK?ed0FCz<1&}DAQGkjy8U?^G zrBT3&aT*1nAgNJ6inAI8uu!d0z$@HqkP3&rM8lL@B(Pwwfnv(_8YHG&N;VlJr&NJ?lRmqdqeQNJpWW0;-qMOaa(cX{NyH({)rCSct=yX^Pl323kKsg0l4w6%}~e5AW4N=4iZ(qS^gH7_YUKi#xhn{UouZhx9D%6j>B-o9Vw zV9AjW3~?L$LYmlfayaov@-D{An zqP+$QD%)$2q~g5>39G?tki3pwV-vI~zA9}3ybe|~1K4QD%|6a!m$G zDb{3=l!8qLi7DA+kepIY2FWPfWRRp9Oa{p-++>ibl1&E5DcWR^pwdkS$*RC)khmz5 zQSed(tjZ_=M!1XyOn}TNz=YV00#1z1C;*N383m9ip;3T}H5vuLFr`tzig6kRpdhJH zK#H>(1+Y-9QNSzQYmf@3!fTMgg1rWcDc5U|n3BB)$tl`vkf36{1_>$LYmlfayaov@ z-D{AnqP+$QD%)$2q~g5>39G?tki00bvE8br@ar`;oZT}+t$Cr^*_-aQYRkGZFJNoU zd)c~otIcKbBCN*N4MHdZQX`)d;xzIxF-jw!Gu~+AGopk>J}K5`-pTl#-9coE~)d`71G z{p|DZ_v?Do&KE_S>?<@U>Tz8>Mn9y3#;AvMvKaN0ZW5y&bKGInBf2V#dQd-uQIG2^ zFzQL&{6#&cqrRx;bhj7vs9y4-o>sKGASKQ3B21FJB5}pK3lvhSyC5Oux(kw0u)82J zg}Mt8QM9`tK^3?Q5?8jnAV~$g3ldYZyC6A*y9*LkzPli4QSLJSI)iClc#+SGuonfC z0DX~93Go;Cm>7YP&lztp@)=PIBcBxOF!Fg}5+ffKV=?kMK^h|;6z4JWS)n2$A6K@? zAe{|+8HOjbNM5-n1EmyeGDu3nCWFM3Y%)krsV0MDlx;FdQVk}9Q^5+gCqTK}vs=!^4xU$^^Nh;V~keHI)1<5JgU682q-33YO=q}b9rY86jvI+1y z*vk|s$Mt0blrH`<0Zb=>nE>ag!AyYBQDG)P>g6yK;B}Rl37|Sz%mg^yG-d*z&K@%X zRv(d>0IqD4K{}h)Wtc>nMe@ou87QS#lR;7nHW?(QWRpR1N;MfIqimBwl4>v+B(HFj zL83}F86>A@lR<(?HyI?W0+T`F!c4}x_V2#yzPkrY$(LcQINe1k>tBcfhPaFZOoYtH z$Hdr-d`^(g$Oi@ZjC@F#(8xyx8;yKmoYKf=1v!m;P?XfjCk0xKd|0g3$mbRAHAsa6 zU!vj3EfQF;*FZ7ldJPg&vezIvMSBerRIJw^A%%Ml5>{B+Z1ZN52sx&3LrDC_0hdHa5ygSAFHFT`r(QzE2BJSE0y#AAY#Mm#6L zXv8zZgho6m*k{D^;&etlD#&KUbE0HMJSfm*#Is^mMm(-;lR-M029rVZ$~74%rC5_e zQVKR1B&KAOL2^np86=}@lR=VdFc~DTaFaozN;VlJr)ZNwf=V|TB&!0GLE<`^jLpa< z_*yglxDFmO0myNU(GTfjG5RT;Bt}2xsKe+-bW|Aqpk4-}AJ$^DsUGh zu55Qfk_vVgB&K9{L2?Rr7bL2DcR|vk+=b_f_hiq)jLM6AUWC0UpakfPd`gJF$j8J8 zjC{^`gOSgOQW*K9Scj3%3zHc6s2Gcp&k52P`JgzDkra!NHBB%^GTL6T}P86>Z8lR=_NHW?(RXp=#LN;erKs{)fj z;-XB(b`e9w$5pT*BOVvwG4de+8Y3POVlm<=F%lylGu~muBcc>WJSf&+#N)yQMm#CT zU&LdA^hG=;&R)c$Lghs~t!Q^aN}2+9LE?&a7bv7ucR@nRbr&S1V0S@c3UwDGqG)$P zf+}zqB(7|CL6Qn~7bK=+cR_LrcNZk8e0QN}U-rM2vaGZFPox|lXP5cW@h7XI$(OD9 z#tQX_iF1Hw#P?d91DwPLI1LH#EVd8&0fPFVA0Vg?`T>Ia;3T#W`T>IapdTQp5BdS9 zKG^$mP+2$mYTnk(@@l?V-%pF#C(GLWX1*xeqqDDfzrDzoMRhrUm?fs-W8Uy~3sEqqZqVnq>iOQybBwX%3BdUe} zK79d;^ooe|Wq)K=%O-F0`+<4(ygPI7{PwD7&55>7vbYX!{bXHKZ^PTZY_j*kTc2)<(tNWzc>9y( z`;0oTfjv1QX^br*eiu=6kEM;jd5zN z8m>`JEVaWmhP8q?2eH)=*C3W^;u^wQQ(o`Yl+{hq-Y+AF8uoR6gY`N$S18JQ`F3Qh zuMV~{7d=L{*}GiVWaa&zpP4%v&5!eLmD6Q=cDBkhqx#0@iM@7mai)n$(E+)J!#h4cSXRKcex`U)wMevJn zOEG2=kSWH5x24#tg)4KK_b+R^Op@Vfo0dHa5ycb4|Jdhr@f0Zq+5 zUQ^ z`*66e9v6FCJudb>>~VRw_1#B2e)+c5@@=cf1>~T?T z{e92B8gpNpdCYZ{=j%4@Imnh9+IG{7b-q<{0!_r zbo>m&hmN0t_|Wk)5T6=9{X72d=I^SmAD@Hiy}4ud#r8MzD^uF;FZ9&w+|(;mkY+D$ z9&Z=4-K*!`-m{O~-pNO9@AML*8gw)}ClXUiW)dk6V5j`UHFf6VP2v}enodwYM=KL@ruf3vD@%z3N1Igz(`I0^Ncc`=#!m)bnCO+SYf5{t@n{{D$0F?gmb{8#v`| z;D~B~8XK@2pc)`^fNFru0jh!h9P}zBwGN8Q0Yd}(IbdjDKL-pAkU2mldA}C*2v7}> zIY2c)=74Ho;PmyyO?7!Qc4cW`yQ}x>tL)(za`x%kycQ^H=Gl+MW=6fr!!yi}#6ib1 z%unuNs`q7abA5kcbl+}WX4UBRz26=ljJu0iH%&e_0eT1Im*&Z|-Nm*|acSP(Mpd2g zh}89m@QBnEhwzBhHHPqr)K!J>h}3n2@QBolnZhGdFK7ynNWG{jJmQzcTnmr*6+GhC z@QA;HM|=a1_-lB?-w+W89H*)4cI?@W`-KKSze8dN?vHQ{Pf6oXEYU zmN}7OskKgISZcu&8J1f0M24l7K9OOm^-pA2Y7rC}mRbo#hNYH6kzuJdQDj(ZVKlTj zY4Zn7b#rg8Ae4D~1);pV|EZR{bJ=Z^t;zeW9#29auAhj-l3x?go?N-!U!p;pIN@*N zl)njc%k|zR{=JT(R>iXXPIyFQ5wvg;EnNPo5ZI8MxP zdHZnP+1jVB+f(iLFFtMCzbvz#wqGyJ8}oo?-L{XP^>to-M1-WOK}1NZ07QhO=6pm* zYDE$e(qUP$%9^+HI(v(K{os<8Y!>_sBr^p06U7z0o3*Ld|?Cw z4PZynKm*uOG|&Kc6b&?h9Yq5TP@|}KIsBnikmpDd&!T!XcCV(3Zo)X+bSJK{;e; z(3V4%25mWHY0#F#!$HHGLzV_@Ib>1WNFZrLzV_@Ib>gSH&HH`sf;^uZ6Y4|jUEu>V9=PhhC>?A^ltBUKzN>_1b*(Zc?NZM_z#$>ZHi zWFBBGka>W$K;{9~!hRn5M+)LPa%3JjTG-D6M+^IT;Anx&11!_~^P$H8Yk|xItOYU; zR13Y=i9Q@3BA+*m2uYo3jtEJeTaE}xolTAiNu58A2uYnWjtEKJi60S?x(h!dBy|UV zL`drH`-qU#o%azTsk`nYLQ;3!M}(yAwvPx&-Dw{YlDf-&=%Skc6L!=}7ZaVTqL}DZ zLB&L;YHL7ra}~|?5k5?GV80LSJFwpeqEr3eyG!k1eSm%r!?TUvP0ro945xeAJ=^Hr z<;>Pb?>1+)HhSK8*ao#G^z18ZK0s|)^8sqZnh#JLy?k`%a5%Bz85eM_C2iQHT2 z{7ht6>KsjESn51YWLWB4O=MW=d`)Cn>YPnvSn9k@WLWClO=MW={7qz7>KsmFSn52^ z6UW)sTg>C4_hr^08dY7x_Khm4VbQ2s8WxQzp<&Ue%DETKyrc2*sx@C%Yx8B>`!KOG8kFPXXWlyHlyr|ygO`EUopK3pLEo^a7sR|btl`3^{ zQK_027nLf0aZ#x%7#Ec)hjCGLgDv)tesY)3al`5HWQK{M)7nLfaaZ#yi8W)u+ zt8r1O`ub(BzUJ9#akII)ucpMkUBBpWarfEY`%THqHDpkUOV^-pf@f4-UNtafxG)Nvb1LLJ7TjZjDR@J0qs)4H71 z_RGmYBlw&QG=k5`KqFL6ER$|~e&nHae$$;TS=Lo$WW6w-^KRd-^Ld_a+LOwBP5kW5 z;P0!tX|HU5u&HnE|6sU<+x)JD+2>sg>w07TSd&&Bs*ZgGp68n@lO`gA8WY3=lrTdl zt(l4wN)QVVUw*9PNn?pi1e7vER%C%i&bq(dn6v&xFj2}Jv6KaBofv;$wI*O!7C7oQ zUxsY`ud&Rf;YpYu>xc|434AkXG(kK-2{U9P)|em`9>)AcyXxJDoQ|vp0VT}Pcu5E% zVk~lFV~&X^VU9+tg0>X#0P$tWI;7l|a>7!SiYR4{tjyhNL0yuVkWyxer#A2%kE|(h z)7GG2$Co2p22>WiL_i5MWF3?eOWkOSn1~YQ$cC&kMLa-^85%Q*@hh#}3CZcm>n?+S zJPGqNUK2uq_?8N`@zfnyd4LjTXtX3KOAreWUw*9P$!#eoD?y2XQfA1CygSD&>L_I0 zUzJsEoQS0?@EwN|0rAZuTmNe;b7^=I=EpiB1s1u{1n~eR%#e*(V}e+C81obFs$B%y z?RFz}LbnAE0wv6lLrGAUA||4QIU27D%2LDw#FruKkaAqg$x2ZwqLewZGVfLk+LFYC zlrl>^wL!MFh73Et9N99Uve+d8N|+(0y1+M!MpMK@lrTp&WQj*3+y3s#LhOSOyBt4} zJ;n@mWjE%T*1JJDA$<)aN|>YZx)6rMSn9@x9T!rJczUqmpa%o9_A;5#l^li;?%y9?pD9^%WAEeASFUMix5IkJw+ zh~mIElSY%og_JN$HfEhkVj^P9(U@4+?)2<(v_tkR-;DDp4N$@ijTZ)ODPkf@n4{6U zpe;o_Kztdp4k@=~ov;+8B1)MfE3?F-k#&b1H8yD6rOXmfZQxrnj3EOnzPVj@bIBO9{H6!8EtW+-0vx(Kwrc0Kas>N4Mv$R^v4bvuA3VSXHH zLI6<01n~eR%+PpA(3Kz-9=`lo#}i*k;G02-fKq12io9DVh?+yz{dJYr0HTyRVkrwr zXHo2pbwev3z6{y=Ut^g|!;>&S)}kS>$c-k52Pk2NY{VK9#KOavpYDjrdgpN0BZ_48 zZi@NYcft&fmxLf9zGcGb`2;4SggF|m3ffY{1H_jh>yUC=$_YzRDx#D*vNCt81$9Yc zLQ0t>p4z~7JhG->R~yE(HE7uJ<;a!+mBlU*P{IsZ2c^VPH<}_QqJ%lJA*)Og4-jL9 zqV07@?B{xXN1{kR9$hNy0%Ul|sg!$nq34AkX zG(kK-2{U9P4zAe=6U4$p<>$?HQRT}fyJ&w{<@tJ3W^F!SG{y4m=KOTinx8gD$1mRH z&8DcU4?ll+eRO_wc2Z^6`LBnzT-I4RubX^i+rf{1FYEO>ZydJ%+o6_MMRr|RtI*B! z>%7TIm(2&cFYEAai>9s|cKdIJsLO0!Y#cWJ?a;ihI$2uJ4mABFK@bIL|j}2I1dRTDyveO+1d7nesHlasN@21zV%-`mBGXI1p zU4F)^K@bqz;$ZYt2oq4c42>29WeMWpVatzoJh?63WF;sSP{IsZk-Ig5wiGcDCCm{| zSztR3Srf1;3-J%146J9WI94cKPSXnJ^f(&fhn zEbr)J+grDjZ@UP7D#w?dG4~l)xh?{Yvm35Yt~&C~o-{n^^5akqbR~!hC|!nZ6=PT5 zbR~#~hb=$W@#MIC6P2J;KnXKsMHV=Rtoz%IIqP496D7|0j0~3jaXxXczF2o)74wnJAQXVR*$USO)*dVPM4wa zk`PA3SLDXV92Zf#9F0~5Z7E^`V#|Y2#9T|U>i@}fpxsd1py_TL9zD%OPfI~JZ$-~jwiRJT+o1Hn?b375@yJX zygSD&>L_I0UzJsEoM<;mhR=hmOc4(d+bpu}uEsK#h$mfstW!+j3>r-k6HvMg*@!hJ zh=+$SKk=^GMWEfT>kvh%8i127I}YU_fQN0FjS$rUo^<&cuLc1)>C(f3!qcf)ZqY8u3oEjcqQ;!*)6%#aniTO-JtL)QK6#+>yp!if^*h^H*Dl{sqyc4c8qQiH}E zTZU}?ud&P};z^eu>xc|532ZZHG(k*2=`v&^)|en39=`lUyXp>jGO8MalP){sgvPKA6_4wADx|4*>(O!f5Yni$Y1|e|F7G8+1Aax z$%^uRv)Sj{pXRHq&E|`uJv#nk_jA#hzco!$hnm>9&j`BMxF<|;PnqJLF~vQ{#GNsX zhl9AF@o*3qG#(D(g2ux^T+nzpi0d*QitM_sR`W$!FW=tR2VxlgvR78_HmjR_WTRj8 zH>#V$6g*Suisqr>&0gNDH^nNSuj<=sSB_rY=0&rr=c}=T1PM-!LP&6GC_;i$}Zk&j*52ecnGp7fpLVE6zSKgSefy@7MXMk&o-FBqo=`_RBhJHaW3< ze`&F8@wRBM=1pC<4-<{p@E83Fx>@JdCU5Td{`l2Jwk)d4-b|c*-ZsVMW!~hbXqdGF zBbmf6><-9C5! z+LhZ+HaFEpS>NW(c7?Hp=+-#4efDqU#pZou>SM;(#PiE0+iVycIJwB1iZgywZ*s=? zFV9Ss!qY*d8^F>oE-*R&71_5_7 zr~iJFHSJG~AfHuvd$m2BGIy9|mOy7CHA|q449pT}e0r8Zn;DuV&;~vwX9={K!C3-r z!7@vzc7AO+mVA4^`aXNT>!IxdraPF-zx{mc;+~~Gw5`+iO=JGgt-ORb@@m}_o9oQ1 ztaEb;L9R$G-mo zDYQA;R6|ee!KsFBWMrzLo3l?fbZdRMfvJXWZfvTd+Z&l`@aF7OEu^{c=%d>r=E~GBQ!4X~xiS`in6tHa_Hmkdu`0UDe7rEP z9y;%%H21=sgsa#y^a%A)nzPR^^n7-hVdy5uW*E9XVuqoc8J=P2RvriA;0!}IH$218 ztvo^v&ajZ?zNe32-`}kWphq!Vd!OGO#eB{I*^ZdDww`xX@m1c|#^>8hP(ZV_we@=2 z7WnXQZEq)L302&~4bp2D+`WvEkm{_GEcp?Oh&tGKJ1Q+5Sy;YUjAl z-V*m$9L`#=$fuiibF-xGC5a6Fd{H#ZE2bU)%T0AzGVSmc4gc!bW`r8!7I^X8y z+UdT}{;g$AvA#QEIovS%y5D4XBgy?fhTmA`6Z7dUMbt?HpO{Z?C_==1dOHy!=F^*r z5HX+LN`#2%dNY|%j-KY7Iz0Qte42Me%%^!r#C)1}M9imor(*VQ_{+=uI@Y(41BRxL2 zdw&So=#L>A{V8OlKaXrQG>SrU8#MHO7t~V7DEeKk0NV?92!%~*#IZ8O&2L)(mX_s}+Dy*;$eSZ5Dy6VlgX6L#Q85s;p5$BO;{&bMQ; zb!eNAeG3>m-v$hwZv%$Tw*f=v+km0-ZNSj^Hel!kboF-uL+87Iq4Qn9(D^QeCt&D& z7cg|b3m7`z1q_|<0*20a0YfLC+rAGNI^PEjo$mvN&i4UB=lhU82pBrw2MnF>1BTA` z0Ym5efT0u61-}m%I=>GXI=>GXI=>GXI=>GXI=>I;w}7GZ`+%YI`+%YI`+%Vnfb)ld zq4S4;q4S4;q4S4;q4S4;q4S4;q4S53z77~Ve+U>le+U>l0lW6cfT8opfT8opfT8op zfT8opfT8opfT8opfT8opko*J;oj(Q)oq%Tk6fkuD6fkuD6fkuD6fkuD6fkuD6fkuD z6fkuD6fkuD6q3_`p)z?)mBtCgVe$i5%gdt~1ags1wxU!}LNiQ10)&B$Eo zUoJA+T$=aV-DdAcHhR*~x^B!@F-Ep|lDXYB^NYs3FzasDQuQ8zq`x+B^u&=4mz55cjBetnm55xKJg-pbS zUY{6L>GFv|)hC}AR1xxtLA^`QCkFN2y#6I9lb7yBsQb(iY1prY=BfGRm3fuH{YC?~ zL4o2>DfQhSDy_b8sMPw#q0;Lche~np)p_}kYxClo)!i$Q?o&qOr+3Tj!*&m^Pa4_w z?;dZHJKWZGt1z)Iq4B74^k3Qc5B4@kbUV}>K(|B95p+A$9ExgZU@b^3l+o?5UX8V_qdwY>J*XAv2kE@R_uj^vd-ZaHe+ox8q>zj&v z0i{pw>+g+DE-`E6E~odeI#YV+P#n-2Hv z+#2}Vj4AL5SKw2wz(-VIs_;hlacp3+k7EOqeHIr zwhgtiv28;wV{F?{YZlu!uZVSyZJRFxw)rYxo38`5`BlI+ZvwXYb-*^iA-3r~d3aIg z?efa?a$Wye+PwqXoc4b>>oz;TS(|U)SkM1E2cV{Y@1*wbE!5jx&wk3vJi9Lg1a$8$ z)Y~n$+m+e7hpmo3D~o@>DOU4UzHYCmD&iG{Dl1+=s5;{ngep8&4-<>e-j(9eUThJ2d9knR)$$`GU~wtKL7Z zuj;n8or!X9&D@mH3(Vb`xp&|rwq|Z8_=v5Yebm;@KWb~{PL;!+oPE?W$=2H7m}F~h za7?nbHaI5PS{odbY^@EBNuo|t{>f7(<69dXlWc5*W0I}4!7<6!+TfUEYi)2$5;Guv zlnfrb*;*SMlWeUGj!CxG2FD~@YlCCbv$fu>To>kZPp!Gtpm@BTd~7>+?yxCkrVg7@ zI_j_~<)FR05-)C=D(i6`uAYhWg+4JTdY>3nH~7Rr^ao|+KKnuWc<*ytmqocULvT@M z=Fa!+2fOain-J;f9e6KG^X0ygKkuDr?*4qf&PJQq+oryKa>x7Oz!_TN5(f(Ee6nYg zgY}!Y$-yGd+vH#+=WTMZobxt0Skrl%^jU0hj#%Qz1!{6|#PT*dIAVF592~K{O%9G& z-X;e}EHO!_du?Dt9e{%a zQeG4skdma}fRr%>2c+~VI3VRx!2zkuoWTL9E1tmtsf(Y%0jcYt!2zjDqQL>FtE0gI zsSBmS0jX=I!2zkur@;ZKE2+T&e@mQ;2oCu7=z#x#4)~Agfd7OJ_|NEo|AG$qujqjP zh7R~GI^g%{fPX*-{1ZCh59omZ4Laa|iw^kTp#%PBbin@}9q@lZ2mBw=0skj-!2cN? z@P9!E{4eN$|0_D+|Ar3uzoP^GALxMpCpzH&g%0?CqXYgw=zt4!z!f^+1v=mrI^bW> z0ZVki3LS8b4%narw&;NG&;fr$2mA>g@c%^z{Qro6y~o40=MT-3QuSg}tcvX693rt{ z??q1A4P7ql_b<-Wj_;`Ky;>L1nReCcS^8Osto;2-v-jDdrw)EMZ!hV1S`<-nKCLV{Bx0ur1W7?9x9`0x)t@D3>I$`m9xuFnVd9M|Uq z!Kps)-z?Yo-7L5Lb91v?dv$-kkU03gdVDXDnM&{ShodR+_x*!qlf9oW%?q#|Uk`o! zV)ygrXm(thhnM1lJVOLIK?FHP1ljcob+dqD$L{(hGRUq^B7^MugbLDoz~79k`*C81 z%iD)LM6G@5x;@qYZ}-Oa`?=@M{dx>%mK-H+;n`n0<7Eq*OVp3HqCMH#;Vq#KtDkdgXsA6JLm8yTTq$#S^ z-U*ho^UNHbmRH;FgP(0$v%E4VZu&1LB#ur|L8;6~1*K9S6_m=obI=#&yC#?5E**#& z-J=6BqdRmUW^{j^m{W>5a(q4w7~PXk14eh_(}2-^c-Gy@xh|poI21IxFNcCg_vcVh zs!w|_<+z*3<^vFQ>+u}fRo0lVt~fk<);oXxxQ)vLXuY@HcN>~2UQ|Xt_8L8VzO2i- zd479kUa&yabe}+{bz=$}BGQX%^Zv!E%>X-fUKW>Et$8}|2C-wO@AJ}Jj{xk~Nm*PY z_UL3?RBsXcvvp)ZoYPHFzRRi0em=wLWcfa$E^zw9IbGj0rmz9nPC%pR`J$aby*hb^8!1uV@y6?vcSw7&@(yRKSpLB* zWy?R9rFMA-vllS$aJDMu9n4-BDTxH4y|7iGPCdwxV8}3Qp#fE#*chn6@fqfSn?n&RphI`U?RJi~2czNe4 z&)&VC-{xD>FcaR)*3IUo$>;0ROxlNe{L-wky7O%FO>tReC3R^sIxwZ!(Sa$=jt)$z zc64CsoN9Dn>cnbvVCtF5=)hkP%kt>J)H9aRfxqP1W9pg9=sl*My^Ie0E3U41!xfl% zCNsJ#9G=a*GB1I8vWg-w`zP488!hYW#s2b(*syog%2mBy_g>b0crkx=-qx3wrS)?L z9`T-mrH=s=VmJbp{T`sKqzW0+q?720M_%}=U47mu0*f&?t$oS z^zF!2y}PQ4>RquZ7G?gQ^HtL`UZTC8T@+1izJ`}I9@kuUoAkxnv6)p}KYod!|FQZn zw!fKgzj(8&?7feh&0gMYj|saYiS1?SPnn3up3OdDV<#W8vD1&)*pa2N*~iQoyfItO z;EmaG25-!kv!jEYQRSXxo<%lh%Nd-^mNR%`wwxUfkjQSd)kb(@ww%Emv*irl*g?*E z-+Me9Ak?|5(0Rt$*g?)X8#~AuXJfXU9S#u2oWUEjVOav*irlm@Q|A10=E=4~}QOoWUEjh)j(^G=-`fAw#6tByAilN#0r9Q<4~XCE|87Pyj(?W; zz5Zv3-|K&t_}2ah*W*>t(Q~k zrj)Rp0;2VD3W(OrDIi)er+{d^oC2cta!TC~6qZv!v|dgD(Rw)rMC;`g5UrO}Dq8RR zU4OZGn=k4g?+>WNCAHoH{Vz9FcPGS6YrfQVzuD}|MfdaW&N*{&b^F!ffrB$|c&aRc z_MVy{pzu_(K;fwy=|JJB+v!5Wo44DTFH)GxvX9@Spw@Dr@W_!fu=mK3GY}p*at6X9 zN6tWaYUK28X}GI7g&l<)AwB{guJn>#qc$J^Y&DL&rj4o=MWn(O@5 z=_U;4&a~x@p*dUb7@D)?j-feQ?hYpc<@S)=F*Ik(9Yb@r+%Ys~%iZBnVa**wbGFs?^?Xk zb@n$nAa%YsI3RU~H#i`5PB%Cpbrv@`AoUo1a6szu`QU)mWAniQsmJAm15%I42M44c zj}Hz=Jr*Avka`?GI3V>Hd~iVO@%O_^S=)C$K0YD2eN<}yZocDJ=8YxIst&nK<{z7? zl8F7L3ML{pRXe?7n`>8W{XGyH*53oMVf{T2o9gf1931cO-%Q=TPUrqsg5zIaHuX)l z>i%(jWXDCN`Zz8s)w^*~dHR)F2*m9xwHkEfeCR zQfq~{sMLZXE-JNZh>J=s9pa)=>xbT(aPE8x{g{kb3%wiFyYspGOBdptg;xu`Th*Cb z=-sT&)I#rehr<>qbN1>bYaSpiSn~jB!I}q13%xvaXRz_3wU-B`7J7MLYN3}0rWUMu zfMnX52S^LnJV08o=7DOV_uihn<3o2bW&0}2hqbr!eV0MOsMU5*Flvz<6pUJ12L+>+ z)Iq_hmGl>nHuW|y*AE#y+x|2+A77yE9T?q^%F^hDR7OTOq6x)bVEu9MmMBZ{G%IEi~7+GsdfA4hSbu0bVF+OJ-XpZ9*{!{3N{~WsEzl3i1ub~_MTj+-05*zj&i7KrzkWs?T^%;1)@QvNq04MtY@FU=+k0KpZlm#+ zY4qMYX}&{XUVWHd=k3+|jrqjV&FWzt;k*(I3`dQ_z;M)<3=Bt&&%kihSPcwEjoaR# zq|Dwuex3NUviSF#V*AF^b$dmPT&InxtT}B=<;ZDcDkDxCQ~mF>aa3Z|ty^q&Ie0PtqGxYs%gg%I(JHtHL*>dC%^{ z(dg{u{lCn2GyM6jxp%TTKEE)Zn3)e%5ws>=NT-JNZZ z2G_CXs-mSt%z%d#TKf-D$;5CpLu1c6}$Mi3-H5TwGcVs}%`DwfHr z>FGs~m;2fDv2saPu`i4Fe|R6xDU$nYw|knu!*l=Vp8Lpq8PF&PF`!X~azHO4*gti8*icP*-#G*DXZ<2g*FKXhdUXc*B(W?a-m~(0oYQsW{P!l#?gYsSWx-~zMr#mdY= zpMgJbeG#fU|FOE1lj=#eN*|%r$5&h^^_>+LN_|qrg;HOyX{exLZq`_uwO`A_7Ugfj?D!8wD_RGTvhO{qD9(A1eT2u+bW zgV0o%GYG9}I)l&(r!xqxb~=O5%BM33t%5p((2A%t2(6AfgV0K;GYGAkYUhsBN#`cr z#cJ(zy-ed~d&|rE=i+R3o~kKXu&>Gq^@0y|!H2ryL)B%4ngNfpVnNkq#e%BK3ZZ_Y zjUD#wToYF+ydIk1B1_zjg5Krl#&@|(qi@t;SPhr+XpwEV&pUvucXI`UQJWkLMs0L3 z7`55KVAO^OgHfB_se*TT^u(0;D3oL7qfm~Sk3uSes^N|!(LVtOj`P7jNYGk3(Uf}6L!C;j6g25>B1%pxM3kIXi7Ys(3FBptQH^E>u z+6e}u(N8cKjfR53Xmk_|Mx&)*Fd97tgVAUz7>q_&!C*An(zgkgiFjRJ+mUA;9}>8e zP{ws9p%m**LOIo)gp#N`31!XJkbC7hMz(~|eMCzL-8-~|(EUP72;C#JgwTCKO9~n-!#FnpiLy=r5~ZI2B+5epNR*HQkSH^?#zEzZ zLb(uoyUW+nqM2r~za+|!hIIC$A&LEHNL@b~64sA~H2s-Aa@(qp(c(>!s_#|iY6C~1 z?vjh={ogLO(pf-6xN=Y|xN=YwxN?yGt{kMiD+g(Q#M$gtn}?+Neo5cU17_f@0hS8k zH?Wij1CS<1wWx{qG+H&sb^z~N4d>RSqI}t|Y{e>jc;4+|pE(^dNCZa=lEM*#1aZWm zI^u{yRYd=SJ6o!~Mk*5?mZ?Bke5#3?-5vh;`c3ueL3Y=Cd2s!Dqdo+T@_FAB}t>F6#yx*nUjzLt1t%%K*Tt=qxEm7Qryk!v6_?AKHfU>k=W~)QWw&(!0 z%FOsAYIOUbMD1+W7C>QMX*% z&#yAss@X~dIx%|G#mi*33OrTGmxsc{mxltxmxn^bmxqGFmxsbZn}=A%X|`@}at1-6 zjS%aH)HmSIZGU%9*7=pX`rr{C(d5fRLE+0oLE+0oLE+0oLE+0oLE+0on+<$e+`c*{u&-r{53qL_-lAf@z?N};;-Q`#b3i?ioa{-_-lAf z@z?N};;-Q`#b3i?iob@(6n_nmDgGKBQ~bSRj=zS-6n_nmDgGKBQ~WhNrub`kO!3$7 znBuSDq4?7W&DqVo*hG)(=T&GhXl^~URwL$o9^XALa(=bSnqSWAZ6oDDYnRpkvLatE zvYVTe`SvPqJMxzs=P>B0W!P zccvddIWN+zuPOfO`Bm5I$`aKxtU5V8Mzu>e^rz;x@%ni)IcWT~Wu(@#e2q7s1r+0a z7EpNeSwNBPX~9r;P{QG}z^sG82WA}%7LX3w&9nRZa93_R?ccbsZ4lW%s1B}H2hBAH zXM+l;rL_HXk5S&_iSu*fqC<;EkyI9sA`L7aMTM)4G&EnWMm8N?67^k0b?{bCa@2-V zwas#f*Yk|_0pk9dI9hD8<}gJdrC!6bd=;hpaimNx4YPm(gU<&PKYSKYn0Z<-WC@#G z>Y#(c0<#VV3(PtgEFc}UjsNRx8#~rkwLP72D5RwUKQIz17>x7@1|wPAzy`fhtq2D5 zl(FHBdCJ%TMrEvxIkKA~&b5x66{Va$STA7#vfY#(XNg1qK0%UAqJ zyThsj6h|9>osezCS&(hTS&(hTS&(hT?U2bbiJI>|K?hOmS7v#%RyUJ+eLG-{p+6n4 z#?W65SYzl92dpvlcLUZK`m+IR4E@!BHHQ9ZK%3xc#f|+p1NH7`hJ!W zy60yJq5FN75W3fA38DLZmJqtfX9=PEdzKKox2LT>YH?!U*Ry>d#kO|ZRb`){pBI2c zIWPc;vRwcY<+T7L>fZ$*QSVN>|8t|Raecmj-7r@LhPDm}q^JV|Dd>Peia8*VLJkO| zh&EoU75Te-^$%H^CPm_-jwcQ&<%vV8dE$_Qo;akYCk`pA2S*yMADZ>y>rWoDOxce9K0Q=KoLJ0Lep#g;E1QQEJw)`eb4`WI2_uA_9CQH`kiR{Zf z*;M;K7^z@;2WU+ucge!qqBSs;gz> z3|!nqg&_WN73X(?{Fc6`SH-62)&n8nX>AkAJ>gb-hD7TXE z?a^R1gW6zbGpKE5HiO#i5Hp5p29#u(%}8it@J2!#gBhfaHuu}q8T>bm()5^joQ)lVl z;7c#3?-|OKC-v;IxL5a{168Ljnv83sQ0-!?D(QDpG!f5Ep&1!%(@u{Axi${fNashL zAjvncB9i0z18gtXMxk1N67llwBnh%FB87Y#g>JohWV*7+xONKF z$bhr!LXK9pp?n*MZlw2Bk7UBa2{|_oC(40b8-;3Q z$c{Tr_R1#Y+bDFSoS(RCGOnFOwZ8F9|B7}s75iNraM!B3c{U2o`m>0SYp3XrP|;R3 z*)pz;Lbcu`GFj0?JUfMEWVG3JA;&7(K(38LHPZQd?ti4M8u{iE&yfATi6oL!v}*&o zc8c0YX)^5;IgDqc(2R`NQ76b=(PUg3g=&=V(-uv{vy*5RKEAF9cobU4^LKK~xY4yy zsAiEwCM%neZ==wyKaWgSHW}AWp&A)*mR-oP$~Kg52fIFMxh%SwE^km z6g93_I4S2wp&aG?)P)oB?IgPO4R@%0zLjpZ^Nx+cN$T4$u8l&q{!}tu*@S!>g>Jo> zWV*7+xONKF$bhr!PL5W#p?n*MZlw3)Zr#XNw;XzVMddh@lgTEh=$7;gC*#{GbfeyU z;)!w~*G8cl8M5O}lfAMD`8EpODCZ|Gn~ZBGQ7wE}S`qMwyDFQb_54$`Y}8bNW%l>* zY!sSVWDyV7Mj@JvYok!DKZ#6LG!f5Ep&1!%a!KSAHEkf*#-SSNeBBorXaF1GVK&OjAx_Jj7&45PLRE#$+$KO)hOSmEt-gDC(*2G zYejdJS7kHF0rtKsy3HMoLbd)R;^o^Zx+1;vB0|26Lbu*LGF{nZTswtoWWd>VAxA6Q zP`-^rH`4p6M>1jIgq$0Pax&TE6zv-+OPx*nhT2|1c?#VqRVJP&2Xbu`s*xc(?ljpe zn~-m#(2a6_;tI5S~c>`tB553!rQlT=q8d##vz-C zYo}0+dhuze$YDGig=R8Ig@Vr9j)R%#%`-v z2gdC4o9gHJCXb7vw3cko&fnigi)4K_UnY6H*eU}^2?<*-PUzRg32j}S(AM<{ZM~AR zH9KJ(8f=Nhp~03|92#ti#i7BLSR5K`p*Z|2I;SqP-Ax+Li!{1vlH!|fwo$*ywpBU= z@g2%VZNRVS_pK83E|2G%R5b#JS3ZB2$IH5rD3ZH%l%kByLq~OkhmL9k4;{rn4;@83 z4;{rg5B&{@bRPO!QTlsP`sbqbFGcBJiPFC>O8=oK{YRqo9|QW=bbfblh`fQQ1?uV5 ztIn;c-;Y+4QU7tuKB0VfBA+a# z|E4FDj8g+E)j#JqJ)uN=lGTZft*NHIft(szDbnqFgkr(hSo|XRmgTI z`lS+aN>(ZAm8Y8ihVf}&oyh1MY4Yn8O2(;ym7=_!s!$?63F}m~nzCPGmnJ4Q=-pR2 z^IXAWyq_yLa%y0u`qPA$SF+uS-Z>W`uLjntH&aYeDjBC_l_JB-uIo2KsfO}uXst-U zt6s$<#S(IBXtiYWg=~98N>S&F@NcON9VS_=C?zJF1P5|zV5P_a9cv2gl}gB~fwiLC zo~%?dP6;a&JPNM8b{j9swp6_%E9wvG8JNCrqfg&X_36}~CnhMAj8j9`sJ?E}1cmBN zeLg

O{ttUDwaYDcRIFkW)h|MY`>s(TA2w#;c*V5=j+9OC{oztWwk~Pc{7wP7SP- zMVgqPR6<@2tQD0?>g+c`sbrjzRf-HR%dX$}q#DYrp|v9Y9&5cKU%CoG@-O_|8d@!x zd?DMlAf>SE1p4F)S*<7~CYuBYa%y0u$N=@v6|%LeS1KW|2G)vld$Ll=I3=u9m6ApG zKi3gFv0?DO+BpvH2iB@TSNORloC5noP|B@=)#^p`;<(ZjoZx4T$}sP*yEUi|MAqp}ZPcD>6n$n+SWwl5%TcwJ5)* zE0&N~!dmqWO8Qradv*`kF+8zhajoTdZB*>#m2BsN3a_da?oWYUUJYHVLU%=vvQ~*W zC94z}UUuC;ulSR#RYQ3-v{t0w^?dvIS}XFUr<()&-Kr~&c}{-1V##2DaH2G)s;&XFd+UZG^18dxdH>!}JQ;*+pWRW3HqzS?EJeRO`e z2EATR4Xjjun(*>UwmZQv?Dg_$V6A#Hg_lzUOC{r!tWsp9nQQ_a%B!KZBK@v<6(g)y z zT2XFKRw@~%gp~>&1=n7Gw+6vJJ`Jo>f1dDhN;vuT1)q#l11r^=CMGD9h)=RQk+Egh z^&6j1135LcQl#5ee`1PK$#^xiRwAiFww)q{up9dN#GkBElnzr(f5Z4Ruuf!jjx_o8 z3MJ#zz)DeGPgN)ppO8*JS|#gvkw>@N-*2)sDemLtd>O}^B8|53tE*zG{!^Ttzx)vA zMUt(*{o}WvoxM7{zF0@A_!rc(^JTWXN#nT!-5fZxH`{EZev@tIH^~;YFo9U)=}*bG zb$?A?9(un&r{8ZIC3(>l;Ch6)(4)7a%&g z?OdG5&Xt6n*@^Tq*b&jkU`IqBgB_#~T^}E#G(FUwYxC4v9PKaXz7E;KQg1>qTR_); zqpCV#mr#~FjY}4NoxXje<-c2gT{C5$hSjORt1~&7L|hV8iL5M^}gN>qL58 z4~M2Fl#EjYDFK76Q#mL6W=f{4XY9vn&V7+y)w!8G^|dP(-W0R z#3fmksw5mT!rh1FcWQ|1<;y&CW#3OCF7H*PGp6# z>+X$DsG*!1SSix&sxL7`sf4^5SSy)SA=*xnLf8#k(I@+yXO;mqB0HS)4)2BUXQark*{0@ANd#FP7SP-NR}A7 zM)e&*;FBdpb)r<5XyO~jrD0W)$q=HosaGZ$pN7?ma@sqQ4=a<1OR_43k8mpj9^uxZ zJFZSS;dC8&K0XbrlSPK`aZ0v65jxm*_I#WgR;m6Z;p5Y=Ldp0fsuNjZEW3N76KW`@ z23Cr6+drd=)+zFxC!78Hy^={414||2lxVG@UU{nNZy=wB)rqWfBTat2LJ2uFtWuQM zQx!_aCt02Ph8@)6Tcy)JI=@?kUO%UXRjNNt_<1GTouIO@u;yRM&C@QK!_p`036Dbnq#KQTqAguEJ9s|lt*QiwWLOfUaY zI!rbF4djz(jq3G@jLwlJzoDEORw>HssR||IldMkRW8R)Ee^sH3tAkGXT!)^AOT(&U zk@q}&678OI40t_!8dj(N4B_F@uri6bB&rfwSuDGIW0Pqhp9a>6^x8X>i`FOdm8;+* z|H9j;ft3=;5(5h*;*+RO)EiGU@eSkBuqw%92+`WqE0c^*!|Fsi?VZSnl}W@US(U1; znt6%IF6Zq-6EEvlg)*%nu9r{4>eQbhyquD)Pkq5BTO*Qom z<eM&vpcdcinTfu0Wy^n`){wW>(QOnztV;bU!pA4kjsz80mR&v{ zpN7?`H$(WiG^|V_E{Uo{Ru;SN-sof+$ftpIBE24G>qNftRP$cHQzBVHH1Q4OlW2{i zRG4Vu8^)z!RU$)koN2FDCK;cG)roR?qB4oNL@?Ou$xtgauG$+@uH(B}fJo=av zFL&#QwQ5#CGPHxtK88L14S4)>-38SYW^vOdo?qSN+2i&e#f!zGC=tr%G;#_qx7TIbOwovgWzcCzLywc`qvPQ5dG$7Rk^J1%pU+97j4?6!A#youF> zfU&hZe|z}X`7%zUC)6==!@iKgUdUjtWUyz)Sk!Y2EL$FIr)+t!owDV@cFGoYtpm%J z2iqxI9&D#k_Qmmp}&1oLS71!U}G{2kQq}k$O zzJ1!nFPHIcv`f{5tZ`b@2YIoK@&`uV)lHr(9tuGG+T`@SeuQxrn%N9WJ z0y4ymVV($e2$;=CXk+k3LK}k_q|Kig>kZ$s4HqA&!No^1aPe8o-=Ht56khLd;Io#$ zfzMk020kkP&$Rg8tu_zI`p{D9GjO2Mv3eMloYljqSgamKK7ZBmS+$Vys&V}NZL~<% zciNh4-z2p^5tWWV5fzy~k-r?#1i1e@qIq$DBAPDuC!$$&XW|R?cx;Gl@z@aA;;|vJ z#bZNci^qn@7LN^)Egl;pTRdK{$74fei^qn@7LN^)Egl;pTRb*Iws>raZ1LC-+2Zkv zJsuk(TRb*Iws>raZ1LC-+2XMwvc+RVWQ)g!$QF;+?D5zT+2XMwvc+RVWQ)g!$QF+c zku4q@B3nE*M7DT*#U76hku4q@B3nE*M7DTrh-~rL5ZU6fA+p6|LqzfTuk`VCzDeWx zB3dugW)A-RW&Lw;Hak~adeGF3HRc5m=7I-v#e=EK2CXSOmQ66GE}LLXT{Z}#@Albg zaihZLp$Q(cbnOY~9rQ```W^1l=o_^~O|90eoo3l~8xiwFV4f@piZW^t6eZOlD9Wor zP?TDOpjO#6-|X^wiSVHK_3OobQp9O%$x!XWP0}>Vt6jLWClCUyIi4Q!b!{bH@}n

|I04Qx8F## zh`nV07O@v?$|4qxcrVwOML59bTy4<`^u97EWe&8dlsUM@Qsw}gOBuBSF0}-dG6&jJ z${bu{DI>6!p$`#PZCpEaqCp2)+hVtWEX$igA9$u~N~H1KzmGfHqA~DhTQmmVY}6Py zm$#vzv1okl-rK-tD{ljvt-K9vRNil&C(`mLX}JFC6YJvsdQdb~c) z@3M61^IVc=>U4~9Z+4G8t<9*uBK4VNwqwv!%ytZVe%X#ePcGXr=$U0ZMqM6g64j1D z&neq6=n3T?Xz^HnWn9IF{cN)3kuu{E!El*%ooy(A3?TY(6%bMNTAnLT0KK-e7x8eNr``umK zAj`8O3N-%k2BP@z2BPrr2BPTj2BP5b2BO&T2BMC+HxPBzy@9Cn?hQoUd2isC+*R)@ zZs7O1fj{I1{)ij+V*u0#Z7PedW7Wp0L0dWV)-#CGj{GY#ss1G6S{APrlyiBlphV1T z1!d;|D~2g1)a>zE5zxipi-0Z$D@Ye@611!@g&I_rgPdlr`ubh@D^+#W?^+v0K+SdL zy}nmRhGuu^)8-z14erc5U+mDg@6N3KY5{Qf$L+3tQ+$lMhS3BHXhst#ni)-?Q1&%p zs4XbJFq+`j!r%qB76ubY3w`c1t}{w|FazpSyL#4HCyiE{o>sp->Z%{>UvM+Mq&l>3 zaeuIO{Z;kj{P+vnp3^D4xfhRdffAQLG>-V8m(|JjKt%6Xy{r!C=BA!+vkhRH!tGI= zU400E^LMIIti!2D?$%L?5`!}cRexs?s^rcfRF$1UXguu5E?%_gV4Cy8HC2m z&LA{Sb_SvGu`>vbi=9DeJnRfY<6vhH8vi=am{$uhbCJd}wF?^XF=;3Le(trhX8%vsYS4KWq0L?Hu&ZK|?-pp6mpkwBCQ*~QASJrvuKuuF-=%!7 zcNHzv$&6?>q5Jz?mq#?ug9Mpzs(Souq$ZLM&D}Lk~e&kzzWH&C+ zR`h_l3`Tb2G8oy7%V1F74Y_rVR(HKUd#fsJjZE zifz+Fx>WOt*$U-S+vm~iYAf8e{UTl$&x84yx;#;RkD+$(lv9_W%j3d8@6qu??Qc%v zhv!d0W~y7WO+LWY3Tps*1MSO?x+Fft+A-fhSgCt2l5)jf-AjD9g_ztb?aM<$0AC*J z^ZW8pC*PNcCN_L|Xs*kbhZcBzd1&p&mxq>xe0gZa$d`u}lYDt-oynJnmY{rjXm!e$ zhZe4Ud1y_`m-iFUD){ogX6F5jnfG&M-Y=MWzhvh9ikbIoX5Md@dB0`m{f?RUx6HhM z!_50VGwLuE zG4uWhGw**g^Zpkz?|(D%{tq+nhMBiy=G`*$&_a@L|M?Hh?}s)H_`cto`TaJ`yquZ0 zW#)Zg=6z)5eZ$QAzs$V^N{**>T{svO~DfpZDMuadekQMYBEs`mOrSy!w^RH?j_- zSIca7qpqC5pD=mAZZex(7f1gTtyN8GuFwSaQD2R#&N@kxyZdHY#O5Kj`ci(~pM5;6 zrCeVwvNX#tsdI>0W)VT1Aw`^vWQBOSQafMP+bG15S5=Xy4d*+wd&KHhuAbsl9lI6s zCKqY43VMeN;y5QOCoWVqK?fyS0j`Q9{Sc$p-wJWDc#2T>#tLwyE>lo9!2~H08V#2> zdG;9O#pPWd$3X;Q%c)g4sx{L{?LRT^c-8L2s3o5>oSYQ|MN57`P_*tB1VxK~K~S^; z7z9PjfcpCU!!CV3F1Gv0#O(Dtn=kWhLoI&W^IkCXE|_^&%)D!6-YaI_S&N6dXTJJ| z^V<4`^V<4`^V<4`^V<5_@XAidp>GG0y>_lwp+160=g~?X`lR;P%x`wh#}f9ROL^i@ zg7?Is)b5ExN!=5N(zz!NC35Y|lv>$ko~XW4bld&_^Zb)$yN=okxO+aOnM&#$Y!txm zY_$zm?7h2ezV}vp8pYnb%jSD;wQ*AHy}NAm-ui~NRkFP=KQUH&t)J(lK*oEo%_pof zZ3mrwmUBR$%;tbV*~|ffGMEDbWi1B;%2e7h4)q0a^P8xM(!RNjR-!2HjhowD`EX|c z)e@r#6bOtaP@piHK!N0I!tjw4+C|G~f?ErN7u;GHOdu`(qLtvvdeJ&zknw{`eoIIh zeoIIoeoI0+86pBzoj{)qmV|UNSQ667U5i$Q%< zcLIDdSP{_0U`0R|gB7HU{<%wapKpDNZO=r6e$K)=d+hmZef3!V^*oK9v`=APFEX`K zvHvLN{7Rj4t5(L4z#b^1q6Z2|<$*$ac%V>c-vfm@{T?WrFHJ0i;Vl>(+P~F|FRmI? zcw9B8@VIJF;c?ZV!sDtzg~wHc3XiJ>h2lyd;%2*4eZ{!i-0BCO>a%cf;*aHlX}hGj zS0~GWNOd5-m~j&?*ojx{#IrULO(Xf2BLnfM92tm5<%o#-p*>|hwqlVw^s@Isl*4)- zL>a61L6o0*A4J)x_d%3VztcC zmNZMiV~n;`>h1bQ-APccdKN|Rjc~2U%2Tn_I`~#y!g6^3+2{4o^Nl*iu{aDdyL)3m z4Pe5fMwSVWnqnqAYOtB`s99&iqsHF{uVz(j529tlb4HHg?KvaIfai=H1D-Q-40sed z`j*Y=B)<7Fdp=^OwL#-;`7iTwt-C%IaCV(-Vs*{6I()`@QQq3zi`hxdU7Xh3)oIP0 z5$0y6)lR@1rJaB|N;?5_ly=>Ehx*t;^)A>PrJaCxly(BD$gf+WRx{Vfi!hVfiEepLOzowRo^oixQhuZv$*^ zz4Zp7*bXY~^iWqw?0jRIA5(D!$bvx9S7c@;3X!R)X{I-R0`A zv}N_n=Sve%FE@;e$~cUQN;ixuQ?95Z5caO9HxNceU4k$w>KBAjQRg6xih2lPRMbrf zqoTe-7!`FG!l8Tb8xLCrT^$!OAvi{ttEsyzSb5&9AImUAdaxL zM9_!WT0*E}Y%LM=LAI8V3*snSO9XkCtu2E(&eoDa9B6AvAdj@wkJi(3$b1v6n6q&kQSyc9NWDyC>kwoS&eSYq+ z#B~#`*Ux7$IWBT}1JQ`v8;C~T-as_+_6DNSw>J=tz`cQJ8Os}pR_Nc1F|GARx@AB0@WNDfd$@8H%_A&-R zk)lCRByJEC=^O+_k_SPN`uep^s=_``g1;*3ue$j1X%k;o{|h#-*Z^LtiHUWxMfdgD zAl~i~^ZMxRke68|SswT@dqnulT&w+{aS`@5?+y(5by^darL;G>${UQg0I(TA^`FfE z$^~o&P+sseVAyhuHV3mA;MKt30j~xI14sk?h{P(zu^#NkLr100Lq|o=LzgXg)Hw3I zJ8C68=qe&@k96aqGscYJ-5F!XKxd2@1D!Eu40IGT`kv=1&jfz#>B~cL;mbpj;LAhW z`|^<5zC3Py(NvJ{`=PlYUmlta^5vn~AYUGu4)W!p`5<2&nh^5kp&21x9-0#J<)Jwt z{V3ro{}pL;(`;sVR}U}C-&JGGH-{^g%0HdG*{aK=i!@WW&#DtG!C=qLz$eXRO%n8r z$1Gb)fYlW?H#ccqm6ilwEnKTnpal7Kt*{vXs=nn>;?>`*)!oN&UXPGP4B%)-o7s7y zori9Sb{;T}b{@Vd+Ih%0+IjfKXy-u_(T)u0$MH3}{kKhW|LiEa&wu-A>*`6nD&=gX z+8ngYh3M}$d7>`R&efL(bM?LU-Mx^Vcbc7Llw0Oz=fcw6amdlmc0OCFY$9sRss+$Tkxa^bG(RvEn8aqFep zrtR}LZ{Q*QnDTP0T0d0YOSyPB=x4uq#E*umf*%baL@9Ywdz zlg*|aurH!T63x@>?x5=R>rIlTQ9h48CdCY0dFsRZ2x85L^$lRP_7?7ayh-xKy}OGZ zDCD6B3OV>wgNTbfSryrOe*d(&kDhl&TM6mQL$3PrkiV@jfcJtP{4KWe$}MdDXvkMT znv199+R8kO9^9kX^ltq$7f<_X$Wv2=|HE#5m&WdX`mm6fJ}l&;eyrFb*?I}-3_{*H zgOF>cVk+vh>sZ>6J{EG&=e>}RKQW})$0#qGOrI?4i9?=x;*hhgT~+%WyLZ+-#d^Vz zqh2uNX6p-TbzSdkKSXK5{<87MO_rn4Ph%cViFMnT)U;ZC(-;a2%u8#mf zJw-ppvD#S}=lRq8W>?%FUh@1(9mM~*y+;d$4hS^9azLO#l>-8eq#O`v_~d{e%DA^!b-9Wc-zGeXx>+BJL-s{Db z-^JTQr2&7hP1kLc^;Wg*t;1TuQ=e*9){TkTm#U<)$GN&ABhDYyMOkWRW_i*5Yn7AI zOx+JdY!db-qWNSO;*9+r+eGw^+84FkOpVYFVqJe#{Ww4VGU?@R{h+i*QRIrdcvKsf zfyBIC!k26kxe{P60YTC0=d?ao7D~)?sL}tPxr}TBp2@rkvJT+^hER&<5Kt?YNWBu*02%Mj!4ZGzf7gp|OZN2@OeF zi6hzk_atwo{AX{X?KVrM6;m)laRp6RE>uGpx}sQaI7T6S-1 zv)L)FogG<2wScE2k9`ZaHk+MNH`3a%Z)n!Rx+FxOzO}6# z`xdO5lW(#mdF)%TwWBC$m*jCw2A3ph?btV2YsbFHmgKQ-$XctVOg4|IeVgBBS+nir zsF6GWWU2mQu~l1g)NG4h<3Nk%&sUehi}KZF@S=Qm89Y0GCS3kHU!weVzC`)!e2MZu zgXPa(zuM)`&u^DMKfhi6JbYc>cK+e#OO(I<{u1S{^XTQ(jPOZ=jj#%X&2Y-{dKG=Ft4+KVm8QoKpFFf7R*7g+eKKhq z47QKz#N%XrH~*l{b|?->@%;1l@8{87jK&OJFf>``1w-?7UNAIe=LJKvc3vYhEyP^qLp!`=EQ_1^Xc<44t^<^=9a}H80ptINki3 z6ZSJs*v~m(zu<)Zk`wkTPS~$GVZY&o{T9Hq&0yM2A&&ho0c2_`ObC|P6%&9ZH^_u= zsl74*Tw>dd_Fa&Qh9|WWSKRN?hjQ;&_VLii1CjLE^Due8F{>h%Yh z9N`y8r$R6kO@v_}nheEIHWiM6Y$7CEDPuHw8(hX*;7%EHfjec) z1@4qFn$r$0V=i!~jJd#_GDcu+b+}v!X)^E^5Ddk2%I=NAhN^TUSk+!3De{2Zrb(Ktbq$(30$<2gEalnK}0m6jmj2y%DhNz?G z^Y#WjXXF_0oRMR|b4HE<&lx!eJc^uF`%<0Dw9L@*MENiCd$oD0K80a+ovH8M>XnLj zJN5CST5c=PwXA*vR@&!v?Z_ooYFGesY|BSjoZ&Rblcq#- zFnH9C@zE$W&0J>dGxlUXuV<&rBLts^t2})58L22=eMTzESD%rJ^3`X&W!BR^4{6Yrf(HX}$ZH&(ZU46m$@~8wH)f-leRc(qz|M;$dA7n>1QK^p&4>1;)PF z-Q;mml&8L{=e4HyojMb({t}{GU5rwcXS{)E0l^!HmJGasXpz7hh?WJsfoLJX8;EwH zcmvUv6mKBfpW+Qfn^nAlXy=MI5N%`e2BJMJ-axd$#T$rryLbc9)|c+!CC{>LUl#4o zCb^HmTp0F^DBm5K-FC^HjdDB(8>M>=Hp=|YY_)i6dru|@o2|SJ@6A@;1~w{h?Hj6n zZ$-u6dRZR%(c1I$J$3(w`dGC3<@0`5)MW{yqB0JnqS6hc%9JbW#)Q2q>dS;tQHLgs zih4C+RMfQzqoV#z7!`GL!l7Bn4%ERZ^|C{60XVu93w#R91VvY?$- zvu_^)zMb%bp^<|Z3=J5(U}&7+1w+FFFBlpXbeFf3sOn6Wa?kRiy$3Vr+C^s7opgsk zKYx=Z|FTn8TrT4czDv^XX(YAX(@0ypr;(U;Pb2m0o0ncdT9@MZTj z8f4i$jRsS8PoqJT-P34rWcM^01lc`}20M07qd`sU`z>`KMVh2fhdK^YLTeWIqdIbI zk(Hl7^gPu{Xw_5dyeF$CThrL>Cq4G^_|Z^1`P1h!)E=YbciXCadYj4dPKW)>ezud> z3QD)UR!~~zwSv-jfEB}xE1DbSwIZO4!50Bt3|5dXKR>Q7`#pJ!CK-5C=^!Yo*{wOG zvSyc8gBP~h?(1Veo2MH`d-CO9_7gmcDvXNC>aT3xl`R{}SVOf>#u}=HGS*OSWUywa z`zTw=SQFIE;G3Xs25U&SU!(fQkxg0PC{uKLU)jfGnS5iLR{#9i@#n{F^Xe}w5FUv& z5R1y|msW4fmRg0(p*kvL4pmYibEuYbm@^~=lwO6*Nor^CPEtFAIi%fR!+OV&VtME& zXZ+;&-5=FallRrNy;kGxpApa7X4y_#uf0RV@JO?vTvTTN+Q#Sd4lt$>y_7vvTczxw z>MCUq)mIjKhWvn%t&}}c{S5wz>SwTr^!p92e;f&y36HXeKDX(XYxP-%=O>#C*)vC= zcZUs6d*oMtA}X7|(3Ca4BU?`8w}fgVza>-;`7NOu7--2**HP}|w~i zdN;qRPaHWi7>qK&r+Nms=}Bq&#_l-Ybnh$t>{0(UbzPwc3I&n}3Pp+s3Wb6P3N2WB zpwQ~I2MR4^d!W#|wg(C=a(kfAinj*}Eq{BU&|0_$3N4I#pwKG02MR5jd!W$zxd-Ye zU|rn<^)(;rXMCui^Pzshhx#QS>Q{WIU-O}U!-x7UKA0 zop|gi`8q38mEKf++gNQ7v9n*gP~rLl&$x0KI{} z#in|LyEH173)NONbuVDH-9}9gvOak~go!d$2oq(o5GKlSAxxD0LYOEs>K{2J>kkZQ}DR zdJsZi6`Opwh=u5vH%Y#@7lL2?L7g>|O1=73w1^f-B=qjr%P4=C^U6Atix?fvA2B+e zJz{h?f5f!t>=C2WSt916T#g~o3=u=n!y|@(GeitU504mvE)g+$M25CXN3X7<`6EWB zvqy{$=Z}~cojqc7I!nZSBbQ?cG(*G?^zeuw;0zH%(ZeH#pi4xI9+9Cr=IGURG=IeC zboPkR;rtQPqO(VgPVb8teYRPRf6D7@cH3>%T#YvSy#9G!9eKDPE1g@9v6=8_xXpw| zBX1@=8iX_9(RiE*kA~(xc(uTNtA=^%D5~ayRW!TEgy)PL!`pL4jsedZIR-puXYjR6-P8L~Bw3s5T!o;WEFoa7bDX}cxz2I=vgSHhA!z2RgFsr>Hi>E{ zV2;vGz#OHWfH_LLZbd+I_Cob8*c_#ufOnL30_G^~x}g$Wm{iUbFh^-8V2;vGz+6W= z?M(Y_sPN}ZS#urjWX*N7lQl?F7tG+6kDWv=cB#Y1gfH{5g}1%wThrb^_i} z+6kDWwCjdSaA9`ZJ54(QbCh-h<|ys#&FNov*W)|J`!bw>X!P&>hG@L+4MZb+Zy*}e zdjruZ-W!N^vv~v2HaBk|+VbrUL>s@ofoS`;HxO+C_XeV^;NC#AA>12?wuO5G(dO{( zK$y7s!fscIFOpt`@uiZhFTPNE)y11iuD1A6`&L<8xccf1u^#7(0 zi^>)OI<+qX+IteyW>4bfB1^OU^0D01YPI?8_|dB@kJfj7&%Rtmcky}~c^Q6{CU^Jc z>9IRM<5y2{nr4q)wlC6T0w85H%k!Ni#3WOPVHW(l)VJ5K5Y_Ca*6^tu?h;D~M2VS1p38_)%PBp%njt zeLZ!dpv^|;MmIrm;lho$66z-6$|8crMGBjUnHb@qzl7bG-uWCEb>P(y;eE7>_8`F=*v3w%h7Y=i?*o_dI#v{ZJyH-{QkWo2 zMJpJI6IMc#!hZ`FMfe)yb2lNM%45q(=o*uDM#ENW*3LvQY)qi-C;S?$iAp+TO7^>C zfwRxxMoPzzU{C3((Nk)N#+AY{yWR{}Mf63mBnFk#SfVb4SAtpL77fC1(Bj`&@;>qq zz6L5vVkF)YYAvv!p3mYBdMtICiF*!&!qXT{USbn7V(K58T8^E?ZtAL-Z6zzLN~jMt z|5s|rI~FN%3s2jRHSB2ps0Yq%1nT&x*YHR`j~RWIl?l3D!dqHoj_{DGIP&N)8I|9^ zev8|30cp36yZ!oxU>15^nQ7%XgK(=c{rV!b{&24~cNoXNpeRXJL)` zFW$xm!xL{oQm=SxjPnxu$z$TaX944$i+l+C+O))MYto`6ZO+aZIHl!fxQa+pfdT}#arX5s+3h%PP}DZb9TPBWKCy_myYnpk+-jxr8&y2k+*rz#_>QeV}Dv#AvhxuNr$++bT{BaxDa+h$&y+$4c&bwuJ zDS_`}HAWCFkJWLSyoJ4FhdCR`GW=wlymax_Szz9(vk2eu@jJ1Iy@Zd)i3X+?*IS* diff --git a/src/main/resources/recipes.json b/src/main/resources/recipes.json index 1d3b2b16f16..c699e304b7e 100644 --- a/src/main/resources/recipes.json +++ b/src/main/resources/recipes.json @@ -1,6 +1,195 @@ { - "version": 475, + "version": 486, "recipes": [ + { + "id": "minecraft:smithingtable_diamond_axe_to_netherite_axe", + "type": 0, + "input": [ + { + "id": "minecraft:diamond_axe", + "fuzzy": true + }, + { + "id": "minecraft:netherite_ingot", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:netherite_axe" + } + ], + "block": "smithing_table", + "priority": 2 + }, + { + "id": "minecraft:smithingtable_diamond_boots_to_netherite_boots", + "type": 0, + "input": [ + { + "id": "minecraft:diamond_boots", + "fuzzy": true + }, + { + "id": "minecraft:netherite_ingot", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:netherite_boots" + } + ], + "block": "smithing_table", + "priority": 2 + }, + { + "id": "minecraft:smithingtable_diamond_chestplate_to_netherite_chestplate", + "type": 0, + "input": [ + { + "id": "minecraft:diamond_chestplate", + "fuzzy": true + }, + { + "id": "minecraft:netherite_ingot", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:netherite_chestplate" + } + ], + "block": "smithing_table", + "priority": 2 + }, + { + "id": "minecraft:smithingtable_diamond_helmet_to_netherite_helmet", + "type": 0, + "input": [ + { + "id": "minecraft:diamond_helmet", + "fuzzy": true + }, + { + "id": "minecraft:netherite_ingot", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:netherite_helmet" + } + ], + "block": "smithing_table", + "priority": 2 + }, + { + "id": "minecraft:smithingtable_diamond_hoe_to_netherite_hoe", + "type": 0, + "input": [ + { + "id": "minecraft:diamond_hoe", + "fuzzy": true + }, + { + "id": "minecraft:netherite_ingot", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:netherite_hoe" + } + ], + "block": "smithing_table", + "priority": 2 + }, + { + "id": "minecraft:smithingtable_diamond_leggings_to_netherite_leggings", + "type": 0, + "input": [ + { + "id": "minecraft:diamond_leggings", + "fuzzy": true + }, + { + "id": "minecraft:netherite_ingot", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:netherite_leggings" + } + ], + "block": "smithing_table", + "priority": 2 + }, + { + "id": "minecraft:smithingtable_diamond_pickaxe_to_netherite_pickaxe", + "type": 0, + "input": [ + { + "id": "minecraft:diamond_pickaxe", + "fuzzy": true + }, + { + "id": "minecraft:netherite_ingot", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:netherite_pickaxe" + } + ], + "block": "smithing_table", + "priority": 2 + }, + { + "id": "minecraft:smithingtable_diamond_shovel_to_netherite_shovel", + "type": 0, + "input": [ + { + "id": "minecraft:diamond_shovel", + "fuzzy": true + }, + { + "id": "minecraft:netherite_ingot", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:netherite_shovel" + } + ], + "block": "smithing_table", + "priority": 2 + }, + { + "id": "minecraft:smithingtable_diamond_sword_to_netherite_sword", + "type": 0, + "input": [ + { + "id": "minecraft:diamond_sword", + "fuzzy": true + }, + { + "id": "minecraft:netherite_ingot", + "fuzzy": true + } + ], + "output": [ + { + "id": "minecraft:netherite_sword" + } + ], + "block": "smithing_table", + "priority": 2 + }, { "type": 4, "uuid": "442d85ed-8272-4543-a6f1-418f90ded05d" @@ -12469,7 +12658,7 @@ "type": 1, "input": { "A": { - "legacyId": 624, + "legacyId": 625, "id": "minecraft:amethyst_shard", "damage": 32767 } @@ -19284,7 +19473,7 @@ ], "output": [ { - "legacyId": 622, + "legacyId": 623, "id": "minecraft:glow_frame" } ], @@ -29134,7 +29323,7 @@ "type": 1, "input": { "A": { - "legacyId": 624, + "legacyId": 625, "id": "minecraft:amethyst_shard", "damage": 32767 }, @@ -29146,7 +29335,6 @@ }, "output": [ { - "legacyId": 625, "id": "minecraft:spyglass" } ], @@ -30260,7 +30448,7 @@ "type": 1, "input": { "A": { - "legacyId": 624, + "legacyId": 625, "id": "minecraft:amethyst_shard", "damage": 32767 }, @@ -49417,78 +49605,6 @@ "outputId": "minecraft:lingering_potion", "outputMeta": 31 }, - { - "inputId": "minecraft:potion", - "inputMeta": 21, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 21, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 21, - "reagentId": "minecraft:fermented_spider_eye", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 23 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 5, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 6 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 5, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 6 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 5, - "reagentId": "minecraft:redstone", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 6 - }, - { - "inputId": "minecraft:potion", - "inputMeta": 0, - "reagentId": "minecraft:rabbit_foot", - "reagentMeta": 0, - "outputId": "minecraft:potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:splash_potion", - "inputMeta": 0, - "reagentId": "minecraft:rabbit_foot", - "reagentMeta": 0, - "outputId": "minecraft:splash_potion", - "outputMeta": 1 - }, - { - "inputId": "minecraft:lingering_potion", - "inputMeta": 0, - "reagentId": "minecraft:rabbit_foot", - "reagentMeta": 0, - "outputId": "minecraft:lingering_potion", - "outputMeta": 1 - }, { "inputId": "minecraft:potion", "inputMeta": 4, @@ -49801,6 +49917,30 @@ "outputId": "minecraft:lingering_potion", "outputMeta": 24 }, + { + "inputId": "minecraft:potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 23 + }, { "inputId": "minecraft:potion", "inputMeta": 21, @@ -50113,6 +50253,30 @@ "outputId": "minecraft:lingering_potion", "outputMeta": 7 }, + { + "inputId": "minecraft:potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 6 + }, { "inputId": "minecraft:potion", "inputMeta": 25, @@ -50713,6 +50877,30 @@ "outputId": "minecraft:lingering_potion", "outputMeta": 4 }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, { "inputId": "minecraft:potion", "inputMeta": 0, diff --git a/src/main/resources/runtime_item_ids.json b/src/main/resources/runtime_item_ids.json index c3ce611c12b..559e05edbde 100644 --- a/src/main/resources/runtime_item_ids.json +++ b/src/main/resources/runtime_item_ids.json @@ -2331,7 +2331,7 @@ }, { "name": "minecraft:glow_stick", - "id": 600, + "id": 601, "oldId": 166 }, { @@ -3692,7 +3692,7 @@ }, { "name": "minecraft:spawn_egg", - "id": 630, + "id": 636, "oldId": 383 }, { @@ -4512,195 +4512,195 @@ }, { "name": "minecraft:campfire", - "id": 588, + "id": 589, "oldId": 720 }, { "name": "minecraft:suspicious_stew", - "id": 589, + "id": 590, "oldId": 734 }, { "name": "minecraft:honeycomb", - "id": 590, + "id": 591, "oldId": 736 }, { "name": "minecraft:honey_bottle", - "id": 591, + "id": 592, "oldId": 737 }, { "name": "minecraft:camera", - "id": 592, + "id": 593, "oldId": 498 }, { "name": "minecraft:compound", - "id": 593, + "id": 594, "oldId": 499 }, { "name": "minecraft:ice_bomb", - "id": 594, + "id": 595, "oldId": 453 }, { "name": "minecraft:bleach", - "id": 595, + "id": 596, "oldId": 451 }, { "name": "minecraft:rapid_fertilizer", - "id": 596, + "id": 597, "oldId": 449 }, { "name": "minecraft:balloon", - "id": 597, + "id": 598, "oldId": 448 }, { "name": "minecraft:medicine", - "id": 598, + "id": 599, "oldId": 447 }, { "name": "minecraft:sparkler", - "id": 599, + "id": 600, "oldId": 442 }, { "name": "minecraft:lodestone_compass", - "id": 601, + "id": 602, "oldId": 741 }, { "name": "minecraft:netherite_ingot", - "id": 602, + "id": 603, "oldId": 742 }, { "name": "minecraft:netherite_sword", - "id": 603, + "id": 604, "oldId": 743 }, { "name": "minecraft:netherite_shovel", - "id": 604, + "id": 605, "oldId": 744 }, { "name": "minecraft:netherite_pickaxe", - "id": 605, + "id": 606, "oldId": 745 }, { "name": "minecraft:netherite_axe", - "id": 606, + "id": 607, "oldId": 746 }, { "name": "minecraft:netherite_hoe", - "id": 607, + "id": 608, "oldId": 747 }, { "name": "minecraft:netherite_helmet", - "id": 608, + "id": 609, "oldId": 748 }, { "name": "minecraft:netherite_chestplate", - "id": 609, + "id": 610, "oldId": 749 }, { "name": "minecraft:netherite_leggings", - "id": 610, + "id": 611, "oldId": 750 }, { "name": "minecraft:netherite_boots", - "id": 611, + "id": 612, "oldId": 751 }, { "name": "minecraft:netherite_scrap", - "id": 612, + "id": 613, "oldId": 752 }, { "name": "minecraft:crimson_sign", - "id": 613, + "id": 614, "oldId": 753 }, { "name": "minecraft:warped_sign", - "id": 614, + "id": 615, "oldId": 754 }, { "name": "minecraft:crimson_door", - "id": 615, + "id": 616, "oldId": 755 }, { "name": "minecraft:warped_door", - "id": 616, + "id": 617, "oldId": 756 }, { "name": "minecraft:warped_fungus_on_a_stick", - "id": 617, + "id": 618, "oldId": 757 }, { "name": "minecraft:chain", - "id": 618, + "id": 619, "oldId": 758 }, { "name": "minecraft:music_disc_pigstep", - "id": 619, + "id": 620, "oldId": 759 }, { "name": "minecraft:nether_sprouts", - "id": 620, + "id": 621, "oldId": 760 }, { "name": "minecraft:soul_campfire", - "id": 621, + "id": 622, "oldId": 801 }, { "name": "minecraft:boat", - "id": 627, + "id": 633, "oldId": 333, "deprecated": true }, { "name": "minecraft:dye", - "id": 628, + "id": 634, "oldId": 351, "deprecated": true }, { "name": "minecraft:banner_pattern", - "id": 629, + "id": 635, "oldId": 434, "deprecated": true }, { "name": "minecraft:end_crystal", - "id": 631, + "id": 637, "oldId": 426 }, { "name": "minecraft:spyglass", - "id": 625, + "id": 626, "oldId": 772 } -] +] \ No newline at end of file diff --git a/src/test/java/org/powernukkit/updater/AllResourceUpdater.java b/src/test/java/org/powernukkit/updater/AllResourceUpdater.java index d1af4bc9b4b..fef17094a90 100644 --- a/src/test/java/org/powernukkit/updater/AllResourceUpdater.java +++ b/src/test/java/org/powernukkit/updater/AllResourceUpdater.java @@ -8,6 +8,7 @@ import cn.nukkit.item.Item; import cn.nukkit.item.RuntimeItems; import cn.nukkit.item.enchantment.Enchantment; +import cn.nukkit.potion.Potion; import cn.nukkit.utils.Config; import cn.nukkit.utils.Utils; import com.google.gson.Gson; @@ -318,5 +319,6 @@ private void init() { Block.init(); Enchantment.init(); Item.init(); + Potion.init(); } } diff --git a/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json b/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json index 51d7951bd3b..d320382625d 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json +++ b/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json @@ -51,6 +51,10 @@ "runtime_id": -158, "component_based": false }, + "minecraft:allay_spawn_egg": { + "runtime_id": 631, + "component_based": false + }, "minecraft:allow": { "runtime_id": 210, "component_based": false @@ -64,7 +68,7 @@ "component_based": false }, "minecraft:amethyst_shard": { - "runtime_id": 624, + "runtime_id": 625, "component_based": false }, "minecraft:ancient_debris": { @@ -116,7 +120,7 @@ "component_based": false }, "minecraft:balloon": { - "runtime_id": 597, + "runtime_id": 598, "component_based": false }, "minecraft:bamboo": { @@ -132,7 +136,7 @@ "component_based": false }, "minecraft:banner_pattern": { - "runtime_id": 629, + "runtime_id": 635, "component_based": false }, "minecraft:barrel": { @@ -292,7 +296,7 @@ "component_based": false }, "minecraft:bleach": { - "runtime_id": 595, + "runtime_id": 596, "component_based": false }, "minecraft:blue_candle": { @@ -316,7 +320,7 @@ "component_based": false }, "minecraft:boat": { - "runtime_id": 627, + "runtime_id": 633, "component_based": false }, "minecraft:bone": { @@ -428,11 +432,11 @@ "component_based": false }, "minecraft:camera": { - "runtime_id": 592, + "runtime_id": 593, "component_based": false }, "minecraft:campfire": { - "runtime_id": 588, + "runtime_id": 589, "component_based": false }, "minecraft:candle": { @@ -492,7 +496,7 @@ "component_based": false }, "minecraft:chain": { - "runtime_id": 618, + "runtime_id": 619, "component_based": false }, "minecraft:chain_command_block": { @@ -672,7 +676,7 @@ "component_based": false }, "minecraft:compound": { - "runtime_id": 593, + "runtime_id": 594, "component_based": false }, "minecraft:concrete": { @@ -796,7 +800,7 @@ "component_based": false }, "minecraft:crimson_door": { - "runtime_id": 615, + "runtime_id": 616, "component_based": false }, "minecraft:crimson_double_slab": { @@ -836,7 +840,7 @@ "component_based": false }, "minecraft:crimson_sign": { - "runtime_id": 613, + "runtime_id": 614, "component_based": false }, "minecraft:crimson_slab": { @@ -1172,7 +1176,7 @@ "component_based": false }, "minecraft:dye": { - "runtime_id": 628, + "runtime_id": 634, "component_based": false }, "minecraft:egg": { @@ -1700,7 +1704,7 @@ "component_based": false }, "minecraft:end_crystal": { - "runtime_id": 631, + "runtime_id": 637, "component_based": false }, "minecraft:end_gateway": { @@ -1807,6 +1811,10 @@ "runtime_id": 509, "component_based": false }, + "minecraft:firefly_spawn_egg": { + "runtime_id": 632, + "component_based": false + }, "minecraft:firework_rocket": { "runtime_id": 519, "component_based": false @@ -1859,6 +1867,14 @@ "runtime_id": 513, "component_based": false }, + "minecraft:frog_egg": { + "runtime_id": -468, + "component_based": false + }, + "minecraft:frog_spawn_egg": { + "runtime_id": 628, + "component_based": false + }, "minecraft:frosted_ice": { "runtime_id": 207, "component_based": false @@ -1895,12 +1911,16 @@ "runtime_id": 434, "component_based": false }, + "minecraft:globe_banner_pattern": { + "runtime_id": 588, + "component_based": false + }, "minecraft:glow_berries": { - "runtime_id": 632, + "runtime_id": 638, "component_based": false }, "minecraft:glow_frame": { - "runtime_id": 622, + "runtime_id": 623, "component_based": false }, "minecraft:glow_ink_sac": { @@ -1916,7 +1936,7 @@ "component_based": false }, "minecraft:glow_stick": { - "runtime_id": 600, + "runtime_id": 601, "component_based": false }, "minecraft:glowingobsidian": { @@ -1932,7 +1952,7 @@ "component_based": false }, "minecraft:goat_horn": { - "runtime_id": 623, + "runtime_id": 624, "component_based": false }, "minecraft:goat_spawn_egg": { @@ -2112,11 +2132,11 @@ "component_based": false }, "minecraft:honey_bottle": { - "runtime_id": 591, + "runtime_id": 592, "component_based": false }, "minecraft:honeycomb": { - "runtime_id": 590, + "runtime_id": 591, "component_based": false }, "minecraft:honeycomb_block": { @@ -2144,7 +2164,7 @@ "component_based": false }, "minecraft:ice_bomb": { - "runtime_id": 594, + "runtime_id": 595, "component_based": false }, "minecraft:infested_deepslate": { @@ -2572,7 +2592,7 @@ "component_based": false }, "minecraft:lodestone_compass": { - "runtime_id": 601, + "runtime_id": 602, "component_based": false }, "minecraft:log": { @@ -2616,7 +2636,7 @@ "component_based": false }, "minecraft:medicine": { - "runtime_id": 598, + "runtime_id": 599, "component_based": false }, "minecraft:medium_amethyst_bud": { @@ -2728,11 +2748,11 @@ "component_based": false }, "minecraft:music_disc_otherside": { - "runtime_id": 626, + "runtime_id": 627, "component_based": false }, "minecraft:music_disc_pigstep": { - "runtime_id": 619, + "runtime_id": 620, "component_based": false }, "minecraft:music_disc_stal": { @@ -2792,7 +2812,7 @@ "component_based": false }, "minecraft:nether_sprouts": { - "runtime_id": 620, + "runtime_id": 621, "component_based": false }, "minecraft:nether_star": { @@ -2812,7 +2832,7 @@ "component_based": false }, "minecraft:netherite_axe": { - "runtime_id": 606, + "runtime_id": 607, "component_based": false }, "minecraft:netherite_block": { @@ -2820,43 +2840,43 @@ "component_based": false }, "minecraft:netherite_boots": { - "runtime_id": 611, + "runtime_id": 612, "component_based": false }, "minecraft:netherite_chestplate": { - "runtime_id": 609, + "runtime_id": 610, "component_based": false }, "minecraft:netherite_helmet": { - "runtime_id": 608, + "runtime_id": 609, "component_based": false }, "minecraft:netherite_hoe": { - "runtime_id": 607, + "runtime_id": 608, "component_based": false }, "minecraft:netherite_ingot": { - "runtime_id": 602, + "runtime_id": 603, "component_based": false }, "minecraft:netherite_leggings": { - "runtime_id": 610, + "runtime_id": 611, "component_based": false }, "minecraft:netherite_pickaxe": { - "runtime_id": 605, + "runtime_id": 606, "component_based": false }, "minecraft:netherite_scrap": { - "runtime_id": 612, + "runtime_id": 613, "component_based": false }, "minecraft:netherite_shovel": { - "runtime_id": 604, + "runtime_id": 605, "component_based": false }, "minecraft:netherite_sword": { - "runtime_id": 603, + "runtime_id": 604, "component_based": false }, "minecraft:netherrack": { @@ -2903,6 +2923,10 @@ "runtime_id": 451, "component_based": false }, + "minecraft:ochre_froglight": { + "runtime_id": -471, + "component_based": false + }, "minecraft:orange_candle": { "runtime_id": -414, "component_based": false @@ -2959,6 +2983,10 @@ "runtime_id": 478, "component_based": false }, + "minecraft:pearlescent_froglight": { + "runtime_id": -469, + "component_based": false + }, "minecraft:phantom_membrane": { "runtime_id": 574, "component_based": false @@ -3272,7 +3300,7 @@ "component_based": false }, "minecraft:rapid_fertilizer": { - "runtime_id": 596, + "runtime_id": 597, "component_based": false }, "minecraft:ravager_spawn_egg": { @@ -3592,7 +3620,7 @@ "component_based": false }, "minecraft:soul_campfire": { - "runtime_id": 621, + "runtime_id": 622, "component_based": false }, "minecraft:soul_fire": { @@ -3616,11 +3644,11 @@ "component_based": false }, "minecraft:sparkler": { - "runtime_id": 599, + "runtime_id": 600, "component_based": false }, "minecraft:spawn_egg": { - "runtime_id": 630, + "runtime_id": 636, "component_based": false }, "minecraft:spider_eye": { @@ -3684,7 +3712,7 @@ "component_based": false }, "minecraft:spyglass": { - "runtime_id": 625, + "runtime_id": 626, "component_based": false }, "minecraft:squid_spawn_egg": { @@ -3844,7 +3872,7 @@ "component_based": false }, "minecraft:suspicious_stew": { - "runtime_id": 589, + "runtime_id": 590, "component_based": false }, "minecraft:sweet_berries": { @@ -3855,6 +3883,14 @@ "runtime_id": -207, "component_based": false }, + "minecraft:tadpole_bucket": { + "runtime_id": 630, + "component_based": false + }, + "minecraft:tadpole_spawn_egg": { + "runtime_id": 629, + "component_based": false + }, "minecraft:tallgrass": { "runtime_id": 31, "component_based": false @@ -3959,6 +3995,10 @@ "runtime_id": 93, "component_based": false }, + "minecraft:verdant_froglight": { + "runtime_id": -470, + "component_based": false + }, "minecraft:vex_spawn_egg": { "runtime_id": 476, "component_based": false @@ -3992,7 +4032,7 @@ "component_based": false }, "minecraft:warped_door": { - "runtime_id": 616, + "runtime_id": 617, "component_based": false }, "minecraft:warped_double_slab": { @@ -4012,7 +4052,7 @@ "component_based": false }, "minecraft:warped_fungus_on_a_stick": { - "runtime_id": 617, + "runtime_id": 618, "component_based": false }, "minecraft:warped_hyphae": { @@ -4036,7 +4076,7 @@ "component_based": false }, "minecraft:warped_sign": { - "runtime_id": 614, + "runtime_id": 615, "component_based": false }, "minecraft:warped_slab": { diff --git a/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json index d32ba0cbfa0..dadabf91fcb 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json +++ b/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json @@ -2,27 +2,27 @@ "items" : [ { "id" : "minecraft:planks", - "blockRuntimeId" : 5797 + "blockRuntimeId" : 5800 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5798 + "blockRuntimeId" : 5801 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5799 + "blockRuntimeId" : 5802 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5803 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5804 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5802 + "blockRuntimeId" : 5805 }, { "id" : "minecraft:crimson_planks", @@ -30,7 +30,7 @@ }, { "id" : "minecraft:warped_planks", - "blockRuntimeId" : 7598 + "blockRuntimeId" : 7596 }, { "id" : "minecraft:cobblestone_wall", @@ -94,11 +94,11 @@ }, { "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6041 + "blockRuntimeId" : 6044 }, { "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5838 + "blockRuntimeId" : 5841 }, { "id" : "minecraft:cobbled_deepslate_wall", @@ -110,7 +110,7 @@ }, { "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6216 + "blockRuntimeId" : 6219 }, { "id" : "minecraft:deepslate_brick_wall", @@ -142,7 +142,7 @@ }, { "id" : "minecraft:nether_brick_fence", - "blockRuntimeId" : 5689 + "blockRuntimeId" : 5690 }, { "id" : "minecraft:crimson_fence", @@ -150,7 +150,7 @@ }, { "id" : "minecraft:warped_fence", - "blockRuntimeId" : 7576 + "blockRuntimeId" : 7574 }, { "id" : "minecraft:fence_gate", @@ -158,7 +158,7 @@ }, { "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 7010 + "blockRuntimeId" : 7007 }, { "id" : "minecraft:birch_fence_gate", @@ -166,7 +166,7 @@ }, { "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5253 + "blockRuntimeId" : 5254 }, { "id" : "minecraft:acacia_fence_gate", @@ -182,27 +182,27 @@ }, { "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7577 + "blockRuntimeId" : 7575 }, { "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5708 + "blockRuntimeId" : 5709 }, { "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7281 + "blockRuntimeId" : 7278 }, { "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5668 + "blockRuntimeId" : 5669 }, { "id" : "minecraft:oak_stairs", - "blockRuntimeId" : 5717 + "blockRuntimeId" : 5718 }, { "id" : "minecraft:spruce_stairs", - "blockRuntimeId" : 7042 + "blockRuntimeId" : 7039 }, { "id" : "minecraft:birch_stairs", @@ -210,7 +210,7 @@ }, { "id" : "minecraft:jungle_stairs", - "blockRuntimeId" : 5285 + "blockRuntimeId" : 5286 }, { "id" : "minecraft:acacia_stairs", @@ -222,35 +222,35 @@ }, { "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7187 + "blockRuntimeId" : 7184 }, { "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5676 + "blockRuntimeId" : 5677 }, { "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6710 + "blockRuntimeId" : 6713 }, { "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6903 + "blockRuntimeId" : 6900 }, { "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6637 + "blockRuntimeId" : 6640 }, { "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6895 + "blockRuntimeId" : 6892 }, { "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4989 + "blockRuntimeId" : 4990 }, { "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6386 + "blockRuntimeId" : 6389 }, { "id" : "minecraft:diorite_stairs", @@ -258,7 +258,7 @@ }, { "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6378 + "blockRuntimeId" : 6381 }, { "id" : "minecraft:andesite_stairs", @@ -266,7 +266,7 @@ }, { "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5814 + "blockRuntimeId" : 5817 }, { "id" : "minecraft:brick_stairs", @@ -274,11 +274,11 @@ }, { "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5690 + "blockRuntimeId" : 5691 }, { "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6625 + "blockRuntimeId" : 6628 }, { "id" : "minecraft:end_brick_stairs", @@ -286,19 +286,19 @@ }, { "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6559 + "blockRuntimeId" : 6562 }, { "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6887 + "blockRuntimeId" : 6884 }, { "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6537 + "blockRuntimeId" : 6540 }, { "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6449 + "blockRuntimeId" : 6452 }, { "id" : "minecraft:dark_prismarine_stairs", @@ -306,7 +306,7 @@ }, { "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6441 + "blockRuntimeId" : 6444 }, { "id" : "minecraft:crimson_stairs", @@ -314,7 +314,7 @@ }, { "id" : "minecraft:warped_stairs", - "blockRuntimeId" : 7618 + "blockRuntimeId" : 7616 }, { "id" : "minecraft:blackstone_stairs", @@ -322,11 +322,11 @@ }, { "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6033 + "blockRuntimeId" : 6036 }, { "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5830 + "blockRuntimeId" : 5833 }, { "id" : "minecraft:cut_copper_stairs", @@ -338,27 +338,27 @@ }, { "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7745 + "blockRuntimeId" : 7743 }, { "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5758 + "blockRuntimeId" : 5760 }, { "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7689 + "blockRuntimeId" : 7687 }, { "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7703 + "blockRuntimeId" : 7701 }, { "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7731 + "blockRuntimeId" : 7729 }, { "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7717 + "blockRuntimeId" : 7715 }, { "id" : "minecraft:cobbled_deepslate_stairs", @@ -370,7 +370,7 @@ }, { "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6208 + "blockRuntimeId" : 6211 }, { "id" : "minecraft:deepslate_brick_stairs", @@ -405,11 +405,11 @@ }, { "id" : "minecraft:trapdoor", - "blockRuntimeId" : 7363 + "blockRuntimeId" : 7360 }, { "id" : "minecraft:spruce_trapdoor", - "blockRuntimeId" : 7066 + "blockRuntimeId" : 7063 }, { "id" : "minecraft:birch_trapdoor", @@ -417,7 +417,7 @@ }, { "id" : "minecraft:jungle_trapdoor", - "blockRuntimeId" : 5309 + "blockRuntimeId" : 5310 }, { "id" : "minecraft:acacia_trapdoor", @@ -429,7 +429,7 @@ }, { "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5168 + "blockRuntimeId" : 5169 }, { "id" : "minecraft:crimson_trapdoor", @@ -437,295 +437,295 @@ }, { "id" : "minecraft:warped_trapdoor", - "blockRuntimeId" : 7645 + "blockRuntimeId" : 7643 }, { "id" : "minecraft:iron_bars", - "blockRuntimeId" : 5133 + "blockRuntimeId" : 5134 }, { "id" : "minecraft:glass", - "blockRuntimeId" : 4883 + "blockRuntimeId" : 4884 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7088 + "blockRuntimeId" : 7085 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7096 + "blockRuntimeId" : 7093 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7095 + "blockRuntimeId" : 7092 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7103 + "blockRuntimeId" : 7100 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7100 + "blockRuntimeId" : 7097 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7102 + "blockRuntimeId" : 7099 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7089 + "blockRuntimeId" : 7086 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7092 + "blockRuntimeId" : 7089 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7093 + "blockRuntimeId" : 7090 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7101 + "blockRuntimeId" : 7098 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7097 + "blockRuntimeId" : 7094 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7091 + "blockRuntimeId" : 7088 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7099 + "blockRuntimeId" : 7096 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7098 + "blockRuntimeId" : 7095 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7090 + "blockRuntimeId" : 7087 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7094 + "blockRuntimeId" : 7091 }, { "id" : "minecraft:tinted_glass", - "blockRuntimeId" : 7352 + "blockRuntimeId" : 7349 }, { "id" : "minecraft:glass_pane", - "blockRuntimeId" : 4884 + "blockRuntimeId" : 4885 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7104 + "blockRuntimeId" : 7101 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7112 + "blockRuntimeId" : 7109 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7111 + "blockRuntimeId" : 7108 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7119 + "blockRuntimeId" : 7116 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7116 + "blockRuntimeId" : 7113 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7118 + "blockRuntimeId" : 7115 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7105 + "blockRuntimeId" : 7102 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7108 + "blockRuntimeId" : 7105 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7109 + "blockRuntimeId" : 7106 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7117 + "blockRuntimeId" : 7114 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7113 + "blockRuntimeId" : 7110 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7107 + "blockRuntimeId" : 7104 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7115 + "blockRuntimeId" : 7112 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7114 + "blockRuntimeId" : 7111 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7106 + "blockRuntimeId" : 7103 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7110 + "blockRuntimeId" : 7107 }, { "id" : "minecraft:ladder", - "blockRuntimeId" : 5357 + "blockRuntimeId" : 5358 }, { "id" : "minecraft:scaffolding", - "blockRuntimeId" : 6730 + "blockRuntimeId" : 6733 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7223 + "blockRuntimeId" : 7220 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7273 + "blockRuntimeId" : 7270 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7226 + "blockRuntimeId" : 7223 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7244 + "blockRuntimeId" : 7241 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7903 + "blockRuntimeId" : 7901 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7904 + "blockRuntimeId" : 7902 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7905 + "blockRuntimeId" : 7903 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7906 + "blockRuntimeId" : 7904 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7907 + "blockRuntimeId" : 7905 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7908 + "blockRuntimeId" : 7906 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7228 + "blockRuntimeId" : 7225 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7271 + "blockRuntimeId" : 7268 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7224 + "blockRuntimeId" : 7221 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7274 + "blockRuntimeId" : 7271 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7245 + "blockRuntimeId" : 7242 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7239 + "blockRuntimeId" : 7236 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7275 + "blockRuntimeId" : 7272 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7256 + "blockRuntimeId" : 7253 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7261 + "blockRuntimeId" : 7258 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7262 + "blockRuntimeId" : 7259 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7259 + "blockRuntimeId" : 7256 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7260 + "blockRuntimeId" : 7257 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7258 + "blockRuntimeId" : 7255 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7257 + "blockRuntimeId" : 7254 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7227 + "blockRuntimeId" : 7224 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7230 + "blockRuntimeId" : 7227 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7246 + "blockRuntimeId" : 7243 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7255 + "blockRuntimeId" : 7252 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7229 + "blockRuntimeId" : 7226 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7272 + "blockRuntimeId" : 7269 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7240 + "blockRuntimeId" : 7237 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7241 + "blockRuntimeId" : 7238 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7242 + "blockRuntimeId" : 7239 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7243 + "blockRuntimeId" : 7240 }, { "id" : "minecraft:crimson_slab", @@ -733,7 +733,7 @@ }, { "id" : "minecraft:warped_slab", - "blockRuntimeId" : 7616 + "blockRuntimeId" : 7614 }, { "id" : "minecraft:blackstone_slab", @@ -741,11 +741,11 @@ }, { "id" : "minecraft:polished_blackstone_slab", - "blockRuntimeId" : 6031 + "blockRuntimeId" : 6034 }, { "id" : "minecraft:polished_blackstone_brick_slab", - "blockRuntimeId" : 5828 + "blockRuntimeId" : 5831 }, { "id" : "minecraft:cut_copper_slab", @@ -757,27 +757,27 @@ }, { "id" : "minecraft:weathered_cut_copper_slab", - "blockRuntimeId" : 7743 + "blockRuntimeId" : 7741 }, { "id" : "minecraft:oxidized_cut_copper_slab", - "blockRuntimeId" : 5756 + "blockRuntimeId" : 5758 }, { "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7687 + "blockRuntimeId" : 7685 }, { "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7701 + "blockRuntimeId" : 7699 }, { "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7729 + "blockRuntimeId" : 7727 }, { "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7715 + "blockRuntimeId" : 7713 }, { "id" : "minecraft:cobbled_deepslate_slab", @@ -785,7 +785,7 @@ }, { "id" : "minecraft:polished_deepslate_slab", - "blockRuntimeId" : 6206 + "blockRuntimeId" : 6209 }, { "id" : "minecraft:deepslate_tile_slab", @@ -809,23 +809,23 @@ }, { "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6557 + "blockRuntimeId" : 6560 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7289 + "blockRuntimeId" : 7286 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7290 + "blockRuntimeId" : 7287 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7291 + "blockRuntimeId" : 7288 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7292 + "blockRuntimeId" : 7289 }, { "id" : "minecraft:end_bricks", @@ -833,11 +833,11 @@ }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6440 + "blockRuntimeId" : 6443 }, { "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 6000 + "blockRuntimeId" : 6003 }, { "id" : "minecraft:cracked_polished_blackstone_bricks", @@ -845,7 +845,7 @@ }, { "id" : "minecraft:gilded_blackstone", - "blockRuntimeId" : 4882 + "blockRuntimeId" : 4883 }, { "id" : "minecraft:chiseled_polished_blackstone", @@ -877,7 +877,7 @@ }, { "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5667 + "blockRuntimeId" : 5668 }, { "id" : "minecraft:cobbled_deepslate", @@ -885,39 +885,39 @@ }, { "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6911 + "blockRuntimeId" : 6908 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6706 + "blockRuntimeId" : 6709 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6707 + "blockRuntimeId" : 6710 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6708 + "blockRuntimeId" : 6711 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6709 + "blockRuntimeId" : 6712 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6633 + "blockRuntimeId" : 6636 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6634 + "blockRuntimeId" : 6637 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6635 + "blockRuntimeId" : 6638 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6636 + "blockRuntimeId" : 6639 }, { "id" : "minecraft:coal_block", @@ -929,11 +929,11 @@ }, { "id" : "minecraft:gold_block", - "blockRuntimeId" : 4975 + "blockRuntimeId" : 4976 }, { "id" : "minecraft:iron_block", - "blockRuntimeId" : 5134 + "blockRuntimeId" : 5135 }, { "id" : "minecraft:copper_block", @@ -945,27 +945,27 @@ }, { "id" : "minecraft:weathered_copper", - "blockRuntimeId" : 7741 + "blockRuntimeId" : 7739 }, { "id" : "minecraft:oxidized_copper", - "blockRuntimeId" : 5754 + "blockRuntimeId" : 5756 }, { "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7685 + "blockRuntimeId" : 7683 }, { "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7699 + "blockRuntimeId" : 7697 }, { "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7727 + "blockRuntimeId" : 7725 }, { "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7713 + "blockRuntimeId" : 7711 }, { "id" : "minecraft:cut_copper", @@ -977,27 +977,27 @@ }, { "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7742 + "blockRuntimeId" : 7740 }, { "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5755 + "blockRuntimeId" : 5757 }, { "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7686 + "blockRuntimeId" : 7684 }, { "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7700 + "blockRuntimeId" : 7698 }, { "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7728 + "blockRuntimeId" : 7726 }, { "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7714 + "blockRuntimeId" : 7712 }, { "id" : "minecraft:emerald_block", @@ -1009,59 +1009,59 @@ }, { "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5365 + "blockRuntimeId" : 5366 }, { "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6579 + "blockRuntimeId" : 6582 }, { "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6577 + "blockRuntimeId" : 6580 }, { "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6578 + "blockRuntimeId" : 6581 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6545 + "blockRuntimeId" : 6548 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6547 + "blockRuntimeId" : 6550 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6546 + "blockRuntimeId" : 6549 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6548 + "blockRuntimeId" : 6551 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6438 + "blockRuntimeId" : 6441 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6439 + "blockRuntimeId" : 6442 }, { "id" : "minecraft:slime", - "blockRuntimeId" : 6864 + "blockRuntimeId" : 6861 }, { "id" : "minecraft:honey_block", - "blockRuntimeId" : 5112 + "blockRuntimeId" : 5113 }, { "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5113 + "blockRuntimeId" : 5114 }, { "id" : "minecraft:hay_block", - "blockRuntimeId" : 5084 + "blockRuntimeId" : 5085 }, { "id" : "minecraft:bone_block", @@ -1069,83 +1069,83 @@ }, { "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5688 + "blockRuntimeId" : 5689 }, { "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6624 + "blockRuntimeId" : 6627 }, { "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5705 + "blockRuntimeId" : 5706 }, { "id" : "minecraft:lodestone", - "blockRuntimeId" : 5563 + "blockRuntimeId" : 5564 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 }, { "id" : "minecraft:carpet", @@ -1345,83 +1345,83 @@ }, { "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5083 + "blockRuntimeId" : 5084 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7120 + "blockRuntimeId" : 7117 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7128 + "blockRuntimeId" : 7125 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7127 + "blockRuntimeId" : 7124 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7135 + "blockRuntimeId" : 7132 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7132 + "blockRuntimeId" : 7129 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7134 + "blockRuntimeId" : 7131 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7121 + "blockRuntimeId" : 7118 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7124 + "blockRuntimeId" : 7121 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7125 + "blockRuntimeId" : 7122 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7133 + "blockRuntimeId" : 7130 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7129 + "blockRuntimeId" : 7126 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7123 + "blockRuntimeId" : 7120 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7131 + "blockRuntimeId" : 7128 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7130 + "blockRuntimeId" : 7127 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7122 + "blockRuntimeId" : 7119 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7126 + "blockRuntimeId" : 7123 }, { "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7800 + "blockRuntimeId" : 7798 }, { "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 6849 }, { "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 5010 + "blockRuntimeId" : 5011 }, { "id" : "minecraft:black_glazed_terracotta", @@ -1433,23 +1433,23 @@ }, { "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6601 + "blockRuntimeId" : 6604 }, { "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5748 + "blockRuntimeId" : 5750 }, { "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7942 + "blockRuntimeId" : 7940 }, { "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5532 + "blockRuntimeId" : 5533 }, { "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5026 + "blockRuntimeId" : 5027 }, { "id" : "minecraft:cyan_glazed_terracotta", @@ -1457,7 +1457,7 @@ }, { "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5484 + "blockRuntimeId" : 5485 }, { "id" : "minecraft:blue_glazed_terracotta", @@ -1465,35 +1465,35 @@ }, { "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6519 + "blockRuntimeId" : 6522 }, { "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5596 + "blockRuntimeId" : 5597 }, { "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5779 + "blockRuntimeId" : 5782 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6525 + "blockRuntimeId" : 6528 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6527 + "blockRuntimeId" : 6530 }, { "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5704 + "blockRuntimeId" : 5705 }, { "id" : "minecraft:warped_wart_block", - "blockRuntimeId" : 7667 + "blockRuntimeId" : 7665 }, { "id" : "minecraft:shroomlight", - "blockRuntimeId" : 6829 + "blockRuntimeId" : 6832 }, { "id" : "minecraft:crimson_nylium", @@ -1501,7 +1501,7 @@ }, { "id" : "minecraft:warped_nylium", - "blockRuntimeId" : 7597 + "blockRuntimeId" : 7595 }, { "id" : "minecraft:basalt", @@ -1509,15 +1509,15 @@ }, { "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5822 + "blockRuntimeId" : 5825 }, { "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6886 + "blockRuntimeId" : 6883 }, { "id" : "minecraft:soul_soil", - "blockRuntimeId" : 6956 + "blockRuntimeId" : 6953 }, { "id" : "minecraft:dirt", @@ -1533,31 +1533,31 @@ }, { "id" : "minecraft:grass", - "blockRuntimeId" : 4997 + "blockRuntimeId" : 4998 }, { "id" : "minecraft:grass_path", - "blockRuntimeId" : 4998 + "blockRuntimeId" : 4999 }, { "id" : "minecraft:podzol", - "blockRuntimeId" : 5803 + "blockRuntimeId" : 5806 }, { "id" : "minecraft:mycelium", - "blockRuntimeId" : 5685 + "blockRuntimeId" : 5686 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7180 + "blockRuntimeId" : 7177 }, { "id" : "minecraft:iron_ore", - "blockRuntimeId" : 5167 + "blockRuntimeId" : 5168 }, { "id" : "minecraft:gold_ore", - "blockRuntimeId" : 4976 + "blockRuntimeId" : 4977 }, { "id" : "minecraft:diamond_ore", @@ -1565,11 +1565,11 @@ }, { "id" : "minecraft:lapis_ore", - "blockRuntimeId" : 5366 + "blockRuntimeId" : 5367 }, { "id" : "minecraft:redstone_ore", - "blockRuntimeId" : 6647 + "blockRuntimeId" : 6650 }, { "id" : "minecraft:coal_ore", @@ -1585,11 +1585,11 @@ }, { "id" : "minecraft:quartz_ore", - "blockRuntimeId" : 6558 + "blockRuntimeId" : 6561 }, { "id" : "minecraft:nether_gold_ore", - "blockRuntimeId" : 5698 + "blockRuntimeId" : 5699 }, { "id" : "minecraft:ancient_debris", @@ -1629,19 +1629,19 @@ }, { "id" : "minecraft:gravel", - "blockRuntimeId" : 4999 + "blockRuntimeId" : 5000 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7181 + "blockRuntimeId" : 7178 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7183 + "blockRuntimeId" : 7180 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7185 + "blockRuntimeId" : 7182 }, { "id" : "minecraft:blackstone", @@ -1653,31 +1653,31 @@ }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7182 + "blockRuntimeId" : 7179 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7184 + "blockRuntimeId" : 7181 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7186 + "blockRuntimeId" : 7183 }, { "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5825 + "blockRuntimeId" : 5828 }, { "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6203 + "blockRuntimeId" : 6206 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6704 + "blockRuntimeId" : 6707 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6705 + "blockRuntimeId" : 6708 }, { "id" : "minecraft:cactus", @@ -1685,51 +1685,51 @@ }, { "id" : "minecraft:log", - "blockRuntimeId" : 5564 + "blockRuntimeId" : 5565 }, { "id" : "minecraft:stripped_oak_log", - "blockRuntimeId" : 7319 + "blockRuntimeId" : 7316 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5565 + "blockRuntimeId" : 5566 }, { "id" : "minecraft:stripped_spruce_log", - "blockRuntimeId" : 7322 + "blockRuntimeId" : 7319 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5566 + "blockRuntimeId" : 5567 }, { "id" : "minecraft:stripped_birch_log", - "blockRuntimeId" : 7304 + "blockRuntimeId" : 7301 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5567 + "blockRuntimeId" : 5568 }, { "id" : "minecraft:stripped_jungle_log", - "blockRuntimeId" : 7316 + "blockRuntimeId" : 7313 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5576 + "blockRuntimeId" : 5577 }, { "id" : "minecraft:stripped_acacia_log", - "blockRuntimeId" : 7301 + "blockRuntimeId" : 7298 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5577 + "blockRuntimeId" : 5578 }, { "id" : "minecraft:stripped_dark_oak_log", - "blockRuntimeId" : 7313 + "blockRuntimeId" : 7310 }, { "id" : "minecraft:crimson_stem", @@ -1737,63 +1737,63 @@ }, { "id" : "minecraft:stripped_crimson_stem", - "blockRuntimeId" : 7310 + "blockRuntimeId" : 7307 }, { "id" : "minecraft:warped_stem", - "blockRuntimeId" : 7642 + "blockRuntimeId" : 7640 }, { "id" : "minecraft:stripped_warped_stem", - "blockRuntimeId" : 7328 + "blockRuntimeId" : 7325 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7807 + "blockRuntimeId" : 7805 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7813 + "blockRuntimeId" : 7811 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7808 + "blockRuntimeId" : 7806 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7814 + "blockRuntimeId" : 7812 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7809 + "blockRuntimeId" : 7807 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7815 + "blockRuntimeId" : 7813 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7810 + "blockRuntimeId" : 7808 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7816 + "blockRuntimeId" : 7814 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7811 + "blockRuntimeId" : 7809 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7817 + "blockRuntimeId" : 7815 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7812 + "blockRuntimeId" : 7810 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7818 + "blockRuntimeId" : 7816 }, { "id" : "minecraft:crimson_hyphae", @@ -1801,19 +1801,15 @@ }, { "id" : "minecraft:stripped_crimson_hyphae", - "blockRuntimeId" : 7307 + "blockRuntimeId" : 7304 }, { "id" : "minecraft:warped_hyphae", - "blockRuntimeId" : 7594 + "blockRuntimeId" : 7592 }, { "id" : "minecraft:stripped_warped_hyphae", - "blockRuntimeId" : 7325 - }, - { - "id" : "minecraft:leaves", - "blockRuntimeId" : 5410 + "blockRuntimeId" : 7322 }, { "id" : "minecraft:leaves", @@ -1828,13 +1824,17 @@ "blockRuntimeId" : 5413 }, { - "id" : "minecraft:leaves2", - "blockRuntimeId" : 5426 + "id" : "minecraft:leaves", + "blockRuntimeId" : 5414 }, { "id" : "minecraft:leaves2", "blockRuntimeId" : 5427 }, + { + "id" : "minecraft:leaves2", + "blockRuntimeId" : 5428 + }, { "id" : "minecraft:azalea_leaves", "blockRuntimeId" : 169 @@ -1845,27 +1845,27 @@ }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6718 + "blockRuntimeId" : 6721 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6719 + "blockRuntimeId" : 6722 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6720 + "blockRuntimeId" : 6723 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6721 + "blockRuntimeId" : 6724 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6722 + "blockRuntimeId" : 6725 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6723 + "blockRuntimeId" : 6726 }, { "id" : "minecraft:bee_nest", @@ -1912,7 +1912,7 @@ }, { "id" : "minecraft:melon_block", - "blockRuntimeId" : 5609 + "blockRuntimeId" : 5610 }, { "id" : "minecraft:melon_slice" @@ -1928,7 +1928,7 @@ }, { "id" : "minecraft:pumpkin", - "blockRuntimeId" : 6457 + "blockRuntimeId" : 6460 }, { "id" : "minecraft:carved_pumpkin", @@ -1936,14 +1936,14 @@ }, { "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5551 + "blockRuntimeId" : 5552 }, { "id" : "minecraft:honeycomb" }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7349 + "blockRuntimeId" : 7346 }, { "id" : "minecraft:double_plant", @@ -1951,7 +1951,7 @@ }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7348 + "blockRuntimeId" : 7345 }, { "id" : "minecraft:double_plant", @@ -2045,7 +2045,7 @@ }, { "id" : "minecraft:seagrass", - "blockRuntimeId" : 6825 + "blockRuntimeId" : 6828 }, { "id" : "minecraft:crimson_roots", @@ -2053,55 +2053,55 @@ }, { "id" : "minecraft:warped_roots", - "blockRuntimeId" : 7615 + "blockRuntimeId" : 7613 }, { "id" : "minecraft:yellow_flower", - "blockRuntimeId" : 7941 + "blockRuntimeId" : 7939 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6590 + "blockRuntimeId" : 6593 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6591 + "blockRuntimeId" : 6594 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6592 + "blockRuntimeId" : 6595 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6593 + "blockRuntimeId" : 6596 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6594 + "blockRuntimeId" : 6597 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6595 + "blockRuntimeId" : 6598 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6596 + "blockRuntimeId" : 6599 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6597 + "blockRuntimeId" : 6600 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6598 + "blockRuntimeId" : 6601 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6599 + "blockRuntimeId" : 6602 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6600 + "blockRuntimeId" : 6603 }, { "id" : "minecraft:double_plant", @@ -2121,7 +2121,7 @@ }, { "id" : "minecraft:wither_rose", - "blockRuntimeId" : 7806 + "blockRuntimeId" : 7804 }, { "id" : "minecraft:white_dye" @@ -2188,19 +2188,19 @@ }, { "id" : "minecraft:vine", - "blockRuntimeId" : 7502 + "blockRuntimeId" : 7500 }, { "id" : "minecraft:weeping_vines", - "blockRuntimeId" : 7756 + "blockRuntimeId" : 7754 }, { "id" : "minecraft:twisting_vines", - "blockRuntimeId" : 7430 + "blockRuntimeId" : 7427 }, { "id" : "minecraft:waterlily", - "blockRuntimeId" : 7684 + "blockRuntimeId" : 7682 }, { "id" : "minecraft:deadbush", @@ -2212,15 +2212,15 @@ }, { "id" : "minecraft:snow", - "blockRuntimeId" : 6912 + "blockRuntimeId" : 6909 }, { "id" : "minecraft:ice", - "blockRuntimeId" : 5126 + "blockRuntimeId" : 5127 }, { "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5768 + "blockRuntimeId" : 5770 }, { "id" : "minecraft:blue_ice", @@ -2228,11 +2228,11 @@ }, { "id" : "minecraft:snow_layer", - "blockRuntimeId" : 6913 + "blockRuntimeId" : 6910 }, { "id" : "minecraft:pointed_dripstone", - "blockRuntimeId" : 5809 + "blockRuntimeId" : 5812 }, { "id" : "minecraft:dripstone_block", @@ -2240,11 +2240,11 @@ }, { "id" : "minecraft:moss_carpet", - "blockRuntimeId" : 5666 + "blockRuntimeId" : 5667 }, { "id" : "minecraft:moss_block", - "blockRuntimeId" : 5665 + "blockRuntimeId" : 5666 }, { "id" : "minecraft:dirt_with_roots", @@ -2252,7 +2252,7 @@ }, { "id" : "minecraft:hanging_roots", - "blockRuntimeId" : 5048 + "blockRuntimeId" : 5049 }, { "id" : "minecraft:big_dripleaf", @@ -2260,11 +2260,11 @@ }, { "id" : "minecraft:small_dripleaf_block", - "blockRuntimeId" : 6878 + "blockRuntimeId" : 6875 }, { "id" : "minecraft:spore_blossom", - "blockRuntimeId" : 6965 + "blockRuntimeId" : 6962 }, { "id" : "minecraft:azalea", @@ -2276,7 +2276,7 @@ }, { "id" : "minecraft:glow_lichen", - "blockRuntimeId" : 4972 + "blockRuntimeId" : 4973 }, { "id" : "minecraft:amethyst_block", @@ -2288,23 +2288,23 @@ }, { "id" : "minecraft:amethyst_cluster", - "blockRuntimeId" : 137 + "blockRuntimeId" : 138 }, { "id" : "minecraft:large_amethyst_bud", - "blockRuntimeId" : 5367 + "blockRuntimeId" : 5369 }, { "id" : "minecraft:medium_amethyst_bud", - "blockRuntimeId" : 5603 + "blockRuntimeId" : 5605 }, { "id" : "minecraft:small_amethyst_bud", - "blockRuntimeId" : 6865 + "blockRuntimeId" : 6863 }, { "id" : "minecraft:tuff", - "blockRuntimeId" : 7417 + "blockRuntimeId" : 7414 }, { "id" : "minecraft:calcite", @@ -2343,7 +2343,7 @@ }, { "id" : "minecraft:red_mushroom", - "blockRuntimeId" : 6607 + "blockRuntimeId" : 6610 }, { "id" : "minecraft:crimson_fungus", @@ -2351,7 +2351,7 @@ }, { "id" : "minecraft:warped_fungus", - "blockRuntimeId" : 7593 + "blockRuntimeId" : 7591 }, { "id" : "minecraft:brown_mushroom_block", @@ -2359,7 +2359,7 @@ }, { "id" : "minecraft:red_mushroom_block", - "blockRuntimeId" : 6622 + "blockRuntimeId" : 6625 }, { "id" : "minecraft:brown_mushroom_block", @@ -2386,17 +2386,13 @@ }, { "id" : "minecraft:web", - "blockRuntimeId" : 7755 + "blockRuntimeId" : 7753 }, { "id" : "minecraft:spider_eye" }, { "id" : "minecraft:mob_spawner", - "blockRuntimeId" : 5658 - }, - { - "id" : "minecraft:monster_egg", "blockRuntimeId" : 5659 }, { @@ -2419,9 +2415,13 @@ "id" : "minecraft:monster_egg", "blockRuntimeId" : 5664 }, + { + "id" : "minecraft:monster_egg", + "blockRuntimeId" : 5665 + }, { "id" : "minecraft:infested_deepslate", - "blockRuntimeId" : 5127 + "blockRuntimeId" : 5128 }, { "id" : "minecraft:dragon_egg", @@ -2429,7 +2429,7 @@ }, { "id" : "minecraft:turtle_egg", - "blockRuntimeId" : 7418 + "blockRuntimeId" : 7415 }, { "id" : "minecraft:chicken_spawn_egg" @@ -2631,7 +2631,7 @@ }, { "id" : "minecraft:obsidian", - "blockRuntimeId" : 5737 + "blockRuntimeId" : 5738 }, { "id" : "minecraft:crying_obsidian", @@ -2643,15 +2643,15 @@ }, { "id" : "minecraft:soul_sand", - "blockRuntimeId" : 6955 + "blockRuntimeId" : 6952 }, { "id" : "minecraft:netherrack", - "blockRuntimeId" : 5706 + "blockRuntimeId" : 5707 }, { "id" : "minecraft:magma", - "blockRuntimeId" : 5602 + "blockRuntimeId" : 5603 }, { "id" : "minecraft:nether_wart" @@ -2676,11 +2676,11 @@ }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6963 + "blockRuntimeId" : 6960 }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6964 + "blockRuntimeId" : 6961 }, { "id" : "minecraft:coral_block", @@ -3747,23 +3747,23 @@ }, { "id" : "minecraft:torch", - "blockRuntimeId" : 7357 + "blockRuntimeId" : 7354 }, { "id" : "minecraft:soul_torch", - "blockRuntimeId" : 6957 + "blockRuntimeId" : 6954 }, { "id" : "minecraft:sea_pickle", - "blockRuntimeId" : 6817 + "blockRuntimeId" : 6820 }, { "id" : "minecraft:lantern", - "blockRuntimeId" : 5363 + "blockRuntimeId" : 5364 }, { "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6953 + "blockRuntimeId" : 6950 }, { "id" : "minecraft:candle", @@ -3771,39 +3771,39 @@ }, { "id" : "minecraft:white_candle", - "blockRuntimeId" : 7790 + "blockRuntimeId" : 7788 }, { "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5738 + "blockRuntimeId" : 5740 }, { "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5586 + "blockRuntimeId" : 5587 }, { "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5474 + "blockRuntimeId" : 5475 }, { "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7931 + "blockRuntimeId" : 7929 }, { "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5522 + "blockRuntimeId" : 5523 }, { "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5769 + "blockRuntimeId" : 5772 }, { "id" : "minecraft:gray_candle", - "blockRuntimeId" : 5000 + "blockRuntimeId" : 5001 }, { "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5490 + "blockRuntimeId" : 5491 }, { "id" : "minecraft:cyan_candle", @@ -3811,7 +3811,7 @@ }, { "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6509 + "blockRuntimeId" : 6512 }, { "id" : "minecraft:blue_candle", @@ -3823,11 +3823,11 @@ }, { "id" : "minecraft:green_candle", - "blockRuntimeId" : 5016 + "blockRuntimeId" : 5017 }, { "id" : "minecraft:red_candle", - "blockRuntimeId" : 6580 + "blockRuntimeId" : 6583 }, { "id" : "minecraft:black_candle", @@ -3847,7 +3847,7 @@ }, { "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6879 + "blockRuntimeId" : 6876 }, { "id" : "minecraft:beehive", @@ -3861,7 +3861,7 @@ }, { "id" : "minecraft:furnace", - "blockRuntimeId" : 4876 + "blockRuntimeId" : 4877 }, { "id" : "minecraft:blast_furnace", @@ -3869,11 +3869,11 @@ }, { "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 }, { "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6699 + "blockRuntimeId" : 6702 }, { "id" : "minecraft:brewing_stand" @@ -3892,7 +3892,7 @@ }, { "id" : "minecraft:grindstone", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5033 }, { "id" : "minecraft:enchanting_table", @@ -3904,7 +3904,7 @@ }, { "id" : "minecraft:lectern", - "blockRuntimeId" : 5434 + "blockRuntimeId" : 5435 }, { "id" : "minecraft:cauldron" @@ -3919,7 +3919,7 @@ }, { "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7379 + "blockRuntimeId" : 7376 }, { "id" : "minecraft:ender_chest", @@ -3931,82 +3931,82 @@ }, { "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7462 + "blockRuntimeId" : 7459 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 }, { "id" : "minecraft:armor_stand" }, { "id" : "minecraft:noteblock", - "blockRuntimeId" : 5716 + "blockRuntimeId" : 5717 }, { "id" : "minecraft:jukebox", - "blockRuntimeId" : 5208 + "blockRuntimeId" : 5209 }, { "id" : "minecraft:music_disc_13" @@ -4055,15 +4055,15 @@ }, { "id" : "minecraft:glowstone", - "blockRuntimeId" : 4974 + "blockRuntimeId" : 4975 }, { "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6646 + "blockRuntimeId" : 6649 }, { "id" : "minecraft:sealantern", - "blockRuntimeId" : 6828 + "blockRuntimeId" : 6831 }, { "id" : "minecraft:oak_sign" @@ -4174,7 +4174,7 @@ }, { "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7295 + "blockRuntimeId" : 7292 }, { "id" : "minecraft:end_portal_frame", @@ -4318,7 +4318,7 @@ }, { "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5516 + "blockRuntimeId" : 5517 }, { "id" : "minecraft:end_crystal" @@ -4780,11 +4780,11 @@ }, { "id" : "minecraft:rail", - "blockRuntimeId" : 6567 + "blockRuntimeId" : 6570 }, { "id" : "minecraft:golden_rail", - "blockRuntimeId" : 4977 + "blockRuntimeId" : 4978 }, { "id" : "minecraft:detector_rail", @@ -4811,23 +4811,23 @@ }, { "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6645 + "blockRuntimeId" : 6648 }, { "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6648 + "blockRuntimeId" : 6651 }, { "id" : "minecraft:lever", - "blockRuntimeId" : 5442 + "blockRuntimeId" : 5443 }, { "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7843 + "blockRuntimeId" : 7841 }, { "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6966 + "blockRuntimeId" : 6963 }, { "id" : "minecraft:birch_button", @@ -4835,7 +4835,7 @@ }, { "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5209 + "blockRuntimeId" : 5210 }, { "id" : "minecraft:acacia_button" @@ -4846,7 +4846,7 @@ }, { "id" : "minecraft:stone_button", - "blockRuntimeId" : 7195 + "blockRuntimeId" : 7192 }, { "id" : "minecraft:crimson_button", @@ -4854,23 +4854,23 @@ }, { "id" : "minecraft:warped_button", - "blockRuntimeId" : 7530 + "blockRuntimeId" : 7528 }, { "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 6001 + "blockRuntimeId" : 6004 }, { "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7401 + "blockRuntimeId" : 7398 }, { "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7887 + "blockRuntimeId" : 7885 }, { "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 7026 + "blockRuntimeId" : 7023 }, { "id" : "minecraft:birch_pressure_plate", @@ -4878,7 +4878,7 @@ }, { "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5269 + "blockRuntimeId" : 5270 }, { "id" : "minecraft:acacia_pressure_plate", @@ -4894,27 +4894,27 @@ }, { "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7599 + "blockRuntimeId" : 7597 }, { "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7207 + "blockRuntimeId" : 7204 }, { "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5500 + "blockRuntimeId" : 5501 }, { "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5096 + "blockRuntimeId" : 5097 }, { "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 6015 + "blockRuntimeId" : 6018 }, { "id" : "minecraft:observer", - "blockRuntimeId" : 5725 + "blockRuntimeId" : 5726 }, { "id" : "minecraft:daylight_detector", @@ -4939,22 +4939,22 @@ }, { "id" : "minecraft:piston", - "blockRuntimeId" : 5786 + "blockRuntimeId" : 5789 }, { "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7169 + "blockRuntimeId" : 7166 }, { "id" : "minecraft:tnt", - "blockRuntimeId" : 7353 + "blockRuntimeId" : 7350 }, { "id" : "minecraft:name_tag" }, { "id" : "minecraft:loom", - "blockRuntimeId" : 5582 + "blockRuntimeId" : 5583 }, { "id" : "minecraft:banner" @@ -5045,6 +5045,9 @@ { "id" : "minecraft:piglin_banner_pattern" }, + { + "id" : "minecraft:globe_banner_pattern" + }, { "id" : "minecraft:firework_rocket", "nbt_b64" : "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" @@ -5197,7 +5200,7 @@ }, { "id" : "minecraft:target", - "blockRuntimeId" : 7351 + "blockRuntimeId" : 7348 }, { "id" : "minecraft:lodestone_compass" diff --git a/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json index ee247739230..786eb51f097 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json +++ b/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json @@ -1,6 +1,222 @@ { - "version" : 475, + "version" : 486, "recipes" : [ + { + "id" : "minecraft:smithingtable_diamond_axe_to_netherite_axe", + "type" : 0, + "input" : [ + { + "legacyId" : 319, + "id" : "minecraft:diamond_axe", + "damage" : 32767 + }, + { + "legacyId" : 603, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 607, + "id" : "minecraft:netherite_axe" + } + ], + "block" : "smithing_table", + "priority" : 2 + }, + { + "id" : "minecraft:smithingtable_diamond_boots_to_netherite_boots", + "type" : 0, + "input" : [ + { + "legacyId" : 350, + "id" : "minecraft:diamond_boots", + "damage" : 32767 + }, + { + "legacyId" : 603, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 612, + "id" : "minecraft:netherite_boots" + } + ], + "block" : "smithing_table", + "priority" : 2 + }, + { + "id" : "minecraft:smithingtable_diamond_chestplate_to_netherite_chestplate", + "type" : 0, + "input" : [ + { + "legacyId" : 348, + "id" : "minecraft:diamond_chestplate", + "damage" : 32767 + }, + { + "legacyId" : 603, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 610, + "id" : "minecraft:netherite_chestplate" + } + ], + "block" : "smithing_table", + "priority" : 2 + }, + { + "id" : "minecraft:smithingtable_diamond_helmet_to_netherite_helmet", + "type" : 0, + "input" : [ + { + "legacyId" : 347, + "id" : "minecraft:diamond_helmet", + "damage" : 32767 + }, + { + "legacyId" : 603, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 609, + "id" : "minecraft:netherite_helmet" + } + ], + "block" : "smithing_table", + "priority" : 2 + }, + { + "id" : "minecraft:smithingtable_diamond_hoe_to_netherite_hoe", + "type" : 0, + "input" : [ + { + "legacyId" : 332, + "id" : "minecraft:diamond_hoe", + "damage" : 32767 + }, + { + "legacyId" : 603, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 608, + "id" : "minecraft:netherite_hoe" + } + ], + "block" : "smithing_table", + "priority" : 2 + }, + { + "id" : "minecraft:smithingtable_diamond_leggings_to_netherite_leggings", + "type" : 0, + "input" : [ + { + "legacyId" : 349, + "id" : "minecraft:diamond_leggings", + "damage" : 32767 + }, + { + "legacyId" : 603, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 611, + "id" : "minecraft:netherite_leggings" + } + ], + "block" : "smithing_table", + "priority" : 2 + }, + { + "id" : "minecraft:smithingtable_diamond_pickaxe_to_netherite_pickaxe", + "type" : 0, + "input" : [ + { + "legacyId" : 318, + "id" : "minecraft:diamond_pickaxe", + "damage" : 32767 + }, + { + "legacyId" : 603, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 606, + "id" : "minecraft:netherite_pickaxe" + } + ], + "block" : "smithing_table", + "priority" : 2 + }, + { + "id" : "minecraft:smithingtable_diamond_shovel_to_netherite_shovel", + "type" : 0, + "input" : [ + { + "legacyId" : 317, + "id" : "minecraft:diamond_shovel", + "damage" : 32767 + }, + { + "legacyId" : 603, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 605, + "id" : "minecraft:netherite_shovel" + } + ], + "block" : "smithing_table", + "priority" : 2 + }, + { + "id" : "minecraft:smithingtable_diamond_sword_to_netherite_sword", + "type" : 0, + "input" : [ + { + "legacyId" : 316, + "id" : "minecraft:diamond_sword", + "damage" : 32767 + }, + { + "legacyId" : 603, + "id" : "minecraft:netherite_ingot", + "damage" : 32767 + } + ], + "output" : [ + { + "legacyId" : 604, + "id" : "minecraft:netherite_sword" + } + ], + "block" : "smithing_table", + "priority" : 2 + }, { "type" : 4, "uuid" : "442d85ed-8272-4543-a6f1-418f90ded05d" @@ -652,7 +868,7 @@ { "legacyId" : -383, "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6203 + "blockRuntimeId" : 6206 } ], "block" : "stonecutter", @@ -672,7 +888,7 @@ "legacyId" : -384, "id" : "minecraft:polished_deepslate_slab", "count" : 2, - "blockRuntimeId" : 6206 + "blockRuntimeId" : 6209 } ], "block" : "stonecutter", @@ -692,7 +908,7 @@ "legacyId" : -384, "id" : "minecraft:polished_deepslate_slab", "count" : 2, - "blockRuntimeId" : 6206 + "blockRuntimeId" : 6209 } ], "block" : "stonecutter", @@ -711,7 +927,7 @@ { "legacyId" : -385, "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6208 + "blockRuntimeId" : 6211 } ], "block" : "stonecutter", @@ -730,7 +946,7 @@ { "legacyId" : -385, "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6208 + "blockRuntimeId" : 6211 } ], "block" : "stonecutter", @@ -749,7 +965,7 @@ { "legacyId" : -386, "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6216 + "blockRuntimeId" : 6219 } ], "block" : "stonecutter", @@ -768,7 +984,7 @@ { "legacyId" : -386, "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6216 + "blockRuntimeId" : 6219 } ], "block" : "stonecutter", @@ -789,7 +1005,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7258 + "blockRuntimeId" : 7255 } ], "block" : "stonecutter", @@ -910,7 +1126,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7227 + "blockRuntimeId" : 7224 } ], "block" : "stonecutter", @@ -931,7 +1147,7 @@ "legacyId" : -284, "id" : "minecraft:polished_blackstone_brick_slab", "count" : 2, - "blockRuntimeId" : 5828 + "blockRuntimeId" : 5831 } ], "block" : "stonecutter", @@ -970,7 +1186,7 @@ { "legacyId" : -275, "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5830 + "blockRuntimeId" : 5833 } ], "block" : "stonecutter", @@ -1009,7 +1225,7 @@ { "legacyId" : -278, "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5838 + "blockRuntimeId" : 5841 } ], "block" : "stonecutter", @@ -1029,7 +1245,7 @@ { "legacyId" : -274, "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 6000 + "blockRuntimeId" : 6003 } ], "block" : "stonecutter", @@ -1109,7 +1325,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7226 + "blockRuntimeId" : 7223 } ], "block" : "stonecutter", @@ -1128,7 +1344,7 @@ { "legacyId" : 67, "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7281 + "blockRuntimeId" : 7278 } ], "block" : "stonecutter", @@ -1272,7 +1488,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7242 + "blockRuntimeId" : 7239 } ], "block" : "stonecutter", @@ -1313,7 +1529,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7259 + "blockRuntimeId" : 7256 } ], "block" : "stonecutter", @@ -1373,7 +1589,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 2, - "blockRuntimeId" : 7273 + "blockRuntimeId" : 7270 } ], "block" : "stonecutter", @@ -1393,7 +1609,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7255 + "blockRuntimeId" : 7252 } ], "block" : "stonecutter", @@ -1413,7 +1629,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7255 + "blockRuntimeId" : 7252 } ], "block" : "stonecutter", @@ -1633,7 +1849,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7261 + "blockRuntimeId" : 7258 } ], "block" : "stonecutter", @@ -1653,7 +1869,7 @@ { "legacyId" : -169, "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4989 + "blockRuntimeId" : 4990 } ], "block" : "stonecutter", @@ -1693,7 +1909,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7244 + "blockRuntimeId" : 7241 } ], "block" : "stonecutter", @@ -1712,7 +1928,7 @@ { "legacyId" : -179, "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5668 + "blockRuntimeId" : 5669 } ], "block" : "stonecutter", @@ -1752,7 +1968,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 2, - "blockRuntimeId" : 7271 + "blockRuntimeId" : 7268 } ], "block" : "stonecutter", @@ -1772,7 +1988,7 @@ { "legacyId" : -175, "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5676 + "blockRuntimeId" : 5677 } ], "block" : "stonecutter", @@ -1812,7 +2028,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7230 + "blockRuntimeId" : 7227 } ], "block" : "stonecutter", @@ -1831,7 +2047,7 @@ { "legacyId" : 114, "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5690 + "blockRuntimeId" : 5691 } ], "block" : "stonecutter", @@ -1871,7 +2087,7 @@ "legacyId" : -350, "id" : "minecraft:oxidized_cut_copper", "count" : 4, - "blockRuntimeId" : 5755 + "blockRuntimeId" : 5757 } ], "block" : "stonecutter", @@ -1892,7 +2108,7 @@ "legacyId" : -364, "id" : "minecraft:oxidized_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 5756 + "blockRuntimeId" : 5758 } ], "block" : "stonecutter", @@ -1913,7 +2129,7 @@ "legacyId" : -357, "id" : "minecraft:oxidized_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 5758 + "blockRuntimeId" : 5760 } ], "block" : "stonecutter", @@ -1934,7 +2150,7 @@ "legacyId" : -364, "id" : "minecraft:oxidized_cut_copper_slab", "count" : 2, - "blockRuntimeId" : 5756 + "blockRuntimeId" : 5758 } ], "block" : "stonecutter", @@ -1954,7 +2170,7 @@ { "legacyId" : -357, "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5758 + "blockRuntimeId" : 5760 } ], "block" : "stonecutter", @@ -1974,7 +2190,7 @@ { "legacyId" : 1, "id" : "minecraft:stone", - "blockRuntimeId" : 7186 + "blockRuntimeId" : 7183 } ], "block" : "stonecutter", @@ -1995,7 +2211,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7257 + "blockRuntimeId" : 7254 } ], "block" : "stonecutter", @@ -2016,7 +2232,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7257 + "blockRuntimeId" : 7254 } ], "block" : "stonecutter", @@ -2036,7 +2252,7 @@ { "legacyId" : -174, "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5814 + "blockRuntimeId" : 5817 } ], "block" : "stonecutter", @@ -2056,7 +2272,7 @@ { "legacyId" : -174, "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5814 + "blockRuntimeId" : 5817 } ], "block" : "stonecutter", @@ -2076,7 +2292,7 @@ { "legacyId" : -235, "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5822 + "blockRuntimeId" : 5825 } ], "block" : "stonecutter", @@ -2097,7 +2313,7 @@ "legacyId" : -284, "id" : "minecraft:polished_blackstone_brick_slab", "count" : 2, - "blockRuntimeId" : 5828 + "blockRuntimeId" : 5831 } ], "block" : "stonecutter", @@ -2117,7 +2333,7 @@ { "legacyId" : -275, "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5830 + "blockRuntimeId" : 5833 } ], "block" : "stonecutter", @@ -2137,7 +2353,7 @@ { "legacyId" : -278, "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5838 + "blockRuntimeId" : 5841 } ], "block" : "stonecutter", @@ -2157,7 +2373,7 @@ { "legacyId" : -274, "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 6000 + "blockRuntimeId" : 6003 } ], "block" : "stonecutter", @@ -2177,7 +2393,7 @@ { "legacyId" : 1, "id" : "minecraft:stone", - "blockRuntimeId" : 7184 + "blockRuntimeId" : 7181 } ], "block" : "stonecutter", @@ -2198,7 +2414,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7260 + "blockRuntimeId" : 7257 } ], "block" : "stonecutter", @@ -2219,7 +2435,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7260 + "blockRuntimeId" : 7257 } ], "block" : "stonecutter", @@ -2239,7 +2455,7 @@ { "legacyId" : -173, "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6378 + "blockRuntimeId" : 6381 } ], "block" : "stonecutter", @@ -2259,7 +2475,7 @@ { "legacyId" : -173, "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6378 + "blockRuntimeId" : 6381 } ], "block" : "stonecutter", @@ -2279,7 +2495,7 @@ { "legacyId" : -291, "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5825 + "blockRuntimeId" : 5828 } ], "block" : "stonecutter", @@ -2299,7 +2515,7 @@ { "legacyId" : 1, "id" : "minecraft:stone", - "blockRuntimeId" : 7182 + "blockRuntimeId" : 7179 } ], "block" : "stonecutter", @@ -2320,7 +2536,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7262 + "blockRuntimeId" : 7259 } ], "block" : "stonecutter", @@ -2341,7 +2557,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7262 + "blockRuntimeId" : 7259 } ], "block" : "stonecutter", @@ -2361,7 +2577,7 @@ { "legacyId" : -172, "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6386 + "blockRuntimeId" : 6389 } ], "block" : "stonecutter", @@ -2381,7 +2597,7 @@ { "legacyId" : -172, "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6386 + "blockRuntimeId" : 6389 } ], "block" : "stonecutter", @@ -2402,7 +2618,7 @@ "legacyId" : -293, "id" : "minecraft:polished_blackstone_slab", "count" : 2, - "blockRuntimeId" : 6031 + "blockRuntimeId" : 6034 } ], "block" : "stonecutter", @@ -2422,7 +2638,7 @@ { "legacyId" : -292, "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6033 + "blockRuntimeId" : 6036 } ], "block" : "stonecutter", @@ -2442,7 +2658,7 @@ { "legacyId" : -297, "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6041 + "blockRuntimeId" : 6044 } ], "block" : "stonecutter", @@ -2463,7 +2679,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7243 + "blockRuntimeId" : 7240 } ], "block" : "stonecutter", @@ -2483,7 +2699,7 @@ { "legacyId" : -4, "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6441 + "blockRuntimeId" : 6444 } ], "block" : "stonecutter", @@ -2503,7 +2719,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7241 + "blockRuntimeId" : 7238 } ], "block" : "stonecutter", @@ -2522,7 +2738,7 @@ { "legacyId" : -2, "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6449 + "blockRuntimeId" : 6452 } ], "block" : "stonecutter", @@ -2560,7 +2776,7 @@ { "legacyId" : 201, "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6527 + "blockRuntimeId" : 6530 } ], "block" : "stonecutter", @@ -2580,7 +2796,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7240 + "blockRuntimeId" : 7237 } ], "block" : "stonecutter", @@ -2599,7 +2815,7 @@ { "legacyId" : 203, "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6537 + "blockRuntimeId" : 6540 } ], "block" : "stonecutter", @@ -2618,7 +2834,7 @@ { "legacyId" : -304, "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6557 + "blockRuntimeId" : 6560 } ], "block" : "stonecutter", @@ -2637,7 +2853,7 @@ { "legacyId" : 155, "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6546 + "blockRuntimeId" : 6549 } ], "block" : "stonecutter", @@ -2656,7 +2872,7 @@ { "legacyId" : 155, "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6547 + "blockRuntimeId" : 6550 } ], "block" : "stonecutter", @@ -2676,7 +2892,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7229 + "blockRuntimeId" : 7226 } ], "block" : "stonecutter", @@ -2695,7 +2911,7 @@ { "legacyId" : 156, "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6559 + "blockRuntimeId" : 6562 } ], "block" : "stonecutter", @@ -2715,7 +2931,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7246 + "blockRuntimeId" : 7243 } ], "block" : "stonecutter", @@ -2734,7 +2950,7 @@ { "legacyId" : -184, "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6625 + "blockRuntimeId" : 6628 } ], "block" : "stonecutter", @@ -2773,7 +2989,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7239 + "blockRuntimeId" : 7236 } ], "block" : "stonecutter", @@ -2792,7 +3008,7 @@ { "legacyId" : 179, "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6635 + "blockRuntimeId" : 6638 } ], "block" : "stonecutter", @@ -2811,7 +3027,7 @@ { "legacyId" : 179, "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6634 + "blockRuntimeId" : 6637 } ], "block" : "stonecutter", @@ -2830,7 +3046,7 @@ { "legacyId" : 180, "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6637 + "blockRuntimeId" : 6640 } ], "block" : "stonecutter", @@ -2869,7 +3085,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7224 + "blockRuntimeId" : 7221 } ], "block" : "stonecutter", @@ -2888,7 +3104,7 @@ { "legacyId" : 24, "id" : "minecraft:sandstone", - "blockRuntimeId" : 6708 + "blockRuntimeId" : 6711 } ], "block" : "stonecutter", @@ -2907,7 +3123,7 @@ { "legacyId" : 24, "id" : "minecraft:sandstone", - "blockRuntimeId" : 6707 + "blockRuntimeId" : 6710 } ], "block" : "stonecutter", @@ -2926,7 +3142,7 @@ { "legacyId" : 128, "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6710 + "blockRuntimeId" : 6713 } ], "block" : "stonecutter", @@ -2966,7 +3182,7 @@ "legacyId" : -293, "id" : "minecraft:polished_blackstone_slab", "count" : 2, - "blockRuntimeId" : 6031 + "blockRuntimeId" : 6034 } ], "block" : "stonecutter", @@ -2987,7 +3203,7 @@ "legacyId" : -284, "id" : "minecraft:polished_blackstone_brick_slab", "count" : 2, - "blockRuntimeId" : 5828 + "blockRuntimeId" : 5831 } ], "block" : "stonecutter", @@ -3007,7 +3223,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7223 + "blockRuntimeId" : 7220 } ], "block" : "stonecutter", @@ -3028,7 +3244,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 2, - "blockRuntimeId" : 7272 + "blockRuntimeId" : 7269 } ], "block" : "stonecutter", @@ -3048,7 +3264,7 @@ { "legacyId" : -185, "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6887 + "blockRuntimeId" : 6884 } ], "block" : "stonecutter", @@ -3069,7 +3285,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7256 + "blockRuntimeId" : 7253 } ], "block" : "stonecutter", @@ -3089,7 +3305,7 @@ { "legacyId" : -176, "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6895 + "blockRuntimeId" : 6892 } ], "block" : "stonecutter", @@ -3110,7 +3326,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7245 + "blockRuntimeId" : 7242 } ], "block" : "stonecutter", @@ -3130,7 +3346,7 @@ { "legacyId" : -177, "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6903 + "blockRuntimeId" : 6900 } ], "block" : "stonecutter", @@ -3150,7 +3366,7 @@ { "legacyId" : -292, "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6033 + "blockRuntimeId" : 6036 } ], "block" : "stonecutter", @@ -3169,7 +3385,7 @@ { "legacyId" : -180, "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5708 + "blockRuntimeId" : 5709 } ], "block" : "stonecutter", @@ -3188,7 +3404,7 @@ { "legacyId" : 98, "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7289 + "blockRuntimeId" : 7286 } ], "block" : "stonecutter", @@ -3207,7 +3423,7 @@ { "legacyId" : 98, "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7292 + "blockRuntimeId" : 7289 } ], "block" : "stonecutter", @@ -3227,7 +3443,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7228 + "blockRuntimeId" : 7225 } ], "block" : "stonecutter", @@ -3247,7 +3463,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7228 + "blockRuntimeId" : 7225 } ], "block" : "stonecutter", @@ -3266,7 +3482,7 @@ { "legacyId" : 109, "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7187 + "blockRuntimeId" : 7184 } ], "block" : "stonecutter", @@ -3285,7 +3501,7 @@ { "legacyId" : 109, "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7187 + "blockRuntimeId" : 7184 } ], "block" : "stonecutter", @@ -3343,7 +3559,7 @@ { "legacyId" : -297, "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6041 + "blockRuntimeId" : 6044 } ], "block" : "stonecutter", @@ -3363,7 +3579,7 @@ { "legacyId" : -278, "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5838 + "blockRuntimeId" : 5841 } ], "block" : "stonecutter", @@ -3384,7 +3600,7 @@ "legacyId" : -351, "id" : "minecraft:waxed_cut_copper", "count" : 4, - "blockRuntimeId" : 7686 + "blockRuntimeId" : 7684 } ], "block" : "stonecutter", @@ -3405,7 +3621,7 @@ "legacyId" : -365, "id" : "minecraft:waxed_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 7687 + "blockRuntimeId" : 7685 } ], "block" : "stonecutter", @@ -3426,7 +3642,7 @@ "legacyId" : -358, "id" : "minecraft:waxed_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7689 + "blockRuntimeId" : 7687 } ], "block" : "stonecutter", @@ -3447,7 +3663,7 @@ "legacyId" : -366, "id" : "minecraft:waxed_exposed_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 7701 + "blockRuntimeId" : 7699 } ], "block" : "stonecutter", @@ -3468,7 +3684,7 @@ "legacyId" : -365, "id" : "minecraft:waxed_cut_copper_slab", "count" : 2, - "blockRuntimeId" : 7687 + "blockRuntimeId" : 7685 } ], "block" : "stonecutter", @@ -3488,7 +3704,7 @@ { "legacyId" : -358, "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7689 + "blockRuntimeId" : 7687 } ], "block" : "stonecutter", @@ -3509,7 +3725,7 @@ "legacyId" : -352, "id" : "minecraft:waxed_exposed_cut_copper", "count" : 4, - "blockRuntimeId" : 7700 + "blockRuntimeId" : 7698 } ], "block" : "stonecutter", @@ -3530,7 +3746,7 @@ "legacyId" : -359, "id" : "minecraft:waxed_exposed_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7703 + "blockRuntimeId" : 7701 } ], "block" : "stonecutter", @@ -3551,7 +3767,7 @@ "legacyId" : -366, "id" : "minecraft:waxed_exposed_cut_copper_slab", "count" : 2, - "blockRuntimeId" : 7701 + "blockRuntimeId" : 7699 } ], "block" : "stonecutter", @@ -3571,7 +3787,7 @@ { "legacyId" : -359, "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7703 + "blockRuntimeId" : 7701 } ], "block" : "stonecutter", @@ -3592,7 +3808,7 @@ "legacyId" : -447, "id" : "minecraft:waxed_oxidized_cut_copper", "count" : 4, - "blockRuntimeId" : 7714 + "blockRuntimeId" : 7712 } ], "block" : "stonecutter", @@ -3613,7 +3829,7 @@ "legacyId" : -449, "id" : "minecraft:waxed_oxidized_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 7715 + "blockRuntimeId" : 7713 } ], "block" : "stonecutter", @@ -3634,7 +3850,7 @@ "legacyId" : -448, "id" : "minecraft:waxed_oxidized_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7717 + "blockRuntimeId" : 7715 } ], "block" : "stonecutter", @@ -3654,7 +3870,7 @@ { "legacyId" : -449, "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7715 + "blockRuntimeId" : 7713 } ], "block" : "stonecutter", @@ -3674,7 +3890,7 @@ { "legacyId" : -448, "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7717 + "blockRuntimeId" : 7715 } ], "block" : "stonecutter", @@ -3695,7 +3911,7 @@ "legacyId" : -353, "id" : "minecraft:waxed_weathered_cut_copper", "count" : 4, - "blockRuntimeId" : 7728 + "blockRuntimeId" : 7726 } ], "block" : "stonecutter", @@ -3716,7 +3932,7 @@ "legacyId" : -367, "id" : "minecraft:waxed_weathered_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 7729 + "blockRuntimeId" : 7727 } ], "block" : "stonecutter", @@ -3737,7 +3953,7 @@ "legacyId" : -360, "id" : "minecraft:waxed_weathered_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7731 + "blockRuntimeId" : 7729 } ], "block" : "stonecutter", @@ -3758,7 +3974,7 @@ "legacyId" : -367, "id" : "minecraft:waxed_weathered_cut_copper_slab", "count" : 2, - "blockRuntimeId" : 7729 + "blockRuntimeId" : 7727 } ], "block" : "stonecutter", @@ -3778,7 +3994,7 @@ { "legacyId" : -360, "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7731 + "blockRuntimeId" : 7729 } ], "block" : "stonecutter", @@ -3799,7 +4015,7 @@ "legacyId" : -349, "id" : "minecraft:weathered_cut_copper", "count" : 4, - "blockRuntimeId" : 7742 + "blockRuntimeId" : 7740 } ], "block" : "stonecutter", @@ -3820,7 +4036,7 @@ "legacyId" : -363, "id" : "minecraft:weathered_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 7743 + "blockRuntimeId" : 7741 } ], "block" : "stonecutter", @@ -3841,7 +4057,7 @@ "legacyId" : -356, "id" : "minecraft:weathered_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7745 + "blockRuntimeId" : 7743 } ], "block" : "stonecutter", @@ -3862,7 +4078,7 @@ "legacyId" : -363, "id" : "minecraft:weathered_cut_copper_slab", "count" : 2, - "blockRuntimeId" : 7743 + "blockRuntimeId" : 7741 } ], "block" : "stonecutter", @@ -3882,7 +4098,7 @@ { "legacyId" : -356, "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7745 + "blockRuntimeId" : 7743 } ], "block" : "stonecutter", @@ -3902,7 +4118,7 @@ { "legacyId" : -275, "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5830 + "blockRuntimeId" : 5833 } ], "block" : "stonecutter", @@ -4044,7 +4260,7 @@ { "legacyId" : -143, "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5209 + "blockRuntimeId" : 5210 } ], "shape" : [ @@ -4067,7 +4283,7 @@ { "legacyId" : -144, "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6966 + "blockRuntimeId" : 6963 } ], "shape" : [ @@ -4213,7 +4429,7 @@ { "legacyId" : 84, "id" : "minecraft:jukebox", - "blockRuntimeId" : 5208 + "blockRuntimeId" : 5209 } ], "shape" : [ @@ -4243,7 +4459,7 @@ { "legacyId" : 25, "id" : "minecraft:noteblock", - "blockRuntimeId" : 5716 + "blockRuntimeId" : 5717 } ], "shape" : [ @@ -4268,7 +4484,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7226 + "blockRuntimeId" : 7223 } ], "shape" : [ @@ -4291,7 +4507,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7230 + "blockRuntimeId" : 7227 } ], "shape" : [ @@ -4314,7 +4530,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7224 + "blockRuntimeId" : 7221 } ], "shape" : [ @@ -4380,7 +4596,7 @@ { "legacyId" : 33, "id" : "minecraft:piston", - "blockRuntimeId" : 5786 + "blockRuntimeId" : 5789 } ], "shape" : [ @@ -4474,7 +4690,7 @@ { "legacyId" : -153, "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5269 + "blockRuntimeId" : 5270 } ], "shape" : [ @@ -4497,7 +4713,7 @@ { "legacyId" : -154, "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 7026 + "blockRuntimeId" : 7023 } ], "shape" : [ @@ -4542,7 +4758,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 6, - "blockRuntimeId" : 7273 + "blockRuntimeId" : 7270 } ], "shape" : [ @@ -4566,7 +4782,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 6, - "blockRuntimeId" : 7271 + "blockRuntimeId" : 7268 } ], "shape" : [ @@ -4589,7 +4805,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7227 + "blockRuntimeId" : 7224 } ], "shape" : [ @@ -4612,7 +4828,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7228 + "blockRuntimeId" : 7225 } ], "shape" : [ @@ -4635,7 +4851,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7223 + "blockRuntimeId" : 7220 } ], "shape" : [ @@ -4664,7 +4880,7 @@ "legacyId" : 50, "id" : "minecraft:torch", "count" : 4, - "blockRuntimeId" : 7357 + "blockRuntimeId" : 7354 } ], "shape" : [ @@ -4693,7 +4909,7 @@ "legacyId" : 50, "id" : "minecraft:torch", "count" : 4, - "blockRuntimeId" : 7357 + "blockRuntimeId" : 7354 } ], "shape" : [ @@ -4793,7 +5009,7 @@ "legacyId" : -148, "id" : "minecraft:jungle_trapdoor", "count" : 2, - "blockRuntimeId" : 5309 + "blockRuntimeId" : 5310 } ], "shape" : [ @@ -4818,7 +5034,7 @@ "legacyId" : -149, "id" : "minecraft:spruce_trapdoor", "count" : 2, - "blockRuntimeId" : 7066 + "blockRuntimeId" : 7063 } ], "shape" : [ @@ -4842,7 +5058,7 @@ "legacyId" : 96, "id" : "minecraft:trapdoor", "count" : 2, - "blockRuntimeId" : 7363 + "blockRuntimeId" : 7360 } ], "shape" : [ @@ -4877,7 +5093,7 @@ "legacyId" : 131, "id" : "minecraft:tripwire_hook", "count" : 2, - "blockRuntimeId" : 7401 + "blockRuntimeId" : 7398 } ], "shape" : [ @@ -4901,7 +5117,7 @@ { "legacyId" : 143, "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7843 + "blockRuntimeId" : 7841 } ], "shape" : [ @@ -4923,7 +5139,7 @@ { "legacyId" : 72, "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7887 + "blockRuntimeId" : 7885 } ], "shape" : [ @@ -13876,7 +14092,7 @@ { "legacyId" : 155, "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6546 + "blockRuntimeId" : 6549 } ], "shape" : [ @@ -13900,7 +14116,7 @@ { "legacyId" : 98, "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7292 + "blockRuntimeId" : 7289 } ], "shape" : [ @@ -13957,7 +14173,7 @@ { "legacyId" : 179, "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6634 + "blockRuntimeId" : 6637 } ], "shape" : [ @@ -13981,7 +14197,7 @@ { "legacyId" : 24, "id" : "minecraft:sandstone", - "blockRuntimeId" : 6707 + "blockRuntimeId" : 6710 } ], "shape" : [ @@ -14006,7 +14222,7 @@ "legacyId" : 136, "id" : "minecraft:jungle_stairs", "count" : 4, - "blockRuntimeId" : 5285 + "blockRuntimeId" : 5286 } ], "shape" : [ @@ -14031,7 +14247,7 @@ { "legacyId" : 201, "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6527 + "blockRuntimeId" : 6530 } ], "shape" : [ @@ -14060,7 +14276,7 @@ { "legacyId" : -204, "id" : "minecraft:loom", - "blockRuntimeId" : 5582 + "blockRuntimeId" : 5583 } ], "shape" : [ @@ -14196,7 +14412,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5804 } ], "shape" : [ @@ -14220,7 +14436,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5804 } ], "shape" : [ @@ -14244,7 +14460,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5804 } ], "shape" : [ @@ -14268,7 +14484,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5804 } ], "shape" : [ @@ -14317,7 +14533,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7811 + "blockRuntimeId" : 7809 } ], "shape" : [ @@ -14342,7 +14558,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7817 + "blockRuntimeId" : 7815 } ], "shape" : [ @@ -14367,7 +14583,7 @@ "legacyId" : 158, "id" : "minecraft:wooden_slab", "count" : 6, - "blockRuntimeId" : 7907 + "blockRuntimeId" : 7905 } ], "shape" : [ @@ -14417,7 +14633,7 @@ "type" : 1, "input" : { "A" : { - "legacyId" : 624, + "legacyId" : 625, "id" : "minecraft:amethyst_shard", "damage" : 32767 } @@ -14456,7 +14672,7 @@ "legacyId" : 1, "id" : "minecraft:stone", "count" : 2, - "blockRuntimeId" : 7185 + "blockRuntimeId" : 7182 } ], "block" : "crafting_table", @@ -14910,7 +15126,7 @@ "damage" : 32767 }, "B" : { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -14940,7 +15156,7 @@ "damage" : 32767 }, "B" : { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -14970,7 +15186,7 @@ "damage" : 32767 }, "B" : { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -15166,7 +15382,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5799 + "blockRuntimeId" : 5802 } ], "shape" : [ @@ -15190,7 +15406,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5799 + "blockRuntimeId" : 5802 } ], "shape" : [ @@ -15214,7 +15430,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5799 + "blockRuntimeId" : 5802 } ], "shape" : [ @@ -15238,7 +15454,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5799 + "blockRuntimeId" : 5802 } ], "shape" : [ @@ -15288,7 +15504,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7809 + "blockRuntimeId" : 7807 } ], "shape" : [ @@ -15313,7 +15529,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7815 + "blockRuntimeId" : 7813 } ], "shape" : [ @@ -15338,7 +15554,7 @@ "legacyId" : 158, "id" : "minecraft:wooden_slab", "count" : 6, - "blockRuntimeId" : 7905 + "blockRuntimeId" : 7903 } ], "shape" : [ @@ -15645,7 +15861,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7103 + "blockRuntimeId" : 7100 } ], "shape" : [ @@ -15675,7 +15891,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7103 + "blockRuntimeId" : 7100 } ], "shape" : [ @@ -15701,7 +15917,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7119 + "blockRuntimeId" : 7116 } ], "shape" : [ @@ -15730,7 +15946,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7119 + "blockRuntimeId" : 7116 } ], "shape" : [ @@ -15760,7 +15976,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7135 + "blockRuntimeId" : 7132 } ], "shape" : [ @@ -15790,7 +16006,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7135 + "blockRuntimeId" : 7132 } ], "shape" : [ @@ -16255,7 +16471,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7099 + "blockRuntimeId" : 7096 } ], "shape" : [ @@ -16285,7 +16501,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7099 + "blockRuntimeId" : 7096 } ], "shape" : [ @@ -16311,7 +16527,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7115 + "blockRuntimeId" : 7112 } ], "shape" : [ @@ -16340,7 +16556,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7115 + "blockRuntimeId" : 7112 } ], "shape" : [ @@ -16370,7 +16586,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7131 + "blockRuntimeId" : 7128 } ], "shape" : [ @@ -16400,7 +16616,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7131 + "blockRuntimeId" : 7128 } ], "shape" : [ @@ -17130,7 +17346,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7100 + "blockRuntimeId" : 7097 } ], "shape" : [ @@ -17160,7 +17376,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7100 + "blockRuntimeId" : 7097 } ], "shape" : [ @@ -17186,7 +17402,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7116 + "blockRuntimeId" : 7113 } ], "shape" : [ @@ -17215,7 +17431,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7116 + "blockRuntimeId" : 7113 } ], "shape" : [ @@ -17245,7 +17461,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7132 + "blockRuntimeId" : 7129 } ], "shape" : [ @@ -17275,7 +17491,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7132 + "blockRuntimeId" : 7129 } ], "shape" : [ @@ -17373,7 +17589,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17407,7 +17623,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17441,7 +17657,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17475,7 +17691,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17509,7 +17725,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17543,7 +17759,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17577,7 +17793,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17611,7 +17827,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17645,7 +17861,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17679,7 +17895,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17712,7 +17928,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17745,7 +17961,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17778,7 +17994,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17811,7 +18027,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17844,7 +18060,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17877,7 +18093,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17910,7 +18126,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17943,7 +18159,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -17976,7 +18192,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -18009,7 +18225,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -18042,7 +18258,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -18075,7 +18291,7 @@ }, "output" : [ { - "legacyId" : 588, + "legacyId" : 589, "id" : "minecraft:campfire" } ], @@ -18097,7 +18313,7 @@ "damage" : 32767 }, "B" : { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -18275,7 +18491,7 @@ }, "output" : [ { - "legacyId" : 618, + "legacyId" : 619, "id" : "minecraft:chain" } ], @@ -18656,7 +18872,7 @@ "legacyId" : 67, "id" : "minecraft:stone_stairs", "count" : 4, - "blockRuntimeId" : 7281 + "blockRuntimeId" : 7278 } ], "shape" : [ @@ -19144,7 +19360,7 @@ "legacyId" : -350, "id" : "minecraft:oxidized_cut_copper", "count" : 4, - "blockRuntimeId" : 5755 + "blockRuntimeId" : 5757 } ], "shape" : [ @@ -19169,7 +19385,7 @@ "legacyId" : -364, "id" : "minecraft:oxidized_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 5756 + "blockRuntimeId" : 5758 } ], "shape" : [ @@ -19193,7 +19409,7 @@ "legacyId" : -357, "id" : "minecraft:oxidized_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 5758 + "blockRuntimeId" : 5760 } ], "shape" : [ @@ -19219,7 +19435,7 @@ "legacyId" : -351, "id" : "minecraft:waxed_cut_copper", "count" : 4, - "blockRuntimeId" : 7686 + "blockRuntimeId" : 7684 } ], "shape" : [ @@ -19244,7 +19460,7 @@ "legacyId" : -365, "id" : "minecraft:waxed_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 7687 + "blockRuntimeId" : 7685 } ], "shape" : [ @@ -19268,7 +19484,7 @@ "legacyId" : -358, "id" : "minecraft:waxed_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7689 + "blockRuntimeId" : 7687 } ], "shape" : [ @@ -19294,7 +19510,7 @@ "legacyId" : -352, "id" : "minecraft:waxed_exposed_cut_copper", "count" : 4, - "blockRuntimeId" : 7700 + "blockRuntimeId" : 7698 } ], "shape" : [ @@ -19319,7 +19535,7 @@ "legacyId" : -366, "id" : "minecraft:waxed_exposed_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 7701 + "blockRuntimeId" : 7699 } ], "shape" : [ @@ -19343,7 +19559,7 @@ "legacyId" : -359, "id" : "minecraft:waxed_exposed_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7703 + "blockRuntimeId" : 7701 } ], "shape" : [ @@ -19369,7 +19585,7 @@ "legacyId" : -447, "id" : "minecraft:waxed_oxidized_cut_copper", "count" : 4, - "blockRuntimeId" : 7714 + "blockRuntimeId" : 7712 } ], "shape" : [ @@ -19394,7 +19610,7 @@ "legacyId" : -449, "id" : "minecraft:waxed_oxidized_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 7715 + "blockRuntimeId" : 7713 } ], "shape" : [ @@ -19418,7 +19634,7 @@ "legacyId" : -448, "id" : "minecraft:waxed_oxidized_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7717 + "blockRuntimeId" : 7715 } ], "shape" : [ @@ -19444,7 +19660,7 @@ "legacyId" : -353, "id" : "minecraft:waxed_weathered_cut_copper", "count" : 4, - "blockRuntimeId" : 7728 + "blockRuntimeId" : 7726 } ], "shape" : [ @@ -19469,7 +19685,7 @@ "legacyId" : -367, "id" : "minecraft:waxed_weathered_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 7729 + "blockRuntimeId" : 7727 } ], "shape" : [ @@ -19493,7 +19709,7 @@ "legacyId" : -360, "id" : "minecraft:waxed_weathered_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7731 + "blockRuntimeId" : 7729 } ], "shape" : [ @@ -19519,7 +19735,7 @@ "legacyId" : -349, "id" : "minecraft:weathered_cut_copper", "count" : 4, - "blockRuntimeId" : 7742 + "blockRuntimeId" : 7740 } ], "shape" : [ @@ -19544,7 +19760,7 @@ "legacyId" : -363, "id" : "minecraft:weathered_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 7743 + "blockRuntimeId" : 7741 } ], "shape" : [ @@ -19568,7 +19784,7 @@ "legacyId" : -356, "id" : "minecraft:weathered_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7745 + "blockRuntimeId" : 7743 } ], "shape" : [ @@ -19614,7 +19830,7 @@ }, "output" : [ { - "legacyId" : 615, + "legacyId" : 616, "id" : "minecraft:crimson_door", "count" : 3 } @@ -19847,7 +20063,7 @@ }, "output" : [ { - "legacyId" : 613, + "legacyId" : 614, "id" : "minecraft:crimson_sign", "count" : 3 } @@ -20202,7 +20418,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7097 + "blockRuntimeId" : 7094 } ], "shape" : [ @@ -20228,7 +20444,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7113 + "blockRuntimeId" : 7110 } ], "shape" : [ @@ -20257,7 +20473,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7113 + "blockRuntimeId" : 7110 } ], "shape" : [ @@ -20287,7 +20503,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7129 + "blockRuntimeId" : 7126 } ], "shape" : [ @@ -20425,7 +20641,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5802 + "blockRuntimeId" : 5805 } ], "shape" : [ @@ -20449,7 +20665,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5802 + "blockRuntimeId" : 5805 } ], "shape" : [ @@ -20473,7 +20689,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5802 + "blockRuntimeId" : 5805 } ], "shape" : [ @@ -20497,7 +20713,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5802 + "blockRuntimeId" : 5805 } ], "shape" : [ @@ -20547,7 +20763,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7812 + "blockRuntimeId" : 7810 } ], "shape" : [ @@ -20572,7 +20788,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7818 + "blockRuntimeId" : 7816 } ], "shape" : [ @@ -20597,7 +20813,7 @@ "legacyId" : 158, "id" : "minecraft:wooden_slab", "count" : 6, - "blockRuntimeId" : 7908 + "blockRuntimeId" : 7906 } ], "shape" : [ @@ -20624,7 +20840,7 @@ { "legacyId" : 168, "id" : "minecraft:prismarine", - "blockRuntimeId" : 6439 + "blockRuntimeId" : 6442 } ], "shape" : [ @@ -20653,7 +20869,7 @@ { "legacyId" : 168, "id" : "minecraft:prismarine", - "blockRuntimeId" : 6439 + "blockRuntimeId" : 6442 } ], "shape" : [ @@ -21277,7 +21493,7 @@ "legacyId" : 1, "id" : "minecraft:stone", "count" : 2, - "blockRuntimeId" : 7183 + "blockRuntimeId" : 7180 } ], "shape" : [ @@ -21704,7 +21920,7 @@ }, "output" : [ { - "legacyId" : 631, + "legacyId" : 637, "id" : "minecraft:end_crystal" } ], @@ -22066,7 +22282,7 @@ { "legacyId" : 61, "id" : "minecraft:furnace", - "blockRuntimeId" : 4876 + "blockRuntimeId" : 4877 } ], "shape" : [ @@ -22091,7 +22307,7 @@ { "legacyId" : 61, "id" : "minecraft:furnace", - "blockRuntimeId" : 4876 + "blockRuntimeId" : 4877 } ], "shape" : [ @@ -22116,7 +22332,7 @@ { "legacyId" : 61, "id" : "minecraft:furnace", - "blockRuntimeId" : 4876 + "blockRuntimeId" : 4877 } ], "shape" : [ @@ -22166,7 +22382,7 @@ "legacyId" : 102, "id" : "minecraft:glass_pane", "count" : 16, - "blockRuntimeId" : 4884 + "blockRuntimeId" : 4885 } ], "shape" : [ @@ -22193,7 +22409,7 @@ ], "output" : [ { - "legacyId" : 622, + "legacyId" : 623, "id" : "minecraft:glow_frame" } ], @@ -22214,7 +22430,7 @@ { "legacyId" : 89, "id" : "minecraft:glowstone", - "blockRuntimeId" : 4974 + "blockRuntimeId" : 4975 } ], "shape" : [ @@ -22238,7 +22454,7 @@ { "legacyId" : 41, "id" : "minecraft:gold_block", - "blockRuntimeId" : 4975 + "blockRuntimeId" : 4976 } ], "shape" : [ @@ -22583,7 +22799,7 @@ "legacyId" : 27, "id" : "minecraft:golden_rail", "count" : 6, - "blockRuntimeId" : 4977 + "blockRuntimeId" : 4978 } ], "shape" : [ @@ -22671,7 +22887,7 @@ { "legacyId" : 1, "id" : "minecraft:stone", - "blockRuntimeId" : 7181 + "blockRuntimeId" : 7178 } ], "block" : "crafting_table", @@ -22692,7 +22908,7 @@ "legacyId" : -169, "id" : "minecraft:granite_stairs", "count" : 4, - "blockRuntimeId" : 4989 + "blockRuntimeId" : 4990 } ], "shape" : [ @@ -22776,7 +22992,7 @@ { "legacyId" : -420, "id" : "minecraft:gray_candle", - "blockRuntimeId" : 5000 + "blockRuntimeId" : 5001 } ], "block" : "crafting_table", @@ -23002,7 +23218,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7095 + "blockRuntimeId" : 7092 } ], "shape" : [ @@ -23028,7 +23244,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7111 + "blockRuntimeId" : 7108 } ], "shape" : [ @@ -23057,7 +23273,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7111 + "blockRuntimeId" : 7108 } ], "shape" : [ @@ -23087,7 +23303,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7127 + "blockRuntimeId" : 7124 } ], "shape" : [ @@ -23146,7 +23362,7 @@ { "legacyId" : -426, "id" : "minecraft:green_candle", - "blockRuntimeId" : 5016 + "blockRuntimeId" : 5017 } ], "block" : "crafting_table", @@ -23280,7 +23496,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7101 + "blockRuntimeId" : 7098 } ], "shape" : [ @@ -23306,7 +23522,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7117 + "blockRuntimeId" : 7114 } ], "shape" : [ @@ -23335,7 +23551,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7117 + "blockRuntimeId" : 7114 } ], "shape" : [ @@ -23365,7 +23581,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7133 + "blockRuntimeId" : 7130 } ], "shape" : [ @@ -23400,7 +23616,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5033 } ], "shape" : [ @@ -23434,7 +23650,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5033 } ], "shape" : [ @@ -23468,7 +23684,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5033 } ], "shape" : [ @@ -23502,7 +23718,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5033 } ], "shape" : [ @@ -23536,7 +23752,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5033 } ], "shape" : [ @@ -23570,7 +23786,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5033 } ], "shape" : [ @@ -23604,7 +23820,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5033 } ], "shape" : [ @@ -23638,7 +23854,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5033 } ], "shape" : [ @@ -23672,7 +23888,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5033 } ], "shape" : [ @@ -23696,7 +23912,7 @@ { "legacyId" : 170, "id" : "minecraft:hay_block", - "blockRuntimeId" : 5084 + "blockRuntimeId" : 5085 } ], "shape" : [ @@ -23721,7 +23937,7 @@ { "legacyId" : 148, "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5096 + "blockRuntimeId" : 5097 } ], "shape" : [ @@ -23735,7 +23951,7 @@ "type" : 1, "input" : { "A" : { - "legacyId" : 591, + "legacyId" : 592, "id" : "minecraft:honey_bottle", "damage" : 32767 } @@ -23744,7 +23960,7 @@ { "legacyId" : -220, "id" : "minecraft:honey_block", - "blockRuntimeId" : 5112 + "blockRuntimeId" : 5113 }, { "legacyId" : 427, @@ -23791,7 +24007,7 @@ ], "output" : [ { - "legacyId" : 591, + "legacyId" : 592, "id" : "minecraft:honey_bottle", "count" : 4 } @@ -23804,7 +24020,7 @@ "type" : 1, "input" : { "A" : { - "legacyId" : 591, + "legacyId" : 592, "id" : "minecraft:honey_bottle", "damage" : 32767 } @@ -23831,7 +24047,7 @@ "type" : 1, "input" : { "A" : { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -23840,7 +24056,7 @@ { "legacyId" : -221, "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5113 + "blockRuntimeId" : 5114 } ], "shape" : [ @@ -23997,7 +24213,7 @@ "legacyId" : 101, "id" : "minecraft:iron_bars", "count" : 16, - "blockRuntimeId" : 5133 + "blockRuntimeId" : 5134 } ], "shape" : [ @@ -24021,7 +24237,7 @@ { "legacyId" : 42, "id" : "minecraft:iron_block", - "blockRuntimeId" : 5134 + "blockRuntimeId" : 5135 } ], "shape" : [ @@ -24351,7 +24567,7 @@ { "legacyId" : 167, "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5168 + "blockRuntimeId" : 5169 } ], "shape" : [ @@ -24409,7 +24625,7 @@ { "legacyId" : 84, "id" : "minecraft:jukebox", - "blockRuntimeId" : 5208 + "blockRuntimeId" : 5209 } ], "shape" : [ @@ -24439,7 +24655,7 @@ { "legacyId" : 84, "id" : "minecraft:jukebox", - "blockRuntimeId" : 5208 + "blockRuntimeId" : 5209 } ], "shape" : [ @@ -24552,7 +24768,7 @@ { "legacyId" : 185, "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5253 + "blockRuntimeId" : 5254 } ], "shape" : [ @@ -24577,7 +24793,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5803 } ], "shape" : [ @@ -24601,7 +24817,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5803 } ], "shape" : [ @@ -24625,7 +24841,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5803 } ], "shape" : [ @@ -24649,7 +24865,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5803 } ], "shape" : [ @@ -24673,7 +24889,7 @@ "legacyId" : 136, "id" : "minecraft:jungle_stairs", "count" : 4, - "blockRuntimeId" : 5285 + "blockRuntimeId" : 5286 } ], "shape" : [ @@ -24699,7 +24915,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7810 + "blockRuntimeId" : 7808 } ], "shape" : [ @@ -24724,7 +24940,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7816 + "blockRuntimeId" : 7814 } ], "shape" : [ @@ -24749,7 +24965,7 @@ "legacyId" : 158, "id" : "minecraft:wooden_slab", "count" : 6, - "blockRuntimeId" : 7906 + "blockRuntimeId" : 7904 } ], "shape" : [ @@ -24773,7 +24989,7 @@ "legacyId" : 65, "id" : "minecraft:ladder", "count" : 3, - "blockRuntimeId" : 5357 + "blockRuntimeId" : 5358 } ], "shape" : [ @@ -24803,7 +25019,7 @@ { "legacyId" : -208, "id" : "minecraft:lantern", - "blockRuntimeId" : 5363 + "blockRuntimeId" : 5364 } ], "shape" : [ @@ -24827,7 +25043,7 @@ { "legacyId" : 22, "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5365 + "blockRuntimeId" : 5366 } ], "shape" : [ @@ -25051,7 +25267,7 @@ { "legacyId" : -194, "id" : "minecraft:lectern", - "blockRuntimeId" : 5434 + "blockRuntimeId" : 5435 } ], "shape" : [ @@ -25081,7 +25297,7 @@ { "legacyId" : -194, "id" : "minecraft:lectern", - "blockRuntimeId" : 5434 + "blockRuntimeId" : 5435 } ], "shape" : [ @@ -25111,7 +25327,7 @@ { "legacyId" : -194, "id" : "minecraft:lectern", - "blockRuntimeId" : 5434 + "blockRuntimeId" : 5435 } ], "shape" : [ @@ -25141,7 +25357,7 @@ { "legacyId" : 69, "id" : "minecraft:lever", - "blockRuntimeId" : 5442 + "blockRuntimeId" : 5443 } ], "shape" : [ @@ -25199,7 +25415,7 @@ { "legacyId" : -416, "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5474 + "blockRuntimeId" : 5475 } ], "block" : "crafting_table", @@ -25444,7 +25660,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7091 + "blockRuntimeId" : 7088 } ], "shape" : [ @@ -25470,7 +25686,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7107 + "blockRuntimeId" : 7104 } ], "shape" : [ @@ -25499,7 +25715,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7107 + "blockRuntimeId" : 7104 } ], "shape" : [ @@ -25529,7 +25745,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7123 + "blockRuntimeId" : 7120 } ], "shape" : [ @@ -25617,7 +25833,7 @@ { "legacyId" : -421, "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5490 + "blockRuntimeId" : 5491 } ], "block" : "crafting_table", @@ -25933,7 +26149,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7096 + "blockRuntimeId" : 7093 } ], "shape" : [ @@ -25959,7 +26175,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7112 + "blockRuntimeId" : 7109 } ], "shape" : [ @@ -25988,7 +26204,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7112 + "blockRuntimeId" : 7109 } ], "shape" : [ @@ -26018,7 +26234,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7128 + "blockRuntimeId" : 7125 } ], "shape" : [ @@ -26043,7 +26259,7 @@ { "legacyId" : 147, "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5500 + "blockRuntimeId" : 5501 } ], "shape" : [ @@ -26066,7 +26282,7 @@ { "legacyId" : -312, "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5516 + "blockRuntimeId" : 5517 } ], "shape" : [ @@ -26154,7 +26370,7 @@ { "legacyId" : -418, "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5522 + "blockRuntimeId" : 5523 } ], "block" : "crafting_table", @@ -26305,7 +26521,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7093 + "blockRuntimeId" : 7090 } ], "shape" : [ @@ -26331,7 +26547,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7109 + "blockRuntimeId" : 7106 } ], "shape" : [ @@ -26360,7 +26576,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7109 + "blockRuntimeId" : 7106 } ], "shape" : [ @@ -26390,7 +26606,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7125 + "blockRuntimeId" : 7122 } ], "shape" : [ @@ -26420,7 +26636,7 @@ { "legacyId" : 91, "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5551 + "blockRuntimeId" : 5552 } ], "shape" : [ @@ -26470,7 +26686,7 @@ "damage" : 3 }, "B" : { - "legacyId" : 602, + "legacyId" : 603, "id" : "minecraft:netherite_ingot", "damage" : 32767 } @@ -26479,7 +26695,7 @@ { "legacyId" : -222, "id" : "minecraft:lodestone", - "blockRuntimeId" : 5563 + "blockRuntimeId" : 5564 } ], "shape" : [ @@ -26509,7 +26725,7 @@ { "legacyId" : -204, "id" : "minecraft:loom", - "blockRuntimeId" : 5582 + "blockRuntimeId" : 5583 } ], "shape" : [ @@ -26538,7 +26754,7 @@ { "legacyId" : -204, "id" : "minecraft:loom", - "blockRuntimeId" : 5582 + "blockRuntimeId" : 5583 } ], "shape" : [ @@ -26596,7 +26812,7 @@ { "legacyId" : -415, "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5586 + "blockRuntimeId" : 5587 } ], "block" : "crafting_table", @@ -26970,7 +27186,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7090 + "blockRuntimeId" : 7087 } ], "shape" : [ @@ -26996,7 +27212,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7106 + "blockRuntimeId" : 7103 } ], "shape" : [ @@ -27025,7 +27241,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7106 + "blockRuntimeId" : 7103 } ], "shape" : [ @@ -27055,7 +27271,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7122 + "blockRuntimeId" : 7119 } ], "shape" : [ @@ -27080,7 +27296,7 @@ { "legacyId" : 213, "id" : "minecraft:magma", - "blockRuntimeId" : 5602 + "blockRuntimeId" : 5603 } ], "shape" : [ @@ -27152,7 +27368,7 @@ { "legacyId" : 103, "id" : "minecraft:melon_block", - "blockRuntimeId" : 5609 + "blockRuntimeId" : 5610 } ], "shape" : [ @@ -27223,7 +27439,7 @@ "legacyId" : -335, "id" : "minecraft:moss_carpet", "count" : 3, - "blockRuntimeId" : 5666 + "blockRuntimeId" : 5667 } ], "shape" : [ @@ -27251,7 +27467,7 @@ { "legacyId" : 48, "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5667 + "blockRuntimeId" : 5668 } ], "block" : "crafting_table", @@ -27276,7 +27492,7 @@ { "legacyId" : 48, "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5667 + "blockRuntimeId" : 5668 } ], "block" : "crafting_table", @@ -27297,7 +27513,7 @@ "legacyId" : -179, "id" : "minecraft:mossy_cobblestone_stairs", "count" : 4, - "blockRuntimeId" : 5668 + "blockRuntimeId" : 5669 } ], "shape" : [ @@ -27348,7 +27564,7 @@ "legacyId" : -175, "id" : "minecraft:mossy_stone_brick_stairs", "count" : 4, - "blockRuntimeId" : 5676 + "blockRuntimeId" : 5677 } ], "shape" : [ @@ -27402,7 +27618,7 @@ { "legacyId" : 98, "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7290 + "blockRuntimeId" : 7287 } ], "block" : "crafting_table", @@ -27426,7 +27642,7 @@ { "legacyId" : 98, "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7290 + "blockRuntimeId" : 7287 } ], "block" : "crafting_table", @@ -27475,7 +27691,7 @@ { "legacyId" : 112, "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5688 + "blockRuntimeId" : 5689 } ], "shape" : [ @@ -27505,7 +27721,7 @@ "legacyId" : 113, "id" : "minecraft:nether_brick_fence", "count" : 6, - "blockRuntimeId" : 5689 + "blockRuntimeId" : 5690 } ], "shape" : [ @@ -27530,7 +27746,7 @@ "legacyId" : 114, "id" : "minecraft:nether_brick_stairs", "count" : 4, - "blockRuntimeId" : 5690 + "blockRuntimeId" : 5691 } ], "shape" : [ @@ -27580,7 +27796,7 @@ { "legacyId" : 214, "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5704 + "blockRuntimeId" : 5705 } ], "shape" : [ @@ -27596,7 +27812,7 @@ "type" : 1, "input" : { "A" : { - "legacyId" : 602, + "legacyId" : 603, "id" : "minecraft:netherite_ingot", "damage" : 32767 } @@ -27605,7 +27821,7 @@ { "legacyId" : -270, "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5705 + "blockRuntimeId" : 5706 } ], "shape" : [ @@ -27621,22 +27837,22 @@ "type" : 0, "input" : [ { - "legacyId" : 612, + "legacyId" : 613, "id" : "minecraft:netherite_scrap", "damage" : 32767 }, { - "legacyId" : 612, + "legacyId" : 613, "id" : "minecraft:netherite_scrap", "damage" : 32767 }, { - "legacyId" : 612, + "legacyId" : 613, "id" : "minecraft:netherite_scrap", "damage" : 32767 }, { - "legacyId" : 612, + "legacyId" : 613, "id" : "minecraft:netherite_scrap", "damage" : 32767 }, @@ -27663,7 +27879,7 @@ ], "output" : [ { - "legacyId" : 602, + "legacyId" : 603, "id" : "minecraft:netherite_ingot" } ], @@ -27682,7 +27898,7 @@ }, "output" : [ { - "legacyId" : 602, + "legacyId" : 603, "id" : "minecraft:netherite_ingot", "count" : 9 } @@ -27712,7 +27928,7 @@ { "legacyId" : 25, "id" : "minecraft:noteblock", - "blockRuntimeId" : 5716 + "blockRuntimeId" : 5717 } ], "shape" : [ @@ -27742,7 +27958,7 @@ { "legacyId" : 25, "id" : "minecraft:noteblock", - "blockRuntimeId" : 5716 + "blockRuntimeId" : 5717 } ], "shape" : [ @@ -27767,7 +27983,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5797 + "blockRuntimeId" : 5800 } ], "shape" : [ @@ -27791,7 +28007,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5797 + "blockRuntimeId" : 5800 } ], "shape" : [ @@ -27815,7 +28031,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5797 + "blockRuntimeId" : 5800 } ], "shape" : [ @@ -27838,7 +28054,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5797 + "blockRuntimeId" : 5800 } ], "shape" : [ @@ -27861,7 +28077,7 @@ "legacyId" : 53, "id" : "minecraft:oak_stairs", "count" : 4, - "blockRuntimeId" : 5717 + "blockRuntimeId" : 5718 } ], "shape" : [ @@ -27886,7 +28102,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7807 + "blockRuntimeId" : 7805 } ], "shape" : [ @@ -27911,7 +28127,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7813 + "blockRuntimeId" : 7811 } ], "shape" : [ @@ -27935,7 +28151,7 @@ "legacyId" : 158, "id" : "minecraft:wooden_slab", "count" : 6, - "blockRuntimeId" : 7903 + "blockRuntimeId" : 7901 } ], "shape" : [ @@ -27968,7 +28184,7 @@ { "legacyId" : 251, "id" : "minecraft:observer", - "blockRuntimeId" : 5725 + "blockRuntimeId" : 5726 } ], "shape" : [ @@ -28027,7 +28243,7 @@ { "legacyId" : -414, "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5738 + "blockRuntimeId" : 5740 } ], "block" : "crafting_table", @@ -28203,7 +28419,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7089 + "blockRuntimeId" : 7086 } ], "shape" : [ @@ -28229,7 +28445,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7105 + "blockRuntimeId" : 7102 } ], "shape" : [ @@ -28258,7 +28474,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7105 + "blockRuntimeId" : 7102 } ], "shape" : [ @@ -28288,7 +28504,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7121 + "blockRuntimeId" : 7118 } ], "shape" : [ @@ -28313,7 +28529,7 @@ { "legacyId" : 174, "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5768 + "blockRuntimeId" : 5770 } ], "shape" : [ @@ -28361,7 +28577,7 @@ "legacyId" : 155, "id" : "minecraft:quartz_block", "count" : 2, - "blockRuntimeId" : 6547 + "blockRuntimeId" : 6550 } ], "shape" : [ @@ -28419,7 +28635,7 @@ { "legacyId" : -419, "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5769 + "blockRuntimeId" : 5772 } ], "block" : "crafting_table", @@ -28638,7 +28854,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7094 + "blockRuntimeId" : 7091 } ], "shape" : [ @@ -28664,7 +28880,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7110 + "blockRuntimeId" : 7107 } ], "shape" : [ @@ -28693,7 +28909,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7110 + "blockRuntimeId" : 7107 } ], "shape" : [ @@ -28723,7 +28939,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7126 + "blockRuntimeId" : 7123 } ], "shape" : [ @@ -28763,7 +28979,7 @@ { "legacyId" : 33, "id" : "minecraft:piston", - "blockRuntimeId" : 5786 + "blockRuntimeId" : 5789 } ], "shape" : [ @@ -28803,7 +29019,7 @@ { "legacyId" : 33, "id" : "minecraft:piston", - "blockRuntimeId" : 5786 + "blockRuntimeId" : 5789 } ], "shape" : [ @@ -28829,7 +29045,7 @@ "legacyId" : 1, "id" : "minecraft:stone", "count" : 4, - "blockRuntimeId" : 7186 + "blockRuntimeId" : 7183 } ], "shape" : [ @@ -28854,7 +29070,7 @@ "legacyId" : -174, "id" : "minecraft:polished_andesite_stairs", "count" : 4, - "blockRuntimeId" : 5814 + "blockRuntimeId" : 5817 } ], "shape" : [ @@ -28880,7 +29096,7 @@ "legacyId" : -235, "id" : "minecraft:polished_basalt", "count" : 4, - "blockRuntimeId" : 5822 + "blockRuntimeId" : 5825 } ], "shape" : [ @@ -28905,7 +29121,7 @@ "legacyId" : -291, "id" : "minecraft:polished_blackstone", "count" : 4, - "blockRuntimeId" : 5825 + "blockRuntimeId" : 5828 } ], "shape" : [ @@ -28930,7 +29146,7 @@ "legacyId" : -284, "id" : "minecraft:polished_blackstone_brick_slab", "count" : 6, - "blockRuntimeId" : 5828 + "blockRuntimeId" : 5831 } ], "shape" : [ @@ -28954,7 +29170,7 @@ "legacyId" : -275, "id" : "minecraft:polished_blackstone_brick_stairs", "count" : 4, - "blockRuntimeId" : 5830 + "blockRuntimeId" : 5833 } ], "shape" : [ @@ -28980,7 +29196,7 @@ "legacyId" : -278, "id" : "minecraft:polished_blackstone_brick_wall", "count" : 6, - "blockRuntimeId" : 5838 + "blockRuntimeId" : 5841 } ], "shape" : [ @@ -29005,7 +29221,7 @@ "legacyId" : -274, "id" : "minecraft:polished_blackstone_bricks", "count" : 4, - "blockRuntimeId" : 6000 + "blockRuntimeId" : 6003 } ], "shape" : [ @@ -29029,7 +29245,7 @@ { "legacyId" : -296, "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 6001 + "blockRuntimeId" : 6004 } ], "shape" : [ @@ -29052,7 +29268,7 @@ { "legacyId" : -295, "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 6015 + "blockRuntimeId" : 6018 } ], "shape" : [ @@ -29076,7 +29292,7 @@ "legacyId" : -293, "id" : "minecraft:polished_blackstone_slab", "count" : 6, - "blockRuntimeId" : 6031 + "blockRuntimeId" : 6034 } ], "shape" : [ @@ -29100,7 +29316,7 @@ "legacyId" : -292, "id" : "minecraft:polished_blackstone_stairs", "count" : 4, - "blockRuntimeId" : 6033 + "blockRuntimeId" : 6036 } ], "shape" : [ @@ -29126,7 +29342,7 @@ "legacyId" : -297, "id" : "minecraft:polished_blackstone_wall", "count" : 6, - "blockRuntimeId" : 6041 + "blockRuntimeId" : 6044 } ], "shape" : [ @@ -29151,7 +29367,7 @@ "legacyId" : -383, "id" : "minecraft:polished_deepslate", "count" : 4, - "blockRuntimeId" : 6203 + "blockRuntimeId" : 6206 } ], "shape" : [ @@ -29176,7 +29392,7 @@ "legacyId" : -384, "id" : "minecraft:polished_deepslate_slab", "count" : 6, - "blockRuntimeId" : 6206 + "blockRuntimeId" : 6209 } ], "shape" : [ @@ -29200,7 +29416,7 @@ "legacyId" : -385, "id" : "minecraft:polished_deepslate_stairs", "count" : 4, - "blockRuntimeId" : 6208 + "blockRuntimeId" : 6211 } ], "shape" : [ @@ -29226,7 +29442,7 @@ "legacyId" : -386, "id" : "minecraft:polished_deepslate_wall", "count" : 6, - "blockRuntimeId" : 6216 + "blockRuntimeId" : 6219 } ], "shape" : [ @@ -29251,7 +29467,7 @@ "legacyId" : 1, "id" : "minecraft:stone", "count" : 4, - "blockRuntimeId" : 7184 + "blockRuntimeId" : 7181 } ], "shape" : [ @@ -29276,7 +29492,7 @@ "legacyId" : -173, "id" : "minecraft:polished_diorite_stairs", "count" : 4, - "blockRuntimeId" : 6378 + "blockRuntimeId" : 6381 } ], "shape" : [ @@ -29302,7 +29518,7 @@ "legacyId" : 1, "id" : "minecraft:stone", "count" : 4, - "blockRuntimeId" : 7182 + "blockRuntimeId" : 7179 } ], "shape" : [ @@ -29327,7 +29543,7 @@ "legacyId" : -172, "id" : "minecraft:polished_granite_stairs", "count" : 4, - "blockRuntimeId" : 6386 + "blockRuntimeId" : 6389 } ], "shape" : [ @@ -29352,7 +29568,7 @@ { "legacyId" : 168, "id" : "minecraft:prismarine", - "blockRuntimeId" : 6438 + "blockRuntimeId" : 6441 } ], "shape" : [ @@ -29376,7 +29592,7 @@ { "legacyId" : 168, "id" : "minecraft:prismarine", - "blockRuntimeId" : 6440 + "blockRuntimeId" : 6443 } ], "shape" : [ @@ -29401,7 +29617,7 @@ "legacyId" : -2, "id" : "minecraft:prismarine_stairs", "count" : 4, - "blockRuntimeId" : 6449 + "blockRuntimeId" : 6452 } ], "shape" : [ @@ -29427,7 +29643,7 @@ "legacyId" : -4, "id" : "minecraft:prismarine_bricks_stairs", "count" : 4, - "blockRuntimeId" : 6441 + "blockRuntimeId" : 6444 } ], "shape" : [ @@ -29588,7 +29804,7 @@ { "legacyId" : -423, "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6509 + "blockRuntimeId" : 6512 } ], "block" : "crafting_table", @@ -29768,7 +29984,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7098 + "blockRuntimeId" : 7095 } ], "shape" : [ @@ -29794,7 +30010,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7114 + "blockRuntimeId" : 7111 } ], "shape" : [ @@ -29823,7 +30039,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7114 + "blockRuntimeId" : 7111 } ], "shape" : [ @@ -29853,7 +30069,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7130 + "blockRuntimeId" : 7127 } ], "shape" : [ @@ -29879,7 +30095,7 @@ "legacyId" : 201, "id" : "minecraft:purpur_block", "count" : 4, - "blockRuntimeId" : 6525 + "blockRuntimeId" : 6528 } ], "shape" : [ @@ -29904,7 +30120,7 @@ "legacyId" : 203, "id" : "minecraft:purpur_stairs", "count" : 4, - "blockRuntimeId" : 6537 + "blockRuntimeId" : 6540 } ], "shape" : [ @@ -29929,7 +30145,7 @@ { "legacyId" : 155, "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6545 + "blockRuntimeId" : 6548 } ], "shape" : [ @@ -29952,7 +30168,7 @@ { "legacyId" : -304, "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6557 + "blockRuntimeId" : 6560 } ], "shape" : [ @@ -29976,7 +30192,7 @@ "legacyId" : 156, "id" : "minecraft:quartz_stairs", "count" : 4, - "blockRuntimeId" : 6559 + "blockRuntimeId" : 6562 } ], "shape" : [ @@ -30085,7 +30301,7 @@ "legacyId" : 66, "id" : "minecraft:rail", "count" : 16, - "blockRuntimeId" : 6567 + "blockRuntimeId" : 6570 } ], "shape" : [ @@ -30133,7 +30349,7 @@ { "legacyId" : -452, "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6577 + "blockRuntimeId" : 6580 } ], "shape" : [ @@ -30181,7 +30397,7 @@ { "legacyId" : -453, "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6578 + "blockRuntimeId" : 6581 } ], "shape" : [ @@ -30229,7 +30445,7 @@ { "legacyId" : -451, "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6579 + "blockRuntimeId" : 6582 } ], "shape" : [ @@ -30288,7 +30504,7 @@ { "legacyId" : -427, "id" : "minecraft:red_candle", - "blockRuntimeId" : 6580 + "blockRuntimeId" : 6583 } ], "block" : "crafting_table", @@ -30498,7 +30714,7 @@ { "legacyId" : 215, "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6624 + "blockRuntimeId" : 6627 } ], "shape" : [ @@ -30523,7 +30739,7 @@ "legacyId" : -184, "id" : "minecraft:red_nether_brick_stairs", "count" : 4, - "blockRuntimeId" : 6625 + "blockRuntimeId" : 6628 } ], "shape" : [ @@ -30573,7 +30789,7 @@ { "legacyId" : 179, "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6633 + "blockRuntimeId" : 6636 } ], "shape" : [ @@ -30597,7 +30813,7 @@ "legacyId" : 180, "id" : "minecraft:red_sandstone_stairs", "count" : 4, - "blockRuntimeId" : 6637 + "blockRuntimeId" : 6640 } ], "shape" : [ @@ -30651,7 +30867,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7102 + "blockRuntimeId" : 7099 } ], "shape" : [ @@ -30677,7 +30893,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7118 + "blockRuntimeId" : 7115 } ], "shape" : [ @@ -30706,7 +30922,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7118 + "blockRuntimeId" : 7115 } ], "shape" : [ @@ -30736,7 +30952,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7134 + "blockRuntimeId" : 7131 } ], "shape" : [ @@ -30784,7 +31000,7 @@ { "legacyId" : 152, "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6645 + "blockRuntimeId" : 6648 } ], "shape" : [ @@ -30814,7 +31030,7 @@ { "legacyId" : 123, "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6646 + "blockRuntimeId" : 6649 } ], "shape" : [ @@ -30844,7 +31060,7 @@ { "legacyId" : 76, "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6648 + "blockRuntimeId" : 6651 } ], "shape" : [ @@ -30905,7 +31121,7 @@ { "legacyId" : -272, "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6699 + "blockRuntimeId" : 6702 } ], "shape" : [ @@ -30929,7 +31145,7 @@ { "legacyId" : 24, "id" : "minecraft:sandstone", - "blockRuntimeId" : 6706 + "blockRuntimeId" : 6709 } ], "shape" : [ @@ -30953,7 +31169,7 @@ "legacyId" : 128, "id" : "minecraft:sandstone_stairs", "count" : 4, - "blockRuntimeId" : 6710 + "blockRuntimeId" : 6713 } ], "shape" : [ @@ -31008,7 +31224,7 @@ "legacyId" : -165, "id" : "minecraft:scaffolding", "count" : 6, - "blockRuntimeId" : 6730 + "blockRuntimeId" : 6733 } ], "shape" : [ @@ -31038,7 +31254,7 @@ { "legacyId" : 169, "id" : "minecraft:sealantern", - "blockRuntimeId" : 6828 + "blockRuntimeId" : 6831 } ], "shape" : [ @@ -31178,7 +31394,7 @@ { "legacyId" : 205, "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7462 + "blockRuntimeId" : 7459 } ], "shape" : [ @@ -31382,7 +31598,7 @@ { "legacyId" : 165, "id" : "minecraft:slime", - "blockRuntimeId" : 6864 + "blockRuntimeId" : 6861 } ], "shape" : [ @@ -31435,7 +31651,7 @@ { "legacyId" : -202, "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6879 + "blockRuntimeId" : 6876 } ], "shape" : [ @@ -31465,7 +31681,7 @@ { "legacyId" : -202, "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6879 + "blockRuntimeId" : 6876 } ], "shape" : [ @@ -31495,7 +31711,7 @@ { "legacyId" : -202, "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6879 + "blockRuntimeId" : 6876 } ], "shape" : [ @@ -31525,7 +31741,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 } ], "shape" : [ @@ -31555,7 +31771,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 } ], "shape" : [ @@ -31585,7 +31801,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 } ], "shape" : [ @@ -31615,7 +31831,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 } ], "shape" : [ @@ -31645,7 +31861,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 } ], "shape" : [ @@ -31675,7 +31891,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 } ], "shape" : [ @@ -31705,7 +31921,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 } ], "shape" : [ @@ -31735,7 +31951,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 } ], "shape" : [ @@ -31765,7 +31981,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 } ], "shape" : [ @@ -31795,7 +32011,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 } ], "shape" : [ @@ -31825,7 +32041,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 } ], "shape" : [ @@ -31855,7 +32071,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6880 + "blockRuntimeId" : 6877 } ], "shape" : [ @@ -31881,7 +32097,7 @@ "legacyId" : -185, "id" : "minecraft:smooth_quartz_stairs", "count" : 4, - "blockRuntimeId" : 6887 + "blockRuntimeId" : 6884 } ], "shape" : [ @@ -31906,7 +32122,7 @@ "legacyId" : 179, "id" : "minecraft:red_sandstone", "count" : 4, - "blockRuntimeId" : 6635 + "blockRuntimeId" : 6638 } ], "shape" : [ @@ -31931,7 +32147,7 @@ "legacyId" : -176, "id" : "minecraft:smooth_red_sandstone_stairs", "count" : 4, - "blockRuntimeId" : 6895 + "blockRuntimeId" : 6892 } ], "shape" : [ @@ -31956,7 +32172,7 @@ "legacyId" : 24, "id" : "minecraft:sandstone", "count" : 4, - "blockRuntimeId" : 6708 + "blockRuntimeId" : 6711 } ], "shape" : [ @@ -31981,7 +32197,7 @@ "legacyId" : -177, "id" : "minecraft:smooth_sandstone_stairs", "count" : 4, - "blockRuntimeId" : 6903 + "blockRuntimeId" : 6900 } ], "shape" : [ @@ -32006,7 +32222,7 @@ { "legacyId" : 80, "id" : "minecraft:snow", - "blockRuntimeId" : 6912 + "blockRuntimeId" : 6909 } ], "shape" : [ @@ -32031,7 +32247,7 @@ "legacyId" : 78, "id" : "minecraft:snow_layer", "count" : 6, - "blockRuntimeId" : 6913 + "blockRuntimeId" : 6910 } ], "shape" : [ @@ -32062,7 +32278,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32096,7 +32312,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32130,7 +32346,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32164,7 +32380,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32198,7 +32414,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32232,7 +32448,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32266,7 +32482,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32300,7 +32516,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32334,7 +32550,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32368,7 +32584,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32402,7 +32618,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32436,7 +32652,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32470,7 +32686,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32504,7 +32720,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32538,7 +32754,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32572,7 +32788,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32606,7 +32822,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32640,7 +32856,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32674,7 +32890,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32708,7 +32924,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32742,7 +32958,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32776,7 +32992,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32810,7 +33026,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32844,7 +33060,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32878,7 +33094,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32912,7 +33128,7 @@ }, "output" : [ { - "legacyId" : 621, + "legacyId" : 622, "id" : "minecraft:soul_campfire" } ], @@ -32943,7 +33159,7 @@ { "legacyId" : -269, "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6953 + "blockRuntimeId" : 6950 } ], "shape" : [ @@ -32978,7 +33194,7 @@ "legacyId" : -268, "id" : "minecraft:soul_torch", "count" : 4, - "blockRuntimeId" : 6957 + "blockRuntimeId" : 6954 } ], "shape" : [ @@ -33013,7 +33229,7 @@ "legacyId" : -268, "id" : "minecraft:soul_torch", "count" : 4, - "blockRuntimeId" : 6957 + "blockRuntimeId" : 6954 } ], "shape" : [ @@ -33155,7 +33371,7 @@ { "legacyId" : 183, "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 7010 + "blockRuntimeId" : 7007 } ], "shape" : [ @@ -33180,7 +33396,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5798 + "blockRuntimeId" : 5801 } ], "shape" : [ @@ -33204,7 +33420,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5798 + "blockRuntimeId" : 5801 } ], "shape" : [ @@ -33228,7 +33444,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5798 + "blockRuntimeId" : 5801 } ], "shape" : [ @@ -33252,7 +33468,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5798 + "blockRuntimeId" : 5801 } ], "shape" : [ @@ -33276,7 +33492,7 @@ "legacyId" : 134, "id" : "minecraft:spruce_stairs", "count" : 4, - "blockRuntimeId" : 7042 + "blockRuntimeId" : 7039 } ], "shape" : [ @@ -33302,7 +33518,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7808 + "blockRuntimeId" : 7806 } ], "shape" : [ @@ -33327,7 +33543,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7814 + "blockRuntimeId" : 7812 } ], "shape" : [ @@ -33352,7 +33568,7 @@ "legacyId" : 158, "id" : "minecraft:wooden_slab", "count" : 6, - "blockRuntimeId" : 7904 + "blockRuntimeId" : 7902 } ], "shape" : [ @@ -33366,7 +33582,7 @@ "type" : 1, "input" : { "A" : { - "legacyId" : 624, + "legacyId" : 625, "id" : "minecraft:amethyst_shard", "damage" : 32767 }, @@ -33378,7 +33594,7 @@ }, "output" : [ { - "legacyId" : 625, + "legacyId" : 626, "id" : "minecraft:spyglass" } ], @@ -33457,7 +33673,7 @@ { "legacyId" : 29, "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7169 + "blockRuntimeId" : 7166 } ], "shape" : [ @@ -33568,7 +33784,7 @@ "legacyId" : 109, "id" : "minecraft:stone_brick_stairs", "count" : 4, - "blockRuntimeId" : 7187 + "blockRuntimeId" : 7184 } ], "shape" : [ @@ -33616,7 +33832,7 @@ { "legacyId" : 77, "id" : "minecraft:stone_button", - "blockRuntimeId" : 7195 + "blockRuntimeId" : 7192 } ], "shape" : [ @@ -33812,7 +34028,7 @@ { "legacyId" : 70, "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7207 + "blockRuntimeId" : 7204 } ], "shape" : [ @@ -33922,7 +34138,7 @@ "legacyId" : -180, "id" : "minecraft:normal_stone_stairs", "count" : 4, - "blockRuntimeId" : 5708 + "blockRuntimeId" : 5709 } ], "shape" : [ @@ -34034,7 +34250,7 @@ "legacyId" : 98, "id" : "minecraft:stonebrick", "count" : 4, - "blockRuntimeId" : 7289 + "blockRuntimeId" : 7286 } ], "shape" : [ @@ -34063,7 +34279,7 @@ { "legacyId" : -197, "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7295 + "blockRuntimeId" : 7292 } ], "shape" : [ @@ -34087,7 +34303,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "shape" : [ @@ -34112,7 +34328,7 @@ "legacyId" : -300, "id" : "minecraft:stripped_crimson_hyphae", "count" : 3, - "blockRuntimeId" : 7307 + "blockRuntimeId" : 7304 } ], "shape" : [ @@ -34137,7 +34353,7 @@ "legacyId" : -301, "id" : "minecraft:stripped_warped_hyphae", "count" : 3, - "blockRuntimeId" : 7325 + "blockRuntimeId" : 7322 } ], "shape" : [ @@ -34196,7 +34412,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew", "damage" : 7 } @@ -34231,7 +34447,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew", "damage" : 3 } @@ -34266,7 +34482,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew", "damage" : 6 } @@ -34301,7 +34517,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew", "damage" : 1 } @@ -34336,7 +34552,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew", "damage" : 5 } @@ -34371,7 +34587,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew", "damage" : 4 } @@ -34406,7 +34622,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew", "damage" : 8 } @@ -34440,7 +34656,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew" } ], @@ -34474,7 +34690,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew", "damage" : 2 } @@ -34509,7 +34725,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew", "damage" : 2 } @@ -34544,7 +34760,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew", "damage" : 2 } @@ -34579,7 +34795,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew", "damage" : 2 } @@ -34614,7 +34830,7 @@ ], "output" : [ { - "legacyId" : 589, + "legacyId" : 590, "id" : "minecraft:suspicious_stew", "damage" : 9 } @@ -34641,7 +34857,7 @@ { "legacyId" : -239, "id" : "minecraft:target", - "blockRuntimeId" : 7351 + "blockRuntimeId" : 7348 } ], "shape" : [ @@ -34657,7 +34873,7 @@ "type" : 1, "input" : { "A" : { - "legacyId" : 624, + "legacyId" : 625, "id" : "minecraft:amethyst_shard", "damage" : 32767 }, @@ -34672,7 +34888,7 @@ "legacyId" : -334, "id" : "minecraft:tinted_glass", "count" : 2, - "blockRuntimeId" : 7352 + "blockRuntimeId" : 7349 } ], "shape" : [ @@ -34702,7 +34918,7 @@ { "legacyId" : 46, "id" : "minecraft:tnt", - "blockRuntimeId" : 7353 + "blockRuntimeId" : 7350 } ], "shape" : [ @@ -34759,7 +34975,7 @@ { "legacyId" : 146, "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7379 + "blockRuntimeId" : 7376 } ], "block" : "crafting_table", @@ -34789,7 +35005,7 @@ { "legacyId" : 131, "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7401 + "blockRuntimeId" : 7398 } ], "shape" : [ @@ -34824,7 +35040,7 @@ { "legacyId" : 131, "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7401 + "blockRuntimeId" : 7398 } ], "shape" : [ @@ -34872,7 +35088,7 @@ { "legacyId" : -261, "id" : "minecraft:warped_button", - "blockRuntimeId" : 7530 + "blockRuntimeId" : 7528 } ], "shape" : [ @@ -34893,7 +35109,7 @@ }, "output" : [ { - "legacyId" : 616, + "legacyId" : 617, "id" : "minecraft:warped_door", "count" : 3 } @@ -34926,7 +35142,7 @@ "legacyId" : -257, "id" : "minecraft:warped_fence", "count" : 3, - "blockRuntimeId" : 7576 + "blockRuntimeId" : 7574 } ], "shape" : [ @@ -34955,7 +35171,7 @@ { "legacyId" : -259, "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7577 + "blockRuntimeId" : 7575 } ], "shape" : [ @@ -34982,7 +35198,7 @@ }, "output" : [ { - "legacyId" : 617, + "legacyId" : 618, "id" : "minecraft:warped_fungus_on_a_stick" } ], @@ -35008,7 +35224,7 @@ "legacyId" : -298, "id" : "minecraft:warped_hyphae", "count" : 3, - "blockRuntimeId" : 7594 + "blockRuntimeId" : 7592 } ], "shape" : [ @@ -35033,7 +35249,7 @@ "legacyId" : -243, "id" : "minecraft:warped_planks", "count" : 4, - "blockRuntimeId" : 7598 + "blockRuntimeId" : 7596 } ], "shape" : [ @@ -35057,7 +35273,7 @@ "legacyId" : -243, "id" : "minecraft:warped_planks", "count" : 4, - "blockRuntimeId" : 7598 + "blockRuntimeId" : 7596 } ], "shape" : [ @@ -35081,7 +35297,7 @@ "legacyId" : -243, "id" : "minecraft:warped_planks", "count" : 4, - "blockRuntimeId" : 7598 + "blockRuntimeId" : 7596 } ], "shape" : [ @@ -35105,7 +35321,7 @@ "legacyId" : -243, "id" : "minecraft:warped_planks", "count" : 4, - "blockRuntimeId" : 7598 + "blockRuntimeId" : 7596 } ], "shape" : [ @@ -35128,7 +35344,7 @@ { "legacyId" : -263, "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7599 + "blockRuntimeId" : 7597 } ], "shape" : [ @@ -35154,7 +35370,7 @@ }, "output" : [ { - "legacyId" : 614, + "legacyId" : 615, "id" : "minecraft:warped_sign", "count" : 3 } @@ -35182,7 +35398,7 @@ "legacyId" : -265, "id" : "minecraft:warped_slab", "count" : 6, - "blockRuntimeId" : 7616 + "blockRuntimeId" : 7614 } ], "shape" : [ @@ -35206,7 +35422,7 @@ "legacyId" : -255, "id" : "minecraft:warped_stairs", "count" : 4, - "blockRuntimeId" : 7618 + "blockRuntimeId" : 7616 } ], "shape" : [ @@ -35232,7 +35448,7 @@ "legacyId" : -247, "id" : "minecraft:warped_trapdoor", "count" : 2, - "blockRuntimeId" : 7645 + "blockRuntimeId" : 7643 } ], "shape" : [ @@ -35252,7 +35468,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35261,7 +35477,7 @@ { "legacyId" : -344, "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7685 + "blockRuntimeId" : 7683 } ], "block" : "crafting_table", @@ -35277,7 +35493,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35286,7 +35502,7 @@ { "legacyId" : -351, "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7686 + "blockRuntimeId" : 7684 } ], "block" : "crafting_table", @@ -35302,7 +35518,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35311,7 +35527,7 @@ { "legacyId" : -365, "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7687 + "blockRuntimeId" : 7685 } ], "block" : "crafting_table", @@ -35327,7 +35543,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35336,7 +35552,7 @@ { "legacyId" : -358, "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7689 + "blockRuntimeId" : 7687 } ], "block" : "crafting_table", @@ -35352,7 +35568,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35361,7 +35577,7 @@ { "legacyId" : -345, "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7699 + "blockRuntimeId" : 7697 } ], "block" : "crafting_table", @@ -35377,7 +35593,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35386,7 +35602,7 @@ { "legacyId" : -352, "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7700 + "blockRuntimeId" : 7698 } ], "block" : "crafting_table", @@ -35402,7 +35618,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35411,7 +35627,7 @@ { "legacyId" : -366, "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7701 + "blockRuntimeId" : 7699 } ], "block" : "crafting_table", @@ -35427,7 +35643,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35436,7 +35652,7 @@ { "legacyId" : -359, "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7703 + "blockRuntimeId" : 7701 } ], "block" : "crafting_table", @@ -35452,7 +35668,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35461,7 +35677,7 @@ { "legacyId" : -446, "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7713 + "blockRuntimeId" : 7711 } ], "block" : "crafting_table", @@ -35477,7 +35693,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35486,7 +35702,7 @@ { "legacyId" : -447, "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7714 + "blockRuntimeId" : 7712 } ], "block" : "crafting_table", @@ -35502,7 +35718,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35511,7 +35727,7 @@ { "legacyId" : -449, "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7715 + "blockRuntimeId" : 7713 } ], "block" : "crafting_table", @@ -35527,7 +35743,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35536,7 +35752,7 @@ { "legacyId" : -448, "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7717 + "blockRuntimeId" : 7715 } ], "block" : "crafting_table", @@ -35552,7 +35768,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35561,7 +35777,7 @@ { "legacyId" : -346, "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7727 + "blockRuntimeId" : 7725 } ], "block" : "crafting_table", @@ -35577,7 +35793,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35586,7 +35802,7 @@ { "legacyId" : -353, "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7728 + "blockRuntimeId" : 7726 } ], "block" : "crafting_table", @@ -35602,7 +35818,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35611,7 +35827,7 @@ { "legacyId" : -367, "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7729 + "blockRuntimeId" : 7727 } ], "block" : "crafting_table", @@ -35627,7 +35843,7 @@ "damage" : 32767 }, { - "legacyId" : 590, + "legacyId" : 591, "id" : "minecraft:honeycomb", "damage" : 32767 } @@ -35636,7 +35852,7 @@ { "legacyId" : -360, "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7731 + "blockRuntimeId" : 7729 } ], "block" : "crafting_table", @@ -35712,7 +35928,7 @@ { "legacyId" : -413, "id" : "minecraft:white_candle", - "blockRuntimeId" : 7790 + "blockRuntimeId" : 7788 } ], "block" : "crafting_table", @@ -35736,7 +35952,7 @@ { "legacyId" : -413, "id" : "minecraft:white_candle", - "blockRuntimeId" : 7790 + "blockRuntimeId" : 7788 } ], "block" : "crafting_table", @@ -35933,7 +36149,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7088 + "blockRuntimeId" : 7085 } ], "shape" : [ @@ -35963,7 +36179,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7088 + "blockRuntimeId" : 7085 } ], "shape" : [ @@ -35988,7 +36204,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7104 + "blockRuntimeId" : 7101 } ], "shape" : [ @@ -36017,7 +36233,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7104 + "blockRuntimeId" : 7101 } ], "shape" : [ @@ -36047,7 +36263,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7120 + "blockRuntimeId" : 7117 } ], "shape" : [ @@ -36077,7 +36293,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7120 + "blockRuntimeId" : 7117 } ], "shape" : [ @@ -36478,7 +36694,7 @@ { "legacyId" : -417, "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7931 + "blockRuntimeId" : 7929 } ], "block" : "crafting_table", @@ -36649,7 +36865,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7092 + "blockRuntimeId" : 7089 } ], "shape" : [ @@ -36675,7 +36891,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7108 + "blockRuntimeId" : 7105 } ], "shape" : [ @@ -36704,7 +36920,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7108 + "blockRuntimeId" : 7105 } ], "shape" : [ @@ -36734,7 +36950,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7124 + "blockRuntimeId" : 7121 } ], "shape" : [ @@ -36759,7 +36975,7 @@ "legacyId" : 53, "id" : "minecraft:oak_stairs", "count" : 4, - "blockRuntimeId" : 5717 + "blockRuntimeId" : 5718 } ], "shape" : [ @@ -37955,7 +38171,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -37980,7 +38196,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38005,7 +38221,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38030,7 +38246,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38055,7 +38271,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38079,7 +38295,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38104,7 +38320,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38129,7 +38345,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38154,7 +38370,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38179,7 +38395,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38204,7 +38420,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38229,7 +38445,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38254,7 +38470,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38279,7 +38495,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38304,7 +38520,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -38329,7 +38545,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38354,7 +38570,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38379,7 +38595,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38404,7 +38620,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38429,7 +38645,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38453,7 +38669,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38478,7 +38694,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38503,7 +38719,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38528,7 +38744,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38553,7 +38769,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38578,7 +38794,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38603,7 +38819,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38628,7 +38844,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38653,7 +38869,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38678,7 +38894,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -38703,7 +38919,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -38728,7 +38944,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -38753,7 +38969,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -38778,7 +38994,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -38803,7 +39019,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -38827,7 +39043,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -38852,7 +39068,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -38877,7 +39093,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -38902,7 +39118,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -38927,7 +39143,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -38952,7 +39168,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -38977,7 +39193,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -39002,7 +39218,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -39027,7 +39243,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -39052,7 +39268,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -39077,7 +39293,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39102,7 +39318,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39127,7 +39343,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39152,7 +39368,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39177,7 +39393,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39201,7 +39417,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39226,7 +39442,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39251,7 +39467,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39276,7 +39492,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39301,7 +39517,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39326,7 +39542,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39351,7 +39567,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39376,7 +39592,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39401,7 +39617,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39426,7 +39642,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -39451,7 +39667,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39476,7 +39692,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39501,7 +39717,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39526,7 +39742,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39551,7 +39767,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39575,7 +39791,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39600,7 +39816,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39625,7 +39841,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39650,7 +39866,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39675,7 +39891,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39700,7 +39916,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39725,7 +39941,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39750,7 +39966,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39775,7 +39991,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39800,7 +40016,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -39825,7 +40041,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -39850,7 +40066,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -39875,7 +40091,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -39900,7 +40116,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -39925,7 +40141,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -39949,7 +40165,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -39974,7 +40190,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -39999,7 +40215,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -40024,7 +40240,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -40049,7 +40265,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -40074,7 +40290,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -40099,7 +40315,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -40124,7 +40340,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -40149,7 +40365,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -40174,7 +40390,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -40199,7 +40415,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40224,7 +40440,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40249,7 +40465,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40274,7 +40490,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40299,7 +40515,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40324,7 +40540,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40349,7 +40565,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40374,7 +40590,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40399,7 +40615,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40424,7 +40640,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40449,7 +40665,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40474,7 +40690,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40499,7 +40715,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40524,7 +40740,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40549,7 +40765,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -40574,7 +40790,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40599,7 +40815,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40624,7 +40840,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40649,7 +40865,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40674,7 +40890,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40698,7 +40914,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40723,7 +40939,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40748,7 +40964,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40773,7 +40989,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40798,7 +41014,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40823,7 +41039,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40848,7 +41064,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40873,7 +41089,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40898,7 +41114,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40923,7 +41139,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -40948,7 +41164,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -40973,7 +41189,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -40998,7 +41214,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41023,7 +41239,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41048,7 +41264,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41073,7 +41289,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41097,7 +41313,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41122,7 +41338,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41147,7 +41363,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41172,7 +41388,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41197,7 +41413,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41222,7 +41438,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41247,7 +41463,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41272,7 +41488,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41297,7 +41513,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -41322,7 +41538,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41347,7 +41563,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41372,7 +41588,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41397,7 +41613,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41422,7 +41638,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41447,7 +41663,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41471,7 +41687,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41496,7 +41712,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41521,7 +41737,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41546,7 +41762,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41571,7 +41787,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41596,7 +41812,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41621,7 +41837,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41646,7 +41862,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41671,7 +41887,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -41696,7 +41912,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -41721,7 +41937,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -41746,7 +41962,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -41771,7 +41987,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -41796,7 +42012,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -41821,7 +42037,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -41846,7 +42062,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -41871,7 +42087,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -41896,7 +42112,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -41921,7 +42137,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -41946,7 +42162,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -41971,7 +42187,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -41996,7 +42212,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -42021,7 +42237,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -42046,7 +42262,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -42071,7 +42287,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42096,7 +42312,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42121,7 +42337,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42146,7 +42362,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42171,7 +42387,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42196,7 +42412,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42220,7 +42436,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42245,7 +42461,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42270,7 +42486,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42295,7 +42511,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42320,7 +42536,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42345,7 +42561,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42370,7 +42586,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42395,7 +42611,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42420,7 +42636,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -42445,7 +42661,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42470,7 +42686,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42495,7 +42711,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42520,7 +42736,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42545,7 +42761,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42570,7 +42786,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42594,7 +42810,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42619,7 +42835,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42644,7 +42860,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42669,7 +42885,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42694,7 +42910,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42719,7 +42935,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42744,7 +42960,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42769,7 +42985,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42794,7 +43010,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -42819,7 +43035,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -42844,7 +43060,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -42869,7 +43085,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -42894,7 +43110,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -42919,7 +43135,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -42944,7 +43160,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -42968,7 +43184,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -42993,7 +43209,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -43018,7 +43234,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -43043,7 +43259,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -43068,7 +43284,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -43093,7 +43309,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -43118,7 +43334,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -43143,7 +43359,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -43168,7 +43384,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -43193,7 +43409,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43218,7 +43434,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43243,7 +43459,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43268,7 +43484,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43293,7 +43509,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43318,7 +43534,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43342,7 +43558,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43367,7 +43583,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43392,7 +43608,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43417,7 +43633,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43442,7 +43658,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43467,7 +43683,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43492,7 +43708,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43517,7 +43733,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43542,7 +43758,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -43567,7 +43783,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43592,7 +43808,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43617,7 +43833,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43642,7 +43858,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43667,7 +43883,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43692,7 +43908,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43716,7 +43932,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43741,7 +43957,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43766,7 +43982,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43791,7 +44007,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43816,7 +44032,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43841,7 +44057,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43866,7 +44082,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43891,7 +44107,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43916,7 +44132,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -43941,7 +44157,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -43966,7 +44182,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -43991,7 +44207,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44016,7 +44232,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44041,7 +44257,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44066,7 +44282,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44090,7 +44306,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44115,7 +44331,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44140,7 +44356,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44165,7 +44381,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44190,7 +44406,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44215,7 +44431,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44240,7 +44456,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44265,7 +44481,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44290,7 +44506,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -44315,7 +44531,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44340,7 +44556,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44365,7 +44581,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44390,7 +44606,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44415,7 +44631,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44440,7 +44656,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44464,7 +44680,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44489,7 +44705,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44514,7 +44730,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44539,7 +44755,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44564,7 +44780,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44589,7 +44805,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44614,7 +44830,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44639,7 +44855,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44664,7 +44880,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -44689,7 +44905,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -44714,7 +44930,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -44739,7 +44955,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -44764,7 +44980,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -44789,7 +45005,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -44814,7 +45030,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -44838,7 +45054,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -44863,7 +45079,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -44888,7 +45104,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -44913,7 +45129,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -44938,7 +45154,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -44963,7 +45179,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -44988,7 +45204,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -45013,7 +45229,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -45038,7 +45254,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -45063,7 +45279,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45088,7 +45304,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45113,7 +45329,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45138,7 +45354,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45163,7 +45379,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45188,7 +45404,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45212,7 +45428,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45237,7 +45453,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45262,7 +45478,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45287,7 +45503,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45312,7 +45528,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45337,7 +45553,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45362,7 +45578,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45387,7 +45603,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45412,7 +45628,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45436,7 +45652,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -45460,7 +45676,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 6838 } ], "block" : "crafting_table", @@ -45484,7 +45700,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 6837 } ], "block" : "crafting_table", @@ -45508,7 +45724,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 6836 } ], "block" : "crafting_table", @@ -45532,7 +45748,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 6835 } ], "block" : "crafting_table", @@ -45556,7 +45772,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 6834 } ], "block" : "crafting_table", @@ -45580,7 +45796,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -45604,7 +45820,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 6848 } ], "block" : "crafting_table", @@ -45628,7 +45844,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -45652,7 +45868,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -45676,7 +45892,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 6833 } ], "block" : "crafting_table", @@ -45700,7 +45916,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 6847 } ], "block" : "crafting_table", @@ -45724,7 +45940,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 6846 } ], "block" : "crafting_table", @@ -45748,7 +45964,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 6845 } ], "block" : "crafting_table", @@ -45772,7 +45988,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 6844 } ], "block" : "crafting_table", @@ -45796,7 +46012,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 6843 } ], "block" : "crafting_table", @@ -45820,7 +46036,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 6842 } ], "block" : "crafting_table", @@ -45844,7 +46060,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 6841 } ], "block" : "crafting_table", @@ -45868,7 +46084,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 6840 } ], "block" : "crafting_table", @@ -45892,7 +46108,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 6839 } ], "block" : "crafting_table", @@ -45912,7 +46128,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7255 + "blockRuntimeId" : 7252 } ], "shape" : [ @@ -45936,7 +46152,7 @@ "legacyId" : 134, "id" : "minecraft:spruce_stairs", "count" : 4, - "blockRuntimeId" : 7042 + "blockRuntimeId" : 7039 } ], "shape" : [ @@ -45985,7 +46201,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7239 + "blockRuntimeId" : 7236 } ], "shape" : [ @@ -46009,7 +46225,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7243 + "blockRuntimeId" : 7240 } ], "shape" : [ @@ -46033,7 +46249,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7242 + "blockRuntimeId" : 7239 } ], "shape" : [ @@ -46056,7 +46272,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7240 + "blockRuntimeId" : 7237 } ], "shape" : [ @@ -46079,7 +46295,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7244 + "blockRuntimeId" : 7241 } ], "shape" : [ @@ -46102,7 +46318,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7246 + "blockRuntimeId" : 7243 } ], "shape" : [ @@ -46126,7 +46342,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7239 + "blockRuntimeId" : 7236 } ], "shape" : [ @@ -46150,7 +46366,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7245 + "blockRuntimeId" : 7242 } ], "shape" : [ @@ -46174,7 +46390,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7258 + "blockRuntimeId" : 7255 } ], "shape" : [ @@ -46198,7 +46414,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7259 + "blockRuntimeId" : 7256 } ], "shape" : [ @@ -46222,7 +46438,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7261 + "blockRuntimeId" : 7258 } ], "shape" : [ @@ -46246,7 +46462,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7262 + "blockRuntimeId" : 7259 } ], "shape" : [ @@ -46270,7 +46486,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7257 + "blockRuntimeId" : 7254 } ], "shape" : [ @@ -46294,7 +46510,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7260 + "blockRuntimeId" : 7257 } ], "shape" : [ @@ -46318,7 +46534,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7256 + "blockRuntimeId" : 7253 } ], "shape" : [ @@ -46342,7 +46558,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 6, - "blockRuntimeId" : 7275 + "blockRuntimeId" : 7272 } ], "shape" : [ @@ -46366,7 +46582,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 6, - "blockRuntimeId" : 7274 + "blockRuntimeId" : 7271 } ], "shape" : [ @@ -46390,7 +46606,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 6, - "blockRuntimeId" : 7272 + "blockRuntimeId" : 7269 } ], "shape" : [ @@ -46413,7 +46629,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7229 + "blockRuntimeId" : 7226 } ], "shape" : [ @@ -46436,7 +46652,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7241 + "blockRuntimeId" : 7238 } ], "shape" : [ @@ -46460,7 +46676,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7224 + "blockRuntimeId" : 7221 } ], "shape" : [ @@ -47777,7 +47993,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -47802,7 +48018,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -47827,7 +48043,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -47852,7 +48068,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -47877,7 +48093,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -47902,7 +48118,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -47926,7 +48142,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -47951,7 +48167,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -47976,7 +48192,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -48001,7 +48217,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -48026,7 +48242,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -48051,7 +48267,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -48076,7 +48292,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -48101,7 +48317,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -48126,7 +48342,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -48151,7 +48367,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48176,7 +48392,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48201,7 +48417,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48226,7 +48442,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48251,7 +48467,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48276,7 +48492,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48300,7 +48516,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48325,7 +48541,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48350,7 +48566,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48375,7 +48591,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48400,7 +48616,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48425,7 +48641,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48450,7 +48666,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48475,7 +48691,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48500,7 +48716,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 7918 } ], "block" : "crafting_table", @@ -48525,7 +48741,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48550,7 +48766,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48575,7 +48791,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48600,7 +48816,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48625,7 +48841,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48650,7 +48866,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48674,7 +48890,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48699,7 +48915,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48724,7 +48940,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48749,7 +48965,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48774,7 +48990,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48799,7 +49015,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48824,7 +49040,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48849,7 +49065,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48874,7 +49090,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 7917 } ], "block" : "crafting_table", @@ -48899,7 +49115,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -48924,7 +49140,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -48949,7 +49165,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -48974,7 +49190,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -48999,7 +49215,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -49024,7 +49240,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -49048,7 +49264,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -49073,7 +49289,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -49098,7 +49314,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -49123,7 +49339,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -49148,7 +49364,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -49173,7 +49389,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -49198,7 +49414,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -49223,7 +49439,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -49248,7 +49464,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 7916 } ], "block" : "crafting_table", @@ -49273,7 +49489,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49298,7 +49514,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49323,7 +49539,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49348,7 +49564,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49373,7 +49589,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49398,7 +49614,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49422,7 +49638,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49447,7 +49663,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49472,7 +49688,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49497,7 +49713,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49522,7 +49738,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49547,7 +49763,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49572,7 +49788,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49597,7 +49813,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49622,7 +49838,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 7915 } ], "block" : "crafting_table", @@ -49647,7 +49863,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49672,7 +49888,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49697,7 +49913,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49722,7 +49938,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49747,7 +49963,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49772,7 +49988,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49796,7 +50012,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49821,7 +50037,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49846,7 +50062,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49871,7 +50087,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49896,7 +50112,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49921,7 +50137,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49946,7 +50162,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49971,7 +50187,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -49996,7 +50212,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 7914 } ], "block" : "crafting_table", @@ -50021,7 +50237,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50046,7 +50262,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50071,7 +50287,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50096,7 +50312,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50121,7 +50337,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50146,7 +50362,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50171,7 +50387,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50196,7 +50412,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50221,7 +50437,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50246,7 +50462,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50271,7 +50487,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50296,7 +50512,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50321,7 +50537,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50346,7 +50562,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50371,7 +50587,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -50396,7 +50612,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50421,7 +50637,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50446,7 +50662,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50471,7 +50687,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50496,7 +50712,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50521,7 +50737,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50545,7 +50761,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50570,7 +50786,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50595,7 +50811,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50620,7 +50836,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50645,7 +50861,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50670,7 +50886,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50695,7 +50911,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50720,7 +50936,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50745,7 +50961,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7930 + "blockRuntimeId" : 7928 } ], "block" : "crafting_table", @@ -50770,7 +50986,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -50795,7 +51011,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -50820,7 +51036,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -50845,7 +51061,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -50870,7 +51086,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -50895,7 +51111,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -50920,7 +51136,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -50944,7 +51160,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -50969,7 +51185,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -50994,7 +51210,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -51019,7 +51235,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -51044,7 +51260,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -51069,7 +51285,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -51094,7 +51310,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -51119,7 +51335,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -51144,7 +51360,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51169,7 +51385,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51194,7 +51410,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51219,7 +51435,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51244,7 +51460,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51269,7 +51485,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51294,7 +51510,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51318,7 +51534,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51343,7 +51559,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51368,7 +51584,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51393,7 +51609,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51418,7 +51634,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51443,7 +51659,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51468,7 +51684,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51493,7 +51709,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -51518,7 +51734,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51543,7 +51759,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51568,7 +51784,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51593,7 +51809,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51618,7 +51834,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51643,7 +51859,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51668,7 +51884,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51693,7 +51909,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51718,7 +51934,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51743,7 +51959,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51768,7 +51984,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51793,7 +52009,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51818,7 +52034,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51843,7 +52059,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51868,7 +52084,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 7913 } ], "block" : "crafting_table", @@ -51893,7 +52109,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -51918,7 +52134,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -51943,7 +52159,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -51968,7 +52184,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -51993,7 +52209,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -52018,7 +52234,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -52042,7 +52258,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -52067,7 +52283,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -52092,7 +52308,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -52117,7 +52333,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -52142,7 +52358,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -52167,7 +52383,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -52192,7 +52408,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -52217,7 +52433,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -52242,7 +52458,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 7927 } ], "block" : "crafting_table", @@ -52267,7 +52483,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52292,7 +52508,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52317,7 +52533,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52342,7 +52558,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52367,7 +52583,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52392,7 +52608,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52417,7 +52633,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52441,7 +52657,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52466,7 +52682,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52491,7 +52707,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52516,7 +52732,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52541,7 +52757,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52566,7 +52782,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52591,7 +52807,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52616,7 +52832,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 7926 } ], "block" : "crafting_table", @@ -52641,7 +52857,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52666,7 +52882,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52691,7 +52907,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52716,7 +52932,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52741,7 +52957,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52766,7 +52982,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52791,7 +53007,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52815,7 +53031,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52840,7 +53056,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52865,7 +53081,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52890,7 +53106,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52915,7 +53131,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52940,7 +53156,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52965,7 +53181,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -52990,7 +53206,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 7925 } ], "block" : "crafting_table", @@ -53015,7 +53231,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53040,7 +53256,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53065,7 +53281,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53090,7 +53306,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53115,7 +53331,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53140,7 +53356,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53165,7 +53381,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53189,7 +53405,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53214,7 +53430,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53239,7 +53455,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53264,7 +53480,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53289,7 +53505,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53314,7 +53530,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53339,7 +53555,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53364,7 +53580,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 7924 } ], "block" : "crafting_table", @@ -53389,7 +53605,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53414,7 +53630,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53439,7 +53655,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53464,7 +53680,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53489,7 +53705,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53514,7 +53730,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53539,7 +53755,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53563,7 +53779,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53588,7 +53804,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53613,7 +53829,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53638,7 +53854,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53663,7 +53879,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53688,7 +53904,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53713,7 +53929,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53738,7 +53954,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 7923 } ], "block" : "crafting_table", @@ -53763,7 +53979,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -53788,7 +54004,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -53813,7 +54029,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -53838,7 +54054,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -53863,7 +54079,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -53888,7 +54104,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -53913,7 +54129,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -53937,7 +54153,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -53962,7 +54178,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -53987,7 +54203,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -54012,7 +54228,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -54037,7 +54253,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -54062,7 +54278,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -54087,7 +54303,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -54112,7 +54328,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 7922 } ], "block" : "crafting_table", @@ -54137,7 +54353,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54162,7 +54378,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54187,7 +54403,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54212,7 +54428,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54237,7 +54453,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54262,7 +54478,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54287,7 +54503,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54311,7 +54527,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54336,7 +54552,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54361,7 +54577,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54386,7 +54602,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54411,7 +54627,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54436,7 +54652,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54461,7 +54677,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54486,7 +54702,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 7921 } ], "block" : "crafting_table", @@ -54511,7 +54727,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54536,7 +54752,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54561,7 +54777,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54586,7 +54802,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54611,7 +54827,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54636,7 +54852,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54661,7 +54877,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54685,7 +54901,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54710,7 +54926,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54735,7 +54951,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54760,7 +54976,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54785,7 +55001,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54810,7 +55026,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54835,7 +55051,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54860,7 +55076,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 7920 } ], "block" : "crafting_table", @@ -54885,7 +55101,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -54910,7 +55126,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -54935,7 +55151,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -54960,7 +55176,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -54985,7 +55201,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -55010,7 +55226,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -55035,7 +55251,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -55059,7 +55275,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -55084,7 +55300,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -55109,7 +55325,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -55134,7 +55350,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -55159,7 +55375,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -55184,7 +55400,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -55209,7 +55425,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -55234,7 +55450,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 7919 } ], "block" : "crafting_table", @@ -55580,7 +55796,7 @@ "damage" : -1 }, "output" : { - "legacyId" : 612, + "legacyId" : 613, "id" : "minecraft:netherite_scrap", "damage" : 32767 }, @@ -55594,7 +55810,7 @@ "damage" : -1 }, "output" : { - "legacyId" : 612, + "legacyId" : 613, "id" : "minecraft:netherite_scrap", "damage" : 32767 }, @@ -55610,7 +55826,7 @@ "output" : { "legacyId" : -377, "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6886 + "blockRuntimeId" : 6883 }, "block" : "furnace" }, @@ -55869,7 +56085,7 @@ "output" : { "legacyId" : -183, "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6911 + "blockRuntimeId" : 6908 }, "block" : "furnace" }, @@ -55883,7 +56099,7 @@ "output" : { "legacyId" : 1, "id" : "minecraft:stone", - "blockRuntimeId" : 7180 + "blockRuntimeId" : 7177 }, "block" : "furnace" }, @@ -55897,7 +56113,7 @@ "output" : { "legacyId" : 20, "id" : "minecraft:glass", - "blockRuntimeId" : 4883 + "blockRuntimeId" : 4884 }, "block" : "furnace" }, @@ -56044,7 +56260,7 @@ "output" : { "legacyId" : 19, "id" : "minecraft:sponge", - "blockRuntimeId" : 6963 + "blockRuntimeId" : 6960 }, "block" : "furnace" }, @@ -56084,7 +56300,7 @@ "output" : { "legacyId" : 24, "id" : "minecraft:sandstone", - "blockRuntimeId" : 6709 + "blockRuntimeId" : 6712 }, "block" : "furnace" }, @@ -56167,7 +56383,7 @@ "output" : { "legacyId" : 172, "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5083 + "blockRuntimeId" : 5084 }, "block" : "furnace" }, @@ -56194,7 +56410,7 @@ "output" : { "legacyId" : 98, "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7291 + "blockRuntimeId" : 7288 }, "block" : "furnace" }, @@ -56277,7 +56493,7 @@ "output" : { "legacyId" : 155, "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6548 + "blockRuntimeId" : 6551 }, "block" : "furnace" }, @@ -56290,7 +56506,7 @@ "output" : { "legacyId" : 220, "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7800 + "blockRuntimeId" : 7798 }, "block" : "furnace" }, @@ -56304,7 +56520,7 @@ "output" : { "legacyId" : 221, "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5748 + "blockRuntimeId" : 5750 }, "block" : "furnace" }, @@ -56318,7 +56534,7 @@ "output" : { "legacyId" : 222, "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5596 + "blockRuntimeId" : 5597 }, "block" : "furnace" }, @@ -56332,7 +56548,7 @@ "output" : { "legacyId" : 223, "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5484 + "blockRuntimeId" : 5485 }, "block" : "furnace" }, @@ -56346,7 +56562,7 @@ "output" : { "legacyId" : 224, "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7942 + "blockRuntimeId" : 7940 }, "block" : "furnace" }, @@ -56360,7 +56576,7 @@ "output" : { "legacyId" : 225, "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5532 + "blockRuntimeId" : 5533 }, "block" : "furnace" }, @@ -56374,7 +56590,7 @@ "output" : { "legacyId" : 226, "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5779 + "blockRuntimeId" : 5782 }, "block" : "furnace" }, @@ -56388,7 +56604,7 @@ "output" : { "legacyId" : 227, "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 5010 + "blockRuntimeId" : 5011 }, "block" : "furnace" }, @@ -56402,7 +56618,7 @@ "output" : { "legacyId" : 228, "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 6849 }, "block" : "furnace" }, @@ -56430,7 +56646,7 @@ "output" : { "legacyId" : 219, "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6519 + "blockRuntimeId" : 6522 }, "block" : "furnace" }, @@ -56472,7 +56688,7 @@ "output" : { "legacyId" : 233, "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5026 + "blockRuntimeId" : 5027 }, "block" : "furnace" }, @@ -56486,7 +56702,7 @@ "output" : { "legacyId" : 234, "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6601 + "blockRuntimeId" : 6604 }, "block" : "furnace" }, @@ -56539,7 +56755,7 @@ "output" : { "legacyId" : 179, "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6636 + "blockRuntimeId" : 6639 }, "block" : "furnace" }, @@ -57881,78 +58097,6 @@ "outputId" : "minecraft:lingering_potion", "outputMeta" : 31 }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:fermented_spider_eye", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 6 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 6 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 6 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 - }, { "inputId" : "minecraft:potion", "inputMeta" : 4, @@ -58265,6 +58409,30 @@ "outputId" : "minecraft:lingering_potion", "outputMeta" : 24 }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 23 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 21, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 23 + }, { "inputId" : "minecraft:potion", "inputMeta" : 21, @@ -58577,6 +58745,30 @@ "outputId" : "minecraft:lingering_potion", "outputMeta" : 7 }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 6 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 6 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 6 + }, { "inputId" : "minecraft:potion", "inputMeta" : 25, @@ -59177,6 +59369,30 @@ "outputId" : "minecraft:lingering_potion", "outputMeta" : 4 }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 + }, { "inputId" : "minecraft:potion", "inputMeta" : 0, diff --git a/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json index f33cf5ba28f..71e2e0457a0 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json +++ b/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json @@ -1,5402 +1,5452 @@ [ + { + "name" : "minecraft:ochre_froglight", + "id" : -471, + "runtimeId" : 997 + }, + { + "name" : "minecraft:verdant_froglight", + "id" : -470, + "runtimeId" : 1054 + }, + { + "name" : "minecraft:pearlescent_froglight", + "id" : -469, + "runtimeId" : 746 + }, + { + "name" : "minecraft:frog_egg", + "id" : -468, + "runtimeId" : 170 + }, { "name" : "minecraft:mysterious_frame_slot", "id" : -467, - "runtimeId" : 907 + "runtimeId" : 785 }, { "name" : "minecraft:mysterious_frame", "id" : -466, - "runtimeId" : 102 + "runtimeId" : 412 }, { "name" : "minecraft:client_request_placeholder_block", "id" : -465, - "runtimeId" : 240 + "runtimeId" : 742 }, { "name" : "minecraft:sculk_shrieker", "id" : -461, - "runtimeId" : 616 + "runtimeId" : 962 }, { "name" : "minecraft:sculk_catalyst", "id" : -460, - "runtimeId" : 58 + "runtimeId" : 1022 }, { "name" : "minecraft:sculk_vein", "id" : -459, - "runtimeId" : 56 + "runtimeId" : 523 }, { "name" : "minecraft:sculk", "id" : -458, - "runtimeId" : 715 + "runtimeId" : 1021 }, { "name" : "minecraft:infested_deepslate", "id" : -454, - "runtimeId" : 498 + "runtimeId" : 783 }, { "name" : "minecraft:raw_gold_block", "id" : -453, - "runtimeId" : 66 + "runtimeId" : 84 }, { "name" : "minecraft:raw_copper_block", "id" : -452, - "runtimeId" : 67 + "runtimeId" : 217 }, { "name" : "minecraft:raw_iron_block", "id" : -451, - "runtimeId" : 124 + "runtimeId" : 1014 }, { "name" : "minecraft:waxed_oxidized_double_cut_copper_slab", "id" : -450, - "runtimeId" : 598 + "runtimeId" : 1078 }, { "name" : "minecraft:waxed_oxidized_cut_copper_slab", "id" : -449, - "runtimeId" : 781 + "runtimeId" : 530 }, { "name" : "minecraft:waxed_oxidized_cut_copper_stairs", "id" : -448, - "runtimeId" : 424 + "runtimeId" : 1045 }, { "name" : "minecraft:waxed_oxidized_cut_copper", "id" : -447, - "runtimeId" : 10 + "runtimeId" : 1077 }, { "name" : "minecraft:waxed_oxidized_copper", "id" : -446, - "runtimeId" : 876 + "runtimeId" : 1076 }, { "name" : "minecraft:black_candle_cake", "id" : -445, - "runtimeId" : 232 + "runtimeId" : 628 }, { "name" : "minecraft:red_candle_cake", "id" : -444, - "runtimeId" : 863 + "runtimeId" : 344 }, { "name" : "minecraft:green_candle_cake", "id" : -443, - "runtimeId" : 140 + "runtimeId" : 406 }, { "name" : "minecraft:brown_candle_cake", "id" : -442, - "runtimeId" : 488 + "runtimeId" : 875 }, { "name" : "minecraft:blue_candle_cake", "id" : -441, - "runtimeId" : 835 + "runtimeId" : 700 }, { "name" : "minecraft:purple_candle_cake", "id" : -440, - "runtimeId" : 75 + "runtimeId" : 602 }, { "name" : "minecraft:cyan_candle_cake", "id" : -439, - "runtimeId" : 184 + "runtimeId" : 707 }, { "name" : "minecraft:light_gray_candle_cake", "id" : -438, - "runtimeId" : 215 + "runtimeId" : 775 }, { "name" : "minecraft:gray_candle_cake", "id" : -437, - "runtimeId" : 625 + "runtimeId" : 955 }, { "name" : "minecraft:pink_candle_cake", "id" : -436, - "runtimeId" : 1068 + "runtimeId" : 455 }, { "name" : "minecraft:lime_candle_cake", "id" : -435, - "runtimeId" : 116 + "runtimeId" : 979 }, { "name" : "minecraft:yellow_candle_cake", "id" : -434, - "runtimeId" : 0 + "runtimeId" : 1089 }, { "name" : "minecraft:light_blue_candle_cake", "id" : -433, - "runtimeId" : 152 + "runtimeId" : 978 }, { "name" : "minecraft:magenta_candle_cake", "id" : -432, - "runtimeId" : 928 + "runtimeId" : 73 }, { "name" : "minecraft:orange_candle_cake", "id" : -431, - "runtimeId" : 993 + "runtimeId" : 513 }, { "name" : "minecraft:white_candle_cake", "id" : -430, - "runtimeId" : 112 + "runtimeId" : 826 }, { "name" : "minecraft:candle_cake", "id" : -429, - "runtimeId" : 590 + "runtimeId" : 880 }, { "name" : "minecraft:black_candle", "id" : -428, - "runtimeId" : 1043 + "runtimeId" : 726 }, { "name" : "minecraft:red_candle", "id" : -427, - "runtimeId" : 765 + "runtimeId" : 725 }, { "name" : "minecraft:green_candle", "id" : -426, - "runtimeId" : 1041 + "runtimeId" : 724 }, { "name" : "minecraft:brown_candle", "id" : -425, - "runtimeId" : 997 + "runtimeId" : 723 }, { "name" : "minecraft:blue_candle", "id" : -424, - "runtimeId" : 1040 + "runtimeId" : 393 }, { "name" : "minecraft:purple_candle", "id" : -423, - "runtimeId" : 1039 + "runtimeId" : 722 }, { "name" : "minecraft:cyan_candle", "id" : -422, - "runtimeId" : 1037 + "runtimeId" : 717 }, { "name" : "minecraft:light_gray_candle", "id" : -421, - "runtimeId" : 1036 + "runtimeId" : 627 }, { "name" : "minecraft:gray_candle", "id" : -420, - "runtimeId" : 1034 + "runtimeId" : 308 }, { "name" : "minecraft:pink_candle", "id" : -419, - "runtimeId" : 1033 + "runtimeId" : 78 }, { "name" : "minecraft:lime_candle", "id" : -418, - "runtimeId" : 944 + "runtimeId" : 721 }, { "name" : "minecraft:yellow_candle", "id" : -417, - "runtimeId" : 936 + "runtimeId" : 375 }, { "name" : "minecraft:light_blue_candle", "id" : -416, - "runtimeId" : 868 + "runtimeId" : 720 }, { "name" : "minecraft:magenta_candle", "id" : -415, - "runtimeId" : 631 + "runtimeId" : 639 }, { "name" : "minecraft:orange_candle", "id" : -414, - "runtimeId" : 712 + "runtimeId" : 719 }, { "name" : "minecraft:white_candle", "id" : -413, - "runtimeId" : 482 + "runtimeId" : 120 }, { "name" : "minecraft:candle", "id" : -412, - "runtimeId" : 784 + "runtimeId" : 718 }, { "name" : "minecraft:glow_lichen", "id" : -411, - "runtimeId" : 708 + "runtimeId" : 949 }, { "name" : "minecraft:cracked_deepslate_bricks", "id" : -410, - "runtimeId" : 197 + "runtimeId" : 586 }, { "name" : "minecraft:cracked_deepslate_tiles", "id" : -409, - "runtimeId" : 887 + "runtimeId" : 818 }, { "name" : "minecraft:deepslate_copper_ore", "id" : -408, - "runtimeId" : 623 + "runtimeId" : 923 }, { "name" : "minecraft:deepslate_emerald_ore", "id" : -407, - "runtimeId" : 335 + "runtimeId" : 185 }, { "name" : "minecraft:deepslate_coal_ore", "id" : -406, - "runtimeId" : 351 + "runtimeId" : 735 }, { "name" : "minecraft:deepslate_diamond_ore", "id" : -405, - "runtimeId" : 169 + "runtimeId" : 890 }, { "name" : "minecraft:lit_deepslate_redstone_ore", "id" : -404, - "runtimeId" : 111 + "runtimeId" : 175 }, { "name" : "minecraft:deepslate_redstone_ore", "id" : -403, - "runtimeId" : 167 + "runtimeId" : 858 }, { "name" : "minecraft:deepslate_gold_ore", "id" : -402, - "runtimeId" : 168 + "runtimeId" : 882 }, { "name" : "minecraft:deepslate_iron_ore", "id" : -401, - "runtimeId" : 434 + "runtimeId" : 924 }, { "name" : "minecraft:deepslate_lapis_ore", "id" : -400, - "runtimeId" : 355 + "runtimeId" : 559 }, { "name" : "minecraft:deepslate_brick_double_slab", "id" : -399, - "runtimeId" : 190 + "runtimeId" : 536 }, { "name" : "minecraft:deepslate_tile_double_slab", "id" : -398, - "runtimeId" : 370 + "runtimeId" : 925 }, { "name" : "minecraft:polished_deepslate_double_slab", "id" : -397, - "runtimeId" : 259 + "runtimeId" : 622 }, { "name" : "minecraft:cobbled_deepslate_double_slab", "id" : -396, - "runtimeId" : 203 + "runtimeId" : 897 }, { "name" : "minecraft:chiseled_deepslate", "id" : -395, - "runtimeId" : 208 + "runtimeId" : 891 }, { "name" : "minecraft:deepslate_brick_wall", "id" : -394, - "runtimeId" : 171 + "runtimeId" : 348 }, { "name" : "minecraft:deepslate_brick_stairs", "id" : -393, - "runtimeId" : 172 + "runtimeId" : 917 }, { "name" : "minecraft:deepslate_brick_slab", "id" : -392, - "runtimeId" : 934 + "runtimeId" : 649 }, { "name" : "minecraft:deepslate_bricks", "id" : -391, - "runtimeId" : 170 + "runtimeId" : 50 }, { "name" : "minecraft:deepslate_tile_wall", "id" : -390, - "runtimeId" : 834 + "runtimeId" : 107 }, { "name" : "minecraft:deepslate_tile_stairs", "id" : -389, - "runtimeId" : 166 + "runtimeId" : 926 }, { "name" : "minecraft:deepslate_tile_slab", "id" : -388, - "runtimeId" : 1026 + "runtimeId" : 647 }, { "name" : "minecraft:deepslate_tiles", "id" : -387, - "runtimeId" : 509 + "runtimeId" : 927 }, { "name" : "minecraft:polished_deepslate_wall", "id" : -386, - "runtimeId" : 77 + "runtimeId" : 727 }, { "name" : "minecraft:polished_deepslate_stairs", "id" : -385, - "runtimeId" : 78 + "runtimeId" : 246 }, { "name" : "minecraft:polished_deepslate_slab", "id" : -384, - "runtimeId" : 529 + "runtimeId" : 646 }, { "name" : "minecraft:polished_deepslate", "id" : -383, - "runtimeId" : 978 + "runtimeId" : 1009 }, { "name" : "minecraft:cobbled_deepslate_wall", "id" : -382, - "runtimeId" : 379 + "runtimeId" : 652 }, { "name" : "minecraft:cobbled_deepslate_stairs", "id" : -381, - "runtimeId" : 954 + "runtimeId" : 898 }, { "name" : "minecraft:cobbled_deepslate_slab", "id" : -380, - "runtimeId" : 903 + "runtimeId" : 645 }, { "name" : "minecraft:cobbled_deepslate", "id" : -379, - "runtimeId" : 428 + "runtimeId" : 896 }, { "name" : "minecraft:deepslate", "id" : -378, - "runtimeId" : 359 + "runtimeId" : 922 }, { "name" : "minecraft:smooth_basalt", "id" : -377, - "runtimeId" : 757 + "runtimeId" : 832 }, { "name" : "minecraft:cave_vines_head_with_berries", "id" : -376, - "runtimeId" : 464 + "runtimeId" : 644 }, { "name" : "minecraft:cave_vines_body_with_berries", "id" : -375, - "runtimeId" : 913 + "runtimeId" : 886 }, { "name" : "minecraft:waxed_weathered_double_cut_copper_slab", "id" : -374, - "runtimeId" : 8 + "runtimeId" : 656 }, { "name" : "minecraft:waxed_exposed_double_cut_copper_slab", "id" : -373, - "runtimeId" : 11 + "runtimeId" : 1075 }, { "name" : "minecraft:waxed_double_cut_copper_slab", "id" : -372, - "runtimeId" : 14 + "runtimeId" : 1072 }, { "name" : "minecraft:oxidized_double_cut_copper_slab", "id" : -371, - "runtimeId" : 95 + "runtimeId" : 999 }, { "name" : "minecraft:weathered_double_cut_copper_slab", "id" : -370, - "runtimeId" : 5 + "runtimeId" : 991 }, { "name" : "minecraft:exposed_double_cut_copper_slab", "id" : -369, - "runtimeId" : 663 + "runtimeId" : 940 }, { "name" : "minecraft:double_cut_copper_slab", "id" : -368, - "runtimeId" : 560 + "runtimeId" : 497 }, { "name" : "minecraft:waxed_weathered_cut_copper_slab", "id" : -367, - "runtimeId" : 422 + "runtimeId" : 527 }, { "name" : "minecraft:waxed_exposed_cut_copper_slab", "id" : -366, - "runtimeId" : 1053 + "runtimeId" : 525 }, { "name" : "minecraft:waxed_cut_copper_slab", "id" : -365, - "runtimeId" : 375 + "runtimeId" : 522 }, { "name" : "minecraft:oxidized_cut_copper_slab", "id" : -364, - "runtimeId" : 336 + "runtimeId" : 499 }, { "name" : "minecraft:weathered_cut_copper_slab", "id" : -363, - "runtimeId" : 537 + "runtimeId" : 521 }, { "name" : "minecraft:exposed_cut_copper_slab", "id" : -362, - "runtimeId" : 885 + "runtimeId" : 271 }, { "name" : "minecraft:cut_copper_slab", "id" : -361, - "runtimeId" : 345 + "runtimeId" : 232 }, { "name" : "minecraft:waxed_weathered_cut_copper_stairs", "id" : -360, - "runtimeId" : 9 + "runtimeId" : 1081 }, { "name" : "minecraft:waxed_exposed_cut_copper_stairs", "id" : -359, - "runtimeId" : 12 + "runtimeId" : 804 }, { "name" : "minecraft:waxed_cut_copper_stairs", "id" : -358, - "runtimeId" : 15 + "runtimeId" : 1071 }, { "name" : "minecraft:oxidized_cut_copper_stairs", "id" : -357, - "runtimeId" : 733 + "runtimeId" : 152 }, { "name" : "minecraft:weathered_cut_copper_stairs", "id" : -356, - "runtimeId" : 6 + "runtimeId" : 481 }, { "name" : "minecraft:exposed_cut_copper_stairs", "id" : -355, - "runtimeId" : 745 + "runtimeId" : 939 }, { "name" : "minecraft:cut_copper_stairs", "id" : -354, - "runtimeId" : 361 + "runtimeId" : 519 }, { "name" : "minecraft:waxed_weathered_cut_copper", "id" : -353, - "runtimeId" : 782 + "runtimeId" : 1080 }, { "name" : "minecraft:waxed_exposed_cut_copper", "id" : -352, - "runtimeId" : 453 + "runtimeId" : 1074 }, { "name" : "minecraft:waxed_cut_copper", "id" : -351, - "runtimeId" : 16 + "runtimeId" : 1070 }, { "name" : "minecraft:oxidized_cut_copper", "id" : -350, - "runtimeId" : 96 + "runtimeId" : 509 }, { "name" : "minecraft:weathered_cut_copper", "id" : -349, - "runtimeId" : 7 + "runtimeId" : 852 }, { "name" : "minecraft:exposed_cut_copper", "id" : -348, - "runtimeId" : 397 + "runtimeId" : 938 }, { "name" : "minecraft:cut_copper", "id" : -347, - "runtimeId" : 362 + "runtimeId" : 515 }, { "name" : "minecraft:waxed_weathered_copper", "id" : -346, - "runtimeId" : 341 + "runtimeId" : 1079 }, { "name" : "minecraft:waxed_exposed_copper", "id" : -345, - "runtimeId" : 13 + "runtimeId" : 1073 }, { "name" : "minecraft:waxed_copper", "id" : -344, - "runtimeId" : 115 + "runtimeId" : 709 }, { "name" : "minecraft:oxidized_copper", "id" : -343, - "runtimeId" : 850 + "runtimeId" : 998 }, { "name" : "minecraft:weathered_copper", "id" : -342, - "runtimeId" : 981 + "runtimeId" : 1082 }, { "name" : "minecraft:exposed_copper", "id" : -341, - "runtimeId" : 150 + "runtimeId" : 81 }, { "name" : "minecraft:copper_block", "id" : -340, - "runtimeId" : 339 + "runtimeId" : 512 }, { "name" : "minecraft:item.glow_frame", "id" : -339, - "runtimeId" : 674 + "runtimeId" : 948 }, { "name" : "minecraft:flowering_azalea", "id" : -338, - "runtimeId" : 358 + "runtimeId" : 465 }, { "name" : "minecraft:azalea", "id" : -337, - "runtimeId" : 242 + "runtimeId" : 845 }, { "name" : "minecraft:small_dripleaf_block", "id" : -336, - "runtimeId" : 49 + "runtimeId" : 600 }, { "name" : "minecraft:moss_carpet", "id" : -335, - "runtimeId" : 106 + "runtimeId" : 609 }, { "name" : "minecraft:tinted_glass", "id" : -334, - "runtimeId" : 231 + "runtimeId" : 676 }, { "name" : "minecraft:tuff", "id" : -333, - "runtimeId" : 26 + "runtimeId" : 1049 }, { "name" : "minecraft:small_amethyst_bud", "id" : -332, - "runtimeId" : 51 + "runtimeId" : 675 }, { "name" : "minecraft:medium_amethyst_bud", "id" : -331, - "runtimeId" : 108 + "runtimeId" : 385 }, { "name" : "minecraft:large_amethyst_bud", "id" : -330, - "runtimeId" : 433 + "runtimeId" : 678 }, { "name" : "minecraft:amethyst_cluster", "id" : -329, - "runtimeId" : 246 + "runtimeId" : 762 }, { "name" : "minecraft:budding_amethyst", "id" : -328, - "runtimeId" : 219 + "runtimeId" : 878 }, { "name" : "minecraft:amethyst_block", "id" : -327, - "runtimeId" : 247 + "runtimeId" : 844 }, { "name" : "minecraft:calcite", "id" : -326, - "runtimeId" : 730 + "runtimeId" : 422 }, { "name" : "minecraft:azalea_leaves_flowered", "id" : -325, - "runtimeId" : 851 + "runtimeId" : 686 }, { "name" : "minecraft:azalea_leaves", "id" : -324, - "runtimeId" : 1018 + "runtimeId" : 685 }, { "name" : "minecraft:big_dripleaf", "id" : -323, - "runtimeId" : 313 + "runtimeId" : 856 }, { "name" : "minecraft:cave_vines", "id" : -322, - "runtimeId" : 866 + "runtimeId" : 884 }, { "name" : "minecraft:spore_blossom", "id" : -321, - "runtimeId" : 44 + "runtimeId" : 921 }, { "name" : "minecraft:moss_block", "id" : -320, - "runtimeId" : 107 + "runtimeId" : 942 }, { "name" : "minecraft:hanging_roots", "id" : -319, - "runtimeId" : 236 + "runtimeId" : 958 }, { "name" : "minecraft:dirt_with_roots", "id" : -318, - "runtimeId" : 249 + "runtimeId" : 369 }, { "name" : "minecraft:dripstone_block", "id" : -317, - "runtimeId" : 218 + "runtimeId" : 932 }, { "name" : "minecraft:lightning_rod", "id" : -312, - "runtimeId" : 221 + "runtimeId" : 941 }, { "name" : "minecraft:copper_ore", "id" : -311, - "runtimeId" : 199 + "runtimeId" : 900 }, { "name" : "minecraft:pointed_dripstone", "id" : -308, - "runtimeId" : 92 + "runtimeId" : 1002 }, { "name" : "minecraft:sculk_sensor", "id" : -307, - "runtimeId" : 57 + "runtimeId" : 1023 }, { "name" : "minecraft:powder_snow", "id" : -306, - "runtimeId" : 343 + "runtimeId" : 469 }, { "name" : "minecraft:unknown", "id" : -305, - "runtimeId" : 23 + "runtimeId" : 1051 }, { "name" : "minecraft:quartz_bricks", "id" : -304, - "runtimeId" : 445 + "runtimeId" : 42 }, { "name" : "minecraft:cracked_nether_bricks", "id" : -303, - "runtimeId" : 915 + "runtimeId" : 904 }, { "name" : "minecraft:chiseled_nether_bricks", "id" : -302, - "runtimeId" : 207 + "runtimeId" : 444 }, { "name" : "minecraft:stripped_warped_hyphae", "id" : -301, - "runtimeId" : 50 + "runtimeId" : 1040 }, { "name" : "minecraft:stripped_crimson_hyphae", "id" : -300, - "runtimeId" : 386 + "runtimeId" : 1037 }, { "name" : "minecraft:crimson_hyphae", "id" : -299, - "runtimeId" : 411 + "runtimeId" : 909 }, { "name" : "minecraft:warped_hyphae", "id" : -298, - "runtimeId" : 29 + "runtimeId" : 1062 }, { "name" : "minecraft:polished_blackstone_wall", "id" : -297, - "runtimeId" : 79 + "runtimeId" : 794 }, { "name" : "minecraft:polished_blackstone_button", "id" : -296, - "runtimeId" : 83 + "runtimeId" : 680 }, { "name" : "minecraft:polished_blackstone_pressure_plate", "id" : -295, - "runtimeId" : 81 + "runtimeId" : 1007 }, { "name" : "minecraft:polished_blackstone_double_slab", "id" : -294, - "runtimeId" : 82 + "runtimeId" : 681 }, { "name" : "minecraft:polished_blackstone_slab", "id" : -293, - "runtimeId" : 592 + "runtimeId" : 638 }, { "name" : "minecraft:polished_blackstone_stairs", "id" : -292, - "runtimeId" : 280 + "runtimeId" : 1008 }, { "name" : "minecraft:polished_blackstone", "id" : -291, - "runtimeId" : 89 + "runtimeId" : 1003 }, { "name" : "minecraft:item.soul_campfire", "id" : -290, - "runtimeId" : 329 + "runtimeId" : 1027 }, { "name" : "minecraft:crying_obsidian", "id" : -289, - "runtimeId" : 266 + "runtimeId" : 828 }, { "name" : "minecraft:nether_gold_ore", "id" : -288, - "runtimeId" : 243 + "runtimeId" : 990 }, { "name" : "minecraft:twisting_vines", "id" : -287, - "runtimeId" : 25 + "runtimeId" : 478 }, { "name" : "minecraft:item.chain", "id" : -286, - "runtimeId" : 211 + "runtimeId" : 888 }, { "name" : "minecraft:polished_blackstone_brick_double_slab", "id" : -285, - "runtimeId" : 88 + "runtimeId" : 1004 }, { "name" : "minecraft:polished_blackstone_brick_slab", "id" : -284, - "runtimeId" : 573 + "runtimeId" : 9 }, { "name" : "minecraft:blackstone_double_slab", "id" : -283, - "runtimeId" : 726 + "runtimeId" : 684 }, { "name" : "minecraft:blackstone_slab", "id" : -282, - "runtimeId" : 929 + "runtimeId" : 637 }, { "name" : "minecraft:gilded_blackstone", "id" : -281, - "runtimeId" : 778 + "runtimeId" : 944 }, { "name" : "minecraft:cracked_polished_blackstone_bricks", "id" : -280, - "runtimeId" : 196 + "runtimeId" : 905 }, { "name" : "minecraft:chiseled_polished_blackstone", "id" : -279, - "runtimeId" : 293 + "runtimeId" : 861 }, { "name" : "minecraft:polished_blackstone_brick_wall", "id" : -278, - "runtimeId" : 86 + "runtimeId" : 1006 }, { "name" : "minecraft:blackstone_wall", "id" : -277, - "runtimeId" : 940 + "runtimeId" : 868 }, { "name" : "minecraft:blackstone_stairs", "id" : -276, - "runtimeId" : 843 + "runtimeId" : 866 }, { "name" : "minecraft:polished_blackstone_brick_stairs", "id" : -275, - "runtimeId" : 1004 + "runtimeId" : 408 }, { "name" : "minecraft:polished_blackstone_bricks", "id" : -274, - "runtimeId" : 84 + "runtimeId" : 670 }, { "name" : "minecraft:blackstone", "id" : -273, - "runtimeId" : 229 + "runtimeId" : 864 }, { "name" : "minecraft:respawn_anchor", "id" : -272, - "runtimeId" : 267 + "runtimeId" : 827 }, { "name" : "minecraft:ancient_debris", "id" : -271, - "runtimeId" : 268 + "runtimeId" : 60 }, { "name" : "minecraft:netherite_block", "id" : -270, - "runtimeId" : 270 + "runtimeId" : 825 }, { "name" : "minecraft:soul_lantern", "id" : -269, - "runtimeId" : 304 + "runtimeId" : 1028 }, { "name" : "minecraft:soul_torch", "id" : -268, - "runtimeId" : 45 + "runtimeId" : 1029 }, { "name" : "minecraft:warped_double_slab", "id" : -267, - "runtimeId" : 37 + "runtimeId" : 1059 }, { "name" : "minecraft:crimson_double_slab", "id" : -266, - "runtimeId" : 195 + "runtimeId" : 907 }, { "name" : "minecraft:warped_slab", "id" : -265, - "runtimeId" : 385 + "runtimeId" : 491 }, { "name" : "minecraft:crimson_slab", "id" : -264, - "runtimeId" : 816 + "runtimeId" : 716 }, { "name" : "minecraft:warped_pressure_plate", "id" : -263, - "runtimeId" : 269 + "runtimeId" : 1065 }, { "name" : "minecraft:crimson_pressure_plate", "id" : -262, - "runtimeId" : 191 + "runtimeId" : 272 }, { "name" : "minecraft:warped_button", "id" : -261, - "runtimeId" : 181 + "runtimeId" : 816 }, { "name" : "minecraft:crimson_button", "id" : -260, - "runtimeId" : 292 + "runtimeId" : 906 }, { "name" : "minecraft:warped_fence_gate", "id" : -259, - "runtimeId" : 773 + "runtimeId" : 1061 }, { "name" : "minecraft:crimson_fence_gate", "id" : -258, - "runtimeId" : 194 + "runtimeId" : 908 }, { "name" : "minecraft:warped_fence", "id" : -257, - "runtimeId" : 22 + "runtimeId" : 1060 }, { "name" : "minecraft:crimson_fence", "id" : -256, - "runtimeId" : 542 + "runtimeId" : 450 }, { "name" : "minecraft:warped_stairs", "id" : -255, - "runtimeId" : 123 + "runtimeId" : 1066 }, { "name" : "minecraft:crimson_stairs", "id" : -254, - "runtimeId" : 189 + "runtimeId" : 334 }, { "name" : "minecraft:warped_wall_sign", "id" : -253, - "runtimeId" : 48 + "runtimeId" : 1068 }, { "name" : "minecraft:crimson_wall_sign", "id" : -252, - "runtimeId" : 947 + "runtimeId" : 914 }, { "name" : "minecraft:warped_standing_sign", "id" : -251, - "runtimeId" : 18 + "runtimeId" : 1005 }, { "name" : "minecraft:crimson_standing_sign", "id" : -250, - "runtimeId" : 187 + "runtimeId" : 912 }, { "name" : "minecraft:warped_trapdoor", "id" : -247, - "runtimeId" : 210 + "runtimeId" : 477 }, { "name" : "minecraft:crimson_trapdoor", "id" : -246, - "runtimeId" : 746 + "runtimeId" : 159 }, { "name" : "minecraft:item.warped_door", "id" : -245, - "runtimeId" : 139 + "runtimeId" : 1058 }, { "name" : "minecraft:item.crimson_door", "id" : -244, - "runtimeId" : 600 + "runtimeId" : 125 }, { "name" : "minecraft:warped_planks", "id" : -243, - "runtimeId" : 19 + "runtimeId" : 1064 }, { "name" : "minecraft:crimson_planks", "id" : -242, - "runtimeId" : 192 + "runtimeId" : 911 }, { "name" : "minecraft:stripped_warped_stem", "id" : -241, - "runtimeId" : 32 + "runtimeId" : 1041 }, { "name" : "minecraft:stripped_crimson_stem", "id" : -240, - "runtimeId" : 349 + "runtimeId" : 383 }, { "name" : "minecraft:target", "id" : -239, - "runtimeId" : 780 + "runtimeId" : 683 }, { "name" : "minecraft:item.nether_sprouts", "id" : -238, - "runtimeId" : 401 + "runtimeId" : 983 }, { "name" : "minecraft:soul_fire", "id" : -237, - "runtimeId" : 719 + "runtimeId" : 687 }, { "name" : "minecraft:soul_soil", "id" : -236, - "runtimeId" : 319 + "runtimeId" : 693 }, { "name" : "minecraft:polished_basalt", "id" : -235, - "runtimeId" : 90 + "runtimeId" : 947 }, { "name" : "minecraft:basalt", "id" : -234, - "runtimeId" : 455 + "runtimeId" : 850 }, { "name" : "minecraft:warped_nylium", "id" : -233, - "runtimeId" : 20 + "runtimeId" : 1063 }, { "name" : "minecraft:crimson_nylium", "id" : -232, - "runtimeId" : 193 + "runtimeId" : 542 }, { "name" : "minecraft:weeping_vines", "id" : -231, - "runtimeId" : 4 + "runtimeId" : 453 }, { "name" : "minecraft:shroomlight", "id" : -230, - "runtimeId" : 55 + "runtimeId" : 1024 }, { "name" : "minecraft:warped_fungus", "id" : -229, - "runtimeId" : 21 + "runtimeId" : 614 }, { "name" : "minecraft:crimson_fungus", "id" : -228, - "runtimeId" : 499 + "runtimeId" : 487 }, { "name" : "minecraft:warped_wart_block", "id" : -227, - "runtimeId" : 17 + "runtimeId" : 1055 }, { "name" : "minecraft:warped_stem", "id" : -226, - "runtimeId" : 468 + "runtimeId" : 1067 }, { "name" : "minecraft:crimson_stem", "id" : -225, - "runtimeId" : 186 + "runtimeId" : 913 }, { "name" : "minecraft:warped_roots", "id" : -224, - "runtimeId" : 963 + "runtimeId" : 688 }, { "name" : "minecraft:crimson_roots", "id" : -223, - "runtimeId" : 980 + "runtimeId" : 290 }, { "name" : "minecraft:lodestone", "id" : -222, - "runtimeId" : 136 + "runtimeId" : 204 }, { "name" : "minecraft:honeycomb_block", "id" : -221, - "runtimeId" : 134 + "runtimeId" : 410 }, { "name" : "minecraft:honey_block", "id" : -220, - "runtimeId" : 742 + "runtimeId" : 176 }, { "name" : "minecraft:beehive", "id" : -219, - "runtimeId" : 241 + "runtimeId" : 855 }, { "name" : "minecraft:bee_nest", "id" : -218, - "runtimeId" : 380 + "runtimeId" : 854 }, { "name" : "minecraft:stickypistonarmcollision", "id" : -217, - "runtimeId" : 41 + "runtimeId" : 225 }, { "name" : "minecraft:wither_rose", "id" : -216, - "runtimeId" : 3 + "runtimeId" : 1085 }, { "name" : "minecraft:light_block", "id" : -215, - "runtimeId" : 1012 + "runtimeId" : 24 }, { "name" : "minecraft:lit_blast_furnace", "id" : -214, - "runtimeId" : 113 + "runtimeId" : 667 }, { "name" : "minecraft:composter", "id" : -213, - "runtimeId" : 271 + "runtimeId" : 435 }, { "name" : "minecraft:wood", "id" : -212, - "runtimeId" : 871 + "runtimeId" : 642 }, { "name" : "minecraft:jigsaw", "id" : -211, - "runtimeId" : 125 + "runtimeId" : 415 }, { "name" : "minecraft:lava_cauldron", "id" : -210, - "runtimeId" : 118 + "runtimeId" : 931 }, { "name" : "minecraft:item.campfire", "id" : -209, - "runtimeId" : 447 + "runtimeId" : 72 }, { "name" : "minecraft:lantern", "id" : -208, - "runtimeId" : 933 + "runtimeId" : 114 }, { "name" : "minecraft:sweet_berry_bush", "id" : -207, - "runtimeId" : 28 + "runtimeId" : 1044 }, { "name" : "minecraft:bell", "id" : -206, - "runtimeId" : 699 + "runtimeId" : 599 }, { "name" : "minecraft:loom", "id" : -204, - "runtimeId" : 661 + "runtimeId" : 623 }, { "name" : "minecraft:barrel", "id" : -203, - "runtimeId" : 393 + "runtimeId" : 216 }, { "name" : "minecraft:smithing_table", "id" : -202, - "runtimeId" : 477 + "runtimeId" : 167 }, { "name" : "minecraft:fletching_table", "id" : -201, - "runtimeId" : 1027 + "runtimeId" : 711 }, { "name" : "minecraft:cartography_table", "id" : -200, - "runtimeId" : 1024 + "runtimeId" : 636 }, { "name" : "minecraft:lit_smoker", "id" : -199, - "runtimeId" : 110 + "runtimeId" : 981 }, { "name" : "minecraft:smoker", "id" : -198, - "runtimeId" : 704 + "runtimeId" : 96 }, { "name" : "minecraft:stonecutter_block", "id" : -197, - "runtimeId" : 36 + "runtimeId" : 82 }, { "name" : "minecraft:blast_furnace", "id" : -196, - "runtimeId" : 684 + "runtimeId" : 368 }, { "name" : "minecraft:grindstone", "id" : -195, - "runtimeId" : 1023 + "runtimeId" : 708 }, { "name" : "minecraft:lectern", "id" : -194, - "runtimeId" : 890 + "runtimeId" : 975 }, { "name" : "minecraft:darkoak_wall_sign", "id" : -193, - "runtimeId" : 178 + "runtimeId" : 919 }, { "name" : "minecraft:darkoak_standing_sign", "id" : -192, - "runtimeId" : 179 + "runtimeId" : 918 }, { "name" : "minecraft:acacia_wall_sign", "id" : -191, - "runtimeId" : 1051 + "runtimeId" : 841 }, { "name" : "minecraft:acacia_standing_sign", "id" : -190, - "runtimeId" : 252 + "runtimeId" : 839 }, { "name" : "minecraft:jungle_wall_sign", "id" : -189, - "runtimeId" : 300 + "runtimeId" : 969 }, { "name" : "minecraft:jungle_standing_sign", "id" : -188, - "runtimeId" : 562 + "runtimeId" : 967 }, { "name" : "minecraft:birch_wall_sign", "id" : -187, - "runtimeId" : 233 + "runtimeId" : 728 }, { "name" : "minecraft:birch_standing_sign", "id" : -186, - "runtimeId" : 235 + "runtimeId" : 862 }, { "name" : "minecraft:smooth_quartz_stairs", "id" : -185, - "runtimeId" : 87 + "runtimeId" : 20 }, { "name" : "minecraft:red_nether_brick_stairs", "id" : -184, - "runtimeId" : 65 + "runtimeId" : 1016 }, { "name" : "minecraft:smooth_stone", "id" : -183, - "runtimeId" : 714 + "runtimeId" : 118 }, { "name" : "minecraft:spruce_wall_sign", "id" : -182, - "runtimeId" : 120 + "runtimeId" : 476 }, { "name" : "minecraft:spruce_standing_sign", "id" : -181, - "runtimeId" : 174 + "runtimeId" : 703 }, { "name" : "minecraft:normal_stone_stairs", "id" : -180, - "runtimeId" : 418 + "runtimeId" : 994 }, { "name" : "minecraft:mossy_cobblestone_stairs", "id" : -179, - "runtimeId" : 544 + "runtimeId" : 255 }, { "name" : "minecraft:end_brick_stairs", "id" : -178, - "runtimeId" : 157 + "runtimeId" : 937 }, { "name" : "minecraft:smooth_sandstone_stairs", "id" : -177, - "runtimeId" : 47 + "runtimeId" : 1026 }, { "name" : "minecraft:smooth_red_sandstone_stairs", "id" : -176, - "runtimeId" : 80 + "runtimeId" : 641 }, { "name" : "minecraft:mossy_stone_brick_stairs", "id" : -175, - "runtimeId" : 104 + "runtimeId" : 984 }, { "name" : "minecraft:polished_andesite_stairs", "id" : -174, - "runtimeId" : 91 + "runtimeId" : 396 }, { "name" : "minecraft:polished_diorite_stairs", "id" : -173, - "runtimeId" : 76 + "runtimeId" : 596 }, { "name" : "minecraft:polished_granite_stairs", "id" : -172, - "runtimeId" : 1030 + "runtimeId" : 301 }, { "name" : "minecraft:andesite_stairs", "id" : -171, - "runtimeId" : 244 + "runtimeId" : 337 }, { "name" : "minecraft:diorite_stairs", "id" : -170, - "runtimeId" : 163 + "runtimeId" : 791 }, { "name" : "minecraft:granite_stairs", "id" : -169, - "runtimeId" : 245 + "runtimeId" : 139 }, { "name" : "minecraft:real_double_stone_slab4", "id" : -168, - "runtimeId" : 971 + "runtimeId" : 182 }, { "name" : "minecraft:real_double_stone_slab3", "id" : -167, - "runtimeId" : 970 + "runtimeId" : 221 }, { "name" : "minecraft:double_stone_slab4", "id" : -166, - "runtimeId" : 964 + "runtimeId" : 671 }, { "name" : "minecraft:scaffolding", "id" : -165, - "runtimeId" : 353 + "runtimeId" : 705 }, { "name" : "minecraft:bamboo_sapling", "id" : -164, - "runtimeId" : 973 + "runtimeId" : 846 }, { "name" : "minecraft:bamboo", "id" : -163, - "runtimeId" : 1021 + "runtimeId" : 704 }, { "name" : "minecraft:double_stone_slab3", "id" : -162, - "runtimeId" : 961 + "runtimeId" : 424 }, { "name" : "minecraft:barrier", "id" : -161, - "runtimeId" : 948 + "runtimeId" : 848 }, { "name" : "minecraft:bubble_column", "id" : -160, - "runtimeId" : 220 + "runtimeId" : 877 }, { "name" : "minecraft:turtle_egg", "id" : -159, - "runtimeId" : 570 + "runtimeId" : 370 }, { "name" : "minecraft:air", "id" : -158, - "runtimeId" : 806 + "runtimeId" : 6 }, { "name" : "minecraft:conduit", "id" : -157, - "runtimeId" : 1007 + "runtimeId" : 697 }, { "name" : "minecraft:sea_pickle", "id" : -156, - "runtimeId" : 640 + "runtimeId" : 679 }, { "name" : "minecraft:carved_pumpkin", "id" : -155, - "runtimeId" : 1022 + "runtimeId" : 400 }, { "name" : "minecraft:spruce_pressure_plate", "id" : -154, - "runtimeId" : 506 + "runtimeId" : 1032 }, { "name" : "minecraft:jungle_pressure_plate", "id" : -153, - "runtimeId" : 847 + "runtimeId" : 407 }, { "name" : "minecraft:dark_oak_pressure_plate", "id" : -152, - "runtimeId" : 322 + "runtimeId" : 517 }, { "name" : "minecraft:birch_pressure_plate", "id" : -151, - "runtimeId" : 382 + "runtimeId" : 860 }, { "name" : "minecraft:acacia_pressure_plate", "id" : -150, - "runtimeId" : 255 + "runtimeId" : 692 }, { "name" : "minecraft:spruce_trapdoor", "id" : -149, - "runtimeId" : 217 + "runtimeId" : 1033 }, { "name" : "minecraft:jungle_trapdoor", "id" : -148, - "runtimeId" : 962 + "runtimeId" : 528 }, { "name" : "minecraft:dark_oak_trapdoor", "id" : -147, - "runtimeId" : 188 + "runtimeId" : 915 }, { "name" : "minecraft:birch_trapdoor", "id" : -146, - "runtimeId" : 234 + "runtimeId" : 863 }, { "name" : "minecraft:acacia_trapdoor", "id" : -145, - "runtimeId" : 250 + "runtimeId" : 840 }, { "name" : "minecraft:spruce_button", "id" : -144, - "runtimeId" : 688 + "runtimeId" : 341 }, { "name" : "minecraft:jungle_button", "id" : -143, - "runtimeId" : 720 + "runtimeId" : 965 }, { "name" : "minecraft:dark_oak_button", "id" : -142, - "runtimeId" : 202 + "runtimeId" : 787 }, { "name" : "minecraft:birch_button", "id" : -141, - "runtimeId" : 790 + "runtimeId" : 857 }, { "name" : "minecraft:acacia_button", "id" : -140, - "runtimeId" : 344 + "runtimeId" : 834 }, { "name" : "minecraft:dried_kelp_block", "id" : -139, - "runtimeId" : 483 + "runtimeId" : 867 }, { "name" : "minecraft:item.kelp", "id" : -138, - "runtimeId" : 762 + "runtimeId" : 895 }, { "name" : "minecraft:coral_fan_hang3", "id" : -137, - "runtimeId" : 198 + "runtimeId" : 903 }, { "name" : "minecraft:coral_fan_hang2", "id" : -136, - "runtimeId" : 1065 + "runtimeId" : 589 }, { "name" : "minecraft:coral_fan_hang", "id" : -135, - "runtimeId" : 701 + "runtimeId" : 902 }, { "name" : "minecraft:coral_fan_dead", "id" : -134, - "runtimeId" : 501 + "runtimeId" : 587 }, { "name" : "minecraft:coral_fan", "id" : -133, - "runtimeId" : 356 + "runtimeId" : 677 }, { "name" : "minecraft:coral_block", "id" : -132, - "runtimeId" : 476 + "runtimeId" : 666 }, { "name" : "minecraft:coral", "id" : -131, - "runtimeId" : 443 + "runtimeId" : 321 }, { "name" : "minecraft:seagrass", "id" : -130, - "runtimeId" : 1077 + "runtimeId" : 516 }, { "name" : "minecraft:element_118", "id" : -129, - "runtimeId" : 272 + "runtimeId" : 824 }, { "name" : "minecraft:element_117", "id" : -128, - "runtimeId" : 273 + "runtimeId" : 823 }, { "name" : "minecraft:element_116", "id" : -127, - "runtimeId" : 274 + "runtimeId" : 288 }, { "name" : "minecraft:element_115", "id" : -126, - "runtimeId" : 275 + "runtimeId" : 822 }, { "name" : "minecraft:element_114", "id" : -125, - "runtimeId" : 276 + "runtimeId" : 819 }, { "name" : "minecraft:element_113", "id" : -124, - "runtimeId" : 277 + "runtimeId" : 817 }, { "name" : "minecraft:element_112", "id" : -123, - "runtimeId" : 278 + "runtimeId" : 815 }, { "name" : "minecraft:element_111", "id" : -122, - "runtimeId" : 526 + "runtimeId" : 416 }, { "name" : "minecraft:element_110", "id" : -121, - "runtimeId" : 484 + "runtimeId" : 814 }, { "name" : "minecraft:element_109", "id" : -120, - "runtimeId" : 279 + "runtimeId" : 463 }, { "name" : "minecraft:element_108", "id" : -119, - "runtimeId" : 281 + "runtimeId" : 813 }, { "name" : "minecraft:element_107", "id" : -118, - "runtimeId" : 1013 + "runtimeId" : 812 }, { "name" : "minecraft:element_106", "id" : -117, - "runtimeId" : 618 + "runtimeId" : 810 }, { "name" : "minecraft:element_105", "id" : -116, - "runtimeId" : 577 + "runtimeId" : 809 }, { "name" : "minecraft:element_104", "id" : -115, - "runtimeId" : 646 + "runtimeId" : 138 }, { "name" : "minecraft:element_103", "id" : -114, - "runtimeId" : 283 + "runtimeId" : 695 }, { "name" : "minecraft:element_102", "id" : -113, - "runtimeId" : 284 + "runtimeId" : 545 }, { "name" : "minecraft:element_101", "id" : -112, - "runtimeId" : 285 + "runtimeId" : 210 }, { "name" : "minecraft:element_100", "id" : -111, - "runtimeId" : 286 + "runtimeId" : 669 }, { "name" : "minecraft:element_99", "id" : -110, - "runtimeId" : 900 + "runtimeId" : 807 }, { "name" : "minecraft:element_98", "id" : -109, - "runtimeId" : 287 + "runtimeId" : 806 }, { "name" : "minecraft:element_97", "id" : -108, - "runtimeId" : 288 + "runtimeId" : 298 }, { "name" : "minecraft:element_96", "id" : -107, - "runtimeId" : 289 + "runtimeId" : 805 }, { "name" : "minecraft:element_95", "id" : -106, - "runtimeId" : 290 + "runtimeId" : 803 }, { "name" : "minecraft:element_94", "id" : -105, - "runtimeId" : 291 + "runtimeId" : 802 }, { "name" : "minecraft:element_93", "id" : -104, - "runtimeId" : 294 + "runtimeId" : 801 }, { "name" : "minecraft:element_92", "id" : -103, - "runtimeId" : 296 + "runtimeId" : 613 }, { "name" : "minecraft:element_91", "id" : -102, - "runtimeId" : 627 + "runtimeId" : 800 }, { "name" : "minecraft:element_90", "id" : -101, - "runtimeId" : 297 + "runtimeId" : 799 }, { "name" : "minecraft:element_89", "id" : -100, - "runtimeId" : 298 + "runtimeId" : 798 }, { "name" : "minecraft:element_88", "id" : -99, - "runtimeId" : 299 + "runtimeId" : 797 }, { "name" : "minecraft:element_87", "id" : -98, - "runtimeId" : 301 + "runtimeId" : 796 }, { "name" : "minecraft:element_86", "id" : -97, - "runtimeId" : 302 + "runtimeId" : 193 }, { "name" : "minecraft:element_85", "id" : -96, - "runtimeId" : 303 + "runtimeId" : 795 }, { "name" : "minecraft:element_84", "id" : -95, - "runtimeId" : 305 + "runtimeId" : 240 }, { "name" : "minecraft:element_83", "id" : -94, - "runtimeId" : 306 + "runtimeId" : 619 }, { "name" : "minecraft:element_82", "id" : -93, - "runtimeId" : 540 + "runtimeId" : 793 }, { "name" : "minecraft:element_81", "id" : -92, - "runtimeId" : 308 + "runtimeId" : 792 }, { "name" : "minecraft:element_80", "id" : -91, - "runtimeId" : 309 + "runtimeId" : 471 }, { "name" : "minecraft:element_79", "id" : -90, - "runtimeId" : 310 + "runtimeId" : 789 }, { "name" : "minecraft:element_78", "id" : -89, - "runtimeId" : 312 + "runtimeId" : 605 }, { "name" : "minecraft:element_77", "id" : -88, - "runtimeId" : 768 + "runtimeId" : 788 }, { "name" : "minecraft:element_76", "id" : -87, - "runtimeId" : 314 + "runtimeId" : 651 }, { "name" : "minecraft:element_75", "id" : -86, - "runtimeId" : 315 + "runtimeId" : 786 }, { "name" : "minecraft:element_74", "id" : -85, - "runtimeId" : 316 + "runtimeId" : 265 }, { "name" : "minecraft:element_73", "id" : -84, - "runtimeId" : 513 + "runtimeId" : 580 }, { "name" : "minecraft:element_72", "id" : -83, - "runtimeId" : 317 + "runtimeId" : 784 }, { "name" : "minecraft:element_71", "id" : -82, - "runtimeId" : 473 + "runtimeId" : 782 }, { "name" : "minecraft:element_70", "id" : -81, - "runtimeId" : 398 + "runtimeId" : 781 }, { "name" : "minecraft:element_69", "id" : -80, - "runtimeId" : 408 + "runtimeId" : 534 }, { "name" : "minecraft:element_68", "id" : -79, - "runtimeId" : 318 + "runtimeId" : 780 }, { "name" : "minecraft:element_67", "id" : -78, - "runtimeId" : 320 + "runtimeId" : 779 }, { "name" : "minecraft:element_66", "id" : -77, - "runtimeId" : 323 + "runtimeId" : 778 }, { "name" : "minecraft:element_65", "id" : -76, - "runtimeId" : 831 + "runtimeId" : 777 }, { "name" : "minecraft:element_64", "id" : -75, - "runtimeId" : 324 + "runtimeId" : 776 }, { "name" : "minecraft:element_63", "id" : -74, - "runtimeId" : 521 + "runtimeId" : 549 }, { "name" : "minecraft:element_62", "id" : -73, - "runtimeId" : 419 + "runtimeId" : 93 }, { "name" : "minecraft:element_61", "id" : -72, - "runtimeId" : 325 + "runtimeId" : 65 }, { "name" : "minecraft:element_60", "id" : -71, - "runtimeId" : 734 + "runtimeId" : 774 }, { "name" : "minecraft:element_59", "id" : -70, - "runtimeId" : 326 + "runtimeId" : 773 }, { "name" : "minecraft:element_58", "id" : -69, - "runtimeId" : 327 + "runtimeId" : 772 }, { "name" : "minecraft:element_57", "id" : -68, - "runtimeId" : 328 + "runtimeId" : 770 }, { "name" : "minecraft:element_56", "id" : -67, - "runtimeId" : 330 + "runtimeId" : 767 }, { "name" : "minecraft:element_55", "id" : -66, - "runtimeId" : 496 + "runtimeId" : 257 }, { "name" : "minecraft:element_54", "id" : -65, - "runtimeId" : 337 + "runtimeId" : 766 }, { "name" : "minecraft:element_53", "id" : -64, - "runtimeId" : 845 + "runtimeId" : 664 }, { "name" : "minecraft:element_52", "id" : -63, - "runtimeId" : 331 + "runtimeId" : 181 }, { "name" : "minecraft:element_51", "id" : -62, - "runtimeId" : 910 + "runtimeId" : 237 }, { "name" : "minecraft:element_50", "id" : -61, - "runtimeId" : 682 + "runtimeId" : 13 }, { "name" : "minecraft:element_49", "id" : -60, - "runtimeId" : 601 + "runtimeId" : 212 }, { "name" : "minecraft:element_48", "id" : -59, - "runtimeId" : 365 + "runtimeId" : 765 }, { "name" : "minecraft:element_47", "id" : -58, - "runtimeId" : 333 + "runtimeId" : 529 }, { "name" : "minecraft:element_46", "id" : -57, - "runtimeId" : 563 + "runtimeId" : 764 }, { "name" : "minecraft:element_45", "id" : -56, - "runtimeId" : 694 + "runtimeId" : 763 }, { "name" : "minecraft:element_44", "id" : -55, - "runtimeId" : 334 + "runtimeId" : 404 }, { "name" : "minecraft:element_43", "id" : -54, - "runtimeId" : 1032 + "runtimeId" : 117 }, { "name" : "minecraft:element_42", "id" : -53, - "runtimeId" : 825 + "runtimeId" : 576 }, { "name" : "minecraft:element_41", "id" : -52, - "runtimeId" : 1025 + "runtimeId" : 362 }, { "name" : "minecraft:element_40", "id" : -51, - "runtimeId" : 875 + "runtimeId" : 761 }, { "name" : "minecraft:element_39", "id" : -50, - "runtimeId" : 1079 + "runtimeId" : 760 }, { "name" : "minecraft:element_38", "id" : -49, - "runtimeId" : 1078 + "runtimeId" : 759 }, { "name" : "minecraft:element_37", "id" : -48, - "runtimeId" : 716 + "runtimeId" : 758 }, { "name" : "minecraft:element_36", "id" : -47, - "runtimeId" : 1075 + "runtimeId" : 756 }, { "name" : "minecraft:element_35", "id" : -46, - "runtimeId" : 594 + "runtimeId" : 135 }, { "name" : "minecraft:element_34", "id" : -45, - "runtimeId" : 1073 + "runtimeId" : 755 }, { "name" : "minecraft:element_33", "id" : -44, - "runtimeId" : 342 + "runtimeId" : 654 }, { "name" : "minecraft:element_32", "id" : -43, - "runtimeId" : 955 + "runtimeId" : 754 }, { "name" : "minecraft:element_31", "id" : -42, - "runtimeId" : 1072 + "runtimeId" : 753 }, { "name" : "minecraft:element_30", "id" : -41, - "runtimeId" : 1071 + "runtimeId" : 752 }, { "name" : "minecraft:element_29", "id" : -40, - "runtimeId" : 840 + "runtimeId" : 751 }, { "name" : "minecraft:element_28", "id" : -39, - "runtimeId" : 1069 + "runtimeId" : 498 }, { "name" : "minecraft:element_27", "id" : -38, - "runtimeId" : 389 + "runtimeId" : 750 }, { "name" : "minecraft:element_26", "id" : -37, - "runtimeId" : 1067 + "runtimeId" : 749 }, { "name" : "minecraft:element_25", "id" : -36, - "runtimeId" : 691 + "runtimeId" : 748 }, { "name" : "minecraft:element_24", "id" : -35, - "runtimeId" : 1049 + "runtimeId" : 747 }, { "name" : "minecraft:element_23", "id" : -34, - "runtimeId" : 989 + "runtimeId" : 319 }, { "name" : "minecraft:element_22", "id" : -33, - "runtimeId" : 1064 + "runtimeId" : 699 }, { "name" : "minecraft:element_21", "id" : -32, - "runtimeId" : 756 + "runtimeId" : 431 }, { "name" : "minecraft:element_20", "id" : -31, - "runtimeId" : 1046 + "runtimeId" : 745 }, { "name" : "minecraft:element_19", "id" : -30, - "runtimeId" : 1060 + "runtimeId" : 744 }, { "name" : "minecraft:element_18", "id" : -29, - "runtimeId" : 547 + "runtimeId" : 743 }, { "name" : "minecraft:element_17", "id" : -28, - "runtimeId" : 1059 + "runtimeId" : 741 }, { "name" : "minecraft:element_16", "id" : -27, - "runtimeId" : 1058 + "runtimeId" : 740 }, { "name" : "minecraft:element_15", "id" : -26, - "runtimeId" : 467 + "runtimeId" : 23 }, { "name" : "minecraft:element_14", "id" : -25, - "runtimeId" : 1055 + "runtimeId" : 739 }, { "name" : "minecraft:element_13", "id" : -24, - "runtimeId" : 1054 + "runtimeId" : 109 }, { "name" : "minecraft:element_12", "id" : -23, - "runtimeId" : 685 + "runtimeId" : 738 }, { "name" : "minecraft:element_11", "id" : -22, - "runtimeId" : 1052 + "runtimeId" : 737 }, { "name" : "minecraft:element_10", "id" : -21, - "runtimeId" : 941 + "runtimeId" : 736 }, { "name" : "minecraft:element_9", "id" : -20, - "runtimeId" : 692 + "runtimeId" : 734 }, { "name" : "minecraft:element_8", "id" : -19, - "runtimeId" : 1050 + "runtimeId" : 733 }, { "name" : "minecraft:element_7", "id" : -18, - "runtimeId" : 987 + "runtimeId" : 35 }, { "name" : "minecraft:element_6", "id" : -17, - "runtimeId" : 1063 + "runtimeId" : 275 }, { "name" : "minecraft:element_5", "id" : -16, - "runtimeId" : 755 + "runtimeId" : 732 }, { "name" : "minecraft:element_4", "id" : -15, - "runtimeId" : 1047 + "runtimeId" : 730 }, { "name" : "minecraft:element_3", "id" : -14, - "runtimeId" : 992 + "runtimeId" : 729 }, { "name" : "minecraft:element_2", "id" : -13, - "runtimeId" : 656 + "runtimeId" : 126 }, { "name" : "minecraft:element_1", "id" : -12, - "runtimeId" : 1044 + "runtimeId" : 77 }, { "name" : "minecraft:blue_ice", "id" : -11, - "runtimeId" : 227 + "runtimeId" : 617 }, { "name" : "minecraft:stripped_oak_log", "id" : -10, - "runtimeId" : 34 + "runtimeId" : 14 }, { "name" : "minecraft:stripped_dark_oak_log", "id" : -9, - "runtimeId" : 35 + "runtimeId" : 1038 }, { "name" : "minecraft:stripped_acacia_log", "id" : -8, - "runtimeId" : 705 + "runtimeId" : 674 }, { "name" : "minecraft:stripped_jungle_log", "id" : -7, - "runtimeId" : 710 + "runtimeId" : 514 }, { "name" : "minecraft:stripped_birch_log", "id" : -6, - "runtimeId" : 39 + "runtimeId" : 885 }, { "name" : "minecraft:stripped_spruce_log", "id" : -5, - "runtimeId" : 33 + "runtimeId" : 1039 }, { "name" : "minecraft:prismarine_bricks_stairs", "id" : -4, - "runtimeId" : 72 + "runtimeId" : 40 }, { "name" : "minecraft:dark_prismarine_stairs", "id" : -3, - "runtimeId" : 613 + "runtimeId" : 916 }, { "name" : "minecraft:prismarine_stairs", "id" : -2, - "runtimeId" : 71 + "runtimeId" : 1011 }, { "name" : "minecraft:stone", "id" : 1, - "runtimeId" : 939 + "runtimeId" : 658 }, { "name" : "minecraft:grass", "id" : 2, - "runtimeId" : 142 + "runtimeId" : 952 }, { "name" : "minecraft:dirt", "id" : 3, - "runtimeId" : 1076 + "runtimeId" : 94 }, { "name" : "minecraft:cobblestone", "id" : 4, - "runtimeId" : 364 + "runtimeId" : 554 }, { "name" : "minecraft:planks", "id" : 5, - "runtimeId" : 976 + "runtimeId" : 162 }, { "name" : "minecraft:sapling", "id" : 6, - "runtimeId" : 906 + "runtimeId" : 682 }, { "name" : "minecraft:bedrock", "id" : 7, - "runtimeId" : 253 + "runtimeId" : 853 }, { "name" : "minecraft:flowing_water", "id" : 8, - "runtimeId" : 525 + "runtimeId" : 172 }, { "name" : "minecraft:water", "id" : 9, - "runtimeId" : 1048 + "runtimeId" : 1069 }, { "name" : "minecraft:flowing_lava", "id" : 10, - "runtimeId" : 1017 + "runtimeId" : 248 }, { "name" : "minecraft:lava", "id" : 11, - "runtimeId" : 817 + "runtimeId" : 974 }, { "name" : "minecraft:sand", "id" : 12, - "runtimeId" : 942 + "runtimeId" : 229 }, { "name" : "minecraft:gravel", "id" : 13, - "runtimeId" : 141 + "runtimeId" : 954 }, { "name" : "minecraft:gold_ore", "id" : 14, - "runtimeId" : 143 + "runtimeId" : 950 }, { "name" : "minecraft:iron_ore", "id" : 15, - "runtimeId" : 129 + "runtimeId" : 310 }, { "name" : "minecraft:coal_ore", "id" : 16, - "runtimeId" : 204 + "runtimeId" : 570 }, { "name" : "minecraft:log", "id" : 17, - "runtimeId" : 950 + "runtimeId" : 662 }, { "name" : "minecraft:leaves", "id" : 18, - "runtimeId" : 943 + "runtimeId" : 538 }, { "name" : "minecraft:sponge", "id" : 19, - "runtimeId" : 986 + "runtimeId" : 634 }, { "name" : "minecraft:glass", "id" : 20, - "runtimeId" : 145 + "runtimeId" : 945 }, { "name" : "minecraft:lapis_ore", "id" : 21, - "runtimeId" : 119 + "runtimeId" : 973 }, { "name" : "minecraft:lapis_block", "id" : 22, - "runtimeId" : 703 + "runtimeId" : 972 }, { "name" : "minecraft:dispenser", "id" : 23, - "runtimeId" : 905 + "runtimeId" : 929 }, { "name" : "minecraft:sandstone", "id" : 24, - "runtimeId" : 974 + "runtimeId" : 563 }, { "name" : "minecraft:noteblock", "id" : 25, - "runtimeId" : 609 + "runtimeId" : 995 }, { "name" : "minecraft:item.bed", "id" : 26, - "runtimeId" : 604 + "runtimeId" : 851 }, { "name" : "minecraft:golden_rail", "id" : 27, - "runtimeId" : 321 + "runtimeId" : 951 }, { "name" : "minecraft:detector_rail", "id" : 28, - "runtimeId" : 516 + "runtimeId" : 836 }, { "name" : "minecraft:sticky_piston", "id" : 29, - "runtimeId" : 414 + "runtimeId" : 702 }, { "name" : "minecraft:web", "id" : 30, - "runtimeId" : 579 + "runtimeId" : 1083 }, { "name" : "minecraft:tallgrass", "id" : 31, - "runtimeId" : 798 + "runtimeId" : 691 }, { "name" : "minecraft:deadbush", "id" : 32, - "runtimeId" : 173 + "runtimeId" : 920 }, { "name" : "minecraft:piston", "id" : 33, - "runtimeId" : 744 + "runtimeId" : 231 }, { "name" : "minecraft:pistonarmcollision", "id" : 34, - "runtimeId" : 93 + "runtimeId" : 1000 }, { "name" : "minecraft:wool", "id" : 35, - "runtimeId" : 949 + "runtimeId" : 659 }, { "name" : "minecraft:element_0", "id" : 36, - "runtimeId" : 779 + "runtimeId" : 439 }, { "name" : "minecraft:yellow_flower", "id" : 37, - "runtimeId" : 982 + "runtimeId" : 660 }, { "name" : "minecraft:red_flower", "id" : 38, - "runtimeId" : 984 + "runtimeId" : 689 }, { "name" : "minecraft:brown_mushroom", "id" : 39, - "runtimeId" : 222 + "runtimeId" : 205 }, { "name" : "minecraft:red_mushroom", "id" : 40, - "runtimeId" : 877 + "runtimeId" : 69 }, { "name" : "minecraft:gold_block", "id" : 41, - "runtimeId" : 796 + "runtimeId" : 892 }, { "name" : "minecraft:iron_block", "id" : 42, - "runtimeId" : 130 + "runtimeId" : 964 }, { "name" : "minecraft:real_double_stone_slab", "id" : 43, - "runtimeId" : 1006 + "runtimeId" : 673 }, { "name" : "minecraft:double_stone_slab", "id" : 44, - "runtimeId" : 957 + "runtimeId" : 668 }, { "name" : "minecraft:brick_block", "id" : 45, - "runtimeId" : 224 + "runtimeId" : 427 }, { "name" : "minecraft:tnt", "id" : 46, - "runtimeId" : 1029 + "runtimeId" : 712 }, { "name" : "minecraft:bookshelf", "id" : 47, - "runtimeId" : 226 + "runtimeId" : 18 }, { "name" : "minecraft:mossy_cobblestone", "id" : 48, - "runtimeId" : 105 + "runtimeId" : 976 }, { "name" : "minecraft:obsidian", "id" : 49, - "runtimeId" : 97 + "runtimeId" : 112 }, { "name" : "minecraft:torch", "id" : 50, - "runtimeId" : 176 + "runtimeId" : 1046 }, { "name" : "minecraft:fire", "id" : 51, - "runtimeId" : 859 + "runtimeId" : 79 }, { "name" : "minecraft:mob_spawner", "id" : 52, - "runtimeId" : 811 + "runtimeId" : 441 }, { "name" : "minecraft:oak_stairs", "id" : 53, - "runtimeId" : 99 + "runtimeId" : 996 }, { "name" : "minecraft:chest", "id" : 54, - "runtimeId" : 994 + "runtimeId" : 128 }, { "name" : "minecraft:redstone_wire", "id" : 55, - "runtimeId" : 1056 + "runtimeId" : 1019 }, { "name" : "minecraft:diamond_ore", "id" : 56, - "runtimeId" : 164 + "runtimeId" : 928 }, { "name" : "minecraft:diamond_block", "id" : 57, - "runtimeId" : 165 + "runtimeId" : 36 }, { "name" : "minecraft:crafting_table", "id" : 58, - "runtimeId" : 679 + "runtimeId" : 771 }, { "name" : "minecraft:item.wheat", "id" : 59, - "runtimeId" : 858 + "runtimeId" : 1030 }, { "name" : "minecraft:farmland", "id" : 60, - "runtimeId" : 681 + "runtimeId" : 156 }, { "name" : "minecraft:furnace", "id" : 61, - "runtimeId" : 146 + "runtimeId" : 943 }, { "name" : "minecraft:lit_furnace", "id" : 62, - "runtimeId" : 667 + "runtimeId" : 968 }, { "name" : "minecraft:standing_sign", "id" : 63, - "runtimeId" : 43 + "runtimeId" : 485 }, { "name" : "minecraft:item.wooden_door", "id" : 64, - "runtimeId" : 2 + "runtimeId" : 1087 }, { "name" : "minecraft:ladder", "id" : 65, - "runtimeId" : 478 + "runtimeId" : 971 }, { "name" : "minecraft:rail", "id" : 66, - "runtimeId" : 378 + "runtimeId" : 672 }, { "name" : "minecraft:stone_stairs", "id" : 67, - "runtimeId" : 38 + "runtimeId" : 1035 }, { "name" : "minecraft:wall_sign", "id" : 68, - "runtimeId" : 1003 + "runtimeId" : 873 }, { "name" : "minecraft:lever", "id" : 69, - "runtimeId" : 545 + "runtimeId" : 977 }, { "name" : "minecraft:stone_pressure_plate", "id" : 70, - "runtimeId" : 40 + "runtimeId" : 228 }, { "name" : "minecraft:item.iron_door", "id" : 71, - "runtimeId" : 402 + "runtimeId" : 44 }, { "name" : "minecraft:wooden_pressure_plate", "id" : 72, - "runtimeId" : 1 + "runtimeId" : 1088 }, { "name" : "minecraft:redstone_ore", "id" : 73, - "runtimeId" : 62 + "runtimeId" : 1018 }, { "name" : "minecraft:lit_redstone_ore", "id" : 74, - "runtimeId" : 657 + "runtimeId" : 769 }, { "name" : "minecraft:unlit_redstone_torch", "id" : 75, - "runtimeId" : 85 + "runtimeId" : 970 }, { "name" : "minecraft:redstone_torch", "id" : 76, - "runtimeId" : 61 + "runtimeId" : 790 }, { "name" : "minecraft:stone_button", "id" : 77, - "runtimeId" : 919 + "runtimeId" : 1034 }, { "name" : "minecraft:snow_layer", "id" : 78, - "runtimeId" : 990 + "runtimeId" : 90 }, { "name" : "minecraft:ice", "id" : 79, - "runtimeId" : 436 + "runtimeId" : 757 }, { "name" : "minecraft:snow", "id" : 80, - "runtimeId" : 46 + "runtimeId" : 835 }, { "name" : "minecraft:cactus", "id" : 81, - "runtimeId" : 216 + "runtimeId" : 808 }, { "name" : "minecraft:clay", "id" : 82, - "runtimeId" : 552 + "runtimeId" : 484 }, { "name" : "minecraft:item.reeds", "id" : 83, - "runtimeId" : 60 + "runtimeId" : 332 }, { "name" : "minecraft:jukebox", "id" : 84, - "runtimeId" : 122 + "runtimeId" : 467 }, { "name" : "minecraft:fence", "id" : 85, - "runtimeId" : 368 + "runtimeId" : 663 }, { "name" : "minecraft:pumpkin", "id" : 86, - "runtimeId" : 676 + "runtimeId" : 714 }, { "name" : "minecraft:netherrack", "id" : 87, - "runtimeId" : 707 + "runtimeId" : 992 }, { "name" : "minecraft:soul_sand", "id" : 88, - "runtimeId" : 407 + "runtimeId" : 213 }, { "name" : "minecraft:glowstone", "id" : 89, - "runtimeId" : 144 + "runtimeId" : 244 }, { "name" : "minecraft:portal", "id" : 90, - "runtimeId" : 698 + "runtimeId" : 29 }, { "name" : "minecraft:lit_pumpkin", "id" : 91, - "runtimeId" : 723 + "runtimeId" : 316 }, { "name" : "minecraft:item.cake", "id" : 92, - "runtimeId" : 972 + "runtimeId" : 355 }, { "name" : "minecraft:unpowered_repeater", "id" : 93, - "runtimeId" : 127 + "runtimeId" : 1053 }, { "name" : "minecraft:powered_repeater", "id" : 94, - "runtimeId" : 73 + "runtimeId" : 1010 }, { "name" : "minecraft:invisiblebedrock", "id" : 95, - "runtimeId" : 960 + "runtimeId" : 122 }, { "name" : "minecraft:trapdoor", "id" : 96, - "runtimeId" : 27 + "runtimeId" : 1047 }, { "name" : "minecraft:monster_egg", "id" : 97, - "runtimeId" : 1000 + "runtimeId" : 594 }, { "name" : "minecraft:stonebrick", "id" : 98, - "runtimeId" : 953 + "runtimeId" : 665 }, { "name" : "minecraft:brown_mushroom_block", "id" : 99, - "runtimeId" : 437 + "runtimeId" : 694 }, { "name" : "minecraft:red_mushroom_block", "id" : 100, - "runtimeId" : 1062 + "runtimeId" : 489 }, { "name" : "minecraft:iron_bars", "id" : 101, - "runtimeId" : 131 + "runtimeId" : 472 }, { "name" : "minecraft:glass_pane", "id" : 102, - "runtimeId" : 792 + "runtimeId" : 946 }, { "name" : "minecraft:melon_block", "id" : 103, - "runtimeId" : 610 + "runtimeId" : 144 }, { "name" : "minecraft:pumpkin_stem", "id" : 104, - "runtimeId" : 347 + "runtimeId" : 1012 }, { "name" : "minecraft:melon_stem", "id" : 105, - "runtimeId" : 920 + "runtimeId" : 982 }, { "name" : "minecraft:vine", "id" : 106, - "runtimeId" : 158 + "runtimeId" : 1056 }, { "name" : "minecraft:fence_gate", "id" : 107, - "runtimeId" : 149 + "runtimeId" : 426 }, { "name" : "minecraft:brick_stairs", "id" : 108, - "runtimeId" : 223 + "runtimeId" : 874 }, { "name" : "minecraft:stone_brick_stairs", "id" : 109, - "runtimeId" : 449 + "runtimeId" : 27 }, { "name" : "minecraft:mycelium", "id" : 110, - "runtimeId" : 332 + "runtimeId" : 986 }, { "name" : "minecraft:waterlily", "id" : 111, - "runtimeId" : 985 + "runtimeId" : 520 }, { "name" : "minecraft:nether_brick", "id" : 112, - "runtimeId" : 155 + "runtimeId" : 987 }, { "name" : "minecraft:nether_brick_fence", "id" : 113, - "runtimeId" : 889 + "runtimeId" : 988 }, { "name" : "minecraft:nether_brick_stairs", "id" : 114, - "runtimeId" : 101 + "runtimeId" : 989 }, { "name" : "minecraft:item.nether_wart", "id" : 115, - "runtimeId" : 786 + "runtimeId" : 281 }, { "name" : "minecraft:enchanting_table", "id" : 116, - "runtimeId" : 159 + "runtimeId" : 936 }, { "name" : "minecraft:brewingstandblock", "id" : 117, - "runtimeId" : 406 + "runtimeId" : 351 }, { "name" : "minecraft:item.cauldron", "id" : 118, - "runtimeId" : 212 + "runtimeId" : 883 }, { "name" : "minecraft:end_portal", "id" : 119, - "runtimeId" : 153 + "runtimeId" : 324 }, { "name" : "minecraft:end_portal_frame", "id" : 120, - "runtimeId" : 996 + "runtimeId" : 615 }, { "name" : "minecraft:end_stone", "id" : 121, - "runtimeId" : 151 + "runtimeId" : 474 }, { "name" : "minecraft:dragon_egg", "id" : 122, - "runtimeId" : 161 + "runtimeId" : 930 }, { "name" : "minecraft:redstone_lamp", "id" : 123, - "runtimeId" : 63 + "runtimeId" : 1017 }, { "name" : "minecraft:lit_redstone_lamp", "id" : 124, - "runtimeId" : 373 + "runtimeId" : 179 }, { "name" : "minecraft:dropper", "id" : 125, - "runtimeId" : 263 + "runtimeId" : 933 }, { "name" : "minecraft:activator_rail", "id" : 126, - "runtimeId" : 248 + "runtimeId" : 296 }, { "name" : "minecraft:cocoa", "id" : 127, - "runtimeId" : 945 + "runtimeId" : 899 }, { "name" : "minecraft:sandstone_stairs", "id" : 128, - "runtimeId" : 486 + "runtimeId" : 887 }, { "name" : "minecraft:emerald_ore", "id" : 129, - "runtimeId" : 569 + "runtimeId" : 910 }, { "name" : "minecraft:ender_chest", "id" : 130, - "runtimeId" : 307 + "runtimeId" : 731 }, { "name" : "minecraft:tripwire_hook", "id" : 131, - "runtimeId" : 774 + "runtimeId" : 1048 }, { "name" : "minecraft:tripwire", "id" : 132, - "runtimeId" : 128 + "runtimeId" : 55 }, { "name" : "minecraft:emerald_block", "id" : 133, - "runtimeId" : 160 + "runtimeId" : 935 }, { "name" : "minecraft:spruce_stairs", "id" : 134, - "runtimeId" : 1045 + "runtimeId" : 110 }, { "name" : "minecraft:birch_stairs", "id" : 135, - "runtimeId" : 237 + "runtimeId" : 820 }, { "name" : "minecraft:jungle_stairs", "id" : 136, - "runtimeId" : 967 + "runtimeId" : 934 }, { "name" : "minecraft:command_block", "id" : 137, - "runtimeId" : 201 + "runtimeId" : 89 }, { "name" : "minecraft:beacon", "id" : 138, - "runtimeId" : 1002 + "runtimeId" : 391 }, { "name" : "minecraft:cobblestone_wall", "id" : 139, - "runtimeId" : 737 + "runtimeId" : 502 }, { "name" : "minecraft:item.flower_pot", "id" : 140, - "runtimeId" : 148 + "runtimeId" : 378 }, { "name" : "minecraft:carrots", "id" : 141, - "runtimeId" : 213 + "runtimeId" : 149 }, { "name" : "minecraft:potatoes", "id" : 142, - "runtimeId" : 74 + "runtimeId" : 604 }, { "name" : "minecraft:wooden_button", "id" : 143, - "runtimeId" : 893 + "runtimeId" : 1086 }, { "name" : "minecraft:item.skull", "id" : 144, - "runtimeId" : 53 + "runtimeId" : 1025 }, { "name" : "minecraft:anvil", "id" : 145, - "runtimeId" : 951 + "runtimeId" : 58 }, { "name" : "minecraft:trapped_chest", "id" : 146, - "runtimeId" : 686 + "runtimeId" : 61 }, { "name" : "minecraft:light_weighted_pressure_plate", "id" : 147, - "runtimeId" : 117 + "runtimeId" : 230 }, { "name" : "minecraft:heavy_weighted_pressure_plate", "id" : 148, - "runtimeId" : 135 + "runtimeId" : 961 }, { "name" : "minecraft:unpowered_comparator", "id" : 149, - "runtimeId" : 599 + "runtimeId" : 1052 }, { "name" : "minecraft:powered_comparator", "id" : 150, - "runtimeId" : 439 + "runtimeId" : 436 }, { "name" : "minecraft:daylight_detector", "id" : 151, - "runtimeId" : 177 + "runtimeId" : 91 }, { "name" : "minecraft:redstone_block", "id" : 152, - "runtimeId" : 369 + "runtimeId" : 583 }, { "name" : "minecraft:quartz_ore", "id" : 153, - "runtimeId" : 69 + "runtimeId" : 621 }, { "name" : "minecraft:item.hopper", "id" : 154, - "runtimeId" : 662 + "runtimeId" : 643 }, { "name" : "minecraft:quartz_block", "id" : 155, - "runtimeId" : 432 + "runtimeId" : 690 }, { "name" : "minecraft:quartz_stairs", "id" : 156, - "runtimeId" : 68 + "runtimeId" : 837 }, { "name" : "minecraft:double_wooden_slab", "id" : 157, - "runtimeId" : 162 + "runtimeId" : 238 }, { "name" : "minecraft:wooden_slab", "id" : 158, - "runtimeId" : 802 + "runtimeId" : 54 }, { "name" : "minecraft:stained_hardened_clay", "id" : 159, - "runtimeId" : 946 + "runtimeId" : 661 }, { "name" : "minecraft:stained_glass_pane", "id" : 160, - "runtimeId" : 1016 + "runtimeId" : 56 }, { "name" : "minecraft:leaves2", "id" : 161, - "runtimeId" : 603 + "runtimeId" : 457 }, { "name" : "minecraft:log2", "id" : 162, - "runtimeId" : 624 + "runtimeId" : 696 }, { "name" : "minecraft:acacia_stairs", "id" : 163, - "runtimeId" : 254 + "runtimeId" : 189 }, { "name" : "minecraft:dark_oak_stairs", "id" : 164, - "runtimeId" : 180 + "runtimeId" : 155 }, { "name" : "minecraft:slime", "id" : 165, - "runtimeId" : 52 + "runtimeId" : 715 }, { "name" : "minecraft:iron_trapdoor", "id" : 167, - "runtimeId" : 126 + "runtimeId" : 226 }, { "name" : "minecraft:prismarine", "id" : 168, - "runtimeId" : 612 + "runtimeId" : 299 }, { "name" : "minecraft:sealantern", "id" : 169, - "runtimeId" : 952 + "runtimeId" : 242 }, { "name" : "minecraft:hay_block", "id" : 170, - "runtimeId" : 896 + "runtimeId" : 76 }, { "name" : "minecraft:carpet", "id" : 171, - "runtimeId" : 873 + "runtimeId" : 250 }, { "name" : "minecraft:hardened_clay", "id" : 172, - "runtimeId" : 137 + "runtimeId" : 960 }, { "name" : "minecraft:coal_block", "id" : 173, - "runtimeId" : 869 + "runtimeId" : 894 }, { "name" : "minecraft:packed_ice", "id" : 174, - "runtimeId" : 849 + "runtimeId" : 901 }, { "name" : "minecraft:double_plant", "id" : 175, - "runtimeId" : 932 + "runtimeId" : 461 }, { "name" : "minecraft:standing_banner", "id" : 176, - "runtimeId" : 444 + "runtimeId" : 847 }, { "name" : "minecraft:wall_banner", "id" : 177, - "runtimeId" : 185 + "runtimeId" : 1057 }, { "name" : "minecraft:daylight_detector_inverted", "id" : 178, - "runtimeId" : 175 + "runtimeId" : 479 }, { "name" : "minecraft:red_sandstone", "id" : 179, - "runtimeId" : 977 + "runtimeId" : 340 }, { "name" : "minecraft:red_sandstone_stairs", "id" : 180, - "runtimeId" : 64 + "runtimeId" : 401 }, { "name" : "minecraft:real_double_stone_slab2", "id" : 181, - "runtimeId" : 969 + "runtimeId" : 146 }, { "name" : "minecraft:double_stone_slab2", "id" : 182, - "runtimeId" : 959 + "runtimeId" : 493 }, { "name" : "minecraft:spruce_fence_gate", "id" : 183, - "runtimeId" : 183 + "runtimeId" : 273 }, { "name" : "minecraft:birch_fence_gate", "id" : 184, - "runtimeId" : 671 + "runtimeId" : 859 }, { "name" : "minecraft:jungle_fence_gate", "id" : 185, - "runtimeId" : 121 + "runtimeId" : 249 }, { "name" : "minecraft:dark_oak_fence_gate", "id" : 186, - "runtimeId" : 690 + "runtimeId" : 821 }, { "name" : "minecraft:acacia_fence_gate", "id" : 187, - "runtimeId" : 256 + "runtimeId" : 838 }, { "name" : "minecraft:repeating_command_block", "id" : 188, - "runtimeId" : 59 + "runtimeId" : 1020 }, { "name" : "minecraft:chain_command_block", "id" : 189, - "runtimeId" : 517 + "runtimeId" : 624 }, { "name" : "minecraft:hard_glass_pane", "id" : 190, - "runtimeId" : 442 + "runtimeId" : 959 }, { "name" : "minecraft:hard_stained_glass_pane", "id" : 191, - "runtimeId" : 852 + "runtimeId" : 713 }, { "name" : "minecraft:chemical_heat", "id" : 192, - "runtimeId" : 209 + "runtimeId" : 889 }, { "name" : "minecraft:item.spruce_door", "id" : 193, - "runtimeId" : 251 + "runtimeId" : 1031 }, { "name" : "minecraft:item.birch_door", "id" : 194, - "runtimeId" : 238 + "runtimeId" : 277 }, { "name" : "minecraft:item.jungle_door", "id" : 195, - "runtimeId" : 724 + "runtimeId" : 966 }, { "name" : "minecraft:item.acacia_door", "id" : 196, - "runtimeId" : 257 + "runtimeId" : 501 }, { "name" : "minecraft:item.dark_oak_door", "id" : 197, - "runtimeId" : 182 + "runtimeId" : 25 }, { "name" : "minecraft:grass_path", "id" : 198, - "runtimeId" : 493 + "runtimeId" : 953 }, { "name" : "minecraft:item.frame", "id" : 199, - "runtimeId" : 147 + "runtimeId" : 488 }, { "name" : "minecraft:chorus_flower", "id" : 200, - "runtimeId" : 206 + "runtimeId" : 865 }, { "name" : "minecraft:purpur_block", "id" : 201, - "runtimeId" : 777 + "runtimeId" : 1 }, { "name" : "minecraft:colored_torch_rg", "id" : 202, - "runtimeId" : 452 + "runtimeId" : 428 }, { "name" : "minecraft:purpur_stairs", "id" : 203, - "runtimeId" : 480 + "runtimeId" : 842 }, { "name" : "minecraft:colored_torch_bp", "id" : 204, - "runtimeId" : 1031 + "runtimeId" : 543 }, { "name" : "minecraft:undyed_shulker_box", "id" : 205, - "runtimeId" : 1019 + "runtimeId" : 701 }, { "name" : "minecraft:end_bricks", "id" : 206, - "runtimeId" : 156 + "runtimeId" : 3 }, { "name" : "minecraft:frosted_ice", "id" : 207, - "runtimeId" : 536 + "runtimeId" : 849 }, { "name" : "minecraft:end_rod", "id" : 208, - "runtimeId" : 763 + "runtimeId" : 710 }, { "name" : "minecraft:end_gateway", "id" : 209, - "runtimeId" : 154 + "runtimeId" : 207 }, { "name" : "minecraft:allow", "id" : 210, - "runtimeId" : 617 + "runtimeId" : 843 }, { "name" : "minecraft:deny", "id" : 211, - "runtimeId" : 783 + "runtimeId" : 349 }, { "name" : "minecraft:border_block", "id" : 212, - "runtimeId" : 225 + "runtimeId" : 871 }, { "name" : "minecraft:magma", "id" : 213, - "runtimeId" : 1014 + "runtimeId" : 698 }, { "name" : "minecraft:nether_wart_block", "id" : 214, - "runtimeId" : 100 + "runtimeId" : 289 }, { "name" : "minecraft:red_nether_brick", "id" : 215, - "runtimeId" : 581 + "runtimeId" : 608 }, { "name" : "minecraft:bone_block", "id" : 216, - "runtimeId" : 451 + "runtimeId" : 870 }, { "name" : "minecraft:structure_void", "id" : 217, - "runtimeId" : 30 + "runtimeId" : 1043 }, { "name" : "minecraft:shulker_box", "id" : 218, - "runtimeId" : 872 + "runtimeId" : 345 }, { "name" : "minecraft:purple_glazed_terracotta", "id" : 219, - "runtimeId" : 70 + "runtimeId" : 1013 }, { "name" : "minecraft:white_glazed_terracotta", "id" : 220, - "runtimeId" : 515 + "runtimeId" : 1084 }, { "name" : "minecraft:orange_glazed_terracotta", "id" : 221, - "runtimeId" : 311 + "runtimeId" : 872 }, { "name" : "minecraft:magenta_glazed_terracotta", "id" : 222, - "runtimeId" : 109 + "runtimeId" : 268 }, { "name" : "minecraft:light_blue_glazed_terracotta", "id" : 223, - "runtimeId" : 282 + "runtimeId" : 102 }, { "name" : "minecraft:yellow_glazed_terracotta", "id" : 224, - "runtimeId" : 42 + "runtimeId" : 26 }, { "name" : "minecraft:lime_glazed_terracotta", "id" : 225, - "runtimeId" : 114 + "runtimeId" : 980 }, { "name" : "minecraft:pink_glazed_terracotta", "id" : 226, - "runtimeId" : 94 + "runtimeId" : 881 }, { "name" : "minecraft:gray_glazed_terracotta", "id" : 227, - "runtimeId" : 430 + "runtimeId" : 956 }, { "name" : "minecraft:silver_glazed_terracotta", "id" : 228, - "runtimeId" : 54 + "runtimeId" : 53 }, { "name" : "minecraft:cyan_glazed_terracotta", "id" : 229, - "runtimeId" : 264 + "runtimeId" : 811 }, { "name" : "minecraft:blue_glazed_terracotta", "id" : 231, - "runtimeId" : 228 + "runtimeId" : 869 }, { "name" : "minecraft:brown_glazed_terracotta", "id" : 232, - "runtimeId" : 658 + "runtimeId" : 876 }, { "name" : "minecraft:green_glazed_terracotta", "id" : 233, - "runtimeId" : 821 + "runtimeId" : 957 }, { "name" : "minecraft:red_glazed_terracotta", "id" : 234, - "runtimeId" : 794 + "runtimeId" : 1015 }, { "name" : "minecraft:black_glazed_terracotta", "id" : 235, - "runtimeId" : 230 + "runtimeId" : 768 }, { "name" : "minecraft:concrete", "id" : 236, - "runtimeId" : 966 + "runtimeId" : 631 }, { "name" : "minecraft:concrete_powder", "id" : 237, - "runtimeId" : 1008 + "runtimeId" : 285 }, { "name" : "minecraft:chemistry_table", "id" : 238, - "runtimeId" : 551 + "runtimeId" : 303 }, { "name" : "minecraft:underwater_torch", "id" : 239, - "runtimeId" : 24 + "runtimeId" : 1050 }, { "name" : "minecraft:chorus_plant", "id" : 240, - "runtimeId" : 205 + "runtimeId" : 893 }, { "name" : "minecraft:stained_glass", "id" : 241, - "runtimeId" : 580 + "runtimeId" : 373 }, { "name" : "minecraft:item.camera", "id" : 242, - "runtimeId" : 214 + "runtimeId" : 879 }, { "name" : "minecraft:podzol", "id" : 243, - "runtimeId" : 388 + "runtimeId" : 1001 }, { "name" : "minecraft:item.beetroot", "id" : 244, - "runtimeId" : 239 + "runtimeId" : 209 }, { "name" : "minecraft:stonecutter", "id" : 245, - "runtimeId" : 732 + "runtimeId" : 1036 }, { "name" : "minecraft:glowingobsidian", "id" : 246, - "runtimeId" : 200 + "runtimeId" : 456 }, { "name" : "minecraft:netherreactor", "id" : 247, - "runtimeId" : 904 + "runtimeId" : 993 }, { "name" : "minecraft:info_update", "id" : 248, - "runtimeId" : 133 + "runtimeId" : 963 }, { "name" : "minecraft:info_update2", "id" : 249, - "runtimeId" : 132 + "runtimeId" : 568 }, { "name" : "minecraft:movingblock", "id" : 250, - "runtimeId" : 103 + "runtimeId" : 985 }, { "name" : "minecraft:observer", "id" : 251, - "runtimeId" : 98 + "runtimeId" : 706 }, { "name" : "minecraft:structure_block", "id" : 252, - "runtimeId" : 31 + "runtimeId" : 1042 }, { "name" : "minecraft:hard_glass", "id" : 253, - "runtimeId" : 138 + "runtimeId" : 650 }, { "name" : "minecraft:hard_stained_glass", "id" : 254, - "runtimeId" : 426 + "runtimeId" : 239 }, { "name" : "minecraft:reserved6", "id" : 255, - "runtimeId" : 295 + "runtimeId" : 338 }, { "name" : "minecraft:apple", "id" : 257, - "runtimeId" : 669 + "runtimeId" : 15 }, { "name" : "minecraft:golden_apple", "id" : 258, - "runtimeId" : 568 + "runtimeId" : 16 }, { "name" : "minecraft:enchanted_golden_apple", "id" : 259, - "runtimeId" : 574 + "runtimeId" : 22 }, { "name" : "minecraft:mushroom_stew", "id" : 260, - "runtimeId" : 614 + "runtimeId" : 10 }, { "name" : "minecraft:bread", "id" : 261, - "runtimeId" : 606 + "runtimeId" : 37 }, { "name" : "minecraft:porkchop", "id" : 262, - "runtimeId" : 615 + "runtimeId" : 33 }, { "name" : "minecraft:cooked_porkchop", "id" : 263, - "runtimeId" : 668 + "runtimeId" : 12 }, { "name" : "minecraft:cod", "id" : 264, - "runtimeId" : 935 + "runtimeId" : 43 }, { "name" : "minecraft:salmon", "id" : 265, - "runtimeId" : 576 + "runtimeId" : 49 }, { "name" : "minecraft:tropical_fish", "id" : 266, - "runtimeId" : 771 + "runtimeId" : 52 }, { "name" : "minecraft:pufferfish", "id" : 267, - "runtimeId" : 571 + "runtimeId" : 62 }, { "name" : "minecraft:cooked_cod", "id" : 268, - "runtimeId" : 338 + "runtimeId" : 0 }, { "name" : "minecraft:cooked_salmon", "id" : 269, - "runtimeId" : 632 + "runtimeId" : 66 }, { "name" : "minecraft:dried_kelp", "id" : 270, - "runtimeId" : 824 + "runtimeId" : 67 }, { "name" : "minecraft:cookie", "id" : 271, - "runtimeId" : 448 + "runtimeId" : 34 }, { "name" : "minecraft:melon_slice", "id" : 272, - "runtimeId" : 749 + "runtimeId" : 71 }, { "name" : "minecraft:beef", "id" : 273, - "runtimeId" : 654 + "runtimeId" : 47 }, { "name" : "minecraft:cooked_beef", "id" : 274, - "runtimeId" : 619 + "runtimeId" : 80 }, { "name" : "minecraft:chicken", "id" : 275, - "runtimeId" : 533 + "runtimeId" : 88 }, { "name" : "minecraft:cooked_chicken", "id" : 276, - "runtimeId" : 648 + "runtimeId" : 100 }, { "name" : "minecraft:rotten_flesh", "id" : 277, - "runtimeId" : 828 + "runtimeId" : 92 }, { "name" : "minecraft:spider_eye", "id" : 278, - "runtimeId" : 860 + "runtimeId" : 103 }, { "name" : "minecraft:carrot", "id" : 279, - "runtimeId" : 659 + "runtimeId" : 85 }, { "name" : "minecraft:potato", "id" : 280, - "runtimeId" : 524 + "runtimeId" : 19 }, { "name" : "minecraft:baked_potato", "id" : 281, - "runtimeId" : 645 + "runtimeId" : 105 }, { "name" : "minecraft:poisonous_potato", "id" : 282, - "runtimeId" : 880 + "runtimeId" : 108 }, { "name" : "minecraft:golden_carrot", "id" : 283, - "runtimeId" : 670 + "runtimeId" : 106 }, { "name" : "minecraft:pumpkin_pie", "id" : 284, - "runtimeId" : 462 + "runtimeId" : 111 }, { "name" : "minecraft:beetroot", "id" : 285, - "runtimeId" : 565 + "runtimeId" : 116 }, { "name" : "minecraft:beetroot_soup", "id" : 286, - "runtimeId" : 649 + "runtimeId" : 68 }, { "name" : "minecraft:sweet_berries", "id" : 287, - "runtimeId" : 644 + "runtimeId" : 121 }, { "name" : "minecraft:rabbit", "id" : 288, - "runtimeId" : 595 + "runtimeId" : 7 }, { "name" : "minecraft:cooked_rabbit", "id" : 289, - "runtimeId" : 739 + "runtimeId" : 39 }, { "name" : "minecraft:rabbit_stew", "id" : 290, - "runtimeId" : 655 + "runtimeId" : 123 }, { "name" : "minecraft:wheat_seeds", "id" : 291, - "runtimeId" : 626 + "runtimeId" : 124 }, { "name" : "minecraft:pumpkin_seeds", "id" : 292, - "runtimeId" : 348 + "runtimeId" : 127 }, { "name" : "minecraft:melon_seeds", "id" : 293, - "runtimeId" : 641 + "runtimeId" : 130 }, { "name" : "minecraft:nether_wart", "id" : 294, - "runtimeId" : 693 + "runtimeId" : 134 }, { "name" : "minecraft:beetroot_seeds", "id" : 295, - "runtimeId" : 535 + "runtimeId" : 136 }, { "name" : "minecraft:iron_shovel", "id" : 296, - "runtimeId" : 1005 + "runtimeId" : 137 }, { "name" : "minecraft:iron_pickaxe", "id" : 297, - "runtimeId" : 748 + "runtimeId" : 46 }, { "name" : "minecraft:iron_axe", "id" : 298, - "runtimeId" : 647 + "runtimeId" : 133 }, { "name" : "minecraft:flint_and_steel", "id" : 299, - "runtimeId" : 642 + "runtimeId" : 141 }, { "name" : "minecraft:bow", "id" : 300, - "runtimeId" : 677 + "runtimeId" : 2 }, { "name" : "minecraft:arrow", "id" : 301, - "runtimeId" : 522 + "runtimeId" : 143 }, { "name" : "minecraft:coal", "id" : 302, - "runtimeId" : 861 + "runtimeId" : 145 }, { "name" : "minecraft:charcoal", "id" : 303, - "runtimeId" : 578 + "runtimeId" : 147 }, { "name" : "minecraft:diamond", "id" : 304, - "runtimeId" : 591 + "runtimeId" : 150 }, { "name" : "minecraft:iron_ingot", "id" : 305, - "runtimeId" : 553 + "runtimeId" : 30 }, { "name" : "minecraft:gold_ingot", "id" : 306, - "runtimeId" : 584 + "runtimeId" : 28 }, { "name" : "minecraft:iron_sword", "id" : 307, - "runtimeId" : 519 + "runtimeId" : 115 }, { "name" : "minecraft:wooden_sword", "id" : 308, - "runtimeId" : 965 + "runtimeId" : 151 }, { "name" : "minecraft:wooden_shovel", "id" : 309, - "runtimeId" : 689 + "runtimeId" : 75 }, { "name" : "minecraft:wooden_pickaxe", "id" : 310, - "runtimeId" : 497 + "runtimeId" : 70 }, { "name" : "minecraft:wooden_axe", "id" : 311, - "runtimeId" : 550 + "runtimeId" : 157 }, { "name" : "minecraft:stone_sword", "id" : 312, - "runtimeId" : 666 + "runtimeId" : 101 }, { "name" : "minecraft:stone_shovel", "id" : 313, - "runtimeId" : 621 + "runtimeId" : 142 }, { "name" : "minecraft:stone_pickaxe", "id" : 314, - "runtimeId" : 534 + "runtimeId" : 161 }, { "name" : "minecraft:stone_axe", "id" : 315, - "runtimeId" : 527 + "runtimeId" : 57 }, { "name" : "minecraft:diamond_sword", "id" : 316, - "runtimeId" : 587 + "runtimeId" : 166 }, { "name" : "minecraft:diamond_shovel", "id" : 317, - "runtimeId" : 505 + "runtimeId" : 165 }, { "name" : "minecraft:diamond_pickaxe", "id" : 318, - "runtimeId" : 678 + "runtimeId" : 113 }, { "name" : "minecraft:diamond_axe", "id" : 319, - "runtimeId" : 381 + "runtimeId" : 168 }, { "name" : "minecraft:stick", "id" : 320, - "runtimeId" : 1020 + "runtimeId" : 169 }, { "name" : "minecraft:bowl", "id" : 321, - "runtimeId" : 582 + "runtimeId" : 171 }, { "name" : "minecraft:golden_sword", "id" : 322, - "runtimeId" : 541 + "runtimeId" : 173 }, { "name" : "minecraft:golden_shovel", "id" : 323, - "runtimeId" : 620 + "runtimeId" : 174 }, { "name" : "minecraft:golden_pickaxe", "id" : 324, - "runtimeId" : 758 + "runtimeId" : 178 }, { "name" : "minecraft:golden_axe", "id" : 325, - "runtimeId" : 1010 + "runtimeId" : 180 }, { "name" : "minecraft:string", "id" : 326, - "runtimeId" : 687 + "runtimeId" : 183 }, { "name" : "minecraft:feather", "id" : 327, - "runtimeId" : 363 + "runtimeId" : 184 }, { "name" : "minecraft:gunpowder", "id" : 328, - "runtimeId" : 523 + "runtimeId" : 186 }, { "name" : "minecraft:wooden_hoe", "id" : 329, - "runtimeId" : 1061 + "runtimeId" : 188 }, { "name" : "minecraft:stone_hoe", "id" : 330, - "runtimeId" : 696 + "runtimeId" : 191 }, { "name" : "minecraft:iron_hoe", "id" : 331, - "runtimeId" : 697 + "runtimeId" : 192 }, { "name" : "minecraft:diamond_hoe", "id" : 332, - "runtimeId" : 548 + "runtimeId" : 194 }, { "name" : "minecraft:golden_hoe", "id" : 333, - "runtimeId" : 700 + "runtimeId" : 195 }, { "name" : "minecraft:wheat", "id" : 334, - "runtimeId" : 717 + "runtimeId" : 197 }, { "name" : "minecraft:leather_helmet", "id" : 335, - "runtimeId" : 864 + "runtimeId" : 199 }, { "name" : "minecraft:leather_chestplate", "id" : 336, - "runtimeId" : 1074 + "runtimeId" : 200 }, { "name" : "minecraft:leather_leggings", "id" : 337, - "runtimeId" : 503 + "runtimeId" : 201 }, { "name" : "minecraft:leather_boots", "id" : 338, - "runtimeId" : 512 + "runtimeId" : 203 }, { "name" : "minecraft:chainmail_helmet", "id" : 339, - "runtimeId" : 702 + "runtimeId" : 164 }, { "name" : "minecraft:chainmail_chestplate", "id" : 340, - "runtimeId" : 706 + "runtimeId" : 206 }, { "name" : "minecraft:chainmail_leggings", "id" : 341, - "runtimeId" : 457 + "runtimeId" : 208 }, { "name" : "minecraft:chainmail_boots", "id" : 342, - "runtimeId" : 718 + "runtimeId" : 211 }, { "name" : "minecraft:iron_helmet", "id" : 343, - "runtimeId" : 425 + "runtimeId" : 215 }, { "name" : "minecraft:iron_chestplate", "id" : 344, - "runtimeId" : 518 + "runtimeId" : 218 }, { "name" : "minecraft:iron_leggings", "id" : 345, - "runtimeId" : 854 + "runtimeId" : 219 }, { "name" : "minecraft:iron_boots", "id" : 346, - "runtimeId" : 725 + "runtimeId" : 220 }, { "name" : "minecraft:diamond_helmet", "id" : 347, - "runtimeId" : 735 + "runtimeId" : 224 }, { "name" : "minecraft:diamond_chestplate", "id" : 348, - "runtimeId" : 713 + "runtimeId" : 227 }, { "name" : "minecraft:diamond_leggings", "id" : 349, - "runtimeId" : 652 + "runtimeId" : 234 }, { "name" : "minecraft:diamond_boots", "id" : 350, - "runtimeId" : 664 + "runtimeId" : 235 }, { "name" : "minecraft:golden_helmet", "id" : 351, - "runtimeId" : 665 + "runtimeId" : 236 }, { "name" : "minecraft:golden_chestplate", "id" : 352, - "runtimeId" : 736 + "runtimeId" : 241 }, { "name" : "minecraft:golden_leggings", "id" : 353, - "runtimeId" : 673 + "runtimeId" : 243 }, { "name" : "minecraft:golden_boots", "id" : 354, - "runtimeId" : 633 + "runtimeId" : 245 }, { "name" : "minecraft:shield", "id" : 355, - "runtimeId" : 741 + "runtimeId" : 247 }, { "name" : "minecraft:flint", "id" : 356, - "runtimeId" : 917 + "runtimeId" : 252 }, { "name" : "minecraft:painting", "id" : 357, - "runtimeId" : 680 + "runtimeId" : 254 }, { "name" : "minecraft:oak_sign", "id" : 358, - "runtimeId" : 747 + "runtimeId" : 256 }, { "name" : "minecraft:wooden_door", "id" : 359, - "runtimeId" : 750 + "runtimeId" : 259 }, { "name" : "minecraft:bucket", "id" : 360, - "runtimeId" : 507 + "runtimeId" : 59 }, { "name" : "minecraft:milk_bucket", "id" : 361, - "runtimeId" : 731 + "runtimeId" : 260 }, { "name" : "minecraft:water_bucket", "id" : 362, - "runtimeId" : 819 + "runtimeId" : 264 }, { "name" : "minecraft:lava_bucket", "id" : 363, - "runtimeId" : 530 + "runtimeId" : 267 }, { "name" : "minecraft:cod_bucket", "id" : 364, - "runtimeId" : 643 + "runtimeId" : 270 }, { "name" : "minecraft:salmon_bucket", "id" : 365, - "runtimeId" : 561 + "runtimeId" : 163 }, { "name" : "minecraft:tropical_fish_bucket", "id" : 366, - "runtimeId" : 751 + "runtimeId" : 274 }, { "name" : "minecraft:pufferfish_bucket", "id" : 367, - "runtimeId" : 514 + "runtimeId" : 276 }, { "name" : "minecraft:powder_snow_bucket", "id" : 368, - "runtimeId" : 675 + "runtimeId" : 280 }, { "name" : "minecraft:axolotl_bucket", "id" : 369, - "runtimeId" : 502 + "runtimeId" : 282 }, { "name" : "minecraft:minecart", "id" : 370, - "runtimeId" : 566 + "runtimeId" : 286 }, { "name" : "minecraft:saddle", "id" : 371, - "runtimeId" : 754 + "runtimeId" : 287 }, { "name" : "minecraft:iron_door", "id" : 372, - "runtimeId" : 575 + "runtimeId" : 291 }, { "name" : "minecraft:redstone", "id" : 373, - "runtimeId" : 1070 + "runtimeId" : 292 }, { "name" : "minecraft:snowball", "id" : 374, - "runtimeId" : 636 + "runtimeId" : 214 }, { "name" : "minecraft:oak_boat", "id" : 375, - "runtimeId" : 683 + "runtimeId" : 295 }, { "name" : "minecraft:birch_boat", "id" : 376, - "runtimeId" : 630 + "runtimeId" : 297 }, { "name" : "minecraft:jungle_boat", "id" : 377, - "runtimeId" : 815 + "runtimeId" : 300 }, { "name" : "minecraft:spruce_boat", "id" : 378, - "runtimeId" : 759 + "runtimeId" : 304 }, { "name" : "minecraft:acacia_boat", "id" : 379, - "runtimeId" : 894 + "runtimeId" : 305 }, { "name" : "minecraft:dark_oak_boat", "id" : 380, - "runtimeId" : 770 + "runtimeId" : 306 }, { "name" : "minecraft:leather", "id" : 381, - "runtimeId" : 832 + "runtimeId" : 307 }, { "name" : "minecraft:kelp", "id" : 382, - "runtimeId" : 772 + "runtimeId" : 311 }, { "name" : "minecraft:brick", "id" : 383, - "runtimeId" : 495 + "runtimeId" : 314 }, { "name" : "minecraft:clay_ball", "id" : 384, - "runtimeId" : 494 + "runtimeId" : 315 }, { "name" : "minecraft:sugar_cane", "id" : 385, - "runtimeId" : 491 + "runtimeId" : 317 }, { "name" : "minecraft:paper", "id" : 386, - "runtimeId" : 549 + "runtimeId" : 320 }, { "name" : "minecraft:book", "id" : 387, - "runtimeId" : 539 + "runtimeId" : 323 }, { "name" : "minecraft:slime_ball", "id" : 388, - "runtimeId" : 769 + "runtimeId" : 326 }, { "name" : "minecraft:chest_minecart", "id" : 389, - "runtimeId" : 490 + "runtimeId" : 327 }, { "name" : "minecraft:egg", "id" : 390, - "runtimeId" : 354 + "runtimeId" : 329 }, { "name" : "minecraft:compass", "id" : 391, - "runtimeId" : 489 + "runtimeId" : 333 }, { "name" : "minecraft:fishing_rod", "id" : 392, - "runtimeId" : 983 + "runtimeId" : 335 }, { "name" : "minecraft:clock", "id" : 393, - "runtimeId" : 709 + "runtimeId" : 339 }, { "name" : "minecraft:glowstone_dust", "id" : 394, - "runtimeId" : 485 + "runtimeId" : 342 }, { "name" : "minecraft:black_dye", "id" : 395, - "runtimeId" : 415 + "runtimeId" : 343 }, { "name" : "minecraft:red_dye", "id" : 396, - "runtimeId" : 660 + "runtimeId" : 261 }, { "name" : "minecraft:green_dye", "id" : 397, - "runtimeId" : 1011 + "runtimeId" : 346 }, { "name" : "minecraft:brown_dye", "id" : 398, - "runtimeId" : 738 + "runtimeId" : 350 }, { "name" : "minecraft:blue_dye", "id" : 399, - "runtimeId" : 479 + "runtimeId" : 353 }, { "name" : "minecraft:purple_dye", "id" : 400, - "runtimeId" : 474 + "runtimeId" : 354 }, { "name" : "minecraft:cyan_dye", "id" : 401, - "runtimeId" : 532 + "runtimeId" : 358 }, { "name" : "minecraft:light_gray_dye", "id" : 402, - "runtimeId" : 472 + "runtimeId" : 360 }, { "name" : "minecraft:gray_dye", "id" : 403, - "runtimeId" : 469 + "runtimeId" : 363 }, { "name" : "minecraft:pink_dye", "id" : 404, - "runtimeId" : 1028 + "runtimeId" : 365 }, { "name" : "minecraft:lime_dye", "id" : 405, - "runtimeId" : 672 + "runtimeId" : 366 }, { "name" : "minecraft:yellow_dye", "id" : 406, - "runtimeId" : 583 + "runtimeId" : 367 }, { "name" : "minecraft:light_blue_dye", "id" : 407, - "runtimeId" : 589 + "runtimeId" : 371 }, { "name" : "minecraft:magenta_dye", "id" : 408, - "runtimeId" : 585 + "runtimeId" : 196 }, { "name" : "minecraft:orange_dye", "id" : 409, - "runtimeId" : 409 + "runtimeId" : 374 }, { "name" : "minecraft:white_dye", "id" : 410, - "runtimeId" : 775 + "runtimeId" : 376 }, { "name" : "minecraft:bone_meal", "id" : 411, - "runtimeId" : 461 + "runtimeId" : 377 }, { "name" : "minecraft:cocoa_beans", "id" : 412, - "runtimeId" : 538 + "runtimeId" : 51 }, { "name" : "minecraft:ink_sac", "id" : 413, - "runtimeId" : 766 + "runtimeId" : 380 }, { "name" : "minecraft:lapis_lazuli", "id" : 414, - "runtimeId" : 727 + "runtimeId" : 384 }, { "name" : "minecraft:bone", "id" : 415, - "runtimeId" : 753 + "runtimeId" : 263 }, { "name" : "minecraft:sugar", "id" : 416, - "runtimeId" : 466 + "runtimeId" : 387 }, { "name" : "minecraft:cake", "id" : 417, - "runtimeId" : 459 + "runtimeId" : 390 }, { "name" : "minecraft:bed", "id" : 418, - "runtimeId" : 458 + "runtimeId" : 372 }, { "name" : "minecraft:repeater", "id" : 419, - "runtimeId" : 1015 + "runtimeId" : 392 }, { "name" : "minecraft:filled_map", "id" : 420, - "runtimeId" : 399 + "runtimeId" : 395 }, { "name" : "minecraft:shears", "id" : 421, - "runtimeId" : 622 + "runtimeId" : 398 }, { "name" : "minecraft:ender_pearl", "id" : 422, - "runtimeId" : 416 + "runtimeId" : 399 }, { "name" : "minecraft:blaze_rod", "id" : 423, - "runtimeId" : 787 + "runtimeId" : 359 }, { "name" : "minecraft:ghast_tear", "id" : 424, - "runtimeId" : 450 + "runtimeId" : 402 }, { "name" : "minecraft:gold_nugget", "id" : 425, - "runtimeId" : 441 + "runtimeId" : 312 }, { "name" : "minecraft:potion", "id" : 426, - "runtimeId" : 438 + "runtimeId" : 87 }, { "name" : "minecraft:glass_bottle", "id" : 427, - "runtimeId" : 374 + "runtimeId" : 403 }, { "name" : "minecraft:fermented_spider_eye", "id" : 428, - "runtimeId" : 634 + "runtimeId" : 409 }, { "name" : "minecraft:blaze_powder", "id" : 429, - "runtimeId" : 440 + "runtimeId" : 411 }, { "name" : "minecraft:magma_cream", "id" : 430, - "runtimeId" : 454 + "runtimeId" : 413 }, { "name" : "minecraft:brewing_stand", "id" : 431, - "runtimeId" : 597 + "runtimeId" : 414 }, { "name" : "minecraft:cauldron", "id" : 432, - "runtimeId" : 743 + "runtimeId" : 417 }, { "name" : "minecraft:ender_eye", "id" : 433, - "runtimeId" : 651 + "runtimeId" : 222 }, { "name" : "minecraft:glistering_melon_slice", "id" : 434, - "runtimeId" : 446 + "runtimeId" : 202 }, { "name" : "minecraft:chicken_spawn_egg", "id" : 435, - "runtimeId" : 564 + "runtimeId" : 418 }, { "name" : "minecraft:cow_spawn_egg", "id" : 436, - "runtimeId" : 423 + "runtimeId" : 328 }, { "name" : "minecraft:pig_spawn_egg", "id" : 437, - "runtimeId" : 456 + "runtimeId" : 419 }, { "name" : "minecraft:sheep_spawn_egg", "id" : 438, - "runtimeId" : 421 + "runtimeId" : 420 }, { "name" : "minecraft:wolf_spawn_egg", "id" : 439, - "runtimeId" : 991 + "runtimeId" : 284 }, { "name" : "minecraft:mooshroom_spawn_egg", "id" : 440, - "runtimeId" : 638 + "runtimeId" : 423 }, { "name" : "minecraft:creeper_spawn_egg", "id" : 441, - "runtimeId" : 956 + "runtimeId" : 389 }, { "name" : "minecraft:enderman_spawn_egg", "id" : 442, - "runtimeId" : 417 + "runtimeId" : 5 }, { "name" : "minecraft:silverfish_spawn_egg", "id" : 443, - "runtimeId" : 410 + "runtimeId" : 302 }, { "name" : "minecraft:skeleton_spawn_egg", "id" : 444, - "runtimeId" : 931 + "runtimeId" : 425 }, { "name" : "minecraft:slime_spawn_egg", "id" : 445, - "runtimeId" : 404 + "runtimeId" : 31 }, { "name" : "minecraft:spider_spawn_egg", "id" : 446, - "runtimeId" : 504 + "runtimeId" : 430 }, { "name" : "minecraft:zombie_spawn_egg", "id" : 447, - "runtimeId" : 508 + "runtimeId" : 432 }, { "name" : "minecraft:zombie_pigman_spawn_egg", "id" : 448, - "runtimeId" : 629 + "runtimeId" : 160 }, { "name" : "minecraft:villager_spawn_egg", "id" : 449, - "runtimeId" : 403 + "runtimeId" : 433 }, { "name" : "minecraft:squid_spawn_egg", "id" : 450, - "runtimeId" : 752 + "runtimeId" : 434 }, { "name" : "minecraft:ocelot_spawn_egg", "id" : 451, - "runtimeId" : 511 + "runtimeId" : 336 }, { "name" : "minecraft:witch_spawn_egg", "id" : 452, - "runtimeId" : 608 + "runtimeId" : 95 }, { "name" : "minecraft:bat_spawn_egg", "id" : 453, - "runtimeId" : 593 + "runtimeId" : 437 }, { "name" : "minecraft:ghast_spawn_egg", "id" : 454, - "runtimeId" : 400 + "runtimeId" : 438 }, { "name" : "minecraft:magma_cube_spawn_egg", "id" : 455, - "runtimeId" : 975 + "runtimeId" : 443 }, { "name" : "minecraft:blaze_spawn_egg", "id" : 456, - "runtimeId" : 396 + "runtimeId" : 48 }, { "name" : "minecraft:cave_spider_spawn_egg", "id" : 457, - "runtimeId" : 394 + "runtimeId" : 447 }, { "name" : "minecraft:horse_spawn_egg", "id" : 458, - "runtimeId" : 839 + "runtimeId" : 104 }, { "name" : "minecraft:rabbit_spawn_egg", "id" : 459, - "runtimeId" : 427 + "runtimeId" : 364 }, { "name" : "minecraft:endermite_spawn_egg", "id" : 460, - "runtimeId" : 799 + "runtimeId" : 448 }, { "name" : "minecraft:guardian_spawn_egg", "id" : 461, - "runtimeId" : 390 + "runtimeId" : 449 }, { "name" : "minecraft:stray_spawn_egg", "id" : 462, - "runtimeId" : 555 + "runtimeId" : 148 }, { "name" : "minecraft:husk_spawn_egg", "id" : 463, - "runtimeId" : 387 + "runtimeId" : 451 }, { "name" : "minecraft:wither_skeleton_spawn_egg", "id" : 464, - "runtimeId" : 559 + "runtimeId" : 454 }, { "name" : "minecraft:donkey_spawn_egg", "id" : 465, - "runtimeId" : 567 + "runtimeId" : 459 }, { "name" : "minecraft:mule_spawn_egg", "id" : 466, - "runtimeId" : 639 + "runtimeId" : 460 }, { "name" : "minecraft:skeleton_horse_spawn_egg", "id" : 467, - "runtimeId" : 988 + "runtimeId" : 462 }, { "name" : "minecraft:zombie_horse_spawn_egg", "id" : 468, - "runtimeId" : 841 + "runtimeId" : 466 }, { "name" : "minecraft:shulker_spawn_egg", "id" : 469, - "runtimeId" : 383 + "runtimeId" : 266 }, { "name" : "minecraft:npc_spawn_egg", "id" : 470, - "runtimeId" : 611 + "runtimeId" : 468 }, { "name" : "minecraft:elder_guardian_spawn_egg", "id" : 471, - "runtimeId" : 628 + "runtimeId" : 293 }, { "name" : "minecraft:polar_bear_spawn_egg", "id" : 472, - "runtimeId" : 921 + "runtimeId" : 470 }, { "name" : "minecraft:llama_spawn_egg", "id" : 473, - "runtimeId" : 814 + "runtimeId" : 473 }, { "name" : "minecraft:vindicator_spawn_egg", "id" : 474, - "runtimeId" : 558 + "runtimeId" : 269 }, { "name" : "minecraft:evoker_spawn_egg", "id" : 475, - "runtimeId" : 372 + "runtimeId" : 279 }, { "name" : "minecraft:vex_spawn_egg", "id" : 476, - "runtimeId" : 371 + "runtimeId" : 475 }, { "name" : "minecraft:zombie_villager_spawn_egg", "id" : 477, - "runtimeId" : 722 + "runtimeId" : 480 }, { "name" : "minecraft:parrot_spawn_egg", "id" : 478, - "runtimeId" : 360 + "runtimeId" : 283 }, { "name" : "minecraft:tropical_fish_spawn_egg", "id" : 479, - "runtimeId" : 528 + "runtimeId" : 483 }, { "name" : "minecraft:cod_spawn_egg", "id" : 480, - "runtimeId" : 767 + "runtimeId" : 486 }, { "name" : "minecraft:pufferfish_spawn_egg", "id" : 481, - "runtimeId" : 384 + "runtimeId" : 490 }, { "name" : "minecraft:salmon_spawn_egg", "id" : 482, - "runtimeId" : 367 + "runtimeId" : 492 }, { "name" : "minecraft:drowned_spawn_egg", "id" : 483, - "runtimeId" : 366 + "runtimeId" : 397 }, { "name" : "minecraft:dolphin_spawn_egg", "id" : 484, - "runtimeId" : 1038 + "runtimeId" : 494 }, { "name" : "minecraft:turtle_spawn_egg", "id" : 485, - "runtimeId" : 471 + "runtimeId" : 495 }, { "name" : "minecraft:phantom_spawn_egg", "id" : 486, - "runtimeId" : 979 + "runtimeId" : 496 }, { "name" : "minecraft:agent_spawn_egg", "id" : 487, - "runtimeId" : 470 + "runtimeId" : 251 }, { "name" : "minecraft:cat_spawn_egg", "id" : 488, - "runtimeId" : 1035 + "runtimeId" : 500 }, { "name" : "minecraft:panda_spawn_egg", "id" : 489, - "runtimeId" : 357 + "runtimeId" : 190 }, { "name" : "minecraft:fox_spawn_egg", "id" : 490, - "runtimeId" : 543 + "runtimeId" : 503 }, { "name" : "minecraft:pillager_spawn_egg", "id" : 491, - "runtimeId" : 435 + "runtimeId" : 45 }, { "name" : "minecraft:wandering_trader_spawn_egg", "id" : 492, - "runtimeId" : 572 + "runtimeId" : 506 }, { "name" : "minecraft:ravager_spawn_egg", "id" : 493, - "runtimeId" : 804 + "runtimeId" : 11 }, { "name" : "minecraft:bee_spawn_egg", "id" : 494, - "runtimeId" : 460 + "runtimeId" : 347 }, { "name" : "minecraft:strider_spawn_egg", "id" : 495, - "runtimeId" : 405 + "runtimeId" : 86 }, { "name" : "minecraft:hoglin_spawn_egg", "id" : 496, - "runtimeId" : 492 + "runtimeId" : 507 }, { "name" : "minecraft:piglin_spawn_egg", "id" : 497, - "runtimeId" : 596 + "runtimeId" : 452 }, { "name" : "minecraft:zoglin_spawn_egg", "id" : 498, - "runtimeId" : 350 + "runtimeId" : 140 }, { "name" : "minecraft:piglin_brute_spawn_egg", "id" : 499, - "runtimeId" : 413 + "runtimeId" : 361 }, { "name" : "minecraft:axolotl_spawn_egg", "id" : 500, - "runtimeId" : 346 + "runtimeId" : 233 }, { "name" : "minecraft:goat_spawn_egg", "id" : 501, - "runtimeId" : 340 + "runtimeId" : 508 }, { "name" : "minecraft:glow_squid_spawn_egg", "id" : 502, - "runtimeId" : 605 + "runtimeId" : 41 }, { "name" : "minecraft:glow_ink_sac", "id" : 503, - "runtimeId" : 764 + "runtimeId" : 510 }, { "name" : "minecraft:copper_ingot", "id" : 504, - "runtimeId" : 925 + "runtimeId" : 511 }, { "name" : "minecraft:raw_iron", "id" : 505, - "runtimeId" : 788 + "runtimeId" : 132 }, { "name" : "minecraft:raw_gold", "id" : 506, - "runtimeId" : 789 + "runtimeId" : 158 }, { "name" : "minecraft:raw_copper", "id" : 507, - "runtimeId" : 791 + "runtimeId" : 531 }, { "name" : "minecraft:experience_bottle", "id" : 508, - "runtimeId" : 650 + "runtimeId" : 532 }, { "name" : "minecraft:fire_charge", "id" : 509, - "runtimeId" : 793 + "runtimeId" : 526 }, { "name" : "minecraft:writable_book", "id" : 510, - "runtimeId" : 797 + "runtimeId" : 533 }, { "name" : "minecraft:written_book", "id" : 511, - "runtimeId" : 420 + "runtimeId" : 309 }, { "name" : "minecraft:emerald", "id" : 512, - "runtimeId" : 800 + "runtimeId" : 535 }, { "name" : "minecraft:frame", "id" : 513, - "runtimeId" : 801 + "runtimeId" : 352 }, { "name" : "minecraft:flower_pot", "id" : 514, - "runtimeId" : 803 + "runtimeId" : 537 }, { "name" : "minecraft:empty_map", "id" : 515, - "runtimeId" : 807 + "runtimeId" : 539 }, { "name" : "minecraft:skull", "id" : 516, - "runtimeId" : 531 + "runtimeId" : 540 }, { "name" : "minecraft:carrot_on_a_stick", "id" : 517, - "runtimeId" : 808 + "runtimeId" : 505 }, { "name" : "minecraft:nether_star", "id" : 518, - "runtimeId" : 810 + "runtimeId" : 21 }, { "name" : "minecraft:firework_rocket", "id" : 519, - "runtimeId" : 812 + "runtimeId" : 541 }, { "name" : "minecraft:firework_star", "id" : 520, - "runtimeId" : 1042 + "runtimeId" : 544 }, { "name" : "minecraft:enchanted_book", "id" : 521, - "runtimeId" : 785 + "runtimeId" : 546 }, { "name" : "minecraft:comparator", "id" : 522, - "runtimeId" : 818 + "runtimeId" : 83 }, { "name" : "minecraft:netherbrick", "id" : 523, - "runtimeId" : 729 + "runtimeId" : 548 }, { "name" : "minecraft:quartz", "id" : 524, - "runtimeId" : 546 + "runtimeId" : 504 }, { "name" : "minecraft:tnt_minecart", "id" : 525, - "runtimeId" : 820 + "runtimeId" : 550 }, { "name" : "minecraft:hopper_minecart", "id" : 526, - "runtimeId" : 822 + "runtimeId" : 551 }, { "name" : "minecraft:hopper", "id" : 527, - "runtimeId" : 826 + "runtimeId" : 553 }, { "name" : "minecraft:rabbit_foot", "id" : 528, - "runtimeId" : 908 + "runtimeId" : 99 }, { "name" : "minecraft:rabbit_hide", "id" : 529, - "runtimeId" : 827 + "runtimeId" : 555 }, { "name" : "minecraft:leather_horse_armor", "id" : 530, - "runtimeId" : 830 + "runtimeId" : 556 }, { "name" : "minecraft:iron_horse_armor", "id" : 531, - "runtimeId" : 395 + "runtimeId" : 557 }, { "name" : "minecraft:golden_horse_armor", "id" : 532, - "runtimeId" : 352 + "runtimeId" : 17 }, { "name" : "minecraft:diamond_horse_armor", "id" : 533, - "runtimeId" : 721 + "runtimeId" : 558 }, { "name" : "minecraft:music_disc_13", "id" : 534, - "runtimeId" : 554 + "runtimeId" : 357 }, { "name" : "minecraft:music_disc_cat", "id" : 535, - "runtimeId" : 728 + "runtimeId" : 561 }, { "name" : "minecraft:music_disc_blocks", "id" : 536, - "runtimeId" : 995 + "runtimeId" : 562 }, { "name" : "minecraft:music_disc_chirp", "id" : 537, - "runtimeId" : 833 + "runtimeId" : 38 }, { "name" : "minecraft:music_disc_far", "id" : 538, - "runtimeId" : 998 + "runtimeId" : 564 }, { "name" : "minecraft:music_disc_mall", "id" : 539, - "runtimeId" : 823 + "runtimeId" : 154 }, { "name" : "minecraft:music_disc_mellohi", "id" : 540, - "runtimeId" : 412 + "runtimeId" : 565 }, { "name" : "minecraft:music_disc_stal", "id" : 541, - "runtimeId" : 836 + "runtimeId" : 331 }, { "name" : "minecraft:music_disc_strad", "id" : 542, - "runtimeId" : 838 + "runtimeId" : 119 }, { "name" : "minecraft:music_disc_ward", "id" : 543, - "runtimeId" : 842 + "runtimeId" : 4 }, { "name" : "minecraft:music_disc_11", "id" : 544, - "runtimeId" : 809 + "runtimeId" : 278 }, { "name" : "minecraft:music_disc_wait", "id" : 545, - "runtimeId" : 846 + "runtimeId" : 258 }, { "name" : "minecraft:trident", "id" : 546, - "runtimeId" : 881 + "runtimeId" : 325 }, { "name" : "minecraft:lead", "id" : 547, - "runtimeId" : 711 + "runtimeId" : 567 }, { "name" : "minecraft:name_tag", "id" : 548, - "runtimeId" : 481 + "runtimeId" : 388 }, { "name" : "minecraft:prismarine_crystals", "id" : 549, - "runtimeId" : 813 + "runtimeId" : 566 }, { "name" : "minecraft:mutton", "id" : 550, - "runtimeId" : 848 + "runtimeId" : 524 }, { "name" : "minecraft:cooked_mutton", "id" : 551, - "runtimeId" : 740 + "runtimeId" : 405 }, { "name" : "minecraft:armor_stand", "id" : 552, - "runtimeId" : 376 + "runtimeId" : 571 }, { "name" : "minecraft:spruce_door", "id" : 553, - "runtimeId" : 602 + "runtimeId" : 573 }, { "name" : "minecraft:birch_door", "id" : 554, - "runtimeId" : 465 + "runtimeId" : 574 }, { "name" : "minecraft:jungle_door", "id" : 555, - "runtimeId" : 475 + "runtimeId" : 560 }, { "name" : "minecraft:acacia_door", "id" : 556, - "runtimeId" : 1066 + "runtimeId" : 575 }, { "name" : "minecraft:dark_oak_door", "id" : 557, - "runtimeId" : 761 + "runtimeId" : 578 }, { "name" : "minecraft:chorus_fruit", "id" : 558, - "runtimeId" : 999 + "runtimeId" : 382 }, { "name" : "minecraft:popped_chorus_fruit", "id" : 559, - "runtimeId" : 557 + "runtimeId" : 579 }, { "name" : "minecraft:dragon_breath", "id" : 560, - "runtimeId" : 855 + "runtimeId" : 552 }, { "name" : "minecraft:splash_potion", "id" : 561, - "runtimeId" : 856 + "runtimeId" : 581 }, { "name" : "minecraft:lingering_potion", "id" : 562, - "runtimeId" : 377 + "runtimeId" : 98 }, { "name" : "minecraft:command_block_minecart", "id" : 563, - "runtimeId" : 857 + "runtimeId" : 129 }, { "name" : "minecraft:elytra", "id" : 564, - "runtimeId" : 865 + "runtimeId" : 177 }, { "name" : "minecraft:prismarine_shard", "id" : 565, - "runtimeId" : 867 + "runtimeId" : 518 }, { "name" : "minecraft:shulker_shell", "id" : 566, - "runtimeId" : 637 + "runtimeId" : 582 }, { "name" : "minecraft:banner", "id" : 567, - "runtimeId" : 1057 + "runtimeId" : 584 }, { "name" : "minecraft:totem_of_undying", "id" : 568, - "runtimeId" : 870 + "runtimeId" : 547 }, { "name" : "minecraft:iron_nugget", "id" : 569, - "runtimeId" : 874 + "runtimeId" : 585 }, { "name" : "minecraft:nautilus_shell", "id" : 570, - "runtimeId" : 878 + "runtimeId" : 74 }, { "name" : "minecraft:heart_of_the_sea", "id" : 571, - "runtimeId" : 556 + "runtimeId" : 253 }, { "name" : "minecraft:scute", "id" : 572, - "runtimeId" : 882 + "runtimeId" : 32 }, { "name" : "minecraft:turtle_helmet", "id" : 573, - "runtimeId" : 884 + "runtimeId" : 379 }, { "name" : "minecraft:phantom_membrane", "id" : 574, - "runtimeId" : 886 + "runtimeId" : 572 }, { "name" : "minecraft:crossbow", "id" : 575, - "runtimeId" : 829 + "runtimeId" : 294 }, { "name" : "minecraft:spruce_sign", "id" : 576, - "runtimeId" : 888 + "runtimeId" : 458 }, { "name" : "minecraft:birch_sign", "id" : 577, - "runtimeId" : 795 + "runtimeId" : 588 }, { "name" : "minecraft:jungle_sign", "id" : 578, - "runtimeId" : 776 + "runtimeId" : 591 }, { "name" : "minecraft:acacia_sign", "id" : 579, - "runtimeId" : 891 + "runtimeId" : 569 }, { "name" : "minecraft:dark_oak_sign", "id" : 580, - "runtimeId" : 805 + "runtimeId" : 592 }, { "name" : "minecraft:flower_banner_pattern", "id" : 581, - "runtimeId" : 892 + "runtimeId" : 593 }, { "name" : "minecraft:creeper_banner_pattern", "id" : 582, - "runtimeId" : 895 + "runtimeId" : 8 }, { "name" : "minecraft:skull_banner_pattern", "id" : 583, - "runtimeId" : 635 + "runtimeId" : 187 }, { "name" : "minecraft:mojang_banner_pattern", "id" : 584, - "runtimeId" : 607 + "runtimeId" : 595 }, { "name" : "minecraft:field_masoned_banner_pattern", "id" : 585, - "runtimeId" : 897 + "runtimeId" : 598 }, { "name" : "minecraft:bordure_indented_banner_pattern", "id" : 586, - "runtimeId" : 862 + "runtimeId" : 601 }, { "name" : "minecraft:piglin_banner_pattern", "id" : 587, - "runtimeId" : 588 + "runtimeId" : 603 }, { - "name" : "minecraft:campfire", + "name" : "minecraft:globe_banner_pattern", "id" : 588, - "runtimeId" : 968 + "runtimeId" : 313 }, { - "name" : "minecraft:suspicious_stew", + "name" : "minecraft:campfire", "id" : 589, - "runtimeId" : 463 + "runtimeId" : 97 }, { - "name" : "minecraft:honeycomb", + "name" : "minecraft:suspicious_stew", "id" : 590, - "runtimeId" : 1001 + "runtimeId" : 386 }, { - "name" : "minecraft:honey_bottle", + "name" : "minecraft:honeycomb", "id" : 591, - "runtimeId" : 510 + "runtimeId" : 606 }, { - "name" : "minecraft:camera", + "name" : "minecraft:honey_bottle", "id" : 592, - "runtimeId" : 653 + "runtimeId" : 607 }, { - "name" : "minecraft:compound", + "name" : "minecraft:camera", "id" : 593, - "runtimeId" : 898 + "runtimeId" : 381 }, { - "name" : "minecraft:ice_bomb", + "name" : "minecraft:compound", "id" : 594, - "runtimeId" : 899 + "runtimeId" : 610 }, { - "name" : "minecraft:bleach", + "name" : "minecraft:ice_bomb", "id" : 595, - "runtimeId" : 392 + "runtimeId" : 611 }, { - "name" : "minecraft:rapid_fertilizer", + "name" : "minecraft:bleach", "id" : 596, - "runtimeId" : 879 + "runtimeId" : 429 }, { - "name" : "minecraft:balloon", + "name" : "minecraft:rapid_fertilizer", "id" : 597, - "runtimeId" : 853 + "runtimeId" : 482 }, { - "name" : "minecraft:medicine", + "name" : "minecraft:balloon", "id" : 598, - "runtimeId" : 901 + "runtimeId" : 590 }, { - "name" : "minecraft:sparkler", + "name" : "minecraft:medicine", "id" : 599, - "runtimeId" : 902 + "runtimeId" : 612 }, { - "name" : "minecraft:glow_stick", + "name" : "minecraft:sparkler", "id" : 600, - "runtimeId" : 429 + "runtimeId" : 63 }, { - "name" : "minecraft:lodestone_compass", + "name" : "minecraft:glow_stick", "id" : 601, - "runtimeId" : 909 + "runtimeId" : 616 }, { - "name" : "minecraft:netherite_ingot", + "name" : "minecraft:lodestone_compass", "id" : 602, - "runtimeId" : 911 + "runtimeId" : 618 }, { - "name" : "minecraft:netherite_sword", + "name" : "minecraft:netherite_ingot", "id" : 603, - "runtimeId" : 912 + "runtimeId" : 318 }, { - "name" : "minecraft:netherite_shovel", + "name" : "minecraft:netherite_sword", "id" : 604, - "runtimeId" : 914 + "runtimeId" : 330 }, { - "name" : "minecraft:netherite_pickaxe", + "name" : "minecraft:netherite_shovel", "id" : 605, - "runtimeId" : 487 + "runtimeId" : 620 }, { - "name" : "minecraft:netherite_axe", + "name" : "minecraft:netherite_pickaxe", "id" : 606, - "runtimeId" : 916 + "runtimeId" : 464 }, { - "name" : "minecraft:netherite_hoe", + "name" : "minecraft:netherite_axe", "id" : 607, - "runtimeId" : 918 + "runtimeId" : 625 }, { - "name" : "minecraft:netherite_helmet", + "name" : "minecraft:netherite_hoe", "id" : 608, - "runtimeId" : 586 + "runtimeId" : 626 }, { - "name" : "minecraft:netherite_chestplate", + "name" : "minecraft:netherite_helmet", "id" : 609, - "runtimeId" : 922 + "runtimeId" : 629 }, { - "name" : "minecraft:netherite_leggings", + "name" : "minecraft:netherite_chestplate", "id" : 610, - "runtimeId" : 844 + "runtimeId" : 394 }, { - "name" : "minecraft:netherite_boots", + "name" : "minecraft:netherite_leggings", "id" : 611, - "runtimeId" : 958 + "runtimeId" : 577 }, { - "name" : "minecraft:netherite_scrap", + "name" : "minecraft:netherite_boots", "id" : 612, - "runtimeId" : 923 + "runtimeId" : 153 }, { - "name" : "minecraft:crimson_sign", + "name" : "minecraft:netherite_scrap", "id" : 613, - "runtimeId" : 695 + "runtimeId" : 630 }, { - "name" : "minecraft:warped_sign", + "name" : "minecraft:crimson_sign", "id" : 614, - "runtimeId" : 431 + "runtimeId" : 632 }, { - "name" : "minecraft:crimson_door", + "name" : "minecraft:warped_sign", "id" : 615, - "runtimeId" : 924 + "runtimeId" : 440 }, { - "name" : "minecraft:warped_door", + "name" : "minecraft:crimson_door", "id" : 616, - "runtimeId" : 520 + "runtimeId" : 633 }, { - "name" : "minecraft:warped_fungus_on_a_stick", + "name" : "minecraft:warped_door", "id" : 617, - "runtimeId" : 926 + "runtimeId" : 64 }, { - "name" : "minecraft:chain", + "name" : "minecraft:warped_fungus_on_a_stick", "id" : 618, - "runtimeId" : 927 + "runtimeId" : 445 }, { - "name" : "minecraft:music_disc_pigstep", + "name" : "minecraft:chain", "id" : 619, - "runtimeId" : 837 + "runtimeId" : 442 }, { - "name" : "minecraft:nether_sprouts", + "name" : "minecraft:music_disc_pigstep", "id" : 620, - "runtimeId" : 883 + "runtimeId" : 223 }, { - "name" : "minecraft:soul_campfire", + "name" : "minecraft:nether_sprouts", "id" : 621, - "runtimeId" : 930 + "runtimeId" : 635 }, { - "name" : "minecraft:glow_frame", + "name" : "minecraft:soul_campfire", "id" : 622, - "runtimeId" : 500 + "runtimeId" : 446 }, { - "name" : "minecraft:goat_horn", + "name" : "minecraft:glow_frame", "id" : 623, - "runtimeId" : 760 + "runtimeId" : 198 }, { - "name" : "minecraft:amethyst_shard", + "name" : "minecraft:goat_horn", "id" : 624, - "runtimeId" : 937 + "runtimeId" : 640 }, { - "name" : "minecraft:spyglass", + "name" : "minecraft:amethyst_shard", "id" : 625, - "runtimeId" : 391 + "runtimeId" : 653 }, { - "name" : "minecraft:music_disc_otherside", + "name" : "minecraft:spyglass", "id" : 626, - "runtimeId" : 938 + "runtimeId" : 648 }, { - "name" : "minecraft:boat", + "name" : "minecraft:music_disc_otherside", "id" : 627, - "runtimeId" : 265 + "runtimeId" : 655 }, { - "name" : "minecraft:dye", + "name" : "minecraft:frog_spawn_egg", "id" : 628, + "runtimeId" : 597 + }, + { + "name" : "minecraft:tadpole_spawn_egg", + "id" : 629, + "runtimeId" : 322 + }, + { + "name" : "minecraft:tadpole_bucket", + "id" : 630, "runtimeId" : 262 }, + { + "name" : "minecraft:allay_spawn_egg", + "id" : 631, + "runtimeId" : 657 + }, + { + "name" : "minecraft:firefly_spawn_egg", + "id" : 632, + "runtimeId" : 421 + }, + { + "name" : "minecraft:boat", + "id" : 633, + "runtimeId" : 829 + }, + { + "name" : "minecraft:dye", + "id" : 634, + "runtimeId" : 356 + }, { "name" : "minecraft:banner_pattern", - "id" : 629, - "runtimeId" : 261 + "id" : 635, + "runtimeId" : 830 }, { "name" : "minecraft:spawn_egg", - "id" : 630, - "runtimeId" : 260 + "id" : 636, + "runtimeId" : 131 }, { "name" : "minecraft:end_crystal", - "id" : 631, - "runtimeId" : 1009 + "id" : 637, + "runtimeId" : 831 }, { "name" : "minecraft:glow_berries", - "id" : 632, - "runtimeId" : 258 + "id" : 638, + "runtimeId" : 833 } ] \ No newline at end of file From 3b763ac88554ae97957308c845f5cda5c64170ac Mon Sep 17 00:00:00 2001 From: Gabriel8579 Date: Fri, 11 Feb 2022 15:49:42 -0300 Subject: [PATCH 362/394] fix: fix nether issues --- src/main/java/cn/nukkit/level/format/anvil/Anvil.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java index 15d11ad0e56..048de10adad 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java +++ b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java @@ -160,10 +160,10 @@ public AsyncTask requestChunkTask(int x, int z) throws ChunkException { BinaryStream stream = ThreadCache.binaryStream.get().reset(); // Build up 4 SubChunks for the extended negative height - for (int i = 0; i < EXTENDED_NEGATIVE_SUB_CHUNKS; i++) { - stream.putByte((byte) 8); // SubChunk version - stream.putByte((byte) 0); // 0 layers - } +// for (int i = 0; i < EXTENDED_NEGATIVE_SUB_CHUNKS; i++) { +// stream.putByte((byte) 8); // SubChunk version +// stream.putByte((byte) 0); // 0 layers +// } for (int i = 0; i < count; i++) { sections[i].writeTo(stream); @@ -172,7 +172,8 @@ public AsyncTask requestChunkTask(int x, int z) throws ChunkException { stream.put(biomePalettes); stream.putByte((byte) 0); // Border blocks stream.put(blockEntities); - this.getLevel().chunkRequestCallback(timestamp, x, z, EXTENDED_NEGATIVE_SUB_CHUNKS + count, stream.getBuffer()); + //this.getLevel().chunkRequestCallback(timestamp, x, z, EXTENDED_NEGATIVE_SUB_CHUNKS + count, stream.getBuffer()); + this.getLevel().chunkRequestCallback(timestamp, x, z, count, stream.getBuffer()); return null; } From b64c0512a03c0453b97a366056218a93d72bb78d Mon Sep 17 00:00:00 2001 From: Gabriel8579 Date: Fri, 11 Feb 2022 16:02:15 -0300 Subject: [PATCH 363/394] fix: fix nether issues --- .../cn/nukkit/level/format/anvil/Anvil.java | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java index 048de10adad..314e12e84ee 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java +++ b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java @@ -159,11 +159,13 @@ public AsyncTask requestChunkTask(int x, int z) throws ChunkException { byte[] biomePalettes = this.convert2DBiomesTo3D(chunk); BinaryStream stream = ThreadCache.binaryStream.get().reset(); - // Build up 4 SubChunks for the extended negative height -// for (int i = 0; i < EXTENDED_NEGATIVE_SUB_CHUNKS; i++) { -// stream.putByte((byte) 8); // SubChunk version -// stream.putByte((byte) 0); // 0 layers -// } + if (chunk.getProvider().getLevel().getDimension() == Level.DIMENSION_OVERWORLD) { + //Build up 4 SubChunks for the extended negative height + for (int i = 0; i < EXTENDED_NEGATIVE_SUB_CHUNKS; i++) { + stream.putByte((byte) 8); // SubChunk version + stream.putByte((byte) 0); // 0 layers + } + } for (int i = 0; i < count; i++) { sections[i].writeTo(stream); @@ -172,8 +174,11 @@ public AsyncTask requestChunkTask(int x, int z) throws ChunkException { stream.put(biomePalettes); stream.putByte((byte) 0); // Border blocks stream.put(blockEntities); - //this.getLevel().chunkRequestCallback(timestamp, x, z, EXTENDED_NEGATIVE_SUB_CHUNKS + count, stream.getBuffer()); - this.getLevel().chunkRequestCallback(timestamp, x, z, count, stream.getBuffer()); + if (chunk.getProvider().getLevel().getDimension() == Level.DIMENSION_OVERWORLD) { + this.getLevel().chunkRequestCallback(timestamp, x, z, EXTENDED_NEGATIVE_SUB_CHUNKS + count, stream.getBuffer()); + } else { + this.getLevel().chunkRequestCallback(timestamp, x, z, count, stream.getBuffer()); + } return null; } From 7ae003282c46b0dce72c1532c5ba85c1b84c27be Mon Sep 17 00:00:00 2001 From: Gabriel8579 Date: Sat, 12 Feb 2022 15:27:46 -0300 Subject: [PATCH 364/394] fix: fix skull being replaced with an UPDATE! block --- src/main/java/cn/nukkit/block/BlockSkull.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/block/BlockSkull.java b/src/main/java/cn/nukkit/block/BlockSkull.java index f8d06fbc165..dc75bd55597 100644 --- a/src/main/java/cn/nukkit/block/BlockSkull.java +++ b/src/main/java/cn/nukkit/block/BlockSkull.java @@ -5,6 +5,7 @@ */ import cn.nukkit.Player; +import cn.nukkit.api.DeprecationDetails; import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; @@ -31,13 +32,15 @@ @PowerNukkitDifference(since = "1.4.0.0-PN", info = "Implements BlockEntityHolder only in PowerNukkit") @PowerNukkitDifference(info = "Implements RedstoneComponent.", since = "1.4.0.0-PN") public class BlockSkull extends BlockTransparentMeta implements RedstoneComponent, BlockEntityHolder { + @Deprecated + @DeprecationDetails(since = "FUTURE", reason = "Mojang removed from Minecraft 1.18.10") @PowerNukkitOnly @Since("1.5.0.0-PN") public static final BooleanBlockProperty NO_DROP = new BooleanBlockProperty("no_drop_bit", false); @PowerNukkitOnly @Since("1.5.0.0-PN") - public static final BlockProperties PROPERTIES = new BlockProperties(FACING_DIRECTION, NO_DROP); + public static final BlockProperties PROPERTIES = new BlockProperties(FACING_DIRECTION); public BlockSkull() { this(0); From 0bdd3abdae3dc6bbe0e598bb71b1c0480ed0017c Mon Sep 17 00:00:00 2001 From: Gabriel8579 Date: Mon, 14 Feb 2022 00:15:01 -0300 Subject: [PATCH 365/394] fix: fixes smithing table recipes --- .../cn/nukkit/inventory/CraftingManager.java | 115 ++++++++---------- .../java/cn/nukkit/inventory/RecipeType.java | 2 +- .../cn/nukkit/inventory/SmithingRecipe.java | 10 +- .../network/protocol/CraftingDataPacket.java | 17 ++- 4 files changed, 73 insertions(+), 71 deletions(-) diff --git a/src/main/java/cn/nukkit/inventory/CraftingManager.java b/src/main/java/cn/nukkit/inventory/CraftingManager.java index f4a32ba1b42..6098b7afa00 100644 --- a/src/main/java/cn/nukkit/inventory/CraftingManager.java +++ b/src/main/java/cn/nukkit/inventory/CraftingManager.java @@ -45,25 +45,31 @@ public class CraftingManager { @Since("1.5.0.0-PN") public static DataPacket packet = null; - - + + protected final Map> shapedRecipes = new Int2ObjectOpenHashMap<>(); public final Map furnaceRecipes = new Int2ObjectOpenHashMap<>(); - @PowerNukkitOnly public final Map blastFurnaceRecipes = new Int2ObjectOpenHashMap<>(); - @PowerNukkitOnly public final Map smokerRecipes = new Int2ObjectOpenHashMap<>(); - @PowerNukkitOnly public final Map campfireRecipes = new Int2ObjectOpenHashMap<>(); + @PowerNukkitOnly + public final Map blastFurnaceRecipes = new Int2ObjectOpenHashMap<>(); + @PowerNukkitOnly + public final Map smokerRecipes = new Int2ObjectOpenHashMap<>(); + @PowerNukkitOnly + public final Map campfireRecipes = new Int2ObjectOpenHashMap<>(); - @Since("1.4.0.0-PN") public final Map multiRecipes = new HashMap<>(); + @Since("1.4.0.0-PN") + public final Map multiRecipes = new HashMap<>(); public final Map brewingRecipes = new Int2ObjectOpenHashMap<>(); public final Map containerRecipes = new Int2ObjectOpenHashMap<>(); - @PowerNukkitOnly public final Map stonecutterRecipes = new Int2ObjectOpenHashMap<>(); + @PowerNukkitOnly + public final Map stonecutterRecipes = new Int2ObjectOpenHashMap<>(); private static int RECIPE_COUNT = 0; protected final Map> shapelessRecipes = new Int2ObjectOpenHashMap<>(); - @PowerNukkitOnly protected final Map> cartographyRecipes = new Int2ObjectOpenHashMap<>(); - + @PowerNukkitOnly + protected final Map> cartographyRecipes = new Int2ObjectOpenHashMap<>(); + private final Int2ObjectOpenHashMap> smithingRecipes = new Int2ObjectOpenHashMap<>(); public static final Comparator recipeComparator = (i1, i2) -> { @@ -77,7 +83,7 @@ public class CraftingManager { return -1; } else return Integer.compare(i1.getCount(), i2.getCount()); }; - + @PowerNukkitOnly @Since("1.4.0.0-PN") public static DataPacket getCraftingPacket() { @@ -85,10 +91,8 @@ public static DataPacket getCraftingPacket() { } public CraftingManager() { - registerSmithingRecipes(); - Config recipesConfig = new Config(Config.JSON); - try(InputStream recipesStream = Server.class.getClassLoader().getResourceAsStream("recipes.json")) { + try (InputStream recipesStream = Server.class.getClassLoader().getResourceAsStream("recipes.json")) { recipesConfig.load(Objects.requireNonNull(recipesStream, "Unable to find recipes.json")); } catch (IOException e) { throw new UncheckedIOException(e); @@ -107,27 +111,6 @@ public CraftingManager() { log.info("Loaded {} recipes.", this.recipes.size()); } - - private void registerSmithingRecipes() { - Item ingot = Item.get(ItemID.NETHERITE_INGOT); - Int2IntMap ids = new Int2IntOpenHashMap(); - ids.put(ItemID.DIAMOND_HELMET, ItemID.NETHERITE_HELMET); - ids.put(ItemID.DIAMOND_CHESTPLATE, ItemID.NETHERITE_CHESTPLATE); - ids.put(ItemID.DIAMOND_LEGGINGS, ItemID.NETHERITE_LEGGINGS); - ids.put(ItemID.DIAMOND_BOOTS, ItemID.NETHERITE_BOOTS); - ids.put(ItemID.DIAMOND_SWORD, ItemID.NETHERITE_SWORD); - ids.put(ItemID.DIAMOND_PICKAXE, ItemID.NETHERITE_PICKAXE); - ids.put(ItemID.DIAMOND_HOE, ItemID.NETHERITE_HOE); - ids.put(ItemID.DIAMOND_SHOVEL, ItemID.NETHERITE_SHOVEL); - ids.put(ItemID.DIAMOND_AXE, ItemID.NETHERITE_AXE); - ids.int2IntEntrySet().forEach(e-> - new SmithingRecipe( - Item.get(e.getIntKey()).createFuzzyCraftingRecipe(), - ingot, - Item.get(e.getIntValue()) - ).registerToCraftingManager(this) - ); - } @SuppressWarnings("unchecked") private void loadRecipes(Config config) { @@ -145,8 +128,9 @@ private void loadRecipes(Config config) { craftingBlock = "shulker_box"; } if (!"crafting_table".equals(craftingBlock) && !"stonecutter".equals(craftingBlock) - && !"cartography_table".equalsIgnoreCase(craftingBlock) && !"shulker_box".equalsIgnoreCase(craftingBlock)) { - // Ignore other recipes than crafting table, stonecutter and cartography table + && !"cartography_table".equalsIgnoreCase(craftingBlock) && !"shulker_box".equalsIgnoreCase(craftingBlock) + && !"smithing_table".equalsIgnoreCase(craftingBlock)) { + // Ignore other recipes than crafting table, stonecutter, smithing table and cartography table continue; } // TODO: handle multiple result items @@ -186,6 +170,9 @@ private void loadRecipes(Config config) { case "cartography_table": this.registerRecipe(new CartographyRecipe(recipeId, priority, result, sorted)); break; + case "smithing_table": + this.registerRecipe(new SmithingRecipe(recipeId, priority, sorted, result)); + break; } break; case 1: @@ -290,9 +277,9 @@ private void loadRecipes(Config config) { int toPotionMeta = ((Number) potionMix.get("outputMeta")).intValue(); registerBrewingRecipe(new BrewingRecipe( - Item.fromString(fromPotionId+":"+fromPotionMeta), - Item.fromString(ingredient+":"+ingredientMeta), - Item.fromString(toPotionId+":"+toPotionMeta) + Item.fromString(fromPotionId + ":" + fromPotionMeta), + Item.fromString(ingredient + ":" + ingredientMeta), + Item.fromString(toPotionId + ":" + toPotionMeta) )); } @@ -305,7 +292,7 @@ private void loadRecipes(Config config) { registerContainerRecipe(new ContainerRecipe(Item.fromString(fromItemId), Item.fromString(ingredient), Item.fromString(toItemId))); } - + // Allow to rename without crafting registerCartographyRecipe(new CartographyRecipe(Item.get(ItemID.EMPTY_MAP), Collections.singletonList(Item.get(ItemID.EMPTY_MAP)))); registerCartographyRecipe(new CartographyRecipe(Item.get(ItemID.EMPTY_MAP, 2), Collections.singletonList(Item.get(ItemID.EMPTY_MAP, 2)))); @@ -320,7 +307,7 @@ private Item parseRecipeItem(Map data) { boolean fuzzy = data.containsKey("fuzzy") && Boolean.parseBoolean(data.get("fuzzy").toString()); byte[] nbtBytes = nbt != null ? Base64.getDecoder().decode(nbt) : EmptyArrays.EMPTY_BYTES; - int count = data.containsKey("count")? ((Number)data.get("count")).intValue() : 1; + int count = data.containsKey("count") ? ((Number) data.get("count")).intValue() : 1; Item item; if (data.containsKey("blockState")) { @@ -342,7 +329,7 @@ private Item parseRecipeItem(Map data) { if (Stream.of( "copper", "deepslate", "deepslate_slab", "copper_slab", "copper_stairs" - ).anyMatch(blockStateId.split(";", 2)[0]::endsWith)) { + ).anyMatch(blockStateId.split(";", 2)[0]::endsWith)) { return Item.get(BlockID.AIR); } try { @@ -460,7 +447,7 @@ public void rebuildPacket() { pk.addShapelessRecipe((ShapelessRecipe) recipe); } } - + for (Map map : cartographyRecipes.values()) { for (CartographyRecipe recipe : map.values()) { pk.addCartographyRecipe(recipe); @@ -614,15 +601,15 @@ public void registerRecipe(Recipe recipe) { public void registerCartographyRecipe(CartographyRecipe recipe) { List list = recipe.getIngredientList(); list.sort(recipeComparator); - + UUID hash = getMultiItemHash(list); - + int resultHash = getItemHash(recipe.getResult()); Map map = cartographyRecipes.computeIfAbsent(resultHash, k -> new HashMap<>()); - + map.put(hash, recipe); } - + public void registerShapelessRecipe(ShapelessRecipe recipe) { List list = recipe.getIngredientsAggregate(); @@ -633,7 +620,7 @@ public void registerShapelessRecipe(ShapelessRecipe recipe) { map.put(hash, recipe); } - + @PowerNukkitOnly @Since("1.4.0.0-PN") public void registerSmithingRecipe(@Nonnull SmithingRecipe recipe) { @@ -663,14 +650,14 @@ public SmithingRecipe matchSmithingRecipe(Item equipment, Item ingredient) { public SmithingRecipe matchSmithingRecipe(@Nonnull List inputList) { inputList.sort(recipeComparator); UUID inputHash = getMultiItemHash(inputList); - - return smithingRecipes.values().stream().flatMap(map-> map.entrySet().stream()) - .filter(entry-> entry.getKey().equals(inputHash)) + + return smithingRecipes.values().stream().flatMap(map -> map.entrySet().stream()) + .filter(entry -> entry.getKey().equals(inputHash)) .map(Map.Entry::getValue) - .findFirst().orElseGet(()-> - smithingRecipes.values().stream().flatMap(map-> map.values().stream()) - .filter(recipe -> recipe.matchItems(inputList)) - .findFirst().orElse(null) + .findFirst().orElseGet(() -> + smithingRecipes.values().stream().flatMap(map -> map.values().stream()) + .filter(recipe -> recipe.matchItems(inputList)) + .findFirst().orElse(null) ); } @@ -691,7 +678,7 @@ public SmithingRecipe matchSmithingRecipe(@Nonnull List inputList, @Nonnul if (!this.smithingRecipes.containsKey(outputHash)) { return null; } - + inputList.sort(recipeComparator); UUID inputHash = getMultiItemHash(inputList); @@ -759,31 +746,31 @@ public StonecutterRecipe matchStonecutterRecipe(Item output) { @PowerNukkitOnly public CartographyRecipe matchCartographyRecipe(List inputList, Item primaryOutput, List extraOutputList) { int outputHash = getItemHash(primaryOutput); - + if (cartographyRecipes.containsKey(outputHash)) { inputList.sort(recipeComparator); - + UUID inputHash = getMultiItemHash(inputList); - + Map recipes = cartographyRecipes.get(outputHash); - + if (recipes == null) { return null; } - + CartographyRecipe recipe = recipes.get(inputHash); - + if (recipe != null && recipe.matchItems(inputList, extraOutputList) || matchItemsAccumulation(recipe, inputList, primaryOutput, extraOutputList)) { return recipe; } - + for (CartographyRecipe cartographyRecipe : recipes.values()) { if (cartographyRecipe.matchItems(inputList, extraOutputList) || matchItemsAccumulation(cartographyRecipe, inputList, primaryOutput, extraOutputList)) { return cartographyRecipe; } } } - + return null; } diff --git a/src/main/java/cn/nukkit/inventory/RecipeType.java b/src/main/java/cn/nukkit/inventory/RecipeType.java index b76d97c0fc3..27a983fd400 100644 --- a/src/main/java/cn/nukkit/inventory/RecipeType.java +++ b/src/main/java/cn/nukkit/inventory/RecipeType.java @@ -21,7 +21,7 @@ public enum RecipeType { @PowerNukkitOnly STONECUTTER(0), @PowerNukkitOnly CARTOGRAPHY(0), @PowerNukkitOnly REPAIR(-1), - @PowerNukkitOnly @Since("1.4.0.0-PN") SMITHING(-1) + @PowerNukkitOnly @Since("1.4.0.0-PN") SMITHING(0) ; @PowerNukkitOnly public final int networkType; diff --git a/src/main/java/cn/nukkit/inventory/SmithingRecipe.java b/src/main/java/cn/nukkit/inventory/SmithingRecipe.java index 2247014087f..ce5fbad2da2 100644 --- a/src/main/java/cn/nukkit/inventory/SmithingRecipe.java +++ b/src/main/java/cn/nukkit/inventory/SmithingRecipe.java @@ -24,6 +24,7 @@ import lombok.ToString; import java.util.ArrayList; +import java.util.Collection; import java.util.Collections; import java.util.List; @@ -36,7 +37,7 @@ @PowerNukkitOnly @Since("1.4.0.0-PN") @ToString -public class SmithingRecipe implements Recipe { +public class SmithingRecipe extends ShapelessRecipe { private final Item equipment; private final Item ingredient; private final Item result; @@ -45,9 +46,10 @@ public class SmithingRecipe implements Recipe { @PowerNukkitOnly @Since("1.4.0.0-PN") - public SmithingRecipe(Item equipment, Item ingredient, Item result) { - this.equipment = equipment; - this.ingredient = ingredient; + public SmithingRecipe(String recipeId, int priority, Collection ingredients, Item result) { + super(recipeId, priority, result, ingredients); + this.equipment = (Item) ingredients.toArray()[0]; + this.ingredient = (Item) ingredients.toArray()[1]; this.result = result; ArrayList aggregation = new ArrayList<>(2); diff --git a/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java b/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java index 9ba6c4d1da8..5cd5fa3c619 100644 --- a/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java @@ -1,7 +1,7 @@ package cn.nukkit.network.protocol; -import cn.nukkit.api.Since; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.inventory.*; import cn.nukkit.item.Item; import lombok.ToString; @@ -26,6 +26,7 @@ public class CraftingDataPacket extends DataPacket { public static final String CRAFTING_TAG_CAMPFIRE = "campfire"; public static final String CRAFTING_TAG_BLAST_FURNACE = "blast_furnace"; public static final String CRAFTING_TAG_SMOKER = "smoker"; + public static final String CRAFTING_TAG_SMITHING_TABLE = "smithing_table"; private List entries = new ArrayList<>(); private final List brewingEntries = new ArrayList<>(); @@ -118,6 +119,7 @@ public void encode() { case SHAPELESS: case CARTOGRAPHY: case SHULKER_BOX: + case SMITHING: ShapelessRecipe shapeless = (ShapelessRecipe) recipe; this.putString(shapeless.getRecipeId()); List ingredients = shapeless.getIngredientList(); @@ -128,7 +130,18 @@ public void encode() { this.putUnsignedVarInt(1); this.putSlot(shapeless.getResult(), true); this.putUUID(shapeless.getId()); - this.putString(recipe.getType() == RecipeType.CARTOGRAPHY ? CRAFTING_TAG_CARTOGRAPHY_TABLE : CRAFTING_TAG_CRAFTING_TABLE); + switch (recipe.getType()) { + case CARTOGRAPHY: + this.putString(CRAFTING_TAG_CARTOGRAPHY_TABLE); + break; + case SHAPELESS: + case SHULKER_BOX: + this.putString(CRAFTING_TAG_CRAFTING_TABLE); + break; + case SMITHING: + this.putString(CRAFTING_TAG_SMITHING_TABLE); + break; + } this.putVarInt(shapeless.getPriority()); this.putUnsignedVarInt(recipeNetworkId++); break; From bf6cce6e96199387771960c6b0cbdcd107a3efbc Mon Sep 17 00:00:00 2001 From: GoodLucky777 <43497313+GoodLucky777@users.noreply.github.com> Date: Fri, 25 Feb 2022 10:41:38 +0900 Subject: [PATCH 366/394] Add /allowlist and update TranslationContainer --- .../command/defaults/WhitelistCommand.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/java/cn/nukkit/command/defaults/WhitelistCommand.java b/src/main/java/cn/nukkit/command/defaults/WhitelistCommand.java index da06292064c..a4f560da794 100644 --- a/src/main/java/cn/nukkit/command/defaults/WhitelistCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/WhitelistCommand.java @@ -15,7 +15,7 @@ public class WhitelistCommand extends VanillaCommand { public WhitelistCommand(String name) { - super(name, "%nukkit.command.whitelist.description", "%commands.whitelist.usage"); + super(name, "%nukkit.command.whitelist.description", "%commands.whitelist.usage", new String[]{"allowlist"}); // In Minecraft Bedrock v1.18.10 the whitelist was renamed to allowlist this.setPermission( "nukkit.command.whitelist.reload;" + "nukkit.command.whitelist.enable;" + @@ -52,17 +52,17 @@ public boolean execute(CommandSender sender, String commandLabel, String[] args) switch (args[0].toLowerCase()) { case "reload": sender.getServer().reloadWhitelist(); - Command.broadcastCommandMessage(sender, new TranslationContainer("commands.whitelist.reloaded")); + Command.broadcastCommandMessage(sender, new TranslationContainer("commands.allowlist.reloaded")); return true; case "on": sender.getServer().setPropertyBoolean("white-list", true); - Command.broadcastCommandMessage(sender, new TranslationContainer("commands.whitelist.enabled")); + Command.broadcastCommandMessage(sender, new TranslationContainer("commands.allowlist.enabled")); return true; case "off": sender.getServer().setPropertyBoolean("white-list", false); - Command.broadcastCommandMessage(sender, new TranslationContainer("commands.whitelist.disabled")); + Command.broadcastCommandMessage(sender, new TranslationContainer("commands.allowlist.disabled")); return true; case "list": @@ -72,17 +72,17 @@ public boolean execute(CommandSender sender, String commandLabel, String[] args) result.append(player).append(", "); ++count; } - sender.sendMessage(new TranslationContainer("commands.whitelist.list", String.valueOf(count), String.valueOf(count))); + sender.sendMessage(new TranslationContainer("commands.allowlist.list", String.valueOf(count), String.valueOf(count))); sender.sendMessage(result.length() > 0 ? result.substring(0, result.length() - 2) : ""); return true; case "add": - sender.sendMessage(new TranslationContainer("commands.generic.usage", "%commands.whitelist.add.usage")); + sender.sendMessage(new TranslationContainer("commands.generic.usage", this.usageMessage)); return true; case "remove": - sender.sendMessage(new TranslationContainer("commands.generic.usage", "%commands.whitelist.remove.usage")); + sender.sendMessage(new TranslationContainer("commands.generic.usage", this.usageMessage)); return true; } } else if (args.length == 2) { @@ -92,12 +92,12 @@ public boolean execute(CommandSender sender, String commandLabel, String[] args) switch (args[0].toLowerCase()) { case "add": sender.getServer().getOfflinePlayer(args[1]).setWhitelisted(true); - Command.broadcastCommandMessage(sender, new TranslationContainer("commands.whitelist.add.success", args[1])); + Command.broadcastCommandMessage(sender, new TranslationContainer("commands.allowlist.add.success", args[1])); return true; case "remove": sender.getServer().getOfflinePlayer(args[1]).setWhitelisted(false); - Command.broadcastCommandMessage(sender, new TranslationContainer("commands.whitelist.remove.success", args[1])); + Command.broadcastCommandMessage(sender, new TranslationContainer("commands.allowlist.remove.success", args[1])); return true; } From da983b714a7deb140623e391bb003747f73cd003 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 6 Apr 2022 16:40:54 -0300 Subject: [PATCH 367/394] Temporarily remove --no-transfer-progress --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d532ff6fafb..a385c66db05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ WORKDIR /src COPY --from=prepare /src /src # Build the source -RUN mvn --no-transfer-progress -Dmaven.javadoc.skip=true clean package +RUN mvn -Dmaven.javadoc.skip=true clean package # Use OpenJDK JRE image to runtime FROM openjdk:8-jre-slim AS run From bb28be183a30a26d91dfc2f7ac0df097532733b4 Mon Sep 17 00:00:00 2001 From: TobidieTopfpflanze Date: Fri, 15 Apr 2022 15:42:05 +0200 Subject: [PATCH 368/394] Fix stair upsidedown bug --- src/main/java/cn/nukkit/block/BlockStairs.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/cn/nukkit/block/BlockStairs.java b/src/main/java/cn/nukkit/block/BlockStairs.java index 559b5845a6b..6ac1d8a6300 100644 --- a/src/main/java/cn/nukkit/block/BlockStairs.java +++ b/src/main/java/cn/nukkit/block/BlockStairs.java @@ -74,7 +74,10 @@ public boolean place(@Nonnull Item item, @Nonnull Block block, @Nonnull Block ta if ((fy > 0.5 && face != BlockFace.UP) || face == BlockFace.DOWN) { setUpsideDown(true); + } else { + setUpsideDown(false); } + this.getLevel().setBlock(block, this, true, true); return true; From 1a8cf7b4efa3539bf6d0826f067867ec4c79b7c0 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 18 Apr 2022 17:36:20 -0300 Subject: [PATCH 369/394] Fix ARM64 docker builds using dockerx multi-arch --- Dockerfile | 39 ++++++++++++++++------ docker_arm64.Dockerfile | 33 ------------------ docker_pterodactyl-image-java11.Dockerfile | 16 ++++----- docker_pterodactyl-image-java8.Dockerfile | 16 ++++----- 4 files changed, 41 insertions(+), 63 deletions(-) delete mode 100644 docker_arm64.Dockerfile diff --git a/Dockerfile b/Dockerfile index a385c66db05..e2d0533541b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,9 @@ # Requires Docker v17.05 # Prepare the source -FROM alpine/git:v2.26.2 AS prepare +FROM maven:3.8-jdk-8-slim as build + +RUN DEBIAN_FRONTEND=noninteractive apt update && DEBIAN_FRONTEND=noninteractive apt install -y git && rm -rf /var/lib/apt/lists/* # Copy the source WORKDIR /src @@ -15,18 +17,13 @@ COPY src/main/resources /src/src/main/resources COPY src/test/java/cn /src/src/test/java/cn COPY src/test/resources /src/src/test/resources +COPY .git /src/.git + # Update the language submodule RUN if [ -z "$(ls -A /src/src/main/resources/lang)" ]; then git submodule update --init; fi -# Prepare to build the source -FROM maven:3.6-jdk-8-alpine as build - -# Copy the source -WORKDIR /src -COPY --from=prepare /src /src - # Build the source -RUN mvn -Dmaven.javadoc.skip=true clean package +RUN mvn --no-transfer-progress -Dmaven.javadoc.skip=true clean package # Use OpenJDK JRE image to runtime FROM openjdk:8-jre-slim AS run @@ -58,4 +55,26 @@ USER minecraft:minecraft WORKDIR /data # Run app -CMD [ "java", "-jar", "/app/powernukkit.jar" ] +CMD [ "java", + "-XX:+UseG1GC", + "-XX:+ParallelRefProcEnabled", + "-XX:MaxGCPauseMillis=200", + "-XX:+UnlockExperimentalVMOptions", + "-XX:+DisableExplicitGC", + "-XX:+AlwaysPreTouch", + "-XX:G1NewSizePercent=30", + "-XX:G1MaxNewSizePercent=40", + "-XX:G1HeapRegionSize=8M", + "-XX:G1ReservePercent=20", + "-XX:G1HeapWastePercent=5", + "-XX:G1MixedGCCountTarget=4", + "-XX:InitiatingHeapOccupancyPercent=15", + "-XX:G1MixedGCLiveThresholdPercent=90", + "-XX:G1RSetUpdatingPauseTimePercent=5", + "-XX:SurvivorRatio=32", + "-XX:+PerfDisableSharedMem", + "-XX:MaxTenuringThreshold=1", + "-Dusing.aikars.flags=https://mcflags.emc.gs", + "-Daikars.new.flags=true", + "-jar", "/app/powernukkit.jar" +] diff --git a/docker_arm64.Dockerfile b/docker_arm64.Dockerfile deleted file mode 100644 index 8c8ea2eec01..00000000000 --- a/docker_arm64.Dockerfile +++ /dev/null @@ -1,33 +0,0 @@ -FROM arm64v8/openjdk:8-jdk-slim AS build -WORKDIR /usr/local/src/nukkit -COPY src /usr/local/src/nukkit/src -COPY mvn* pom.xml /usr/local/src/nukkit/ -COPY .git /usr/local/src/nukkit/.git -COPY .mvn /usr/local/src/nukkit/.mvn -COPY .gitmodules /usr/local/src/nukkit/.gitmodules -RUN apt-get -y update && \ - apt-get install -y build-essential git maven && \ - git submodule update --init && \ - mvn clean package - -FROM arm64v8/openjdk:8-jre-slim AS run -LABEL maintainer="Chris Fordham " -COPY --from=build /usr/local/src/nukkit/target/nukkit-1.0-SNAPSHOT.jar /opt/nukkit/nukkit.jar -COPY release-script/nukkit.default.yml /etc/opt/nukkit/nukkit.yml -RUN useradd --user-group \ - --no-create-home \ - --home-dir /var/opt/nukkit \ - --shell /usr/sbin/nologin \ - minecraft && \ - mkdir -p /var/opt/nukkit && \ - chown -R minecraft /opt/nukkit /var/opt/nukkit /etc/opt/nukkit/nukkit.yml && \ - ln -sfv /etc/opt/nukkit/nukkit.yml /var/opt/nukkit/nukkit.yml && \ - apt-get -y update && \ - apt-get -y install lsof && \ - rm -rf /var/lib/apt/lists/* -USER minecraft -VOLUME /etc/opt/nukkit /var/opt/nukkit /opt/nukkit -EXPOSE 19132 -WORKDIR /var/opt/nukkit -ENTRYPOINT ["java"] -CMD [ "-jar", "/opt/nukkit/nukkit.jar" ] diff --git a/docker_pterodactyl-image-java11.Dockerfile b/docker_pterodactyl-image-java11.Dockerfile index bb75d1e4c04..f885055a70b 100644 --- a/docker_pterodactyl-image-java11.Dockerfile +++ b/docker_pterodactyl-image-java11.Dockerfile @@ -1,8 +1,11 @@ # # Get the pterodacty egg from https://github.com/PowerNukkit/PowerNukkit-Pterodactyl-Egg! # + # Prepare the source -FROM alpine/git:v2.26.2 AS prepare +FROM maven:3.8-jdk-8-slim as build + +RUN DEBIAN_FRONTEND=noninteractive apt update && DEBIAN_FRONTEND=noninteractive apt install -y git && rm -rf /var/lib/apt/lists/* # Copy the source WORKDIR /src @@ -19,18 +22,11 @@ COPY .git /src/.git # Update the language submodule RUN if [ -z "$(ls -A /src/src/main/resources/lang)" ]; then git submodule update --init; fi -# Prepare to build the source -FROM maven:3.8.1-jdk-11-slim as build - -# Copy the source -WORKDIR /src -COPY --from=prepare /src /src - # Build the source -RUN mvn -Dmaven.javadoc.skip=true -Denforcer.skip=true --no-transfer-progress clean package +RUN mvn --no-transfer-progress -Dmaven.javadoc.skip=true clean package # Final image -FROM quay.io/pterodactyl/core:java-11 as pterodactyl +FROM ghcr.io/pterodactyl/yolks:java_11 as pterodactyl LABEL author="Josรฉ Roberto de Araรบjo Jรบnior" maintainer="joserobjr@powernukkit.org" diff --git a/docker_pterodactyl-image-java8.Dockerfile b/docker_pterodactyl-image-java8.Dockerfile index 8c153361219..cd00ca7a5ef 100644 --- a/docker_pterodactyl-image-java8.Dockerfile +++ b/docker_pterodactyl-image-java8.Dockerfile @@ -1,8 +1,11 @@ # # Get the pterodacty egg from https://github.com/PowerNukkit/PowerNukkit-Pterodactyl-Egg! # + # Prepare the source -FROM alpine/git:v2.26.2 AS prepare +FROM maven:3.8-jdk-8-slim as build + +RUN DEBIAN_FRONTEND=noninteractive apt update && DEBIAN_FRONTEND=noninteractive apt install -y git && rm -rf /var/lib/apt/lists/* # Copy the source WORKDIR /src @@ -19,18 +22,11 @@ COPY .git /src/.git # Update the language submodule RUN if [ -z "$(ls -A /src/src/main/resources/lang)" ]; then git submodule update --init; fi -# Prepare to build the source -FROM maven:3.6-jdk-8-alpine as build - -# Copy the source -WORKDIR /src -COPY --from=prepare /src /src - # Build the source -RUN mvn -Dmaven.javadoc.skip=true --no-transfer-progress clean package +RUN mvn --no-transfer-progress -Dmaven.javadoc.skip=true clean package # Final image -FROM quay.io/pterodactyl/core:java as pterodactyl +FROM ghcr.io/pterodactyl/yolks:java_8 as pterodactyl LABEL author="Josรฉ Roberto de Araรบjo Jรบnior" maintainer="joserobjr@powernukkit.org" From 71e445759538c8d262db1db2a423c7cbf1a9d762 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 18 Apr 2022 17:43:59 -0300 Subject: [PATCH 370/394] Fix docker build error --- Dockerfile | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/Dockerfile b/Dockerfile index e2d0533541b..767bcec3b40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -55,26 +55,4 @@ USER minecraft:minecraft WORKDIR /data # Run app -CMD [ "java", - "-XX:+UseG1GC", - "-XX:+ParallelRefProcEnabled", - "-XX:MaxGCPauseMillis=200", - "-XX:+UnlockExperimentalVMOptions", - "-XX:+DisableExplicitGC", - "-XX:+AlwaysPreTouch", - "-XX:G1NewSizePercent=30", - "-XX:G1MaxNewSizePercent=40", - "-XX:G1HeapRegionSize=8M", - "-XX:G1ReservePercent=20", - "-XX:G1HeapWastePercent=5", - "-XX:G1MixedGCCountTarget=4", - "-XX:InitiatingHeapOccupancyPercent=15", - "-XX:G1MixedGCLiveThresholdPercent=90", - "-XX:G1RSetUpdatingPauseTimePercent=5", - "-XX:SurvivorRatio=32", - "-XX:+PerfDisableSharedMem", - "-XX:MaxTenuringThreshold=1", - "-Dusing.aikars.flags=https://mcflags.emc.gs", - "-Daikars.new.flags=true", - "-jar", "/app/powernukkit.jar" -] +CMD [ "java", "-XX:+UseG1GC", "-XX:+ParallelRefProcEnabled", "-XX:MaxGCPauseMillis=200", "-XX:+UnlockExperimentalVMOptions", "-XX:+DisableExplicitGC", "-XX:+AlwaysPreTouch", "-XX:G1NewSizePercent=30", "-XX:G1MaxNewSizePercent=40", "-XX:G1HeapRegionSize=8M", "-XX:G1ReservePercent=20", "-XX:G1HeapWastePercent=5", "-XX:G1MixedGCCountTarget=4", "-XX:InitiatingHeapOccupancyPercent=15", "-XX:G1MixedGCLiveThresholdPercent=90", "-XX:G1RSetUpdatingPauseTimePercent=5", "-XX:SurvivorRatio=32", "-XX:+PerfDisableSharedMem", "-XX:MaxTenuringThreshold=1", "-Dusing.aikars.flags=https://mcflags.emc.gs", "-Daikars.new.flags=true", "-jar", "/app/powernukkit.jar" ] From 8020b27aab4692e2fab607d482183a5419e7f33a Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 18 Apr 2022 18:01:26 -0300 Subject: [PATCH 371/394] Make TeamCity builds faster --- Dockerfile | 45 +++++++++++----------- docker_pterodactyl-image-java11.Dockerfile | 45 +++++++++++----------- docker_pterodactyl-image-java8.Dockerfile | 45 +++++++++++----------- 3 files changed, 69 insertions(+), 66 deletions(-) diff --git a/Dockerfile b/Dockerfile index 767bcec3b40..175fb9aa4bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,34 +3,35 @@ # Requires Docker v17.05 # Prepare the source -FROM maven:3.8-jdk-8-slim as build - -RUN DEBIAN_FRONTEND=noninteractive apt update && DEBIAN_FRONTEND=noninteractive apt install -y git && rm -rf /var/lib/apt/lists/* - -# Copy the source -WORKDIR /src -COPY pom.xml /src - -COPY src/main/java /src/src/main/java -COPY src/main/resources /src/src/main/resources - -COPY src/test/java/cn /src/src/test/java/cn -COPY src/test/resources /src/src/test/resources - -COPY .git /src/.git - -# Update the language submodule -RUN if [ -z "$(ls -A /src/src/main/resources/lang)" ]; then git submodule update --init; fi - -# Build the source -RUN mvn --no-transfer-progress -Dmaven.javadoc.skip=true clean package +#FROM maven:3.8-jdk-8-slim as build +# +#RUN DEBIAN_FRONTEND=noninteractive apt update && DEBIAN_FRONTEND=noninteractive apt install -y git && rm -rf /var/lib/apt/lists/* +# +## Copy the source +#WORKDIR /src +#COPY pom.xml /src +# +#COPY src/main/java /src/src/main/java +#COPY src/main/resources /src/src/main/resources +# +#COPY src/test/java/cn /src/src/test/java/cn +#COPY src/test/resources /src/src/test/resources +# +#COPY .git /src/.git +# +## Update the language submodule +#RUN if [ -z "$(ls -A /src/src/main/resources/lang)" ]; then git submodule update --init; fi +# +## Build the source +#RUN mvn --no-transfer-progress -Dmaven.javadoc.skip=true clean package # Use OpenJDK JRE image to runtime FROM openjdk:8-jre-slim AS run LABEL maintainer="Josรฉ Roberto de Araรบjo Jรบnior " # Copy artifact from build image -COPY --from=build /src/target/powernukkit-*-shaded.jar /app/powernukkit.jar +#COPY --from=build /src/target/powernukkit-*-shaded.jar /app/powernukkit.jar +COPY target/powernukkit-*-shaded.jar /app/powernukkit.jar # Create minecraft user RUN useradd --user-group \ diff --git a/docker_pterodactyl-image-java11.Dockerfile b/docker_pterodactyl-image-java11.Dockerfile index f885055a70b..821f6e42890 100644 --- a/docker_pterodactyl-image-java11.Dockerfile +++ b/docker_pterodactyl-image-java11.Dockerfile @@ -3,27 +3,27 @@ # # Prepare the source -FROM maven:3.8-jdk-8-slim as build - -RUN DEBIAN_FRONTEND=noninteractive apt update && DEBIAN_FRONTEND=noninteractive apt install -y git && rm -rf /var/lib/apt/lists/* - -# Copy the source -WORKDIR /src -COPY pom.xml /src - -COPY src/main/java /src/src/main/java -COPY src/main/resources /src/src/main/resources - -COPY src/test/java/cn /src/src/test/java/cn -COPY src/test/resources /src/src/test/resources - -COPY .git /src/.git - -# Update the language submodule -RUN if [ -z "$(ls -A /src/src/main/resources/lang)" ]; then git submodule update --init; fi - -# Build the source -RUN mvn --no-transfer-progress -Dmaven.javadoc.skip=true clean package +#FROM maven:3.8-jdk-8-slim as build +# +#RUN DEBIAN_FRONTEND=noninteractive apt update && DEBIAN_FRONTEND=noninteractive apt install -y git && rm -rf /var/lib/apt/lists/* +# +## Copy the source +#WORKDIR /src +#COPY pom.xml /src +# +#COPY src/main/java /src/src/main/java +#COPY src/main/resources /src/src/main/resources +# +#COPY src/test/java/cn /src/src/test/java/cn +#COPY src/test/resources /src/src/test/resources +# +#COPY .git /src/.git +# +## Update the language submodule +#RUN if [ -z "$(ls -A /src/src/main/resources/lang)" ]; then git submodule update --init; fi +# +## Build the source +#RUN mvn --no-transfer-progress -Dmaven.javadoc.skip=true clean package # Final image FROM ghcr.io/pterodactyl/yolks:java_11 as pterodactyl @@ -34,7 +34,8 @@ USER root ENV USER=root HOME=/root RUN mkdir -p /opt/PowerNukkit -COPY --from=build /src/target/powernukkit-*-shaded.jar /opt/PowerNukkit/PowerNukkit.jar +#COPY --from=build /src/target/powernukkit-*-shaded.jar /opt/PowerNukkit/PowerNukkit.jar +COPY target/powernukkit-*-shaded.jar /opt/PowerNukkit/PowerNukkit.jar USER container ENV USER=container HOME=/home/container diff --git a/docker_pterodactyl-image-java8.Dockerfile b/docker_pterodactyl-image-java8.Dockerfile index cd00ca7a5ef..b45b8a62927 100644 --- a/docker_pterodactyl-image-java8.Dockerfile +++ b/docker_pterodactyl-image-java8.Dockerfile @@ -3,27 +3,27 @@ # # Prepare the source -FROM maven:3.8-jdk-8-slim as build - -RUN DEBIAN_FRONTEND=noninteractive apt update && DEBIAN_FRONTEND=noninteractive apt install -y git && rm -rf /var/lib/apt/lists/* - -# Copy the source -WORKDIR /src -COPY pom.xml /src - -COPY src/main/java /src/src/main/java -COPY src/main/resources /src/src/main/resources - -COPY src/test/java/cn /src/src/test/java/cn -COPY src/test/resources /src/src/test/resources - -COPY .git /src/.git - -# Update the language submodule -RUN if [ -z "$(ls -A /src/src/main/resources/lang)" ]; then git submodule update --init; fi - -# Build the source -RUN mvn --no-transfer-progress -Dmaven.javadoc.skip=true clean package +#FROM maven:3.8-jdk-8-slim as build +# +#RUN DEBIAN_FRONTEND=noninteractive apt update && DEBIAN_FRONTEND=noninteractive apt install -y git && rm -rf /var/lib/apt/lists/* +# +## Copy the source +#WORKDIR /src +#COPY pom.xml /src +# +#COPY src/main/java /src/src/main/java +#COPY src/main/resources /src/src/main/resources +# +#COPY src/test/java/cn /src/src/test/java/cn +#COPY src/test/resources /src/src/test/resources +# +#COPY .git /src/.git +# +## Update the language submodule +#RUN if [ -z "$(ls -A /src/src/main/resources/lang)" ]; then git submodule update --init; fi +# +## Build the source +#RUN mvn --no-transfer-progress -Dmaven.javadoc.skip=true clean package # Final image FROM ghcr.io/pterodactyl/yolks:java_8 as pterodactyl @@ -34,7 +34,8 @@ USER root ENV USER=root HOME=/root RUN mkdir -p /opt/PowerNukkit -COPY --from=build /src/target/powernukkit-*-shaded.jar /opt/PowerNukkit/PowerNukkit.jar +#COPY --from=build /src/target/powernukkit-*-shaded.jar /opt/PowerNukkit/PowerNukkit.jar +COPY target/powernukkit-*-shaded.jar /opt/PowerNukkit/PowerNukkit.jar USER container ENV USER=container HOME=/home/container From 4a9b0bc396ed9116492e7867b0e19b16ff8469ae Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 18 Apr 2022 18:08:20 -0300 Subject: [PATCH 372/394] Fix: Docker build failing for jar being ignored --- .dockerignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.dockerignore b/.dockerignore index e0bfcd4eca9..b7c3d2235b7 100644 --- a/.dockerignore +++ b/.dockerignore @@ -16,3 +16,5 @@ logs /worlds #.mvn dependency-reduced-pom.xml +* +!/target/powernukkit-*.jar From 1ed1d55ca187e7a36fc3c7f3735ee2f19aeb270d Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 18 Apr 2022 23:37:07 -0300 Subject: [PATCH 373/394] Automate powernukkit-versions.json updates --- .github/workflows/publish-snapshot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/publish-snapshot.yml b/.github/workflows/publish-snapshot.yml index a4ab115cdfc..917948026e0 100644 --- a/.github/workflows/publish-snapshot.yml +++ b/.github/workflows/publish-snapshot.yml @@ -30,3 +30,8 @@ jobs: env: MAVEN_USERNAME: ${{ secrets.POWERNUKKIT_SNAPSHOT_USER }} MAVEN_PASSWORD: ${{ secrets.POWERNUKKIT_SNAPSHOT_PASSWORD }} + - name: Trigger powernukkit-versions.json update + uses: peter-evans/repository-dispatch@v2 + with: + token: ${{ secrets.POWERNUKKIT_VERSIONS_TOKEN }} + event-type: update-versions-json From 926cab2dca9ae754f4898350691914063cef2d81 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Mon, 18 Apr 2022 23:54:25 -0300 Subject: [PATCH 374/394] Remove Downloading/Downloaded spam from workflows Also fix the powernukkit-versions.json trigger --- .github/workflows/github-publish-release.yml | 4 ++-- .github/workflows/github-publish-snapshot.yml | 4 ++-- .github/workflows/javadoc.yml | 4 ++-- .github/workflows/maven.yml | 2 +- .github/workflows/notify-sentry-release.yml | 2 +- .github/workflows/publish-snapshot.yml | 3 ++- .github/workflows/sonar.yml | 2 +- 7 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/github-publish-release.yml b/.github/workflows/github-publish-release.yml index c60786d8a6a..22ffe4229f2 100644 --- a/.github/workflows/github-publish-release.yml +++ b/.github/workflows/github-publish-release.yml @@ -28,12 +28,12 @@ jobs: run: sed -i 's@-CUSTOM@@' pom.xml - name: Build with Maven - run: mvn -B package --file pom.xml + run: mvn --no-transfer-progress -B package --file pom.xml - name: Adjust the release repository url run: sed -i 's@https://oss.sonatype.org/service/local/staging/deploy/maven2/@https://maven.pkg.github.com/PowerNukkit/PowerNukkit@' pom.xml - name: Publish to GitHub Packages Apache Maven - run: mvn -B deploy -Dgpg.skip=true -DskipTests=false -s $GITHUB_WORKSPACE/settings.xml + run: mvn --no-transfer-progress -B deploy -Dgpg.skip=true -DskipTests=false -s $GITHUB_WORKSPACE/settings.xml env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/github-publish-snapshot.yml b/.github/workflows/github-publish-snapshot.yml index 0f6852c36eb..8e6a6e2ec9d 100644 --- a/.github/workflows/github-publish-snapshot.yml +++ b/.github/workflows/github-publish-snapshot.yml @@ -29,12 +29,12 @@ jobs: run: sed -i 's@-CUSTOM@@' pom.xml - name: Build with Maven - run: mvn -B package --file pom.xml + run: mvn --no-transfer-progress -B package --file pom.xml - name: Adjust the snapshot repository url run: sed -i 's@https://oss.sonatype.org/content/repositories/snapshots@https://maven.pkg.github.com/PowerNukkit/PowerNukkit@' pom.xml - name: Publish to GitHub Packages Apache Maven - run: mvn -B deploy -Dgpg.skip=true -DskipTests=false -s $GITHUB_WORKSPACE/settings.xml + run: mvn --no-transfer-progress -B deploy -Dgpg.skip=true -DskipTests=false -s $GITHUB_WORKSPACE/settings.xml env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/javadoc.yml b/.github/workflows/javadoc.yml index ca0d509a515..287f2f862ae 100644 --- a/.github/workflows/javadoc.yml +++ b/.github/workflows/javadoc.yml @@ -26,10 +26,10 @@ jobs: - name: Adjust pom.xml run: sed -i 's/-CUSTOM//g' pom.xml - name: Generate javadoc - run: mvn javadoc:javadoc + run: mvn --no-transfer-progress javadoc:javadoc - name: Get version run: | - PN_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout) + PN_VERSION=$(mvn --no-transfer-progress help:evaluate -Dexpression=project.version -q -DforceStdout) echo "Version: $PN_VERSION" echo "PN_VERSION=$PN_VERSION" >> $GITHUB_ENV - uses: actions/checkout@v2 diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 4027cefa30a..628b6a71d41 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -24,7 +24,7 @@ jobs: with: java-version: 1.8 - name: Build with Maven - run: mvn -B package -DskipTests=false -Darguments="-Dmaven.javadoc.skip=true" + run: mvn --no-transfer-progress -B package -DskipTests=false -Darguments="-Dmaven.javadoc.skip=true" - name: Rename artifacts run: mv target/powernukkit-*-shaded.jar target/powernukkit.jar - name: Archive artifacts diff --git a/.github/workflows/notify-sentry-release.yml b/.github/workflows/notify-sentry-release.yml index e8512ca3da9..a398f14d0e5 100644 --- a/.github/workflows/notify-sentry-release.yml +++ b/.github/workflows/notify-sentry-release.yml @@ -21,7 +21,7 @@ jobs: - name: Get version run: | SHA=$(echo $GITHUB_SHA | cut -c1-7) - PN_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)-git-$SHA + PN_VERSION=$(mvn --no-transfer-progress help:evaluate -Dexpression=project.version -q -DforceStdout)-git-$SHA echo "Version: $PN_VERSION" echo "PN_VERSION=$PN_VERSION-git" >> $GITHUB_ENV - name: Create Sentry release diff --git a/.github/workflows/publish-snapshot.yml b/.github/workflows/publish-snapshot.yml index 917948026e0..71f0f43cfe0 100644 --- a/.github/workflows/publish-snapshot.yml +++ b/.github/workflows/publish-snapshot.yml @@ -26,7 +26,7 @@ jobs: server-username: MAVEN_USERNAME server-password: MAVEN_PASSWORD - name: Publish snapshot - run: mvn -B deploy -Dgpg.skip=true -DskipTests=false + run: mvn --no-transfer-progress -B deploy -Dgpg.skip=true -DskipTests=false env: MAVEN_USERNAME: ${{ secrets.POWERNUKKIT_SNAPSHOT_USER }} MAVEN_PASSWORD: ${{ secrets.POWERNUKKIT_SNAPSHOT_PASSWORD }} @@ -35,3 +35,4 @@ jobs: with: token: ${{ secrets.POWERNUKKIT_VERSIONS_TOKEN }} event-type: update-versions-json + repository: PowerNukkit/powernukkit-version-aggregator diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 250a5a7b923..8ef0cc4cfda 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -35,4 +35,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: mvn -B verify -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=false -Denforcer.skip=true --no-transfer-progress org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn + run: mvn --no-transfer-progress -B verify -Dmaven.javadoc.skip=true -Dgpg.skip=true -DskipTests=false -Denforcer.skip=true --no-transfer-progress org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn From 6dcef16d6608245d8f0bf8d057ecf1297a5981a4 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 10:58:38 -0300 Subject: [PATCH 375/394] Update all resources to MC 1.18.30 --- UPGRADING_TO_NEXT_MINECRAFT.md | 2 +- dumps/block-states.ini | 60 +- dumps/runtime_block_states.dat.dump.txt | 17292 ++++++++-------- dumps/simple-blocks-nukkit.txt | 29 +- pom.xml | 2 +- src/main/java/cn/nukkit/block/Block.java | 8 +- src/main/java/cn/nukkit/block/BlockID.java | 24 +- .../java/cn/nukkit/block/BlockPiston.java | 2 +- .../java/cn/nukkit/block/BlockPistonHead.java | 2 +- .../nukkit/block/BlockPistonHeadSticky.java | 2 +- .../cn/nukkit/block/BlockPistonSticky.java | 2 +- .../java/cn/nukkit/block/BlockTripWire.java | 4 +- .../cn/nukkit/block/BlockTripWireHook.java | 2 +- .../blockentity/BlockEntityPistonArm.java | 2 +- src/main/java/cn/nukkit/item/ItemString.java | 2 +- src/main/resources/block_ids.csv | 46 +- src/main/resources/canonical_block_states.nbt | Bin 1174608 -> 1218436 bytes src/main/resources/creativeitems.json | 36 +- src/main/resources/entity_identifiers.dat | Bin 7382 -> 7382 bytes src/main/resources/recipes.json | 1032 +- src/main/resources/runtime_item_ids.json | 12 +- .../updater/AllResourceUpdater.java | 2 +- .../updater/AllResourcesDownloader.java | 49 +- .../dumps/pmmp/required_item_list.json | 142 +- .../dumps/proxypass/creativeitems.json | 1386 +- .../updater/dumps/proxypass/recipes.json | 3951 ++-- .../dumps/proxypass/runtime_item_states.json | 2314 ++- 27 files changed, 13891 insertions(+), 12514 deletions(-) diff --git a/UPGRADING_TO_NEXT_MINECRAFT.md b/UPGRADING_TO_NEXT_MINECRAFT.md index fcc6f97ea87..7dccf64e17e 100644 --- a/UPGRADING_TO_NEXT_MINECRAFT.md +++ b/UPGRADING_TO_NEXT_MINECRAFT.md @@ -38,7 +38,7 @@ Now that we know what have change, we need to update: - Checkout but **don't open as a project, only download the source**: https://github.com/PowerNukkit/Bedrock-Protocol - Open the **Maven** tab, click the **+** button to add a maven project to the current project (That should be Bedrock-ProxyPass) - Add: **Bedrock-Network**, and **Bedrock-Protocol** that you have just downloaded -- Press **Shift** two times to open the sarch window and search for the **Action**: `manage git remotes` +- Press **Shift** two times to open the search window and search for the **Action**: `manage git remotes` - Add a new remote for all 3 git repositores, pointing to the cloudburst equivalent of the project: * Bedrock-Network: https://github.com/CloudburstMC/Network.git * Bedrock-Protocol: https://github.com/CloudburstMC/Protocol.git diff --git a/dumps/block-states.ini b/dumps/block-states.ini index f576534345c..8d3664a4e36 100644 --- a/dumps/block-states.ini +++ b/dumps/block-states.ini @@ -367,7 +367,7 @@ composter_fill_level=0,1,2,3,4,5,6,7,8 [minecraft:concrete] color=black,blue,brown,cyan,gray,green,light_blue,lime,magenta,orange,pink,purple,red,silver,white,yellow -[minecraft:concretePowder] +[minecraft:concrete_powder] color=black,blue,brown,cyan,gray,green,light_blue,lime,magenta,orange,pink,purple,red,silver,white,yellow [minecraft:conduit] @@ -967,7 +967,7 @@ facing_direction=0,1,2,3,4,5 item_frame_map_bit=0,1 item_frame_photo_bit=0,1 -[minecraft:frog_egg] +[minecraft:frog_spawn] [minecraft:frosted_ice] age=0,1,2,3 @@ -1073,7 +1073,7 @@ pillar_axis=x,y,z [minecraft:info_update2] -[minecraft:invisibleBedrock] +[minecraft:invisible_bedrock] [minecraft:iron_bars] @@ -1251,6 +1251,18 @@ facing_direction=0,1,2,3,4,5 [minecraft:magma] +[minecraft:mangrove_leaves] +persistent_bit=0,1 +update_bit=0,1 + +[minecraft:mangrove_propagule] +facing_direction=0,1,2,3,4,5 +growth=0,1,2,3,4,5,6,7 + +[minecraft:mangrove_propagule_hanging] +facing_direction=0,1,2,3,4,5 +growth=0,1,2,3,4,5,6,7 + [minecraft:medium_amethyst_bud] facing_direction=0,1,2,3,4,5 @@ -1279,13 +1291,30 @@ weirdo_direction=0,1,2,3 upside_down_bit=0,1 weirdo_direction=0,1,2,3 -[minecraft:movingBlock] +[minecraft:moving_block] -[minecraft:mycelium] +[minecraft:mud] + +[minecraft:mud_brick_double_slab] +top_slot_bit=0,1 -[minecraft:mysterious_frame] +[minecraft:mud_brick_slab] +top_slot_bit=0,1 -[minecraft:mysterious_frame_slot] +[minecraft:mud_brick_stairs] +upside_down_bit=0,1 +weirdo_direction=0,1,2,3 + +[minecraft:mud_brick_wall] +wall_connection_type_east=none,short,tall +wall_connection_type_north=none,short,tall +wall_connection_type_south=none,short,tall +wall_connection_type_west=none,short,tall +wall_post_bit=0,1 + +[minecraft:mud_bricks] + +[minecraft:mycelium] [minecraft:nether_brick] @@ -1327,6 +1356,7 @@ powered_bit=0,1 [minecraft:obsidian] [minecraft:ochre_froglight] +pillar_axis=x,y,z [minecraft:orange_candle] candles=0,1,2,3 @@ -1354,7 +1384,10 @@ top_slot_bit=0,1 [minecraft:packed_ice] +[minecraft:packed_mud] + [minecraft:pearlescent_froglight] +pillar_axis=x,y,z [minecraft:pink_candle] candles=0,1,2,3 @@ -1369,7 +1402,7 @@ facing_direction=0,1,2,3,4,5 [minecraft:piston] facing_direction=0,1,2,3,4,5 -[minecraft:pistonArmCollision] +[minecraft:piston_arm_collision] facing_direction=0,1,2,3,4,5 [minecraft:planks] @@ -1580,6 +1613,8 @@ redstone_signal=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 [minecraft:reeds] age=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 +[minecraft:reinforced_deepslate] + [minecraft:repeating_command_block] conditional_bit=0,1 facing_direction=0,1,2,3,4,5 @@ -1621,7 +1656,7 @@ active=0,1 [minecraft:sculk_vein] multi_face_direction_bits=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63 -[minecraft:seaLantern] +[minecraft:sea_lantern] [minecraft:sea_pickle] cluster_count=0,1,2,3 @@ -1747,10 +1782,10 @@ ground_sign_direction=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 [minecraft:standing_sign] ground_sign_direction=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 -[minecraft:stickyPistonArmCollision] +[minecraft:sticky_piston] facing_direction=0,1,2,3,4,5 -[minecraft:sticky_piston] +[minecraft:sticky_piston_arm_collision] facing_direction=0,1,2,3,4,5 [minecraft:stone] @@ -1856,7 +1891,7 @@ upside_down_bit=0,1 [minecraft:trapped_chest] facing_direction=0,1,2,3,4,5 -[minecraft:tripWire] +[minecraft:trip_wire] attached_bit=0,1 disarmed_bit=0,1 powered_bit=0,1 @@ -1896,6 +1931,7 @@ direction=0,1,2,3 repeater_delay=0,1,2,3 [minecraft:verdant_froglight] +pillar_axis=x,y,z [minecraft:vine] vine_direction_bits=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 diff --git a/dumps/runtime_block_states.dat.dump.txt b/dumps/runtime_block_states.dat.dump.txt index 34fbbefedfe..43771dcb583 100644 --- a/dumps/runtime_block_states.dat.dump.txt +++ b/dumps/runtime_block_states.dat.dump.txt @@ -2,31785 +2,32913 @@ minecraft:acacia_button;button_pressed_bit=0;facing_direction=0 blockId=395 -runtimeId=0 +runtimeId=7173 minecraft:acacia_button;button_pressed_bit=0;facing_direction=1 blockId=395 -runtimeId=1 +runtimeId=7174 minecraft:acacia_button;button_pressed_bit=0;facing_direction=2 blockId=395 -runtimeId=2 +runtimeId=7175 minecraft:acacia_button;button_pressed_bit=0;facing_direction=3 blockId=395 -runtimeId=3 +runtimeId=7176 minecraft:acacia_button;button_pressed_bit=0;facing_direction=4 blockId=395 -runtimeId=4 +runtimeId=7177 minecraft:acacia_button;button_pressed_bit=0;facing_direction=5 blockId=395 -runtimeId=5 +runtimeId=7178 minecraft:acacia_button;button_pressed_bit=1;facing_direction=0 blockId=395 -runtimeId=6 +runtimeId=7179 minecraft:acacia_button;button_pressed_bit=1;facing_direction=1 blockId=395 -runtimeId=7 +runtimeId=7180 minecraft:acacia_button;button_pressed_bit=1;facing_direction=2 blockId=395 -runtimeId=8 +runtimeId=7181 minecraft:acacia_button;button_pressed_bit=1;facing_direction=3 blockId=395 -runtimeId=9 +runtimeId=7182 minecraft:acacia_button;button_pressed_bit=1;facing_direction=4 blockId=395 -runtimeId=10 +runtimeId=7183 minecraft:acacia_button;button_pressed_bit=1;facing_direction=5 blockId=395 -runtimeId=11 +runtimeId=7184 minecraft:acacia_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=196 -runtimeId=12 +runtimeId=4348 minecraft:acacia_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=196 -runtimeId=13 +runtimeId=4349 minecraft:acacia_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=196 -runtimeId=14 +runtimeId=4350 minecraft:acacia_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=196 -runtimeId=15 +runtimeId=4351 minecraft:acacia_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=196 -runtimeId=28 +runtimeId=4364 minecraft:acacia_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=196 -runtimeId=29 +runtimeId=4365 minecraft:acacia_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=196 -runtimeId=30 +runtimeId=4366 minecraft:acacia_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=196 -runtimeId=31 +runtimeId=4367 minecraft:acacia_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=196 -runtimeId=20 +runtimeId=4356 minecraft:acacia_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=196 -runtimeId=21 +runtimeId=4357 minecraft:acacia_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=196 -runtimeId=22 +runtimeId=4358 minecraft:acacia_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=196 -runtimeId=23 +runtimeId=4359 minecraft:acacia_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=196 -runtimeId=36 +runtimeId=4372 minecraft:acacia_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=196 -runtimeId=37 +runtimeId=4373 minecraft:acacia_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=196 -runtimeId=38 +runtimeId=4374 minecraft:acacia_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=196 -runtimeId=39 +runtimeId=4375 minecraft:acacia_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=196 -runtimeId=16 +runtimeId=4352 minecraft:acacia_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=196 -runtimeId=17 +runtimeId=4353 minecraft:acacia_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=196 -runtimeId=18 +runtimeId=4354 minecraft:acacia_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=196 -runtimeId=19 +runtimeId=4355 minecraft:acacia_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=196 -runtimeId=32 +runtimeId=4368 minecraft:acacia_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=196 -runtimeId=33 +runtimeId=4369 minecraft:acacia_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=196 -runtimeId=34 +runtimeId=4370 minecraft:acacia_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=196 -runtimeId=35 +runtimeId=4371 minecraft:acacia_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=196 -runtimeId=24 +runtimeId=4360 minecraft:acacia_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=196 -runtimeId=25 +runtimeId=4361 minecraft:acacia_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=196 -runtimeId=26 +runtimeId=4362 minecraft:acacia_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=196 -runtimeId=27 +runtimeId=4363 minecraft:acacia_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=196 -runtimeId=40 +runtimeId=4376 minecraft:acacia_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=196 -runtimeId=41 +runtimeId=4377 minecraft:acacia_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=196 -runtimeId=42 +runtimeId=4378 minecraft:acacia_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=196 -runtimeId=43 +runtimeId=4379 minecraft:acacia_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=187 -runtimeId=44 +runtimeId=7528 minecraft:acacia_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=187 -runtimeId=45 +runtimeId=7529 minecraft:acacia_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=187 -runtimeId=46 +runtimeId=7530 minecraft:acacia_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=187 -runtimeId=47 +runtimeId=7531 minecraft:acacia_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=187 -runtimeId=48 +runtimeId=7532 minecraft:acacia_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=187 -runtimeId=49 +runtimeId=7533 minecraft:acacia_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=187 -runtimeId=50 +runtimeId=7534 minecraft:acacia_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=187 -runtimeId=51 +runtimeId=7535 minecraft:acacia_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=187 -runtimeId=52 +runtimeId=7536 minecraft:acacia_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=187 -runtimeId=53 +runtimeId=7537 minecraft:acacia_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=187 -runtimeId=54 +runtimeId=7538 minecraft:acacia_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=187 -runtimeId=55 +runtimeId=7539 minecraft:acacia_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=187 -runtimeId=56 +runtimeId=7540 minecraft:acacia_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=187 -runtimeId=57 +runtimeId=7541 minecraft:acacia_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=187 -runtimeId=58 +runtimeId=7542 minecraft:acacia_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=187 -runtimeId=59 +runtimeId=7543 minecraft:acacia_pressure_plate;redstone_signal=0 blockId=405 -runtimeId=60 +runtimeId=5203 minecraft:acacia_pressure_plate;redstone_signal=1 blockId=405 -runtimeId=61 +runtimeId=5204 minecraft:acacia_pressure_plate;redstone_signal=2 blockId=405 -runtimeId=62 +runtimeId=5205 minecraft:acacia_pressure_plate;redstone_signal=3 blockId=405 -runtimeId=63 +runtimeId=5206 minecraft:acacia_pressure_plate;redstone_signal=4 blockId=405 -runtimeId=64 +runtimeId=5207 minecraft:acacia_pressure_plate;redstone_signal=5 blockId=405 -runtimeId=65 +runtimeId=5208 minecraft:acacia_pressure_plate;redstone_signal=6 blockId=405 -runtimeId=66 +runtimeId=5209 minecraft:acacia_pressure_plate;redstone_signal=7 blockId=405 -runtimeId=67 +runtimeId=5210 minecraft:acacia_pressure_plate;redstone_signal=8 blockId=405 -runtimeId=68 +runtimeId=5211 minecraft:acacia_pressure_plate;redstone_signal=9 blockId=405 -runtimeId=69 +runtimeId=5212 minecraft:acacia_pressure_plate;redstone_signal=10 blockId=405 -runtimeId=70 +runtimeId=5213 minecraft:acacia_pressure_plate;redstone_signal=11 blockId=405 -runtimeId=71 +runtimeId=5214 minecraft:acacia_pressure_plate;redstone_signal=12 blockId=405 -runtimeId=72 +runtimeId=5215 minecraft:acacia_pressure_plate;redstone_signal=13 blockId=405 -runtimeId=73 +runtimeId=5216 minecraft:acacia_pressure_plate;redstone_signal=14 blockId=405 -runtimeId=74 +runtimeId=5217 minecraft:acacia_pressure_plate;redstone_signal=15 blockId=405 -runtimeId=75 +runtimeId=5218 minecraft:acacia_stairs;upside_down_bit=0;weirdo_direction=0 blockId=163 -runtimeId=76 +runtimeId=6123 minecraft:acacia_stairs;upside_down_bit=0;weirdo_direction=1 blockId=163 -runtimeId=77 +runtimeId=6124 minecraft:acacia_stairs;upside_down_bit=0;weirdo_direction=2 blockId=163 -runtimeId=78 +runtimeId=6125 minecraft:acacia_stairs;upside_down_bit=0;weirdo_direction=3 blockId=163 -runtimeId=79 +runtimeId=6126 minecraft:acacia_stairs;upside_down_bit=1;weirdo_direction=0 blockId=163 -runtimeId=80 +runtimeId=6127 minecraft:acacia_stairs;upside_down_bit=1;weirdo_direction=1 blockId=163 -runtimeId=81 +runtimeId=6128 minecraft:acacia_stairs;upside_down_bit=1;weirdo_direction=2 blockId=163 -runtimeId=82 +runtimeId=6129 minecraft:acacia_stairs;upside_down_bit=1;weirdo_direction=3 blockId=163 -runtimeId=83 +runtimeId=6130 minecraft:acacia_standing_sign;ground_sign_direction=0 blockId=445 -runtimeId=84 +runtimeId=6213 minecraft:acacia_standing_sign;ground_sign_direction=1 blockId=445 -runtimeId=85 +runtimeId=6214 minecraft:acacia_standing_sign;ground_sign_direction=2 blockId=445 -runtimeId=86 +runtimeId=6215 minecraft:acacia_standing_sign;ground_sign_direction=3 blockId=445 -runtimeId=87 +runtimeId=6216 minecraft:acacia_standing_sign;ground_sign_direction=4 blockId=445 -runtimeId=88 +runtimeId=6217 minecraft:acacia_standing_sign;ground_sign_direction=5 blockId=445 -runtimeId=89 +runtimeId=6218 minecraft:acacia_standing_sign;ground_sign_direction=6 blockId=445 -runtimeId=90 +runtimeId=6219 minecraft:acacia_standing_sign;ground_sign_direction=7 blockId=445 -runtimeId=91 +runtimeId=6220 minecraft:acacia_standing_sign;ground_sign_direction=8 blockId=445 -runtimeId=92 +runtimeId=6221 minecraft:acacia_standing_sign;ground_sign_direction=9 blockId=445 -runtimeId=93 +runtimeId=6222 minecraft:acacia_standing_sign;ground_sign_direction=10 blockId=445 -runtimeId=94 +runtimeId=6223 minecraft:acacia_standing_sign;ground_sign_direction=11 blockId=445 -runtimeId=95 +runtimeId=6224 minecraft:acacia_standing_sign;ground_sign_direction=12 blockId=445 -runtimeId=96 +runtimeId=6225 minecraft:acacia_standing_sign;ground_sign_direction=13 blockId=445 -runtimeId=97 +runtimeId=6226 minecraft:acacia_standing_sign;ground_sign_direction=14 blockId=445 -runtimeId=98 +runtimeId=6227 minecraft:acacia_standing_sign;ground_sign_direction=15 blockId=445 -runtimeId=99 +runtimeId=6228 minecraft:acacia_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=400 -runtimeId=100 +runtimeId=5539 minecraft:acacia_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=400 -runtimeId=101 +runtimeId=5540 minecraft:acacia_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=400 -runtimeId=102 +runtimeId=5541 minecraft:acacia_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=400 -runtimeId=103 +runtimeId=5542 minecraft:acacia_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=400 -runtimeId=104 +runtimeId=5543 minecraft:acacia_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=400 -runtimeId=105 +runtimeId=5544 minecraft:acacia_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=400 -runtimeId=106 +runtimeId=5545 minecraft:acacia_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=400 -runtimeId=107 +runtimeId=5546 minecraft:acacia_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=400 -runtimeId=108 +runtimeId=5547 minecraft:acacia_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=400 -runtimeId=109 +runtimeId=5548 minecraft:acacia_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=400 -runtimeId=110 +runtimeId=5549 minecraft:acacia_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=400 -runtimeId=111 +runtimeId=5550 minecraft:acacia_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=400 -runtimeId=112 +runtimeId=5551 minecraft:acacia_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=400 -runtimeId=113 +runtimeId=5552 minecraft:acacia_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=400 -runtimeId=114 +runtimeId=5553 minecraft:acacia_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=400 -runtimeId=115 +runtimeId=5554 minecraft:acacia_wall_sign;facing_direction=0 blockId=446 -runtimeId=116 +runtimeId=3664 minecraft:acacia_wall_sign;facing_direction=1 blockId=446 -runtimeId=117 +runtimeId=3665 minecraft:acacia_wall_sign;facing_direction=2 blockId=446 -runtimeId=118 +runtimeId=3666 minecraft:acacia_wall_sign;facing_direction=3 blockId=446 -runtimeId=119 +runtimeId=3667 minecraft:acacia_wall_sign;facing_direction=4 blockId=446 -runtimeId=120 +runtimeId=3668 minecraft:acacia_wall_sign;facing_direction=5 blockId=446 -runtimeId=121 +runtimeId=3669 minecraft:activator_rail;rail_direction=0;rail_data_bit=0 blockId=126 -runtimeId=122 +runtimeId=323 minecraft:activator_rail;rail_direction=0;rail_data_bit=1 blockId=126 -runtimeId=128 +runtimeId=329 minecraft:activator_rail;rail_direction=1;rail_data_bit=0 blockId=126 -runtimeId=123 +runtimeId=324 minecraft:activator_rail;rail_direction=1;rail_data_bit=1 blockId=126 -runtimeId=129 +runtimeId=330 minecraft:activator_rail;rail_direction=2;rail_data_bit=0 blockId=126 -runtimeId=124 +runtimeId=325 minecraft:activator_rail;rail_direction=2;rail_data_bit=1 blockId=126 -runtimeId=130 +runtimeId=331 minecraft:activator_rail;rail_direction=3;rail_data_bit=0 blockId=126 -runtimeId=125 +runtimeId=326 minecraft:activator_rail;rail_direction=3;rail_data_bit=1 blockId=126 -runtimeId=131 +runtimeId=332 minecraft:activator_rail;rail_direction=4;rail_data_bit=0 blockId=126 -runtimeId=126 +runtimeId=327 minecraft:activator_rail;rail_direction=4;rail_data_bit=1 blockId=126 -runtimeId=132 +runtimeId=333 minecraft:activator_rail;rail_direction=5;rail_data_bit=0 blockId=126 -runtimeId=127 +runtimeId=328 minecraft:activator_rail;rail_direction=5;rail_data_bit=1 blockId=126 -runtimeId=133 +runtimeId=334 minecraft:air blockId=0 -runtimeId=134 +runtimeId=6564 minecraft:allow blockId=210 -runtimeId=135 +runtimeId=7024 minecraft:amethyst_block blockId=582 -runtimeId=136 +runtimeId=304 minecraft:amethyst_cluster;facing_direction=0 blockId=584 -runtimeId=137 +runtimeId=7751 minecraft:amethyst_cluster;facing_direction=1 blockId=584 -runtimeId=138 +runtimeId=7752 minecraft:amethyst_cluster;facing_direction=2 blockId=584 -runtimeId=139 +runtimeId=7753 minecraft:amethyst_cluster;facing_direction=3 blockId=584 -runtimeId=140 +runtimeId=7754 minecraft:amethyst_cluster;facing_direction=4 blockId=584 -runtimeId=141 +runtimeId=7755 minecraft:amethyst_cluster;facing_direction=5 blockId=584 -runtimeId=142 +runtimeId=7756 minecraft:ancient_debris blockId=526 -runtimeId=143 +runtimeId=6031 minecraft:andesite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=426 -runtimeId=144 +runtimeId=5258 minecraft:andesite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=426 -runtimeId=145 +runtimeId=5259 minecraft:andesite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=426 -runtimeId=146 +runtimeId=5260 minecraft:andesite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=426 -runtimeId=147 +runtimeId=5261 minecraft:andesite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=426 -runtimeId=148 +runtimeId=5262 minecraft:andesite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=426 -runtimeId=149 +runtimeId=5263 minecraft:andesite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=426 -runtimeId=150 +runtimeId=5264 minecraft:andesite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=426 -runtimeId=151 +runtimeId=5265 minecraft:anvil;damage=broken;direction=0 blockId=145 -runtimeId=164 +runtimeId=6520 minecraft:anvil;damage=broken;direction=1 blockId=145 -runtimeId=165 +runtimeId=6521 minecraft:anvil;damage=broken;direction=2 blockId=145 -runtimeId=166 +runtimeId=6522 minecraft:anvil;damage=broken;direction=3 blockId=145 -runtimeId=167 +runtimeId=6523 minecraft:anvil;damage=slightly_damaged;direction=0 blockId=145 -runtimeId=156 +runtimeId=6512 minecraft:anvil;damage=slightly_damaged;direction=1 blockId=145 -runtimeId=157 +runtimeId=6513 minecraft:anvil;damage=slightly_damaged;direction=2 blockId=145 -runtimeId=158 +runtimeId=6514 minecraft:anvil;damage=slightly_damaged;direction=3 blockId=145 -runtimeId=159 +runtimeId=6515 minecraft:anvil;damage=undamaged;direction=0 blockId=145 -runtimeId=152 +runtimeId=6508 minecraft:anvil;damage=undamaged;direction=1 blockId=145 -runtimeId=153 +runtimeId=6509 minecraft:anvil;damage=undamaged;direction=2 blockId=145 -runtimeId=154 +runtimeId=6510 minecraft:anvil;damage=undamaged;direction=3 blockId=145 -runtimeId=155 +runtimeId=6511 minecraft:anvil;damage=very_damaged;direction=0 blockId=145 -runtimeId=160 +runtimeId=6516 minecraft:anvil;damage=very_damaged;direction=1 blockId=145 -runtimeId=161 +runtimeId=6517 minecraft:anvil;damage=very_damaged;direction=2 blockId=145 -runtimeId=162 +runtimeId=6518 minecraft:anvil;damage=very_damaged;direction=3 blockId=145 -runtimeId=163 +runtimeId=6519 minecraft:azalea blockId=592 -runtimeId=168 +runtimeId=6804 minecraft:azalea_leaves;persistent_bit=0;update_bit=0 blockId=579 -runtimeId=169 +runtimeId=7652 minecraft:azalea_leaves;persistent_bit=0;update_bit=1 blockId=579 -runtimeId=170 +runtimeId=7653 minecraft:azalea_leaves;persistent_bit=1;update_bit=0 blockId=579 -runtimeId=171 +runtimeId=7654 minecraft:azalea_leaves;persistent_bit=1;update_bit=1 blockId=579 -runtimeId=172 +runtimeId=7655 minecraft:azalea_leaves_flowered;persistent_bit=0;update_bit=0 blockId=580 -runtimeId=173 +runtimeId=6304 minecraft:azalea_leaves_flowered;persistent_bit=0;update_bit=1 blockId=580 -runtimeId=174 +runtimeId=6305 minecraft:azalea_leaves_flowered;persistent_bit=1;update_bit=0 blockId=580 -runtimeId=175 +runtimeId=6306 minecraft:azalea_leaves_flowered;persistent_bit=1;update_bit=1 blockId=580 -runtimeId=176 +runtimeId=6307 minecraft:bamboo;bamboo_leaf_size=large_leaves;age_bit=0;bamboo_stalk_thickness=thick blockId=418 -runtimeId=182 +runtimeId=3694 minecraft:bamboo;bamboo_leaf_size=large_leaves;age_bit=0;bamboo_stalk_thickness=thin blockId=418 -runtimeId=181 +runtimeId=3693 minecraft:bamboo;bamboo_leaf_size=large_leaves;age_bit=1;bamboo_stalk_thickness=thick blockId=418 -runtimeId=188 +runtimeId=3700 minecraft:bamboo;bamboo_leaf_size=large_leaves;age_bit=1;bamboo_stalk_thickness=thin blockId=418 -runtimeId=187 +runtimeId=3699 minecraft:bamboo;bamboo_leaf_size=no_leaves;age_bit=0;bamboo_stalk_thickness=thick blockId=418 -runtimeId=178 +runtimeId=3690 minecraft:bamboo;bamboo_leaf_size=no_leaves;age_bit=0;bamboo_stalk_thickness=thin blockId=418 -runtimeId=177 +runtimeId=3689 minecraft:bamboo;bamboo_leaf_size=no_leaves;age_bit=1;bamboo_stalk_thickness=thick blockId=418 -runtimeId=184 +runtimeId=3696 minecraft:bamboo;bamboo_leaf_size=no_leaves;age_bit=1;bamboo_stalk_thickness=thin blockId=418 -runtimeId=183 +runtimeId=3695 minecraft:bamboo;bamboo_leaf_size=small_leaves;age_bit=0;bamboo_stalk_thickness=thick blockId=418 -runtimeId=180 +runtimeId=3692 minecraft:bamboo;bamboo_leaf_size=small_leaves;age_bit=0;bamboo_stalk_thickness=thin blockId=418 -runtimeId=179 +runtimeId=3691 minecraft:bamboo;bamboo_leaf_size=small_leaves;age_bit=1;bamboo_stalk_thickness=thick blockId=418 -runtimeId=186 +runtimeId=3698 minecraft:bamboo;bamboo_leaf_size=small_leaves;age_bit=1;bamboo_stalk_thickness=thin blockId=418 -runtimeId=185 +runtimeId=3697 minecraft:bamboo_sapling;sapling_type=acacia;age_bit=0 blockId=419 -runtimeId=197 +runtimeId=7505 minecraft:bamboo_sapling;sapling_type=acacia;age_bit=1 blockId=419 -runtimeId=198 +runtimeId=7506 minecraft:bamboo_sapling;sapling_type=birch;age_bit=0 blockId=419 -runtimeId=193 +runtimeId=7501 minecraft:bamboo_sapling;sapling_type=birch;age_bit=1 blockId=419 -runtimeId=194 +runtimeId=7502 minecraft:bamboo_sapling;sapling_type=dark_oak;age_bit=0 blockId=419 -runtimeId=199 +runtimeId=7507 minecraft:bamboo_sapling;sapling_type=dark_oak;age_bit=1 blockId=419 -runtimeId=200 +runtimeId=7508 minecraft:bamboo_sapling;sapling_type=jungle;age_bit=0 blockId=419 -runtimeId=195 +runtimeId=7503 minecraft:bamboo_sapling;sapling_type=jungle;age_bit=1 blockId=419 -runtimeId=196 +runtimeId=7504 minecraft:bamboo_sapling;sapling_type=oak;age_bit=0 blockId=419 -runtimeId=189 +runtimeId=7497 minecraft:bamboo_sapling;sapling_type=oak;age_bit=1 blockId=419 -runtimeId=190 +runtimeId=7498 minecraft:bamboo_sapling;sapling_type=spruce;age_bit=0 blockId=419 -runtimeId=191 +runtimeId=7499 minecraft:bamboo_sapling;sapling_type=spruce;age_bit=1 blockId=419 -runtimeId=192 +runtimeId=7500 minecraft:barrel;facing_direction=0;open_bit=0 blockId=458 -runtimeId=201 +runtimeId=4450 minecraft:barrel;facing_direction=0;open_bit=1 blockId=458 -runtimeId=207 +runtimeId=4456 minecraft:barrel;facing_direction=1;open_bit=0 blockId=458 -runtimeId=202 +runtimeId=4451 minecraft:barrel;facing_direction=1;open_bit=1 blockId=458 -runtimeId=208 +runtimeId=4457 minecraft:barrel;facing_direction=2;open_bit=0 blockId=458 -runtimeId=203 +runtimeId=4452 minecraft:barrel;facing_direction=2;open_bit=1 blockId=458 -runtimeId=209 +runtimeId=4458 minecraft:barrel;facing_direction=3;open_bit=0 blockId=458 -runtimeId=204 +runtimeId=4453 minecraft:barrel;facing_direction=3;open_bit=1 blockId=458 -runtimeId=210 +runtimeId=4459 minecraft:barrel;facing_direction=4;open_bit=0 blockId=458 -runtimeId=205 +runtimeId=4454 minecraft:barrel;facing_direction=4;open_bit=1 blockId=458 -runtimeId=211 +runtimeId=4460 minecraft:barrel;facing_direction=5;open_bit=0 blockId=458 -runtimeId=206 +runtimeId=4455 minecraft:barrel;facing_direction=5;open_bit=1 blockId=458 -runtimeId=212 +runtimeId=4461 minecraft:barrier blockId=416 -runtimeId=213 +runtimeId=5960 minecraft:basalt;pillar_axis=x blockId=489 -runtimeId=215 +runtimeId=4298 minecraft:basalt;pillar_axis=y blockId=489 -runtimeId=214 +runtimeId=4297 minecraft:basalt;pillar_axis=z blockId=489 -runtimeId=216 +runtimeId=4299 minecraft:beacon blockId=138 -runtimeId=217 +runtimeId=145 minecraft:bed;head_piece_bit=0;occupied_bit=0;direction=0 blockId=26 -runtimeId=218 +runtimeId=6565 minecraft:bed;head_piece_bit=0;occupied_bit=0;direction=1 blockId=26 -runtimeId=219 +runtimeId=6566 minecraft:bed;head_piece_bit=0;occupied_bit=0;direction=2 blockId=26 -runtimeId=220 +runtimeId=6567 minecraft:bed;head_piece_bit=0;occupied_bit=0;direction=3 blockId=26 -runtimeId=221 +runtimeId=6568 minecraft:bed;head_piece_bit=0;occupied_bit=1;direction=0 blockId=26 -runtimeId=222 +runtimeId=6569 minecraft:bed;head_piece_bit=0;occupied_bit=1;direction=1 blockId=26 -runtimeId=223 +runtimeId=6570 minecraft:bed;head_piece_bit=0;occupied_bit=1;direction=2 blockId=26 -runtimeId=224 +runtimeId=6571 minecraft:bed;head_piece_bit=0;occupied_bit=1;direction=3 blockId=26 -runtimeId=225 +runtimeId=6572 minecraft:bed;head_piece_bit=1;occupied_bit=0;direction=0 blockId=26 -runtimeId=226 +runtimeId=6573 minecraft:bed;head_piece_bit=1;occupied_bit=0;direction=1 blockId=26 -runtimeId=227 +runtimeId=6574 minecraft:bed;head_piece_bit=1;occupied_bit=0;direction=2 blockId=26 -runtimeId=228 +runtimeId=6575 minecraft:bed;head_piece_bit=1;occupied_bit=0;direction=3 blockId=26 -runtimeId=229 +runtimeId=6576 minecraft:bed;head_piece_bit=1;occupied_bit=1;direction=0 blockId=26 -runtimeId=230 +runtimeId=6577 minecraft:bed;head_piece_bit=1;occupied_bit=1;direction=1 blockId=26 -runtimeId=231 +runtimeId=6578 minecraft:bed;head_piece_bit=1;occupied_bit=1;direction=2 blockId=26 -runtimeId=232 +runtimeId=6579 minecraft:bed;head_piece_bit=1;occupied_bit=1;direction=3 blockId=26 -runtimeId=233 +runtimeId=6580 minecraft:bedrock;infiniburn_bit=0 blockId=7 -runtimeId=234 +runtimeId=6971 minecraft:bedrock;infiniburn_bit=1 blockId=7 -runtimeId=235 +runtimeId=6972 minecraft:bee_nest;direction=0;honey_level=0 blockId=473 -runtimeId=236 +runtimeId=5704 minecraft:bee_nest;direction=0;honey_level=1 blockId=473 -runtimeId=240 +runtimeId=5708 minecraft:bee_nest;direction=0;honey_level=2 blockId=473 -runtimeId=244 +runtimeId=5712 minecraft:bee_nest;direction=0;honey_level=3 blockId=473 -runtimeId=248 +runtimeId=5716 minecraft:bee_nest;direction=0;honey_level=4 blockId=473 -runtimeId=252 +runtimeId=5720 minecraft:bee_nest;direction=0;honey_level=5 blockId=473 -runtimeId=256 +runtimeId=5724 minecraft:bee_nest;direction=1;honey_level=0 blockId=473 -runtimeId=237 +runtimeId=5705 minecraft:bee_nest;direction=1;honey_level=1 blockId=473 -runtimeId=241 +runtimeId=5709 minecraft:bee_nest;direction=1;honey_level=2 blockId=473 -runtimeId=245 +runtimeId=5713 minecraft:bee_nest;direction=1;honey_level=3 blockId=473 -runtimeId=249 +runtimeId=5717 minecraft:bee_nest;direction=1;honey_level=4 blockId=473 -runtimeId=253 +runtimeId=5721 minecraft:bee_nest;direction=1;honey_level=5 blockId=473 -runtimeId=257 +runtimeId=5725 minecraft:bee_nest;direction=2;honey_level=0 blockId=473 -runtimeId=238 +runtimeId=5706 minecraft:bee_nest;direction=2;honey_level=1 blockId=473 -runtimeId=242 +runtimeId=5710 minecraft:bee_nest;direction=2;honey_level=2 blockId=473 -runtimeId=246 +runtimeId=5714 minecraft:bee_nest;direction=2;honey_level=3 blockId=473 -runtimeId=250 +runtimeId=5718 minecraft:bee_nest;direction=2;honey_level=4 blockId=473 -runtimeId=254 +runtimeId=5722 minecraft:bee_nest;direction=2;honey_level=5 blockId=473 -runtimeId=258 +runtimeId=5726 minecraft:bee_nest;direction=3;honey_level=0 blockId=473 -runtimeId=239 +runtimeId=5707 minecraft:bee_nest;direction=3;honey_level=1 blockId=473 -runtimeId=243 +runtimeId=5711 minecraft:bee_nest;direction=3;honey_level=2 blockId=473 -runtimeId=247 +runtimeId=5715 minecraft:bee_nest;direction=3;honey_level=3 blockId=473 -runtimeId=251 +runtimeId=5719 minecraft:bee_nest;direction=3;honey_level=4 blockId=473 -runtimeId=255 +runtimeId=5723 minecraft:bee_nest;direction=3;honey_level=5 blockId=473 -runtimeId=259 +runtimeId=5727 minecraft:beehive;direction=0;honey_level=0 blockId=474 -runtimeId=260 +runtimeId=6032 minecraft:beehive;direction=0;honey_level=1 blockId=474 -runtimeId=264 +runtimeId=6036 minecraft:beehive;direction=0;honey_level=2 blockId=474 -runtimeId=268 +runtimeId=6040 minecraft:beehive;direction=0;honey_level=3 blockId=474 -runtimeId=272 +runtimeId=6044 minecraft:beehive;direction=0;honey_level=4 blockId=474 -runtimeId=276 +runtimeId=6048 minecraft:beehive;direction=0;honey_level=5 blockId=474 -runtimeId=280 +runtimeId=6052 minecraft:beehive;direction=1;honey_level=0 blockId=474 -runtimeId=261 +runtimeId=6033 minecraft:beehive;direction=1;honey_level=1 blockId=474 -runtimeId=265 +runtimeId=6037 minecraft:beehive;direction=1;honey_level=2 blockId=474 -runtimeId=269 +runtimeId=6041 minecraft:beehive;direction=1;honey_level=3 blockId=474 -runtimeId=273 +runtimeId=6045 minecraft:beehive;direction=1;honey_level=4 blockId=474 -runtimeId=277 +runtimeId=6049 minecraft:beehive;direction=1;honey_level=5 blockId=474 -runtimeId=281 +runtimeId=6053 minecraft:beehive;direction=2;honey_level=0 blockId=474 -runtimeId=262 +runtimeId=6034 minecraft:beehive;direction=2;honey_level=1 blockId=474 -runtimeId=266 +runtimeId=6038 minecraft:beehive;direction=2;honey_level=2 blockId=474 -runtimeId=270 +runtimeId=6042 minecraft:beehive;direction=2;honey_level=3 blockId=474 -runtimeId=274 +runtimeId=6046 minecraft:beehive;direction=2;honey_level=4 blockId=474 -runtimeId=278 +runtimeId=6050 minecraft:beehive;direction=2;honey_level=5 blockId=474 -runtimeId=282 +runtimeId=6054 minecraft:beehive;direction=3;honey_level=0 blockId=474 -runtimeId=263 +runtimeId=6035 minecraft:beehive;direction=3;honey_level=1 blockId=474 -runtimeId=267 +runtimeId=6039 minecraft:beehive;direction=3;honey_level=2 blockId=474 -runtimeId=271 +runtimeId=6043 minecraft:beehive;direction=3;honey_level=3 blockId=474 -runtimeId=275 +runtimeId=6047 minecraft:beehive;direction=3;honey_level=4 blockId=474 -runtimeId=279 +runtimeId=6051 minecraft:beehive;direction=3;honey_level=5 blockId=474 -runtimeId=283 +runtimeId=6055 minecraft:beetroot;growth=0 blockId=244 -runtimeId=284 +runtimeId=5234 minecraft:beetroot;growth=1 blockId=244 -runtimeId=285 +runtimeId=5235 minecraft:beetroot;growth=2 blockId=244 -runtimeId=286 +runtimeId=5236 minecraft:beetroot;growth=3 blockId=244 -runtimeId=287 +runtimeId=5237 minecraft:beetroot;growth=4 blockId=244 -runtimeId=288 +runtimeId=5238 minecraft:beetroot;growth=5 blockId=244 -runtimeId=289 +runtimeId=5239 minecraft:beetroot;growth=6 blockId=244 -runtimeId=290 +runtimeId=5240 minecraft:beetroot;growth=7 blockId=244 -runtimeId=291 +runtimeId=5241 minecraft:bell;attachment=hanging;toggle_bit=0;direction=0 blockId=461 -runtimeId=296 +runtimeId=6828 minecraft:bell;attachment=hanging;toggle_bit=0;direction=1 blockId=461 -runtimeId=297 +runtimeId=6829 minecraft:bell;attachment=hanging;toggle_bit=0;direction=2 blockId=461 -runtimeId=298 +runtimeId=6830 minecraft:bell;attachment=hanging;toggle_bit=0;direction=3 blockId=461 -runtimeId=299 +runtimeId=6831 minecraft:bell;attachment=hanging;toggle_bit=1;direction=0 blockId=461 -runtimeId=312 +runtimeId=6844 minecraft:bell;attachment=hanging;toggle_bit=1;direction=1 blockId=461 -runtimeId=313 +runtimeId=6845 minecraft:bell;attachment=hanging;toggle_bit=1;direction=2 blockId=461 -runtimeId=314 +runtimeId=6846 minecraft:bell;attachment=hanging;toggle_bit=1;direction=3 blockId=461 -runtimeId=315 +runtimeId=6847 minecraft:bell;attachment=multiple;toggle_bit=0;direction=0 blockId=461 -runtimeId=304 +runtimeId=6836 minecraft:bell;attachment=multiple;toggle_bit=0;direction=1 blockId=461 -runtimeId=305 +runtimeId=6837 minecraft:bell;attachment=multiple;toggle_bit=0;direction=2 blockId=461 -runtimeId=306 +runtimeId=6838 minecraft:bell;attachment=multiple;toggle_bit=0;direction=3 blockId=461 -runtimeId=307 +runtimeId=6839 minecraft:bell;attachment=multiple;toggle_bit=1;direction=0 blockId=461 -runtimeId=320 +runtimeId=6852 minecraft:bell;attachment=multiple;toggle_bit=1;direction=1 blockId=461 -runtimeId=321 +runtimeId=6853 minecraft:bell;attachment=multiple;toggle_bit=1;direction=2 blockId=461 -runtimeId=322 +runtimeId=6854 minecraft:bell;attachment=multiple;toggle_bit=1;direction=3 blockId=461 -runtimeId=323 +runtimeId=6855 minecraft:bell;attachment=side;toggle_bit=0;direction=0 blockId=461 -runtimeId=300 +runtimeId=6832 minecraft:bell;attachment=side;toggle_bit=0;direction=1 blockId=461 -runtimeId=301 +runtimeId=6833 minecraft:bell;attachment=side;toggle_bit=0;direction=2 blockId=461 -runtimeId=302 +runtimeId=6834 minecraft:bell;attachment=side;toggle_bit=0;direction=3 blockId=461 -runtimeId=303 +runtimeId=6835 minecraft:bell;attachment=side;toggle_bit=1;direction=0 blockId=461 -runtimeId=316 +runtimeId=6848 minecraft:bell;attachment=side;toggle_bit=1;direction=1 blockId=461 -runtimeId=317 +runtimeId=6849 minecraft:bell;attachment=side;toggle_bit=1;direction=2 blockId=461 -runtimeId=318 +runtimeId=6850 minecraft:bell;attachment=side;toggle_bit=1;direction=3 blockId=461 -runtimeId=319 +runtimeId=6851 minecraft:bell;attachment=standing;toggle_bit=0;direction=0 blockId=461 -runtimeId=292 +runtimeId=6824 minecraft:bell;attachment=standing;toggle_bit=0;direction=1 blockId=461 -runtimeId=293 +runtimeId=6825 minecraft:bell;attachment=standing;toggle_bit=0;direction=2 blockId=461 -runtimeId=294 +runtimeId=6826 minecraft:bell;attachment=standing;toggle_bit=0;direction=3 blockId=461 -runtimeId=295 +runtimeId=6827 minecraft:bell;attachment=standing;toggle_bit=1;direction=0 blockId=461 -runtimeId=308 +runtimeId=6840 minecraft:bell;attachment=standing;toggle_bit=1;direction=1 blockId=461 -runtimeId=309 +runtimeId=6841 minecraft:bell;attachment=standing;toggle_bit=1;direction=2 blockId=461 -runtimeId=310 +runtimeId=6842 minecraft:bell;attachment=standing;toggle_bit=1;direction=3 blockId=461 -runtimeId=311 +runtimeId=6843 minecraft:big_dripleaf;big_dripleaf_tilt=full_tilt;big_dripleaf_head=0;direction=0 blockId=578 -runtimeId=327 +runtimeId=5903 minecraft:big_dripleaf;big_dripleaf_tilt=full_tilt;big_dripleaf_head=0;direction=1 blockId=578 -runtimeId=335 +runtimeId=5911 minecraft:big_dripleaf;big_dripleaf_tilt=full_tilt;big_dripleaf_head=0;direction=2 blockId=578 -runtimeId=343 +runtimeId=5919 minecraft:big_dripleaf;big_dripleaf_tilt=full_tilt;big_dripleaf_head=0;direction=3 blockId=578 -runtimeId=351 +runtimeId=5927 minecraft:big_dripleaf;big_dripleaf_tilt=full_tilt;big_dripleaf_head=1;direction=0 blockId=578 -runtimeId=331 +runtimeId=5907 minecraft:big_dripleaf;big_dripleaf_tilt=full_tilt;big_dripleaf_head=1;direction=1 blockId=578 -runtimeId=339 +runtimeId=5915 minecraft:big_dripleaf;big_dripleaf_tilt=full_tilt;big_dripleaf_head=1;direction=2 blockId=578 -runtimeId=347 +runtimeId=5923 minecraft:big_dripleaf;big_dripleaf_tilt=full_tilt;big_dripleaf_head=1;direction=3 blockId=578 -runtimeId=355 +runtimeId=5931 minecraft:big_dripleaf;big_dripleaf_tilt=none;big_dripleaf_head=0;direction=0 blockId=578 -runtimeId=324 +runtimeId=5900 minecraft:big_dripleaf;big_dripleaf_tilt=none;big_dripleaf_head=0;direction=1 blockId=578 -runtimeId=332 +runtimeId=5908 minecraft:big_dripleaf;big_dripleaf_tilt=none;big_dripleaf_head=0;direction=2 blockId=578 -runtimeId=340 +runtimeId=5916 minecraft:big_dripleaf;big_dripleaf_tilt=none;big_dripleaf_head=0;direction=3 blockId=578 -runtimeId=348 +runtimeId=5924 minecraft:big_dripleaf;big_dripleaf_tilt=none;big_dripleaf_head=1;direction=0 blockId=578 -runtimeId=328 +runtimeId=5904 minecraft:big_dripleaf;big_dripleaf_tilt=none;big_dripleaf_head=1;direction=1 blockId=578 -runtimeId=336 +runtimeId=5912 minecraft:big_dripleaf;big_dripleaf_tilt=none;big_dripleaf_head=1;direction=2 blockId=578 -runtimeId=344 +runtimeId=5920 minecraft:big_dripleaf;big_dripleaf_tilt=none;big_dripleaf_head=1;direction=3 blockId=578 -runtimeId=352 +runtimeId=5928 minecraft:big_dripleaf;big_dripleaf_tilt=partial_tilt;big_dripleaf_head=0;direction=0 blockId=578 -runtimeId=326 +runtimeId=5902 minecraft:big_dripleaf;big_dripleaf_tilt=partial_tilt;big_dripleaf_head=0;direction=1 blockId=578 -runtimeId=334 +runtimeId=5910 minecraft:big_dripleaf;big_dripleaf_tilt=partial_tilt;big_dripleaf_head=0;direction=2 blockId=578 -runtimeId=342 +runtimeId=5918 minecraft:big_dripleaf;big_dripleaf_tilt=partial_tilt;big_dripleaf_head=0;direction=3 blockId=578 -runtimeId=350 +runtimeId=5926 minecraft:big_dripleaf;big_dripleaf_tilt=partial_tilt;big_dripleaf_head=1;direction=0 blockId=578 -runtimeId=330 +runtimeId=5906 minecraft:big_dripleaf;big_dripleaf_tilt=partial_tilt;big_dripleaf_head=1;direction=1 blockId=578 -runtimeId=338 +runtimeId=5914 minecraft:big_dripleaf;big_dripleaf_tilt=partial_tilt;big_dripleaf_head=1;direction=2 blockId=578 -runtimeId=346 +runtimeId=5922 minecraft:big_dripleaf;big_dripleaf_tilt=partial_tilt;big_dripleaf_head=1;direction=3 blockId=578 -runtimeId=354 +runtimeId=5930 minecraft:big_dripleaf;big_dripleaf_tilt=unstable;big_dripleaf_head=0;direction=0 blockId=578 -runtimeId=325 +runtimeId=5901 minecraft:big_dripleaf;big_dripleaf_tilt=unstable;big_dripleaf_head=0;direction=1 blockId=578 -runtimeId=333 +runtimeId=5909 minecraft:big_dripleaf;big_dripleaf_tilt=unstable;big_dripleaf_head=0;direction=2 blockId=578 -runtimeId=341 +runtimeId=5917 minecraft:big_dripleaf;big_dripleaf_tilt=unstable;big_dripleaf_head=0;direction=3 blockId=578 -runtimeId=349 +runtimeId=5925 minecraft:big_dripleaf;big_dripleaf_tilt=unstable;big_dripleaf_head=1;direction=0 blockId=578 -runtimeId=329 +runtimeId=5905 minecraft:big_dripleaf;big_dripleaf_tilt=unstable;big_dripleaf_head=1;direction=1 blockId=578 -runtimeId=337 +runtimeId=5913 minecraft:big_dripleaf;big_dripleaf_tilt=unstable;big_dripleaf_head=1;direction=2 blockId=578 -runtimeId=345 +runtimeId=5921 minecraft:big_dripleaf;big_dripleaf_tilt=unstable;big_dripleaf_head=1;direction=3 blockId=578 -runtimeId=353 +runtimeId=5929 minecraft:birch_button;button_pressed_bit=0;facing_direction=0 blockId=396 -runtimeId=356 +runtimeId=7708 minecraft:birch_button;button_pressed_bit=0;facing_direction=1 blockId=396 -runtimeId=357 +runtimeId=7709 minecraft:birch_button;button_pressed_bit=0;facing_direction=2 blockId=396 -runtimeId=358 +runtimeId=7710 minecraft:birch_button;button_pressed_bit=0;facing_direction=3 blockId=396 -runtimeId=359 +runtimeId=7711 minecraft:birch_button;button_pressed_bit=0;facing_direction=4 blockId=396 -runtimeId=360 +runtimeId=7712 minecraft:birch_button;button_pressed_bit=0;facing_direction=5 blockId=396 -runtimeId=361 +runtimeId=7713 minecraft:birch_button;button_pressed_bit=1;facing_direction=0 blockId=396 -runtimeId=362 +runtimeId=7714 minecraft:birch_button;button_pressed_bit=1;facing_direction=1 blockId=396 -runtimeId=363 +runtimeId=7715 minecraft:birch_button;button_pressed_bit=1;facing_direction=2 blockId=396 -runtimeId=364 +runtimeId=7716 minecraft:birch_button;button_pressed_bit=1;facing_direction=3 blockId=396 -runtimeId=365 +runtimeId=7717 minecraft:birch_button;button_pressed_bit=1;facing_direction=4 blockId=396 -runtimeId=366 +runtimeId=7718 minecraft:birch_button;button_pressed_bit=1;facing_direction=5 blockId=396 -runtimeId=367 +runtimeId=7719 minecraft:birch_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=194 -runtimeId=368 +runtimeId=7025 minecraft:birch_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=194 -runtimeId=369 +runtimeId=7026 minecraft:birch_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=194 -runtimeId=370 +runtimeId=7027 minecraft:birch_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=194 -runtimeId=371 +runtimeId=7028 minecraft:birch_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=194 -runtimeId=384 +runtimeId=7041 minecraft:birch_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=194 -runtimeId=385 +runtimeId=7042 minecraft:birch_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=194 -runtimeId=386 +runtimeId=7043 minecraft:birch_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=194 -runtimeId=387 +runtimeId=7044 minecraft:birch_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=194 -runtimeId=376 +runtimeId=7033 minecraft:birch_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=194 -runtimeId=377 +runtimeId=7034 minecraft:birch_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=194 -runtimeId=378 +runtimeId=7035 minecraft:birch_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=194 -runtimeId=379 +runtimeId=7036 minecraft:birch_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=194 -runtimeId=392 +runtimeId=7049 minecraft:birch_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=194 -runtimeId=393 +runtimeId=7050 minecraft:birch_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=194 -runtimeId=394 +runtimeId=7051 minecraft:birch_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=194 -runtimeId=395 +runtimeId=7052 minecraft:birch_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=194 -runtimeId=372 +runtimeId=7029 minecraft:birch_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=194 -runtimeId=373 +runtimeId=7030 minecraft:birch_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=194 -runtimeId=374 +runtimeId=7031 minecraft:birch_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=194 -runtimeId=375 +runtimeId=7032 minecraft:birch_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=194 -runtimeId=388 +runtimeId=7045 minecraft:birch_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=194 -runtimeId=389 +runtimeId=7046 minecraft:birch_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=194 -runtimeId=390 +runtimeId=7047 minecraft:birch_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=194 -runtimeId=391 +runtimeId=7048 minecraft:birch_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=194 -runtimeId=380 +runtimeId=7037 minecraft:birch_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=194 -runtimeId=381 +runtimeId=7038 minecraft:birch_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=194 -runtimeId=382 +runtimeId=7039 minecraft:birch_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=194 -runtimeId=383 +runtimeId=7040 minecraft:birch_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=194 -runtimeId=396 +runtimeId=7053 minecraft:birch_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=194 -runtimeId=397 +runtimeId=7054 minecraft:birch_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=194 -runtimeId=398 +runtimeId=7055 minecraft:birch_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=194 -runtimeId=399 +runtimeId=7056 minecraft:birch_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=184 -runtimeId=400 +runtimeId=3782 minecraft:birch_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=184 -runtimeId=401 +runtimeId=3783 minecraft:birch_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=184 -runtimeId=402 +runtimeId=3784 minecraft:birch_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=184 -runtimeId=403 +runtimeId=3785 minecraft:birch_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=184 -runtimeId=404 +runtimeId=3786 minecraft:birch_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=184 -runtimeId=405 +runtimeId=3787 minecraft:birch_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=184 -runtimeId=406 +runtimeId=3788 minecraft:birch_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=184 -runtimeId=407 +runtimeId=3789 minecraft:birch_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=184 -runtimeId=408 +runtimeId=3790 minecraft:birch_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=184 -runtimeId=409 +runtimeId=3791 minecraft:birch_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=184 -runtimeId=410 +runtimeId=3792 minecraft:birch_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=184 -runtimeId=411 +runtimeId=3793 minecraft:birch_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=184 -runtimeId=412 +runtimeId=3794 minecraft:birch_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=184 -runtimeId=413 +runtimeId=3795 minecraft:birch_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=184 -runtimeId=414 +runtimeId=3796 minecraft:birch_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=184 -runtimeId=415 +runtimeId=3797 minecraft:birch_pressure_plate;redstone_signal=0 blockId=406 -runtimeId=416 +runtimeId=3560 minecraft:birch_pressure_plate;redstone_signal=1 blockId=406 -runtimeId=417 +runtimeId=3561 minecraft:birch_pressure_plate;redstone_signal=2 blockId=406 -runtimeId=418 +runtimeId=3562 minecraft:birch_pressure_plate;redstone_signal=3 blockId=406 -runtimeId=419 +runtimeId=3563 minecraft:birch_pressure_plate;redstone_signal=4 blockId=406 -runtimeId=420 +runtimeId=3564 minecraft:birch_pressure_plate;redstone_signal=5 blockId=406 -runtimeId=421 +runtimeId=3565 minecraft:birch_pressure_plate;redstone_signal=6 blockId=406 -runtimeId=422 +runtimeId=3566 minecraft:birch_pressure_plate;redstone_signal=7 blockId=406 -runtimeId=423 +runtimeId=3567 minecraft:birch_pressure_plate;redstone_signal=8 blockId=406 -runtimeId=424 +runtimeId=3568 minecraft:birch_pressure_plate;redstone_signal=9 blockId=406 -runtimeId=425 +runtimeId=3569 minecraft:birch_pressure_plate;redstone_signal=10 blockId=406 -runtimeId=426 +runtimeId=3570 minecraft:birch_pressure_plate;redstone_signal=11 blockId=406 -runtimeId=427 +runtimeId=3571 minecraft:birch_pressure_plate;redstone_signal=12 blockId=406 -runtimeId=428 +runtimeId=3572 minecraft:birch_pressure_plate;redstone_signal=13 blockId=406 -runtimeId=429 +runtimeId=3573 minecraft:birch_pressure_plate;redstone_signal=14 blockId=406 -runtimeId=430 +runtimeId=3574 minecraft:birch_pressure_plate;redstone_signal=15 blockId=406 -runtimeId=431 +runtimeId=3575 minecraft:birch_stairs;upside_down_bit=0;weirdo_direction=0 blockId=135 -runtimeId=432 +runtimeId=6957 minecraft:birch_stairs;upside_down_bit=0;weirdo_direction=1 blockId=135 -runtimeId=433 +runtimeId=6958 minecraft:birch_stairs;upside_down_bit=0;weirdo_direction=2 blockId=135 -runtimeId=434 +runtimeId=6959 minecraft:birch_stairs;upside_down_bit=0;weirdo_direction=3 blockId=135 -runtimeId=435 +runtimeId=6960 minecraft:birch_stairs;upside_down_bit=1;weirdo_direction=0 blockId=135 -runtimeId=436 +runtimeId=6961 minecraft:birch_stairs;upside_down_bit=1;weirdo_direction=1 blockId=135 -runtimeId=437 +runtimeId=6962 minecraft:birch_stairs;upside_down_bit=1;weirdo_direction=2 blockId=135 -runtimeId=438 +runtimeId=6963 minecraft:birch_stairs;upside_down_bit=1;weirdo_direction=3 blockId=135 -runtimeId=439 +runtimeId=6964 minecraft:birch_standing_sign;ground_sign_direction=0 blockId=441 -runtimeId=440 +runtimeId=8 minecraft:birch_standing_sign;ground_sign_direction=1 blockId=441 -runtimeId=441 +runtimeId=9 minecraft:birch_standing_sign;ground_sign_direction=2 blockId=441 -runtimeId=442 +runtimeId=10 minecraft:birch_standing_sign;ground_sign_direction=3 blockId=441 -runtimeId=443 +runtimeId=11 minecraft:birch_standing_sign;ground_sign_direction=4 blockId=441 -runtimeId=444 +runtimeId=12 minecraft:birch_standing_sign;ground_sign_direction=5 blockId=441 -runtimeId=445 +runtimeId=13 minecraft:birch_standing_sign;ground_sign_direction=6 blockId=441 -runtimeId=446 +runtimeId=14 minecraft:birch_standing_sign;ground_sign_direction=7 blockId=441 -runtimeId=447 +runtimeId=15 minecraft:birch_standing_sign;ground_sign_direction=8 blockId=441 -runtimeId=448 +runtimeId=16 minecraft:birch_standing_sign;ground_sign_direction=9 blockId=441 -runtimeId=449 +runtimeId=17 minecraft:birch_standing_sign;ground_sign_direction=10 blockId=441 -runtimeId=450 +runtimeId=18 minecraft:birch_standing_sign;ground_sign_direction=11 blockId=441 -runtimeId=451 +runtimeId=19 minecraft:birch_standing_sign;ground_sign_direction=12 blockId=441 -runtimeId=452 +runtimeId=20 minecraft:birch_standing_sign;ground_sign_direction=13 blockId=441 -runtimeId=453 +runtimeId=21 minecraft:birch_standing_sign;ground_sign_direction=14 blockId=441 -runtimeId=454 +runtimeId=22 minecraft:birch_standing_sign;ground_sign_direction=15 blockId=441 -runtimeId=455 +runtimeId=23 minecraft:birch_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=401 -runtimeId=456 +runtimeId=6524 minecraft:birch_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=401 -runtimeId=457 +runtimeId=6525 minecraft:birch_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=401 -runtimeId=458 +runtimeId=6526 minecraft:birch_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=401 -runtimeId=459 +runtimeId=6527 minecraft:birch_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=401 -runtimeId=460 +runtimeId=6528 minecraft:birch_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=401 -runtimeId=461 +runtimeId=6529 minecraft:birch_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=401 -runtimeId=462 +runtimeId=6530 minecraft:birch_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=401 -runtimeId=463 +runtimeId=6531 minecraft:birch_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=401 -runtimeId=464 +runtimeId=6532 minecraft:birch_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=401 -runtimeId=465 +runtimeId=6533 minecraft:birch_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=401 -runtimeId=466 +runtimeId=6534 minecraft:birch_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=401 -runtimeId=467 +runtimeId=6535 minecraft:birch_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=401 -runtimeId=468 +runtimeId=6536 minecraft:birch_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=401 -runtimeId=469 +runtimeId=6537 minecraft:birch_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=401 -runtimeId=470 +runtimeId=6538 minecraft:birch_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=401 -runtimeId=471 +runtimeId=6539 minecraft:birch_wall_sign;facing_direction=0 blockId=442 -runtimeId=472 +runtimeId=6806 minecraft:birch_wall_sign;facing_direction=1 blockId=442 -runtimeId=473 +runtimeId=6807 minecraft:birch_wall_sign;facing_direction=2 blockId=442 -runtimeId=474 +runtimeId=6808 minecraft:birch_wall_sign;facing_direction=3 blockId=442 -runtimeId=475 +runtimeId=6809 minecraft:birch_wall_sign;facing_direction=4 blockId=442 -runtimeId=476 +runtimeId=6810 minecraft:birch_wall_sign;facing_direction=5 blockId=442 -runtimeId=477 +runtimeId=6811 minecraft:black_candle;lit=0;candles=0 blockId=683 -runtimeId=478 +runtimeId=171 minecraft:black_candle;lit=0;candles=1 blockId=683 -runtimeId=479 +runtimeId=172 minecraft:black_candle;lit=0;candles=2 blockId=683 -runtimeId=480 +runtimeId=173 minecraft:black_candle;lit=0;candles=3 blockId=683 -runtimeId=481 +runtimeId=174 minecraft:black_candle;lit=1;candles=0 blockId=683 -runtimeId=482 +runtimeId=175 minecraft:black_candle;lit=1;candles=1 blockId=683 -runtimeId=483 +runtimeId=176 minecraft:black_candle;lit=1;candles=2 blockId=683 -runtimeId=484 +runtimeId=177 minecraft:black_candle;lit=1;candles=3 blockId=683 -runtimeId=485 +runtimeId=178 minecraft:black_candle_cake;lit=0 blockId=700 -runtimeId=486 +runtimeId=4515 minecraft:black_candle_cake;lit=1 blockId=700 -runtimeId=487 +runtimeId=4516 minecraft:black_glazed_terracotta;facing_direction=0 blockId=235 -runtimeId=488 +runtimeId=5758 minecraft:black_glazed_terracotta;facing_direction=1 blockId=235 -runtimeId=489 +runtimeId=5759 minecraft:black_glazed_terracotta;facing_direction=2 blockId=235 -runtimeId=490 +runtimeId=5760 minecraft:black_glazed_terracotta;facing_direction=3 blockId=235 -runtimeId=491 +runtimeId=5761 minecraft:black_glazed_terracotta;facing_direction=4 blockId=235 -runtimeId=492 +runtimeId=5762 minecraft:black_glazed_terracotta;facing_direction=5 blockId=235 -runtimeId=493 +runtimeId=5763 minecraft:blackstone blockId=528 -runtimeId=494 +runtimeId=7527 minecraft:blackstone_double_slab;top_slot_bit=0 blockId=538 -runtimeId=495 +runtimeId=114 minecraft:blackstone_double_slab;top_slot_bit=1 blockId=538 -runtimeId=496 +runtimeId=115 minecraft:blackstone_slab;top_slot_bit=0 blockId=537 -runtimeId=497 +runtimeId=918 minecraft:blackstone_slab;top_slot_bit=1 blockId=537 -runtimeId=498 +runtimeId=919 minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=531 -runtimeId=499 +runtimeId=6973 minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=531 -runtimeId=500 +runtimeId=6974 minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=531 -runtimeId=501 +runtimeId=6975 minecraft:blackstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=531 -runtimeId=502 +runtimeId=6976 minecraft:blackstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=531 -runtimeId=503 +runtimeId=6977 minecraft:blackstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=531 -runtimeId=504 +runtimeId=6978 minecraft:blackstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=531 -runtimeId=505 +runtimeId=6979 minecraft:blackstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=531 -runtimeId=506 +runtimeId=6980 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=507 +runtimeId=3919 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=509 +runtimeId=3921 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=511 +runtimeId=3923 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=561 +runtimeId=3973 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=563 +runtimeId=3975 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=565 +runtimeId=3977 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=615 +runtimeId=4027 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=617 +runtimeId=4029 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=619 +runtimeId=4031 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=525 +runtimeId=3937 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=527 +runtimeId=3939 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=529 +runtimeId=3941 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=579 +runtimeId=3991 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=581 +runtimeId=3993 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=583 +runtimeId=3995 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=633 +runtimeId=4045 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=635 +runtimeId=4047 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=637 +runtimeId=4049 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=543 +runtimeId=3955 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=545 +runtimeId=3957 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=547 +runtimeId=3959 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=597 +runtimeId=4009 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=599 +runtimeId=4011 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=601 +runtimeId=4013 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=651 +runtimeId=4063 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=653 +runtimeId=4065 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=655 +runtimeId=4067 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=508 +runtimeId=3920 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=510 +runtimeId=3922 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=512 +runtimeId=3924 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=562 +runtimeId=3974 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=564 +runtimeId=3976 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=566 +runtimeId=3978 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=616 +runtimeId=4028 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=618 +runtimeId=4030 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=620 +runtimeId=4032 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=526 +runtimeId=3938 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=528 +runtimeId=3940 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=530 +runtimeId=3942 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=580 +runtimeId=3992 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=582 +runtimeId=3994 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=584 +runtimeId=3996 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=634 +runtimeId=4046 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=636 +runtimeId=4048 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=638 +runtimeId=4050 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=544 +runtimeId=3956 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=546 +runtimeId=3958 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=548 +runtimeId=3960 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=598 +runtimeId=4010 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=600 +runtimeId=4012 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=602 +runtimeId=4014 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=652 +runtimeId=4064 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=654 +runtimeId=4066 minecraft:blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=656 +runtimeId=4068 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=513 +runtimeId=3925 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=515 +runtimeId=3927 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=517 +runtimeId=3929 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=567 +runtimeId=3979 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=569 +runtimeId=3981 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=571 +runtimeId=3983 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=621 +runtimeId=4033 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=623 +runtimeId=4035 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=625 +runtimeId=4037 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=531 +runtimeId=3943 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=533 +runtimeId=3945 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=535 +runtimeId=3947 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=585 +runtimeId=3997 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=587 +runtimeId=3999 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=589 +runtimeId=4001 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=639 +runtimeId=4051 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=641 +runtimeId=4053 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=643 +runtimeId=4055 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=549 +runtimeId=3961 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=551 +runtimeId=3963 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=553 +runtimeId=3965 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=603 +runtimeId=4015 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=605 +runtimeId=4017 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=607 +runtimeId=4019 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=657 +runtimeId=4069 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=659 +runtimeId=4071 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=661 +runtimeId=4073 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=514 +runtimeId=3926 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=516 +runtimeId=3928 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=518 +runtimeId=3930 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=568 +runtimeId=3980 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=570 +runtimeId=3982 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=572 +runtimeId=3984 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=622 +runtimeId=4034 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=624 +runtimeId=4036 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=626 +runtimeId=4038 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=532 +runtimeId=3944 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=534 +runtimeId=3946 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=536 +runtimeId=3948 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=586 +runtimeId=3998 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=588 +runtimeId=4000 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=590 +runtimeId=4002 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=640 +runtimeId=4052 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=642 +runtimeId=4054 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=644 +runtimeId=4056 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=550 +runtimeId=3962 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=552 +runtimeId=3964 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=554 +runtimeId=3966 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=604 +runtimeId=4016 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=606 +runtimeId=4018 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=608 +runtimeId=4020 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=658 +runtimeId=4070 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=660 +runtimeId=4072 minecraft:blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=662 +runtimeId=4074 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=519 +runtimeId=3931 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=521 +runtimeId=3933 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=523 +runtimeId=3935 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=573 +runtimeId=3985 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=575 +runtimeId=3987 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=577 +runtimeId=3989 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=627 +runtimeId=4039 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=629 +runtimeId=4041 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=631 +runtimeId=4043 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=537 +runtimeId=3949 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=539 +runtimeId=3951 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=541 +runtimeId=3953 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=591 +runtimeId=4003 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=593 +runtimeId=4005 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=595 +runtimeId=4007 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=645 +runtimeId=4057 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=647 +runtimeId=4059 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=649 +runtimeId=4061 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=555 +runtimeId=3967 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=557 +runtimeId=3969 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=559 +runtimeId=3971 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=609 +runtimeId=4021 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=611 +runtimeId=4023 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=613 +runtimeId=4025 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=663 +runtimeId=4075 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=665 +runtimeId=4077 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=667 +runtimeId=4079 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=520 +runtimeId=3932 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=522 +runtimeId=3934 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=524 +runtimeId=3936 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=574 +runtimeId=3986 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=576 +runtimeId=3988 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=578 +runtimeId=3990 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=628 +runtimeId=4040 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=630 +runtimeId=4042 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=632 +runtimeId=4044 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=538 +runtimeId=3950 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=540 +runtimeId=3952 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=542 +runtimeId=3954 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=592 +runtimeId=4004 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=594 +runtimeId=4006 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=596 +runtimeId=4008 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=646 +runtimeId=4058 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=648 +runtimeId=4060 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=650 +runtimeId=4062 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=532 -runtimeId=556 +runtimeId=3968 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=532 -runtimeId=558 +runtimeId=3970 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=532 -runtimeId=560 +runtimeId=3972 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=532 -runtimeId=610 +runtimeId=4022 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=532 -runtimeId=612 +runtimeId=4024 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=532 -runtimeId=614 +runtimeId=4026 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=532 -runtimeId=664 +runtimeId=4076 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=532 -runtimeId=666 +runtimeId=4078 minecraft:blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=532 -runtimeId=668 +runtimeId=4080 minecraft:blast_furnace;facing_direction=0 blockId=451 -runtimeId=669 +runtimeId=7509 minecraft:blast_furnace;facing_direction=1 blockId=451 -runtimeId=670 +runtimeId=7510 minecraft:blast_furnace;facing_direction=2 blockId=451 -runtimeId=671 +runtimeId=7511 minecraft:blast_furnace;facing_direction=3 blockId=451 -runtimeId=672 +runtimeId=7512 minecraft:blast_furnace;facing_direction=4 blockId=451 -runtimeId=673 +runtimeId=7513 minecraft:blast_furnace;facing_direction=5 blockId=451 -runtimeId=674 +runtimeId=7514 minecraft:blue_candle;lit=0;candles=0 blockId=679 -runtimeId=675 +runtimeId=0 minecraft:blue_candle;lit=0;candles=1 blockId=679 -runtimeId=676 +runtimeId=1 minecraft:blue_candle;lit=0;candles=2 blockId=679 -runtimeId=677 +runtimeId=2 minecraft:blue_candle;lit=0;candles=3 blockId=679 -runtimeId=678 +runtimeId=3 minecraft:blue_candle;lit=1;candles=0 blockId=679 -runtimeId=679 +runtimeId=4 minecraft:blue_candle;lit=1;candles=1 blockId=679 -runtimeId=680 +runtimeId=5 minecraft:blue_candle;lit=1;candles=2 blockId=679 -runtimeId=681 +runtimeId=6 minecraft:blue_candle;lit=1;candles=3 blockId=679 -runtimeId=682 +runtimeId=7 minecraft:blue_candle_cake;lit=0 blockId=696 -runtimeId=683 +runtimeId=5932 minecraft:blue_candle_cake;lit=1 blockId=696 -runtimeId=684 +runtimeId=5933 minecraft:blue_glazed_terracotta;facing_direction=0 blockId=231 -runtimeId=685 +runtimeId=5415 minecraft:blue_glazed_terracotta;facing_direction=1 blockId=231 -runtimeId=686 +runtimeId=5416 minecraft:blue_glazed_terracotta;facing_direction=2 blockId=231 -runtimeId=687 +runtimeId=5417 minecraft:blue_glazed_terracotta;facing_direction=3 blockId=231 -runtimeId=688 +runtimeId=5418 minecraft:blue_glazed_terracotta;facing_direction=4 blockId=231 -runtimeId=689 +runtimeId=5419 minecraft:blue_glazed_terracotta;facing_direction=5 blockId=231 -runtimeId=690 +runtimeId=5420 minecraft:blue_ice blockId=266 -runtimeId=691 +runtimeId=6981 minecraft:bone_block;deprecated=0;pillar_axis=x blockId=216 -runtimeId=696 +runtimeId=4202 minecraft:bone_block;deprecated=0;pillar_axis=y blockId=216 -runtimeId=692 +runtimeId=4198 minecraft:bone_block;deprecated=0;pillar_axis=z blockId=216 -runtimeId=700 +runtimeId=4206 minecraft:bone_block;deprecated=1;pillar_axis=x blockId=216 -runtimeId=697 +runtimeId=4203 minecraft:bone_block;deprecated=1;pillar_axis=y blockId=216 -runtimeId=693 +runtimeId=4199 minecraft:bone_block;deprecated=1;pillar_axis=z blockId=216 -runtimeId=701 +runtimeId=4207 minecraft:bone_block;deprecated=2;pillar_axis=x blockId=216 -runtimeId=698 +runtimeId=4204 minecraft:bone_block;deprecated=2;pillar_axis=y blockId=216 -runtimeId=694 +runtimeId=4200 minecraft:bone_block;deprecated=2;pillar_axis=z blockId=216 -runtimeId=702 +runtimeId=4208 minecraft:bone_block;deprecated=3;pillar_axis=x blockId=216 -runtimeId=699 +runtimeId=4205 minecraft:bone_block;deprecated=3;pillar_axis=y blockId=216 -runtimeId=695 +runtimeId=4201 minecraft:bone_block;deprecated=3;pillar_axis=z blockId=216 -runtimeId=703 +runtimeId=4209 minecraft:bookshelf blockId=47 -runtimeId=704 +runtimeId=6545 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=705 +runtimeId=4855 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=707 +runtimeId=4857 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=709 +runtimeId=4859 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=759 +runtimeId=4909 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=761 +runtimeId=4911 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=763 +runtimeId=4913 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=813 +runtimeId=4963 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=815 +runtimeId=4965 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=817 +runtimeId=4967 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=723 +runtimeId=4873 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=725 +runtimeId=4875 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=727 +runtimeId=4877 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=777 +runtimeId=4927 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=779 +runtimeId=4929 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=781 +runtimeId=4931 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=831 +runtimeId=4981 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=833 +runtimeId=4983 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=835 +runtimeId=4985 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=741 +runtimeId=4891 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=743 +runtimeId=4893 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=745 +runtimeId=4895 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=795 +runtimeId=4945 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=797 +runtimeId=4947 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=799 +runtimeId=4949 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=849 +runtimeId=4999 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=851 +runtimeId=5001 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=853 +runtimeId=5003 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=706 +runtimeId=4856 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=708 +runtimeId=4858 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=710 +runtimeId=4860 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=760 +runtimeId=4910 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=762 +runtimeId=4912 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=764 +runtimeId=4914 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=814 +runtimeId=4964 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=816 +runtimeId=4966 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=818 +runtimeId=4968 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=724 +runtimeId=4874 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=726 +runtimeId=4876 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=728 +runtimeId=4878 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=778 +runtimeId=4928 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=780 +runtimeId=4930 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=782 +runtimeId=4932 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=832 +runtimeId=4982 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=834 +runtimeId=4984 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=836 +runtimeId=4986 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=742 +runtimeId=4892 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=744 +runtimeId=4894 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=746 +runtimeId=4896 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=796 +runtimeId=4946 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=798 +runtimeId=4948 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=800 +runtimeId=4950 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=850 +runtimeId=5000 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=852 +runtimeId=5002 minecraft:border_block;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=854 +runtimeId=5004 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=711 +runtimeId=4861 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=713 +runtimeId=4863 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=715 +runtimeId=4865 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=765 +runtimeId=4915 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=767 +runtimeId=4917 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=769 +runtimeId=4919 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=819 +runtimeId=4969 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=821 +runtimeId=4971 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=823 +runtimeId=4973 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=729 +runtimeId=4879 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=731 +runtimeId=4881 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=733 +runtimeId=4883 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=783 +runtimeId=4933 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=785 +runtimeId=4935 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=787 +runtimeId=4937 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=837 +runtimeId=4987 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=839 +runtimeId=4989 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=841 +runtimeId=4991 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=747 +runtimeId=4897 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=749 +runtimeId=4899 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=751 +runtimeId=4901 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=801 +runtimeId=4951 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=803 +runtimeId=4953 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=805 +runtimeId=4955 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=855 +runtimeId=5005 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=857 +runtimeId=5007 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=859 +runtimeId=5009 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=712 +runtimeId=4862 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=714 +runtimeId=4864 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=716 +runtimeId=4866 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=766 +runtimeId=4916 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=768 +runtimeId=4918 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=770 +runtimeId=4920 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=820 +runtimeId=4970 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=822 +runtimeId=4972 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=824 +runtimeId=4974 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=730 +runtimeId=4880 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=732 +runtimeId=4882 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=734 +runtimeId=4884 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=784 +runtimeId=4934 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=786 +runtimeId=4936 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=788 +runtimeId=4938 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=838 +runtimeId=4988 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=840 +runtimeId=4990 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=842 +runtimeId=4992 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=748 +runtimeId=4898 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=750 +runtimeId=4900 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=752 +runtimeId=4902 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=802 +runtimeId=4952 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=804 +runtimeId=4954 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=806 +runtimeId=4956 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=856 +runtimeId=5006 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=858 +runtimeId=5008 minecraft:border_block;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=860 +runtimeId=5010 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=717 +runtimeId=4867 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=719 +runtimeId=4869 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=721 +runtimeId=4871 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=771 +runtimeId=4921 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=773 +runtimeId=4923 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=775 +runtimeId=4925 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=825 +runtimeId=4975 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=827 +runtimeId=4977 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=829 +runtimeId=4979 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=735 +runtimeId=4885 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=737 +runtimeId=4887 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=739 +runtimeId=4889 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=789 +runtimeId=4939 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=791 +runtimeId=4941 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=793 +runtimeId=4943 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=843 +runtimeId=4993 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=845 +runtimeId=4995 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=847 +runtimeId=4997 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=753 +runtimeId=4903 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=755 +runtimeId=4905 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=757 +runtimeId=4907 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=807 +runtimeId=4957 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=809 +runtimeId=4959 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=811 +runtimeId=4961 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=861 +runtimeId=5011 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=863 +runtimeId=5013 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=865 +runtimeId=5015 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=718 +runtimeId=4868 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=720 +runtimeId=4870 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=722 +runtimeId=4872 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=772 +runtimeId=4922 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=774 +runtimeId=4924 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=776 +runtimeId=4926 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=826 +runtimeId=4976 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=828 +runtimeId=4978 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=830 +runtimeId=4980 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=736 +runtimeId=4886 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=738 +runtimeId=4888 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=740 +runtimeId=4890 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=790 +runtimeId=4940 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=792 +runtimeId=4942 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=794 +runtimeId=4944 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=844 +runtimeId=4994 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=846 +runtimeId=4996 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=848 +runtimeId=4998 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=212 -runtimeId=754 +runtimeId=4904 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=212 -runtimeId=756 +runtimeId=4906 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=212 -runtimeId=758 +runtimeId=4908 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=212 -runtimeId=808 +runtimeId=4958 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=212 -runtimeId=810 +runtimeId=4960 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=212 -runtimeId=812 +runtimeId=4962 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=212 -runtimeId=862 +runtimeId=5012 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=212 -runtimeId=864 +runtimeId=5014 minecraft:border_block;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=212 -runtimeId=866 +runtimeId=5016 minecraft:brewing_stand;brewing_stand_slot_c_bit=0;brewing_stand_slot_a_bit=0;brewing_stand_slot_b_bit=0 blockId=117 -runtimeId=867 +runtimeId=7489 minecraft:brewing_stand;brewing_stand_slot_c_bit=0;brewing_stand_slot_a_bit=0;brewing_stand_slot_b_bit=1 blockId=117 -runtimeId=869 +runtimeId=7491 minecraft:brewing_stand;brewing_stand_slot_c_bit=0;brewing_stand_slot_a_bit=1;brewing_stand_slot_b_bit=0 blockId=117 -runtimeId=868 +runtimeId=7490 minecraft:brewing_stand;brewing_stand_slot_c_bit=0;brewing_stand_slot_a_bit=1;brewing_stand_slot_b_bit=1 blockId=117 -runtimeId=870 +runtimeId=7492 minecraft:brewing_stand;brewing_stand_slot_c_bit=1;brewing_stand_slot_a_bit=0;brewing_stand_slot_b_bit=0 blockId=117 -runtimeId=871 +runtimeId=7493 minecraft:brewing_stand;brewing_stand_slot_c_bit=1;brewing_stand_slot_a_bit=0;brewing_stand_slot_b_bit=1 blockId=117 -runtimeId=873 +runtimeId=7495 minecraft:brewing_stand;brewing_stand_slot_c_bit=1;brewing_stand_slot_a_bit=1;brewing_stand_slot_b_bit=0 blockId=117 -runtimeId=872 +runtimeId=7494 minecraft:brewing_stand;brewing_stand_slot_c_bit=1;brewing_stand_slot_a_bit=1;brewing_stand_slot_b_bit=1 blockId=117 -runtimeId=874 +runtimeId=7496 minecraft:brick_block blockId=45 -runtimeId=875 +runtimeId=4721 minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=108 -runtimeId=876 +runtimeId=6421 minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=108 -runtimeId=877 +runtimeId=6422 minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=108 -runtimeId=878 +runtimeId=6423 minecraft:brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=108 -runtimeId=879 +runtimeId=6424 minecraft:brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=108 -runtimeId=880 +runtimeId=6425 minecraft:brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=108 -runtimeId=881 +runtimeId=6426 minecraft:brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=108 -runtimeId=882 +runtimeId=6427 minecraft:brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=108 -runtimeId=883 +runtimeId=6428 minecraft:brown_candle;lit=0;candles=0 blockId=680 -runtimeId=884 +runtimeId=5799 minecraft:brown_candle;lit=0;candles=1 blockId=680 -runtimeId=885 +runtimeId=5800 minecraft:brown_candle;lit=0;candles=2 blockId=680 -runtimeId=886 +runtimeId=5801 minecraft:brown_candle;lit=0;candles=3 blockId=680 -runtimeId=887 +runtimeId=5802 minecraft:brown_candle;lit=1;candles=0 blockId=680 -runtimeId=888 +runtimeId=5803 minecraft:brown_candle;lit=1;candles=1 blockId=680 -runtimeId=889 +runtimeId=5804 minecraft:brown_candle;lit=1;candles=2 blockId=680 -runtimeId=890 +runtimeId=5805 minecraft:brown_candle;lit=1;candles=3 blockId=680 -runtimeId=891 +runtimeId=5806 minecraft:brown_candle_cake;lit=0 blockId=697 -runtimeId=892 +runtimeId=3662 minecraft:brown_candle_cake;lit=1 blockId=697 -runtimeId=893 +runtimeId=3663 minecraft:brown_glazed_terracotta;facing_direction=0 blockId=232 -runtimeId=894 +runtimeId=3552 minecraft:brown_glazed_terracotta;facing_direction=1 blockId=232 -runtimeId=895 +runtimeId=3553 minecraft:brown_glazed_terracotta;facing_direction=2 blockId=232 -runtimeId=896 +runtimeId=3554 minecraft:brown_glazed_terracotta;facing_direction=3 blockId=232 -runtimeId=897 +runtimeId=3555 minecraft:brown_glazed_terracotta;facing_direction=4 blockId=232 -runtimeId=898 +runtimeId=3556 minecraft:brown_glazed_terracotta;facing_direction=5 blockId=232 -runtimeId=899 +runtimeId=3557 minecraft:brown_mushroom blockId=39 -runtimeId=900 +runtimeId=3551 minecraft:brown_mushroom_block;huge_mushroom_bits=0 blockId=99 -runtimeId=901 +runtimeId=7290 minecraft:brown_mushroom_block;huge_mushroom_bits=1 blockId=99 -runtimeId=902 +runtimeId=7291 minecraft:brown_mushroom_block;huge_mushroom_bits=2 blockId=99 -runtimeId=903 +runtimeId=7292 minecraft:brown_mushroom_block;huge_mushroom_bits=3 blockId=99 -runtimeId=904 +runtimeId=7293 minecraft:brown_mushroom_block;huge_mushroom_bits=4 blockId=99 -runtimeId=905 +runtimeId=7294 minecraft:brown_mushroom_block;huge_mushroom_bits=5 blockId=99 -runtimeId=906 +runtimeId=7295 minecraft:brown_mushroom_block;huge_mushroom_bits=6 blockId=99 -runtimeId=907 +runtimeId=7296 minecraft:brown_mushroom_block;huge_mushroom_bits=7 blockId=99 -runtimeId=908 +runtimeId=7297 minecraft:brown_mushroom_block;huge_mushroom_bits=8 blockId=99 -runtimeId=909 +runtimeId=7298 minecraft:brown_mushroom_block;huge_mushroom_bits=9 blockId=99 -runtimeId=910 +runtimeId=7299 minecraft:brown_mushroom_block;huge_mushroom_bits=10 blockId=99 -runtimeId=911 +runtimeId=7300 minecraft:brown_mushroom_block;huge_mushroom_bits=11 blockId=99 -runtimeId=912 +runtimeId=7301 minecraft:brown_mushroom_block;huge_mushroom_bits=12 blockId=99 -runtimeId=913 +runtimeId=7302 minecraft:brown_mushroom_block;huge_mushroom_bits=13 blockId=99 -runtimeId=914 +runtimeId=7303 minecraft:brown_mushroom_block;huge_mushroom_bits=14 blockId=99 -runtimeId=915 +runtimeId=7304 minecraft:brown_mushroom_block;huge_mushroom_bits=15 blockId=99 -runtimeId=916 +runtimeId=7305 minecraft:bubble_column;drag_down=0 blockId=415 -runtimeId=917 +runtimeId=5728 minecraft:bubble_column;drag_down=1 blockId=415 -runtimeId=918 +runtimeId=5729 minecraft:budding_amethyst blockId=583 -runtimeId=919 +runtimeId=6956 minecraft:cactus;age=0 blockId=81 -runtimeId=920 +runtimeId=6940 minecraft:cactus;age=1 blockId=81 -runtimeId=921 +runtimeId=6941 minecraft:cactus;age=2 blockId=81 -runtimeId=922 +runtimeId=6942 minecraft:cactus;age=3 blockId=81 -runtimeId=923 +runtimeId=6943 minecraft:cactus;age=4 blockId=81 -runtimeId=924 +runtimeId=6944 minecraft:cactus;age=5 blockId=81 -runtimeId=925 +runtimeId=6945 minecraft:cactus;age=6 blockId=81 -runtimeId=926 +runtimeId=6946 minecraft:cactus;age=7 blockId=81 -runtimeId=927 +runtimeId=6947 minecraft:cactus;age=8 blockId=81 -runtimeId=928 +runtimeId=6948 minecraft:cactus;age=9 blockId=81 -runtimeId=929 +runtimeId=6949 minecraft:cactus;age=10 blockId=81 -runtimeId=930 +runtimeId=6950 minecraft:cactus;age=11 blockId=81 -runtimeId=931 +runtimeId=6951 minecraft:cactus;age=12 blockId=81 -runtimeId=932 +runtimeId=6952 minecraft:cactus;age=13 blockId=81 -runtimeId=933 +runtimeId=6953 minecraft:cactus;age=14 blockId=81 -runtimeId=934 +runtimeId=6954 minecraft:cactus;age=15 blockId=81 -runtimeId=935 +runtimeId=6955 minecraft:cake;bite_counter=0 blockId=92 -runtimeId=936 +runtimeId=7067 minecraft:cake;bite_counter=1 blockId=92 -runtimeId=937 +runtimeId=7068 minecraft:cake;bite_counter=2 blockId=92 -runtimeId=938 +runtimeId=7069 minecraft:cake;bite_counter=3 blockId=92 -runtimeId=939 +runtimeId=7070 minecraft:cake;bite_counter=4 blockId=92 -runtimeId=940 +runtimeId=7071 minecraft:cake;bite_counter=5 blockId=92 -runtimeId=941 +runtimeId=7072 minecraft:cake;bite_counter=6 blockId=92 -runtimeId=942 +runtimeId=7073 minecraft:calcite blockId=581 -runtimeId=943 +runtimeId=215 minecraft:camera blockId=242 -runtimeId=944 +runtimeId=7226 minecraft:campfire;extinguished=0;direction=0 blockId=464 -runtimeId=945 +runtimeId=5730 minecraft:campfire;extinguished=0;direction=1 blockId=464 -runtimeId=946 +runtimeId=5731 minecraft:campfire;extinguished=0;direction=2 blockId=464 -runtimeId=947 +runtimeId=5732 minecraft:campfire;extinguished=0;direction=3 blockId=464 -runtimeId=948 +runtimeId=5733 minecraft:campfire;extinguished=1;direction=0 blockId=464 -runtimeId=949 +runtimeId=5734 minecraft:campfire;extinguished=1;direction=1 blockId=464 -runtimeId=950 +runtimeId=5735 minecraft:campfire;extinguished=1;direction=2 blockId=464 -runtimeId=951 +runtimeId=5736 minecraft:campfire;extinguished=1;direction=3 blockId=464 -runtimeId=952 +runtimeId=5737 minecraft:candle;lit=0;candles=0 blockId=667 -runtimeId=953 +runtimeId=7345 minecraft:candle;lit=0;candles=1 blockId=667 -runtimeId=954 +runtimeId=7346 minecraft:candle;lit=0;candles=2 blockId=667 -runtimeId=955 +runtimeId=7347 minecraft:candle;lit=0;candles=3 blockId=667 -runtimeId=956 +runtimeId=7348 minecraft:candle;lit=1;candles=0 blockId=667 -runtimeId=957 +runtimeId=7349 minecraft:candle;lit=1;candles=1 blockId=667 -runtimeId=958 +runtimeId=7350 minecraft:candle;lit=1;candles=2 blockId=667 -runtimeId=959 +runtimeId=7351 minecraft:candle;lit=1;candles=3 blockId=667 -runtimeId=960 +runtimeId=7352 minecraft:candle_cake;lit=0 blockId=684 -runtimeId=961 +runtimeId=7524 minecraft:candle_cake;lit=1 blockId=684 -runtimeId=962 +runtimeId=7525 minecraft:carpet;color=black blockId=171 -runtimeId=978 +runtimeId=971 minecraft:carpet;color=blue blockId=171 -runtimeId=974 +runtimeId=967 minecraft:carpet;color=brown blockId=171 -runtimeId=975 +runtimeId=968 minecraft:carpet;color=cyan blockId=171 -runtimeId=972 +runtimeId=965 minecraft:carpet;color=gray blockId=171 -runtimeId=970 +runtimeId=963 minecraft:carpet;color=green blockId=171 -runtimeId=976 +runtimeId=969 minecraft:carpet;color=light_blue blockId=171 -runtimeId=966 +runtimeId=959 minecraft:carpet;color=lime blockId=171 -runtimeId=968 +runtimeId=961 minecraft:carpet;color=magenta blockId=171 -runtimeId=965 +runtimeId=958 minecraft:carpet;color=orange blockId=171 -runtimeId=964 +runtimeId=957 minecraft:carpet;color=pink blockId=171 -runtimeId=969 +runtimeId=962 minecraft:carpet;color=purple blockId=171 -runtimeId=973 +runtimeId=966 minecraft:carpet;color=red blockId=171 -runtimeId=977 +runtimeId=970 minecraft:carpet;color=silver blockId=171 -runtimeId=971 +runtimeId=964 minecraft:carpet;color=white blockId=171 -runtimeId=963 +runtimeId=956 minecraft:carpet;color=yellow blockId=171 -runtimeId=967 +runtimeId=960 minecraft:carrots;growth=0 blockId=141 -runtimeId=979 +runtimeId=5830 minecraft:carrots;growth=1 blockId=141 -runtimeId=980 +runtimeId=5831 minecraft:carrots;growth=2 blockId=141 -runtimeId=981 +runtimeId=5832 minecraft:carrots;growth=3 blockId=141 -runtimeId=982 +runtimeId=5833 minecraft:carrots;growth=4 blockId=141 -runtimeId=983 +runtimeId=5834 minecraft:carrots;growth=5 blockId=141 -runtimeId=984 +runtimeId=5835 minecraft:carrots;growth=6 blockId=141 -runtimeId=985 +runtimeId=5836 minecraft:carrots;growth=7 blockId=141 -runtimeId=986 +runtimeId=5837 minecraft:cartography_table blockId=455 -runtimeId=987 +runtimeId=8227 minecraft:carved_pumpkin;direction=0 blockId=410 -runtimeId=988 +runtimeId=7320 minecraft:carved_pumpkin;direction=1 blockId=410 -runtimeId=989 +runtimeId=7321 minecraft:carved_pumpkin;direction=2 blockId=410 -runtimeId=990 +runtimeId=7322 minecraft:carved_pumpkin;direction=3 blockId=410 -runtimeId=991 +runtimeId=7323 minecraft:cauldron;fill_level=0;cauldron_liquid=lava blockId=118 -runtimeId=999 +runtimeId=7404 minecraft:cauldron;fill_level=0;cauldron_liquid=powder_snow blockId=118 -runtimeId=1006 +runtimeId=7411 minecraft:cauldron;fill_level=0;cauldron_liquid=water blockId=118 -runtimeId=992 +runtimeId=7397 minecraft:cauldron;fill_level=1;cauldron_liquid=lava blockId=118 -runtimeId=1000 +runtimeId=7405 minecraft:cauldron;fill_level=1;cauldron_liquid=powder_snow blockId=118 -runtimeId=1007 +runtimeId=7412 minecraft:cauldron;fill_level=1;cauldron_liquid=water blockId=118 -runtimeId=993 +runtimeId=7398 minecraft:cauldron;fill_level=2;cauldron_liquid=lava blockId=118 -runtimeId=1001 +runtimeId=7406 minecraft:cauldron;fill_level=2;cauldron_liquid=powder_snow blockId=118 -runtimeId=1008 +runtimeId=7413 minecraft:cauldron;fill_level=2;cauldron_liquid=water blockId=118 -runtimeId=994 +runtimeId=7399 minecraft:cauldron;fill_level=3;cauldron_liquid=lava blockId=118 -runtimeId=1002 +runtimeId=7407 minecraft:cauldron;fill_level=3;cauldron_liquid=powder_snow blockId=118 -runtimeId=1009 +runtimeId=7414 minecraft:cauldron;fill_level=3;cauldron_liquid=water blockId=118 -runtimeId=995 +runtimeId=7400 minecraft:cauldron;fill_level=4;cauldron_liquid=lava blockId=118 -runtimeId=1003 +runtimeId=7408 minecraft:cauldron;fill_level=4;cauldron_liquid=powder_snow blockId=118 -runtimeId=1010 +runtimeId=7415 minecraft:cauldron;fill_level=4;cauldron_liquid=water blockId=118 -runtimeId=996 +runtimeId=7401 minecraft:cauldron;fill_level=5;cauldron_liquid=lava blockId=118 -runtimeId=1004 +runtimeId=7409 minecraft:cauldron;fill_level=5;cauldron_liquid=powder_snow blockId=118 -runtimeId=1011 +runtimeId=7416 minecraft:cauldron;fill_level=5;cauldron_liquid=water blockId=118 -runtimeId=997 +runtimeId=7402 minecraft:cauldron;fill_level=6;cauldron_liquid=lava blockId=118 -runtimeId=1005 +runtimeId=7410 minecraft:cauldron;fill_level=6;cauldron_liquid=powder_snow blockId=118 -runtimeId=1012 +runtimeId=7417 minecraft:cauldron;fill_level=6;cauldron_liquid=water blockId=118 -runtimeId=998 +runtimeId=7403 minecraft:cave_vines;growing_plant_age=0 blockId=577 -runtimeId=1013 +runtimeId=4731 minecraft:cave_vines;growing_plant_age=1 blockId=577 -runtimeId=1014 +runtimeId=4732 minecraft:cave_vines;growing_plant_age=2 blockId=577 -runtimeId=1015 +runtimeId=4733 minecraft:cave_vines;growing_plant_age=3 blockId=577 -runtimeId=1016 +runtimeId=4734 minecraft:cave_vines;growing_plant_age=4 blockId=577 -runtimeId=1017 +runtimeId=4735 minecraft:cave_vines;growing_plant_age=5 blockId=577 -runtimeId=1018 +runtimeId=4736 minecraft:cave_vines;growing_plant_age=6 blockId=577 -runtimeId=1019 +runtimeId=4737 minecraft:cave_vines;growing_plant_age=7 blockId=577 -runtimeId=1020 +runtimeId=4738 minecraft:cave_vines;growing_plant_age=8 blockId=577 -runtimeId=1021 +runtimeId=4739 minecraft:cave_vines;growing_plant_age=9 blockId=577 -runtimeId=1022 +runtimeId=4740 minecraft:cave_vines;growing_plant_age=10 blockId=577 -runtimeId=1023 +runtimeId=4741 minecraft:cave_vines;growing_plant_age=11 blockId=577 -runtimeId=1024 +runtimeId=4742 minecraft:cave_vines;growing_plant_age=12 blockId=577 -runtimeId=1025 +runtimeId=4743 minecraft:cave_vines;growing_plant_age=13 blockId=577 -runtimeId=1026 +runtimeId=4744 minecraft:cave_vines;growing_plant_age=14 blockId=577 -runtimeId=1027 +runtimeId=4745 minecraft:cave_vines;growing_plant_age=15 blockId=577 -runtimeId=1028 +runtimeId=4746 minecraft:cave_vines;growing_plant_age=16 blockId=577 -runtimeId=1029 +runtimeId=4747 minecraft:cave_vines;growing_plant_age=17 blockId=577 -runtimeId=1030 +runtimeId=4748 minecraft:cave_vines;growing_plant_age=18 blockId=577 -runtimeId=1031 +runtimeId=4749 minecraft:cave_vines;growing_plant_age=19 blockId=577 -runtimeId=1032 +runtimeId=4750 minecraft:cave_vines;growing_plant_age=20 blockId=577 -runtimeId=1033 +runtimeId=4751 minecraft:cave_vines;growing_plant_age=21 blockId=577 -runtimeId=1034 +runtimeId=4752 minecraft:cave_vines;growing_plant_age=22 blockId=577 -runtimeId=1035 +runtimeId=4753 minecraft:cave_vines;growing_plant_age=23 blockId=577 -runtimeId=1036 +runtimeId=4754 minecraft:cave_vines;growing_plant_age=24 blockId=577 -runtimeId=1037 +runtimeId=4755 minecraft:cave_vines;growing_plant_age=25 blockId=577 -runtimeId=1038 +runtimeId=4756 minecraft:cave_vines_body_with_berries;growing_plant_age=0 blockId=630 -runtimeId=1039 +runtimeId=5854 minecraft:cave_vines_body_with_berries;growing_plant_age=1 blockId=630 -runtimeId=1040 +runtimeId=5855 minecraft:cave_vines_body_with_berries;growing_plant_age=2 blockId=630 -runtimeId=1041 +runtimeId=5856 minecraft:cave_vines_body_with_berries;growing_plant_age=3 blockId=630 -runtimeId=1042 +runtimeId=5857 minecraft:cave_vines_body_with_berries;growing_plant_age=4 blockId=630 -runtimeId=1043 +runtimeId=5858 minecraft:cave_vines_body_with_berries;growing_plant_age=5 blockId=630 -runtimeId=1044 +runtimeId=5859 minecraft:cave_vines_body_with_berries;growing_plant_age=6 blockId=630 -runtimeId=1045 +runtimeId=5860 minecraft:cave_vines_body_with_berries;growing_plant_age=7 blockId=630 -runtimeId=1046 +runtimeId=5861 minecraft:cave_vines_body_with_berries;growing_plant_age=8 blockId=630 -runtimeId=1047 +runtimeId=5862 minecraft:cave_vines_body_with_berries;growing_plant_age=9 blockId=630 -runtimeId=1048 +runtimeId=5863 minecraft:cave_vines_body_with_berries;growing_plant_age=10 blockId=630 -runtimeId=1049 +runtimeId=5864 minecraft:cave_vines_body_with_berries;growing_plant_age=11 blockId=630 -runtimeId=1050 +runtimeId=5865 minecraft:cave_vines_body_with_berries;growing_plant_age=12 blockId=630 -runtimeId=1051 +runtimeId=5866 minecraft:cave_vines_body_with_berries;growing_plant_age=13 blockId=630 -runtimeId=1052 +runtimeId=5867 minecraft:cave_vines_body_with_berries;growing_plant_age=14 blockId=630 -runtimeId=1053 +runtimeId=5868 minecraft:cave_vines_body_with_berries;growing_plant_age=15 blockId=630 -runtimeId=1054 +runtimeId=5869 minecraft:cave_vines_body_with_berries;growing_plant_age=16 blockId=630 -runtimeId=1055 +runtimeId=5870 minecraft:cave_vines_body_with_berries;growing_plant_age=17 blockId=630 -runtimeId=1056 +runtimeId=5871 minecraft:cave_vines_body_with_berries;growing_plant_age=18 blockId=630 -runtimeId=1057 +runtimeId=5872 minecraft:cave_vines_body_with_berries;growing_plant_age=19 blockId=630 -runtimeId=1058 +runtimeId=5873 minecraft:cave_vines_body_with_berries;growing_plant_age=20 blockId=630 -runtimeId=1059 +runtimeId=5874 minecraft:cave_vines_body_with_berries;growing_plant_age=21 blockId=630 -runtimeId=1060 +runtimeId=5875 minecraft:cave_vines_body_with_berries;growing_plant_age=22 blockId=630 -runtimeId=1061 +runtimeId=5876 minecraft:cave_vines_body_with_berries;growing_plant_age=23 blockId=630 -runtimeId=1062 +runtimeId=5877 minecraft:cave_vines_body_with_berries;growing_plant_age=24 blockId=630 -runtimeId=1063 +runtimeId=5878 minecraft:cave_vines_body_with_berries;growing_plant_age=25 blockId=630 -runtimeId=1064 +runtimeId=5879 minecraft:cave_vines_head_with_berries;growing_plant_age=0 blockId=631 -runtimeId=1065 +runtimeId=7418 minecraft:cave_vines_head_with_berries;growing_plant_age=1 blockId=631 -runtimeId=1066 +runtimeId=7419 minecraft:cave_vines_head_with_berries;growing_plant_age=2 blockId=631 -runtimeId=1067 +runtimeId=7420 minecraft:cave_vines_head_with_berries;growing_plant_age=3 blockId=631 -runtimeId=1068 +runtimeId=7421 minecraft:cave_vines_head_with_berries;growing_plant_age=4 blockId=631 -runtimeId=1069 +runtimeId=7422 minecraft:cave_vines_head_with_berries;growing_plant_age=5 blockId=631 -runtimeId=1070 +runtimeId=7423 minecraft:cave_vines_head_with_berries;growing_plant_age=6 blockId=631 -runtimeId=1071 +runtimeId=7424 minecraft:cave_vines_head_with_berries;growing_plant_age=7 blockId=631 -runtimeId=1072 +runtimeId=7425 minecraft:cave_vines_head_with_berries;growing_plant_age=8 blockId=631 -runtimeId=1073 +runtimeId=7426 minecraft:cave_vines_head_with_berries;growing_plant_age=9 blockId=631 -runtimeId=1074 +runtimeId=7427 minecraft:cave_vines_head_with_berries;growing_plant_age=10 blockId=631 -runtimeId=1075 +runtimeId=7428 minecraft:cave_vines_head_with_berries;growing_plant_age=11 blockId=631 -runtimeId=1076 +runtimeId=7429 minecraft:cave_vines_head_with_berries;growing_plant_age=12 blockId=631 -runtimeId=1077 +runtimeId=7430 minecraft:cave_vines_head_with_berries;growing_plant_age=13 blockId=631 -runtimeId=1078 +runtimeId=7431 minecraft:cave_vines_head_with_berries;growing_plant_age=14 blockId=631 -runtimeId=1079 +runtimeId=7432 minecraft:cave_vines_head_with_berries;growing_plant_age=15 blockId=631 -runtimeId=1080 +runtimeId=7433 minecraft:cave_vines_head_with_berries;growing_plant_age=16 blockId=631 -runtimeId=1081 +runtimeId=7434 minecraft:cave_vines_head_with_berries;growing_plant_age=17 blockId=631 -runtimeId=1082 +runtimeId=7435 minecraft:cave_vines_head_with_berries;growing_plant_age=18 blockId=631 -runtimeId=1083 +runtimeId=7436 minecraft:cave_vines_head_with_berries;growing_plant_age=19 blockId=631 -runtimeId=1084 +runtimeId=7437 minecraft:cave_vines_head_with_berries;growing_plant_age=20 blockId=631 -runtimeId=1085 +runtimeId=7438 minecraft:cave_vines_head_with_berries;growing_plant_age=21 blockId=631 -runtimeId=1086 +runtimeId=7439 minecraft:cave_vines_head_with_berries;growing_plant_age=22 blockId=631 -runtimeId=1087 +runtimeId=7440 minecraft:cave_vines_head_with_berries;growing_plant_age=23 blockId=631 -runtimeId=1088 +runtimeId=7441 minecraft:cave_vines_head_with_berries;growing_plant_age=24 blockId=631 -runtimeId=1089 +runtimeId=7442 minecraft:cave_vines_head_with_berries;growing_plant_age=25 blockId=631 -runtimeId=1090 +runtimeId=7443 minecraft:chain;pillar_axis=x blockId=541 -runtimeId=1092 +runtimeId=7064 minecraft:chain;pillar_axis=y blockId=541 -runtimeId=1091 +runtimeId=7063 minecraft:chain;pillar_axis=z blockId=541 -runtimeId=1093 +runtimeId=7065 minecraft:chain_command_block;conditional_bit=0;facing_direction=0 blockId=189 -runtimeId=1094 +runtimeId=6459 minecraft:chain_command_block;conditional_bit=0;facing_direction=1 blockId=189 -runtimeId=1095 +runtimeId=6460 minecraft:chain_command_block;conditional_bit=0;facing_direction=2 blockId=189 -runtimeId=1096 +runtimeId=6461 minecraft:chain_command_block;conditional_bit=0;facing_direction=3 blockId=189 -runtimeId=1097 +runtimeId=6462 minecraft:chain_command_block;conditional_bit=0;facing_direction=4 blockId=189 -runtimeId=1098 +runtimeId=6463 minecraft:chain_command_block;conditional_bit=0;facing_direction=5 blockId=189 -runtimeId=1099 +runtimeId=6464 minecraft:chain_command_block;conditional_bit=1;facing_direction=0 blockId=189 -runtimeId=1100 +runtimeId=6465 minecraft:chain_command_block;conditional_bit=1;facing_direction=1 blockId=189 -runtimeId=1101 +runtimeId=6466 minecraft:chain_command_block;conditional_bit=1;facing_direction=2 blockId=189 -runtimeId=1102 +runtimeId=6467 minecraft:chain_command_block;conditional_bit=1;facing_direction=3 blockId=189 -runtimeId=1103 +runtimeId=6468 minecraft:chain_command_block;conditional_bit=1;facing_direction=4 blockId=189 -runtimeId=1104 +runtimeId=6469 minecraft:chain_command_block;conditional_bit=1;facing_direction=5 blockId=189 -runtimeId=1105 +runtimeId=6470 minecraft:chemical_heat blockId=192 -runtimeId=1106 +runtimeId=7380 minecraft:chemistry_table;chemistry_table_type=compound_creator;direction=0 blockId=238 -runtimeId=1107 +runtimeId=7236 minecraft:chemistry_table;chemistry_table_type=compound_creator;direction=1 blockId=238 -runtimeId=1108 +runtimeId=7237 minecraft:chemistry_table;chemistry_table_type=compound_creator;direction=2 blockId=238 -runtimeId=1109 +runtimeId=7238 minecraft:chemistry_table;chemistry_table_type=compound_creator;direction=3 blockId=238 -runtimeId=1110 +runtimeId=7239 minecraft:chemistry_table;chemistry_table_type=element_constructor;direction=0 blockId=238 -runtimeId=1115 +runtimeId=7244 minecraft:chemistry_table;chemistry_table_type=element_constructor;direction=1 blockId=238 -runtimeId=1116 +runtimeId=7245 minecraft:chemistry_table;chemistry_table_type=element_constructor;direction=2 blockId=238 -runtimeId=1117 +runtimeId=7246 minecraft:chemistry_table;chemistry_table_type=element_constructor;direction=3 blockId=238 -runtimeId=1118 +runtimeId=7247 minecraft:chemistry_table;chemistry_table_type=lab_table;direction=0 blockId=238 -runtimeId=1119 +runtimeId=7248 minecraft:chemistry_table;chemistry_table_type=lab_table;direction=1 blockId=238 -runtimeId=1120 +runtimeId=7249 minecraft:chemistry_table;chemistry_table_type=lab_table;direction=2 blockId=238 -runtimeId=1121 +runtimeId=7250 minecraft:chemistry_table;chemistry_table_type=lab_table;direction=3 blockId=238 -runtimeId=1122 +runtimeId=7251 minecraft:chemistry_table;chemistry_table_type=material_reducer;direction=0 blockId=238 -runtimeId=1111 +runtimeId=7240 minecraft:chemistry_table;chemistry_table_type=material_reducer;direction=1 blockId=238 -runtimeId=1112 +runtimeId=7241 minecraft:chemistry_table;chemistry_table_type=material_reducer;direction=2 blockId=238 -runtimeId=1113 +runtimeId=7242 minecraft:chemistry_table;chemistry_table_type=material_reducer;direction=3 blockId=238 -runtimeId=1114 +runtimeId=7243 minecraft:chest;facing_direction=0 blockId=54 -runtimeId=1123 +runtimeId=7057 minecraft:chest;facing_direction=1 blockId=54 -runtimeId=1124 +runtimeId=7058 minecraft:chest;facing_direction=2 blockId=54 -runtimeId=1125 +runtimeId=7059 minecraft:chest;facing_direction=3 blockId=54 -runtimeId=1126 +runtimeId=7060 minecraft:chest;facing_direction=4 blockId=54 -runtimeId=1127 +runtimeId=7061 minecraft:chest;facing_direction=5 blockId=54 -runtimeId=1128 +runtimeId=7062 minecraft:chiseled_deepslate blockId=650 -runtimeId=1129 +runtimeId=5190 minecraft:chiseled_nether_bricks blockId=557 -runtimeId=1130 +runtimeId=7191 minecraft:chiseled_polished_blackstone blockId=534 -runtimeId=1131 +runtimeId=5018 minecraft:chorus_flower;age=0 blockId=200 -runtimeId=1132 +runtimeId=4462 minecraft:chorus_flower;age=1 blockId=200 -runtimeId=1133 +runtimeId=4463 minecraft:chorus_flower;age=2 blockId=200 -runtimeId=1134 +runtimeId=4464 minecraft:chorus_flower;age=3 blockId=200 -runtimeId=1135 +runtimeId=4465 minecraft:chorus_flower;age=4 blockId=200 -runtimeId=1136 +runtimeId=4466 minecraft:chorus_flower;age=5 blockId=200 -runtimeId=1137 +runtimeId=4467 minecraft:chorus_plant blockId=240 -runtimeId=1138 +runtimeId=5455 minecraft:clay blockId=82 -runtimeId=1139 +runtimeId=7066 minecraft:client_request_placeholder_block blockId=720 -runtimeId=1140 +runtimeId=4236 minecraft:coal_block blockId=173 -runtimeId=1141 +runtimeId=5348 minecraft:coal_ore blockId=16 -runtimeId=1142 +runtimeId=4235 minecraft:cobbled_deepslate blockId=634 -runtimeId=1143 +runtimeId=6544 minecraft:cobbled_deepslate_double_slab;top_slot_bit=0 blockId=651 -runtimeId=1144 +runtimeId=5775 minecraft:cobbled_deepslate_double_slab;top_slot_bit=1 blockId=651 -runtimeId=1145 +runtimeId=5776 minecraft:cobbled_deepslate_slab;top_slot_bit=0 blockId=635 -runtimeId=1146 +runtimeId=7252 minecraft:cobbled_deepslate_slab;top_slot_bit=1 blockId=635 -runtimeId=1147 +runtimeId=7253 minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=0 blockId=636 -runtimeId=1148 +runtimeId=147 minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=1 blockId=636 -runtimeId=1149 +runtimeId=148 minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=2 blockId=636 -runtimeId=1150 +runtimeId=149 minecraft:cobbled_deepslate_stairs;upside_down_bit=0;weirdo_direction=3 blockId=636 -runtimeId=1151 +runtimeId=150 minecraft:cobbled_deepslate_stairs;upside_down_bit=1;weirdo_direction=0 blockId=636 -runtimeId=1152 +runtimeId=151 minecraft:cobbled_deepslate_stairs;upside_down_bit=1;weirdo_direction=1 blockId=636 -runtimeId=1153 +runtimeId=152 minecraft:cobbled_deepslate_stairs;upside_down_bit=1;weirdo_direction=2 blockId=636 -runtimeId=1154 +runtimeId=153 minecraft:cobbled_deepslate_stairs;upside_down_bit=1;weirdo_direction=3 blockId=636 -runtimeId=1155 +runtimeId=154 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1156 +runtimeId=8024 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1158 +runtimeId=8026 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1160 +runtimeId=8028 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1210 +runtimeId=8078 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1212 +runtimeId=8080 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1214 +runtimeId=8082 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1264 +runtimeId=8132 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1266 +runtimeId=8134 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1268 +runtimeId=8136 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1174 +runtimeId=8042 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1176 +runtimeId=8044 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1178 +runtimeId=8046 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1228 +runtimeId=8096 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1230 +runtimeId=8098 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1232 +runtimeId=8100 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1282 +runtimeId=8150 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1284 +runtimeId=8152 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1286 +runtimeId=8154 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1192 +runtimeId=8060 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1194 +runtimeId=8062 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1196 +runtimeId=8064 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1246 +runtimeId=8114 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1248 +runtimeId=8116 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1250 +runtimeId=8118 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1300 +runtimeId=8168 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1302 +runtimeId=8170 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1304 +runtimeId=8172 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1157 +runtimeId=8025 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1159 +runtimeId=8027 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1161 +runtimeId=8029 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1211 +runtimeId=8079 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1213 +runtimeId=8081 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1215 +runtimeId=8083 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1265 +runtimeId=8133 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1267 +runtimeId=8135 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1269 +runtimeId=8137 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1175 +runtimeId=8043 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1177 +runtimeId=8045 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1179 +runtimeId=8047 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1229 +runtimeId=8097 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1231 +runtimeId=8099 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1233 +runtimeId=8101 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1283 +runtimeId=8151 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1285 +runtimeId=8153 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1287 +runtimeId=8155 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1193 +runtimeId=8061 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1195 +runtimeId=8063 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1197 +runtimeId=8065 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1247 +runtimeId=8115 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1249 +runtimeId=8117 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1251 +runtimeId=8119 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1301 +runtimeId=8169 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1303 +runtimeId=8171 minecraft:cobbled_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1305 +runtimeId=8173 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1162 +runtimeId=8030 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1164 +runtimeId=8032 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1166 +runtimeId=8034 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1216 +runtimeId=8084 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1218 +runtimeId=8086 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1220 +runtimeId=8088 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1270 +runtimeId=8138 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1272 +runtimeId=8140 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1274 +runtimeId=8142 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1180 +runtimeId=8048 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1182 +runtimeId=8050 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1184 +runtimeId=8052 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1234 +runtimeId=8102 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1236 +runtimeId=8104 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1238 +runtimeId=8106 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1288 +runtimeId=8156 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1290 +runtimeId=8158 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1292 +runtimeId=8160 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1198 +runtimeId=8066 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1200 +runtimeId=8068 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1202 +runtimeId=8070 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1252 +runtimeId=8120 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1254 +runtimeId=8122 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1256 +runtimeId=8124 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1306 +runtimeId=8174 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1308 +runtimeId=8176 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1310 +runtimeId=8178 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1163 +runtimeId=8031 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1165 +runtimeId=8033 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1167 +runtimeId=8035 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1217 +runtimeId=8085 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1219 +runtimeId=8087 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1221 +runtimeId=8089 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1271 +runtimeId=8139 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1273 +runtimeId=8141 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1275 +runtimeId=8143 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1181 +runtimeId=8049 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1183 +runtimeId=8051 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1185 +runtimeId=8053 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1235 +runtimeId=8103 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1237 +runtimeId=8105 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1239 +runtimeId=8107 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1289 +runtimeId=8157 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1291 +runtimeId=8159 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1293 +runtimeId=8161 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1199 +runtimeId=8067 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1201 +runtimeId=8069 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1203 +runtimeId=8071 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1253 +runtimeId=8121 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1255 +runtimeId=8123 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1257 +runtimeId=8125 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1307 +runtimeId=8175 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1309 +runtimeId=8177 minecraft:cobbled_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1311 +runtimeId=8179 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1168 +runtimeId=8036 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1170 +runtimeId=8038 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1172 +runtimeId=8040 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1222 +runtimeId=8090 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1224 +runtimeId=8092 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1226 +runtimeId=8094 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1276 +runtimeId=8144 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1278 +runtimeId=8146 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1280 +runtimeId=8148 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1186 +runtimeId=8054 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1188 +runtimeId=8056 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1190 +runtimeId=8058 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1240 +runtimeId=8108 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1242 +runtimeId=8110 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1244 +runtimeId=8112 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1294 +runtimeId=8162 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1296 +runtimeId=8164 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1298 +runtimeId=8166 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1204 +runtimeId=8072 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1206 +runtimeId=8074 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1208 +runtimeId=8076 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1258 +runtimeId=8126 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1260 +runtimeId=8128 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1262 +runtimeId=8130 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1312 +runtimeId=8180 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1314 +runtimeId=8182 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1316 +runtimeId=8184 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1169 +runtimeId=8037 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1171 +runtimeId=8039 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1173 +runtimeId=8041 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1223 +runtimeId=8091 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1225 +runtimeId=8093 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1227 +runtimeId=8095 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1277 +runtimeId=8145 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1279 +runtimeId=8147 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1281 +runtimeId=8149 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1187 +runtimeId=8055 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1189 +runtimeId=8057 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1191 +runtimeId=8059 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1241 +runtimeId=8109 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1243 +runtimeId=8111 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1245 +runtimeId=8113 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1295 +runtimeId=8163 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1297 +runtimeId=8165 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1299 +runtimeId=8167 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=637 -runtimeId=1205 +runtimeId=8073 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=637 -runtimeId=1207 +runtimeId=8075 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=637 -runtimeId=1209 +runtimeId=8077 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=637 -runtimeId=1259 +runtimeId=8127 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=637 -runtimeId=1261 +runtimeId=8129 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=637 -runtimeId=1263 +runtimeId=8131 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=637 -runtimeId=1313 +runtimeId=8181 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=637 -runtimeId=1315 +runtimeId=8183 minecraft:cobbled_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=637 -runtimeId=1317 +runtimeId=8185 minecraft:cobblestone blockId=4 -runtimeId=1318 +runtimeId=3620 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1323 +runtimeId=1191 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1325 +runtimeId=1193 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1319 +runtimeId=1187 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1322 +runtimeId=1190 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1329 +runtimeId=1197 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1321 +runtimeId=1189 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1320 +runtimeId=1188 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1327 +runtimeId=1195 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1328 +runtimeId=1196 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1330 +runtimeId=1198 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1332 +runtimeId=1200 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1331 +runtimeId=1199 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1324 +runtimeId=1192 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1326 +runtimeId=1194 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1351 +runtimeId=1219 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1353 +runtimeId=1221 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1347 +runtimeId=1215 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1350 +runtimeId=1218 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1357 +runtimeId=1225 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1349 +runtimeId=1217 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1348 +runtimeId=1216 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1355 +runtimeId=1223 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1356 +runtimeId=1224 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1358 +runtimeId=1226 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1360 +runtimeId=1228 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1359 +runtimeId=1227 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1352 +runtimeId=1220 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1354 +runtimeId=1222 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1379 +runtimeId=1247 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1381 +runtimeId=1249 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1375 +runtimeId=1243 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1378 +runtimeId=1246 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1385 +runtimeId=1253 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1377 +runtimeId=1245 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1376 +runtimeId=1244 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1383 +runtimeId=1251 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1384 +runtimeId=1252 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1386 +runtimeId=1254 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1388 +runtimeId=1256 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1387 +runtimeId=1255 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1380 +runtimeId=1248 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1382 +runtimeId=1250 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2079 +runtimeId=1947 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2081 +runtimeId=1949 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2075 +runtimeId=1943 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2078 +runtimeId=1946 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2085 +runtimeId=1953 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2077 +runtimeId=1945 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2076 +runtimeId=1944 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2083 +runtimeId=1951 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2084 +runtimeId=1952 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2086 +runtimeId=1954 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2088 +runtimeId=1956 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2087 +runtimeId=1955 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2080 +runtimeId=1948 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2082 +runtimeId=1950 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2107 +runtimeId=1975 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2109 +runtimeId=1977 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2103 +runtimeId=1971 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2106 +runtimeId=1974 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2113 +runtimeId=1981 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2105 +runtimeId=1973 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2104 +runtimeId=1972 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2111 +runtimeId=1979 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2112 +runtimeId=1980 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2114 +runtimeId=1982 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2116 +runtimeId=1984 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2115 +runtimeId=1983 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2108 +runtimeId=1976 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2110 +runtimeId=1978 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2135 +runtimeId=2003 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2137 +runtimeId=2005 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2131 +runtimeId=1999 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2134 +runtimeId=2002 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2141 +runtimeId=2009 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2133 +runtimeId=2001 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2132 +runtimeId=2000 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2139 +runtimeId=2007 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2140 +runtimeId=2008 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2142 +runtimeId=2010 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2144 +runtimeId=2012 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2143 +runtimeId=2011 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2136 +runtimeId=2004 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2138 +runtimeId=2006 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2835 +runtimeId=2703 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2837 +runtimeId=2705 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2831 +runtimeId=2699 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2834 +runtimeId=2702 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2841 +runtimeId=2709 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2833 +runtimeId=2701 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2832 +runtimeId=2700 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2839 +runtimeId=2707 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2840 +runtimeId=2708 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2842 +runtimeId=2710 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2844 +runtimeId=2712 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2843 +runtimeId=2711 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2836 +runtimeId=2704 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2838 +runtimeId=2706 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2863 +runtimeId=2731 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2865 +runtimeId=2733 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2859 +runtimeId=2727 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2862 +runtimeId=2730 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2869 +runtimeId=2737 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2861 +runtimeId=2729 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2860 +runtimeId=2728 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2867 +runtimeId=2735 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2868 +runtimeId=2736 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2870 +runtimeId=2738 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2872 +runtimeId=2740 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2871 +runtimeId=2739 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2864 +runtimeId=2732 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2866 +runtimeId=2734 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2891 +runtimeId=2759 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2893 +runtimeId=2761 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2887 +runtimeId=2755 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2890 +runtimeId=2758 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2897 +runtimeId=2765 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2889 +runtimeId=2757 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2888 +runtimeId=2756 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2895 +runtimeId=2763 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2896 +runtimeId=2764 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2898 +runtimeId=2766 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2900 +runtimeId=2768 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2899 +runtimeId=2767 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2892 +runtimeId=2760 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2894 +runtimeId=2762 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1575 +runtimeId=1443 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1577 +runtimeId=1445 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1571 +runtimeId=1439 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1574 +runtimeId=1442 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1581 +runtimeId=1449 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1573 +runtimeId=1441 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1572 +runtimeId=1440 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1579 +runtimeId=1447 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1580 +runtimeId=1448 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1582 +runtimeId=1450 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1584 +runtimeId=1452 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1583 +runtimeId=1451 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1576 +runtimeId=1444 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1578 +runtimeId=1446 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1603 +runtimeId=1471 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1605 +runtimeId=1473 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1599 +runtimeId=1467 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1602 +runtimeId=1470 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1609 +runtimeId=1477 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1601 +runtimeId=1469 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1600 +runtimeId=1468 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1607 +runtimeId=1475 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1608 +runtimeId=1476 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1610 +runtimeId=1478 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1612 +runtimeId=1480 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1611 +runtimeId=1479 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1604 +runtimeId=1472 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1606 +runtimeId=1474 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1631 +runtimeId=1499 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1633 +runtimeId=1501 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1627 +runtimeId=1495 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1630 +runtimeId=1498 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1637 +runtimeId=1505 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1629 +runtimeId=1497 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1628 +runtimeId=1496 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1635 +runtimeId=1503 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1636 +runtimeId=1504 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1638 +runtimeId=1506 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1640 +runtimeId=1508 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1639 +runtimeId=1507 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1632 +runtimeId=1500 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1634 +runtimeId=1502 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2331 +runtimeId=2199 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2333 +runtimeId=2201 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2327 +runtimeId=2195 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2330 +runtimeId=2198 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2337 +runtimeId=2205 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2329 +runtimeId=2197 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2328 +runtimeId=2196 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2335 +runtimeId=2203 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2336 +runtimeId=2204 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2338 +runtimeId=2206 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2340 +runtimeId=2208 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2339 +runtimeId=2207 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2332 +runtimeId=2200 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2334 +runtimeId=2202 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2359 +runtimeId=2227 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2361 +runtimeId=2229 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2355 +runtimeId=2223 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2358 +runtimeId=2226 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2365 +runtimeId=2233 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2357 +runtimeId=2225 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2356 +runtimeId=2224 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2363 +runtimeId=2231 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2364 +runtimeId=2232 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2366 +runtimeId=2234 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2368 +runtimeId=2236 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2367 +runtimeId=2235 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2360 +runtimeId=2228 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2362 +runtimeId=2230 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2387 +runtimeId=2255 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2389 +runtimeId=2257 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2383 +runtimeId=2251 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2386 +runtimeId=2254 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2393 +runtimeId=2261 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2385 +runtimeId=2253 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2384 +runtimeId=2252 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2391 +runtimeId=2259 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2392 +runtimeId=2260 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2394 +runtimeId=2262 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2396 +runtimeId=2264 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2395 +runtimeId=2263 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2388 +runtimeId=2256 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2390 +runtimeId=2258 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3087 +runtimeId=2955 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3089 +runtimeId=2957 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3083 +runtimeId=2951 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3086 +runtimeId=2954 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3093 +runtimeId=2961 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3085 +runtimeId=2953 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3084 +runtimeId=2952 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3091 +runtimeId=2959 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3092 +runtimeId=2960 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3094 +runtimeId=2962 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3096 +runtimeId=2964 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3095 +runtimeId=2963 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3088 +runtimeId=2956 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3090 +runtimeId=2958 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3115 +runtimeId=2983 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3117 +runtimeId=2985 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3111 +runtimeId=2979 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3114 +runtimeId=2982 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3121 +runtimeId=2989 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3113 +runtimeId=2981 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3112 +runtimeId=2980 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3119 +runtimeId=2987 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3120 +runtimeId=2988 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3122 +runtimeId=2990 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3124 +runtimeId=2992 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3123 +runtimeId=2991 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3116 +runtimeId=2984 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3118 +runtimeId=2986 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3143 +runtimeId=3011 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3145 +runtimeId=3013 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3139 +runtimeId=3007 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3142 +runtimeId=3010 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3149 +runtimeId=3017 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3141 +runtimeId=3009 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3140 +runtimeId=3008 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3147 +runtimeId=3015 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3148 +runtimeId=3016 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3150 +runtimeId=3018 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3152 +runtimeId=3020 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3151 +runtimeId=3019 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3144 +runtimeId=3012 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3146 +runtimeId=3014 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1827 +runtimeId=1695 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1829 +runtimeId=1697 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1823 +runtimeId=1691 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1826 +runtimeId=1694 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1833 +runtimeId=1701 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1825 +runtimeId=1693 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1824 +runtimeId=1692 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1831 +runtimeId=1699 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1832 +runtimeId=1700 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1834 +runtimeId=1702 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1836 +runtimeId=1704 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1835 +runtimeId=1703 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1828 +runtimeId=1696 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1830 +runtimeId=1698 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1855 +runtimeId=1723 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1857 +runtimeId=1725 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1851 +runtimeId=1719 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1854 +runtimeId=1722 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1861 +runtimeId=1729 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1853 +runtimeId=1721 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1852 +runtimeId=1720 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1859 +runtimeId=1727 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1860 +runtimeId=1728 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1862 +runtimeId=1730 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1864 +runtimeId=1732 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1863 +runtimeId=1731 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1856 +runtimeId=1724 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1858 +runtimeId=1726 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1883 +runtimeId=1751 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1885 +runtimeId=1753 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1879 +runtimeId=1747 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1882 +runtimeId=1750 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1889 +runtimeId=1757 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1881 +runtimeId=1749 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1880 +runtimeId=1748 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1887 +runtimeId=1755 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1888 +runtimeId=1756 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1890 +runtimeId=1758 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1892 +runtimeId=1760 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1891 +runtimeId=1759 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1884 +runtimeId=1752 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1886 +runtimeId=1754 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2583 +runtimeId=2451 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2585 +runtimeId=2453 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2579 +runtimeId=2447 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2582 +runtimeId=2450 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2589 +runtimeId=2457 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2581 +runtimeId=2449 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2580 +runtimeId=2448 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2587 +runtimeId=2455 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2588 +runtimeId=2456 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2590 +runtimeId=2458 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2592 +runtimeId=2460 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2591 +runtimeId=2459 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2584 +runtimeId=2452 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2586 +runtimeId=2454 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2611 +runtimeId=2479 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2613 +runtimeId=2481 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2607 +runtimeId=2475 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2610 +runtimeId=2478 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2617 +runtimeId=2485 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2609 +runtimeId=2477 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2608 +runtimeId=2476 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2615 +runtimeId=2483 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2616 +runtimeId=2484 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2618 +runtimeId=2486 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2620 +runtimeId=2488 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2619 +runtimeId=2487 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2612 +runtimeId=2480 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2614 +runtimeId=2482 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2639 +runtimeId=2507 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2641 +runtimeId=2509 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2635 +runtimeId=2503 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2638 +runtimeId=2506 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2645 +runtimeId=2513 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2637 +runtimeId=2505 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2636 +runtimeId=2504 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2643 +runtimeId=2511 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2644 +runtimeId=2512 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2646 +runtimeId=2514 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2648 +runtimeId=2516 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2647 +runtimeId=2515 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2640 +runtimeId=2508 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2642 +runtimeId=2510 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3339 +runtimeId=3207 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3341 +runtimeId=3209 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3335 +runtimeId=3203 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3338 +runtimeId=3206 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3345 +runtimeId=3213 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3337 +runtimeId=3205 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3336 +runtimeId=3204 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3343 +runtimeId=3211 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3344 +runtimeId=3212 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3346 +runtimeId=3214 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3348 +runtimeId=3216 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3347 +runtimeId=3215 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3340 +runtimeId=3208 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3342 +runtimeId=3210 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3367 +runtimeId=3235 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3369 +runtimeId=3237 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3363 +runtimeId=3231 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3366 +runtimeId=3234 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3373 +runtimeId=3241 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3365 +runtimeId=3233 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3364 +runtimeId=3232 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3371 +runtimeId=3239 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3372 +runtimeId=3240 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3374 +runtimeId=3242 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3376 +runtimeId=3244 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3375 +runtimeId=3243 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3368 +runtimeId=3236 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3370 +runtimeId=3238 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3395 +runtimeId=3263 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3397 +runtimeId=3265 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3391 +runtimeId=3259 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3394 +runtimeId=3262 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3401 +runtimeId=3269 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3393 +runtimeId=3261 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3392 +runtimeId=3260 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3399 +runtimeId=3267 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3400 +runtimeId=3268 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3402 +runtimeId=3270 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3404 +runtimeId=3272 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3403 +runtimeId=3271 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3396 +runtimeId=3264 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3398 +runtimeId=3266 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1337 +runtimeId=1205 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1339 +runtimeId=1207 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1333 +runtimeId=1201 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1336 +runtimeId=1204 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1343 +runtimeId=1211 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1335 +runtimeId=1203 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1334 +runtimeId=1202 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1341 +runtimeId=1209 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1342 +runtimeId=1210 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1344 +runtimeId=1212 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1346 +runtimeId=1214 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1345 +runtimeId=1213 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1338 +runtimeId=1206 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1340 +runtimeId=1208 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1365 +runtimeId=1233 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1367 +runtimeId=1235 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1361 +runtimeId=1229 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1364 +runtimeId=1232 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1371 +runtimeId=1239 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1363 +runtimeId=1231 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1362 +runtimeId=1230 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1369 +runtimeId=1237 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1370 +runtimeId=1238 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1372 +runtimeId=1240 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1374 +runtimeId=1242 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1373 +runtimeId=1241 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1366 +runtimeId=1234 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1368 +runtimeId=1236 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1393 +runtimeId=1261 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1395 +runtimeId=1263 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1389 +runtimeId=1257 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1392 +runtimeId=1260 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1399 +runtimeId=1267 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1391 +runtimeId=1259 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1390 +runtimeId=1258 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1397 +runtimeId=1265 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1398 +runtimeId=1266 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1400 +runtimeId=1268 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1402 +runtimeId=1270 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1401 +runtimeId=1269 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1394 +runtimeId=1262 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1396 +runtimeId=1264 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2093 +runtimeId=1961 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2095 +runtimeId=1963 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2089 +runtimeId=1957 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2092 +runtimeId=1960 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2099 +runtimeId=1967 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2091 +runtimeId=1959 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2090 +runtimeId=1958 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2097 +runtimeId=1965 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2098 +runtimeId=1966 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2100 +runtimeId=1968 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2102 +runtimeId=1970 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2101 +runtimeId=1969 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2094 +runtimeId=1962 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2096 +runtimeId=1964 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2121 +runtimeId=1989 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2123 +runtimeId=1991 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2117 +runtimeId=1985 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2120 +runtimeId=1988 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2127 +runtimeId=1995 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2119 +runtimeId=1987 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2118 +runtimeId=1986 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2125 +runtimeId=1993 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2126 +runtimeId=1994 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2128 +runtimeId=1996 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2130 +runtimeId=1998 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2129 +runtimeId=1997 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2122 +runtimeId=1990 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2124 +runtimeId=1992 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2149 +runtimeId=2017 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2151 +runtimeId=2019 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2145 +runtimeId=2013 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2148 +runtimeId=2016 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2155 +runtimeId=2023 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2147 +runtimeId=2015 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2146 +runtimeId=2014 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2153 +runtimeId=2021 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2154 +runtimeId=2022 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2156 +runtimeId=2024 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2158 +runtimeId=2026 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2157 +runtimeId=2025 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2150 +runtimeId=2018 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2152 +runtimeId=2020 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2849 +runtimeId=2717 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2851 +runtimeId=2719 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2845 +runtimeId=2713 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2848 +runtimeId=2716 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2855 +runtimeId=2723 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2847 +runtimeId=2715 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2846 +runtimeId=2714 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2853 +runtimeId=2721 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2854 +runtimeId=2722 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2856 +runtimeId=2724 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2858 +runtimeId=2726 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2857 +runtimeId=2725 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2850 +runtimeId=2718 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2852 +runtimeId=2720 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2877 +runtimeId=2745 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2879 +runtimeId=2747 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2873 +runtimeId=2741 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2876 +runtimeId=2744 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2883 +runtimeId=2751 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2875 +runtimeId=2743 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2874 +runtimeId=2742 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2881 +runtimeId=2749 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2882 +runtimeId=2750 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2884 +runtimeId=2752 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2886 +runtimeId=2754 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2885 +runtimeId=2753 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2878 +runtimeId=2746 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2880 +runtimeId=2748 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2905 +runtimeId=2773 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2907 +runtimeId=2775 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2901 +runtimeId=2769 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2904 +runtimeId=2772 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2911 +runtimeId=2779 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2903 +runtimeId=2771 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2902 +runtimeId=2770 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2909 +runtimeId=2777 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2910 +runtimeId=2778 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2912 +runtimeId=2780 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2914 +runtimeId=2782 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2913 +runtimeId=2781 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2906 +runtimeId=2774 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2908 +runtimeId=2776 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1589 +runtimeId=1457 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1591 +runtimeId=1459 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1585 +runtimeId=1453 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1588 +runtimeId=1456 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1595 +runtimeId=1463 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1587 +runtimeId=1455 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1586 +runtimeId=1454 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1593 +runtimeId=1461 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1594 +runtimeId=1462 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1596 +runtimeId=1464 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1598 +runtimeId=1466 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1597 +runtimeId=1465 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1590 +runtimeId=1458 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1592 +runtimeId=1460 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1617 +runtimeId=1485 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1619 +runtimeId=1487 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1613 +runtimeId=1481 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1616 +runtimeId=1484 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1623 +runtimeId=1491 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1615 +runtimeId=1483 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1614 +runtimeId=1482 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1621 +runtimeId=1489 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1622 +runtimeId=1490 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1624 +runtimeId=1492 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1626 +runtimeId=1494 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1625 +runtimeId=1493 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1618 +runtimeId=1486 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1620 +runtimeId=1488 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1645 +runtimeId=1513 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1647 +runtimeId=1515 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1641 +runtimeId=1509 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1644 +runtimeId=1512 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1651 +runtimeId=1519 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1643 +runtimeId=1511 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1642 +runtimeId=1510 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1649 +runtimeId=1517 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1650 +runtimeId=1518 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1652 +runtimeId=1520 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1654 +runtimeId=1522 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1653 +runtimeId=1521 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1646 +runtimeId=1514 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1648 +runtimeId=1516 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2345 +runtimeId=2213 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2347 +runtimeId=2215 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2341 +runtimeId=2209 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2344 +runtimeId=2212 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2351 +runtimeId=2219 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2343 +runtimeId=2211 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2342 +runtimeId=2210 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2349 +runtimeId=2217 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2350 +runtimeId=2218 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2352 +runtimeId=2220 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2354 +runtimeId=2222 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2353 +runtimeId=2221 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2346 +runtimeId=2214 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2348 +runtimeId=2216 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2373 +runtimeId=2241 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2375 +runtimeId=2243 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2369 +runtimeId=2237 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2372 +runtimeId=2240 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2379 +runtimeId=2247 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2371 +runtimeId=2239 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2370 +runtimeId=2238 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2377 +runtimeId=2245 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2378 +runtimeId=2246 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2380 +runtimeId=2248 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2382 +runtimeId=2250 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2381 +runtimeId=2249 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2374 +runtimeId=2242 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2376 +runtimeId=2244 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2401 +runtimeId=2269 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2403 +runtimeId=2271 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2397 +runtimeId=2265 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2400 +runtimeId=2268 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2407 +runtimeId=2275 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2399 +runtimeId=2267 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2398 +runtimeId=2266 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2405 +runtimeId=2273 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2406 +runtimeId=2274 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2408 +runtimeId=2276 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2410 +runtimeId=2278 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2409 +runtimeId=2277 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2402 +runtimeId=2270 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2404 +runtimeId=2272 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3101 +runtimeId=2969 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3103 +runtimeId=2971 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3097 +runtimeId=2965 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3100 +runtimeId=2968 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3107 +runtimeId=2975 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3099 +runtimeId=2967 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3098 +runtimeId=2966 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3105 +runtimeId=2973 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3106 +runtimeId=2974 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3108 +runtimeId=2976 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3110 +runtimeId=2978 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3109 +runtimeId=2977 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3102 +runtimeId=2970 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3104 +runtimeId=2972 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3129 +runtimeId=2997 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3131 +runtimeId=2999 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3125 +runtimeId=2993 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3128 +runtimeId=2996 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3135 +runtimeId=3003 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3127 +runtimeId=2995 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3126 +runtimeId=2994 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3133 +runtimeId=3001 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3134 +runtimeId=3002 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3136 +runtimeId=3004 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3138 +runtimeId=3006 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3137 +runtimeId=3005 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3130 +runtimeId=2998 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3132 +runtimeId=3000 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3157 +runtimeId=3025 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3159 +runtimeId=3027 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3153 +runtimeId=3021 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3156 +runtimeId=3024 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3163 +runtimeId=3031 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3155 +runtimeId=3023 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3154 +runtimeId=3022 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3161 +runtimeId=3029 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3162 +runtimeId=3030 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3164 +runtimeId=3032 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3166 +runtimeId=3034 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3165 +runtimeId=3033 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3158 +runtimeId=3026 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3160 +runtimeId=3028 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1841 +runtimeId=1709 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1843 +runtimeId=1711 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1837 +runtimeId=1705 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1840 +runtimeId=1708 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1847 +runtimeId=1715 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1839 +runtimeId=1707 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1838 +runtimeId=1706 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1845 +runtimeId=1713 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1846 +runtimeId=1714 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1848 +runtimeId=1716 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1850 +runtimeId=1718 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1849 +runtimeId=1717 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1842 +runtimeId=1710 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1844 +runtimeId=1712 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1869 +runtimeId=1737 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1871 +runtimeId=1739 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1865 +runtimeId=1733 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1868 +runtimeId=1736 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1875 +runtimeId=1743 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1867 +runtimeId=1735 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1866 +runtimeId=1734 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1873 +runtimeId=1741 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1874 +runtimeId=1742 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1876 +runtimeId=1744 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1878 +runtimeId=1746 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1877 +runtimeId=1745 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1870 +runtimeId=1738 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1872 +runtimeId=1740 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1897 +runtimeId=1765 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1899 +runtimeId=1767 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1893 +runtimeId=1761 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1896 +runtimeId=1764 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1903 +runtimeId=1771 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1895 +runtimeId=1763 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1894 +runtimeId=1762 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1901 +runtimeId=1769 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1902 +runtimeId=1770 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1904 +runtimeId=1772 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1906 +runtimeId=1774 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1905 +runtimeId=1773 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1898 +runtimeId=1766 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1900 +runtimeId=1768 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2597 +runtimeId=2465 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2599 +runtimeId=2467 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2593 +runtimeId=2461 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2596 +runtimeId=2464 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2603 +runtimeId=2471 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2595 +runtimeId=2463 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2594 +runtimeId=2462 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2601 +runtimeId=2469 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2602 +runtimeId=2470 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2604 +runtimeId=2472 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2606 +runtimeId=2474 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2605 +runtimeId=2473 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2598 +runtimeId=2466 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2600 +runtimeId=2468 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2625 +runtimeId=2493 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2627 +runtimeId=2495 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2621 +runtimeId=2489 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2624 +runtimeId=2492 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2631 +runtimeId=2499 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2623 +runtimeId=2491 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2622 +runtimeId=2490 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2629 +runtimeId=2497 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2630 +runtimeId=2498 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2632 +runtimeId=2500 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2634 +runtimeId=2502 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2633 +runtimeId=2501 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2626 +runtimeId=2494 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2628 +runtimeId=2496 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2653 +runtimeId=2521 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2655 +runtimeId=2523 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2649 +runtimeId=2517 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2652 +runtimeId=2520 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2659 +runtimeId=2527 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2651 +runtimeId=2519 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2650 +runtimeId=2518 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2657 +runtimeId=2525 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2658 +runtimeId=2526 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2660 +runtimeId=2528 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2662 +runtimeId=2530 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2661 +runtimeId=2529 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2654 +runtimeId=2522 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2656 +runtimeId=2524 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3353 +runtimeId=3221 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3355 +runtimeId=3223 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3349 +runtimeId=3217 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3352 +runtimeId=3220 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3359 +runtimeId=3227 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3351 +runtimeId=3219 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3350 +runtimeId=3218 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3357 +runtimeId=3225 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3358 +runtimeId=3226 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3360 +runtimeId=3228 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3362 +runtimeId=3230 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3361 +runtimeId=3229 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3354 +runtimeId=3222 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3356 +runtimeId=3224 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3381 +runtimeId=3249 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3383 +runtimeId=3251 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3377 +runtimeId=3245 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3380 +runtimeId=3248 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3387 +runtimeId=3255 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3379 +runtimeId=3247 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3378 +runtimeId=3246 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3385 +runtimeId=3253 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3386 +runtimeId=3254 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3388 +runtimeId=3256 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3390 +runtimeId=3258 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3389 +runtimeId=3257 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3382 +runtimeId=3250 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3384 +runtimeId=3252 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3409 +runtimeId=3277 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3411 +runtimeId=3279 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3405 +runtimeId=3273 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3408 +runtimeId=3276 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3415 +runtimeId=3283 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3407 +runtimeId=3275 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3406 +runtimeId=3274 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3413 +runtimeId=3281 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3414 +runtimeId=3282 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3416 +runtimeId=3284 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3418 +runtimeId=3286 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3417 +runtimeId=3285 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3410 +runtimeId=3278 minecraft:cobblestone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3412 +runtimeId=3280 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1407 +runtimeId=1275 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1409 +runtimeId=1277 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1403 +runtimeId=1271 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1406 +runtimeId=1274 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1413 +runtimeId=1281 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1405 +runtimeId=1273 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1404 +runtimeId=1272 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1411 +runtimeId=1279 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1412 +runtimeId=1280 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1414 +runtimeId=1282 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1416 +runtimeId=1284 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1415 +runtimeId=1283 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1408 +runtimeId=1276 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1410 +runtimeId=1278 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1435 +runtimeId=1303 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1437 +runtimeId=1305 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1431 +runtimeId=1299 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1434 +runtimeId=1302 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1441 +runtimeId=1309 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1433 +runtimeId=1301 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1432 +runtimeId=1300 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1439 +runtimeId=1307 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1440 +runtimeId=1308 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1442 +runtimeId=1310 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1444 +runtimeId=1312 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1443 +runtimeId=1311 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1436 +runtimeId=1304 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1438 +runtimeId=1306 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1463 +runtimeId=1331 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1465 +runtimeId=1333 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1459 +runtimeId=1327 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1462 +runtimeId=1330 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1469 +runtimeId=1337 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1461 +runtimeId=1329 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1460 +runtimeId=1328 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1467 +runtimeId=1335 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1468 +runtimeId=1336 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1470 +runtimeId=1338 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1472 +runtimeId=1340 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1471 +runtimeId=1339 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1464 +runtimeId=1332 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1466 +runtimeId=1334 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2163 +runtimeId=2031 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2165 +runtimeId=2033 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2159 +runtimeId=2027 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2162 +runtimeId=2030 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2169 +runtimeId=2037 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2161 +runtimeId=2029 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2160 +runtimeId=2028 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2167 +runtimeId=2035 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2168 +runtimeId=2036 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2170 +runtimeId=2038 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2172 +runtimeId=2040 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2171 +runtimeId=2039 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2164 +runtimeId=2032 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2166 +runtimeId=2034 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2191 +runtimeId=2059 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2193 +runtimeId=2061 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2187 +runtimeId=2055 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2190 +runtimeId=2058 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2197 +runtimeId=2065 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2189 +runtimeId=2057 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2188 +runtimeId=2056 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2195 +runtimeId=2063 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2196 +runtimeId=2064 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2198 +runtimeId=2066 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2200 +runtimeId=2068 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2199 +runtimeId=2067 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2192 +runtimeId=2060 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2194 +runtimeId=2062 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2219 +runtimeId=2087 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2221 +runtimeId=2089 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2215 +runtimeId=2083 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2218 +runtimeId=2086 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2225 +runtimeId=2093 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2217 +runtimeId=2085 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2216 +runtimeId=2084 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2223 +runtimeId=2091 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2224 +runtimeId=2092 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2226 +runtimeId=2094 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2228 +runtimeId=2096 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2227 +runtimeId=2095 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2220 +runtimeId=2088 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2222 +runtimeId=2090 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2919 +runtimeId=2787 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2921 +runtimeId=2789 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2915 +runtimeId=2783 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2918 +runtimeId=2786 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2925 +runtimeId=2793 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2917 +runtimeId=2785 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2916 +runtimeId=2784 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2923 +runtimeId=2791 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2924 +runtimeId=2792 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2926 +runtimeId=2794 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2928 +runtimeId=2796 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2927 +runtimeId=2795 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2920 +runtimeId=2788 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2922 +runtimeId=2790 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2947 +runtimeId=2815 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2949 +runtimeId=2817 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2943 +runtimeId=2811 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2946 +runtimeId=2814 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2953 +runtimeId=2821 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2945 +runtimeId=2813 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2944 +runtimeId=2812 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2951 +runtimeId=2819 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2952 +runtimeId=2820 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2954 +runtimeId=2822 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2956 +runtimeId=2824 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2955 +runtimeId=2823 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2948 +runtimeId=2816 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2950 +runtimeId=2818 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2975 +runtimeId=2843 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2977 +runtimeId=2845 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2971 +runtimeId=2839 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2974 +runtimeId=2842 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2981 +runtimeId=2849 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2973 +runtimeId=2841 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2972 +runtimeId=2840 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2979 +runtimeId=2847 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2980 +runtimeId=2848 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2982 +runtimeId=2850 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2984 +runtimeId=2852 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2983 +runtimeId=2851 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2976 +runtimeId=2844 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2978 +runtimeId=2846 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1659 +runtimeId=1527 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1661 +runtimeId=1529 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1655 +runtimeId=1523 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1658 +runtimeId=1526 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1665 +runtimeId=1533 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1657 +runtimeId=1525 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1656 +runtimeId=1524 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1663 +runtimeId=1531 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1664 +runtimeId=1532 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1666 +runtimeId=1534 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1668 +runtimeId=1536 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1667 +runtimeId=1535 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1660 +runtimeId=1528 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1662 +runtimeId=1530 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1687 +runtimeId=1555 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1689 +runtimeId=1557 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1683 +runtimeId=1551 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1686 +runtimeId=1554 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1693 +runtimeId=1561 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1685 +runtimeId=1553 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1684 +runtimeId=1552 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1691 +runtimeId=1559 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1692 +runtimeId=1560 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1694 +runtimeId=1562 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1696 +runtimeId=1564 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1695 +runtimeId=1563 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1688 +runtimeId=1556 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1690 +runtimeId=1558 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1715 +runtimeId=1583 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1717 +runtimeId=1585 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1711 +runtimeId=1579 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1714 +runtimeId=1582 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1721 +runtimeId=1589 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1713 +runtimeId=1581 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1712 +runtimeId=1580 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1719 +runtimeId=1587 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1720 +runtimeId=1588 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1722 +runtimeId=1590 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1724 +runtimeId=1592 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1723 +runtimeId=1591 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1716 +runtimeId=1584 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1718 +runtimeId=1586 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2415 +runtimeId=2283 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2417 +runtimeId=2285 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2411 +runtimeId=2279 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2414 +runtimeId=2282 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2421 +runtimeId=2289 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2413 +runtimeId=2281 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2412 +runtimeId=2280 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2419 +runtimeId=2287 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2420 +runtimeId=2288 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2422 +runtimeId=2290 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2424 +runtimeId=2292 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2423 +runtimeId=2291 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2416 +runtimeId=2284 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2418 +runtimeId=2286 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2443 +runtimeId=2311 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2445 +runtimeId=2313 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2439 +runtimeId=2307 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2442 +runtimeId=2310 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2449 +runtimeId=2317 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2441 +runtimeId=2309 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2440 +runtimeId=2308 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2447 +runtimeId=2315 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2448 +runtimeId=2316 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2450 +runtimeId=2318 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2452 +runtimeId=2320 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2451 +runtimeId=2319 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2444 +runtimeId=2312 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2446 +runtimeId=2314 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2471 +runtimeId=2339 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2473 +runtimeId=2341 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2467 +runtimeId=2335 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2470 +runtimeId=2338 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2477 +runtimeId=2345 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2469 +runtimeId=2337 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2468 +runtimeId=2336 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2475 +runtimeId=2343 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2476 +runtimeId=2344 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2478 +runtimeId=2346 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2480 +runtimeId=2348 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2479 +runtimeId=2347 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2472 +runtimeId=2340 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2474 +runtimeId=2342 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3171 +runtimeId=3039 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3173 +runtimeId=3041 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3167 +runtimeId=3035 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3170 +runtimeId=3038 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3177 +runtimeId=3045 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3169 +runtimeId=3037 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3168 +runtimeId=3036 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3175 +runtimeId=3043 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3176 +runtimeId=3044 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3178 +runtimeId=3046 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3180 +runtimeId=3048 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3179 +runtimeId=3047 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3172 +runtimeId=3040 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3174 +runtimeId=3042 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3199 +runtimeId=3067 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3201 +runtimeId=3069 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3195 +runtimeId=3063 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3198 +runtimeId=3066 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3205 +runtimeId=3073 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3197 +runtimeId=3065 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3196 +runtimeId=3064 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3203 +runtimeId=3071 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3204 +runtimeId=3072 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3206 +runtimeId=3074 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3208 +runtimeId=3076 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3207 +runtimeId=3075 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3200 +runtimeId=3068 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3202 +runtimeId=3070 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3227 +runtimeId=3095 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3229 +runtimeId=3097 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3223 +runtimeId=3091 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3226 +runtimeId=3094 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3233 +runtimeId=3101 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3225 +runtimeId=3093 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3224 +runtimeId=3092 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3231 +runtimeId=3099 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3232 +runtimeId=3100 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3234 +runtimeId=3102 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3236 +runtimeId=3104 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3235 +runtimeId=3103 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3228 +runtimeId=3096 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3230 +runtimeId=3098 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1911 +runtimeId=1779 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1913 +runtimeId=1781 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1907 +runtimeId=1775 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1910 +runtimeId=1778 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1917 +runtimeId=1785 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1909 +runtimeId=1777 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1908 +runtimeId=1776 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1915 +runtimeId=1783 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1916 +runtimeId=1784 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1918 +runtimeId=1786 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1920 +runtimeId=1788 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1919 +runtimeId=1787 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1912 +runtimeId=1780 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1914 +runtimeId=1782 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1939 +runtimeId=1807 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1941 +runtimeId=1809 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1935 +runtimeId=1803 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1938 +runtimeId=1806 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1945 +runtimeId=1813 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1937 +runtimeId=1805 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1936 +runtimeId=1804 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1943 +runtimeId=1811 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1944 +runtimeId=1812 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1946 +runtimeId=1814 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1948 +runtimeId=1816 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1947 +runtimeId=1815 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1940 +runtimeId=1808 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1942 +runtimeId=1810 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1967 +runtimeId=1835 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1969 +runtimeId=1837 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1963 +runtimeId=1831 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1966 +runtimeId=1834 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1973 +runtimeId=1841 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1965 +runtimeId=1833 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1964 +runtimeId=1832 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1971 +runtimeId=1839 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1972 +runtimeId=1840 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1974 +runtimeId=1842 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1976 +runtimeId=1844 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1975 +runtimeId=1843 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1968 +runtimeId=1836 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1970 +runtimeId=1838 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2667 +runtimeId=2535 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2669 +runtimeId=2537 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2663 +runtimeId=2531 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2666 +runtimeId=2534 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2673 +runtimeId=2541 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2665 +runtimeId=2533 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2664 +runtimeId=2532 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2671 +runtimeId=2539 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2672 +runtimeId=2540 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2674 +runtimeId=2542 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2676 +runtimeId=2544 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2675 +runtimeId=2543 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2668 +runtimeId=2536 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2670 +runtimeId=2538 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2695 +runtimeId=2563 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2697 +runtimeId=2565 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2691 +runtimeId=2559 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2694 +runtimeId=2562 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2701 +runtimeId=2569 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2693 +runtimeId=2561 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2692 +runtimeId=2560 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2699 +runtimeId=2567 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2700 +runtimeId=2568 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2702 +runtimeId=2570 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2704 +runtimeId=2572 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2703 +runtimeId=2571 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2696 +runtimeId=2564 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2698 +runtimeId=2566 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2723 +runtimeId=2591 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2725 +runtimeId=2593 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2719 +runtimeId=2587 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2722 +runtimeId=2590 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2729 +runtimeId=2597 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2721 +runtimeId=2589 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2720 +runtimeId=2588 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2727 +runtimeId=2595 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2728 +runtimeId=2596 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2730 +runtimeId=2598 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2732 +runtimeId=2600 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2731 +runtimeId=2599 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2724 +runtimeId=2592 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2726 +runtimeId=2594 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3423 +runtimeId=3291 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3425 +runtimeId=3293 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3419 +runtimeId=3287 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3422 +runtimeId=3290 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3429 +runtimeId=3297 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3421 +runtimeId=3289 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3420 +runtimeId=3288 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3427 +runtimeId=3295 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3428 +runtimeId=3296 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3430 +runtimeId=3298 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3432 +runtimeId=3300 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3431 +runtimeId=3299 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3424 +runtimeId=3292 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3426 +runtimeId=3294 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3451 +runtimeId=3319 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3453 +runtimeId=3321 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3447 +runtimeId=3315 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3450 +runtimeId=3318 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3457 +runtimeId=3325 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3449 +runtimeId=3317 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3448 +runtimeId=3316 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3455 +runtimeId=3323 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3456 +runtimeId=3324 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3458 +runtimeId=3326 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3460 +runtimeId=3328 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3459 +runtimeId=3327 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3452 +runtimeId=3320 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3454 +runtimeId=3322 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3479 +runtimeId=3347 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3481 +runtimeId=3349 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3475 +runtimeId=3343 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3478 +runtimeId=3346 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3485 +runtimeId=3353 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3477 +runtimeId=3345 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3476 +runtimeId=3344 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3483 +runtimeId=3351 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3484 +runtimeId=3352 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3486 +runtimeId=3354 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3488 +runtimeId=3356 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3487 +runtimeId=3355 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3480 +runtimeId=3348 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3482 +runtimeId=3350 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1421 +runtimeId=1289 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1423 +runtimeId=1291 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1417 +runtimeId=1285 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1420 +runtimeId=1288 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1427 +runtimeId=1295 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1419 +runtimeId=1287 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1418 +runtimeId=1286 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1425 +runtimeId=1293 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1426 +runtimeId=1294 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1428 +runtimeId=1296 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1430 +runtimeId=1298 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1429 +runtimeId=1297 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1422 +runtimeId=1290 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1424 +runtimeId=1292 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1449 +runtimeId=1317 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1451 +runtimeId=1319 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1445 +runtimeId=1313 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1448 +runtimeId=1316 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1455 +runtimeId=1323 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1447 +runtimeId=1315 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1446 +runtimeId=1314 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1453 +runtimeId=1321 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1454 +runtimeId=1322 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1456 +runtimeId=1324 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1458 +runtimeId=1326 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1457 +runtimeId=1325 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1450 +runtimeId=1318 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1452 +runtimeId=1320 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1477 +runtimeId=1345 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1479 +runtimeId=1347 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1473 +runtimeId=1341 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1476 +runtimeId=1344 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1483 +runtimeId=1351 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1475 +runtimeId=1343 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1474 +runtimeId=1342 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1481 +runtimeId=1349 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1482 +runtimeId=1350 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1484 +runtimeId=1352 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1486 +runtimeId=1354 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1485 +runtimeId=1353 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1478 +runtimeId=1346 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1480 +runtimeId=1348 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2177 +runtimeId=2045 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2179 +runtimeId=2047 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2173 +runtimeId=2041 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2176 +runtimeId=2044 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2183 +runtimeId=2051 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2175 +runtimeId=2043 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2174 +runtimeId=2042 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2181 +runtimeId=2049 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2182 +runtimeId=2050 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2184 +runtimeId=2052 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2186 +runtimeId=2054 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2185 +runtimeId=2053 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2178 +runtimeId=2046 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2180 +runtimeId=2048 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2205 +runtimeId=2073 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2207 +runtimeId=2075 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2201 +runtimeId=2069 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2204 +runtimeId=2072 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2211 +runtimeId=2079 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2203 +runtimeId=2071 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2202 +runtimeId=2070 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2209 +runtimeId=2077 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2210 +runtimeId=2078 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2212 +runtimeId=2080 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2214 +runtimeId=2082 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2213 +runtimeId=2081 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2206 +runtimeId=2074 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2208 +runtimeId=2076 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2233 +runtimeId=2101 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2235 +runtimeId=2103 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2229 +runtimeId=2097 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2232 +runtimeId=2100 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2239 +runtimeId=2107 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2231 +runtimeId=2099 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2230 +runtimeId=2098 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2237 +runtimeId=2105 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2238 +runtimeId=2106 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2240 +runtimeId=2108 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2242 +runtimeId=2110 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2241 +runtimeId=2109 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2234 +runtimeId=2102 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2236 +runtimeId=2104 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2933 +runtimeId=2801 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2935 +runtimeId=2803 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2929 +runtimeId=2797 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2932 +runtimeId=2800 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2939 +runtimeId=2807 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2931 +runtimeId=2799 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2930 +runtimeId=2798 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2937 +runtimeId=2805 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2938 +runtimeId=2806 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2940 +runtimeId=2808 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2942 +runtimeId=2810 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2941 +runtimeId=2809 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2934 +runtimeId=2802 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2936 +runtimeId=2804 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2961 +runtimeId=2829 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2963 +runtimeId=2831 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2957 +runtimeId=2825 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2960 +runtimeId=2828 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2967 +runtimeId=2835 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2959 +runtimeId=2827 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2958 +runtimeId=2826 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2965 +runtimeId=2833 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2966 +runtimeId=2834 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2968 +runtimeId=2836 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2970 +runtimeId=2838 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2969 +runtimeId=2837 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2962 +runtimeId=2830 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2964 +runtimeId=2832 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2989 +runtimeId=2857 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2991 +runtimeId=2859 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2985 +runtimeId=2853 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2988 +runtimeId=2856 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2995 +runtimeId=2863 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2987 +runtimeId=2855 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2986 +runtimeId=2854 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2993 +runtimeId=2861 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2994 +runtimeId=2862 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2996 +runtimeId=2864 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2998 +runtimeId=2866 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2997 +runtimeId=2865 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2990 +runtimeId=2858 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2992 +runtimeId=2860 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1673 +runtimeId=1541 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1675 +runtimeId=1543 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1669 +runtimeId=1537 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1672 +runtimeId=1540 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1679 +runtimeId=1547 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1671 +runtimeId=1539 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1670 +runtimeId=1538 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1677 +runtimeId=1545 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1678 +runtimeId=1546 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1680 +runtimeId=1548 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1682 +runtimeId=1550 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1681 +runtimeId=1549 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1674 +runtimeId=1542 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1676 +runtimeId=1544 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1701 +runtimeId=1569 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1703 +runtimeId=1571 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1697 +runtimeId=1565 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1700 +runtimeId=1568 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1707 +runtimeId=1575 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1699 +runtimeId=1567 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1698 +runtimeId=1566 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1705 +runtimeId=1573 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1706 +runtimeId=1574 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1708 +runtimeId=1576 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1710 +runtimeId=1578 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1709 +runtimeId=1577 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1702 +runtimeId=1570 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1704 +runtimeId=1572 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1729 +runtimeId=1597 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1731 +runtimeId=1599 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1725 +runtimeId=1593 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1728 +runtimeId=1596 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1735 +runtimeId=1603 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1727 +runtimeId=1595 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1726 +runtimeId=1594 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1733 +runtimeId=1601 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1734 +runtimeId=1602 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1736 +runtimeId=1604 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1738 +runtimeId=1606 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1737 +runtimeId=1605 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1730 +runtimeId=1598 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1732 +runtimeId=1600 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2429 +runtimeId=2297 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2431 +runtimeId=2299 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2425 +runtimeId=2293 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2428 +runtimeId=2296 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2435 +runtimeId=2303 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2427 +runtimeId=2295 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2426 +runtimeId=2294 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2433 +runtimeId=2301 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2434 +runtimeId=2302 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2436 +runtimeId=2304 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2438 +runtimeId=2306 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2437 +runtimeId=2305 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2430 +runtimeId=2298 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2432 +runtimeId=2300 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2457 +runtimeId=2325 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2459 +runtimeId=2327 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2453 +runtimeId=2321 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2456 +runtimeId=2324 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2463 +runtimeId=2331 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2455 +runtimeId=2323 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2454 +runtimeId=2322 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2461 +runtimeId=2329 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2462 +runtimeId=2330 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2464 +runtimeId=2332 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2466 +runtimeId=2334 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2465 +runtimeId=2333 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2458 +runtimeId=2326 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2460 +runtimeId=2328 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2485 +runtimeId=2353 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2487 +runtimeId=2355 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2481 +runtimeId=2349 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2484 +runtimeId=2352 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2491 +runtimeId=2359 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2483 +runtimeId=2351 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2482 +runtimeId=2350 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2489 +runtimeId=2357 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2490 +runtimeId=2358 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2492 +runtimeId=2360 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2494 +runtimeId=2362 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2493 +runtimeId=2361 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2486 +runtimeId=2354 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2488 +runtimeId=2356 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3185 +runtimeId=3053 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3187 +runtimeId=3055 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3181 +runtimeId=3049 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3184 +runtimeId=3052 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3191 +runtimeId=3059 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3183 +runtimeId=3051 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3182 +runtimeId=3050 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3189 +runtimeId=3057 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3190 +runtimeId=3058 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3192 +runtimeId=3060 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3194 +runtimeId=3062 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3193 +runtimeId=3061 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3186 +runtimeId=3054 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3188 +runtimeId=3056 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3213 +runtimeId=3081 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3215 +runtimeId=3083 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3209 +runtimeId=3077 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3212 +runtimeId=3080 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3219 +runtimeId=3087 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3211 +runtimeId=3079 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3210 +runtimeId=3078 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3217 +runtimeId=3085 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3218 +runtimeId=3086 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3220 +runtimeId=3088 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3222 +runtimeId=3090 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3221 +runtimeId=3089 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3214 +runtimeId=3082 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3216 +runtimeId=3084 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3241 +runtimeId=3109 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3243 +runtimeId=3111 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3237 +runtimeId=3105 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3240 +runtimeId=3108 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3247 +runtimeId=3115 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3239 +runtimeId=3107 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3238 +runtimeId=3106 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3245 +runtimeId=3113 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3246 +runtimeId=3114 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3248 +runtimeId=3116 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3250 +runtimeId=3118 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3249 +runtimeId=3117 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3242 +runtimeId=3110 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3244 +runtimeId=3112 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1925 +runtimeId=1793 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1927 +runtimeId=1795 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1921 +runtimeId=1789 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1924 +runtimeId=1792 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1931 +runtimeId=1799 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1923 +runtimeId=1791 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1922 +runtimeId=1790 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1929 +runtimeId=1797 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1930 +runtimeId=1798 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1932 +runtimeId=1800 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1934 +runtimeId=1802 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1933 +runtimeId=1801 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1926 +runtimeId=1794 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1928 +runtimeId=1796 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1953 +runtimeId=1821 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1955 +runtimeId=1823 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1949 +runtimeId=1817 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1952 +runtimeId=1820 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1959 +runtimeId=1827 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1951 +runtimeId=1819 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1950 +runtimeId=1818 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1957 +runtimeId=1825 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1958 +runtimeId=1826 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1960 +runtimeId=1828 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1962 +runtimeId=1830 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1961 +runtimeId=1829 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1954 +runtimeId=1822 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1956 +runtimeId=1824 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1981 +runtimeId=1849 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1983 +runtimeId=1851 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1977 +runtimeId=1845 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1980 +runtimeId=1848 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1987 +runtimeId=1855 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1979 +runtimeId=1847 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1978 +runtimeId=1846 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1985 +runtimeId=1853 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1986 +runtimeId=1854 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1988 +runtimeId=1856 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1990 +runtimeId=1858 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1989 +runtimeId=1857 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1982 +runtimeId=1850 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1984 +runtimeId=1852 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2681 +runtimeId=2549 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2683 +runtimeId=2551 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2677 +runtimeId=2545 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2680 +runtimeId=2548 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2687 +runtimeId=2555 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2679 +runtimeId=2547 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2678 +runtimeId=2546 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2685 +runtimeId=2553 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2686 +runtimeId=2554 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2688 +runtimeId=2556 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2690 +runtimeId=2558 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2689 +runtimeId=2557 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2682 +runtimeId=2550 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2684 +runtimeId=2552 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2709 +runtimeId=2577 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2711 +runtimeId=2579 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2705 +runtimeId=2573 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2708 +runtimeId=2576 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2715 +runtimeId=2583 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2707 +runtimeId=2575 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2706 +runtimeId=2574 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2713 +runtimeId=2581 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2714 +runtimeId=2582 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2716 +runtimeId=2584 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2718 +runtimeId=2586 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2717 +runtimeId=2585 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2710 +runtimeId=2578 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2712 +runtimeId=2580 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2737 +runtimeId=2605 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2739 +runtimeId=2607 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2733 +runtimeId=2601 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2736 +runtimeId=2604 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2743 +runtimeId=2611 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2735 +runtimeId=2603 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2734 +runtimeId=2602 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2741 +runtimeId=2609 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2742 +runtimeId=2610 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2744 +runtimeId=2612 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2746 +runtimeId=2614 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2745 +runtimeId=2613 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2738 +runtimeId=2606 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2740 +runtimeId=2608 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3437 +runtimeId=3305 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3439 +runtimeId=3307 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3433 +runtimeId=3301 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3436 +runtimeId=3304 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3443 +runtimeId=3311 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3435 +runtimeId=3303 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3434 +runtimeId=3302 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3441 +runtimeId=3309 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3442 +runtimeId=3310 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3444 +runtimeId=3312 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3446 +runtimeId=3314 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3445 +runtimeId=3313 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3438 +runtimeId=3306 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3440 +runtimeId=3308 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3465 +runtimeId=3333 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3467 +runtimeId=3335 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3461 +runtimeId=3329 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3464 +runtimeId=3332 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3471 +runtimeId=3339 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3463 +runtimeId=3331 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3462 +runtimeId=3330 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3469 +runtimeId=3337 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3470 +runtimeId=3338 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3472 +runtimeId=3340 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3474 +runtimeId=3342 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3473 +runtimeId=3341 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3466 +runtimeId=3334 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3468 +runtimeId=3336 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3493 +runtimeId=3361 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3495 +runtimeId=3363 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3489 +runtimeId=3357 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3492 +runtimeId=3360 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3499 +runtimeId=3367 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3491 +runtimeId=3359 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3490 +runtimeId=3358 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3497 +runtimeId=3365 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3498 +runtimeId=3366 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3500 +runtimeId=3368 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3502 +runtimeId=3370 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3501 +runtimeId=3369 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3494 +runtimeId=3362 minecraft:cobblestone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3496 +runtimeId=3364 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1491 +runtimeId=1359 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1493 +runtimeId=1361 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1487 +runtimeId=1355 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1490 +runtimeId=1358 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1497 +runtimeId=1365 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1489 +runtimeId=1357 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1488 +runtimeId=1356 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1495 +runtimeId=1363 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1496 +runtimeId=1364 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1498 +runtimeId=1366 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1500 +runtimeId=1368 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1499 +runtimeId=1367 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1492 +runtimeId=1360 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1494 +runtimeId=1362 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1519 +runtimeId=1387 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1521 +runtimeId=1389 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1515 +runtimeId=1383 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1518 +runtimeId=1386 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1525 +runtimeId=1393 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1517 +runtimeId=1385 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1516 +runtimeId=1384 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1523 +runtimeId=1391 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1524 +runtimeId=1392 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1526 +runtimeId=1394 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1528 +runtimeId=1396 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1527 +runtimeId=1395 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1520 +runtimeId=1388 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1522 +runtimeId=1390 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1547 +runtimeId=1415 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1549 +runtimeId=1417 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1543 +runtimeId=1411 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1546 +runtimeId=1414 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1553 +runtimeId=1421 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1545 +runtimeId=1413 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1544 +runtimeId=1412 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1551 +runtimeId=1419 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1552 +runtimeId=1420 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1554 +runtimeId=1422 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1556 +runtimeId=1424 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1555 +runtimeId=1423 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1548 +runtimeId=1416 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1550 +runtimeId=1418 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2247 +runtimeId=2115 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2249 +runtimeId=2117 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2243 +runtimeId=2111 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2246 +runtimeId=2114 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2253 +runtimeId=2121 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2245 +runtimeId=2113 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2244 +runtimeId=2112 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2251 +runtimeId=2119 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2252 +runtimeId=2120 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2254 +runtimeId=2122 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2256 +runtimeId=2124 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2255 +runtimeId=2123 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2248 +runtimeId=2116 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2250 +runtimeId=2118 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2275 +runtimeId=2143 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2277 +runtimeId=2145 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2271 +runtimeId=2139 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2274 +runtimeId=2142 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2281 +runtimeId=2149 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2273 +runtimeId=2141 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2272 +runtimeId=2140 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2279 +runtimeId=2147 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2280 +runtimeId=2148 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2282 +runtimeId=2150 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2284 +runtimeId=2152 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2283 +runtimeId=2151 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2276 +runtimeId=2144 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2278 +runtimeId=2146 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2303 +runtimeId=2171 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2305 +runtimeId=2173 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2299 +runtimeId=2167 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2302 +runtimeId=2170 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2309 +runtimeId=2177 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2301 +runtimeId=2169 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2300 +runtimeId=2168 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2307 +runtimeId=2175 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2308 +runtimeId=2176 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2310 +runtimeId=2178 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2312 +runtimeId=2180 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2311 +runtimeId=2179 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2304 +runtimeId=2172 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2306 +runtimeId=2174 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3003 +runtimeId=2871 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3005 +runtimeId=2873 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2999 +runtimeId=2867 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3002 +runtimeId=2870 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3009 +runtimeId=2877 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3001 +runtimeId=2869 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3000 +runtimeId=2868 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3007 +runtimeId=2875 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3008 +runtimeId=2876 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3010 +runtimeId=2878 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3012 +runtimeId=2880 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3011 +runtimeId=2879 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3004 +runtimeId=2872 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3006 +runtimeId=2874 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3031 +runtimeId=2899 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3033 +runtimeId=2901 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3027 +runtimeId=2895 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3030 +runtimeId=2898 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3037 +runtimeId=2905 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3029 +runtimeId=2897 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3028 +runtimeId=2896 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3035 +runtimeId=2903 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3036 +runtimeId=2904 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3038 +runtimeId=2906 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3040 +runtimeId=2908 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3039 +runtimeId=2907 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3032 +runtimeId=2900 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3034 +runtimeId=2902 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3059 +runtimeId=2927 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3061 +runtimeId=2929 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3055 +runtimeId=2923 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3058 +runtimeId=2926 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3065 +runtimeId=2933 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3057 +runtimeId=2925 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3056 +runtimeId=2924 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3063 +runtimeId=2931 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3064 +runtimeId=2932 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3066 +runtimeId=2934 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3068 +runtimeId=2936 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3067 +runtimeId=2935 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3060 +runtimeId=2928 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3062 +runtimeId=2930 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1743 +runtimeId=1611 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1745 +runtimeId=1613 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1739 +runtimeId=1607 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1742 +runtimeId=1610 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1749 +runtimeId=1617 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1741 +runtimeId=1609 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1740 +runtimeId=1608 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1747 +runtimeId=1615 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1748 +runtimeId=1616 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1750 +runtimeId=1618 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1752 +runtimeId=1620 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1751 +runtimeId=1619 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1744 +runtimeId=1612 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1746 +runtimeId=1614 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1771 +runtimeId=1639 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1773 +runtimeId=1641 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1767 +runtimeId=1635 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1770 +runtimeId=1638 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1777 +runtimeId=1645 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1769 +runtimeId=1637 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1768 +runtimeId=1636 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1775 +runtimeId=1643 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1776 +runtimeId=1644 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1778 +runtimeId=1646 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1780 +runtimeId=1648 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1779 +runtimeId=1647 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1772 +runtimeId=1640 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1774 +runtimeId=1642 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1799 +runtimeId=1667 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1801 +runtimeId=1669 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1795 +runtimeId=1663 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1798 +runtimeId=1666 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1805 +runtimeId=1673 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1797 +runtimeId=1665 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1796 +runtimeId=1664 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1803 +runtimeId=1671 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1804 +runtimeId=1672 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1806 +runtimeId=1674 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1808 +runtimeId=1676 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1807 +runtimeId=1675 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1800 +runtimeId=1668 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1802 +runtimeId=1670 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2499 +runtimeId=2367 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2501 +runtimeId=2369 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2495 +runtimeId=2363 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2498 +runtimeId=2366 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2505 +runtimeId=2373 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2497 +runtimeId=2365 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2496 +runtimeId=2364 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2503 +runtimeId=2371 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2504 +runtimeId=2372 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2506 +runtimeId=2374 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2508 +runtimeId=2376 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2507 +runtimeId=2375 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2500 +runtimeId=2368 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2502 +runtimeId=2370 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2527 +runtimeId=2395 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2529 +runtimeId=2397 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2523 +runtimeId=2391 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2526 +runtimeId=2394 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2533 +runtimeId=2401 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2525 +runtimeId=2393 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2524 +runtimeId=2392 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2531 +runtimeId=2399 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2532 +runtimeId=2400 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2534 +runtimeId=2402 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2536 +runtimeId=2404 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2535 +runtimeId=2403 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2528 +runtimeId=2396 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2530 +runtimeId=2398 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2555 +runtimeId=2423 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2557 +runtimeId=2425 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2551 +runtimeId=2419 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2554 +runtimeId=2422 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2561 +runtimeId=2429 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2553 +runtimeId=2421 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2552 +runtimeId=2420 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2559 +runtimeId=2427 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2560 +runtimeId=2428 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2562 +runtimeId=2430 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2564 +runtimeId=2432 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2563 +runtimeId=2431 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2556 +runtimeId=2424 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2558 +runtimeId=2426 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3255 +runtimeId=3123 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3257 +runtimeId=3125 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3251 +runtimeId=3119 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3254 +runtimeId=3122 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3261 +runtimeId=3129 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3253 +runtimeId=3121 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3252 +runtimeId=3120 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3259 +runtimeId=3127 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3260 +runtimeId=3128 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3262 +runtimeId=3130 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3264 +runtimeId=3132 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3263 +runtimeId=3131 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3256 +runtimeId=3124 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3258 +runtimeId=3126 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3283 +runtimeId=3151 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3285 +runtimeId=3153 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3279 +runtimeId=3147 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3282 +runtimeId=3150 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3289 +runtimeId=3157 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3281 +runtimeId=3149 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3280 +runtimeId=3148 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3287 +runtimeId=3155 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3288 +runtimeId=3156 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3290 +runtimeId=3158 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3292 +runtimeId=3160 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3291 +runtimeId=3159 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3284 +runtimeId=3152 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3286 +runtimeId=3154 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3311 +runtimeId=3179 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3313 +runtimeId=3181 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3307 +runtimeId=3175 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3310 +runtimeId=3178 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3317 +runtimeId=3185 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3309 +runtimeId=3177 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3308 +runtimeId=3176 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3315 +runtimeId=3183 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3316 +runtimeId=3184 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3318 +runtimeId=3186 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3320 +runtimeId=3188 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3319 +runtimeId=3187 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3312 +runtimeId=3180 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3314 +runtimeId=3182 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1995 +runtimeId=1863 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1997 +runtimeId=1865 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1991 +runtimeId=1859 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1994 +runtimeId=1862 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2001 +runtimeId=1869 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1993 +runtimeId=1861 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1992 +runtimeId=1860 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1999 +runtimeId=1867 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2000 +runtimeId=1868 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2002 +runtimeId=1870 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2004 +runtimeId=1872 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2003 +runtimeId=1871 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1996 +runtimeId=1864 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1998 +runtimeId=1866 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2023 +runtimeId=1891 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2025 +runtimeId=1893 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2019 +runtimeId=1887 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2022 +runtimeId=1890 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2029 +runtimeId=1897 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2021 +runtimeId=1889 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2020 +runtimeId=1888 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2027 +runtimeId=1895 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2028 +runtimeId=1896 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2030 +runtimeId=1898 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2032 +runtimeId=1900 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2031 +runtimeId=1899 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2024 +runtimeId=1892 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2026 +runtimeId=1894 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2051 +runtimeId=1919 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2053 +runtimeId=1921 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2047 +runtimeId=1915 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2050 +runtimeId=1918 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2057 +runtimeId=1925 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2049 +runtimeId=1917 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2048 +runtimeId=1916 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2055 +runtimeId=1923 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2056 +runtimeId=1924 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2058 +runtimeId=1926 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2060 +runtimeId=1928 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2059 +runtimeId=1927 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2052 +runtimeId=1920 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2054 +runtimeId=1922 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2751 +runtimeId=2619 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2753 +runtimeId=2621 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2747 +runtimeId=2615 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2750 +runtimeId=2618 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2757 +runtimeId=2625 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2749 +runtimeId=2617 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2748 +runtimeId=2616 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2755 +runtimeId=2623 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2756 +runtimeId=2624 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2758 +runtimeId=2626 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2760 +runtimeId=2628 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2759 +runtimeId=2627 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2752 +runtimeId=2620 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2754 +runtimeId=2622 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2779 +runtimeId=2647 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2781 +runtimeId=2649 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2775 +runtimeId=2643 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2778 +runtimeId=2646 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2785 +runtimeId=2653 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2777 +runtimeId=2645 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2776 +runtimeId=2644 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2783 +runtimeId=2651 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2784 +runtimeId=2652 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2786 +runtimeId=2654 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2788 +runtimeId=2656 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2787 +runtimeId=2655 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2780 +runtimeId=2648 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2782 +runtimeId=2650 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2807 +runtimeId=2675 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2809 +runtimeId=2677 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2803 +runtimeId=2671 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2806 +runtimeId=2674 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2813 +runtimeId=2681 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2805 +runtimeId=2673 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2804 +runtimeId=2672 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2811 +runtimeId=2679 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2812 +runtimeId=2680 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2814 +runtimeId=2682 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2816 +runtimeId=2684 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2815 +runtimeId=2683 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2808 +runtimeId=2676 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2810 +runtimeId=2678 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3507 +runtimeId=3375 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3509 +runtimeId=3377 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3503 +runtimeId=3371 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3506 +runtimeId=3374 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3513 +runtimeId=3381 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3505 +runtimeId=3373 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3504 +runtimeId=3372 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3511 +runtimeId=3379 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3512 +runtimeId=3380 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3514 +runtimeId=3382 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3516 +runtimeId=3384 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3515 +runtimeId=3383 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3508 +runtimeId=3376 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3510 +runtimeId=3378 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3535 +runtimeId=3403 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3537 +runtimeId=3405 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3531 +runtimeId=3399 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3534 +runtimeId=3402 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3541 +runtimeId=3409 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3533 +runtimeId=3401 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3532 +runtimeId=3400 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3539 +runtimeId=3407 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3540 +runtimeId=3408 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3542 +runtimeId=3410 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3544 +runtimeId=3412 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3543 +runtimeId=3411 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3536 +runtimeId=3404 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3538 +runtimeId=3406 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3563 +runtimeId=3431 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3565 +runtimeId=3433 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3559 +runtimeId=3427 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3562 +runtimeId=3430 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3569 +runtimeId=3437 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3561 +runtimeId=3429 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3560 +runtimeId=3428 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3567 +runtimeId=3435 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3568 +runtimeId=3436 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3570 +runtimeId=3438 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3572 +runtimeId=3440 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3571 +runtimeId=3439 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3564 +runtimeId=3432 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3566 +runtimeId=3434 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1505 +runtimeId=1373 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1507 +runtimeId=1375 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1501 +runtimeId=1369 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1504 +runtimeId=1372 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1511 +runtimeId=1379 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1503 +runtimeId=1371 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1502 +runtimeId=1370 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1509 +runtimeId=1377 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1510 +runtimeId=1378 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1512 +runtimeId=1380 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1514 +runtimeId=1382 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1513 +runtimeId=1381 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1506 +runtimeId=1374 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1508 +runtimeId=1376 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1533 +runtimeId=1401 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1535 +runtimeId=1403 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1529 +runtimeId=1397 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1532 +runtimeId=1400 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1539 +runtimeId=1407 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1531 +runtimeId=1399 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1530 +runtimeId=1398 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1537 +runtimeId=1405 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1538 +runtimeId=1406 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1540 +runtimeId=1408 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1542 +runtimeId=1410 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1541 +runtimeId=1409 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1534 +runtimeId=1402 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1536 +runtimeId=1404 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1561 +runtimeId=1429 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1563 +runtimeId=1431 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1557 +runtimeId=1425 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1560 +runtimeId=1428 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1567 +runtimeId=1435 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1559 +runtimeId=1427 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1558 +runtimeId=1426 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1565 +runtimeId=1433 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1566 +runtimeId=1434 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1568 +runtimeId=1436 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1570 +runtimeId=1438 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1569 +runtimeId=1437 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1562 +runtimeId=1430 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1564 +runtimeId=1432 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2261 +runtimeId=2129 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2263 +runtimeId=2131 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2257 +runtimeId=2125 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2260 +runtimeId=2128 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2267 +runtimeId=2135 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2259 +runtimeId=2127 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2258 +runtimeId=2126 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2265 +runtimeId=2133 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2266 +runtimeId=2134 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2268 +runtimeId=2136 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2270 +runtimeId=2138 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2269 +runtimeId=2137 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2262 +runtimeId=2130 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2264 +runtimeId=2132 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2289 +runtimeId=2157 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2291 +runtimeId=2159 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2285 +runtimeId=2153 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2288 +runtimeId=2156 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2295 +runtimeId=2163 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2287 +runtimeId=2155 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2286 +runtimeId=2154 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2293 +runtimeId=2161 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2294 +runtimeId=2162 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2296 +runtimeId=2164 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2298 +runtimeId=2166 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2297 +runtimeId=2165 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2290 +runtimeId=2158 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2292 +runtimeId=2160 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2317 +runtimeId=2185 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2319 +runtimeId=2187 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2313 +runtimeId=2181 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2316 +runtimeId=2184 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2323 +runtimeId=2191 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2315 +runtimeId=2183 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2314 +runtimeId=2182 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2321 +runtimeId=2189 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2322 +runtimeId=2190 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2324 +runtimeId=2192 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2326 +runtimeId=2194 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2325 +runtimeId=2193 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2318 +runtimeId=2186 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2320 +runtimeId=2188 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3017 +runtimeId=2885 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3019 +runtimeId=2887 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3013 +runtimeId=2881 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3016 +runtimeId=2884 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3023 +runtimeId=2891 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3015 +runtimeId=2883 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3014 +runtimeId=2882 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3021 +runtimeId=2889 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3022 +runtimeId=2890 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3024 +runtimeId=2892 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3026 +runtimeId=2894 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3025 +runtimeId=2893 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3018 +runtimeId=2886 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3020 +runtimeId=2888 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3045 +runtimeId=2913 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3047 +runtimeId=2915 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3041 +runtimeId=2909 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3044 +runtimeId=2912 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3051 +runtimeId=2919 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3043 +runtimeId=2911 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3042 +runtimeId=2910 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3049 +runtimeId=2917 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3050 +runtimeId=2918 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3052 +runtimeId=2920 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3054 +runtimeId=2922 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3053 +runtimeId=2921 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3046 +runtimeId=2914 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3048 +runtimeId=2916 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3073 +runtimeId=2941 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3075 +runtimeId=2943 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3069 +runtimeId=2937 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3072 +runtimeId=2940 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3079 +runtimeId=2947 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3071 +runtimeId=2939 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3070 +runtimeId=2938 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3077 +runtimeId=2945 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3078 +runtimeId=2946 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3080 +runtimeId=2948 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3082 +runtimeId=2950 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3081 +runtimeId=2949 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3074 +runtimeId=2942 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3076 +runtimeId=2944 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=1757 +runtimeId=1625 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=1759 +runtimeId=1627 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=1753 +runtimeId=1621 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=1756 +runtimeId=1624 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=1763 +runtimeId=1631 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=1755 +runtimeId=1623 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1754 +runtimeId=1622 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1761 +runtimeId=1629 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=1762 +runtimeId=1630 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=1764 +runtimeId=1632 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=1766 +runtimeId=1634 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=1765 +runtimeId=1633 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=1758 +runtimeId=1626 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=1760 +runtimeId=1628 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=1785 +runtimeId=1653 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=1787 +runtimeId=1655 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=1781 +runtimeId=1649 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=1784 +runtimeId=1652 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=1791 +runtimeId=1659 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=1783 +runtimeId=1651 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1782 +runtimeId=1650 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1789 +runtimeId=1657 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=1790 +runtimeId=1658 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=1792 +runtimeId=1660 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=1794 +runtimeId=1662 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=1793 +runtimeId=1661 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=1786 +runtimeId=1654 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=1788 +runtimeId=1656 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=1813 +runtimeId=1681 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=1815 +runtimeId=1683 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=1809 +runtimeId=1677 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=1812 +runtimeId=1680 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=1819 +runtimeId=1687 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=1811 +runtimeId=1679 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=1810 +runtimeId=1678 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=1817 +runtimeId=1685 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=1818 +runtimeId=1686 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=1820 +runtimeId=1688 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=1822 +runtimeId=1690 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=1821 +runtimeId=1689 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=1814 +runtimeId=1682 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=1816 +runtimeId=1684 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2513 +runtimeId=2381 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2515 +runtimeId=2383 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2509 +runtimeId=2377 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2512 +runtimeId=2380 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2519 +runtimeId=2387 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2511 +runtimeId=2379 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2510 +runtimeId=2378 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2517 +runtimeId=2385 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2518 +runtimeId=2386 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2520 +runtimeId=2388 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2522 +runtimeId=2390 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2521 +runtimeId=2389 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2514 +runtimeId=2382 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2516 +runtimeId=2384 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2541 +runtimeId=2409 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2543 +runtimeId=2411 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2537 +runtimeId=2405 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2540 +runtimeId=2408 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2547 +runtimeId=2415 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2539 +runtimeId=2407 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2538 +runtimeId=2406 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2545 +runtimeId=2413 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2546 +runtimeId=2414 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2548 +runtimeId=2416 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2550 +runtimeId=2418 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2549 +runtimeId=2417 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2542 +runtimeId=2410 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2544 +runtimeId=2412 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2569 +runtimeId=2437 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2571 +runtimeId=2439 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2565 +runtimeId=2433 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2568 +runtimeId=2436 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2575 +runtimeId=2443 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2567 +runtimeId=2435 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2566 +runtimeId=2434 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2573 +runtimeId=2441 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2574 +runtimeId=2442 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2576 +runtimeId=2444 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2578 +runtimeId=2446 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2577 +runtimeId=2445 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2570 +runtimeId=2438 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2572 +runtimeId=2440 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3269 +runtimeId=3137 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3271 +runtimeId=3139 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3265 +runtimeId=3133 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3268 +runtimeId=3136 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3275 +runtimeId=3143 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3267 +runtimeId=3135 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3266 +runtimeId=3134 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3273 +runtimeId=3141 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3274 +runtimeId=3142 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3276 +runtimeId=3144 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3278 +runtimeId=3146 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3277 +runtimeId=3145 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3270 +runtimeId=3138 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3272 +runtimeId=3140 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3297 +runtimeId=3165 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3299 +runtimeId=3167 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3293 +runtimeId=3161 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3296 +runtimeId=3164 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3303 +runtimeId=3171 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3295 +runtimeId=3163 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3294 +runtimeId=3162 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3301 +runtimeId=3169 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3302 +runtimeId=3170 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3304 +runtimeId=3172 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3306 +runtimeId=3174 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3305 +runtimeId=3173 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3298 +runtimeId=3166 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3300 +runtimeId=3168 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3325 +runtimeId=3193 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3327 +runtimeId=3195 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3321 +runtimeId=3189 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3324 +runtimeId=3192 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3331 +runtimeId=3199 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3323 +runtimeId=3191 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3322 +runtimeId=3190 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3329 +runtimeId=3197 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3330 +runtimeId=3198 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3332 +runtimeId=3200 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3334 +runtimeId=3202 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3333 +runtimeId=3201 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3326 +runtimeId=3194 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3328 +runtimeId=3196 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2009 +runtimeId=1877 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2011 +runtimeId=1879 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2005 +runtimeId=1873 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2008 +runtimeId=1876 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2015 +runtimeId=1883 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2007 +runtimeId=1875 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2006 +runtimeId=1874 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2013 +runtimeId=1881 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2014 +runtimeId=1882 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2016 +runtimeId=1884 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2018 +runtimeId=1886 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2017 +runtimeId=1885 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2010 +runtimeId=1878 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2012 +runtimeId=1880 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2037 +runtimeId=1905 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2039 +runtimeId=1907 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2033 +runtimeId=1901 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2036 +runtimeId=1904 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2043 +runtimeId=1911 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2035 +runtimeId=1903 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2034 +runtimeId=1902 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2041 +runtimeId=1909 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2042 +runtimeId=1910 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2044 +runtimeId=1912 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2046 +runtimeId=1914 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2045 +runtimeId=1913 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2038 +runtimeId=1906 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2040 +runtimeId=1908 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2065 +runtimeId=1933 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2067 +runtimeId=1935 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2061 +runtimeId=1929 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2064 +runtimeId=1932 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2071 +runtimeId=1939 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2063 +runtimeId=1931 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2062 +runtimeId=1930 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2069 +runtimeId=1937 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2070 +runtimeId=1938 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2072 +runtimeId=1940 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2074 +runtimeId=1942 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2073 +runtimeId=1941 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2066 +runtimeId=1934 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2068 +runtimeId=1936 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=2765 +runtimeId=2633 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=2767 +runtimeId=2635 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=2761 +runtimeId=2629 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=2764 +runtimeId=2632 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=2771 +runtimeId=2639 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=2763 +runtimeId=2631 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2762 +runtimeId=2630 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2769 +runtimeId=2637 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=2770 +runtimeId=2638 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=2772 +runtimeId=2640 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=2774 +runtimeId=2642 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=2773 +runtimeId=2641 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=2766 +runtimeId=2634 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=2768 +runtimeId=2636 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=2793 +runtimeId=2661 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=2795 +runtimeId=2663 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=2789 +runtimeId=2657 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=2792 +runtimeId=2660 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=2799 +runtimeId=2667 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=2791 +runtimeId=2659 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2790 +runtimeId=2658 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2797 +runtimeId=2665 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=2798 +runtimeId=2666 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=2800 +runtimeId=2668 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=2802 +runtimeId=2670 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=2801 +runtimeId=2669 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=2794 +runtimeId=2662 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=2796 +runtimeId=2664 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=2821 +runtimeId=2689 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=2823 +runtimeId=2691 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=2817 +runtimeId=2685 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=2820 +runtimeId=2688 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=2827 +runtimeId=2695 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=2819 +runtimeId=2687 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=2818 +runtimeId=2686 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=2825 +runtimeId=2693 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=2826 +runtimeId=2694 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=2828 +runtimeId=2696 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=2830 +runtimeId=2698 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=2829 +runtimeId=2697 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=2822 +runtimeId=2690 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=2824 +runtimeId=2692 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=andesite blockId=139 -runtimeId=3521 +runtimeId=3389 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=brick blockId=139 -runtimeId=3523 +runtimeId=3391 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=cobblestone blockId=139 -runtimeId=3517 +runtimeId=3385 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=diorite blockId=139 -runtimeId=3520 +runtimeId=3388 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=end_brick blockId=139 -runtimeId=3527 +runtimeId=3395 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=granite blockId=139 -runtimeId=3519 +runtimeId=3387 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3518 +runtimeId=3386 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3525 +runtimeId=3393 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=nether_brick blockId=139 -runtimeId=3526 +runtimeId=3394 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=prismarine blockId=139 -runtimeId=3528 +runtimeId=3396 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_nether_brick blockId=139 -runtimeId=3530 +runtimeId=3398 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=red_sandstone blockId=139 -runtimeId=3529 +runtimeId=3397 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=sandstone blockId=139 -runtimeId=3522 +runtimeId=3390 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none;wall_block_type=stone_brick blockId=139 -runtimeId=3524 +runtimeId=3392 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=andesite blockId=139 -runtimeId=3549 +runtimeId=3417 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=brick blockId=139 -runtimeId=3551 +runtimeId=3419 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=cobblestone blockId=139 -runtimeId=3545 +runtimeId=3413 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=diorite blockId=139 -runtimeId=3548 +runtimeId=3416 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=end_brick blockId=139 -runtimeId=3555 +runtimeId=3423 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=granite blockId=139 -runtimeId=3547 +runtimeId=3415 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3546 +runtimeId=3414 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3553 +runtimeId=3421 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=nether_brick blockId=139 -runtimeId=3554 +runtimeId=3422 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=prismarine blockId=139 -runtimeId=3556 +runtimeId=3424 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_nether_brick blockId=139 -runtimeId=3558 +runtimeId=3426 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=red_sandstone blockId=139 -runtimeId=3557 +runtimeId=3425 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=sandstone blockId=139 -runtimeId=3550 +runtimeId=3418 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short;wall_block_type=stone_brick blockId=139 -runtimeId=3552 +runtimeId=3420 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=andesite blockId=139 -runtimeId=3577 +runtimeId=3445 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=brick blockId=139 -runtimeId=3579 +runtimeId=3447 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=cobblestone blockId=139 -runtimeId=3573 +runtimeId=3441 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=diorite blockId=139 -runtimeId=3576 +runtimeId=3444 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=end_brick blockId=139 -runtimeId=3583 +runtimeId=3451 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=granite blockId=139 -runtimeId=3575 +runtimeId=3443 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_cobblestone blockId=139 -runtimeId=3574 +runtimeId=3442 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=mossy_stone_brick blockId=139 -runtimeId=3581 +runtimeId=3449 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=nether_brick blockId=139 -runtimeId=3582 +runtimeId=3450 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=prismarine blockId=139 -runtimeId=3584 +runtimeId=3452 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_nether_brick blockId=139 -runtimeId=3586 +runtimeId=3454 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=red_sandstone blockId=139 -runtimeId=3585 +runtimeId=3453 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=sandstone blockId=139 -runtimeId=3578 +runtimeId=3446 minecraft:cobblestone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall;wall_block_type=stone_brick blockId=139 -runtimeId=3580 +runtimeId=3448 minecraft:cocoa;age=0;direction=0 blockId=127 -runtimeId=3587 +runtimeId=6393 minecraft:cocoa;age=0;direction=1 blockId=127 -runtimeId=3588 +runtimeId=6394 minecraft:cocoa;age=0;direction=2 blockId=127 -runtimeId=3589 +runtimeId=6395 minecraft:cocoa;age=0;direction=3 blockId=127 -runtimeId=3590 +runtimeId=6396 minecraft:cocoa;age=1;direction=0 blockId=127 -runtimeId=3591 +runtimeId=6397 minecraft:cocoa;age=1;direction=1 blockId=127 -runtimeId=3592 +runtimeId=6398 minecraft:cocoa;age=1;direction=2 blockId=127 -runtimeId=3593 +runtimeId=6399 minecraft:cocoa;age=1;direction=3 blockId=127 -runtimeId=3594 +runtimeId=6400 minecraft:cocoa;age=2;direction=0 blockId=127 -runtimeId=3595 +runtimeId=6401 minecraft:cocoa;age=2;direction=1 blockId=127 -runtimeId=3596 +runtimeId=6402 minecraft:cocoa;age=2;direction=2 blockId=127 -runtimeId=3597 +runtimeId=6403 minecraft:cocoa;age=2;direction=3 blockId=127 -runtimeId=3598 +runtimeId=6404 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=east blockId=204 -runtimeId=3601 +runtimeId=7462 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=north blockId=204 -runtimeId=3602 +runtimeId=7463 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=south blockId=204 -runtimeId=3603 +runtimeId=7464 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=top blockId=204 -runtimeId=3604 +runtimeId=7465 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=unknown blockId=204 -runtimeId=3599 +runtimeId=7460 minecraft:colored_torch_bp;color_bit=0;torch_facing_direction=west blockId=204 -runtimeId=3600 +runtimeId=7461 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=east blockId=204 -runtimeId=3607 +runtimeId=7468 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=north blockId=204 -runtimeId=3608 +runtimeId=7469 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=south blockId=204 -runtimeId=3609 +runtimeId=7470 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=top blockId=204 -runtimeId=3610 +runtimeId=7471 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=unknown blockId=204 -runtimeId=3605 +runtimeId=7466 minecraft:colored_torch_bp;color_bit=1;torch_facing_direction=west blockId=204 -runtimeId=3606 +runtimeId=7467 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=east blockId=202 -runtimeId=3613 +runtimeId=7474 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=north blockId=202 -runtimeId=3614 +runtimeId=7475 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=south blockId=202 -runtimeId=3615 +runtimeId=7476 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=top blockId=202 -runtimeId=3616 +runtimeId=7477 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=unknown blockId=202 -runtimeId=3611 +runtimeId=7472 minecraft:colored_torch_rg;color_bit=0;torch_facing_direction=west blockId=202 -runtimeId=3612 +runtimeId=7473 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=east blockId=202 -runtimeId=3619 +runtimeId=7480 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=north blockId=202 -runtimeId=3620 +runtimeId=7481 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=south blockId=202 -runtimeId=3621 +runtimeId=7482 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=top blockId=202 -runtimeId=3622 +runtimeId=7483 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=unknown blockId=202 -runtimeId=3617 +runtimeId=7478 minecraft:colored_torch_rg;color_bit=1;torch_facing_direction=west blockId=202 -runtimeId=3618 +runtimeId=7479 minecraft:command_block;conditional_bit=0;facing_direction=0 blockId=137 -runtimeId=3623 +runtimeId=7720 minecraft:command_block;conditional_bit=0;facing_direction=1 blockId=137 -runtimeId=3624 +runtimeId=7721 minecraft:command_block;conditional_bit=0;facing_direction=2 blockId=137 -runtimeId=3625 +runtimeId=7722 minecraft:command_block;conditional_bit=0;facing_direction=3 blockId=137 -runtimeId=3626 +runtimeId=7723 minecraft:command_block;conditional_bit=0;facing_direction=4 blockId=137 -runtimeId=3627 +runtimeId=7724 minecraft:command_block;conditional_bit=0;facing_direction=5 blockId=137 -runtimeId=3628 +runtimeId=7725 minecraft:command_block;conditional_bit=1;facing_direction=0 blockId=137 -runtimeId=3629 +runtimeId=7726 minecraft:command_block;conditional_bit=1;facing_direction=1 blockId=137 -runtimeId=3630 +runtimeId=7727 minecraft:command_block;conditional_bit=1;facing_direction=2 blockId=137 -runtimeId=3631 +runtimeId=7728 minecraft:command_block;conditional_bit=1;facing_direction=3 blockId=137 -runtimeId=3632 +runtimeId=7729 minecraft:command_block;conditional_bit=1;facing_direction=4 blockId=137 -runtimeId=3633 +runtimeId=7730 minecraft:command_block;conditional_bit=1;facing_direction=5 blockId=137 -runtimeId=3634 +runtimeId=7731 minecraft:composter;composter_fill_level=0 blockId=468 -runtimeId=3635 +runtimeId=5365 minecraft:composter;composter_fill_level=1 blockId=468 -runtimeId=3636 +runtimeId=5366 minecraft:composter;composter_fill_level=2 blockId=468 -runtimeId=3637 +runtimeId=5367 minecraft:composter;composter_fill_level=3 blockId=468 -runtimeId=3638 +runtimeId=5368 minecraft:composter;composter_fill_level=4 blockId=468 -runtimeId=3639 +runtimeId=5369 minecraft:composter;composter_fill_level=5 blockId=468 -runtimeId=3640 +runtimeId=5370 minecraft:composter;composter_fill_level=6 blockId=468 -runtimeId=3641 +runtimeId=5371 minecraft:composter;composter_fill_level=7 blockId=468 -runtimeId=3642 +runtimeId=5372 minecraft:composter;composter_fill_level=8 blockId=468 -runtimeId=3643 +runtimeId=5373 minecraft:concrete;color=black blockId=236 -runtimeId=3659 +runtimeId=683 minecraft:concrete;color=blue blockId=236 -runtimeId=3655 +runtimeId=679 minecraft:concrete;color=brown blockId=236 -runtimeId=3656 +runtimeId=680 minecraft:concrete;color=cyan blockId=236 -runtimeId=3653 +runtimeId=677 minecraft:concrete;color=gray blockId=236 -runtimeId=3651 +runtimeId=675 minecraft:concrete;color=green blockId=236 -runtimeId=3657 +runtimeId=681 minecraft:concrete;color=light_blue blockId=236 -runtimeId=3647 +runtimeId=671 minecraft:concrete;color=lime blockId=236 -runtimeId=3649 +runtimeId=673 minecraft:concrete;color=magenta blockId=236 -runtimeId=3646 +runtimeId=670 minecraft:concrete;color=orange blockId=236 -runtimeId=3645 +runtimeId=669 minecraft:concrete;color=pink blockId=236 -runtimeId=3650 +runtimeId=674 minecraft:concrete;color=purple blockId=236 -runtimeId=3654 +runtimeId=678 minecraft:concrete;color=red blockId=236 -runtimeId=3658 +runtimeId=682 minecraft:concrete;color=silver blockId=236 -runtimeId=3652 +runtimeId=676 minecraft:concrete;color=white blockId=236 -runtimeId=3644 +runtimeId=668 minecraft:concrete;color=yellow blockId=236 -runtimeId=3648 +runtimeId=672 -minecraft:concretePowder;color=black +minecraft:concrete_powder;color=black blockId=237 -runtimeId=3675 +runtimeId=6244 -minecraft:concretePowder;color=blue +minecraft:concrete_powder;color=blue blockId=237 -runtimeId=3671 +runtimeId=6240 -minecraft:concretePowder;color=brown +minecraft:concrete_powder;color=brown blockId=237 -runtimeId=3672 +runtimeId=6241 -minecraft:concretePowder;color=cyan +minecraft:concrete_powder;color=cyan blockId=237 -runtimeId=3669 +runtimeId=6238 -minecraft:concretePowder;color=gray +minecraft:concrete_powder;color=gray blockId=237 -runtimeId=3667 +runtimeId=6236 -minecraft:concretePowder;color=green +minecraft:concrete_powder;color=green blockId=237 -runtimeId=3673 +runtimeId=6242 -minecraft:concretePowder;color=light_blue +minecraft:concrete_powder;color=light_blue blockId=237 -runtimeId=3663 +runtimeId=6232 -minecraft:concretePowder;color=lime +minecraft:concrete_powder;color=lime blockId=237 -runtimeId=3665 +runtimeId=6234 -minecraft:concretePowder;color=magenta +minecraft:concrete_powder;color=magenta blockId=237 -runtimeId=3662 +runtimeId=6231 -minecraft:concretePowder;color=orange +minecraft:concrete_powder;color=orange blockId=237 -runtimeId=3661 +runtimeId=6230 -minecraft:concretePowder;color=pink +minecraft:concrete_powder;color=pink blockId=237 -runtimeId=3666 +runtimeId=6235 -minecraft:concretePowder;color=purple +minecraft:concrete_powder;color=purple blockId=237 -runtimeId=3670 +runtimeId=6239 -minecraft:concretePowder;color=red +minecraft:concrete_powder;color=red blockId=237 -runtimeId=3674 +runtimeId=6243 -minecraft:concretePowder;color=silver +minecraft:concrete_powder;color=silver blockId=237 -runtimeId=3668 +runtimeId=6237 -minecraft:concretePowder;color=white +minecraft:concrete_powder;color=white blockId=237 -runtimeId=3660 +runtimeId=6229 -minecraft:concretePowder;color=yellow +minecraft:concrete_powder;color=yellow blockId=237 -runtimeId=3664 +runtimeId=6233 minecraft:conduit blockId=412 -runtimeId=3676 +runtimeId=4196 minecraft:copper_block blockId=595 -runtimeId=3677 +runtimeId=4607 minecraft:copper_ore blockId=566 -runtimeId=3678 +runtimeId=3559 minecraft:coral;coral_color=blue;dead_bit=0 blockId=386 -runtimeId=3679 +runtimeId=6380 minecraft:coral;coral_color=blue;dead_bit=1 blockId=386 -runtimeId=3684 +runtimeId=6385 minecraft:coral;coral_color=pink;dead_bit=0 blockId=386 -runtimeId=3680 +runtimeId=6381 minecraft:coral;coral_color=pink;dead_bit=1 blockId=386 -runtimeId=3685 +runtimeId=6386 minecraft:coral;coral_color=purple;dead_bit=0 blockId=386 -runtimeId=3681 +runtimeId=6382 minecraft:coral;coral_color=purple;dead_bit=1 blockId=386 -runtimeId=3686 +runtimeId=6387 minecraft:coral;coral_color=red;dead_bit=0 blockId=386 -runtimeId=3682 +runtimeId=6383 minecraft:coral;coral_color=red;dead_bit=1 blockId=386 -runtimeId=3687 +runtimeId=6388 minecraft:coral;coral_color=yellow;dead_bit=0 blockId=386 -runtimeId=3683 +runtimeId=6384 minecraft:coral;coral_color=yellow;dead_bit=1 blockId=386 -runtimeId=3688 +runtimeId=6389 minecraft:coral_block;coral_color=blue;dead_bit=0 blockId=387 -runtimeId=3689 +runtimeId=5193 minecraft:coral_block;coral_color=blue;dead_bit=1 blockId=387 -runtimeId=3694 +runtimeId=5198 minecraft:coral_block;coral_color=pink;dead_bit=0 blockId=387 -runtimeId=3690 +runtimeId=5194 minecraft:coral_block;coral_color=pink;dead_bit=1 blockId=387 -runtimeId=3695 +runtimeId=5199 minecraft:coral_block;coral_color=purple;dead_bit=0 blockId=387 -runtimeId=3691 +runtimeId=5195 minecraft:coral_block;coral_color=purple;dead_bit=1 blockId=387 -runtimeId=3696 +runtimeId=5200 minecraft:coral_block;coral_color=red;dead_bit=0 blockId=387 -runtimeId=3692 +runtimeId=5196 minecraft:coral_block;coral_color=red;dead_bit=1 blockId=387 -runtimeId=3697 +runtimeId=5201 minecraft:coral_block;coral_color=yellow;dead_bit=0 blockId=387 -runtimeId=3693 +runtimeId=5197 minecraft:coral_block;coral_color=yellow;dead_bit=1 blockId=387 -runtimeId=3698 +runtimeId=5202 minecraft:coral_fan;coral_fan_direction=0;coral_color=blue blockId=388 -runtimeId=3699 +runtimeId=4537 minecraft:coral_fan;coral_fan_direction=0;coral_color=pink blockId=388 -runtimeId=3700 +runtimeId=4538 minecraft:coral_fan;coral_fan_direction=0;coral_color=purple blockId=388 -runtimeId=3701 +runtimeId=4539 minecraft:coral_fan;coral_fan_direction=0;coral_color=red blockId=388 -runtimeId=3702 +runtimeId=4540 minecraft:coral_fan;coral_fan_direction=0;coral_color=yellow blockId=388 -runtimeId=3703 +runtimeId=4541 minecraft:coral_fan;coral_fan_direction=1;coral_color=blue blockId=388 -runtimeId=3704 +runtimeId=4542 minecraft:coral_fan;coral_fan_direction=1;coral_color=pink blockId=388 -runtimeId=3705 +runtimeId=4543 minecraft:coral_fan;coral_fan_direction=1;coral_color=purple blockId=388 -runtimeId=3706 +runtimeId=4544 minecraft:coral_fan;coral_fan_direction=1;coral_color=red blockId=388 -runtimeId=3707 +runtimeId=4545 minecraft:coral_fan;coral_fan_direction=1;coral_color=yellow blockId=388 -runtimeId=3708 +runtimeId=4546 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=blue blockId=389 -runtimeId=3709 +runtimeId=66 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=pink blockId=389 -runtimeId=3710 +runtimeId=67 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=purple blockId=389 -runtimeId=3711 +runtimeId=68 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=red blockId=389 -runtimeId=3712 +runtimeId=69 minecraft:coral_fan_dead;coral_fan_direction=0;coral_color=yellow blockId=389 -runtimeId=3713 +runtimeId=70 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=blue blockId=389 -runtimeId=3714 +runtimeId=71 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=pink blockId=389 -runtimeId=3715 +runtimeId=72 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=purple blockId=389 -runtimeId=3716 +runtimeId=73 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=red blockId=389 -runtimeId=3717 +runtimeId=74 minecraft:coral_fan_dead;coral_fan_direction=1;coral_color=yellow blockId=389 -runtimeId=3718 +runtimeId=75 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=0;dead_bit=0 blockId=390 -runtimeId=3719 +runtimeId=4468 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=0;dead_bit=1 blockId=390 -runtimeId=3721 +runtimeId=4470 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=1;dead_bit=0 blockId=390 -runtimeId=3723 +runtimeId=4472 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=1;dead_bit=1 blockId=390 -runtimeId=3725 +runtimeId=4474 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=2;dead_bit=0 blockId=390 -runtimeId=3727 +runtimeId=4476 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=2;dead_bit=1 blockId=390 -runtimeId=3729 +runtimeId=4478 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=3;dead_bit=0 blockId=390 -runtimeId=3731 +runtimeId=4480 minecraft:coral_fan_hang;coral_hang_type_bit=0;coral_direction=3;dead_bit=1 blockId=390 -runtimeId=3733 +runtimeId=4482 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=0;dead_bit=0 blockId=390 -runtimeId=3720 +runtimeId=4469 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=0;dead_bit=1 blockId=390 -runtimeId=3722 +runtimeId=4471 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=1;dead_bit=0 blockId=390 -runtimeId=3724 +runtimeId=4473 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=1;dead_bit=1 blockId=390 -runtimeId=3726 +runtimeId=4475 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=2;dead_bit=0 blockId=390 -runtimeId=3728 +runtimeId=4477 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=2;dead_bit=1 blockId=390 -runtimeId=3730 +runtimeId=4479 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=3;dead_bit=0 blockId=390 -runtimeId=3732 +runtimeId=4481 minecraft:coral_fan_hang;coral_hang_type_bit=1;coral_direction=3;dead_bit=1 blockId=390 -runtimeId=3734 +runtimeId=4483 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=0;dead_bit=0 blockId=391 -runtimeId=3735 +runtimeId=4089 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=0;dead_bit=1 blockId=391 -runtimeId=3737 +runtimeId=4091 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=1;dead_bit=0 blockId=391 -runtimeId=3739 +runtimeId=4093 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=1;dead_bit=1 blockId=391 -runtimeId=3741 +runtimeId=4095 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=2;dead_bit=0 blockId=391 -runtimeId=3743 +runtimeId=4097 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=2;dead_bit=1 blockId=391 -runtimeId=3745 +runtimeId=4099 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=3;dead_bit=0 blockId=391 -runtimeId=3747 +runtimeId=4101 minecraft:coral_fan_hang2;coral_hang_type_bit=0;coral_direction=3;dead_bit=1 blockId=391 -runtimeId=3749 +runtimeId=4103 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=0;dead_bit=0 blockId=391 -runtimeId=3736 +runtimeId=4090 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=0;dead_bit=1 blockId=391 -runtimeId=3738 +runtimeId=4092 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=1;dead_bit=0 blockId=391 -runtimeId=3740 +runtimeId=4094 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=1;dead_bit=1 blockId=391 -runtimeId=3742 +runtimeId=4096 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=2;dead_bit=0 blockId=391 -runtimeId=3744 +runtimeId=4098 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=2;dead_bit=1 blockId=391 -runtimeId=3746 +runtimeId=4100 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=3;dead_bit=0 blockId=391 -runtimeId=3748 +runtimeId=4102 minecraft:coral_fan_hang2;coral_hang_type_bit=1;coral_direction=3;dead_bit=1 blockId=391 -runtimeId=3750 +runtimeId=4104 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=0;dead_bit=0 blockId=392 -runtimeId=3751 +runtimeId=4105 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=0;dead_bit=1 blockId=392 -runtimeId=3753 +runtimeId=4107 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=1;dead_bit=0 blockId=392 -runtimeId=3755 +runtimeId=4109 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=1;dead_bit=1 blockId=392 -runtimeId=3757 +runtimeId=4111 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=2;dead_bit=0 blockId=392 -runtimeId=3759 +runtimeId=4113 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=2;dead_bit=1 blockId=392 -runtimeId=3761 +runtimeId=4115 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=3;dead_bit=0 blockId=392 -runtimeId=3763 +runtimeId=4117 minecraft:coral_fan_hang3;coral_hang_type_bit=0;coral_direction=3;dead_bit=1 blockId=392 -runtimeId=3765 +runtimeId=4119 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=0;dead_bit=0 blockId=392 -runtimeId=3752 +runtimeId=4106 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=0;dead_bit=1 blockId=392 -runtimeId=3754 +runtimeId=4108 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=1;dead_bit=0 blockId=392 -runtimeId=3756 +runtimeId=4110 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=1;dead_bit=1 blockId=392 -runtimeId=3758 +runtimeId=4112 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=2;dead_bit=0 blockId=392 -runtimeId=3760 +runtimeId=4114 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=2;dead_bit=1 blockId=392 -runtimeId=3762 +runtimeId=4116 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=3;dead_bit=0 blockId=392 -runtimeId=3764 +runtimeId=4118 minecraft:coral_fan_hang3;coral_hang_type_bit=1;coral_direction=3;dead_bit=1 blockId=392 -runtimeId=3766 +runtimeId=4120 minecraft:cracked_deepslate_bricks blockId=665 -runtimeId=3767 +runtimeId=5314 minecraft:cracked_deepslate_tiles blockId=664 -runtimeId=3768 +runtimeId=4149 minecraft:cracked_nether_bricks blockId=558 -runtimeId=3769 +runtimeId=4484 minecraft:cracked_polished_blackstone_bricks blockId=535 -runtimeId=3770 +runtimeId=7156 minecraft:crafting_table blockId=58 -runtimeId=3771 +runtimeId=5778 minecraft:crimson_button;button_pressed_bit=0;facing_direction=0 blockId=515 -runtimeId=3772 +runtimeId=4380 minecraft:crimson_button;button_pressed_bit=0;facing_direction=1 blockId=515 -runtimeId=3773 +runtimeId=4381 minecraft:crimson_button;button_pressed_bit=0;facing_direction=2 blockId=515 -runtimeId=3774 +runtimeId=4382 minecraft:crimson_button;button_pressed_bit=0;facing_direction=3 blockId=515 -runtimeId=3775 +runtimeId=4383 minecraft:crimson_button;button_pressed_bit=0;facing_direction=4 blockId=515 -runtimeId=3776 +runtimeId=4384 minecraft:crimson_button;button_pressed_bit=0;facing_direction=5 blockId=515 -runtimeId=3777 +runtimeId=4385 minecraft:crimson_button;button_pressed_bit=1;facing_direction=0 blockId=515 -runtimeId=3778 +runtimeId=4386 minecraft:crimson_button;button_pressed_bit=1;facing_direction=1 blockId=515 -runtimeId=3779 +runtimeId=4387 minecraft:crimson_button;button_pressed_bit=1;facing_direction=2 blockId=515 -runtimeId=3780 +runtimeId=4388 minecraft:crimson_button;button_pressed_bit=1;facing_direction=3 blockId=515 -runtimeId=3781 +runtimeId=4389 minecraft:crimson_button;button_pressed_bit=1;facing_direction=4 blockId=515 -runtimeId=3782 +runtimeId=4390 minecraft:crimson_button;button_pressed_bit=1;facing_direction=5 blockId=515 -runtimeId=3783 +runtimeId=4391 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=499 -runtimeId=3784 +runtimeId=3842 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=499 -runtimeId=3785 +runtimeId=3843 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=499 -runtimeId=3786 +runtimeId=3844 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=499 -runtimeId=3787 +runtimeId=3845 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=499 -runtimeId=3800 +runtimeId=3858 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=499 -runtimeId=3801 +runtimeId=3859 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=499 -runtimeId=3802 +runtimeId=3860 minecraft:crimson_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=499 -runtimeId=3803 +runtimeId=3861 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=499 -runtimeId=3792 +runtimeId=3850 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=499 -runtimeId=3793 +runtimeId=3851 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=499 -runtimeId=3794 +runtimeId=3852 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=499 -runtimeId=3795 +runtimeId=3853 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=499 -runtimeId=3808 +runtimeId=3866 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=499 -runtimeId=3809 +runtimeId=3867 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=499 -runtimeId=3810 +runtimeId=3868 minecraft:crimson_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=499 -runtimeId=3811 +runtimeId=3869 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=499 -runtimeId=3788 +runtimeId=3846 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=499 -runtimeId=3789 +runtimeId=3847 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=499 -runtimeId=3790 +runtimeId=3848 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=499 -runtimeId=3791 +runtimeId=3849 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=499 -runtimeId=3804 +runtimeId=3862 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=499 -runtimeId=3805 +runtimeId=3863 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=499 -runtimeId=3806 +runtimeId=3864 minecraft:crimson_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=499 -runtimeId=3807 +runtimeId=3865 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=499 -runtimeId=3796 +runtimeId=3854 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=499 -runtimeId=3797 +runtimeId=3855 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=499 -runtimeId=3798 +runtimeId=3856 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=499 -runtimeId=3799 +runtimeId=3857 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=499 -runtimeId=3812 +runtimeId=3870 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=499 -runtimeId=3813 +runtimeId=3871 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=499 -runtimeId=3814 +runtimeId=3872 minecraft:crimson_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=499 -runtimeId=3815 +runtimeId=3873 minecraft:crimson_double_slab;top_slot_bit=0 blockId=521 -runtimeId=3816 +runtimeId=687 minecraft:crimson_double_slab;top_slot_bit=1 blockId=521 -runtimeId=3817 +runtimeId=688 minecraft:crimson_fence blockId=511 -runtimeId=3818 +runtimeId=7938 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=513 -runtimeId=3819 +runtimeId=4617 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=513 -runtimeId=3820 +runtimeId=4618 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=513 -runtimeId=3821 +runtimeId=4619 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=513 -runtimeId=3822 +runtimeId=4620 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=513 -runtimeId=3823 +runtimeId=4621 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=513 -runtimeId=3824 +runtimeId=4622 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=513 -runtimeId=3825 +runtimeId=4623 minecraft:crimson_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=513 -runtimeId=3826 +runtimeId=4624 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=513 -runtimeId=3827 +runtimeId=4625 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=513 -runtimeId=3828 +runtimeId=4626 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=513 -runtimeId=3829 +runtimeId=4627 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=513 -runtimeId=3830 +runtimeId=4628 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=513 -runtimeId=3831 +runtimeId=4629 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=513 -runtimeId=3832 +runtimeId=4630 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=513 -runtimeId=3833 +runtimeId=4631 minecraft:crimson_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=513 -runtimeId=3834 +runtimeId=4632 minecraft:crimson_fungus blockId=483 -runtimeId=3835 +runtimeId=7695 minecraft:crimson_hyphae;pillar_axis=x blockId=554 -runtimeId=3837 +runtimeId=4243 minecraft:crimson_hyphae;pillar_axis=y blockId=554 -runtimeId=3836 +runtimeId=4242 minecraft:crimson_hyphae;pillar_axis=z blockId=554 -runtimeId=3838 +runtimeId=4244 minecraft:crimson_nylium blockId=487 -runtimeId=3839 +runtimeId=4172 minecraft:crimson_planks blockId=497 -runtimeId=3840 +runtimeId=4806 minecraft:crimson_pressure_plate;redstone_signal=0 blockId=517 -runtimeId=3841 +runtimeId=8210 minecraft:crimson_pressure_plate;redstone_signal=1 blockId=517 -runtimeId=3842 +runtimeId=8211 minecraft:crimson_pressure_plate;redstone_signal=2 blockId=517 -runtimeId=3843 +runtimeId=8212 minecraft:crimson_pressure_plate;redstone_signal=3 blockId=517 -runtimeId=3844 +runtimeId=8213 minecraft:crimson_pressure_plate;redstone_signal=4 blockId=517 -runtimeId=3845 +runtimeId=8214 minecraft:crimson_pressure_plate;redstone_signal=5 blockId=517 -runtimeId=3846 +runtimeId=8215 minecraft:crimson_pressure_plate;redstone_signal=6 blockId=517 -runtimeId=3847 +runtimeId=8216 minecraft:crimson_pressure_plate;redstone_signal=7 blockId=517 -runtimeId=3848 +runtimeId=8217 minecraft:crimson_pressure_plate;redstone_signal=8 blockId=517 -runtimeId=3849 +runtimeId=8218 minecraft:crimson_pressure_plate;redstone_signal=9 blockId=517 -runtimeId=3850 +runtimeId=8219 minecraft:crimson_pressure_plate;redstone_signal=10 blockId=517 -runtimeId=3851 +runtimeId=8220 minecraft:crimson_pressure_plate;redstone_signal=11 blockId=517 -runtimeId=3852 +runtimeId=8221 minecraft:crimson_pressure_plate;redstone_signal=12 blockId=517 -runtimeId=3853 +runtimeId=8222 minecraft:crimson_pressure_plate;redstone_signal=13 blockId=517 -runtimeId=3854 +runtimeId=8223 minecraft:crimson_pressure_plate;redstone_signal=14 blockId=517 -runtimeId=3855 +runtimeId=8224 minecraft:crimson_pressure_plate;redstone_signal=15 blockId=517 -runtimeId=3856 +runtimeId=8225 minecraft:crimson_roots blockId=478 -runtimeId=3857 +runtimeId=7515 minecraft:crimson_slab;top_slot_bit=0 blockId=519 -runtimeId=3858 +runtimeId=5824 minecraft:crimson_slab;top_slot_bit=1 blockId=519 -runtimeId=3859 +runtimeId=5825 minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=0 blockId=509 -runtimeId=3860 +runtimeId=6245 minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=1 blockId=509 -runtimeId=3861 +runtimeId=6246 minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=2 blockId=509 -runtimeId=3862 +runtimeId=6247 minecraft:crimson_stairs;upside_down_bit=0;weirdo_direction=3 blockId=509 -runtimeId=3863 +runtimeId=6248 minecraft:crimson_stairs;upside_down_bit=1;weirdo_direction=0 blockId=509 -runtimeId=3864 +runtimeId=6249 minecraft:crimson_stairs;upside_down_bit=1;weirdo_direction=1 blockId=509 -runtimeId=3865 +runtimeId=6250 minecraft:crimson_stairs;upside_down_bit=1;weirdo_direction=2 blockId=509 -runtimeId=3866 +runtimeId=6251 minecraft:crimson_stairs;upside_down_bit=1;weirdo_direction=3 blockId=509 -runtimeId=3867 +runtimeId=6252 minecraft:crimson_standing_sign;ground_sign_direction=0 blockId=505 -runtimeId=3868 +runtimeId=7255 minecraft:crimson_standing_sign;ground_sign_direction=1 blockId=505 -runtimeId=3869 +runtimeId=7256 minecraft:crimson_standing_sign;ground_sign_direction=2 blockId=505 -runtimeId=3870 +runtimeId=7257 minecraft:crimson_standing_sign;ground_sign_direction=3 blockId=505 -runtimeId=3871 +runtimeId=7258 minecraft:crimson_standing_sign;ground_sign_direction=4 blockId=505 -runtimeId=3872 +runtimeId=7259 minecraft:crimson_standing_sign;ground_sign_direction=5 blockId=505 -runtimeId=3873 +runtimeId=7260 minecraft:crimson_standing_sign;ground_sign_direction=6 blockId=505 -runtimeId=3874 +runtimeId=7261 minecraft:crimson_standing_sign;ground_sign_direction=7 blockId=505 -runtimeId=3875 +runtimeId=7262 minecraft:crimson_standing_sign;ground_sign_direction=8 blockId=505 -runtimeId=3876 +runtimeId=7263 minecraft:crimson_standing_sign;ground_sign_direction=9 blockId=505 -runtimeId=3877 +runtimeId=7264 minecraft:crimson_standing_sign;ground_sign_direction=10 blockId=505 -runtimeId=3878 +runtimeId=7265 minecraft:crimson_standing_sign;ground_sign_direction=11 blockId=505 -runtimeId=3879 +runtimeId=7266 minecraft:crimson_standing_sign;ground_sign_direction=12 blockId=505 -runtimeId=3880 +runtimeId=7267 minecraft:crimson_standing_sign;ground_sign_direction=13 blockId=505 -runtimeId=3881 +runtimeId=7268 minecraft:crimson_standing_sign;ground_sign_direction=14 blockId=505 -runtimeId=3882 +runtimeId=7269 minecraft:crimson_standing_sign;ground_sign_direction=15 blockId=505 -runtimeId=3883 +runtimeId=7270 minecraft:crimson_stem;pillar_axis=x blockId=480 -runtimeId=3885 +runtimeId=5822 minecraft:crimson_stem;pillar_axis=y blockId=480 -runtimeId=3884 +runtimeId=5821 minecraft:crimson_stem;pillar_axis=z blockId=480 -runtimeId=3886 +runtimeId=5823 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=501 -runtimeId=3887 +runtimeId=4281 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=501 -runtimeId=3888 +runtimeId=4282 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=501 -runtimeId=3889 +runtimeId=4283 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=501 -runtimeId=3890 +runtimeId=4284 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=501 -runtimeId=3891 +runtimeId=4285 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=501 -runtimeId=3892 +runtimeId=4286 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=501 -runtimeId=3893 +runtimeId=4287 minecraft:crimson_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=501 -runtimeId=3894 +runtimeId=4288 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=501 -runtimeId=3895 +runtimeId=4289 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=501 -runtimeId=3896 +runtimeId=4290 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=501 -runtimeId=3897 +runtimeId=4291 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=501 -runtimeId=3898 +runtimeId=4292 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=501 -runtimeId=3899 +runtimeId=4293 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=501 -runtimeId=3900 +runtimeId=4294 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=501 -runtimeId=3901 +runtimeId=4295 minecraft:crimson_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=501 -runtimeId=3902 +runtimeId=4296 minecraft:crimson_wall_sign;facing_direction=0 blockId=507 -runtimeId=3903 +runtimeId=138 minecraft:crimson_wall_sign;facing_direction=1 blockId=507 -runtimeId=3904 +runtimeId=139 minecraft:crimson_wall_sign;facing_direction=2 blockId=507 -runtimeId=3905 +runtimeId=140 minecraft:crimson_wall_sign;facing_direction=3 blockId=507 -runtimeId=3906 +runtimeId=141 minecraft:crimson_wall_sign;facing_direction=4 blockId=507 -runtimeId=3907 +runtimeId=142 minecraft:crimson_wall_sign;facing_direction=5 blockId=507 -runtimeId=3908 +runtimeId=143 minecraft:crying_obsidian blockId=544 -runtimeId=3909 +runtimeId=6596 minecraft:cut_copper blockId=602 -runtimeId=3910 +runtimeId=4645 minecraft:cut_copper_slab;top_slot_bit=0 blockId=616 -runtimeId=3911 +runtimeId=5191 minecraft:cut_copper_slab;top_slot_bit=1 blockId=616 -runtimeId=3912 +runtimeId=5192 minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=609 -runtimeId=3913 +runtimeId=4528 minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=609 -runtimeId=3914 +runtimeId=4529 minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=609 -runtimeId=3915 +runtimeId=4530 minecraft:cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=609 -runtimeId=3916 +runtimeId=4531 minecraft:cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=609 -runtimeId=3917 +runtimeId=4532 minecraft:cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=609 -runtimeId=3918 +runtimeId=4533 minecraft:cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=609 -runtimeId=3919 +runtimeId=4534 minecraft:cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=609 -runtimeId=3920 +runtimeId=4535 minecraft:cyan_candle;lit=0;candles=0 blockId=677 -runtimeId=3921 +runtimeId=7668 minecraft:cyan_candle;lit=0;candles=1 blockId=677 -runtimeId=3922 +runtimeId=7669 minecraft:cyan_candle;lit=0;candles=2 blockId=677 -runtimeId=3923 +runtimeId=7670 minecraft:cyan_candle;lit=0;candles=3 blockId=677 -runtimeId=3924 +runtimeId=7671 minecraft:cyan_candle;lit=1;candles=0 blockId=677 -runtimeId=3925 +runtimeId=7672 minecraft:cyan_candle;lit=1;candles=1 blockId=677 -runtimeId=3926 +runtimeId=7673 minecraft:cyan_candle;lit=1;candles=2 blockId=677 -runtimeId=3927 +runtimeId=7674 minecraft:cyan_candle;lit=1;candles=3 blockId=677 -runtimeId=3928 +runtimeId=7675 minecraft:cyan_candle_cake;lit=0 blockId=694 -runtimeId=3929 +runtimeId=718 minecraft:cyan_candle_cake;lit=1 blockId=694 -runtimeId=3930 +runtimeId=719 minecraft:cyan_glazed_terracotta;facing_direction=0 blockId=229 -runtimeId=3931 +runtimeId=5308 minecraft:cyan_glazed_terracotta;facing_direction=1 blockId=229 -runtimeId=3932 +runtimeId=5309 minecraft:cyan_glazed_terracotta;facing_direction=2 blockId=229 -runtimeId=3933 +runtimeId=5310 minecraft:cyan_glazed_terracotta;facing_direction=3 blockId=229 -runtimeId=3934 +runtimeId=5311 minecraft:cyan_glazed_terracotta;facing_direction=4 blockId=229 -runtimeId=3935 +runtimeId=5312 minecraft:cyan_glazed_terracotta;facing_direction=5 blockId=229 -runtimeId=3936 +runtimeId=5313 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=0 blockId=397 -runtimeId=3937 +runtimeId=93 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=1 blockId=397 -runtimeId=3938 +runtimeId=94 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=2 blockId=397 -runtimeId=3939 +runtimeId=95 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=3 blockId=397 -runtimeId=3940 +runtimeId=96 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=4 blockId=397 -runtimeId=3941 +runtimeId=97 minecraft:dark_oak_button;button_pressed_bit=0;facing_direction=5 blockId=397 -runtimeId=3942 +runtimeId=98 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=0 blockId=397 -runtimeId=3943 +runtimeId=99 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=1 blockId=397 -runtimeId=3944 +runtimeId=100 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=2 blockId=397 -runtimeId=3945 +runtimeId=101 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=3 blockId=397 -runtimeId=3946 +runtimeId=102 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=4 blockId=397 -runtimeId=3947 +runtimeId=103 minecraft:dark_oak_button;button_pressed_bit=1;facing_direction=5 blockId=397 -runtimeId=3948 +runtimeId=104 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=197 -runtimeId=3949 +runtimeId=5667 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=197 -runtimeId=3950 +runtimeId=5668 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=197 -runtimeId=3951 +runtimeId=5669 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=197 -runtimeId=3952 +runtimeId=5670 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=197 -runtimeId=3965 +runtimeId=5683 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=197 -runtimeId=3966 +runtimeId=5684 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=197 -runtimeId=3967 +runtimeId=5685 minecraft:dark_oak_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=197 -runtimeId=3968 +runtimeId=5686 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=197 -runtimeId=3957 +runtimeId=5675 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=197 -runtimeId=3958 +runtimeId=5676 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=197 -runtimeId=3959 +runtimeId=5677 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=197 -runtimeId=3960 +runtimeId=5678 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=197 -runtimeId=3973 +runtimeId=5691 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=197 -runtimeId=3974 +runtimeId=5692 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=197 -runtimeId=3975 +runtimeId=5693 minecraft:dark_oak_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=197 -runtimeId=3976 +runtimeId=5694 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=197 -runtimeId=3953 +runtimeId=5671 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=197 -runtimeId=3954 +runtimeId=5672 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=197 -runtimeId=3955 +runtimeId=5673 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=197 -runtimeId=3956 +runtimeId=5674 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=197 -runtimeId=3969 +runtimeId=5687 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=197 -runtimeId=3970 +runtimeId=5688 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=197 -runtimeId=3971 +runtimeId=5689 minecraft:dark_oak_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=197 -runtimeId=3972 +runtimeId=5690 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=197 -runtimeId=3961 +runtimeId=5679 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=197 -runtimeId=3962 +runtimeId=5680 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=197 -runtimeId=3963 +runtimeId=5681 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=197 -runtimeId=3964 +runtimeId=5682 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=197 -runtimeId=3977 +runtimeId=5695 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=197 -runtimeId=3978 +runtimeId=5696 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=197 -runtimeId=3979 +runtimeId=5697 minecraft:dark_oak_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=197 -runtimeId=3980 +runtimeId=5698 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=186 -runtimeId=3981 +runtimeId=4156 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=186 -runtimeId=3982 +runtimeId=4157 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=186 -runtimeId=3983 +runtimeId=4158 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=186 -runtimeId=3984 +runtimeId=4159 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=186 -runtimeId=3985 +runtimeId=4160 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=186 -runtimeId=3986 +runtimeId=4161 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=186 -runtimeId=3987 +runtimeId=4162 minecraft:dark_oak_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=186 -runtimeId=3988 +runtimeId=4163 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=186 -runtimeId=3989 +runtimeId=4164 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=186 -runtimeId=3990 +runtimeId=4165 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=186 -runtimeId=3991 +runtimeId=4166 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=186 -runtimeId=3992 +runtimeId=4167 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=186 -runtimeId=3993 +runtimeId=4168 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=186 -runtimeId=3994 +runtimeId=4169 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=186 -runtimeId=3995 +runtimeId=4170 minecraft:dark_oak_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=186 -runtimeId=3996 +runtimeId=4171 minecraft:dark_oak_pressure_plate;redstone_signal=0 blockId=407 -runtimeId=3997 +runtimeId=5880 minecraft:dark_oak_pressure_plate;redstone_signal=1 blockId=407 -runtimeId=3998 +runtimeId=5881 minecraft:dark_oak_pressure_plate;redstone_signal=2 blockId=407 -runtimeId=3999 +runtimeId=5882 minecraft:dark_oak_pressure_plate;redstone_signal=3 blockId=407 -runtimeId=4000 +runtimeId=5883 minecraft:dark_oak_pressure_plate;redstone_signal=4 blockId=407 -runtimeId=4001 +runtimeId=5884 minecraft:dark_oak_pressure_plate;redstone_signal=5 blockId=407 -runtimeId=4002 +runtimeId=5885 minecraft:dark_oak_pressure_plate;redstone_signal=6 blockId=407 -runtimeId=4003 +runtimeId=5886 minecraft:dark_oak_pressure_plate;redstone_signal=7 blockId=407 -runtimeId=4004 +runtimeId=5887 minecraft:dark_oak_pressure_plate;redstone_signal=8 blockId=407 -runtimeId=4005 +runtimeId=5888 minecraft:dark_oak_pressure_plate;redstone_signal=9 blockId=407 -runtimeId=4006 +runtimeId=5889 minecraft:dark_oak_pressure_plate;redstone_signal=10 blockId=407 -runtimeId=4007 +runtimeId=5890 minecraft:dark_oak_pressure_plate;redstone_signal=11 blockId=407 -runtimeId=4008 +runtimeId=5891 minecraft:dark_oak_pressure_plate;redstone_signal=12 blockId=407 -runtimeId=4009 +runtimeId=5892 minecraft:dark_oak_pressure_plate;redstone_signal=13 blockId=407 -runtimeId=4010 +runtimeId=5893 minecraft:dark_oak_pressure_plate;redstone_signal=14 blockId=407 -runtimeId=4011 +runtimeId=5894 minecraft:dark_oak_pressure_plate;redstone_signal=15 blockId=407 -runtimeId=4012 +runtimeId=5895 minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=0 blockId=164 -runtimeId=4013 +runtimeId=5019 minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=1 blockId=164 -runtimeId=4014 +runtimeId=5020 minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=2 blockId=164 -runtimeId=4015 +runtimeId=5021 minecraft:dark_oak_stairs;upside_down_bit=0;weirdo_direction=3 blockId=164 -runtimeId=4016 +runtimeId=5022 minecraft:dark_oak_stairs;upside_down_bit=1;weirdo_direction=0 blockId=164 -runtimeId=4017 +runtimeId=5023 minecraft:dark_oak_stairs;upside_down_bit=1;weirdo_direction=1 blockId=164 -runtimeId=4018 +runtimeId=5024 minecraft:dark_oak_stairs;upside_down_bit=1;weirdo_direction=2 blockId=164 -runtimeId=4019 +runtimeId=5025 minecraft:dark_oak_stairs;upside_down_bit=1;weirdo_direction=3 blockId=164 -runtimeId=4020 +runtimeId=5026 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=402 -runtimeId=4021 +runtimeId=7444 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=402 -runtimeId=4022 +runtimeId=7445 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=402 -runtimeId=4023 +runtimeId=7446 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=402 -runtimeId=4024 +runtimeId=7447 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=402 -runtimeId=4025 +runtimeId=7448 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=402 -runtimeId=4026 +runtimeId=7449 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=402 -runtimeId=4027 +runtimeId=7450 minecraft:dark_oak_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=402 -runtimeId=4028 +runtimeId=7451 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=402 -runtimeId=4029 +runtimeId=7452 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=402 -runtimeId=4030 +runtimeId=7453 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=402 -runtimeId=4031 +runtimeId=7454 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=402 -runtimeId=4032 +runtimeId=7455 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=402 -runtimeId=4033 +runtimeId=7456 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=402 -runtimeId=4034 +runtimeId=7457 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=402 -runtimeId=4035 +runtimeId=7458 minecraft:dark_oak_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=402 -runtimeId=4036 +runtimeId=7459 minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=0 blockId=258 -runtimeId=4037 +runtimeId=7372 minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=1 blockId=258 -runtimeId=4038 +runtimeId=7373 minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=2 blockId=258 -runtimeId=4039 +runtimeId=7374 minecraft:dark_prismarine_stairs;upside_down_bit=0;weirdo_direction=3 blockId=258 -runtimeId=4040 +runtimeId=7375 minecraft:dark_prismarine_stairs;upside_down_bit=1;weirdo_direction=0 blockId=258 -runtimeId=4041 +runtimeId=7376 minecraft:dark_prismarine_stairs;upside_down_bit=1;weirdo_direction=1 blockId=258 -runtimeId=4042 +runtimeId=7377 minecraft:dark_prismarine_stairs;upside_down_bit=1;weirdo_direction=2 blockId=258 -runtimeId=4043 +runtimeId=7378 minecraft:dark_prismarine_stairs;upside_down_bit=1;weirdo_direction=3 blockId=258 -runtimeId=4044 +runtimeId=7379 minecraft:darkoak_standing_sign;ground_sign_direction=0 blockId=447 -runtimeId=4045 +runtimeId=7271 minecraft:darkoak_standing_sign;ground_sign_direction=1 blockId=447 -runtimeId=4046 +runtimeId=7272 minecraft:darkoak_standing_sign;ground_sign_direction=2 blockId=447 -runtimeId=4047 +runtimeId=7273 minecraft:darkoak_standing_sign;ground_sign_direction=3 blockId=447 -runtimeId=4048 +runtimeId=7274 minecraft:darkoak_standing_sign;ground_sign_direction=4 blockId=447 -runtimeId=4049 +runtimeId=7275 minecraft:darkoak_standing_sign;ground_sign_direction=5 blockId=447 -runtimeId=4050 +runtimeId=7276 minecraft:darkoak_standing_sign;ground_sign_direction=6 blockId=447 -runtimeId=4051 +runtimeId=7277 minecraft:darkoak_standing_sign;ground_sign_direction=7 blockId=447 -runtimeId=4052 +runtimeId=7278 minecraft:darkoak_standing_sign;ground_sign_direction=8 blockId=447 -runtimeId=4053 +runtimeId=7279 minecraft:darkoak_standing_sign;ground_sign_direction=9 blockId=447 -runtimeId=4054 +runtimeId=7280 minecraft:darkoak_standing_sign;ground_sign_direction=10 blockId=447 -runtimeId=4055 +runtimeId=7281 minecraft:darkoak_standing_sign;ground_sign_direction=11 blockId=447 -runtimeId=4056 +runtimeId=7282 minecraft:darkoak_standing_sign;ground_sign_direction=12 blockId=447 -runtimeId=4057 +runtimeId=7283 minecraft:darkoak_standing_sign;ground_sign_direction=13 blockId=447 -runtimeId=4058 +runtimeId=7284 minecraft:darkoak_standing_sign;ground_sign_direction=14 blockId=447 -runtimeId=4059 +runtimeId=7285 minecraft:darkoak_standing_sign;ground_sign_direction=15 blockId=447 -runtimeId=4060 +runtimeId=7286 minecraft:darkoak_wall_sign;facing_direction=0 blockId=448 -runtimeId=4061 +runtimeId=5294 minecraft:darkoak_wall_sign;facing_direction=1 blockId=448 -runtimeId=4062 +runtimeId=5295 minecraft:darkoak_wall_sign;facing_direction=2 blockId=448 -runtimeId=4063 +runtimeId=5296 minecraft:darkoak_wall_sign;facing_direction=3 blockId=448 -runtimeId=4064 +runtimeId=5297 minecraft:darkoak_wall_sign;facing_direction=4 blockId=448 -runtimeId=4065 +runtimeId=5298 minecraft:darkoak_wall_sign;facing_direction=5 blockId=448 -runtimeId=4066 +runtimeId=5299 minecraft:daylight_detector;redstone_signal=0 blockId=151 -runtimeId=4067 +runtimeId=4180 minecraft:daylight_detector;redstone_signal=1 blockId=151 -runtimeId=4068 +runtimeId=4181 minecraft:daylight_detector;redstone_signal=2 blockId=151 -runtimeId=4069 +runtimeId=4182 minecraft:daylight_detector;redstone_signal=3 blockId=151 -runtimeId=4070 +runtimeId=4183 minecraft:daylight_detector;redstone_signal=4 blockId=151 -runtimeId=4071 +runtimeId=4184 minecraft:daylight_detector;redstone_signal=5 blockId=151 -runtimeId=4072 +runtimeId=4185 minecraft:daylight_detector;redstone_signal=6 blockId=151 -runtimeId=4073 +runtimeId=4186 minecraft:daylight_detector;redstone_signal=7 blockId=151 -runtimeId=4074 +runtimeId=4187 minecraft:daylight_detector;redstone_signal=8 blockId=151 -runtimeId=4075 +runtimeId=4188 minecraft:daylight_detector;redstone_signal=9 blockId=151 -runtimeId=4076 +runtimeId=4189 minecraft:daylight_detector;redstone_signal=10 blockId=151 -runtimeId=4077 +runtimeId=4190 minecraft:daylight_detector;redstone_signal=11 blockId=151 -runtimeId=4078 +runtimeId=4191 minecraft:daylight_detector;redstone_signal=12 blockId=151 -runtimeId=4079 +runtimeId=4192 minecraft:daylight_detector;redstone_signal=13 blockId=151 -runtimeId=4080 +runtimeId=4193 minecraft:daylight_detector;redstone_signal=14 blockId=151 -runtimeId=4081 +runtimeId=4194 minecraft:daylight_detector;redstone_signal=15 blockId=151 -runtimeId=4082 +runtimeId=4195 minecraft:daylight_detector_inverted;redstone_signal=0 blockId=178 -runtimeId=4083 +runtimeId=4434 minecraft:daylight_detector_inverted;redstone_signal=1 blockId=178 -runtimeId=4084 +runtimeId=4435 minecraft:daylight_detector_inverted;redstone_signal=2 blockId=178 -runtimeId=4085 +runtimeId=4436 minecraft:daylight_detector_inverted;redstone_signal=3 blockId=178 -runtimeId=4086 +runtimeId=4437 minecraft:daylight_detector_inverted;redstone_signal=4 blockId=178 -runtimeId=4087 +runtimeId=4438 minecraft:daylight_detector_inverted;redstone_signal=5 blockId=178 -runtimeId=4088 +runtimeId=4439 minecraft:daylight_detector_inverted;redstone_signal=6 blockId=178 -runtimeId=4089 +runtimeId=4440 minecraft:daylight_detector_inverted;redstone_signal=7 blockId=178 -runtimeId=4090 +runtimeId=4441 minecraft:daylight_detector_inverted;redstone_signal=8 blockId=178 -runtimeId=4091 +runtimeId=4442 minecraft:daylight_detector_inverted;redstone_signal=9 blockId=178 -runtimeId=4092 +runtimeId=4443 minecraft:daylight_detector_inverted;redstone_signal=10 blockId=178 -runtimeId=4093 +runtimeId=4444 minecraft:daylight_detector_inverted;redstone_signal=11 blockId=178 -runtimeId=4094 +runtimeId=4445 minecraft:daylight_detector_inverted;redstone_signal=12 blockId=178 -runtimeId=4095 +runtimeId=4446 minecraft:daylight_detector_inverted;redstone_signal=13 blockId=178 -runtimeId=4096 +runtimeId=4447 minecraft:daylight_detector_inverted;redstone_signal=14 blockId=178 -runtimeId=4097 +runtimeId=4448 minecraft:daylight_detector_inverted;redstone_signal=15 blockId=178 -runtimeId=4098 +runtimeId=4449 minecraft:deadbush blockId=32 -runtimeId=4099 +runtimeId=4633 minecraft:deepslate;pillar_axis=x blockId=633 -runtimeId=4101 +runtimeId=268 minecraft:deepslate;pillar_axis=y blockId=633 -runtimeId=4100 +runtimeId=267 minecraft:deepslate;pillar_axis=z blockId=633 -runtimeId=4102 +runtimeId=269 minecraft:deepslate_brick_double_slab;top_slot_bit=0 blockId=654 -runtimeId=4103 +runtimeId=3461 minecraft:deepslate_brick_double_slab;top_slot_bit=1 blockId=654 -runtimeId=4104 +runtimeId=3462 minecraft:deepslate_brick_slab;top_slot_bit=0 blockId=647 -runtimeId=4105 +runtimeId=3721 minecraft:deepslate_brick_slab;top_slot_bit=1 blockId=647 -runtimeId=4106 +runtimeId=3722 minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=648 -runtimeId=4107 +runtimeId=7364 minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=648 -runtimeId=4108 +runtimeId=7365 minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=648 -runtimeId=4109 +runtimeId=7366 minecraft:deepslate_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=648 -runtimeId=4110 +runtimeId=7367 minecraft:deepslate_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=648 -runtimeId=4111 +runtimeId=7368 minecraft:deepslate_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=648 -runtimeId=4112 +runtimeId=7369 minecraft:deepslate_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=648 -runtimeId=4113 +runtimeId=7370 minecraft:deepslate_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=648 -runtimeId=4114 +runtimeId=7371 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4115 +runtimeId=437 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4117 +runtimeId=439 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4119 +runtimeId=441 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4169 +runtimeId=491 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4171 +runtimeId=493 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4173 +runtimeId=495 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4223 +runtimeId=545 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4225 +runtimeId=547 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4227 +runtimeId=549 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4133 +runtimeId=455 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4135 +runtimeId=457 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4137 +runtimeId=459 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4187 +runtimeId=509 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4189 +runtimeId=511 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4191 +runtimeId=513 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4241 +runtimeId=563 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4243 +runtimeId=565 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4245 +runtimeId=567 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4151 +runtimeId=473 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4153 +runtimeId=475 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4155 +runtimeId=477 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4205 +runtimeId=527 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4207 +runtimeId=529 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4209 +runtimeId=531 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4259 +runtimeId=581 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4261 +runtimeId=583 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4263 +runtimeId=585 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4116 +runtimeId=438 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4118 +runtimeId=440 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4120 +runtimeId=442 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4170 +runtimeId=492 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4172 +runtimeId=494 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4174 +runtimeId=496 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4224 +runtimeId=546 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4226 +runtimeId=548 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4228 +runtimeId=550 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4134 +runtimeId=456 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4136 +runtimeId=458 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4138 +runtimeId=460 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4188 +runtimeId=510 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4190 +runtimeId=512 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4192 +runtimeId=514 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4242 +runtimeId=564 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4244 +runtimeId=566 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4246 +runtimeId=568 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4152 +runtimeId=474 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4154 +runtimeId=476 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4156 +runtimeId=478 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4206 +runtimeId=528 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4208 +runtimeId=530 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4210 +runtimeId=532 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4260 +runtimeId=582 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4262 +runtimeId=584 minecraft:deepslate_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4264 +runtimeId=586 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4121 +runtimeId=443 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4123 +runtimeId=445 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4125 +runtimeId=447 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4175 +runtimeId=497 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4177 +runtimeId=499 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4179 +runtimeId=501 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4229 +runtimeId=551 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4231 +runtimeId=553 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4233 +runtimeId=555 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4139 +runtimeId=461 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4141 +runtimeId=463 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4143 +runtimeId=465 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4193 +runtimeId=515 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4195 +runtimeId=517 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4197 +runtimeId=519 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4247 +runtimeId=569 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4249 +runtimeId=571 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4251 +runtimeId=573 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4157 +runtimeId=479 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4159 +runtimeId=481 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4161 +runtimeId=483 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4211 +runtimeId=533 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4213 +runtimeId=535 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4215 +runtimeId=537 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4265 +runtimeId=587 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4267 +runtimeId=589 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4269 +runtimeId=591 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4122 +runtimeId=444 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4124 +runtimeId=446 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4126 +runtimeId=448 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4176 +runtimeId=498 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4178 +runtimeId=500 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4180 +runtimeId=502 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4230 +runtimeId=552 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4232 +runtimeId=554 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4234 +runtimeId=556 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4140 +runtimeId=462 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4142 +runtimeId=464 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4144 +runtimeId=466 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4194 +runtimeId=516 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4196 +runtimeId=518 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4198 +runtimeId=520 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4248 +runtimeId=570 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4250 +runtimeId=572 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4252 +runtimeId=574 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4158 +runtimeId=480 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4160 +runtimeId=482 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4162 +runtimeId=484 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4212 +runtimeId=534 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4214 +runtimeId=536 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4216 +runtimeId=538 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4266 +runtimeId=588 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4268 +runtimeId=590 minecraft:deepslate_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4270 +runtimeId=592 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4127 +runtimeId=449 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4129 +runtimeId=451 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4131 +runtimeId=453 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4181 +runtimeId=503 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4183 +runtimeId=505 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4185 +runtimeId=507 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4235 +runtimeId=557 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4237 +runtimeId=559 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4239 +runtimeId=561 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4145 +runtimeId=467 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4147 +runtimeId=469 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4149 +runtimeId=471 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4199 +runtimeId=521 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4201 +runtimeId=523 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4203 +runtimeId=525 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4253 +runtimeId=575 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4255 +runtimeId=577 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4257 +runtimeId=579 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4163 +runtimeId=485 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4165 +runtimeId=487 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4167 +runtimeId=489 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4217 +runtimeId=539 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4219 +runtimeId=541 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4221 +runtimeId=543 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4271 +runtimeId=593 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4273 +runtimeId=595 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4275 +runtimeId=597 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4128 +runtimeId=450 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4130 +runtimeId=452 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4132 +runtimeId=454 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4182 +runtimeId=504 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4184 +runtimeId=506 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4186 +runtimeId=508 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4236 +runtimeId=558 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4238 +runtimeId=560 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4240 +runtimeId=562 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4146 +runtimeId=468 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4148 +runtimeId=470 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4150 +runtimeId=472 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4200 +runtimeId=522 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4202 +runtimeId=524 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4204 +runtimeId=526 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4254 +runtimeId=576 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4256 +runtimeId=578 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4258 +runtimeId=580 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=649 -runtimeId=4164 +runtimeId=486 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=649 -runtimeId=4166 +runtimeId=488 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=649 -runtimeId=4168 +runtimeId=490 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=649 -runtimeId=4218 +runtimeId=540 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=649 -runtimeId=4220 +runtimeId=542 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=649 -runtimeId=4222 +runtimeId=544 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=649 -runtimeId=4272 +runtimeId=594 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=649 -runtimeId=4274 +runtimeId=596 minecraft:deepslate_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=649 -runtimeId=4276 +runtimeId=598 minecraft:deepslate_bricks blockId=646 -runtimeId=4277 +runtimeId=5414 minecraft:deepslate_coal_ore blockId=661 -runtimeId=4278 +runtimeId=7138 minecraft:deepslate_copper_ore blockId=663 -runtimeId=4279 +runtimeId=105 minecraft:deepslate_diamond_ore blockId=660 -runtimeId=4280 +runtimeId=7980 minecraft:deepslate_emerald_ore blockId=662 -runtimeId=4281 +runtimeId=6315 minecraft:deepslate_gold_ore blockId=657 -runtimeId=4282 +runtimeId=6030 minecraft:deepslate_iron_ore blockId=656 -runtimeId=4283 +runtimeId=7215 minecraft:deepslate_lapis_ore blockId=655 -runtimeId=4284 +runtimeId=7204 minecraft:deepslate_redstone_ore blockId=658 -runtimeId=4285 +runtimeId=6507 minecraft:deepslate_tile_double_slab;top_slot_bit=0 blockId=653 -runtimeId=4286 +runtimeId=369 minecraft:deepslate_tile_double_slab;top_slot_bit=1 blockId=653 -runtimeId=4287 +runtimeId=370 minecraft:deepslate_tile_slab;top_slot_bit=0 blockId=643 -runtimeId=4288 +runtimeId=4239 minecraft:deepslate_tile_slab;top_slot_bit=1 blockId=643 -runtimeId=4289 +runtimeId=4240 minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=0 blockId=644 -runtimeId=4290 +runtimeId=4609 minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=1 blockId=644 -runtimeId=4291 +runtimeId=4610 minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=2 blockId=644 -runtimeId=4292 +runtimeId=4611 minecraft:deepslate_tile_stairs;upside_down_bit=0;weirdo_direction=3 blockId=644 -runtimeId=4293 +runtimeId=4612 minecraft:deepslate_tile_stairs;upside_down_bit=1;weirdo_direction=0 blockId=644 -runtimeId=4294 +runtimeId=4613 minecraft:deepslate_tile_stairs;upside_down_bit=1;weirdo_direction=1 blockId=644 -runtimeId=4295 +runtimeId=4614 minecraft:deepslate_tile_stairs;upside_down_bit=1;weirdo_direction=2 blockId=644 -runtimeId=4296 +runtimeId=4615 minecraft:deepslate_tile_stairs;upside_down_bit=1;weirdo_direction=3 blockId=644 -runtimeId=4297 +runtimeId=4616 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4298 +runtimeId=5027 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4300 +runtimeId=5029 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4302 +runtimeId=5031 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4352 +runtimeId=5081 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4354 +runtimeId=5083 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4356 +runtimeId=5085 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4406 +runtimeId=5135 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4408 +runtimeId=5137 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4410 +runtimeId=5139 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4316 +runtimeId=5045 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4318 +runtimeId=5047 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4320 +runtimeId=5049 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4370 +runtimeId=5099 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4372 +runtimeId=5101 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4374 +runtimeId=5103 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4424 +runtimeId=5153 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4426 +runtimeId=5155 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4428 +runtimeId=5157 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4334 +runtimeId=5063 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4336 +runtimeId=5065 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4338 +runtimeId=5067 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4388 +runtimeId=5117 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4390 +runtimeId=5119 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4392 +runtimeId=5121 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4442 +runtimeId=5171 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4444 +runtimeId=5173 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4446 +runtimeId=5175 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4299 +runtimeId=5028 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4301 +runtimeId=5030 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4303 +runtimeId=5032 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4353 +runtimeId=5082 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4355 +runtimeId=5084 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4357 +runtimeId=5086 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4407 +runtimeId=5136 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4409 +runtimeId=5138 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4411 +runtimeId=5140 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4317 +runtimeId=5046 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4319 +runtimeId=5048 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4321 +runtimeId=5050 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4371 +runtimeId=5100 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4373 +runtimeId=5102 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4375 +runtimeId=5104 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4425 +runtimeId=5154 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4427 +runtimeId=5156 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4429 +runtimeId=5158 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4335 +runtimeId=5064 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4337 +runtimeId=5066 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4339 +runtimeId=5068 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4389 +runtimeId=5118 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4391 +runtimeId=5120 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4393 +runtimeId=5122 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4443 +runtimeId=5172 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4445 +runtimeId=5174 minecraft:deepslate_tile_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4447 +runtimeId=5176 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4304 +runtimeId=5033 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4306 +runtimeId=5035 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4308 +runtimeId=5037 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4358 +runtimeId=5087 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4360 +runtimeId=5089 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4362 +runtimeId=5091 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4412 +runtimeId=5141 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4414 +runtimeId=5143 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4416 +runtimeId=5145 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4322 +runtimeId=5051 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4324 +runtimeId=5053 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4326 +runtimeId=5055 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4376 +runtimeId=5105 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4378 +runtimeId=5107 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4380 +runtimeId=5109 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4430 +runtimeId=5159 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4432 +runtimeId=5161 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4434 +runtimeId=5163 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4340 +runtimeId=5069 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4342 +runtimeId=5071 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4344 +runtimeId=5073 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4394 +runtimeId=5123 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4396 +runtimeId=5125 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4398 +runtimeId=5127 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4448 +runtimeId=5177 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4450 +runtimeId=5179 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4452 +runtimeId=5181 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4305 +runtimeId=5034 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4307 +runtimeId=5036 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4309 +runtimeId=5038 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4359 +runtimeId=5088 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4361 +runtimeId=5090 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4363 +runtimeId=5092 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4413 +runtimeId=5142 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4415 +runtimeId=5144 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4417 +runtimeId=5146 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4323 +runtimeId=5052 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4325 +runtimeId=5054 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4327 +runtimeId=5056 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4377 +runtimeId=5106 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4379 +runtimeId=5108 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4381 +runtimeId=5110 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4431 +runtimeId=5160 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4433 +runtimeId=5162 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4435 +runtimeId=5164 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4341 +runtimeId=5070 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4343 +runtimeId=5072 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4345 +runtimeId=5074 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4395 +runtimeId=5124 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4397 +runtimeId=5126 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4399 +runtimeId=5128 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4449 +runtimeId=5178 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4451 +runtimeId=5180 minecraft:deepslate_tile_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4453 +runtimeId=5182 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4310 +runtimeId=5039 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4312 +runtimeId=5041 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4314 +runtimeId=5043 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4364 +runtimeId=5093 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4366 +runtimeId=5095 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4368 +runtimeId=5097 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4418 +runtimeId=5147 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4420 +runtimeId=5149 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4422 +runtimeId=5151 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4328 +runtimeId=5057 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4330 +runtimeId=5059 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4332 +runtimeId=5061 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4382 +runtimeId=5111 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4384 +runtimeId=5113 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4386 +runtimeId=5115 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4436 +runtimeId=5165 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4438 +runtimeId=5167 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4440 +runtimeId=5169 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4346 +runtimeId=5075 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4348 +runtimeId=5077 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4350 +runtimeId=5079 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4400 +runtimeId=5129 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4402 +runtimeId=5131 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4404 +runtimeId=5133 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4454 +runtimeId=5183 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4456 +runtimeId=5185 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4458 +runtimeId=5187 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4311 +runtimeId=5040 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4313 +runtimeId=5042 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4315 +runtimeId=5044 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4365 +runtimeId=5094 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4367 +runtimeId=5096 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4369 +runtimeId=5098 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4419 +runtimeId=5148 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4421 +runtimeId=5150 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4423 +runtimeId=5152 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4329 +runtimeId=5058 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4331 +runtimeId=5060 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4333 +runtimeId=5062 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4383 +runtimeId=5112 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4385 +runtimeId=5114 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4387 +runtimeId=5116 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4437 +runtimeId=5166 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4439 +runtimeId=5168 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4441 +runtimeId=5170 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=645 -runtimeId=4347 +runtimeId=5076 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=645 -runtimeId=4349 +runtimeId=5078 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=645 -runtimeId=4351 +runtimeId=5080 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=645 -runtimeId=4401 +runtimeId=5130 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=645 -runtimeId=4403 +runtimeId=5132 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=645 -runtimeId=4405 +runtimeId=5134 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=645 -runtimeId=4455 +runtimeId=5184 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=645 -runtimeId=4457 +runtimeId=5186 minecraft:deepslate_tile_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=645 -runtimeId=4459 +runtimeId=5188 minecraft:deepslate_tiles blockId=642 -runtimeId=4460 +runtimeId=4513 minecraft:deny blockId=211 -runtimeId=4461 +runtimeId=5703 minecraft:detector_rail;rail_direction=0;rail_data_bit=0 blockId=28 -runtimeId=4462 +runtimeId=4121 minecraft:detector_rail;rail_direction=0;rail_data_bit=1 blockId=28 -runtimeId=4468 +runtimeId=4127 minecraft:detector_rail;rail_direction=1;rail_data_bit=0 blockId=28 -runtimeId=4463 +runtimeId=4122 minecraft:detector_rail;rail_direction=1;rail_data_bit=1 blockId=28 -runtimeId=4469 +runtimeId=4128 minecraft:detector_rail;rail_direction=2;rail_data_bit=0 blockId=28 -runtimeId=4464 +runtimeId=4123 minecraft:detector_rail;rail_direction=2;rail_data_bit=1 blockId=28 -runtimeId=4470 +runtimeId=4129 minecraft:detector_rail;rail_direction=3;rail_data_bit=0 blockId=28 -runtimeId=4465 +runtimeId=4124 minecraft:detector_rail;rail_direction=3;rail_data_bit=1 blockId=28 -runtimeId=4471 +runtimeId=4130 minecraft:detector_rail;rail_direction=4;rail_data_bit=0 blockId=28 -runtimeId=4466 +runtimeId=4125 minecraft:detector_rail;rail_direction=4;rail_data_bit=1 blockId=28 -runtimeId=4472 +runtimeId=4131 minecraft:detector_rail;rail_direction=5;rail_data_bit=0 blockId=28 -runtimeId=4467 +runtimeId=4126 minecraft:detector_rail;rail_direction=5;rail_data_bit=1 blockId=28 -runtimeId=4473 +runtimeId=4132 minecraft:diamond_block blockId=57 -runtimeId=4474 +runtimeId=286 minecraft:diamond_ore blockId=56 -runtimeId=4475 +runtimeId=4309 minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=425 -runtimeId=4476 +runtimeId=4339 minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=425 -runtimeId=4477 +runtimeId=4340 minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=425 -runtimeId=4478 +runtimeId=4341 minecraft:diorite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=425 -runtimeId=4479 +runtimeId=4342 minecraft:diorite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=425 -runtimeId=4480 +runtimeId=4343 minecraft:diorite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=425 -runtimeId=4481 +runtimeId=4344 minecraft:diorite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=425 -runtimeId=4482 +runtimeId=4345 minecraft:diorite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=425 -runtimeId=4483 +runtimeId=4346 minecraft:dirt;dirt_type=coarse blockId=3 -runtimeId=4485 +runtimeId=5702 minecraft:dirt;dirt_type=normal blockId=3 -runtimeId=4484 +runtimeId=5701 minecraft:dirt_with_roots blockId=573 -runtimeId=4486 +runtimeId=5347 minecraft:dispenser;facing_direction=0;triggered_bit=0 blockId=23 -runtimeId=4487 +runtimeId=7952 minecraft:dispenser;facing_direction=0;triggered_bit=1 blockId=23 -runtimeId=4493 +runtimeId=7958 minecraft:dispenser;facing_direction=1;triggered_bit=0 blockId=23 -runtimeId=4488 +runtimeId=7953 minecraft:dispenser;facing_direction=1;triggered_bit=1 blockId=23 -runtimeId=4494 +runtimeId=7959 minecraft:dispenser;facing_direction=2;triggered_bit=0 blockId=23 -runtimeId=4489 +runtimeId=7954 minecraft:dispenser;facing_direction=2;triggered_bit=1 blockId=23 -runtimeId=4495 +runtimeId=7960 minecraft:dispenser;facing_direction=3;triggered_bit=0 blockId=23 -runtimeId=4490 +runtimeId=7955 minecraft:dispenser;facing_direction=3;triggered_bit=1 blockId=23 -runtimeId=4496 +runtimeId=7961 minecraft:dispenser;facing_direction=4;triggered_bit=0 blockId=23 -runtimeId=4491 +runtimeId=7956 minecraft:dispenser;facing_direction=4;triggered_bit=1 blockId=23 -runtimeId=4497 +runtimeId=7962 minecraft:dispenser;facing_direction=5;triggered_bit=0 blockId=23 -runtimeId=4492 +runtimeId=7957 minecraft:dispenser;facing_direction=5;triggered_bit=1 blockId=23 -runtimeId=4498 +runtimeId=7963 minecraft:double_cut_copper_slab;top_slot_bit=0 blockId=623 -runtimeId=4499 +runtimeId=3656 minecraft:double_cut_copper_slab;top_slot_bit=1 blockId=623 -runtimeId=4500 +runtimeId=3657 minecraft:double_plant;upper_block_bit=0;double_plant_type=fern blockId=175 -runtimeId=4504 +runtimeId=5405 minecraft:double_plant;upper_block_bit=0;double_plant_type=grass blockId=175 -runtimeId=4503 +runtimeId=5404 minecraft:double_plant;upper_block_bit=0;double_plant_type=paeonia blockId=175 -runtimeId=4506 +runtimeId=5407 minecraft:double_plant;upper_block_bit=0;double_plant_type=rose blockId=175 -runtimeId=4505 +runtimeId=5406 minecraft:double_plant;upper_block_bit=0;double_plant_type=sunflower blockId=175 -runtimeId=4501 +runtimeId=5402 minecraft:double_plant;upper_block_bit=0;double_plant_type=syringa blockId=175 -runtimeId=4502 +runtimeId=5403 minecraft:double_plant;upper_block_bit=1;double_plant_type=fern blockId=175 -runtimeId=4510 +runtimeId=5411 minecraft:double_plant;upper_block_bit=1;double_plant_type=grass blockId=175 -runtimeId=4509 +runtimeId=5410 minecraft:double_plant;upper_block_bit=1;double_plant_type=paeonia blockId=175 -runtimeId=4512 +runtimeId=5413 minecraft:double_plant;upper_block_bit=1;double_plant_type=rose blockId=175 -runtimeId=4511 +runtimeId=5412 minecraft:double_plant;upper_block_bit=1;double_plant_type=sunflower blockId=175 -runtimeId=4507 +runtimeId=5408 minecraft:double_plant;upper_block_bit=1;double_plant_type=syringa blockId=175 -runtimeId=4508 +runtimeId=5409 minecraft:double_stone_slab;stone_slab_type=brick;top_slot_bit=0 blockId=43 -runtimeId=4517 +runtimeId=5744 minecraft:double_stone_slab;stone_slab_type=brick;top_slot_bit=1 blockId=43 -runtimeId=4525 +runtimeId=5752 minecraft:double_stone_slab;stone_slab_type=cobblestone;top_slot_bit=0 blockId=43 -runtimeId=4516 +runtimeId=5743 minecraft:double_stone_slab;stone_slab_type=cobblestone;top_slot_bit=1 blockId=43 -runtimeId=4524 +runtimeId=5751 minecraft:double_stone_slab;stone_slab_type=nether_brick;top_slot_bit=0 blockId=43 -runtimeId=4520 +runtimeId=5747 minecraft:double_stone_slab;stone_slab_type=nether_brick;top_slot_bit=1 blockId=43 -runtimeId=4528 +runtimeId=5755 minecraft:double_stone_slab;stone_slab_type=quartz;top_slot_bit=0 blockId=43 -runtimeId=4519 +runtimeId=5746 minecraft:double_stone_slab;stone_slab_type=quartz;top_slot_bit=1 blockId=43 -runtimeId=4527 +runtimeId=5754 minecraft:double_stone_slab;stone_slab_type=sandstone;top_slot_bit=0 blockId=43 -runtimeId=4514 +runtimeId=5741 minecraft:double_stone_slab;stone_slab_type=sandstone;top_slot_bit=1 blockId=43 -runtimeId=4522 +runtimeId=5749 minecraft:double_stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0 blockId=43 -runtimeId=4513 +runtimeId=5740 minecraft:double_stone_slab;stone_slab_type=smooth_stone;top_slot_bit=1 blockId=43 -runtimeId=4521 +runtimeId=5748 minecraft:double_stone_slab;stone_slab_type=stone_brick;top_slot_bit=0 blockId=43 -runtimeId=4518 +runtimeId=5745 minecraft:double_stone_slab;stone_slab_type=stone_brick;top_slot_bit=1 blockId=43 -runtimeId=4526 +runtimeId=5753 minecraft:double_stone_slab;stone_slab_type=wood;top_slot_bit=0 blockId=43 -runtimeId=4515 +runtimeId=5742 minecraft:double_stone_slab;stone_slab_type=wood;top_slot_bit=1 blockId=43 -runtimeId=4523 +runtimeId=5750 minecraft:double_stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0 blockId=181 -runtimeId=4534 +runtimeId=6160 minecraft:double_stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=1 blockId=181 -runtimeId=4542 +runtimeId=6168 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0 blockId=181 -runtimeId=4533 +runtimeId=6159 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=1 blockId=181 -runtimeId=4541 +runtimeId=6167 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0 blockId=181 -runtimeId=4532 +runtimeId=6158 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=1 blockId=181 -runtimeId=4540 +runtimeId=6166 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0 blockId=181 -runtimeId=4531 +runtimeId=6157 minecraft:double_stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=1 blockId=181 -runtimeId=4539 +runtimeId=6165 minecraft:double_stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0 blockId=181 -runtimeId=4530 +runtimeId=6156 minecraft:double_stone_slab2;stone_slab_type_2=purpur;top_slot_bit=1 blockId=181 -runtimeId=4538 +runtimeId=6164 minecraft:double_stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0 blockId=181 -runtimeId=4536 +runtimeId=6162 minecraft:double_stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=1 blockId=181 -runtimeId=4544 +runtimeId=6170 minecraft:double_stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0 blockId=181 -runtimeId=4529 +runtimeId=6155 minecraft:double_stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=1 blockId=181 -runtimeId=4537 +runtimeId=6163 minecraft:double_stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0 blockId=181 -runtimeId=4535 +runtimeId=6161 minecraft:double_stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=1 blockId=181 -runtimeId=4543 +runtimeId=6169 minecraft:double_stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0 blockId=422 -runtimeId=4548 +runtimeId=6174 minecraft:double_stone_slab3;stone_slab_type_3=andesite;top_slot_bit=1 blockId=422 -runtimeId=4556 +runtimeId=6182 minecraft:double_stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0 blockId=422 -runtimeId=4549 +runtimeId=6175 minecraft:double_stone_slab3;stone_slab_type_3=diorite;top_slot_bit=1 blockId=422 -runtimeId=4557 +runtimeId=6183 minecraft:double_stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0 blockId=422 -runtimeId=4545 +runtimeId=6171 minecraft:double_stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=1 blockId=422 -runtimeId=4553 +runtimeId=6179 minecraft:double_stone_slab3;stone_slab_type_3=granite;top_slot_bit=0 blockId=422 -runtimeId=4551 +runtimeId=6177 minecraft:double_stone_slab3;stone_slab_type_3=granite;top_slot_bit=1 blockId=422 -runtimeId=4559 +runtimeId=6185 minecraft:double_stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0 blockId=422 -runtimeId=4547 +runtimeId=6173 minecraft:double_stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=1 blockId=422 -runtimeId=4555 +runtimeId=6181 minecraft:double_stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0 blockId=422 -runtimeId=4550 +runtimeId=6176 minecraft:double_stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=1 blockId=422 -runtimeId=4558 +runtimeId=6184 minecraft:double_stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0 blockId=422 -runtimeId=4552 +runtimeId=6178 minecraft:double_stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=1 blockId=422 -runtimeId=4560 +runtimeId=6186 minecraft:double_stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0 blockId=422 -runtimeId=4546 +runtimeId=6172 minecraft:double_stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=1 blockId=422 -runtimeId=4554 +runtimeId=6180 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_red_sandstone blockId=423 -runtimeId=4565 +runtimeId=6191 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_sandstone blockId=423 -runtimeId=4564 +runtimeId=6190 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=mossy_stone_brick blockId=423 -runtimeId=4561 +runtimeId=6187 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=smooth_quartz blockId=423 -runtimeId=4562 +runtimeId=6188 minecraft:double_stone_slab4;top_slot_bit=0;stone_slab_type_4=stone blockId=423 -runtimeId=4563 +runtimeId=6189 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_red_sandstone blockId=423 -runtimeId=4570 +runtimeId=6196 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_sandstone blockId=423 -runtimeId=4569 +runtimeId=6195 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=mossy_stone_brick blockId=423 -runtimeId=4566 +runtimeId=6192 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=smooth_quartz blockId=423 -runtimeId=4567 +runtimeId=6193 minecraft:double_stone_slab4;top_slot_bit=1;stone_slab_type_4=stone blockId=423 -runtimeId=4568 +runtimeId=6194 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=acacia blockId=157 -runtimeId=4575 +runtimeId=5791 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=birch blockId=157 -runtimeId=4573 +runtimeId=5789 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=dark_oak blockId=157 -runtimeId=4576 +runtimeId=5792 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=jungle blockId=157 -runtimeId=4574 +runtimeId=5790 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=oak blockId=157 -runtimeId=4571 +runtimeId=5787 minecraft:double_wooden_slab;top_slot_bit=0;wood_type=spruce blockId=157 -runtimeId=4572 +runtimeId=5788 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=acacia blockId=157 -runtimeId=4581 +runtimeId=5797 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=birch blockId=157 -runtimeId=4579 +runtimeId=5795 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=dark_oak blockId=157 -runtimeId=4582 +runtimeId=5798 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=jungle blockId=157 -runtimeId=4580 +runtimeId=5796 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=oak blockId=157 -runtimeId=4577 +runtimeId=5793 minecraft:double_wooden_slab;top_slot_bit=1;wood_type=spruce blockId=157 -runtimeId=4578 +runtimeId=5794 minecraft:dragon_egg blockId=122 -runtimeId=4583 +runtimeId=7213 minecraft:dried_kelp_block blockId=394 -runtimeId=4584 +runtimeId=7921 minecraft:dripstone_block blockId=572 -runtimeId=4585 +runtimeId=901 minecraft:dropper;facing_direction=0;triggered_bit=0 blockId=125 -runtimeId=4586 +runtimeId=7324 minecraft:dropper;facing_direction=0;triggered_bit=1 blockId=125 -runtimeId=4592 +runtimeId=7330 minecraft:dropper;facing_direction=1;triggered_bit=0 blockId=125 -runtimeId=4587 +runtimeId=7325 minecraft:dropper;facing_direction=1;triggered_bit=1 blockId=125 -runtimeId=4593 +runtimeId=7331 minecraft:dropper;facing_direction=2;triggered_bit=0 blockId=125 -runtimeId=4588 +runtimeId=7326 minecraft:dropper;facing_direction=2;triggered_bit=1 blockId=125 -runtimeId=4594 +runtimeId=7332 minecraft:dropper;facing_direction=3;triggered_bit=0 blockId=125 -runtimeId=4589 +runtimeId=7327 minecraft:dropper;facing_direction=3;triggered_bit=1 blockId=125 -runtimeId=4595 +runtimeId=7333 minecraft:dropper;facing_direction=4;triggered_bit=0 blockId=125 -runtimeId=4590 +runtimeId=7328 minecraft:dropper;facing_direction=4;triggered_bit=1 blockId=125 -runtimeId=4596 +runtimeId=7334 minecraft:dropper;facing_direction=5;triggered_bit=0 blockId=125 -runtimeId=4591 +runtimeId=7329 minecraft:dropper;facing_direction=5;triggered_bit=1 blockId=125 -runtimeId=4597 +runtimeId=7335 minecraft:element_0 blockId=36 -runtimeId=4598 +runtimeId=7217 minecraft:element_1 blockId=267 -runtimeId=4599 +runtimeId=7216 minecraft:element_2 blockId=268 -runtimeId=4629 +runtimeId=7219 minecraft:element_3 blockId=269 -runtimeId=4640 +runtimeId=7218 minecraft:element_4 blockId=270 -runtimeId=4651 +runtimeId=7221 minecraft:element_5 blockId=271 -runtimeId=4662 +runtimeId=7220 minecraft:element_6 blockId=272 -runtimeId=4673 +runtimeId=7223 minecraft:element_7 blockId=273 -runtimeId=4684 +runtimeId=7222 minecraft:element_8 blockId=274 -runtimeId=4695 +runtimeId=7225 minecraft:element_9 blockId=275 -runtimeId=4706 +runtimeId=7224 minecraft:element_10 blockId=276 -runtimeId=4600 +runtimeId=7545 minecraft:element_11 blockId=277 -runtimeId=4611 +runtimeId=7546 minecraft:element_12 blockId=278 -runtimeId=4621 +runtimeId=7547 minecraft:element_13 blockId=279 -runtimeId=4622 +runtimeId=7548 minecraft:element_14 blockId=280 -runtimeId=4623 +runtimeId=7549 minecraft:element_15 blockId=281 -runtimeId=4624 +runtimeId=7550 minecraft:element_16 blockId=282 -runtimeId=4625 +runtimeId=7551 minecraft:element_17 blockId=283 -runtimeId=4626 +runtimeId=7552 minecraft:element_18 blockId=284 -runtimeId=4627 +runtimeId=7553 minecraft:element_19 blockId=285 -runtimeId=4628 +runtimeId=7554 minecraft:element_20 blockId=286 -runtimeId=4630 +runtimeId=7568 minecraft:element_21 blockId=287 -runtimeId=4631 +runtimeId=7567 minecraft:element_22 blockId=288 -runtimeId=4632 +runtimeId=7570 minecraft:element_23 blockId=289 -runtimeId=4633 +runtimeId=7569 minecraft:element_24 blockId=290 -runtimeId=4634 +runtimeId=7572 minecraft:element_25 blockId=291 -runtimeId=4635 +runtimeId=7571 minecraft:element_26 blockId=292 -runtimeId=4636 +runtimeId=7574 minecraft:element_27 blockId=293 -runtimeId=4637 +runtimeId=7573 minecraft:element_28 blockId=294 -runtimeId=4638 +runtimeId=7566 minecraft:element_29 blockId=295 -runtimeId=4639 +runtimeId=7565 minecraft:element_30 blockId=296 -runtimeId=4641 +runtimeId=7561 minecraft:element_31 blockId=297 -runtimeId=4642 +runtimeId=7562 minecraft:element_32 blockId=298 -runtimeId=4643 +runtimeId=7559 minecraft:element_33 blockId=299 -runtimeId=4644 +runtimeId=7560 minecraft:element_34 blockId=300 -runtimeId=4645 +runtimeId=7557 minecraft:element_35 blockId=301 -runtimeId=4646 +runtimeId=7558 minecraft:element_36 blockId=302 -runtimeId=4647 +runtimeId=7555 minecraft:element_37 blockId=303 -runtimeId=4648 +runtimeId=7556 minecraft:element_38 blockId=304 -runtimeId=4649 +runtimeId=7563 minecraft:element_39 blockId=305 -runtimeId=4650 +runtimeId=7564 minecraft:element_40 blockId=306 -runtimeId=4652 +runtimeId=7594 minecraft:element_41 blockId=307 -runtimeId=4653 +runtimeId=7593 minecraft:element_42 blockId=308 -runtimeId=4654 +runtimeId=7592 minecraft:element_43 blockId=309 -runtimeId=4655 +runtimeId=7591 minecraft:element_44 blockId=310 -runtimeId=4656 +runtimeId=7590 minecraft:element_45 blockId=311 -runtimeId=4657 +runtimeId=7589 minecraft:element_46 blockId=312 -runtimeId=4658 +runtimeId=7588 minecraft:element_47 blockId=313 -runtimeId=4659 +runtimeId=7587 minecraft:element_48 blockId=314 -runtimeId=4660 +runtimeId=7586 minecraft:element_49 blockId=315 -runtimeId=4661 +runtimeId=7585 minecraft:element_50 blockId=316 -runtimeId=4663 +runtimeId=7581 minecraft:element_51 blockId=317 -runtimeId=4664 +runtimeId=7582 minecraft:element_52 blockId=318 -runtimeId=4665 +runtimeId=7583 minecraft:element_53 blockId=319 -runtimeId=4666 +runtimeId=7584 minecraft:element_54 blockId=320 -runtimeId=4667 +runtimeId=7577 minecraft:element_55 blockId=321 -runtimeId=4668 +runtimeId=7578 minecraft:element_56 blockId=322 -runtimeId=4669 +runtimeId=7579 minecraft:element_57 blockId=323 -runtimeId=4670 +runtimeId=7580 minecraft:element_58 blockId=324 -runtimeId=4671 +runtimeId=7575 minecraft:element_59 blockId=325 -runtimeId=4672 +runtimeId=7576 minecraft:element_60 blockId=326 -runtimeId=4674 +runtimeId=7610 minecraft:element_61 blockId=327 -runtimeId=4675 +runtimeId=7609 minecraft:element_62 blockId=328 -runtimeId=4676 +runtimeId=7612 minecraft:element_63 blockId=329 -runtimeId=4677 +runtimeId=7611 minecraft:element_64 blockId=330 -runtimeId=4678 +runtimeId=7606 minecraft:element_65 blockId=331 -runtimeId=4679 +runtimeId=7605 minecraft:element_66 blockId=332 -runtimeId=4680 +runtimeId=7608 minecraft:element_67 blockId=333 -runtimeId=4681 +runtimeId=7607 minecraft:element_68 blockId=334 -runtimeId=4682 +runtimeId=7614 minecraft:element_69 blockId=335 -runtimeId=4683 +runtimeId=7613 minecraft:element_70 blockId=336 -runtimeId=4685 +runtimeId=7597 minecraft:element_71 blockId=337 -runtimeId=4686 +runtimeId=7598 minecraft:element_72 blockId=338 -runtimeId=4687 +runtimeId=7595 minecraft:element_73 blockId=339 -runtimeId=4688 +runtimeId=7596 minecraft:element_74 blockId=340 -runtimeId=4689 +runtimeId=7601 minecraft:element_75 blockId=341 -runtimeId=4690 +runtimeId=7602 minecraft:element_76 blockId=342 -runtimeId=4691 +runtimeId=7599 minecraft:element_77 blockId=343 -runtimeId=4692 +runtimeId=7600 minecraft:element_78 blockId=344 -runtimeId=4693 +runtimeId=7603 minecraft:element_79 blockId=345 -runtimeId=4694 +runtimeId=7604 minecraft:element_80 blockId=346 -runtimeId=4696 +runtimeId=7630 minecraft:element_81 blockId=347 -runtimeId=4697 +runtimeId=7629 minecraft:element_82 blockId=348 -runtimeId=4698 +runtimeId=7628 minecraft:element_83 blockId=349 -runtimeId=4699 +runtimeId=7627 minecraft:element_84 blockId=350 -runtimeId=4700 +runtimeId=7634 minecraft:element_85 blockId=351 -runtimeId=4701 +runtimeId=7633 minecraft:element_86 blockId=352 -runtimeId=4702 +runtimeId=7632 minecraft:element_87 blockId=353 -runtimeId=4703 +runtimeId=7631 minecraft:element_88 blockId=354 -runtimeId=4704 +runtimeId=7626 minecraft:element_89 blockId=355 -runtimeId=4705 +runtimeId=7625 minecraft:element_90 blockId=356 -runtimeId=4707 +runtimeId=7617 minecraft:element_91 blockId=357 -runtimeId=4708 +runtimeId=7618 minecraft:element_92 blockId=358 -runtimeId=4709 +runtimeId=7619 minecraft:element_93 blockId=359 -runtimeId=4710 +runtimeId=7620 minecraft:element_94 blockId=360 -runtimeId=4711 +runtimeId=7621 minecraft:element_95 blockId=361 -runtimeId=4712 +runtimeId=7622 minecraft:element_96 blockId=362 -runtimeId=4713 +runtimeId=7623 minecraft:element_97 blockId=363 -runtimeId=4714 +runtimeId=7624 minecraft:element_98 blockId=364 -runtimeId=4715 +runtimeId=7615 minecraft:element_99 blockId=365 -runtimeId=4716 +runtimeId=7616 minecraft:element_100 blockId=366 -runtimeId=4601 +runtimeId=5504 minecraft:element_101 blockId=367 -runtimeId=4602 +runtimeId=5505 minecraft:element_102 blockId=368 -runtimeId=4603 +runtimeId=5506 minecraft:element_103 blockId=369 -runtimeId=4604 +runtimeId=5507 minecraft:element_104 blockId=370 -runtimeId=4605 +runtimeId=5508 minecraft:element_105 blockId=371 -runtimeId=4606 +runtimeId=5509 minecraft:element_106 blockId=372 -runtimeId=4607 +runtimeId=5510 minecraft:element_107 blockId=373 -runtimeId=4608 +runtimeId=5511 minecraft:element_108 blockId=374 -runtimeId=4609 +runtimeId=5512 minecraft:element_109 blockId=375 -runtimeId=4610 +runtimeId=5513 minecraft:element_110 blockId=376 -runtimeId=4612 +runtimeId=5517 minecraft:element_111 blockId=377 -runtimeId=4613 +runtimeId=5516 minecraft:element_112 blockId=378 -runtimeId=4614 +runtimeId=5515 minecraft:element_113 blockId=379 -runtimeId=4615 +runtimeId=5514 minecraft:element_114 blockId=380 -runtimeId=4616 +runtimeId=5521 minecraft:element_115 blockId=381 -runtimeId=4617 +runtimeId=5520 minecraft:element_116 blockId=382 -runtimeId=4618 +runtimeId=5519 minecraft:element_117 blockId=383 -runtimeId=4619 +runtimeId=5518 minecraft:element_118 blockId=384 -runtimeId=4620 +runtimeId=5522 minecraft:emerald_block blockId=133 -runtimeId=4717 +runtimeId=1164 minecraft:emerald_ore blockId=129 -runtimeId=4718 +runtimeId=7289 minecraft:enchanting_table blockId=116 -runtimeId=4719 +runtimeId=6597 minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=433 -runtimeId=4720 +runtimeId=6347 minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=433 -runtimeId=4721 +runtimeId=6348 minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=433 -runtimeId=4722 +runtimeId=6349 minecraft:end_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=433 -runtimeId=4723 +runtimeId=6350 minecraft:end_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=433 -runtimeId=4724 +runtimeId=6351 minecraft:end_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=433 -runtimeId=4725 +runtimeId=6352 minecraft:end_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=433 -runtimeId=4726 +runtimeId=6353 minecraft:end_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=433 -runtimeId=4727 +runtimeId=6354 minecraft:end_bricks blockId=206 -runtimeId=4728 +runtimeId=295 minecraft:end_gateway blockId=209 -runtimeId=4729 +runtimeId=144 minecraft:end_portal blockId=119 -runtimeId=4730 +runtimeId=7526 minecraft:end_portal_frame;end_portal_eye_bit=0;direction=0 blockId=120 -runtimeId=4731 +runtimeId=6001 minecraft:end_portal_frame;end_portal_eye_bit=0;direction=1 blockId=120 -runtimeId=4732 +runtimeId=6002 minecraft:end_portal_frame;end_portal_eye_bit=0;direction=2 blockId=120 -runtimeId=4733 +runtimeId=6003 minecraft:end_portal_frame;end_portal_eye_bit=0;direction=3 blockId=120 -runtimeId=4734 +runtimeId=6004 minecraft:end_portal_frame;end_portal_eye_bit=1;direction=0 blockId=120 -runtimeId=4735 +runtimeId=6005 minecraft:end_portal_frame;end_portal_eye_bit=1;direction=1 blockId=120 -runtimeId=4736 +runtimeId=6006 minecraft:end_portal_frame;end_portal_eye_bit=1;direction=2 blockId=120 -runtimeId=4737 +runtimeId=6007 minecraft:end_portal_frame;end_portal_eye_bit=1;direction=3 blockId=120 -runtimeId=4738 +runtimeId=6008 minecraft:end_rod;facing_direction=0 blockId=208 -runtimeId=4739 +runtimeId=5815 minecraft:end_rod;facing_direction=1 blockId=208 -runtimeId=4740 +runtimeId=5816 minecraft:end_rod;facing_direction=2 blockId=208 -runtimeId=4741 +runtimeId=5817 minecraft:end_rod;facing_direction=3 blockId=208 -runtimeId=4742 +runtimeId=5818 minecraft:end_rod;facing_direction=4 blockId=208 -runtimeId=4743 +runtimeId=5819 minecraft:end_rod;facing_direction=5 blockId=208 -runtimeId=4744 +runtimeId=5820 minecraft:end_stone blockId=121 -runtimeId=4745 +runtimeId=3841 minecraft:ender_chest;facing_direction=0 blockId=130 -runtimeId=4746 +runtimeId=4317 minecraft:ender_chest;facing_direction=1 blockId=130 -runtimeId=4747 +runtimeId=4318 minecraft:ender_chest;facing_direction=2 blockId=130 -runtimeId=4748 +runtimeId=4319 minecraft:ender_chest;facing_direction=3 blockId=130 -runtimeId=4749 +runtimeId=4320 minecraft:ender_chest;facing_direction=4 blockId=130 -runtimeId=4750 +runtimeId=4321 minecraft:ender_chest;facing_direction=5 blockId=130 -runtimeId=4751 +runtimeId=4322 minecraft:exposed_copper blockId=596 -runtimeId=4752 +runtimeId=601 minecraft:exposed_cut_copper blockId=603 -runtimeId=4753 +runtimeId=6090 minecraft:exposed_cut_copper_slab;top_slot_bit=0 blockId=617 -runtimeId=4754 +runtimeId=6491 minecraft:exposed_cut_copper_slab;top_slot_bit=1 blockId=617 -runtimeId=4755 +runtimeId=6492 minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=610 -runtimeId=4756 +runtimeId=4519 minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=610 -runtimeId=4757 +runtimeId=4520 minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=610 -runtimeId=4758 +runtimeId=4521 minecraft:exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=610 -runtimeId=4759 +runtimeId=4522 minecraft:exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=610 -runtimeId=4760 +runtimeId=4523 minecraft:exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=610 -runtimeId=4761 +runtimeId=4524 minecraft:exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=610 -runtimeId=4762 +runtimeId=4525 minecraft:exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=610 -runtimeId=4763 +runtimeId=4526 minecraft:exposed_double_cut_copper_slab;top_slot_bit=0 blockId=624 -runtimeId=4764 +runtimeId=639 minecraft:exposed_double_cut_copper_slab;top_slot_bit=1 blockId=624 -runtimeId=4765 +runtimeId=640 minecraft:farmland;moisturized_amount=0 blockId=60 -runtimeId=4766 +runtimeId=3901 minecraft:farmland;moisturized_amount=1 blockId=60 -runtimeId=4767 +runtimeId=3902 minecraft:farmland;moisturized_amount=2 blockId=60 -runtimeId=4768 +runtimeId=3903 minecraft:farmland;moisturized_amount=3 blockId=60 -runtimeId=4769 +runtimeId=3904 minecraft:farmland;moisturized_amount=4 blockId=60 -runtimeId=4770 +runtimeId=3905 minecraft:farmland;moisturized_amount=5 blockId=60 -runtimeId=4771 +runtimeId=3906 minecraft:farmland;moisturized_amount=6 blockId=60 -runtimeId=4772 +runtimeId=3907 minecraft:farmland;moisturized_amount=7 blockId=60 -runtimeId=4773 +runtimeId=3908 minecraft:fence;wood_type=acacia blockId=85 -runtimeId=4778 +runtimeId=7310 minecraft:fence;wood_type=birch blockId=85 -runtimeId=4776 +runtimeId=7308 minecraft:fence;wood_type=dark_oak blockId=85 -runtimeId=4779 +runtimeId=7311 minecraft:fence;wood_type=jungle blockId=85 -runtimeId=4777 +runtimeId=7309 minecraft:fence;wood_type=oak blockId=85 -runtimeId=4774 +runtimeId=7306 minecraft:fence;wood_type=spruce blockId=85 -runtimeId=4775 +runtimeId=7307 minecraft:fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=107 -runtimeId=4780 +runtimeId=76 minecraft:fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=107 -runtimeId=4781 +runtimeId=77 minecraft:fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=107 -runtimeId=4782 +runtimeId=78 minecraft:fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=107 -runtimeId=4783 +runtimeId=79 minecraft:fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=107 -runtimeId=4784 +runtimeId=80 minecraft:fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=107 -runtimeId=4785 +runtimeId=81 minecraft:fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=107 -runtimeId=4786 +runtimeId=82 minecraft:fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=107 -runtimeId=4787 +runtimeId=83 minecraft:fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=107 -runtimeId=4788 +runtimeId=84 minecraft:fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=107 -runtimeId=4789 +runtimeId=85 minecraft:fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=107 -runtimeId=4790 +runtimeId=86 minecraft:fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=107 -runtimeId=4791 +runtimeId=87 minecraft:fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=107 -runtimeId=4792 +runtimeId=88 minecraft:fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=107 -runtimeId=4793 +runtimeId=89 minecraft:fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=107 -runtimeId=4794 +runtimeId=90 minecraft:fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=107 -runtimeId=4795 +runtimeId=91 minecraft:fire;age=0 blockId=51 -runtimeId=4796 +runtimeId=5979 minecraft:fire;age=1 blockId=51 -runtimeId=4797 +runtimeId=5980 minecraft:fire;age=2 blockId=51 -runtimeId=4798 +runtimeId=5981 minecraft:fire;age=3 blockId=51 -runtimeId=4799 +runtimeId=5982 minecraft:fire;age=4 blockId=51 -runtimeId=4800 +runtimeId=5983 minecraft:fire;age=5 blockId=51 -runtimeId=4801 +runtimeId=5984 minecraft:fire;age=6 blockId=51 -runtimeId=4802 +runtimeId=5985 minecraft:fire;age=7 blockId=51 -runtimeId=4803 +runtimeId=5986 minecraft:fire;age=8 blockId=51 -runtimeId=4804 +runtimeId=5987 minecraft:fire;age=9 blockId=51 -runtimeId=4805 +runtimeId=5988 minecraft:fire;age=10 blockId=51 -runtimeId=4806 +runtimeId=5989 minecraft:fire;age=11 blockId=51 -runtimeId=4807 +runtimeId=5990 minecraft:fire;age=12 blockId=51 -runtimeId=4808 +runtimeId=5991 minecraft:fire;age=13 blockId=51 -runtimeId=4809 +runtimeId=5992 minecraft:fire;age=14 blockId=51 -runtimeId=4810 +runtimeId=5993 minecraft:fire;age=15 blockId=51 -runtimeId=4811 +runtimeId=5994 minecraft:fletching_table blockId=456 -runtimeId=4812 +runtimeId=5757 minecraft:flower_pot;update_bit=0 blockId=140 -runtimeId=4813 +runtimeId=306 minecraft:flower_pot;update_bit=1 blockId=140 -runtimeId=4814 +runtimeId=307 minecraft:flowering_azalea blockId=593 -runtimeId=4815 +runtimeId=5427 minecraft:flowing_lava;liquid_depth=0 blockId=10 -runtimeId=4816 +runtimeId=7157 minecraft:flowing_lava;liquid_depth=1 blockId=10 -runtimeId=4817 +runtimeId=7158 minecraft:flowing_lava;liquid_depth=2 blockId=10 -runtimeId=4818 +runtimeId=7159 minecraft:flowing_lava;liquid_depth=3 blockId=10 -runtimeId=4819 +runtimeId=7160 minecraft:flowing_lava;liquid_depth=4 blockId=10 -runtimeId=4820 +runtimeId=7161 minecraft:flowing_lava;liquid_depth=5 blockId=10 -runtimeId=4821 +runtimeId=7162 minecraft:flowing_lava;liquid_depth=6 blockId=10 -runtimeId=4822 +runtimeId=7163 minecraft:flowing_lava;liquid_depth=7 blockId=10 -runtimeId=4823 +runtimeId=7164 minecraft:flowing_lava;liquid_depth=8 blockId=10 -runtimeId=4824 +runtimeId=7165 minecraft:flowing_lava;liquid_depth=9 blockId=10 -runtimeId=4825 +runtimeId=7166 minecraft:flowing_lava;liquid_depth=10 blockId=10 -runtimeId=4826 +runtimeId=7167 minecraft:flowing_lava;liquid_depth=11 blockId=10 -runtimeId=4827 +runtimeId=7168 minecraft:flowing_lava;liquid_depth=12 blockId=10 -runtimeId=4828 +runtimeId=7169 minecraft:flowing_lava;liquid_depth=13 blockId=10 -runtimeId=4829 +runtimeId=7170 minecraft:flowing_lava;liquid_depth=14 blockId=10 -runtimeId=4830 +runtimeId=7171 minecraft:flowing_lava;liquid_depth=15 blockId=10 -runtimeId=4831 +runtimeId=7172 minecraft:flowing_water;liquid_depth=0 blockId=8 -runtimeId=4832 +runtimeId=4705 minecraft:flowing_water;liquid_depth=1 blockId=8 -runtimeId=4833 +runtimeId=4706 minecraft:flowing_water;liquid_depth=2 blockId=8 -runtimeId=4834 +runtimeId=4707 minecraft:flowing_water;liquid_depth=3 blockId=8 -runtimeId=4835 +runtimeId=4708 minecraft:flowing_water;liquid_depth=4 blockId=8 -runtimeId=4836 +runtimeId=4709 minecraft:flowing_water;liquid_depth=5 blockId=8 -runtimeId=4837 +runtimeId=4710 minecraft:flowing_water;liquid_depth=6 blockId=8 -runtimeId=4838 +runtimeId=4711 minecraft:flowing_water;liquid_depth=7 blockId=8 -runtimeId=4839 +runtimeId=4712 minecraft:flowing_water;liquid_depth=8 blockId=8 -runtimeId=4840 +runtimeId=4713 minecraft:flowing_water;liquid_depth=9 blockId=8 -runtimeId=4841 +runtimeId=4714 minecraft:flowing_water;liquid_depth=10 blockId=8 -runtimeId=4842 +runtimeId=4715 minecraft:flowing_water;liquid_depth=11 blockId=8 -runtimeId=4843 +runtimeId=4716 minecraft:flowing_water;liquid_depth=12 blockId=8 -runtimeId=4844 +runtimeId=4717 minecraft:flowing_water;liquid_depth=13 blockId=8 -runtimeId=4845 +runtimeId=4718 minecraft:flowing_water;liquid_depth=14 blockId=8 -runtimeId=4846 +runtimeId=4719 minecraft:flowing_water;liquid_depth=15 blockId=8 -runtimeId=4847 +runtimeId=4720 minecraft:frame;facing_direction=0;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=199 -runtimeId=4848 +runtimeId=4210 minecraft:frame;facing_direction=0;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=199 -runtimeId=4854 +runtimeId=4216 minecraft:frame;facing_direction=0;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=199 -runtimeId=4860 +runtimeId=4222 minecraft:frame;facing_direction=0;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 -runtimeId=4866 +runtimeId=4228 minecraft:frame;facing_direction=1;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=199 -runtimeId=4849 +runtimeId=4211 minecraft:frame;facing_direction=1;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=199 -runtimeId=4855 +runtimeId=4217 minecraft:frame;facing_direction=1;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=199 -runtimeId=4861 +runtimeId=4223 minecraft:frame;facing_direction=1;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 -runtimeId=4867 +runtimeId=4229 minecraft:frame;facing_direction=2;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=199 -runtimeId=4850 +runtimeId=4212 minecraft:frame;facing_direction=2;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=199 -runtimeId=4856 +runtimeId=4218 minecraft:frame;facing_direction=2;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=199 -runtimeId=4862 +runtimeId=4224 minecraft:frame;facing_direction=2;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 -runtimeId=4868 +runtimeId=4230 minecraft:frame;facing_direction=3;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=199 -runtimeId=4851 +runtimeId=4213 minecraft:frame;facing_direction=3;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=199 -runtimeId=4857 +runtimeId=4219 minecraft:frame;facing_direction=3;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=199 -runtimeId=4863 +runtimeId=4225 minecraft:frame;facing_direction=3;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 -runtimeId=4869 +runtimeId=4231 minecraft:frame;facing_direction=4;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=199 -runtimeId=4852 +runtimeId=4214 minecraft:frame;facing_direction=4;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=199 -runtimeId=4858 +runtimeId=4220 minecraft:frame;facing_direction=4;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=199 -runtimeId=4864 +runtimeId=4226 minecraft:frame;facing_direction=4;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 -runtimeId=4870 +runtimeId=4232 minecraft:frame;facing_direction=5;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=199 -runtimeId=4853 +runtimeId=4215 minecraft:frame;facing_direction=5;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=199 -runtimeId=4859 +runtimeId=4221 minecraft:frame;facing_direction=5;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=199 -runtimeId=4865 +runtimeId=4227 minecraft:frame;facing_direction=5;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=199 -runtimeId=4871 +runtimeId=4233 -minecraft:frog_egg -blockId=-1 -runtimeId=4872 +minecraft:frog_spawn +blockId=723 +runtimeId=4347 minecraft:frosted_ice;age=0 blockId=207 -runtimeId=4873 +runtimeId=4679 minecraft:frosted_ice;age=1 blockId=207 -runtimeId=4874 +runtimeId=4680 minecraft:frosted_ice;age=2 blockId=207 -runtimeId=4875 +runtimeId=4681 minecraft:frosted_ice;age=3 blockId=207 -runtimeId=4876 +runtimeId=4682 minecraft:furnace;facing_direction=0 blockId=61 -runtimeId=4877 +runtimeId=7744 minecraft:furnace;facing_direction=1 blockId=61 -runtimeId=4878 +runtimeId=7745 minecraft:furnace;facing_direction=2 blockId=61 -runtimeId=4879 +runtimeId=7746 minecraft:furnace;facing_direction=3 blockId=61 -runtimeId=4880 +runtimeId=7747 minecraft:furnace;facing_direction=4 blockId=61 -runtimeId=4881 +runtimeId=7748 minecraft:furnace;facing_direction=5 blockId=61 -runtimeId=4882 +runtimeId=7749 minecraft:gilded_blackstone blockId=536 -runtimeId=4883 +runtimeId=4518 minecraft:glass blockId=20 -runtimeId=4884 +runtimeId=6088 minecraft:glass_pane blockId=102 -runtimeId=4885 +runtimeId=5189 minecraft:glow_frame;facing_direction=0;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4886 +runtimeId=179 minecraft:glow_frame;facing_direction=0;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4892 +runtimeId=185 minecraft:glow_frame;facing_direction=0;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4898 +runtimeId=191 minecraft:glow_frame;facing_direction=0;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4904 +runtimeId=197 minecraft:glow_frame;facing_direction=1;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4887 +runtimeId=180 minecraft:glow_frame;facing_direction=1;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4893 +runtimeId=186 minecraft:glow_frame;facing_direction=1;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4899 +runtimeId=192 minecraft:glow_frame;facing_direction=1;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4905 +runtimeId=198 minecraft:glow_frame;facing_direction=2;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4888 +runtimeId=181 minecraft:glow_frame;facing_direction=2;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4894 +runtimeId=187 minecraft:glow_frame;facing_direction=2;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4900 +runtimeId=193 minecraft:glow_frame;facing_direction=2;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4906 +runtimeId=199 minecraft:glow_frame;facing_direction=3;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4889 +runtimeId=182 minecraft:glow_frame;facing_direction=3;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4895 +runtimeId=188 minecraft:glow_frame;facing_direction=3;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4901 +runtimeId=194 minecraft:glow_frame;facing_direction=3;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4907 +runtimeId=200 minecraft:glow_frame;facing_direction=4;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4890 +runtimeId=183 minecraft:glow_frame;facing_direction=4;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4896 +runtimeId=189 minecraft:glow_frame;facing_direction=4;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4902 +runtimeId=195 minecraft:glow_frame;facing_direction=4;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4908 +runtimeId=201 minecraft:glow_frame;facing_direction=5;item_frame_photo_bit=0;item_frame_map_bit=0 blockId=594 -runtimeId=4891 +runtimeId=184 minecraft:glow_frame;facing_direction=5;item_frame_photo_bit=0;item_frame_map_bit=1 blockId=594 -runtimeId=4897 +runtimeId=190 minecraft:glow_frame;facing_direction=5;item_frame_photo_bit=1;item_frame_map_bit=0 blockId=594 -runtimeId=4903 +runtimeId=196 minecraft:glow_frame;facing_direction=5;item_frame_photo_bit=1;item_frame_map_bit=1 blockId=594 -runtimeId=4909 +runtimeId=202 minecraft:glow_lichen;multi_face_direction_bits=0 blockId=666 -runtimeId=4910 +runtimeId=5571 minecraft:glow_lichen;multi_face_direction_bits=1 blockId=666 -runtimeId=4911 +runtimeId=5572 minecraft:glow_lichen;multi_face_direction_bits=2 blockId=666 -runtimeId=4912 +runtimeId=5573 minecraft:glow_lichen;multi_face_direction_bits=3 blockId=666 -runtimeId=4913 +runtimeId=5574 minecraft:glow_lichen;multi_face_direction_bits=4 blockId=666 -runtimeId=4914 +runtimeId=5575 minecraft:glow_lichen;multi_face_direction_bits=5 blockId=666 -runtimeId=4915 +runtimeId=5576 minecraft:glow_lichen;multi_face_direction_bits=6 blockId=666 -runtimeId=4916 +runtimeId=5577 minecraft:glow_lichen;multi_face_direction_bits=7 blockId=666 -runtimeId=4917 +runtimeId=5578 minecraft:glow_lichen;multi_face_direction_bits=8 blockId=666 -runtimeId=4918 +runtimeId=5579 minecraft:glow_lichen;multi_face_direction_bits=9 blockId=666 -runtimeId=4919 +runtimeId=5580 minecraft:glow_lichen;multi_face_direction_bits=10 blockId=666 -runtimeId=4920 +runtimeId=5581 minecraft:glow_lichen;multi_face_direction_bits=11 blockId=666 -runtimeId=4921 +runtimeId=5582 minecraft:glow_lichen;multi_face_direction_bits=12 blockId=666 -runtimeId=4922 +runtimeId=5583 minecraft:glow_lichen;multi_face_direction_bits=13 blockId=666 -runtimeId=4923 +runtimeId=5584 minecraft:glow_lichen;multi_face_direction_bits=14 blockId=666 -runtimeId=4924 +runtimeId=5585 minecraft:glow_lichen;multi_face_direction_bits=15 blockId=666 -runtimeId=4925 +runtimeId=5586 minecraft:glow_lichen;multi_face_direction_bits=16 blockId=666 -runtimeId=4926 +runtimeId=5587 minecraft:glow_lichen;multi_face_direction_bits=17 blockId=666 -runtimeId=4927 +runtimeId=5588 minecraft:glow_lichen;multi_face_direction_bits=18 blockId=666 -runtimeId=4928 +runtimeId=5589 minecraft:glow_lichen;multi_face_direction_bits=19 blockId=666 -runtimeId=4929 +runtimeId=5590 minecraft:glow_lichen;multi_face_direction_bits=20 blockId=666 -runtimeId=4930 +runtimeId=5591 minecraft:glow_lichen;multi_face_direction_bits=21 blockId=666 -runtimeId=4931 +runtimeId=5592 minecraft:glow_lichen;multi_face_direction_bits=22 blockId=666 -runtimeId=4932 +runtimeId=5593 minecraft:glow_lichen;multi_face_direction_bits=23 blockId=666 -runtimeId=4933 +runtimeId=5594 minecraft:glow_lichen;multi_face_direction_bits=24 blockId=666 -runtimeId=4934 +runtimeId=5595 minecraft:glow_lichen;multi_face_direction_bits=25 blockId=666 -runtimeId=4935 +runtimeId=5596 minecraft:glow_lichen;multi_face_direction_bits=26 blockId=666 -runtimeId=4936 +runtimeId=5597 minecraft:glow_lichen;multi_face_direction_bits=27 blockId=666 -runtimeId=4937 +runtimeId=5598 minecraft:glow_lichen;multi_face_direction_bits=28 blockId=666 -runtimeId=4938 +runtimeId=5599 minecraft:glow_lichen;multi_face_direction_bits=29 blockId=666 -runtimeId=4939 +runtimeId=5600 minecraft:glow_lichen;multi_face_direction_bits=30 blockId=666 -runtimeId=4940 +runtimeId=5601 minecraft:glow_lichen;multi_face_direction_bits=31 blockId=666 -runtimeId=4941 +runtimeId=5602 minecraft:glow_lichen;multi_face_direction_bits=32 blockId=666 -runtimeId=4942 +runtimeId=5603 minecraft:glow_lichen;multi_face_direction_bits=33 blockId=666 -runtimeId=4943 +runtimeId=5604 minecraft:glow_lichen;multi_face_direction_bits=34 blockId=666 -runtimeId=4944 +runtimeId=5605 minecraft:glow_lichen;multi_face_direction_bits=35 blockId=666 -runtimeId=4945 +runtimeId=5606 minecraft:glow_lichen;multi_face_direction_bits=36 blockId=666 -runtimeId=4946 +runtimeId=5607 minecraft:glow_lichen;multi_face_direction_bits=37 blockId=666 -runtimeId=4947 +runtimeId=5608 minecraft:glow_lichen;multi_face_direction_bits=38 blockId=666 -runtimeId=4948 +runtimeId=5609 minecraft:glow_lichen;multi_face_direction_bits=39 blockId=666 -runtimeId=4949 +runtimeId=5610 minecraft:glow_lichen;multi_face_direction_bits=40 blockId=666 -runtimeId=4950 +runtimeId=5611 minecraft:glow_lichen;multi_face_direction_bits=41 blockId=666 -runtimeId=4951 +runtimeId=5612 minecraft:glow_lichen;multi_face_direction_bits=42 blockId=666 -runtimeId=4952 +runtimeId=5613 minecraft:glow_lichen;multi_face_direction_bits=43 blockId=666 -runtimeId=4953 +runtimeId=5614 minecraft:glow_lichen;multi_face_direction_bits=44 blockId=666 -runtimeId=4954 +runtimeId=5615 minecraft:glow_lichen;multi_face_direction_bits=45 blockId=666 -runtimeId=4955 +runtimeId=5616 minecraft:glow_lichen;multi_face_direction_bits=46 blockId=666 -runtimeId=4956 +runtimeId=5617 minecraft:glow_lichen;multi_face_direction_bits=47 blockId=666 -runtimeId=4957 +runtimeId=5618 minecraft:glow_lichen;multi_face_direction_bits=48 blockId=666 -runtimeId=4958 +runtimeId=5619 minecraft:glow_lichen;multi_face_direction_bits=49 blockId=666 -runtimeId=4959 +runtimeId=5620 minecraft:glow_lichen;multi_face_direction_bits=50 blockId=666 -runtimeId=4960 +runtimeId=5621 minecraft:glow_lichen;multi_face_direction_bits=51 blockId=666 -runtimeId=4961 +runtimeId=5622 minecraft:glow_lichen;multi_face_direction_bits=52 blockId=666 -runtimeId=4962 +runtimeId=5623 minecraft:glow_lichen;multi_face_direction_bits=53 blockId=666 -runtimeId=4963 +runtimeId=5624 minecraft:glow_lichen;multi_face_direction_bits=54 blockId=666 -runtimeId=4964 +runtimeId=5625 minecraft:glow_lichen;multi_face_direction_bits=55 blockId=666 -runtimeId=4965 +runtimeId=5626 minecraft:glow_lichen;multi_face_direction_bits=56 blockId=666 -runtimeId=4966 +runtimeId=5627 minecraft:glow_lichen;multi_face_direction_bits=57 blockId=666 -runtimeId=4967 +runtimeId=5628 minecraft:glow_lichen;multi_face_direction_bits=58 blockId=666 -runtimeId=4968 +runtimeId=5629 minecraft:glow_lichen;multi_face_direction_bits=59 blockId=666 -runtimeId=4969 +runtimeId=5630 minecraft:glow_lichen;multi_face_direction_bits=60 blockId=666 -runtimeId=4970 +runtimeId=5631 minecraft:glow_lichen;multi_face_direction_bits=61 blockId=666 -runtimeId=4971 +runtimeId=5632 minecraft:glow_lichen;multi_face_direction_bits=62 blockId=666 -runtimeId=4972 +runtimeId=5633 minecraft:glow_lichen;multi_face_direction_bits=63 blockId=666 -runtimeId=4973 +runtimeId=5634 minecraft:glowingobsidian blockId=246 -runtimeId=4974 +runtimeId=3550 minecraft:glowstone blockId=89 -runtimeId=4975 +runtimeId=3874 minecraft:gold_block blockId=41 -runtimeId=4976 +runtimeId=305 minecraft:gold_ore blockId=14 -runtimeId=4977 +runtimeId=920 minecraft:golden_rail;rail_direction=0;rail_data_bit=0 blockId=27 -runtimeId=4978 +runtimeId=5282 minecraft:golden_rail;rail_direction=0;rail_data_bit=1 blockId=27 -runtimeId=4984 +runtimeId=5288 minecraft:golden_rail;rail_direction=1;rail_data_bit=0 blockId=27 -runtimeId=4979 +runtimeId=5283 minecraft:golden_rail;rail_direction=1;rail_data_bit=1 blockId=27 -runtimeId=4985 +runtimeId=5289 minecraft:golden_rail;rail_direction=2;rail_data_bit=0 blockId=27 -runtimeId=4980 +runtimeId=5284 minecraft:golden_rail;rail_direction=2;rail_data_bit=1 blockId=27 -runtimeId=4986 +runtimeId=5290 minecraft:golden_rail;rail_direction=3;rail_data_bit=0 blockId=27 -runtimeId=4981 +runtimeId=5285 minecraft:golden_rail;rail_direction=3;rail_data_bit=1 blockId=27 -runtimeId=4987 +runtimeId=5291 minecraft:golden_rail;rail_direction=4;rail_data_bit=0 blockId=27 -runtimeId=4982 +runtimeId=5286 minecraft:golden_rail;rail_direction=4;rail_data_bit=1 blockId=27 -runtimeId=4988 +runtimeId=5292 minecraft:golden_rail;rail_direction=5;rail_data_bit=0 blockId=27 -runtimeId=4983 +runtimeId=5287 minecraft:golden_rail;rail_direction=5;rail_data_bit=1 blockId=27 -runtimeId=4989 +runtimeId=5293 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=424 -runtimeId=4990 +runtimeId=3542 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=424 -runtimeId=4991 +runtimeId=3543 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=424 -runtimeId=4992 +runtimeId=3544 minecraft:granite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=424 -runtimeId=4993 +runtimeId=3545 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=424 -runtimeId=4994 +runtimeId=3546 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=424 -runtimeId=4995 +runtimeId=3547 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=424 -runtimeId=4996 +runtimeId=3548 minecraft:granite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=424 -runtimeId=4997 +runtimeId=3549 minecraft:grass blockId=2 -runtimeId=4998 +runtimeId=6891 minecraft:grass_path blockId=198 -runtimeId=4999 +runtimeId=8023 minecraft:gravel blockId=13 -runtimeId=5000 +runtimeId=8226 minecraft:gray_candle;lit=0;candles=0 blockId=675 -runtimeId=5001 +runtimeId=947 minecraft:gray_candle;lit=0;candles=1 blockId=675 -runtimeId=5002 +runtimeId=948 minecraft:gray_candle;lit=0;candles=2 blockId=675 -runtimeId=5003 +runtimeId=949 minecraft:gray_candle;lit=0;candles=3 blockId=675 -runtimeId=5004 +runtimeId=950 minecraft:gray_candle;lit=1;candles=0 blockId=675 -runtimeId=5005 +runtimeId=951 minecraft:gray_candle;lit=1;candles=1 blockId=675 -runtimeId=5006 +runtimeId=952 minecraft:gray_candle;lit=1;candles=2 blockId=675 -runtimeId=5007 +runtimeId=953 minecraft:gray_candle;lit=1;candles=3 blockId=675 -runtimeId=5008 +runtimeId=954 minecraft:gray_candle_cake;lit=0 blockId=692 -runtimeId=5009 +runtimeId=136 minecraft:gray_candle_cake;lit=1 blockId=692 -runtimeId=5010 +runtimeId=137 minecraft:gray_glazed_terracotta;facing_direction=0 blockId=227 -runtimeId=5011 +runtimeId=8195 minecraft:gray_glazed_terracotta;facing_direction=1 blockId=227 -runtimeId=5012 +runtimeId=8196 minecraft:gray_glazed_terracotta;facing_direction=2 blockId=227 -runtimeId=5013 +runtimeId=8197 minecraft:gray_glazed_terracotta;facing_direction=3 blockId=227 -runtimeId=5014 +runtimeId=8198 minecraft:gray_glazed_terracotta;facing_direction=4 blockId=227 -runtimeId=5015 +runtimeId=8199 minecraft:gray_glazed_terracotta;facing_direction=5 blockId=227 -runtimeId=5016 +runtimeId=8200 minecraft:green_candle;lit=0;candles=0 blockId=681 -runtimeId=5017 +runtimeId=694 minecraft:green_candle;lit=0;candles=1 blockId=681 -runtimeId=5018 +runtimeId=695 minecraft:green_candle;lit=0;candles=2 blockId=681 -runtimeId=5019 +runtimeId=696 minecraft:green_candle;lit=0;candles=3 blockId=681 -runtimeId=5020 +runtimeId=697 minecraft:green_candle;lit=1;candles=0 blockId=681 -runtimeId=5021 +runtimeId=698 minecraft:green_candle;lit=1;candles=1 blockId=681 -runtimeId=5022 +runtimeId=699 minecraft:green_candle;lit=1;candles=2 blockId=681 -runtimeId=5023 +runtimeId=700 minecraft:green_candle;lit=1;candles=3 blockId=681 -runtimeId=5024 +runtimeId=701 minecraft:green_candle_cake;lit=0 blockId=698 -runtimeId=5025 +runtimeId=3600 minecraft:green_candle_cake;lit=1 blockId=698 -runtimeId=5026 +runtimeId=3601 minecraft:green_glazed_terracotta;facing_direction=0 blockId=233 -runtimeId=5027 +runtimeId=6501 minecraft:green_glazed_terracotta;facing_direction=1 blockId=233 -runtimeId=5028 +runtimeId=6502 minecraft:green_glazed_terracotta;facing_direction=2 blockId=233 -runtimeId=5029 +runtimeId=6503 minecraft:green_glazed_terracotta;facing_direction=3 blockId=233 -runtimeId=5030 +runtimeId=6504 minecraft:green_glazed_terracotta;facing_direction=4 blockId=233 -runtimeId=5031 +runtimeId=6505 minecraft:green_glazed_terracotta;facing_direction=5 blockId=233 -runtimeId=5032 +runtimeId=6506 minecraft:grindstone;attachment=hanging;direction=0 blockId=450 -runtimeId=5037 +runtimeId=7985 minecraft:grindstone;attachment=hanging;direction=1 blockId=450 -runtimeId=5038 +runtimeId=7986 minecraft:grindstone;attachment=hanging;direction=2 blockId=450 -runtimeId=5039 +runtimeId=7987 minecraft:grindstone;attachment=hanging;direction=3 blockId=450 -runtimeId=5040 +runtimeId=7988 minecraft:grindstone;attachment=multiple;direction=0 blockId=450 -runtimeId=5045 +runtimeId=7993 minecraft:grindstone;attachment=multiple;direction=1 blockId=450 -runtimeId=5046 +runtimeId=7994 minecraft:grindstone;attachment=multiple;direction=2 blockId=450 -runtimeId=5047 +runtimeId=7995 minecraft:grindstone;attachment=multiple;direction=3 blockId=450 -runtimeId=5048 +runtimeId=7996 minecraft:grindstone;attachment=side;direction=0 blockId=450 -runtimeId=5041 +runtimeId=7989 minecraft:grindstone;attachment=side;direction=1 blockId=450 -runtimeId=5042 +runtimeId=7990 minecraft:grindstone;attachment=side;direction=2 blockId=450 -runtimeId=5043 +runtimeId=7991 minecraft:grindstone;attachment=side;direction=3 blockId=450 -runtimeId=5044 +runtimeId=7992 minecraft:grindstone;attachment=standing;direction=0 blockId=450 -runtimeId=5033 +runtimeId=7981 minecraft:grindstone;attachment=standing;direction=1 blockId=450 -runtimeId=5034 +runtimeId=7982 minecraft:grindstone;attachment=standing;direction=2 blockId=450 -runtimeId=5035 +runtimeId=7983 minecraft:grindstone;attachment=standing;direction=3 blockId=450 -runtimeId=5036 +runtimeId=7984 minecraft:hanging_roots blockId=574 -runtimeId=5049 +runtimeId=205 minecraft:hard_glass blockId=253 -runtimeId=5050 +runtimeId=4722 minecraft:hard_glass_pane blockId=190 -runtimeId=5051 +runtimeId=684 minecraft:hard_stained_glass;color=black blockId=254 -runtimeId=5067 +runtimeId=6146 minecraft:hard_stained_glass;color=blue blockId=254 -runtimeId=5063 +runtimeId=6142 minecraft:hard_stained_glass;color=brown blockId=254 -runtimeId=5064 +runtimeId=6143 minecraft:hard_stained_glass;color=cyan blockId=254 -runtimeId=5061 +runtimeId=6140 minecraft:hard_stained_glass;color=gray blockId=254 -runtimeId=5059 +runtimeId=6138 minecraft:hard_stained_glass;color=green blockId=254 -runtimeId=5065 +runtimeId=6144 minecraft:hard_stained_glass;color=light_blue blockId=254 -runtimeId=5055 +runtimeId=6134 minecraft:hard_stained_glass;color=lime blockId=254 -runtimeId=5057 +runtimeId=6136 minecraft:hard_stained_glass;color=magenta blockId=254 -runtimeId=5054 +runtimeId=6133 minecraft:hard_stained_glass;color=orange blockId=254 -runtimeId=5053 +runtimeId=6132 minecraft:hard_stained_glass;color=pink blockId=254 -runtimeId=5058 +runtimeId=6137 minecraft:hard_stained_glass;color=purple blockId=254 -runtimeId=5062 +runtimeId=6141 minecraft:hard_stained_glass;color=red blockId=254 -runtimeId=5066 +runtimeId=6145 minecraft:hard_stained_glass;color=silver blockId=254 -runtimeId=5060 +runtimeId=6139 minecraft:hard_stained_glass;color=white blockId=254 -runtimeId=5052 +runtimeId=6131 minecraft:hard_stained_glass;color=yellow blockId=254 -runtimeId=5056 +runtimeId=6135 minecraft:hard_stained_glass_pane;color=black blockId=191 -runtimeId=5083 +runtimeId=7979 minecraft:hard_stained_glass_pane;color=blue blockId=191 -runtimeId=5079 +runtimeId=7975 minecraft:hard_stained_glass_pane;color=brown blockId=191 -runtimeId=5080 +runtimeId=7976 minecraft:hard_stained_glass_pane;color=cyan blockId=191 -runtimeId=5077 +runtimeId=7973 minecraft:hard_stained_glass_pane;color=gray blockId=191 -runtimeId=5075 +runtimeId=7971 minecraft:hard_stained_glass_pane;color=green blockId=191 -runtimeId=5081 +runtimeId=7977 minecraft:hard_stained_glass_pane;color=light_blue blockId=191 -runtimeId=5071 +runtimeId=7967 minecraft:hard_stained_glass_pane;color=lime blockId=191 -runtimeId=5073 +runtimeId=7969 minecraft:hard_stained_glass_pane;color=magenta blockId=191 -runtimeId=5070 +runtimeId=7966 minecraft:hard_stained_glass_pane;color=orange blockId=191 -runtimeId=5069 +runtimeId=7965 minecraft:hard_stained_glass_pane;color=pink blockId=191 -runtimeId=5074 +runtimeId=7970 minecraft:hard_stained_glass_pane;color=purple blockId=191 -runtimeId=5078 +runtimeId=7974 minecraft:hard_stained_glass_pane;color=red blockId=191 -runtimeId=5082 +runtimeId=7978 minecraft:hard_stained_glass_pane;color=silver blockId=191 -runtimeId=5076 +runtimeId=7972 minecraft:hard_stained_glass_pane;color=white blockId=191 -runtimeId=5068 +runtimeId=7964 minecraft:hard_stained_glass_pane;color=yellow blockId=191 -runtimeId=5072 +runtimeId=7968 minecraft:hardened_clay blockId=172 -runtimeId=5084 +runtimeId=649 minecraft:hay_block;deprecated=0;pillar_axis=x blockId=170 -runtimeId=5089 +runtimeId=707 minecraft:hay_block;deprecated=0;pillar_axis=y blockId=170 -runtimeId=5085 +runtimeId=703 minecraft:hay_block;deprecated=0;pillar_axis=z blockId=170 -runtimeId=5093 +runtimeId=711 minecraft:hay_block;deprecated=1;pillar_axis=x blockId=170 -runtimeId=5090 +runtimeId=708 minecraft:hay_block;deprecated=1;pillar_axis=y blockId=170 -runtimeId=5086 +runtimeId=704 minecraft:hay_block;deprecated=1;pillar_axis=z blockId=170 -runtimeId=5094 +runtimeId=712 minecraft:hay_block;deprecated=2;pillar_axis=x blockId=170 -runtimeId=5091 +runtimeId=709 minecraft:hay_block;deprecated=2;pillar_axis=y blockId=170 -runtimeId=5087 +runtimeId=705 minecraft:hay_block;deprecated=2;pillar_axis=z blockId=170 -runtimeId=5095 +runtimeId=713 minecraft:hay_block;deprecated=3;pillar_axis=x blockId=170 -runtimeId=5092 +runtimeId=710 minecraft:hay_block;deprecated=3;pillar_axis=y blockId=170 -runtimeId=5088 +runtimeId=706 minecraft:hay_block;deprecated=3;pillar_axis=z blockId=170 -runtimeId=5096 +runtimeId=714 minecraft:heavy_weighted_pressure_plate;redstone_signal=0 blockId=148 -runtimeId=5097 +runtimeId=1165 minecraft:heavy_weighted_pressure_plate;redstone_signal=1 blockId=148 -runtimeId=5098 +runtimeId=1166 minecraft:heavy_weighted_pressure_plate;redstone_signal=2 blockId=148 -runtimeId=5099 +runtimeId=1167 minecraft:heavy_weighted_pressure_plate;redstone_signal=3 blockId=148 -runtimeId=5100 +runtimeId=1168 minecraft:heavy_weighted_pressure_plate;redstone_signal=4 blockId=148 -runtimeId=5101 +runtimeId=1169 minecraft:heavy_weighted_pressure_plate;redstone_signal=5 blockId=148 -runtimeId=5102 +runtimeId=1170 minecraft:heavy_weighted_pressure_plate;redstone_signal=6 blockId=148 -runtimeId=5103 +runtimeId=1171 minecraft:heavy_weighted_pressure_plate;redstone_signal=7 blockId=148 -runtimeId=5104 +runtimeId=1172 minecraft:heavy_weighted_pressure_plate;redstone_signal=8 blockId=148 -runtimeId=5105 +runtimeId=1173 minecraft:heavy_weighted_pressure_plate;redstone_signal=9 blockId=148 -runtimeId=5106 +runtimeId=1174 minecraft:heavy_weighted_pressure_plate;redstone_signal=10 blockId=148 -runtimeId=5107 +runtimeId=1175 minecraft:heavy_weighted_pressure_plate;redstone_signal=11 blockId=148 -runtimeId=5108 +runtimeId=1176 minecraft:heavy_weighted_pressure_plate;redstone_signal=12 blockId=148 -runtimeId=5109 +runtimeId=1177 minecraft:heavy_weighted_pressure_plate;redstone_signal=13 blockId=148 -runtimeId=5110 +runtimeId=1178 minecraft:heavy_weighted_pressure_plate;redstone_signal=14 blockId=148 -runtimeId=5111 +runtimeId=1179 minecraft:heavy_weighted_pressure_plate;redstone_signal=15 blockId=148 -runtimeId=5112 +runtimeId=1180 minecraft:honey_block blockId=475 -runtimeId=5113 +runtimeId=900 minecraft:honeycomb_block blockId=476 -runtimeId=5114 +runtimeId=4424 minecraft:hopper;facing_direction=0;toggle_bit=0 blockId=154 -runtimeId=5115 +runtimeId=6812 minecraft:hopper;facing_direction=0;toggle_bit=1 blockId=154 -runtimeId=5121 +runtimeId=6818 minecraft:hopper;facing_direction=1;toggle_bit=0 blockId=154 -runtimeId=5116 +runtimeId=6813 minecraft:hopper;facing_direction=1;toggle_bit=1 blockId=154 -runtimeId=5122 +runtimeId=6819 minecraft:hopper;facing_direction=2;toggle_bit=0 blockId=154 -runtimeId=5117 +runtimeId=6814 minecraft:hopper;facing_direction=2;toggle_bit=1 blockId=154 -runtimeId=5123 +runtimeId=6820 minecraft:hopper;facing_direction=3;toggle_bit=0 blockId=154 -runtimeId=5118 +runtimeId=6815 minecraft:hopper;facing_direction=3;toggle_bit=1 blockId=154 -runtimeId=5124 +runtimeId=6821 minecraft:hopper;facing_direction=4;toggle_bit=0 blockId=154 -runtimeId=5119 +runtimeId=6816 minecraft:hopper;facing_direction=4;toggle_bit=1 blockId=154 -runtimeId=5125 +runtimeId=6822 minecraft:hopper;facing_direction=5;toggle_bit=0 blockId=154 -runtimeId=5120 +runtimeId=6817 minecraft:hopper;facing_direction=5;toggle_bit=1 blockId=154 -runtimeId=5126 +runtimeId=6823 minecraft:ice blockId=79 -runtimeId=5127 +runtimeId=6563 minecraft:infested_deepslate;pillar_axis=x blockId=709 -runtimeId=5129 +runtimeId=4598 minecraft:infested_deepslate;pillar_axis=y blockId=709 -runtimeId=5128 +runtimeId=4597 minecraft:infested_deepslate;pillar_axis=z blockId=709 -runtimeId=5130 +runtimeId=4599 minecraft:info_update blockId=248 -runtimeId=5131 +runtimeId=243 minecraft:info_update2 blockId=249 -runtimeId=5132 +runtimeId=7750 -minecraft:invisibleBedrock +minecraft:invisible_bedrock blockId=95 -runtimeId=5133 +runtimeId=955 minecraft:iron_bars blockId=101 -runtimeId=5134 +runtimeId=4757 minecraft:iron_block blockId=42 -runtimeId=5135 +runtimeId=8203 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5136 +runtimeId=4392 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5137 +runtimeId=4393 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5138 +runtimeId=4394 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5139 +runtimeId=4395 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5152 +runtimeId=4408 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5153 +runtimeId=4409 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5154 +runtimeId=4410 minecraft:iron_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5155 +runtimeId=4411 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5144 +runtimeId=4400 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5145 +runtimeId=4401 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5146 +runtimeId=4402 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5147 +runtimeId=4403 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5160 +runtimeId=4416 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5161 +runtimeId=4417 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5162 +runtimeId=4418 minecraft:iron_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5163 +runtimeId=4419 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5140 +runtimeId=4396 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5141 +runtimeId=4397 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5142 +runtimeId=4398 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5143 +runtimeId=4399 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5156 +runtimeId=4412 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5157 +runtimeId=4413 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5158 +runtimeId=4414 minecraft:iron_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5159 +runtimeId=4415 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=71 -runtimeId=5148 +runtimeId=4404 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=71 -runtimeId=5149 +runtimeId=4405 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=71 -runtimeId=5150 +runtimeId=4406 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=71 -runtimeId=5151 +runtimeId=4407 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=71 -runtimeId=5164 +runtimeId=4420 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=71 -runtimeId=5165 +runtimeId=4421 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=71 -runtimeId=5166 +runtimeId=4422 minecraft:iron_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=71 -runtimeId=5167 +runtimeId=4423 minecraft:iron_ore blockId=15 -runtimeId=5168 +runtimeId=4646 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=167 -runtimeId=5169 +runtimeId=335 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=167 -runtimeId=5170 +runtimeId=336 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=167 -runtimeId=5171 +runtimeId=337 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=167 -runtimeId=5172 +runtimeId=338 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=167 -runtimeId=5173 +runtimeId=339 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=167 -runtimeId=5174 +runtimeId=340 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=167 -runtimeId=5175 +runtimeId=341 minecraft:iron_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=167 -runtimeId=5176 +runtimeId=342 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=167 -runtimeId=5177 +runtimeId=343 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=167 -runtimeId=5178 +runtimeId=344 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=167 -runtimeId=5179 +runtimeId=345 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=167 -runtimeId=5180 +runtimeId=346 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=167 -runtimeId=5181 +runtimeId=347 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=167 -runtimeId=5182 +runtimeId=348 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=167 -runtimeId=5183 +runtimeId=349 minecraft:iron_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=167 -runtimeId=5184 +runtimeId=350 minecraft:jigsaw;facing_direction=0;rotation=0 blockId=466 -runtimeId=5185 +runtimeId=4831 minecraft:jigsaw;facing_direction=0;rotation=1 blockId=466 -runtimeId=5191 +runtimeId=4837 minecraft:jigsaw;facing_direction=0;rotation=2 blockId=466 -runtimeId=5197 +runtimeId=4843 minecraft:jigsaw;facing_direction=0;rotation=3 blockId=466 -runtimeId=5203 +runtimeId=4849 minecraft:jigsaw;facing_direction=1;rotation=0 blockId=466 -runtimeId=5186 +runtimeId=4832 minecraft:jigsaw;facing_direction=1;rotation=1 blockId=466 -runtimeId=5192 +runtimeId=4838 minecraft:jigsaw;facing_direction=1;rotation=2 blockId=466 -runtimeId=5198 +runtimeId=4844 minecraft:jigsaw;facing_direction=1;rotation=3 blockId=466 -runtimeId=5204 +runtimeId=4850 minecraft:jigsaw;facing_direction=2;rotation=0 blockId=466 -runtimeId=5187 +runtimeId=4833 minecraft:jigsaw;facing_direction=2;rotation=1 blockId=466 -runtimeId=5193 +runtimeId=4839 minecraft:jigsaw;facing_direction=2;rotation=2 blockId=466 -runtimeId=5199 +runtimeId=4845 minecraft:jigsaw;facing_direction=2;rotation=3 blockId=466 -runtimeId=5205 +runtimeId=4851 minecraft:jigsaw;facing_direction=3;rotation=0 blockId=466 -runtimeId=5188 +runtimeId=4834 minecraft:jigsaw;facing_direction=3;rotation=1 blockId=466 -runtimeId=5194 +runtimeId=4840 minecraft:jigsaw;facing_direction=3;rotation=2 blockId=466 -runtimeId=5200 +runtimeId=4846 minecraft:jigsaw;facing_direction=3;rotation=3 blockId=466 -runtimeId=5206 +runtimeId=4852 minecraft:jigsaw;facing_direction=4;rotation=0 blockId=466 -runtimeId=5189 +runtimeId=4835 minecraft:jigsaw;facing_direction=4;rotation=1 blockId=466 -runtimeId=5195 +runtimeId=4841 minecraft:jigsaw;facing_direction=4;rotation=2 blockId=466 -runtimeId=5201 +runtimeId=4847 minecraft:jigsaw;facing_direction=4;rotation=3 blockId=466 -runtimeId=5207 +runtimeId=4853 minecraft:jigsaw;facing_direction=5;rotation=0 blockId=466 -runtimeId=5190 +runtimeId=4836 minecraft:jigsaw;facing_direction=5;rotation=1 blockId=466 -runtimeId=5196 +runtimeId=4842 minecraft:jigsaw;facing_direction=5;rotation=2 blockId=466 -runtimeId=5202 +runtimeId=4848 minecraft:jigsaw;facing_direction=5;rotation=3 blockId=466 -runtimeId=5208 +runtimeId=4854 minecraft:jukebox blockId=84 -runtimeId=5209 +runtimeId=4830 minecraft:jungle_button;button_pressed_bit=0;facing_direction=0 blockId=398 -runtimeId=5210 +runtimeId=116 minecraft:jungle_button;button_pressed_bit=0;facing_direction=1 blockId=398 -runtimeId=5211 +runtimeId=117 minecraft:jungle_button;button_pressed_bit=0;facing_direction=2 blockId=398 -runtimeId=5212 +runtimeId=118 minecraft:jungle_button;button_pressed_bit=0;facing_direction=3 blockId=398 -runtimeId=5213 +runtimeId=119 minecraft:jungle_button;button_pressed_bit=0;facing_direction=4 blockId=398 -runtimeId=5214 +runtimeId=120 minecraft:jungle_button;button_pressed_bit=0;facing_direction=5 blockId=398 -runtimeId=5215 +runtimeId=121 minecraft:jungle_button;button_pressed_bit=1;facing_direction=0 blockId=398 -runtimeId=5216 +runtimeId=122 minecraft:jungle_button;button_pressed_bit=1;facing_direction=1 blockId=398 -runtimeId=5217 +runtimeId=123 minecraft:jungle_button;button_pressed_bit=1;facing_direction=2 blockId=398 -runtimeId=5218 +runtimeId=124 minecraft:jungle_button;button_pressed_bit=1;facing_direction=3 blockId=398 -runtimeId=5219 +runtimeId=125 minecraft:jungle_button;button_pressed_bit=1;facing_direction=4 blockId=398 -runtimeId=5220 +runtimeId=126 minecraft:jungle_button;button_pressed_bit=1;facing_direction=5 blockId=398 -runtimeId=5221 +runtimeId=127 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5222 +runtimeId=6056 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5223 +runtimeId=6057 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5224 +runtimeId=6058 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5225 +runtimeId=6059 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5238 +runtimeId=6072 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5239 +runtimeId=6073 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5240 +runtimeId=6074 minecraft:jungle_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5241 +runtimeId=6075 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5230 +runtimeId=6064 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5231 +runtimeId=6065 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5232 +runtimeId=6066 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5233 +runtimeId=6067 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5246 +runtimeId=6080 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5247 +runtimeId=6081 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5248 +runtimeId=6082 minecraft:jungle_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5249 +runtimeId=6083 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5226 +runtimeId=6060 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5227 +runtimeId=6061 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5228 +runtimeId=6062 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5229 +runtimeId=6063 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5242 +runtimeId=6076 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5243 +runtimeId=6077 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5244 +runtimeId=6078 minecraft:jungle_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5245 +runtimeId=6079 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=195 -runtimeId=5234 +runtimeId=6068 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=195 -runtimeId=5235 +runtimeId=6069 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=195 -runtimeId=5236 +runtimeId=6070 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=195 -runtimeId=5237 +runtimeId=6071 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=195 -runtimeId=5250 +runtimeId=6084 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=195 -runtimeId=5251 +runtimeId=6085 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=195 -runtimeId=5252 +runtimeId=6086 minecraft:jungle_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=195 -runtimeId=5253 +runtimeId=6087 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=185 -runtimeId=5254 +runtimeId=5315 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=185 -runtimeId=5255 +runtimeId=5316 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=185 -runtimeId=5256 +runtimeId=5317 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=185 -runtimeId=5257 +runtimeId=5318 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=185 -runtimeId=5258 +runtimeId=5319 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=185 -runtimeId=5259 +runtimeId=5320 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=185 -runtimeId=5260 +runtimeId=5321 minecraft:jungle_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=185 -runtimeId=5261 +runtimeId=5322 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=185 -runtimeId=5262 +runtimeId=5323 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=185 -runtimeId=5263 +runtimeId=5324 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=185 -runtimeId=5264 +runtimeId=5325 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=185 -runtimeId=5265 +runtimeId=5326 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=185 -runtimeId=5266 +runtimeId=5327 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=185 -runtimeId=5267 +runtimeId=5328 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=185 -runtimeId=5268 +runtimeId=5329 minecraft:jungle_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=185 -runtimeId=5269 +runtimeId=5330 minecraft:jungle_pressure_plate;redstone_signal=0 blockId=408 -runtimeId=5270 +runtimeId=3640 minecraft:jungle_pressure_plate;redstone_signal=1 blockId=408 -runtimeId=5271 +runtimeId=3641 minecraft:jungle_pressure_plate;redstone_signal=2 blockId=408 -runtimeId=5272 +runtimeId=3642 minecraft:jungle_pressure_plate;redstone_signal=3 blockId=408 -runtimeId=5273 +runtimeId=3643 minecraft:jungle_pressure_plate;redstone_signal=4 blockId=408 -runtimeId=5274 +runtimeId=3644 minecraft:jungle_pressure_plate;redstone_signal=5 blockId=408 -runtimeId=5275 +runtimeId=3645 minecraft:jungle_pressure_plate;redstone_signal=6 blockId=408 -runtimeId=5276 +runtimeId=3646 minecraft:jungle_pressure_plate;redstone_signal=7 blockId=408 -runtimeId=5277 +runtimeId=3647 minecraft:jungle_pressure_plate;redstone_signal=8 blockId=408 -runtimeId=5278 +runtimeId=3648 minecraft:jungle_pressure_plate;redstone_signal=9 blockId=408 -runtimeId=5279 +runtimeId=3649 minecraft:jungle_pressure_plate;redstone_signal=10 blockId=408 -runtimeId=5280 +runtimeId=3650 minecraft:jungle_pressure_plate;redstone_signal=11 blockId=408 -runtimeId=5281 +runtimeId=3651 minecraft:jungle_pressure_plate;redstone_signal=12 blockId=408 -runtimeId=5282 +runtimeId=3652 minecraft:jungle_pressure_plate;redstone_signal=13 blockId=408 -runtimeId=5283 +runtimeId=3653 minecraft:jungle_pressure_plate;redstone_signal=14 blockId=408 -runtimeId=5284 +runtimeId=3654 minecraft:jungle_pressure_plate;redstone_signal=15 blockId=408 -runtimeId=5285 +runtimeId=3655 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=0 blockId=136 -runtimeId=5286 +runtimeId=6883 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=1 blockId=136 -runtimeId=5287 +runtimeId=6884 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=2 blockId=136 -runtimeId=5288 +runtimeId=6885 minecraft:jungle_stairs;upside_down_bit=0;weirdo_direction=3 blockId=136 -runtimeId=5289 +runtimeId=6886 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=0 blockId=136 -runtimeId=5290 +runtimeId=6887 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=1 blockId=136 -runtimeId=5291 +runtimeId=6888 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=2 blockId=136 -runtimeId=5292 +runtimeId=6889 minecraft:jungle_stairs;upside_down_bit=1;weirdo_direction=3 blockId=136 -runtimeId=5293 +runtimeId=6890 minecraft:jungle_standing_sign;ground_sign_direction=0 blockId=443 -runtimeId=5294 +runtimeId=5961 minecraft:jungle_standing_sign;ground_sign_direction=1 blockId=443 -runtimeId=5295 +runtimeId=5962 minecraft:jungle_standing_sign;ground_sign_direction=2 blockId=443 -runtimeId=5296 +runtimeId=5963 minecraft:jungle_standing_sign;ground_sign_direction=3 blockId=443 -runtimeId=5297 +runtimeId=5964 minecraft:jungle_standing_sign;ground_sign_direction=4 blockId=443 -runtimeId=5298 +runtimeId=5965 minecraft:jungle_standing_sign;ground_sign_direction=5 blockId=443 -runtimeId=5299 +runtimeId=5966 minecraft:jungle_standing_sign;ground_sign_direction=6 blockId=443 -runtimeId=5300 +runtimeId=5967 minecraft:jungle_standing_sign;ground_sign_direction=7 blockId=443 -runtimeId=5301 +runtimeId=5968 minecraft:jungle_standing_sign;ground_sign_direction=8 blockId=443 -runtimeId=5302 +runtimeId=5969 minecraft:jungle_standing_sign;ground_sign_direction=9 blockId=443 -runtimeId=5303 +runtimeId=5970 minecraft:jungle_standing_sign;ground_sign_direction=10 blockId=443 -runtimeId=5304 +runtimeId=5971 minecraft:jungle_standing_sign;ground_sign_direction=11 blockId=443 -runtimeId=5305 +runtimeId=5972 minecraft:jungle_standing_sign;ground_sign_direction=12 blockId=443 -runtimeId=5306 +runtimeId=5973 minecraft:jungle_standing_sign;ground_sign_direction=13 blockId=443 -runtimeId=5307 +runtimeId=5974 minecraft:jungle_standing_sign;ground_sign_direction=14 blockId=443 -runtimeId=5308 +runtimeId=5975 minecraft:jungle_standing_sign;ground_sign_direction=15 blockId=443 -runtimeId=5309 +runtimeId=5976 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=403 -runtimeId=5310 +runtimeId=5331 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=403 -runtimeId=5311 +runtimeId=5332 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=403 -runtimeId=5312 +runtimeId=5333 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=403 -runtimeId=5313 +runtimeId=5334 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=403 -runtimeId=5314 +runtimeId=5335 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=403 -runtimeId=5315 +runtimeId=5336 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=403 -runtimeId=5316 +runtimeId=5337 minecraft:jungle_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=403 -runtimeId=5317 +runtimeId=5338 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=403 -runtimeId=5318 +runtimeId=5339 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=403 -runtimeId=5319 +runtimeId=5340 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=403 -runtimeId=5320 +runtimeId=5341 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=403 -runtimeId=5321 +runtimeId=5342 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=403 -runtimeId=5322 +runtimeId=5343 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=403 -runtimeId=5323 +runtimeId=5344 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=403 -runtimeId=5324 +runtimeId=5345 minecraft:jungle_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=403 -runtimeId=5325 +runtimeId=5346 minecraft:jungle_wall_sign;facing_direction=0 blockId=444 -runtimeId=5326 +runtimeId=4331 minecraft:jungle_wall_sign;facing_direction=1 blockId=444 -runtimeId=5327 +runtimeId=4332 minecraft:jungle_wall_sign;facing_direction=2 blockId=444 -runtimeId=5328 +runtimeId=4333 minecraft:jungle_wall_sign;facing_direction=3 blockId=444 -runtimeId=5329 +runtimeId=4334 minecraft:jungle_wall_sign;facing_direction=4 blockId=444 -runtimeId=5330 +runtimeId=4335 minecraft:jungle_wall_sign;facing_direction=5 blockId=444 -runtimeId=5331 +runtimeId=4336 minecraft:kelp;kelp_age=0 blockId=393 -runtimeId=5332 +runtimeId=5376 minecraft:kelp;kelp_age=1 blockId=393 -runtimeId=5333 +runtimeId=5377 minecraft:kelp;kelp_age=2 blockId=393 -runtimeId=5334 +runtimeId=5378 minecraft:kelp;kelp_age=3 blockId=393 -runtimeId=5335 +runtimeId=5379 minecraft:kelp;kelp_age=4 blockId=393 -runtimeId=5336 +runtimeId=5380 minecraft:kelp;kelp_age=5 blockId=393 -runtimeId=5337 +runtimeId=5381 minecraft:kelp;kelp_age=6 blockId=393 -runtimeId=5338 +runtimeId=5382 minecraft:kelp;kelp_age=7 blockId=393 -runtimeId=5339 +runtimeId=5383 minecraft:kelp;kelp_age=8 blockId=393 -runtimeId=5340 +runtimeId=5384 minecraft:kelp;kelp_age=9 blockId=393 -runtimeId=5341 +runtimeId=5385 minecraft:kelp;kelp_age=10 blockId=393 -runtimeId=5342 +runtimeId=5386 minecraft:kelp;kelp_age=11 blockId=393 -runtimeId=5343 +runtimeId=5387 minecraft:kelp;kelp_age=12 blockId=393 -runtimeId=5344 +runtimeId=5388 minecraft:kelp;kelp_age=13 blockId=393 -runtimeId=5345 +runtimeId=5389 minecraft:kelp;kelp_age=14 blockId=393 -runtimeId=5346 +runtimeId=5390 minecraft:kelp;kelp_age=15 blockId=393 -runtimeId=5347 +runtimeId=5391 minecraft:kelp;kelp_age=16 blockId=393 -runtimeId=5348 +runtimeId=5392 minecraft:kelp;kelp_age=17 blockId=393 -runtimeId=5349 +runtimeId=5393 minecraft:kelp;kelp_age=18 blockId=393 -runtimeId=5350 +runtimeId=5394 minecraft:kelp;kelp_age=19 blockId=393 -runtimeId=5351 +runtimeId=5395 minecraft:kelp;kelp_age=20 blockId=393 -runtimeId=5352 +runtimeId=5396 minecraft:kelp;kelp_age=21 blockId=393 -runtimeId=5353 +runtimeId=5397 minecraft:kelp;kelp_age=22 blockId=393 -runtimeId=5354 +runtimeId=5398 minecraft:kelp;kelp_age=23 blockId=393 -runtimeId=5355 +runtimeId=5399 minecraft:kelp;kelp_age=24 blockId=393 -runtimeId=5356 +runtimeId=5400 minecraft:kelp;kelp_age=25 blockId=393 -runtimeId=5357 +runtimeId=5401 minecraft:ladder;facing_direction=0 blockId=65 -runtimeId=5358 +runtimeId=8204 minecraft:ladder;facing_direction=1 blockId=65 -runtimeId=5359 +runtimeId=8205 minecraft:ladder;facing_direction=2 blockId=65 -runtimeId=5360 +runtimeId=8206 minecraft:ladder;facing_direction=3 blockId=65 -runtimeId=5361 +runtimeId=8207 minecraft:ladder;facing_direction=4 blockId=65 -runtimeId=5362 +runtimeId=8208 minecraft:ladder;facing_direction=5 blockId=65 -runtimeId=5363 +runtimeId=8209 minecraft:lantern;hanging=0 blockId=463 -runtimeId=5364 +runtimeId=7016 minecraft:lantern;hanging=1 blockId=463 -runtimeId=5365 +runtimeId=7017 minecraft:lapis_block blockId=22 -runtimeId=5366 +runtimeId=4234 minecraft:lapis_ore blockId=21 -runtimeId=5367 +runtimeId=7641 minecraft:large_amethyst_bud;facing_direction=0 blockId=585 -runtimeId=5368 +runtimeId=4683 minecraft:large_amethyst_bud;facing_direction=1 blockId=585 -runtimeId=5369 +runtimeId=4684 minecraft:large_amethyst_bud;facing_direction=2 blockId=585 -runtimeId=5370 +runtimeId=4685 minecraft:large_amethyst_bud;facing_direction=3 blockId=585 -runtimeId=5371 +runtimeId=4686 minecraft:large_amethyst_bud;facing_direction=4 blockId=585 -runtimeId=5372 +runtimeId=4687 minecraft:large_amethyst_bud;facing_direction=5 blockId=585 -runtimeId=5373 +runtimeId=4688 minecraft:lava;liquid_depth=0 blockId=11 -runtimeId=5374 +runtimeId=3815 minecraft:lava;liquid_depth=1 blockId=11 -runtimeId=5375 +runtimeId=3816 minecraft:lava;liquid_depth=2 blockId=11 -runtimeId=5376 +runtimeId=3817 minecraft:lava;liquid_depth=3 blockId=11 -runtimeId=5377 +runtimeId=3818 minecraft:lava;liquid_depth=4 blockId=11 -runtimeId=5378 +runtimeId=3819 minecraft:lava;liquid_depth=5 blockId=11 -runtimeId=5379 +runtimeId=3820 minecraft:lava;liquid_depth=6 blockId=11 -runtimeId=5380 +runtimeId=3821 minecraft:lava;liquid_depth=7 blockId=11 -runtimeId=5381 +runtimeId=3822 minecraft:lava;liquid_depth=8 blockId=11 -runtimeId=5382 +runtimeId=3823 minecraft:lava;liquid_depth=9 blockId=11 -runtimeId=5383 +runtimeId=3824 minecraft:lava;liquid_depth=10 blockId=11 -runtimeId=5384 +runtimeId=3825 minecraft:lava;liquid_depth=11 blockId=11 -runtimeId=5385 +runtimeId=3826 minecraft:lava;liquid_depth=12 blockId=11 -runtimeId=5386 +runtimeId=3827 minecraft:lava;liquid_depth=13 blockId=11 -runtimeId=5387 +runtimeId=3828 minecraft:lava;liquid_depth=14 blockId=11 -runtimeId=5388 +runtimeId=3829 minecraft:lava;liquid_depth=15 blockId=11 -runtimeId=5389 +runtimeId=3830 minecraft:lava_cauldron;fill_level=0;cauldron_liquid=lava blockId=465 -runtimeId=5397 +runtimeId=623 minecraft:lava_cauldron;fill_level=0;cauldron_liquid=powder_snow blockId=465 -runtimeId=5404 +runtimeId=630 minecraft:lava_cauldron;fill_level=0;cauldron_liquid=water blockId=465 -runtimeId=5390 +runtimeId=616 minecraft:lava_cauldron;fill_level=1;cauldron_liquid=lava blockId=465 -runtimeId=5398 +runtimeId=624 minecraft:lava_cauldron;fill_level=1;cauldron_liquid=powder_snow blockId=465 -runtimeId=5405 +runtimeId=631 minecraft:lava_cauldron;fill_level=1;cauldron_liquid=water blockId=465 -runtimeId=5391 +runtimeId=617 minecraft:lava_cauldron;fill_level=2;cauldron_liquid=lava blockId=465 -runtimeId=5399 +runtimeId=625 minecraft:lava_cauldron;fill_level=2;cauldron_liquid=powder_snow blockId=465 -runtimeId=5406 +runtimeId=632 minecraft:lava_cauldron;fill_level=2;cauldron_liquid=water blockId=465 -runtimeId=5392 +runtimeId=618 minecraft:lava_cauldron;fill_level=3;cauldron_liquid=lava blockId=465 -runtimeId=5400 +runtimeId=626 minecraft:lava_cauldron;fill_level=3;cauldron_liquid=powder_snow blockId=465 -runtimeId=5407 +runtimeId=633 minecraft:lava_cauldron;fill_level=3;cauldron_liquid=water blockId=465 -runtimeId=5393 +runtimeId=619 minecraft:lava_cauldron;fill_level=4;cauldron_liquid=lava blockId=465 -runtimeId=5401 +runtimeId=627 minecraft:lava_cauldron;fill_level=4;cauldron_liquid=powder_snow blockId=465 -runtimeId=5408 +runtimeId=634 minecraft:lava_cauldron;fill_level=4;cauldron_liquid=water blockId=465 -runtimeId=5394 +runtimeId=620 minecraft:lava_cauldron;fill_level=5;cauldron_liquid=lava blockId=465 -runtimeId=5402 +runtimeId=628 minecraft:lava_cauldron;fill_level=5;cauldron_liquid=powder_snow blockId=465 -runtimeId=5409 +runtimeId=635 minecraft:lava_cauldron;fill_level=5;cauldron_liquid=water blockId=465 -runtimeId=5395 +runtimeId=621 minecraft:lava_cauldron;fill_level=6;cauldron_liquid=lava blockId=465 -runtimeId=5403 +runtimeId=629 minecraft:lava_cauldron;fill_level=6;cauldron_liquid=powder_snow blockId=465 -runtimeId=5410 +runtimeId=636 minecraft:lava_cauldron;fill_level=6;cauldron_liquid=water blockId=465 -runtimeId=5396 +runtimeId=622 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=birch blockId=18 -runtimeId=5413 +runtimeId=6016 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=jungle blockId=18 -runtimeId=5414 +runtimeId=6017 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=oak blockId=18 -runtimeId=5411 +runtimeId=6014 minecraft:leaves;persistent_bit=0;update_bit=0;old_leaf_type=spruce blockId=18 -runtimeId=5412 +runtimeId=6015 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=birch blockId=18 -runtimeId=5417 +runtimeId=6020 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=jungle blockId=18 -runtimeId=5418 +runtimeId=6021 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=oak blockId=18 -runtimeId=5415 +runtimeId=6018 minecraft:leaves;persistent_bit=0;update_bit=1;old_leaf_type=spruce blockId=18 -runtimeId=5416 +runtimeId=6019 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=birch blockId=18 -runtimeId=5421 +runtimeId=6024 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=jungle blockId=18 -runtimeId=5422 +runtimeId=6025 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=oak blockId=18 -runtimeId=5419 +runtimeId=6022 minecraft:leaves;persistent_bit=1;update_bit=0;old_leaf_type=spruce blockId=18 -runtimeId=5420 +runtimeId=6023 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=birch blockId=18 -runtimeId=5425 +runtimeId=6028 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=jungle blockId=18 -runtimeId=5426 +runtimeId=6029 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=oak blockId=18 -runtimeId=5423 +runtimeId=6026 minecraft:leaves;persistent_bit=1;update_bit=1;old_leaf_type=spruce blockId=18 -runtimeId=5424 +runtimeId=6027 minecraft:leaves2;persistent_bit=0;update_bit=0;new_leaf_type=acacia blockId=161 -runtimeId=5427 +runtimeId=4301 minecraft:leaves2;persistent_bit=0;update_bit=0;new_leaf_type=dark_oak blockId=161 -runtimeId=5428 +runtimeId=4302 minecraft:leaves2;persistent_bit=0;update_bit=1;new_leaf_type=acacia blockId=161 -runtimeId=5429 +runtimeId=4303 minecraft:leaves2;persistent_bit=0;update_bit=1;new_leaf_type=dark_oak blockId=161 -runtimeId=5430 +runtimeId=4304 minecraft:leaves2;persistent_bit=1;update_bit=0;new_leaf_type=acacia blockId=161 -runtimeId=5431 +runtimeId=4305 minecraft:leaves2;persistent_bit=1;update_bit=0;new_leaf_type=dark_oak blockId=161 -runtimeId=5432 +runtimeId=4306 minecraft:leaves2;persistent_bit=1;update_bit=1;new_leaf_type=acacia blockId=161 -runtimeId=5433 +runtimeId=4307 minecraft:leaves2;persistent_bit=1;update_bit=1;new_leaf_type=dark_oak blockId=161 -runtimeId=5434 +runtimeId=4308 minecraft:lectern;powered_bit=0;direction=0 blockId=449 -runtimeId=5435 +runtimeId=6856 minecraft:lectern;powered_bit=0;direction=1 blockId=449 -runtimeId=5436 +runtimeId=6857 minecraft:lectern;powered_bit=0;direction=2 blockId=449 -runtimeId=5437 +runtimeId=6858 minecraft:lectern;powered_bit=0;direction=3 blockId=449 -runtimeId=5438 +runtimeId=6859 minecraft:lectern;powered_bit=1;direction=0 blockId=449 -runtimeId=5439 +runtimeId=6860 minecraft:lectern;powered_bit=1;direction=1 blockId=449 -runtimeId=5440 +runtimeId=6861 minecraft:lectern;powered_bit=1;direction=2 blockId=449 -runtimeId=5441 +runtimeId=6862 minecraft:lectern;powered_bit=1;direction=3 blockId=449 -runtimeId=5442 +runtimeId=6863 minecraft:lever;open_bit=0;lever_direction=down_east_west blockId=69 -runtimeId=5443 +runtimeId=6405 minecraft:lever;open_bit=0;lever_direction=down_north_south blockId=69 -runtimeId=5450 +runtimeId=6412 minecraft:lever;open_bit=0;lever_direction=east blockId=69 -runtimeId=5444 +runtimeId=6406 minecraft:lever;open_bit=0;lever_direction=north blockId=69 -runtimeId=5447 +runtimeId=6409 minecraft:lever;open_bit=0;lever_direction=south blockId=69 -runtimeId=5446 +runtimeId=6408 minecraft:lever;open_bit=0;lever_direction=up_east_west blockId=69 -runtimeId=5449 +runtimeId=6411 minecraft:lever;open_bit=0;lever_direction=up_north_south blockId=69 -runtimeId=5448 +runtimeId=6410 minecraft:lever;open_bit=0;lever_direction=west blockId=69 -runtimeId=5445 +runtimeId=6407 minecraft:lever;open_bit=1;lever_direction=down_east_west blockId=69 -runtimeId=5451 +runtimeId=6413 minecraft:lever;open_bit=1;lever_direction=down_north_south blockId=69 -runtimeId=5458 +runtimeId=6420 minecraft:lever;open_bit=1;lever_direction=east blockId=69 -runtimeId=5452 +runtimeId=6414 minecraft:lever;open_bit=1;lever_direction=north blockId=69 -runtimeId=5455 +runtimeId=6417 minecraft:lever;open_bit=1;lever_direction=south blockId=69 -runtimeId=5454 +runtimeId=6416 minecraft:lever;open_bit=1;lever_direction=up_east_west blockId=69 -runtimeId=5457 +runtimeId=6419 minecraft:lever;open_bit=1;lever_direction=up_north_south blockId=69 -runtimeId=5456 +runtimeId=6418 minecraft:lever;open_bit=1;lever_direction=west blockId=69 -runtimeId=5453 +runtimeId=6415 minecraft:light_block;block_light_level=0 blockId=470 -runtimeId=5459 +runtimeId=7922 minecraft:light_block;block_light_level=1 blockId=470 -runtimeId=5460 +runtimeId=7923 minecraft:light_block;block_light_level=2 blockId=470 -runtimeId=5461 +runtimeId=7924 minecraft:light_block;block_light_level=3 blockId=470 -runtimeId=5462 +runtimeId=7925 minecraft:light_block;block_light_level=4 blockId=470 -runtimeId=5463 +runtimeId=7926 minecraft:light_block;block_light_level=5 blockId=470 -runtimeId=5464 +runtimeId=7927 minecraft:light_block;block_light_level=6 blockId=470 -runtimeId=5465 +runtimeId=7928 minecraft:light_block;block_light_level=7 blockId=470 -runtimeId=5466 +runtimeId=7929 minecraft:light_block;block_light_level=8 blockId=470 -runtimeId=5467 +runtimeId=7930 minecraft:light_block;block_light_level=9 blockId=470 -runtimeId=5468 +runtimeId=7931 minecraft:light_block;block_light_level=10 blockId=470 -runtimeId=5469 +runtimeId=7932 minecraft:light_block;block_light_level=11 blockId=470 -runtimeId=5470 +runtimeId=7933 minecraft:light_block;block_light_level=12 blockId=470 -runtimeId=5471 +runtimeId=7934 minecraft:light_block;block_light_level=13 blockId=470 -runtimeId=5472 +runtimeId=7935 minecraft:light_block;block_light_level=14 blockId=470 -runtimeId=5473 +runtimeId=7936 minecraft:light_block;block_light_level=15 blockId=470 -runtimeId=5474 +runtimeId=7937 minecraft:light_blue_candle;lit=0;candles=0 blockId=671 -runtimeId=5475 +runtimeId=4501 minecraft:light_blue_candle;lit=0;candles=1 blockId=671 -runtimeId=5476 +runtimeId=4502 minecraft:light_blue_candle;lit=0;candles=2 blockId=671 -runtimeId=5477 +runtimeId=4503 minecraft:light_blue_candle;lit=0;candles=3 blockId=671 -runtimeId=5478 +runtimeId=4504 minecraft:light_blue_candle;lit=1;candles=0 blockId=671 -runtimeId=5479 +runtimeId=4505 minecraft:light_blue_candle;lit=1;candles=1 blockId=671 -runtimeId=5480 +runtimeId=4506 minecraft:light_blue_candle;lit=1;candles=2 blockId=671 -runtimeId=5481 +runtimeId=4507 minecraft:light_blue_candle;lit=1;candles=3 blockId=671 -runtimeId=5482 +runtimeId=4508 minecraft:light_blue_candle_cake;lit=0 blockId=688 -runtimeId=5483 +runtimeId=298 minecraft:light_blue_candle_cake;lit=1 blockId=688 -runtimeId=5484 +runtimeId=299 minecraft:light_blue_glazed_terracotta;facing_direction=0 blockId=223 -runtimeId=5485 +runtimeId=5421 minecraft:light_blue_glazed_terracotta;facing_direction=1 blockId=223 -runtimeId=5486 +runtimeId=5422 minecraft:light_blue_glazed_terracotta;facing_direction=2 blockId=223 -runtimeId=5487 +runtimeId=5423 minecraft:light_blue_glazed_terracotta;facing_direction=3 blockId=223 -runtimeId=5488 +runtimeId=5424 minecraft:light_blue_glazed_terracotta;facing_direction=4 blockId=223 -runtimeId=5489 +runtimeId=5425 minecraft:light_blue_glazed_terracotta;facing_direction=5 blockId=223 -runtimeId=5490 +runtimeId=5426 minecraft:light_gray_candle;lit=0;candles=0 blockId=676 -runtimeId=5491 +runtimeId=6147 minecraft:light_gray_candle;lit=0;candles=1 blockId=676 -runtimeId=5492 +runtimeId=6148 minecraft:light_gray_candle;lit=0;candles=2 blockId=676 -runtimeId=5493 +runtimeId=6149 minecraft:light_gray_candle;lit=0;candles=3 blockId=676 -runtimeId=5494 +runtimeId=6150 minecraft:light_gray_candle;lit=1;candles=0 blockId=676 -runtimeId=5495 +runtimeId=6151 minecraft:light_gray_candle;lit=1;candles=1 blockId=676 -runtimeId=5496 +runtimeId=6152 minecraft:light_gray_candle;lit=1;candles=2 blockId=676 -runtimeId=5497 +runtimeId=6153 minecraft:light_gray_candle;lit=1;candles=3 blockId=676 -runtimeId=5498 +runtimeId=6154 minecraft:light_gray_candle_cake;lit=0 blockId=693 -runtimeId=5499 +runtimeId=5248 minecraft:light_gray_candle_cake;lit=1 blockId=693 -runtimeId=5500 +runtimeId=5249 minecraft:light_weighted_pressure_plate;redstone_signal=0 blockId=147 -runtimeId=5501 +runtimeId=3670 minecraft:light_weighted_pressure_plate;redstone_signal=1 blockId=147 -runtimeId=5502 +runtimeId=3671 minecraft:light_weighted_pressure_plate;redstone_signal=2 blockId=147 -runtimeId=5503 +runtimeId=3672 minecraft:light_weighted_pressure_plate;redstone_signal=3 blockId=147 -runtimeId=5504 +runtimeId=3673 minecraft:light_weighted_pressure_plate;redstone_signal=4 blockId=147 -runtimeId=5505 +runtimeId=3674 minecraft:light_weighted_pressure_plate;redstone_signal=5 blockId=147 -runtimeId=5506 +runtimeId=3675 minecraft:light_weighted_pressure_plate;redstone_signal=6 blockId=147 -runtimeId=5507 +runtimeId=3676 minecraft:light_weighted_pressure_plate;redstone_signal=7 blockId=147 -runtimeId=5508 +runtimeId=3677 minecraft:light_weighted_pressure_plate;redstone_signal=8 blockId=147 -runtimeId=5509 +runtimeId=3678 minecraft:light_weighted_pressure_plate;redstone_signal=9 blockId=147 -runtimeId=5510 +runtimeId=3679 minecraft:light_weighted_pressure_plate;redstone_signal=10 blockId=147 -runtimeId=5511 +runtimeId=3680 minecraft:light_weighted_pressure_plate;redstone_signal=11 blockId=147 -runtimeId=5512 +runtimeId=3681 minecraft:light_weighted_pressure_plate;redstone_signal=12 blockId=147 -runtimeId=5513 +runtimeId=3682 minecraft:light_weighted_pressure_plate;redstone_signal=13 blockId=147 -runtimeId=5514 +runtimeId=3683 minecraft:light_weighted_pressure_plate;redstone_signal=14 blockId=147 -runtimeId=5515 +runtimeId=3684 minecraft:light_weighted_pressure_plate;redstone_signal=15 blockId=147 -runtimeId=5516 +runtimeId=3685 minecraft:lightning_rod;facing_direction=0 blockId=567 -runtimeId=5517 +runtimeId=1181 minecraft:lightning_rod;facing_direction=1 blockId=567 -runtimeId=5518 +runtimeId=1182 minecraft:lightning_rod;facing_direction=2 blockId=567 -runtimeId=5519 +runtimeId=1183 minecraft:lightning_rod;facing_direction=3 blockId=567 -runtimeId=5520 +runtimeId=1184 minecraft:lightning_rod;facing_direction=4 blockId=567 -runtimeId=5521 +runtimeId=1185 minecraft:lightning_rod;facing_direction=5 blockId=567 -runtimeId=5522 +runtimeId=1186 minecraft:lime_candle;lit=0;candles=0 blockId=673 -runtimeId=5523 +runtimeId=6333 minecraft:lime_candle;lit=0;candles=1 blockId=673 -runtimeId=5524 +runtimeId=6334 minecraft:lime_candle;lit=0;candles=2 blockId=673 -runtimeId=5525 +runtimeId=6335 minecraft:lime_candle;lit=0;candles=3 blockId=673 -runtimeId=5526 +runtimeId=6336 minecraft:lime_candle;lit=1;candles=0 blockId=673 -runtimeId=5527 +runtimeId=6337 minecraft:lime_candle;lit=1;candles=1 blockId=673 -runtimeId=5528 +runtimeId=6338 minecraft:lime_candle;lit=1;candles=2 blockId=673 -runtimeId=5529 +runtimeId=6339 minecraft:lime_candle;lit=1;candles=3 blockId=673 -runtimeId=5530 +runtimeId=6340 minecraft:lime_candle_cake;lit=0 blockId=690 -runtimeId=5531 +runtimeId=8021 minecraft:lime_candle_cake;lit=1 blockId=690 -runtimeId=5532 +runtimeId=8022 minecraft:lime_glazed_terracotta;facing_direction=0 blockId=225 -runtimeId=5533 +runtimeId=221 minecraft:lime_glazed_terracotta;facing_direction=1 blockId=225 -runtimeId=5534 +runtimeId=222 minecraft:lime_glazed_terracotta;facing_direction=2 blockId=225 -runtimeId=5535 +runtimeId=223 minecraft:lime_glazed_terracotta;facing_direction=3 blockId=225 -runtimeId=5536 +runtimeId=224 minecraft:lime_glazed_terracotta;facing_direction=4 blockId=225 -runtimeId=5537 +runtimeId=225 minecraft:lime_glazed_terracotta;facing_direction=5 blockId=225 -runtimeId=5538 +runtimeId=226 minecraft:lit_blast_furnace;facing_direction=0 blockId=469 -runtimeId=5539 +runtimeId=7018 minecraft:lit_blast_furnace;facing_direction=1 blockId=469 -runtimeId=5540 +runtimeId=7019 minecraft:lit_blast_furnace;facing_direction=2 blockId=469 -runtimeId=5541 +runtimeId=7020 minecraft:lit_blast_furnace;facing_direction=3 blockId=469 -runtimeId=5542 +runtimeId=7021 minecraft:lit_blast_furnace;facing_direction=4 blockId=469 -runtimeId=5543 +runtimeId=7022 minecraft:lit_blast_furnace;facing_direction=5 blockId=469 -runtimeId=5544 +runtimeId=7023 minecraft:lit_deepslate_redstone_ore blockId=659 -runtimeId=5545 +runtimeId=7544 minecraft:lit_furnace;facing_direction=0 blockId=62 -runtimeId=5546 +runtimeId=7185 minecraft:lit_furnace;facing_direction=1 blockId=62 -runtimeId=5547 +runtimeId=7186 minecraft:lit_furnace;facing_direction=2 blockId=62 -runtimeId=5548 +runtimeId=7187 minecraft:lit_furnace;facing_direction=3 blockId=62 -runtimeId=5549 +runtimeId=7188 minecraft:lit_furnace;facing_direction=4 blockId=62 -runtimeId=5550 +runtimeId=7189 minecraft:lit_furnace;facing_direction=5 blockId=62 -runtimeId=5551 +runtimeId=7190 minecraft:lit_pumpkin;direction=0 blockId=91 -runtimeId=5552 +runtimeId=6559 minecraft:lit_pumpkin;direction=1 blockId=91 -runtimeId=5553 +runtimeId=6560 minecraft:lit_pumpkin;direction=2 blockId=91 -runtimeId=5554 +runtimeId=6561 minecraft:lit_pumpkin;direction=3 blockId=91 -runtimeId=5555 +runtimeId=6562 minecraft:lit_redstone_lamp blockId=124 -runtimeId=5556 +runtimeId=4300 minecraft:lit_redstone_ore blockId=74 -runtimeId=5557 +runtimeId=4608 minecraft:lit_smoker;facing_direction=0 blockId=454 -runtimeId=5558 +runtimeId=7635 minecraft:lit_smoker;facing_direction=1 blockId=454 -runtimeId=5559 +runtimeId=7636 minecraft:lit_smoker;facing_direction=2 blockId=454 -runtimeId=5560 +runtimeId=7637 minecraft:lit_smoker;facing_direction=3 blockId=454 -runtimeId=5561 +runtimeId=7638 minecraft:lit_smoker;facing_direction=4 blockId=454 -runtimeId=5562 +runtimeId=7639 minecraft:lit_smoker;facing_direction=5 blockId=454 -runtimeId=5563 +runtimeId=7640 minecraft:lodestone blockId=477 -runtimeId=5564 +runtimeId=8201 minecraft:log;old_log_type=birch;pillar_axis=x blockId=17 -runtimeId=5571 +runtimeId=6552 minecraft:log;old_log_type=birch;pillar_axis=y blockId=17 -runtimeId=5567 +runtimeId=6548 minecraft:log;old_log_type=birch;pillar_axis=z blockId=17 -runtimeId=5575 +runtimeId=6556 minecraft:log;old_log_type=jungle;pillar_axis=x blockId=17 -runtimeId=5572 +runtimeId=6553 minecraft:log;old_log_type=jungle;pillar_axis=y blockId=17 -runtimeId=5568 +runtimeId=6549 minecraft:log;old_log_type=jungle;pillar_axis=z blockId=17 -runtimeId=5576 +runtimeId=6557 minecraft:log;old_log_type=oak;pillar_axis=x blockId=17 -runtimeId=5569 +runtimeId=6550 minecraft:log;old_log_type=oak;pillar_axis=y blockId=17 -runtimeId=5565 +runtimeId=6546 minecraft:log;old_log_type=oak;pillar_axis=z blockId=17 -runtimeId=5573 +runtimeId=6554 minecraft:log;old_log_type=spruce;pillar_axis=x blockId=17 -runtimeId=5570 +runtimeId=6551 minecraft:log;old_log_type=spruce;pillar_axis=y blockId=17 -runtimeId=5566 +runtimeId=6547 minecraft:log;old_log_type=spruce;pillar_axis=z blockId=17 -runtimeId=5574 +runtimeId=6555 minecraft:log2;new_log_type=acacia;pillar_axis=x blockId=162 -runtimeId=5579 +runtimeId=3837 minecraft:log2;new_log_type=acacia;pillar_axis=y blockId=162 -runtimeId=5577 +runtimeId=3835 minecraft:log2;new_log_type=acacia;pillar_axis=z blockId=162 -runtimeId=5581 +runtimeId=3839 minecraft:log2;new_log_type=dark_oak;pillar_axis=x blockId=162 -runtimeId=5580 +runtimeId=3838 minecraft:log2;new_log_type=dark_oak;pillar_axis=y blockId=162 -runtimeId=5578 +runtimeId=3836 minecraft:log2;new_log_type=dark_oak;pillar_axis=z blockId=162 -runtimeId=5582 +runtimeId=3840 minecraft:loom;direction=0 blockId=459 -runtimeId=5583 +runtimeId=3831 minecraft:loom;direction=1 blockId=459 -runtimeId=5584 +runtimeId=3832 minecraft:loom;direction=2 blockId=459 -runtimeId=5585 +runtimeId=3833 minecraft:loom;direction=3 blockId=459 -runtimeId=5586 +runtimeId=3834 minecraft:magenta_candle;lit=0;candles=0 blockId=670 -runtimeId=5587 +runtimeId=428 minecraft:magenta_candle;lit=0;candles=1 blockId=670 -runtimeId=5588 +runtimeId=429 minecraft:magenta_candle;lit=0;candles=2 blockId=670 -runtimeId=5589 +runtimeId=430 minecraft:magenta_candle;lit=0;candles=3 blockId=670 -runtimeId=5590 +runtimeId=431 minecraft:magenta_candle;lit=1;candles=0 blockId=670 -runtimeId=5591 +runtimeId=432 minecraft:magenta_candle;lit=1;candles=1 blockId=670 -runtimeId=5592 +runtimeId=433 minecraft:magenta_candle;lit=1;candles=2 blockId=670 -runtimeId=5593 +runtimeId=434 minecraft:magenta_candle;lit=1;candles=3 blockId=670 -runtimeId=5594 +runtimeId=435 minecraft:magenta_candle_cake;lit=0 blockId=687 -runtimeId=5595 +runtimeId=6012 minecraft:magenta_candle_cake;lit=1 blockId=687 -runtimeId=5596 +runtimeId=6013 minecraft:magenta_glazed_terracotta;facing_direction=0 blockId=222 -runtimeId=5597 +runtimeId=972 minecraft:magenta_glazed_terracotta;facing_direction=1 blockId=222 -runtimeId=5598 +runtimeId=973 minecraft:magenta_glazed_terracotta;facing_direction=2 blockId=222 -runtimeId=5599 +runtimeId=974 minecraft:magenta_glazed_terracotta;facing_direction=3 blockId=222 -runtimeId=5600 +runtimeId=975 minecraft:magenta_glazed_terracotta;facing_direction=4 blockId=222 -runtimeId=5601 +runtimeId=976 minecraft:magenta_glazed_terracotta;facing_direction=5 blockId=222 -runtimeId=5602 +runtimeId=977 minecraft:magma blockId=213 -runtimeId=5603 +runtimeId=7951 -minecraft:medium_amethyst_bud;facing_direction=0 -blockId=586 -runtimeId=5604 +minecraft:mangrove_leaves;persistent_bit=0;update_bit=0 +blockId=727 +runtimeId=6540 -minecraft:medium_amethyst_bud;facing_direction=1 -blockId=586 -runtimeId=5605 +minecraft:mangrove_leaves;persistent_bit=0;update_bit=1 +blockId=727 +runtimeId=6541 -minecraft:medium_amethyst_bud;facing_direction=2 -blockId=586 -runtimeId=5606 +minecraft:mangrove_leaves;persistent_bit=1;update_bit=0 +blockId=727 +runtimeId=6542 -minecraft:medium_amethyst_bud;facing_direction=3 -blockId=586 -runtimeId=5607 +minecraft:mangrove_leaves;persistent_bit=1;update_bit=1 +blockId=727 +runtimeId=6543 -minecraft:medium_amethyst_bud;facing_direction=4 -blockId=586 -runtimeId=5608 +minecraft:mangrove_propagule;facing_direction=0;growth=0 +blockId=729 +runtimeId=6892 -minecraft:medium_amethyst_bud;facing_direction=5 -blockId=586 -runtimeId=5609 +minecraft:mangrove_propagule;facing_direction=0;growth=1 +blockId=729 +runtimeId=6893 -minecraft:melon_block -blockId=103 -runtimeId=5610 +minecraft:mangrove_propagule;facing_direction=0;growth=2 +blockId=729 +runtimeId=6894 -minecraft:melon_stem;facing_direction=0;growth=0 -blockId=105 -runtimeId=5611 +minecraft:mangrove_propagule;facing_direction=0;growth=3 +blockId=729 +runtimeId=6895 -minecraft:melon_stem;facing_direction=0;growth=1 -blockId=105 -runtimeId=5612 +minecraft:mangrove_propagule;facing_direction=0;growth=4 +blockId=729 +runtimeId=6896 -minecraft:melon_stem;facing_direction=0;growth=2 -blockId=105 -runtimeId=5613 +minecraft:mangrove_propagule;facing_direction=0;growth=5 +blockId=729 +runtimeId=6897 -minecraft:melon_stem;facing_direction=0;growth=3 -blockId=105 -runtimeId=5614 +minecraft:mangrove_propagule;facing_direction=0;growth=6 +blockId=729 +runtimeId=6898 + +minecraft:mangrove_propagule;facing_direction=0;growth=7 +blockId=729 +runtimeId=6899 + +minecraft:mangrove_propagule;facing_direction=1;growth=0 +blockId=729 +runtimeId=6900 + +minecraft:mangrove_propagule;facing_direction=1;growth=1 +blockId=729 +runtimeId=6901 + +minecraft:mangrove_propagule;facing_direction=1;growth=2 +blockId=729 +runtimeId=6902 + +minecraft:mangrove_propagule;facing_direction=1;growth=3 +blockId=729 +runtimeId=6903 + +minecraft:mangrove_propagule;facing_direction=1;growth=4 +blockId=729 +runtimeId=6904 + +minecraft:mangrove_propagule;facing_direction=1;growth=5 +blockId=729 +runtimeId=6905 + +minecraft:mangrove_propagule;facing_direction=1;growth=6 +blockId=729 +runtimeId=6906 + +minecraft:mangrove_propagule;facing_direction=1;growth=7 +blockId=729 +runtimeId=6907 + +minecraft:mangrove_propagule;facing_direction=2;growth=0 +blockId=729 +runtimeId=6908 + +minecraft:mangrove_propagule;facing_direction=2;growth=1 +blockId=729 +runtimeId=6909 + +minecraft:mangrove_propagule;facing_direction=2;growth=2 +blockId=729 +runtimeId=6910 + +minecraft:mangrove_propagule;facing_direction=2;growth=3 +blockId=729 +runtimeId=6911 + +minecraft:mangrove_propagule;facing_direction=2;growth=4 +blockId=729 +runtimeId=6912 + +minecraft:mangrove_propagule;facing_direction=2;growth=5 +blockId=729 +runtimeId=6913 + +minecraft:mangrove_propagule;facing_direction=2;growth=6 +blockId=729 +runtimeId=6914 + +minecraft:mangrove_propagule;facing_direction=2;growth=7 +blockId=729 +runtimeId=6915 + +minecraft:mangrove_propagule;facing_direction=3;growth=0 +blockId=729 +runtimeId=6916 + +minecraft:mangrove_propagule;facing_direction=3;growth=1 +blockId=729 +runtimeId=6917 + +minecraft:mangrove_propagule;facing_direction=3;growth=2 +blockId=729 +runtimeId=6918 + +minecraft:mangrove_propagule;facing_direction=3;growth=3 +blockId=729 +runtimeId=6919 + +minecraft:mangrove_propagule;facing_direction=3;growth=4 +blockId=729 +runtimeId=6920 + +minecraft:mangrove_propagule;facing_direction=3;growth=5 +blockId=729 +runtimeId=6921 + +minecraft:mangrove_propagule;facing_direction=3;growth=6 +blockId=729 +runtimeId=6922 + +minecraft:mangrove_propagule;facing_direction=3;growth=7 +blockId=729 +runtimeId=6923 + +minecraft:mangrove_propagule;facing_direction=4;growth=0 +blockId=729 +runtimeId=6924 + +minecraft:mangrove_propagule;facing_direction=4;growth=1 +blockId=729 +runtimeId=6925 + +minecraft:mangrove_propagule;facing_direction=4;growth=2 +blockId=729 +runtimeId=6926 + +minecraft:mangrove_propagule;facing_direction=4;growth=3 +blockId=729 +runtimeId=6927 + +minecraft:mangrove_propagule;facing_direction=4;growth=4 +blockId=729 +runtimeId=6928 + +minecraft:mangrove_propagule;facing_direction=4;growth=5 +blockId=729 +runtimeId=6929 + +minecraft:mangrove_propagule;facing_direction=4;growth=6 +blockId=729 +runtimeId=6930 + +minecraft:mangrove_propagule;facing_direction=4;growth=7 +blockId=729 +runtimeId=6931 + +minecraft:mangrove_propagule;facing_direction=5;growth=0 +blockId=729 +runtimeId=6932 + +minecraft:mangrove_propagule;facing_direction=5;growth=1 +blockId=729 +runtimeId=6933 + +minecraft:mangrove_propagule;facing_direction=5;growth=2 +blockId=729 +runtimeId=6934 + +minecraft:mangrove_propagule;facing_direction=5;growth=3 +blockId=729 +runtimeId=6935 + +minecraft:mangrove_propagule;facing_direction=5;growth=4 +blockId=729 +runtimeId=6936 + +minecraft:mangrove_propagule;facing_direction=5;growth=5 +blockId=729 +runtimeId=6937 + +minecraft:mangrove_propagule;facing_direction=5;growth=6 +blockId=729 +runtimeId=6938 + +minecraft:mangrove_propagule;facing_direction=5;growth=7 +blockId=729 +runtimeId=6939 + +minecraft:mangrove_propagule_hanging;facing_direction=0;growth=0 +blockId=731 +runtimeId=4547 + +minecraft:mangrove_propagule_hanging;facing_direction=0;growth=1 +blockId=731 +runtimeId=4548 + +minecraft:mangrove_propagule_hanging;facing_direction=0;growth=2 +blockId=731 +runtimeId=4549 + +minecraft:mangrove_propagule_hanging;facing_direction=0;growth=3 +blockId=731 +runtimeId=4550 + +minecraft:mangrove_propagule_hanging;facing_direction=0;growth=4 +blockId=731 +runtimeId=4551 + +minecraft:mangrove_propagule_hanging;facing_direction=0;growth=5 +blockId=731 +runtimeId=4552 + +minecraft:mangrove_propagule_hanging;facing_direction=0;growth=6 +blockId=731 +runtimeId=4553 + +minecraft:mangrove_propagule_hanging;facing_direction=0;growth=7 +blockId=731 +runtimeId=4554 + +minecraft:mangrove_propagule_hanging;facing_direction=1;growth=0 +blockId=731 +runtimeId=4555 + +minecraft:mangrove_propagule_hanging;facing_direction=1;growth=1 +blockId=731 +runtimeId=4556 + +minecraft:mangrove_propagule_hanging;facing_direction=1;growth=2 +blockId=731 +runtimeId=4557 + +minecraft:mangrove_propagule_hanging;facing_direction=1;growth=3 +blockId=731 +runtimeId=4558 + +minecraft:mangrove_propagule_hanging;facing_direction=1;growth=4 +blockId=731 +runtimeId=4559 + +minecraft:mangrove_propagule_hanging;facing_direction=1;growth=5 +blockId=731 +runtimeId=4560 + +minecraft:mangrove_propagule_hanging;facing_direction=1;growth=6 +blockId=731 +runtimeId=4561 + +minecraft:mangrove_propagule_hanging;facing_direction=1;growth=7 +blockId=731 +runtimeId=4562 + +minecraft:mangrove_propagule_hanging;facing_direction=2;growth=0 +blockId=731 +runtimeId=4563 + +minecraft:mangrove_propagule_hanging;facing_direction=2;growth=1 +blockId=731 +runtimeId=4564 + +minecraft:mangrove_propagule_hanging;facing_direction=2;growth=2 +blockId=731 +runtimeId=4565 + +minecraft:mangrove_propagule_hanging;facing_direction=2;growth=3 +blockId=731 +runtimeId=4566 + +minecraft:mangrove_propagule_hanging;facing_direction=2;growth=4 +blockId=731 +runtimeId=4567 + +minecraft:mangrove_propagule_hanging;facing_direction=2;growth=5 +blockId=731 +runtimeId=4568 + +minecraft:mangrove_propagule_hanging;facing_direction=2;growth=6 +blockId=731 +runtimeId=4569 + +minecraft:mangrove_propagule_hanging;facing_direction=2;growth=7 +blockId=731 +runtimeId=4570 + +minecraft:mangrove_propagule_hanging;facing_direction=3;growth=0 +blockId=731 +runtimeId=4571 + +minecraft:mangrove_propagule_hanging;facing_direction=3;growth=1 +blockId=731 +runtimeId=4572 + +minecraft:mangrove_propagule_hanging;facing_direction=3;growth=2 +blockId=731 +runtimeId=4573 + +minecraft:mangrove_propagule_hanging;facing_direction=3;growth=3 +blockId=731 +runtimeId=4574 + +minecraft:mangrove_propagule_hanging;facing_direction=3;growth=4 +blockId=731 +runtimeId=4575 + +minecraft:mangrove_propagule_hanging;facing_direction=3;growth=5 +blockId=731 +runtimeId=4576 + +minecraft:mangrove_propagule_hanging;facing_direction=3;growth=6 +blockId=731 +runtimeId=4577 + +minecraft:mangrove_propagule_hanging;facing_direction=3;growth=7 +blockId=731 +runtimeId=4578 + +minecraft:mangrove_propagule_hanging;facing_direction=4;growth=0 +blockId=731 +runtimeId=4579 + +minecraft:mangrove_propagule_hanging;facing_direction=4;growth=1 +blockId=731 +runtimeId=4580 + +minecraft:mangrove_propagule_hanging;facing_direction=4;growth=2 +blockId=731 +runtimeId=4581 + +minecraft:mangrove_propagule_hanging;facing_direction=4;growth=3 +blockId=731 +runtimeId=4582 + +minecraft:mangrove_propagule_hanging;facing_direction=4;growth=4 +blockId=731 +runtimeId=4583 + +minecraft:mangrove_propagule_hanging;facing_direction=4;growth=5 +blockId=731 +runtimeId=4584 + +minecraft:mangrove_propagule_hanging;facing_direction=4;growth=6 +blockId=731 +runtimeId=4585 + +minecraft:mangrove_propagule_hanging;facing_direction=4;growth=7 +blockId=731 +runtimeId=4586 + +minecraft:mangrove_propagule_hanging;facing_direction=5;growth=0 +blockId=731 +runtimeId=4587 + +minecraft:mangrove_propagule_hanging;facing_direction=5;growth=1 +blockId=731 +runtimeId=4588 + +minecraft:mangrove_propagule_hanging;facing_direction=5;growth=2 +blockId=731 +runtimeId=4589 + +minecraft:mangrove_propagule_hanging;facing_direction=5;growth=3 +blockId=731 +runtimeId=4590 + +minecraft:mangrove_propagule_hanging;facing_direction=5;growth=4 +blockId=731 +runtimeId=4591 + +minecraft:mangrove_propagule_hanging;facing_direction=5;growth=5 +blockId=731 +runtimeId=4592 + +minecraft:mangrove_propagule_hanging;facing_direction=5;growth=6 +blockId=731 +runtimeId=4593 + +minecraft:mangrove_propagule_hanging;facing_direction=5;growth=7 +blockId=731 +runtimeId=4594 + +minecraft:medium_amethyst_bud;facing_direction=0 +blockId=586 +runtimeId=4323 + +minecraft:medium_amethyst_bud;facing_direction=1 +blockId=586 +runtimeId=4324 + +minecraft:medium_amethyst_bud;facing_direction=2 +blockId=586 +runtimeId=4325 + +minecraft:medium_amethyst_bud;facing_direction=3 +blockId=586 +runtimeId=4326 + +minecraft:medium_amethyst_bud;facing_direction=4 +blockId=586 +runtimeId=4327 + +minecraft:medium_amethyst_bud;facing_direction=5 +blockId=586 +runtimeId=4328 + +minecraft:melon_block +blockId=103 +runtimeId=402 + +minecraft:melon_stem;facing_direction=0;growth=0 +blockId=105 +runtimeId=4758 + +minecraft:melon_stem;facing_direction=0;growth=1 +blockId=105 +runtimeId=4759 + +minecraft:melon_stem;facing_direction=0;growth=2 +blockId=105 +runtimeId=4760 + +minecraft:melon_stem;facing_direction=0;growth=3 +blockId=105 +runtimeId=4761 minecraft:melon_stem;facing_direction=0;growth=4 blockId=105 -runtimeId=5615 +runtimeId=4762 minecraft:melon_stem;facing_direction=0;growth=5 blockId=105 -runtimeId=5616 +runtimeId=4763 minecraft:melon_stem;facing_direction=0;growth=6 blockId=105 -runtimeId=5617 +runtimeId=4764 minecraft:melon_stem;facing_direction=0;growth=7 blockId=105 -runtimeId=5618 +runtimeId=4765 minecraft:melon_stem;facing_direction=1;growth=0 blockId=105 -runtimeId=5619 +runtimeId=4766 minecraft:melon_stem;facing_direction=1;growth=1 blockId=105 -runtimeId=5620 +runtimeId=4767 minecraft:melon_stem;facing_direction=1;growth=2 blockId=105 -runtimeId=5621 +runtimeId=4768 minecraft:melon_stem;facing_direction=1;growth=3 blockId=105 -runtimeId=5622 +runtimeId=4769 minecraft:melon_stem;facing_direction=1;growth=4 blockId=105 -runtimeId=5623 +runtimeId=4770 minecraft:melon_stem;facing_direction=1;growth=5 blockId=105 -runtimeId=5624 +runtimeId=4771 minecraft:melon_stem;facing_direction=1;growth=6 blockId=105 -runtimeId=5625 +runtimeId=4772 minecraft:melon_stem;facing_direction=1;growth=7 blockId=105 -runtimeId=5626 +runtimeId=4773 minecraft:melon_stem;facing_direction=2;growth=0 blockId=105 -runtimeId=5627 +runtimeId=4774 minecraft:melon_stem;facing_direction=2;growth=1 blockId=105 -runtimeId=5628 +runtimeId=4775 minecraft:melon_stem;facing_direction=2;growth=2 blockId=105 -runtimeId=5629 +runtimeId=4776 minecraft:melon_stem;facing_direction=2;growth=3 blockId=105 -runtimeId=5630 +runtimeId=4777 minecraft:melon_stem;facing_direction=2;growth=4 blockId=105 -runtimeId=5631 +runtimeId=4778 minecraft:melon_stem;facing_direction=2;growth=5 blockId=105 -runtimeId=5632 +runtimeId=4779 minecraft:melon_stem;facing_direction=2;growth=6 blockId=105 -runtimeId=5633 +runtimeId=4780 minecraft:melon_stem;facing_direction=2;growth=7 blockId=105 -runtimeId=5634 +runtimeId=4781 minecraft:melon_stem;facing_direction=3;growth=0 blockId=105 -runtimeId=5635 +runtimeId=4782 minecraft:melon_stem;facing_direction=3;growth=1 blockId=105 -runtimeId=5636 +runtimeId=4783 minecraft:melon_stem;facing_direction=3;growth=2 blockId=105 -runtimeId=5637 +runtimeId=4784 minecraft:melon_stem;facing_direction=3;growth=3 blockId=105 -runtimeId=5638 +runtimeId=4785 minecraft:melon_stem;facing_direction=3;growth=4 blockId=105 -runtimeId=5639 +runtimeId=4786 minecraft:melon_stem;facing_direction=3;growth=5 blockId=105 -runtimeId=5640 +runtimeId=4787 minecraft:melon_stem;facing_direction=3;growth=6 blockId=105 -runtimeId=5641 +runtimeId=4788 minecraft:melon_stem;facing_direction=3;growth=7 blockId=105 -runtimeId=5642 +runtimeId=4789 minecraft:melon_stem;facing_direction=4;growth=0 blockId=105 -runtimeId=5643 +runtimeId=4790 minecraft:melon_stem;facing_direction=4;growth=1 blockId=105 -runtimeId=5644 +runtimeId=4791 minecraft:melon_stem;facing_direction=4;growth=2 blockId=105 -runtimeId=5645 +runtimeId=4792 minecraft:melon_stem;facing_direction=4;growth=3 blockId=105 -runtimeId=5646 +runtimeId=4793 minecraft:melon_stem;facing_direction=4;growth=4 blockId=105 -runtimeId=5647 +runtimeId=4794 minecraft:melon_stem;facing_direction=4;growth=5 blockId=105 -runtimeId=5648 +runtimeId=4795 minecraft:melon_stem;facing_direction=4;growth=6 blockId=105 -runtimeId=5649 +runtimeId=4796 minecraft:melon_stem;facing_direction=4;growth=7 blockId=105 -runtimeId=5650 +runtimeId=4797 minecraft:melon_stem;facing_direction=5;growth=0 blockId=105 -runtimeId=5651 +runtimeId=4798 minecraft:melon_stem;facing_direction=5;growth=1 blockId=105 -runtimeId=5652 +runtimeId=4799 minecraft:melon_stem;facing_direction=5;growth=2 blockId=105 -runtimeId=5653 +runtimeId=4800 minecraft:melon_stem;facing_direction=5;growth=3 blockId=105 -runtimeId=5654 +runtimeId=4801 minecraft:melon_stem;facing_direction=5;growth=4 blockId=105 -runtimeId=5655 +runtimeId=4802 minecraft:melon_stem;facing_direction=5;growth=5 blockId=105 -runtimeId=5656 +runtimeId=4803 minecraft:melon_stem;facing_direction=5;growth=6 blockId=105 -runtimeId=5657 +runtimeId=4804 minecraft:melon_stem;facing_direction=5;growth=7 blockId=105 -runtimeId=5658 +runtimeId=4805 minecraft:mob_spawner blockId=52 -runtimeId=5659 +runtimeId=411 minecraft:monster_egg;monster_egg_stone_type=chiseled_stone_brick blockId=97 -runtimeId=5665 +runtimeId=4138 minecraft:monster_egg;monster_egg_stone_type=cobblestone blockId=97 -runtimeId=5661 +runtimeId=4134 minecraft:monster_egg;monster_egg_stone_type=cracked_stone_brick blockId=97 -runtimeId=5664 +runtimeId=4137 minecraft:monster_egg;monster_egg_stone_type=mossy_stone_brick blockId=97 -runtimeId=5663 +runtimeId=4136 minecraft:monster_egg;monster_egg_stone_type=stone blockId=97 -runtimeId=5660 +runtimeId=4133 + +minecraft:monster_egg;monster_egg_stone_type=stone_brick +blockId=97 +runtimeId=4135 + +minecraft:moss_block +blockId=575 +runtimeId=6429 + +minecraft:moss_carpet +blockId=590 +runtimeId=300 + +minecraft:mossy_cobblestone +blockId=48 +runtimeId=266 + +minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=0 +blockId=434 +runtimeId=4081 + +minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=1 +blockId=434 +runtimeId=4082 + +minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=2 +blockId=434 +runtimeId=4083 + +minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=3 +blockId=434 +runtimeId=4084 + +minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=0 +blockId=434 +runtimeId=4085 + +minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=1 +blockId=434 +runtimeId=4086 + +minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=2 +blockId=434 +runtimeId=4087 + +minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=3 +blockId=434 +runtimeId=4088 + +minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=0 +blockId=430 +runtimeId=5807 + +minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=1 +blockId=430 +runtimeId=5808 + +minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=2 +blockId=430 +runtimeId=5809 + +minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=3 +blockId=430 +runtimeId=5810 + +minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=0 +blockId=430 +runtimeId=5811 + +minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=1 +blockId=430 +runtimeId=5812 + +minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=2 +blockId=430 +runtimeId=5813 + +minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=3 +blockId=430 +runtimeId=5814 + +minecraft:moving_block +blockId=250 +runtimeId=5532 + +minecraft:mud +blockId=728 +runtimeId=6558 + +minecraft:mud_brick_double_slab;top_slot_bit=0 +blockId=734 +runtimeId=203 + +minecraft:mud_brick_double_slab;top_slot_bit=1 +blockId=734 +runtimeId=204 + +minecraft:mud_brick_slab;top_slot_bit=0 +blockId=733 +runtimeId=3899 + +minecraft:mud_brick_slab;top_slot_bit=1 +blockId=733 +runtimeId=3900 + +minecraft:mud_brick_stairs;upside_down_bit=0;weirdo_direction=0 +blockId=735 +runtimeId=5472 + +minecraft:mud_brick_stairs;upside_down_bit=0;weirdo_direction=1 +blockId=735 +runtimeId=5473 + +minecraft:mud_brick_stairs;upside_down_bit=0;weirdo_direction=2 +blockId=735 +runtimeId=5474 + +minecraft:mud_brick_stairs;upside_down_bit=0;weirdo_direction=3 +blockId=735 +runtimeId=5475 + +minecraft:mud_brick_stairs;upside_down_bit=1;weirdo_direction=0 +blockId=735 +runtimeId=5476 + +minecraft:mud_brick_stairs;upside_down_bit=1;weirdo_direction=1 +blockId=735 +runtimeId=5477 + +minecraft:mud_brick_stairs;upside_down_bit=1;weirdo_direction=2 +blockId=735 +runtimeId=5478 + +minecraft:mud_brick_stairs;upside_down_bit=1;weirdo_direction=3 +blockId=735 +runtimeId=5479 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=738 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=740 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=742 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=792 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=794 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=796 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=846 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=848 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=850 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=756 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=758 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=760 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=810 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=812 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=814 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=864 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=866 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=868 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=774 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=776 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=778 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=828 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=830 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=832 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=882 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=884 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=886 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=739 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=741 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=743 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=793 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=795 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=797 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=847 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=849 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=851 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=757 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=759 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=761 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=811 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=813 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=815 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=865 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=867 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=869 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=775 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=777 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=779 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=829 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=831 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=833 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=883 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=885 + +minecraft:mud_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=887 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=744 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=746 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=748 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=798 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=800 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=802 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=852 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=854 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=856 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=762 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=764 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=766 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=816 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=818 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=820 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=870 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=872 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=874 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=780 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=782 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=784 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=834 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=836 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=838 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=888 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=890 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=892 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=745 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=747 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=749 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=799 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=801 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=803 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=853 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=855 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=857 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=763 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=765 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=767 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=817 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=819 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=821 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=871 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=873 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=875 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=781 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=783 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=785 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=835 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=837 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=839 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=889 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=891 + +minecraft:mud_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=893 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=750 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=752 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=754 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=804 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=806 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=808 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=858 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=860 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=862 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=768 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=770 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=772 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=822 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=824 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=826 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=876 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=878 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=880 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=786 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=788 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=790 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=840 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=842 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=844 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=894 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=896 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=898 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=751 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=753 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=755 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=805 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=807 + +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=809 -minecraft:monster_egg;monster_egg_stone_type=stone_brick -blockId=97 -runtimeId=5662 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=859 -minecraft:moss_block -blockId=575 -runtimeId=5666 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=861 -minecraft:moss_carpet -blockId=590 -runtimeId=5667 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=863 -minecraft:mossy_cobblestone -blockId=48 -runtimeId=5668 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=769 -minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=0 -blockId=434 -runtimeId=5669 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=771 -minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=1 -blockId=434 -runtimeId=5670 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=773 -minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=2 -blockId=434 -runtimeId=5671 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=823 -minecraft:mossy_cobblestone_stairs;upside_down_bit=0;weirdo_direction=3 -blockId=434 -runtimeId=5672 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=825 -minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=0 -blockId=434 -runtimeId=5673 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=827 -minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=1 -blockId=434 -runtimeId=5674 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=877 -minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=2 -blockId=434 -runtimeId=5675 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=879 -minecraft:mossy_cobblestone_stairs;upside_down_bit=1;weirdo_direction=3 -blockId=434 -runtimeId=5676 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=881 -minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=0 -blockId=430 -runtimeId=5677 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none +blockId=736 +runtimeId=787 -minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=1 -blockId=430 -runtimeId=5678 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short +blockId=736 +runtimeId=789 -minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=2 -blockId=430 -runtimeId=5679 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall +blockId=736 +runtimeId=791 -minecraft:mossy_stone_brick_stairs;upside_down_bit=0;weirdo_direction=3 -blockId=430 -runtimeId=5680 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none +blockId=736 +runtimeId=841 -minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=0 -blockId=430 -runtimeId=5681 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short +blockId=736 +runtimeId=843 -minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=1 -blockId=430 -runtimeId=5682 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall +blockId=736 +runtimeId=845 -minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=2 -blockId=430 -runtimeId=5683 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none +blockId=736 +runtimeId=895 -minecraft:mossy_stone_brick_stairs;upside_down_bit=1;weirdo_direction=3 -blockId=430 -runtimeId=5684 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short +blockId=736 +runtimeId=897 -minecraft:movingBlock -blockId=250 -runtimeId=5685 +minecraft:mud_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall +blockId=736 +runtimeId=899 + +minecraft:mud_bricks +blockId=730 +runtimeId=6805 minecraft:mycelium blockId=110 -runtimeId=5686 - -minecraft:mysterious_frame -blockId=721 -runtimeId=5687 - -minecraft:mysterious_frame_slot -blockId=722 -runtimeId=5688 +runtimeId=3688 minecraft:nether_brick blockId=112 -runtimeId=5689 +runtimeId=7214 minecraft:nether_brick_fence blockId=113 -runtimeId=5690 +runtimeId=4238 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=114 -runtimeId=5691 +runtimeId=106 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=114 -runtimeId=5692 +runtimeId=107 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=114 -runtimeId=5693 +runtimeId=108 minecraft:nether_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=114 -runtimeId=5694 +runtimeId=109 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=114 -runtimeId=5695 +runtimeId=110 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=114 -runtimeId=5696 +runtimeId=111 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=114 -runtimeId=5697 +runtimeId=112 minecraft:nether_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=114 -runtimeId=5698 +runtimeId=113 minecraft:nether_gold_ore blockId=543 -runtimeId=5699 +runtimeId=27 minecraft:nether_sprouts blockId=493 -runtimeId=5700 +runtimeId=6371 minecraft:nether_wart;age=0 blockId=115 -runtimeId=5701 +runtimeId=7689 minecraft:nether_wart;age=1 blockId=115 -runtimeId=5702 +runtimeId=7690 minecraft:nether_wart;age=2 blockId=115 -runtimeId=5703 +runtimeId=7691 minecraft:nether_wart;age=3 blockId=115 -runtimeId=5704 +runtimeId=7692 minecraft:nether_wart_block blockId=214 -runtimeId=5705 +runtimeId=4241 minecraft:netherite_block blockId=525 -runtimeId=5706 +runtimeId=3780 minecraft:netherrack blockId=87 -runtimeId=5707 +runtimeId=6991 minecraft:netherreactor blockId=247 -runtimeId=5708 +runtimeId=7363 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=435 -runtimeId=5709 +runtimeId=641 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=435 -runtimeId=5710 +runtimeId=642 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=435 -runtimeId=5711 +runtimeId=643 minecraft:normal_stone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=435 -runtimeId=5712 +runtimeId=644 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=435 -runtimeId=5713 +runtimeId=645 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=435 -runtimeId=5714 +runtimeId=646 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=435 -runtimeId=5715 +runtimeId=647 minecraft:normal_stone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=435 -runtimeId=5716 +runtimeId=648 minecraft:noteblock blockId=25 -runtimeId=5717 +runtimeId=359 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=0 blockId=53 -runtimeId=5718 +runtimeId=287 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=1 blockId=53 -runtimeId=5719 +runtimeId=288 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=2 blockId=53 -runtimeId=5720 +runtimeId=289 minecraft:oak_stairs;upside_down_bit=0;weirdo_direction=3 blockId=53 -runtimeId=5721 +runtimeId=290 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=0 blockId=53 -runtimeId=5722 +runtimeId=291 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=1 blockId=53 -runtimeId=5723 +runtimeId=292 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=2 blockId=53 -runtimeId=5724 +runtimeId=293 minecraft:oak_stairs;upside_down_bit=1;weirdo_direction=3 blockId=53 -runtimeId=5725 +runtimeId=294 minecraft:observer;facing_direction=0;powered_bit=0 blockId=251 -runtimeId=5726 +runtimeId=3518 minecraft:observer;facing_direction=0;powered_bit=1 blockId=251 -runtimeId=5732 +runtimeId=3524 minecraft:observer;facing_direction=1;powered_bit=0 blockId=251 -runtimeId=5727 +runtimeId=3519 minecraft:observer;facing_direction=1;powered_bit=1 blockId=251 -runtimeId=5733 +runtimeId=3525 minecraft:observer;facing_direction=2;powered_bit=0 blockId=251 -runtimeId=5728 +runtimeId=3520 minecraft:observer;facing_direction=2;powered_bit=1 blockId=251 -runtimeId=5734 +runtimeId=3526 minecraft:observer;facing_direction=3;powered_bit=0 blockId=251 -runtimeId=5729 +runtimeId=3521 minecraft:observer;facing_direction=3;powered_bit=1 blockId=251 -runtimeId=5735 +runtimeId=3527 minecraft:observer;facing_direction=4;powered_bit=0 blockId=251 -runtimeId=5730 +runtimeId=3522 minecraft:observer;facing_direction=4;powered_bit=1 blockId=251 -runtimeId=5736 +runtimeId=3528 minecraft:observer;facing_direction=5;powered_bit=0 blockId=251 -runtimeId=5731 +runtimeId=3523 minecraft:observer;facing_direction=5;powered_bit=1 blockId=251 -runtimeId=5737 +runtimeId=3529 minecraft:obsidian blockId=49 -runtimeId=5738 +runtimeId=436 -minecraft:ochre_froglight -blockId=-1 -runtimeId=5739 +minecraft:ochre_froglight;pillar_axis=x +blockId=726 +runtimeId=3516 + +minecraft:ochre_froglight;pillar_axis=y +blockId=726 +runtimeId=3515 + +minecraft:ochre_froglight;pillar_axis=z +blockId=726 +runtimeId=3517 minecraft:orange_candle;lit=0;candles=0 blockId=669 -runtimeId=5740 +runtimeId=372 minecraft:orange_candle;lit=0;candles=1 blockId=669 -runtimeId=5741 +runtimeId=373 minecraft:orange_candle;lit=0;candles=2 blockId=669 -runtimeId=5742 +runtimeId=374 minecraft:orange_candle;lit=0;candles=3 blockId=669 -runtimeId=5743 +runtimeId=375 minecraft:orange_candle;lit=1;candles=0 blockId=669 -runtimeId=5744 +runtimeId=376 minecraft:orange_candle;lit=1;candles=1 blockId=669 -runtimeId=5745 +runtimeId=377 minecraft:orange_candle;lit=1;candles=2 blockId=669 -runtimeId=5746 +runtimeId=378 minecraft:orange_candle;lit=1;candles=3 blockId=669 -runtimeId=5747 +runtimeId=379 minecraft:orange_candle_cake;lit=0 blockId=686 -runtimeId=5748 +runtimeId=8186 minecraft:orange_candle_cake;lit=1 blockId=686 -runtimeId=5749 +runtimeId=8187 minecraft:orange_glazed_terracotta;facing_direction=0 blockId=221 -runtimeId=5750 +runtimeId=1156 minecraft:orange_glazed_terracotta;facing_direction=1 blockId=221 -runtimeId=5751 +runtimeId=1157 minecraft:orange_glazed_terracotta;facing_direction=2 blockId=221 -runtimeId=5752 +runtimeId=1158 minecraft:orange_glazed_terracotta;facing_direction=3 blockId=221 -runtimeId=5753 +runtimeId=1159 minecraft:orange_glazed_terracotta;facing_direction=4 blockId=221 -runtimeId=5754 +runtimeId=1160 minecraft:orange_glazed_terracotta;facing_direction=5 blockId=221 -runtimeId=5755 +runtimeId=1161 minecraft:oxidized_copper blockId=598 -runtimeId=5756 +runtimeId=3558 minecraft:oxidized_cut_copper blockId=605 -runtimeId=5757 +runtimeId=5428 minecraft:oxidized_cut_copper_slab;top_slot_bit=0 blockId=619 -runtimeId=5758 +runtimeId=5232 minecraft:oxidized_cut_copper_slab;top_slot_bit=1 blockId=619 -runtimeId=5759 +runtimeId=5233 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=612 -runtimeId=5760 +runtimeId=361 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=612 -runtimeId=5761 +runtimeId=362 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=612 -runtimeId=5762 +runtimeId=363 minecraft:oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=612 -runtimeId=5763 +runtimeId=364 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=612 -runtimeId=5764 +runtimeId=365 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=612 -runtimeId=5765 +runtimeId=366 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=612 -runtimeId=5766 +runtimeId=367 minecraft:oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=612 -runtimeId=5767 +runtimeId=368 minecraft:oxidized_double_cut_copper_slab;top_slot_bit=0 blockId=626 -runtimeId=5768 +runtimeId=599 minecraft:oxidized_double_cut_copper_slab;top_slot_bit=1 blockId=626 -runtimeId=5769 +runtimeId=600 minecraft:packed_ice blockId=174 -runtimeId=5770 +runtimeId=296 -minecraft:pearlescent_froglight -blockId=-1 -runtimeId=5771 +minecraft:packed_mud +blockId=732 +runtimeId=297 + +minecraft:pearlescent_froglight;pillar_axis=x +blockId=724 +runtimeId=6369 + +minecraft:pearlescent_froglight;pillar_axis=y +blockId=724 +runtimeId=6368 + +minecraft:pearlescent_froglight;pillar_axis=z +blockId=724 +runtimeId=6370 minecraft:pink_candle;lit=0;candles=0 blockId=674 -runtimeId=5772 +runtimeId=7312 minecraft:pink_candle;lit=0;candles=1 blockId=674 -runtimeId=5773 +runtimeId=7313 minecraft:pink_candle;lit=0;candles=2 blockId=674 -runtimeId=5774 +runtimeId=7314 minecraft:pink_candle;lit=0;candles=3 blockId=674 -runtimeId=5775 +runtimeId=7315 minecraft:pink_candle;lit=1;candles=0 blockId=674 -runtimeId=5776 +runtimeId=7316 minecraft:pink_candle;lit=1;candles=1 blockId=674 -runtimeId=5777 +runtimeId=7317 minecraft:pink_candle;lit=1;candles=2 blockId=674 -runtimeId=5778 +runtimeId=7318 minecraft:pink_candle;lit=1;candles=3 blockId=674 -runtimeId=5779 +runtimeId=7319 minecraft:pink_candle_cake;lit=0 blockId=691 -runtimeId=5780 +runtimeId=4147 minecraft:pink_candle_cake;lit=1 blockId=691 -runtimeId=5781 +runtimeId=4148 minecraft:pink_glazed_terracotta;facing_direction=0 blockId=226 -runtimeId=5782 +runtimeId=6430 minecraft:pink_glazed_terracotta;facing_direction=1 blockId=226 -runtimeId=5783 +runtimeId=6431 minecraft:pink_glazed_terracotta;facing_direction=2 blockId=226 -runtimeId=5784 +runtimeId=6432 minecraft:pink_glazed_terracotta;facing_direction=3 blockId=226 -runtimeId=5785 +runtimeId=6433 minecraft:pink_glazed_terracotta;facing_direction=4 blockId=226 -runtimeId=5786 +runtimeId=6434 minecraft:pink_glazed_terracotta;facing_direction=5 blockId=226 -runtimeId=5787 +runtimeId=6435 minecraft:piston;facing_direction=0 blockId=33 -runtimeId=5788 +runtimeId=929 minecraft:piston;facing_direction=1 blockId=33 -runtimeId=5789 +runtimeId=930 minecraft:piston;facing_direction=2 blockId=33 -runtimeId=5790 +runtimeId=931 minecraft:piston;facing_direction=3 blockId=33 -runtimeId=5791 +runtimeId=932 minecraft:piston;facing_direction=4 blockId=33 -runtimeId=5792 +runtimeId=933 minecraft:piston;facing_direction=5 blockId=33 -runtimeId=5793 +runtimeId=934 -minecraft:pistonArmCollision;facing_direction=0 +minecraft:piston_arm_collision;facing_direction=0 blockId=34 -runtimeId=5794 +runtimeId=60 -minecraft:pistonArmCollision;facing_direction=1 +minecraft:piston_arm_collision;facing_direction=1 blockId=34 -runtimeId=5795 +runtimeId=61 -minecraft:pistonArmCollision;facing_direction=2 +minecraft:piston_arm_collision;facing_direction=2 blockId=34 -runtimeId=5796 +runtimeId=62 -minecraft:pistonArmCollision;facing_direction=3 +minecraft:piston_arm_collision;facing_direction=3 blockId=34 -runtimeId=5797 +runtimeId=63 -minecraft:pistonArmCollision;facing_direction=4 +minecraft:piston_arm_collision;facing_direction=4 blockId=34 -runtimeId=5798 +runtimeId=64 -minecraft:pistonArmCollision;facing_direction=5 +minecraft:piston_arm_collision;facing_direction=5 blockId=34 -runtimeId=5799 +runtimeId=65 minecraft:planks;wood_type=acacia blockId=5 -runtimeId=5804 +runtimeId=5999 minecraft:planks;wood_type=birch blockId=5 -runtimeId=5802 +runtimeId=5997 minecraft:planks;wood_type=dark_oak blockId=5 -runtimeId=5805 +runtimeId=6000 minecraft:planks;wood_type=jungle blockId=5 -runtimeId=5803 +runtimeId=5998 minecraft:planks;wood_type=oak blockId=5 -runtimeId=5800 +runtimeId=5995 minecraft:planks;wood_type=spruce blockId=5 -runtimeId=5801 +runtimeId=5996 minecraft:podzol blockId=243 -runtimeId=5806 +runtimeId=4606 minecraft:pointed_dripstone;dripstone_thickness=base;hanging=0 blockId=563 -runtimeId=5810 +runtimeId=7356 minecraft:pointed_dripstone;dripstone_thickness=base;hanging=1 blockId=563 -runtimeId=5815 +runtimeId=7361 minecraft:pointed_dripstone;dripstone_thickness=frustum;hanging=0 blockId=563 -runtimeId=5808 +runtimeId=7354 minecraft:pointed_dripstone;dripstone_thickness=frustum;hanging=1 blockId=563 -runtimeId=5813 +runtimeId=7359 minecraft:pointed_dripstone;dripstone_thickness=merge;hanging=0 blockId=563 -runtimeId=5811 +runtimeId=7357 minecraft:pointed_dripstone;dripstone_thickness=merge;hanging=1 blockId=563 -runtimeId=5816 +runtimeId=7362 minecraft:pointed_dripstone;dripstone_thickness=middle;hanging=0 blockId=563 -runtimeId=5809 +runtimeId=7355 minecraft:pointed_dripstone;dripstone_thickness=middle;hanging=1 blockId=563 -runtimeId=5814 +runtimeId=7360 minecraft:pointed_dripstone;dripstone_thickness=tip;hanging=0 blockId=563 -runtimeId=5807 +runtimeId=7353 minecraft:pointed_dripstone;dripstone_thickness=tip;hanging=1 blockId=563 -runtimeId=5812 +runtimeId=7358 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=429 -runtimeId=5817 +runtimeId=6982 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=429 -runtimeId=5818 +runtimeId=6983 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=429 -runtimeId=5819 +runtimeId=6984 minecraft:polished_andesite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=429 -runtimeId=5820 +runtimeId=6985 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=429 -runtimeId=5821 +runtimeId=6986 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=429 -runtimeId=5822 +runtimeId=6987 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=429 -runtimeId=5823 +runtimeId=6988 minecraft:polished_andesite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=429 -runtimeId=5824 +runtimeId=6989 minecraft:polished_basalt;pillar_axis=x blockId=490 -runtimeId=5826 +runtimeId=25 minecraft:polished_basalt;pillar_axis=y blockId=490 -runtimeId=5825 +runtimeId=24 minecraft:polished_basalt;pillar_axis=z blockId=490 -runtimeId=5827 +runtimeId=26 minecraft:polished_blackstone blockId=546 -runtimeId=5828 +runtimeId=3687 minecraft:polished_blackstone_brick_double_slab;top_slot_bit=0 blockId=540 -runtimeId=5829 +runtimeId=685 minecraft:polished_blackstone_brick_double_slab;top_slot_bit=1 blockId=540 -runtimeId=5830 +runtimeId=686 minecraft:polished_blackstone_brick_slab;top_slot_bit=0 blockId=539 -runtimeId=5831 +runtimeId=4175 minecraft:polished_blackstone_brick_slab;top_slot_bit=1 blockId=539 -runtimeId=5832 +runtimeId=4176 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=530 -runtimeId=5833 +runtimeId=4425 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=530 -runtimeId=5834 +runtimeId=4426 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=530 -runtimeId=5835 +runtimeId=4427 minecraft:polished_blackstone_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=530 -runtimeId=5836 +runtimeId=4428 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=530 -runtimeId=5837 +runtimeId=4429 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=530 -runtimeId=5838 +runtimeId=4430 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=530 -runtimeId=5839 +runtimeId=4431 minecraft:polished_blackstone_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=530 -runtimeId=5840 +runtimeId=4432 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5841 +runtimeId=978 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5843 +runtimeId=980 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5845 +runtimeId=982 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5895 +runtimeId=1032 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5897 +runtimeId=1034 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5899 +runtimeId=1036 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5949 +runtimeId=1086 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5951 +runtimeId=1088 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5953 +runtimeId=1090 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5859 +runtimeId=996 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5861 +runtimeId=998 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5863 +runtimeId=1000 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5913 +runtimeId=1050 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5915 +runtimeId=1052 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5917 +runtimeId=1054 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5967 +runtimeId=1104 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5969 +runtimeId=1106 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5971 +runtimeId=1108 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5877 +runtimeId=1014 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5879 +runtimeId=1016 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5881 +runtimeId=1018 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5931 +runtimeId=1068 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5933 +runtimeId=1070 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5935 +runtimeId=1072 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5985 +runtimeId=1122 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5987 +runtimeId=1124 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5989 +runtimeId=1126 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5842 +runtimeId=979 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5844 +runtimeId=981 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5846 +runtimeId=983 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5896 +runtimeId=1033 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5898 +runtimeId=1035 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5900 +runtimeId=1037 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5950 +runtimeId=1087 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5952 +runtimeId=1089 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5954 +runtimeId=1091 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5860 +runtimeId=997 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5862 +runtimeId=999 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5864 +runtimeId=1001 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5914 +runtimeId=1051 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5916 +runtimeId=1053 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5918 +runtimeId=1055 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5968 +runtimeId=1105 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5970 +runtimeId=1107 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5972 +runtimeId=1109 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5878 +runtimeId=1015 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5880 +runtimeId=1017 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5882 +runtimeId=1019 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5932 +runtimeId=1069 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5934 +runtimeId=1071 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5936 +runtimeId=1073 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5986 +runtimeId=1123 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5988 +runtimeId=1125 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5990 +runtimeId=1127 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5847 +runtimeId=984 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5849 +runtimeId=986 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5851 +runtimeId=988 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5901 +runtimeId=1038 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5903 +runtimeId=1040 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5905 +runtimeId=1042 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5955 +runtimeId=1092 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5957 +runtimeId=1094 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5959 +runtimeId=1096 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5865 +runtimeId=1002 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5867 +runtimeId=1004 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5869 +runtimeId=1006 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5919 +runtimeId=1056 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5921 +runtimeId=1058 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5923 +runtimeId=1060 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5973 +runtimeId=1110 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5975 +runtimeId=1112 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5977 +runtimeId=1114 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5883 +runtimeId=1020 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5885 +runtimeId=1022 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5887 +runtimeId=1024 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5937 +runtimeId=1074 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5939 +runtimeId=1076 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5941 +runtimeId=1078 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5991 +runtimeId=1128 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5993 +runtimeId=1130 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5995 +runtimeId=1132 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5848 +runtimeId=985 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5850 +runtimeId=987 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5852 +runtimeId=989 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5902 +runtimeId=1039 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5904 +runtimeId=1041 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5906 +runtimeId=1043 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5956 +runtimeId=1093 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5958 +runtimeId=1095 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5960 +runtimeId=1097 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5866 +runtimeId=1003 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5868 +runtimeId=1005 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5870 +runtimeId=1007 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5920 +runtimeId=1057 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5922 +runtimeId=1059 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5924 +runtimeId=1061 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5974 +runtimeId=1111 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5976 +runtimeId=1113 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5978 +runtimeId=1115 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5884 +runtimeId=1021 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5886 +runtimeId=1023 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5888 +runtimeId=1025 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5938 +runtimeId=1075 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5940 +runtimeId=1077 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5942 +runtimeId=1079 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5992 +runtimeId=1129 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5994 +runtimeId=1131 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5996 +runtimeId=1133 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5853 +runtimeId=990 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5855 +runtimeId=992 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5857 +runtimeId=994 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5907 +runtimeId=1044 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5909 +runtimeId=1046 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5911 +runtimeId=1048 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5961 +runtimeId=1098 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5963 +runtimeId=1100 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5965 +runtimeId=1102 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5871 +runtimeId=1008 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5873 +runtimeId=1010 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5875 +runtimeId=1012 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5925 +runtimeId=1062 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5927 +runtimeId=1064 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5929 +runtimeId=1066 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5979 +runtimeId=1116 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5981 +runtimeId=1118 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5983 +runtimeId=1120 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5889 +runtimeId=1026 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5891 +runtimeId=1028 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5893 +runtimeId=1030 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5943 +runtimeId=1080 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5945 +runtimeId=1082 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5947 +runtimeId=1084 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5997 +runtimeId=1134 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5999 +runtimeId=1136 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=6001 +runtimeId=1138 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5854 +runtimeId=991 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5856 +runtimeId=993 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5858 +runtimeId=995 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5908 +runtimeId=1045 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5910 +runtimeId=1047 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5912 +runtimeId=1049 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5962 +runtimeId=1099 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5964 +runtimeId=1101 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5966 +runtimeId=1103 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5872 +runtimeId=1009 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5874 +runtimeId=1011 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5876 +runtimeId=1013 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5926 +runtimeId=1063 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5928 +runtimeId=1065 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5930 +runtimeId=1067 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5980 +runtimeId=1117 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=5982 +runtimeId=1119 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=5984 +runtimeId=1121 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=533 -runtimeId=5890 +runtimeId=1027 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=533 -runtimeId=5892 +runtimeId=1029 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=533 -runtimeId=5894 +runtimeId=1031 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=533 -runtimeId=5944 +runtimeId=1081 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=533 -runtimeId=5946 +runtimeId=1083 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=533 -runtimeId=5948 +runtimeId=1085 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=533 -runtimeId=5998 +runtimeId=1135 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=533 -runtimeId=6000 +runtimeId=1137 minecraft:polished_blackstone_brick_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=533 -runtimeId=6002 +runtimeId=1139 minecraft:polished_blackstone_bricks blockId=529 -runtimeId=6003 +runtimeId=4636 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=0 blockId=551 -runtimeId=6004 +runtimeId=7732 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=1 blockId=551 -runtimeId=6005 +runtimeId=7733 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=2 blockId=551 -runtimeId=6006 +runtimeId=7734 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=3 blockId=551 -runtimeId=6007 +runtimeId=7735 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=4 blockId=551 -runtimeId=6008 +runtimeId=7736 minecraft:polished_blackstone_button;button_pressed_bit=0;facing_direction=5 blockId=551 -runtimeId=6009 +runtimeId=7737 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=0 blockId=551 -runtimeId=6010 +runtimeId=7738 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=1 blockId=551 -runtimeId=6011 +runtimeId=7739 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=2 blockId=551 -runtimeId=6012 +runtimeId=7740 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=3 blockId=551 -runtimeId=6013 +runtimeId=7741 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=4 blockId=551 -runtimeId=6014 +runtimeId=7742 minecraft:polished_blackstone_button;button_pressed_bit=1;facing_direction=5 blockId=551 -runtimeId=6015 +runtimeId=7743 minecraft:polished_blackstone_double_slab;top_slot_bit=0 blockId=549 -runtimeId=6016 +runtimeId=653 minecraft:polished_blackstone_double_slab;top_slot_bit=1 blockId=549 -runtimeId=6017 +runtimeId=654 minecraft:polished_blackstone_pressure_plate;redstone_signal=0 blockId=550 -runtimeId=6018 +runtimeId=6197 minecraft:polished_blackstone_pressure_plate;redstone_signal=1 blockId=550 -runtimeId=6019 +runtimeId=6198 minecraft:polished_blackstone_pressure_plate;redstone_signal=2 blockId=550 -runtimeId=6020 +runtimeId=6199 minecraft:polished_blackstone_pressure_plate;redstone_signal=3 blockId=550 -runtimeId=6021 +runtimeId=6200 minecraft:polished_blackstone_pressure_plate;redstone_signal=4 blockId=550 -runtimeId=6022 +runtimeId=6201 minecraft:polished_blackstone_pressure_plate;redstone_signal=5 blockId=550 -runtimeId=6023 +runtimeId=6202 minecraft:polished_blackstone_pressure_plate;redstone_signal=6 blockId=550 -runtimeId=6024 +runtimeId=6203 minecraft:polished_blackstone_pressure_plate;redstone_signal=7 blockId=550 -runtimeId=6025 +runtimeId=6204 minecraft:polished_blackstone_pressure_plate;redstone_signal=8 blockId=550 -runtimeId=6026 +runtimeId=6205 minecraft:polished_blackstone_pressure_plate;redstone_signal=9 blockId=550 -runtimeId=6027 +runtimeId=6206 minecraft:polished_blackstone_pressure_plate;redstone_signal=10 blockId=550 -runtimeId=6028 +runtimeId=6207 minecraft:polished_blackstone_pressure_plate;redstone_signal=11 blockId=550 -runtimeId=6029 +runtimeId=6208 minecraft:polished_blackstone_pressure_plate;redstone_signal=12 blockId=550 -runtimeId=6030 +runtimeId=6209 minecraft:polished_blackstone_pressure_plate;redstone_signal=13 blockId=550 -runtimeId=6031 +runtimeId=6210 minecraft:polished_blackstone_pressure_plate;redstone_signal=14 blockId=550 -runtimeId=6032 +runtimeId=6211 minecraft:polished_blackstone_pressure_plate;redstone_signal=15 blockId=550 -runtimeId=6033 +runtimeId=6212 minecraft:polished_blackstone_slab;top_slot_bit=0 blockId=548 -runtimeId=6034 +runtimeId=5942 minecraft:polished_blackstone_slab;top_slot_bit=1 blockId=548 -runtimeId=6035 +runtimeId=5943 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=547 -runtimeId=6036 +runtimeId=4245 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=547 -runtimeId=6037 +runtimeId=4246 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=547 -runtimeId=6038 +runtimeId=4247 minecraft:polished_blackstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=547 -runtimeId=6039 +runtimeId=4248 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=547 -runtimeId=6040 +runtimeId=4249 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=547 -runtimeId=6041 +runtimeId=4250 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=547 -runtimeId=6042 +runtimeId=4251 minecraft:polished_blackstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=547 -runtimeId=6043 +runtimeId=4252 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6044 +runtimeId=6640 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6046 +runtimeId=6642 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6048 +runtimeId=6644 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6098 +runtimeId=6694 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6100 +runtimeId=6696 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6102 +runtimeId=6698 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6152 +runtimeId=6748 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6154 +runtimeId=6750 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6156 +runtimeId=6752 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6062 +runtimeId=6658 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6064 +runtimeId=6660 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6066 +runtimeId=6662 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6116 +runtimeId=6712 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6118 +runtimeId=6714 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6120 +runtimeId=6716 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6170 +runtimeId=6766 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6172 +runtimeId=6768 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6174 +runtimeId=6770 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6080 +runtimeId=6676 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6082 +runtimeId=6678 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6084 +runtimeId=6680 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6134 +runtimeId=6730 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6136 +runtimeId=6732 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6138 +runtimeId=6734 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6188 +runtimeId=6784 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6190 +runtimeId=6786 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6192 +runtimeId=6788 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6045 +runtimeId=6641 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6047 +runtimeId=6643 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6049 +runtimeId=6645 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6099 +runtimeId=6695 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6101 +runtimeId=6697 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6103 +runtimeId=6699 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6153 +runtimeId=6749 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6155 +runtimeId=6751 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6157 +runtimeId=6753 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6063 +runtimeId=6659 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6065 +runtimeId=6661 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6067 +runtimeId=6663 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6117 +runtimeId=6713 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6119 +runtimeId=6715 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6121 +runtimeId=6717 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6171 +runtimeId=6767 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6173 +runtimeId=6769 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6175 +runtimeId=6771 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6081 +runtimeId=6677 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6083 +runtimeId=6679 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6085 +runtimeId=6681 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6135 +runtimeId=6731 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6137 +runtimeId=6733 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6139 +runtimeId=6735 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6189 +runtimeId=6785 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6191 +runtimeId=6787 minecraft:polished_blackstone_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6193 +runtimeId=6789 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6050 +runtimeId=6646 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6052 +runtimeId=6648 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6054 +runtimeId=6650 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6104 +runtimeId=6700 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6106 +runtimeId=6702 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6108 +runtimeId=6704 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6158 +runtimeId=6754 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6160 +runtimeId=6756 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6162 +runtimeId=6758 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6068 +runtimeId=6664 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6070 +runtimeId=6666 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6072 +runtimeId=6668 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6122 +runtimeId=6718 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6124 +runtimeId=6720 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6126 +runtimeId=6722 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6176 +runtimeId=6772 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6178 +runtimeId=6774 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6180 +runtimeId=6776 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6086 +runtimeId=6682 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6088 +runtimeId=6684 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6090 +runtimeId=6686 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6140 +runtimeId=6736 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6142 +runtimeId=6738 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6144 +runtimeId=6740 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6194 +runtimeId=6790 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6196 +runtimeId=6792 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6198 +runtimeId=6794 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6051 +runtimeId=6647 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6053 +runtimeId=6649 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6055 +runtimeId=6651 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6105 +runtimeId=6701 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6107 +runtimeId=6703 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6109 +runtimeId=6705 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6159 +runtimeId=6755 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6161 +runtimeId=6757 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6163 +runtimeId=6759 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6069 +runtimeId=6665 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6071 +runtimeId=6667 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6073 +runtimeId=6669 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6123 +runtimeId=6719 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6125 +runtimeId=6721 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6127 +runtimeId=6723 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6177 +runtimeId=6773 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6179 +runtimeId=6775 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6181 +runtimeId=6777 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6087 +runtimeId=6683 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6089 +runtimeId=6685 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6091 +runtimeId=6687 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6141 +runtimeId=6737 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6143 +runtimeId=6739 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6145 +runtimeId=6741 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6195 +runtimeId=6791 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6197 +runtimeId=6793 minecraft:polished_blackstone_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6199 +runtimeId=6795 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6056 +runtimeId=6652 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6058 +runtimeId=6654 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6060 +runtimeId=6656 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6110 +runtimeId=6706 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6112 +runtimeId=6708 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6114 +runtimeId=6710 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6164 +runtimeId=6760 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6166 +runtimeId=6762 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6168 +runtimeId=6764 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6074 +runtimeId=6670 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6076 +runtimeId=6672 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6078 +runtimeId=6674 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6128 +runtimeId=6724 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6130 +runtimeId=6726 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6132 +runtimeId=6728 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6182 +runtimeId=6778 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6184 +runtimeId=6780 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6186 +runtimeId=6782 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6092 +runtimeId=6688 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6094 +runtimeId=6690 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6096 +runtimeId=6692 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6146 +runtimeId=6742 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6148 +runtimeId=6744 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6150 +runtimeId=6746 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6200 +runtimeId=6796 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6202 +runtimeId=6798 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6204 +runtimeId=6800 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6057 +runtimeId=6653 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6059 +runtimeId=6655 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6061 +runtimeId=6657 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6111 +runtimeId=6707 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6113 +runtimeId=6709 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6115 +runtimeId=6711 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6165 +runtimeId=6761 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6167 +runtimeId=6763 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6169 +runtimeId=6765 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6075 +runtimeId=6671 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6077 +runtimeId=6673 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6079 +runtimeId=6675 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6129 +runtimeId=6725 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6131 +runtimeId=6727 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6133 +runtimeId=6729 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6183 +runtimeId=6779 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6185 +runtimeId=6781 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6187 +runtimeId=6783 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=552 -runtimeId=6093 +runtimeId=6689 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=552 -runtimeId=6095 +runtimeId=6691 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=552 -runtimeId=6097 +runtimeId=6693 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=552 -runtimeId=6147 +runtimeId=6743 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=552 -runtimeId=6149 +runtimeId=6745 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=552 -runtimeId=6151 +runtimeId=6747 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=552 -runtimeId=6201 +runtimeId=6797 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=552 -runtimeId=6203 +runtimeId=6799 minecraft:polished_blackstone_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=552 -runtimeId=6205 +runtimeId=6801 minecraft:polished_deepslate blockId=638 -runtimeId=6206 +runtimeId=7696 minecraft:polished_deepslate_double_slab;top_slot_bit=0 blockId=652 -runtimeId=6207 +runtimeId=602 minecraft:polished_deepslate_double_slab;top_slot_bit=1 blockId=652 -runtimeId=6208 +runtimeId=603 minecraft:polished_deepslate_slab;top_slot_bit=0 blockId=639 -runtimeId=6209 +runtimeId=302 minecraft:polished_deepslate_slab;top_slot_bit=1 blockId=639 -runtimeId=6210 +runtimeId=303 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=0 blockId=640 -runtimeId=6211 +runtimeId=308 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=1 blockId=640 -runtimeId=6212 +runtimeId=309 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=2 blockId=640 -runtimeId=6213 +runtimeId=310 minecraft:polished_deepslate_stairs;upside_down_bit=0;weirdo_direction=3 blockId=640 -runtimeId=6214 +runtimeId=311 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=0 blockId=640 -runtimeId=6215 +runtimeId=312 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=1 blockId=640 -runtimeId=6216 +runtimeId=313 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=2 blockId=640 -runtimeId=6217 +runtimeId=314 minecraft:polished_deepslate_stairs;upside_down_bit=1;weirdo_direction=3 blockId=640 -runtimeId=6218 +runtimeId=315 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6219 +runtimeId=7759 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6221 +runtimeId=7761 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6223 +runtimeId=7763 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6273 +runtimeId=7813 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6275 +runtimeId=7815 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6277 +runtimeId=7817 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6327 +runtimeId=7867 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6329 +runtimeId=7869 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6331 +runtimeId=7871 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6237 +runtimeId=7777 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6239 +runtimeId=7779 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6241 +runtimeId=7781 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6291 +runtimeId=7831 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6293 +runtimeId=7833 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6295 +runtimeId=7835 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6345 +runtimeId=7885 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6347 +runtimeId=7887 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6349 +runtimeId=7889 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6255 +runtimeId=7795 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6257 +runtimeId=7797 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6259 +runtimeId=7799 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6309 +runtimeId=7849 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6311 +runtimeId=7851 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6313 +runtimeId=7853 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6363 +runtimeId=7903 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6365 +runtimeId=7905 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6367 +runtimeId=7907 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6220 +runtimeId=7760 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6222 +runtimeId=7762 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6224 +runtimeId=7764 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6274 +runtimeId=7814 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6276 +runtimeId=7816 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6278 +runtimeId=7818 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6328 +runtimeId=7868 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6330 +runtimeId=7870 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6332 +runtimeId=7872 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6238 +runtimeId=7778 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6240 +runtimeId=7780 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6242 +runtimeId=7782 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6292 +runtimeId=7832 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6294 +runtimeId=7834 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6296 +runtimeId=7836 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6346 +runtimeId=7886 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6348 +runtimeId=7888 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6350 +runtimeId=7890 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6256 +runtimeId=7796 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6258 +runtimeId=7798 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6260 +runtimeId=7800 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6310 +runtimeId=7850 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6312 +runtimeId=7852 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6314 +runtimeId=7854 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6364 +runtimeId=7904 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6366 +runtimeId=7906 minecraft:polished_deepslate_wall;wall_connection_type_east=none;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6368 +runtimeId=7908 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6225 +runtimeId=7765 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6227 +runtimeId=7767 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6229 +runtimeId=7769 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6279 +runtimeId=7819 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6281 +runtimeId=7821 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6283 +runtimeId=7823 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6333 +runtimeId=7873 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6335 +runtimeId=7875 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6337 +runtimeId=7877 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6243 +runtimeId=7783 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6245 +runtimeId=7785 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6247 +runtimeId=7787 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6297 +runtimeId=7837 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6299 +runtimeId=7839 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6301 +runtimeId=7841 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6351 +runtimeId=7891 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6353 +runtimeId=7893 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6355 +runtimeId=7895 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6261 +runtimeId=7801 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6263 +runtimeId=7803 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6265 +runtimeId=7805 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6315 +runtimeId=7855 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6317 +runtimeId=7857 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6319 +runtimeId=7859 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6369 +runtimeId=7909 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6371 +runtimeId=7911 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6373 +runtimeId=7913 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6226 +runtimeId=7766 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6228 +runtimeId=7768 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6230 +runtimeId=7770 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6280 +runtimeId=7820 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6282 +runtimeId=7822 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6284 +runtimeId=7824 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6334 +runtimeId=7874 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6336 +runtimeId=7876 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6338 +runtimeId=7878 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6244 +runtimeId=7784 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6246 +runtimeId=7786 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6248 +runtimeId=7788 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6298 +runtimeId=7838 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6300 +runtimeId=7840 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6302 +runtimeId=7842 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6352 +runtimeId=7892 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6354 +runtimeId=7894 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6356 +runtimeId=7896 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6262 +runtimeId=7802 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6264 +runtimeId=7804 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6266 +runtimeId=7806 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6316 +runtimeId=7856 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6318 +runtimeId=7858 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6320 +runtimeId=7860 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6370 +runtimeId=7910 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6372 +runtimeId=7912 minecraft:polished_deepslate_wall;wall_connection_type_east=short;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6374 +runtimeId=7914 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6231 +runtimeId=7771 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6233 +runtimeId=7773 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6235 +runtimeId=7775 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6285 +runtimeId=7825 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6287 +runtimeId=7827 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6289 +runtimeId=7829 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6339 +runtimeId=7879 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6341 +runtimeId=7881 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6343 +runtimeId=7883 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6249 +runtimeId=7789 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6251 +runtimeId=7791 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6253 +runtimeId=7793 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6303 +runtimeId=7843 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6305 +runtimeId=7845 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6307 +runtimeId=7847 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6357 +runtimeId=7897 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6359 +runtimeId=7899 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6361 +runtimeId=7901 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6267 +runtimeId=7807 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6269 +runtimeId=7809 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6271 +runtimeId=7811 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6321 +runtimeId=7861 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6323 +runtimeId=7863 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6325 +runtimeId=7865 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6375 +runtimeId=7915 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6377 +runtimeId=7917 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=0;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6379 +runtimeId=7919 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6232 +runtimeId=7772 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6234 +runtimeId=7774 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6236 +runtimeId=7776 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6286 +runtimeId=7826 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6288 +runtimeId=7828 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6290 +runtimeId=7830 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6340 +runtimeId=7880 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6342 +runtimeId=7882 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=none;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6344 +runtimeId=7884 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6250 +runtimeId=7790 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6252 +runtimeId=7792 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6254 +runtimeId=7794 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6304 +runtimeId=7844 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6306 +runtimeId=7846 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6308 +runtimeId=7848 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6358 +runtimeId=7898 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6360 +runtimeId=7900 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=short;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6362 +runtimeId=7902 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=none blockId=641 -runtimeId=6268 +runtimeId=7808 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=short blockId=641 -runtimeId=6270 +runtimeId=7810 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=none;wall_connection_type_north=tall blockId=641 -runtimeId=6272 +runtimeId=7812 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=none blockId=641 -runtimeId=6322 +runtimeId=7862 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=short blockId=641 -runtimeId=6324 +runtimeId=7864 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=short;wall_connection_type_north=tall blockId=641 -runtimeId=6326 +runtimeId=7866 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=none blockId=641 -runtimeId=6376 +runtimeId=7916 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=short blockId=641 -runtimeId=6378 +runtimeId=7918 minecraft:polished_deepslate_wall;wall_connection_type_east=tall;wall_post_bit=1;wall_connection_type_south=tall;wall_connection_type_west=tall;wall_connection_type_north=tall blockId=641 -runtimeId=6380 +runtimeId=7920 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=428 -runtimeId=6381 +runtimeId=6588 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=428 -runtimeId=6382 +runtimeId=6589 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=428 -runtimeId=6383 +runtimeId=6590 minecraft:polished_diorite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=428 -runtimeId=6384 +runtimeId=6591 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=428 -runtimeId=6385 +runtimeId=6592 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=428 -runtimeId=6386 +runtimeId=6593 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=428 -runtimeId=6387 +runtimeId=6594 minecraft:polished_diorite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=428 -runtimeId=6388 +runtimeId=6595 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=0 blockId=427 -runtimeId=6389 +runtimeId=4139 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=1 blockId=427 -runtimeId=6390 +runtimeId=4140 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=2 blockId=427 -runtimeId=6391 +runtimeId=4141 minecraft:polished_granite_stairs;upside_down_bit=0;weirdo_direction=3 blockId=427 -runtimeId=6392 +runtimeId=4142 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=0 blockId=427 -runtimeId=6393 +runtimeId=4143 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=1 blockId=427 -runtimeId=6394 +runtimeId=4144 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=2 blockId=427 -runtimeId=6395 +runtimeId=4145 minecraft:polished_granite_stairs;upside_down_bit=1;weirdo_direction=3 blockId=427 -runtimeId=6396 +runtimeId=4146 minecraft:portal;portal_axis=unknown blockId=90 -runtimeId=6397 +runtimeId=7705 minecraft:portal;portal_axis=x blockId=90 -runtimeId=6398 +runtimeId=7706 minecraft:portal;portal_axis=z blockId=90 -runtimeId=6399 +runtimeId=7707 minecraft:potatoes;growth=0 blockId=142 -runtimeId=6400 +runtimeId=351 minecraft:potatoes;growth=1 blockId=142 -runtimeId=6401 +runtimeId=352 minecraft:potatoes;growth=2 blockId=142 -runtimeId=6402 +runtimeId=353 minecraft:potatoes;growth=3 blockId=142 -runtimeId=6403 +runtimeId=354 minecraft:potatoes;growth=4 blockId=142 -runtimeId=6404 +runtimeId=355 minecraft:potatoes;growth=5 blockId=142 -runtimeId=6405 +runtimeId=356 minecraft:potatoes;growth=6 blockId=142 -runtimeId=6406 +runtimeId=357 minecraft:potatoes;growth=7 blockId=142 -runtimeId=6407 +runtimeId=358 minecraft:powder_snow blockId=561 -runtimeId=6408 +runtimeId=92 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=0 blockId=150 -runtimeId=6409 +runtimeId=380 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=1 blockId=150 -runtimeId=6410 +runtimeId=381 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=2 blockId=150 -runtimeId=6411 +runtimeId=382 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=3 blockId=150 -runtimeId=6412 +runtimeId=383 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=0 blockId=150 -runtimeId=6417 +runtimeId=388 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=1 blockId=150 -runtimeId=6418 +runtimeId=389 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=2 blockId=150 -runtimeId=6419 +runtimeId=390 minecraft:powered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=3 blockId=150 -runtimeId=6420 +runtimeId=391 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=0 blockId=150 -runtimeId=6413 +runtimeId=384 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=1 blockId=150 -runtimeId=6414 +runtimeId=385 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=2 blockId=150 -runtimeId=6415 +runtimeId=386 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=3 blockId=150 -runtimeId=6416 +runtimeId=387 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=0 blockId=150 -runtimeId=6421 +runtimeId=392 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=1 blockId=150 -runtimeId=6422 +runtimeId=393 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=2 blockId=150 -runtimeId=6423 +runtimeId=394 minecraft:powered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=3 blockId=150 -runtimeId=6424 +runtimeId=395 minecraft:powered_repeater;repeater_delay=0;direction=0 blockId=94 -runtimeId=6425 +runtimeId=4485 minecraft:powered_repeater;repeater_delay=0;direction=1 blockId=94 -runtimeId=6426 +runtimeId=4486 minecraft:powered_repeater;repeater_delay=0;direction=2 blockId=94 -runtimeId=6427 +runtimeId=4487 minecraft:powered_repeater;repeater_delay=0;direction=3 blockId=94 -runtimeId=6428 +runtimeId=4488 minecraft:powered_repeater;repeater_delay=1;direction=0 blockId=94 -runtimeId=6429 +runtimeId=4489 minecraft:powered_repeater;repeater_delay=1;direction=1 blockId=94 -runtimeId=6430 +runtimeId=4490 minecraft:powered_repeater;repeater_delay=1;direction=2 blockId=94 -runtimeId=6431 +runtimeId=4491 minecraft:powered_repeater;repeater_delay=1;direction=3 blockId=94 -runtimeId=6432 +runtimeId=4492 minecraft:powered_repeater;repeater_delay=2;direction=0 blockId=94 -runtimeId=6433 +runtimeId=4493 minecraft:powered_repeater;repeater_delay=2;direction=1 blockId=94 -runtimeId=6434 +runtimeId=4494 minecraft:powered_repeater;repeater_delay=2;direction=2 blockId=94 -runtimeId=6435 +runtimeId=4495 minecraft:powered_repeater;repeater_delay=2;direction=3 blockId=94 -runtimeId=6436 +runtimeId=4496 minecraft:powered_repeater;repeater_delay=3;direction=0 blockId=94 -runtimeId=6437 +runtimeId=4497 minecraft:powered_repeater;repeater_delay=3;direction=1 blockId=94 -runtimeId=6438 +runtimeId=4498 minecraft:powered_repeater;repeater_delay=3;direction=2 blockId=94 -runtimeId=6439 +runtimeId=4499 minecraft:powered_repeater;repeater_delay=3;direction=3 blockId=94 -runtimeId=6440 +runtimeId=4500 minecraft:prismarine;prismarine_block_type=bricks blockId=168 -runtimeId=6443 +runtimeId=6011 minecraft:prismarine;prismarine_block_type=dark blockId=168 -runtimeId=6442 +runtimeId=6010 minecraft:prismarine;prismarine_block_type=default blockId=168 -runtimeId=6441 +runtimeId=6009 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=0 blockId=259 -runtimeId=6444 +runtimeId=206 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=1 blockId=259 -runtimeId=6445 +runtimeId=207 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=2 blockId=259 -runtimeId=6446 +runtimeId=208 minecraft:prismarine_bricks_stairs;upside_down_bit=0;weirdo_direction=3 blockId=259 -runtimeId=6447 +runtimeId=209 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=0 blockId=259 -runtimeId=6448 +runtimeId=210 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=1 blockId=259 -runtimeId=6449 +runtimeId=211 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=2 blockId=259 -runtimeId=6450 +runtimeId=212 minecraft:prismarine_bricks_stairs;upside_down_bit=1;weirdo_direction=3 blockId=259 -runtimeId=6451 +runtimeId=213 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=0 blockId=257 -runtimeId=6452 +runtimeId=7205 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=1 blockId=257 -runtimeId=6453 +runtimeId=7206 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=2 blockId=257 -runtimeId=6454 +runtimeId=7207 minecraft:prismarine_stairs;upside_down_bit=0;weirdo_direction=3 blockId=257 -runtimeId=6455 +runtimeId=7208 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=0 blockId=257 -runtimeId=6456 +runtimeId=7209 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=1 blockId=257 -runtimeId=6457 +runtimeId=7210 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=2 blockId=257 -runtimeId=6458 +runtimeId=7211 minecraft:prismarine_stairs;upside_down_bit=1;weirdo_direction=3 blockId=257 -runtimeId=6459 +runtimeId=7212 minecraft:pumpkin;direction=0 blockId=86 -runtimeId=6460 +runtimeId=4509 minecraft:pumpkin;direction=1 blockId=86 -runtimeId=6461 +runtimeId=4510 minecraft:pumpkin;direction=2 blockId=86 -runtimeId=6462 +runtimeId=4511 minecraft:pumpkin;direction=3 blockId=86 -runtimeId=6463 +runtimeId=4512 minecraft:pumpkin_stem;facing_direction=0;growth=0 blockId=104 -runtimeId=6464 +runtimeId=6256 minecraft:pumpkin_stem;facing_direction=0;growth=1 blockId=104 -runtimeId=6465 +runtimeId=6257 minecraft:pumpkin_stem;facing_direction=0;growth=2 blockId=104 -runtimeId=6466 +runtimeId=6258 minecraft:pumpkin_stem;facing_direction=0;growth=3 blockId=104 -runtimeId=6467 +runtimeId=6259 minecraft:pumpkin_stem;facing_direction=0;growth=4 blockId=104 -runtimeId=6468 +runtimeId=6260 minecraft:pumpkin_stem;facing_direction=0;growth=5 blockId=104 -runtimeId=6469 +runtimeId=6261 minecraft:pumpkin_stem;facing_direction=0;growth=6 blockId=104 -runtimeId=6470 +runtimeId=6262 minecraft:pumpkin_stem;facing_direction=0;growth=7 blockId=104 -runtimeId=6471 +runtimeId=6263 minecraft:pumpkin_stem;facing_direction=1;growth=0 blockId=104 -runtimeId=6472 +runtimeId=6264 minecraft:pumpkin_stem;facing_direction=1;growth=1 blockId=104 -runtimeId=6473 +runtimeId=6265 minecraft:pumpkin_stem;facing_direction=1;growth=2 blockId=104 -runtimeId=6474 +runtimeId=6266 minecraft:pumpkin_stem;facing_direction=1;growth=3 blockId=104 -runtimeId=6475 +runtimeId=6267 minecraft:pumpkin_stem;facing_direction=1;growth=4 blockId=104 -runtimeId=6476 +runtimeId=6268 minecraft:pumpkin_stem;facing_direction=1;growth=5 blockId=104 -runtimeId=6477 +runtimeId=6269 minecraft:pumpkin_stem;facing_direction=1;growth=6 blockId=104 -runtimeId=6478 +runtimeId=6270 minecraft:pumpkin_stem;facing_direction=1;growth=7 blockId=104 -runtimeId=6479 +runtimeId=6271 minecraft:pumpkin_stem;facing_direction=2;growth=0 blockId=104 -runtimeId=6480 +runtimeId=6272 minecraft:pumpkin_stem;facing_direction=2;growth=1 blockId=104 -runtimeId=6481 +runtimeId=6273 minecraft:pumpkin_stem;facing_direction=2;growth=2 blockId=104 -runtimeId=6482 +runtimeId=6274 minecraft:pumpkin_stem;facing_direction=2;growth=3 blockId=104 -runtimeId=6483 +runtimeId=6275 minecraft:pumpkin_stem;facing_direction=2;growth=4 blockId=104 -runtimeId=6484 +runtimeId=6276 minecraft:pumpkin_stem;facing_direction=2;growth=5 blockId=104 -runtimeId=6485 +runtimeId=6277 minecraft:pumpkin_stem;facing_direction=2;growth=6 blockId=104 -runtimeId=6486 +runtimeId=6278 minecraft:pumpkin_stem;facing_direction=2;growth=7 blockId=104 -runtimeId=6487 +runtimeId=6279 minecraft:pumpkin_stem;facing_direction=3;growth=0 blockId=104 -runtimeId=6488 +runtimeId=6280 minecraft:pumpkin_stem;facing_direction=3;growth=1 blockId=104 -runtimeId=6489 +runtimeId=6281 minecraft:pumpkin_stem;facing_direction=3;growth=2 blockId=104 -runtimeId=6490 +runtimeId=6282 minecraft:pumpkin_stem;facing_direction=3;growth=3 blockId=104 -runtimeId=6491 +runtimeId=6283 minecraft:pumpkin_stem;facing_direction=3;growth=4 blockId=104 -runtimeId=6492 +runtimeId=6284 minecraft:pumpkin_stem;facing_direction=3;growth=5 blockId=104 -runtimeId=6493 +runtimeId=6285 minecraft:pumpkin_stem;facing_direction=3;growth=6 blockId=104 -runtimeId=6494 +runtimeId=6286 minecraft:pumpkin_stem;facing_direction=3;growth=7 blockId=104 -runtimeId=6495 +runtimeId=6287 minecraft:pumpkin_stem;facing_direction=4;growth=0 blockId=104 -runtimeId=6496 +runtimeId=6288 minecraft:pumpkin_stem;facing_direction=4;growth=1 blockId=104 -runtimeId=6497 +runtimeId=6289 minecraft:pumpkin_stem;facing_direction=4;growth=2 blockId=104 -runtimeId=6498 +runtimeId=6290 minecraft:pumpkin_stem;facing_direction=4;growth=3 blockId=104 -runtimeId=6499 +runtimeId=6291 minecraft:pumpkin_stem;facing_direction=4;growth=4 blockId=104 -runtimeId=6500 +runtimeId=6292 minecraft:pumpkin_stem;facing_direction=4;growth=5 blockId=104 -runtimeId=6501 +runtimeId=6293 minecraft:pumpkin_stem;facing_direction=4;growth=6 blockId=104 -runtimeId=6502 +runtimeId=6294 minecraft:pumpkin_stem;facing_direction=4;growth=7 blockId=104 -runtimeId=6503 +runtimeId=6295 minecraft:pumpkin_stem;facing_direction=5;growth=0 blockId=104 -runtimeId=6504 +runtimeId=6296 minecraft:pumpkin_stem;facing_direction=5;growth=1 blockId=104 -runtimeId=6505 +runtimeId=6297 minecraft:pumpkin_stem;facing_direction=5;growth=2 blockId=104 -runtimeId=6506 +runtimeId=6298 minecraft:pumpkin_stem;facing_direction=5;growth=3 blockId=104 -runtimeId=6507 +runtimeId=6299 minecraft:pumpkin_stem;facing_direction=5;growth=4 blockId=104 -runtimeId=6508 +runtimeId=6300 minecraft:pumpkin_stem;facing_direction=5;growth=5 blockId=104 -runtimeId=6509 +runtimeId=6301 minecraft:pumpkin_stem;facing_direction=5;growth=6 blockId=104 -runtimeId=6510 +runtimeId=6302 minecraft:pumpkin_stem;facing_direction=5;growth=7 blockId=104 -runtimeId=6511 +runtimeId=6303 minecraft:purple_candle;lit=0;candles=0 blockId=678 -runtimeId=6512 +runtimeId=6992 minecraft:purple_candle;lit=0;candles=1 blockId=678 -runtimeId=6513 +runtimeId=6993 minecraft:purple_candle;lit=0;candles=2 blockId=678 -runtimeId=6514 +runtimeId=6994 minecraft:purple_candle;lit=0;candles=3 blockId=678 -runtimeId=6515 +runtimeId=6995 minecraft:purple_candle;lit=1;candles=0 blockId=678 -runtimeId=6516 +runtimeId=6996 minecraft:purple_candle;lit=1;candles=1 blockId=678 -runtimeId=6517 +runtimeId=6997 minecraft:purple_candle;lit=1;candles=2 blockId=678 -runtimeId=6518 +runtimeId=6998 minecraft:purple_candle;lit=1;candles=3 blockId=678 -runtimeId=6519 +runtimeId=6999 minecraft:purple_candle_cake;lit=0 blockId=695 -runtimeId=6520 +runtimeId=6585 minecraft:purple_candle_cake;lit=1 blockId=695 -runtimeId=6521 +runtimeId=6586 minecraft:purple_glazed_terracotta;facing_direction=0 blockId=219 -runtimeId=6522 +runtimeId=6965 minecraft:purple_glazed_terracotta;facing_direction=1 blockId=219 -runtimeId=6523 +runtimeId=6966 minecraft:purple_glazed_terracotta;facing_direction=2 blockId=219 -runtimeId=6524 +runtimeId=6967 minecraft:purple_glazed_terracotta;facing_direction=3 blockId=219 -runtimeId=6525 +runtimeId=6968 minecraft:purple_glazed_terracotta;facing_direction=4 blockId=219 -runtimeId=6526 +runtimeId=6969 minecraft:purple_glazed_terracotta;facing_direction=5 blockId=219 -runtimeId=6527 +runtimeId=6970 minecraft:purpur_block;chisel_type=chiseled;pillar_axis=x blockId=201 -runtimeId=6533 +runtimeId=7661 minecraft:purpur_block;chisel_type=chiseled;pillar_axis=y blockId=201 -runtimeId=6529 +runtimeId=7657 minecraft:purpur_block;chisel_type=chiseled;pillar_axis=z blockId=201 -runtimeId=6537 +runtimeId=7665 minecraft:purpur_block;chisel_type=default;pillar_axis=x blockId=201 -runtimeId=6532 +runtimeId=7660 minecraft:purpur_block;chisel_type=default;pillar_axis=y blockId=201 -runtimeId=6528 +runtimeId=7656 minecraft:purpur_block;chisel_type=default;pillar_axis=z blockId=201 -runtimeId=6536 +runtimeId=7664 minecraft:purpur_block;chisel_type=lines;pillar_axis=x blockId=201 -runtimeId=6534 +runtimeId=7662 minecraft:purpur_block;chisel_type=lines;pillar_axis=y blockId=201 -runtimeId=6530 +runtimeId=7658 minecraft:purpur_block;chisel_type=lines;pillar_axis=z blockId=201 -runtimeId=6538 +runtimeId=7666 minecraft:purpur_block;chisel_type=smooth;pillar_axis=x blockId=201 -runtimeId=6535 +runtimeId=7663 minecraft:purpur_block;chisel_type=smooth;pillar_axis=y blockId=201 -runtimeId=6531 +runtimeId=7659 minecraft:purpur_block;chisel_type=smooth;pillar_axis=z blockId=201 -runtimeId=6539 +runtimeId=7667 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=0 blockId=203 -runtimeId=6540 +runtimeId=7697 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=1 blockId=203 -runtimeId=6541 +runtimeId=7698 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=2 blockId=203 -runtimeId=6542 +runtimeId=7699 minecraft:purpur_stairs;upside_down_bit=0;weirdo_direction=3 blockId=203 -runtimeId=6543 +runtimeId=7700 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=0 blockId=203 -runtimeId=6544 +runtimeId=7701 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=1 blockId=203 -runtimeId=6545 +runtimeId=7702 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=2 blockId=203 -runtimeId=6546 +runtimeId=7703 minecraft:purpur_stairs;upside_down_bit=1;weirdo_direction=3 blockId=203 -runtimeId=6547 +runtimeId=7704 minecraft:quartz_block;chisel_type=chiseled;pillar_axis=x blockId=155 -runtimeId=6553 +runtimeId=3706 minecraft:quartz_block;chisel_type=chiseled;pillar_axis=y blockId=155 -runtimeId=6549 +runtimeId=3702 minecraft:quartz_block;chisel_type=chiseled;pillar_axis=z blockId=155 -runtimeId=6557 +runtimeId=3710 minecraft:quartz_block;chisel_type=default;pillar_axis=x blockId=155 -runtimeId=6552 +runtimeId=3705 minecraft:quartz_block;chisel_type=default;pillar_axis=y blockId=155 -runtimeId=6548 +runtimeId=3701 minecraft:quartz_block;chisel_type=default;pillar_axis=z blockId=155 -runtimeId=6556 +runtimeId=3709 minecraft:quartz_block;chisel_type=lines;pillar_axis=x blockId=155 -runtimeId=6554 +runtimeId=3707 minecraft:quartz_block;chisel_type=lines;pillar_axis=y blockId=155 -runtimeId=6550 +runtimeId=3703 minecraft:quartz_block;chisel_type=lines;pillar_axis=z blockId=155 -runtimeId=6558 +runtimeId=3711 minecraft:quartz_block;chisel_type=smooth;pillar_axis=x blockId=155 -runtimeId=6555 +runtimeId=3708 minecraft:quartz_block;chisel_type=smooth;pillar_axis=y blockId=155 -runtimeId=6551 +runtimeId=3704 minecraft:quartz_block;chisel_type=smooth;pillar_axis=z blockId=155 -runtimeId=6559 +runtimeId=3712 minecraft:quartz_bricks blockId=559 -runtimeId=6560 +runtimeId=6316 minecraft:quartz_ore blockId=153 -runtimeId=6561 +runtimeId=4433 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=0 blockId=156 -runtimeId=6562 +runtimeId=4723 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=1 blockId=156 -runtimeId=6563 +runtimeId=4724 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=2 blockId=156 -runtimeId=6564 +runtimeId=4725 minecraft:quartz_stairs;upside_down_bit=0;weirdo_direction=3 blockId=156 -runtimeId=6565 +runtimeId=4726 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=0 blockId=156 -runtimeId=6566 +runtimeId=4727 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=1 blockId=156 -runtimeId=6567 +runtimeId=4728 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=2 blockId=156 -runtimeId=6568 +runtimeId=4729 minecraft:quartz_stairs;upside_down_bit=1;weirdo_direction=3 blockId=156 -runtimeId=6569 +runtimeId=4730 minecraft:rail;rail_direction=0 blockId=66 -runtimeId=6570 +runtimeId=3909 minecraft:rail;rail_direction=1 blockId=66 -runtimeId=6571 +runtimeId=3910 minecraft:rail;rail_direction=2 blockId=66 -runtimeId=6572 +runtimeId=3911 minecraft:rail;rail_direction=3 blockId=66 -runtimeId=6573 +runtimeId=3912 minecraft:rail;rail_direction=4 blockId=66 -runtimeId=6574 +runtimeId=3913 minecraft:rail;rail_direction=5 blockId=66 -runtimeId=6575 +runtimeId=3914 minecraft:rail;rail_direction=6 blockId=66 -runtimeId=6576 +runtimeId=3915 minecraft:rail;rail_direction=7 blockId=66 -runtimeId=6577 +runtimeId=3916 minecraft:rail;rail_direction=8 blockId=66 -runtimeId=6578 +runtimeId=3917 minecraft:rail;rail_direction=9 blockId=66 -runtimeId=6579 +runtimeId=3918 minecraft:raw_copper_block blockId=707 -runtimeId=6580 +runtimeId=5219 minecraft:raw_gold_block blockId=708 -runtimeId=6581 +runtimeId=371 minecraft:raw_iron_block blockId=706 -runtimeId=6582 +runtimeId=8202 minecraft:red_candle;lit=0;candles=0 blockId=682 -runtimeId=6583 +runtimeId=4637 minecraft:red_candle;lit=0;candles=1 blockId=682 -runtimeId=6584 +runtimeId=4638 minecraft:red_candle;lit=0;candles=2 blockId=682 -runtimeId=6585 +runtimeId=4639 minecraft:red_candle;lit=0;candles=3 blockId=682 -runtimeId=6586 +runtimeId=4640 minecraft:red_candle;lit=1;candles=0 blockId=682 -runtimeId=6587 +runtimeId=4641 minecraft:red_candle;lit=1;candles=1 blockId=682 -runtimeId=6588 +runtimeId=4642 minecraft:red_candle;lit=1;candles=2 blockId=682 -runtimeId=6589 +runtimeId=4643 minecraft:red_candle;lit=1;candles=3 blockId=682 -runtimeId=6590 +runtimeId=4644 minecraft:red_candle_cake;lit=0 blockId=699 -runtimeId=6591 +runtimeId=7650 minecraft:red_candle_cake;lit=1 blockId=699 -runtimeId=6592 +runtimeId=7651 minecraft:red_flower;flower_type=allium blockId=38 -runtimeId=6595 +runtimeId=3623 minecraft:red_flower;flower_type=cornflower blockId=38 -runtimeId=6602 +runtimeId=3630 minecraft:red_flower;flower_type=houstonia blockId=38 -runtimeId=6596 +runtimeId=3624 minecraft:red_flower;flower_type=lily_of_the_valley blockId=38 -runtimeId=6603 +runtimeId=3631 minecraft:red_flower;flower_type=orchid blockId=38 -runtimeId=6594 +runtimeId=3622 minecraft:red_flower;flower_type=oxeye blockId=38 -runtimeId=6601 +runtimeId=3629 minecraft:red_flower;flower_type=poppy blockId=38 -runtimeId=6593 +runtimeId=3621 minecraft:red_flower;flower_type=tulip_orange blockId=38 -runtimeId=6598 +runtimeId=3626 minecraft:red_flower;flower_type=tulip_pink blockId=38 -runtimeId=6600 +runtimeId=3628 minecraft:red_flower;flower_type=tulip_red blockId=38 -runtimeId=6597 +runtimeId=3625 minecraft:red_flower;flower_type=tulip_white blockId=38 -runtimeId=6599 +runtimeId=3627 minecraft:red_glazed_terracotta;facing_direction=0 blockId=234 -runtimeId=6604 +runtimeId=4150 minecraft:red_glazed_terracotta;facing_direction=1 blockId=234 -runtimeId=6605 +runtimeId=4151 minecraft:red_glazed_terracotta;facing_direction=2 blockId=234 -runtimeId=6606 +runtimeId=4152 minecraft:red_glazed_terracotta;facing_direction=3 blockId=234 -runtimeId=6607 +runtimeId=4153 minecraft:red_glazed_terracotta;facing_direction=4 blockId=234 -runtimeId=6608 +runtimeId=4154 minecraft:red_glazed_terracotta;facing_direction=5 blockId=234 -runtimeId=6609 +runtimeId=4155 minecraft:red_mushroom blockId=40 -runtimeId=6610 +runtimeId=4517 minecraft:red_mushroom_block;huge_mushroom_bits=0 blockId=100 -runtimeId=6611 +runtimeId=3602 minecraft:red_mushroom_block;huge_mushroom_bits=1 blockId=100 -runtimeId=6612 +runtimeId=3603 minecraft:red_mushroom_block;huge_mushroom_bits=2 blockId=100 -runtimeId=6613 +runtimeId=3604 minecraft:red_mushroom_block;huge_mushroom_bits=3 blockId=100 -runtimeId=6614 +runtimeId=3605 minecraft:red_mushroom_block;huge_mushroom_bits=4 blockId=100 -runtimeId=6615 +runtimeId=3606 minecraft:red_mushroom_block;huge_mushroom_bits=5 blockId=100 -runtimeId=6616 +runtimeId=3607 minecraft:red_mushroom_block;huge_mushroom_bits=6 blockId=100 -runtimeId=6617 +runtimeId=3608 minecraft:red_mushroom_block;huge_mushroom_bits=7 blockId=100 -runtimeId=6618 +runtimeId=3609 minecraft:red_mushroom_block;huge_mushroom_bits=8 blockId=100 -runtimeId=6619 +runtimeId=3610 minecraft:red_mushroom_block;huge_mushroom_bits=9 blockId=100 -runtimeId=6620 +runtimeId=3611 minecraft:red_mushroom_block;huge_mushroom_bits=10 blockId=100 -runtimeId=6621 +runtimeId=3612 minecraft:red_mushroom_block;huge_mushroom_bits=11 blockId=100 -runtimeId=6622 +runtimeId=3613 minecraft:red_mushroom_block;huge_mushroom_bits=12 blockId=100 -runtimeId=6623 +runtimeId=3614 minecraft:red_mushroom_block;huge_mushroom_bits=13 blockId=100 -runtimeId=6624 +runtimeId=3615 minecraft:red_mushroom_block;huge_mushroom_bits=14 blockId=100 -runtimeId=6625 +runtimeId=3616 minecraft:red_mushroom_block;huge_mushroom_bits=15 blockId=100 -runtimeId=6626 +runtimeId=3617 minecraft:red_nether_brick blockId=215 -runtimeId=6627 +runtimeId=146 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=439 -runtimeId=6628 +runtimeId=6493 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=439 -runtimeId=6629 +runtimeId=6494 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=439 -runtimeId=6630 +runtimeId=6495 minecraft:red_nether_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=439 -runtimeId=6631 +runtimeId=6496 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=439 -runtimeId=6632 +runtimeId=6497 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=439 -runtimeId=6633 +runtimeId=6498 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=439 -runtimeId=6634 +runtimeId=6499 minecraft:red_nether_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=439 -runtimeId=6635 +runtimeId=6500 minecraft:red_sandstone;sand_stone_type=cut blockId=179 -runtimeId=6638 +runtimeId=6473 minecraft:red_sandstone;sand_stone_type=default blockId=179 -runtimeId=6636 +runtimeId=6471 minecraft:red_sandstone;sand_stone_type=heiroglyphs blockId=179 -runtimeId=6637 +runtimeId=6472 minecraft:red_sandstone;sand_stone_type=smooth blockId=179 -runtimeId=6639 +runtimeId=6474 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=180 -runtimeId=6640 +runtimeId=5300 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=180 -runtimeId=6641 +runtimeId=5301 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=180 -runtimeId=6642 +runtimeId=5302 minecraft:red_sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=180 -runtimeId=6643 +runtimeId=5303 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=180 -runtimeId=6644 +runtimeId=5304 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=180 -runtimeId=6645 +runtimeId=5305 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=180 -runtimeId=6646 +runtimeId=5306 minecraft:red_sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=180 -runtimeId=6647 +runtimeId=5307 minecraft:redstone_block blockId=152 -runtimeId=6648 +runtimeId=3781 minecraft:redstone_lamp blockId=123 -runtimeId=6649 +runtimeId=265 minecraft:redstone_ore blockId=73 -runtimeId=6650 +runtimeId=4237 minecraft:redstone_torch;torch_facing_direction=east blockId=76 -runtimeId=6653 +runtimeId=3532 minecraft:redstone_torch;torch_facing_direction=north blockId=76 -runtimeId=6654 +runtimeId=3533 minecraft:redstone_torch;torch_facing_direction=south blockId=76 -runtimeId=6655 +runtimeId=3534 minecraft:redstone_torch;torch_facing_direction=top blockId=76 -runtimeId=6656 +runtimeId=3535 minecraft:redstone_torch;torch_facing_direction=unknown blockId=76 -runtimeId=6651 +runtimeId=3530 minecraft:redstone_torch;torch_facing_direction=west blockId=76 -runtimeId=6652 +runtimeId=3531 minecraft:redstone_wire;redstone_signal=0 blockId=55 -runtimeId=6657 +runtimeId=3798 minecraft:redstone_wire;redstone_signal=1 blockId=55 -runtimeId=6658 +runtimeId=3799 minecraft:redstone_wire;redstone_signal=2 blockId=55 -runtimeId=6659 +runtimeId=3800 minecraft:redstone_wire;redstone_signal=3 blockId=55 -runtimeId=6660 +runtimeId=3801 minecraft:redstone_wire;redstone_signal=4 blockId=55 -runtimeId=6661 +runtimeId=3802 minecraft:redstone_wire;redstone_signal=5 blockId=55 -runtimeId=6662 +runtimeId=3803 minecraft:redstone_wire;redstone_signal=6 blockId=55 -runtimeId=6663 +runtimeId=3804 minecraft:redstone_wire;redstone_signal=7 blockId=55 -runtimeId=6664 +runtimeId=3805 minecraft:redstone_wire;redstone_signal=8 blockId=55 -runtimeId=6665 +runtimeId=3806 minecraft:redstone_wire;redstone_signal=9 blockId=55 -runtimeId=6666 +runtimeId=3807 minecraft:redstone_wire;redstone_signal=10 blockId=55 -runtimeId=6667 +runtimeId=3808 minecraft:redstone_wire;redstone_signal=11 blockId=55 -runtimeId=6668 +runtimeId=3809 minecraft:redstone_wire;redstone_signal=12 blockId=55 -runtimeId=6669 +runtimeId=3810 minecraft:redstone_wire;redstone_signal=13 blockId=55 -runtimeId=6670 +runtimeId=3811 minecraft:redstone_wire;redstone_signal=14 blockId=55 -runtimeId=6671 +runtimeId=3812 minecraft:redstone_wire;redstone_signal=15 blockId=55 -runtimeId=6672 +runtimeId=3813 minecraft:reeds;age=0 blockId=83 -runtimeId=6673 +runtimeId=5944 minecraft:reeds;age=1 blockId=83 -runtimeId=6674 +runtimeId=5945 minecraft:reeds;age=2 blockId=83 -runtimeId=6675 +runtimeId=5946 minecraft:reeds;age=3 blockId=83 -runtimeId=6676 +runtimeId=5947 minecraft:reeds;age=4 blockId=83 -runtimeId=6677 +runtimeId=5948 minecraft:reeds;age=5 blockId=83 -runtimeId=6678 +runtimeId=5949 minecraft:reeds;age=6 blockId=83 -runtimeId=6679 +runtimeId=5950 minecraft:reeds;age=7 blockId=83 -runtimeId=6680 +runtimeId=5951 minecraft:reeds;age=8 blockId=83 -runtimeId=6681 +runtimeId=5952 minecraft:reeds;age=9 blockId=83 -runtimeId=6682 +runtimeId=5953 minecraft:reeds;age=10 blockId=83 -runtimeId=6683 +runtimeId=5954 minecraft:reeds;age=11 blockId=83 -runtimeId=6684 +runtimeId=5955 minecraft:reeds;age=12 blockId=83 -runtimeId=6685 +runtimeId=5956 minecraft:reeds;age=13 blockId=83 -runtimeId=6686 +runtimeId=5957 minecraft:reeds;age=14 blockId=83 -runtimeId=6687 +runtimeId=5958 minecraft:reeds;age=15 blockId=83 -runtimeId=6688 +runtimeId=5959 + +minecraft:reinforced_deepslate +blockId=721 +runtimeId=5756 minecraft:repeating_command_block;conditional_bit=0;facing_direction=0 blockId=188 -runtimeId=6689 +runtimeId=7677 minecraft:repeating_command_block;conditional_bit=0;facing_direction=1 blockId=188 -runtimeId=6690 +runtimeId=7678 minecraft:repeating_command_block;conditional_bit=0;facing_direction=2 blockId=188 -runtimeId=6691 +runtimeId=7679 minecraft:repeating_command_block;conditional_bit=0;facing_direction=3 blockId=188 -runtimeId=6692 +runtimeId=7680 minecraft:repeating_command_block;conditional_bit=0;facing_direction=4 blockId=188 -runtimeId=6693 +runtimeId=7681 minecraft:repeating_command_block;conditional_bit=0;facing_direction=5 blockId=188 -runtimeId=6694 +runtimeId=7682 minecraft:repeating_command_block;conditional_bit=1;facing_direction=0 blockId=188 -runtimeId=6695 +runtimeId=7683 minecraft:repeating_command_block;conditional_bit=1;facing_direction=1 blockId=188 -runtimeId=6696 +runtimeId=7684 minecraft:repeating_command_block;conditional_bit=1;facing_direction=2 blockId=188 -runtimeId=6697 +runtimeId=7685 minecraft:repeating_command_block;conditional_bit=1;facing_direction=3 blockId=188 -runtimeId=6698 +runtimeId=7686 minecraft:repeating_command_block;conditional_bit=1;facing_direction=4 blockId=188 -runtimeId=6699 +runtimeId=7687 minecraft:repeating_command_block;conditional_bit=1;facing_direction=5 blockId=188 -runtimeId=6700 +runtimeId=7688 minecraft:reserved6 blockId=255 -runtimeId=6701 +runtimeId=4527 minecraft:respawn_anchor;respawn_anchor_charge=0 blockId=527 -runtimeId=6702 +runtimeId=689 minecraft:respawn_anchor;respawn_anchor_charge=1 blockId=527 -runtimeId=6703 +runtimeId=690 minecraft:respawn_anchor;respawn_anchor_charge=2 blockId=527 -runtimeId=6704 +runtimeId=691 minecraft:respawn_anchor;respawn_anchor_charge=3 blockId=527 -runtimeId=6705 +runtimeId=692 minecraft:respawn_anchor;respawn_anchor_charge=4 blockId=527 -runtimeId=6706 +runtimeId=693 minecraft:sand;sand_type=normal blockId=12 -runtimeId=6707 +runtimeId=4178 minecraft:sand;sand_type=red blockId=12 -runtimeId=6708 +runtimeId=4179 minecraft:sandstone;sand_stone_type=cut blockId=24 -runtimeId=6711 +runtimeId=3660 minecraft:sandstone;sand_stone_type=default blockId=24 -runtimeId=6709 +runtimeId=3658 minecraft:sandstone;sand_stone_type=heiroglyphs blockId=24 -runtimeId=6710 +runtimeId=3659 minecraft:sandstone;sand_stone_type=smooth blockId=24 -runtimeId=6712 +runtimeId=3661 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=128 -runtimeId=6713 +runtimeId=3592 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=128 -runtimeId=6714 +runtimeId=3593 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=128 -runtimeId=6715 +runtimeId=3594 minecraft:sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=128 -runtimeId=6716 +runtimeId=3595 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=128 -runtimeId=6717 +runtimeId=3596 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=128 -runtimeId=6718 +runtimeId=3597 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=128 -runtimeId=6719 +runtimeId=3598 minecraft:sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=128 -runtimeId=6720 +runtimeId=3599 minecraft:sapling;sapling_type=acacia;age_bit=0 blockId=6 -runtimeId=6725 +runtimeId=724 minecraft:sapling;sapling_type=acacia;age_bit=1 blockId=6 -runtimeId=6731 +runtimeId=730 minecraft:sapling;sapling_type=birch;age_bit=0 blockId=6 -runtimeId=6723 +runtimeId=722 minecraft:sapling;sapling_type=birch;age_bit=1 blockId=6 -runtimeId=6729 +runtimeId=728 minecraft:sapling;sapling_type=dark_oak;age_bit=0 blockId=6 -runtimeId=6726 +runtimeId=725 minecraft:sapling;sapling_type=dark_oak;age_bit=1 blockId=6 -runtimeId=6732 +runtimeId=731 minecraft:sapling;sapling_type=jungle;age_bit=0 blockId=6 -runtimeId=6724 +runtimeId=723 minecraft:sapling;sapling_type=jungle;age_bit=1 blockId=6 -runtimeId=6730 +runtimeId=729 minecraft:sapling;sapling_type=oak;age_bit=0 blockId=6 -runtimeId=6721 +runtimeId=720 minecraft:sapling;sapling_type=oak;age_bit=1 blockId=6 -runtimeId=6727 +runtimeId=726 minecraft:sapling;sapling_type=spruce;age_bit=0 blockId=6 -runtimeId=6722 +runtimeId=721 minecraft:sapling;sapling_type=spruce;age_bit=1 blockId=6 -runtimeId=6728 +runtimeId=727 minecraft:scaffolding;stability=0;stability_check=0 blockId=420 -runtimeId=6733 +runtimeId=3576 minecraft:scaffolding;stability=0;stability_check=1 blockId=420 -runtimeId=6741 +runtimeId=3584 minecraft:scaffolding;stability=1;stability_check=0 blockId=420 -runtimeId=6734 +runtimeId=3577 minecraft:scaffolding;stability=1;stability_check=1 blockId=420 -runtimeId=6742 +runtimeId=3585 minecraft:scaffolding;stability=2;stability_check=0 blockId=420 -runtimeId=6735 +runtimeId=3578 minecraft:scaffolding;stability=2;stability_check=1 blockId=420 -runtimeId=6743 +runtimeId=3586 minecraft:scaffolding;stability=3;stability_check=0 blockId=420 -runtimeId=6736 +runtimeId=3579 minecraft:scaffolding;stability=3;stability_check=1 blockId=420 -runtimeId=6744 +runtimeId=3587 minecraft:scaffolding;stability=4;stability_check=0 blockId=420 -runtimeId=6737 +runtimeId=3580 minecraft:scaffolding;stability=4;stability_check=1 blockId=420 -runtimeId=6745 +runtimeId=3588 minecraft:scaffolding;stability=5;stability_check=0 blockId=420 -runtimeId=6738 +runtimeId=3581 minecraft:scaffolding;stability=5;stability_check=1 blockId=420 -runtimeId=6746 +runtimeId=3589 minecraft:scaffolding;stability=6;stability_check=0 blockId=420 -runtimeId=6739 +runtimeId=3582 minecraft:scaffolding;stability=6;stability_check=1 blockId=420 -runtimeId=6747 +runtimeId=3590 minecraft:scaffolding;stability=7;stability_check=0 blockId=420 -runtimeId=6740 +runtimeId=3583 minecraft:scaffolding;stability=7;stability_check=1 blockId=420 -runtimeId=6748 +runtimeId=3591 minecraft:sculk blockId=713 -runtimeId=6749 +runtimeId=6990 minecraft:sculk_catalyst;bloom=0 blockId=715 -runtimeId=6750 +runtimeId=3618 minecraft:sculk_catalyst;bloom=1 blockId=715 -runtimeId=6751 +runtimeId=3619 minecraft:sculk_sensor;powered_bit=0 blockId=562 -runtimeId=6752 +runtimeId=4337 minecraft:sculk_sensor;powered_bit=1 blockId=562 -runtimeId=6753 +runtimeId=4338 minecraft:sculk_shrieker;active=0 blockId=716 -runtimeId=6754 +runtimeId=219 minecraft:sculk_shrieker;active=1 blockId=716 -runtimeId=6755 +runtimeId=220 minecraft:sculk_vein;multi_face_direction_bits=0 blockId=714 -runtimeId=6756 +runtimeId=7074 minecraft:sculk_vein;multi_face_direction_bits=1 blockId=714 -runtimeId=6757 +runtimeId=7075 minecraft:sculk_vein;multi_face_direction_bits=2 blockId=714 -runtimeId=6758 +runtimeId=7076 minecraft:sculk_vein;multi_face_direction_bits=3 blockId=714 -runtimeId=6759 +runtimeId=7077 minecraft:sculk_vein;multi_face_direction_bits=4 blockId=714 -runtimeId=6760 +runtimeId=7078 minecraft:sculk_vein;multi_face_direction_bits=5 blockId=714 -runtimeId=6761 +runtimeId=7079 minecraft:sculk_vein;multi_face_direction_bits=6 blockId=714 -runtimeId=6762 +runtimeId=7080 minecraft:sculk_vein;multi_face_direction_bits=7 blockId=714 -runtimeId=6763 +runtimeId=7081 minecraft:sculk_vein;multi_face_direction_bits=8 blockId=714 -runtimeId=6764 +runtimeId=7082 minecraft:sculk_vein;multi_face_direction_bits=9 blockId=714 -runtimeId=6765 +runtimeId=7083 minecraft:sculk_vein;multi_face_direction_bits=10 blockId=714 -runtimeId=6766 +runtimeId=7084 minecraft:sculk_vein;multi_face_direction_bits=11 blockId=714 -runtimeId=6767 +runtimeId=7085 minecraft:sculk_vein;multi_face_direction_bits=12 blockId=714 -runtimeId=6768 +runtimeId=7086 minecraft:sculk_vein;multi_face_direction_bits=13 blockId=714 -runtimeId=6769 +runtimeId=7087 minecraft:sculk_vein;multi_face_direction_bits=14 blockId=714 -runtimeId=6770 +runtimeId=7088 minecraft:sculk_vein;multi_face_direction_bits=15 blockId=714 -runtimeId=6771 +runtimeId=7089 minecraft:sculk_vein;multi_face_direction_bits=16 blockId=714 -runtimeId=6772 +runtimeId=7090 minecraft:sculk_vein;multi_face_direction_bits=17 blockId=714 -runtimeId=6773 +runtimeId=7091 minecraft:sculk_vein;multi_face_direction_bits=18 blockId=714 -runtimeId=6774 +runtimeId=7092 minecraft:sculk_vein;multi_face_direction_bits=19 blockId=714 -runtimeId=6775 +runtimeId=7093 minecraft:sculk_vein;multi_face_direction_bits=20 blockId=714 -runtimeId=6776 +runtimeId=7094 minecraft:sculk_vein;multi_face_direction_bits=21 blockId=714 -runtimeId=6777 +runtimeId=7095 minecraft:sculk_vein;multi_face_direction_bits=22 blockId=714 -runtimeId=6778 +runtimeId=7096 minecraft:sculk_vein;multi_face_direction_bits=23 blockId=714 -runtimeId=6779 +runtimeId=7097 minecraft:sculk_vein;multi_face_direction_bits=24 blockId=714 -runtimeId=6780 +runtimeId=7098 minecraft:sculk_vein;multi_face_direction_bits=25 blockId=714 -runtimeId=6781 +runtimeId=7099 minecraft:sculk_vein;multi_face_direction_bits=26 blockId=714 -runtimeId=6782 +runtimeId=7100 minecraft:sculk_vein;multi_face_direction_bits=27 blockId=714 -runtimeId=6783 +runtimeId=7101 minecraft:sculk_vein;multi_face_direction_bits=28 blockId=714 -runtimeId=6784 +runtimeId=7102 minecraft:sculk_vein;multi_face_direction_bits=29 blockId=714 -runtimeId=6785 +runtimeId=7103 minecraft:sculk_vein;multi_face_direction_bits=30 blockId=714 -runtimeId=6786 +runtimeId=7104 minecraft:sculk_vein;multi_face_direction_bits=31 blockId=714 -runtimeId=6787 +runtimeId=7105 minecraft:sculk_vein;multi_face_direction_bits=32 blockId=714 -runtimeId=6788 +runtimeId=7106 minecraft:sculk_vein;multi_face_direction_bits=33 blockId=714 -runtimeId=6789 +runtimeId=7107 minecraft:sculk_vein;multi_face_direction_bits=34 blockId=714 -runtimeId=6790 +runtimeId=7108 minecraft:sculk_vein;multi_face_direction_bits=35 blockId=714 -runtimeId=6791 +runtimeId=7109 minecraft:sculk_vein;multi_face_direction_bits=36 blockId=714 -runtimeId=6792 +runtimeId=7110 minecraft:sculk_vein;multi_face_direction_bits=37 blockId=714 -runtimeId=6793 +runtimeId=7111 minecraft:sculk_vein;multi_face_direction_bits=38 blockId=714 -runtimeId=6794 +runtimeId=7112 minecraft:sculk_vein;multi_face_direction_bits=39 blockId=714 -runtimeId=6795 +runtimeId=7113 minecraft:sculk_vein;multi_face_direction_bits=40 blockId=714 -runtimeId=6796 +runtimeId=7114 minecraft:sculk_vein;multi_face_direction_bits=41 blockId=714 -runtimeId=6797 +runtimeId=7115 minecraft:sculk_vein;multi_face_direction_bits=42 blockId=714 -runtimeId=6798 +runtimeId=7116 minecraft:sculk_vein;multi_face_direction_bits=43 blockId=714 -runtimeId=6799 +runtimeId=7117 minecraft:sculk_vein;multi_face_direction_bits=44 blockId=714 -runtimeId=6800 +runtimeId=7118 minecraft:sculk_vein;multi_face_direction_bits=45 blockId=714 -runtimeId=6801 +runtimeId=7119 minecraft:sculk_vein;multi_face_direction_bits=46 blockId=714 -runtimeId=6802 +runtimeId=7120 minecraft:sculk_vein;multi_face_direction_bits=47 blockId=714 -runtimeId=6803 +runtimeId=7121 minecraft:sculk_vein;multi_face_direction_bits=48 blockId=714 -runtimeId=6804 +runtimeId=7122 minecraft:sculk_vein;multi_face_direction_bits=49 blockId=714 -runtimeId=6805 +runtimeId=7123 minecraft:sculk_vein;multi_face_direction_bits=50 blockId=714 -runtimeId=6806 +runtimeId=7124 minecraft:sculk_vein;multi_face_direction_bits=51 blockId=714 -runtimeId=6807 +runtimeId=7125 minecraft:sculk_vein;multi_face_direction_bits=52 blockId=714 -runtimeId=6808 +runtimeId=7126 minecraft:sculk_vein;multi_face_direction_bits=53 blockId=714 -runtimeId=6809 +runtimeId=7127 minecraft:sculk_vein;multi_face_direction_bits=54 blockId=714 -runtimeId=6810 +runtimeId=7128 minecraft:sculk_vein;multi_face_direction_bits=55 blockId=714 -runtimeId=6811 +runtimeId=7129 minecraft:sculk_vein;multi_face_direction_bits=56 blockId=714 -runtimeId=6812 +runtimeId=7130 minecraft:sculk_vein;multi_face_direction_bits=57 blockId=714 -runtimeId=6813 +runtimeId=7131 minecraft:sculk_vein;multi_face_direction_bits=58 blockId=714 -runtimeId=6814 +runtimeId=7132 minecraft:sculk_vein;multi_face_direction_bits=59 blockId=714 -runtimeId=6815 +runtimeId=7133 minecraft:sculk_vein;multi_face_direction_bits=60 blockId=714 -runtimeId=6816 +runtimeId=7134 minecraft:sculk_vein;multi_face_direction_bits=61 blockId=714 -runtimeId=6817 +runtimeId=7135 minecraft:sculk_vein;multi_face_direction_bits=62 blockId=714 -runtimeId=6818 +runtimeId=7136 minecraft:sculk_vein;multi_face_direction_bits=63 blockId=714 -runtimeId=6819 +runtimeId=7137 -minecraft:seaLantern +minecraft:sea_lantern blockId=169 -runtimeId=6831 +runtimeId=7488 minecraft:sea_pickle;cluster_count=0;dead_bit=0 blockId=411 -runtimeId=6820 +runtimeId=5779 minecraft:sea_pickle;cluster_count=0;dead_bit=1 blockId=411 -runtimeId=6824 +runtimeId=5783 minecraft:sea_pickle;cluster_count=1;dead_bit=0 blockId=411 -runtimeId=6821 +runtimeId=5780 minecraft:sea_pickle;cluster_count=1;dead_bit=1 blockId=411 -runtimeId=6825 +runtimeId=5784 minecraft:sea_pickle;cluster_count=2;dead_bit=0 blockId=411 -runtimeId=6822 +runtimeId=5781 minecraft:sea_pickle;cluster_count=2;dead_bit=1 blockId=411 -runtimeId=6826 +runtimeId=5785 minecraft:sea_pickle;cluster_count=3;dead_bit=0 blockId=411 -runtimeId=6823 +runtimeId=5782 minecraft:sea_pickle;cluster_count=3;dead_bit=1 blockId=411 -runtimeId=6827 +runtimeId=5786 minecraft:seagrass;sea_grass_type=default blockId=385 -runtimeId=6828 +runtimeId=244 minecraft:seagrass;sea_grass_type=double_bot blockId=385 -runtimeId=6830 +runtimeId=246 minecraft:seagrass;sea_grass_type=double_top blockId=385 -runtimeId=6829 +runtimeId=245 minecraft:shroomlight blockId=485 -runtimeId=6832 +runtimeId=5017 minecraft:shulker_box;color=black blockId=218 -runtimeId=6848 +runtimeId=5281 minecraft:shulker_box;color=blue blockId=218 -runtimeId=6844 +runtimeId=5277 minecraft:shulker_box;color=brown blockId=218 -runtimeId=6845 +runtimeId=5278 minecraft:shulker_box;color=cyan blockId=218 -runtimeId=6842 +runtimeId=5275 minecraft:shulker_box;color=gray blockId=218 -runtimeId=6840 +runtimeId=5273 minecraft:shulker_box;color=green blockId=218 -runtimeId=6846 +runtimeId=5279 minecraft:shulker_box;color=light_blue blockId=218 -runtimeId=6836 +runtimeId=5269 minecraft:shulker_box;color=lime blockId=218 -runtimeId=6838 +runtimeId=5271 minecraft:shulker_box;color=magenta blockId=218 -runtimeId=6835 +runtimeId=5268 minecraft:shulker_box;color=orange blockId=218 -runtimeId=6834 +runtimeId=5267 minecraft:shulker_box;color=pink blockId=218 -runtimeId=6839 +runtimeId=5272 minecraft:shulker_box;color=purple blockId=218 -runtimeId=6843 +runtimeId=5276 minecraft:shulker_box;color=red blockId=218 -runtimeId=6847 +runtimeId=5280 minecraft:shulker_box;color=silver blockId=218 -runtimeId=6841 +runtimeId=5274 minecraft:shulker_box;color=white blockId=218 -runtimeId=6833 +runtimeId=5266 minecraft:shulker_box;color=yellow blockId=218 -runtimeId=6837 +runtimeId=5270 minecraft:silver_glazed_terracotta;facing_direction=0 blockId=228 -runtimeId=6849 +runtimeId=3536 minecraft:silver_glazed_terracotta;facing_direction=1 blockId=228 -runtimeId=6850 +runtimeId=3537 minecraft:silver_glazed_terracotta;facing_direction=2 blockId=228 -runtimeId=6851 +runtimeId=3538 minecraft:silver_glazed_terracotta;facing_direction=3 blockId=228 -runtimeId=6852 +runtimeId=3539 minecraft:silver_glazed_terracotta;facing_direction=4 blockId=228 -runtimeId=6853 +runtimeId=3540 minecraft:silver_glazed_terracotta;facing_direction=5 blockId=228 -runtimeId=6854 +runtimeId=3541 minecraft:skull;facing_direction=0 blockId=144 -runtimeId=6855 +runtimeId=5242 minecraft:skull;facing_direction=1 blockId=144 -runtimeId=6856 +runtimeId=5243 minecraft:skull;facing_direction=2 blockId=144 -runtimeId=6857 +runtimeId=5244 minecraft:skull;facing_direction=3 blockId=144 -runtimeId=6858 +runtimeId=5245 minecraft:skull;facing_direction=4 blockId=144 -runtimeId=6859 +runtimeId=5246 minecraft:skull;facing_direction=5 blockId=144 -runtimeId=6860 +runtimeId=5247 minecraft:slime blockId=165 -runtimeId=6861 +runtimeId=4197 minecraft:small_amethyst_bud;facing_direction=0 blockId=587 -runtimeId=6862 +runtimeId=317 minecraft:small_amethyst_bud;facing_direction=1 blockId=587 -runtimeId=6863 +runtimeId=318 minecraft:small_amethyst_bud;facing_direction=2 blockId=587 -runtimeId=6864 +runtimeId=319 minecraft:small_amethyst_bud;facing_direction=3 blockId=587 -runtimeId=6865 +runtimeId=320 minecraft:small_amethyst_bud;facing_direction=4 blockId=587 -runtimeId=6866 +runtimeId=321 minecraft:small_amethyst_bud;facing_direction=5 blockId=587 -runtimeId=6867 +runtimeId=322 minecraft:small_dripleaf_block;upper_block_bit=0;direction=0 blockId=591 -runtimeId=6868 +runtimeId=4261 minecraft:small_dripleaf_block;upper_block_bit=0;direction=1 blockId=591 -runtimeId=6870 +runtimeId=4263 minecraft:small_dripleaf_block;upper_block_bit=0;direction=2 blockId=591 -runtimeId=6872 +runtimeId=4265 minecraft:small_dripleaf_block;upper_block_bit=0;direction=3 blockId=591 -runtimeId=6874 +runtimeId=4267 minecraft:small_dripleaf_block;upper_block_bit=1;direction=0 blockId=591 -runtimeId=6869 +runtimeId=4262 minecraft:small_dripleaf_block;upper_block_bit=1;direction=1 blockId=591 -runtimeId=6871 +runtimeId=4264 minecraft:small_dripleaf_block;upper_block_bit=1;direction=2 blockId=591 -runtimeId=6873 +runtimeId=4266 minecraft:small_dripleaf_block;upper_block_bit=1;direction=3 blockId=591 -runtimeId=6875 +runtimeId=4268 minecraft:smithing_table blockId=457 -runtimeId=6876 +runtimeId=3731 minecraft:smoker;facing_direction=0 blockId=453 -runtimeId=6877 +runtimeId=655 minecraft:smoker;facing_direction=1 blockId=453 -runtimeId=6878 +runtimeId=656 minecraft:smoker;facing_direction=2 blockId=453 -runtimeId=6879 +runtimeId=657 minecraft:smoker;facing_direction=3 blockId=453 -runtimeId=6880 +runtimeId=658 minecraft:smoker;facing_direction=4 blockId=453 -runtimeId=6881 +runtimeId=659 minecraft:smoker;facing_direction=5 blockId=453 -runtimeId=6882 +runtimeId=660 minecraft:smooth_basalt blockId=632 -runtimeId=6883 +runtimeId=1162 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=0 blockId=440 -runtimeId=6884 +runtimeId=7642 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=1 blockId=440 -runtimeId=6885 +runtimeId=7643 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=2 blockId=440 -runtimeId=6886 +runtimeId=7644 minecraft:smooth_quartz_stairs;upside_down_bit=0;weirdo_direction=3 blockId=440 -runtimeId=6887 +runtimeId=7645 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=0 blockId=440 -runtimeId=6888 +runtimeId=7646 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=1 blockId=440 -runtimeId=6889 +runtimeId=7647 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=2 blockId=440 -runtimeId=6890 +runtimeId=7648 minecraft:smooth_quartz_stairs;upside_down_bit=1;weirdo_direction=3 blockId=440 -runtimeId=6891 +runtimeId=7649 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=431 -runtimeId=6892 +runtimeId=5496 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=431 -runtimeId=6893 +runtimeId=5497 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=431 -runtimeId=6894 +runtimeId=5498 minecraft:smooth_red_sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=431 -runtimeId=6895 +runtimeId=5499 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=431 -runtimeId=6896 +runtimeId=5500 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=431 -runtimeId=6897 +runtimeId=5501 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=431 -runtimeId=6898 +runtimeId=5502 minecraft:smooth_red_sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=431 -runtimeId=6899 +runtimeId=5503 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=432 -runtimeId=6900 +runtimeId=3632 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=432 -runtimeId=6901 +runtimeId=3633 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=432 -runtimeId=6902 +runtimeId=3634 minecraft:smooth_sandstone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=432 -runtimeId=6903 +runtimeId=3635 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=432 -runtimeId=6904 +runtimeId=3636 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=432 -runtimeId=6905 +runtimeId=3637 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=432 -runtimeId=6906 +runtimeId=3638 minecraft:smooth_sandstone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=432 -runtimeId=6907 +runtimeId=3639 minecraft:smooth_stone blockId=438 -runtimeId=6908 +runtimeId=4514 minecraft:snow blockId=80 -runtimeId=6909 +runtimeId=4177 minecraft:snow_layer;covered_bit=0;height=0 blockId=78 -runtimeId=6910 +runtimeId=155 minecraft:snow_layer;covered_bit=0;height=1 blockId=78 -runtimeId=6911 +runtimeId=156 minecraft:snow_layer;covered_bit=0;height=2 blockId=78 -runtimeId=6912 +runtimeId=157 minecraft:snow_layer;covered_bit=0;height=3 blockId=78 -runtimeId=6913 +runtimeId=158 minecraft:snow_layer;covered_bit=0;height=4 blockId=78 -runtimeId=6914 +runtimeId=159 minecraft:snow_layer;covered_bit=0;height=5 blockId=78 -runtimeId=6915 +runtimeId=160 minecraft:snow_layer;covered_bit=0;height=6 blockId=78 -runtimeId=6916 +runtimeId=161 minecraft:snow_layer;covered_bit=0;height=7 blockId=78 -runtimeId=6917 +runtimeId=162 minecraft:snow_layer;covered_bit=1;height=0 blockId=78 -runtimeId=6918 +runtimeId=163 minecraft:snow_layer;covered_bit=1;height=1 blockId=78 -runtimeId=6919 +runtimeId=164 minecraft:snow_layer;covered_bit=1;height=2 blockId=78 -runtimeId=6920 +runtimeId=165 minecraft:snow_layer;covered_bit=1;height=3 blockId=78 -runtimeId=6921 +runtimeId=166 minecraft:snow_layer;covered_bit=1;height=4 blockId=78 -runtimeId=6922 +runtimeId=167 minecraft:snow_layer;covered_bit=1;height=5 blockId=78 -runtimeId=6923 +runtimeId=168 minecraft:snow_layer;covered_bit=1;height=6 blockId=78 -runtimeId=6924 +runtimeId=169 minecraft:snow_layer;covered_bit=1;height=7 blockId=78 -runtimeId=6925 +runtimeId=170 minecraft:soul_campfire;extinguished=0;direction=0 blockId=545 -runtimeId=6926 +runtimeId=7997 minecraft:soul_campfire;extinguished=0;direction=1 blockId=545 -runtimeId=6927 +runtimeId=7998 minecraft:soul_campfire;extinguished=0;direction=2 blockId=545 -runtimeId=6928 +runtimeId=7999 minecraft:soul_campfire;extinguished=0;direction=3 blockId=545 -runtimeId=6929 +runtimeId=8000 minecraft:soul_campfire;extinguished=1;direction=0 blockId=545 -runtimeId=6930 +runtimeId=8001 minecraft:soul_campfire;extinguished=1;direction=1 blockId=545 -runtimeId=6931 +runtimeId=8002 minecraft:soul_campfire;extinguished=1;direction=2 blockId=545 -runtimeId=6932 +runtimeId=8003 minecraft:soul_campfire;extinguished=1;direction=3 blockId=545 -runtimeId=6933 +runtimeId=8004 minecraft:soul_fire;age=0 blockId=492 -runtimeId=6934 +runtimeId=412 minecraft:soul_fire;age=1 blockId=492 -runtimeId=6935 +runtimeId=413 minecraft:soul_fire;age=2 blockId=492 -runtimeId=6936 +runtimeId=414 minecraft:soul_fire;age=3 blockId=492 -runtimeId=6937 +runtimeId=415 minecraft:soul_fire;age=4 blockId=492 -runtimeId=6938 +runtimeId=416 minecraft:soul_fire;age=5 blockId=492 -runtimeId=6939 +runtimeId=417 minecraft:soul_fire;age=6 blockId=492 -runtimeId=6940 +runtimeId=418 minecraft:soul_fire;age=7 blockId=492 -runtimeId=6941 +runtimeId=419 minecraft:soul_fire;age=8 blockId=492 -runtimeId=6942 +runtimeId=420 minecraft:soul_fire;age=9 blockId=492 -runtimeId=6943 +runtimeId=421 minecraft:soul_fire;age=10 blockId=492 -runtimeId=6944 +runtimeId=422 minecraft:soul_fire;age=11 blockId=492 -runtimeId=6945 +runtimeId=423 minecraft:soul_fire;age=12 blockId=492 -runtimeId=6946 +runtimeId=424 minecraft:soul_fire;age=13 blockId=492 -runtimeId=6947 +runtimeId=425 minecraft:soul_fire;age=14 blockId=492 -runtimeId=6948 +runtimeId=426 minecraft:soul_fire;age=15 blockId=492 -runtimeId=6949 +runtimeId=427 minecraft:soul_lantern;hanging=0 blockId=524 -runtimeId=6950 +runtimeId=5699 minecraft:soul_lantern;hanging=1 blockId=524 -runtimeId=6951 +runtimeId=5700 minecraft:soul_sand blockId=88 -runtimeId=6952 +runtimeId=5739 minecraft:soul_soil blockId=491 -runtimeId=6953 +runtimeId=5738 minecraft:soul_torch;torch_facing_direction=east blockId=523 -runtimeId=6956 +runtimeId=4602 minecraft:soul_torch;torch_facing_direction=north blockId=523 -runtimeId=6957 +runtimeId=4603 minecraft:soul_torch;torch_facing_direction=south blockId=523 -runtimeId=6958 +runtimeId=4604 minecraft:soul_torch;torch_facing_direction=top blockId=523 -runtimeId=6959 +runtimeId=4605 minecraft:soul_torch;torch_facing_direction=unknown blockId=523 -runtimeId=6954 +runtimeId=4600 minecraft:soul_torch;torch_facing_direction=west blockId=523 -runtimeId=6955 +runtimeId=4601 minecraft:sponge;sponge_type=dry blockId=19 -runtimeId=6960 +runtimeId=637 minecraft:sponge;sponge_type=wet blockId=19 -runtimeId=6961 +runtimeId=638 minecraft:spore_blossom blockId=576 -runtimeId=6962 +runtimeId=7254 minecraft:spruce_button;button_pressed_bit=0;facing_direction=0 blockId=399 -runtimeId=6963 +runtimeId=4269 minecraft:spruce_button;button_pressed_bit=0;facing_direction=1 blockId=399 -runtimeId=6964 +runtimeId=4270 minecraft:spruce_button;button_pressed_bit=0;facing_direction=2 blockId=399 -runtimeId=6965 +runtimeId=4271 minecraft:spruce_button;button_pressed_bit=0;facing_direction=3 blockId=399 -runtimeId=6966 +runtimeId=4272 minecraft:spruce_button;button_pressed_bit=0;facing_direction=4 blockId=399 -runtimeId=6967 +runtimeId=4273 minecraft:spruce_button;button_pressed_bit=0;facing_direction=5 blockId=399 -runtimeId=6968 +runtimeId=4274 minecraft:spruce_button;button_pressed_bit=1;facing_direction=0 blockId=399 -runtimeId=6969 +runtimeId=4275 minecraft:spruce_button;button_pressed_bit=1;facing_direction=1 blockId=399 -runtimeId=6970 +runtimeId=4276 minecraft:spruce_button;button_pressed_bit=1;facing_direction=2 blockId=399 -runtimeId=6971 +runtimeId=4277 minecraft:spruce_button;button_pressed_bit=1;facing_direction=3 blockId=399 -runtimeId=6972 +runtimeId=4278 minecraft:spruce_button;button_pressed_bit=1;facing_direction=4 blockId=399 -runtimeId=6973 +runtimeId=4279 minecraft:spruce_button;button_pressed_bit=1;facing_direction=5 blockId=399 -runtimeId=6974 +runtimeId=4280 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6975 +runtimeId=4647 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6976 +runtimeId=4648 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6977 +runtimeId=4649 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6978 +runtimeId=4650 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=6991 +runtimeId=4663 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=6992 +runtimeId=4664 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=6993 +runtimeId=4665 minecraft:spruce_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=6994 +runtimeId=4666 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6983 +runtimeId=4655 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6984 +runtimeId=4656 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6985 +runtimeId=4657 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6986 +runtimeId=4658 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=6999 +runtimeId=4671 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=7000 +runtimeId=4672 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=7001 +runtimeId=4673 minecraft:spruce_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=7002 +runtimeId=4674 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6979 +runtimeId=4651 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6980 +runtimeId=4652 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6981 +runtimeId=4653 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6982 +runtimeId=4654 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=6995 +runtimeId=4667 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=6996 +runtimeId=4668 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=6997 +runtimeId=4669 minecraft:spruce_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=6998 +runtimeId=4670 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=193 -runtimeId=6987 +runtimeId=4659 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=193 -runtimeId=6988 +runtimeId=4660 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=193 -runtimeId=6989 +runtimeId=4661 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=193 -runtimeId=6990 +runtimeId=4662 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=193 -runtimeId=7003 +runtimeId=4675 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=193 -runtimeId=7004 +runtimeId=4676 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=193 -runtimeId=7005 +runtimeId=4677 minecraft:spruce_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=193 -runtimeId=7006 +runtimeId=4678 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=183 -runtimeId=7007 +runtimeId=6475 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=183 -runtimeId=7008 +runtimeId=6476 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=183 -runtimeId=7009 +runtimeId=6477 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=183 -runtimeId=7010 +runtimeId=6478 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=183 -runtimeId=7011 +runtimeId=6479 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=183 -runtimeId=7012 +runtimeId=6480 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=183 -runtimeId=7013 +runtimeId=6481 minecraft:spruce_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=183 -runtimeId=7014 +runtimeId=6482 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=183 -runtimeId=7015 +runtimeId=6483 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=183 -runtimeId=7016 +runtimeId=6484 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=183 -runtimeId=7017 +runtimeId=6485 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=183 -runtimeId=7018 +runtimeId=6486 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=183 -runtimeId=7019 +runtimeId=6487 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=183 -runtimeId=7020 +runtimeId=6488 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=183 -runtimeId=7021 +runtimeId=6489 minecraft:spruce_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=183 -runtimeId=7022 +runtimeId=6490 minecraft:spruce_pressure_plate;redstone_signal=0 blockId=409 -runtimeId=7023 +runtimeId=3764 minecraft:spruce_pressure_plate;redstone_signal=1 blockId=409 -runtimeId=7024 +runtimeId=3765 minecraft:spruce_pressure_plate;redstone_signal=2 blockId=409 -runtimeId=7025 +runtimeId=3766 minecraft:spruce_pressure_plate;redstone_signal=3 blockId=409 -runtimeId=7026 +runtimeId=3767 minecraft:spruce_pressure_plate;redstone_signal=4 blockId=409 -runtimeId=7027 +runtimeId=3768 minecraft:spruce_pressure_plate;redstone_signal=5 blockId=409 -runtimeId=7028 +runtimeId=3769 minecraft:spruce_pressure_plate;redstone_signal=6 blockId=409 -runtimeId=7029 +runtimeId=3770 minecraft:spruce_pressure_plate;redstone_signal=7 blockId=409 -runtimeId=7030 +runtimeId=3771 minecraft:spruce_pressure_plate;redstone_signal=8 blockId=409 -runtimeId=7031 +runtimeId=3772 minecraft:spruce_pressure_plate;redstone_signal=9 blockId=409 -runtimeId=7032 +runtimeId=3773 minecraft:spruce_pressure_plate;redstone_signal=10 blockId=409 -runtimeId=7033 +runtimeId=3774 minecraft:spruce_pressure_plate;redstone_signal=11 blockId=409 -runtimeId=7034 +runtimeId=3775 minecraft:spruce_pressure_plate;redstone_signal=12 blockId=409 -runtimeId=7035 +runtimeId=3776 minecraft:spruce_pressure_plate;redstone_signal=13 blockId=409 -runtimeId=7036 +runtimeId=3777 minecraft:spruce_pressure_plate;redstone_signal=14 blockId=409 -runtimeId=7037 +runtimeId=3778 minecraft:spruce_pressure_plate;redstone_signal=15 blockId=409 -runtimeId=7038 +runtimeId=3779 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=0 blockId=134 -runtimeId=7039 +runtimeId=128 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=1 blockId=134 -runtimeId=7040 +runtimeId=129 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=2 blockId=134 -runtimeId=7041 +runtimeId=130 minecraft:spruce_stairs;upside_down_bit=0;weirdo_direction=3 blockId=134 -runtimeId=7042 +runtimeId=131 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=0 blockId=134 -runtimeId=7043 +runtimeId=132 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=1 blockId=134 -runtimeId=7044 +runtimeId=133 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=2 blockId=134 -runtimeId=7045 +runtimeId=134 minecraft:spruce_stairs;upside_down_bit=1;weirdo_direction=3 blockId=134 -runtimeId=7046 +runtimeId=135 minecraft:spruce_standing_sign;ground_sign_direction=0 blockId=436 -runtimeId=7047 +runtimeId=7000 minecraft:spruce_standing_sign;ground_sign_direction=1 blockId=436 -runtimeId=7048 +runtimeId=7001 minecraft:spruce_standing_sign;ground_sign_direction=2 blockId=436 -runtimeId=7049 +runtimeId=7002 minecraft:spruce_standing_sign;ground_sign_direction=3 blockId=436 -runtimeId=7050 +runtimeId=7003 minecraft:spruce_standing_sign;ground_sign_direction=4 blockId=436 -runtimeId=7051 +runtimeId=7004 minecraft:spruce_standing_sign;ground_sign_direction=5 blockId=436 -runtimeId=7052 +runtimeId=7005 minecraft:spruce_standing_sign;ground_sign_direction=6 blockId=436 -runtimeId=7053 +runtimeId=7006 minecraft:spruce_standing_sign;ground_sign_direction=7 blockId=436 -runtimeId=7054 +runtimeId=7007 minecraft:spruce_standing_sign;ground_sign_direction=8 blockId=436 -runtimeId=7055 +runtimeId=7008 minecraft:spruce_standing_sign;ground_sign_direction=9 blockId=436 -runtimeId=7056 +runtimeId=7009 minecraft:spruce_standing_sign;ground_sign_direction=10 blockId=436 -runtimeId=7057 +runtimeId=7010 minecraft:spruce_standing_sign;ground_sign_direction=11 blockId=436 -runtimeId=7058 +runtimeId=7011 minecraft:spruce_standing_sign;ground_sign_direction=12 blockId=436 -runtimeId=7059 +runtimeId=7012 minecraft:spruce_standing_sign;ground_sign_direction=13 blockId=436 -runtimeId=7060 +runtimeId=7013 minecraft:spruce_standing_sign;ground_sign_direction=14 blockId=436 -runtimeId=7061 +runtimeId=7014 minecraft:spruce_standing_sign;ground_sign_direction=15 blockId=436 -runtimeId=7062 +runtimeId=7015 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=404 -runtimeId=7063 +runtimeId=6443 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=404 -runtimeId=7064 +runtimeId=6444 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=404 -runtimeId=7065 +runtimeId=6445 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=404 -runtimeId=7066 +runtimeId=6446 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=404 -runtimeId=7067 +runtimeId=6447 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=404 -runtimeId=7068 +runtimeId=6448 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=404 -runtimeId=7069 +runtimeId=6449 minecraft:spruce_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=404 -runtimeId=7070 +runtimeId=6450 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=404 -runtimeId=7071 +runtimeId=6451 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=404 -runtimeId=7072 +runtimeId=6452 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=404 -runtimeId=7073 +runtimeId=6453 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=404 -runtimeId=7074 +runtimeId=6454 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=404 -runtimeId=7075 +runtimeId=6455 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=404 -runtimeId=7076 +runtimeId=6456 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=404 -runtimeId=7077 +runtimeId=6457 minecraft:spruce_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=404 -runtimeId=7078 +runtimeId=6458 minecraft:spruce_wall_sign;facing_direction=0 blockId=437 -runtimeId=7079 +runtimeId=7336 minecraft:spruce_wall_sign;facing_direction=1 blockId=437 -runtimeId=7080 +runtimeId=7337 minecraft:spruce_wall_sign;facing_direction=2 blockId=437 -runtimeId=7081 +runtimeId=7338 minecraft:spruce_wall_sign;facing_direction=3 blockId=437 -runtimeId=7082 +runtimeId=7339 minecraft:spruce_wall_sign;facing_direction=4 blockId=437 -runtimeId=7083 +runtimeId=7340 minecraft:spruce_wall_sign;facing_direction=5 blockId=437 -runtimeId=7084 +runtimeId=7341 minecraft:stained_glass;color=black blockId=241 -runtimeId=7100 +runtimeId=1155 minecraft:stained_glass;color=blue blockId=241 -runtimeId=7096 +runtimeId=1151 minecraft:stained_glass;color=brown blockId=241 -runtimeId=7097 +runtimeId=1152 minecraft:stained_glass;color=cyan blockId=241 -runtimeId=7094 +runtimeId=1149 minecraft:stained_glass;color=gray blockId=241 -runtimeId=7092 +runtimeId=1147 minecraft:stained_glass;color=green blockId=241 -runtimeId=7098 +runtimeId=1153 minecraft:stained_glass;color=light_blue blockId=241 -runtimeId=7088 +runtimeId=1143 minecraft:stained_glass;color=lime blockId=241 -runtimeId=7090 +runtimeId=1145 minecraft:stained_glass;color=magenta blockId=241 -runtimeId=7087 +runtimeId=1142 minecraft:stained_glass;color=orange blockId=241 -runtimeId=7086 +runtimeId=1141 minecraft:stained_glass;color=pink blockId=241 -runtimeId=7091 +runtimeId=1146 minecraft:stained_glass;color=purple blockId=241 -runtimeId=7095 +runtimeId=1150 minecraft:stained_glass;color=red blockId=241 -runtimeId=7099 +runtimeId=1154 minecraft:stained_glass;color=silver blockId=241 -runtimeId=7093 +runtimeId=1148 minecraft:stained_glass;color=white blockId=241 -runtimeId=7085 +runtimeId=1140 minecraft:stained_glass;color=yellow blockId=241 -runtimeId=7089 +runtimeId=1144 minecraft:stained_glass_pane;color=black blockId=160 -runtimeId=7116 +runtimeId=4823 minecraft:stained_glass_pane;color=blue blockId=160 -runtimeId=7112 +runtimeId=4819 minecraft:stained_glass_pane;color=brown blockId=160 -runtimeId=7113 +runtimeId=4820 minecraft:stained_glass_pane;color=cyan blockId=160 -runtimeId=7110 +runtimeId=4817 minecraft:stained_glass_pane;color=gray blockId=160 -runtimeId=7108 +runtimeId=4815 minecraft:stained_glass_pane;color=green blockId=160 -runtimeId=7114 +runtimeId=4821 minecraft:stained_glass_pane;color=light_blue blockId=160 -runtimeId=7104 +runtimeId=4811 minecraft:stained_glass_pane;color=lime blockId=160 -runtimeId=7106 +runtimeId=4813 minecraft:stained_glass_pane;color=magenta blockId=160 -runtimeId=7103 +runtimeId=4810 minecraft:stained_glass_pane;color=orange blockId=160 -runtimeId=7102 +runtimeId=4809 minecraft:stained_glass_pane;color=pink blockId=160 -runtimeId=7107 +runtimeId=4814 minecraft:stained_glass_pane;color=purple blockId=160 -runtimeId=7111 +runtimeId=4818 minecraft:stained_glass_pane;color=red blockId=160 -runtimeId=7115 +runtimeId=4822 minecraft:stained_glass_pane;color=silver blockId=160 -runtimeId=7109 +runtimeId=4816 minecraft:stained_glass_pane;color=white blockId=160 -runtimeId=7101 +runtimeId=4808 minecraft:stained_glass_pane;color=yellow blockId=160 -runtimeId=7105 +runtimeId=4812 minecraft:stained_hardened_clay;color=black blockId=159 -runtimeId=7132 +runtimeId=6114 minecraft:stained_hardened_clay;color=blue blockId=159 -runtimeId=7128 +runtimeId=6110 minecraft:stained_hardened_clay;color=brown blockId=159 -runtimeId=7129 +runtimeId=6111 minecraft:stained_hardened_clay;color=cyan blockId=159 -runtimeId=7126 +runtimeId=6108 minecraft:stained_hardened_clay;color=gray blockId=159 -runtimeId=7124 +runtimeId=6106 minecraft:stained_hardened_clay;color=green blockId=159 -runtimeId=7130 +runtimeId=6112 minecraft:stained_hardened_clay;color=light_blue blockId=159 -runtimeId=7120 +runtimeId=6102 minecraft:stained_hardened_clay;color=lime blockId=159 -runtimeId=7122 +runtimeId=6104 minecraft:stained_hardened_clay;color=magenta blockId=159 -runtimeId=7119 +runtimeId=6101 minecraft:stained_hardened_clay;color=orange blockId=159 -runtimeId=7118 +runtimeId=6100 minecraft:stained_hardened_clay;color=pink blockId=159 -runtimeId=7123 +runtimeId=6105 minecraft:stained_hardened_clay;color=purple blockId=159 -runtimeId=7127 +runtimeId=6109 minecraft:stained_hardened_clay;color=red blockId=159 -runtimeId=7131 +runtimeId=6113 minecraft:stained_hardened_clay;color=silver blockId=159 -runtimeId=7125 +runtimeId=6107 minecraft:stained_hardened_clay;color=white blockId=159 -runtimeId=7117 +runtimeId=6099 minecraft:stained_hardened_clay;color=yellow blockId=159 -runtimeId=7121 +runtimeId=6103 minecraft:standing_banner;ground_sign_direction=0 blockId=176 -runtimeId=7133 +runtimeId=6867 minecraft:standing_banner;ground_sign_direction=1 blockId=176 -runtimeId=7134 +runtimeId=6868 minecraft:standing_banner;ground_sign_direction=2 blockId=176 -runtimeId=7135 +runtimeId=6869 minecraft:standing_banner;ground_sign_direction=3 blockId=176 -runtimeId=7136 +runtimeId=6870 minecraft:standing_banner;ground_sign_direction=4 blockId=176 -runtimeId=7137 +runtimeId=6871 minecraft:standing_banner;ground_sign_direction=5 blockId=176 -runtimeId=7138 +runtimeId=6872 minecraft:standing_banner;ground_sign_direction=6 blockId=176 -runtimeId=7139 +runtimeId=6873 minecraft:standing_banner;ground_sign_direction=7 blockId=176 -runtimeId=7140 +runtimeId=6874 minecraft:standing_banner;ground_sign_direction=8 blockId=176 -runtimeId=7141 +runtimeId=6875 minecraft:standing_banner;ground_sign_direction=9 blockId=176 -runtimeId=7142 +runtimeId=6876 minecraft:standing_banner;ground_sign_direction=10 blockId=176 -runtimeId=7143 +runtimeId=6877 minecraft:standing_banner;ground_sign_direction=11 blockId=176 -runtimeId=7144 +runtimeId=6878 minecraft:standing_banner;ground_sign_direction=12 blockId=176 -runtimeId=7145 +runtimeId=6879 minecraft:standing_banner;ground_sign_direction=13 blockId=176 -runtimeId=7146 +runtimeId=6880 minecraft:standing_banner;ground_sign_direction=14 blockId=176 -runtimeId=7147 +runtimeId=6881 minecraft:standing_banner;ground_sign_direction=15 blockId=176 -runtimeId=7148 +runtimeId=6882 minecraft:standing_sign;ground_sign_direction=0 blockId=63 -runtimeId=7149 +runtimeId=5555 minecraft:standing_sign;ground_sign_direction=1 blockId=63 -runtimeId=7150 +runtimeId=5556 minecraft:standing_sign;ground_sign_direction=2 blockId=63 -runtimeId=7151 +runtimeId=5557 minecraft:standing_sign;ground_sign_direction=3 blockId=63 -runtimeId=7152 +runtimeId=5558 minecraft:standing_sign;ground_sign_direction=4 blockId=63 -runtimeId=7153 +runtimeId=5559 minecraft:standing_sign;ground_sign_direction=5 blockId=63 -runtimeId=7154 +runtimeId=5560 minecraft:standing_sign;ground_sign_direction=6 blockId=63 -runtimeId=7155 +runtimeId=5561 minecraft:standing_sign;ground_sign_direction=7 blockId=63 -runtimeId=7156 +runtimeId=5562 minecraft:standing_sign;ground_sign_direction=8 blockId=63 -runtimeId=7157 +runtimeId=5563 minecraft:standing_sign;ground_sign_direction=9 blockId=63 -runtimeId=7158 +runtimeId=5564 minecraft:standing_sign;ground_sign_direction=10 blockId=63 -runtimeId=7159 +runtimeId=5565 minecraft:standing_sign;ground_sign_direction=11 blockId=63 -runtimeId=7160 +runtimeId=5566 minecraft:standing_sign;ground_sign_direction=12 blockId=63 -runtimeId=7161 +runtimeId=5567 minecraft:standing_sign;ground_sign_direction=13 blockId=63 -runtimeId=7162 +runtimeId=5568 minecraft:standing_sign;ground_sign_direction=14 blockId=63 -runtimeId=7163 +runtimeId=5569 minecraft:standing_sign;ground_sign_direction=15 blockId=63 -runtimeId=7164 - -minecraft:stickyPistonArmCollision;facing_direction=0 -blockId=472 -runtimeId=7171 - -minecraft:stickyPistonArmCollision;facing_direction=1 -blockId=472 -runtimeId=7172 - -minecraft:stickyPistonArmCollision;facing_direction=2 -blockId=472 -runtimeId=7173 - -minecraft:stickyPistonArmCollision;facing_direction=3 -blockId=472 -runtimeId=7174 - -minecraft:stickyPistonArmCollision;facing_direction=4 -blockId=472 -runtimeId=7175 - -minecraft:stickyPistonArmCollision;facing_direction=5 -blockId=472 -runtimeId=7176 +runtimeId=5570 minecraft:sticky_piston;facing_direction=0 blockId=29 -runtimeId=7165 +runtimeId=4311 minecraft:sticky_piston;facing_direction=1 blockId=29 -runtimeId=7166 +runtimeId=4312 minecraft:sticky_piston;facing_direction=2 blockId=29 -runtimeId=7167 +runtimeId=4313 minecraft:sticky_piston;facing_direction=3 blockId=29 -runtimeId=7168 +runtimeId=4314 minecraft:sticky_piston;facing_direction=4 blockId=29 -runtimeId=7169 +runtimeId=4315 minecraft:sticky_piston;facing_direction=5 blockId=29 -runtimeId=7170 +runtimeId=4316 + +minecraft:sticky_piston_arm_collision;facing_direction=0 +blockId=472 +runtimeId=6308 + +minecraft:sticky_piston_arm_collision;facing_direction=1 +blockId=472 +runtimeId=6309 + +minecraft:sticky_piston_arm_collision;facing_direction=2 +blockId=472 +runtimeId=6310 + +minecraft:sticky_piston_arm_collision;facing_direction=3 +blockId=472 +runtimeId=6311 + +minecraft:sticky_piston_arm_collision;facing_direction=4 +blockId=472 +runtimeId=6312 + +minecraft:sticky_piston_arm_collision;facing_direction=5 +blockId=472 +runtimeId=6313 minecraft:stone;stone_type=andesite blockId=1 -runtimeId=7182 +runtimeId=666 minecraft:stone;stone_type=andesite_smooth blockId=1 -runtimeId=7183 +runtimeId=667 minecraft:stone;stone_type=diorite blockId=1 -runtimeId=7180 +runtimeId=664 minecraft:stone;stone_type=diorite_smooth blockId=1 -runtimeId=7181 +runtimeId=665 minecraft:stone;stone_type=granite blockId=1 -runtimeId=7178 +runtimeId=662 minecraft:stone;stone_type=granite_smooth blockId=1 -runtimeId=7179 +runtimeId=663 minecraft:stone;stone_type=stone blockId=1 -runtimeId=7177 +runtimeId=661 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=0 blockId=109 -runtimeId=7184 +runtimeId=939 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=1 blockId=109 -runtimeId=7185 +runtimeId=940 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=2 blockId=109 -runtimeId=7186 +runtimeId=941 minecraft:stone_brick_stairs;upside_down_bit=0;weirdo_direction=3 blockId=109 -runtimeId=7187 +runtimeId=942 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=0 blockId=109 -runtimeId=7188 +runtimeId=943 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=1 blockId=109 -runtimeId=7189 +runtimeId=944 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=2 blockId=109 -runtimeId=7190 +runtimeId=945 minecraft:stone_brick_stairs;upside_down_bit=1;weirdo_direction=3 blockId=109 -runtimeId=7191 +runtimeId=946 minecraft:stone_button;button_pressed_bit=0;facing_direction=0 blockId=77 -runtimeId=7192 +runtimeId=604 minecraft:stone_button;button_pressed_bit=0;facing_direction=1 blockId=77 -runtimeId=7193 +runtimeId=605 minecraft:stone_button;button_pressed_bit=0;facing_direction=2 blockId=77 -runtimeId=7194 +runtimeId=606 minecraft:stone_button;button_pressed_bit=0;facing_direction=3 blockId=77 -runtimeId=7195 +runtimeId=607 minecraft:stone_button;button_pressed_bit=0;facing_direction=4 blockId=77 -runtimeId=7196 +runtimeId=608 minecraft:stone_button;button_pressed_bit=0;facing_direction=5 blockId=77 -runtimeId=7197 +runtimeId=609 minecraft:stone_button;button_pressed_bit=1;facing_direction=0 blockId=77 -runtimeId=7198 +runtimeId=610 minecraft:stone_button;button_pressed_bit=1;facing_direction=1 blockId=77 -runtimeId=7199 +runtimeId=611 minecraft:stone_button;button_pressed_bit=1;facing_direction=2 blockId=77 -runtimeId=7200 +runtimeId=612 minecraft:stone_button;button_pressed_bit=1;facing_direction=3 blockId=77 -runtimeId=7201 +runtimeId=613 minecraft:stone_button;button_pressed_bit=1;facing_direction=4 blockId=77 -runtimeId=7202 +runtimeId=614 minecraft:stone_button;button_pressed_bit=1;facing_direction=5 blockId=77 -runtimeId=7203 +runtimeId=615 minecraft:stone_pressure_plate;redstone_signal=0 blockId=70 -runtimeId=7204 +runtimeId=3875 minecraft:stone_pressure_plate;redstone_signal=1 blockId=70 -runtimeId=7205 +runtimeId=3876 minecraft:stone_pressure_plate;redstone_signal=2 blockId=70 -runtimeId=7206 +runtimeId=3877 minecraft:stone_pressure_plate;redstone_signal=3 blockId=70 -runtimeId=7207 +runtimeId=3878 minecraft:stone_pressure_plate;redstone_signal=4 blockId=70 -runtimeId=7208 +runtimeId=3879 minecraft:stone_pressure_plate;redstone_signal=5 blockId=70 -runtimeId=7209 +runtimeId=3880 minecraft:stone_pressure_plate;redstone_signal=6 blockId=70 -runtimeId=7210 +runtimeId=3881 minecraft:stone_pressure_plate;redstone_signal=7 blockId=70 -runtimeId=7211 +runtimeId=3882 minecraft:stone_pressure_plate;redstone_signal=8 blockId=70 -runtimeId=7212 +runtimeId=3883 minecraft:stone_pressure_plate;redstone_signal=9 blockId=70 -runtimeId=7213 +runtimeId=3884 minecraft:stone_pressure_plate;redstone_signal=10 blockId=70 -runtimeId=7214 +runtimeId=3885 minecraft:stone_pressure_plate;redstone_signal=11 blockId=70 -runtimeId=7215 +runtimeId=3886 minecraft:stone_pressure_plate;redstone_signal=12 blockId=70 -runtimeId=7216 +runtimeId=3887 minecraft:stone_pressure_plate;redstone_signal=13 blockId=70 -runtimeId=7217 +runtimeId=3888 minecraft:stone_pressure_plate;redstone_signal=14 blockId=70 -runtimeId=7218 +runtimeId=3889 minecraft:stone_pressure_plate;redstone_signal=15 blockId=70 -runtimeId=7219 +runtimeId=3890 minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=0 blockId=44 -runtimeId=7224 +runtimeId=253 minecraft:stone_slab;stone_slab_type=brick;top_slot_bit=1 blockId=44 -runtimeId=7232 +runtimeId=261 minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=0 blockId=44 -runtimeId=7223 +runtimeId=252 minecraft:stone_slab;stone_slab_type=cobblestone;top_slot_bit=1 blockId=44 -runtimeId=7231 +runtimeId=260 minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=0 blockId=44 -runtimeId=7227 +runtimeId=256 minecraft:stone_slab;stone_slab_type=nether_brick;top_slot_bit=1 blockId=44 -runtimeId=7235 +runtimeId=264 minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=0 blockId=44 -runtimeId=7226 +runtimeId=255 minecraft:stone_slab;stone_slab_type=quartz;top_slot_bit=1 blockId=44 -runtimeId=7234 +runtimeId=263 minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=0 blockId=44 -runtimeId=7221 +runtimeId=250 minecraft:stone_slab;stone_slab_type=sandstone;top_slot_bit=1 blockId=44 -runtimeId=7229 +runtimeId=258 minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=0 blockId=44 -runtimeId=7220 +runtimeId=249 minecraft:stone_slab;stone_slab_type=smooth_stone;top_slot_bit=1 blockId=44 -runtimeId=7228 +runtimeId=257 minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=0 blockId=44 -runtimeId=7225 +runtimeId=254 minecraft:stone_slab;stone_slab_type=stone_brick;top_slot_bit=1 blockId=44 -runtimeId=7233 +runtimeId=262 minecraft:stone_slab;stone_slab_type=wood;top_slot_bit=0 blockId=44 -runtimeId=7222 +runtimeId=251 minecraft:stone_slab;stone_slab_type=wood;top_slot_bit=1 blockId=44 -runtimeId=7230 +runtimeId=259 minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=0 blockId=182 -runtimeId=7241 +runtimeId=6603 minecraft:stone_slab2;stone_slab_type_2=mossy_cobblestone;top_slot_bit=1 blockId=182 -runtimeId=7249 +runtimeId=6611 minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=0 blockId=182 -runtimeId=7240 +runtimeId=6602 minecraft:stone_slab2;stone_slab_type_2=prismarine_brick;top_slot_bit=1 blockId=182 -runtimeId=7248 +runtimeId=6610 minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=0 blockId=182 -runtimeId=7239 +runtimeId=6601 minecraft:stone_slab2;stone_slab_type_2=prismarine_dark;top_slot_bit=1 blockId=182 -runtimeId=7247 +runtimeId=6609 minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=0 blockId=182 -runtimeId=7238 +runtimeId=6600 minecraft:stone_slab2;stone_slab_type_2=prismarine_rough;top_slot_bit=1 blockId=182 -runtimeId=7246 +runtimeId=6608 minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=0 blockId=182 -runtimeId=7237 +runtimeId=6599 minecraft:stone_slab2;stone_slab_type_2=purpur;top_slot_bit=1 blockId=182 -runtimeId=7245 +runtimeId=6607 minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=0 blockId=182 -runtimeId=7243 +runtimeId=6605 minecraft:stone_slab2;stone_slab_type_2=red_nether_brick;top_slot_bit=1 blockId=182 -runtimeId=7251 +runtimeId=6613 minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=0 blockId=182 -runtimeId=7236 +runtimeId=6598 minecraft:stone_slab2;stone_slab_type_2=red_sandstone;top_slot_bit=1 blockId=182 -runtimeId=7244 +runtimeId=6606 minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=0 blockId=182 -runtimeId=7242 +runtimeId=6604 minecraft:stone_slab2;stone_slab_type_2=smooth_sandstone;top_slot_bit=1 blockId=182 -runtimeId=7250 +runtimeId=6612 minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=0 blockId=417 -runtimeId=7255 +runtimeId=6617 minecraft:stone_slab3;stone_slab_type_3=andesite;top_slot_bit=1 blockId=417 -runtimeId=7263 +runtimeId=6625 minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=0 blockId=417 -runtimeId=7256 +runtimeId=6618 minecraft:stone_slab3;stone_slab_type_3=diorite;top_slot_bit=1 blockId=417 -runtimeId=7264 +runtimeId=6626 minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=0 blockId=417 -runtimeId=7252 +runtimeId=6614 minecraft:stone_slab3;stone_slab_type_3=end_stone_brick;top_slot_bit=1 blockId=417 -runtimeId=7260 +runtimeId=6622 minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=0 blockId=417 -runtimeId=7258 +runtimeId=6620 minecraft:stone_slab3;stone_slab_type_3=granite;top_slot_bit=1 blockId=417 -runtimeId=7266 +runtimeId=6628 minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=0 blockId=417 -runtimeId=7254 +runtimeId=6616 minecraft:stone_slab3;stone_slab_type_3=polished_andesite;top_slot_bit=1 blockId=417 -runtimeId=7262 +runtimeId=6624 minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=0 blockId=417 -runtimeId=7257 +runtimeId=6619 minecraft:stone_slab3;stone_slab_type_3=polished_diorite;top_slot_bit=1 blockId=417 -runtimeId=7265 +runtimeId=6627 minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=0 blockId=417 -runtimeId=7259 +runtimeId=6621 minecraft:stone_slab3;stone_slab_type_3=polished_granite;top_slot_bit=1 blockId=417 -runtimeId=7267 +runtimeId=6629 minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=0 blockId=417 -runtimeId=7253 +runtimeId=6615 minecraft:stone_slab3;stone_slab_type_3=smooth_red_sandstone;top_slot_bit=1 blockId=417 -runtimeId=7261 +runtimeId=6623 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_red_sandstone blockId=421 -runtimeId=7272 +runtimeId=6634 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=cut_sandstone blockId=421 -runtimeId=7271 +runtimeId=6633 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=mossy_stone_brick blockId=421 -runtimeId=7268 +runtimeId=6630 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=smooth_quartz blockId=421 -runtimeId=7269 +runtimeId=6631 minecraft:stone_slab4;top_slot_bit=0;stone_slab_type_4=stone blockId=421 -runtimeId=7270 +runtimeId=6632 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_red_sandstone blockId=421 -runtimeId=7277 +runtimeId=6639 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=cut_sandstone blockId=421 -runtimeId=7276 +runtimeId=6638 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=mossy_stone_brick blockId=421 -runtimeId=7273 +runtimeId=6635 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=smooth_quartz blockId=421 -runtimeId=7274 +runtimeId=6636 minecraft:stone_slab4;top_slot_bit=1;stone_slab_type_4=stone blockId=421 -runtimeId=7275 +runtimeId=6637 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=0 blockId=67 -runtimeId=7278 +runtimeId=3713 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=1 blockId=67 -runtimeId=7279 +runtimeId=3714 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=2 blockId=67 -runtimeId=7280 +runtimeId=3715 minecraft:stone_stairs;upside_down_bit=0;weirdo_direction=3 blockId=67 -runtimeId=7281 +runtimeId=3716 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=0 blockId=67 -runtimeId=7282 +runtimeId=3717 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=1 blockId=67 -runtimeId=7283 +runtimeId=3718 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=2 blockId=67 -runtimeId=7284 +runtimeId=3719 minecraft:stone_stairs;upside_down_bit=1;weirdo_direction=3 blockId=67 -runtimeId=7285 +runtimeId=3720 minecraft:stonebrick;stone_brick_type=chiseled blockId=98 -runtimeId=7289 +runtimeId=6441 minecraft:stonebrick;stone_brick_type=cracked blockId=98 -runtimeId=7288 +runtimeId=6440 minecraft:stonebrick;stone_brick_type=default blockId=98 -runtimeId=7286 +runtimeId=6438 minecraft:stonebrick;stone_brick_type=mossy blockId=98 -runtimeId=7287 +runtimeId=6439 minecraft:stonebrick;stone_brick_type=smooth blockId=98 -runtimeId=7290 +runtimeId=6442 minecraft:stonecutter blockId=245 -runtimeId=7291 +runtimeId=927 minecraft:stonecutter_block;facing_direction=0 blockId=452 -runtimeId=7292 +runtimeId=7516 minecraft:stonecutter_block;facing_direction=1 blockId=452 -runtimeId=7293 +runtimeId=7517 minecraft:stonecutter_block;facing_direction=2 blockId=452 -runtimeId=7294 +runtimeId=7518 minecraft:stonecutter_block;facing_direction=3 blockId=452 -runtimeId=7295 +runtimeId=7519 minecraft:stonecutter_block;facing_direction=4 blockId=452 -runtimeId=7296 +runtimeId=7520 minecraft:stonecutter_block;facing_direction=5 blockId=452 -runtimeId=7297 +runtimeId=7521 minecraft:stripped_acacia_log;pillar_axis=x blockId=263 -runtimeId=7299 +runtimeId=5773 minecraft:stripped_acacia_log;pillar_axis=y blockId=263 -runtimeId=7298 +runtimeId=5772 minecraft:stripped_acacia_log;pillar_axis=z blockId=263 -runtimeId=7300 +runtimeId=5774 minecraft:stripped_birch_log;pillar_axis=x blockId=261 -runtimeId=7302 +runtimeId=5897 minecraft:stripped_birch_log;pillar_axis=y blockId=261 -runtimeId=7301 +runtimeId=5896 minecraft:stripped_birch_log;pillar_axis=z blockId=261 -runtimeId=7303 +runtimeId=5898 minecraft:stripped_crimson_hyphae;pillar_axis=x blockId=555 -runtimeId=7305 +runtimeId=6391 minecraft:stripped_crimson_hyphae;pillar_axis=y blockId=555 -runtimeId=7304 +runtimeId=6390 minecraft:stripped_crimson_hyphae;pillar_axis=z blockId=555 -runtimeId=7306 +runtimeId=6392 minecraft:stripped_crimson_stem;pillar_axis=x blockId=495 -runtimeId=7308 +runtimeId=6865 minecraft:stripped_crimson_stem;pillar_axis=y blockId=495 -runtimeId=7307 +runtimeId=6864 minecraft:stripped_crimson_stem;pillar_axis=z blockId=495 -runtimeId=7309 +runtimeId=6866 minecraft:stripped_dark_oak_log;pillar_axis=x blockId=264 -runtimeId=7311 +runtimeId=217 minecraft:stripped_dark_oak_log;pillar_axis=y blockId=264 -runtimeId=7310 +runtimeId=216 minecraft:stripped_dark_oak_log;pillar_axis=z blockId=264 -runtimeId=7312 +runtimeId=218 minecraft:stripped_jungle_log;pillar_axis=x blockId=262 -runtimeId=7314 +runtimeId=651 minecraft:stripped_jungle_log;pillar_axis=y blockId=262 -runtimeId=7313 +runtimeId=650 minecraft:stripped_jungle_log;pillar_axis=z blockId=262 -runtimeId=7315 +runtimeId=652 minecraft:stripped_oak_log;pillar_axis=x blockId=265 -runtimeId=7317 +runtimeId=7486 minecraft:stripped_oak_log;pillar_axis=y blockId=265 -runtimeId=7316 +runtimeId=7485 minecraft:stripped_oak_log;pillar_axis=z blockId=265 -runtimeId=7318 +runtimeId=7487 minecraft:stripped_spruce_log;pillar_axis=x blockId=260 -runtimeId=7320 +runtimeId=6254 minecraft:stripped_spruce_log;pillar_axis=y blockId=260 -runtimeId=7319 +runtimeId=6253 minecraft:stripped_spruce_log;pillar_axis=z blockId=260 -runtimeId=7321 +runtimeId=6255 minecraft:stripped_warped_hyphae;pillar_axis=x blockId=556 -runtimeId=7323 +runtimeId=5530 minecraft:stripped_warped_hyphae;pillar_axis=y blockId=556 -runtimeId=7322 +runtimeId=5529 minecraft:stripped_warped_hyphae;pillar_axis=z blockId=556 -runtimeId=7324 +runtimeId=5531 minecraft:stripped_warped_stem;pillar_axis=x blockId=496 -runtimeId=7326 +runtimeId=7343 minecraft:stripped_warped_stem;pillar_axis=y blockId=496 -runtimeId=7325 +runtimeId=7342 minecraft:stripped_warped_stem;pillar_axis=z blockId=496 -runtimeId=7327 +runtimeId=7344 minecraft:structure_block;structure_block_type=corner blockId=252 -runtimeId=7331 +runtimeId=6344 minecraft:structure_block;structure_block_type=data blockId=252 -runtimeId=7328 +runtimeId=6341 minecraft:structure_block;structure_block_type=export blockId=252 -runtimeId=7333 +runtimeId=6346 minecraft:structure_block;structure_block_type=invalid blockId=252 -runtimeId=7332 +runtimeId=6345 minecraft:structure_block;structure_block_type=load blockId=252 -runtimeId=7330 +runtimeId=6343 minecraft:structure_block;structure_block_type=save blockId=252 -runtimeId=7329 +runtimeId=6342 minecraft:structure_void;structure_void_type=air blockId=217 -runtimeId=7335 +runtimeId=4174 minecraft:structure_void;structure_void_type=void blockId=217 -runtimeId=7334 +runtimeId=4173 minecraft:sweet_berry_bush;growth=0 blockId=462 -runtimeId=7336 +runtimeId=5934 minecraft:sweet_berry_bush;growth=1 blockId=462 -runtimeId=7337 +runtimeId=5935 minecraft:sweet_berry_bush;growth=2 blockId=462 -runtimeId=7338 +runtimeId=5936 minecraft:sweet_berry_bush;growth=3 blockId=462 -runtimeId=7339 +runtimeId=5937 minecraft:sweet_berry_bush;growth=4 blockId=462 -runtimeId=7340 +runtimeId=5938 minecraft:sweet_berry_bush;growth=5 blockId=462 -runtimeId=7341 +runtimeId=5939 minecraft:sweet_berry_bush;growth=6 blockId=462 -runtimeId=7342 +runtimeId=5940 minecraft:sweet_berry_bush;growth=7 blockId=462 -runtimeId=7343 +runtimeId=5941 minecraft:tallgrass;tall_grass_type=default blockId=31 -runtimeId=7344 +runtimeId=935 minecraft:tallgrass;tall_grass_type=fern blockId=31 -runtimeId=7346 +runtimeId=937 minecraft:tallgrass;tall_grass_type=snow blockId=31 -runtimeId=7347 +runtimeId=938 minecraft:tallgrass;tall_grass_type=tall blockId=31 -runtimeId=7345 +runtimeId=936 minecraft:target blockId=494 -runtimeId=7348 +runtimeId=6355 minecraft:tinted_glass blockId=589 -runtimeId=7349 +runtimeId=5899 minecraft:tnt;explode_bit=0;allow_underwater_bit=0 blockId=46 -runtimeId=7350 +runtimeId=6581 minecraft:tnt;explode_bit=0;allow_underwater_bit=1 blockId=46 -runtimeId=7352 +runtimeId=6583 minecraft:tnt;explode_bit=1;allow_underwater_bit=0 blockId=46 -runtimeId=7351 +runtimeId=6582 minecraft:tnt;explode_bit=1;allow_underwater_bit=1 blockId=46 -runtimeId=7353 +runtimeId=6584 minecraft:torch;torch_facing_direction=east blockId=50 -runtimeId=7356 +runtimeId=734 minecraft:torch;torch_facing_direction=north blockId=50 -runtimeId=7357 +runtimeId=735 minecraft:torch;torch_facing_direction=south blockId=50 -runtimeId=7358 +runtimeId=736 minecraft:torch;torch_facing_direction=top blockId=50 -runtimeId=7359 +runtimeId=737 minecraft:torch;torch_facing_direction=unknown blockId=50 -runtimeId=7354 +runtimeId=732 minecraft:torch;torch_facing_direction=west blockId=50 -runtimeId=7355 +runtimeId=733 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=96 -runtimeId=7360 +runtimeId=227 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=96 -runtimeId=7361 +runtimeId=228 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=96 -runtimeId=7362 +runtimeId=229 minecraft:trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=96 -runtimeId=7363 +runtimeId=230 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=96 -runtimeId=7364 +runtimeId=231 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=96 -runtimeId=7365 +runtimeId=232 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=96 -runtimeId=7366 +runtimeId=233 minecraft:trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=96 -runtimeId=7367 +runtimeId=234 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=96 -runtimeId=7368 +runtimeId=235 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=96 -runtimeId=7369 +runtimeId=236 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=96 -runtimeId=7370 +runtimeId=237 minecraft:trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=96 -runtimeId=7371 +runtimeId=238 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=96 -runtimeId=7372 +runtimeId=239 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=96 -runtimeId=7373 +runtimeId=240 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=96 -runtimeId=7374 +runtimeId=241 minecraft:trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=96 -runtimeId=7375 +runtimeId=242 minecraft:trapped_chest;facing_direction=0 blockId=146 -runtimeId=7376 +runtimeId=5533 minecraft:trapped_chest;facing_direction=1 blockId=146 -runtimeId=7377 +runtimeId=5534 minecraft:trapped_chest;facing_direction=2 blockId=146 -runtimeId=7378 +runtimeId=5535 minecraft:trapped_chest;facing_direction=3 blockId=146 -runtimeId=7379 +runtimeId=5536 minecraft:trapped_chest;facing_direction=4 blockId=146 -runtimeId=7380 +runtimeId=5537 minecraft:trapped_chest;facing_direction=5 blockId=146 -runtimeId=7381 +runtimeId=5538 -minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=0;attached_bit=0 +minecraft:trip_wire;powered_bit=0;suspended_bit=0;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7382 +runtimeId=7381 -minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=0;attached_bit=1 +minecraft:trip_wire;powered_bit=0;suspended_bit=0;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7386 +runtimeId=7385 -minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=1;attached_bit=0 +minecraft:trip_wire;powered_bit=0;suspended_bit=0;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7390 +runtimeId=7389 -minecraft:tripWire;powered_bit=0;suspended_bit=0;disarmed_bit=1;attached_bit=1 +minecraft:trip_wire;powered_bit=0;suspended_bit=0;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7394 +runtimeId=7393 -minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=0;attached_bit=0 +minecraft:trip_wire;powered_bit=0;suspended_bit=1;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7384 +runtimeId=7383 -minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=0;attached_bit=1 +minecraft:trip_wire;powered_bit=0;suspended_bit=1;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7388 +runtimeId=7387 -minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=1;attached_bit=0 +minecraft:trip_wire;powered_bit=0;suspended_bit=1;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7392 +runtimeId=7391 -minecraft:tripWire;powered_bit=0;suspended_bit=1;disarmed_bit=1;attached_bit=1 +minecraft:trip_wire;powered_bit=0;suspended_bit=1;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7396 +runtimeId=7395 -minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=0;attached_bit=0 +minecraft:trip_wire;powered_bit=1;suspended_bit=0;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7383 +runtimeId=7382 -minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=0;attached_bit=1 +minecraft:trip_wire;powered_bit=1;suspended_bit=0;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7387 +runtimeId=7386 -minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=1;attached_bit=0 +minecraft:trip_wire;powered_bit=1;suspended_bit=0;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7391 +runtimeId=7390 -minecraft:tripWire;powered_bit=1;suspended_bit=0;disarmed_bit=1;attached_bit=1 +minecraft:trip_wire;powered_bit=1;suspended_bit=0;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7395 +runtimeId=7394 -minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=0;attached_bit=0 +minecraft:trip_wire;powered_bit=1;suspended_bit=1;disarmed_bit=0;attached_bit=0 blockId=132 -runtimeId=7385 +runtimeId=7384 -minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=0;attached_bit=1 +minecraft:trip_wire;powered_bit=1;suspended_bit=1;disarmed_bit=0;attached_bit=1 blockId=132 -runtimeId=7389 +runtimeId=7388 -minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=1;attached_bit=0 +minecraft:trip_wire;powered_bit=1;suspended_bit=1;disarmed_bit=1;attached_bit=0 blockId=132 -runtimeId=7393 +runtimeId=7392 -minecraft:tripWire;powered_bit=1;suspended_bit=1;disarmed_bit=1;attached_bit=1 +minecraft:trip_wire;powered_bit=1;suspended_bit=1;disarmed_bit=1;attached_bit=1 blockId=132 -runtimeId=7397 +runtimeId=7396 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=0 blockId=131 -runtimeId=7398 +runtimeId=5838 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=1 blockId=131 -runtimeId=7399 +runtimeId=5839 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=2 blockId=131 -runtimeId=7400 +runtimeId=5840 minecraft:tripwire_hook;powered_bit=0;attached_bit=0;direction=3 blockId=131 -runtimeId=7401 +runtimeId=5841 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=0 blockId=131 -runtimeId=7402 +runtimeId=5842 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=1 blockId=131 -runtimeId=7403 +runtimeId=5843 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=2 blockId=131 -runtimeId=7404 +runtimeId=5844 minecraft:tripwire_hook;powered_bit=0;attached_bit=1;direction=3 blockId=131 -runtimeId=7405 +runtimeId=5845 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=0 blockId=131 -runtimeId=7406 +runtimeId=5846 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=1 blockId=131 -runtimeId=7407 +runtimeId=5847 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=2 blockId=131 -runtimeId=7408 +runtimeId=5848 minecraft:tripwire_hook;powered_bit=1;attached_bit=0;direction=3 blockId=131 -runtimeId=7409 +runtimeId=5849 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=0 blockId=131 -runtimeId=7410 +runtimeId=5850 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=1 blockId=131 -runtimeId=7411 +runtimeId=5851 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=2 blockId=131 -runtimeId=7412 +runtimeId=5852 minecraft:tripwire_hook;powered_bit=1;attached_bit=1;direction=3 blockId=131 -runtimeId=7413 +runtimeId=5853 minecraft:tuff blockId=588 -runtimeId=7414 +runtimeId=360 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=four_egg blockId=414 -runtimeId=7422 +runtimeId=7946 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=one_egg blockId=414 -runtimeId=7419 +runtimeId=7943 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=three_egg blockId=414 -runtimeId=7421 +runtimeId=7945 minecraft:turtle_egg;cracked_state=cracked;turtle_egg_count=two_egg blockId=414 -runtimeId=7420 +runtimeId=7944 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=four_egg blockId=414 -runtimeId=7426 +runtimeId=7950 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=one_egg blockId=414 -runtimeId=7423 +runtimeId=7947 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=three_egg blockId=414 -runtimeId=7425 +runtimeId=7949 minecraft:turtle_egg;cracked_state=max_cracked;turtle_egg_count=two_egg blockId=414 -runtimeId=7424 +runtimeId=7948 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=four_egg blockId=414 -runtimeId=7418 +runtimeId=7942 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=one_egg blockId=414 -runtimeId=7415 +runtimeId=7939 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=three_egg blockId=414 -runtimeId=7417 +runtimeId=7941 minecraft:turtle_egg;cracked_state=no_cracks;turtle_egg_count=two_egg blockId=414 -runtimeId=7416 +runtimeId=7940 minecraft:twisting_vines;twisting_vines_age=0 blockId=542 -runtimeId=7427 +runtimeId=5641 minecraft:twisting_vines;twisting_vines_age=1 blockId=542 -runtimeId=7428 +runtimeId=5642 minecraft:twisting_vines;twisting_vines_age=2 blockId=542 -runtimeId=7429 +runtimeId=5643 minecraft:twisting_vines;twisting_vines_age=3 blockId=542 -runtimeId=7430 +runtimeId=5644 minecraft:twisting_vines;twisting_vines_age=4 blockId=542 -runtimeId=7431 +runtimeId=5645 minecraft:twisting_vines;twisting_vines_age=5 blockId=542 -runtimeId=7432 +runtimeId=5646 minecraft:twisting_vines;twisting_vines_age=6 blockId=542 -runtimeId=7433 +runtimeId=5647 minecraft:twisting_vines;twisting_vines_age=7 blockId=542 -runtimeId=7434 +runtimeId=5648 minecraft:twisting_vines;twisting_vines_age=8 blockId=542 -runtimeId=7435 +runtimeId=5649 minecraft:twisting_vines;twisting_vines_age=9 blockId=542 -runtimeId=7436 +runtimeId=5650 minecraft:twisting_vines;twisting_vines_age=10 blockId=542 -runtimeId=7437 +runtimeId=5651 minecraft:twisting_vines;twisting_vines_age=11 blockId=542 -runtimeId=7438 +runtimeId=5652 minecraft:twisting_vines;twisting_vines_age=12 blockId=542 -runtimeId=7439 +runtimeId=5653 minecraft:twisting_vines;twisting_vines_age=13 blockId=542 -runtimeId=7440 +runtimeId=5654 minecraft:twisting_vines;twisting_vines_age=14 blockId=542 -runtimeId=7441 +runtimeId=5655 minecraft:twisting_vines;twisting_vines_age=15 blockId=542 -runtimeId=7442 +runtimeId=5656 minecraft:twisting_vines;twisting_vines_age=16 blockId=542 -runtimeId=7443 +runtimeId=5657 minecraft:twisting_vines;twisting_vines_age=17 blockId=542 -runtimeId=7444 +runtimeId=5658 minecraft:twisting_vines;twisting_vines_age=18 blockId=542 -runtimeId=7445 +runtimeId=5659 minecraft:twisting_vines;twisting_vines_age=19 blockId=542 -runtimeId=7446 +runtimeId=5660 minecraft:twisting_vines;twisting_vines_age=20 blockId=542 -runtimeId=7447 +runtimeId=5661 minecraft:twisting_vines;twisting_vines_age=21 blockId=542 -runtimeId=7448 +runtimeId=5662 minecraft:twisting_vines;twisting_vines_age=22 blockId=542 -runtimeId=7449 +runtimeId=5663 minecraft:twisting_vines;twisting_vines_age=23 blockId=542 -runtimeId=7450 +runtimeId=5664 minecraft:twisting_vines;twisting_vines_age=24 blockId=542 -runtimeId=7451 +runtimeId=5665 minecraft:twisting_vines;twisting_vines_age=25 blockId=542 -runtimeId=7452 +runtimeId=5666 minecraft:underwater_torch;torch_facing_direction=east blockId=239 -runtimeId=7455 +runtimeId=3457 minecraft:underwater_torch;torch_facing_direction=north blockId=239 -runtimeId=7456 +runtimeId=3458 minecraft:underwater_torch;torch_facing_direction=south blockId=239 -runtimeId=7457 +runtimeId=3459 minecraft:underwater_torch;torch_facing_direction=top blockId=239 -runtimeId=7458 +runtimeId=3460 minecraft:underwater_torch;torch_facing_direction=unknown blockId=239 -runtimeId=7453 +runtimeId=3455 minecraft:underwater_torch;torch_facing_direction=west blockId=239 -runtimeId=7454 +runtimeId=3456 minecraft:undyed_shulker_box blockId=205 -runtimeId=7459 +runtimeId=3686 minecraft:unknown blockId=560 -runtimeId=7460 +runtimeId=4536 minecraft:unlit_redstone_torch;torch_facing_direction=east blockId=75 -runtimeId=7463 +runtimeId=8191 minecraft:unlit_redstone_torch;torch_facing_direction=north blockId=75 -runtimeId=7464 +runtimeId=8192 minecraft:unlit_redstone_torch;torch_facing_direction=south blockId=75 -runtimeId=7465 +runtimeId=8193 minecraft:unlit_redstone_torch;torch_facing_direction=top blockId=75 -runtimeId=7466 +runtimeId=8194 minecraft:unlit_redstone_torch;torch_facing_direction=unknown blockId=75 -runtimeId=7461 +runtimeId=8189 minecraft:unlit_redstone_torch;torch_facing_direction=west blockId=75 -runtimeId=7462 +runtimeId=8190 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=0 blockId=149 -runtimeId=7467 +runtimeId=6317 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=1 blockId=149 -runtimeId=7468 +runtimeId=6318 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=2 blockId=149 -runtimeId=7469 +runtimeId=6319 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=0;direction=3 blockId=149 -runtimeId=7470 +runtimeId=6320 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=0 blockId=149 -runtimeId=7475 +runtimeId=6325 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=1 blockId=149 -runtimeId=7476 +runtimeId=6326 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=2 blockId=149 -runtimeId=7477 +runtimeId=6327 minecraft:unpowered_comparator;output_subtract_bit=0;output_lit_bit=1;direction=3 blockId=149 -runtimeId=7478 +runtimeId=6328 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=0 blockId=149 -runtimeId=7471 +runtimeId=6321 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=1 blockId=149 -runtimeId=7472 +runtimeId=6322 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=2 blockId=149 -runtimeId=7473 +runtimeId=6323 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=0;direction=3 blockId=149 -runtimeId=7474 +runtimeId=6324 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=0 blockId=149 -runtimeId=7479 +runtimeId=6329 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=1 blockId=149 -runtimeId=7480 +runtimeId=6330 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=2 blockId=149 -runtimeId=7481 +runtimeId=6331 minecraft:unpowered_comparator;output_subtract_bit=1;output_lit_bit=1;direction=3 blockId=149 -runtimeId=7482 +runtimeId=6332 minecraft:unpowered_repeater;repeater_delay=0;direction=0 blockId=93 -runtimeId=7483 +runtimeId=5480 minecraft:unpowered_repeater;repeater_delay=0;direction=1 blockId=93 -runtimeId=7484 +runtimeId=5481 minecraft:unpowered_repeater;repeater_delay=0;direction=2 blockId=93 -runtimeId=7485 +runtimeId=5482 minecraft:unpowered_repeater;repeater_delay=0;direction=3 blockId=93 -runtimeId=7486 +runtimeId=5483 minecraft:unpowered_repeater;repeater_delay=1;direction=0 blockId=93 -runtimeId=7487 +runtimeId=5484 minecraft:unpowered_repeater;repeater_delay=1;direction=1 blockId=93 -runtimeId=7488 +runtimeId=5485 minecraft:unpowered_repeater;repeater_delay=1;direction=2 blockId=93 -runtimeId=7489 +runtimeId=5486 minecraft:unpowered_repeater;repeater_delay=1;direction=3 blockId=93 -runtimeId=7490 +runtimeId=5487 minecraft:unpowered_repeater;repeater_delay=2;direction=0 blockId=93 -runtimeId=7491 +runtimeId=5488 minecraft:unpowered_repeater;repeater_delay=2;direction=1 blockId=93 -runtimeId=7492 +runtimeId=5489 minecraft:unpowered_repeater;repeater_delay=2;direction=2 blockId=93 -runtimeId=7493 +runtimeId=5490 minecraft:unpowered_repeater;repeater_delay=2;direction=3 blockId=93 -runtimeId=7494 +runtimeId=5491 minecraft:unpowered_repeater;repeater_delay=3;direction=0 blockId=93 -runtimeId=7495 +runtimeId=5492 minecraft:unpowered_repeater;repeater_delay=3;direction=1 blockId=93 -runtimeId=7496 +runtimeId=5493 minecraft:unpowered_repeater;repeater_delay=3;direction=2 blockId=93 -runtimeId=7497 +runtimeId=5494 minecraft:unpowered_repeater;repeater_delay=3;direction=3 blockId=93 -runtimeId=7498 +runtimeId=5495 -minecraft:verdant_froglight -blockId=-1 -runtimeId=7499 +minecraft:verdant_froglight;pillar_axis=x +blockId=725 +runtimeId=6373 + +minecraft:verdant_froglight;pillar_axis=y +blockId=725 +runtimeId=6372 + +minecraft:verdant_froglight;pillar_axis=z +blockId=725 +runtimeId=6374 minecraft:vine;vine_direction_bits=0 blockId=106 -runtimeId=7500 +runtimeId=902 minecraft:vine;vine_direction_bits=1 blockId=106 -runtimeId=7501 +runtimeId=903 minecraft:vine;vine_direction_bits=2 blockId=106 -runtimeId=7502 +runtimeId=904 minecraft:vine;vine_direction_bits=3 blockId=106 -runtimeId=7503 +runtimeId=905 minecraft:vine;vine_direction_bits=4 blockId=106 -runtimeId=7504 +runtimeId=906 minecraft:vine;vine_direction_bits=5 blockId=106 -runtimeId=7505 +runtimeId=907 minecraft:vine;vine_direction_bits=6 blockId=106 -runtimeId=7506 +runtimeId=908 minecraft:vine;vine_direction_bits=7 blockId=106 -runtimeId=7507 +runtimeId=909 minecraft:vine;vine_direction_bits=8 blockId=106 -runtimeId=7508 +runtimeId=910 minecraft:vine;vine_direction_bits=9 blockId=106 -runtimeId=7509 +runtimeId=911 minecraft:vine;vine_direction_bits=10 blockId=106 -runtimeId=7510 +runtimeId=912 minecraft:vine;vine_direction_bits=11 blockId=106 -runtimeId=7511 +runtimeId=913 minecraft:vine;vine_direction_bits=12 blockId=106 -runtimeId=7512 +runtimeId=914 minecraft:vine;vine_direction_bits=13 blockId=106 -runtimeId=7513 +runtimeId=915 minecraft:vine;vine_direction_bits=14 blockId=106 -runtimeId=7514 +runtimeId=916 minecraft:vine;vine_direction_bits=15 blockId=106 -runtimeId=7515 +runtimeId=917 minecraft:wall_banner;facing_direction=0 blockId=177 -runtimeId=7516 +runtimeId=5635 minecraft:wall_banner;facing_direction=1 blockId=177 -runtimeId=7517 +runtimeId=5636 minecraft:wall_banner;facing_direction=2 blockId=177 -runtimeId=7518 +runtimeId=5637 minecraft:wall_banner;facing_direction=3 blockId=177 -runtimeId=7519 +runtimeId=5638 minecraft:wall_banner;facing_direction=4 blockId=177 -runtimeId=7520 +runtimeId=5639 minecraft:wall_banner;facing_direction=5 blockId=177 -runtimeId=7521 +runtimeId=5640 minecraft:wall_sign;facing_direction=0 blockId=68 -runtimeId=7522 +runtimeId=4824 minecraft:wall_sign;facing_direction=1 blockId=68 -runtimeId=7523 +runtimeId=4825 minecraft:wall_sign;facing_direction=2 blockId=68 -runtimeId=7524 +runtimeId=4826 minecraft:wall_sign;facing_direction=3 blockId=68 -runtimeId=7525 +runtimeId=4827 minecraft:wall_sign;facing_direction=4 blockId=68 -runtimeId=7526 +runtimeId=4828 minecraft:wall_sign;facing_direction=5 blockId=68 -runtimeId=7527 +runtimeId=4829 minecraft:warped_button;button_pressed_bit=0;facing_direction=0 blockId=516 -runtimeId=7528 +runtimeId=7192 minecraft:warped_button;button_pressed_bit=0;facing_direction=1 blockId=516 -runtimeId=7529 +runtimeId=7193 minecraft:warped_button;button_pressed_bit=0;facing_direction=2 blockId=516 -runtimeId=7530 +runtimeId=7194 minecraft:warped_button;button_pressed_bit=0;facing_direction=3 blockId=516 -runtimeId=7531 +runtimeId=7195 minecraft:warped_button;button_pressed_bit=0;facing_direction=4 blockId=516 -runtimeId=7532 +runtimeId=7196 minecraft:warped_button;button_pressed_bit=0;facing_direction=5 blockId=516 -runtimeId=7533 +runtimeId=7197 minecraft:warped_button;button_pressed_bit=1;facing_direction=0 blockId=516 -runtimeId=7534 +runtimeId=7198 minecraft:warped_button;button_pressed_bit=1;facing_direction=1 blockId=516 -runtimeId=7535 +runtimeId=7199 minecraft:warped_button;button_pressed_bit=1;facing_direction=2 blockId=516 -runtimeId=7536 +runtimeId=7200 minecraft:warped_button;button_pressed_bit=1;facing_direction=3 blockId=516 -runtimeId=7537 +runtimeId=7201 minecraft:warped_button;button_pressed_bit=1;facing_direction=4 blockId=516 -runtimeId=7538 +runtimeId=7202 minecraft:warped_button;button_pressed_bit=1;facing_direction=5 blockId=516 -runtimeId=7539 +runtimeId=7203 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7540 +runtimeId=28 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7541 +runtimeId=29 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7542 +runtimeId=30 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7543 +runtimeId=31 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7556 +runtimeId=44 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7557 +runtimeId=45 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7558 +runtimeId=46 minecraft:warped_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7559 +runtimeId=47 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7548 +runtimeId=36 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7549 +runtimeId=37 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7550 +runtimeId=38 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7551 +runtimeId=39 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7564 +runtimeId=52 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7565 +runtimeId=53 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7566 +runtimeId=54 minecraft:warped_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7567 +runtimeId=55 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7544 +runtimeId=32 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7545 +runtimeId=33 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7546 +runtimeId=34 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7547 +runtimeId=35 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7560 +runtimeId=48 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7561 +runtimeId=49 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7562 +runtimeId=50 minecraft:warped_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7563 +runtimeId=51 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=500 -runtimeId=7552 +runtimeId=40 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=500 -runtimeId=7553 +runtimeId=41 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=500 -runtimeId=7554 +runtimeId=42 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=500 -runtimeId=7555 +runtimeId=43 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=500 -runtimeId=7568 +runtimeId=56 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=500 -runtimeId=7569 +runtimeId=57 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=500 -runtimeId=7570 +runtimeId=58 minecraft:warped_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=500 -runtimeId=7571 +runtimeId=59 minecraft:warped_double_slab;top_slot_bit=0 blockId=522 -runtimeId=7572 +runtimeId=4329 minecraft:warped_double_slab;top_slot_bit=1 blockId=522 -runtimeId=7573 +runtimeId=4330 minecraft:warped_fence blockId=512 -runtimeId=7574 +runtimeId=5777 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=0 blockId=514 -runtimeId=7575 +runtimeId=5349 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=1 blockId=514 -runtimeId=7576 +runtimeId=5350 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=2 blockId=514 -runtimeId=7577 +runtimeId=5351 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=0;direction=3 blockId=514 -runtimeId=7578 +runtimeId=5352 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=0 blockId=514 -runtimeId=7579 +runtimeId=5353 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=1 blockId=514 -runtimeId=7580 +runtimeId=5354 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=2 blockId=514 -runtimeId=7581 +runtimeId=5355 minecraft:warped_fence_gate;in_wall_bit=0;open_bit=1;direction=3 blockId=514 -runtimeId=7582 +runtimeId=5356 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=0 blockId=514 -runtimeId=7583 +runtimeId=5357 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=1 blockId=514 -runtimeId=7584 +runtimeId=5358 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=2 blockId=514 -runtimeId=7585 +runtimeId=5359 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=0;direction=3 blockId=514 -runtimeId=7586 +runtimeId=5360 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=0 blockId=514 -runtimeId=7587 +runtimeId=5361 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=1 blockId=514 -runtimeId=7588 +runtimeId=5362 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=2 blockId=514 -runtimeId=7589 +runtimeId=5363 minecraft:warped_fence_gate;in_wall_bit=1;open_bit=1;direction=3 blockId=514 -runtimeId=7590 +runtimeId=5364 minecraft:warped_fungus blockId=484 -runtimeId=7591 +runtimeId=301 minecraft:warped_hyphae;pillar_axis=x blockId=553 -runtimeId=7593 +runtimeId=5827 minecraft:warped_hyphae;pillar_axis=y blockId=553 -runtimeId=7592 +runtimeId=5826 minecraft:warped_hyphae;pillar_axis=z blockId=553 -runtimeId=7594 +runtimeId=5828 minecraft:warped_nylium blockId=488 -runtimeId=7595 +runtimeId=6314 minecraft:warped_planks blockId=498 -runtimeId=7596 +runtimeId=928 minecraft:warped_pressure_plate;redstone_signal=0 blockId=518 -runtimeId=7597 +runtimeId=270 minecraft:warped_pressure_plate;redstone_signal=1 blockId=518 -runtimeId=7598 +runtimeId=271 minecraft:warped_pressure_plate;redstone_signal=2 blockId=518 -runtimeId=7599 +runtimeId=272 minecraft:warped_pressure_plate;redstone_signal=3 blockId=518 -runtimeId=7600 +runtimeId=273 minecraft:warped_pressure_plate;redstone_signal=4 blockId=518 -runtimeId=7601 +runtimeId=274 minecraft:warped_pressure_plate;redstone_signal=5 blockId=518 -runtimeId=7602 +runtimeId=275 minecraft:warped_pressure_plate;redstone_signal=6 blockId=518 -runtimeId=7603 +runtimeId=276 minecraft:warped_pressure_plate;redstone_signal=7 blockId=518 -runtimeId=7604 +runtimeId=277 minecraft:warped_pressure_plate;redstone_signal=8 blockId=518 -runtimeId=7605 +runtimeId=278 minecraft:warped_pressure_plate;redstone_signal=9 blockId=518 -runtimeId=7606 +runtimeId=279 minecraft:warped_pressure_plate;redstone_signal=10 blockId=518 -runtimeId=7607 +runtimeId=280 minecraft:warped_pressure_plate;redstone_signal=11 blockId=518 -runtimeId=7608 +runtimeId=281 minecraft:warped_pressure_plate;redstone_signal=12 blockId=518 -runtimeId=7609 +runtimeId=282 minecraft:warped_pressure_plate;redstone_signal=13 blockId=518 -runtimeId=7610 +runtimeId=283 minecraft:warped_pressure_plate;redstone_signal=14 blockId=518 -runtimeId=7611 +runtimeId=284 minecraft:warped_pressure_plate;redstone_signal=15 blockId=518 -runtimeId=7612 +runtimeId=285 minecraft:warped_roots blockId=479 -runtimeId=7613 +runtimeId=4310 minecraft:warped_slab;top_slot_bit=0 blockId=520 -runtimeId=7614 +runtimeId=6375 minecraft:warped_slab;top_slot_bit=1 blockId=520 -runtimeId=7615 +runtimeId=6376 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=0 blockId=510 -runtimeId=7616 +runtimeId=3723 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=1 blockId=510 -runtimeId=7617 +runtimeId=3724 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=2 blockId=510 -runtimeId=7618 +runtimeId=3725 minecraft:warped_stairs;upside_down_bit=0;weirdo_direction=3 blockId=510 -runtimeId=7619 +runtimeId=3726 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=0 blockId=510 -runtimeId=7620 +runtimeId=3727 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=1 blockId=510 -runtimeId=7621 +runtimeId=3728 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=2 blockId=510 -runtimeId=7622 +runtimeId=3729 minecraft:warped_stairs;upside_down_bit=1;weirdo_direction=3 blockId=510 -runtimeId=7623 +runtimeId=3730 minecraft:warped_standing_sign;ground_sign_direction=0 blockId=506 -runtimeId=7624 +runtimeId=7140 minecraft:warped_standing_sign;ground_sign_direction=1 blockId=506 -runtimeId=7625 +runtimeId=7141 minecraft:warped_standing_sign;ground_sign_direction=2 blockId=506 -runtimeId=7626 +runtimeId=7142 minecraft:warped_standing_sign;ground_sign_direction=3 blockId=506 -runtimeId=7627 +runtimeId=7143 minecraft:warped_standing_sign;ground_sign_direction=4 blockId=506 -runtimeId=7628 +runtimeId=7144 minecraft:warped_standing_sign;ground_sign_direction=5 blockId=506 -runtimeId=7629 +runtimeId=7145 minecraft:warped_standing_sign;ground_sign_direction=6 blockId=506 -runtimeId=7630 +runtimeId=7146 minecraft:warped_standing_sign;ground_sign_direction=7 blockId=506 -runtimeId=7631 +runtimeId=7147 minecraft:warped_standing_sign;ground_sign_direction=8 blockId=506 -runtimeId=7632 +runtimeId=7148 minecraft:warped_standing_sign;ground_sign_direction=9 blockId=506 -runtimeId=7633 +runtimeId=7149 minecraft:warped_standing_sign;ground_sign_direction=10 blockId=506 -runtimeId=7634 +runtimeId=7150 minecraft:warped_standing_sign;ground_sign_direction=11 blockId=506 -runtimeId=7635 +runtimeId=7151 minecraft:warped_standing_sign;ground_sign_direction=12 blockId=506 -runtimeId=7636 +runtimeId=7152 minecraft:warped_standing_sign;ground_sign_direction=13 blockId=506 -runtimeId=7637 +runtimeId=7153 minecraft:warped_standing_sign;ground_sign_direction=14 blockId=506 -runtimeId=7638 +runtimeId=7154 minecraft:warped_standing_sign;ground_sign_direction=15 blockId=506 -runtimeId=7639 +runtimeId=7155 minecraft:warped_stem;pillar_axis=x blockId=481 -runtimeId=7641 +runtimeId=6378 minecraft:warped_stem;pillar_axis=y blockId=481 -runtimeId=7640 +runtimeId=6377 minecraft:warped_stem;pillar_axis=z blockId=481 -runtimeId=7642 +runtimeId=6379 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=0 blockId=502 -runtimeId=7643 +runtimeId=4689 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=1 blockId=502 -runtimeId=7644 +runtimeId=4690 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=2 blockId=502 -runtimeId=7645 +runtimeId=4691 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=0;direction=3 blockId=502 -runtimeId=7646 +runtimeId=4692 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=0 blockId=502 -runtimeId=7647 +runtimeId=4693 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=1 blockId=502 -runtimeId=7648 +runtimeId=4694 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=2 blockId=502 -runtimeId=7649 +runtimeId=4695 minecraft:warped_trapdoor;open_bit=0;upside_down_bit=1;direction=3 blockId=502 -runtimeId=7650 +runtimeId=4696 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=0 blockId=502 -runtimeId=7651 +runtimeId=4697 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=1 blockId=502 -runtimeId=7652 +runtimeId=4698 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=2 blockId=502 -runtimeId=7653 +runtimeId=4699 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=0;direction=3 blockId=502 -runtimeId=7654 +runtimeId=4700 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=0 blockId=502 -runtimeId=7655 +runtimeId=4701 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=1 blockId=502 -runtimeId=7656 +runtimeId=4702 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=2 blockId=502 -runtimeId=7657 +runtimeId=4703 minecraft:warped_trapdoor;open_bit=1;upside_down_bit=1;direction=3 blockId=502 -runtimeId=7658 +runtimeId=4704 minecraft:warped_wall_sign;facing_direction=0 blockId=508 -runtimeId=7659 +runtimeId=396 minecraft:warped_wall_sign;facing_direction=1 blockId=508 -runtimeId=7660 +runtimeId=397 minecraft:warped_wall_sign;facing_direction=2 blockId=508 -runtimeId=7661 +runtimeId=398 minecraft:warped_wall_sign;facing_direction=3 blockId=508 -runtimeId=7662 +runtimeId=399 minecraft:warped_wall_sign;facing_direction=4 blockId=508 -runtimeId=7663 +runtimeId=400 minecraft:warped_wall_sign;facing_direction=5 blockId=508 -runtimeId=7664 +runtimeId=401 minecraft:warped_wart_block blockId=482 -runtimeId=7665 +runtimeId=5829 minecraft:water;liquid_depth=0 blockId=9 -runtimeId=7666 +runtimeId=5456 minecraft:water;liquid_depth=1 blockId=9 -runtimeId=7667 +runtimeId=5457 minecraft:water;liquid_depth=2 blockId=9 -runtimeId=7668 +runtimeId=5458 minecraft:water;liquid_depth=3 blockId=9 -runtimeId=7669 +runtimeId=5459 minecraft:water;liquid_depth=4 blockId=9 -runtimeId=7670 +runtimeId=5460 minecraft:water;liquid_depth=5 blockId=9 -runtimeId=7671 +runtimeId=5461 minecraft:water;liquid_depth=6 blockId=9 -runtimeId=7672 +runtimeId=5462 minecraft:water;liquid_depth=7 blockId=9 -runtimeId=7673 +runtimeId=5463 minecraft:water;liquid_depth=8 blockId=9 -runtimeId=7674 +runtimeId=5464 minecraft:water;liquid_depth=9 blockId=9 -runtimeId=7675 +runtimeId=5465 minecraft:water;liquid_depth=10 blockId=9 -runtimeId=7676 +runtimeId=5466 minecraft:water;liquid_depth=11 blockId=9 -runtimeId=7677 +runtimeId=5467 minecraft:water;liquid_depth=12 blockId=9 -runtimeId=7678 +runtimeId=5468 minecraft:water;liquid_depth=13 blockId=9 -runtimeId=7679 +runtimeId=5469 minecraft:water;liquid_depth=14 blockId=9 -runtimeId=7680 +runtimeId=5470 minecraft:water;liquid_depth=15 blockId=9 -runtimeId=7681 +runtimeId=5471 minecraft:waterlily blockId=111 -runtimeId=7682 +runtimeId=1163 minecraft:waxed_copper blockId=599 -runtimeId=7683 +runtimeId=7676 minecraft:waxed_cut_copper blockId=606 -runtimeId=7684 +runtimeId=7235 minecraft:waxed_cut_copper_slab;top_slot_bit=0 blockId=620 -runtimeId=7685 +runtimeId=7757 minecraft:waxed_cut_copper_slab;top_slot_bit=1 blockId=620 -runtimeId=7686 +runtimeId=7758 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=613 -runtimeId=7687 +runtimeId=403 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=613 -runtimeId=7688 +runtimeId=404 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=613 -runtimeId=7689 +runtimeId=405 minecraft:waxed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=613 -runtimeId=7690 +runtimeId=406 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=613 -runtimeId=7691 +runtimeId=407 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=613 -runtimeId=7692 +runtimeId=408 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=613 -runtimeId=7693 +runtimeId=409 minecraft:waxed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=613 -runtimeId=7694 +runtimeId=410 minecraft:waxed_double_cut_copper_slab;top_slot_bit=0 blockId=627 -runtimeId=7695 +runtimeId=5374 minecraft:waxed_double_cut_copper_slab;top_slot_bit=1 blockId=627 -runtimeId=7696 +runtimeId=5375 minecraft:waxed_exposed_copper blockId=600 -runtimeId=7697 +runtimeId=702 minecraft:waxed_exposed_cut_copper blockId=607 -runtimeId=7698 +runtimeId=3814 minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=0 blockId=621 -runtimeId=7699 +runtimeId=247 minecraft:waxed_exposed_cut_copper_slab;top_slot_bit=1 blockId=621 -runtimeId=7700 +runtimeId=248 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=614 -runtimeId=7701 +runtimeId=3891 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=614 -runtimeId=7702 +runtimeId=3892 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=614 -runtimeId=7703 +runtimeId=3893 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=614 -runtimeId=7704 +runtimeId=3894 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=614 -runtimeId=7705 +runtimeId=3895 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=614 -runtimeId=7706 +runtimeId=3896 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=614 -runtimeId=7707 +runtimeId=3897 minecraft:waxed_exposed_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=614 -runtimeId=7708 +runtimeId=3898 minecraft:waxed_exposed_double_cut_copper_slab;top_slot_bit=0 blockId=628 -runtimeId=7709 +runtimeId=6802 minecraft:waxed_exposed_double_cut_copper_slab;top_slot_bit=1 blockId=628 -runtimeId=7710 +runtimeId=6803 minecraft:waxed_oxidized_copper blockId=701 -runtimeId=7711 +runtimeId=7484 minecraft:waxed_oxidized_cut_copper blockId=702 -runtimeId=7712 +runtimeId=214 minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=0 blockId=704 -runtimeId=7713 +runtimeId=716 minecraft:waxed_oxidized_cut_copper_slab;top_slot_bit=1 blockId=704 -runtimeId=7714 +runtimeId=717 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=703 -runtimeId=7715 +runtimeId=5764 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=703 -runtimeId=7716 +runtimeId=5765 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=703 -runtimeId=7717 +runtimeId=5766 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=703 -runtimeId=7718 +runtimeId=5767 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=703 -runtimeId=7719 +runtimeId=5768 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=703 -runtimeId=7720 +runtimeId=5769 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=703 -runtimeId=7721 +runtimeId=5770 minecraft:waxed_oxidized_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=703 -runtimeId=7722 +runtimeId=5771 minecraft:waxed_oxidized_double_cut_copper_slab;top_slot_bit=0 blockId=705 -runtimeId=7723 +runtimeId=7693 minecraft:waxed_oxidized_double_cut_copper_slab;top_slot_bit=1 blockId=705 -runtimeId=7724 +runtimeId=7694 minecraft:waxed_weathered_copper blockId=601 -runtimeId=7725 +runtimeId=715 minecraft:waxed_weathered_cut_copper blockId=608 -runtimeId=7726 +runtimeId=4807 minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=0 blockId=622 -runtimeId=7727 +runtimeId=6436 minecraft:waxed_weathered_cut_copper_slab;top_slot_bit=1 blockId=622 -runtimeId=7728 +runtimeId=6437 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=615 -runtimeId=7729 +runtimeId=6091 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=615 -runtimeId=7730 +runtimeId=6092 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=615 -runtimeId=7731 +runtimeId=6093 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=615 -runtimeId=7732 +runtimeId=6094 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=615 -runtimeId=7733 +runtimeId=6095 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=615 -runtimeId=7734 +runtimeId=6096 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=615 -runtimeId=7735 +runtimeId=6097 minecraft:waxed_weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=615 -runtimeId=7736 +runtimeId=6098 minecraft:waxed_weathered_double_cut_copper_slab;top_slot_bit=0 blockId=629 -runtimeId=7737 +runtimeId=4634 minecraft:waxed_weathered_double_cut_copper_slab;top_slot_bit=1 blockId=629 -runtimeId=7738 +runtimeId=4635 minecraft:weathered_copper blockId=597 -runtimeId=7739 +runtimeId=8188 minecraft:weathered_cut_copper blockId=604 -runtimeId=7740 +runtimeId=7139 minecraft:weathered_cut_copper_slab;top_slot_bit=0 blockId=618 -runtimeId=7741 +runtimeId=5977 minecraft:weathered_cut_copper_slab;top_slot_bit=1 blockId=618 -runtimeId=7742 +runtimeId=5978 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=0 blockId=611 -runtimeId=7743 +runtimeId=4253 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=1 blockId=611 -runtimeId=7744 +runtimeId=4254 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=2 blockId=611 -runtimeId=7745 +runtimeId=4255 minecraft:weathered_cut_copper_stairs;upside_down_bit=0;weirdo_direction=3 blockId=611 -runtimeId=7746 +runtimeId=4256 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=0 blockId=611 -runtimeId=7747 +runtimeId=4257 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=1 blockId=611 -runtimeId=7748 +runtimeId=4258 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=2 blockId=611 -runtimeId=7749 +runtimeId=4259 minecraft:weathered_cut_copper_stairs;upside_down_bit=1;weirdo_direction=3 blockId=611 -runtimeId=7750 +runtimeId=4260 minecraft:weathered_double_cut_copper_slab;top_slot_bit=0 blockId=625 -runtimeId=7751 +runtimeId=7287 minecraft:weathered_double_cut_copper_slab;top_slot_bit=1 blockId=625 -runtimeId=7752 +runtimeId=7288 minecraft:web blockId=30 -runtimeId=7753 +runtimeId=6587 minecraft:weeping_vines;weeping_vines_age=0 blockId=486 -runtimeId=7754 +runtimeId=5429 minecraft:weeping_vines;weeping_vines_age=1 blockId=486 -runtimeId=7755 +runtimeId=5430 minecraft:weeping_vines;weeping_vines_age=2 blockId=486 -runtimeId=7756 +runtimeId=5431 minecraft:weeping_vines;weeping_vines_age=3 blockId=486 -runtimeId=7757 +runtimeId=5432 minecraft:weeping_vines;weeping_vines_age=4 blockId=486 -runtimeId=7758 +runtimeId=5433 minecraft:weeping_vines;weeping_vines_age=5 blockId=486 -runtimeId=7759 +runtimeId=5434 minecraft:weeping_vines;weeping_vines_age=6 blockId=486 -runtimeId=7760 +runtimeId=5435 minecraft:weeping_vines;weeping_vines_age=7 blockId=486 -runtimeId=7761 +runtimeId=5436 minecraft:weeping_vines;weeping_vines_age=8 blockId=486 -runtimeId=7762 +runtimeId=5437 minecraft:weeping_vines;weeping_vines_age=9 blockId=486 -runtimeId=7763 +runtimeId=5438 minecraft:weeping_vines;weeping_vines_age=10 blockId=486 -runtimeId=7764 +runtimeId=5439 minecraft:weeping_vines;weeping_vines_age=11 blockId=486 -runtimeId=7765 +runtimeId=5440 minecraft:weeping_vines;weeping_vines_age=12 blockId=486 -runtimeId=7766 +runtimeId=5441 minecraft:weeping_vines;weeping_vines_age=13 blockId=486 -runtimeId=7767 +runtimeId=5442 minecraft:weeping_vines;weeping_vines_age=14 blockId=486 -runtimeId=7768 +runtimeId=5443 minecraft:weeping_vines;weeping_vines_age=15 blockId=486 -runtimeId=7769 +runtimeId=5444 minecraft:weeping_vines;weeping_vines_age=16 blockId=486 -runtimeId=7770 +runtimeId=5445 minecraft:weeping_vines;weeping_vines_age=17 blockId=486 -runtimeId=7771 +runtimeId=5446 minecraft:weeping_vines;weeping_vines_age=18 blockId=486 -runtimeId=7772 +runtimeId=5447 minecraft:weeping_vines;weeping_vines_age=19 blockId=486 -runtimeId=7773 +runtimeId=5448 minecraft:weeping_vines;weeping_vines_age=20 blockId=486 -runtimeId=7774 +runtimeId=5449 minecraft:weeping_vines;weeping_vines_age=21 blockId=486 -runtimeId=7775 +runtimeId=5450 minecraft:weeping_vines;weeping_vines_age=22 blockId=486 -runtimeId=7776 +runtimeId=5451 minecraft:weeping_vines;weeping_vines_age=23 blockId=486 -runtimeId=7777 +runtimeId=5452 minecraft:weeping_vines;weeping_vines_age=24 blockId=486 -runtimeId=7778 +runtimeId=5453 minecraft:weeping_vines;weeping_vines_age=25 blockId=486 -runtimeId=7779 +runtimeId=5454 minecraft:wheat;growth=0 blockId=59 -runtimeId=7780 +runtimeId=7227 minecraft:wheat;growth=1 blockId=59 -runtimeId=7781 +runtimeId=7228 minecraft:wheat;growth=2 blockId=59 -runtimeId=7782 +runtimeId=7229 minecraft:wheat;growth=3 blockId=59 -runtimeId=7783 +runtimeId=7230 minecraft:wheat;growth=4 blockId=59 -runtimeId=7784 +runtimeId=7231 minecraft:wheat;growth=5 blockId=59 -runtimeId=7785 +runtimeId=7232 minecraft:wheat;growth=6 blockId=59 -runtimeId=7786 +runtimeId=7233 minecraft:wheat;growth=7 blockId=59 -runtimeId=7787 +runtimeId=7234 minecraft:white_candle;lit=0;candles=0 blockId=668 -runtimeId=7788 +runtimeId=5250 minecraft:white_candle;lit=0;candles=1 blockId=668 -runtimeId=7789 +runtimeId=5251 minecraft:white_candle;lit=0;candles=2 blockId=668 -runtimeId=7790 +runtimeId=5252 minecraft:white_candle;lit=0;candles=3 blockId=668 -runtimeId=7791 +runtimeId=5253 minecraft:white_candle;lit=1;candles=0 blockId=668 -runtimeId=7792 +runtimeId=5254 minecraft:white_candle;lit=1;candles=1 blockId=668 -runtimeId=7793 +runtimeId=5255 minecraft:white_candle;lit=1;candles=2 blockId=668 -runtimeId=7794 +runtimeId=5256 minecraft:white_candle;lit=1;candles=3 blockId=668 -runtimeId=7795 +runtimeId=5257 minecraft:white_candle_cake;lit=0 blockId=685 -runtimeId=7796 +runtimeId=7522 minecraft:white_candle_cake;lit=1 blockId=685 -runtimeId=7797 +runtimeId=7523 minecraft:white_glazed_terracotta;facing_direction=0 blockId=220 -runtimeId=7798 +runtimeId=5523 minecraft:white_glazed_terracotta;facing_direction=1 blockId=220 -runtimeId=7799 +runtimeId=5524 minecraft:white_glazed_terracotta;facing_direction=2 blockId=220 -runtimeId=7800 +runtimeId=5525 minecraft:white_glazed_terracotta;facing_direction=3 blockId=220 -runtimeId=7801 +runtimeId=5526 minecraft:white_glazed_terracotta;facing_direction=4 blockId=220 -runtimeId=7802 +runtimeId=5527 minecraft:white_glazed_terracotta;facing_direction=5 blockId=220 -runtimeId=7803 +runtimeId=5528 minecraft:wither_rose blockId=471 -runtimeId=7804 +runtimeId=6089 minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7821 +runtimeId=3495 minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7809 +runtimeId=3483 minecraft:wood;wood_type=acacia;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7833 +runtimeId=3507 minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7827 +runtimeId=3501 minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7815 +runtimeId=3489 minecraft:wood;wood_type=acacia;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7839 +runtimeId=3513 minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7819 +runtimeId=3493 minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7807 +runtimeId=3481 minecraft:wood;wood_type=birch;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7831 +runtimeId=3505 minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7825 +runtimeId=3499 minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7813 +runtimeId=3487 minecraft:wood;wood_type=birch;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7837 +runtimeId=3511 minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7822 +runtimeId=3496 minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7810 +runtimeId=3484 minecraft:wood;wood_type=dark_oak;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7834 +runtimeId=3508 minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7828 +runtimeId=3502 minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7816 +runtimeId=3490 minecraft:wood;wood_type=dark_oak;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7840 +runtimeId=3514 minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7820 +runtimeId=3494 minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7808 +runtimeId=3482 minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7832 +runtimeId=3506 minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7826 +runtimeId=3500 minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7814 +runtimeId=3488 minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7838 +runtimeId=3512 minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7817 +runtimeId=3491 minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7805 +runtimeId=3479 minecraft:wood;wood_type=oak;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7829 +runtimeId=3503 minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7823 +runtimeId=3497 minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7811 +runtimeId=3485 minecraft:wood;wood_type=oak;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7835 +runtimeId=3509 minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=x blockId=467 -runtimeId=7818 +runtimeId=3492 minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=y blockId=467 -runtimeId=7806 +runtimeId=3480 minecraft:wood;wood_type=spruce;stripped_bit=0;pillar_axis=z blockId=467 -runtimeId=7830 +runtimeId=3504 minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=x blockId=467 -runtimeId=7824 +runtimeId=3498 minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=y blockId=467 -runtimeId=7812 +runtimeId=3486 minecraft:wood;wood_type=spruce;stripped_bit=1;pillar_axis=z blockId=467 -runtimeId=7836 +runtimeId=3510 minecraft:wooden_button;button_pressed_bit=0;facing_direction=0 blockId=143 -runtimeId=7841 +runtimeId=6356 minecraft:wooden_button;button_pressed_bit=0;facing_direction=1 blockId=143 -runtimeId=7842 +runtimeId=6357 minecraft:wooden_button;button_pressed_bit=0;facing_direction=2 blockId=143 -runtimeId=7843 +runtimeId=6358 minecraft:wooden_button;button_pressed_bit=0;facing_direction=3 blockId=143 -runtimeId=7844 +runtimeId=6359 minecraft:wooden_button;button_pressed_bit=0;facing_direction=4 blockId=143 -runtimeId=7845 +runtimeId=6360 minecraft:wooden_button;button_pressed_bit=0;facing_direction=5 blockId=143 -runtimeId=7846 +runtimeId=6361 minecraft:wooden_button;button_pressed_bit=1;facing_direction=0 blockId=143 -runtimeId=7847 +runtimeId=6362 minecraft:wooden_button;button_pressed_bit=1;facing_direction=1 blockId=143 -runtimeId=7848 +runtimeId=6363 minecraft:wooden_button;button_pressed_bit=1;facing_direction=2 blockId=143 -runtimeId=7849 +runtimeId=6364 minecraft:wooden_button;button_pressed_bit=1;facing_direction=3 blockId=143 -runtimeId=7850 +runtimeId=6365 minecraft:wooden_button;button_pressed_bit=1;facing_direction=4 blockId=143 -runtimeId=7851 +runtimeId=6366 minecraft:wooden_button;button_pressed_bit=1;facing_direction=5 blockId=143 -runtimeId=7852 +runtimeId=6367 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7853 +runtimeId=3732 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7854 +runtimeId=3733 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7855 +runtimeId=3734 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7856 +runtimeId=3735 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7869 +runtimeId=3748 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7870 +runtimeId=3749 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7871 +runtimeId=3750 minecraft:wooden_door;open_bit=0;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7872 +runtimeId=3751 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7861 +runtimeId=3740 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7862 +runtimeId=3741 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7863 +runtimeId=3742 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7864 +runtimeId=3743 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7877 +runtimeId=3756 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7878 +runtimeId=3757 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7879 +runtimeId=3758 minecraft:wooden_door;open_bit=0;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7880 +runtimeId=3759 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7857 +runtimeId=3736 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7858 +runtimeId=3737 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7859 +runtimeId=3738 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7860 +runtimeId=3739 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7873 +runtimeId=3752 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7874 +runtimeId=3753 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7875 +runtimeId=3754 minecraft:wooden_door;open_bit=1;upper_block_bit=0;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7876 +runtimeId=3755 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=0 blockId=64 -runtimeId=7865 +runtimeId=3744 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=1 blockId=64 -runtimeId=7866 +runtimeId=3745 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=2 blockId=64 -runtimeId=7867 +runtimeId=3746 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=0;direction=3 blockId=64 -runtimeId=7868 +runtimeId=3747 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=0 blockId=64 -runtimeId=7881 +runtimeId=3760 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=1 blockId=64 -runtimeId=7882 +runtimeId=3761 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=2 blockId=64 -runtimeId=7883 +runtimeId=3762 minecraft:wooden_door;open_bit=1;upper_block_bit=1;door_hinge_bit=1;direction=3 blockId=64 -runtimeId=7884 +runtimeId=3763 minecraft:wooden_pressure_plate;redstone_signal=0 blockId=72 -runtimeId=7885 +runtimeId=8005 minecraft:wooden_pressure_plate;redstone_signal=1 blockId=72 -runtimeId=7886 +runtimeId=8006 minecraft:wooden_pressure_plate;redstone_signal=2 blockId=72 -runtimeId=7887 +runtimeId=8007 minecraft:wooden_pressure_plate;redstone_signal=3 blockId=72 -runtimeId=7888 +runtimeId=8008 minecraft:wooden_pressure_plate;redstone_signal=4 blockId=72 -runtimeId=7889 +runtimeId=8009 minecraft:wooden_pressure_plate;redstone_signal=5 blockId=72 -runtimeId=7890 +runtimeId=8010 minecraft:wooden_pressure_plate;redstone_signal=6 blockId=72 -runtimeId=7891 +runtimeId=8011 minecraft:wooden_pressure_plate;redstone_signal=7 blockId=72 -runtimeId=7892 +runtimeId=8012 minecraft:wooden_pressure_plate;redstone_signal=8 blockId=72 -runtimeId=7893 +runtimeId=8013 minecraft:wooden_pressure_plate;redstone_signal=9 blockId=72 -runtimeId=7894 +runtimeId=8014 minecraft:wooden_pressure_plate;redstone_signal=10 blockId=72 -runtimeId=7895 +runtimeId=8015 minecraft:wooden_pressure_plate;redstone_signal=11 blockId=72 -runtimeId=7896 +runtimeId=8016 minecraft:wooden_pressure_plate;redstone_signal=12 blockId=72 -runtimeId=7897 +runtimeId=8017 minecraft:wooden_pressure_plate;redstone_signal=13 blockId=72 -runtimeId=7898 +runtimeId=8018 minecraft:wooden_pressure_plate;redstone_signal=14 blockId=72 -runtimeId=7899 +runtimeId=8019 minecraft:wooden_pressure_plate;redstone_signal=15 blockId=72 -runtimeId=7900 +runtimeId=8020 minecraft:wooden_slab;top_slot_bit=0;wood_type=acacia blockId=158 -runtimeId=7905 +runtimeId=5224 minecraft:wooden_slab;top_slot_bit=0;wood_type=birch blockId=158 -runtimeId=7903 +runtimeId=5222 minecraft:wooden_slab;top_slot_bit=0;wood_type=dark_oak blockId=158 -runtimeId=7906 +runtimeId=5225 minecraft:wooden_slab;top_slot_bit=0;wood_type=jungle blockId=158 -runtimeId=7904 +runtimeId=5223 minecraft:wooden_slab;top_slot_bit=0;wood_type=oak blockId=158 -runtimeId=7901 +runtimeId=5220 minecraft:wooden_slab;top_slot_bit=0;wood_type=spruce blockId=158 -runtimeId=7902 +runtimeId=5221 minecraft:wooden_slab;top_slot_bit=1;wood_type=acacia blockId=158 -runtimeId=7911 +runtimeId=5230 minecraft:wooden_slab;top_slot_bit=1;wood_type=birch blockId=158 -runtimeId=7909 +runtimeId=5228 minecraft:wooden_slab;top_slot_bit=1;wood_type=dark_oak blockId=158 -runtimeId=7912 +runtimeId=5231 minecraft:wooden_slab;top_slot_bit=1;wood_type=jungle blockId=158 -runtimeId=7910 +runtimeId=5229 minecraft:wooden_slab;top_slot_bit=1;wood_type=oak blockId=158 -runtimeId=7907 +runtimeId=5226 minecraft:wooden_slab;top_slot_bit=1;wood_type=spruce blockId=158 -runtimeId=7908 +runtimeId=5227 minecraft:wool;color=black blockId=35 -runtimeId=7928 +runtimeId=3478 minecraft:wool;color=blue blockId=35 -runtimeId=7924 +runtimeId=3474 minecraft:wool;color=brown blockId=35 -runtimeId=7925 +runtimeId=3475 minecraft:wool;color=cyan blockId=35 -runtimeId=7922 +runtimeId=3472 minecraft:wool;color=gray blockId=35 -runtimeId=7920 +runtimeId=3470 minecraft:wool;color=green blockId=35 -runtimeId=7926 +runtimeId=3476 minecraft:wool;color=light_blue blockId=35 -runtimeId=7916 +runtimeId=3466 minecraft:wool;color=lime blockId=35 -runtimeId=7918 +runtimeId=3468 minecraft:wool;color=magenta blockId=35 -runtimeId=7915 +runtimeId=3465 minecraft:wool;color=orange blockId=35 -runtimeId=7914 +runtimeId=3464 minecraft:wool;color=pink blockId=35 -runtimeId=7919 +runtimeId=3469 minecraft:wool;color=purple blockId=35 -runtimeId=7923 +runtimeId=3473 minecraft:wool;color=red blockId=35 -runtimeId=7927 +runtimeId=3477 minecraft:wool;color=silver blockId=35 -runtimeId=7921 +runtimeId=3471 minecraft:wool;color=white blockId=35 -runtimeId=7913 +runtimeId=3463 minecraft:wool;color=yellow blockId=35 -runtimeId=7917 +runtimeId=3467 minecraft:yellow_candle;lit=0;candles=0 blockId=672 -runtimeId=7929 +runtimeId=6115 minecraft:yellow_candle;lit=0;candles=1 blockId=672 -runtimeId=7930 +runtimeId=6116 minecraft:yellow_candle;lit=0;candles=2 blockId=672 -runtimeId=7931 +runtimeId=6117 minecraft:yellow_candle;lit=0;candles=3 blockId=672 -runtimeId=7932 +runtimeId=6118 minecraft:yellow_candle;lit=1;candles=0 blockId=672 -runtimeId=7933 +runtimeId=6119 minecraft:yellow_candle;lit=1;candles=1 blockId=672 -runtimeId=7934 +runtimeId=6120 minecraft:yellow_candle;lit=1;candles=2 blockId=672 -runtimeId=7935 +runtimeId=6121 minecraft:yellow_candle;lit=1;candles=3 blockId=672 -runtimeId=7936 +runtimeId=6122 minecraft:yellow_candle_cake;lit=0 blockId=689 -runtimeId=7937 +runtimeId=4595 minecraft:yellow_candle_cake;lit=1 blockId=689 -runtimeId=7938 +runtimeId=4596 minecraft:yellow_flower blockId=37 -runtimeId=7939 +runtimeId=316 minecraft:yellow_glazed_terracotta;facing_direction=0 blockId=224 -runtimeId=7940 +runtimeId=921 minecraft:yellow_glazed_terracotta;facing_direction=1 blockId=224 -runtimeId=7941 +runtimeId=922 minecraft:yellow_glazed_terracotta;facing_direction=2 blockId=224 -runtimeId=7942 +runtimeId=923 minecraft:yellow_glazed_terracotta;facing_direction=3 blockId=224 -runtimeId=7943 +runtimeId=924 minecraft:yellow_glazed_terracotta;facing_direction=4 blockId=224 -runtimeId=7944 +runtimeId=925 minecraft:yellow_glazed_terracotta;facing_direction=5 blockId=224 -runtimeId=7945 +runtimeId=926 diff --git a/dumps/simple-blocks-nukkit.txt b/dumps/simple-blocks-nukkit.txt index e8bac3acda2..457852e7900 100644 --- a/dumps/simple-blocks-nukkit.txt +++ b/dumps/simple-blocks-nukkit.txt @@ -108,7 +108,7 @@ minecraft:colored_torch_rg minecraft:command_block minecraft:composter minecraft:concrete -minecraft:concretePowder +minecraft:concrete_powder minecraft:conduit minecraft:copper_block minecraft:copper_ore @@ -343,7 +343,7 @@ minecraft:flowering_azalea minecraft:flowing_lava minecraft:flowing_water minecraft:frame -minecraft:frog_egg +minecraft:frog_spawn minecraft:frosted_ice minecraft:furnace minecraft:gilded_blackstone @@ -382,7 +382,7 @@ minecraft:ice minecraft:infested_deepslate minecraft:info_update minecraft:info_update2 -minecraft:invisibleBedrock +minecraft:invisible_bedrock minecraft:iron_bars minecraft:iron_block minecraft:iron_door @@ -436,6 +436,9 @@ minecraft:magenta_candle minecraft:magenta_candle_cake minecraft:magenta_glazed_terracotta minecraft:magma +minecraft:mangrove_leaves +minecraft:mangrove_propagule +minecraft:mangrove_propagule_hanging minecraft:medium_amethyst_bud minecraft:melon_block minecraft:melon_stem @@ -446,10 +449,14 @@ minecraft:moss_carpet minecraft:mossy_cobblestone minecraft:mossy_cobblestone_stairs minecraft:mossy_stone_brick_stairs -minecraft:movingBlock +minecraft:moving_block +minecraft:mud +minecraft:mud_brick_double_slab +minecraft:mud_brick_slab +minecraft:mud_brick_stairs +minecraft:mud_brick_wall +minecraft:mud_bricks minecraft:mycelium -minecraft:mysterious_frame -minecraft:mysterious_frame_slot minecraft:nether_brick minecraft:nether_brick_fence minecraft:nether_brick_stairs @@ -475,12 +482,13 @@ minecraft:oxidized_cut_copper_slab minecraft:oxidized_cut_copper_stairs minecraft:oxidized_double_cut_copper_slab minecraft:packed_ice +minecraft:packed_mud minecraft:pearlescent_froglight minecraft:pink_candle minecraft:pink_candle_cake minecraft:pink_glazed_terracotta minecraft:piston -minecraft:pistonArmCollision +minecraft:piston_arm_collision minecraft:planks minecraft:podzol minecraft:pointed_dripstone @@ -544,6 +552,7 @@ minecraft:redstone_ore minecraft:redstone_torch minecraft:redstone_wire minecraft:reeds +minecraft:reinforced_deepslate minecraft:repeating_command_block minecraft:reserved6 minecraft:respawn_anchor @@ -557,7 +566,7 @@ minecraft:sculk_catalyst minecraft:sculk_sensor minecraft:sculk_shrieker minecraft:sculk_vein -minecraft:seaLantern +minecraft:sea_lantern minecraft:sea_pickle minecraft:seagrass minecraft:shroomlight @@ -597,8 +606,8 @@ minecraft:stained_glass_pane minecraft:stained_hardened_clay minecraft:standing_banner minecraft:standing_sign -minecraft:stickyPistonArmCollision minecraft:sticky_piston +minecraft:sticky_piston_arm_collision minecraft:stone minecraft:stone_brick_stairs minecraft:stone_button @@ -631,7 +640,7 @@ minecraft:tnt minecraft:torch minecraft:trapdoor minecraft:trapped_chest -minecraft:tripWire +minecraft:trip_wire minecraft:tripwire_hook minecraft:tuff minecraft:turtle_egg diff --git a/pom.xml b/pom.xml index bec1846cc4d..da4cc3d1ef4 100644 --- a/pom.xml +++ b/pom.xml @@ -101,7 +101,7 @@ org.powernukkit.bedrock.network raknet - 1.6.25-PN.2 + 1.6.28-PN.3 compile diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index 1ddae11eaa1..5f5aa9886f7 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -61,7 +61,7 @@ public abstract class Block extends Position implements Metadatable, Cloneable, @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "It is being replaced by an other solution that don't require a fixed size") @PowerNukkitOnly - public static final int MAX_BLOCK_ID = dynamic(600); + public static final int MAX_BLOCK_ID = dynamic(750); @Deprecated @DeprecationDetails(since = "1.4.0.0-PN", reason = "It's not a constant value, it may be changed on major updates and" + @@ -202,7 +202,7 @@ public static void init() { list[TALL_GRASS] = BlockTallGrass.class; //31 list[DEAD_BUSH] = BlockDeadBush.class; //32 list[PISTON] = BlockPiston.class; //33 - list[PISTON_HEAD] = BlockPistonHead.class; //34 + list[PISTON_ARM_COLLISION] = BlockPistonHead.class; //34 list[WOOL] = BlockWool.class; //35 list[DANDELION] = BlockDandelion.class; //37 list[FLOWER] = BlockFlower.class; //38 @@ -299,7 +299,7 @@ public static void init() { list[EMERALD_ORE] = BlockOreEmerald.class; //129 list[ENDER_CHEST] = BlockEnderChest.class; //130 list[TRIPWIRE_HOOK] = BlockTripWireHook.class; - list[TRIPWIRE] = BlockTripWire.class; //132 + list[TRIP_WIRE] = BlockTripWire.class; //132 list[EMERALD_BLOCK] = BlockEmerald.class; //133 list[SPRUCE_WOOD_STAIRS] = BlockStairsSpruce.class; //134 list[BIRCH_WOOD_STAIRS] = BlockStairsBirch.class; //135 @@ -521,7 +521,7 @@ public static void init() { list[LIGHT_BLOCK] = BlockLight.class; //470 list[WITHER_ROSE] = BlockWitherRose.class; //471 - list[STICKYPISTONARMCOLLISION] = BlockPistonHeadSticky.class; //472 + list[STICKY_PISTON_ARM_COLLISION] = BlockPistonHeadSticky.class; //472 list[BEE_NEST] = BlockBeeNest.class; //473 list[BEEHIVE] = BlockBeehive.class; //474 list[HONEY_BLOCK] = BlockHoney.class; //475 diff --git a/src/main/java/cn/nukkit/block/BlockID.java b/src/main/java/cn/nukkit/block/BlockID.java index 367693ec36b..7405291bea3 100644 --- a/src/main/java/cn/nukkit/block/BlockID.java +++ b/src/main/java/cn/nukkit/block/BlockID.java @@ -48,6 +48,9 @@ public interface BlockID { int BUSH = 32; int DEAD_BUSH = 32; int PISTON = 33; + @PowerNukkitOnly @Since("FUTURE") int PISTON_ARM_COLLISION = 34; + @Deprecated + @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Incorrect name", replaceWith = "PISTON_ARM_COLLISION") int PISTON_HEAD = 34; int WOOL = 35; int DANDELION = 37; @@ -181,6 +184,9 @@ public interface BlockID { int EMERALD_ORE = 129; int ENDER_CHEST = 130; int TRIPWIRE_HOOK = 131; + @PowerNukkitOnly @Since("FUTURE") int TRIP_WIRE = 132; + @Deprecated + @DeprecationDetails(since = "FUTURE", by = "Mojang", reason = "Renamed", replaceWith = "TRIP_WIRE") int TRIPWIRE = 132; int EMERALD_BLOCK = 133; int SPRUCE_WOOD_STAIRS = 134; @@ -301,8 +307,11 @@ public interface BlockID { int RED_GLAZED_TERRACOTTA = 234; int BLACK_GLAZED_TERRACOTTA = 235; int CONCRETE = 236; - @Since("1.4.0.0-PN") @PowerNukkitOnly int CONCRETEPOWDER = 237; - int CONCRETE_POWDER = CONCRETEPOWDER; + int CONCRETE_POWDER = 237; + @Since("1.4.0.0-PN") + @PowerNukkitOnly + @Deprecated @DeprecationDetails(since = "FUTURE", by = "Mojang", replaceWith = "CONCRETE_POWDER", reason = "Renamed") + int CONCRETEPOWDER = CONCRETE_POWDER; int CHORUS_PLANT = 240; int STAINED_GLASS = 241; @@ -430,8 +439,15 @@ public interface BlockID { @PowerNukkitOnly int LIT_BLAST_FURNACE = 469; @PowerNukkitOnly int LIGHT_BLOCK = 470; @PowerNukkitOnly int WITHER_ROSE = 471; - @PowerNukkitOnly int STICKYPISTONARMCOLLISION = 472; - @PowerNukkitOnly int PISTON_HEAD_STICKY = 472; + @PowerNukkitOnly @Since("FUTURE") int STICKY_PISTON_ARM_COLLISION = 472; + @PowerNukkitOnly + @Deprecated + @DeprecationDetails(since = "FUTURE", by = "Mojang", replaceWith = "STICKY_PISTON_ARM_COLLISION", reason = "Renamed") + int STICKYPISTONARMCOLLISION = STICKY_PISTON_ARM_COLLISION; + @PowerNukkitOnly + @Deprecated + @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", replaceWith = "STICKY_PISTON_ARM_COLLISION", reason = "Renamed") + int PISTON_HEAD_STICKY = STICKY_PISTON_ARM_COLLISION; @PowerNukkitOnly int BEE_NEST = 473; @PowerNukkitOnly int BEEHIVE = 474; @PowerNukkitOnly int HONEY_BLOCK = 475; diff --git a/src/main/java/cn/nukkit/block/BlockPiston.java b/src/main/java/cn/nukkit/block/BlockPiston.java index abe22c2b1c3..bad208f4e95 100644 --- a/src/main/java/cn/nukkit/block/BlockPiston.java +++ b/src/main/java/cn/nukkit/block/BlockPiston.java @@ -30,6 +30,6 @@ public String getName() { @PowerNukkitOnly @Override public int getPistonHeadBlockId() { - return PISTON_HEAD; + return PISTON_ARM_COLLISION; } } diff --git a/src/main/java/cn/nukkit/block/BlockPistonHead.java b/src/main/java/cn/nukkit/block/BlockPistonHead.java index 772976f8745..c2b0e0df745 100644 --- a/src/main/java/cn/nukkit/block/BlockPistonHead.java +++ b/src/main/java/cn/nukkit/block/BlockPistonHead.java @@ -30,7 +30,7 @@ public BlockPistonHead(int meta) { @Override public int getId() { - return PISTON_HEAD; + return PISTON_ARM_COLLISION; } @Since("1.4.0.0-PN") diff --git a/src/main/java/cn/nukkit/block/BlockPistonHeadSticky.java b/src/main/java/cn/nukkit/block/BlockPistonHeadSticky.java index 5b767fe0b1d..0f59f64864d 100644 --- a/src/main/java/cn/nukkit/block/BlockPistonHeadSticky.java +++ b/src/main/java/cn/nukkit/block/BlockPistonHeadSticky.java @@ -16,7 +16,7 @@ public BlockPistonHeadSticky(int meta) { @Override public int getId() { - return PISTON_HEAD_STICKY; + return STICKY_PISTON_ARM_COLLISION; } @Override diff --git a/src/main/java/cn/nukkit/block/BlockPistonSticky.java b/src/main/java/cn/nukkit/block/BlockPistonSticky.java index 1b01f007f20..0f5d49aaad0 100644 --- a/src/main/java/cn/nukkit/block/BlockPistonSticky.java +++ b/src/main/java/cn/nukkit/block/BlockPistonSticky.java @@ -31,6 +31,6 @@ public String getName() { @PowerNukkitOnly @Override public int getPistonHeadBlockId() { - return PISTON_HEAD_STICKY; + return STICKY_PISTON_ARM_COLLISION; } } diff --git a/src/main/java/cn/nukkit/block/BlockTripWire.java b/src/main/java/cn/nukkit/block/BlockTripWire.java index 301624ca30f..25994a2ab30 100644 --- a/src/main/java/cn/nukkit/block/BlockTripWire.java +++ b/src/main/java/cn/nukkit/block/BlockTripWire.java @@ -48,7 +48,7 @@ public BlockTripWire() { @Override public int getId() { - return TRIPWIRE; + return TRIP_WIRE; } @Since("1.4.0.0-PN") @@ -175,7 +175,7 @@ private void updateHook(boolean scheduleUpdate) { break; } - if (block.getId() != Block.TRIPWIRE) { + if (block.getId() != Block.TRIP_WIRE) { break; } } diff --git a/src/main/java/cn/nukkit/block/BlockTripWireHook.java b/src/main/java/cn/nukkit/block/BlockTripWireHook.java index 1c21741ee5d..7758dd0d41e 100644 --- a/src/main/java/cn/nukkit/block/BlockTripWireHook.java +++ b/src/main/java/cn/nukkit/block/BlockTripWireHook.java @@ -139,7 +139,7 @@ public void calculateState(boolean onBreak, boolean updateAround, int pos, Block break; } - if (b.getId() != Block.TRIPWIRE && i != pos) { + if (b.getId() != Block.TRIP_WIRE && i != pos) { blocks[i] = null; canConnect = false; } else { diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java b/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java index f2dd7082c61..167af049783 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java @@ -223,7 +223,7 @@ public boolean onUpdate() { } if (!extending) { - if (this.level.getBlock(getSide(facing)).getId() == (sticky? BlockID.PISTON_HEAD_STICKY : BlockID.PISTON_HEAD)) { + if (this.level.getBlock(getSide(facing)).getId() == (sticky? BlockID.STICKY_PISTON_ARM_COLLISION : BlockID.PISTON_ARM_COLLISION)) { this.level.setBlock(getSide(facing), new BlockAir()); } this.movable = true; diff --git a/src/main/java/cn/nukkit/item/ItemString.java b/src/main/java/cn/nukkit/item/ItemString.java index 5620ec50cb9..4ac82ec9e6e 100644 --- a/src/main/java/cn/nukkit/item/ItemString.java +++ b/src/main/java/cn/nukkit/item/ItemString.java @@ -18,6 +18,6 @@ public ItemString(Integer meta) { public ItemString(Integer meta, int count) { super(STRING, meta, count, "String"); - this.block = Block.get(BlockID.TRIPWIRE); + this.block = Block.get(BlockID.TRIP_WIRE); } } diff --git a/src/main/resources/block_ids.csv b/src/main/resources/block_ids.csv index 23f47d7d802..bcceaba9210 100644 --- a/src/main/resources/block_ids.csv +++ b/src/main/resources/block_ids.csv @@ -32,7 +32,7 @@ 31,minecraft:tallgrass 32,minecraft:deadbush 33,minecraft:piston -34,minecraft:pistonarmcollision +34,minecraft:piston_arm_collision 35,minecraft:wool 36,minecraft:element_0 37,minecraft:yellow_flower @@ -93,7 +93,7 @@ 92,minecraft:cake 93,minecraft:unpowered_repeater 94,minecraft:powered_repeater -95,minecraft:invisiblebedrock +95,minecraft:invisible_bedrock 96,minecraft:trapdoor 97,minecraft:monster_egg 98,minecraft:stonebrick @@ -130,7 +130,7 @@ 129,minecraft:emerald_ore 130,minecraft:ender_chest 131,minecraft:tripwire_hook -132,minecraft:tripwire +132,minecraft:trip_wire 133,minecraft:emerald_block 134,minecraft:spruce_stairs 135,minecraft:birch_stairs @@ -167,7 +167,7 @@ 166,minecraft:glow_stick 167,minecraft:iron_trapdoor 168,minecraft:prismarine -169,minecraft:sealantern +169,minecraft:sea_lantern 170,minecraft:hay_block 171,minecraft:carpet 172,minecraft:hardened_clay @@ -235,7 +235,7 @@ 234,minecraft:red_glazed_terracotta 235,minecraft:black_glazed_terracotta 236,minecraft:concrete -237,minecraft:concretepowder +237,minecraft:concrete_powder 238,minecraft:chemistry_table 239,minecraft:underwater_torch 240,minecraft:chorus_plant @@ -248,7 +248,7 @@ 247,minecraft:netherreactor 248,minecraft:info_update 249,minecraft:info_update2 -250,minecraft:movingblock +250,minecraft:moving_block 251,minecraft:observer 252,minecraft:structure_block 253,minecraft:hard_glass @@ -470,7 +470,7 @@ 469,minecraft:lit_blast_furnace 470,minecraft:light_block 471,minecraft:wither_rose -472,minecraft:stickypistonarmcollision +472,minecraft:sticky_piston_arm_collision 473,minecraft:bee_nest 474,minecraft:beehive 475,minecraft:honey_block @@ -719,24 +719,24 @@ 718, 719, 720,minecraft:client_request_placeholder_block -721,minecraft:mysterious_frame -722,minecraft:mysterious_frame_slot -723, -724, -725, -726, -727, -728, -729, -730, -731, -732, -733, +721,minecraft:reinforced_deepslate +722, +723,minecraft:frog_spawn +724,minecraft:pearlescent_froglight +725,minecraft:verdant_froglight +726,minecraft:ochre_froglight +727,minecraft:mangrove_leaves +728,minecraft:mud +729,minecraft:mangrove_propagule +730,minecraft:mud_bricks +731,minecraft:mangrove_propagule_hanging +732,minecraft:packed_mud +733,minecraft:mud_brick_slab +734,minecraft:mud_brick_double_slab 734, 734, -734, -735, -736, +735,minecraft:mud_brick_stairs +736,minecraft:mud_brick_wall 737, 738, 739, diff --git a/src/main/resources/canonical_block_states.nbt b/src/main/resources/canonical_block_states.nbt index ff4dc590c5c89307378209ec8c7be463cb2a45c6..2cb1ff71059173d218bde33d66cd84753d706e80 100644 GIT binary patch delta 22329 zcma)Ed3+RA^8fTCA!NFHrW+8$nMneK9FXA%HzpvWB1%wK7eNUiD6YVW;;{k-?+Xd( zpD8aS>Utjpv+@)X0M94fOS%?Y>bzHX*n zVmg(1x)GXt@g)o9PoJ@H-t<}YNr5kqs>}53BPNYFqBPH`di2Qpc@*BN{ZW!N46xF|FMktsjLN!fuQwynPh#t@7cnYL@vN@OIV;K}u{c39n zXN86pGH<4qRaOUDz1|w=H1x<<&Cgj^cxwCUG^Nng>D6cL4pjcCmYpamqEMke#4V~& z@(`xDhB@&oYJSJ?(Wg6&0;lTaAm4oRP|Ko@nZ6vVPWS1wzq4lm1=4&&T#C(R;A+In|GM zCv=vg#_Gon7~Er)(!TGEanzD!j-$}`MyV@n&NNG?qMdoX+V3$dvYh%ZdfL22=hCP_ zzKTSquhX<9o2tf`CQTk{7E!}?G?@K|{6Y6U0*CzL9BVDC9hbYWaXQHxuv|gEMyp$8 zA4}FA&7|-ytryj=vyf3o`(vk}RHuGtTRq8pwl#$+-ZMwKRu)REEL8IVJ)aK0V+N_d z1Z_d6>fSz=La#s>^6frO!~JDKs6f75n&C8L>6BM#7C9}a=@h)g3Q%!RJ15Gmpzw*P z@QHWWgQ)6NUv`W=i7FSOd@Vm%`PBUmqpPa_&T=xSVzf1st6HbUhf$E=a>Jn4SLyBP z@O=GgYP!rGPR-?3wgR;&ox;O(gO=TZzEE+kPCYxItbxgT0w?_>F|DI&v3$EUs^4i0 zmYenle1%MSLo;UmZT7j-QAN&}!8z3QirHV9C{yF*EssBp>IqLr)Ae3z_pY1m?@6z8 z@(hd;UAZD*Ys2Y3u!P%yL0<;Uz8DV-`o~vB5A;N13Rz#7x+glc%^xx-@C|xK{Xgw&1!|SXw%2Kw-`BVHT%CR#f|0;_5nU{t z;~PXZJJ7|1k}eicfcZN*AvD*xNLp!>g(Z8$6US4158oM7^^#T`yWt#{`rH3>KNb8> z&vl!P+#i(_ z9HFLA^?v_3YQcX0(hTw~w~O40s9bKBxdR*{ENq>Mzm1yM_XT{RxzhDt){D7%oFI@=}G?M{QK zuCW4Qb%?f-wHTwt^3SboI{H_$N1RnNKew*KFucQ?Pdm1v^q}&nYCA?dq5ALiqBFB> z)oWIsOH~ZVvPNX}mqzcHzb#5Ff72Vu#oCP}k?5@nM^iVINAEpmq$zs&G_As=o+s-h z^!n$An*C_;Am4bm>4G{(Ui??DzFcbY_K95NV1Lt{VO)ym7@^Q~3u#S1yd;`#gu;?c zsC?R83M28YP-{oQQu7>M713FD*?zi?>|WG#tl3v>8e`s?<}{7Qh0D*FMl z)_DxtP^x?5Q*g4Z$O)XLtF5P6Ytx*{p*l^^!{Bt=i{6|#*F4_t9^=%#xwfY9Tgl|M z@^yVBwT#t@lO%N$5(ERb>$S-$EJ;$i=rVmnEQ2wZCouLE`U|lXFb_H{dw7_0pT6@U zz1C@ZwIoSU`)r)we5byU!eh0QVj3c;JRw1{_EtSa;Z2^2F&&mT%_=U~Jj>TQ8BQ9X`Q1xjU@vb70 zriEHu!hJG17YLGafsK+(m|Q8``RbNvr^L$10w?foT!5}un`AB)B)=&7U$QM&kgS3Z z7`FwOWLu!~IZ4l8L2?G@e96UNL9z<0lUxiIv{Jd+_i$1JL!XS73;pk*q*Mqt#w>%* zm)tlZh+9@VUij98*3A+p_*=X_rQao~up~)Ex?PeAOOjO3>yiz@g50(?yc>be;s0bwrY+!}DOWj!2Sp zq(jyZN~lMXSckIWbuB$INk=3}I?^SRbVQP*gD#kC6A0oqIk2IXO(00H36JtsKWD|q z3Ab;qN?3}ab=4;K1(7861?h@OBS!dWKD)bi{;ANm8D64f4 zCkS@YHPy?n2Tgn|ajokrtrsTdf{U<*KR=wM)|& zr4XDFTXm-Rbrq<;YU_siUcZ@wuUQ3(?@3qTF23J1vK*B3_G_?-Ynp1CG`-gD16+a3 z?M4YBK4S#5aj8Au!c-zF-5;fbuer$37}YY~{5nn5ylHOG>i*iUjG9U^=hp4^Tt&^t zwOde^nYN6=xtX(F$%uBdd7)lSrAN2FfhtF(Uq|(ic{WqH!9&!v#WRsAws}sVz*FtV zl676$9NN*f{Y^K79`fLqhF>~<8ThrsFB8A^_+_ckL*A_&7+UN%4qJO{eTo#QM`6qx zEuE~8KEU19McEU{+G6`?_2;(bnlZ}S1Y2UK8cUU}Xq=V(Xq2_7X{R?)S$3w;REuPL z8fRsX%B;e3Uxod*V4Jr3dApmM{=EH-A;9t%oqb0;BTn|k@%WhJst$nI8Ly8>`Y@!> zkA|){ed{{<9u=&CtYfVH?$(cy2XL!_p#0q$?e+zsq#H0L`*aZrOa{_R=NK-k`&xbq7F*p^da-4vQPVBfNRloul=Swf%bz#{LU(pPj|EebV{gm2%Wl|0N&y4~9Tm{T>L#XX{*Sa^%nha_<9izg( zkF!e!2>E89Z=eja)7tq8F#6>={l|24n#=Q?%CW~V-Pm0I0V*fgDxsWgt26EB43sz= zu!gyml><<$x~DZcjiIb#rE-MedJzH$qyq5@fT2}-H#%dmudCZ@qwGK#qt&D(_I8g{ z%WKPkCRV%!m?bz;?@tXo>@n=9g2QSE)$Fu;P|bbTWD4wrYpiOa8KI!sT{UgDztXAV zS@af$rWto1PErFxNeu`kH6WDKfKXfm?i~wS0Bb|`zDJsEuHox11w+TnqVA)uUKo=c zt2SSpOi`NsOcC0tbbM4lUe9;=QH|l6TLJKmwFW2@YkImnnE@xtrq{{NA?rc2H&uLX zV2B5$mj1(>4|9Hw8NvJna4M*$08W}C*yPap96BREGq2R@)&b9c?j56`ZkN|kza8>^ zZ@TkVBfxHIx(2;s*0&b-Ee0g5J8i5o0QoYf!2KlV7O-g2V4sWb#+Id!45z@yMyWG4 z1Gj)s?LRiQXpBHN_W=aQ7CoW zpFx!!fZ!hJpu_po%`T=Zy4mvp8}_EdgM2r!UGH3O<@0~=v)nyr_)ja?{d>_Ty4 zSD^M{39$zQ#fNWud%IZer;Dw8jKGGPFjD)ci!FwKG;$PNXMMa>^DhjZU)%@ZA>dY% z?(OL5O;z{W@ac5)lskb-bvkJ@y1^}@0pW&hc!x%3q85W`hM)faKYgh?G(E24W$j&f zB3`Ccrah)^V~0WxRle!VQSe)M)7+Un{Fpu19b{!D7uIbNJkLi{U8Bb|RPZtTEetBx zSY}l6g`n@wW!s}Yet>~lYiGxmnUgjutI_fIQ_H%-LJ2)*5phGhfED9A>SP#co zW%bf8O~;^YIt>#WDEz+Zr$f8VEP8FXna|)bZB%AYwdWZ#(`~)#1_Q2;b+$p<7hwIn zEL-oz>qApjeu5>ag2%Q&<56GT|FsFno7CPdbL=dtSYTg`v5NNG0Y3+0|1rj$Npyvj zLi7nQ@_uw09E%e>VVM|ZkEN=ci~^}a87G-jsK6=giZ`+rE;w)c#i1FO&8NxAC~|5t zd&+ zqBN!@g)*&7Md_1Nl<>HGdhQ!PhNdBS>+V?3uZgMJ0_obo)6XcWb<;7wf6*%UH6biO76{Sy7Q5x`L3XfZsiqg(hlyZMc z;c*wGqO>^`CHvVW-AXnlbhk ziN;b(@3i)6^i7ekH#T=ec!BWqZiKfr9n#&^j}Tb+C=h=I?qOrQz%h?5#hX!~Vp~z> zj-eHw0`ZCJcA-k2egZ+)rJ}mJf_zz;zykl8uNTn!57`^JwFW3K%$H6rTNp&`YxR-k zi30VJCd;gQix3^jv1i-Q!3r+)4=lQP8K;`-t(#1${teIOg%eY2sri005@sb7FEkaX zQP?d4U#h>+meq5Nk;QYAE9Z4{l*uDrHpe-vn&X_Ry3x)`m(^Jd9?zTX7=wLwj8Q#W zjEAsb8HSzG=UX(1L!ovrzeSkI zlOBZNB79AOd(h|Z;tD(J*mPkGrqKO}mlII9VmsE)g7Pw}z?K8vnrb5~SE6p15^F$~ z?XK!7FEslwG`()NiRV^bpxr~&T^(*&8feU2a4H#APC_*nsBg&)clNgDp^z0-B(4{OC&sjAF_nlneUc4JV$$!!gr^O)u&OzEbSqxul5T&f`T)& z%Q&ZX2tb&Pu*PVSDw|`}*Xgke0L9N&6|=P|QyBd;=6qzaA4DjVCHTP#nI zS`2K)vBBx(f|OBq6ywCjytnbwy}JM|35)3S3~JuRQEo_8L*MuQ&4Ykq7ylK4_m)C1 z93uonkB#+RUQgpOeN}-~%1~zq+SH6q6g&pqVr&8BGy&|4rK*}{J3o!!gn3digx& z`o%rraQZDqf0=jA@8~I{(6hFo(nI$5*jID7Y+#$WK;^vVJ>SD!N~hQB?A7SIX09r{ z%X~D0T561e>Z}@LPC8e_y+5Obh}e&WV+-XD!o#(RC@bf%eXALXiI1_W{#A3a#uSRomF%B8$&yM6Zf@4|ZVvH%tEU-y-2w=1SgTK(Fa(?#PwBrYC{v=`3 zWIN7|Nl3sQHiakKCy?C1l!EdE!Su>wa9+6_kYJooWHAu0oPggAp_6X_q$WNmXq+mM zw?Z(8BLtT)q>Q7~;&sNa8U@xHN70+>4J<{NDtXQ*qo1C|WeZ=*)*EGY_|Z0&*YV{7 z*5zPc_3N|tK7d|F+xr;oXg6=cr3^tZNXaXLZ~Gz^nVV>g;pzvYkkW$}CDJ7MUs_~i zsLwRC)ZK^`=fgNc@o5}a#K&n9D_P&xD$5YI(vKkJAvZXpw+opY z(w!kC1GeQ5iK}en zBM*(THw&~_m17r!IKx?f(FCXI(!TOve{qTPWC;AiPR=P;9@Y3{hztx?)NL3>+lFD< z1+Lfkx9-?H@o9)S>lDpQ;K+I=DX~71_%QB-Lw39Gerg$ys0!J92*r@CEBpAjDAl6_ zOvR}xc$_tzE5vY?PQ>zkIl?Zuk1J5#3>@t-Xx<}Oq>JGr+<5LrJ-#$-7aBfSS75X> zi6?oa$k&DT?J>H=xo=*ud&ap#g}%@Ey~8_sW+|LdHaRqH9Zy3Y`@2;?m4cpp~pR#mPeQ+ z?jl1d926*|oZ)6JNpyzDBrt<1g@Xd4u=rtQynb5}G7h#6)xU&S!FmSm_hsy|<9flD zv1>*`capP|(S*0zP~EAa9+x%u8r@aZ-NsT|gwgip=h>`$!F~Jc5)9p96>H`^gH^tP5u>EsZ_5%OsW|1KZVmjf0@&@Ufpw$2|`8PKXIVyG~m%t+2cvR?4^ z?}`Zh&Qull7SNimdLLOp)OFJb^7>&2J=GOB1h0GCpcP?x$pa0EY+2V$KU#cS?l@lG z*$&rrf#<8*W1Z%2Y#M#J1PvK<=O>oYuJsXDUTOR;X~Yqwa>Vt>DH3M!2T6Ry^$(KZ zXe^?R2vB2e=P0`SppF?LA7L>6&V^UA`XqZ`?3@&`U^aSK%4O^J`^#C5z0!ZNXk!h9 zgH>HKsA?Bh&p42kPYt`wJSY4Zb}hTi0&yEL!G~JVy?2?NaN@G7Jxnd`f-sH9Ks1Wy z&KPaUvXKXz!FLsyMt*t~dyCrJ%;nAuC=}YWL%t@3*6d@<9xXxZrmG5Bp z!5ce;jooV=LKu%h_gI(|dvvfrs(T)>U|rUG4aXRfPyP+qt_U|Rk)v;(_m(NhOFS}A zuGnPesPmsUi?A1YNsF9H6H46LQJK3Kb~zo3;pTs7!^E`-k$Vaa#5&i5dDtwJLqwIm zeeO~x&hhFo&dJeH(UPO1pze;vf3&0Z_hT1?HH#egOs6#_#_TT)`!858eF)*27p+{` zc}2Nn#6unBa*4NKaaBRy5?Bk+o3IKQ6{YherLIcz+>uUI!vPmc5EG7-`p7@r`h-G0 z?AR7PWnst03v}|oZ`|%uEkmt@qkJT+SWfh!sjm6rA_>Kavd7ACKE5@6o{zcB$_ko4 zYi^L$;SlD@6~E}kjg>>cNq4M=hf+AtE&@^F;*Cu3D~m*6#)wV_r@0`TrFCZjZDh5o z84>rKsk0w?4I4x(NpT~fwRi78Gigjov=6)CY4L8%@)BPZ+>N$1Z3ND; z?KZDwCF(Q@;{^z3=YYJ%nv-iXM0#t$&ZVpXA}r?y>~T!JM&WP$2K}!Cnocy{4wG-9 z4E}y(*z^PfX`8-?M$`x;6&jVfbt#-wBdAlj1|tzQ%<{m)d7R=jmF3gyBE3HkPgiWm zDetP^tO4#cUVYG-Zc%kV|D)7=2*K{a%N9}K-@g0g92r&S_-}ThvZi-@8>mI|Bb=3C z%KAx2;Nxg6<)T=F{Eu@k7YQ`VxtybdANnp>N}2cA>v`yNjvv*VyC?6qpX8(P&5vLZ zEYtIy)sGa)u8t)@T@JCfI{hTBh03|(oTfP=DLBaNs zCL`0RzF5NX!p)AhzL;B{R%T(YE>E}G3zXfq)?onNZEK0EtIa2hx4BKNUi-~9pBQMn zNaDO{^I>1Ji{}rtW|V2&D3FObsL>gzXst*|>(5LTf8w8+Dz5csriyDl`;6V@JLa}+ zgex=u)Ck>adKOyM8!2h!v`;0kHcS;=CD|1F+jzYy8>U*4lGcutwAwV4Jh4qviB_AY60J5( z1+70fm1Oh04O7+Z#ODMA4iZY>AfW^fa#H~ZDNr}cw{mU@Yo)bIZD++jIkGd2(!7X? z(lJ;*s)sebGigaX+{BY~wyQT#AbC-F(EXB3ODC*e#5*D%kO8}j-M-h#?#3x@FdDCF zK&V~IX$EDF)Nnv#J3c5eX@IY<`&pXmQT{BKl@(P&svAY!i<*PjGsv#9b-tzECVK^F_ow!X*5Ghz_hr#}OK_~>DK5Rf39s+Yl^!$4q+<5Ig~`TkZ^$qC&n zItq9E3ebw9?++s0o2vI2{Su8>qGNFz!vO4 zd&Tk$X52P$iydW)6B2MU9GBD*T$;=-3A#0T3V#Oke3L~k=mdq>Mx)&I1cP$$dbD!J!&Y&hhY z1bnf>Xj7J_J3V1~Dut45OH8g7WO=RyTAl6b!Jh+K#&~e)hIq`&`pdfO_*{6}}jBVQe>9REM{0V%4fQe_o%a!LVaASXkLjMEWn&*>G z#3_iTAnrYkmc6f8OLrqgnj4J)KrZm1A?`jkPaC=F?5B-T8bjvpxgeL4PQ)_lL?FI& zyX4}d@zIjYv+dWV64agVY2Rrsx-z=N*I!L2_T3=S&$k)){0tvZQrJ6pm$OQU9N~}d zKsdtn^$8Un3|+YlK9D2k;v%@#Z#xT^GtQU&z~jZy?L8&3U2S*C!nvX8m(iFKy9-&x zc0bxtgykuFb6Y3%piM81+-Q;(GRNf)K?lWzWD*aUZ z4j#9I+E@jj&!_EOAO9(*N6s^diyz#M3_hxWxUPR;WNqFAJUVBycd|>ZegU8BU`hCeJtyI0WQELZuXFNW)bgI=21VD-Le%gMzFvA<~KCUzk-cI*u z@wzf?A-lflifkQ6l705u=m^i+S96F5Jf|PPD}^tX`Pom?j(WanZ~}pH>>aos8g;whEKpcmWT!D! zMz{2}ywp$xOkG@OiK3#~G{bpg)BxJChLL)ll ziv&lPG{(_gE%7lyw!`%mudD^O&xmB*3D&VO2erQL1peSxy^bSnvIZ4O)}TUR4Vq6O z9S3a0C5ew#>7=j1_`IA<0**G`W@G~2+hQQuTGH3fOAlRN9ZpI&Xv+$9& z9{DZ-cqk?WIs{rlVY3V5_xsxaZ0*wVQc(V9t3JK-2^sjSUiJ=m6OgAcoXYouS)QiQ z+^r0me5wx{xo-9F_p892h$#xEOU|ss((UlT=m8_6c908^)%G)<9@G~zTBPq|isV;} zvJF_Xnf_h@8J;9xCFa8?M2s223)o_dPL7Iy^Hyi_Jq6B9OkSwfx!7R>- zFE7rDi!#oN`!32B(6?{E&lP9IW5=vQ&Nv${E}v=a@@Xlq=XRof zgUkxS2i5+8W>q?Eau6?u(2HX!8gOx}8tI_^sO1CO4LehyHc3p=RqvPx1ng@LR#*{j zxK8i{8ky}g6R=vw7-BLwo|a?5((Mrpy-z-Dm#S07+uc0kS_qZkM3D43{*sw+(&u8F zxE&z>R;En)Xb(P%hK@k~zSc1Mr4k4;e}5rR57(_^!+0pTaT?Wk#KJ+oBnfIepLfIO QRr}&Ztbo~1H){p|54m$CW&i*H delta 16084 zcmZ`=cYIV;_W!&|2xQ)yS3)s_l7T=9DNGU)mYM-sL=YIuiY|z;(2J2`Lm(=_e6G-20lm|O z+V<(XdZw3iv=fD24GeRG)j8DmTA+mN|1mR#MUglBG2Y?*{ur`4-HViiVtCkY;yH0N84xOs^ z`3HFmm7qd1oB`DKmcO9B9Non0w7>1&O7?h7cUNCs>9#DHKure%1qlwdZ`U)0YF>SH zj})@+uylI!R;xeN-e4K@nZJgKaCC^@Q=pUFU5b{c|pikQg1t7>3@sc zc%x3CGP{T(L+tqEw#ICE3;qrH#}yRQT8TtfXaT<{NDgYCp+V1b9tzJiZh9D z47*}u3CC@WWGYl@_fcq>J&upuAV&G#!E9Y_hY5#ryvK{5N^F#6b{9i-QBc!!sBemH zQuYsloFuF24ZSC|9rur?Y99&@b|@UFz`rw<+TO4Y_2?G=_o*s8!+y`#9P&jvk-gF? za$A;Fcp$i3z}Zy$Z{FQp*5XRU znWf$mC&>Cj^n@~nvR`Ywb_PB1nwCy=y_{@01oZf8I4X0CwSE+>z_j>aBzVK9@ii?f zV=>Pl;|sl%kKl={vri;TDY_Ruv5f1`s&U~-tiEo`?7|ak^>y1SPi9fg=)ftw#;^23 z3g4_ZQsiv?acaNIH%Uc{^`}?Md9OLc$xBLnrs@lGi2pZyhdl!Dc73|OZoMpSUk}DV zOwN||t|ptO_fzI_Z#jZ~GvqC-hz*c;YkXu3dgMwwS5{U1^7Vn@Ng|ncB2BBsd?XO!&`oQxw)~A398cDeWRNE z9d{p-@!dyK);I{4574)KcpwJffXp~!vp<_p-w0Z@0~ea0JqZ+SiSbnEHT&ljdDR1p z%oXx^oEi3D3jWsaOJBdhq6x@7Q0D;^y4ZflM~%1G18GYsuA9ZT*jdWF#Xei3rl=Wk zKb$;(+V^V#a+^^azRJv1s~4MNeZo}tzi)r1QEQfSjY6e;Dcq*Nf_U5%TZ0*tk*`|! z+E|n7|AqXU+F#3{svtIff>d?i*z42W_H3OB?=$`MIvKsFk#GmaSqiN0AbRgJ$0`&Y zf>!XoJ(lZ0jW~*4e@dW|dm(bAbkn`@((Q4c3jJUQJL5Fixo%Tud`AEZJ%Tj>8tsOB z*ax$$D(^tVDSVnl3E%DDE7V$&LI*#wi&WE7c2gRKZ?e66SrC6s=CH)(|17Z?tfA_q zxYn${2SU{HIS$3KKifn2wG7%bA~2kqh8Y9p8!4bt+_$|UVZQ8c7V`Ho==PiK{?u{< zF(yrQa3uWQvSExSs3S0G{;O5krE?LjDuXe0P^QYvePo2rJ5cYE2;KI-*2d< zOUBBE2H#?`&&#+?L=D%NO|2OjTc}a_?jn0>#;w$zkrAcFcYJl!HY?+?`W=v2_)qp) zUm-PJgqD2%JtX2PXk~n`g6y4v0Nr)1FP*-62}hxEm#>1_zUcf1s=3B@>8)+cefUek zUn>4O;V%t;o$=QNf9a}ix&QH=WKXpU=&OJ8rNPK}0-s*c&r_`mRXo)y@=>spa~8GC zGqODtjQaD)PIsU!q(XE|PIrbdDxuBkPNjzqjMMsfl~=9v_hM8+Eq>=*I?gEBfsl=< z&O{aN?EJZts*O02RBHJ-P)2|2j}sy2em)z5ej2D{Dxl{y?+YIoqMf0_rP^NTNns<< zdGQrXW-Xf)p>@5iZe+iMIh@L_`5@5uH0jBg<{+c@}MaDUjw4?$sT{c-nowQ5vsPAsn>IqKy|o zv~_Hn=m=$A`@>ugWpaz&gN~0dbZQ%EOk{FcvOuAr9-FU8uMO}~r@mhVhI$v1?-hLv zJvhb~LPr8HL`H6~$53#!`73?|=&EchO=VzX^zZyrfdYl0Y$v zQ)4Lng)@{zUMQ(-dZZ|t;TmH?Qqkms(Ny(sXxGUW8xtg2lzIiCnr?mr+KIH-@t+PY zpuN5cl~X#Hx`&n71c_#)3I(4)ABn#Wb(`P}>_ATaT<@8mX=pPBo6o;W1QImDAftO|H+NiB;M%Uc(WdPAMqjhjO&~vp|S% zSLWb$^%xYMZh6SH2TT#0$-By761#TJXuiqg5EnThRGOJ76rN!gD!4a}LiyuumavRG zk~gbreNA81iCX?-j_|%KfPx3&kEvo}w~p*!ZwnE(w?P#6ROFZ)hLZ5HJzT!00REH= zRMWrg0eJOY@y{kmKARxKEowUi`NOME;X?sgehg+QunR;5tC0EP zlfdp`kBK07OkzkpCc+bsi6HTq2x5)C`s{PNs0$#N@0Ni^SQO>>l9gTQe8I z*=HSD!{FKJMQc9uujVy3RP>6^`a97z1hA^%+AlrqHa)nQA`klN+?qqNVg^#& z_}VP7JzNH2djwOo-#14eT)dJsZA`$TiZ22|YQ4!c+!-6wY2m$gnOk$r@7|INx6dwU zal6Z{bXxOoI6mTJd9r%hUNbLAUAD!}Yj`oxot}LX);&+0F!6NS)z2xEHPc@VSZ=8H zPE^XGqo3-l5`Csq`=@%E3N17`rJ!^yRp02lD-M>sP4{LB(SA2fE-r3ui~+kjR*&^H z6hVql)anGV$|j(?T))n(y^p&XLm;9I-1hZeX_J=1;0n)5W56o~&gHBd@_#qHp8v1$ z3_S*7v++FIXQg-(ihQlbW_F`=HikOXdW@r#Vh|aydakELWnzaEkV|as<@s##=IoJ=L?6++S?t?!P`<{eVeF{rma>OZt@Zw$3*6J_x?vXforfN?$?}fi+pKdfPF$>%y z(|a|f-~vc6A~P}*jBQKIrJZ=+Wl;2(nMx3+d#h+*t3U20B;MfdS53x`rPnKQ;|?F7T?|A0MmFAdK}>A$ohc5WUqG zqPLm+7{res2I27{Ki2Z&xBSQ*6d!9&ypzcV&U^H`d}lB9&5w=H&>VZ2;t~und@vfO z@#ByDSj><4C3sZw<1Kz{;DTj^z&x7#OI6m8{#Rs6Vt3&xjuFH_E6RILv=f7WPJ$oUP0 z7x{+rcQxqkSL_0c?1Gkg7^(szORcK1zVLAqSDP#Q!f?$Y1+puq?}DFTx;W-`nI-C# zo#tPBDtd=`uY6^LzPI!|=~(^bGaib0$Dhg4irwnlboz0UkwMw%dbX$ag6u{cUx;gB z;t`DVO5NH8x&l>^LQ(ej-H@*h@lINtJV$P+4SD(iwIWYX$Iku;8qf86>@(EV-S%a? zjq{T#g;1h17CDAG_^C{poaGkS?>ATs7y?S##!4zdU$dt8YaIH;#vF zVn6V^m~;E;`54x47thb9(CbbkWV9lWz7B&*X3 zXpGh{Ov~ra3)JdgX$NB;#M;r(hY2d?!+dg?)zOE^B&+^%c%)2xm_Xn1iwvSsL+x%< z^`jG(xQ7b=$9XE%&7X*X0Ica*cN+z=+Py1qdxZXD78Cp&u)F?a7Lm9x1c}#zky?G! zyd7rCQKvNK_+aGuIv9EG4Mv_v1ITk?97S}?^II_TTopi`cY^D)Lqeh7YzYz4KMS=Y zxr19rYJD0;YEZY|)xBGpIW(17q4zqnHZZHU1FJ~2jL@QpbuIFZVU<|{4DG}|=VLEx z6|}Ahu}}`esi%wWr(z+%Mh*dn=RwC7HzfdTyEzT>jC?oTB@>O^p3?@2-3Fl3+UZVV zVBX?u<}ICf`NCOaXI;63O5X^;S(t6uw0i?a7$40jU=qFxj^hf7$8q6h$~JZyBFEml z4w?<3qs@)W5OHmJ$|$6j&l`)c&41Mj=r3KJ*uyeO3KM07JI#_Ip9z+SmQDATP5N zEQ*R$jGIBD#zUp%;AVngV=GQbM1?7Zde6c){XC+59NQJ7U{}2%Hk+zG66l^LN2Rd~ z)H(@!Lx(4!5LC?(#2()yw~Mirsx`BpI_r4gG0YX8tzlh8(6dhC6rTge+ty`h8kWo; zy~dtTO&>c3z4VD*K&^Ed2DMi>d3+nGcWyQIz-rgwV-nHJNI~>2#s(j#m5Rq)!DD`T zXR>!AY}Nj{Ifd$Wn>`p!rd6$G4+T`*2}2dAmScKnY@$*2K=tKFyIgJ~z2ST-n~E=h z_E&elHAa1SuC+H+VLnj=@y;?X@_Eu>)4o6&wHjt8_wd|I#4TpBXIfV~bW_K-`w53q zBo9!z7nc)WJPaa4A`FtKpGF%eAZ4KGN0S43eLX(f#1I<5rN~1M_5_j)DvVpl#`=A z8ezqPSofr6ctI?;CelGl3dKT_0lOS{w!nu8OBbNl8YnJee%IF6Vtyys_2oIlOwaqD zs9f_nW}m1;;c3`u&-8PK$z;`(N9{kw<{iA%f(Q&ic+0$n6pwYBT<&!9gezQ~N`pgY9JEFgz!Epo5!60D!1cUyEKd)B2(7hXld8Q23W@(e28 zf>6+kya1_B^}%jcei56Hvb2nOV!X`2-n`<3ObbMFRsKqiuSxfcE|83DhEA}G`6Agk z9uW;_SFd_Yx9T%JB-d$=U!c731v`2!;!GDEv~igs7_^#iwb;-e5gS{G#NZwkADyWx zvJ14S9C?oSQ{{=9dq4{`EJ`R_yZuK`9Gv{bK9&QF>lVp{{95Xlq>5QVQRr6 zev`~}sDxyXn(dqOG`H8y0m%k(b5|X8rpt!gaLfoV%e}L?l zVR6mejSvuvha@Qq9LgR=nTBOC(&sH*cGcoBOBS6;-=Ld)lPOQ+LqiC9MAU&{G&x)CAF|y2yprUdXHI^9J;>MAnYLbQHa8fNf z6esZ%j>cyiwdW&{DG^IS?8%}g-M5+A4r=$Yr;9?9d~4n4gXajK&_~+6;!~sAQNAWG z>KO_8qEdr_)KHBdYv12Qtrx&_Zc6i|(j^=0paN-kk}X6(7ikZ3m}b2AcNxeHselG_ z;^oPvo==;2`Bub78aE+C2ol=wm-=XVWdZ!647}G9#OIxPvUL@}2#tHYjT)b@>Lo>k zB7N=KDe{oDRo<>`pY>;IX|a}i5#H!7OA6O{5#C5Q)J4<3N?jDrqsV#4*$~9}92EVB z*ZywLp&Ieqf1#R(tR>X6*}8^8Pa@D0((Mf%FFY<~xyNgK(OO9@)!Jl**$urGdnn-E zwZQHW_{Ik4M!_o_cnVg*y6Zsp(uPsn6;5AT`J7#rKv@klAwp^wMEKA)*DiPuI{WR; zqwoh82_Sp5Q!nA|;MLA-d7t(t94yRCXRB(w+^YPpAVOx$ha?~$l zjIo{MerkOcmcb*hnlC_#j%psWnVsVBtxY3OGSro|U> zU=%T|ZT+ki3%bAFFwgF*qH}G_hj|(F>|FRr53aQqqI)>tFSR|>H9>je-B2i*5X-t) zJ<92)ibptUY;)+Uc7n4XbNZLRh`_{V`j`J#u>PRBwf@uJPlf;KKi5mTdGa2kGj$ze z4V3p98-ihr_5}7YxeF46XR~-EahpX~sP_V5W`p!RaViM-zaG$b!SRws1uZ%l$W%Z# zc$WWwHv)r2A#iuq7JKdoGn(-$id>6K8dln6GE60JM^+1@Jf^^N6$OTOztQkv&QkBw z?DS`=Aus!#6smnyM-Y&&3`Trg$baa>{9n{ufQP(r;_EN^4KHb_zga1{A&8I-exFE!qjmiXVL(@T<*p zE!^y!(%bk+pjdRA1i?B^oRA@s6c59cLaUo%-oo&o{pobkFa809?z_>lV~|4<3VooH zo=z)2)%$x3je5xT;B*nz$P`G#V9}&h%SF5xwDb)5fvN2{nX-a5^m@Z)Jlw^&l|ZJsBd2D%U8lkoI?Pa4tg*lE%7_|k z5g4vpZI1C2&neU1XLgramz{IjVyOT0LcJBF>NnBT{UeZvC1~@90puBRHcp((YMA3o zQawHIRJ^dK=c0;}S*q$Efx|G0pmKThj)W6jmytt9inSoM z?ABsP_5w=JB>M*#j)xW^VGA8kqP9<l^5)bnPHPo0EtzFE) zY35IklM3Yh8a84-IZy(EFCwJO9Qc|AG)JN@K@aD_*3B}Pq0FY#t6|_X*joeLIW*s> zP&m^q8Xd}mAM*J;Z92blfb{2)=Lgim`;{OoDf~UWJDjS$?K}M{9PHKbe0csYM&fR3 zUtx^l?Cf)?dL`1_kC-e^?$8?qcj9hzr-4?XXv zn71tSbKG0TEbk`~!jk~M@Hp!-$hC6nH79<3k3OXBYu-I`n3r!RgTO zrudB92KY6FBaTf*$i$qa+e??tyJErhk)*|ww3z-|F?6{9){xzfr!5pa>a-;?9u{zb zb@EKupz>tG>cLu1HEpoAQ^Pt2XxQ6Y0UyjHfy0>~L_Q}ez9i$6i0CANJ2^qHE;Gfu zmvO{mKV%SuA2Q_7#$MV8F-uV<7mXCjcW0!U`e^6Kt_-N@ef95B-RkLs-S+8O9I6I} zqst3hyR|dM(4NuAHUpD3FEIX~47-x&nkJ-3wPc}a@<~#ZlsH+Y!k_vJU_DQ_)q)w;GNe7f zsa4>_Rx0eN4UkQ6z%&)%cLj@Anys>GJ03Roi5PVCDe1Jj%I-qfPqy~ePwB>l`8jz2bo3Do^1^ZTwQ;q)z%$__Gt+_oV92 z@%yCH_AO<8t)Ui)#I`foKEqd+?`-B&jQH5>N z%9934mi?DkPPU5;&eqkub>`7dxb%@Z@|9CW{x6+As^tskZe06Q%?kC(RC9f2u^rm$ z{K%ZgmS9SOdQ791AhHIkKJX6~%W&a&MlQ7sg$BLq&J6f^c>Baj{Kk*B50eU|)o44^ zIx}tpBM3ayDvR5}F)C&Zdz6B;dk2DILHx!AwkzUkj7A4dhuZp>6R2gp;V7W>m^Ztt z-k4zZ^xSvVJGF3XeR@E(Pd5L=`iV{lnh_9|y%?vUdL>F&{>S*cDEgRvmQ+89yn!{suhC6HCKmn9p zhxiP~8ksGWclzTbavr!~eL2prphw@-2D&Ym4{Huqzl#VAAL-7Tfh4I6>T@>yHd5)$ z&;1gq>p-#j#$^g+a0#_#ICM z6;HIX_(kGaUL!`7vD;WR{lSp9Uxl~&kvkyh5bbl#J6J8j#;PDzNSGFVggIhD#aGZv zP*A}h=Kd7b$~=Bcp{PI1RfH~ zbM-St3m3pzI0MfJ6Xe}vx%!1-e}Q$Om|hI1c7Q(JyVQ3LvY+L5p!K6Q({q6%MTQ<2 zt@U)9CSwnd);6)Dbei-c0N-2z-0x$@EW8e9Ia~P72}=s&^wE6h&OlBiuNTkBq35Ps z8&%KG%-R&XcDb<~D{9c=U+aEaI2v!xduGGEb~&f!&|khruqyG+C$LI6DfB#Pkho^+T_gI=-Md)Lr~b#QRo8HjB{+`zL2q;{Alel8?-)sM|~ckham+Xv*zn5U?A zKYk~`X%oaK;b4&sp}@K?mPv7cmeV)+YcNofNiotp*w_aTY4z#Il>QVQMH>8JvTine zDWJUug?^1xJhm&Oa)PW>)n{6dL%}`5KStoVx}bPiKW1mNeB)2r8Ru{N#-C<1q)2)? zE3_H#7jar}wU*&o4O~WIGzd$wf(3D+t^yh)17?uD2RWy$w_qiCraW{o?QQ*!iP@9jKpK@qIr`Ovd_G{-NlPfaU W_$^n-aOW?E+ijAr7QL>0rTss~^6IDn diff --git a/src/main/resources/creativeitems.json b/src/main/resources/creativeitems.json index 3b95fc894ac..95896cedd6c 100644 --- a/src/main/resources/creativeitems.json +++ b/src/main/resources/creativeitems.json @@ -916,52 +916,52 @@ "blockState": "minecraft:carpet;color=pink" }, { - "blockState": "minecraft:concretepowder" + "blockState": "minecraft:concrete_powder" }, { - "blockState": "minecraft:concretepowder;color=silver" + "blockState": "minecraft:concrete_powder;color=silver" }, { - "blockState": "minecraft:concretepowder;color=gray" + "blockState": "minecraft:concrete_powder;color=gray" }, { - "blockState": "minecraft:concretepowder;color=black" + "blockState": "minecraft:concrete_powder;color=black" }, { - "blockState": "minecraft:concretepowder;color=brown" + "blockState": "minecraft:concrete_powder;color=brown" }, { - "blockState": "minecraft:concretepowder;color=red" + "blockState": "minecraft:concrete_powder;color=red" }, { - "blockState": "minecraft:concretepowder;color=orange" + "blockState": "minecraft:concrete_powder;color=orange" }, { - "blockState": "minecraft:concretepowder;color=yellow" + "blockState": "minecraft:concrete_powder;color=yellow" }, { - "blockState": "minecraft:concretepowder;color=lime" + "blockState": "minecraft:concrete_powder;color=lime" }, { - "blockState": "minecraft:concretepowder;color=green" + "blockState": "minecraft:concrete_powder;color=green" }, { - "blockState": "minecraft:concretepowder;color=cyan" + "blockState": "minecraft:concrete_powder;color=cyan" }, { - "blockState": "minecraft:concretepowder;color=light_blue" + "blockState": "minecraft:concrete_powder;color=light_blue" }, { - "blockState": "minecraft:concretepowder;color=blue" + "blockState": "minecraft:concrete_powder;color=blue" }, { - "blockState": "minecraft:concretepowder;color=purple" + "blockState": "minecraft:concrete_powder;color=purple" }, { - "blockState": "minecraft:concretepowder;color=magenta" + "blockState": "minecraft:concrete_powder;color=magenta" }, { - "blockState": "minecraft:concretepowder;color=pink" + "blockState": "minecraft:concrete_powder;color=pink" }, { "blockState": "minecraft:concrete" @@ -3217,7 +3217,7 @@ "blockState": "minecraft:purple_candle;candles=0;lit=0" }, { - "blockState": "minecraft:blue_candle;candles=0;lit=0" + "blockState": "minecraft:blue_candle" }, { "blockState": "minecraft:brown_candle;candles=0;lit=0" @@ -3418,7 +3418,7 @@ "blockState": "minecraft:redstone_lamp" }, { - "blockState": "minecraft:sealantern" + "blockState": "minecraft:sea_lantern" }, { "id": "minecraft:oak_sign" diff --git a/src/main/resources/entity_identifiers.dat b/src/main/resources/entity_identifiers.dat index 6208ba7fcab8ab610bda976cd7634463e4c4ba15..dcea76727506e77639172a9fcbcd90b048165b78 100644 GIT binary patch delta 672 zcmXX@OK1~O6m^oBOp=$$%w*EZrzu*YtD=)n$27mT`PHh`m58_z+_-U(ilqh3sxDlW zB*%TXF2q^{3tg0gy3mcT3T_Ingo0SyTfFbq)p_sUbI(2Ryu-?2WiW-4Ocg(~K1R7V zzS<53aSJQCN%Ue4yzyt$7ue0_@i!vyetd<|&#s|L_hQaNKB?ivAx@@)e#S$I^knUu zB5<1av70WVmu_L8Sm>k+*rz#_>QeV}Dv#AvhxuNr$++bT{BaxDa+h$&y+$4c&bwuJ zDS_`}HAWCFkJWLSyoJ4FhdCR`GW=wlymax_Szz9(vk2eu@jJ1Iy@Zd)i3X+?*IS* delta 693 zcmXX^O>0w85H%k!Ni#3WOPVHW(l)VJ5K5Y_Ca*6^tu?h;D~M2VS1p38_)%PBp%njt zeLZ!dpv^|;MmIrm;lho$66z-6$|8crMGBjUnHb@qzl7bG-uWCEb>P(y;eE7>_8`F=*v3w%h7Y=i?*o_dI#v{ZJyH-{QkWo2 zMJpJI6IMc#!hZ`FMfe)yb2lNM%45q(=o*uDM#ENW*3LvQY)qi-C;S?$iAp+TO7^>C zfwRxxMoPzzU{C3((Nk)N#+AY{yWR{}Mf63mBnFk#SfVb4SAtpL77fC1(Bj`&@;>qq zz6L5vVkF)YYAvv!p3mYBdMtICiF*!&!qXT{USbn7V(K58T8^E?ZtAL-Z6zzLN~jMt z|5s|rI~FN%3s2jRHSB2ps0Yq%1nT&x*YHR`j~RWIl?l3D!dqHoj_{DGIP&N)8I|9^ zev8|30cp36yZ!oxU>15^nQ7%XgK(=c{rV!b{&24~cNoXNpeRXJL)` zFW$xm!xL{oQm=SxjPnxu$z$TaX944$i+l+C+O))MYto`6ZO+aZIHl!fxQa+pfdT}#arX5s+3h%PP}DZb9TPBWKCy_myYnpk+-jxr8&y2 updateItemEntry0(Map itemEntry) { private void init() { Block.init(); Enchantment.init(); - Item.init(); Potion.init(); + Item.init(); } } diff --git a/src/test/java/org/powernukkit/updater/AllResourcesDownloader.java b/src/test/java/org/powernukkit/updater/AllResourcesDownloader.java index f9e604abe38..c8154046e60 100644 --- a/src/test/java/org/powernukkit/updater/AllResourcesDownloader.java +++ b/src/test/java/org/powernukkit/updater/AllResourcesDownloader.java @@ -1,19 +1,40 @@ package org.powernukkit.updater; +import cn.nukkit.nbt.NBTIO; +import cn.nukkit.nbt.tag.CompoundTag; +import cn.nukkit.nbt.tag.ListTag; import lombok.SneakyThrows; +import org.junit.jupiter.api.Assertions; import java.io.*; import java.net.URL; import java.net.URLConnection; +import java.nio.ByteOrder; import java.nio.file.Files; +import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.StandardCopyOption; +import java.util.Comparator; +import java.util.List; +import java.util.Optional; /** * @author joserobjr * @since 2021-10-24 */ public class AllResourcesDownloader { + private static final String CANONICAL_BLOCK_STATES_PATH = "src/main/resources/canonical_block_states.nbt"; + private static final String CANONICAL_BLOCK_STATES_URL = + "https://github.com/pmmp/BedrockData/raw/master/canonical_block_states.nbt" + //"https://github.com/CloudburstMC/Data/raw/master/block_palette.nbt" + ; + + @SuppressWarnings("OptionalUsedAsFieldOrParameterType") + private static final Optional USE_NUKKIT_RUNTIME_BLOCK_STATES_DAT = + //Optional.of("https://github.com/CloudburstMC/Nukkit/raw/v1.18.30/src/main/resources/runtime_block_states.dat") + Optional.empty() + ; + public static void main(String[] args) { /* Pre-requisites: @@ -34,12 +55,36 @@ private void execute(@SuppressWarnings("SameParameterValue") String pathProxyPas } private void downloadResources() { - download("https://github.com/pmmp/BedrockData/raw/master/canonical_block_states.nbt", - "src/main/resources/canonical_block_states.nbt"); + createCanonicalBlockStatesNbt(); download("https://github.com/pmmp/BedrockData/raw/master/required_item_list.json", "src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json"); } + @SneakyThrows + private void createCanonicalBlockStatesNbt() { + if (!USE_NUKKIT_RUNTIME_BLOCK_STATES_DAT.isPresent()) { + download(CANONICAL_BLOCK_STATES_URL, CANONICAL_BLOCK_STATES_PATH); + return; + } + Path runtimeBlockStatesFile = Files.createTempFile("runtime_block_states", ".dat"); + try { + download(USE_NUKKIT_RUNTIME_BLOCK_STATES_DAT.get(), runtimeBlockStatesFile.toAbsolutePath().toString()); + try (InputStream fileInputStream = Files.newInputStream(runtimeBlockStatesFile); + BufferedInputStream inputStream = new BufferedInputStream(fileInputStream) + ) { + //noinspection unchecked + List tags = ((ListTag) NBTIO.readTag(inputStream, ByteOrder.BIG_ENDIAN, false)).getAll(); + tags.forEach(tag-> tag.remove("id").remove("data")); + tags.sort(Comparator.comparingInt(tag -> tag.getInt("runtimeId"))); + Assertions.assertEquals(tags.size() - 1, tags.get(tags.size() - 1).getInt("runtimeId")); + System.out.println(tags); + throw new InternalError(); // Aborting this idea. Cloudburst Nukkit's dat file lacks A LOT of states. + } + } finally { + Files.deleteIfExists(runtimeBlockStatesFile); + } + } + private void copyProxyPassResources(String pathProxyPassData) { copy(pathProxyPassData, "biome_definitions.dat", "src/main/resources/biome_definitions.dat"); copy(pathProxyPassData, "entity_identifiers.dat", "src/main/resources/entity_identifiers.dat"); diff --git a/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json b/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json index d320382625d..180f5a3a68c 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json +++ b/src/test/resources/org/powernukkit/updater/dumps/pmmp/required_item_list.json @@ -7,6 +7,10 @@ "runtime_id": -140, "component_based": false }, + "minecraft:acacia_chest_boat": { + "runtime_id": 637, + "component_based": false + }, "minecraft:acacia_door": { "runtime_id": 556, "component_based": false @@ -52,7 +56,7 @@ "component_based": false }, "minecraft:allay_spawn_egg": { - "runtime_id": 631, + "runtime_id": 630, "component_based": false }, "minecraft:allow": { @@ -68,7 +72,7 @@ "component_based": false }, "minecraft:amethyst_shard": { - "runtime_id": 625, + "runtime_id": 624, "component_based": false }, "minecraft:ancient_debris": { @@ -136,7 +140,7 @@ "component_based": false }, "minecraft:banner_pattern": { - "runtime_id": 635, + "runtime_id": 642, "component_based": false }, "minecraft:barrel": { @@ -211,6 +215,10 @@ "runtime_id": -141, "component_based": false }, + "minecraft:birch_chest_boat": { + "runtime_id": 634, + "component_based": false + }, "minecraft:birch_door": { "runtime_id": 554, "component_based": false @@ -320,7 +328,7 @@ "component_based": false }, "minecraft:boat": { - "runtime_id": 633, + "runtime_id": 640, "component_based": false }, "minecraft:bone": { @@ -367,10 +375,6 @@ "runtime_id": 431, "component_based": false }, - "minecraft:brewingstandblock": { - "runtime_id": 117, - "component_based": false - }, "minecraft:brick": { "runtime_id": 383, "component_based": false @@ -535,6 +539,10 @@ "runtime_id": 54, "component_based": false }, + "minecraft:chest_boat": { + "runtime_id": 639, + "component_based": false + }, "minecraft:chest_minecart": { "runtime_id": 389, "component_based": false @@ -911,6 +919,10 @@ "runtime_id": -142, "component_based": false }, + "minecraft:dark_oak_chest_boat": { + "runtime_id": 638, + "component_based": false + }, "minecraft:dark_oak_door": { "runtime_id": 557, "component_based": false @@ -1176,7 +1188,7 @@ "component_based": false }, "minecraft:dye": { - "runtime_id": 634, + "runtime_id": 641, "component_based": false }, "minecraft:egg": { @@ -1704,7 +1716,7 @@ "component_based": false }, "minecraft:end_crystal": { - "runtime_id": 637, + "runtime_id": 644, "component_based": false }, "minecraft:end_gateway": { @@ -1867,12 +1879,12 @@ "runtime_id": 513, "component_based": false }, - "minecraft:frog_egg": { + "minecraft:frog_spawn": { "runtime_id": -468, "component_based": false }, "minecraft:frog_spawn_egg": { - "runtime_id": 628, + "runtime_id": 627, "component_based": false }, "minecraft:frosted_ice": { @@ -1916,7 +1928,7 @@ "component_based": false }, "minecraft:glow_berries": { - "runtime_id": 638, + "runtime_id": 645, "component_based": false }, "minecraft:glow_frame": { @@ -1951,10 +1963,6 @@ "runtime_id": 394, "component_based": false }, - "minecraft:goat_horn": { - "runtime_id": 624, - "component_based": false - }, "minecraft:goat_spawn_egg": { "runtime_id": 501, "component_based": false @@ -2183,7 +2191,7 @@ "runtime_id": 413, "component_based": false }, - "minecraft:invisiblebedrock": { + "minecraft:invisible_bedrock": { "runtime_id": 95, "component_based": false }, @@ -2271,6 +2279,10 @@ "runtime_id": 194, "component_based": false }, + "minecraft:item.brewing_stand": { + "runtime_id": 117, + "component_based": false + }, "minecraft:item.cake": { "runtime_id": 92, "component_based": false @@ -2379,6 +2391,10 @@ "runtime_id": -143, "component_based": false }, + "minecraft:jungle_chest_boat": { + "runtime_id": 635, + "component_based": false + }, "minecraft:jungle_door": { "runtime_id": 555, "component_based": false @@ -2635,6 +2651,18 @@ "runtime_id": 455, "component_based": false }, + "minecraft:mangrove_leaves": { + "runtime_id": -472, + "component_based": false + }, + "minecraft:mangrove_propagule": { + "runtime_id": -474, + "component_based": false + }, + "minecraft:mangrove_propagule_hanging": { + "runtime_id": -476, + "component_based": false + }, "minecraft:medicine": { "runtime_id": 599, "component_based": false @@ -2703,10 +2731,34 @@ "runtime_id": -175, "component_based": false }, - "minecraft:movingblock": { + "minecraft:moving_block": { "runtime_id": 250, "component_based": false }, + "minecraft:mud": { + "runtime_id": -473, + "component_based": false + }, + "minecraft:mud_brick_double_slab": { + "runtime_id": -479, + "component_based": false + }, + "minecraft:mud_brick_slab": { + "runtime_id": -478, + "component_based": false + }, + "minecraft:mud_brick_stairs": { + "runtime_id": -480, + "component_based": false + }, + "minecraft:mud_brick_wall": { + "runtime_id": -481, + "component_based": false + }, + "minecraft:mud_bricks": { + "runtime_id": -475, + "component_based": false + }, "minecraft:mule_spawn_egg": { "runtime_id": 466, "component_based": false @@ -2748,7 +2800,7 @@ "component_based": false }, "minecraft:music_disc_otherside": { - "runtime_id": 627, + "runtime_id": 626, "component_based": false }, "minecraft:music_disc_pigstep": { @@ -2779,14 +2831,6 @@ "runtime_id": 110, "component_based": false }, - "minecraft:mysterious_frame": { - "runtime_id": -466, - "component_based": false - }, - "minecraft:mysterious_frame_slot": { - "runtime_id": -467, - "component_based": false - }, "minecraft:name_tag": { "runtime_id": 548, "component_based": false @@ -2903,6 +2947,10 @@ "runtime_id": 375, "component_based": false }, + "minecraft:oak_chest_boat": { + "runtime_id": 633, + "component_based": false + }, "minecraft:oak_sign": { "runtime_id": 358, "component_based": false @@ -2967,6 +3015,10 @@ "runtime_id": 174, "component_based": false }, + "minecraft:packed_mud": { + "runtime_id": -477, + "component_based": false + }, "minecraft:painting": { "runtime_id": 357, "component_based": false @@ -3035,7 +3087,7 @@ "runtime_id": 33, "component_based": false }, - "minecraft:pistonarmcollision": { + "minecraft:piston_arm_collision": { "runtime_id": 34, "component_based": false }, @@ -3415,6 +3467,10 @@ "runtime_id": 55, "component_based": false }, + "minecraft:reinforced_deepslate": { + "runtime_id": -466, + "component_based": false + }, "minecraft:repeater": { "runtime_id": 419, "component_based": false @@ -3495,6 +3551,10 @@ "runtime_id": 572, "component_based": false }, + "minecraft:sea_lantern": { + "runtime_id": 169, + "component_based": false + }, "minecraft:sea_pickle": { "runtime_id": -156, "component_based": false @@ -3503,10 +3563,6 @@ "runtime_id": -130, "component_based": false }, - "minecraft:sealantern": { - "runtime_id": 169, - "component_based": false - }, "minecraft:shears": { "runtime_id": 421, "component_based": false @@ -3648,7 +3704,7 @@ "component_based": false }, "minecraft:spawn_egg": { - "runtime_id": 636, + "runtime_id": 643, "component_based": false }, "minecraft:spider_eye": { @@ -3679,6 +3735,10 @@ "runtime_id": -144, "component_based": false }, + "minecraft:spruce_chest_boat": { + "runtime_id": 636, + "component_based": false + }, "minecraft:spruce_door": { "runtime_id": 553, "component_based": false @@ -3712,7 +3772,7 @@ "component_based": false }, "minecraft:spyglass": { - "runtime_id": 626, + "runtime_id": 625, "component_based": false }, "minecraft:squid_spawn_egg": { @@ -3747,7 +3807,7 @@ "runtime_id": 29, "component_based": false }, - "minecraft:stickypistonarmcollision": { + "minecraft:sticky_piston_arm_collision": { "runtime_id": -217, "component_based": false }, @@ -3884,11 +3944,11 @@ "component_based": false }, "minecraft:tadpole_bucket": { - "runtime_id": 630, + "runtime_id": 629, "component_based": false }, "minecraft:tadpole_spawn_egg": { - "runtime_id": 629, + "runtime_id": 628, "component_based": false }, "minecraft:tallgrass": { @@ -3931,7 +3991,7 @@ "runtime_id": 546, "component_based": false }, - "minecraft:tripwire": { + "minecraft:trip_wire": { "runtime_id": 132, "component_based": false }, @@ -4027,6 +4087,10 @@ "runtime_id": 492, "component_based": false }, + "minecraft:warden_spawn_egg": { + "runtime_id": 631, + "component_based": false + }, "minecraft:warped_button": { "runtime_id": -261, "component_based": false diff --git a/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json index dadabf91fcb..3cfb5cfc1c8 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json +++ b/src/test/resources/org/powernukkit/updater/dumps/proxypass/creativeitems.json @@ -2,379 +2,379 @@ "items" : [ { "id" : "minecraft:planks", - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5995 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5996 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5802 + "blockRuntimeId" : 5997 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5803 + "blockRuntimeId" : 5998 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5804 + "blockRuntimeId" : 5999 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5805 + "blockRuntimeId" : 6000 }, { "id" : "minecraft:crimson_planks", - "blockRuntimeId" : 3840 + "blockRuntimeId" : 4806 }, { "id" : "minecraft:warped_planks", - "blockRuntimeId" : 7596 + "blockRuntimeId" : 928 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1319 + "blockRuntimeId" : 1187 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1320 + "blockRuntimeId" : 1188 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1321 + "blockRuntimeId" : 1189 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1322 + "blockRuntimeId" : 1190 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1323 + "blockRuntimeId" : 1191 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1324 + "blockRuntimeId" : 1192 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1331 + "blockRuntimeId" : 1199 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1326 + "blockRuntimeId" : 1194 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1327 + "blockRuntimeId" : 1195 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1325 + "blockRuntimeId" : 1193 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1328 + "blockRuntimeId" : 1196 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1332 + "blockRuntimeId" : 1200 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1329 + "blockRuntimeId" : 1197 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1330 + "blockRuntimeId" : 1198 }, { "id" : "minecraft:blackstone_wall", - "blockRuntimeId" : 507 + "blockRuntimeId" : 3919 }, { "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6044 + "blockRuntimeId" : 6640 }, { "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5841 + "blockRuntimeId" : 978 }, { "id" : "minecraft:cobbled_deepslate_wall", - "blockRuntimeId" : 1156 + "blockRuntimeId" : 8024 }, { "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4298 + "blockRuntimeId" : 5027 }, { "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6219 + "blockRuntimeId" : 7759 }, { "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4115 + "blockRuntimeId" : 437 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4774 + "blockRuntimeId" : 7306 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4775 + "blockRuntimeId" : 7307 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4776 + "blockRuntimeId" : 7308 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4777 + "blockRuntimeId" : 7309 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4778 + "blockRuntimeId" : 7310 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4779 + "blockRuntimeId" : 7311 }, { "id" : "minecraft:nether_brick_fence", - "blockRuntimeId" : 5690 + "blockRuntimeId" : 4238 }, { "id" : "minecraft:crimson_fence", - "blockRuntimeId" : 3818 + "blockRuntimeId" : 7938 }, { "id" : "minecraft:warped_fence", - "blockRuntimeId" : 7574 + "blockRuntimeId" : 5777 }, { "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4780 + "blockRuntimeId" : 76 }, { "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 7007 + "blockRuntimeId" : 6475 }, { "id" : "minecraft:birch_fence_gate", - "blockRuntimeId" : 400 + "blockRuntimeId" : 3782 }, { "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5254 + "blockRuntimeId" : 5315 }, { "id" : "minecraft:acacia_fence_gate", - "blockRuntimeId" : 44 + "blockRuntimeId" : 7528 }, { "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3981 + "blockRuntimeId" : 4156 }, { "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3819 + "blockRuntimeId" : 4617 }, { "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7575 + "blockRuntimeId" : 5349 }, { "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5709 + "blockRuntimeId" : 641 }, { "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7278 + "blockRuntimeId" : 3713 }, { "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5669 + "blockRuntimeId" : 4081 }, { "id" : "minecraft:oak_stairs", - "blockRuntimeId" : 5718 + "blockRuntimeId" : 287 }, { "id" : "minecraft:spruce_stairs", - "blockRuntimeId" : 7039 + "blockRuntimeId" : 128 }, { "id" : "minecraft:birch_stairs", - "blockRuntimeId" : 432 + "blockRuntimeId" : 6957 }, { "id" : "minecraft:jungle_stairs", - "blockRuntimeId" : 5286 + "blockRuntimeId" : 6883 }, { "id" : "minecraft:acacia_stairs", - "blockRuntimeId" : 76 + "blockRuntimeId" : 6123 }, { "id" : "minecraft:dark_oak_stairs", - "blockRuntimeId" : 4013 + "blockRuntimeId" : 5019 }, { "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7184 + "blockRuntimeId" : 939 }, { "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5677 + "blockRuntimeId" : 5807 }, { "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6713 + "blockRuntimeId" : 3592 }, { "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6900 + "blockRuntimeId" : 3632 }, { "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6640 + "blockRuntimeId" : 5300 }, { "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6892 + "blockRuntimeId" : 5496 }, { "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4990 + "blockRuntimeId" : 3542 }, { "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6389 + "blockRuntimeId" : 4139 }, { "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 4476 + "blockRuntimeId" : 4339 }, { "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6381 + "blockRuntimeId" : 6588 }, { "id" : "minecraft:andesite_stairs", - "blockRuntimeId" : 144 + "blockRuntimeId" : 5258 }, { "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5817 + "blockRuntimeId" : 6982 }, { "id" : "minecraft:brick_stairs", - "blockRuntimeId" : 876 + "blockRuntimeId" : 6421 }, { "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5691 + "blockRuntimeId" : 106 }, { "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6628 + "blockRuntimeId" : 6493 }, { "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4720 + "blockRuntimeId" : 6347 }, { "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6562 + "blockRuntimeId" : 4723 }, { "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6884 + "blockRuntimeId" : 7642 }, { "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6540 + "blockRuntimeId" : 7697 }, { "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6452 + "blockRuntimeId" : 7205 }, { "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 4037 + "blockRuntimeId" : 7372 }, { "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6444 + "blockRuntimeId" : 206 }, { "id" : "minecraft:crimson_stairs", - "blockRuntimeId" : 3860 + "blockRuntimeId" : 6245 }, { "id" : "minecraft:warped_stairs", - "blockRuntimeId" : 7616 + "blockRuntimeId" : 3723 }, { "id" : "minecraft:blackstone_stairs", - "blockRuntimeId" : 499 + "blockRuntimeId" : 6973 }, { "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6036 + "blockRuntimeId" : 4245 }, { "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5833 + "blockRuntimeId" : 4425 }, { "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3913 + "blockRuntimeId" : 4528 }, { "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4756 + "blockRuntimeId" : 4519 }, { "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7743 + "blockRuntimeId" : 4253 }, { "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5760 + "blockRuntimeId" : 361 }, { "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7687 + "blockRuntimeId" : 403 }, { "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7701 + "blockRuntimeId" : 3891 }, { "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7729 + "blockRuntimeId" : 6091 }, { "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7715 + "blockRuntimeId" : 5764 }, { "id" : "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId" : 1148 + "blockRuntimeId" : 147 }, { "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4290 + "blockRuntimeId" : 4609 }, { "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6211 + "blockRuntimeId" : 308 }, { "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4107 + "blockRuntimeId" : 7364 }, { "id" : "minecraft:wooden_door" @@ -405,1471 +405,1471 @@ }, { "id" : "minecraft:trapdoor", - "blockRuntimeId" : 7360 + "blockRuntimeId" : 227 }, { "id" : "minecraft:spruce_trapdoor", - "blockRuntimeId" : 7063 + "blockRuntimeId" : 6443 }, { "id" : "minecraft:birch_trapdoor", - "blockRuntimeId" : 456 + "blockRuntimeId" : 6524 }, { "id" : "minecraft:jungle_trapdoor", - "blockRuntimeId" : 5310 + "blockRuntimeId" : 5331 }, { "id" : "minecraft:acacia_trapdoor", - "blockRuntimeId" : 100 + "blockRuntimeId" : 5539 }, { "id" : "minecraft:dark_oak_trapdoor", - "blockRuntimeId" : 4021 + "blockRuntimeId" : 7444 }, { "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5169 + "blockRuntimeId" : 335 }, { "id" : "minecraft:crimson_trapdoor", - "blockRuntimeId" : 3887 + "blockRuntimeId" : 4281 }, { "id" : "minecraft:warped_trapdoor", - "blockRuntimeId" : 7643 + "blockRuntimeId" : 4689 }, { "id" : "minecraft:iron_bars", - "blockRuntimeId" : 5134 + "blockRuntimeId" : 4757 }, { "id" : "minecraft:glass", - "blockRuntimeId" : 4884 + "blockRuntimeId" : 6088 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7085 + "blockRuntimeId" : 1140 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7093 + "blockRuntimeId" : 1148 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7092 + "blockRuntimeId" : 1147 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7100 + "blockRuntimeId" : 1155 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7097 + "blockRuntimeId" : 1152 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7099 + "blockRuntimeId" : 1154 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7086 + "blockRuntimeId" : 1141 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7089 + "blockRuntimeId" : 1144 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7090 + "blockRuntimeId" : 1145 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7098 + "blockRuntimeId" : 1153 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7094 + "blockRuntimeId" : 1149 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7088 + "blockRuntimeId" : 1143 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7096 + "blockRuntimeId" : 1151 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7095 + "blockRuntimeId" : 1150 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7087 + "blockRuntimeId" : 1142 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7091 + "blockRuntimeId" : 1146 }, { "id" : "minecraft:tinted_glass", - "blockRuntimeId" : 7349 + "blockRuntimeId" : 5899 }, { "id" : "minecraft:glass_pane", - "blockRuntimeId" : 4885 + "blockRuntimeId" : 5189 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7101 + "blockRuntimeId" : 4808 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7109 + "blockRuntimeId" : 4816 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7108 + "blockRuntimeId" : 4815 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7116 + "blockRuntimeId" : 4823 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7113 + "blockRuntimeId" : 4820 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7115 + "blockRuntimeId" : 4822 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7102 + "blockRuntimeId" : 4809 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7105 + "blockRuntimeId" : 4812 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7106 + "blockRuntimeId" : 4813 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7114 + "blockRuntimeId" : 4821 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7110 + "blockRuntimeId" : 4817 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7104 + "blockRuntimeId" : 4811 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7112 + "blockRuntimeId" : 4819 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7111 + "blockRuntimeId" : 4818 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7103 + "blockRuntimeId" : 4810 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7107 + "blockRuntimeId" : 4814 }, { "id" : "minecraft:ladder", - "blockRuntimeId" : 5358 + "blockRuntimeId" : 8204 }, { "id" : "minecraft:scaffolding", - "blockRuntimeId" : 6733 + "blockRuntimeId" : 3576 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7220 + "blockRuntimeId" : 249 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7270 + "blockRuntimeId" : 6632 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7223 + "blockRuntimeId" : 252 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7241 + "blockRuntimeId" : 6603 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7901 + "blockRuntimeId" : 5220 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7902 + "blockRuntimeId" : 5221 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7903 + "blockRuntimeId" : 5222 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7904 + "blockRuntimeId" : 5223 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7905 + "blockRuntimeId" : 5224 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7906 + "blockRuntimeId" : 5225 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7225 + "blockRuntimeId" : 254 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7268 + "blockRuntimeId" : 6630 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7221 + "blockRuntimeId" : 250 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7271 + "blockRuntimeId" : 6633 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7242 + "blockRuntimeId" : 6604 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7236 + "blockRuntimeId" : 6598 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7272 + "blockRuntimeId" : 6634 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7253 + "blockRuntimeId" : 6615 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7258 + "blockRuntimeId" : 6620 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7259 + "blockRuntimeId" : 6621 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7256 + "blockRuntimeId" : 6618 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7257 + "blockRuntimeId" : 6619 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7255 + "blockRuntimeId" : 6617 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7254 + "blockRuntimeId" : 6616 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7224 + "blockRuntimeId" : 253 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7227 + "blockRuntimeId" : 256 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7243 + "blockRuntimeId" : 6605 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7252 + "blockRuntimeId" : 6614 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7226 + "blockRuntimeId" : 255 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7269 + "blockRuntimeId" : 6631 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7237 + "blockRuntimeId" : 6599 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7238 + "blockRuntimeId" : 6600 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7239 + "blockRuntimeId" : 6601 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7240 + "blockRuntimeId" : 6602 }, { "id" : "minecraft:crimson_slab", - "blockRuntimeId" : 3858 + "blockRuntimeId" : 5824 }, { "id" : "minecraft:warped_slab", - "blockRuntimeId" : 7614 + "blockRuntimeId" : 6375 }, { "id" : "minecraft:blackstone_slab", - "blockRuntimeId" : 497 + "blockRuntimeId" : 918 }, { "id" : "minecraft:polished_blackstone_slab", - "blockRuntimeId" : 6034 + "blockRuntimeId" : 5942 }, { "id" : "minecraft:polished_blackstone_brick_slab", - "blockRuntimeId" : 5831 + "blockRuntimeId" : 4175 }, { "id" : "minecraft:cut_copper_slab", - "blockRuntimeId" : 3911 + "blockRuntimeId" : 5191 }, { "id" : "minecraft:exposed_cut_copper_slab", - "blockRuntimeId" : 4754 + "blockRuntimeId" : 6491 }, { "id" : "minecraft:weathered_cut_copper_slab", - "blockRuntimeId" : 7741 + "blockRuntimeId" : 5977 }, { "id" : "minecraft:oxidized_cut_copper_slab", - "blockRuntimeId" : 5758 + "blockRuntimeId" : 5232 }, { "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7685 + "blockRuntimeId" : 7757 }, { "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7699 + "blockRuntimeId" : 247 }, { "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7727 + "blockRuntimeId" : 6436 }, { "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7713 + "blockRuntimeId" : 716 }, { "id" : "minecraft:cobbled_deepslate_slab", - "blockRuntimeId" : 1146 + "blockRuntimeId" : 7252 }, { "id" : "minecraft:polished_deepslate_slab", - "blockRuntimeId" : 6209 + "blockRuntimeId" : 302 }, { "id" : "minecraft:deepslate_tile_slab", - "blockRuntimeId" : 4288 + "blockRuntimeId" : 4239 }, { "id" : "minecraft:deepslate_brick_slab", - "blockRuntimeId" : 4105 + "blockRuntimeId" : 3721 }, { "id" : "minecraft:brick_block", - "blockRuntimeId" : 875 + "blockRuntimeId" : 4721 }, { "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1130 + "blockRuntimeId" : 7191 }, { "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3769 + "blockRuntimeId" : 4484 }, { "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6560 + "blockRuntimeId" : 6316 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7286 + "blockRuntimeId" : 6438 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7287 + "blockRuntimeId" : 6439 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7288 + "blockRuntimeId" : 6440 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7289 + "blockRuntimeId" : 6441 }, { "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4728 + "blockRuntimeId" : 295 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6443 + "blockRuntimeId" : 6011 }, { "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 6003 + "blockRuntimeId" : 4636 }, { "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3770 + "blockRuntimeId" : 7156 }, { "id" : "minecraft:gilded_blackstone", - "blockRuntimeId" : 4883 + "blockRuntimeId" : 4518 }, { "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 + "blockRuntimeId" : 5018 }, { "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4460 + "blockRuntimeId" : 4513 }, { "id" : "minecraft:cracked_deepslate_tiles", - "blockRuntimeId" : 3768 + "blockRuntimeId" : 4149 }, { "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4277 + "blockRuntimeId" : 5414 }, { "id" : "minecraft:cracked_deepslate_bricks", - "blockRuntimeId" : 3767 + "blockRuntimeId" : 5314 }, { "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1129 + "blockRuntimeId" : 5190 }, { "id" : "minecraft:cobblestone", - "blockRuntimeId" : 1318 + "blockRuntimeId" : 3620 }, { "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5668 + "blockRuntimeId" : 266 }, { "id" : "minecraft:cobbled_deepslate", - "blockRuntimeId" : 1143 + "blockRuntimeId" : 6544 }, { "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6908 + "blockRuntimeId" : 4514 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6709 + "blockRuntimeId" : 3658 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6710 + "blockRuntimeId" : 3659 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6711 + "blockRuntimeId" : 3660 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6712 + "blockRuntimeId" : 3661 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6636 + "blockRuntimeId" : 6471 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6637 + "blockRuntimeId" : 6472 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6638 + "blockRuntimeId" : 6473 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6639 + "blockRuntimeId" : 6474 }, { "id" : "minecraft:coal_block", - "blockRuntimeId" : 1141 + "blockRuntimeId" : 5348 }, { "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 4584 + "blockRuntimeId" : 7921 }, { "id" : "minecraft:gold_block", - "blockRuntimeId" : 4976 + "blockRuntimeId" : 305 }, { "id" : "minecraft:iron_block", - "blockRuntimeId" : 5135 + "blockRuntimeId" : 8203 }, { "id" : "minecraft:copper_block", - "blockRuntimeId" : 3677 + "blockRuntimeId" : 4607 }, { "id" : "minecraft:exposed_copper", - "blockRuntimeId" : 4752 + "blockRuntimeId" : 601 }, { "id" : "minecraft:weathered_copper", - "blockRuntimeId" : 7739 + "blockRuntimeId" : 8188 }, { "id" : "minecraft:oxidized_copper", - "blockRuntimeId" : 5756 + "blockRuntimeId" : 3558 }, { "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7683 + "blockRuntimeId" : 7676 }, { "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7697 + "blockRuntimeId" : 702 }, { "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7725 + "blockRuntimeId" : 715 }, { "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7711 + "blockRuntimeId" : 7484 }, { "id" : "minecraft:cut_copper", - "blockRuntimeId" : 3910 + "blockRuntimeId" : 4645 }, { "id" : "minecraft:exposed_cut_copper", - "blockRuntimeId" : 4753 + "blockRuntimeId" : 6090 }, { "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7740 + "blockRuntimeId" : 7139 }, { "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5757 + "blockRuntimeId" : 5428 }, { "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7684 + "blockRuntimeId" : 7235 }, { "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7698 + "blockRuntimeId" : 3814 }, { "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7726 + "blockRuntimeId" : 4807 }, { "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7712 + "blockRuntimeId" : 214 }, { "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4717 + "blockRuntimeId" : 1164 }, { "id" : "minecraft:diamond_block", - "blockRuntimeId" : 4474 + "blockRuntimeId" : 286 }, { "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5366 + "blockRuntimeId" : 4234 }, { "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6582 + "blockRuntimeId" : 8202 }, { "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6580 + "blockRuntimeId" : 5219 }, { "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6581 + "blockRuntimeId" : 371 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6548 + "blockRuntimeId" : 3701 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6550 + "blockRuntimeId" : 3703 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6549 + "blockRuntimeId" : 3702 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6551 + "blockRuntimeId" : 3704 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6441 + "blockRuntimeId" : 6009 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6442 + "blockRuntimeId" : 6010 }, { "id" : "minecraft:slime", - "blockRuntimeId" : 6861 + "blockRuntimeId" : 4197 }, { "id" : "minecraft:honey_block", - "blockRuntimeId" : 5113 + "blockRuntimeId" : 900 }, { "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5114 + "blockRuntimeId" : 4424 }, { "id" : "minecraft:hay_block", - "blockRuntimeId" : 5085 + "blockRuntimeId" : 703 }, { "id" : "minecraft:bone_block", - "blockRuntimeId" : 692 + "blockRuntimeId" : 4198 }, { "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5689 + "blockRuntimeId" : 7214 }, { "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6627 + "blockRuntimeId" : 146 }, { "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5706 + "blockRuntimeId" : 3780 }, { "id" : "minecraft:lodestone", - "blockRuntimeId" : 5564 + "blockRuntimeId" : 8201 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 963 + "blockRuntimeId" : 956 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 971 + "blockRuntimeId" : 964 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 970 + "blockRuntimeId" : 963 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 978 + "blockRuntimeId" : 971 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 975 + "blockRuntimeId" : 968 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 977 + "blockRuntimeId" : 970 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 964 + "blockRuntimeId" : 957 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 967 + "blockRuntimeId" : 960 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 968 + "blockRuntimeId" : 961 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 976 + "blockRuntimeId" : 969 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 972 + "blockRuntimeId" : 965 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 966 + "blockRuntimeId" : 959 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 974 + "blockRuntimeId" : 967 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 973 + "blockRuntimeId" : 966 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 965 + "blockRuntimeId" : 958 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 969 + "blockRuntimeId" : 962 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3660 + "blockRuntimeId" : 6229 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3668 + "blockRuntimeId" : 6237 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3667 + "blockRuntimeId" : 6236 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3675 + "blockRuntimeId" : 6244 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3672 + "blockRuntimeId" : 6241 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3674 + "blockRuntimeId" : 6243 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3661 + "blockRuntimeId" : 6230 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3664 + "blockRuntimeId" : 6233 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3665 + "blockRuntimeId" : 6234 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3673 + "blockRuntimeId" : 6242 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3669 + "blockRuntimeId" : 6238 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3663 + "blockRuntimeId" : 6232 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3671 + "blockRuntimeId" : 6240 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3670 + "blockRuntimeId" : 6239 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3662 + "blockRuntimeId" : 6231 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3666 + "blockRuntimeId" : 6235 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3644 + "blockRuntimeId" : 668 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3652 + "blockRuntimeId" : 676 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3651 + "blockRuntimeId" : 675 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3659 + "blockRuntimeId" : 683 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3656 + "blockRuntimeId" : 680 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3658 + "blockRuntimeId" : 682 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3645 + "blockRuntimeId" : 669 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3648 + "blockRuntimeId" : 672 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3649 + "blockRuntimeId" : 673 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3657 + "blockRuntimeId" : 681 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3653 + "blockRuntimeId" : 677 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3647 + "blockRuntimeId" : 671 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3655 + "blockRuntimeId" : 679 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3654 + "blockRuntimeId" : 678 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3646 + "blockRuntimeId" : 670 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3650 + "blockRuntimeId" : 674 }, { "id" : "minecraft:clay", - "blockRuntimeId" : 1139 + "blockRuntimeId" : 7066 }, { "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5084 + "blockRuntimeId" : 649 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7117 + "blockRuntimeId" : 6099 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7125 + "blockRuntimeId" : 6107 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7124 + "blockRuntimeId" : 6106 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7132 + "blockRuntimeId" : 6114 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7129 + "blockRuntimeId" : 6111 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7131 + "blockRuntimeId" : 6113 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7118 + "blockRuntimeId" : 6100 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7121 + "blockRuntimeId" : 6103 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7122 + "blockRuntimeId" : 6104 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7130 + "blockRuntimeId" : 6112 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7126 + "blockRuntimeId" : 6108 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7120 + "blockRuntimeId" : 6102 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7128 + "blockRuntimeId" : 6110 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7127 + "blockRuntimeId" : 6109 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7119 + "blockRuntimeId" : 6101 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7123 + "blockRuntimeId" : 6105 }, { "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7798 + "blockRuntimeId" : 5523 }, { "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6849 + "blockRuntimeId" : 3536 }, { "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 5011 + "blockRuntimeId" : 8195 }, { "id" : "minecraft:black_glazed_terracotta", - "blockRuntimeId" : 488 + "blockRuntimeId" : 5758 }, { "id" : "minecraft:brown_glazed_terracotta", - "blockRuntimeId" : 894 + "blockRuntimeId" : 3552 }, { "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6604 + "blockRuntimeId" : 4150 }, { "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5750 + "blockRuntimeId" : 1156 }, { "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7940 + "blockRuntimeId" : 921 }, { "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5533 + "blockRuntimeId" : 221 }, { "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5027 + "blockRuntimeId" : 6501 }, { "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3931 + "blockRuntimeId" : 5308 }, { "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5485 + "blockRuntimeId" : 5421 }, { "id" : "minecraft:blue_glazed_terracotta", - "blockRuntimeId" : 685 + "blockRuntimeId" : 5415 }, { "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6522 + "blockRuntimeId" : 6965 }, { "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5597 + "blockRuntimeId" : 972 }, { "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5782 + "blockRuntimeId" : 6430 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6528 + "blockRuntimeId" : 7656 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6530 + "blockRuntimeId" : 7658 }, { "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5705 + "blockRuntimeId" : 4241 }, { "id" : "minecraft:warped_wart_block", - "blockRuntimeId" : 7665 + "blockRuntimeId" : 5829 }, { "id" : "minecraft:shroomlight", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 5017 }, { "id" : "minecraft:crimson_nylium", - "blockRuntimeId" : 3839 + "blockRuntimeId" : 4172 }, { "id" : "minecraft:warped_nylium", - "blockRuntimeId" : 7595 + "blockRuntimeId" : 6314 }, { "id" : "minecraft:basalt", - "blockRuntimeId" : 214 + "blockRuntimeId" : 4297 }, { "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5825 + "blockRuntimeId" : 24 }, { "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6883 + "blockRuntimeId" : 1162 }, { "id" : "minecraft:soul_soil", - "blockRuntimeId" : 6953 + "blockRuntimeId" : 5738 }, { "id" : "minecraft:dirt", - "blockRuntimeId" : 4484 + "blockRuntimeId" : 5701 }, { "id" : "minecraft:dirt", - "blockRuntimeId" : 4485 + "blockRuntimeId" : 5702 }, { "id" : "minecraft:farmland", - "blockRuntimeId" : 4766 + "blockRuntimeId" : 3901 }, { "id" : "minecraft:grass", - "blockRuntimeId" : 4998 + "blockRuntimeId" : 6891 }, { "id" : "minecraft:grass_path", - "blockRuntimeId" : 4999 + "blockRuntimeId" : 8023 }, { "id" : "minecraft:podzol", - "blockRuntimeId" : 5806 + "blockRuntimeId" : 4606 }, { "id" : "minecraft:mycelium", - "blockRuntimeId" : 5686 + "blockRuntimeId" : 3688 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7177 + "blockRuntimeId" : 661 }, { "id" : "minecraft:iron_ore", - "blockRuntimeId" : 5168 + "blockRuntimeId" : 4646 }, { "id" : "minecraft:gold_ore", - "blockRuntimeId" : 4977 + "blockRuntimeId" : 920 }, { "id" : "minecraft:diamond_ore", - "blockRuntimeId" : 4475 + "blockRuntimeId" : 4309 }, { "id" : "minecraft:lapis_ore", - "blockRuntimeId" : 5367 + "blockRuntimeId" : 7641 }, { "id" : "minecraft:redstone_ore", - "blockRuntimeId" : 6650 + "blockRuntimeId" : 4237 }, { "id" : "minecraft:coal_ore", - "blockRuntimeId" : 1142 + "blockRuntimeId" : 4235 }, { "id" : "minecraft:copper_ore", - "blockRuntimeId" : 3678 + "blockRuntimeId" : 3559 }, { "id" : "minecraft:emerald_ore", - "blockRuntimeId" : 4718 + "blockRuntimeId" : 7289 }, { "id" : "minecraft:quartz_ore", - "blockRuntimeId" : 6561 + "blockRuntimeId" : 4433 }, { "id" : "minecraft:nether_gold_ore", - "blockRuntimeId" : 5699 + "blockRuntimeId" : 27 }, { "id" : "minecraft:ancient_debris", - "blockRuntimeId" : 143 + "blockRuntimeId" : 6031 }, { "id" : "minecraft:deepslate_iron_ore", - "blockRuntimeId" : 4283 + "blockRuntimeId" : 7215 }, { "id" : "minecraft:deepslate_gold_ore", - "blockRuntimeId" : 4282 + "blockRuntimeId" : 6030 }, { "id" : "minecraft:deepslate_diamond_ore", - "blockRuntimeId" : 4280 + "blockRuntimeId" : 7980 }, { "id" : "minecraft:deepslate_lapis_ore", - "blockRuntimeId" : 4284 + "blockRuntimeId" : 7204 }, { "id" : "minecraft:deepslate_redstone_ore", - "blockRuntimeId" : 4285 + "blockRuntimeId" : 6507 }, { "id" : "minecraft:deepslate_emerald_ore", - "blockRuntimeId" : 4281 + "blockRuntimeId" : 6315 }, { "id" : "minecraft:deepslate_coal_ore", - "blockRuntimeId" : 4278 + "blockRuntimeId" : 7138 }, { "id" : "minecraft:deepslate_copper_ore", - "blockRuntimeId" : 4279 + "blockRuntimeId" : 105 }, { "id" : "minecraft:gravel", - "blockRuntimeId" : 5000 + "blockRuntimeId" : 8226 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7178 + "blockRuntimeId" : 662 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7180 + "blockRuntimeId" : 664 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7182 + "blockRuntimeId" : 666 }, { "id" : "minecraft:blackstone", - "blockRuntimeId" : 494 + "blockRuntimeId" : 7527 }, { "id" : "minecraft:deepslate", - "blockRuntimeId" : 4100 + "blockRuntimeId" : 267 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7179 + "blockRuntimeId" : 663 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7181 + "blockRuntimeId" : 665 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7183 + "blockRuntimeId" : 667 }, { "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5828 + "blockRuntimeId" : 3687 }, { "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6206 + "blockRuntimeId" : 7696 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6707 + "blockRuntimeId" : 4178 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6708 + "blockRuntimeId" : 4179 }, { "id" : "minecraft:cactus", - "blockRuntimeId" : 920 + "blockRuntimeId" : 6940 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5565 + "blockRuntimeId" : 6546 }, { "id" : "minecraft:stripped_oak_log", - "blockRuntimeId" : 7316 + "blockRuntimeId" : 7485 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5566 + "blockRuntimeId" : 6547 }, { "id" : "minecraft:stripped_spruce_log", - "blockRuntimeId" : 7319 + "blockRuntimeId" : 6253 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5567 + "blockRuntimeId" : 6548 }, { "id" : "minecraft:stripped_birch_log", - "blockRuntimeId" : 7301 + "blockRuntimeId" : 5896 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5568 + "blockRuntimeId" : 6549 }, { "id" : "minecraft:stripped_jungle_log", - "blockRuntimeId" : 7313 + "blockRuntimeId" : 650 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5577 + "blockRuntimeId" : 3835 }, { "id" : "minecraft:stripped_acacia_log", - "blockRuntimeId" : 7298 + "blockRuntimeId" : 5772 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5578 + "blockRuntimeId" : 3836 }, { "id" : "minecraft:stripped_dark_oak_log", - "blockRuntimeId" : 7310 + "blockRuntimeId" : 216 }, { "id" : "minecraft:crimson_stem", - "blockRuntimeId" : 3884 + "blockRuntimeId" : 5821 }, { "id" : "minecraft:stripped_crimson_stem", - "blockRuntimeId" : 7307 + "blockRuntimeId" : 6864 }, { "id" : "minecraft:warped_stem", - "blockRuntimeId" : 7640 + "blockRuntimeId" : 6377 }, { "id" : "minecraft:stripped_warped_stem", - "blockRuntimeId" : 7325 + "blockRuntimeId" : 7342 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7805 + "blockRuntimeId" : 3479 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7811 + "blockRuntimeId" : 3485 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7806 + "blockRuntimeId" : 3480 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7812 + "blockRuntimeId" : 3486 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7807 + "blockRuntimeId" : 3481 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7813 + "blockRuntimeId" : 3487 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7808 + "blockRuntimeId" : 3482 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7814 + "blockRuntimeId" : 3488 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7809 + "blockRuntimeId" : 3483 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7815 + "blockRuntimeId" : 3489 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7810 + "blockRuntimeId" : 3484 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7816 + "blockRuntimeId" : 3490 }, { "id" : "minecraft:crimson_hyphae", - "blockRuntimeId" : 3836 + "blockRuntimeId" : 4242 }, { "id" : "minecraft:stripped_crimson_hyphae", - "blockRuntimeId" : 7304 + "blockRuntimeId" : 6390 }, { "id" : "minecraft:warped_hyphae", - "blockRuntimeId" : 7592 + "blockRuntimeId" : 5826 }, { "id" : "minecraft:stripped_warped_hyphae", - "blockRuntimeId" : 7322 + "blockRuntimeId" : 5529 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5411 + "blockRuntimeId" : 6014 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5412 + "blockRuntimeId" : 6015 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5413 + "blockRuntimeId" : 6016 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5414 + "blockRuntimeId" : 6017 }, { "id" : "minecraft:leaves2", - "blockRuntimeId" : 5427 + "blockRuntimeId" : 4301 }, { "id" : "minecraft:leaves2", - "blockRuntimeId" : 5428 + "blockRuntimeId" : 4302 }, { "id" : "minecraft:azalea_leaves", - "blockRuntimeId" : 169 + "blockRuntimeId" : 7652 }, { "id" : "minecraft:azalea_leaves_flowered", - "blockRuntimeId" : 173 + "blockRuntimeId" : 6304 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6721 + "blockRuntimeId" : 720 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6722 + "blockRuntimeId" : 721 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6723 + "blockRuntimeId" : 722 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6724 + "blockRuntimeId" : 723 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6725 + "blockRuntimeId" : 724 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6726 + "blockRuntimeId" : 725 }, { "id" : "minecraft:bee_nest", - "blockRuntimeId" : 236 + "blockRuntimeId" : 5704 }, { "id" : "minecraft:wheat_seeds" @@ -1912,7 +1912,7 @@ }, { "id" : "minecraft:melon_block", - "blockRuntimeId" : 5610 + "blockRuntimeId" : 402 }, { "id" : "minecraft:melon_slice" @@ -1928,200 +1928,200 @@ }, { "id" : "minecraft:pumpkin", - "blockRuntimeId" : 6460 + "blockRuntimeId" : 4509 }, { "id" : "minecraft:carved_pumpkin", - "blockRuntimeId" : 988 + "blockRuntimeId" : 7320 }, { "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5552 + "blockRuntimeId" : 6559 }, { "id" : "minecraft:honeycomb" }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7346 + "blockRuntimeId" : 937 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4504 + "blockRuntimeId" : 5405 }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7345 + "blockRuntimeId" : 936 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4503 + "blockRuntimeId" : 5404 }, { "id" : "minecraft:nether_sprouts" }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3682 + "blockRuntimeId" : 6383 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3680 + "blockRuntimeId" : 6381 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3681 + "blockRuntimeId" : 6382 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3679 + "blockRuntimeId" : 6380 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3683 + "blockRuntimeId" : 6384 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3687 + "blockRuntimeId" : 6388 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3685 + "blockRuntimeId" : 6386 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3686 + "blockRuntimeId" : 6387 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3684 + "blockRuntimeId" : 6385 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3688 + "blockRuntimeId" : 6389 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3702 + "blockRuntimeId" : 4540 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3700 + "blockRuntimeId" : 4538 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3701 + "blockRuntimeId" : 4539 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3699 + "blockRuntimeId" : 4537 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3703 + "blockRuntimeId" : 4541 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3712 + "blockRuntimeId" : 69 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3710 + "blockRuntimeId" : 67 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3711 + "blockRuntimeId" : 68 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3709 + "blockRuntimeId" : 66 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3713 + "blockRuntimeId" : 70 }, { "id" : "minecraft:kelp" }, { "id" : "minecraft:seagrass", - "blockRuntimeId" : 6828 + "blockRuntimeId" : 244 }, { "id" : "minecraft:crimson_roots", - "blockRuntimeId" : 3857 + "blockRuntimeId" : 7515 }, { "id" : "minecraft:warped_roots", - "blockRuntimeId" : 7613 + "blockRuntimeId" : 4310 }, { "id" : "minecraft:yellow_flower", - "blockRuntimeId" : 7939 + "blockRuntimeId" : 316 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6593 + "blockRuntimeId" : 3621 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6594 + "blockRuntimeId" : 3622 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6595 + "blockRuntimeId" : 3623 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6596 + "blockRuntimeId" : 3624 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6597 + "blockRuntimeId" : 3625 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6598 + "blockRuntimeId" : 3626 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6599 + "blockRuntimeId" : 3627 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6600 + "blockRuntimeId" : 3628 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6601 + "blockRuntimeId" : 3629 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6602 + "blockRuntimeId" : 3630 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6603 + "blockRuntimeId" : 3631 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4501 + "blockRuntimeId" : 5402 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4502 + "blockRuntimeId" : 5403 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4505 + "blockRuntimeId" : 5406 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4506 + "blockRuntimeId" : 5407 }, { "id" : "minecraft:wither_rose", - "blockRuntimeId" : 7804 + "blockRuntimeId" : 6089 }, { "id" : "minecraft:white_dye" @@ -2188,127 +2188,127 @@ }, { "id" : "minecraft:vine", - "blockRuntimeId" : 7500 + "blockRuntimeId" : 902 }, { "id" : "minecraft:weeping_vines", - "blockRuntimeId" : 7754 + "blockRuntimeId" : 5429 }, { "id" : "minecraft:twisting_vines", - "blockRuntimeId" : 7427 + "blockRuntimeId" : 5641 }, { "id" : "minecraft:waterlily", - "blockRuntimeId" : 7682 + "blockRuntimeId" : 1163 }, { "id" : "minecraft:deadbush", - "blockRuntimeId" : 4099 + "blockRuntimeId" : 4633 }, { "id" : "minecraft:bamboo", - "blockRuntimeId" : 177 + "blockRuntimeId" : 3689 }, { "id" : "minecraft:snow", - "blockRuntimeId" : 6909 + "blockRuntimeId" : 4177 }, { "id" : "minecraft:ice", - "blockRuntimeId" : 5127 + "blockRuntimeId" : 6563 }, { "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5770 + "blockRuntimeId" : 296 }, { "id" : "minecraft:blue_ice", - "blockRuntimeId" : 691 + "blockRuntimeId" : 6981 }, { "id" : "minecraft:snow_layer", - "blockRuntimeId" : 6910 + "blockRuntimeId" : 155 }, { "id" : "minecraft:pointed_dripstone", - "blockRuntimeId" : 5812 + "blockRuntimeId" : 7358 }, { "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4585 + "blockRuntimeId" : 901 }, { "id" : "minecraft:moss_carpet", - "blockRuntimeId" : 5667 + "blockRuntimeId" : 300 }, { "id" : "minecraft:moss_block", - "blockRuntimeId" : 5666 + "blockRuntimeId" : 6429 }, { "id" : "minecraft:dirt_with_roots", - "blockRuntimeId" : 4486 + "blockRuntimeId" : 5347 }, { "id" : "minecraft:hanging_roots", - "blockRuntimeId" : 5049 + "blockRuntimeId" : 205 }, { "id" : "minecraft:big_dripleaf", - "blockRuntimeId" : 328 + "blockRuntimeId" : 5904 }, { "id" : "minecraft:small_dripleaf_block", - "blockRuntimeId" : 6875 + "blockRuntimeId" : 4268 }, { "id" : "minecraft:spore_blossom", - "blockRuntimeId" : 6962 + "blockRuntimeId" : 7254 }, { "id" : "minecraft:azalea", - "blockRuntimeId" : 168 + "blockRuntimeId" : 6804 }, { "id" : "minecraft:flowering_azalea", - "blockRuntimeId" : 4815 + "blockRuntimeId" : 5427 }, { "id" : "minecraft:glow_lichen", - "blockRuntimeId" : 4973 + "blockRuntimeId" : 5634 }, { "id" : "minecraft:amethyst_block", - "blockRuntimeId" : 136 + "blockRuntimeId" : 304 }, { "id" : "minecraft:budding_amethyst", - "blockRuntimeId" : 919 + "blockRuntimeId" : 6956 }, { "id" : "minecraft:amethyst_cluster", - "blockRuntimeId" : 138 + "blockRuntimeId" : 7752 }, { "id" : "minecraft:large_amethyst_bud", - "blockRuntimeId" : 5369 + "blockRuntimeId" : 4684 }, { "id" : "minecraft:medium_amethyst_bud", - "blockRuntimeId" : 5605 + "blockRuntimeId" : 4324 }, { "id" : "minecraft:small_amethyst_bud", - "blockRuntimeId" : 6863 + "blockRuntimeId" : 318 }, { "id" : "minecraft:tuff", - "blockRuntimeId" : 7414 + "blockRuntimeId" : 360 }, { "id" : "minecraft:calcite", - "blockRuntimeId" : 943 + "blockRuntimeId" : 215 }, { "id" : "minecraft:chicken" @@ -2339,35 +2339,35 @@ }, { "id" : "minecraft:brown_mushroom", - "blockRuntimeId" : 900 + "blockRuntimeId" : 3551 }, { "id" : "minecraft:red_mushroom", - "blockRuntimeId" : 6610 + "blockRuntimeId" : 4517 }, { "id" : "minecraft:crimson_fungus", - "blockRuntimeId" : 3835 + "blockRuntimeId" : 7695 }, { "id" : "minecraft:warped_fungus", - "blockRuntimeId" : 7591 + "blockRuntimeId" : 301 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 915 + "blockRuntimeId" : 7304 }, { "id" : "minecraft:red_mushroom_block", - "blockRuntimeId" : 6625 + "blockRuntimeId" : 3616 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 916 + "blockRuntimeId" : 7305 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 901 + "blockRuntimeId" : 7290 }, { "id" : "minecraft:egg" @@ -2386,50 +2386,50 @@ }, { "id" : "minecraft:web", - "blockRuntimeId" : 7753 + "blockRuntimeId" : 6587 }, { "id" : "minecraft:spider_eye" }, { "id" : "minecraft:mob_spawner", - "blockRuntimeId" : 5659 + "blockRuntimeId" : 411 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5660 + "blockRuntimeId" : 4133 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5661 + "blockRuntimeId" : 4134 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5662 + "blockRuntimeId" : 4135 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5663 + "blockRuntimeId" : 4136 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5664 + "blockRuntimeId" : 4137 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5665 + "blockRuntimeId" : 4138 }, { "id" : "minecraft:infested_deepslate", - "blockRuntimeId" : 5128 + "blockRuntimeId" : 4597 }, { "id" : "minecraft:dragon_egg", - "blockRuntimeId" : 4583 + "blockRuntimeId" : 7213 }, { "id" : "minecraft:turtle_egg", - "blockRuntimeId" : 7415 + "blockRuntimeId" : 7939 }, { "id" : "minecraft:chicken_spawn_egg" @@ -2631,42 +2631,42 @@ }, { "id" : "minecraft:obsidian", - "blockRuntimeId" : 5738 + "blockRuntimeId" : 436 }, { "id" : "minecraft:crying_obsidian", - "blockRuntimeId" : 3909 + "blockRuntimeId" : 6596 }, { "id" : "minecraft:bedrock", - "blockRuntimeId" : 234 + "blockRuntimeId" : 6971 }, { "id" : "minecraft:soul_sand", - "blockRuntimeId" : 6952 + "blockRuntimeId" : 5739 }, { "id" : "minecraft:netherrack", - "blockRuntimeId" : 5707 + "blockRuntimeId" : 6991 }, { "id" : "minecraft:magma", - "blockRuntimeId" : 5603 + "blockRuntimeId" : 7951 }, { "id" : "minecraft:nether_wart" }, { "id" : "minecraft:end_stone", - "blockRuntimeId" : 4745 + "blockRuntimeId" : 3841 }, { "id" : "minecraft:chorus_flower", - "blockRuntimeId" : 1132 + "blockRuntimeId" : 4462 }, { "id" : "minecraft:chorus_plant", - "blockRuntimeId" : 1138 + "blockRuntimeId" : 5455 }, { "id" : "minecraft:chorus_fruit" @@ -2676,51 +2676,51 @@ }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6960 + "blockRuntimeId" : 637 }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6961 + "blockRuntimeId" : 638 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3689 + "blockRuntimeId" : 5193 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3690 + "blockRuntimeId" : 5194 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3691 + "blockRuntimeId" : 5195 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3692 + "blockRuntimeId" : 5196 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3693 + "blockRuntimeId" : 5197 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3694 + "blockRuntimeId" : 5198 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3695 + "blockRuntimeId" : 5199 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3696 + "blockRuntimeId" : 5200 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3697 + "blockRuntimeId" : 5201 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3698 + "blockRuntimeId" : 5202 }, { "id" : "minecraft:leather_helmet" @@ -3747,111 +3747,110 @@ }, { "id" : "minecraft:torch", - "blockRuntimeId" : 7354 + "blockRuntimeId" : 732 }, { "id" : "minecraft:soul_torch", - "blockRuntimeId" : 6954 + "blockRuntimeId" : 4600 }, { "id" : "minecraft:sea_pickle", - "blockRuntimeId" : 6820 + "blockRuntimeId" : 5779 }, { "id" : "minecraft:lantern", - "blockRuntimeId" : 5364 + "blockRuntimeId" : 7016 }, { "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6950 + "blockRuntimeId" : 5699 }, { "id" : "minecraft:candle", - "blockRuntimeId" : 953 + "blockRuntimeId" : 7345 }, { "id" : "minecraft:white_candle", - "blockRuntimeId" : 7788 + "blockRuntimeId" : 5250 }, { "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5740 + "blockRuntimeId" : 372 }, { "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5587 + "blockRuntimeId" : 428 }, { "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5475 + "blockRuntimeId" : 4501 }, { "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 6115 }, { "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5523 + "blockRuntimeId" : 6333 }, { "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5772 + "blockRuntimeId" : 7312 }, { "id" : "minecraft:gray_candle", - "blockRuntimeId" : 5001 + "blockRuntimeId" : 947 }, { "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5491 + "blockRuntimeId" : 6147 }, { "id" : "minecraft:cyan_candle", - "blockRuntimeId" : 3921 + "blockRuntimeId" : 7668 }, { "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6512 + "blockRuntimeId" : 6992 }, { - "id" : "minecraft:blue_candle", - "blockRuntimeId" : 675 + "id" : "minecraft:blue_candle" }, { "id" : "minecraft:brown_candle", - "blockRuntimeId" : 884 + "blockRuntimeId" : 5799 }, { "id" : "minecraft:green_candle", - "blockRuntimeId" : 5017 + "blockRuntimeId" : 694 }, { "id" : "minecraft:red_candle", - "blockRuntimeId" : 6583 + "blockRuntimeId" : 4637 }, { "id" : "minecraft:black_candle", - "blockRuntimeId" : 478 + "blockRuntimeId" : 171 }, { "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3771 + "blockRuntimeId" : 5778 }, { "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 + "blockRuntimeId" : 8227 }, { "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4812 + "blockRuntimeId" : 5757 }, { "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6876 + "blockRuntimeId" : 3731 }, { "id" : "minecraft:beehive", - "blockRuntimeId" : 260 + "blockRuntimeId" : 6032 }, { "id" : "minecraft:campfire" @@ -3861,152 +3860,152 @@ }, { "id" : "minecraft:furnace", - "blockRuntimeId" : 4877 + "blockRuntimeId" : 7744 }, { "id" : "minecraft:blast_furnace", - "blockRuntimeId" : 669 + "blockRuntimeId" : 7509 }, { "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 }, { "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6702 + "blockRuntimeId" : 689 }, { "id" : "minecraft:brewing_stand" }, { "id" : "minecraft:anvil", - "blockRuntimeId" : 152 + "blockRuntimeId" : 6508 }, { "id" : "minecraft:anvil", - "blockRuntimeId" : 156 + "blockRuntimeId" : 6512 }, { "id" : "minecraft:anvil", - "blockRuntimeId" : 160 + "blockRuntimeId" : 6516 }, { "id" : "minecraft:grindstone", - "blockRuntimeId" : 5033 + "blockRuntimeId" : 7981 }, { "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4719 + "blockRuntimeId" : 6597 }, { "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 + "blockRuntimeId" : 6545 }, { "id" : "minecraft:lectern", - "blockRuntimeId" : 5435 + "blockRuntimeId" : 6856 }, { "id" : "minecraft:cauldron" }, { "id" : "minecraft:composter", - "blockRuntimeId" : 3635 + "blockRuntimeId" : 5365 }, { "id" : "minecraft:chest", - "blockRuntimeId" : 1123 + "blockRuntimeId" : 7057 }, { "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7376 + "blockRuntimeId" : 5533 }, { "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4746 + "blockRuntimeId" : 4317 }, { "id" : "minecraft:barrel", - "blockRuntimeId" : 201 + "blockRuntimeId" : 4450 }, { "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7459 + "blockRuntimeId" : 3686 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 }, { "id" : "minecraft:armor_stand" }, { "id" : "minecraft:noteblock", - "blockRuntimeId" : 5717 + "blockRuntimeId" : 359 }, { "id" : "minecraft:jukebox", - "blockRuntimeId" : 5209 + "blockRuntimeId" : 4830 }, { "id" : "minecraft:music_disc_13" @@ -4055,15 +4054,15 @@ }, { "id" : "minecraft:glowstone", - "blockRuntimeId" : 4975 + "blockRuntimeId" : 3874 }, { "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6649 + "blockRuntimeId" : 265 }, { - "id" : "minecraft:sealantern", - "blockRuntimeId" : 6831 + "id" : "minecraft:sea_lantern", + "blockRuntimeId" : 7488 }, { "id" : "minecraft:oak_sign" @@ -4162,23 +4161,23 @@ }, { "id" : "minecraft:beacon", - "blockRuntimeId" : 217 + "blockRuntimeId" : 145 }, { "id" : "minecraft:bell", - "blockRuntimeId" : 292 + "blockRuntimeId" : 6824 }, { "id" : "minecraft:conduit", - "blockRuntimeId" : 3676 + "blockRuntimeId" : 4196 }, { "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7292 + "blockRuntimeId" : 7516 }, { "id" : "minecraft:end_portal_frame", - "blockRuntimeId" : 4731 + "blockRuntimeId" : 6001 }, { "id" : "minecraft:coal" @@ -4314,11 +4313,11 @@ }, { "id" : "minecraft:end_rod", - "blockRuntimeId" : 4739 + "blockRuntimeId" : 5815 }, { "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5517 + "blockRuntimeId" : 1181 }, { "id" : "minecraft:end_crystal" @@ -4780,19 +4779,19 @@ }, { "id" : "minecraft:rail", - "blockRuntimeId" : 6570 + "blockRuntimeId" : 3909 }, { "id" : "minecraft:golden_rail", - "blockRuntimeId" : 4978 + "blockRuntimeId" : 5282 }, { "id" : "minecraft:detector_rail", - "blockRuntimeId" : 4462 + "blockRuntimeId" : 4121 }, { "id" : "minecraft:activator_rail", - "blockRuntimeId" : 122 + "blockRuntimeId" : 323 }, { "id" : "minecraft:minecart" @@ -4811,114 +4810,115 @@ }, { "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6648 + "blockRuntimeId" : 3781 }, { "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6651 + "blockRuntimeId" : 3530 }, { "id" : "minecraft:lever", - "blockRuntimeId" : 5443 + "blockRuntimeId" : 6405 }, { "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7841 + "blockRuntimeId" : 6356 }, { "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6963 + "blockRuntimeId" : 4269 }, { "id" : "minecraft:birch_button", - "blockRuntimeId" : 356 + "blockRuntimeId" : 7708 }, { "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5210 + "blockRuntimeId" : 116 }, { - "id" : "minecraft:acacia_button" + "id" : "minecraft:acacia_button", + "blockRuntimeId" : 7173 }, { "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3937 + "blockRuntimeId" : 93 }, { "id" : "minecraft:stone_button", - "blockRuntimeId" : 7192 + "blockRuntimeId" : 604 }, { "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3772 + "blockRuntimeId" : 4380 }, { "id" : "minecraft:warped_button", - "blockRuntimeId" : 7528 + "blockRuntimeId" : 7192 }, { "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 6004 + "blockRuntimeId" : 7732 }, { "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7398 + "blockRuntimeId" : 5838 }, { "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7885 + "blockRuntimeId" : 8005 }, { "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 7023 + "blockRuntimeId" : 3764 }, { "id" : "minecraft:birch_pressure_plate", - "blockRuntimeId" : 416 + "blockRuntimeId" : 3560 }, { "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5270 + "blockRuntimeId" : 3640 }, { "id" : "minecraft:acacia_pressure_plate", - "blockRuntimeId" : 60 + "blockRuntimeId" : 5203 }, { "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3997 + "blockRuntimeId" : 5880 }, { "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3841 + "blockRuntimeId" : 8210 }, { "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7597 + "blockRuntimeId" : 270 }, { "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7204 + "blockRuntimeId" : 3875 }, { "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5501 + "blockRuntimeId" : 3670 }, { "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5097 + "blockRuntimeId" : 1165 }, { "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 6018 + "blockRuntimeId" : 6197 }, { "id" : "minecraft:observer", - "blockRuntimeId" : 5726 + "blockRuntimeId" : 3518 }, { "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4067 + "blockRuntimeId" : 4180 }, { "id" : "minecraft:repeater" @@ -4931,30 +4931,30 @@ }, { "id" : "minecraft:dropper", - "blockRuntimeId" : 4589 + "blockRuntimeId" : 7327 }, { "id" : "minecraft:dispenser", - "blockRuntimeId" : 4490 + "blockRuntimeId" : 7955 }, { "id" : "minecraft:piston", - "blockRuntimeId" : 5789 + "blockRuntimeId" : 930 }, { "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7166 + "blockRuntimeId" : 4312 }, { "id" : "minecraft:tnt", - "blockRuntimeId" : 7350 + "blockRuntimeId" : 6581 }, { "id" : "minecraft:name_tag" }, { "id" : "minecraft:loom", - "blockRuntimeId" : 5583 + "blockRuntimeId" : 3831 }, { "id" : "minecraft:banner" @@ -5200,7 +5200,7 @@ }, { "id" : "minecraft:target", - "blockRuntimeId" : 7348 + "blockRuntimeId" : 6355 }, { "id" : "minecraft:lodestone_compass" diff --git a/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json index 786eb51f097..db244a55385 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json +++ b/src/test/resources/org/powernukkit/updater/dumps/proxypass/recipes.json @@ -1,5 +1,5 @@ { - "version" : 486, + "version" : 503, "recipes" : [ { "id" : "minecraft:smithingtable_diamond_axe_to_netherite_axe", @@ -290,7 +290,7 @@ { "legacyId" : -395, "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1129 + "blockRuntimeId" : 5190 } ], "block" : "stonecutter", @@ -310,7 +310,7 @@ "legacyId" : -380, "id" : "minecraft:cobbled_deepslate_slab", "count" : 2, - "blockRuntimeId" : 1146 + "blockRuntimeId" : 7252 } ], "block" : "stonecutter", @@ -329,7 +329,7 @@ { "legacyId" : -381, "id" : "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId" : 1148 + "blockRuntimeId" : 147 } ], "block" : "stonecutter", @@ -348,7 +348,7 @@ { "legacyId" : -382, "id" : "minecraft:cobbled_deepslate_wall", - "blockRuntimeId" : 1156 + "blockRuntimeId" : 8024 } ], "block" : "stonecutter", @@ -368,7 +368,7 @@ "legacyId" : -392, "id" : "minecraft:deepslate_brick_slab", "count" : 2, - "blockRuntimeId" : 4105 + "blockRuntimeId" : 3721 } ], "block" : "stonecutter", @@ -388,7 +388,7 @@ "legacyId" : -392, "id" : "minecraft:deepslate_brick_slab", "count" : 2, - "blockRuntimeId" : 4105 + "blockRuntimeId" : 3721 } ], "block" : "stonecutter", @@ -408,7 +408,7 @@ "legacyId" : -392, "id" : "minecraft:deepslate_brick_slab", "count" : 2, - "blockRuntimeId" : 4105 + "blockRuntimeId" : 3721 } ], "block" : "stonecutter", @@ -427,7 +427,7 @@ { "legacyId" : -393, "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4107 + "blockRuntimeId" : 7364 } ], "block" : "stonecutter", @@ -446,7 +446,7 @@ { "legacyId" : -393, "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4107 + "blockRuntimeId" : 7364 } ], "block" : "stonecutter", @@ -465,7 +465,7 @@ { "legacyId" : -393, "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4107 + "blockRuntimeId" : 7364 } ], "block" : "stonecutter", @@ -484,7 +484,7 @@ { "legacyId" : -394, "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4115 + "blockRuntimeId" : 437 } ], "block" : "stonecutter", @@ -503,7 +503,7 @@ { "legacyId" : -394, "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4115 + "blockRuntimeId" : 437 } ], "block" : "stonecutter", @@ -522,7 +522,7 @@ { "legacyId" : -394, "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4115 + "blockRuntimeId" : 437 } ], "block" : "stonecutter", @@ -541,7 +541,7 @@ { "legacyId" : -391, "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4277 + "blockRuntimeId" : 5414 } ], "block" : "stonecutter", @@ -560,7 +560,7 @@ { "legacyId" : -391, "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4277 + "blockRuntimeId" : 5414 } ], "block" : "stonecutter", @@ -580,7 +580,7 @@ "legacyId" : -388, "id" : "minecraft:deepslate_tile_slab", "count" : 2, - "blockRuntimeId" : 4288 + "blockRuntimeId" : 4239 } ], "block" : "stonecutter", @@ -600,7 +600,7 @@ "legacyId" : -388, "id" : "minecraft:deepslate_tile_slab", "count" : 2, - "blockRuntimeId" : 4288 + "blockRuntimeId" : 4239 } ], "block" : "stonecutter", @@ -620,7 +620,7 @@ "legacyId" : -388, "id" : "minecraft:deepslate_tile_slab", "count" : 2, - "blockRuntimeId" : 4288 + "blockRuntimeId" : 4239 } ], "block" : "stonecutter", @@ -640,7 +640,7 @@ "legacyId" : -388, "id" : "minecraft:deepslate_tile_slab", "count" : 2, - "blockRuntimeId" : 4288 + "blockRuntimeId" : 4239 } ], "block" : "stonecutter", @@ -659,7 +659,7 @@ { "legacyId" : -389, "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4290 + "blockRuntimeId" : 4609 } ], "block" : "stonecutter", @@ -678,7 +678,7 @@ { "legacyId" : -389, "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4290 + "blockRuntimeId" : 4609 } ], "block" : "stonecutter", @@ -697,7 +697,7 @@ { "legacyId" : -389, "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4290 + "blockRuntimeId" : 4609 } ], "block" : "stonecutter", @@ -716,7 +716,7 @@ { "legacyId" : -389, "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4290 + "blockRuntimeId" : 4609 } ], "block" : "stonecutter", @@ -735,7 +735,7 @@ { "legacyId" : -390, "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4298 + "blockRuntimeId" : 5027 } ], "block" : "stonecutter", @@ -754,7 +754,7 @@ { "legacyId" : -390, "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4298 + "blockRuntimeId" : 5027 } ], "block" : "stonecutter", @@ -773,7 +773,7 @@ { "legacyId" : -390, "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4298 + "blockRuntimeId" : 5027 } ], "block" : "stonecutter", @@ -792,7 +792,7 @@ { "legacyId" : -390, "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4298 + "blockRuntimeId" : 5027 } ], "block" : "stonecutter", @@ -811,7 +811,7 @@ { "legacyId" : -387, "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4460 + "blockRuntimeId" : 4513 } ], "block" : "stonecutter", @@ -830,7 +830,7 @@ { "legacyId" : -387, "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4460 + "blockRuntimeId" : 4513 } ], "block" : "stonecutter", @@ -849,7 +849,7 @@ { "legacyId" : -387, "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4460 + "blockRuntimeId" : 4513 } ], "block" : "stonecutter", @@ -868,7 +868,7 @@ { "legacyId" : -383, "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6206 + "blockRuntimeId" : 7696 } ], "block" : "stonecutter", @@ -888,7 +888,7 @@ "legacyId" : -384, "id" : "minecraft:polished_deepslate_slab", "count" : 2, - "blockRuntimeId" : 6209 + "blockRuntimeId" : 302 } ], "block" : "stonecutter", @@ -908,7 +908,7 @@ "legacyId" : -384, "id" : "minecraft:polished_deepslate_slab", "count" : 2, - "blockRuntimeId" : 6209 + "blockRuntimeId" : 302 } ], "block" : "stonecutter", @@ -927,7 +927,7 @@ { "legacyId" : -385, "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6211 + "blockRuntimeId" : 308 } ], "block" : "stonecutter", @@ -946,7 +946,7 @@ { "legacyId" : -385, "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6211 + "blockRuntimeId" : 308 } ], "block" : "stonecutter", @@ -965,7 +965,7 @@ { "legacyId" : -386, "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6219 + "blockRuntimeId" : 7759 } ], "block" : "stonecutter", @@ -984,7 +984,7 @@ { "legacyId" : -386, "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6219 + "blockRuntimeId" : 7759 } ], "block" : "stonecutter", @@ -1005,7 +1005,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7255 + "blockRuntimeId" : 6617 } ], "block" : "stonecutter", @@ -1025,7 +1025,7 @@ { "legacyId" : -171, "id" : "minecraft:andesite_stairs", - "blockRuntimeId" : 144 + "blockRuntimeId" : 5258 } ], "block" : "stonecutter", @@ -1045,7 +1045,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1323 + "blockRuntimeId" : 1191 } ], "block" : "stonecutter", @@ -1066,7 +1066,7 @@ "legacyId" : -282, "id" : "minecraft:blackstone_slab", "count" : 2, - "blockRuntimeId" : 497 + "blockRuntimeId" : 918 } ], "block" : "stonecutter", @@ -1086,7 +1086,7 @@ { "legacyId" : -276, "id" : "minecraft:blackstone_stairs", - "blockRuntimeId" : 499 + "blockRuntimeId" : 6973 } ], "block" : "stonecutter", @@ -1106,7 +1106,7 @@ { "legacyId" : -277, "id" : "minecraft:blackstone_wall", - "blockRuntimeId" : 507 + "blockRuntimeId" : 3919 } ], "block" : "stonecutter", @@ -1126,7 +1126,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7224 + "blockRuntimeId" : 253 } ], "block" : "stonecutter", @@ -1147,7 +1147,7 @@ "legacyId" : -284, "id" : "minecraft:polished_blackstone_brick_slab", "count" : 2, - "blockRuntimeId" : 5831 + "blockRuntimeId" : 4175 } ], "block" : "stonecutter", @@ -1166,7 +1166,7 @@ { "legacyId" : 108, "id" : "minecraft:brick_stairs", - "blockRuntimeId" : 876 + "blockRuntimeId" : 6421 } ], "block" : "stonecutter", @@ -1186,7 +1186,7 @@ { "legacyId" : -275, "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5833 + "blockRuntimeId" : 4425 } ], "block" : "stonecutter", @@ -1205,7 +1205,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1325 + "blockRuntimeId" : 1193 } ], "block" : "stonecutter", @@ -1225,7 +1225,7 @@ { "legacyId" : -278, "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5841 + "blockRuntimeId" : 978 } ], "block" : "stonecutter", @@ -1245,7 +1245,7 @@ { "legacyId" : -274, "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 6003 + "blockRuntimeId" : 4636 } ], "block" : "stonecutter", @@ -1265,7 +1265,7 @@ { "legacyId" : -279, "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 + "blockRuntimeId" : 5018 } ], "block" : "stonecutter", @@ -1285,7 +1285,7 @@ { "legacyId" : -302, "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1130 + "blockRuntimeId" : 7191 } ], "block" : "stonecutter", @@ -1305,7 +1305,7 @@ { "legacyId" : -279, "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 + "blockRuntimeId" : 5018 } ], "block" : "stonecutter", @@ -1325,7 +1325,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7223 + "blockRuntimeId" : 252 } ], "block" : "stonecutter", @@ -1344,7 +1344,7 @@ { "legacyId" : 67, "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7278 + "blockRuntimeId" : 3713 } ], "block" : "stonecutter", @@ -1363,7 +1363,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1319 + "blockRuntimeId" : 1187 } ], "block" : "stonecutter", @@ -1384,7 +1384,7 @@ "legacyId" : -347, "id" : "minecraft:cut_copper", "count" : 4, - "blockRuntimeId" : 3910 + "blockRuntimeId" : 4645 } ], "block" : "stonecutter", @@ -1405,7 +1405,7 @@ "legacyId" : -361, "id" : "minecraft:cut_copper_slab", "count" : 8, - "blockRuntimeId" : 3911 + "blockRuntimeId" : 5191 } ], "block" : "stonecutter", @@ -1426,7 +1426,7 @@ "legacyId" : -354, "id" : "minecraft:cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 3913 + "blockRuntimeId" : 4528 } ], "block" : "stonecutter", @@ -1447,7 +1447,7 @@ "legacyId" : -361, "id" : "minecraft:cut_copper_slab", "count" : 2, - "blockRuntimeId" : 3911 + "blockRuntimeId" : 5191 } ], "block" : "stonecutter", @@ -1467,7 +1467,7 @@ { "legacyId" : -354, "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3913 + "blockRuntimeId" : 4528 } ], "block" : "stonecutter", @@ -1488,7 +1488,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7239 + "blockRuntimeId" : 6601 } ], "block" : "stonecutter", @@ -1508,7 +1508,7 @@ { "legacyId" : -3, "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 4037 + "blockRuntimeId" : 7372 } ], "block" : "stonecutter", @@ -1529,7 +1529,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7256 + "blockRuntimeId" : 6618 } ], "block" : "stonecutter", @@ -1549,7 +1549,7 @@ { "legacyId" : -170, "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 4476 + "blockRuntimeId" : 4339 } ], "block" : "stonecutter", @@ -1569,7 +1569,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1322 + "blockRuntimeId" : 1190 } ], "block" : "stonecutter", @@ -1589,7 +1589,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 2, - "blockRuntimeId" : 7270 + "blockRuntimeId" : 6632 } ], "block" : "stonecutter", @@ -1609,7 +1609,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7252 + "blockRuntimeId" : 6614 } ], "block" : "stonecutter", @@ -1629,7 +1629,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7252 + "blockRuntimeId" : 6614 } ], "block" : "stonecutter", @@ -1648,7 +1648,7 @@ { "legacyId" : -178, "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4720 + "blockRuntimeId" : 6347 } ], "block" : "stonecutter", @@ -1667,7 +1667,7 @@ { "legacyId" : -178, "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4720 + "blockRuntimeId" : 6347 } ], "block" : "stonecutter", @@ -1686,7 +1686,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1329 + "blockRuntimeId" : 1197 } ], "block" : "stonecutter", @@ -1705,7 +1705,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1329 + "blockRuntimeId" : 1197 } ], "block" : "stonecutter", @@ -1724,7 +1724,7 @@ { "legacyId" : 206, "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4728 + "blockRuntimeId" : 295 } ], "block" : "stonecutter", @@ -1745,7 +1745,7 @@ "legacyId" : -348, "id" : "minecraft:exposed_cut_copper", "count" : 4, - "blockRuntimeId" : 4753 + "blockRuntimeId" : 6090 } ], "block" : "stonecutter", @@ -1766,7 +1766,7 @@ "legacyId" : -355, "id" : "minecraft:exposed_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 4756 + "blockRuntimeId" : 4519 } ], "block" : "stonecutter", @@ -1787,7 +1787,7 @@ "legacyId" : -362, "id" : "minecraft:exposed_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 4754 + "blockRuntimeId" : 6491 } ], "block" : "stonecutter", @@ -1808,7 +1808,7 @@ "legacyId" : -362, "id" : "minecraft:exposed_cut_copper_slab", "count" : 2, - "blockRuntimeId" : 4754 + "blockRuntimeId" : 6491 } ], "block" : "stonecutter", @@ -1828,7 +1828,7 @@ { "legacyId" : -355, "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4756 + "blockRuntimeId" : 4519 } ], "block" : "stonecutter", @@ -1849,7 +1849,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7258 + "blockRuntimeId" : 6620 } ], "block" : "stonecutter", @@ -1869,7 +1869,7 @@ { "legacyId" : -169, "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4990 + "blockRuntimeId" : 3542 } ], "block" : "stonecutter", @@ -1889,7 +1889,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1321 + "blockRuntimeId" : 1189 } ], "block" : "stonecutter", @@ -1909,7 +1909,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7241 + "blockRuntimeId" : 6603 } ], "block" : "stonecutter", @@ -1928,7 +1928,7 @@ { "legacyId" : -179, "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5669 + "blockRuntimeId" : 4081 } ], "block" : "stonecutter", @@ -1947,7 +1947,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1320 + "blockRuntimeId" : 1188 } ], "block" : "stonecutter", @@ -1968,7 +1968,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 2, - "blockRuntimeId" : 7268 + "blockRuntimeId" : 6630 } ], "block" : "stonecutter", @@ -1988,7 +1988,7 @@ { "legacyId" : -175, "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5677 + "blockRuntimeId" : 5807 } ], "block" : "stonecutter", @@ -2008,7 +2008,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1327 + "blockRuntimeId" : 1195 } ], "block" : "stonecutter", @@ -2028,7 +2028,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7227 + "blockRuntimeId" : 256 } ], "block" : "stonecutter", @@ -2047,7 +2047,7 @@ { "legacyId" : 114, "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5691 + "blockRuntimeId" : 106 } ], "block" : "stonecutter", @@ -2066,7 +2066,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1328 + "blockRuntimeId" : 1196 } ], "block" : "stonecutter", @@ -2087,7 +2087,7 @@ "legacyId" : -350, "id" : "minecraft:oxidized_cut_copper", "count" : 4, - "blockRuntimeId" : 5757 + "blockRuntimeId" : 5428 } ], "block" : "stonecutter", @@ -2108,7 +2108,7 @@ "legacyId" : -364, "id" : "minecraft:oxidized_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 5758 + "blockRuntimeId" : 5232 } ], "block" : "stonecutter", @@ -2129,7 +2129,7 @@ "legacyId" : -357, "id" : "minecraft:oxidized_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 5760 + "blockRuntimeId" : 361 } ], "block" : "stonecutter", @@ -2150,7 +2150,7 @@ "legacyId" : -364, "id" : "minecraft:oxidized_cut_copper_slab", "count" : 2, - "blockRuntimeId" : 5758 + "blockRuntimeId" : 5232 } ], "block" : "stonecutter", @@ -2170,7 +2170,7 @@ { "legacyId" : -357, "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5760 + "blockRuntimeId" : 361 } ], "block" : "stonecutter", @@ -2190,7 +2190,7 @@ { "legacyId" : 1, "id" : "minecraft:stone", - "blockRuntimeId" : 7183 + "blockRuntimeId" : 667 } ], "block" : "stonecutter", @@ -2211,7 +2211,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7254 + "blockRuntimeId" : 6616 } ], "block" : "stonecutter", @@ -2232,7 +2232,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7254 + "blockRuntimeId" : 6616 } ], "block" : "stonecutter", @@ -2252,7 +2252,7 @@ { "legacyId" : -174, "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5817 + "blockRuntimeId" : 6982 } ], "block" : "stonecutter", @@ -2272,7 +2272,7 @@ { "legacyId" : -174, "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5817 + "blockRuntimeId" : 6982 } ], "block" : "stonecutter", @@ -2292,7 +2292,7 @@ { "legacyId" : -235, "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5825 + "blockRuntimeId" : 24 } ], "block" : "stonecutter", @@ -2313,7 +2313,7 @@ "legacyId" : -284, "id" : "minecraft:polished_blackstone_brick_slab", "count" : 2, - "blockRuntimeId" : 5831 + "blockRuntimeId" : 4175 } ], "block" : "stonecutter", @@ -2333,7 +2333,7 @@ { "legacyId" : -275, "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5833 + "blockRuntimeId" : 4425 } ], "block" : "stonecutter", @@ -2353,7 +2353,7 @@ { "legacyId" : -278, "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5841 + "blockRuntimeId" : 978 } ], "block" : "stonecutter", @@ -2373,7 +2373,7 @@ { "legacyId" : -274, "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 6003 + "blockRuntimeId" : 4636 } ], "block" : "stonecutter", @@ -2393,7 +2393,7 @@ { "legacyId" : 1, "id" : "minecraft:stone", - "blockRuntimeId" : 7181 + "blockRuntimeId" : 665 } ], "block" : "stonecutter", @@ -2414,7 +2414,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7257 + "blockRuntimeId" : 6619 } ], "block" : "stonecutter", @@ -2435,7 +2435,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7257 + "blockRuntimeId" : 6619 } ], "block" : "stonecutter", @@ -2455,7 +2455,7 @@ { "legacyId" : -173, "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6381 + "blockRuntimeId" : 6588 } ], "block" : "stonecutter", @@ -2475,7 +2475,7 @@ { "legacyId" : -173, "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6381 + "blockRuntimeId" : 6588 } ], "block" : "stonecutter", @@ -2495,7 +2495,7 @@ { "legacyId" : -291, "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5828 + "blockRuntimeId" : 3687 } ], "block" : "stonecutter", @@ -2515,7 +2515,7 @@ { "legacyId" : 1, "id" : "minecraft:stone", - "blockRuntimeId" : 7179 + "blockRuntimeId" : 663 } ], "block" : "stonecutter", @@ -2536,7 +2536,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7259 + "blockRuntimeId" : 6621 } ], "block" : "stonecutter", @@ -2557,7 +2557,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7259 + "blockRuntimeId" : 6621 } ], "block" : "stonecutter", @@ -2577,7 +2577,7 @@ { "legacyId" : -172, "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6389 + "blockRuntimeId" : 4139 } ], "block" : "stonecutter", @@ -2597,7 +2597,7 @@ { "legacyId" : -172, "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6389 + "blockRuntimeId" : 4139 } ], "block" : "stonecutter", @@ -2618,7 +2618,7 @@ "legacyId" : -293, "id" : "minecraft:polished_blackstone_slab", "count" : 2, - "blockRuntimeId" : 6034 + "blockRuntimeId" : 5942 } ], "block" : "stonecutter", @@ -2638,7 +2638,7 @@ { "legacyId" : -292, "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6036 + "blockRuntimeId" : 4245 } ], "block" : "stonecutter", @@ -2658,7 +2658,7 @@ { "legacyId" : -297, "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6044 + "blockRuntimeId" : 6640 } ], "block" : "stonecutter", @@ -2679,7 +2679,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7240 + "blockRuntimeId" : 6602 } ], "block" : "stonecutter", @@ -2699,7 +2699,7 @@ { "legacyId" : -4, "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6444 + "blockRuntimeId" : 206 } ], "block" : "stonecutter", @@ -2719,7 +2719,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7238 + "blockRuntimeId" : 6600 } ], "block" : "stonecutter", @@ -2738,7 +2738,7 @@ { "legacyId" : -2, "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6452 + "blockRuntimeId" : 7205 } ], "block" : "stonecutter", @@ -2757,7 +2757,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1330 + "blockRuntimeId" : 1198 } ], "block" : "stonecutter", @@ -2776,7 +2776,7 @@ { "legacyId" : 201, "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6530 + "blockRuntimeId" : 7658 } ], "block" : "stonecutter", @@ -2796,7 +2796,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7237 + "blockRuntimeId" : 6599 } ], "block" : "stonecutter", @@ -2815,7 +2815,7 @@ { "legacyId" : 203, "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6540 + "blockRuntimeId" : 7697 } ], "block" : "stonecutter", @@ -2834,7 +2834,7 @@ { "legacyId" : -304, "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6560 + "blockRuntimeId" : 6316 } ], "block" : "stonecutter", @@ -2853,7 +2853,7 @@ { "legacyId" : 155, "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6549 + "blockRuntimeId" : 3702 } ], "block" : "stonecutter", @@ -2872,7 +2872,7 @@ { "legacyId" : 155, "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6550 + "blockRuntimeId" : 3703 } ], "block" : "stonecutter", @@ -2892,7 +2892,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7226 + "blockRuntimeId" : 255 } ], "block" : "stonecutter", @@ -2911,7 +2911,7 @@ { "legacyId" : 156, "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6562 + "blockRuntimeId" : 4723 } ], "block" : "stonecutter", @@ -2931,7 +2931,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7243 + "blockRuntimeId" : 6605 } ], "block" : "stonecutter", @@ -2950,7 +2950,7 @@ { "legacyId" : -184, "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6628 + "blockRuntimeId" : 6493 } ], "block" : "stonecutter", @@ -2969,7 +2969,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1332 + "blockRuntimeId" : 1200 } ], "block" : "stonecutter", @@ -2989,7 +2989,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7236 + "blockRuntimeId" : 6598 } ], "block" : "stonecutter", @@ -3008,7 +3008,7 @@ { "legacyId" : 179, "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6638 + "blockRuntimeId" : 6473 } ], "block" : "stonecutter", @@ -3027,7 +3027,7 @@ { "legacyId" : 179, "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6637 + "blockRuntimeId" : 6472 } ], "block" : "stonecutter", @@ -3046,7 +3046,7 @@ { "legacyId" : 180, "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6640 + "blockRuntimeId" : 5300 } ], "block" : "stonecutter", @@ -3065,7 +3065,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1331 + "blockRuntimeId" : 1199 } ], "block" : "stonecutter", @@ -3085,7 +3085,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7221 + "blockRuntimeId" : 250 } ], "block" : "stonecutter", @@ -3104,7 +3104,7 @@ { "legacyId" : 24, "id" : "minecraft:sandstone", - "blockRuntimeId" : 6711 + "blockRuntimeId" : 3660 } ], "block" : "stonecutter", @@ -3123,7 +3123,7 @@ { "legacyId" : 24, "id" : "minecraft:sandstone", - "blockRuntimeId" : 6710 + "blockRuntimeId" : 3659 } ], "block" : "stonecutter", @@ -3142,7 +3142,7 @@ { "legacyId" : 128, "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6713 + "blockRuntimeId" : 3592 } ], "block" : "stonecutter", @@ -3161,7 +3161,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1324 + "blockRuntimeId" : 1192 } ], "block" : "stonecutter", @@ -3182,7 +3182,7 @@ "legacyId" : -293, "id" : "minecraft:polished_blackstone_slab", "count" : 2, - "blockRuntimeId" : 6034 + "blockRuntimeId" : 5942 } ], "block" : "stonecutter", @@ -3203,7 +3203,7 @@ "legacyId" : -284, "id" : "minecraft:polished_blackstone_brick_slab", "count" : 2, - "blockRuntimeId" : 5831 + "blockRuntimeId" : 4175 } ], "block" : "stonecutter", @@ -3223,7 +3223,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7220 + "blockRuntimeId" : 249 } ], "block" : "stonecutter", @@ -3244,7 +3244,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 2, - "blockRuntimeId" : 7269 + "blockRuntimeId" : 6631 } ], "block" : "stonecutter", @@ -3264,7 +3264,7 @@ { "legacyId" : -185, "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6884 + "blockRuntimeId" : 7642 } ], "block" : "stonecutter", @@ -3285,7 +3285,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 2, - "blockRuntimeId" : 7253 + "blockRuntimeId" : 6615 } ], "block" : "stonecutter", @@ -3305,7 +3305,7 @@ { "legacyId" : -176, "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6892 + "blockRuntimeId" : 5496 } ], "block" : "stonecutter", @@ -3326,7 +3326,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 2, - "blockRuntimeId" : 7242 + "blockRuntimeId" : 6604 } ], "block" : "stonecutter", @@ -3346,7 +3346,7 @@ { "legacyId" : -177, "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6900 + "blockRuntimeId" : 3632 } ], "block" : "stonecutter", @@ -3366,7 +3366,7 @@ { "legacyId" : -292, "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6036 + "blockRuntimeId" : 4245 } ], "block" : "stonecutter", @@ -3385,7 +3385,7 @@ { "legacyId" : -180, "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5709 + "blockRuntimeId" : 641 } ], "block" : "stonecutter", @@ -3404,7 +3404,7 @@ { "legacyId" : 98, "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7286 + "blockRuntimeId" : 6438 } ], "block" : "stonecutter", @@ -3423,7 +3423,7 @@ { "legacyId" : 98, "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7289 + "blockRuntimeId" : 6441 } ], "block" : "stonecutter", @@ -3443,7 +3443,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7225 + "blockRuntimeId" : 254 } ], "block" : "stonecutter", @@ -3463,7 +3463,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 2, - "blockRuntimeId" : 7225 + "blockRuntimeId" : 254 } ], "block" : "stonecutter", @@ -3482,7 +3482,7 @@ { "legacyId" : 109, "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7184 + "blockRuntimeId" : 939 } ], "block" : "stonecutter", @@ -3501,7 +3501,7 @@ { "legacyId" : 109, "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7184 + "blockRuntimeId" : 939 } ], "block" : "stonecutter", @@ -3520,7 +3520,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1326 + "blockRuntimeId" : 1194 } ], "block" : "stonecutter", @@ -3539,7 +3539,7 @@ { "legacyId" : 139, "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1326 + "blockRuntimeId" : 1194 } ], "block" : "stonecutter", @@ -3559,7 +3559,7 @@ { "legacyId" : -297, "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6044 + "blockRuntimeId" : 6640 } ], "block" : "stonecutter", @@ -3579,7 +3579,7 @@ { "legacyId" : -278, "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5841 + "blockRuntimeId" : 978 } ], "block" : "stonecutter", @@ -3600,7 +3600,7 @@ "legacyId" : -351, "id" : "minecraft:waxed_cut_copper", "count" : 4, - "blockRuntimeId" : 7684 + "blockRuntimeId" : 7235 } ], "block" : "stonecutter", @@ -3621,7 +3621,7 @@ "legacyId" : -365, "id" : "minecraft:waxed_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 7685 + "blockRuntimeId" : 7757 } ], "block" : "stonecutter", @@ -3642,7 +3642,7 @@ "legacyId" : -358, "id" : "minecraft:waxed_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7687 + "blockRuntimeId" : 403 } ], "block" : "stonecutter", @@ -3663,7 +3663,7 @@ "legacyId" : -366, "id" : "minecraft:waxed_exposed_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 7699 + "blockRuntimeId" : 247 } ], "block" : "stonecutter", @@ -3684,7 +3684,7 @@ "legacyId" : -365, "id" : "minecraft:waxed_cut_copper_slab", "count" : 2, - "blockRuntimeId" : 7685 + "blockRuntimeId" : 7757 } ], "block" : "stonecutter", @@ -3704,7 +3704,7 @@ { "legacyId" : -358, "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7687 + "blockRuntimeId" : 403 } ], "block" : "stonecutter", @@ -3725,7 +3725,7 @@ "legacyId" : -352, "id" : "minecraft:waxed_exposed_cut_copper", "count" : 4, - "blockRuntimeId" : 7698 + "blockRuntimeId" : 3814 } ], "block" : "stonecutter", @@ -3746,7 +3746,7 @@ "legacyId" : -359, "id" : "minecraft:waxed_exposed_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7701 + "blockRuntimeId" : 3891 } ], "block" : "stonecutter", @@ -3767,7 +3767,7 @@ "legacyId" : -366, "id" : "minecraft:waxed_exposed_cut_copper_slab", "count" : 2, - "blockRuntimeId" : 7699 + "blockRuntimeId" : 247 } ], "block" : "stonecutter", @@ -3787,7 +3787,7 @@ { "legacyId" : -359, "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7701 + "blockRuntimeId" : 3891 } ], "block" : "stonecutter", @@ -3808,7 +3808,7 @@ "legacyId" : -447, "id" : "minecraft:waxed_oxidized_cut_copper", "count" : 4, - "blockRuntimeId" : 7712 + "blockRuntimeId" : 214 } ], "block" : "stonecutter", @@ -3829,7 +3829,7 @@ "legacyId" : -449, "id" : "minecraft:waxed_oxidized_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 7713 + "blockRuntimeId" : 716 } ], "block" : "stonecutter", @@ -3850,7 +3850,7 @@ "legacyId" : -448, "id" : "minecraft:waxed_oxidized_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7715 + "blockRuntimeId" : 5764 } ], "block" : "stonecutter", @@ -3870,7 +3870,7 @@ { "legacyId" : -449, "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7713 + "blockRuntimeId" : 716 } ], "block" : "stonecutter", @@ -3890,7 +3890,7 @@ { "legacyId" : -448, "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7715 + "blockRuntimeId" : 5764 } ], "block" : "stonecutter", @@ -3911,7 +3911,7 @@ "legacyId" : -353, "id" : "minecraft:waxed_weathered_cut_copper", "count" : 4, - "blockRuntimeId" : 7726 + "blockRuntimeId" : 4807 } ], "block" : "stonecutter", @@ -3932,7 +3932,7 @@ "legacyId" : -367, "id" : "minecraft:waxed_weathered_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 7727 + "blockRuntimeId" : 6436 } ], "block" : "stonecutter", @@ -3953,7 +3953,7 @@ "legacyId" : -360, "id" : "minecraft:waxed_weathered_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7729 + "blockRuntimeId" : 6091 } ], "block" : "stonecutter", @@ -3974,7 +3974,7 @@ "legacyId" : -367, "id" : "minecraft:waxed_weathered_cut_copper_slab", "count" : 2, - "blockRuntimeId" : 7727 + "blockRuntimeId" : 6436 } ], "block" : "stonecutter", @@ -3994,7 +3994,7 @@ { "legacyId" : -360, "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7729 + "blockRuntimeId" : 6091 } ], "block" : "stonecutter", @@ -4015,7 +4015,7 @@ "legacyId" : -349, "id" : "minecraft:weathered_cut_copper", "count" : 4, - "blockRuntimeId" : 7740 + "blockRuntimeId" : 7139 } ], "block" : "stonecutter", @@ -4036,7 +4036,7 @@ "legacyId" : -363, "id" : "minecraft:weathered_cut_copper_slab", "count" : 8, - "blockRuntimeId" : 7741 + "blockRuntimeId" : 5977 } ], "block" : "stonecutter", @@ -4057,7 +4057,7 @@ "legacyId" : -356, "id" : "minecraft:weathered_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7743 + "blockRuntimeId" : 4253 } ], "block" : "stonecutter", @@ -4078,7 +4078,7 @@ "legacyId" : -363, "id" : "minecraft:weathered_cut_copper_slab", "count" : 2, - "blockRuntimeId" : 7741 + "blockRuntimeId" : 5977 } ], "block" : "stonecutter", @@ -4098,7 +4098,7 @@ { "legacyId" : -356, "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7743 + "blockRuntimeId" : 4253 } ], "block" : "stonecutter", @@ -4118,7 +4118,7 @@ { "legacyId" : -275, "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5833 + "blockRuntimeId" : 4425 } ], "block" : "stonecutter", @@ -4143,7 +4143,7 @@ { "legacyId" : 47, "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 + "blockRuntimeId" : 6545 } ], "shape" : [ @@ -4191,7 +4191,8 @@ "output" : [ { "legacyId" : -140, - "id" : "minecraft:acacia_button" + "id" : "minecraft:acacia_button", + "blockRuntimeId" : 7173 } ], "shape" : [ @@ -4214,7 +4215,7 @@ { "legacyId" : -141, "id" : "minecraft:birch_button", - "blockRuntimeId" : 356 + "blockRuntimeId" : 7708 } ], "shape" : [ @@ -4237,7 +4238,7 @@ { "legacyId" : -142, "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3937 + "blockRuntimeId" : 93 } ], "shape" : [ @@ -4260,7 +4261,7 @@ { "legacyId" : -143, "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5210 + "blockRuntimeId" : 116 } ], "shape" : [ @@ -4283,7 +4284,7 @@ { "legacyId" : -144, "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6963 + "blockRuntimeId" : 4269 } ], "shape" : [ @@ -4306,7 +4307,7 @@ { "legacyId" : 54, "id" : "minecraft:chest", - "blockRuntimeId" : 1123 + "blockRuntimeId" : 7057 } ], "shape" : [ @@ -4340,7 +4341,7 @@ { "legacyId" : 151, "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4067 + "blockRuntimeId" : 4180 } ], "shape" : [ @@ -4429,7 +4430,7 @@ { "legacyId" : 84, "id" : "minecraft:jukebox", - "blockRuntimeId" : 5209 + "blockRuntimeId" : 4830 } ], "shape" : [ @@ -4459,7 +4460,7 @@ { "legacyId" : 25, "id" : "minecraft:noteblock", - "blockRuntimeId" : 5717 + "blockRuntimeId" : 359 } ], "shape" : [ @@ -4484,7 +4485,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7223 + "blockRuntimeId" : 252 } ], "shape" : [ @@ -4507,7 +4508,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7227 + "blockRuntimeId" : 256 } ], "shape" : [ @@ -4530,7 +4531,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7221 + "blockRuntimeId" : 250 } ], "shape" : [ @@ -4596,7 +4597,7 @@ { "legacyId" : 33, "id" : "minecraft:piston", - "blockRuntimeId" : 5789 + "blockRuntimeId" : 930 } ], "shape" : [ @@ -4621,7 +4622,7 @@ { "legacyId" : -150, "id" : "minecraft:acacia_pressure_plate", - "blockRuntimeId" : 60 + "blockRuntimeId" : 5203 } ], "shape" : [ @@ -4644,7 +4645,7 @@ { "legacyId" : -151, "id" : "minecraft:birch_pressure_plate", - "blockRuntimeId" : 416 + "blockRuntimeId" : 3560 } ], "shape" : [ @@ -4667,7 +4668,7 @@ { "legacyId" : -152, "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3997 + "blockRuntimeId" : 5880 } ], "shape" : [ @@ -4690,7 +4691,7 @@ { "legacyId" : -153, "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5270 + "blockRuntimeId" : 3640 } ], "shape" : [ @@ -4713,7 +4714,7 @@ { "legacyId" : -154, "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 7023 + "blockRuntimeId" : 3764 } ], "shape" : [ @@ -4758,7 +4759,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 6, - "blockRuntimeId" : 7270 + "blockRuntimeId" : 6632 } ], "shape" : [ @@ -4782,7 +4783,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 6, - "blockRuntimeId" : 7268 + "blockRuntimeId" : 6630 } ], "shape" : [ @@ -4805,7 +4806,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7224 + "blockRuntimeId" : 253 } ], "shape" : [ @@ -4828,7 +4829,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7225 + "blockRuntimeId" : 254 } ], "shape" : [ @@ -4851,7 +4852,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7220 + "blockRuntimeId" : 249 } ], "shape" : [ @@ -4880,7 +4881,7 @@ "legacyId" : 50, "id" : "minecraft:torch", "count" : 4, - "blockRuntimeId" : 7354 + "blockRuntimeId" : 732 } ], "shape" : [ @@ -4909,7 +4910,7 @@ "legacyId" : 50, "id" : "minecraft:torch", "count" : 4, - "blockRuntimeId" : 7354 + "blockRuntimeId" : 732 } ], "shape" : [ @@ -4934,7 +4935,7 @@ "legacyId" : -145, "id" : "minecraft:acacia_trapdoor", "count" : 2, - "blockRuntimeId" : 100 + "blockRuntimeId" : 5539 } ], "shape" : [ @@ -4959,7 +4960,7 @@ "legacyId" : -146, "id" : "minecraft:birch_trapdoor", "count" : 2, - "blockRuntimeId" : 456 + "blockRuntimeId" : 6524 } ], "shape" : [ @@ -4984,7 +4985,7 @@ "legacyId" : -147, "id" : "minecraft:dark_oak_trapdoor", "count" : 2, - "blockRuntimeId" : 4021 + "blockRuntimeId" : 7444 } ], "shape" : [ @@ -5009,7 +5010,7 @@ "legacyId" : -148, "id" : "minecraft:jungle_trapdoor", "count" : 2, - "blockRuntimeId" : 5310 + "blockRuntimeId" : 5331 } ], "shape" : [ @@ -5034,7 +5035,7 @@ "legacyId" : -149, "id" : "minecraft:spruce_trapdoor", "count" : 2, - "blockRuntimeId" : 7063 + "blockRuntimeId" : 6443 } ], "shape" : [ @@ -5058,7 +5059,7 @@ "legacyId" : 96, "id" : "minecraft:trapdoor", "count" : 2, - "blockRuntimeId" : 7360 + "blockRuntimeId" : 227 } ], "shape" : [ @@ -5093,7 +5094,7 @@ "legacyId" : 131, "id" : "minecraft:tripwire_hook", "count" : 2, - "blockRuntimeId" : 7398 + "blockRuntimeId" : 5838 } ], "shape" : [ @@ -5117,7 +5118,7 @@ { "legacyId" : 143, "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7841 + "blockRuntimeId" : 6356 } ], "shape" : [ @@ -5139,7 +5140,7 @@ { "legacyId" : 72, "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7885 + "blockRuntimeId" : 8005 } ], "shape" : [ @@ -5162,7 +5163,7 @@ { "legacyId" : 58, "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3771 + "blockRuntimeId" : 5778 } ], "shape" : [ @@ -5187,7 +5188,7 @@ "legacyId" : 163, "id" : "minecraft:acacia_stairs", "count" : 4, - "blockRuntimeId" : 76 + "blockRuntimeId" : 6123 } ], "shape" : [ @@ -14063,7 +14064,7 @@ "legacyId" : 135, "id" : "minecraft:birch_stairs", "count" : 4, - "blockRuntimeId" : 432 + "blockRuntimeId" : 6957 } ], "shape" : [ @@ -14092,7 +14093,7 @@ { "legacyId" : 155, "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6549 + "blockRuntimeId" : 3702 } ], "shape" : [ @@ -14116,7 +14117,7 @@ { "legacyId" : 98, "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7289 + "blockRuntimeId" : 6441 } ], "shape" : [ @@ -14145,7 +14146,7 @@ "legacyId" : 164, "id" : "minecraft:dark_oak_stairs", "count" : 4, - "blockRuntimeId" : 4013 + "blockRuntimeId" : 5019 } ], "shape" : [ @@ -14173,7 +14174,7 @@ { "legacyId" : 179, "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6637 + "blockRuntimeId" : 6472 } ], "shape" : [ @@ -14197,7 +14198,7 @@ { "legacyId" : 24, "id" : "minecraft:sandstone", - "blockRuntimeId" : 6710 + "blockRuntimeId" : 3659 } ], "shape" : [ @@ -14222,7 +14223,7 @@ "legacyId" : 136, "id" : "minecraft:jungle_stairs", "count" : 4, - "blockRuntimeId" : 5286 + "blockRuntimeId" : 6883 } ], "shape" : [ @@ -14247,7 +14248,7 @@ { "legacyId" : 201, "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6530 + "blockRuntimeId" : 7658 } ], "shape" : [ @@ -14276,7 +14277,7 @@ { "legacyId" : -204, "id" : "minecraft:loom", - "blockRuntimeId" : 5583 + "blockRuntimeId" : 3831 } ], "shape" : [ @@ -14359,7 +14360,7 @@ "legacyId" : 85, "id" : "minecraft:fence", "count" : 3, - "blockRuntimeId" : 4778 + "blockRuntimeId" : 7310 } ], "shape" : [ @@ -14388,7 +14389,7 @@ { "legacyId" : 187, "id" : "minecraft:acacia_fence_gate", - "blockRuntimeId" : 44 + "blockRuntimeId" : 7528 } ], "shape" : [ @@ -14412,7 +14413,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5804 + "blockRuntimeId" : 5999 } ], "shape" : [ @@ -14436,7 +14437,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5804 + "blockRuntimeId" : 5999 } ], "shape" : [ @@ -14460,7 +14461,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5804 + "blockRuntimeId" : 5999 } ], "shape" : [ @@ -14484,7 +14485,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5804 + "blockRuntimeId" : 5999 } ], "shape" : [ @@ -14508,7 +14509,7 @@ "legacyId" : 163, "id" : "minecraft:acacia_stairs", "count" : 4, - "blockRuntimeId" : 76 + "blockRuntimeId" : 6123 } ], "shape" : [ @@ -14533,7 +14534,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7809 + "blockRuntimeId" : 3483 } ], "shape" : [ @@ -14558,7 +14559,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7815 + "blockRuntimeId" : 3489 } ], "shape" : [ @@ -14583,7 +14584,7 @@ "legacyId" : 158, "id" : "minecraft:wooden_slab", "count" : 6, - "blockRuntimeId" : 7905 + "blockRuntimeId" : 5224 } ], "shape" : [ @@ -14617,7 +14618,7 @@ "legacyId" : 126, "id" : "minecraft:activator_rail", "count" : 6, - "blockRuntimeId" : 122 + "blockRuntimeId" : 323 } ], "shape" : [ @@ -14633,7 +14634,7 @@ "type" : 1, "input" : { "A" : { - "legacyId" : 625, + "legacyId" : 624, "id" : "minecraft:amethyst_shard", "damage" : 32767 } @@ -14642,7 +14643,7 @@ { "legacyId" : -327, "id" : "minecraft:amethyst_block", - "blockRuntimeId" : 136 + "blockRuntimeId" : 304 } ], "shape" : [ @@ -14672,7 +14673,7 @@ "legacyId" : 1, "id" : "minecraft:stone", "count" : 2, - "blockRuntimeId" : 7182 + "blockRuntimeId" : 666 } ], "block" : "crafting_table", @@ -14693,7 +14694,7 @@ "legacyId" : -171, "id" : "minecraft:andesite_stairs", "count" : 4, - "blockRuntimeId" : 144 + "blockRuntimeId" : 5258 } ], "shape" : [ @@ -14719,7 +14720,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1323 + "blockRuntimeId" : 1191 } ], "shape" : [ @@ -14748,7 +14749,7 @@ { "legacyId" : 145, "id" : "minecraft:anvil", - "blockRuntimeId" : 152 + "blockRuntimeId" : 6508 } ], "shape" : [ @@ -14985,7 +14986,7 @@ { "legacyId" : -203, "id" : "minecraft:barrel", - "blockRuntimeId" : 201 + "blockRuntimeId" : 4450 } ], "shape" : [ @@ -15015,7 +15016,7 @@ { "legacyId" : -203, "id" : "minecraft:barrel", - "blockRuntimeId" : 201 + "blockRuntimeId" : 4450 } ], "shape" : [ @@ -15045,7 +15046,7 @@ { "legacyId" : -203, "id" : "minecraft:barrel", - "blockRuntimeId" : 201 + "blockRuntimeId" : 4450 } ], "shape" : [ @@ -15105,7 +15106,7 @@ { "legacyId" : 138, "id" : "minecraft:beacon", - "blockRuntimeId" : 217 + "blockRuntimeId" : 145 } ], "shape" : [ @@ -15135,7 +15136,7 @@ { "legacyId" : -219, "id" : "minecraft:beehive", - "blockRuntimeId" : 260 + "blockRuntimeId" : 6032 } ], "shape" : [ @@ -15165,7 +15166,7 @@ { "legacyId" : -219, "id" : "minecraft:beehive", - "blockRuntimeId" : 260 + "blockRuntimeId" : 6032 } ], "shape" : [ @@ -15195,7 +15196,7 @@ { "legacyId" : -219, "id" : "minecraft:beehive", - "blockRuntimeId" : 260 + "blockRuntimeId" : 6032 } ], "shape" : [ @@ -15328,7 +15329,7 @@ "legacyId" : 85, "id" : "minecraft:fence", "count" : 3, - "blockRuntimeId" : 4776 + "blockRuntimeId" : 7308 } ], "shape" : [ @@ -15357,7 +15358,7 @@ { "legacyId" : 184, "id" : "minecraft:birch_fence_gate", - "blockRuntimeId" : 400 + "blockRuntimeId" : 3782 } ], "shape" : [ @@ -15382,7 +15383,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5802 + "blockRuntimeId" : 5997 } ], "shape" : [ @@ -15406,7 +15407,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5802 + "blockRuntimeId" : 5997 } ], "shape" : [ @@ -15430,7 +15431,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5802 + "blockRuntimeId" : 5997 } ], "shape" : [ @@ -15454,7 +15455,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5802 + "blockRuntimeId" : 5997 } ], "shape" : [ @@ -15478,7 +15479,7 @@ "legacyId" : 135, "id" : "minecraft:birch_stairs", "count" : 4, - "blockRuntimeId" : 432 + "blockRuntimeId" : 6957 } ], "shape" : [ @@ -15504,7 +15505,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7807 + "blockRuntimeId" : 3481 } ], "shape" : [ @@ -15529,7 +15530,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7813 + "blockRuntimeId" : 3487 } ], "shape" : [ @@ -15554,7 +15555,7 @@ "legacyId" : 158, "id" : "minecraft:wooden_slab", "count" : 6, - "blockRuntimeId" : 7903 + "blockRuntimeId" : 5222 } ], "shape" : [ @@ -15610,7 +15611,7 @@ { "legacyId" : -428, "id" : "minecraft:black_candle", - "blockRuntimeId" : 478 + "blockRuntimeId" : 171 } ], "block" : "crafting_table", @@ -15634,7 +15635,7 @@ { "legacyId" : -428, "id" : "minecraft:black_candle", - "blockRuntimeId" : 478 + "blockRuntimeId" : 171 } ], "block" : "crafting_table", @@ -15655,7 +15656,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 978 + "blockRuntimeId" : 971 } ], "shape" : [ @@ -15682,7 +15683,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 978 + "blockRuntimeId" : 971 } ], "shape" : [ @@ -15743,7 +15744,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3675 + "blockRuntimeId" : 6244 } ], "block" : "crafting_table", @@ -15799,7 +15800,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3675 + "blockRuntimeId" : 6244 } ], "block" : "crafting_table", @@ -15861,7 +15862,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7100 + "blockRuntimeId" : 1155 } ], "shape" : [ @@ -15891,7 +15892,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7100 + "blockRuntimeId" : 1155 } ], "shape" : [ @@ -15917,7 +15918,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7116 + "blockRuntimeId" : 4823 } ], "shape" : [ @@ -15946,7 +15947,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7116 + "blockRuntimeId" : 4823 } ], "shape" : [ @@ -15976,7 +15977,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7132 + "blockRuntimeId" : 6114 } ], "shape" : [ @@ -16006,7 +16007,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7132 + "blockRuntimeId" : 6114 } ], "shape" : [ @@ -16032,7 +16033,7 @@ "legacyId" : -282, "id" : "minecraft:blackstone_slab", "count" : 6, - "blockRuntimeId" : 497 + "blockRuntimeId" : 918 } ], "shape" : [ @@ -16056,7 +16057,7 @@ "legacyId" : -276, "id" : "minecraft:blackstone_stairs", "count" : 4, - "blockRuntimeId" : 499 + "blockRuntimeId" : 6973 } ], "shape" : [ @@ -16082,7 +16083,7 @@ "legacyId" : -277, "id" : "minecraft:blackstone_wall", "count" : 6, - "blockRuntimeId" : 507 + "blockRuntimeId" : 3919 } ], "shape" : [ @@ -16116,7 +16117,7 @@ { "legacyId" : -196, "id" : "minecraft:blast_furnace", - "blockRuntimeId" : 669 + "blockRuntimeId" : 7509 } ], "shape" : [ @@ -16194,8 +16195,7 @@ "output" : [ { "legacyId" : -424, - "id" : "minecraft:blue_candle", - "blockRuntimeId" : 675 + "id" : "minecraft:blue_candle" } ], "block" : "crafting_table", @@ -16218,8 +16218,7 @@ "output" : [ { "legacyId" : -424, - "id" : "minecraft:blue_candle", - "blockRuntimeId" : 675 + "id" : "minecraft:blue_candle" } ], "block" : "crafting_table", @@ -16240,7 +16239,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 974 + "blockRuntimeId" : 967 } ], "shape" : [ @@ -16267,7 +16266,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 974 + "blockRuntimeId" : 967 } ], "shape" : [ @@ -16328,7 +16327,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3671 + "blockRuntimeId" : 6240 } ], "block" : "crafting_table", @@ -16384,7 +16383,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3671 + "blockRuntimeId" : 6240 } ], "block" : "crafting_table", @@ -16441,7 +16440,7 @@ { "legacyId" : -11, "id" : "minecraft:blue_ice", - "blockRuntimeId" : 691 + "blockRuntimeId" : 6981 } ], "shape" : [ @@ -16471,7 +16470,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7096 + "blockRuntimeId" : 1151 } ], "shape" : [ @@ -16501,7 +16500,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7096 + "blockRuntimeId" : 1151 } ], "shape" : [ @@ -16527,7 +16526,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7112 + "blockRuntimeId" : 4819 } ], "shape" : [ @@ -16556,7 +16555,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7112 + "blockRuntimeId" : 4819 } ], "shape" : [ @@ -16586,7 +16585,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7128 + "blockRuntimeId" : 6110 } ], "shape" : [ @@ -16616,7 +16615,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7128 + "blockRuntimeId" : 6110 } ], "shape" : [ @@ -16667,7 +16666,7 @@ { "legacyId" : 216, "id" : "minecraft:bone_block", - "blockRuntimeId" : 692 + "blockRuntimeId" : 4198 } ], "shape" : [ @@ -16767,7 +16766,7 @@ { "legacyId" : 47, "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 + "blockRuntimeId" : 6545 } ], "shape" : [ @@ -16797,7 +16796,7 @@ { "legacyId" : 47, "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 + "blockRuntimeId" : 6545 } ], "shape" : [ @@ -17005,7 +17004,7 @@ { "legacyId" : 45, "id" : "minecraft:brick_block", - "blockRuntimeId" : 875 + "blockRuntimeId" : 4721 } ], "shape" : [ @@ -17030,7 +17029,7 @@ "legacyId" : 108, "id" : "minecraft:brick_stairs", "count" : 4, - "blockRuntimeId" : 876 + "blockRuntimeId" : 6421 } ], "shape" : [ @@ -17056,7 +17055,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1325 + "blockRuntimeId" : 1193 } ], "shape" : [ @@ -17114,7 +17113,7 @@ { "legacyId" : -425, "id" : "minecraft:brown_candle", - "blockRuntimeId" : 884 + "blockRuntimeId" : 5799 } ], "block" : "crafting_table", @@ -17138,7 +17137,7 @@ { "legacyId" : -425, "id" : "minecraft:brown_candle", - "blockRuntimeId" : 884 + "blockRuntimeId" : 5799 } ], "block" : "crafting_table", @@ -17159,7 +17158,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 975 + "blockRuntimeId" : 968 } ], "shape" : [ @@ -17186,7 +17185,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 975 + "blockRuntimeId" : 968 } ], "shape" : [ @@ -17247,7 +17246,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3672 + "blockRuntimeId" : 6241 } ], "block" : "crafting_table", @@ -17303,7 +17302,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3672 + "blockRuntimeId" : 6241 } ], "block" : "crafting_table", @@ -17346,7 +17345,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7097 + "blockRuntimeId" : 1152 } ], "shape" : [ @@ -17376,7 +17375,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7097 + "blockRuntimeId" : 1152 } ], "shape" : [ @@ -17402,7 +17401,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7113 + "blockRuntimeId" : 4820 } ], "shape" : [ @@ -17431,7 +17430,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7113 + "blockRuntimeId" : 4820 } ], "shape" : [ @@ -17461,7 +17460,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7129 + "blockRuntimeId" : 6111 } ], "shape" : [ @@ -17491,7 +17490,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7129 + "blockRuntimeId" : 6111 } ], "shape" : [ @@ -18322,7 +18321,7 @@ { "legacyId" : -412, "id" : "minecraft:candle", - "blockRuntimeId" : 953 + "blockRuntimeId" : 7345 } ], "shape" : [ @@ -18379,7 +18378,7 @@ { "legacyId" : -200, "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 + "blockRuntimeId" : 8227 } ], "shape" : [ @@ -18409,7 +18408,7 @@ { "legacyId" : -200, "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 + "blockRuntimeId" : 8227 } ], "shape" : [ @@ -18439,7 +18438,7 @@ { "legacyId" : -200, "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 + "blockRuntimeId" : 8227 } ], "shape" : [ @@ -18517,7 +18516,7 @@ { "legacyId" : 54, "id" : "minecraft:chest", - "blockRuntimeId" : 1123 + "blockRuntimeId" : 7057 } ], "shape" : [ @@ -18542,7 +18541,7 @@ { "legacyId" : 54, "id" : "minecraft:chest", - "blockRuntimeId" : 1123 + "blockRuntimeId" : 7057 } ], "shape" : [ @@ -18595,7 +18594,7 @@ { "legacyId" : -395, "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1129 + "blockRuntimeId" : 5190 } ], "shape" : [ @@ -18619,7 +18618,7 @@ { "legacyId" : -302, "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1130 + "blockRuntimeId" : 7191 } ], "shape" : [ @@ -18643,7 +18642,7 @@ { "legacyId" : -279, "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 + "blockRuntimeId" : 5018 } ], "shape" : [ @@ -18667,7 +18666,7 @@ { "legacyId" : 82, "id" : "minecraft:clay", - "blockRuntimeId" : 1139 + "blockRuntimeId" : 7066 } ], "shape" : [ @@ -18742,7 +18741,7 @@ { "legacyId" : 173, "id" : "minecraft:coal_block", - "blockRuntimeId" : 1141 + "blockRuntimeId" : 5348 } ], "shape" : [ @@ -18772,7 +18771,7 @@ "legacyId" : 3, "id" : "minecraft:dirt", "count" : 4, - "blockRuntimeId" : 4485 + "blockRuntimeId" : 5702 } ], "shape" : [ @@ -18797,7 +18796,7 @@ "legacyId" : -380, "id" : "minecraft:cobbled_deepslate_slab", "count" : 6, - "blockRuntimeId" : 1146 + "blockRuntimeId" : 7252 } ], "shape" : [ @@ -18821,7 +18820,7 @@ "legacyId" : -381, "id" : "minecraft:cobbled_deepslate_stairs", "count" : 4, - "blockRuntimeId" : 1148 + "blockRuntimeId" : 147 } ], "shape" : [ @@ -18847,7 +18846,7 @@ "legacyId" : -382, "id" : "minecraft:cobbled_deepslate_wall", "count" : 6, - "blockRuntimeId" : 1156 + "blockRuntimeId" : 8024 } ], "shape" : [ @@ -18872,7 +18871,7 @@ "legacyId" : 67, "id" : "minecraft:stone_stairs", "count" : 4, - "blockRuntimeId" : 7278 + "blockRuntimeId" : 3713 } ], "shape" : [ @@ -18898,7 +18897,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1319 + "blockRuntimeId" : 1187 } ], "shape" : [ @@ -19004,7 +19003,7 @@ { "legacyId" : -213, "id" : "minecraft:composter", - "blockRuntimeId" : 3635 + "blockRuntimeId" : 5365 } ], "shape" : [ @@ -19029,7 +19028,7 @@ { "legacyId" : -213, "id" : "minecraft:composter", - "blockRuntimeId" : 3635 + "blockRuntimeId" : 5365 } ], "shape" : [ @@ -19054,7 +19053,7 @@ { "legacyId" : -213, "id" : "minecraft:composter", - "blockRuntimeId" : 3635 + "blockRuntimeId" : 5365 } ], "shape" : [ @@ -19084,7 +19083,7 @@ { "legacyId" : -157, "id" : "minecraft:conduit", - "blockRuntimeId" : 3676 + "blockRuntimeId" : 4196 } ], "shape" : [ @@ -19136,7 +19135,7 @@ { "legacyId" : -340, "id" : "minecraft:copper_block", - "blockRuntimeId" : 3677 + "blockRuntimeId" : 4607 } ], "shape" : [ @@ -19162,7 +19161,7 @@ "legacyId" : -347, "id" : "minecraft:cut_copper", "count" : 4, - "blockRuntimeId" : 3910 + "blockRuntimeId" : 4645 } ], "shape" : [ @@ -19187,7 +19186,7 @@ "legacyId" : -361, "id" : "minecraft:cut_copper_slab", "count" : 6, - "blockRuntimeId" : 3911 + "blockRuntimeId" : 5191 } ], "shape" : [ @@ -19211,7 +19210,7 @@ "legacyId" : -354, "id" : "minecraft:cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 3913 + "blockRuntimeId" : 4528 } ], "shape" : [ @@ -19237,7 +19236,7 @@ "legacyId" : -348, "id" : "minecraft:exposed_cut_copper", "count" : 4, - "blockRuntimeId" : 4753 + "blockRuntimeId" : 6090 } ], "shape" : [ @@ -19262,7 +19261,7 @@ "legacyId" : -362, "id" : "minecraft:exposed_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 4754 + "blockRuntimeId" : 6491 } ], "shape" : [ @@ -19286,7 +19285,7 @@ "legacyId" : -355, "id" : "minecraft:exposed_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 4756 + "blockRuntimeId" : 4519 } ], "shape" : [ @@ -19311,7 +19310,7 @@ { "legacyId" : 58, "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3771 + "blockRuntimeId" : 5778 } ], "shape" : [ @@ -19335,7 +19334,7 @@ { "legacyId" : 58, "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3771 + "blockRuntimeId" : 5778 } ], "shape" : [ @@ -19360,7 +19359,7 @@ "legacyId" : -350, "id" : "minecraft:oxidized_cut_copper", "count" : 4, - "blockRuntimeId" : 5757 + "blockRuntimeId" : 5428 } ], "shape" : [ @@ -19385,7 +19384,7 @@ "legacyId" : -364, "id" : "minecraft:oxidized_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 5758 + "blockRuntimeId" : 5232 } ], "shape" : [ @@ -19409,7 +19408,7 @@ "legacyId" : -357, "id" : "minecraft:oxidized_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 5760 + "blockRuntimeId" : 361 } ], "shape" : [ @@ -19435,7 +19434,7 @@ "legacyId" : -351, "id" : "minecraft:waxed_cut_copper", "count" : 4, - "blockRuntimeId" : 7684 + "blockRuntimeId" : 7235 } ], "shape" : [ @@ -19460,7 +19459,7 @@ "legacyId" : -365, "id" : "minecraft:waxed_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 7685 + "blockRuntimeId" : 7757 } ], "shape" : [ @@ -19484,7 +19483,7 @@ "legacyId" : -358, "id" : "minecraft:waxed_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7687 + "blockRuntimeId" : 403 } ], "shape" : [ @@ -19510,7 +19509,7 @@ "legacyId" : -352, "id" : "minecraft:waxed_exposed_cut_copper", "count" : 4, - "blockRuntimeId" : 7698 + "blockRuntimeId" : 3814 } ], "shape" : [ @@ -19535,7 +19534,7 @@ "legacyId" : -366, "id" : "minecraft:waxed_exposed_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 7699 + "blockRuntimeId" : 247 } ], "shape" : [ @@ -19559,7 +19558,7 @@ "legacyId" : -359, "id" : "minecraft:waxed_exposed_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7701 + "blockRuntimeId" : 3891 } ], "shape" : [ @@ -19585,7 +19584,7 @@ "legacyId" : -447, "id" : "minecraft:waxed_oxidized_cut_copper", "count" : 4, - "blockRuntimeId" : 7712 + "blockRuntimeId" : 214 } ], "shape" : [ @@ -19610,7 +19609,7 @@ "legacyId" : -449, "id" : "minecraft:waxed_oxidized_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 7713 + "blockRuntimeId" : 716 } ], "shape" : [ @@ -19634,7 +19633,7 @@ "legacyId" : -448, "id" : "minecraft:waxed_oxidized_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7715 + "blockRuntimeId" : 5764 } ], "shape" : [ @@ -19660,7 +19659,7 @@ "legacyId" : -353, "id" : "minecraft:waxed_weathered_cut_copper", "count" : 4, - "blockRuntimeId" : 7726 + "blockRuntimeId" : 4807 } ], "shape" : [ @@ -19685,7 +19684,7 @@ "legacyId" : -367, "id" : "minecraft:waxed_weathered_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 7727 + "blockRuntimeId" : 6436 } ], "shape" : [ @@ -19709,7 +19708,7 @@ "legacyId" : -360, "id" : "minecraft:waxed_weathered_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7729 + "blockRuntimeId" : 6091 } ], "shape" : [ @@ -19735,7 +19734,7 @@ "legacyId" : -349, "id" : "minecraft:weathered_cut_copper", "count" : 4, - "blockRuntimeId" : 7740 + "blockRuntimeId" : 7139 } ], "shape" : [ @@ -19760,7 +19759,7 @@ "legacyId" : -363, "id" : "minecraft:weathered_cut_copper_slab", "count" : 6, - "blockRuntimeId" : 7741 + "blockRuntimeId" : 5977 } ], "shape" : [ @@ -19784,7 +19783,7 @@ "legacyId" : -356, "id" : "minecraft:weathered_cut_copper_stairs", "count" : 4, - "blockRuntimeId" : 7743 + "blockRuntimeId" : 4253 } ], "shape" : [ @@ -19809,7 +19808,7 @@ { "legacyId" : -260, "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3772 + "blockRuntimeId" : 4380 } ], "shape" : [ @@ -19863,7 +19862,7 @@ "legacyId" : -256, "id" : "minecraft:crimson_fence", "count" : 3, - "blockRuntimeId" : 3818 + "blockRuntimeId" : 7938 } ], "shape" : [ @@ -19892,7 +19891,7 @@ { "legacyId" : -258, "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3819 + "blockRuntimeId" : 4617 } ], "shape" : [ @@ -19917,7 +19916,7 @@ "legacyId" : -299, "id" : "minecraft:crimson_hyphae", "count" : 3, - "blockRuntimeId" : 3836 + "blockRuntimeId" : 4242 } ], "shape" : [ @@ -19942,7 +19941,7 @@ "legacyId" : -242, "id" : "minecraft:crimson_planks", "count" : 4, - "blockRuntimeId" : 3840 + "blockRuntimeId" : 4806 } ], "shape" : [ @@ -19966,7 +19965,7 @@ "legacyId" : -242, "id" : "minecraft:crimson_planks", "count" : 4, - "blockRuntimeId" : 3840 + "blockRuntimeId" : 4806 } ], "shape" : [ @@ -19990,7 +19989,7 @@ "legacyId" : -242, "id" : "minecraft:crimson_planks", "count" : 4, - "blockRuntimeId" : 3840 + "blockRuntimeId" : 4806 } ], "shape" : [ @@ -20014,7 +20013,7 @@ "legacyId" : -242, "id" : "minecraft:crimson_planks", "count" : 4, - "blockRuntimeId" : 3840 + "blockRuntimeId" : 4806 } ], "shape" : [ @@ -20037,7 +20036,7 @@ { "legacyId" : -262, "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3841 + "blockRuntimeId" : 8210 } ], "shape" : [ @@ -20091,7 +20090,7 @@ "legacyId" : -264, "id" : "minecraft:crimson_slab", "count" : 6, - "blockRuntimeId" : 3858 + "blockRuntimeId" : 5824 } ], "shape" : [ @@ -20115,7 +20114,7 @@ "legacyId" : -254, "id" : "minecraft:crimson_stairs", "count" : 4, - "blockRuntimeId" : 3860 + "blockRuntimeId" : 6245 } ], "shape" : [ @@ -20141,7 +20140,7 @@ "legacyId" : -246, "id" : "minecraft:crimson_trapdoor", "count" : 2, - "blockRuntimeId" : 3887 + "blockRuntimeId" : 4281 } ], "shape" : [ @@ -20238,7 +20237,7 @@ { "legacyId" : -422, "id" : "minecraft:cyan_candle", - "blockRuntimeId" : 3921 + "blockRuntimeId" : 7668 } ], "block" : "crafting_table", @@ -20259,7 +20258,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 972 + "blockRuntimeId" : 965 } ], "shape" : [ @@ -20286,7 +20285,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 972 + "blockRuntimeId" : 965 } ], "shape" : [ @@ -20347,7 +20346,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3669 + "blockRuntimeId" : 6238 } ], "block" : "crafting_table", @@ -20418,7 +20417,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7094 + "blockRuntimeId" : 1149 } ], "shape" : [ @@ -20444,7 +20443,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7110 + "blockRuntimeId" : 4817 } ], "shape" : [ @@ -20473,7 +20472,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7110 + "blockRuntimeId" : 4817 } ], "shape" : [ @@ -20503,7 +20502,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7126 + "blockRuntimeId" : 6108 } ], "shape" : [ @@ -20587,7 +20586,7 @@ "legacyId" : 85, "id" : "minecraft:fence", "count" : 3, - "blockRuntimeId" : 4779 + "blockRuntimeId" : 7311 } ], "shape" : [ @@ -20616,7 +20615,7 @@ { "legacyId" : 186, "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3981 + "blockRuntimeId" : 4156 } ], "shape" : [ @@ -20641,7 +20640,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5805 + "blockRuntimeId" : 6000 } ], "shape" : [ @@ -20665,7 +20664,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5805 + "blockRuntimeId" : 6000 } ], "shape" : [ @@ -20689,7 +20688,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5805 + "blockRuntimeId" : 6000 } ], "shape" : [ @@ -20713,7 +20712,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5805 + "blockRuntimeId" : 6000 } ], "shape" : [ @@ -20737,7 +20736,7 @@ "legacyId" : 164, "id" : "minecraft:dark_oak_stairs", "count" : 4, - "blockRuntimeId" : 4013 + "blockRuntimeId" : 5019 } ], "shape" : [ @@ -20763,7 +20762,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7810 + "blockRuntimeId" : 3484 } ], "shape" : [ @@ -20788,7 +20787,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7816 + "blockRuntimeId" : 3490 } ], "shape" : [ @@ -20813,7 +20812,7 @@ "legacyId" : 158, "id" : "minecraft:wooden_slab", "count" : 6, - "blockRuntimeId" : 7906 + "blockRuntimeId" : 5225 } ], "shape" : [ @@ -20840,7 +20839,7 @@ { "legacyId" : 168, "id" : "minecraft:prismarine", - "blockRuntimeId" : 6442 + "blockRuntimeId" : 6010 } ], "shape" : [ @@ -20869,7 +20868,7 @@ { "legacyId" : 168, "id" : "minecraft:prismarine", - "blockRuntimeId" : 6442 + "blockRuntimeId" : 6010 } ], "shape" : [ @@ -20904,7 +20903,7 @@ { "legacyId" : 151, "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4067 + "blockRuntimeId" : 4180 } ], "shape" : [ @@ -20939,7 +20938,7 @@ { "legacyId" : 151, "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4067 + "blockRuntimeId" : 4180 } ], "shape" : [ @@ -20965,7 +20964,7 @@ "legacyId" : -392, "id" : "minecraft:deepslate_brick_slab", "count" : 6, - "blockRuntimeId" : 4105 + "blockRuntimeId" : 3721 } ], "shape" : [ @@ -20989,7 +20988,7 @@ "legacyId" : -393, "id" : "minecraft:deepslate_brick_stairs", "count" : 4, - "blockRuntimeId" : 4107 + "blockRuntimeId" : 7364 } ], "shape" : [ @@ -21015,7 +21014,7 @@ "legacyId" : -394, "id" : "minecraft:deepslate_brick_wall", "count" : 6, - "blockRuntimeId" : 4115 + "blockRuntimeId" : 437 } ], "shape" : [ @@ -21040,7 +21039,7 @@ "legacyId" : -391, "id" : "minecraft:deepslate_bricks", "count" : 4, - "blockRuntimeId" : 4277 + "blockRuntimeId" : 5414 } ], "shape" : [ @@ -21065,7 +21064,7 @@ "legacyId" : -388, "id" : "minecraft:deepslate_tile_slab", "count" : 6, - "blockRuntimeId" : 4288 + "blockRuntimeId" : 4239 } ], "shape" : [ @@ -21089,7 +21088,7 @@ "legacyId" : -389, "id" : "minecraft:deepslate_tile_stairs", "count" : 4, - "blockRuntimeId" : 4290 + "blockRuntimeId" : 4609 } ], "shape" : [ @@ -21115,7 +21114,7 @@ "legacyId" : -390, "id" : "minecraft:deepslate_tile_wall", "count" : 6, - "blockRuntimeId" : 4298 + "blockRuntimeId" : 5027 } ], "shape" : [ @@ -21140,7 +21139,7 @@ "legacyId" : -387, "id" : "minecraft:deepslate_tiles", "count" : 4, - "blockRuntimeId" : 4460 + "blockRuntimeId" : 4513 } ], "shape" : [ @@ -21175,7 +21174,7 @@ "legacyId" : 28, "id" : "minecraft:detector_rail", "count" : 6, - "blockRuntimeId" : 4462 + "blockRuntimeId" : 4121 } ], "shape" : [ @@ -21252,7 +21251,7 @@ { "legacyId" : 57, "id" : "minecraft:diamond_block", - "blockRuntimeId" : 4474 + "blockRuntimeId" : 286 } ], "shape" : [ @@ -21493,7 +21492,7 @@ "legacyId" : 1, "id" : "minecraft:stone", "count" : 2, - "blockRuntimeId" : 7180 + "blockRuntimeId" : 664 } ], "shape" : [ @@ -21518,7 +21517,7 @@ "legacyId" : -170, "id" : "minecraft:diorite_stairs", "count" : 4, - "blockRuntimeId" : 4476 + "blockRuntimeId" : 4339 } ], "shape" : [ @@ -21544,7 +21543,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1322 + "blockRuntimeId" : 1190 } ], "shape" : [ @@ -21578,7 +21577,7 @@ { "legacyId" : 23, "id" : "minecraft:dispenser", - "blockRuntimeId" : 4490 + "blockRuntimeId" : 7955 } ], "shape" : [ @@ -21626,7 +21625,7 @@ { "legacyId" : -139, "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 4584 + "blockRuntimeId" : 7921 } ], "shape" : [ @@ -21651,7 +21650,7 @@ { "legacyId" : -317, "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4585 + "blockRuntimeId" : 901 } ], "shape" : [ @@ -21675,7 +21674,7 @@ { "legacyId" : -317, "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4585 + "blockRuntimeId" : 901 } ], "shape" : [ @@ -21704,7 +21703,7 @@ { "legacyId" : 125, "id" : "minecraft:dropper", - "blockRuntimeId" : 4589 + "blockRuntimeId" : 7327 } ], "shape" : [ @@ -21752,7 +21751,7 @@ { "legacyId" : 133, "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4717 + "blockRuntimeId" : 1164 } ], "shape" : [ @@ -21811,7 +21810,7 @@ { "legacyId" : 116, "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4719 + "blockRuntimeId" : 6597 } ], "shape" : [ @@ -21837,7 +21836,7 @@ "legacyId" : -178, "id" : "minecraft:end_brick_stairs", "count" : 4, - "blockRuntimeId" : 4720 + "blockRuntimeId" : 6347 } ], "shape" : [ @@ -21863,7 +21862,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1329 + "blockRuntimeId" : 1197 } ], "shape" : [ @@ -21888,7 +21887,7 @@ "legacyId" : 206, "id" : "minecraft:end_bricks", "count" : 4, - "blockRuntimeId" : 4728 + "blockRuntimeId" : 295 } ], "shape" : [ @@ -21920,7 +21919,7 @@ }, "output" : [ { - "legacyId" : 637, + "legacyId" : 644, "id" : "minecraft:end_crystal" } ], @@ -21952,7 +21951,7 @@ "legacyId" : 208, "id" : "minecraft:end_rod", "count" : 4, - "blockRuntimeId" : 4739 + "blockRuntimeId" : 5815 } ], "shape" : [ @@ -21981,7 +21980,7 @@ { "legacyId" : 130, "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4746 + "blockRuntimeId" : 4317 } ], "shape" : [ @@ -22035,7 +22034,7 @@ "legacyId" : 85, "id" : "minecraft:fence", "count" : 3, - "blockRuntimeId" : 4774 + "blockRuntimeId" : 7306 } ], "shape" : [ @@ -22063,7 +22062,7 @@ { "legacyId" : 107, "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4780 + "blockRuntimeId" : 76 } ], "shape" : [ @@ -22150,7 +22149,7 @@ { "legacyId" : -201, "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4812 + "blockRuntimeId" : 5757 } ], "shape" : [ @@ -22180,7 +22179,7 @@ { "legacyId" : -201, "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4812 + "blockRuntimeId" : 5757 } ], "shape" : [ @@ -22210,7 +22209,7 @@ { "legacyId" : -201, "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4812 + "blockRuntimeId" : 5757 } ], "shape" : [ @@ -22282,7 +22281,7 @@ { "legacyId" : 61, "id" : "minecraft:furnace", - "blockRuntimeId" : 4877 + "blockRuntimeId" : 7744 } ], "shape" : [ @@ -22307,7 +22306,7 @@ { "legacyId" : 61, "id" : "minecraft:furnace", - "blockRuntimeId" : 4877 + "blockRuntimeId" : 7744 } ], "shape" : [ @@ -22332,7 +22331,7 @@ { "legacyId" : 61, "id" : "minecraft:furnace", - "blockRuntimeId" : 4877 + "blockRuntimeId" : 7744 } ], "shape" : [ @@ -22382,7 +22381,7 @@ "legacyId" : 102, "id" : "minecraft:glass_pane", "count" : 16, - "blockRuntimeId" : 4885 + "blockRuntimeId" : 5189 } ], "shape" : [ @@ -22430,7 +22429,7 @@ { "legacyId" : 89, "id" : "minecraft:glowstone", - "blockRuntimeId" : 4975 + "blockRuntimeId" : 3874 } ], "shape" : [ @@ -22454,7 +22453,7 @@ { "legacyId" : 41, "id" : "minecraft:gold_block", - "blockRuntimeId" : 4976 + "blockRuntimeId" : 305 } ], "shape" : [ @@ -22799,7 +22798,7 @@ "legacyId" : 27, "id" : "minecraft:golden_rail", "count" : 6, - "blockRuntimeId" : 4978 + "blockRuntimeId" : 5282 } ], "shape" : [ @@ -22887,7 +22886,7 @@ { "legacyId" : 1, "id" : "minecraft:stone", - "blockRuntimeId" : 7178 + "blockRuntimeId" : 662 } ], "block" : "crafting_table", @@ -22908,7 +22907,7 @@ "legacyId" : -169, "id" : "minecraft:granite_stairs", "count" : 4, - "blockRuntimeId" : 4990 + "blockRuntimeId" : 3542 } ], "shape" : [ @@ -22934,7 +22933,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1321 + "blockRuntimeId" : 1189 } ], "shape" : [ @@ -22992,7 +22991,7 @@ { "legacyId" : -420, "id" : "minecraft:gray_candle", - "blockRuntimeId" : 5001 + "blockRuntimeId" : 947 } ], "block" : "crafting_table", @@ -23013,7 +23012,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 970 + "blockRuntimeId" : 963 } ], "shape" : [ @@ -23040,7 +23039,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 970 + "blockRuntimeId" : 963 } ], "shape" : [ @@ -23101,7 +23100,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3667 + "blockRuntimeId" : 6236 } ], "block" : "crafting_table", @@ -23218,7 +23217,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7092 + "blockRuntimeId" : 1147 } ], "shape" : [ @@ -23244,7 +23243,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7108 + "blockRuntimeId" : 4815 } ], "shape" : [ @@ -23273,7 +23272,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7108 + "blockRuntimeId" : 4815 } ], "shape" : [ @@ -23303,7 +23302,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7124 + "blockRuntimeId" : 6106 } ], "shape" : [ @@ -23362,7 +23361,7 @@ { "legacyId" : -426, "id" : "minecraft:green_candle", - "blockRuntimeId" : 5017 + "blockRuntimeId" : 694 } ], "block" : "crafting_table", @@ -23383,7 +23382,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 976 + "blockRuntimeId" : 969 } ], "shape" : [ @@ -23410,7 +23409,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 976 + "blockRuntimeId" : 969 } ], "shape" : [ @@ -23471,7 +23470,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3673 + "blockRuntimeId" : 6242 } ], "block" : "crafting_table", @@ -23496,7 +23495,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7098 + "blockRuntimeId" : 1153 } ], "shape" : [ @@ -23522,7 +23521,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7114 + "blockRuntimeId" : 4821 } ], "shape" : [ @@ -23551,7 +23550,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7114 + "blockRuntimeId" : 4821 } ], "shape" : [ @@ -23581,7 +23580,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7130 + "blockRuntimeId" : 6112 } ], "shape" : [ @@ -23616,7 +23615,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5033 + "blockRuntimeId" : 7981 } ], "shape" : [ @@ -23650,7 +23649,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5033 + "blockRuntimeId" : 7981 } ], "shape" : [ @@ -23684,7 +23683,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5033 + "blockRuntimeId" : 7981 } ], "shape" : [ @@ -23718,7 +23717,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5033 + "blockRuntimeId" : 7981 } ], "shape" : [ @@ -23752,7 +23751,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5033 + "blockRuntimeId" : 7981 } ], "shape" : [ @@ -23786,7 +23785,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5033 + "blockRuntimeId" : 7981 } ], "shape" : [ @@ -23820,7 +23819,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5033 + "blockRuntimeId" : 7981 } ], "shape" : [ @@ -23854,7 +23853,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5033 + "blockRuntimeId" : 7981 } ], "shape" : [ @@ -23888,7 +23887,7 @@ { "legacyId" : -195, "id" : "minecraft:grindstone", - "blockRuntimeId" : 5033 + "blockRuntimeId" : 7981 } ], "shape" : [ @@ -23912,7 +23911,7 @@ { "legacyId" : 170, "id" : "minecraft:hay_block", - "blockRuntimeId" : 5085 + "blockRuntimeId" : 703 } ], "shape" : [ @@ -23937,7 +23936,7 @@ { "legacyId" : 148, "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5097 + "blockRuntimeId" : 1165 } ], "shape" : [ @@ -23960,7 +23959,7 @@ { "legacyId" : -220, "id" : "minecraft:honey_block", - "blockRuntimeId" : 5113 + "blockRuntimeId" : 900 }, { "legacyId" : 427, @@ -24056,7 +24055,7 @@ { "legacyId" : -221, "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5114 + "blockRuntimeId" : 4424 } ], "shape" : [ @@ -24213,7 +24212,7 @@ "legacyId" : 101, "id" : "minecraft:iron_bars", "count" : 16, - "blockRuntimeId" : 5134 + "blockRuntimeId" : 4757 } ], "shape" : [ @@ -24237,7 +24236,7 @@ { "legacyId" : 42, "id" : "minecraft:iron_block", - "blockRuntimeId" : 5135 + "blockRuntimeId" : 8203 } ], "shape" : [ @@ -24567,7 +24566,7 @@ { "legacyId" : 167, "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5169 + "blockRuntimeId" : 335 } ], "shape" : [ @@ -24625,7 +24624,7 @@ { "legacyId" : 84, "id" : "minecraft:jukebox", - "blockRuntimeId" : 5209 + "blockRuntimeId" : 4830 } ], "shape" : [ @@ -24655,7 +24654,7 @@ { "legacyId" : 84, "id" : "minecraft:jukebox", - "blockRuntimeId" : 5209 + "blockRuntimeId" : 4830 } ], "shape" : [ @@ -24739,7 +24738,7 @@ "legacyId" : 85, "id" : "minecraft:fence", "count" : 3, - "blockRuntimeId" : 4777 + "blockRuntimeId" : 7309 } ], "shape" : [ @@ -24768,7 +24767,7 @@ { "legacyId" : 185, "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5254 + "blockRuntimeId" : 5315 } ], "shape" : [ @@ -24793,7 +24792,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5803 + "blockRuntimeId" : 5998 } ], "shape" : [ @@ -24817,7 +24816,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5803 + "blockRuntimeId" : 5998 } ], "shape" : [ @@ -24841,7 +24840,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5803 + "blockRuntimeId" : 5998 } ], "shape" : [ @@ -24865,7 +24864,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5803 + "blockRuntimeId" : 5998 } ], "shape" : [ @@ -24889,7 +24888,7 @@ "legacyId" : 136, "id" : "minecraft:jungle_stairs", "count" : 4, - "blockRuntimeId" : 5286 + "blockRuntimeId" : 6883 } ], "shape" : [ @@ -24915,7 +24914,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7808 + "blockRuntimeId" : 3482 } ], "shape" : [ @@ -24940,7 +24939,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7814 + "blockRuntimeId" : 3488 } ], "shape" : [ @@ -24965,7 +24964,7 @@ "legacyId" : 158, "id" : "minecraft:wooden_slab", "count" : 6, - "blockRuntimeId" : 7904 + "blockRuntimeId" : 5223 } ], "shape" : [ @@ -24989,7 +24988,7 @@ "legacyId" : 65, "id" : "minecraft:ladder", "count" : 3, - "blockRuntimeId" : 5358 + "blockRuntimeId" : 8204 } ], "shape" : [ @@ -25019,7 +25018,7 @@ { "legacyId" : -208, "id" : "minecraft:lantern", - "blockRuntimeId" : 5364 + "blockRuntimeId" : 7016 } ], "shape" : [ @@ -25043,7 +25042,7 @@ { "legacyId" : 22, "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5366 + "blockRuntimeId" : 4234 } ], "shape" : [ @@ -25267,7 +25266,7 @@ { "legacyId" : -194, "id" : "minecraft:lectern", - "blockRuntimeId" : 5435 + "blockRuntimeId" : 6856 } ], "shape" : [ @@ -25297,7 +25296,7 @@ { "legacyId" : -194, "id" : "minecraft:lectern", - "blockRuntimeId" : 5435 + "blockRuntimeId" : 6856 } ], "shape" : [ @@ -25327,7 +25326,7 @@ { "legacyId" : -194, "id" : "minecraft:lectern", - "blockRuntimeId" : 5435 + "blockRuntimeId" : 6856 } ], "shape" : [ @@ -25357,7 +25356,7 @@ { "legacyId" : 69, "id" : "minecraft:lever", - "blockRuntimeId" : 5443 + "blockRuntimeId" : 6405 } ], "shape" : [ @@ -25415,7 +25414,7 @@ { "legacyId" : -416, "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5475 + "blockRuntimeId" : 4501 } ], "block" : "crafting_table", @@ -25436,7 +25435,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 966 + "blockRuntimeId" : 959 } ], "shape" : [ @@ -25463,7 +25462,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 966 + "blockRuntimeId" : 959 } ], "shape" : [ @@ -25524,7 +25523,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3663 + "blockRuntimeId" : 6232 } ], "block" : "crafting_table", @@ -25660,7 +25659,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7088 + "blockRuntimeId" : 1143 } ], "shape" : [ @@ -25686,7 +25685,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7104 + "blockRuntimeId" : 4811 } ], "shape" : [ @@ -25715,7 +25714,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7104 + "blockRuntimeId" : 4811 } ], "shape" : [ @@ -25745,7 +25744,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7120 + "blockRuntimeId" : 6102 } ], "shape" : [ @@ -25774,7 +25773,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 971 + "blockRuntimeId" : 964 } ], "shape" : [ @@ -25833,7 +25832,7 @@ { "legacyId" : -421, "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5491 + "blockRuntimeId" : 6147 } ], "block" : "crafting_table", @@ -25854,7 +25853,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 971 + "blockRuntimeId" : 964 } ], "shape" : [ @@ -25913,7 +25912,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3668 + "blockRuntimeId" : 6237 } ], "block" : "crafting_table", @@ -26149,7 +26148,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7093 + "blockRuntimeId" : 1148 } ], "shape" : [ @@ -26175,7 +26174,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7109 + "blockRuntimeId" : 4816 } ], "shape" : [ @@ -26204,7 +26203,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7109 + "blockRuntimeId" : 4816 } ], "shape" : [ @@ -26234,7 +26233,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7125 + "blockRuntimeId" : 6107 } ], "shape" : [ @@ -26259,7 +26258,7 @@ { "legacyId" : 147, "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5501 + "blockRuntimeId" : 3670 } ], "shape" : [ @@ -26282,7 +26281,7 @@ { "legacyId" : -312, "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5517 + "blockRuntimeId" : 1181 } ], "shape" : [ @@ -26311,7 +26310,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 968 + "blockRuntimeId" : 961 } ], "shape" : [ @@ -26370,7 +26369,7 @@ { "legacyId" : -418, "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5523 + "blockRuntimeId" : 6333 } ], "block" : "crafting_table", @@ -26391,7 +26390,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 968 + "blockRuntimeId" : 961 } ], "shape" : [ @@ -26450,7 +26449,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3665 + "blockRuntimeId" : 6234 } ], "block" : "crafting_table", @@ -26521,7 +26520,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7090 + "blockRuntimeId" : 1145 } ], "shape" : [ @@ -26547,7 +26546,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7106 + "blockRuntimeId" : 4813 } ], "shape" : [ @@ -26576,7 +26575,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7106 + "blockRuntimeId" : 4813 } ], "shape" : [ @@ -26606,7 +26605,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7122 + "blockRuntimeId" : 6104 } ], "shape" : [ @@ -26636,7 +26635,7 @@ { "legacyId" : 91, "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5552 + "blockRuntimeId" : 6559 } ], "shape" : [ @@ -26695,7 +26694,7 @@ { "legacyId" : -222, "id" : "minecraft:lodestone", - "blockRuntimeId" : 5564 + "blockRuntimeId" : 8201 } ], "shape" : [ @@ -26725,7 +26724,7 @@ { "legacyId" : -204, "id" : "minecraft:loom", - "blockRuntimeId" : 5583 + "blockRuntimeId" : 3831 } ], "shape" : [ @@ -26754,7 +26753,7 @@ { "legacyId" : -204, "id" : "minecraft:loom", - "blockRuntimeId" : 5583 + "blockRuntimeId" : 3831 } ], "shape" : [ @@ -26812,7 +26811,7 @@ { "legacyId" : -415, "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5587 + "blockRuntimeId" : 428 } ], "block" : "crafting_table", @@ -26833,7 +26832,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 965 + "blockRuntimeId" : 958 } ], "shape" : [ @@ -26860,7 +26859,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 965 + "blockRuntimeId" : 958 } ], "shape" : [ @@ -26921,7 +26920,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3662 + "blockRuntimeId" : 6231 } ], "block" : "crafting_table", @@ -27186,7 +27185,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7087 + "blockRuntimeId" : 1142 } ], "shape" : [ @@ -27212,7 +27211,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7103 + "blockRuntimeId" : 4810 } ], "shape" : [ @@ -27241,7 +27240,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7103 + "blockRuntimeId" : 4810 } ], "shape" : [ @@ -27271,7 +27270,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7119 + "blockRuntimeId" : 6101 } ], "shape" : [ @@ -27296,7 +27295,7 @@ { "legacyId" : 213, "id" : "minecraft:magma", - "blockRuntimeId" : 5603 + "blockRuntimeId" : 7951 } ], "shape" : [ @@ -27368,7 +27367,7 @@ { "legacyId" : 103, "id" : "minecraft:melon_block", - "blockRuntimeId" : 5610 + "blockRuntimeId" : 402 } ], "shape" : [ @@ -27439,7 +27438,7 @@ "legacyId" : -335, "id" : "minecraft:moss_carpet", "count" : 3, - "blockRuntimeId" : 5667 + "blockRuntimeId" : 300 } ], "shape" : [ @@ -27467,7 +27466,7 @@ { "legacyId" : 48, "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5668 + "blockRuntimeId" : 266 } ], "block" : "crafting_table", @@ -27492,7 +27491,7 @@ { "legacyId" : 48, "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5668 + "blockRuntimeId" : 266 } ], "block" : "crafting_table", @@ -27513,7 +27512,7 @@ "legacyId" : -179, "id" : "minecraft:mossy_cobblestone_stairs", "count" : 4, - "blockRuntimeId" : 5669 + "blockRuntimeId" : 4081 } ], "shape" : [ @@ -27539,7 +27538,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1320 + "blockRuntimeId" : 1188 } ], "shape" : [ @@ -27564,7 +27563,7 @@ "legacyId" : -175, "id" : "minecraft:mossy_stone_brick_stairs", "count" : 4, - "blockRuntimeId" : 5677 + "blockRuntimeId" : 5807 } ], "shape" : [ @@ -27590,7 +27589,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1327 + "blockRuntimeId" : 1195 } ], "shape" : [ @@ -27618,7 +27617,7 @@ { "legacyId" : 98, "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7287 + "blockRuntimeId" : 6439 } ], "block" : "crafting_table", @@ -27642,7 +27641,7 @@ { "legacyId" : 98, "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7287 + "blockRuntimeId" : 6439 } ], "block" : "crafting_table", @@ -27691,7 +27690,7 @@ { "legacyId" : 112, "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5689 + "blockRuntimeId" : 7214 } ], "shape" : [ @@ -27721,7 +27720,7 @@ "legacyId" : 113, "id" : "minecraft:nether_brick_fence", "count" : 6, - "blockRuntimeId" : 5690 + "blockRuntimeId" : 4238 } ], "shape" : [ @@ -27746,7 +27745,7 @@ "legacyId" : 114, "id" : "minecraft:nether_brick_stairs", "count" : 4, - "blockRuntimeId" : 5691 + "blockRuntimeId" : 106 } ], "shape" : [ @@ -27772,7 +27771,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1328 + "blockRuntimeId" : 1196 } ], "shape" : [ @@ -27796,7 +27795,7 @@ { "legacyId" : 214, "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5705 + "blockRuntimeId" : 4241 } ], "shape" : [ @@ -27821,7 +27820,7 @@ { "legacyId" : -270, "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5706 + "blockRuntimeId" : 3780 } ], "shape" : [ @@ -27928,7 +27927,7 @@ { "legacyId" : 25, "id" : "minecraft:noteblock", - "blockRuntimeId" : 5717 + "blockRuntimeId" : 359 } ], "shape" : [ @@ -27958,7 +27957,7 @@ { "legacyId" : 25, "id" : "minecraft:noteblock", - "blockRuntimeId" : 5717 + "blockRuntimeId" : 359 } ], "shape" : [ @@ -27983,7 +27982,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5995 } ], "shape" : [ @@ -28007,7 +28006,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5995 } ], "shape" : [ @@ -28031,7 +28030,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5995 } ], "shape" : [ @@ -28054,7 +28053,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5995 } ], "shape" : [ @@ -28077,7 +28076,7 @@ "legacyId" : 53, "id" : "minecraft:oak_stairs", "count" : 4, - "blockRuntimeId" : 5718 + "blockRuntimeId" : 287 } ], "shape" : [ @@ -28102,7 +28101,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7805 + "blockRuntimeId" : 3479 } ], "shape" : [ @@ -28127,7 +28126,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7811 + "blockRuntimeId" : 3485 } ], "shape" : [ @@ -28151,7 +28150,7 @@ "legacyId" : 158, "id" : "minecraft:wooden_slab", "count" : 6, - "blockRuntimeId" : 7901 + "blockRuntimeId" : 5220 } ], "shape" : [ @@ -28184,7 +28183,7 @@ { "legacyId" : 251, "id" : "minecraft:observer", - "blockRuntimeId" : 5726 + "blockRuntimeId" : 3518 } ], "shape" : [ @@ -28243,7 +28242,7 @@ { "legacyId" : -414, "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5740 + "blockRuntimeId" : 372 } ], "block" : "crafting_table", @@ -28264,7 +28263,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 964 + "blockRuntimeId" : 957 } ], "shape" : [ @@ -28291,7 +28290,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 964 + "blockRuntimeId" : 957 } ], "shape" : [ @@ -28352,7 +28351,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3661 + "blockRuntimeId" : 6230 } ], "block" : "crafting_table", @@ -28419,7 +28418,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7086 + "blockRuntimeId" : 1141 } ], "shape" : [ @@ -28445,7 +28444,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7102 + "blockRuntimeId" : 4809 } ], "shape" : [ @@ -28474,7 +28473,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7102 + "blockRuntimeId" : 4809 } ], "shape" : [ @@ -28504,7 +28503,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7118 + "blockRuntimeId" : 6100 } ], "shape" : [ @@ -28529,7 +28528,7 @@ { "legacyId" : 174, "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5770 + "blockRuntimeId" : 296 } ], "shape" : [ @@ -28577,7 +28576,7 @@ "legacyId" : 155, "id" : "minecraft:quartz_block", "count" : 2, - "blockRuntimeId" : 6550 + "blockRuntimeId" : 3703 } ], "shape" : [ @@ -28635,7 +28634,7 @@ { "legacyId" : -419, "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5772 + "blockRuntimeId" : 7312 } ], "block" : "crafting_table", @@ -28656,7 +28655,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 969 + "blockRuntimeId" : 962 } ], "shape" : [ @@ -28683,7 +28682,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 969 + "blockRuntimeId" : 962 } ], "shape" : [ @@ -28744,7 +28743,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3666 + "blockRuntimeId" : 6235 } ], "block" : "crafting_table", @@ -28854,7 +28853,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7091 + "blockRuntimeId" : 1146 } ], "shape" : [ @@ -28880,7 +28879,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7107 + "blockRuntimeId" : 4814 } ], "shape" : [ @@ -28909,7 +28908,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7107 + "blockRuntimeId" : 4814 } ], "shape" : [ @@ -28939,7 +28938,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7123 + "blockRuntimeId" : 6105 } ], "shape" : [ @@ -28979,7 +28978,7 @@ { "legacyId" : 33, "id" : "minecraft:piston", - "blockRuntimeId" : 5789 + "blockRuntimeId" : 930 } ], "shape" : [ @@ -29019,7 +29018,7 @@ { "legacyId" : 33, "id" : "minecraft:piston", - "blockRuntimeId" : 5789 + "blockRuntimeId" : 930 } ], "shape" : [ @@ -29045,7 +29044,7 @@ "legacyId" : 1, "id" : "minecraft:stone", "count" : 4, - "blockRuntimeId" : 7183 + "blockRuntimeId" : 667 } ], "shape" : [ @@ -29070,7 +29069,7 @@ "legacyId" : -174, "id" : "minecraft:polished_andesite_stairs", "count" : 4, - "blockRuntimeId" : 5817 + "blockRuntimeId" : 6982 } ], "shape" : [ @@ -29096,7 +29095,7 @@ "legacyId" : -235, "id" : "minecraft:polished_basalt", "count" : 4, - "blockRuntimeId" : 5825 + "blockRuntimeId" : 24 } ], "shape" : [ @@ -29121,7 +29120,7 @@ "legacyId" : -291, "id" : "minecraft:polished_blackstone", "count" : 4, - "blockRuntimeId" : 5828 + "blockRuntimeId" : 3687 } ], "shape" : [ @@ -29146,7 +29145,7 @@ "legacyId" : -284, "id" : "minecraft:polished_blackstone_brick_slab", "count" : 6, - "blockRuntimeId" : 5831 + "blockRuntimeId" : 4175 } ], "shape" : [ @@ -29170,7 +29169,7 @@ "legacyId" : -275, "id" : "minecraft:polished_blackstone_brick_stairs", "count" : 4, - "blockRuntimeId" : 5833 + "blockRuntimeId" : 4425 } ], "shape" : [ @@ -29196,7 +29195,7 @@ "legacyId" : -278, "id" : "minecraft:polished_blackstone_brick_wall", "count" : 6, - "blockRuntimeId" : 5841 + "blockRuntimeId" : 978 } ], "shape" : [ @@ -29221,7 +29220,7 @@ "legacyId" : -274, "id" : "minecraft:polished_blackstone_bricks", "count" : 4, - "blockRuntimeId" : 6003 + "blockRuntimeId" : 4636 } ], "shape" : [ @@ -29245,7 +29244,7 @@ { "legacyId" : -296, "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 6004 + "blockRuntimeId" : 7732 } ], "shape" : [ @@ -29268,7 +29267,7 @@ { "legacyId" : -295, "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 6018 + "blockRuntimeId" : 6197 } ], "shape" : [ @@ -29292,7 +29291,7 @@ "legacyId" : -293, "id" : "minecraft:polished_blackstone_slab", "count" : 6, - "blockRuntimeId" : 6034 + "blockRuntimeId" : 5942 } ], "shape" : [ @@ -29316,7 +29315,7 @@ "legacyId" : -292, "id" : "minecraft:polished_blackstone_stairs", "count" : 4, - "blockRuntimeId" : 6036 + "blockRuntimeId" : 4245 } ], "shape" : [ @@ -29342,7 +29341,7 @@ "legacyId" : -297, "id" : "minecraft:polished_blackstone_wall", "count" : 6, - "blockRuntimeId" : 6044 + "blockRuntimeId" : 6640 } ], "shape" : [ @@ -29367,7 +29366,7 @@ "legacyId" : -383, "id" : "minecraft:polished_deepslate", "count" : 4, - "blockRuntimeId" : 6206 + "blockRuntimeId" : 7696 } ], "shape" : [ @@ -29392,7 +29391,7 @@ "legacyId" : -384, "id" : "minecraft:polished_deepslate_slab", "count" : 6, - "blockRuntimeId" : 6209 + "blockRuntimeId" : 302 } ], "shape" : [ @@ -29416,7 +29415,7 @@ "legacyId" : -385, "id" : "minecraft:polished_deepslate_stairs", "count" : 4, - "blockRuntimeId" : 6211 + "blockRuntimeId" : 308 } ], "shape" : [ @@ -29442,7 +29441,7 @@ "legacyId" : -386, "id" : "minecraft:polished_deepslate_wall", "count" : 6, - "blockRuntimeId" : 6219 + "blockRuntimeId" : 7759 } ], "shape" : [ @@ -29467,7 +29466,7 @@ "legacyId" : 1, "id" : "minecraft:stone", "count" : 4, - "blockRuntimeId" : 7181 + "blockRuntimeId" : 665 } ], "shape" : [ @@ -29492,7 +29491,7 @@ "legacyId" : -173, "id" : "minecraft:polished_diorite_stairs", "count" : 4, - "blockRuntimeId" : 6381 + "blockRuntimeId" : 6588 } ], "shape" : [ @@ -29518,7 +29517,7 @@ "legacyId" : 1, "id" : "minecraft:stone", "count" : 4, - "blockRuntimeId" : 7179 + "blockRuntimeId" : 663 } ], "shape" : [ @@ -29543,7 +29542,7 @@ "legacyId" : -172, "id" : "minecraft:polished_granite_stairs", "count" : 4, - "blockRuntimeId" : 6389 + "blockRuntimeId" : 4139 } ], "shape" : [ @@ -29568,7 +29567,7 @@ { "legacyId" : 168, "id" : "minecraft:prismarine", - "blockRuntimeId" : 6441 + "blockRuntimeId" : 6009 } ], "shape" : [ @@ -29592,7 +29591,7 @@ { "legacyId" : 168, "id" : "minecraft:prismarine", - "blockRuntimeId" : 6443 + "blockRuntimeId" : 6011 } ], "shape" : [ @@ -29617,7 +29616,7 @@ "legacyId" : -2, "id" : "minecraft:prismarine_stairs", "count" : 4, - "blockRuntimeId" : 6452 + "blockRuntimeId" : 7205 } ], "shape" : [ @@ -29643,7 +29642,7 @@ "legacyId" : -4, "id" : "minecraft:prismarine_bricks_stairs", "count" : 4, - "blockRuntimeId" : 6444 + "blockRuntimeId" : 206 } ], "shape" : [ @@ -29669,7 +29668,7 @@ "legacyId" : -3, "id" : "minecraft:dark_prismarine_stairs", "count" : 4, - "blockRuntimeId" : 4037 + "blockRuntimeId" : 7372 } ], "shape" : [ @@ -29694,7 +29693,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1330 + "blockRuntimeId" : 1198 } ], "shape" : [ @@ -29804,7 +29803,7 @@ { "legacyId" : -423, "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6512 + "blockRuntimeId" : 6992 } ], "block" : "crafting_table", @@ -29825,7 +29824,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 973 + "blockRuntimeId" : 966 } ], "shape" : [ @@ -29852,7 +29851,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 973 + "blockRuntimeId" : 966 } ], "shape" : [ @@ -29913,7 +29912,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3670 + "blockRuntimeId" : 6239 } ], "block" : "crafting_table", @@ -29984,7 +29983,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7095 + "blockRuntimeId" : 1150 } ], "shape" : [ @@ -30010,7 +30009,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7111 + "blockRuntimeId" : 4818 } ], "shape" : [ @@ -30039,7 +30038,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7111 + "blockRuntimeId" : 4818 } ], "shape" : [ @@ -30069,7 +30068,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7127 + "blockRuntimeId" : 6109 } ], "shape" : [ @@ -30095,7 +30094,7 @@ "legacyId" : 201, "id" : "minecraft:purpur_block", "count" : 4, - "blockRuntimeId" : 6528 + "blockRuntimeId" : 7656 } ], "shape" : [ @@ -30120,7 +30119,7 @@ "legacyId" : 203, "id" : "minecraft:purpur_stairs", "count" : 4, - "blockRuntimeId" : 6540 + "blockRuntimeId" : 7697 } ], "shape" : [ @@ -30145,7 +30144,7 @@ { "legacyId" : 155, "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6548 + "blockRuntimeId" : 3701 } ], "shape" : [ @@ -30168,7 +30167,7 @@ { "legacyId" : -304, "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6560 + "blockRuntimeId" : 6316 } ], "shape" : [ @@ -30192,7 +30191,7 @@ "legacyId" : 156, "id" : "minecraft:quartz_stairs", "count" : 4, - "blockRuntimeId" : 6562 + "blockRuntimeId" : 4723 } ], "shape" : [ @@ -30301,7 +30300,7 @@ "legacyId" : 66, "id" : "minecraft:rail", "count" : 16, - "blockRuntimeId" : 6570 + "blockRuntimeId" : 3909 } ], "shape" : [ @@ -30349,7 +30348,7 @@ { "legacyId" : -452, "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6580 + "blockRuntimeId" : 5219 } ], "shape" : [ @@ -30397,7 +30396,7 @@ { "legacyId" : -453, "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6581 + "blockRuntimeId" : 371 } ], "shape" : [ @@ -30445,7 +30444,7 @@ { "legacyId" : -451, "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6582 + "blockRuntimeId" : 8202 } ], "shape" : [ @@ -30504,7 +30503,7 @@ { "legacyId" : -427, "id" : "minecraft:red_candle", - "blockRuntimeId" : 6583 + "blockRuntimeId" : 4637 } ], "block" : "crafting_table", @@ -30525,7 +30524,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 977 + "blockRuntimeId" : 970 } ], "shape" : [ @@ -30552,7 +30551,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 977 + "blockRuntimeId" : 970 } ], "shape" : [ @@ -30613,7 +30612,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3674 + "blockRuntimeId" : 6243 } ], "block" : "crafting_table", @@ -30714,7 +30713,7 @@ { "legacyId" : 215, "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6627 + "blockRuntimeId" : 146 } ], "shape" : [ @@ -30739,7 +30738,7 @@ "legacyId" : -184, "id" : "minecraft:red_nether_brick_stairs", "count" : 4, - "blockRuntimeId" : 6628 + "blockRuntimeId" : 6493 } ], "shape" : [ @@ -30765,7 +30764,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1332 + "blockRuntimeId" : 1200 } ], "shape" : [ @@ -30789,7 +30788,7 @@ { "legacyId" : 179, "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6636 + "blockRuntimeId" : 6471 } ], "shape" : [ @@ -30813,7 +30812,7 @@ "legacyId" : 180, "id" : "minecraft:red_sandstone_stairs", "count" : 4, - "blockRuntimeId" : 6640 + "blockRuntimeId" : 5300 } ], "shape" : [ @@ -30838,7 +30837,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1331 + "blockRuntimeId" : 1199 } ], "shape" : [ @@ -30867,7 +30866,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7099 + "blockRuntimeId" : 1154 } ], "shape" : [ @@ -30893,7 +30892,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7115 + "blockRuntimeId" : 4822 } ], "shape" : [ @@ -30922,7 +30921,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7115 + "blockRuntimeId" : 4822 } ], "shape" : [ @@ -30952,7 +30951,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7131 + "blockRuntimeId" : 6113 } ], "shape" : [ @@ -31000,7 +30999,7 @@ { "legacyId" : 152, "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6648 + "blockRuntimeId" : 3781 } ], "shape" : [ @@ -31030,7 +31029,7 @@ { "legacyId" : 123, "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6649 + "blockRuntimeId" : 265 } ], "shape" : [ @@ -31060,7 +31059,7 @@ { "legacyId" : 76, "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6651 + "blockRuntimeId" : 3530 } ], "shape" : [ @@ -31121,7 +31120,7 @@ { "legacyId" : -272, "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6702 + "blockRuntimeId" : 689 } ], "shape" : [ @@ -31145,7 +31144,7 @@ { "legacyId" : 24, "id" : "minecraft:sandstone", - "blockRuntimeId" : 6709 + "blockRuntimeId" : 3658 } ], "shape" : [ @@ -31169,7 +31168,7 @@ "legacyId" : 128, "id" : "minecraft:sandstone_stairs", "count" : 4, - "blockRuntimeId" : 6713 + "blockRuntimeId" : 3592 } ], "shape" : [ @@ -31194,7 +31193,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1324 + "blockRuntimeId" : 1192 } ], "shape" : [ @@ -31224,7 +31223,7 @@ "legacyId" : -165, "id" : "minecraft:scaffolding", "count" : 6, - "blockRuntimeId" : 6733 + "blockRuntimeId" : 3576 } ], "shape" : [ @@ -31253,8 +31252,8 @@ "output" : [ { "legacyId" : 169, - "id" : "minecraft:sealantern", - "blockRuntimeId" : 6831 + "id" : "minecraft:sea_lantern", + "blockRuntimeId" : 7488 } ], "shape" : [ @@ -31394,7 +31393,7 @@ { "legacyId" : 205, "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7459 + "blockRuntimeId" : 3686 } ], "shape" : [ @@ -31598,7 +31597,7 @@ { "legacyId" : 165, "id" : "minecraft:slime", - "blockRuntimeId" : 6861 + "blockRuntimeId" : 4197 } ], "shape" : [ @@ -31651,7 +31650,7 @@ { "legacyId" : -202, "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6876 + "blockRuntimeId" : 3731 } ], "shape" : [ @@ -31681,7 +31680,7 @@ { "legacyId" : -202, "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6876 + "blockRuntimeId" : 3731 } ], "shape" : [ @@ -31711,7 +31710,7 @@ { "legacyId" : -202, "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6876 + "blockRuntimeId" : 3731 } ], "shape" : [ @@ -31741,7 +31740,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 } ], "shape" : [ @@ -31771,7 +31770,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 } ], "shape" : [ @@ -31801,7 +31800,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 } ], "shape" : [ @@ -31831,7 +31830,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 } ], "shape" : [ @@ -31861,7 +31860,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 } ], "shape" : [ @@ -31891,7 +31890,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 } ], "shape" : [ @@ -31921,7 +31920,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 } ], "shape" : [ @@ -31951,7 +31950,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 } ], "shape" : [ @@ -31981,7 +31980,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 } ], "shape" : [ @@ -32011,7 +32010,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 } ], "shape" : [ @@ -32041,7 +32040,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 } ], "shape" : [ @@ -32071,7 +32070,7 @@ { "legacyId" : -198, "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 } ], "shape" : [ @@ -32097,7 +32096,7 @@ "legacyId" : -185, "id" : "minecraft:smooth_quartz_stairs", "count" : 4, - "blockRuntimeId" : 6884 + "blockRuntimeId" : 7642 } ], "shape" : [ @@ -32122,7 +32121,7 @@ "legacyId" : 179, "id" : "minecraft:red_sandstone", "count" : 4, - "blockRuntimeId" : 6638 + "blockRuntimeId" : 6473 } ], "shape" : [ @@ -32147,7 +32146,7 @@ "legacyId" : -176, "id" : "minecraft:smooth_red_sandstone_stairs", "count" : 4, - "blockRuntimeId" : 6892 + "blockRuntimeId" : 5496 } ], "shape" : [ @@ -32172,7 +32171,7 @@ "legacyId" : 24, "id" : "minecraft:sandstone", "count" : 4, - "blockRuntimeId" : 6711 + "blockRuntimeId" : 3660 } ], "shape" : [ @@ -32197,7 +32196,7 @@ "legacyId" : -177, "id" : "minecraft:smooth_sandstone_stairs", "count" : 4, - "blockRuntimeId" : 6900 + "blockRuntimeId" : 3632 } ], "shape" : [ @@ -32222,7 +32221,7 @@ { "legacyId" : 80, "id" : "minecraft:snow", - "blockRuntimeId" : 6909 + "blockRuntimeId" : 4177 } ], "shape" : [ @@ -32247,7 +32246,7 @@ "legacyId" : 78, "id" : "minecraft:snow_layer", "count" : 6, - "blockRuntimeId" : 6910 + "blockRuntimeId" : 155 } ], "shape" : [ @@ -33159,7 +33158,7 @@ { "legacyId" : -269, "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6950 + "blockRuntimeId" : 5699 } ], "shape" : [ @@ -33194,7 +33193,7 @@ "legacyId" : -268, "id" : "minecraft:soul_torch", "count" : 4, - "blockRuntimeId" : 6954 + "blockRuntimeId" : 4600 } ], "shape" : [ @@ -33229,7 +33228,7 @@ "legacyId" : -268, "id" : "minecraft:soul_torch", "count" : 4, - "blockRuntimeId" : 6954 + "blockRuntimeId" : 4600 } ], "shape" : [ @@ -33342,7 +33341,7 @@ "legacyId" : 85, "id" : "minecraft:fence", "count" : 3, - "blockRuntimeId" : 4775 + "blockRuntimeId" : 7307 } ], "shape" : [ @@ -33371,7 +33370,7 @@ { "legacyId" : 183, "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 7007 + "blockRuntimeId" : 6475 } ], "shape" : [ @@ -33396,7 +33395,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5996 } ], "shape" : [ @@ -33420,7 +33419,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5996 } ], "shape" : [ @@ -33444,7 +33443,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5996 } ], "shape" : [ @@ -33468,7 +33467,7 @@ "legacyId" : 5, "id" : "minecraft:planks", "count" : 4, - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5996 } ], "shape" : [ @@ -33492,7 +33491,7 @@ "legacyId" : 134, "id" : "minecraft:spruce_stairs", "count" : 4, - "blockRuntimeId" : 7039 + "blockRuntimeId" : 128 } ], "shape" : [ @@ -33518,7 +33517,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7806 + "blockRuntimeId" : 3480 } ], "shape" : [ @@ -33543,7 +33542,7 @@ "legacyId" : -212, "id" : "minecraft:wood", "count" : 3, - "blockRuntimeId" : 7812 + "blockRuntimeId" : 3486 } ], "shape" : [ @@ -33568,7 +33567,7 @@ "legacyId" : 158, "id" : "minecraft:wooden_slab", "count" : 6, - "blockRuntimeId" : 7902 + "blockRuntimeId" : 5221 } ], "shape" : [ @@ -33582,7 +33581,7 @@ "type" : 1, "input" : { "A" : { - "legacyId" : 625, + "legacyId" : 624, "id" : "minecraft:amethyst_shard", "damage" : 32767 }, @@ -33594,7 +33593,7 @@ }, "output" : [ { - "legacyId" : 626, + "legacyId" : 625, "id" : "minecraft:spyglass" } ], @@ -33673,7 +33672,7 @@ { "legacyId" : 29, "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7166 + "blockRuntimeId" : 4312 } ], "shape" : [ @@ -33784,7 +33783,7 @@ "legacyId" : 109, "id" : "minecraft:stone_brick_stairs", "count" : 4, - "blockRuntimeId" : 7184 + "blockRuntimeId" : 939 } ], "shape" : [ @@ -33809,7 +33808,7 @@ "legacyId" : 139, "id" : "minecraft:cobblestone_wall", "count" : 6, - "blockRuntimeId" : 1326 + "blockRuntimeId" : 1194 } ], "shape" : [ @@ -33832,7 +33831,7 @@ { "legacyId" : 77, "id" : "minecraft:stone_button", - "blockRuntimeId" : 7192 + "blockRuntimeId" : 604 } ], "shape" : [ @@ -34028,7 +34027,7 @@ { "legacyId" : 70, "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7204 + "blockRuntimeId" : 3875 } ], "shape" : [ @@ -34138,7 +34137,7 @@ "legacyId" : -180, "id" : "minecraft:normal_stone_stairs", "count" : 4, - "blockRuntimeId" : 5709 + "blockRuntimeId" : 641 } ], "shape" : [ @@ -34250,7 +34249,7 @@ "legacyId" : 98, "id" : "minecraft:stonebrick", "count" : 4, - "blockRuntimeId" : 7286 + "blockRuntimeId" : 6438 } ], "shape" : [ @@ -34279,7 +34278,7 @@ { "legacyId" : -197, "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7292 + "blockRuntimeId" : 7516 } ], "shape" : [ @@ -34303,7 +34302,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "shape" : [ @@ -34328,7 +34327,7 @@ "legacyId" : -300, "id" : "minecraft:stripped_crimson_hyphae", "count" : 3, - "blockRuntimeId" : 7304 + "blockRuntimeId" : 6390 } ], "shape" : [ @@ -34353,7 +34352,7 @@ "legacyId" : -301, "id" : "minecraft:stripped_warped_hyphae", "count" : 3, - "blockRuntimeId" : 7322 + "blockRuntimeId" : 5529 } ], "shape" : [ @@ -34857,7 +34856,7 @@ { "legacyId" : -239, "id" : "minecraft:target", - "blockRuntimeId" : 7348 + "blockRuntimeId" : 6355 } ], "shape" : [ @@ -34873,7 +34872,7 @@ "type" : 1, "input" : { "A" : { - "legacyId" : 625, + "legacyId" : 624, "id" : "minecraft:amethyst_shard", "damage" : 32767 }, @@ -34888,7 +34887,7 @@ "legacyId" : -334, "id" : "minecraft:tinted_glass", "count" : 2, - "blockRuntimeId" : 7349 + "blockRuntimeId" : 5899 } ], "shape" : [ @@ -34918,7 +34917,7 @@ { "legacyId" : 46, "id" : "minecraft:tnt", - "blockRuntimeId" : 7350 + "blockRuntimeId" : 6581 } ], "shape" : [ @@ -34975,7 +34974,7 @@ { "legacyId" : 146, "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7376 + "blockRuntimeId" : 5533 } ], "block" : "crafting_table", @@ -35005,7 +35004,7 @@ { "legacyId" : 131, "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7398 + "blockRuntimeId" : 5838 } ], "shape" : [ @@ -35040,7 +35039,7 @@ { "legacyId" : 131, "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7398 + "blockRuntimeId" : 5838 } ], "shape" : [ @@ -35088,7 +35087,7 @@ { "legacyId" : -261, "id" : "minecraft:warped_button", - "blockRuntimeId" : 7528 + "blockRuntimeId" : 7192 } ], "shape" : [ @@ -35142,7 +35141,7 @@ "legacyId" : -257, "id" : "minecraft:warped_fence", "count" : 3, - "blockRuntimeId" : 7574 + "blockRuntimeId" : 5777 } ], "shape" : [ @@ -35171,7 +35170,7 @@ { "legacyId" : -259, "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7575 + "blockRuntimeId" : 5349 } ], "shape" : [ @@ -35224,7 +35223,7 @@ "legacyId" : -298, "id" : "minecraft:warped_hyphae", "count" : 3, - "blockRuntimeId" : 7592 + "blockRuntimeId" : 5826 } ], "shape" : [ @@ -35249,7 +35248,7 @@ "legacyId" : -243, "id" : "minecraft:warped_planks", "count" : 4, - "blockRuntimeId" : 7596 + "blockRuntimeId" : 928 } ], "shape" : [ @@ -35273,7 +35272,7 @@ "legacyId" : -243, "id" : "minecraft:warped_planks", "count" : 4, - "blockRuntimeId" : 7596 + "blockRuntimeId" : 928 } ], "shape" : [ @@ -35297,7 +35296,7 @@ "legacyId" : -243, "id" : "minecraft:warped_planks", "count" : 4, - "blockRuntimeId" : 7596 + "blockRuntimeId" : 928 } ], "shape" : [ @@ -35321,7 +35320,7 @@ "legacyId" : -243, "id" : "minecraft:warped_planks", "count" : 4, - "blockRuntimeId" : 7596 + "blockRuntimeId" : 928 } ], "shape" : [ @@ -35344,7 +35343,7 @@ { "legacyId" : -263, "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7597 + "blockRuntimeId" : 270 } ], "shape" : [ @@ -35398,7 +35397,7 @@ "legacyId" : -265, "id" : "minecraft:warped_slab", "count" : 6, - "blockRuntimeId" : 7614 + "blockRuntimeId" : 6375 } ], "shape" : [ @@ -35422,7 +35421,7 @@ "legacyId" : -255, "id" : "minecraft:warped_stairs", "count" : 4, - "blockRuntimeId" : 7616 + "blockRuntimeId" : 3723 } ], "shape" : [ @@ -35448,7 +35447,7 @@ "legacyId" : -247, "id" : "minecraft:warped_trapdoor", "count" : 2, - "blockRuntimeId" : 7643 + "blockRuntimeId" : 4689 } ], "shape" : [ @@ -35477,7 +35476,7 @@ { "legacyId" : -344, "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7683 + "blockRuntimeId" : 7676 } ], "block" : "crafting_table", @@ -35502,7 +35501,7 @@ { "legacyId" : -351, "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7684 + "blockRuntimeId" : 7235 } ], "block" : "crafting_table", @@ -35527,7 +35526,7 @@ { "legacyId" : -365, "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7685 + "blockRuntimeId" : 7757 } ], "block" : "crafting_table", @@ -35552,7 +35551,7 @@ { "legacyId" : -358, "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7687 + "blockRuntimeId" : 403 } ], "block" : "crafting_table", @@ -35577,7 +35576,7 @@ { "legacyId" : -345, "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7697 + "blockRuntimeId" : 702 } ], "block" : "crafting_table", @@ -35602,7 +35601,7 @@ { "legacyId" : -352, "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7698 + "blockRuntimeId" : 3814 } ], "block" : "crafting_table", @@ -35627,7 +35626,7 @@ { "legacyId" : -366, "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7699 + "blockRuntimeId" : 247 } ], "block" : "crafting_table", @@ -35652,7 +35651,7 @@ { "legacyId" : -359, "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7701 + "blockRuntimeId" : 3891 } ], "block" : "crafting_table", @@ -35677,7 +35676,7 @@ { "legacyId" : -446, "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7711 + "blockRuntimeId" : 7484 } ], "block" : "crafting_table", @@ -35702,7 +35701,7 @@ { "legacyId" : -447, "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7712 + "blockRuntimeId" : 214 } ], "block" : "crafting_table", @@ -35727,7 +35726,7 @@ { "legacyId" : -449, "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7713 + "blockRuntimeId" : 716 } ], "block" : "crafting_table", @@ -35752,7 +35751,7 @@ { "legacyId" : -448, "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7715 + "blockRuntimeId" : 5764 } ], "block" : "crafting_table", @@ -35777,7 +35776,7 @@ { "legacyId" : -346, "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7725 + "blockRuntimeId" : 715 } ], "block" : "crafting_table", @@ -35802,7 +35801,7 @@ { "legacyId" : -353, "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7726 + "blockRuntimeId" : 4807 } ], "block" : "crafting_table", @@ -35827,7 +35826,7 @@ { "legacyId" : -367, "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7727 + "blockRuntimeId" : 6436 } ], "block" : "crafting_table", @@ -35852,7 +35851,7 @@ { "legacyId" : -360, "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7729 + "blockRuntimeId" : 6091 } ], "block" : "crafting_table", @@ -35928,7 +35927,7 @@ { "legacyId" : -413, "id" : "minecraft:white_candle", - "blockRuntimeId" : 7788 + "blockRuntimeId" : 5250 } ], "block" : "crafting_table", @@ -35952,7 +35951,7 @@ { "legacyId" : -413, "id" : "minecraft:white_candle", - "blockRuntimeId" : 7788 + "blockRuntimeId" : 5250 } ], "block" : "crafting_table", @@ -35972,7 +35971,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 963 + "blockRuntimeId" : 956 } ], "shape" : [ @@ -36031,7 +36030,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3660 + "blockRuntimeId" : 6229 } ], "block" : "crafting_table", @@ -36087,7 +36086,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3660 + "blockRuntimeId" : 6229 } ], "block" : "crafting_table", @@ -36149,7 +36148,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7085 + "blockRuntimeId" : 1140 } ], "shape" : [ @@ -36179,7 +36178,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7085 + "blockRuntimeId" : 1140 } ], "shape" : [ @@ -36204,7 +36203,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7101 + "blockRuntimeId" : 4808 } ], "shape" : [ @@ -36233,7 +36232,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7101 + "blockRuntimeId" : 4808 } ], "shape" : [ @@ -36263,7 +36262,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7117 + "blockRuntimeId" : 6099 } ], "shape" : [ @@ -36293,7 +36292,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7117 + "blockRuntimeId" : 6099 } ], "shape" : [ @@ -36694,7 +36693,7 @@ { "legacyId" : -417, "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 6115 } ], "block" : "crafting_table", @@ -36715,7 +36714,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 3, - "blockRuntimeId" : 967 + "blockRuntimeId" : 960 } ], "shape" : [ @@ -36742,7 +36741,7 @@ "legacyId" : 171, "id" : "minecraft:carpet", "count" : 8, - "blockRuntimeId" : 967 + "blockRuntimeId" : 960 } ], "shape" : [ @@ -36803,7 +36802,7 @@ "legacyId" : 237, "id" : "minecraft:concrete_powder", "count" : 8, - "blockRuntimeId" : 3664 + "blockRuntimeId" : 6233 } ], "block" : "crafting_table", @@ -36865,7 +36864,7 @@ "legacyId" : 241, "id" : "minecraft:stained_glass", "count" : 8, - "blockRuntimeId" : 7089 + "blockRuntimeId" : 1144 } ], "shape" : [ @@ -36891,7 +36890,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 16, - "blockRuntimeId" : 7105 + "blockRuntimeId" : 4812 } ], "shape" : [ @@ -36920,7 +36919,7 @@ "legacyId" : 160, "id" : "minecraft:stained_glass_pane", "count" : 8, - "blockRuntimeId" : 7105 + "blockRuntimeId" : 4812 } ], "shape" : [ @@ -36950,7 +36949,7 @@ "legacyId" : 159, "id" : "minecraft:stained_hardened_clay", "count" : 8, - "blockRuntimeId" : 7121 + "blockRuntimeId" : 6103 } ], "shape" : [ @@ -36975,7 +36974,7 @@ "legacyId" : 53, "id" : "minecraft:oak_stairs", "count" : 4, - "blockRuntimeId" : 5718 + "blockRuntimeId" : 287 } ], "shape" : [ @@ -38171,7 +38170,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38196,7 +38195,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38221,7 +38220,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38246,7 +38245,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38271,7 +38270,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38295,7 +38294,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38320,7 +38319,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38345,7 +38344,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38370,7 +38369,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38395,7 +38394,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38420,7 +38419,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38445,7 +38444,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38470,7 +38469,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38495,7 +38494,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38520,7 +38519,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -38545,7 +38544,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38570,7 +38569,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38595,7 +38594,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38620,7 +38619,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38645,7 +38644,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38669,7 +38668,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38694,7 +38693,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38719,7 +38718,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38744,7 +38743,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38769,7 +38768,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38794,7 +38793,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38819,7 +38818,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38844,7 +38843,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38869,7 +38868,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38894,7 +38893,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -38919,7 +38918,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -38944,7 +38943,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -38969,7 +38968,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -38994,7 +38993,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -39019,7 +39018,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -39043,7 +39042,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -39068,7 +39067,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -39093,7 +39092,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -39118,7 +39117,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -39143,7 +39142,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -39168,7 +39167,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -39193,7 +39192,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -39218,7 +39217,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -39243,7 +39242,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -39268,7 +39267,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -39293,7 +39292,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39318,7 +39317,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39343,7 +39342,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39368,7 +39367,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39393,7 +39392,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39417,7 +39416,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39442,7 +39441,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39467,7 +39466,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39492,7 +39491,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39517,7 +39516,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39542,7 +39541,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39567,7 +39566,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39592,7 +39591,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39617,7 +39616,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39642,7 +39641,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -39667,7 +39666,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39692,7 +39691,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39717,7 +39716,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39742,7 +39741,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39767,7 +39766,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39791,7 +39790,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39816,7 +39815,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39841,7 +39840,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39866,7 +39865,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39891,7 +39890,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39916,7 +39915,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39941,7 +39940,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39966,7 +39965,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -39991,7 +39990,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -40016,7 +40015,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -40041,7 +40040,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40066,7 +40065,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40091,7 +40090,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40116,7 +40115,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40141,7 +40140,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40165,7 +40164,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40190,7 +40189,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40215,7 +40214,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40240,7 +40239,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40265,7 +40264,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40290,7 +40289,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40315,7 +40314,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40340,7 +40339,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40365,7 +40364,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40390,7 +40389,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -40415,7 +40414,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40440,7 +40439,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40465,7 +40464,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40490,7 +40489,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40515,7 +40514,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40540,7 +40539,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40565,7 +40564,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40590,7 +40589,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40615,7 +40614,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40640,7 +40639,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40665,7 +40664,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40690,7 +40689,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40715,7 +40714,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40740,7 +40739,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40765,7 +40764,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -40790,7 +40789,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -40815,7 +40814,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -40840,7 +40839,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -40865,7 +40864,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -40890,7 +40889,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -40914,7 +40913,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -40939,7 +40938,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -40964,7 +40963,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -40989,7 +40988,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -41014,7 +41013,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -41039,7 +41038,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -41064,7 +41063,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -41089,7 +41088,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -41114,7 +41113,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -41139,7 +41138,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -41164,7 +41163,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41189,7 +41188,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41214,7 +41213,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41239,7 +41238,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41264,7 +41263,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41289,7 +41288,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41313,7 +41312,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41338,7 +41337,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41363,7 +41362,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41388,7 +41387,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41413,7 +41412,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41438,7 +41437,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41463,7 +41462,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41488,7 +41487,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41513,7 +41512,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -41538,7 +41537,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41563,7 +41562,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41588,7 +41587,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41613,7 +41612,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41638,7 +41637,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41663,7 +41662,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41687,7 +41686,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41712,7 +41711,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41737,7 +41736,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41762,7 +41761,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41787,7 +41786,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41812,7 +41811,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41837,7 +41836,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41862,7 +41861,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41887,7 +41886,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -41912,7 +41911,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -41937,7 +41936,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -41962,7 +41961,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -41987,7 +41986,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -42012,7 +42011,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -42037,7 +42036,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -42062,7 +42061,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -42087,7 +42086,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -42112,7 +42111,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -42137,7 +42136,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -42162,7 +42161,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -42187,7 +42186,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -42212,7 +42211,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -42237,7 +42236,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -42262,7 +42261,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -42287,7 +42286,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42312,7 +42311,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42337,7 +42336,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42362,7 +42361,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42387,7 +42386,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42412,7 +42411,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42436,7 +42435,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42461,7 +42460,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42486,7 +42485,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42511,7 +42510,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42536,7 +42535,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42561,7 +42560,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42586,7 +42585,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42611,7 +42610,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42636,7 +42635,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -42661,7 +42660,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42686,7 +42685,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42711,7 +42710,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42736,7 +42735,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42761,7 +42760,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42786,7 +42785,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42810,7 +42809,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42835,7 +42834,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42860,7 +42859,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42885,7 +42884,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42910,7 +42909,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42935,7 +42934,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42960,7 +42959,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -42985,7 +42984,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -43010,7 +43009,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -43035,7 +43034,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43060,7 +43059,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43085,7 +43084,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43110,7 +43109,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43135,7 +43134,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43160,7 +43159,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43184,7 +43183,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43209,7 +43208,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43234,7 +43233,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43259,7 +43258,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43284,7 +43283,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43309,7 +43308,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43334,7 +43333,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43359,7 +43358,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43384,7 +43383,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -43409,7 +43408,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43434,7 +43433,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43459,7 +43458,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43484,7 +43483,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43509,7 +43508,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43534,7 +43533,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43558,7 +43557,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43583,7 +43582,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43608,7 +43607,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43633,7 +43632,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43658,7 +43657,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43683,7 +43682,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43708,7 +43707,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43733,7 +43732,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43758,7 +43757,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -43783,7 +43782,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -43808,7 +43807,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -43833,7 +43832,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -43858,7 +43857,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -43883,7 +43882,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -43908,7 +43907,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -43932,7 +43931,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -43957,7 +43956,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -43982,7 +43981,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -44007,7 +44006,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -44032,7 +44031,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -44057,7 +44056,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -44082,7 +44081,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -44107,7 +44106,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -44132,7 +44131,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -44157,7 +44156,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44182,7 +44181,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44207,7 +44206,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44232,7 +44231,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44257,7 +44256,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44282,7 +44281,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44306,7 +44305,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44331,7 +44330,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44356,7 +44355,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44381,7 +44380,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44406,7 +44405,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44431,7 +44430,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44456,7 +44455,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44481,7 +44480,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44506,7 +44505,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -44531,7 +44530,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44556,7 +44555,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44581,7 +44580,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44606,7 +44605,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44631,7 +44630,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44656,7 +44655,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44680,7 +44679,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44705,7 +44704,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44730,7 +44729,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44755,7 +44754,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44780,7 +44779,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44805,7 +44804,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44830,7 +44829,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44855,7 +44854,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44880,7 +44879,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -44905,7 +44904,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -44930,7 +44929,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -44955,7 +44954,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -44980,7 +44979,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -45005,7 +45004,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -45030,7 +45029,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -45054,7 +45053,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -45079,7 +45078,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -45104,7 +45103,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -45129,7 +45128,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -45154,7 +45153,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -45179,7 +45178,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -45204,7 +45203,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -45229,7 +45228,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -45254,7 +45253,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -45279,7 +45278,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45304,7 +45303,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45329,7 +45328,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45354,7 +45353,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45379,7 +45378,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45404,7 +45403,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45428,7 +45427,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45453,7 +45452,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45478,7 +45477,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45503,7 +45502,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45528,7 +45527,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45553,7 +45552,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45578,7 +45577,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45603,7 +45602,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45628,7 +45627,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -45652,7 +45651,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -45676,7 +45675,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 } ], "block" : "crafting_table", @@ -45700,7 +45699,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 } ], "block" : "crafting_table", @@ -45724,7 +45723,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 } ], "block" : "crafting_table", @@ -45748,7 +45747,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 } ], "block" : "crafting_table", @@ -45772,7 +45771,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 } ], "block" : "crafting_table", @@ -45796,7 +45795,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -45820,7 +45819,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 } ], "block" : "crafting_table", @@ -45844,7 +45843,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -45868,7 +45867,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -45892,7 +45891,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 } ], "block" : "crafting_table", @@ -45916,7 +45915,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 } ], "block" : "crafting_table", @@ -45940,7 +45939,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 } ], "block" : "crafting_table", @@ -45964,7 +45963,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 } ], "block" : "crafting_table", @@ -45988,7 +45987,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 } ], "block" : "crafting_table", @@ -46012,7 +46011,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 } ], "block" : "crafting_table", @@ -46036,7 +46035,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 } ], "block" : "crafting_table", @@ -46060,7 +46059,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 } ], "block" : "crafting_table", @@ -46084,7 +46083,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 } ], "block" : "crafting_table", @@ -46108,7 +46107,7 @@ { "legacyId" : 218, "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 } ], "block" : "crafting_table", @@ -46128,7 +46127,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7252 + "blockRuntimeId" : 6614 } ], "shape" : [ @@ -46152,7 +46151,7 @@ "legacyId" : 134, "id" : "minecraft:spruce_stairs", "count" : 4, - "blockRuntimeId" : 7039 + "blockRuntimeId" : 128 } ], "shape" : [ @@ -46201,7 +46200,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7236 + "blockRuntimeId" : 6598 } ], "shape" : [ @@ -46225,7 +46224,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7240 + "blockRuntimeId" : 6602 } ], "shape" : [ @@ -46249,7 +46248,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7239 + "blockRuntimeId" : 6601 } ], "shape" : [ @@ -46272,7 +46271,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7237 + "blockRuntimeId" : 6599 } ], "shape" : [ @@ -46295,7 +46294,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7241 + "blockRuntimeId" : 6603 } ], "shape" : [ @@ -46318,7 +46317,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7243 + "blockRuntimeId" : 6605 } ], "shape" : [ @@ -46342,7 +46341,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7236 + "blockRuntimeId" : 6598 } ], "shape" : [ @@ -46366,7 +46365,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7242 + "blockRuntimeId" : 6604 } ], "shape" : [ @@ -46390,7 +46389,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7255 + "blockRuntimeId" : 6617 } ], "shape" : [ @@ -46414,7 +46413,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7256 + "blockRuntimeId" : 6618 } ], "shape" : [ @@ -46438,7 +46437,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7258 + "blockRuntimeId" : 6620 } ], "shape" : [ @@ -46462,7 +46461,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7259 + "blockRuntimeId" : 6621 } ], "shape" : [ @@ -46486,7 +46485,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7254 + "blockRuntimeId" : 6616 } ], "shape" : [ @@ -46510,7 +46509,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7257 + "blockRuntimeId" : 6619 } ], "shape" : [ @@ -46534,7 +46533,7 @@ "legacyId" : -162, "id" : "minecraft:double_stone_slab3", "count" : 6, - "blockRuntimeId" : 7253 + "blockRuntimeId" : 6615 } ], "shape" : [ @@ -46558,7 +46557,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 6, - "blockRuntimeId" : 7272 + "blockRuntimeId" : 6634 } ], "shape" : [ @@ -46582,7 +46581,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 6, - "blockRuntimeId" : 7271 + "blockRuntimeId" : 6633 } ], "shape" : [ @@ -46606,7 +46605,7 @@ "legacyId" : -166, "id" : "minecraft:double_stone_slab4", "count" : 6, - "blockRuntimeId" : 7269 + "blockRuntimeId" : 6631 } ], "shape" : [ @@ -46629,7 +46628,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7226 + "blockRuntimeId" : 255 } ], "shape" : [ @@ -46652,7 +46651,7 @@ "legacyId" : 182, "id" : "minecraft:double_stone_slab2", "count" : 6, - "blockRuntimeId" : 7238 + "blockRuntimeId" : 6600 } ], "shape" : [ @@ -46676,7 +46675,7 @@ "legacyId" : 44, "id" : "minecraft:double_stone_slab", "count" : 6, - "blockRuntimeId" : 7221 + "blockRuntimeId" : 250 } ], "shape" : [ @@ -47993,7 +47992,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48018,7 +48017,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48043,7 +48042,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48068,7 +48067,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48093,7 +48092,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48118,7 +48117,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48142,7 +48141,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48167,7 +48166,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48192,7 +48191,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48217,7 +48216,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48242,7 +48241,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48267,7 +48266,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48292,7 +48291,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48317,7 +48316,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48342,7 +48341,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -48367,7 +48366,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48392,7 +48391,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48417,7 +48416,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48442,7 +48441,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48467,7 +48466,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48492,7 +48491,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48516,7 +48515,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48541,7 +48540,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48566,7 +48565,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48591,7 +48590,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48616,7 +48615,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48641,7 +48640,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48666,7 +48665,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48691,7 +48690,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48716,7 +48715,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 } ], "block" : "crafting_table", @@ -48741,7 +48740,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -48766,7 +48765,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -48791,7 +48790,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -48816,7 +48815,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -48841,7 +48840,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -48866,7 +48865,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -48890,7 +48889,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -48915,7 +48914,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -48940,7 +48939,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -48965,7 +48964,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -48990,7 +48989,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -49015,7 +49014,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -49040,7 +49039,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -49065,7 +49064,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -49090,7 +49089,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 } ], "block" : "crafting_table", @@ -49115,7 +49114,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49140,7 +49139,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49165,7 +49164,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49190,7 +49189,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49215,7 +49214,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49240,7 +49239,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49264,7 +49263,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49289,7 +49288,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49314,7 +49313,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49339,7 +49338,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49364,7 +49363,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49389,7 +49388,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49414,7 +49413,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49439,7 +49438,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49464,7 +49463,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 } ], "block" : "crafting_table", @@ -49489,7 +49488,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49514,7 +49513,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49539,7 +49538,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49564,7 +49563,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49589,7 +49588,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49614,7 +49613,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49638,7 +49637,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49663,7 +49662,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49688,7 +49687,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49713,7 +49712,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49738,7 +49737,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49763,7 +49762,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49788,7 +49787,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49813,7 +49812,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49838,7 +49837,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 } ], "block" : "crafting_table", @@ -49863,7 +49862,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -49888,7 +49887,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -49913,7 +49912,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -49938,7 +49937,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -49963,7 +49962,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -49988,7 +49987,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -50012,7 +50011,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -50037,7 +50036,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -50062,7 +50061,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -50087,7 +50086,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -50112,7 +50111,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -50137,7 +50136,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -50162,7 +50161,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -50187,7 +50186,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -50212,7 +50211,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 } ], "block" : "crafting_table", @@ -50237,7 +50236,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50262,7 +50261,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50287,7 +50286,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50312,7 +50311,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50337,7 +50336,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50362,7 +50361,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50387,7 +50386,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50412,7 +50411,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50437,7 +50436,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50462,7 +50461,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50487,7 +50486,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50512,7 +50511,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50537,7 +50536,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50562,7 +50561,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50587,7 +50586,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -50612,7 +50611,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50637,7 +50636,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50662,7 +50661,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50687,7 +50686,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50712,7 +50711,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50737,7 +50736,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50761,7 +50760,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50786,7 +50785,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50811,7 +50810,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50836,7 +50835,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50861,7 +50860,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50886,7 +50885,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50911,7 +50910,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50936,7 +50935,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50961,7 +50960,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 } ], "block" : "crafting_table", @@ -50986,7 +50985,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51011,7 +51010,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51036,7 +51035,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51061,7 +51060,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51086,7 +51085,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51111,7 +51110,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51136,7 +51135,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51160,7 +51159,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51185,7 +51184,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51210,7 +51209,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51235,7 +51234,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51260,7 +51259,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51285,7 +51284,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51310,7 +51309,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51335,7 +51334,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -51360,7 +51359,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51385,7 +51384,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51410,7 +51409,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51435,7 +51434,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51460,7 +51459,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51485,7 +51484,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51510,7 +51509,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51534,7 +51533,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51559,7 +51558,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51584,7 +51583,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51609,7 +51608,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51634,7 +51633,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51659,7 +51658,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51684,7 +51683,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51709,7 +51708,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -51734,7 +51733,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -51759,7 +51758,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -51784,7 +51783,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -51809,7 +51808,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -51834,7 +51833,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -51859,7 +51858,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -51884,7 +51883,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -51909,7 +51908,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -51934,7 +51933,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -51959,7 +51958,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -51984,7 +51983,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -52009,7 +52008,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -52034,7 +52033,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -52059,7 +52058,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -52084,7 +52083,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 } ], "block" : "crafting_table", @@ -52109,7 +52108,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52134,7 +52133,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52159,7 +52158,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52184,7 +52183,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52209,7 +52208,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52234,7 +52233,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52258,7 +52257,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52283,7 +52282,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52308,7 +52307,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52333,7 +52332,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52358,7 +52357,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52383,7 +52382,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52408,7 +52407,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52433,7 +52432,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52458,7 +52457,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 } ], "block" : "crafting_table", @@ -52483,7 +52482,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52508,7 +52507,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52533,7 +52532,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52558,7 +52557,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52583,7 +52582,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52608,7 +52607,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52633,7 +52632,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52657,7 +52656,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52682,7 +52681,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52707,7 +52706,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52732,7 +52731,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52757,7 +52756,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52782,7 +52781,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52807,7 +52806,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52832,7 +52831,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 } ], "block" : "crafting_table", @@ -52857,7 +52856,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -52882,7 +52881,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -52907,7 +52906,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -52932,7 +52931,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -52957,7 +52956,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -52982,7 +52981,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -53007,7 +53006,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -53031,7 +53030,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -53056,7 +53055,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -53081,7 +53080,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -53106,7 +53105,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -53131,7 +53130,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -53156,7 +53155,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -53181,7 +53180,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -53206,7 +53205,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 } ], "block" : "crafting_table", @@ -53231,7 +53230,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53256,7 +53255,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53281,7 +53280,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53306,7 +53305,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53331,7 +53330,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53356,7 +53355,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53381,7 +53380,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53405,7 +53404,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53430,7 +53429,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53455,7 +53454,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53480,7 +53479,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53505,7 +53504,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53530,7 +53529,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53555,7 +53554,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53580,7 +53579,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 } ], "block" : "crafting_table", @@ -53605,7 +53604,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53630,7 +53629,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53655,7 +53654,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53680,7 +53679,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53705,7 +53704,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53730,7 +53729,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53755,7 +53754,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53779,7 +53778,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53804,7 +53803,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53829,7 +53828,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53854,7 +53853,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53879,7 +53878,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53904,7 +53903,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53929,7 +53928,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53954,7 +53953,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 } ], "block" : "crafting_table", @@ -53979,7 +53978,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54004,7 +54003,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54029,7 +54028,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54054,7 +54053,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54079,7 +54078,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54104,7 +54103,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54129,7 +54128,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54153,7 +54152,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54178,7 +54177,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54203,7 +54202,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54228,7 +54227,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54253,7 +54252,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54278,7 +54277,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54303,7 +54302,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54328,7 +54327,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 } ], "block" : "crafting_table", @@ -54353,7 +54352,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54378,7 +54377,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54403,7 +54402,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54428,7 +54427,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54453,7 +54452,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54478,7 +54477,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54503,7 +54502,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54527,7 +54526,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54552,7 +54551,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54577,7 +54576,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54602,7 +54601,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54627,7 +54626,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54652,7 +54651,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54677,7 +54676,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54702,7 +54701,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 } ], "block" : "crafting_table", @@ -54727,7 +54726,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -54752,7 +54751,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -54777,7 +54776,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -54802,7 +54801,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -54827,7 +54826,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -54852,7 +54851,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -54877,7 +54876,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -54901,7 +54900,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -54926,7 +54925,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -54951,7 +54950,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -54976,7 +54975,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -55001,7 +55000,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -55026,7 +55025,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -55051,7 +55050,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -55076,7 +55075,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 } ], "block" : "crafting_table", @@ -55101,7 +55100,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55126,7 +55125,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55151,7 +55150,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55176,7 +55175,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55201,7 +55200,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55226,7 +55225,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55251,7 +55250,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55275,7 +55274,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55300,7 +55299,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55325,7 +55324,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55350,7 +55349,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55375,7 +55374,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55400,7 +55399,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55425,7 +55424,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55450,7 +55449,7 @@ { "legacyId" : 35, "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 } ], "block" : "crafting_table", @@ -55686,7 +55685,7 @@ "output" : { "legacyId" : -410, "id" : "minecraft:cracked_deepslate_bricks", - "blockRuntimeId" : 3767 + "blockRuntimeId" : 5314 }, "block" : "furnace" }, @@ -55700,7 +55699,7 @@ "output" : { "legacyId" : -409, "id" : "minecraft:cracked_deepslate_tiles", - "blockRuntimeId" : 3768 + "blockRuntimeId" : 4149 }, "block" : "furnace" }, @@ -55714,7 +55713,7 @@ "output" : { "legacyId" : -378, "id" : "minecraft:deepslate", - "blockRuntimeId" : 4100 + "blockRuntimeId" : 267 }, "block" : "furnace" }, @@ -55784,7 +55783,7 @@ "output" : { "legacyId" : -280, "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3770 + "blockRuntimeId" : 7156 }, "block" : "furnace" }, @@ -55826,7 +55825,7 @@ "output" : { "legacyId" : -377, "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6883 + "blockRuntimeId" : 1162 }, "block" : "furnace" }, @@ -56085,7 +56084,7 @@ "output" : { "legacyId" : -183, "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6908 + "blockRuntimeId" : 4514 }, "block" : "furnace" }, @@ -56099,7 +56098,7 @@ "output" : { "legacyId" : 1, "id" : "minecraft:stone", - "blockRuntimeId" : 7177 + "blockRuntimeId" : 661 }, "block" : "furnace" }, @@ -56113,7 +56112,7 @@ "output" : { "legacyId" : 20, "id" : "minecraft:glass", - "blockRuntimeId" : 4884 + "blockRuntimeId" : 6088 }, "block" : "furnace" }, @@ -56260,7 +56259,7 @@ "output" : { "legacyId" : 19, "id" : "minecraft:sponge", - "blockRuntimeId" : 6960 + "blockRuntimeId" : 637 }, "block" : "furnace" }, @@ -56300,7 +56299,7 @@ "output" : { "legacyId" : 24, "id" : "minecraft:sandstone", - "blockRuntimeId" : 6712 + "blockRuntimeId" : 3661 }, "block" : "furnace" }, @@ -56383,7 +56382,7 @@ "output" : { "legacyId" : 172, "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5084 + "blockRuntimeId" : 649 }, "block" : "furnace" }, @@ -56410,7 +56409,7 @@ "output" : { "legacyId" : 98, "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7288 + "blockRuntimeId" : 6440 }, "block" : "furnace" }, @@ -56424,7 +56423,7 @@ "output" : { "legacyId" : -303, "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3769 + "blockRuntimeId" : 4484 }, "block" : "furnace" }, @@ -56493,7 +56492,7 @@ "output" : { "legacyId" : 155, "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6551 + "blockRuntimeId" : 3704 }, "block" : "furnace" }, @@ -56506,7 +56505,7 @@ "output" : { "legacyId" : 220, "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7798 + "blockRuntimeId" : 5523 }, "block" : "furnace" }, @@ -56520,7 +56519,7 @@ "output" : { "legacyId" : 221, "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5750 + "blockRuntimeId" : 1156 }, "block" : "furnace" }, @@ -56534,7 +56533,7 @@ "output" : { "legacyId" : 222, "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5597 + "blockRuntimeId" : 972 }, "block" : "furnace" }, @@ -56548,7 +56547,7 @@ "output" : { "legacyId" : 223, "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5485 + "blockRuntimeId" : 5421 }, "block" : "furnace" }, @@ -56562,7 +56561,7 @@ "output" : { "legacyId" : 224, "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7940 + "blockRuntimeId" : 921 }, "block" : "furnace" }, @@ -56576,7 +56575,7 @@ "output" : { "legacyId" : 225, "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5533 + "blockRuntimeId" : 221 }, "block" : "furnace" }, @@ -56590,7 +56589,7 @@ "output" : { "legacyId" : 226, "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5782 + "blockRuntimeId" : 6430 }, "block" : "furnace" }, @@ -56604,7 +56603,7 @@ "output" : { "legacyId" : 227, "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 5011 + "blockRuntimeId" : 8195 }, "block" : "furnace" }, @@ -56618,7 +56617,7 @@ "output" : { "legacyId" : 228, "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6849 + "blockRuntimeId" : 3536 }, "block" : "furnace" }, @@ -56632,7 +56631,7 @@ "output" : { "legacyId" : 229, "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3931 + "blockRuntimeId" : 5308 }, "block" : "furnace" }, @@ -56646,7 +56645,7 @@ "output" : { "legacyId" : 219, "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6522 + "blockRuntimeId" : 6965 }, "block" : "furnace" }, @@ -56660,7 +56659,7 @@ "output" : { "legacyId" : 231, "id" : "minecraft:blue_glazed_terracotta", - "blockRuntimeId" : 685 + "blockRuntimeId" : 5415 }, "block" : "furnace" }, @@ -56674,7 +56673,7 @@ "output" : { "legacyId" : 232, "id" : "minecraft:brown_glazed_terracotta", - "blockRuntimeId" : 894 + "blockRuntimeId" : 3552 }, "block" : "furnace" }, @@ -56688,7 +56687,7 @@ "output" : { "legacyId" : 233, "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5027 + "blockRuntimeId" : 6501 }, "block" : "furnace" }, @@ -56702,7 +56701,7 @@ "output" : { "legacyId" : 234, "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6604 + "blockRuntimeId" : 4150 }, "block" : "furnace" }, @@ -56716,7 +56715,7 @@ "output" : { "legacyId" : 235, "id" : "minecraft:black_glazed_terracotta", - "blockRuntimeId" : 488 + "blockRuntimeId" : 5758 }, "block" : "furnace" }, @@ -56755,7 +56754,7 @@ "output" : { "legacyId" : 179, "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6639 + "blockRuntimeId" : 6474 }, "block" : "furnace" }, @@ -58025,6 +58024,30 @@ } ], "potionMixes" : [ + { + "inputId" : "minecraft:potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 27, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, { "inputId" : "minecraft:potion", "inputMeta" : 17, @@ -58051,27 +58074,51 @@ }, { "inputId" : "minecraft:potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 24 + "outputMeta" : 1 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 + "outputMeta" : 1 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 27, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 0, + "reagentId" : "minecraft:magma_cream", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 1 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 1 }, { "inputId" : "minecraft:potion", @@ -58099,7 +58146,7 @@ }, { "inputId" : "minecraft:potion", - "inputMeta" : 4, + "inputMeta" : 33, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", @@ -58107,7 +58154,7 @@ }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, + "inputMeta" : 33, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", @@ -58115,12 +58162,108 @@ }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, + "inputMeta" : 33, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 27 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 27 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 25, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 27 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 1, + "reagentId" : "minecraft:fermented_spider_eye", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 34 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 1, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", "outputMeta" : 34 }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 3 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 3 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 0, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 3 + }, + { + "inputId" : "minecraft:potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:splash_potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:splash_potion", + "outputMeta" : 24 + }, + { + "inputId" : "minecraft:lingering_potion", + "inputMeta" : 23, + "reagentId" : "minecraft:glowstone_dust", + "reagentMeta" : 0, + "outputId" : "minecraft:lingering_potion", + "outputMeta" : 24 + }, { "inputId" : "minecraft:potion", "inputMeta" : 4, @@ -58147,579 +58290,507 @@ }, { "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 5 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 5 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:golden_carrot", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 5 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 12 + "outputMeta" : 34 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 12 + "outputMeta" : 34 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:magma_cream", + "inputMeta" : 0, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 12 + "outputMeta" : 34 }, { "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 40 + "outputMeta" : 8 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 40 + "outputMeta" : 8 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:phantom_membrane", + "inputMeta" : 7, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 40 + "outputMeta" : 8 }, { "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 19 + "outputMeta" : 13 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 19 + "outputMeta" : 13 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:pufferfish", + "inputMeta" : 12, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 19 + "outputMeta" : 13 }, { "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 9 + "outputMeta" : 30 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 9 + "outputMeta" : 30 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:rabbit_foot", + "inputMeta" : 28, + "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 9 + "outputMeta" : 30 }, { "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 21 + "outputMeta" : 15 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 21 + "outputMeta" : 15 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:glistering_melon_slice", + "inputMeta" : 14, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 21 + "outputMeta" : 15 }, { "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 25 + "outputMeta" : 34 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 25 + "outputMeta" : 34 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:spider_eye", + "inputMeta" : 3, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 25 + "outputMeta" : 34 }, { "inputId" : "minecraft:potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 14 + "outputMeta" : 39 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 14 + "outputMeta" : 39 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 4, - "reagentId" : "minecraft:sugar", + "inputMeta" : 37, + "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 14 + "outputMeta" : 39 }, { "inputId" : "minecraft:potion", "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 37 + "outputMeta" : 34 }, { "inputId" : "minecraft:splash_potion", "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 37 + "outputMeta" : 34 }, { "inputId" : "minecraft:lingering_potion", "inputMeta" : 4, - "reagentId" : "minecraft:turtle_helmet", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 37 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 13 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 13 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 12, - "reagentId" : "minecraft:redstone", + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 13 + "outputMeta" : 34 }, { "inputId" : "minecraft:potion", - "inputMeta" : 23, + "inputMeta" : 31, "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 24 + "outputMeta" : 33 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 23, + "inputMeta" : 31, "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 + "outputMeta" : 33 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 23, + "inputMeta" : 31, "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 + "outputMeta" : 33 }, { "inputId" : "minecraft:potion", - "inputMeta" : 21, + "inputMeta" : 2, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 23 + "outputMeta" : 35 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 21, + "inputMeta" : 2, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 + "outputMeta" : 35 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 21, + "inputMeta" : 2, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 22 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 22 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 21, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 22 + "outputMeta" : 35 }, { "inputId" : "minecraft:potion", - "inputMeta" : 7, + "inputMeta" : 17, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 8 + "outputMeta" : 18 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 7, + "inputMeta" : 17, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 8 + "outputMeta" : 18 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 7, + "inputMeta" : 17, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 8 + "outputMeta" : 18 }, { "inputId" : "minecraft:potion", - "inputMeta" : 9, + "inputMeta" : 15, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 17 + "outputMeta" : 18 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, + "inputMeta" : 15, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 17 + "outputMeta" : 18 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, + "inputMeta" : 15, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 17 + "outputMeta" : 18 }, { "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 11 + "outputMeta" : 1 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 11 + "outputMeta" : 1 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 0, + "reagentId" : "minecraft:rabbit_foot", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 11 + "outputMeta" : 1 }, { "inputId" : "minecraft:potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 10 + "outputMeta" : 1 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 10 + "outputMeta" : 1 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 9, - "reagentId" : "minecraft:redstone", + "inputMeta" : 0, + "reagentId" : "minecraft:blaze_powder", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 10 + "outputMeta" : 1 }, { "inputId" : "minecraft:potion", - "inputMeta" : 6, + "inputMeta" : 32, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 8 + "outputMeta" : 35 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 6, + "inputMeta" : 32, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 8 + "outputMeta" : 35 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 6, + "inputMeta" : 32, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 8 + "outputMeta" : 35 }, { "inputId" : "minecraft:potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 18 + "outputMeta" : 5 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 + "outputMeta" : 5 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 15, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:golden_carrot", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 + "outputMeta" : 5 }, { "inputId" : "minecraft:potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 18 + "outputMeta" : 16 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 + "outputMeta" : 16 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 10, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 14, + "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 + "outputMeta" : 16 }, { "inputId" : "minecraft:potion", - "inputMeta" : 2, + "inputMeta" : 21, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 35 + "outputMeta" : 23 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 2, + "inputMeta" : 21, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 + "outputMeta" : 23 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 2, + "inputMeta" : 21, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 + "outputMeta" : 23 }, { "inputId" : "minecraft:potion", - "inputMeta" : 26, + "inputMeta" : 10, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 23 + "outputMeta" : 18 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 26, + "inputMeta" : 10, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 + "outputMeta" : 18 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 26, + "inputMeta" : 10, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 + "outputMeta" : 18 }, { "inputId" : "minecraft:potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 35 + "outputMeta" : 12 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 + "outputMeta" : 12 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 32, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:magma_cream", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 + "outputMeta" : 12 }, { "inputId" : "minecraft:potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 34 + "outputMeta" : 1 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 + "outputMeta" : 1 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 1, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 0, + "reagentId" : "minecraft:glistering_melon_slice", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 + "outputMeta" : 1 }, { "inputId" : "minecraft:potion", @@ -58747,171 +58818,99 @@ }, { "inputId" : "minecraft:potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 6 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 6 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 5, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 6 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 25, + "inputMeta" : 22, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 23 + "outputMeta" : 24 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, + "inputMeta" : 22, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 23 + "outputMeta" : 24 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, + "inputMeta" : 22, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 23 + "outputMeta" : 24 }, { "inputId" : "minecraft:potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 27 + "outputMeta" : 19 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 27 + "outputMeta" : 19 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 25, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 4, + "reagentId" : "minecraft:pufferfish", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 27 + "outputMeta" : 19 }, { "inputId" : "minecraft:potion", "inputMeta" : 25, - "reagentId" : "minecraft:redstone", + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 26 + "outputMeta" : 23 }, { "inputId" : "minecraft:splash_potion", "inputMeta" : 25, - "reagentId" : "minecraft:redstone", + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 26 + "outputMeta" : 23 }, { "inputId" : "minecraft:lingering_potion", "inputMeta" : 25, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 26 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 30 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 30 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:glowstone_dust", - "reagentMeta" : 0, - "outputId" : "minecraft:lingering_potion", - "outputMeta" : 30 - }, - { - "inputId" : "minecraft:potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:potion", - "outputMeta" : 29 - }, - { - "inputId" : "minecraft:splash_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", - "reagentMeta" : 0, - "outputId" : "minecraft:splash_potion", - "outputMeta" : 29 - }, - { - "inputId" : "minecraft:lingering_potion", - "inputMeta" : 28, - "reagentId" : "minecraft:redstone", + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 29 + "outputMeta" : 23 }, { "inputId" : "minecraft:potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 18 + "outputMeta" : 1 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 18 + "outputMeta" : 1 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 17, - "reagentId" : "minecraft:redstone", + "inputMeta" : 0, + "reagentId" : "minecraft:sugar", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 18 + "outputMeta" : 1 }, { "inputId" : "minecraft:potion", @@ -58939,579 +58938,579 @@ }, { "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 34 + "outputMeta" : 9 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 + "outputMeta" : 9 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:rabbit_foot", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 + "outputMeta" : 9 }, { "inputId" : "minecraft:potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 33 + "outputMeta" : 4 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 33 + "outputMeta" : 4 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 0, + "reagentId" : "minecraft:nether_wart", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 33 + "outputMeta" : 4 }, { "inputId" : "minecraft:potion", - "inputMeta" : 31, + "inputMeta" : 9, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 32 + "outputMeta" : 10 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 31, + "inputMeta" : 9, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 32 + "outputMeta" : 10 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 31, + "inputMeta" : 9, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 32 + "outputMeta" : 10 }, { "inputId" : "minecraft:potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 24 + "outputMeta" : 1 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 24 + "outputMeta" : 1 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 22, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 0, + "reagentId" : "minecraft:ghast_tear", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 24 + "outputMeta" : 1 }, { "inputId" : "minecraft:potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 34 + "outputMeta" : 37 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 + "outputMeta" : 37 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 33, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:turtle_helmet", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 + "outputMeta" : 37 }, { "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 17 + "outputMeta" : 21 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 17 + "outputMeta" : 21 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 4, + "reagentId" : "minecraft:glistering_melon_slice", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 17 + "outputMeta" : 21 }, { "inputId" : "minecraft:potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 16 + "outputMeta" : 1 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 16 + "outputMeta" : 1 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 0, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 16 + "outputMeta" : 1 }, { "inputId" : "minecraft:potion", - "inputMeta" : 14, + "inputMeta" : 25, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 15 + "outputMeta" : 26 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 14, + "inputMeta" : 25, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 15 + "outputMeta" : 26 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 14, + "inputMeta" : 25, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 15 + "outputMeta" : 26 }, { "inputId" : "minecraft:potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 34 + "outputMeta" : 20 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 + "outputMeta" : 20 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 3, - "reagentId" : "minecraft:fermented_spider_eye", + "inputMeta" : 19, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 + "outputMeta" : 20 }, { "inputId" : "minecraft:potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 39 + "outputMeta" : 17 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 39 + "outputMeta" : 17 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 37, - "reagentId" : "minecraft:glowstone_dust", + "inputMeta" : 9, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 39 + "outputMeta" : 17 }, { "inputId" : "minecraft:potion", - "inputMeta" : 37, + "inputMeta" : 31, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 38 + "outputMeta" : 32 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 37, + "inputMeta" : 31, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 38 + "outputMeta" : 32 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 37, + "inputMeta" : 31, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 38 + "outputMeta" : 32 }, { "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 1 + "outputMeta" : 25 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 + "outputMeta" : 25 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:blaze_powder", + "inputMeta" : 4, + "reagentId" : "minecraft:spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 + "outputMeta" : 25 }, { "inputId" : "minecraft:potion", - "inputMeta" : 19, + "inputMeta" : 34, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 20 + "outputMeta" : 35 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 19, + "inputMeta" : 34, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 20 + "outputMeta" : 35 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 19, + "inputMeta" : 34, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 20 + "outputMeta" : 35 }, { "inputId" : "minecraft:potion", - "inputMeta" : 0, + "inputMeta" : 14, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 34 + "outputMeta" : 17 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, + "inputMeta" : 14, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 34 + "outputMeta" : 17 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, + "inputMeta" : 14, "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 34 + "outputMeta" : 17 }, { "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 1 + "outputMeta" : 8 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 + "outputMeta" : 8 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:ghast_tear", + "inputMeta" : 6, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 + "outputMeta" : 8 }, { "inputId" : "minecraft:potion", - "inputMeta" : 0, + "inputMeta" : 9, "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 3 + "outputMeta" : 11 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, + "inputMeta" : 9, "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 3 + "outputMeta" : 11 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, + "inputMeta" : 9, "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 3 + "outputMeta" : 11 }, { "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 1 + "outputMeta" : 40 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 + "outputMeta" : 40 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:magma_cream", + "inputMeta" : 4, + "reagentId" : "minecraft:phantom_membrane", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 + "outputMeta" : 40 }, { "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 4 + "outputMeta" : 14 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 4 + "outputMeta" : 14 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:nether_wart", + "inputMeta" : 4, + "reagentId" : "minecraft:sugar", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 4 + "outputMeta" : 14 }, { "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 1 + "outputMeta" : 6 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 + "outputMeta" : 6 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:rabbit_foot", + "inputMeta" : 5, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 + "outputMeta" : 6 }, { "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 1 + "outputMeta" : 34 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 + "outputMeta" : 34 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:redstone", + "inputMeta" : 31, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 + "outputMeta" : 34 }, { "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 1 + "outputMeta" : 23 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 + "outputMeta" : 23 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:glistering_melon_slice", + "inputMeta" : 26, + "reagentId" : "minecraft:fermented_spider_eye", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 + "outputMeta" : 23 }, { "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 1 + "outputMeta" : 29 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 + "outputMeta" : 29 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:spider_eye", + "inputMeta" : 28, + "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 + "outputMeta" : 29 }, { "inputId" : "minecraft:potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 1 + "outputMeta" : 22 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 1 + "outputMeta" : 22 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 0, - "reagentId" : "minecraft:sugar", + "inputMeta" : 21, + "reagentId" : "minecraft:glowstone_dust", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 1 + "outputMeta" : 22 }, { "inputId" : "minecraft:potion", - "inputMeta" : 34, + "inputMeta" : 37, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:potion", - "outputMeta" : 35 + "outputMeta" : 38 }, { "inputId" : "minecraft:splash_potion", - "inputMeta" : 34, + "inputMeta" : 37, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:splash_potion", - "outputMeta" : 35 + "outputMeta" : 38 }, { "inputId" : "minecraft:lingering_potion", - "inputMeta" : 34, + "inputMeta" : 37, "reagentId" : "minecraft:redstone", "reagentMeta" : 0, "outputId" : "minecraft:lingering_potion", - "outputMeta" : 35 + "outputMeta" : 38 } ], "containerMixes" : [ diff --git a/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json b/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json index 71e2e0457a0..5c6bf0f60b8 100644 --- a/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json +++ b/src/test/resources/org/powernukkit/updater/dumps/proxypass/runtime_item_states.json @@ -1,5452 +1,5532 @@ [ + { + "name" : "minecraft:mud_brick_wall", + "id" : -481, + "runtimeId" : 1036 + }, + { + "name" : "minecraft:mud_brick_stairs", + "id" : -480, + "runtimeId" : 88 + }, + { + "name" : "minecraft:mud_brick_double_slab", + "id" : -479, + "runtimeId" : 703 + }, + { + "name" : "minecraft:mud_brick_slab", + "id" : -478, + "runtimeId" : 935 + }, + { + "name" : "minecraft:packed_mud", + "id" : -477, + "runtimeId" : 232 + }, + { + "name" : "minecraft:mangrove_propagule_hanging", + "id" : -476, + "runtimeId" : 1029 + }, + { + "name" : "minecraft:mud_bricks", + "id" : -475, + "runtimeId" : 45 + }, + { + "name" : "minecraft:mangrove_propagule", + "id" : -474, + "runtimeId" : 974 + }, + { + "name" : "minecraft:mud", + "id" : -473, + "runtimeId" : 51 + }, + { + "name" : "minecraft:mangrove_leaves", + "id" : -472, + "runtimeId" : 972 + }, { "name" : "minecraft:ochre_froglight", "id" : -471, - "runtimeId" : 997 + "runtimeId" : 178 }, { "name" : "minecraft:verdant_froglight", "id" : -470, - "runtimeId" : 1054 + "runtimeId" : 115 }, { "name" : "minecraft:pearlescent_froglight", "id" : -469, - "runtimeId" : 746 + "runtimeId" : 202 }, { - "name" : "minecraft:frog_egg", + "name" : "minecraft:frog_spawn", "id" : -468, - "runtimeId" : 170 - }, - { - "name" : "minecraft:mysterious_frame_slot", - "id" : -467, - "runtimeId" : 785 + "runtimeId" : 925 }, { - "name" : "minecraft:mysterious_frame", + "name" : "minecraft:reinforced_deepslate", "id" : -466, - "runtimeId" : 412 + "runtimeId" : 959 }, { "name" : "minecraft:client_request_placeholder_block", "id" : -465, - "runtimeId" : 742 + "runtimeId" : 148 }, { "name" : "minecraft:sculk_shrieker", "id" : -461, - "runtimeId" : 962 + "runtimeId" : 630 }, { "name" : "minecraft:sculk_catalyst", "id" : -460, - "runtimeId" : 1022 + "runtimeId" : 169 }, { "name" : "minecraft:sculk_vein", "id" : -459, - "runtimeId" : 523 + "runtimeId" : 36 }, { "name" : "minecraft:sculk", "id" : -458, - "runtimeId" : 1021 + "runtimeId" : 731 }, { "name" : "minecraft:infested_deepslate", "id" : -454, - "runtimeId" : 783 + "runtimeId" : 503 }, { "name" : "minecraft:raw_gold_block", "id" : -453, - "runtimeId" : 84 + "runtimeId" : 218 }, { "name" : "minecraft:raw_copper_block", "id" : -452, - "runtimeId" : 217 + "runtimeId" : 105 }, { "name" : "minecraft:raw_iron_block", "id" : -451, - "runtimeId" : 1014 + "runtimeId" : 161 }, { "name" : "minecraft:waxed_oxidized_double_cut_copper_slab", "id" : -450, - "runtimeId" : 1078 + "runtimeId" : 611 }, { "name" : "minecraft:waxed_oxidized_cut_copper_slab", "id" : -449, - "runtimeId" : 530 + "runtimeId" : 797 }, { "name" : "minecraft:waxed_oxidized_cut_copper_stairs", "id" : -448, - "runtimeId" : 1045 + "runtimeId" : 430 }, { "name" : "minecraft:waxed_oxidized_cut_copper", "id" : -447, - "runtimeId" : 1077 + "runtimeId" : 243 }, { "name" : "minecraft:waxed_oxidized_copper", "id" : -446, - "runtimeId" : 1076 + "runtimeId" : 892 }, { "name" : "minecraft:black_candle_cake", "id" : -445, - "runtimeId" : 628 + "runtimeId" : 133 }, { "name" : "minecraft:red_candle_cake", "id" : -444, - "runtimeId" : 344 + "runtimeId" : 880 }, { "name" : "minecraft:green_candle_cake", "id" : -443, - "runtimeId" : 406 + "runtimeId" : 254 }, { "name" : "minecraft:brown_candle_cake", "id" : -442, - "runtimeId" : 875 + "runtimeId" : 492 }, { "name" : "minecraft:blue_candle_cake", "id" : -441, - "runtimeId" : 700 + "runtimeId" : 852 }, { "name" : "minecraft:purple_candle_cake", "id" : -440, - "runtimeId" : 602 + "runtimeId" : 50 }, { "name" : "minecraft:cyan_candle_cake", "id" : -439, - "runtimeId" : 707 + "runtimeId" : 201 }, { "name" : "minecraft:light_gray_candle_cake", "id" : -438, - "runtimeId" : 775 + "runtimeId" : 102 }, { "name" : "minecraft:gray_candle_cake", "id" : -437, - "runtimeId" : 955 + "runtimeId" : 638 }, { "name" : "minecraft:pink_candle_cake", "id" : -436, - "runtimeId" : 455 + "runtimeId" : 341 }, { "name" : "minecraft:lime_candle_cake", "id" : -435, - "runtimeId" : 979 + "runtimeId" : 8 }, { "name" : "minecraft:yellow_candle_cake", "id" : -434, - "runtimeId" : 1089 + "runtimeId" : 130 }, { "name" : "minecraft:light_blue_candle_cake", "id" : -433, - "runtimeId" : 978 + "runtimeId" : 230 }, { "name" : "minecraft:magenta_candle_cake", "id" : -432, - "runtimeId" : 73 + "runtimeId" : 948 }, { "name" : "minecraft:orange_candle_cake", "id" : -431, - "runtimeId" : 513 + "runtimeId" : 1032 }, { "name" : "minecraft:white_candle_cake", "id" : -430, - "runtimeId" : 826 + "runtimeId" : 38 }, { "name" : "minecraft:candle_cake", "id" : -429, - "runtimeId" : 880 + "runtimeId" : 600 }, { "name" : "minecraft:black_candle", "id" : -428, - "runtimeId" : 726 + "runtimeId" : 1082 }, { "name" : "minecraft:red_candle", "id" : -427, - "runtimeId" : 725 + "runtimeId" : 781 }, { "name" : "minecraft:green_candle", "id" : -426, - "runtimeId" : 724 + "runtimeId" : 1080 }, { "name" : "minecraft:brown_candle", "id" : -425, - "runtimeId" : 723 + "runtimeId" : 964 }, { "name" : "minecraft:blue_candle", "id" : -424, - "runtimeId" : 393 + "runtimeId" : 1046 }, { "name" : "minecraft:purple_candle", "id" : -423, - "runtimeId" : 722 + "runtimeId" : 1079 }, { "name" : "minecraft:cyan_candle", "id" : -422, - "runtimeId" : 717 + "runtimeId" : 1077 }, { "name" : "minecraft:light_gray_candle", "id" : -421, - "runtimeId" : 627 + "runtimeId" : 1075 }, { "name" : "minecraft:gray_candle", "id" : -420, - "runtimeId" : 308 + "runtimeId" : 1073 }, { "name" : "minecraft:pink_candle", "id" : -419, - "runtimeId" : 78 + "runtimeId" : 1071 }, { "name" : "minecraft:lime_candle", "id" : -418, - "runtimeId" : 721 + "runtimeId" : 986 }, { "name" : "minecraft:yellow_candle", "id" : -417, - "runtimeId" : 375 + "runtimeId" : 956 }, { "name" : "minecraft:light_blue_candle", "id" : -416, - "runtimeId" : 720 + "runtimeId" : 885 }, { "name" : "minecraft:magenta_candle", "id" : -415, - "runtimeId" : 639 + "runtimeId" : 644 }, { "name" : "minecraft:orange_candle", "id" : -414, - "runtimeId" : 719 + "runtimeId" : 729 }, { "name" : "minecraft:white_candle", "id" : -413, - "runtimeId" : 120 + "runtimeId" : 486 }, { "name" : "minecraft:candle", "id" : -412, - "runtimeId" : 718 + "runtimeId" : 800 }, { "name" : "minecraft:glow_lichen", "id" : -411, - "runtimeId" : 949 + "runtimeId" : 725 }, { "name" : "minecraft:cracked_deepslate_bricks", "id" : -410, - "runtimeId" : 586 + "runtimeId" : 98 }, { "name" : "minecraft:cracked_deepslate_tiles", "id" : -409, - "runtimeId" : 818 + "runtimeId" : 903 }, { "name" : "minecraft:deepslate_copper_ore", "id" : -408, - "runtimeId" : 923 + "runtimeId" : 636 }, { "name" : "minecraft:deepslate_emerald_ore", "id" : -407, - "runtimeId" : 185 + "runtimeId" : 343 }, { "name" : "minecraft:deepslate_coal_ore", "id" : -406, - "runtimeId" : 735 + "runtimeId" : 357 }, { "name" : "minecraft:deepslate_diamond_ore", "id" : -405, - "runtimeId" : 890 + "runtimeId" : 2 }, { "name" : "minecraft:lit_deepslate_redstone_ore", "id" : -404, - "runtimeId" : 175 + "runtimeId" : 12 }, { "name" : "minecraft:deepslate_redstone_ore", "id" : -403, - "runtimeId" : 858 + "runtimeId" : 53 }, { "name" : "minecraft:deepslate_gold_ore", "id" : -402, - "runtimeId" : 882 + "runtimeId" : 70 }, { "name" : "minecraft:deepslate_iron_ore", "id" : -401, - "runtimeId" : 924 + "runtimeId" : 437 }, { "name" : "minecraft:deepslate_lapis_ore", "id" : -400, - "runtimeId" : 559 + "runtimeId" : 362 }, { "name" : "minecraft:deepslate_brick_double_slab", "id" : -399, - "runtimeId" : 536 + "runtimeId" : 180 }, { "name" : "minecraft:deepslate_tile_double_slab", "id" : -398, - "runtimeId" : 925 + "runtimeId" : 377 }, { "name" : "minecraft:polished_deepslate_double_slab", "id" : -397, - "runtimeId" : 622 + "runtimeId" : 261 }, { "name" : "minecraft:cobbled_deepslate_double_slab", "id" : -396, - "runtimeId" : 897 + "runtimeId" : 249 }, { "name" : "minecraft:chiseled_deepslate", "id" : -395, - "runtimeId" : 891 + "runtimeId" : 107 }, { "name" : "minecraft:deepslate_brick_wall", "id" : -394, - "runtimeId" : 348 + "runtimeId" : 213 }, { "name" : "minecraft:deepslate_brick_stairs", "id" : -393, - "runtimeId" : 917 + "runtimeId" : 21 }, { "name" : "minecraft:deepslate_brick_slab", "id" : -392, - "runtimeId" : 649 + "runtimeId" : 954 }, { "name" : "minecraft:deepslate_bricks", "id" : -391, - "runtimeId" : 50 + "runtimeId" : 92 }, { "name" : "minecraft:deepslate_tile_wall", "id" : -390, - "runtimeId" : 107 + "runtimeId" : 853 }, { "name" : "minecraft:deepslate_tile_stairs", "id" : -389, - "runtimeId" : 926 + "runtimeId" : 128 }, { "name" : "minecraft:deepslate_tile_slab", "id" : -388, - "runtimeId" : 647 + "runtimeId" : 1064 }, { "name" : "minecraft:deepslate_tiles", "id" : -387, - "runtimeId" : 927 + "runtimeId" : 513 }, { "name" : "minecraft:polished_deepslate_wall", "id" : -386, - "runtimeId" : 727 + "runtimeId" : 3 }, { "name" : "minecraft:polished_deepslate_stairs", "id" : -385, - "runtimeId" : 246 + "runtimeId" : 224 }, { "name" : "minecraft:polished_deepslate_slab", "id" : -384, - "runtimeId" : 646 + "runtimeId" : 533 }, { "name" : "minecraft:polished_deepslate", "id" : -383, - "runtimeId" : 1009 + "runtimeId" : 1016 }, { "name" : "minecraft:cobbled_deepslate_wall", "id" : -382, - "runtimeId" : 652 + "runtimeId" : 385 }, { "name" : "minecraft:cobbled_deepslate_stairs", "id" : -381, - "runtimeId" : 898 + "runtimeId" : 338 }, { "name" : "minecraft:cobbled_deepslate_slab", "id" : -380, - "runtimeId" : 645 + "runtimeId" : 922 }, { "name" : "minecraft:cobbled_deepslate", "id" : -379, - "runtimeId" : 896 + "runtimeId" : 434 }, { "name" : "minecraft:deepslate", "id" : -378, - "runtimeId" : 922 + "runtimeId" : 366 }, { "name" : "minecraft:smooth_basalt", "id" : -377, - "runtimeId" : 832 + "runtimeId" : 774 }, { "name" : "minecraft:cave_vines_head_with_berries", "id" : -376, - "runtimeId" : 644 + "runtimeId" : 468 }, { "name" : "minecraft:cave_vines_body_with_berries", "id" : -375, - "runtimeId" : 886 + "runtimeId" : 932 }, { "name" : "minecraft:waxed_weathered_double_cut_copper_slab", "id" : -374, - "runtimeId" : 656 + "runtimeId" : 125 }, { "name" : "minecraft:waxed_exposed_double_cut_copper_slab", "id" : -373, - "runtimeId" : 1075 + "runtimeId" : 47 }, { "name" : "minecraft:waxed_double_cut_copper_slab", "id" : -372, - "runtimeId" : 1072 + "runtimeId" : 93 }, { "name" : "minecraft:oxidized_double_cut_copper_slab", "id" : -371, - "runtimeId" : 999 + "runtimeId" : 212 }, { "name" : "minecraft:weathered_double_cut_copper_slab", "id" : -370, - "runtimeId" : 991 + "runtimeId" : 24 }, { "name" : "minecraft:exposed_double_cut_copper_slab", "id" : -369, - "runtimeId" : 940 + "runtimeId" : 674 }, { "name" : "minecraft:double_cut_copper_slab", "id" : -368, - "runtimeId" : 497 + "runtimeId" : 570 }, { "name" : "minecraft:waxed_weathered_cut_copper_slab", "id" : -367, - "runtimeId" : 527 + "runtimeId" : 428 }, { "name" : "minecraft:waxed_exposed_cut_copper_slab", "id" : -366, - "runtimeId" : 525 + "runtimeId" : 1092 }, { "name" : "minecraft:waxed_cut_copper_slab", "id" : -365, - "runtimeId" : 522 + "runtimeId" : 382 }, { "name" : "minecraft:oxidized_cut_copper_slab", "id" : -364, - "runtimeId" : 499 + "runtimeId" : 344 }, { "name" : "minecraft:weathered_cut_copper_slab", "id" : -363, - "runtimeId" : 521 + "runtimeId" : 545 }, { "name" : "minecraft:exposed_cut_copper_slab", "id" : -362, - "runtimeId" : 271 + "runtimeId" : 901 }, { "name" : "minecraft:cut_copper_slab", "id" : -361, - "runtimeId" : 232 + "runtimeId" : 351 }, { "name" : "minecraft:waxed_weathered_cut_copper_stairs", "id" : -360, - "runtimeId" : 1081 + "runtimeId" : 67 }, { "name" : "minecraft:waxed_exposed_cut_copper_stairs", "id" : -359, - "runtimeId" : 804 + "runtimeId" : 155 }, { "name" : "minecraft:waxed_cut_copper_stairs", "id" : -358, - "runtimeId" : 1071 + "runtimeId" : 215 }, { "name" : "minecraft:oxidized_cut_copper_stairs", "id" : -357, - "runtimeId" : 152 + "runtimeId" : 750 }, { "name" : "minecraft:weathered_cut_copper_stairs", "id" : -356, - "runtimeId" : 481 + "runtimeId" : 144 }, { "name" : "minecraft:exposed_cut_copper_stairs", "id" : -355, - "runtimeId" : 939 + "runtimeId" : 762 }, { "name" : "minecraft:cut_copper_stairs", "id" : -354, - "runtimeId" : 519 + "runtimeId" : 368 }, { "name" : "minecraft:waxed_weathered_cut_copper", "id" : -353, - "runtimeId" : 1080 + "runtimeId" : 799 }, { "name" : "minecraft:waxed_exposed_cut_copper", "id" : -352, - "runtimeId" : 1074 + "runtimeId" : 457 }, { "name" : "minecraft:waxed_cut_copper", "id" : -351, - "runtimeId" : 1070 + "runtimeId" : 28 }, { "name" : "minecraft:oxidized_cut_copper", "id" : -350, - "runtimeId" : 509 + "runtimeId" : 90 }, { "name" : "minecraft:weathered_cut_copper", "id" : -349, - "runtimeId" : 852 + "runtimeId" : 35 }, { "name" : "minecraft:exposed_cut_copper", "id" : -348, - "runtimeId" : 938 + "runtimeId" : 406 }, { "name" : "minecraft:cut_copper", "id" : -347, - "runtimeId" : 515 + "runtimeId" : 369 }, { "name" : "minecraft:waxed_weathered_copper", "id" : -346, - "runtimeId" : 1079 + "runtimeId" : 336 }, { "name" : "minecraft:waxed_exposed_copper", "id" : -345, - "runtimeId" : 1073 + "runtimeId" : 203 }, { "name" : "minecraft:waxed_copper", "id" : -344, - "runtimeId" : 709 + "runtimeId" : 9 }, { "name" : "minecraft:oxidized_copper", "id" : -343, - "runtimeId" : 998 + "runtimeId" : 865 }, { "name" : "minecraft:weathered_copper", "id" : -342, - "runtimeId" : 1082 + "runtimeId" : 1019 }, { "name" : "minecraft:exposed_copper", "id" : -341, - "runtimeId" : 81 + "runtimeId" : 211 }, { "name" : "minecraft:copper_block", "id" : -340, - "runtimeId" : 512 + "runtimeId" : 347 }, { "name" : "minecraft:item.glow_frame", "id" : -339, - "runtimeId" : 948 + "runtimeId" : 687 }, { "name" : "minecraft:flowering_azalea", "id" : -338, - "runtimeId" : 465 + "runtimeId" : 365 }, { "name" : "minecraft:azalea", "id" : -337, - "runtimeId" : 845 + "runtimeId" : 46 }, { "name" : "minecraft:small_dripleaf_block", "id" : -336, - "runtimeId" : 600 + "runtimeId" : 216 }, { "name" : "minecraft:moss_carpet", "id" : -335, - "runtimeId" : 609 + "runtimeId" : 228 }, { "name" : "minecraft:tinted_glass", "id" : -334, - "runtimeId" : 676 + "runtimeId" : 132 }, { "name" : "minecraft:tuff", "id" : -333, - "runtimeId" : 1049 + "runtimeId" : 219 }, { "name" : "minecraft:small_amethyst_bud", "id" : -332, - "runtimeId" : 675 + "runtimeId" : 223 }, { "name" : "minecraft:medium_amethyst_bud", "id" : -331, - "runtimeId" : 385 + "runtimeId" : 142 }, { "name" : "minecraft:large_amethyst_bud", "id" : -330, - "runtimeId" : 678 + "runtimeId" : 438 }, { "name" : "minecraft:amethyst_cluster", "id" : -329, - "runtimeId" : 762 + "runtimeId" : 173 }, { "name" : "minecraft:budding_amethyst", "id" : -328, - "runtimeId" : 878 + "runtimeId" : 195 }, { "name" : "minecraft:amethyst_block", "id" : -327, - "runtimeId" : 844 + "runtimeId" : 226 }, { "name" : "minecraft:calcite", "id" : -326, - "runtimeId" : 422 + "runtimeId" : 747 }, { "name" : "minecraft:azalea_leaves_flowered", "id" : -325, - "runtimeId" : 686 + "runtimeId" : 867 }, { "name" : "minecraft:azalea_leaves", "id" : -324, - "runtimeId" : 685 + "runtimeId" : 1057 }, { "name" : "minecraft:big_dripleaf", "id" : -323, - "runtimeId" : 856 + "runtimeId" : 312 }, { "name" : "minecraft:cave_vines", "id" : -322, - "runtimeId" : 884 + "runtimeId" : 883 }, { "name" : "minecraft:spore_blossom", "id" : -321, - "runtimeId" : 921 + "runtimeId" : 27 }, { "name" : "minecraft:moss_block", "id" : -320, - "runtimeId" : 942 + "runtimeId" : 56 }, { "name" : "minecraft:hanging_roots", "id" : -319, - "runtimeId" : 958 + "runtimeId" : 246 }, { "name" : "minecraft:dirt_with_roots", "id" : -318, - "runtimeId" : 369 + "runtimeId" : 95 }, { "name" : "minecraft:dripstone_block", "id" : -317, - "runtimeId" : 932 + "runtimeId" : 197 }, { "name" : "minecraft:lightning_rod", "id" : -312, - "runtimeId" : 941 + "runtimeId" : 183 }, { "name" : "minecraft:copper_ore", "id" : -311, - "runtimeId" : 900 + "runtimeId" : 170 }, { "name" : "minecraft:pointed_dripstone", "id" : -308, - "runtimeId" : 1002 + "runtimeId" : 22 }, { "name" : "minecraft:sculk_sensor", "id" : -307, - "runtimeId" : 1023 + "runtimeId" : 141 }, { "name" : "minecraft:powder_snow", "id" : -306, - "runtimeId" : 469 + "runtimeId" : 350 }, { "name" : "minecraft:unknown", "id" : -305, - "runtimeId" : 1051 + "runtimeId" : 131 }, { "name" : "minecraft:quartz_bricks", "id" : -304, - "runtimeId" : 42 + "runtimeId" : 449 }, { "name" : "minecraft:cracked_nether_bricks", "id" : -303, - "runtimeId" : 904 + "runtimeId" : 934 }, { "name" : "minecraft:chiseled_nether_bricks", "id" : -302, - "runtimeId" : 444 + "runtimeId" : 32 }, { "name" : "minecraft:stripped_warped_hyphae", "id" : -301, - "runtimeId" : 1040 + "runtimeId" : 222 }, { "name" : "minecraft:stripped_crimson_hyphae", "id" : -300, - "runtimeId" : 1037 + "runtimeId" : 393 }, { "name" : "minecraft:crimson_hyphae", "id" : -299, - "runtimeId" : 909 + "runtimeId" : 417 }, { "name" : "minecraft:warped_hyphae", "id" : -298, - "runtimeId" : 1062 + "runtimeId" : 970 }, { "name" : "minecraft:polished_blackstone_wall", "id" : -297, - "runtimeId" : 794 + "runtimeId" : 48 }, { "name" : "minecraft:polished_blackstone_button", "id" : -296, - "runtimeId" : 680 + "runtimeId" : 6 }, { "name" : "minecraft:polished_blackstone_pressure_plate", "id" : -295, - "runtimeId" : 1007 + "runtimeId" : 86 }, { "name" : "minecraft:polished_blackstone_double_slab", "id" : -294, - "runtimeId" : 681 + "runtimeId" : 207 }, { "name" : "minecraft:polished_blackstone_slab", "id" : -293, - "runtimeId" : 638 + "runtimeId" : 602 }, { "name" : "minecraft:polished_blackstone_stairs", "id" : -292, - "runtimeId" : 1008 + "runtimeId" : 282 }, { "name" : "minecraft:polished_blackstone", "id" : -291, - "runtimeId" : 1003 + "runtimeId" : 166 }, { "name" : "minecraft:item.soul_campfire", "id" : -290, - "runtimeId" : 1027 + "runtimeId" : 327 }, { "name" : "minecraft:crying_obsidian", "id" : -289, - "runtimeId" : 828 + "runtimeId" : 268 }, { "name" : "minecraft:nether_gold_ore", "id" : -288, - "runtimeId" : 990 + "runtimeId" : 257 }, { "name" : "minecraft:twisting_vines", "id" : -287, - "runtimeId" : 478 + "runtimeId" : 82 }, { "name" : "minecraft:item.chain", "id" : -286, - "runtimeId" : 888 + "runtimeId" : 118 }, { "name" : "minecraft:polished_blackstone_brick_double_slab", "id" : -285, - "runtimeId" : 1004 + "runtimeId" : 206 }, { "name" : "minecraft:polished_blackstone_brick_slab", "id" : -284, - "runtimeId" : 9 + "runtimeId" : 583 }, { "name" : "minecraft:blackstone_double_slab", "id" : -283, - "runtimeId" : 684 + "runtimeId" : 743 }, { "name" : "minecraft:blackstone_slab", "id" : -282, - "runtimeId" : 637 + "runtimeId" : 949 }, { "name" : "minecraft:gilded_blackstone", "id" : -281, - "runtimeId" : 944 + "runtimeId" : 794 }, { "name" : "minecraft:cracked_polished_blackstone_bricks", "id" : -280, - "runtimeId" : 905 + "runtimeId" : 33 }, { "name" : "minecraft:chiseled_polished_blackstone", "id" : -279, - "runtimeId" : 861 + "runtimeId" : 293 }, { "name" : "minecraft:polished_blackstone_brick_wall", "id" : -278, - "runtimeId" : 1006 + "runtimeId" : 187 }, { "name" : "minecraft:blackstone_wall", "id" : -277, - "runtimeId" : 868 + "runtimeId" : 982 }, { "name" : "minecraft:blackstone_stairs", "id" : -276, - "runtimeId" : 866 + "runtimeId" : 859 }, { "name" : "minecraft:polished_blackstone_brick_stairs", "id" : -275, - "runtimeId" : 408 + "runtimeId" : 1040 }, { "name" : "minecraft:polished_blackstone_bricks", "id" : -274, - "runtimeId" : 670 + "runtimeId" : 124 }, { "name" : "minecraft:blackstone", "id" : -273, - "runtimeId" : 864 + "runtimeId" : 14 }, { "name" : "minecraft:respawn_anchor", "id" : -272, - "runtimeId" : 827 + "runtimeId" : 269 }, { "name" : "minecraft:ancient_debris", "id" : -271, - "runtimeId" : 60 + "runtimeId" : 270 }, { "name" : "minecraft:netherite_block", "id" : -270, - "runtimeId" : 825 + "runtimeId" : 272 }, { "name" : "minecraft:soul_lantern", "id" : -269, - "runtimeId" : 1028 + "runtimeId" : 694 }, { "name" : "minecraft:soul_torch", "id" : -268, - "runtimeId" : 1029 + "runtimeId" : 129 }, { "name" : "minecraft:warped_double_slab", "id" : -267, - "runtimeId" : 1059 + "runtimeId" : 164 }, { "name" : "minecraft:crimson_double_slab", "id" : -266, - "runtimeId" : 907 + "runtimeId" : 204 }, { "name" : "minecraft:warped_slab", "id" : -265, - "runtimeId" : 491 + "runtimeId" : 392 }, { "name" : "minecraft:crimson_slab", "id" : -264, - "runtimeId" : 716 + "runtimeId" : 836 }, { "name" : "minecraft:warped_pressure_plate", "id" : -263, - "runtimeId" : 1065 + "runtimeId" : 271 }, { "name" : "minecraft:crimson_pressure_plate", "id" : -262, - "runtimeId" : 272 + "runtimeId" : 179 }, { "name" : "minecraft:warped_button", "id" : -261, - "runtimeId" : 816 + "runtimeId" : 80 }, { "name" : "minecraft:crimson_button", "id" : -260, - "runtimeId" : 906 + "runtimeId" : 294 }, { "name" : "minecraft:warped_fence_gate", "id" : -259, - "runtimeId" : 1061 + "runtimeId" : 790 }, { "name" : "minecraft:crimson_fence_gate", "id" : -258, - "runtimeId" : 908 + "runtimeId" : 127 }, { "name" : "minecraft:warped_fence", "id" : -257, - "runtimeId" : 1060 + "runtimeId" : 77 }, { "name" : "minecraft:crimson_fence", "id" : -256, - "runtimeId" : 450 + "runtimeId" : 550 }, { "name" : "minecraft:warped_stairs", "id" : -255, - "runtimeId" : 1066 + "runtimeId" : 163 }, { "name" : "minecraft:crimson_stairs", "id" : -254, - "runtimeId" : 334 + "runtimeId" : 64 }, { "name" : "minecraft:warped_wall_sign", "id" : -253, - "runtimeId" : 1068 + "runtimeId" : 217 }, { "name" : "minecraft:crimson_wall_sign", "id" : -252, - "runtimeId" : 914 + "runtimeId" : 990 }, { "name" : "minecraft:warped_standing_sign", "id" : -251, - "runtimeId" : 1005 + "runtimeId" : 34 }, { "name" : "minecraft:crimson_standing_sign", "id" : -250, - "runtimeId" : 912 + "runtimeId" : 26 }, { "name" : "minecraft:warped_trapdoor", "id" : -247, - "runtimeId" : 477 + "runtimeId" : 119 }, { "name" : "minecraft:crimson_trapdoor", "id" : -246, - "runtimeId" : 159 + "runtimeId" : 763 }, { "name" : "minecraft:item.warped_door", "id" : -245, - "runtimeId" : 1058 + "runtimeId" : 255 }, { "name" : "minecraft:item.crimson_door", "id" : -244, - "runtimeId" : 125 + "runtimeId" : 613 }, { "name" : "minecraft:warped_planks", "id" : -243, - "runtimeId" : 1064 + "runtimeId" : 189 }, { "name" : "minecraft:crimson_planks", "id" : -242, - "runtimeId" : 911 + "runtimeId" : 112 }, { "name" : "minecraft:stripped_warped_stem", "id" : -241, - "runtimeId" : 1041 + "runtimeId" : 23 }, { "name" : "minecraft:stripped_crimson_stem", "id" : -240, - "runtimeId" : 383 + "runtimeId" : 355 }, { "name" : "minecraft:target", "id" : -239, - "runtimeId" : 683 + "runtimeId" : 796 }, { "name" : "minecraft:item.nether_sprouts", "id" : -238, - "runtimeId" : 983 + "runtimeId" : 409 }, { "name" : "minecraft:soul_fire", "id" : -237, - "runtimeId" : 687 + "runtimeId" : 736 }, { "name" : "minecraft:soul_soil", "id" : -236, - "runtimeId" : 693 + "runtimeId" : 318 }, { "name" : "minecraft:polished_basalt", "id" : -235, - "runtimeId" : 947 + "runtimeId" : 258 }, { "name" : "minecraft:basalt", "id" : -234, - "runtimeId" : 850 + "runtimeId" : 459 }, { "name" : "minecraft:warped_nylium", "id" : -233, - "runtimeId" : 1063 + "runtimeId" : 60 }, { "name" : "minecraft:crimson_nylium", "id" : -232, - "runtimeId" : 542 + "runtimeId" : 153 }, { "name" : "minecraft:weeping_vines", "id" : -231, - "runtimeId" : 453 + "runtimeId" : 536 }, { "name" : "minecraft:shroomlight", "id" : -230, - "runtimeId" : 1024 + "runtimeId" : 109 }, { "name" : "minecraft:warped_fungus", "id" : -229, - "runtimeId" : 614 + "runtimeId" : 227 }, { "name" : "minecraft:crimson_fungus", "id" : -228, - "runtimeId" : 487 + "runtimeId" : 502 }, { "name" : "minecraft:warped_wart_block", "id" : -227, - "runtimeId" : 1055 + "runtimeId" : 74 }, { "name" : "minecraft:warped_stem", "id" : -226, - "runtimeId" : 1067 + "runtimeId" : 472 }, { "name" : "minecraft:crimson_stem", "id" : -225, - "runtimeId" : 913 + "runtimeId" : 83 }, { "name" : "minecraft:warped_roots", "id" : -224, - "runtimeId" : 688 + "runtimeId" : 1001 }, { "name" : "minecraft:crimson_roots", "id" : -223, - "runtimeId" : 290 + "runtimeId" : 1018 }, { "name" : "minecraft:lodestone", "id" : -222, - "runtimeId" : 204 + "runtimeId" : 208 }, { "name" : "minecraft:honeycomb_block", "id" : -221, - "runtimeId" : 410 + "runtimeId" : 139 }, { "name" : "minecraft:honey_block", "id" : -220, - "runtimeId" : 176 + "runtimeId" : 759 }, { "name" : "minecraft:beehive", "id" : -219, - "runtimeId" : 855 + "runtimeId" : 147 }, { "name" : "minecraft:bee_nest", "id" : -218, - "runtimeId" : 854 + "runtimeId" : 386 }, { - "name" : "minecraft:stickypistonarmcollision", + "name" : "minecraft:sticky_piston_arm_collision", "id" : -217, - "runtimeId" : 225 + "runtimeId" : 61 }, { "name" : "minecraft:wither_rose", "id" : -216, - "runtimeId" : 1085 + "runtimeId" : 68 }, { "name" : "minecraft:light_block", "id" : -215, - "runtimeId" : 24 + "runtimeId" : 1051 }, { "name" : "minecraft:lit_blast_furnace", "id" : -214, - "runtimeId" : 667 + "runtimeId" : 39 }, { "name" : "minecraft:composter", "id" : -213, - "runtimeId" : 435 + "runtimeId" : 273 }, { "name" : "minecraft:wood", "id" : -212, - "runtimeId" : 642 + "runtimeId" : 888 }, { "name" : "minecraft:jigsaw", "id" : -211, - "runtimeId" : 415 + "runtimeId" : 162 }, { "name" : "minecraft:lava_cauldron", "id" : -210, - "runtimeId" : 931 + "runtimeId" : 210 }, { "name" : "minecraft:item.campfire", "id" : -209, - "runtimeId" : 72 + "runtimeId" : 451 }, { "name" : "minecraft:lantern", "id" : -208, - "runtimeId" : 114 + "runtimeId" : 953 }, { "name" : "minecraft:sweet_berry_bush", "id" : -207, - "runtimeId" : 1044 + "runtimeId" : 72 }, { "name" : "minecraft:bell", "id" : -206, - "runtimeId" : 599 + "runtimeId" : 716 }, { "name" : "minecraft:loom", "id" : -204, - "runtimeId" : 623 + "runtimeId" : 672 }, { "name" : "minecraft:barrel", "id" : -203, - "runtimeId" : 216 + "runtimeId" : 402 }, { "name" : "minecraft:smithing_table", "id" : -202, - "runtimeId" : 167 + "runtimeId" : 481 }, { "name" : "minecraft:fletching_table", "id" : -201, - "runtimeId" : 711 + "runtimeId" : 1065 }, { "name" : "minecraft:cartography_table", "id" : -200, - "runtimeId" : 636 + "runtimeId" : 1063 }, { "name" : "minecraft:lit_smoker", "id" : -199, - "runtimeId" : 981 + "runtimeId" : 11 }, { "name" : "minecraft:smoker", "id" : -198, - "runtimeId" : 96 + "runtimeId" : 721 }, { "name" : "minecraft:stonecutter_block", "id" : -197, - "runtimeId" : 82 + "runtimeId" : 15 }, { "name" : "minecraft:blast_furnace", "id" : -196, - "runtimeId" : 368 + "runtimeId" : 700 }, { "name" : "minecraft:grindstone", "id" : -195, - "runtimeId" : 708 + "runtimeId" : 1062 }, { "name" : "minecraft:lectern", "id" : -194, - "runtimeId" : 975 + "runtimeId" : 905 }, { "name" : "minecraft:darkoak_wall_sign", "id" : -193, - "runtimeId" : 919 + "runtimeId" : 100 }, { "name" : "minecraft:darkoak_standing_sign", "id" : -192, - "runtimeId" : 918 + "runtimeId" : 25 }, { "name" : "minecraft:acacia_wall_sign", "id" : -191, - "runtimeId" : 841 + "runtimeId" : 1090 }, { "name" : "minecraft:acacia_standing_sign", "id" : -190, - "runtimeId" : 839 + "runtimeId" : 120 }, { "name" : "minecraft:jungle_wall_sign", "id" : -189, - "runtimeId" : 969 + "runtimeId" : 301 }, { "name" : "minecraft:jungle_standing_sign", "id" : -188, - "runtimeId" : 967 + "runtimeId" : 572 }, { "name" : "minecraft:birch_wall_sign", "id" : -187, - "runtimeId" : 728 + "runtimeId" : 44 }, { "name" : "minecraft:birch_standing_sign", "id" : -186, - "runtimeId" : 862 + "runtimeId" : 259 }, { "name" : "minecraft:smooth_quartz_stairs", "id" : -185, - "runtimeId" : 20 + "runtimeId" : 205 }, { "name" : "minecraft:red_nether_brick_stairs", "id" : -184, - "runtimeId" : 1016 + "runtimeId" : 54 }, { "name" : "minecraft:smooth_stone", "id" : -183, - "runtimeId" : 118 + "runtimeId" : 732 }, { "name" : "minecraft:spruce_wall_sign", "id" : -182, - "runtimeId" : 476 + "runtimeId" : 96 }, { "name" : "minecraft:spruce_standing_sign", "id" : -181, - "runtimeId" : 703 + "runtimeId" : 136 }, { "name" : "minecraft:normal_stone_stairs", "id" : -180, - "runtimeId" : 994 + "runtimeId" : 424 }, { "name" : "minecraft:mossy_cobblestone_stairs", "id" : -179, - "runtimeId" : 255 + "runtimeId" : 555 }, { "name" : "minecraft:end_brick_stairs", "id" : -178, - "runtimeId" : 937 + "runtimeId" : 58 }, { "name" : "minecraft:smooth_sandstone_stairs", "id" : -177, - "runtimeId" : 1026 + "runtimeId" : 168 }, { "name" : "minecraft:smooth_red_sandstone_stairs", "id" : -176, - "runtimeId" : 641 + "runtimeId" : 87 }, { "name" : "minecraft:mossy_stone_brick_stairs", "id" : -175, - "runtimeId" : 984 + "runtimeId" : 75 }, { "name" : "minecraft:polished_andesite_stairs", "id" : -174, - "runtimeId" : 396 + "runtimeId" : 40 }, { "name" : "minecraft:polished_diorite_stairs", "id" : -173, - "runtimeId" : 596 + "runtimeId" : 49 }, { "name" : "minecraft:polished_granite_stairs", "id" : -172, - "runtimeId" : 301 + "runtimeId" : 1068 }, { "name" : "minecraft:andesite_stairs", "id" : -171, - "runtimeId" : 337 + "runtimeId" : 256 }, { "name" : "minecraft:diorite_stairs", "id" : -170, - "runtimeId" : 791 + "runtimeId" : 140 }, { "name" : "minecraft:granite_stairs", "id" : -169, - "runtimeId" : 139 + "runtimeId" : 174 }, { "name" : "minecraft:real_double_stone_slab4", "id" : -168, - "runtimeId" : 182 + "runtimeId" : 1009 }, { "name" : "minecraft:real_double_stone_slab3", "id" : -167, - "runtimeId" : 221 + "runtimeId" : 1008 }, { "name" : "minecraft:double_stone_slab4", "id" : -166, - "runtimeId" : 671 + "runtimeId" : 1002 }, { "name" : "minecraft:scaffolding", "id" : -165, - "runtimeId" : 705 + "runtimeId" : 359 }, { "name" : "minecraft:bamboo_sapling", "id" : -164, - "runtimeId" : 846 + "runtimeId" : 1010 }, { "name" : "minecraft:bamboo", "id" : -163, - "runtimeId" : 704 + "runtimeId" : 1060 }, { "name" : "minecraft:double_stone_slab3", "id" : -162, - "runtimeId" : 424 + "runtimeId" : 999 }, { "name" : "minecraft:barrier", "id" : -161, - "runtimeId" : 848 + "runtimeId" : 989 }, { "name" : "minecraft:bubble_column", "id" : -160, - "runtimeId" : 877 + "runtimeId" : 79 }, { "name" : "minecraft:turtle_egg", "id" : -159, - "runtimeId" : 370 + "runtimeId" : 580 }, { "name" : "minecraft:air", "id" : -158, - "runtimeId" : 6 + "runtimeId" : 826 }, { "name" : "minecraft:conduit", "id" : -157, - "runtimeId" : 697 + "runtimeId" : 1043 }, { "name" : "minecraft:sea_pickle", "id" : -156, - "runtimeId" : 679 + "runtimeId" : 653 }, { "name" : "minecraft:carved_pumpkin", "id" : -155, - "runtimeId" : 400 + "runtimeId" : 1061 }, { "name" : "minecraft:spruce_pressure_plate", "id" : -154, - "runtimeId" : 1032 + "runtimeId" : 510 }, { "name" : "minecraft:jungle_pressure_plate", "id" : -153, - "runtimeId" : 407 + "runtimeId" : 863 }, { "name" : "minecraft:dark_oak_pressure_plate", "id" : -152, - "runtimeId" : 517 + "runtimeId" : 320 }, { "name" : "minecraft:birch_pressure_plate", "id" : -151, - "runtimeId" : 860 + "runtimeId" : 389 }, { "name" : "minecraft:acacia_pressure_plate", "id" : -150, - "runtimeId" : 692 + "runtimeId" : 106 }, { "name" : "minecraft:spruce_trapdoor", "id" : -149, - "runtimeId" : 1033 + "runtimeId" : 196 }, { "name" : "minecraft:jungle_trapdoor", "id" : -148, - "runtimeId" : 528 + "runtimeId" : 1000 }, { "name" : "minecraft:dark_oak_trapdoor", "id" : -147, - "runtimeId" : 915 + "runtimeId" : 63 }, { "name" : "minecraft:birch_trapdoor", "id" : -146, - "runtimeId" : 863 + "runtimeId" : 52 }, { "name" : "minecraft:acacia_trapdoor", "id" : -145, - "runtimeId" : 840 + "runtimeId" : 94 }, { "name" : "minecraft:spruce_button", "id" : -144, - "runtimeId" : 341 + "runtimeId" : 705 }, { "name" : "minecraft:jungle_button", "id" : -143, - "runtimeId" : 965 + "runtimeId" : 737 }, { "name" : "minecraft:dark_oak_button", "id" : -142, - "runtimeId" : 787 + "runtimeId" : 250 }, { "name" : "minecraft:birch_button", "id" : -141, - "runtimeId" : 857 + "runtimeId" : 810 }, { "name" : "minecraft:acacia_button", "id" : -140, - "runtimeId" : 834 + "runtimeId" : 349 }, { "name" : "minecraft:dried_kelp_block", "id" : -139, - "runtimeId" : 867 + "runtimeId" : 487 }, { "name" : "minecraft:item.kelp", "id" : -138, - "runtimeId" : 895 + "runtimeId" : 779 }, { "name" : "minecraft:coral_fan_hang3", "id" : -137, - "runtimeId" : 903 + "runtimeId" : 154 }, { "name" : "minecraft:coral_fan_hang2", "id" : -136, - "runtimeId" : 589 + "runtimeId" : 1103 }, { "name" : "minecraft:coral_fan_hang", "id" : -135, - "runtimeId" : 902 + "runtimeId" : 718 }, { "name" : "minecraft:coral_fan_dead", "id" : -134, - "runtimeId" : 587 + "runtimeId" : 505 }, { "name" : "minecraft:coral_fan", "id" : -133, - "runtimeId" : 677 + "runtimeId" : 363 }, { "name" : "minecraft:coral_block", "id" : -132, - "runtimeId" : 666 + "runtimeId" : 480 }, { "name" : "minecraft:coral", "id" : -131, - "runtimeId" : 321 + "runtimeId" : 447 }, { "name" : "minecraft:seagrass", "id" : -130, - "runtimeId" : 516 + "runtimeId" : 804 }, { "name" : "minecraft:element_118", "id" : -129, - "runtimeId" : 824 + "runtimeId" : 274 }, { "name" : "minecraft:element_117", "id" : -128, - "runtimeId" : 823 + "runtimeId" : 275 }, { "name" : "minecraft:element_116", "id" : -127, - "runtimeId" : 288 + "runtimeId" : 276 }, { "name" : "minecraft:element_115", "id" : -126, - "runtimeId" : 822 + "runtimeId" : 277 }, { "name" : "minecraft:element_114", "id" : -125, - "runtimeId" : 819 + "runtimeId" : 278 }, { "name" : "minecraft:element_113", "id" : -124, - "runtimeId" : 817 + "runtimeId" : 279 }, { "name" : "minecraft:element_112", "id" : -123, - "runtimeId" : 815 + "runtimeId" : 280 }, { "name" : "minecraft:element_111", "id" : -122, - "runtimeId" : 416 + "runtimeId" : 530 }, { "name" : "minecraft:element_110", "id" : -121, - "runtimeId" : 814 + "runtimeId" : 488 }, { "name" : "minecraft:element_109", "id" : -120, - "runtimeId" : 463 + "runtimeId" : 281 }, { "name" : "minecraft:element_108", "id" : -119, - "runtimeId" : 813 + "runtimeId" : 283 }, { "name" : "minecraft:element_107", "id" : -118, - "runtimeId" : 812 + "runtimeId" : 1052 }, { "name" : "minecraft:element_106", "id" : -117, - "runtimeId" : 810 + "runtimeId" : 631 }, { "name" : "minecraft:element_105", "id" : -116, - "runtimeId" : 809 + "runtimeId" : 587 }, { "name" : "minecraft:element_104", "id" : -115, - "runtimeId" : 138 + "runtimeId" : 659 }, { "name" : "minecraft:element_103", "id" : -114, - "runtimeId" : 695 + "runtimeId" : 285 }, { "name" : "minecraft:element_102", "id" : -113, - "runtimeId" : 545 + "runtimeId" : 286 }, { "name" : "minecraft:element_101", "id" : -112, - "runtimeId" : 210 + "runtimeId" : 287 }, { "name" : "minecraft:element_100", "id" : -111, - "runtimeId" : 669 + "runtimeId" : 288 }, { "name" : "minecraft:element_99", "id" : -110, - "runtimeId" : 807 + "runtimeId" : 916 }, { "name" : "minecraft:element_98", "id" : -109, - "runtimeId" : 806 + "runtimeId" : 289 }, { "name" : "minecraft:element_97", "id" : -108, - "runtimeId" : 298 + "runtimeId" : 290 }, { "name" : "minecraft:element_96", "id" : -107, - "runtimeId" : 805 + "runtimeId" : 291 }, { "name" : "minecraft:element_95", "id" : -106, - "runtimeId" : 803 + "runtimeId" : 292 }, { "name" : "minecraft:element_94", "id" : -105, - "runtimeId" : 802 + "runtimeId" : 973 }, { "name" : "minecraft:element_93", "id" : -104, - "runtimeId" : 801 + "runtimeId" : 295 }, { "name" : "minecraft:element_92", "id" : -103, - "runtimeId" : 613 + "runtimeId" : 297 }, { "name" : "minecraft:element_91", "id" : -102, - "runtimeId" : 800 + "runtimeId" : 640 }, { "name" : "minecraft:element_90", "id" : -101, - "runtimeId" : 799 + "runtimeId" : 298 }, { "name" : "minecraft:element_89", "id" : -100, - "runtimeId" : 798 + "runtimeId" : 299 }, { "name" : "minecraft:element_88", "id" : -99, - "runtimeId" : 797 + "runtimeId" : 300 }, { "name" : "minecraft:element_87", "id" : -98, - "runtimeId" : 796 + "runtimeId" : 302 }, { "name" : "minecraft:element_86", "id" : -97, - "runtimeId" : 193 + "runtimeId" : 303 }, { "name" : "minecraft:element_85", "id" : -96, - "runtimeId" : 795 + "runtimeId" : 304 }, { "name" : "minecraft:element_84", "id" : -95, - "runtimeId" : 240 + "runtimeId" : 695 }, { "name" : "minecraft:element_83", "id" : -94, - "runtimeId" : 619 + "runtimeId" : 305 }, { "name" : "minecraft:element_82", "id" : -93, - "runtimeId" : 793 + "runtimeId" : 548 }, { "name" : "minecraft:element_81", "id" : -92, - "runtimeId" : 792 + "runtimeId" : 307 }, { "name" : "minecraft:element_80", "id" : -91, - "runtimeId" : 471 + "runtimeId" : 308 }, { "name" : "minecraft:element_79", "id" : -90, - "runtimeId" : 789 + "runtimeId" : 309 }, { "name" : "minecraft:element_78", "id" : -89, - "runtimeId" : 605 + "runtimeId" : 311 }, { "name" : "minecraft:element_77", "id" : -88, - "runtimeId" : 788 + "runtimeId" : 784 }, { "name" : "minecraft:element_76", "id" : -87, - "runtimeId" : 651 + "runtimeId" : 313 }, { "name" : "minecraft:element_75", "id" : -86, - "runtimeId" : 786 + "runtimeId" : 314 }, { "name" : "minecraft:element_74", "id" : -85, - "runtimeId" : 265 + "runtimeId" : 315 }, { "name" : "minecraft:element_73", "id" : -84, - "runtimeId" : 580 + "runtimeId" : 517 }, { "name" : "minecraft:element_72", "id" : -83, - "runtimeId" : 784 + "runtimeId" : 316 }, { "name" : "minecraft:element_71", "id" : -82, - "runtimeId" : 782 + "runtimeId" : 477 }, { "name" : "minecraft:element_70", "id" : -81, - "runtimeId" : 781 + "runtimeId" : 407 }, { "name" : "minecraft:element_69", "id" : -80, - "runtimeId" : 534 + "runtimeId" : 414 }, { "name" : "minecraft:element_68", "id" : -79, - "runtimeId" : 780 + "runtimeId" : 317 }, { "name" : "minecraft:element_67", "id" : -78, - "runtimeId" : 779 + "runtimeId" : 319 }, { "name" : "minecraft:element_66", "id" : -77, - "runtimeId" : 778 + "runtimeId" : 322 }, { "name" : "minecraft:element_65", "id" : -76, - "runtimeId" : 777 + "runtimeId" : 849 }, { "name" : "minecraft:element_64", "id" : -75, - "runtimeId" : 776 + "runtimeId" : 1044 }, { "name" : "minecraft:element_63", "id" : -74, - "runtimeId" : 549 + "runtimeId" : 525 }, { "name" : "minecraft:element_62", "id" : -73, - "runtimeId" : 93 + "runtimeId" : 425 }, { "name" : "minecraft:element_61", "id" : -72, - "runtimeId" : 65 + "runtimeId" : 323 }, { "name" : "minecraft:element_60", "id" : -71, - "runtimeId" : 774 + "runtimeId" : 751 }, { "name" : "minecraft:element_59", "id" : -70, - "runtimeId" : 773 + "runtimeId" : 324 }, { "name" : "minecraft:element_58", "id" : -69, - "runtimeId" : 772 + "runtimeId" : 325 }, { "name" : "minecraft:element_57", "id" : -68, - "runtimeId" : 770 + "runtimeId" : 326 }, { "name" : "minecraft:element_56", "id" : -67, - "runtimeId" : 767 + "runtimeId" : 328 }, { "name" : "minecraft:element_55", "id" : -66, - "runtimeId" : 257 + "runtimeId" : 500 }, { "name" : "minecraft:element_54", "id" : -65, - "runtimeId" : 766 + "runtimeId" : 345 }, { "name" : "minecraft:element_53", "id" : -64, - "runtimeId" : 664 + "runtimeId" : 861 }, { "name" : "minecraft:element_52", "id" : -63, - "runtimeId" : 181 + "runtimeId" : 329 }, { "name" : "minecraft:element_51", "id" : -62, - "runtimeId" : 237 + "runtimeId" : 929 }, { "name" : "minecraft:element_50", "id" : -61, - "runtimeId" : 13 + "runtimeId" : 698 }, { "name" : "minecraft:element_49", "id" : -60, - "runtimeId" : 212 + "runtimeId" : 614 }, { "name" : "minecraft:element_48", "id" : -59, - "runtimeId" : 765 + "runtimeId" : 372 }, { "name" : "minecraft:element_47", "id" : -58, - "runtimeId" : 529 + "runtimeId" : 331 }, { "name" : "minecraft:element_46", "id" : -57, - "runtimeId" : 764 + "runtimeId" : 573 }, { "name" : "minecraft:element_45", "id" : -56, - "runtimeId" : 763 + "runtimeId" : 711 }, { "name" : "minecraft:element_44", "id" : -55, - "runtimeId" : 404 + "runtimeId" : 332 }, { "name" : "minecraft:element_43", "id" : -54, - "runtimeId" : 117 + "runtimeId" : 1070 }, { "name" : "minecraft:element_42", "id" : -53, - "runtimeId" : 576 + "runtimeId" : 608 }, { "name" : "minecraft:element_41", "id" : -52, - "runtimeId" : 362 + "runtimeId" : 914 }, { "name" : "minecraft:element_40", "id" : -51, - "runtimeId" : 761 + "runtimeId" : 333 }, { "name" : "minecraft:element_39", "id" : -50, - "runtimeId" : 760 + "runtimeId" : 334 }, { "name" : "minecraft:element_38", "id" : -49, - "runtimeId" : 759 + "runtimeId" : 802 }, { "name" : "minecraft:element_37", "id" : -48, - "runtimeId" : 758 + "runtimeId" : 733 }, { "name" : "minecraft:element_36", "id" : -47, - "runtimeId" : 756 + "runtimeId" : 540 }, { "name" : "minecraft:element_35", "id" : -46, - "runtimeId" : 135 + "runtimeId" : 604 }, { "name" : "minecraft:element_34", "id" : -45, - "runtimeId" : 755 + "runtimeId" : 335 }, { "name" : "minecraft:element_33", "id" : -44, - "runtimeId" : 654 + "runtimeId" : 337 }, { "name" : "minecraft:element_32", "id" : -43, - "runtimeId" : 754 + "runtimeId" : 339 }, { "name" : "minecraft:element_31", "id" : -42, - "runtimeId" : 753 + "runtimeId" : 340 }, { "name" : "minecraft:element_30", "id" : -41, - "runtimeId" : 752 + "runtimeId" : 552 }, { "name" : "minecraft:element_29", "id" : -40, - "runtimeId" : 751 + "runtimeId" : 399 }, { "name" : "minecraft:element_28", "id" : -39, - "runtimeId" : 498 + "runtimeId" : 342 }, { "name" : "minecraft:element_27", "id" : -38, - "runtimeId" : 750 + "runtimeId" : 396 }, { "name" : "minecraft:element_26", "id" : -37, - "runtimeId" : 749 + "runtimeId" : 1105 }, { "name" : "minecraft:element_25", "id" : -36, - "runtimeId" : 748 + "runtimeId" : 708 }, { "name" : "minecraft:element_24", "id" : -35, - "runtimeId" : 747 + "runtimeId" : 1088 }, { "name" : "minecraft:element_23", "id" : -34, - "runtimeId" : 319 + "runtimeId" : 1027 }, { "name" : "minecraft:element_22", "id" : -33, - "runtimeId" : 699 + "runtimeId" : 1102 }, { "name" : "minecraft:element_21", "id" : -32, - "runtimeId" : 431 + "runtimeId" : 773 }, { "name" : "minecraft:element_20", "id" : -31, - "runtimeId" : 745 + "runtimeId" : 1085 }, { "name" : "minecraft:element_19", "id" : -30, - "runtimeId" : 744 + "runtimeId" : 1098 }, { "name" : "minecraft:element_18", "id" : -29, - "runtimeId" : 743 + "runtimeId" : 557 }, { "name" : "minecraft:element_17", "id" : -28, - "runtimeId" : 741 + "runtimeId" : 977 }, { "name" : "minecraft:element_16", "id" : -27, - "runtimeId" : 740 + "runtimeId" : 1097 }, { "name" : "minecraft:element_15", "id" : -26, - "runtimeId" : 23 + "runtimeId" : 471 }, { "name" : "minecraft:element_14", "id" : -25, - "runtimeId" : 739 + "runtimeId" : 1094 }, { "name" : "minecraft:element_13", "id" : -24, - "runtimeId" : 109 + "runtimeId" : 1093 }, { "name" : "minecraft:element_12", "id" : -23, - "runtimeId" : 738 + "runtimeId" : 701 }, { "name" : "minecraft:element_11", "id" : -22, - "runtimeId" : 737 + "runtimeId" : 1091 }, { "name" : "minecraft:element_10", "id" : -21, - "runtimeId" : 736 + "runtimeId" : 983 }, { "name" : "minecraft:element_9", "id" : -20, - "runtimeId" : 734 + "runtimeId" : 709 }, { "name" : "minecraft:element_8", "id" : -19, - "runtimeId" : 733 + "runtimeId" : 1089 }, { "name" : "minecraft:element_7", "id" : -18, - "runtimeId" : 35 + "runtimeId" : 1025 }, { "name" : "minecraft:element_6", "id" : -17, - "runtimeId" : 275 + "runtimeId" : 1101 }, { "name" : "minecraft:element_5", "id" : -16, - "runtimeId" : 732 + "runtimeId" : 772 }, { "name" : "minecraft:element_4", "id" : -15, - "runtimeId" : 730 + "runtimeId" : 1086 }, { "name" : "minecraft:element_3", "id" : -14, - "runtimeId" : 729 + "runtimeId" : 1031 }, { "name" : "minecraft:element_2", "id" : -13, - "runtimeId" : 126 + "runtimeId" : 667 }, { "name" : "minecraft:element_1", "id" : -12, - "runtimeId" : 77 + "runtimeId" : 1083 }, { "name" : "minecraft:blue_ice", "id" : -11, - "runtimeId" : 617 + "runtimeId" : 41 }, { "name" : "minecraft:stripped_oak_log", "id" : -10, - "runtimeId" : 14 + "runtimeId" : 17 }, { "name" : "minecraft:stripped_dark_oak_log", "id" : -9, - "runtimeId" : 1038 + "runtimeId" : 242 }, { "name" : "minecraft:stripped_acacia_log", "id" : -8, - "runtimeId" : 674 + "runtimeId" : 722 }, { "name" : "minecraft:stripped_jungle_log", "id" : -7, - "runtimeId" : 514 + "runtimeId" : 727 }, { "name" : "minecraft:stripped_birch_log", "id" : -6, - "runtimeId" : 885 + "runtimeId" : 156 }, { "name" : "minecraft:stripped_spruce_log", "id" : -5, - "runtimeId" : 1039 + "runtimeId" : 62 }, { "name" : "minecraft:prismarine_bricks_stairs", "id" : -4, - "runtimeId" : 40 + "runtimeId" : 244 }, { "name" : "minecraft:dark_prismarine_stairs", "id" : -3, - "runtimeId" : 916 + "runtimeId" : 626 }, { "name" : "minecraft:prismarine_stairs", "id" : -2, - "runtimeId" : 1011 + "runtimeId" : 31 }, { "name" : "minecraft:stone", "id" : 1, - "runtimeId" : 658 + "runtimeId" : 981 }, { "name" : "minecraft:grass", "id" : 2, - "runtimeId" : 952 + "runtimeId" : 43 }, { "name" : "minecraft:dirt", "id" : 3, - "runtimeId" : 94 + "runtimeId" : 803 }, { "name" : "minecraft:cobblestone", "id" : 4, - "runtimeId" : 554 + "runtimeId" : 371 }, { "name" : "minecraft:planks", "id" : 5, - "runtimeId" : 162 + "runtimeId" : 1014 }, { "name" : "minecraft:sapling", "id" : 6, - "runtimeId" : 682 + "runtimeId" : 926 }, { "name" : "minecraft:bedrock", "id" : 7, - "runtimeId" : 853 + "runtimeId" : 65 }, { "name" : "minecraft:flowing_water", "id" : 8, - "runtimeId" : 172 + "runtimeId" : 529 }, { "name" : "minecraft:water", "id" : 9, - "runtimeId" : 1069 + "runtimeId" : 1087 }, { "name" : "minecraft:flowing_lava", "id" : 10, - "runtimeId" : 248 + "runtimeId" : 1056 }, { "name" : "minecraft:lava", "id" : 11, - "runtimeId" : 974 + "runtimeId" : 837 }, { "name" : "minecraft:sand", "id" : 12, - "runtimeId" : 229 + "runtimeId" : 984 }, { "name" : "minecraft:gravel", "id" : 13, - "runtimeId" : 954 + "runtimeId" : 0 }, { "name" : "minecraft:gold_ore", "id" : 14, - "runtimeId" : 950 + "runtimeId" : 192 }, { "name" : "minecraft:iron_ore", "id" : 15, - "runtimeId" : 310 + "runtimeId" : 123 }, { "name" : "minecraft:coal_ore", "id" : 16, - "runtimeId" : 570 + "runtimeId" : 149 }, { "name" : "minecraft:log", "id" : 17, - "runtimeId" : 662 + "runtimeId" : 992 }, { "name" : "minecraft:leaves", "id" : 18, - "runtimeId" : 538 + "runtimeId" : 985 }, { "name" : "minecraft:sponge", "id" : 19, - "runtimeId" : 634 + "runtimeId" : 1024 }, { "name" : "minecraft:glass", "id" : 20, - "runtimeId" : 945 + "runtimeId" : 69 }, { "name" : "minecraft:lapis_ore", "id" : 21, - "runtimeId" : 973 + "runtimeId" : 10 }, { "name" : "minecraft:lapis_block", "id" : 22, - "runtimeId" : 972 + "runtimeId" : 720 }, { "name" : "minecraft:dispenser", "id" : 23, - "runtimeId" : 929 + "runtimeId" : 923 }, { "name" : "minecraft:sandstone", "id" : 24, - "runtimeId" : 563 + "runtimeId" : 1012 }, { "name" : "minecraft:noteblock", "id" : 25, - "runtimeId" : 995 + "runtimeId" : 623 }, { "name" : "minecraft:item.bed", "id" : 26, - "runtimeId" : 851 + "runtimeId" : 617 }, { "name" : "minecraft:golden_rail", "id" : 27, - "runtimeId" : 951 + "runtimeId" : 321 }, { "name" : "minecraft:detector_rail", "id" : 28, - "runtimeId" : 836 + "runtimeId" : 521 }, { "name" : "minecraft:sticky_piston", "id" : 29, - "runtimeId" : 702 + "runtimeId" : 420 }, { "name" : "minecraft:web", "id" : 30, - "runtimeId" : 1083 + "runtimeId" : 589 }, { "name" : "minecraft:tallgrass", "id" : 31, - "runtimeId" : 691 + "runtimeId" : 818 }, { "name" : "minecraft:deadbush", "id" : 32, - "runtimeId" : 920 + "runtimeId" : 126 }, { "name" : "minecraft:piston", "id" : 33, - "runtimeId" : 231 + "runtimeId" : 761 }, { - "name" : "minecraft:pistonarmcollision", + "name" : "minecraft:piston_arm_collision", "id" : 34, - "runtimeId" : 1000 + "runtimeId" : 253 }, { "name" : "minecraft:wool", "id" : 35, - "runtimeId" : 659 + "runtimeId" : 991 }, { "name" : "minecraft:element_0", "id" : 36, - "runtimeId" : 439 + "runtimeId" : 795 }, { "name" : "minecraft:yellow_flower", "id" : 37, - "runtimeId" : 660 + "runtimeId" : 1020 }, { "name" : "minecraft:red_flower", "id" : 38, - "runtimeId" : 689 + "runtimeId" : 1022 }, { "name" : "minecraft:brown_mushroom", "id" : 39, - "runtimeId" : 205 + "runtimeId" : 182 }, { "name" : "minecraft:red_mushroom", "id" : 40, - "runtimeId" : 69 + "runtimeId" : 893 }, { "name" : "minecraft:gold_block", "id" : 41, - "runtimeId" : 892 + "runtimeId" : 816 }, { "name" : "minecraft:iron_block", "id" : 42, - "runtimeId" : 964 + "runtimeId" : 682 }, { "name" : "minecraft:real_double_stone_slab", "id" : 43, - "runtimeId" : 673 + "runtimeId" : 1042 }, { "name" : "minecraft:double_stone_slab", "id" : 44, - "runtimeId" : 668 + "runtimeId" : 996 }, { "name" : "minecraft:brick_block", "id" : 45, - "runtimeId" : 427 + "runtimeId" : 117 }, { "name" : "minecraft:tnt", "id" : 46, - "runtimeId" : 712 + "runtimeId" : 1067 }, { "name" : "minecraft:bookshelf", "id" : 47, - "runtimeId" : 18 + "runtimeId" : 975 }, { "name" : "minecraft:mossy_cobblestone", "id" : 48, - "runtimeId" : 976 + "runtimeId" : 237 }, { "name" : "minecraft:obsidian", "id" : 49, - "runtimeId" : 112 + "runtimeId" : 214 }, { "name" : "minecraft:torch", "id" : 50, - "runtimeId" : 1046 + "runtimeId" : 199 }, { "name" : "minecraft:fire", "id" : 51, - "runtimeId" : 79 + "runtimeId" : 876 }, { "name" : "minecraft:mob_spawner", "id" : 52, - "runtimeId" : 441 + "runtimeId" : 831 }, { "name" : "minecraft:oak_stairs", "id" : 53, - "runtimeId" : 996 + "runtimeId" : 235 }, { "name" : "minecraft:chest", "id" : 54, - "runtimeId" : 128 + "runtimeId" : 1033 }, { "name" : "minecraft:redstone_wire", "id" : 55, - "runtimeId" : 1019 + "runtimeId" : 1095 }, { "name" : "minecraft:diamond_ore", "id" : 56, - "runtimeId" : 928 + "runtimeId" : 143 }, { "name" : "minecraft:diamond_block", "id" : 57, - "runtimeId" : 36 + "runtimeId" : 236 }, { "name" : "minecraft:crafting_table", "id" : 58, - "runtimeId" : 771 + "runtimeId" : 692 }, { "name" : "minecraft:item.wheat", "id" : 59, - "runtimeId" : 1030 + "runtimeId" : 875 }, { "name" : "minecraft:farmland", "id" : 60, - "runtimeId" : 156 + "runtimeId" : 697 }, { "name" : "minecraft:furnace", "id" : 61, - "runtimeId" : 943 + "runtimeId" : 5 }, { "name" : "minecraft:lit_furnace", "id" : 62, - "runtimeId" : 968 + "runtimeId" : 678 }, { "name" : "minecraft:standing_sign", "id" : 63, - "runtimeId" : 485 + "runtimeId" : 190 }, { "name" : "minecraft:item.wooden_door", "id" : 64, - "runtimeId" : 1087 + "runtimeId" : 160 }, { "name" : "minecraft:ladder", "id" : 65, - "runtimeId" : 971 + "runtimeId" : 482 }, { "name" : "minecraft:rail", "id" : 66, - "runtimeId" : 672 + "runtimeId" : 387 }, { "name" : "minecraft:stone_stairs", "id" : 67, - "runtimeId" : 1035 + "runtimeId" : 165 }, { "name" : "minecraft:wall_sign", "id" : 68, - "runtimeId" : 873 + "runtimeId" : 1039 }, { "name" : "minecraft:lever", "id" : 69, - "runtimeId" : 977 + "runtimeId" : 554 }, { "name" : "minecraft:stone_pressure_plate", "id" : 70, - "runtimeId" : 228 + "runtimeId" : 157 }, { "name" : "minecraft:item.iron_door", "id" : 71, - "runtimeId" : 44 + "runtimeId" : 410 }, { "name" : "minecraft:wooden_pressure_plate", "id" : 72, - "runtimeId" : 1088 + "runtimeId" : 1 }, { "name" : "minecraft:redstone_ore", "id" : 73, - "runtimeId" : 1018 + "runtimeId" : 146 }, { "name" : "minecraft:lit_redstone_ore", "id" : 74, - "runtimeId" : 769 + "runtimeId" : 668 }, { "name" : "minecraft:unlit_redstone_torch", "id" : 75, - "runtimeId" : 970 + "runtimeId" : 186 }, { "name" : "minecraft:redstone_torch", "id" : 76, - "runtimeId" : 790 + "runtimeId" : 176 }, { "name" : "minecraft:stone_button", "id" : 77, - "runtimeId" : 1034 + "runtimeId" : 940 }, { "name" : "minecraft:snow_layer", "id" : 78, - "runtimeId" : 90 + "runtimeId" : 1028 }, { "name" : "minecraft:ice", "id" : 79, - "runtimeId" : 757 + "runtimeId" : 440 }, { "name" : "minecraft:snow", "id" : 80, - "runtimeId" : 835 + "runtimeId" : 152 }, { "name" : "minecraft:cactus", "id" : 81, - "runtimeId" : 808 + "runtimeId" : 101 }, { "name" : "minecraft:clay", "id" : 82, - "runtimeId" : 484 + "runtimeId" : 562 }, { "name" : "minecraft:item.reeds", "id" : 83, - "runtimeId" : 332 + "runtimeId" : 71 }, { "name" : "minecraft:jukebox", "id" : 84, - "runtimeId" : 467 + "runtimeId" : 111 }, { "name" : "minecraft:fence", "id" : 85, - "runtimeId" : 663 + "runtimeId" : 375 }, { "name" : "minecraft:pumpkin", "id" : 86, - "runtimeId" : 714 + "runtimeId" : 689 }, { "name" : "minecraft:netherrack", "id" : 87, - "runtimeId" : 992 + "runtimeId" : 724 }, { "name" : "minecraft:soul_sand", "id" : 88, - "runtimeId" : 213 + "runtimeId" : 413 }, { "name" : "minecraft:glowstone", "id" : 89, - "runtimeId" : 244 + "runtimeId" : 158 }, { "name" : "minecraft:portal", "id" : 90, - "runtimeId" : 29 + "runtimeId" : 715 }, { "name" : "minecraft:lit_pumpkin", "id" : 91, - "runtimeId" : 316 + "runtimeId" : 740 }, { "name" : "minecraft:item.cake", "id" : 92, - "runtimeId" : 355 + "runtimeId" : 1011 }, { "name" : "minecraft:unpowered_repeater", "id" : 93, - "runtimeId" : 1053 + "runtimeId" : 122 }, { "name" : "minecraft:powered_repeater", "id" : 94, - "runtimeId" : 1010 + "runtimeId" : 134 }, { - "name" : "minecraft:invisiblebedrock", + "name" : "minecraft:invisible_bedrock", "id" : 95, - "runtimeId" : 122 + "runtimeId" : 1072 }, { "name" : "minecraft:trapdoor", "id" : 96, - "runtimeId" : 1047 + "runtimeId" : 240 }, { "name" : "minecraft:monster_egg", "id" : 97, - "runtimeId" : 594 + "runtimeId" : 967 }, { "name" : "minecraft:stonebrick", "id" : 98, - "runtimeId" : 665 + "runtimeId" : 994 }, { "name" : "minecraft:brown_mushroom_block", "id" : 99, - "runtimeId" : 694 + "runtimeId" : 441 }, { "name" : "minecraft:red_mushroom_block", "id" : 100, - "runtimeId" : 489 + "runtimeId" : 1100 }, { "name" : "minecraft:iron_bars", "id" : 101, - "runtimeId" : 472 + "runtimeId" : 113 }, { "name" : "minecraft:glass_pane", "id" : 102, - "runtimeId" : 946 + "runtimeId" : 812 }, { "name" : "minecraft:melon_block", "id" : 103, - "runtimeId" : 144 + "runtimeId" : 622 }, { "name" : "minecraft:pumpkin_stem", "id" : 104, - "runtimeId" : 1012 + "runtimeId" : 353 }, { "name" : "minecraft:melon_stem", "id" : 105, - "runtimeId" : 982 + "runtimeId" : 939 }, { "name" : "minecraft:vine", "id" : 106, - "runtimeId" : 1056 + "runtimeId" : 194 }, { "name" : "minecraft:fence_gate", "id" : 107, - "runtimeId" : 426 + "runtimeId" : 251 }, { "name" : "minecraft:brick_stairs", "id" : 108, - "runtimeId" : 874 + "runtimeId" : 57 }, { "name" : "minecraft:stone_brick_stairs", "id" : 109, - "runtimeId" : 27 + "runtimeId" : 453 }, { "name" : "minecraft:mycelium", "id" : 110, - "runtimeId" : 986 + "runtimeId" : 330 }, { "name" : "minecraft:waterlily", "id" : 111, - "runtimeId" : 520 + "runtimeId" : 1023 }, { "name" : "minecraft:nether_brick", "id" : 112, - "runtimeId" : 987 + "runtimeId" : 233 }, { "name" : "minecraft:nether_brick_fence", "id" : 113, - "runtimeId" : 988 + "runtimeId" : 906 }, { "name" : "minecraft:nether_brick_stairs", "id" : 114, - "runtimeId" : 989 + "runtimeId" : 248 }, { "name" : "minecraft:item.nether_wart", "id" : 115, - "runtimeId" : 281 + "runtimeId" : 805 }, { "name" : "minecraft:enchanting_table", "id" : 116, - "runtimeId" : 936 + "runtimeId" : 193 }, { - "name" : "minecraft:brewingstandblock", + "name" : "minecraft:item.brewing_stand", "id" : 117, - "runtimeId" : 351 + "runtimeId" : 16 }, { "name" : "minecraft:item.cauldron", "id" : 118, - "runtimeId" : 883 + "runtimeId" : 18 }, { "name" : "minecraft:end_portal", "id" : 119, - "runtimeId" : 324 + "runtimeId" : 229 }, { "name" : "minecraft:end_portal_frame", "id" : 120, - "runtimeId" : 615 + "runtimeId" : 1035 }, { "name" : "minecraft:end_stone", "id" : 121, - "runtimeId" : 474 + "runtimeId" : 159 }, { "name" : "minecraft:dragon_egg", "id" : 122, - "runtimeId" : 930 + "runtimeId" : 30 }, { "name" : "minecraft:redstone_lamp", "id" : 123, - "runtimeId" : 1017 + "runtimeId" : 238 }, { "name" : "minecraft:lit_redstone_lamp", "id" : 124, - "runtimeId" : 179 + "runtimeId" : 380 }, { "name" : "minecraft:dropper", "id" : 125, - "runtimeId" : 933 + "runtimeId" : 265 }, { "name" : "minecraft:activator_rail", "id" : 126, - "runtimeId" : 296 + "runtimeId" : 221 }, { "name" : "minecraft:cocoa", "id" : 127, - "runtimeId" : 899 + "runtimeId" : 987 }, { "name" : "minecraft:sandstone_stairs", "id" : 128, - "runtimeId" : 887 + "runtimeId" : 490 }, { "name" : "minecraft:emerald_ore", "id" : 129, - "runtimeId" : 910 + "runtimeId" : 579 }, { "name" : "minecraft:ender_chest", "id" : 130, - "runtimeId" : 731 + "runtimeId" : 306 }, { "name" : "minecraft:tripwire_hook", "id" : 131, - "runtimeId" : 1048 + "runtimeId" : 789 }, { - "name" : "minecraft:tripwire", + "name" : "minecraft:trip_wire", "id" : 132, - "runtimeId" : 55 + "runtimeId" : 19 }, { "name" : "minecraft:emerald_block", "id" : 133, - "runtimeId" : 935 + "runtimeId" : 185 }, { "name" : "minecraft:spruce_stairs", "id" : 134, - "runtimeId" : 110 + "runtimeId" : 1084 }, { "name" : "minecraft:birch_stairs", "id" : 135, - "runtimeId" : 820 + "runtimeId" : 245 }, { "name" : "minecraft:jungle_stairs", "id" : 136, - "runtimeId" : 934 + "runtimeId" : 1005 }, { "name" : "minecraft:command_block", "id" : 137, - "runtimeId" : 89 + "runtimeId" : 171 }, { "name" : "minecraft:beacon", "id" : 138, - "runtimeId" : 391 + "runtimeId" : 1038 }, { "name" : "minecraft:cobblestone_wall", "id" : 139, - "runtimeId" : 502 + "runtimeId" : 754 }, { "name" : "minecraft:item.flower_pot", "id" : 140, - "runtimeId" : 378 + "runtimeId" : 225 }, { "name" : "minecraft:carrots", "id" : 141, - "runtimeId" : 149 + "runtimeId" : 73 }, { "name" : "minecraft:potatoes", "id" : 142, - "runtimeId" : 604 + "runtimeId" : 252 }, { "name" : "minecraft:wooden_button", "id" : 143, - "runtimeId" : 1086 + "runtimeId" : 909 }, { "name" : "minecraft:item.skull", "id" : 144, - "runtimeId" : 1025 + "runtimeId" : 103 }, { "name" : "minecraft:anvil", "id" : 145, - "runtimeId" : 58 + "runtimeId" : 993 }, { "name" : "minecraft:trapped_chest", "id" : 146, - "runtimeId" : 61 + "runtimeId" : 702 }, { "name" : "minecraft:light_weighted_pressure_plate", "id" : 147, - "runtimeId" : 230 + "runtimeId" : 167 }, { "name" : "minecraft:heavy_weighted_pressure_plate", "id" : 148, - "runtimeId" : 961 + "runtimeId" : 184 }, { "name" : "minecraft:unpowered_comparator", "id" : 149, - "runtimeId" : 1052 + "runtimeId" : 612 }, { "name" : "minecraft:powered_comparator", "id" : 150, - "runtimeId" : 436 + "runtimeId" : 443 }, { "name" : "minecraft:daylight_detector", "id" : 151, - "runtimeId" : 91 + "runtimeId" : 198 }, { "name" : "minecraft:redstone_block", "id" : 152, - "runtimeId" : 583 + "runtimeId" : 376 }, { "name" : "minecraft:quartz_ore", "id" : 153, - "runtimeId" : 621 + "runtimeId" : 138 }, { "name" : "minecraft:item.hopper", "id" : 154, - "runtimeId" : 643 + "runtimeId" : 673 }, { "name" : "minecraft:quartz_block", "id" : 155, - "runtimeId" : 690 + "runtimeId" : 436 }, { "name" : "minecraft:quartz_stairs", "id" : 156, - "runtimeId" : 837 + "runtimeId" : 114 }, { "name" : "minecraft:double_wooden_slab", "id" : 157, - "runtimeId" : 238 + "runtimeId" : 76 }, { "name" : "minecraft:wooden_slab", "id" : 158, - "runtimeId" : 54 + "runtimeId" : 822 }, { "name" : "minecraft:stained_hardened_clay", "id" : 159, - "runtimeId" : 661 + "runtimeId" : 988 }, { "name" : "minecraft:stained_glass_pane", "id" : 160, - "runtimeId" : 56 + "runtimeId" : 1055 }, { "name" : "minecraft:leaves2", "id" : 161, - "runtimeId" : 457 + "runtimeId" : 616 }, { "name" : "minecraft:log2", "id" : 162, - "runtimeId" : 696 + "runtimeId" : 637 }, { "name" : "minecraft:acacia_stairs", "id" : 163, - "runtimeId" : 189 + "runtimeId" : 66 }, { "name" : "minecraft:dark_oak_stairs", "id" : 164, - "runtimeId" : 155 + "runtimeId" : 108 }, { "name" : "minecraft:slime", "id" : 165, - "runtimeId" : 715 + "runtimeId" : 151 }, { "name" : "minecraft:iron_trapdoor", "id" : 167, - "runtimeId" : 226 + "runtimeId" : 220 }, { "name" : "minecraft:prismarine", "id" : 168, - "runtimeId" : 299 + "runtimeId" : 625 }, { - "name" : "minecraft:sealantern", + "name" : "minecraft:sea_lantern", "id" : 169, - "runtimeId" : 242 + "runtimeId" : 1045 }, { "name" : "minecraft:hay_block", "id" : 170, - "runtimeId" : 76 + "runtimeId" : 912 }, { "name" : "minecraft:carpet", "id" : 171, - "runtimeId" : 250 + "runtimeId" : 890 }, { "name" : "minecraft:hardened_clay", "id" : 172, - "runtimeId" : 960 + "runtimeId" : 209 }, { "name" : "minecraft:coal_block", "id" : 173, - "runtimeId" : 894 + "runtimeId" : 886 }, { "name" : "minecraft:packed_ice", "id" : 174, - "runtimeId" : 901 + "runtimeId" : 866 }, { "name" : "minecraft:double_plant", "id" : 175, - "runtimeId" : 461 + "runtimeId" : 952 }, { "name" : "minecraft:standing_banner", "id" : 176, - "runtimeId" : 847 + "runtimeId" : 448 }, { "name" : "minecraft:wall_banner", "id" : 177, - "runtimeId" : 1057 + "runtimeId" : 84 }, { "name" : "minecraft:daylight_detector_inverted", "id" : 178, - "runtimeId" : 479 + "runtimeId" : 137 }, { "name" : "minecraft:red_sandstone", "id" : 179, - "runtimeId" : 340 + "runtimeId" : 1015 }, { "name" : "minecraft:red_sandstone_stairs", "id" : 180, - "runtimeId" : 401 + "runtimeId" : 99 }, { "name" : "minecraft:real_double_stone_slab2", "id" : 181, - "runtimeId" : 146 + "runtimeId" : 1007 }, { "name" : "minecraft:double_stone_slab2", "id" : 182, - "runtimeId" : 493 + "runtimeId" : 998 }, { "name" : "minecraft:spruce_fence_gate", "id" : 183, - "runtimeId" : 273 + "runtimeId" : 200 }, { "name" : "minecraft:birch_fence_gate", "id" : 184, - "runtimeId" : 859 + "runtimeId" : 684 }, { "name" : "minecraft:jungle_fence_gate", "id" : 185, - "runtimeId" : 249 + "runtimeId" : 97 }, { "name" : "minecraft:dark_oak_fence_gate", "id" : 186, - "runtimeId" : 821 + "runtimeId" : 707 }, { "name" : "minecraft:acacia_fence_gate", "id" : 187, - "runtimeId" : 838 + "runtimeId" : 13 }, { "name" : "minecraft:repeating_command_block", "id" : 188, - "runtimeId" : 1020 + "runtimeId" : 7 }, { "name" : "minecraft:chain_command_block", "id" : 189, - "runtimeId" : 624 + "runtimeId" : 519 }, { "name" : "minecraft:hard_glass_pane", "id" : 190, - "runtimeId" : 959 + "runtimeId" : 446 }, { "name" : "minecraft:hard_stained_glass_pane", "id" : 191, - "runtimeId" : 713 + "runtimeId" : 868 }, { "name" : "minecraft:chemical_heat", "id" : 192, - "runtimeId" : 889 + "runtimeId" : 20 }, { "name" : "minecraft:item.spruce_door", "id" : 193, - "runtimeId" : 1031 + "runtimeId" : 121 }, { "name" : "minecraft:item.birch_door", "id" : 194, - "runtimeId" : 277 + "runtimeId" : 37 }, { "name" : "minecraft:item.jungle_door", "id" : 195, - "runtimeId" : 966 + "runtimeId" : 741 }, { "name" : "minecraft:item.acacia_door", "id" : 196, - "runtimeId" : 501 + "runtimeId" : 231 }, { "name" : "minecraft:item.dark_oak_door", "id" : 197, - "runtimeId" : 25 + "runtimeId" : 81 }, { "name" : "minecraft:grass_path", "id" : 198, - "runtimeId" : 953 + "runtimeId" : 497 }, { "name" : "minecraft:item.frame", "id" : 199, - "runtimeId" : 488 + "runtimeId" : 150 }, { "name" : "minecraft:chorus_flower", "id" : 200, - "runtimeId" : 865 + "runtimeId" : 135 }, { "name" : "minecraft:purpur_block", "id" : 201, - "runtimeId" : 1 + "runtimeId" : 793 }, { "name" : "minecraft:colored_torch_rg", "id" : 202, - "runtimeId" : 428 + "runtimeId" : 456 }, { "name" : "minecraft:purpur_stairs", "id" : 203, - "runtimeId" : 842 + "runtimeId" : 484 }, { "name" : "minecraft:colored_torch_bp", "id" : 204, - "runtimeId" : 543 + "runtimeId" : 1069 }, { "name" : "minecraft:undyed_shulker_box", "id" : 205, - "runtimeId" : 701 + "runtimeId" : 1058 }, { "name" : "minecraft:end_bricks", "id" : 206, - "runtimeId" : 3 + "runtimeId" : 234 }, { "name" : "minecraft:frosted_ice", "id" : 207, - "runtimeId" : 849 + "runtimeId" : 544 }, { "name" : "minecraft:end_rod", "id" : 208, - "runtimeId" : 710 + "runtimeId" : 778 }, { "name" : "minecraft:end_gateway", "id" : 209, - "runtimeId" : 207 + "runtimeId" : 247 }, { "name" : "minecraft:allow", "id" : 210, - "runtimeId" : 843 + "runtimeId" : 629 }, { "name" : "minecraft:deny", "id" : 211, - "runtimeId" : 349 + "runtimeId" : 798 }, { "name" : "minecraft:border_block", "id" : 212, - "runtimeId" : 871 + "runtimeId" : 110 }, { "name" : "minecraft:magma", "id" : 213, - "runtimeId" : 698 + "runtimeId" : 1053 }, { "name" : "minecraft:nether_wart_block", "id" : 214, - "runtimeId" : 289 + "runtimeId" : 145 }, { "name" : "minecraft:red_nether_brick", "id" : 215, - "runtimeId" : 608 + "runtimeId" : 591 }, { "name" : "minecraft:bone_block", "id" : 216, - "runtimeId" : 870 + "runtimeId" : 455 }, { "name" : "minecraft:structure_void", "id" : 217, - "runtimeId" : 1043 + "runtimeId" : 971 }, { "name" : "minecraft:shulker_box", "id" : 218, - "runtimeId" : 345 + "runtimeId" : 889 }, { "name" : "minecraft:purple_glazed_terracotta", "id" : 219, - "runtimeId" : 1013 + "runtimeId" : 42 }, { "name" : "minecraft:white_glazed_terracotta", "id" : 220, - "runtimeId" : 1084 + "runtimeId" : 520 }, { "name" : "minecraft:orange_glazed_terracotta", "id" : 221, - "runtimeId" : 872 + "runtimeId" : 310 }, { "name" : "minecraft:magenta_glazed_terracotta", "id" : 222, - "runtimeId" : 268 + "runtimeId" : 188 }, { "name" : "minecraft:light_blue_glazed_terracotta", "id" : 223, - "runtimeId" : 102 + "runtimeId" : 284 }, { "name" : "minecraft:yellow_glazed_terracotta", "id" : 224, - "runtimeId" : 26 + "runtimeId" : 191 }, { "name" : "minecraft:lime_glazed_terracotta", "id" : 225, - "runtimeId" : 980 + "runtimeId" : 241 }, { "name" : "minecraft:pink_glazed_terracotta", "id" : 226, - "runtimeId" : 881 + "runtimeId" : 55 }, { "name" : "minecraft:gray_glazed_terracotta", "id" : 227, - "runtimeId" : 956 + "runtimeId" : 978 }, { "name" : "minecraft:silver_glazed_terracotta", "id" : 228, - "runtimeId" : 53 + "runtimeId" : 175 }, { "name" : "minecraft:cyan_glazed_terracotta", "id" : 229, - "runtimeId" : 811 + "runtimeId" : 266 }, { "name" : "minecraft:blue_glazed_terracotta", "id" : 231, - "runtimeId" : 869 + "runtimeId" : 91 }, { "name" : "minecraft:brown_glazed_terracotta", "id" : 232, - "runtimeId" : 876 + "runtimeId" : 669 }, { "name" : "minecraft:green_glazed_terracotta", "id" : 233, - "runtimeId" : 957 + "runtimeId" : 841 }, { "name" : "minecraft:red_glazed_terracotta", "id" : 234, - "runtimeId" : 1015 + "runtimeId" : 814 }, { "name" : "minecraft:black_glazed_terracotta", "id" : 235, - "runtimeId" : 768 + "runtimeId" : 78 }, { "name" : "minecraft:concrete", "id" : 236, - "runtimeId" : 631 + "runtimeId" : 1004 }, { "name" : "minecraft:concrete_powder", "id" : 237, - "runtimeId" : 285 + "runtimeId" : 1047 }, { "name" : "minecraft:chemistry_table", "id" : 238, - "runtimeId" : 303 + "runtimeId" : 561 }, { "name" : "minecraft:underwater_torch", "id" : 239, - "runtimeId" : 1050 + "runtimeId" : 181 }, { "name" : "minecraft:chorus_plant", "id" : 240, - "runtimeId" : 893 + "runtimeId" : 89 }, { "name" : "minecraft:stained_glass", "id" : 241, - "runtimeId" : 373 + "runtimeId" : 590 }, { "name" : "minecraft:item.camera", "id" : 242, - "runtimeId" : 879 + "runtimeId" : 29 }, { "name" : "minecraft:podzol", "id" : 243, - "runtimeId" : 1001 + "runtimeId" : 395 }, { "name" : "minecraft:item.beetroot", "id" : 244, - "runtimeId" : 209 + "runtimeId" : 104 }, { "name" : "minecraft:stonecutter", "id" : 245, - "runtimeId" : 1036 + "runtimeId" : 749 }, { "name" : "minecraft:glowingobsidian", "id" : 246, - "runtimeId" : 456 + "runtimeId" : 172 }, { "name" : "minecraft:netherreactor", "id" : 247, - "runtimeId" : 993 + "runtimeId" : 924 }, { "name" : "minecraft:info_update", "id" : 248, - "runtimeId" : 963 + "runtimeId" : 239 }, { "name" : "minecraft:info_update2", "id" : 249, - "runtimeId" : 568 + "runtimeId" : 4 }, { - "name" : "minecraft:movingblock", + "name" : "minecraft:moving_block", "id" : 250, - "runtimeId" : 985 + "runtimeId" : 85 }, { "name" : "minecraft:observer", "id" : 251, - "runtimeId" : 706 + "runtimeId" : 177 }, { "name" : "minecraft:structure_block", "id" : 252, - "runtimeId" : 1042 + "runtimeId" : 59 }, { "name" : "minecraft:hard_glass", "id" : 253, - "runtimeId" : 650 + "runtimeId" : 116 }, { "name" : "minecraft:hard_stained_glass", "id" : 254, - "runtimeId" : 239 + "runtimeId" : 432 }, { "name" : "minecraft:reserved6", "id" : 255, - "runtimeId" : 338 + "runtimeId" : 296 }, { "name" : "minecraft:apple", "id" : 257, - "runtimeId" : 15 + "runtimeId" : 680 }, { "name" : "minecraft:golden_apple", "id" : 258, - "runtimeId" : 16 + "runtimeId" : 578 }, { "name" : "minecraft:enchanted_golden_apple", "id" : 259, - "runtimeId" : 22 + "runtimeId" : 584 }, { "name" : "minecraft:mushroom_stew", "id" : 260, - "runtimeId" : 10 + "runtimeId" : 627 }, { "name" : "minecraft:bread", "id" : 261, - "runtimeId" : 37 + "runtimeId" : 619 }, { "name" : "minecraft:porkchop", "id" : 262, - "runtimeId" : 33 + "runtimeId" : 628 }, { "name" : "minecraft:cooked_porkchop", "id" : 263, - "runtimeId" : 12 + "runtimeId" : 679 }, { "name" : "minecraft:cod", "id" : 264, - "runtimeId" : 43 + "runtimeId" : 955 }, { "name" : "minecraft:salmon", "id" : 265, - "runtimeId" : 49 + "runtimeId" : 586 }, { "name" : "minecraft:tropical_fish", "id" : 266, - "runtimeId" : 52 + "runtimeId" : 787 }, { "name" : "minecraft:pufferfish", "id" : 267, - "runtimeId" : 62 + "runtimeId" : 581 }, { "name" : "minecraft:cooked_cod", "id" : 268, - "runtimeId" : 0 + "runtimeId" : 346 }, { "name" : "minecraft:cooked_salmon", "id" : 269, - "runtimeId" : 66 + "runtimeId" : 645 }, { "name" : "minecraft:dried_kelp", "id" : 270, - "runtimeId" : 67 + "runtimeId" : 610 }, { "name" : "minecraft:cookie", "id" : 271, - "runtimeId" : 34 + "runtimeId" : 452 }, { "name" : "minecraft:melon_slice", "id" : 272, - "runtimeId" : 71 + "runtimeId" : 766 }, { "name" : "minecraft:beef", "id" : 273, - "runtimeId" : 47 + "runtimeId" : 665 }, { "name" : "minecraft:cooked_beef", "id" : 274, - "runtimeId" : 80 + "runtimeId" : 632 }, { "name" : "minecraft:chicken", "id" : 275, - "runtimeId" : 88 + "runtimeId" : 539 }, { "name" : "minecraft:cooked_chicken", "id" : 276, - "runtimeId" : 100 + "runtimeId" : 661 }, { "name" : "minecraft:rotten_flesh", "id" : 277, - "runtimeId" : 92 + "runtimeId" : 846 }, { "name" : "minecraft:spider_eye", "id" : 278, - "runtimeId" : 103 + "runtimeId" : 877 }, { "name" : "minecraft:carrot", "id" : 279, - "runtimeId" : 85 + "runtimeId" : 670 }, { "name" : "minecraft:potato", "id" : 280, - "runtimeId" : 19 + "runtimeId" : 528 }, { "name" : "minecraft:baked_potato", "id" : 281, - "runtimeId" : 105 + "runtimeId" : 658 }, { "name" : "minecraft:poisonous_potato", "id" : 282, - "runtimeId" : 108 + "runtimeId" : 896 }, { "name" : "minecraft:golden_carrot", "id" : 283, - "runtimeId" : 106 + "runtimeId" : 681 }, { "name" : "minecraft:pumpkin_pie", "id" : 284, - "runtimeId" : 111 + "runtimeId" : 466 }, { "name" : "minecraft:beetroot", "id" : 285, - "runtimeId" : 116 + "runtimeId" : 575 }, { "name" : "minecraft:beetroot_soup", "id" : 286, - "runtimeId" : 68 + "runtimeId" : 662 }, { "name" : "minecraft:sweet_berries", "id" : 287, - "runtimeId" : 121 + "runtimeId" : 657 }, { "name" : "minecraft:rabbit", "id" : 288, - "runtimeId" : 7 + "runtimeId" : 605 }, { "name" : "minecraft:cooked_rabbit", "id" : 289, - "runtimeId" : 39 + "runtimeId" : 756 }, { "name" : "minecraft:rabbit_stew", "id" : 290, - "runtimeId" : 123 + "runtimeId" : 666 }, { "name" : "minecraft:wheat_seeds", "id" : 291, - "runtimeId" : 124 + "runtimeId" : 639 }, { "name" : "minecraft:pumpkin_seeds", "id" : 292, - "runtimeId" : 127 + "runtimeId" : 354 }, { "name" : "minecraft:melon_seeds", "id" : 293, - "runtimeId" : 130 + "runtimeId" : 654 }, { "name" : "minecraft:nether_wart", "id" : 294, - "runtimeId" : 134 + "runtimeId" : 710 }, { "name" : "minecraft:beetroot_seeds", "id" : 295, - "runtimeId" : 136 + "runtimeId" : 543 }, { "name" : "minecraft:iron_shovel", "id" : 296, - "runtimeId" : 137 + "runtimeId" : 1041 }, { "name" : "minecraft:iron_pickaxe", "id" : 297, - "runtimeId" : 46 + "runtimeId" : 765 }, { "name" : "minecraft:iron_axe", "id" : 298, - "runtimeId" : 133 + "runtimeId" : 660 }, { "name" : "minecraft:flint_and_steel", "id" : 299, - "runtimeId" : 141 + "runtimeId" : 655 }, { "name" : "minecraft:bow", "id" : 300, - "runtimeId" : 2 + "runtimeId" : 690 }, { "name" : "minecraft:arrow", "id" : 301, - "runtimeId" : 143 + "runtimeId" : 526 }, { "name" : "minecraft:coal", "id" : 302, - "runtimeId" : 145 + "runtimeId" : 878 }, { "name" : "minecraft:charcoal", "id" : 303, - "runtimeId" : 147 + "runtimeId" : 588 }, { "name" : "minecraft:diamond", "id" : 304, - "runtimeId" : 150 + "runtimeId" : 601 }, { "name" : "minecraft:iron_ingot", "id" : 305, - "runtimeId" : 30 + "runtimeId" : 563 }, { "name" : "minecraft:gold_ingot", "id" : 306, - "runtimeId" : 28 + "runtimeId" : 594 }, { "name" : "minecraft:iron_sword", "id" : 307, - "runtimeId" : 115 + "runtimeId" : 523 }, { "name" : "minecraft:wooden_sword", "id" : 308, - "runtimeId" : 151 + "runtimeId" : 1003 }, { "name" : "minecraft:wooden_shovel", "id" : 309, - "runtimeId" : 75 + "runtimeId" : 706 }, { "name" : "minecraft:wooden_pickaxe", "id" : 310, - "runtimeId" : 70 + "runtimeId" : 501 }, { "name" : "minecraft:wooden_axe", "id" : 311, - "runtimeId" : 157 + "runtimeId" : 560 }, { "name" : "minecraft:stone_sword", "id" : 312, - "runtimeId" : 101 + "runtimeId" : 677 }, { "name" : "minecraft:stone_shovel", "id" : 313, - "runtimeId" : 142 + "runtimeId" : 634 }, { "name" : "minecraft:stone_pickaxe", "id" : 314, - "runtimeId" : 161 + "runtimeId" : 542 }, { "name" : "minecraft:stone_axe", "id" : 315, - "runtimeId" : 57 + "runtimeId" : 531 }, { "name" : "minecraft:diamond_sword", "id" : 316, - "runtimeId" : 166 + "runtimeId" : 597 }, { "name" : "minecraft:diamond_shovel", "id" : 317, - "runtimeId" : 165 + "runtimeId" : 509 }, { "name" : "minecraft:diamond_pickaxe", "id" : 318, - "runtimeId" : 113 + "runtimeId" : 691 }, { "name" : "minecraft:diamond_axe", "id" : 319, - "runtimeId" : 168 + "runtimeId" : 388 }, { "name" : "minecraft:stick", "id" : 320, - "runtimeId" : 169 + "runtimeId" : 1059 }, { "name" : "minecraft:bowl", "id" : 321, - "runtimeId" : 171 + "runtimeId" : 592 }, { "name" : "minecraft:golden_sword", "id" : 322, - "runtimeId" : 173 + "runtimeId" : 549 }, { "name" : "minecraft:golden_shovel", "id" : 323, - "runtimeId" : 174 + "runtimeId" : 633 }, { "name" : "minecraft:golden_pickaxe", "id" : 324, - "runtimeId" : 178 + "runtimeId" : 775 }, { "name" : "minecraft:golden_axe", "id" : 325, - "runtimeId" : 180 + "runtimeId" : 1049 }, { "name" : "minecraft:string", "id" : 326, - "runtimeId" : 183 + "runtimeId" : 704 }, { "name" : "minecraft:feather", "id" : 327, - "runtimeId" : 184 + "runtimeId" : 370 }, { "name" : "minecraft:gunpowder", "id" : 328, - "runtimeId" : 186 + "runtimeId" : 527 }, { "name" : "minecraft:wooden_hoe", "id" : 329, - "runtimeId" : 188 + "runtimeId" : 1099 }, { "name" : "minecraft:stone_hoe", "id" : 330, - "runtimeId" : 191 + "runtimeId" : 713 }, { "name" : "minecraft:iron_hoe", "id" : 331, - "runtimeId" : 192 + "runtimeId" : 714 }, { "name" : "minecraft:diamond_hoe", "id" : 332, - "runtimeId" : 194 + "runtimeId" : 558 }, { "name" : "minecraft:golden_hoe", "id" : 333, - "runtimeId" : 195 + "runtimeId" : 717 }, { "name" : "minecraft:wheat", "id" : 334, - "runtimeId" : 197 + "runtimeId" : 734 }, { "name" : "minecraft:leather_helmet", "id" : 335, - "runtimeId" : 199 + "runtimeId" : 881 }, { "name" : "minecraft:leather_chestplate", "id" : 336, - "runtimeId" : 200 + "runtimeId" : 541 }, { "name" : "minecraft:leather_leggings", "id" : 337, - "runtimeId" : 201 + "runtimeId" : 507 }, { "name" : "minecraft:leather_boots", "id" : 338, - "runtimeId" : 203 + "runtimeId" : 516 }, { "name" : "minecraft:chainmail_helmet", "id" : 339, - "runtimeId" : 164 + "runtimeId" : 719 }, { "name" : "minecraft:chainmail_chestplate", "id" : 340, - "runtimeId" : 206 + "runtimeId" : 723 }, { "name" : "minecraft:chainmail_leggings", "id" : 341, - "runtimeId" : 208 + "runtimeId" : 461 }, { "name" : "minecraft:chainmail_boots", "id" : 342, - "runtimeId" : 211 + "runtimeId" : 735 }, { "name" : "minecraft:iron_helmet", "id" : 343, - "runtimeId" : 215 + "runtimeId" : 431 }, { "name" : "minecraft:iron_chestplate", "id" : 344, - "runtimeId" : 218 + "runtimeId" : 522 }, { "name" : "minecraft:iron_leggings", "id" : 345, - "runtimeId" : 219 + "runtimeId" : 870 }, { "name" : "minecraft:iron_boots", "id" : 346, - "runtimeId" : 220 + "runtimeId" : 742 }, { "name" : "minecraft:diamond_helmet", "id" : 347, - "runtimeId" : 224 + "runtimeId" : 752 }, { "name" : "minecraft:diamond_chestplate", "id" : 348, - "runtimeId" : 227 + "runtimeId" : 730 }, { "name" : "minecraft:diamond_leggings", "id" : 349, - "runtimeId" : 234 + "runtimeId" : 962 }, { "name" : "minecraft:diamond_boots", "id" : 350, - "runtimeId" : 235 + "runtimeId" : 675 }, { "name" : "minecraft:golden_helmet", "id" : 351, - "runtimeId" : 236 + "runtimeId" : 676 }, { "name" : "minecraft:golden_chestplate", "id" : 352, - "runtimeId" : 241 + "runtimeId" : 753 }, { "name" : "minecraft:golden_leggings", "id" : 353, - "runtimeId" : 243 + "runtimeId" : 686 }, { "name" : "minecraft:golden_boots", "id" : 354, - "runtimeId" : 245 + "runtimeId" : 646 }, { "name" : "minecraft:shield", "id" : 355, - "runtimeId" : 247 + "runtimeId" : 758 }, { "name" : "minecraft:flint", "id" : 356, - "runtimeId" : 252 + "runtimeId" : 937 }, { "name" : "minecraft:painting", "id" : 357, - "runtimeId" : 254 + "runtimeId" : 693 }, { "name" : "minecraft:oak_sign", "id" : 358, - "runtimeId" : 256 + "runtimeId" : 764 }, { "name" : "minecraft:wooden_door", "id" : 359, - "runtimeId" : 259 + "runtimeId" : 767 }, { "name" : "minecraft:bucket", "id" : 360, - "runtimeId" : 59 + "runtimeId" : 511 }, { "name" : "minecraft:milk_bucket", "id" : 361, - "runtimeId" : 260 + "runtimeId" : 748 }, { "name" : "minecraft:water_bucket", "id" : 362, - "runtimeId" : 264 + "runtimeId" : 839 }, { "name" : "minecraft:lava_bucket", "id" : 363, - "runtimeId" : 267 + "runtimeId" : 534 }, { "name" : "minecraft:cod_bucket", "id" : 364, - "runtimeId" : 270 + "runtimeId" : 656 }, { "name" : "minecraft:salmon_bucket", "id" : 365, - "runtimeId" : 163 + "runtimeId" : 571 }, { "name" : "minecraft:tropical_fish_bucket", "id" : 366, - "runtimeId" : 274 + "runtimeId" : 768 }, { "name" : "minecraft:pufferfish_bucket", "id" : 367, - "runtimeId" : 276 + "runtimeId" : 518 }, { "name" : "minecraft:powder_snow_bucket", "id" : 368, - "runtimeId" : 280 + "runtimeId" : 688 }, { "name" : "minecraft:axolotl_bucket", "id" : 369, - "runtimeId" : 282 + "runtimeId" : 506 }, { "name" : "minecraft:minecart", "id" : 370, - "runtimeId" : 286 + "runtimeId" : 576 }, { "name" : "minecraft:saddle", "id" : 371, - "runtimeId" : 287 + "runtimeId" : 771 }, { "name" : "minecraft:iron_door", "id" : 372, - "runtimeId" : 291 + "runtimeId" : 585 }, { "name" : "minecraft:redstone", "id" : 373, - "runtimeId" : 292 + "runtimeId" : 553 }, { "name" : "minecraft:snowball", "id" : 374, - "runtimeId" : 214 + "runtimeId" : 649 }, { "name" : "minecraft:oak_boat", "id" : 375, - "runtimeId" : 295 + "runtimeId" : 699 }, { "name" : "minecraft:birch_boat", "id" : 376, - "runtimeId" : 297 + "runtimeId" : 643 }, { "name" : "minecraft:jungle_boat", "id" : 377, - "runtimeId" : 300 + "runtimeId" : 835 }, { "name" : "minecraft:spruce_boat", "id" : 378, - "runtimeId" : 304 + "runtimeId" : 776 }, { "name" : "minecraft:acacia_boat", "id" : 379, - "runtimeId" : 305 + "runtimeId" : 910 }, { "name" : "minecraft:dark_oak_boat", "id" : 380, - "runtimeId" : 306 + "runtimeId" : 786 }, { "name" : "minecraft:leather", "id" : 381, - "runtimeId" : 307 + "runtimeId" : 850 }, { "name" : "minecraft:kelp", "id" : 382, - "runtimeId" : 311 + "runtimeId" : 788 }, { "name" : "minecraft:brick", "id" : 383, - "runtimeId" : 314 + "runtimeId" : 499 }, { "name" : "minecraft:clay_ball", "id" : 384, - "runtimeId" : 315 + "runtimeId" : 498 }, { "name" : "minecraft:sugar_cane", "id" : 385, - "runtimeId" : 317 + "runtimeId" : 495 }, { "name" : "minecraft:paper", "id" : 386, - "runtimeId" : 320 + "runtimeId" : 559 }, { "name" : "minecraft:book", "id" : 387, - "runtimeId" : 323 + "runtimeId" : 547 }, { "name" : "minecraft:slime_ball", "id" : 388, - "runtimeId" : 326 + "runtimeId" : 785 }, { "name" : "minecraft:chest_minecart", "id" : 389, - "runtimeId" : 327 + "runtimeId" : 494 }, { "name" : "minecraft:egg", "id" : 390, - "runtimeId" : 329 + "runtimeId" : 361 }, { "name" : "minecraft:compass", "id" : 391, - "runtimeId" : 333 + "runtimeId" : 493 }, { "name" : "minecraft:fishing_rod", "id" : 392, - "runtimeId" : 335 + "runtimeId" : 1021 }, { "name" : "minecraft:clock", "id" : 393, - "runtimeId" : 339 + "runtimeId" : 726 }, { "name" : "minecraft:glowstone_dust", "id" : 394, - "runtimeId" : 342 + "runtimeId" : 489 }, { "name" : "minecraft:black_dye", "id" : 395, - "runtimeId" : 343 + "runtimeId" : 421 }, { "name" : "minecraft:red_dye", "id" : 396, - "runtimeId" : 261 + "runtimeId" : 671 }, { "name" : "minecraft:green_dye", "id" : 397, - "runtimeId" : 346 + "runtimeId" : 1050 }, { "name" : "minecraft:brown_dye", "id" : 398, - "runtimeId" : 350 + "runtimeId" : 755 }, { "name" : "minecraft:blue_dye", "id" : 399, - "runtimeId" : 353 + "runtimeId" : 483 }, { "name" : "minecraft:purple_dye", "id" : 400, - "runtimeId" : 354 + "runtimeId" : 478 }, { "name" : "minecraft:cyan_dye", "id" : 401, - "runtimeId" : 358 + "runtimeId" : 538 }, { "name" : "minecraft:light_gray_dye", "id" : 402, - "runtimeId" : 360 + "runtimeId" : 476 }, { "name" : "minecraft:gray_dye", "id" : 403, - "runtimeId" : 363 + "runtimeId" : 473 }, { "name" : "minecraft:pink_dye", "id" : 404, - "runtimeId" : 365 + "runtimeId" : 1066 }, { "name" : "minecraft:lime_dye", "id" : 405, - "runtimeId" : 366 + "runtimeId" : 685 }, { "name" : "minecraft:yellow_dye", "id" : 406, - "runtimeId" : 367 + "runtimeId" : 593 }, { "name" : "minecraft:light_blue_dye", "id" : 407, - "runtimeId" : 371 + "runtimeId" : 599 }, { "name" : "minecraft:magenta_dye", "id" : 408, - "runtimeId" : 196 + "runtimeId" : 595 }, { "name" : "minecraft:orange_dye", "id" : 409, - "runtimeId" : 374 + "runtimeId" : 415 }, { "name" : "minecraft:white_dye", "id" : 410, - "runtimeId" : 376 + "runtimeId" : 791 }, { "name" : "minecraft:bone_meal", "id" : 411, - "runtimeId" : 377 + "runtimeId" : 465 }, { "name" : "minecraft:cocoa_beans", "id" : 412, - "runtimeId" : 51 + "runtimeId" : 546 }, { "name" : "minecraft:ink_sac", "id" : 413, - "runtimeId" : 380 + "runtimeId" : 782 }, { "name" : "minecraft:lapis_lazuli", "id" : 414, - "runtimeId" : 384 + "runtimeId" : 744 }, { "name" : "minecraft:bone", "id" : 415, - "runtimeId" : 263 + "runtimeId" : 770 }, { "name" : "minecraft:sugar", "id" : 416, - "runtimeId" : 387 + "runtimeId" : 470 }, { "name" : "minecraft:cake", "id" : 417, - "runtimeId" : 390 + "runtimeId" : 463 }, { "name" : "minecraft:bed", "id" : 418, - "runtimeId" : 372 + "runtimeId" : 462 }, { "name" : "minecraft:repeater", "id" : 419, - "runtimeId" : 392 + "runtimeId" : 1054 }, { "name" : "minecraft:filled_map", "id" : 420, - "runtimeId" : 395 + "runtimeId" : 408 }, { "name" : "minecraft:shears", "id" : 421, - "runtimeId" : 398 + "runtimeId" : 635 }, { "name" : "minecraft:ender_pearl", "id" : 422, - "runtimeId" : 399 + "runtimeId" : 422 }, { "name" : "minecraft:blaze_rod", "id" : 423, - "runtimeId" : 359 + "runtimeId" : 806 }, { "name" : "minecraft:ghast_tear", "id" : 424, - "runtimeId" : 402 + "runtimeId" : 454 }, { "name" : "minecraft:gold_nugget", "id" : 425, - "runtimeId" : 312 + "runtimeId" : 445 }, { "name" : "minecraft:potion", "id" : 426, - "runtimeId" : 87 + "runtimeId" : 442 }, { "name" : "minecraft:glass_bottle", "id" : 427, - "runtimeId" : 403 + "runtimeId" : 381 }, { "name" : "minecraft:fermented_spider_eye", "id" : 428, - "runtimeId" : 409 + "runtimeId" : 647 }, { "name" : "minecraft:blaze_powder", "id" : 429, - "runtimeId" : 411 + "runtimeId" : 444 }, { "name" : "minecraft:magma_cream", "id" : 430, - "runtimeId" : 413 + "runtimeId" : 458 }, { "name" : "minecraft:brewing_stand", "id" : 431, - "runtimeId" : 414 + "runtimeId" : 607 }, { "name" : "minecraft:cauldron", "id" : 432, - "runtimeId" : 417 + "runtimeId" : 760 }, { "name" : "minecraft:ender_eye", "id" : 433, - "runtimeId" : 222 + "runtimeId" : 961 }, { "name" : "minecraft:glistering_melon_slice", "id" : 434, - "runtimeId" : 202 + "runtimeId" : 450 }, { "name" : "minecraft:chicken_spawn_egg", "id" : 435, - "runtimeId" : 418 + "runtimeId" : 574 }, { "name" : "minecraft:cow_spawn_egg", "id" : 436, - "runtimeId" : 328 + "runtimeId" : 429 }, { "name" : "minecraft:pig_spawn_egg", "id" : 437, - "runtimeId" : 419 + "runtimeId" : 460 }, { "name" : "minecraft:sheep_spawn_egg", "id" : 438, - "runtimeId" : 420 + "runtimeId" : 427 }, { "name" : "minecraft:wolf_spawn_egg", "id" : 439, - "runtimeId" : 284 + "runtimeId" : 1030 }, { "name" : "minecraft:mooshroom_spawn_egg", "id" : 440, - "runtimeId" : 423 + "runtimeId" : 651 }, { "name" : "minecraft:creeper_spawn_egg", "id" : 441, - "runtimeId" : 389 + "runtimeId" : 995 }, { "name" : "minecraft:enderman_spawn_egg", "id" : 442, - "runtimeId" : 5 + "runtimeId" : 423 }, { "name" : "minecraft:silverfish_spawn_egg", "id" : 443, - "runtimeId" : 302 + "runtimeId" : 416 }, { "name" : "minecraft:skeleton_spawn_egg", "id" : 444, - "runtimeId" : 425 + "runtimeId" : 951 }, { "name" : "minecraft:slime_spawn_egg", "id" : 445, - "runtimeId" : 31 + "runtimeId" : 412 }, { "name" : "minecraft:spider_spawn_egg", "id" : 446, - "runtimeId" : 430 + "runtimeId" : 508 }, { "name" : "minecraft:zombie_spawn_egg", "id" : 447, - "runtimeId" : 432 + "runtimeId" : 512 }, { "name" : "minecraft:zombie_pigman_spawn_egg", "id" : 448, - "runtimeId" : 160 + "runtimeId" : 642 }, { "name" : "minecraft:villager_spawn_egg", "id" : 449, - "runtimeId" : 433 + "runtimeId" : 411 }, { "name" : "minecraft:squid_spawn_egg", "id" : 450, - "runtimeId" : 434 + "runtimeId" : 769 }, { "name" : "minecraft:ocelot_spawn_egg", "id" : 451, - "runtimeId" : 336 + "runtimeId" : 515 }, { "name" : "minecraft:witch_spawn_egg", "id" : 452, - "runtimeId" : 95 + "runtimeId" : 621 }, { "name" : "minecraft:bat_spawn_egg", "id" : 453, - "runtimeId" : 437 + "runtimeId" : 603 }, { "name" : "minecraft:ghast_spawn_egg", "id" : 454, - "runtimeId" : 438 + "runtimeId" : 968 }, { "name" : "minecraft:magma_cube_spawn_egg", "id" : 455, - "runtimeId" : 443 + "runtimeId" : 1013 }, { "name" : "minecraft:blaze_spawn_egg", "id" : 456, - "runtimeId" : 48 + "runtimeId" : 405 }, { "name" : "minecraft:cave_spider_spawn_egg", "id" : 457, - "runtimeId" : 447 + "runtimeId" : 403 }, { "name" : "minecraft:horse_spawn_egg", "id" : 458, - "runtimeId" : 104 + "runtimeId" : 400 }, { "name" : "minecraft:rabbit_spawn_egg", "id" : 459, - "runtimeId" : 364 + "runtimeId" : 433 }, { "name" : "minecraft:endermite_spawn_egg", "id" : 460, - "runtimeId" : 448 + "runtimeId" : 819 }, { "name" : "minecraft:guardian_spawn_egg", "id" : 461, - "runtimeId" : 449 + "runtimeId" : 397 }, { "name" : "minecraft:stray_spawn_egg", "id" : 462, - "runtimeId" : 148 + "runtimeId" : 565 }, { "name" : "minecraft:husk_spawn_egg", "id" : 463, - "runtimeId" : 451 + "runtimeId" : 394 }, { "name" : "minecraft:wither_skeleton_spawn_egg", "id" : 464, - "runtimeId" : 454 + "runtimeId" : 569 }, { "name" : "minecraft:donkey_spawn_egg", "id" : 465, - "runtimeId" : 459 + "runtimeId" : 577 }, { "name" : "minecraft:mule_spawn_egg", "id" : 466, - "runtimeId" : 460 + "runtimeId" : 652 }, { "name" : "minecraft:skeleton_horse_spawn_egg", "id" : 467, - "runtimeId" : 462 + "runtimeId" : 1026 }, { "name" : "minecraft:zombie_horse_spawn_egg", "id" : 468, - "runtimeId" : 466 + "runtimeId" : 857 }, { "name" : "minecraft:shulker_spawn_egg", "id" : 469, - "runtimeId" : 266 + "runtimeId" : 390 }, { "name" : "minecraft:npc_spawn_egg", "id" : 470, - "runtimeId" : 468 + "runtimeId" : 624 }, { "name" : "minecraft:elder_guardian_spawn_egg", "id" : 471, - "runtimeId" : 293 + "runtimeId" : 641 }, { "name" : "minecraft:polar_bear_spawn_egg", "id" : 472, - "runtimeId" : 470 + "runtimeId" : 941 }, { "name" : "minecraft:llama_spawn_egg", "id" : 473, - "runtimeId" : 473 + "runtimeId" : 834 }, { "name" : "minecraft:vindicator_spawn_egg", "id" : 474, - "runtimeId" : 269 + "runtimeId" : 568 }, { "name" : "minecraft:evoker_spawn_egg", "id" : 475, - "runtimeId" : 279 + "runtimeId" : 379 }, { "name" : "minecraft:vex_spawn_egg", "id" : 476, - "runtimeId" : 475 + "runtimeId" : 378 }, { "name" : "minecraft:zombie_villager_spawn_egg", "id" : 477, - "runtimeId" : 480 + "runtimeId" : 739 }, { "name" : "minecraft:parrot_spawn_egg", "id" : 478, - "runtimeId" : 283 + "runtimeId" : 367 }, { "name" : "minecraft:tropical_fish_spawn_egg", "id" : 479, - "runtimeId" : 483 + "runtimeId" : 532 }, { "name" : "minecraft:cod_spawn_egg", "id" : 480, - "runtimeId" : 486 + "runtimeId" : 783 }, { "name" : "minecraft:pufferfish_spawn_egg", "id" : 481, - "runtimeId" : 490 + "runtimeId" : 391 }, { "name" : "minecraft:salmon_spawn_egg", "id" : 482, - "runtimeId" : 492 + "runtimeId" : 374 }, { "name" : "minecraft:drowned_spawn_egg", "id" : 483, - "runtimeId" : 397 + "runtimeId" : 373 }, { "name" : "minecraft:dolphin_spawn_egg", "id" : 484, - "runtimeId" : 494 + "runtimeId" : 1078 }, { "name" : "minecraft:turtle_spawn_egg", "id" : 485, - "runtimeId" : 495 + "runtimeId" : 475 }, { "name" : "minecraft:phantom_spawn_egg", "id" : 486, - "runtimeId" : 496 + "runtimeId" : 1017 }, { "name" : "minecraft:agent_spawn_egg", "id" : 487, - "runtimeId" : 251 + "runtimeId" : 474 }, { "name" : "minecraft:cat_spawn_egg", "id" : 488, - "runtimeId" : 500 + "runtimeId" : 1074 }, { "name" : "minecraft:panda_spawn_egg", "id" : 489, - "runtimeId" : 190 + "runtimeId" : 364 }, { "name" : "minecraft:fox_spawn_egg", "id" : 490, - "runtimeId" : 503 + "runtimeId" : 551 }, { "name" : "minecraft:pillager_spawn_egg", "id" : 491, - "runtimeId" : 45 + "runtimeId" : 439 }, { "name" : "minecraft:wandering_trader_spawn_egg", "id" : 492, - "runtimeId" : 506 + "runtimeId" : 582 }, { "name" : "minecraft:ravager_spawn_egg", "id" : 493, - "runtimeId" : 11 + "runtimeId" : 824 }, { "name" : "minecraft:bee_spawn_egg", "id" : 494, - "runtimeId" : 347 + "runtimeId" : 464 }, { "name" : "minecraft:strider_spawn_egg", "id" : 495, - "runtimeId" : 86 + "runtimeId" : 360 }, { "name" : "minecraft:hoglin_spawn_egg", "id" : 496, - "runtimeId" : 507 + "runtimeId" : 496 }, { "name" : "minecraft:piglin_spawn_egg", "id" : 497, - "runtimeId" : 452 + "runtimeId" : 606 }, { "name" : "minecraft:zoglin_spawn_egg", "id" : 498, - "runtimeId" : 140 + "runtimeId" : 356 }, { "name" : "minecraft:piglin_brute_spawn_egg", "id" : 499, - "runtimeId" : 361 + "runtimeId" : 419 }, { "name" : "minecraft:axolotl_spawn_egg", "id" : 500, - "runtimeId" : 233 + "runtimeId" : 352 }, { "name" : "minecraft:goat_spawn_egg", "id" : 501, - "runtimeId" : 508 + "runtimeId" : 348 }, { "name" : "minecraft:glow_squid_spawn_egg", "id" : 502, - "runtimeId" : 41 + "runtimeId" : 618 }, { "name" : "minecraft:glow_ink_sac", "id" : 503, - "runtimeId" : 510 + "runtimeId" : 780 }, { "name" : "minecraft:copper_ingot", "id" : 504, - "runtimeId" : 511 + "runtimeId" : 945 }, { "name" : "minecraft:raw_iron", "id" : 505, - "runtimeId" : 132 + "runtimeId" : 807 }, { "name" : "minecraft:raw_gold", "id" : 506, - "runtimeId" : 158 + "runtimeId" : 809 }, { "name" : "minecraft:raw_copper", "id" : 507, - "runtimeId" : 531 + "runtimeId" : 811 }, { "name" : "minecraft:experience_bottle", "id" : 508, - "runtimeId" : 532 + "runtimeId" : 663 }, { "name" : "minecraft:fire_charge", "id" : 509, - "runtimeId" : 526 + "runtimeId" : 813 }, { "name" : "minecraft:writable_book", "id" : 510, - "runtimeId" : 533 + "runtimeId" : 817 }, { "name" : "minecraft:written_book", "id" : 511, - "runtimeId" : 309 + "runtimeId" : 426 }, { "name" : "minecraft:emerald", "id" : 512, - "runtimeId" : 535 + "runtimeId" : 820 }, { "name" : "minecraft:frame", "id" : 513, - "runtimeId" : 352 + "runtimeId" : 821 }, { "name" : "minecraft:flower_pot", "id" : 514, - "runtimeId" : 537 + "runtimeId" : 823 }, { "name" : "minecraft:empty_map", "id" : 515, - "runtimeId" : 539 + "runtimeId" : 827 }, { "name" : "minecraft:skull", "id" : 516, - "runtimeId" : 540 + "runtimeId" : 535 }, { "name" : "minecraft:carrot_on_a_stick", "id" : 517, - "runtimeId" : 505 + "runtimeId" : 828 }, { "name" : "minecraft:nether_star", "id" : 518, - "runtimeId" : 21 + "runtimeId" : 830 }, { "name" : "minecraft:firework_rocket", "id" : 519, - "runtimeId" : 541 + "runtimeId" : 832 }, { "name" : "minecraft:firework_star", "id" : 520, - "runtimeId" : 544 + "runtimeId" : 1081 }, { "name" : "minecraft:enchanted_book", "id" : 521, - "runtimeId" : 546 + "runtimeId" : 801 }, { "name" : "minecraft:comparator", "id" : 522, - "runtimeId" : 83 + "runtimeId" : 838 }, { "name" : "minecraft:netherbrick", "id" : 523, - "runtimeId" : 548 + "runtimeId" : 746 }, { "name" : "minecraft:quartz", "id" : 524, - "runtimeId" : 504 + "runtimeId" : 556 }, { "name" : "minecraft:tnt_minecart", "id" : 525, - "runtimeId" : 550 + "runtimeId" : 840 }, { "name" : "minecraft:hopper_minecart", "id" : 526, - "runtimeId" : 551 + "runtimeId" : 842 }, { "name" : "minecraft:hopper", "id" : 527, - "runtimeId" : 553 + "runtimeId" : 843 }, { "name" : "minecraft:rabbit_foot", "id" : 528, - "runtimeId" : 99 + "runtimeId" : 927 }, { "name" : "minecraft:rabbit_hide", "id" : 529, - "runtimeId" : 555 + "runtimeId" : 845 }, { "name" : "minecraft:leather_horse_armor", "id" : 530, - "runtimeId" : 556 + "runtimeId" : 848 }, { "name" : "minecraft:iron_horse_armor", "id" : 531, - "runtimeId" : 557 + "runtimeId" : 404 }, { "name" : "minecraft:golden_horse_armor", "id" : 532, - "runtimeId" : 17 + "runtimeId" : 358 }, { "name" : "minecraft:diamond_horse_armor", "id" : 533, - "runtimeId" : 558 + "runtimeId" : 738 }, { "name" : "minecraft:music_disc_13", "id" : 534, - "runtimeId" : 357 + "runtimeId" : 564 }, { "name" : "minecraft:music_disc_cat", "id" : 535, - "runtimeId" : 561 + "runtimeId" : 745 }, { "name" : "minecraft:music_disc_blocks", "id" : 536, - "runtimeId" : 562 + "runtimeId" : 1034 }, { "name" : "minecraft:music_disc_chirp", "id" : 537, - "runtimeId" : 38 + "runtimeId" : 851 }, { "name" : "minecraft:music_disc_far", "id" : 538, - "runtimeId" : 564 + "runtimeId" : 965 }, { "name" : "minecraft:music_disc_mall", "id" : 539, - "runtimeId" : 154 + "runtimeId" : 609 }, { "name" : "minecraft:music_disc_mellohi", "id" : 540, - "runtimeId" : 565 + "runtimeId" : 418 }, { "name" : "minecraft:music_disc_stal", "id" : 541, - "runtimeId" : 331 + "runtimeId" : 854 }, { "name" : "minecraft:music_disc_strad", "id" : 542, - "runtimeId" : 119 + "runtimeId" : 856 }, { "name" : "minecraft:music_disc_ward", "id" : 543, - "runtimeId" : 4 + "runtimeId" : 858 }, { "name" : "minecraft:music_disc_11", "id" : 544, - "runtimeId" : 278 + "runtimeId" : 829 }, { "name" : "minecraft:music_disc_wait", "id" : 545, - "runtimeId" : 258 + "runtimeId" : 862 }, { "name" : "minecraft:trident", "id" : 546, - "runtimeId" : 325 + "runtimeId" : 897 }, { "name" : "minecraft:lead", "id" : 547, - "runtimeId" : 567 + "runtimeId" : 728 }, { "name" : "minecraft:name_tag", "id" : 548, - "runtimeId" : 388 + "runtimeId" : 485 }, { "name" : "minecraft:prismarine_crystals", "id" : 549, - "runtimeId" : 566 + "runtimeId" : 833 }, { "name" : "minecraft:mutton", "id" : 550, - "runtimeId" : 524 + "runtimeId" : 864 }, { "name" : "minecraft:cooked_mutton", "id" : 551, - "runtimeId" : 405 + "runtimeId" : 757 }, { "name" : "minecraft:armor_stand", "id" : 552, - "runtimeId" : 571 + "runtimeId" : 383 }, { "name" : "minecraft:spruce_door", "id" : 553, - "runtimeId" : 573 + "runtimeId" : 615 }, { "name" : "minecraft:birch_door", "id" : 554, - "runtimeId" : 574 + "runtimeId" : 469 }, { "name" : "minecraft:jungle_door", "id" : 555, - "runtimeId" : 560 + "runtimeId" : 479 }, { "name" : "minecraft:acacia_door", "id" : 556, - "runtimeId" : 575 + "runtimeId" : 1104 }, { "name" : "minecraft:dark_oak_door", "id" : 557, - "runtimeId" : 578 + "runtimeId" : 777 }, { "name" : "minecraft:chorus_fruit", "id" : 558, - "runtimeId" : 382 + "runtimeId" : 966 }, { "name" : "minecraft:popped_chorus_fruit", "id" : 559, - "runtimeId" : 579 + "runtimeId" : 567 }, { "name" : "minecraft:dragon_breath", "id" : 560, - "runtimeId" : 552 + "runtimeId" : 871 }, { "name" : "minecraft:splash_potion", "id" : 561, - "runtimeId" : 581 + "runtimeId" : 873 }, { "name" : "minecraft:lingering_potion", "id" : 562, - "runtimeId" : 98 + "runtimeId" : 384 }, { "name" : "minecraft:command_block_minecart", "id" : 563, - "runtimeId" : 129 + "runtimeId" : 874 }, { "name" : "minecraft:elytra", "id" : 564, - "runtimeId" : 177 + "runtimeId" : 882 }, { "name" : "minecraft:prismarine_shard", "id" : 565, - "runtimeId" : 518 + "runtimeId" : 884 }, { "name" : "minecraft:shulker_shell", "id" : 566, - "runtimeId" : 582 + "runtimeId" : 650 }, { "name" : "minecraft:banner", "id" : 567, - "runtimeId" : 584 + "runtimeId" : 1096 }, { "name" : "minecraft:totem_of_undying", "id" : 568, - "runtimeId" : 547 + "runtimeId" : 887 }, { "name" : "minecraft:iron_nugget", "id" : 569, - "runtimeId" : 585 + "runtimeId" : 891 }, { "name" : "minecraft:nautilus_shell", "id" : 570, - "runtimeId" : 74 + "runtimeId" : 894 }, { "name" : "minecraft:heart_of_the_sea", "id" : 571, - "runtimeId" : 253 + "runtimeId" : 566 }, { "name" : "minecraft:scute", "id" : 572, - "runtimeId" : 32 + "runtimeId" : 898 }, { "name" : "minecraft:turtle_helmet", "id" : 573, - "runtimeId" : 379 + "runtimeId" : 900 }, { "name" : "minecraft:phantom_membrane", "id" : 574, - "runtimeId" : 572 + "runtimeId" : 902 }, { "name" : "minecraft:crossbow", "id" : 575, - "runtimeId" : 294 + "runtimeId" : 847 }, { "name" : "minecraft:spruce_sign", "id" : 576, - "runtimeId" : 458 + "runtimeId" : 904 }, { "name" : "minecraft:birch_sign", "id" : 577, - "runtimeId" : 588 + "runtimeId" : 815 }, { "name" : "minecraft:jungle_sign", "id" : 578, - "runtimeId" : 591 + "runtimeId" : 792 }, { "name" : "minecraft:acacia_sign", "id" : 579, - "runtimeId" : 569 + "runtimeId" : 907 }, { "name" : "minecraft:dark_oak_sign", "id" : 580, - "runtimeId" : 592 + "runtimeId" : 825 }, { "name" : "minecraft:flower_banner_pattern", "id" : 581, - "runtimeId" : 593 + "runtimeId" : 908 }, { "name" : "minecraft:creeper_banner_pattern", "id" : 582, - "runtimeId" : 8 + "runtimeId" : 911 }, { "name" : "minecraft:skull_banner_pattern", "id" : 583, - "runtimeId" : 187 + "runtimeId" : 648 }, { "name" : "minecraft:mojang_banner_pattern", "id" : 584, - "runtimeId" : 595 + "runtimeId" : 620 }, { "name" : "minecraft:field_masoned_banner_pattern", "id" : 585, - "runtimeId" : 598 + "runtimeId" : 913 }, { "name" : "minecraft:bordure_indented_banner_pattern", "id" : 586, - "runtimeId" : 601 + "runtimeId" : 879 }, { "name" : "minecraft:piglin_banner_pattern", "id" : 587, - "runtimeId" : 603 + "runtimeId" : 598 }, { "name" : "minecraft:globe_banner_pattern", "id" : 588, - "runtimeId" : 313 + "runtimeId" : 915 }, { "name" : "minecraft:campfire", "id" : 589, - "runtimeId" : 97 + "runtimeId" : 1006 }, { "name" : "minecraft:suspicious_stew", "id" : 590, - "runtimeId" : 386 + "runtimeId" : 467 }, { "name" : "minecraft:honeycomb", "id" : 591, - "runtimeId" : 606 + "runtimeId" : 1037 }, { "name" : "minecraft:honey_bottle", "id" : 592, - "runtimeId" : 607 + "runtimeId" : 514 }, { "name" : "minecraft:camera", "id" : 593, - "runtimeId" : 381 + "runtimeId" : 664 }, { "name" : "minecraft:compound", "id" : 594, - "runtimeId" : 610 + "runtimeId" : 918 }, { "name" : "minecraft:ice_bomb", "id" : 595, - "runtimeId" : 611 + "runtimeId" : 920 }, { "name" : "minecraft:bleach", "id" : 596, - "runtimeId" : 429 + "runtimeId" : 401 }, { "name" : "minecraft:rapid_fertilizer", "id" : 597, - "runtimeId" : 482 + "runtimeId" : 895 }, { "name" : "minecraft:balloon", "id" : 598, - "runtimeId" : 590 + "runtimeId" : 869 }, { "name" : "minecraft:medicine", "id" : 599, - "runtimeId" : 612 + "runtimeId" : 917 }, { "name" : "minecraft:sparkler", "id" : 600, - "runtimeId" : 63 + "runtimeId" : 921 }, { "name" : "minecraft:glow_stick", "id" : 601, - "runtimeId" : 616 + "runtimeId" : 435 }, { "name" : "minecraft:lodestone_compass", "id" : 602, - "runtimeId" : 618 + "runtimeId" : 928 }, { "name" : "minecraft:netherite_ingot", "id" : 603, - "runtimeId" : 318 + "runtimeId" : 930 }, { "name" : "minecraft:netherite_sword", "id" : 604, - "runtimeId" : 330 + "runtimeId" : 931 }, { "name" : "minecraft:netherite_shovel", "id" : 605, - "runtimeId" : 620 + "runtimeId" : 933 }, { "name" : "minecraft:netherite_pickaxe", "id" : 606, - "runtimeId" : 464 + "runtimeId" : 491 }, { "name" : "minecraft:netherite_axe", "id" : 607, - "runtimeId" : 625 + "runtimeId" : 936 }, { "name" : "minecraft:netherite_hoe", "id" : 608, - "runtimeId" : 626 + "runtimeId" : 938 }, { "name" : "minecraft:netherite_helmet", "id" : 609, - "runtimeId" : 629 + "runtimeId" : 596 }, { "name" : "minecraft:netherite_chestplate", "id" : 610, - "runtimeId" : 394 + "runtimeId" : 942 }, { "name" : "minecraft:netherite_leggings", "id" : 611, - "runtimeId" : 577 + "runtimeId" : 860 }, { "name" : "minecraft:netherite_boots", "id" : 612, - "runtimeId" : 153 + "runtimeId" : 997 }, { "name" : "minecraft:netherite_scrap", "id" : 613, - "runtimeId" : 630 + "runtimeId" : 943 }, { "name" : "minecraft:crimson_sign", "id" : 614, - "runtimeId" : 632 + "runtimeId" : 712 }, { "name" : "minecraft:warped_sign", "id" : 615, - "runtimeId" : 440 + "runtimeId" : 979 }, { "name" : "minecraft:crimson_door", "id" : 616, - "runtimeId" : 633 + "runtimeId" : 944 }, { "name" : "minecraft:warped_door", "id" : 617, - "runtimeId" : 64 + "runtimeId" : 524 }, { "name" : "minecraft:warped_fungus_on_a_stick", "id" : 618, - "runtimeId" : 445 + "runtimeId" : 946 }, { "name" : "minecraft:chain", "id" : 619, - "runtimeId" : 442 + "runtimeId" : 947 }, { "name" : "minecraft:music_disc_pigstep", "id" : 620, - "runtimeId" : 223 + "runtimeId" : 855 }, { "name" : "minecraft:nether_sprouts", "id" : 621, - "runtimeId" : 635 + "runtimeId" : 899 }, { "name" : "minecraft:soul_campfire", "id" : 622, - "runtimeId" : 446 + "runtimeId" : 950 }, { "name" : "minecraft:glow_frame", "id" : 623, - "runtimeId" : 198 + "runtimeId" : 504 }, { - "name" : "minecraft:goat_horn", + "name" : "minecraft:amethyst_shard", "id" : 624, - "runtimeId" : 640 + "runtimeId" : 957 }, { - "name" : "minecraft:amethyst_shard", + "name" : "minecraft:spyglass", "id" : 625, - "runtimeId" : 653 + "runtimeId" : 398 }, { - "name" : "minecraft:spyglass", + "name" : "minecraft:music_disc_otherside", "id" : 626, - "runtimeId" : 648 + "runtimeId" : 960 }, { - "name" : "minecraft:music_disc_otherside", + "name" : "minecraft:frog_spawn_egg", "id" : 627, - "runtimeId" : 655 + "runtimeId" : 963 }, { - "name" : "minecraft:frog_spawn_egg", + "name" : "minecraft:tadpole_spawn_egg", "id" : 628, - "runtimeId" : 597 + "runtimeId" : 969 }, { - "name" : "minecraft:tadpole_spawn_egg", + "name" : "minecraft:tadpole_bucket", "id" : 629, - "runtimeId" : 322 + "runtimeId" : 1076 }, { - "name" : "minecraft:tadpole_bucket", + "name" : "minecraft:allay_spawn_egg", "id" : 630, - "runtimeId" : 262 + "runtimeId" : 537 }, { - "name" : "minecraft:allay_spawn_egg", + "name" : "minecraft:warden_spawn_egg", "id" : 631, - "runtimeId" : 657 + "runtimeId" : 872 }, { "name" : "minecraft:firefly_spawn_egg", "id" : 632, - "runtimeId" : 421 + "runtimeId" : 844 }, { - "name" : "minecraft:boat", + "name" : "minecraft:oak_chest_boat", "id" : 633, - "runtimeId" : 829 + "runtimeId" : 976 }, { - "name" : "minecraft:dye", + "name" : "minecraft:birch_chest_boat", "id" : 634, - "runtimeId" : 356 + "runtimeId" : 980 }, { - "name" : "minecraft:banner_pattern", + "name" : "minecraft:jungle_chest_boat", "id" : 635, - "runtimeId" : 830 + "runtimeId" : 919 }, { - "name" : "minecraft:spawn_egg", + "name" : "minecraft:spruce_chest_boat", "id" : 636, - "runtimeId" : 131 + "runtimeId" : 958 }, { - "name" : "minecraft:end_crystal", + "name" : "minecraft:acacia_chest_boat", "id" : 637, - "runtimeId" : 831 + "runtimeId" : 696 }, { - "name" : "minecraft:glow_berries", + "name" : "minecraft:dark_oak_chest_boat", "id" : 638, - "runtimeId" : 833 + "runtimeId" : 683 + }, + { + "name" : "minecraft:chest_boat", + "id" : 639, + "runtimeId" : 808 + }, + { + "name" : "minecraft:boat", + "id" : 640, + "runtimeId" : 267 + }, + { + "name" : "minecraft:dye", + "id" : 641, + "runtimeId" : 264 + }, + { + "name" : "minecraft:banner_pattern", + "id" : 642, + "runtimeId" : 263 + }, + { + "name" : "minecraft:spawn_egg", + "id" : 643, + "runtimeId" : 262 + }, + { + "name" : "minecraft:end_crystal", + "id" : 644, + "runtimeId" : 1048 + }, + { + "name" : "minecraft:glow_berries", + "id" : 645, + "runtimeId" : 260 } ] \ No newline at end of file From e6badfe8dfe9e276622a9453a985eb44cc23cc8a Mon Sep 17 00:00:00 2001 From: Alemiz Date: Sun, 17 Apr 2022 15:17:23 -0300 Subject: [PATCH 376/394] Add support for 1.18.30 (#1976) * Initial support for 1.18.30 * Fix typos in DimensionEnum (cherry picked from commit 5a48d2c275fe1972efac7f8bcfb2312f215b92c8) --- .../java/cn/nukkit/level/DimensionData.java | 24 + .../java/cn/nukkit/level/DimensionEnum.java | 26 + src/main/java/cn/nukkit/level/Level.java | 76 +- .../cn/nukkit/level/format/anvil/Anvil.java | 88 +- .../serializer/NetworkChunkSerializer.java | 117 ++ .../cn/nukkit/level/generator/Generator.java | 11 + .../network/protocol/AddPlayerPacket.java | 3 + .../nukkit/network/protocol/ProtocolInfo.java | 6 +- .../protocol/SpawnParticleEffectPacket.java | 1 + .../network/protocol/StartGamePacket.java | 2 +- src/main/resources/creative_items.json | 1386 ++++++++--------- src/main/resources/legacy_item_ids.json | 2 +- src/main/resources/runtime_item_states.json | 142 +- 13 files changed, 1028 insertions(+), 856 deletions(-) create mode 100644 src/main/java/cn/nukkit/level/DimensionData.java create mode 100644 src/main/java/cn/nukkit/level/DimensionEnum.java create mode 100644 src/main/java/cn/nukkit/level/format/generic/serializer/NetworkChunkSerializer.java diff --git a/src/main/java/cn/nukkit/level/DimensionData.java b/src/main/java/cn/nukkit/level/DimensionData.java new file mode 100644 index 00000000000..25bbd9f78e4 --- /dev/null +++ b/src/main/java/cn/nukkit/level/DimensionData.java @@ -0,0 +1,24 @@ +package cn.nukkit.level; + +import lombok.Builder; +import lombok.Data; + +@Data +public class DimensionData { + private final int dimensionId; + private final int minHeight; + private final int maxHeight; + private final int height; + + public DimensionData(int dimensionId, int minHeight, int maxHeight) { + this.dimensionId = dimensionId; + this.minHeight = minHeight; + this.maxHeight = maxHeight; + + int height = maxHeight - minHeight; + if (minHeight <= 0 && maxHeight > 0) { + height += 1; // 0 y coordinate counts too + } + this.height = height; + } +} diff --git a/src/main/java/cn/nukkit/level/DimensionEnum.java b/src/main/java/cn/nukkit/level/DimensionEnum.java new file mode 100644 index 00000000000..52bcd8cabc8 --- /dev/null +++ b/src/main/java/cn/nukkit/level/DimensionEnum.java @@ -0,0 +1,26 @@ +package cn.nukkit.level; + +public enum DimensionEnum { + OVERWORLD(new DimensionData(Level.DIMENSION_OVERWORLD, -64, 319)), + NETHER(new DimensionData(Level.DIMENSION_NETHER, 0, 127)), + END(new DimensionData(Level.DIMENSION_THE_END, 0, 255)); + + private final DimensionData dimensionData; + + DimensionEnum(DimensionData dimensionData) { + this.dimensionData = dimensionData; + } + + public DimensionData getDimensionData() { + return this.dimensionData; + } + + public static DimensionData getDataFromId(int dimension) { + for (DimensionEnum value : values()) { + if (value.getDimensionData().getDimensionId() == dimension) { + return value.getDimensionData(); + } + } + return null; + } +} diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index f918c7de45e..d36ebed5cda 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -87,7 +87,7 @@ public class Level implements ChunkManager, Metadatable { @PowerNukkitOnly @Since("1.4.0.0-PN") public static final Level[] EMPTY_ARRAY = new Level[0]; - + static { Timings.init(); } @@ -104,7 +104,7 @@ public class Level implements ChunkManager, Metadatable { public static final int BLOCK_UPDATE_TOUCH = 5; public static final int BLOCK_UPDATE_REDSTONE = 6; public static final int BLOCK_UPDATE_TICK = 7; - + @PowerNukkitOnly @Since("1.4.0.0-PN") public static final int BLOCK_UPDATE_MOVED = dynamic(1_000_000); @@ -165,7 +165,7 @@ public class Level implements ChunkManager, Metadatable { randomTickBlocks[BlockID.WARPED_NYLIUM] = true; randomTickBlocks[BlockID.TWISTING_VINES] = true; } - + @PowerNukkitOnly @Since("1.4.0.0-PN") public static boolean canRandomTick(int blockId) { @@ -299,7 +299,7 @@ public Generator init() { private long levelCurrentTick = 0; - private int dimension; + private DimensionData dimensionData; public GameRules gameRules; @@ -452,7 +452,7 @@ public void setTickRate(int tickRate) { public void initLevel() { Generator generator = generators.get(); - this.dimension = generator.getDimension(); + this.dimensionData = generator.getDimensionData(); this.gameRules = this.requireProvider().getGamerules(); log.info("Preparing start region for level \"{}\"", this.getFolderName()); @@ -509,7 +509,7 @@ public void close() { } levelProvider.close(); } - + this.provider = null; this.blockMetadata = null; this.temporalPosition = null; @@ -570,7 +570,7 @@ public void addLevelEvent(int type, int data, float x, float y, float z) { packet.y = y; packet.z = z; packet.data = data; - + this.addChunkPacket(NukkitMath.floorFloat(x) >> 4, NukkitMath.floorFloat(z) >> 4, packet); } @@ -676,11 +676,11 @@ public void addParticle(Particle particle, Collection players) { } public void addParticleEffect(Vector3 pos, ParticleEffect particleEffect) { - this.addParticleEffect(pos, particleEffect, -1, this.dimension, (Player[]) null); + this.addParticleEffect(pos, particleEffect, -1, this.getDimension(), (Player[]) null); } public void addParticleEffect(Vector3 pos, ParticleEffect particleEffect, long uniqueEntityId) { - this.addParticleEffect(pos, particleEffect, uniqueEntityId, this.dimension, (Player[]) null); + this.addParticleEffect(pos, particleEffect, uniqueEntityId, this.getDimension(), (Player[]) null); } public void addParticleEffect(Vector3 pos, ParticleEffect particleEffect, long uniqueEntityId, int dimensionId) { @@ -864,7 +864,7 @@ public GameRules getGameRules() { public void doTick(int currentTick) { this.timings.doTick.startTiming(); - + requireProvider(); updateBlockLight(lightQueue); @@ -875,7 +875,7 @@ public void doTick(int currentTick) { } // Tick Weather - if (this.dimension != DIMENSION_NETHER && this.dimension != DIMENSION_THE_END && gameRules.getBoolean(GameRule.DO_WEATHER_CYCLE)) { + if (this.getDimension() != DIMENSION_NETHER && this.getDimension() != DIMENSION_THE_END && gameRules.getBoolean(GameRule.DO_WEATHER_CYCLE)) { this.rainTime--; if (this.rainTime <= 0) { if (!this.setRaining(!this.raining)) { @@ -1359,7 +1359,7 @@ public void updateComparatorOutputLevelSelective(Vector3 v, boolean observer) { if (this.isChunkLoaded((int) temporalVector.x >> 4, (int) temporalVector.z >> 4)) { Block block1 = this.getBlock(temporalVector); - + if (block1.getId() == BlockID.OBSERVER) { if (observer) { block1.onNeighborChange(face.getOpposite()); @@ -1375,11 +1375,11 @@ public void updateComparatorOutputLevelSelective(Vector3 v, boolean observer) { } } } - + if (!observer) { return; } - + for (BlockFace face : Plane.VERTICAL) { Block block1 = this.getBlock(temporalVector.setComponentsAdding(v, face)); @@ -1450,7 +1450,7 @@ public Set getPendingBlockUpdates(FullChunk chunk) { public Set getPendingBlockUpdates(AxisAlignedBB boundingBox) { return updateQueue.getPendingBlockUpdates(boundingBox); } - + @PowerNukkitOnly @Since("1.4.0.0-PN") public List scanBlocks(@Nonnull AxisAlignedBB bb, @Nonnull BiPredicate condition) { @@ -1469,7 +1469,7 @@ public List scanBlocks(@Nonnull AxisAlignedBB bb, @Nonnull BiPredicate> 4; int cz = z >> 4; long index = Level.chunkHash(cx, cz); @@ -2214,24 +2214,24 @@ public Item useBreakOn(Vector3 vector, int layer, BlockFace face, Item item, Pla if (player != null && player.getGamemode() > 2) { return null; } - + Block target = this.getBlock(vector, layer); if (player != null && !target.isBlockChangeAllowed(player)) { return null; } - + Item[] drops; int dropExp = target.getDropExp(); if (item == null) { item = new ItemBlock(Block.get(BlockID.AIR), 0, 0); } - + if (!target.isBreakable(vector, layer, face, item, player, setBlockDestroy)) { return null; } - + boolean mustDrop = target.mustDrop(vector, layer, face, item, player); boolean mustSilkTouch = target.mustSilkTouch(vector, layer, face, item, player); boolean isSilkTouch = mustSilkTouch || item.getEnchantment(Enchantment.ID_SILK_TOUCH) != null; @@ -2336,7 +2336,7 @@ public Item useBreakOn(Vector3 vector, int layer, BlockFace face, Item item, Pla if (blockEntity != null) { blockEntity.onBreak(isSilkTouch); blockEntity.close(); - + this.updateComparatorOutputLevel(target); } } @@ -2352,7 +2352,7 @@ public Item useBreakOn(Vector3 vector, int layer, BlockFace face, Item item, Pla } if (this.gameRules.getBoolean(GameRule.DO_TILE_DROPS)) { - + if (!isSilkTouch && (mustDrop || player != null && (player.isSurvival() || setBlockDestroy)) && dropExp > 0 && drops.length != 0) { this.dropExpOrb(vector.add(0.5, 0.5, 0.5), dropExp); } @@ -2392,7 +2392,7 @@ public List dropExpOrbAndGetEntities(Vector3 source, int exp) { public List dropExpOrbAndGetEntities(Vector3 source, int exp, Vector3 motion) { return dropExpOrbAndGetEntities(source, exp, motion, 10); } - + @PowerNukkitOnly @Since("1.4.0.0-PN") public List dropExpOrbAndGetEntities(Vector3 source, int exp, Vector3 motion, int delay) { @@ -2517,7 +2517,7 @@ public Item useItemOn(Vector3 vector, Item item, BlockFace face, float fx, float Entity[] entities = this.getCollidingEntities(hand.getBoundingBox()); int realCount = 0; for (Entity e : entities) { - if (e instanceof EntityArrow + if (e instanceof EntityArrow || e instanceof EntityItem || (e instanceof Player && ((Player) e).isSpectator()) || player == e @@ -2546,7 +2546,7 @@ public Item useItemOn(Vector3 vector, Item item, BlockFace face, float fx, float if (!block.isBlockChangeAllowed(player)) { return null; } - + BlockPlaceEvent event = new BlockPlaceEvent(player, hand, block, target, item); if (player.getGamemode() == 2) { Tag tag = item.getNamedTagEntry("CanPlaceOn"); @@ -2823,7 +2823,7 @@ public synchronized void setBlockAt(int x, int y, int z, int id, int data) { public synchronized boolean setBlockAtLayer(int x, int y, int z, int layer, int id, int data) { return setBlockStateAt(x, y, z, layer, BlockState.of(id, data)); } - + @Override @PowerNukkitOnly @Since("1.4.0.0-PN") @@ -3287,7 +3287,7 @@ private synchronized BaseFullChunk forceLoadChunk(long index, int x, int z, bool this.timings.syncChunkLoadTimer.stopTiming(); return chunk; } - + chunk.backwardCompatibilityUpdate(this); chunk.initChunk(); @@ -3900,8 +3900,12 @@ public void sendWeather(Collection players) { this.sendWeather(players.toArray(Player.EMPTY_ARRAY)); } + public DimensionData getDimensionData() { + return this.dimensionData; + } + public int getDimension() { - return dimension; + return this.dimensionData.getDimensionId(); } public boolean canBlockSeeSky(Vector3 pos) { @@ -4031,7 +4035,7 @@ public int getUpdateLCG() { @PowerNukkitDifference(info = "Using new method to play sounds", since = "1.4.0.0-PN") public boolean createPortal(Block target) { - if (this.dimension == DIMENSION_THE_END) return false; + if (this.getDimension() == DIMENSION_THE_END) return false; int maxPortalSize = 23; final int targX = target.getFloorX(); final int targY = target.getFloorY(); @@ -4252,7 +4256,7 @@ public boolean createPortal(Block target) { public String toString() { return "Level{" + "folderName='" + folderName + '\'' + - ", dimension=" + dimension + + ", dimension=" + getDimension() + '}'; } @@ -4263,7 +4267,7 @@ private static class QueuedUpdate { private Block block; private BlockFace neighbor; } - + // private static void orderGetRidings(Entity entity, LongSet set) { // if (entity.riding != null) { // if(!set.add(entity.riding.getId())) { diff --git a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java index 314e12e84ee..4906bbec8af 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java +++ b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java @@ -2,33 +2,27 @@ import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; -import cn.nukkit.blockentity.BlockEntity; -import cn.nukkit.blockentity.BlockEntitySpawnable; import cn.nukkit.level.Level; -import cn.nukkit.level.biome.Biome; import cn.nukkit.level.format.FullChunk; import cn.nukkit.level.format.generic.BaseFullChunk; import cn.nukkit.level.format.generic.BaseLevelProvider; import cn.nukkit.level.format.generic.BaseRegionLoader; +import cn.nukkit.level.format.generic.serializer.NetworkChunkSerializer; import cn.nukkit.level.generator.Generator; -import cn.nukkit.level.util.PalettedBlockStorage; import cn.nukkit.nbt.NBTIO; import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.scheduler.AsyncTask; import cn.nukkit.utils.BinaryStream; import cn.nukkit.utils.ChunkException; -import cn.nukkit.utils.ThreadCache; import cn.nukkit.utils.Utils; -import io.netty.util.internal.EmptyArrays; import it.unimi.dsi.fastutil.objects.ObjectIterator; import lombok.extern.log4j.Log4j2; import java.io.*; import java.nio.ByteOrder; -import java.util.ArrayList; import java.util.HashMap; -import java.util.List; import java.util.Map; +import java.util.function.BiConsumer; import java.util.regex.Pattern; /** @@ -126,84 +120,12 @@ public AsyncTask requestChunkTask(int x, int z) throws ChunkException { } long timestamp = chunk.getChanges(); - - byte[] blockEntities = EmptyArrays.EMPTY_BYTES; - - if (!chunk.getBlockEntities().isEmpty()) { - List tagList = new ArrayList<>(); - - for (BlockEntity blockEntity : chunk.getBlockEntities().values()) { - if (blockEntity instanceof BlockEntitySpawnable) { - tagList.add(((BlockEntitySpawnable) blockEntity).getSpawnCompound()); - } - } - - try { - blockEntities = NBTIO.write(tagList, ByteOrder.LITTLE_ENDIAN, true); - } catch (IOException e) { - throw new RuntimeException(e); - } - } - - int count = 0; - cn.nukkit.level.format.ChunkSection[] sections = chunk.getSections(); - for (int i = sections.length - 1; i >= 0; i--) { - if (!sections[i].isEmpty()) { - count = i + 1; - break; - } - } - - // In 1.18 3D biome palettes were introduced. However, current world format - // used internally doesn't support them, so we need to convert from legacy 2D - byte[] biomePalettes = this.convert2DBiomesTo3D(chunk); - - BinaryStream stream = ThreadCache.binaryStream.get().reset(); - if (chunk.getProvider().getLevel().getDimension() == Level.DIMENSION_OVERWORLD) { - //Build up 4 SubChunks for the extended negative height - for (int i = 0; i < EXTENDED_NEGATIVE_SUB_CHUNKS; i++) { - stream.putByte((byte) 8); // SubChunk version - stream.putByte((byte) 0); // 0 layers - } - } - - for (int i = 0; i < count; i++) { - sections[i].writeTo(stream); - } - - stream.put(biomePalettes); - stream.putByte((byte) 0); // Border blocks - stream.put(blockEntities); - if (chunk.getProvider().getLevel().getDimension() == Level.DIMENSION_OVERWORLD) { - this.getLevel().chunkRequestCallback(timestamp, x, z, EXTENDED_NEGATIVE_SUB_CHUNKS + count, stream.getBuffer()); - } else { - this.getLevel().chunkRequestCallback(timestamp, x, z, count, stream.getBuffer()); - } + BiConsumer callback = (stream, subchunks) -> + this.getLevel().chunkRequestCallback(timestamp, x, z, subchunks, stream.getBuffer()); + NetworkChunkSerializer.serialize(chunk, callback, this.level.getDimensionData()); return null; } - private byte[] convert2DBiomesTo3D(BaseFullChunk chunk) { - PalettedBlockStorage palette = PalettedBlockStorage.createWithDefaultState(Biome.getBiomeIdOrCorrect(chunk.getBiomeId(0, 0))); - for (int x = 0; x < 16; x++) { - for (int z = 0; z < 16; z++) { - int biomeId = Biome.getBiomeIdOrCorrect(chunk.getBiomeId(x, z)); - for (int y = 0; y < 16; y++) { - palette.setBlock(x, y, z, biomeId); - } - } - } - - BinaryStream stream = ThreadCache.binaryStream.get().reset(); - palette.writeTo(stream); - byte[] bytes = stream.getBuffer(); - stream.reset(); - - for (int i = 0; i < 25; i++) { - stream.put(bytes); - } - return stream.getBuffer(); - } - private int lastPosition = 0; @Override diff --git a/src/main/java/cn/nukkit/level/format/generic/serializer/NetworkChunkSerializer.java b/src/main/java/cn/nukkit/level/format/generic/serializer/NetworkChunkSerializer.java new file mode 100644 index 00000000000..7a08cadc1d5 --- /dev/null +++ b/src/main/java/cn/nukkit/level/format/generic/serializer/NetworkChunkSerializer.java @@ -0,0 +1,117 @@ +package cn.nukkit.level.format.generic.serializer; + +import cn.nukkit.blockentity.BlockEntity; +import cn.nukkit.blockentity.BlockEntitySpawnable; +import cn.nukkit.level.DimensionData; +import cn.nukkit.level.Level; +import cn.nukkit.level.biome.Biome; +import cn.nukkit.level.format.ChunkSection; +import cn.nukkit.level.format.generic.BaseChunk; +import cn.nukkit.level.format.generic.BaseFullChunk; +import cn.nukkit.level.util.PalettedBlockStorage; +import cn.nukkit.nbt.NBTIO; +import cn.nukkit.nbt.tag.CompoundTag; +import cn.nukkit.utils.BinaryStream; +import cn.nukkit.utils.ThreadCache; +import it.unimi.dsi.fastutil.objects.ObjectArrayList; + +import java.io.IOException; +import java.nio.ByteOrder; +import java.util.List; +import java.util.function.BiConsumer; + +public class NetworkChunkSerializer { + + private static final int EXTENDED_NEGATIVE_SUB_CHUNKS = 4; + + private static final byte[] negativeSubChunks; + + static { + // Build up 4 SubChunks for the extended negative height + BinaryStream stream = new BinaryStream(); + for (int i = 0; i < EXTENDED_NEGATIVE_SUB_CHUNKS; i++) { + stream.putByte((byte) 8); // SubChunk version + stream.putByte((byte) 0); // 0 layers + } + negativeSubChunks = stream.getBuffer(); + } + + public static void serialize(BaseChunk chunk, BiConsumer callback, DimensionData dimensionData) { + byte[] blockEntities; + if (chunk.getBlockEntities().isEmpty()) { + blockEntities = new byte[0]; + } else { + blockEntities = serializeEntities(chunk); + } + + int subChunkCount = 0; + ChunkSection[] sections = chunk.getSections(); + for (int i = sections.length - 1; i >= 0; i--) { + if (!sections[i].isEmpty()) { + subChunkCount = i + 1; + break; + } + } + + int maxDimensionSections = dimensionData.getHeight() >> 4; + subChunkCount = Math.min(maxDimensionSections, subChunkCount); + + // In 1.18 3D biome palettes were introduced. However, current world format + // used internally doesn't support them, so we need to convert from legacy 2D + byte[] biomePalettes = convert2DBiomesTo3D(chunk, maxDimensionSections); + BinaryStream stream = ThreadCache.binaryStream.get().reset(); + + // Overworld has negative coordinates, but we currently do not support them + int writtenSections = subChunkCount; + if (dimensionData.getDimensionId() == Level.DIMENSION_OVERWORLD && subChunkCount < maxDimensionSections) { + stream.put(negativeSubChunks); + writtenSections += EXTENDED_NEGATIVE_SUB_CHUNKS; + } + + for (int i = 0; i < subChunkCount; i++) { + sections[i].writeTo(stream); + } + + stream.put(biomePalettes); + stream.putByte((byte) 0); // Border blocks + stream.put(blockEntities); + callback.accept(stream, writtenSections); + } + + private static byte[] serializeEntities(BaseChunk chunk) { + List tagList = new ObjectArrayList<>(); + for (BlockEntity blockEntity : chunk.getBlockEntities().values()) { + if (blockEntity instanceof BlockEntitySpawnable) { + tagList.add(((BlockEntitySpawnable) blockEntity).getSpawnCompound()); + } + } + + try { + return NBTIO.write(tagList, ByteOrder.LITTLE_ENDIAN, true); + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + private static byte[] convert2DBiomesTo3D(BaseFullChunk chunk, int sections) { + PalettedBlockStorage palette = PalettedBlockStorage.createWithDefaultState(Biome.getBiomeIdOrCorrect(chunk.getBiomeId(0, 0))); + for (int x = 0; x < 16; x++) { + for (int z = 0; z < 16; z++) { + int biomeId = Biome.getBiomeIdOrCorrect(chunk.getBiomeId(x, z)); + for (int y = 0; y < 16; y++) { + palette.setBlock(x, y, z, biomeId); + } + } + } + + BinaryStream stream = ThreadCache.binaryStream.get().reset(); + palette.writeTo(stream); + byte[] bytes = stream.getBuffer(); + stream.reset(); + + for (int i = 0; i < sections; i++) { + stream.put(bytes); + } + return stream.getBuffer(); + } +} diff --git a/src/main/java/cn/nukkit/level/generator/Generator.java b/src/main/java/cn/nukkit/level/generator/Generator.java index 4659e3b0e2b..cf06bf1e0fd 100644 --- a/src/main/java/cn/nukkit/level/generator/Generator.java +++ b/src/main/java/cn/nukkit/level/generator/Generator.java @@ -2,6 +2,8 @@ import cn.nukkit.block.BlockID; import cn.nukkit.level.ChunkManager; +import cn.nukkit.level.DimensionData; +import cn.nukkit.level.DimensionEnum; import cn.nukkit.level.Level; import cn.nukkit.math.NukkitRandom; import cn.nukkit.math.Vector3; @@ -20,6 +22,15 @@ public abstract class Generator implements BlockID { public abstract int getId(); + public DimensionData getDimensionData() { + DimensionData dimensionData = DimensionEnum.getDataFromId(this.getDimension()); + if (dimensionData == null) { + dimensionData = DimensionEnum.OVERWORLD.getDimensionData(); + } + return dimensionData; + } + + @Deprecated public int getDimension() { return Level.DIMENSION_OVERWORLD; } diff --git a/src/main/java/cn/nukkit/network/protocol/AddPlayerPacket.java b/src/main/java/cn/nukkit/network/protocol/AddPlayerPacket.java index 4a50b20ed2f..6dcf612b93d 100644 --- a/src/main/java/cn/nukkit/network/protocol/AddPlayerPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AddPlayerPacket.java @@ -1,5 +1,6 @@ package cn.nukkit.network.protocol; +import cn.nukkit.Server; import cn.nukkit.entity.data.EntityMetadata; import cn.nukkit.item.Item; import cn.nukkit.utils.Binary; @@ -33,6 +34,7 @@ public byte pid() { public float pitch; public float yaw; public Item item; + public int gameType = Server.getInstance().getGamemode(); public EntityMetadata metadata = new EntityMetadata(); //public EntityLink links = new EntityLink[0]; public String deviceId = ""; @@ -57,6 +59,7 @@ public void encode() { this.putLFloat(this.yaw); //TODO headrot this.putLFloat(this.yaw); this.putSlot(this.item); + this.putVarInt(this.gameType); this.put(Binary.writeMetadata(this.metadata)); this.putUnsignedVarInt(0); //TODO: Adventure settings this.putUnsignedVarInt(0); diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index f6dd69cc831..ae12f910a39 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -17,12 +17,12 @@ public interface ProtocolInfo { /** * Actual Minecraft: PE protocol version */ - int CURRENT_PROTOCOL = dynamic(486); + int CURRENT_PROTOCOL = dynamic(503); List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION = dynamic("v1.18.10"); - String MINECRAFT_VERSION_NETWORK = dynamic("1.18.10"); + String MINECRAFT_VERSION = dynamic("v1.18.30"); + String MINECRAFT_VERSION_NETWORK = dynamic("1.18.30"); byte LOGIN_PACKET = 0x01; byte PLAY_STATUS_PACKET = 0x02; diff --git a/src/main/java/cn/nukkit/network/protocol/SpawnParticleEffectPacket.java b/src/main/java/cn/nukkit/network/protocol/SpawnParticleEffectPacket.java index dfd3746517a..3f20056224e 100644 --- a/src/main/java/cn/nukkit/network/protocol/SpawnParticleEffectPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SpawnParticleEffectPacket.java @@ -28,5 +28,6 @@ public void encode() { this.putEntityUniqueId(uniqueEntityId); this.putVector3f(this.position); this.putString(this.identifier); + this.putBoolean(false); } } diff --git a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java index 0d1eae33ed1..0f0ca813515 100644 --- a/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/StartGamePacket.java @@ -96,7 +96,7 @@ public void encode() { this.putLFloat(this.yaw); this.putLFloat(this.pitch); - this.putVarInt(this.seed); + this.putLLong(this.seed); this.putLShort(0x00); // SpawnBiomeType - Default this.putString("plains"); // UserDefinedBiomeName this.putVarInt(this.dimension); diff --git a/src/main/resources/creative_items.json b/src/main/resources/creative_items.json index dadabf91fcb..3cfb5cfc1c8 100644 --- a/src/main/resources/creative_items.json +++ b/src/main/resources/creative_items.json @@ -2,379 +2,379 @@ "items" : [ { "id" : "minecraft:planks", - "blockRuntimeId" : 5800 + "blockRuntimeId" : 5995 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5801 + "blockRuntimeId" : 5996 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5802 + "blockRuntimeId" : 5997 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5803 + "blockRuntimeId" : 5998 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5804 + "blockRuntimeId" : 5999 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5805 + "blockRuntimeId" : 6000 }, { "id" : "minecraft:crimson_planks", - "blockRuntimeId" : 3840 + "blockRuntimeId" : 4806 }, { "id" : "minecraft:warped_planks", - "blockRuntimeId" : 7596 + "blockRuntimeId" : 928 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1319 + "blockRuntimeId" : 1187 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1320 + "blockRuntimeId" : 1188 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1321 + "blockRuntimeId" : 1189 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1322 + "blockRuntimeId" : 1190 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1323 + "blockRuntimeId" : 1191 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1324 + "blockRuntimeId" : 1192 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1331 + "blockRuntimeId" : 1199 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1326 + "blockRuntimeId" : 1194 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1327 + "blockRuntimeId" : 1195 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1325 + "blockRuntimeId" : 1193 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1328 + "blockRuntimeId" : 1196 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1332 + "blockRuntimeId" : 1200 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1329 + "blockRuntimeId" : 1197 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1330 + "blockRuntimeId" : 1198 }, { "id" : "minecraft:blackstone_wall", - "blockRuntimeId" : 507 + "blockRuntimeId" : 3919 }, { "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 6044 + "blockRuntimeId" : 6640 }, { "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5841 + "blockRuntimeId" : 978 }, { "id" : "minecraft:cobbled_deepslate_wall", - "blockRuntimeId" : 1156 + "blockRuntimeId" : 8024 }, { "id" : "minecraft:deepslate_tile_wall", - "blockRuntimeId" : 4298 + "blockRuntimeId" : 5027 }, { "id" : "minecraft:polished_deepslate_wall", - "blockRuntimeId" : 6219 + "blockRuntimeId" : 7759 }, { "id" : "minecraft:deepslate_brick_wall", - "blockRuntimeId" : 4115 + "blockRuntimeId" : 437 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4774 + "blockRuntimeId" : 7306 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4775 + "blockRuntimeId" : 7307 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4776 + "blockRuntimeId" : 7308 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4777 + "blockRuntimeId" : 7309 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4778 + "blockRuntimeId" : 7310 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4779 + "blockRuntimeId" : 7311 }, { "id" : "minecraft:nether_brick_fence", - "blockRuntimeId" : 5690 + "blockRuntimeId" : 4238 }, { "id" : "minecraft:crimson_fence", - "blockRuntimeId" : 3818 + "blockRuntimeId" : 7938 }, { "id" : "minecraft:warped_fence", - "blockRuntimeId" : 7574 + "blockRuntimeId" : 5777 }, { "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4780 + "blockRuntimeId" : 76 }, { "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 7007 + "blockRuntimeId" : 6475 }, { "id" : "minecraft:birch_fence_gate", - "blockRuntimeId" : 400 + "blockRuntimeId" : 3782 }, { "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 5254 + "blockRuntimeId" : 5315 }, { "id" : "minecraft:acacia_fence_gate", - "blockRuntimeId" : 44 + "blockRuntimeId" : 7528 }, { "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3981 + "blockRuntimeId" : 4156 }, { "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3819 + "blockRuntimeId" : 4617 }, { "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 7575 + "blockRuntimeId" : 5349 }, { "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 5709 + "blockRuntimeId" : 641 }, { "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 7278 + "blockRuntimeId" : 3713 }, { "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 5669 + "blockRuntimeId" : 4081 }, { "id" : "minecraft:oak_stairs", - "blockRuntimeId" : 5718 + "blockRuntimeId" : 287 }, { "id" : "minecraft:spruce_stairs", - "blockRuntimeId" : 7039 + "blockRuntimeId" : 128 }, { "id" : "minecraft:birch_stairs", - "blockRuntimeId" : 432 + "blockRuntimeId" : 6957 }, { "id" : "minecraft:jungle_stairs", - "blockRuntimeId" : 5286 + "blockRuntimeId" : 6883 }, { "id" : "minecraft:acacia_stairs", - "blockRuntimeId" : 76 + "blockRuntimeId" : 6123 }, { "id" : "minecraft:dark_oak_stairs", - "blockRuntimeId" : 4013 + "blockRuntimeId" : 5019 }, { "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 7184 + "blockRuntimeId" : 939 }, { "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 5677 + "blockRuntimeId" : 5807 }, { "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 6713 + "blockRuntimeId" : 3592 }, { "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 6900 + "blockRuntimeId" : 3632 }, { "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 6640 + "blockRuntimeId" : 5300 }, { "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 6892 + "blockRuntimeId" : 5496 }, { "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4990 + "blockRuntimeId" : 3542 }, { "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 6389 + "blockRuntimeId" : 4139 }, { "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 4476 + "blockRuntimeId" : 4339 }, { "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 6381 + "blockRuntimeId" : 6588 }, { "id" : "minecraft:andesite_stairs", - "blockRuntimeId" : 144 + "blockRuntimeId" : 5258 }, { "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5817 + "blockRuntimeId" : 6982 }, { "id" : "minecraft:brick_stairs", - "blockRuntimeId" : 876 + "blockRuntimeId" : 6421 }, { "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 5691 + "blockRuntimeId" : 106 }, { "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 6628 + "blockRuntimeId" : 6493 }, { "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4720 + "blockRuntimeId" : 6347 }, { "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 6562 + "blockRuntimeId" : 4723 }, { "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 6884 + "blockRuntimeId" : 7642 }, { "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 6540 + "blockRuntimeId" : 7697 }, { "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 6452 + "blockRuntimeId" : 7205 }, { "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 4037 + "blockRuntimeId" : 7372 }, { "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 6444 + "blockRuntimeId" : 206 }, { "id" : "minecraft:crimson_stairs", - "blockRuntimeId" : 3860 + "blockRuntimeId" : 6245 }, { "id" : "minecraft:warped_stairs", - "blockRuntimeId" : 7616 + "blockRuntimeId" : 3723 }, { "id" : "minecraft:blackstone_stairs", - "blockRuntimeId" : 499 + "blockRuntimeId" : 6973 }, { "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 6036 + "blockRuntimeId" : 4245 }, { "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5833 + "blockRuntimeId" : 4425 }, { "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3913 + "blockRuntimeId" : 4528 }, { "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4756 + "blockRuntimeId" : 4519 }, { "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 7743 + "blockRuntimeId" : 4253 }, { "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 5760 + "blockRuntimeId" : 361 }, { "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 7687 + "blockRuntimeId" : 403 }, { "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 7701 + "blockRuntimeId" : 3891 }, { "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 7729 + "blockRuntimeId" : 6091 }, { "id" : "minecraft:waxed_oxidized_cut_copper_stairs", - "blockRuntimeId" : 7715 + "blockRuntimeId" : 5764 }, { "id" : "minecraft:cobbled_deepslate_stairs", - "blockRuntimeId" : 1148 + "blockRuntimeId" : 147 }, { "id" : "minecraft:deepslate_tile_stairs", - "blockRuntimeId" : 4290 + "blockRuntimeId" : 4609 }, { "id" : "minecraft:polished_deepslate_stairs", - "blockRuntimeId" : 6211 + "blockRuntimeId" : 308 }, { "id" : "minecraft:deepslate_brick_stairs", - "blockRuntimeId" : 4107 + "blockRuntimeId" : 7364 }, { "id" : "minecraft:wooden_door" @@ -405,1471 +405,1471 @@ }, { "id" : "minecraft:trapdoor", - "blockRuntimeId" : 7360 + "blockRuntimeId" : 227 }, { "id" : "minecraft:spruce_trapdoor", - "blockRuntimeId" : 7063 + "blockRuntimeId" : 6443 }, { "id" : "minecraft:birch_trapdoor", - "blockRuntimeId" : 456 + "blockRuntimeId" : 6524 }, { "id" : "minecraft:jungle_trapdoor", - "blockRuntimeId" : 5310 + "blockRuntimeId" : 5331 }, { "id" : "minecraft:acacia_trapdoor", - "blockRuntimeId" : 100 + "blockRuntimeId" : 5539 }, { "id" : "minecraft:dark_oak_trapdoor", - "blockRuntimeId" : 4021 + "blockRuntimeId" : 7444 }, { "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 5169 + "blockRuntimeId" : 335 }, { "id" : "minecraft:crimson_trapdoor", - "blockRuntimeId" : 3887 + "blockRuntimeId" : 4281 }, { "id" : "minecraft:warped_trapdoor", - "blockRuntimeId" : 7643 + "blockRuntimeId" : 4689 }, { "id" : "minecraft:iron_bars", - "blockRuntimeId" : 5134 + "blockRuntimeId" : 4757 }, { "id" : "minecraft:glass", - "blockRuntimeId" : 4884 + "blockRuntimeId" : 6088 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7085 + "blockRuntimeId" : 1140 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7093 + "blockRuntimeId" : 1148 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7092 + "blockRuntimeId" : 1147 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7100 + "blockRuntimeId" : 1155 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7097 + "blockRuntimeId" : 1152 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7099 + "blockRuntimeId" : 1154 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7086 + "blockRuntimeId" : 1141 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7089 + "blockRuntimeId" : 1144 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7090 + "blockRuntimeId" : 1145 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7098 + "blockRuntimeId" : 1153 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7094 + "blockRuntimeId" : 1149 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7088 + "blockRuntimeId" : 1143 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7096 + "blockRuntimeId" : 1151 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7095 + "blockRuntimeId" : 1150 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7087 + "blockRuntimeId" : 1142 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 7091 + "blockRuntimeId" : 1146 }, { "id" : "minecraft:tinted_glass", - "blockRuntimeId" : 7349 + "blockRuntimeId" : 5899 }, { "id" : "minecraft:glass_pane", - "blockRuntimeId" : 4885 + "blockRuntimeId" : 5189 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7101 + "blockRuntimeId" : 4808 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7109 + "blockRuntimeId" : 4816 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7108 + "blockRuntimeId" : 4815 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7116 + "blockRuntimeId" : 4823 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7113 + "blockRuntimeId" : 4820 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7115 + "blockRuntimeId" : 4822 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7102 + "blockRuntimeId" : 4809 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7105 + "blockRuntimeId" : 4812 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7106 + "blockRuntimeId" : 4813 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7114 + "blockRuntimeId" : 4821 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7110 + "blockRuntimeId" : 4817 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7104 + "blockRuntimeId" : 4811 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7112 + "blockRuntimeId" : 4819 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7111 + "blockRuntimeId" : 4818 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7103 + "blockRuntimeId" : 4810 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 7107 + "blockRuntimeId" : 4814 }, { "id" : "minecraft:ladder", - "blockRuntimeId" : 5358 + "blockRuntimeId" : 8204 }, { "id" : "minecraft:scaffolding", - "blockRuntimeId" : 6733 + "blockRuntimeId" : 3576 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7220 + "blockRuntimeId" : 249 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7270 + "blockRuntimeId" : 6632 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7223 + "blockRuntimeId" : 252 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7241 + "blockRuntimeId" : 6603 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7901 + "blockRuntimeId" : 5220 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7902 + "blockRuntimeId" : 5221 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7903 + "blockRuntimeId" : 5222 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7904 + "blockRuntimeId" : 5223 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7905 + "blockRuntimeId" : 5224 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 7906 + "blockRuntimeId" : 5225 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7225 + "blockRuntimeId" : 254 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7268 + "blockRuntimeId" : 6630 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7221 + "blockRuntimeId" : 250 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7271 + "blockRuntimeId" : 6633 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7242 + "blockRuntimeId" : 6604 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7236 + "blockRuntimeId" : 6598 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7272 + "blockRuntimeId" : 6634 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7253 + "blockRuntimeId" : 6615 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7258 + "blockRuntimeId" : 6620 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7259 + "blockRuntimeId" : 6621 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7256 + "blockRuntimeId" : 6618 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7257 + "blockRuntimeId" : 6619 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7255 + "blockRuntimeId" : 6617 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7254 + "blockRuntimeId" : 6616 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7224 + "blockRuntimeId" : 253 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7227 + "blockRuntimeId" : 256 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7243 + "blockRuntimeId" : 6605 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 7252 + "blockRuntimeId" : 6614 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 7226 + "blockRuntimeId" : 255 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 7269 + "blockRuntimeId" : 6631 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7237 + "blockRuntimeId" : 6599 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7238 + "blockRuntimeId" : 6600 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7239 + "blockRuntimeId" : 6601 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 7240 + "blockRuntimeId" : 6602 }, { "id" : "minecraft:crimson_slab", - "blockRuntimeId" : 3858 + "blockRuntimeId" : 5824 }, { "id" : "minecraft:warped_slab", - "blockRuntimeId" : 7614 + "blockRuntimeId" : 6375 }, { "id" : "minecraft:blackstone_slab", - "blockRuntimeId" : 497 + "blockRuntimeId" : 918 }, { "id" : "minecraft:polished_blackstone_slab", - "blockRuntimeId" : 6034 + "blockRuntimeId" : 5942 }, { "id" : "minecraft:polished_blackstone_brick_slab", - "blockRuntimeId" : 5831 + "blockRuntimeId" : 4175 }, { "id" : "minecraft:cut_copper_slab", - "blockRuntimeId" : 3911 + "blockRuntimeId" : 5191 }, { "id" : "minecraft:exposed_cut_copper_slab", - "blockRuntimeId" : 4754 + "blockRuntimeId" : 6491 }, { "id" : "minecraft:weathered_cut_copper_slab", - "blockRuntimeId" : 7741 + "blockRuntimeId" : 5977 }, { "id" : "minecraft:oxidized_cut_copper_slab", - "blockRuntimeId" : 5758 + "blockRuntimeId" : 5232 }, { "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 7685 + "blockRuntimeId" : 7757 }, { "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 7699 + "blockRuntimeId" : 247 }, { "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 7727 + "blockRuntimeId" : 6436 }, { "id" : "minecraft:waxed_oxidized_cut_copper_slab", - "blockRuntimeId" : 7713 + "blockRuntimeId" : 716 }, { "id" : "minecraft:cobbled_deepslate_slab", - "blockRuntimeId" : 1146 + "blockRuntimeId" : 7252 }, { "id" : "minecraft:polished_deepslate_slab", - "blockRuntimeId" : 6209 + "blockRuntimeId" : 302 }, { "id" : "minecraft:deepslate_tile_slab", - "blockRuntimeId" : 4288 + "blockRuntimeId" : 4239 }, { "id" : "minecraft:deepslate_brick_slab", - "blockRuntimeId" : 4105 + "blockRuntimeId" : 3721 }, { "id" : "minecraft:brick_block", - "blockRuntimeId" : 875 + "blockRuntimeId" : 4721 }, { "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1130 + "blockRuntimeId" : 7191 }, { "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3769 + "blockRuntimeId" : 4484 }, { "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 6560 + "blockRuntimeId" : 6316 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7286 + "blockRuntimeId" : 6438 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7287 + "blockRuntimeId" : 6439 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7288 + "blockRuntimeId" : 6440 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 7289 + "blockRuntimeId" : 6441 }, { "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4728 + "blockRuntimeId" : 295 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6443 + "blockRuntimeId" : 6011 }, { "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 6003 + "blockRuntimeId" : 4636 }, { "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3770 + "blockRuntimeId" : 7156 }, { "id" : "minecraft:gilded_blackstone", - "blockRuntimeId" : 4883 + "blockRuntimeId" : 4518 }, { "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1131 + "blockRuntimeId" : 5018 }, { "id" : "minecraft:deepslate_tiles", - "blockRuntimeId" : 4460 + "blockRuntimeId" : 4513 }, { "id" : "minecraft:cracked_deepslate_tiles", - "blockRuntimeId" : 3768 + "blockRuntimeId" : 4149 }, { "id" : "minecraft:deepslate_bricks", - "blockRuntimeId" : 4277 + "blockRuntimeId" : 5414 }, { "id" : "minecraft:cracked_deepslate_bricks", - "blockRuntimeId" : 3767 + "blockRuntimeId" : 5314 }, { "id" : "minecraft:chiseled_deepslate", - "blockRuntimeId" : 1129 + "blockRuntimeId" : 5190 }, { "id" : "minecraft:cobblestone", - "blockRuntimeId" : 1318 + "blockRuntimeId" : 3620 }, { "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 5668 + "blockRuntimeId" : 266 }, { "id" : "minecraft:cobbled_deepslate", - "blockRuntimeId" : 1143 + "blockRuntimeId" : 6544 }, { "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 6908 + "blockRuntimeId" : 4514 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6709 + "blockRuntimeId" : 3658 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6710 + "blockRuntimeId" : 3659 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6711 + "blockRuntimeId" : 3660 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 6712 + "blockRuntimeId" : 3661 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6636 + "blockRuntimeId" : 6471 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6637 + "blockRuntimeId" : 6472 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6638 + "blockRuntimeId" : 6473 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 6639 + "blockRuntimeId" : 6474 }, { "id" : "minecraft:coal_block", - "blockRuntimeId" : 1141 + "blockRuntimeId" : 5348 }, { "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 4584 + "blockRuntimeId" : 7921 }, { "id" : "minecraft:gold_block", - "blockRuntimeId" : 4976 + "blockRuntimeId" : 305 }, { "id" : "minecraft:iron_block", - "blockRuntimeId" : 5135 + "blockRuntimeId" : 8203 }, { "id" : "minecraft:copper_block", - "blockRuntimeId" : 3677 + "blockRuntimeId" : 4607 }, { "id" : "minecraft:exposed_copper", - "blockRuntimeId" : 4752 + "blockRuntimeId" : 601 }, { "id" : "minecraft:weathered_copper", - "blockRuntimeId" : 7739 + "blockRuntimeId" : 8188 }, { "id" : "minecraft:oxidized_copper", - "blockRuntimeId" : 5756 + "blockRuntimeId" : 3558 }, { "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 7683 + "blockRuntimeId" : 7676 }, { "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 7697 + "blockRuntimeId" : 702 }, { "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 7725 + "blockRuntimeId" : 715 }, { "id" : "minecraft:waxed_oxidized_copper", - "blockRuntimeId" : 7711 + "blockRuntimeId" : 7484 }, { "id" : "minecraft:cut_copper", - "blockRuntimeId" : 3910 + "blockRuntimeId" : 4645 }, { "id" : "minecraft:exposed_cut_copper", - "blockRuntimeId" : 4753 + "blockRuntimeId" : 6090 }, { "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 7740 + "blockRuntimeId" : 7139 }, { "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 5757 + "blockRuntimeId" : 5428 }, { "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 7684 + "blockRuntimeId" : 7235 }, { "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 7698 + "blockRuntimeId" : 3814 }, { "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 7726 + "blockRuntimeId" : 4807 }, { "id" : "minecraft:waxed_oxidized_cut_copper", - "blockRuntimeId" : 7712 + "blockRuntimeId" : 214 }, { "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4717 + "blockRuntimeId" : 1164 }, { "id" : "minecraft:diamond_block", - "blockRuntimeId" : 4474 + "blockRuntimeId" : 286 }, { "id" : "minecraft:lapis_block", - "blockRuntimeId" : 5366 + "blockRuntimeId" : 4234 }, { "id" : "minecraft:raw_iron_block", - "blockRuntimeId" : 6582 + "blockRuntimeId" : 8202 }, { "id" : "minecraft:raw_copper_block", - "blockRuntimeId" : 6580 + "blockRuntimeId" : 5219 }, { "id" : "minecraft:raw_gold_block", - "blockRuntimeId" : 6581 + "blockRuntimeId" : 371 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6548 + "blockRuntimeId" : 3701 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6550 + "blockRuntimeId" : 3703 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6549 + "blockRuntimeId" : 3702 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 6551 + "blockRuntimeId" : 3704 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6441 + "blockRuntimeId" : 6009 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 6442 + "blockRuntimeId" : 6010 }, { "id" : "minecraft:slime", - "blockRuntimeId" : 6861 + "blockRuntimeId" : 4197 }, { "id" : "minecraft:honey_block", - "blockRuntimeId" : 5113 + "blockRuntimeId" : 900 }, { "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 5114 + "blockRuntimeId" : 4424 }, { "id" : "minecraft:hay_block", - "blockRuntimeId" : 5085 + "blockRuntimeId" : 703 }, { "id" : "minecraft:bone_block", - "blockRuntimeId" : 692 + "blockRuntimeId" : 4198 }, { "id" : "minecraft:nether_brick", - "blockRuntimeId" : 5689 + "blockRuntimeId" : 7214 }, { "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 6627 + "blockRuntimeId" : 146 }, { "id" : "minecraft:netherite_block", - "blockRuntimeId" : 5706 + "blockRuntimeId" : 3780 }, { "id" : "minecraft:lodestone", - "blockRuntimeId" : 5564 + "blockRuntimeId" : 8201 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7913 + "blockRuntimeId" : 3463 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7921 + "blockRuntimeId" : 3471 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7920 + "blockRuntimeId" : 3470 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7928 + "blockRuntimeId" : 3478 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7925 + "blockRuntimeId" : 3475 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7927 + "blockRuntimeId" : 3477 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7914 + "blockRuntimeId" : 3464 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7917 + "blockRuntimeId" : 3467 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7918 + "blockRuntimeId" : 3468 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7926 + "blockRuntimeId" : 3476 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7922 + "blockRuntimeId" : 3472 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7916 + "blockRuntimeId" : 3466 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7924 + "blockRuntimeId" : 3474 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7923 + "blockRuntimeId" : 3473 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7915 + "blockRuntimeId" : 3465 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 7919 + "blockRuntimeId" : 3469 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 963 + "blockRuntimeId" : 956 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 971 + "blockRuntimeId" : 964 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 970 + "blockRuntimeId" : 963 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 978 + "blockRuntimeId" : 971 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 975 + "blockRuntimeId" : 968 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 977 + "blockRuntimeId" : 970 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 964 + "blockRuntimeId" : 957 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 967 + "blockRuntimeId" : 960 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 968 + "blockRuntimeId" : 961 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 976 + "blockRuntimeId" : 969 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 972 + "blockRuntimeId" : 965 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 966 + "blockRuntimeId" : 959 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 974 + "blockRuntimeId" : 967 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 973 + "blockRuntimeId" : 966 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 965 + "blockRuntimeId" : 958 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 969 + "blockRuntimeId" : 962 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3660 + "blockRuntimeId" : 6229 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3668 + "blockRuntimeId" : 6237 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3667 + "blockRuntimeId" : 6236 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3675 + "blockRuntimeId" : 6244 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3672 + "blockRuntimeId" : 6241 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3674 + "blockRuntimeId" : 6243 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3661 + "blockRuntimeId" : 6230 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3664 + "blockRuntimeId" : 6233 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3665 + "blockRuntimeId" : 6234 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3673 + "blockRuntimeId" : 6242 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3669 + "blockRuntimeId" : 6238 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3663 + "blockRuntimeId" : 6232 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3671 + "blockRuntimeId" : 6240 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3670 + "blockRuntimeId" : 6239 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3662 + "blockRuntimeId" : 6231 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3666 + "blockRuntimeId" : 6235 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3644 + "blockRuntimeId" : 668 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3652 + "blockRuntimeId" : 676 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3651 + "blockRuntimeId" : 675 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3659 + "blockRuntimeId" : 683 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3656 + "blockRuntimeId" : 680 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3658 + "blockRuntimeId" : 682 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3645 + "blockRuntimeId" : 669 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3648 + "blockRuntimeId" : 672 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3649 + "blockRuntimeId" : 673 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3657 + "blockRuntimeId" : 681 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3653 + "blockRuntimeId" : 677 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3647 + "blockRuntimeId" : 671 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3655 + "blockRuntimeId" : 679 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3654 + "blockRuntimeId" : 678 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3646 + "blockRuntimeId" : 670 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3650 + "blockRuntimeId" : 674 }, { "id" : "minecraft:clay", - "blockRuntimeId" : 1139 + "blockRuntimeId" : 7066 }, { "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 5084 + "blockRuntimeId" : 649 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7117 + "blockRuntimeId" : 6099 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7125 + "blockRuntimeId" : 6107 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7124 + "blockRuntimeId" : 6106 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7132 + "blockRuntimeId" : 6114 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7129 + "blockRuntimeId" : 6111 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7131 + "blockRuntimeId" : 6113 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7118 + "blockRuntimeId" : 6100 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7121 + "blockRuntimeId" : 6103 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7122 + "blockRuntimeId" : 6104 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7130 + "blockRuntimeId" : 6112 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7126 + "blockRuntimeId" : 6108 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7120 + "blockRuntimeId" : 6102 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7128 + "blockRuntimeId" : 6110 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7127 + "blockRuntimeId" : 6109 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7119 + "blockRuntimeId" : 6101 }, { "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 7123 + "blockRuntimeId" : 6105 }, { "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 7798 + "blockRuntimeId" : 5523 }, { "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 6849 + "blockRuntimeId" : 3536 }, { "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 5011 + "blockRuntimeId" : 8195 }, { "id" : "minecraft:black_glazed_terracotta", - "blockRuntimeId" : 488 + "blockRuntimeId" : 5758 }, { "id" : "minecraft:brown_glazed_terracotta", - "blockRuntimeId" : 894 + "blockRuntimeId" : 3552 }, { "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 6604 + "blockRuntimeId" : 4150 }, { "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 5750 + "blockRuntimeId" : 1156 }, { "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 7940 + "blockRuntimeId" : 921 }, { "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 5533 + "blockRuntimeId" : 221 }, { "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 5027 + "blockRuntimeId" : 6501 }, { "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3931 + "blockRuntimeId" : 5308 }, { "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 5485 + "blockRuntimeId" : 5421 }, { "id" : "minecraft:blue_glazed_terracotta", - "blockRuntimeId" : 685 + "blockRuntimeId" : 5415 }, { "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 6522 + "blockRuntimeId" : 6965 }, { "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 5597 + "blockRuntimeId" : 972 }, { "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 5782 + "blockRuntimeId" : 6430 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6528 + "blockRuntimeId" : 7656 }, { "id" : "minecraft:purpur_block", - "blockRuntimeId" : 6530 + "blockRuntimeId" : 7658 }, { "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 5705 + "blockRuntimeId" : 4241 }, { "id" : "minecraft:warped_wart_block", - "blockRuntimeId" : 7665 + "blockRuntimeId" : 5829 }, { "id" : "minecraft:shroomlight", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 5017 }, { "id" : "minecraft:crimson_nylium", - "blockRuntimeId" : 3839 + "blockRuntimeId" : 4172 }, { "id" : "minecraft:warped_nylium", - "blockRuntimeId" : 7595 + "blockRuntimeId" : 6314 }, { "id" : "minecraft:basalt", - "blockRuntimeId" : 214 + "blockRuntimeId" : 4297 }, { "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5825 + "blockRuntimeId" : 24 }, { "id" : "minecraft:smooth_basalt", - "blockRuntimeId" : 6883 + "blockRuntimeId" : 1162 }, { "id" : "minecraft:soul_soil", - "blockRuntimeId" : 6953 + "blockRuntimeId" : 5738 }, { "id" : "minecraft:dirt", - "blockRuntimeId" : 4484 + "blockRuntimeId" : 5701 }, { "id" : "minecraft:dirt", - "blockRuntimeId" : 4485 + "blockRuntimeId" : 5702 }, { "id" : "minecraft:farmland", - "blockRuntimeId" : 4766 + "blockRuntimeId" : 3901 }, { "id" : "minecraft:grass", - "blockRuntimeId" : 4998 + "blockRuntimeId" : 6891 }, { "id" : "minecraft:grass_path", - "blockRuntimeId" : 4999 + "blockRuntimeId" : 8023 }, { "id" : "minecraft:podzol", - "blockRuntimeId" : 5806 + "blockRuntimeId" : 4606 }, { "id" : "minecraft:mycelium", - "blockRuntimeId" : 5686 + "blockRuntimeId" : 3688 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7177 + "blockRuntimeId" : 661 }, { "id" : "minecraft:iron_ore", - "blockRuntimeId" : 5168 + "blockRuntimeId" : 4646 }, { "id" : "minecraft:gold_ore", - "blockRuntimeId" : 4977 + "blockRuntimeId" : 920 }, { "id" : "minecraft:diamond_ore", - "blockRuntimeId" : 4475 + "blockRuntimeId" : 4309 }, { "id" : "minecraft:lapis_ore", - "blockRuntimeId" : 5367 + "blockRuntimeId" : 7641 }, { "id" : "minecraft:redstone_ore", - "blockRuntimeId" : 6650 + "blockRuntimeId" : 4237 }, { "id" : "minecraft:coal_ore", - "blockRuntimeId" : 1142 + "blockRuntimeId" : 4235 }, { "id" : "minecraft:copper_ore", - "blockRuntimeId" : 3678 + "blockRuntimeId" : 3559 }, { "id" : "minecraft:emerald_ore", - "blockRuntimeId" : 4718 + "blockRuntimeId" : 7289 }, { "id" : "minecraft:quartz_ore", - "blockRuntimeId" : 6561 + "blockRuntimeId" : 4433 }, { "id" : "minecraft:nether_gold_ore", - "blockRuntimeId" : 5699 + "blockRuntimeId" : 27 }, { "id" : "minecraft:ancient_debris", - "blockRuntimeId" : 143 + "blockRuntimeId" : 6031 }, { "id" : "minecraft:deepslate_iron_ore", - "blockRuntimeId" : 4283 + "blockRuntimeId" : 7215 }, { "id" : "minecraft:deepslate_gold_ore", - "blockRuntimeId" : 4282 + "blockRuntimeId" : 6030 }, { "id" : "minecraft:deepslate_diamond_ore", - "blockRuntimeId" : 4280 + "blockRuntimeId" : 7980 }, { "id" : "minecraft:deepslate_lapis_ore", - "blockRuntimeId" : 4284 + "blockRuntimeId" : 7204 }, { "id" : "minecraft:deepslate_redstone_ore", - "blockRuntimeId" : 4285 + "blockRuntimeId" : 6507 }, { "id" : "minecraft:deepslate_emerald_ore", - "blockRuntimeId" : 4281 + "blockRuntimeId" : 6315 }, { "id" : "minecraft:deepslate_coal_ore", - "blockRuntimeId" : 4278 + "blockRuntimeId" : 7138 }, { "id" : "minecraft:deepslate_copper_ore", - "blockRuntimeId" : 4279 + "blockRuntimeId" : 105 }, { "id" : "minecraft:gravel", - "blockRuntimeId" : 5000 + "blockRuntimeId" : 8226 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7178 + "blockRuntimeId" : 662 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7180 + "blockRuntimeId" : 664 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7182 + "blockRuntimeId" : 666 }, { "id" : "minecraft:blackstone", - "blockRuntimeId" : 494 + "blockRuntimeId" : 7527 }, { "id" : "minecraft:deepslate", - "blockRuntimeId" : 4100 + "blockRuntimeId" : 267 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7179 + "blockRuntimeId" : 663 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7181 + "blockRuntimeId" : 665 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 7183 + "blockRuntimeId" : 667 }, { "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5828 + "blockRuntimeId" : 3687 }, { "id" : "minecraft:polished_deepslate", - "blockRuntimeId" : 6206 + "blockRuntimeId" : 7696 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6707 + "blockRuntimeId" : 4178 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 6708 + "blockRuntimeId" : 4179 }, { "id" : "minecraft:cactus", - "blockRuntimeId" : 920 + "blockRuntimeId" : 6940 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5565 + "blockRuntimeId" : 6546 }, { "id" : "minecraft:stripped_oak_log", - "blockRuntimeId" : 7316 + "blockRuntimeId" : 7485 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5566 + "blockRuntimeId" : 6547 }, { "id" : "minecraft:stripped_spruce_log", - "blockRuntimeId" : 7319 + "blockRuntimeId" : 6253 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5567 + "blockRuntimeId" : 6548 }, { "id" : "minecraft:stripped_birch_log", - "blockRuntimeId" : 7301 + "blockRuntimeId" : 5896 }, { "id" : "minecraft:log", - "blockRuntimeId" : 5568 + "blockRuntimeId" : 6549 }, { "id" : "minecraft:stripped_jungle_log", - "blockRuntimeId" : 7313 + "blockRuntimeId" : 650 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5577 + "blockRuntimeId" : 3835 }, { "id" : "minecraft:stripped_acacia_log", - "blockRuntimeId" : 7298 + "blockRuntimeId" : 5772 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 5578 + "blockRuntimeId" : 3836 }, { "id" : "minecraft:stripped_dark_oak_log", - "blockRuntimeId" : 7310 + "blockRuntimeId" : 216 }, { "id" : "minecraft:crimson_stem", - "blockRuntimeId" : 3884 + "blockRuntimeId" : 5821 }, { "id" : "minecraft:stripped_crimson_stem", - "blockRuntimeId" : 7307 + "blockRuntimeId" : 6864 }, { "id" : "minecraft:warped_stem", - "blockRuntimeId" : 7640 + "blockRuntimeId" : 6377 }, { "id" : "minecraft:stripped_warped_stem", - "blockRuntimeId" : 7325 + "blockRuntimeId" : 7342 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7805 + "blockRuntimeId" : 3479 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7811 + "blockRuntimeId" : 3485 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7806 + "blockRuntimeId" : 3480 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7812 + "blockRuntimeId" : 3486 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7807 + "blockRuntimeId" : 3481 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7813 + "blockRuntimeId" : 3487 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7808 + "blockRuntimeId" : 3482 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7814 + "blockRuntimeId" : 3488 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7809 + "blockRuntimeId" : 3483 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7815 + "blockRuntimeId" : 3489 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7810 + "blockRuntimeId" : 3484 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 7816 + "blockRuntimeId" : 3490 }, { "id" : "minecraft:crimson_hyphae", - "blockRuntimeId" : 3836 + "blockRuntimeId" : 4242 }, { "id" : "minecraft:stripped_crimson_hyphae", - "blockRuntimeId" : 7304 + "blockRuntimeId" : 6390 }, { "id" : "minecraft:warped_hyphae", - "blockRuntimeId" : 7592 + "blockRuntimeId" : 5826 }, { "id" : "minecraft:stripped_warped_hyphae", - "blockRuntimeId" : 7322 + "blockRuntimeId" : 5529 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5411 + "blockRuntimeId" : 6014 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5412 + "blockRuntimeId" : 6015 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5413 + "blockRuntimeId" : 6016 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 5414 + "blockRuntimeId" : 6017 }, { "id" : "minecraft:leaves2", - "blockRuntimeId" : 5427 + "blockRuntimeId" : 4301 }, { "id" : "minecraft:leaves2", - "blockRuntimeId" : 5428 + "blockRuntimeId" : 4302 }, { "id" : "minecraft:azalea_leaves", - "blockRuntimeId" : 169 + "blockRuntimeId" : 7652 }, { "id" : "minecraft:azalea_leaves_flowered", - "blockRuntimeId" : 173 + "blockRuntimeId" : 6304 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6721 + "blockRuntimeId" : 720 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6722 + "blockRuntimeId" : 721 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6723 + "blockRuntimeId" : 722 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6724 + "blockRuntimeId" : 723 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6725 + "blockRuntimeId" : 724 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 6726 + "blockRuntimeId" : 725 }, { "id" : "minecraft:bee_nest", - "blockRuntimeId" : 236 + "blockRuntimeId" : 5704 }, { "id" : "minecraft:wheat_seeds" @@ -1912,7 +1912,7 @@ }, { "id" : "minecraft:melon_block", - "blockRuntimeId" : 5610 + "blockRuntimeId" : 402 }, { "id" : "minecraft:melon_slice" @@ -1928,200 +1928,200 @@ }, { "id" : "minecraft:pumpkin", - "blockRuntimeId" : 6460 + "blockRuntimeId" : 4509 }, { "id" : "minecraft:carved_pumpkin", - "blockRuntimeId" : 988 + "blockRuntimeId" : 7320 }, { "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 5552 + "blockRuntimeId" : 6559 }, { "id" : "minecraft:honeycomb" }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7346 + "blockRuntimeId" : 937 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4504 + "blockRuntimeId" : 5405 }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 7345 + "blockRuntimeId" : 936 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4503 + "blockRuntimeId" : 5404 }, { "id" : "minecraft:nether_sprouts" }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3682 + "blockRuntimeId" : 6383 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3680 + "blockRuntimeId" : 6381 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3681 + "blockRuntimeId" : 6382 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3679 + "blockRuntimeId" : 6380 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3683 + "blockRuntimeId" : 6384 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3687 + "blockRuntimeId" : 6388 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3685 + "blockRuntimeId" : 6386 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3686 + "blockRuntimeId" : 6387 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3684 + "blockRuntimeId" : 6385 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3688 + "blockRuntimeId" : 6389 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3702 + "blockRuntimeId" : 4540 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3700 + "blockRuntimeId" : 4538 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3701 + "blockRuntimeId" : 4539 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3699 + "blockRuntimeId" : 4537 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3703 + "blockRuntimeId" : 4541 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3712 + "blockRuntimeId" : 69 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3710 + "blockRuntimeId" : 67 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3711 + "blockRuntimeId" : 68 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3709 + "blockRuntimeId" : 66 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3713 + "blockRuntimeId" : 70 }, { "id" : "minecraft:kelp" }, { "id" : "minecraft:seagrass", - "blockRuntimeId" : 6828 + "blockRuntimeId" : 244 }, { "id" : "minecraft:crimson_roots", - "blockRuntimeId" : 3857 + "blockRuntimeId" : 7515 }, { "id" : "minecraft:warped_roots", - "blockRuntimeId" : 7613 + "blockRuntimeId" : 4310 }, { "id" : "minecraft:yellow_flower", - "blockRuntimeId" : 7939 + "blockRuntimeId" : 316 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6593 + "blockRuntimeId" : 3621 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6594 + "blockRuntimeId" : 3622 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6595 + "blockRuntimeId" : 3623 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6596 + "blockRuntimeId" : 3624 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6597 + "blockRuntimeId" : 3625 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6598 + "blockRuntimeId" : 3626 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6599 + "blockRuntimeId" : 3627 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6600 + "blockRuntimeId" : 3628 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6601 + "blockRuntimeId" : 3629 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6602 + "blockRuntimeId" : 3630 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 6603 + "blockRuntimeId" : 3631 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4501 + "blockRuntimeId" : 5402 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4502 + "blockRuntimeId" : 5403 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4505 + "blockRuntimeId" : 5406 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 4506 + "blockRuntimeId" : 5407 }, { "id" : "minecraft:wither_rose", - "blockRuntimeId" : 7804 + "blockRuntimeId" : 6089 }, { "id" : "minecraft:white_dye" @@ -2188,127 +2188,127 @@ }, { "id" : "minecraft:vine", - "blockRuntimeId" : 7500 + "blockRuntimeId" : 902 }, { "id" : "minecraft:weeping_vines", - "blockRuntimeId" : 7754 + "blockRuntimeId" : 5429 }, { "id" : "minecraft:twisting_vines", - "blockRuntimeId" : 7427 + "blockRuntimeId" : 5641 }, { "id" : "minecraft:waterlily", - "blockRuntimeId" : 7682 + "blockRuntimeId" : 1163 }, { "id" : "minecraft:deadbush", - "blockRuntimeId" : 4099 + "blockRuntimeId" : 4633 }, { "id" : "minecraft:bamboo", - "blockRuntimeId" : 177 + "blockRuntimeId" : 3689 }, { "id" : "minecraft:snow", - "blockRuntimeId" : 6909 + "blockRuntimeId" : 4177 }, { "id" : "minecraft:ice", - "blockRuntimeId" : 5127 + "blockRuntimeId" : 6563 }, { "id" : "minecraft:packed_ice", - "blockRuntimeId" : 5770 + "blockRuntimeId" : 296 }, { "id" : "minecraft:blue_ice", - "blockRuntimeId" : 691 + "blockRuntimeId" : 6981 }, { "id" : "minecraft:snow_layer", - "blockRuntimeId" : 6910 + "blockRuntimeId" : 155 }, { "id" : "minecraft:pointed_dripstone", - "blockRuntimeId" : 5812 + "blockRuntimeId" : 7358 }, { "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 4585 + "blockRuntimeId" : 901 }, { "id" : "minecraft:moss_carpet", - "blockRuntimeId" : 5667 + "blockRuntimeId" : 300 }, { "id" : "minecraft:moss_block", - "blockRuntimeId" : 5666 + "blockRuntimeId" : 6429 }, { "id" : "minecraft:dirt_with_roots", - "blockRuntimeId" : 4486 + "blockRuntimeId" : 5347 }, { "id" : "minecraft:hanging_roots", - "blockRuntimeId" : 5049 + "blockRuntimeId" : 205 }, { "id" : "minecraft:big_dripleaf", - "blockRuntimeId" : 328 + "blockRuntimeId" : 5904 }, { "id" : "minecraft:small_dripleaf_block", - "blockRuntimeId" : 6875 + "blockRuntimeId" : 4268 }, { "id" : "minecraft:spore_blossom", - "blockRuntimeId" : 6962 + "blockRuntimeId" : 7254 }, { "id" : "minecraft:azalea", - "blockRuntimeId" : 168 + "blockRuntimeId" : 6804 }, { "id" : "minecraft:flowering_azalea", - "blockRuntimeId" : 4815 + "blockRuntimeId" : 5427 }, { "id" : "minecraft:glow_lichen", - "blockRuntimeId" : 4973 + "blockRuntimeId" : 5634 }, { "id" : "minecraft:amethyst_block", - "blockRuntimeId" : 136 + "blockRuntimeId" : 304 }, { "id" : "minecraft:budding_amethyst", - "blockRuntimeId" : 919 + "blockRuntimeId" : 6956 }, { "id" : "minecraft:amethyst_cluster", - "blockRuntimeId" : 138 + "blockRuntimeId" : 7752 }, { "id" : "minecraft:large_amethyst_bud", - "blockRuntimeId" : 5369 + "blockRuntimeId" : 4684 }, { "id" : "minecraft:medium_amethyst_bud", - "blockRuntimeId" : 5605 + "blockRuntimeId" : 4324 }, { "id" : "minecraft:small_amethyst_bud", - "blockRuntimeId" : 6863 + "blockRuntimeId" : 318 }, { "id" : "minecraft:tuff", - "blockRuntimeId" : 7414 + "blockRuntimeId" : 360 }, { "id" : "minecraft:calcite", - "blockRuntimeId" : 943 + "blockRuntimeId" : 215 }, { "id" : "minecraft:chicken" @@ -2339,35 +2339,35 @@ }, { "id" : "minecraft:brown_mushroom", - "blockRuntimeId" : 900 + "blockRuntimeId" : 3551 }, { "id" : "minecraft:red_mushroom", - "blockRuntimeId" : 6610 + "blockRuntimeId" : 4517 }, { "id" : "minecraft:crimson_fungus", - "blockRuntimeId" : 3835 + "blockRuntimeId" : 7695 }, { "id" : "minecraft:warped_fungus", - "blockRuntimeId" : 7591 + "blockRuntimeId" : 301 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 915 + "blockRuntimeId" : 7304 }, { "id" : "minecraft:red_mushroom_block", - "blockRuntimeId" : 6625 + "blockRuntimeId" : 3616 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 916 + "blockRuntimeId" : 7305 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 901 + "blockRuntimeId" : 7290 }, { "id" : "minecraft:egg" @@ -2386,50 +2386,50 @@ }, { "id" : "minecraft:web", - "blockRuntimeId" : 7753 + "blockRuntimeId" : 6587 }, { "id" : "minecraft:spider_eye" }, { "id" : "minecraft:mob_spawner", - "blockRuntimeId" : 5659 + "blockRuntimeId" : 411 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5660 + "blockRuntimeId" : 4133 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5661 + "blockRuntimeId" : 4134 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5662 + "blockRuntimeId" : 4135 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5663 + "blockRuntimeId" : 4136 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5664 + "blockRuntimeId" : 4137 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 5665 + "blockRuntimeId" : 4138 }, { "id" : "minecraft:infested_deepslate", - "blockRuntimeId" : 5128 + "blockRuntimeId" : 4597 }, { "id" : "minecraft:dragon_egg", - "blockRuntimeId" : 4583 + "blockRuntimeId" : 7213 }, { "id" : "minecraft:turtle_egg", - "blockRuntimeId" : 7415 + "blockRuntimeId" : 7939 }, { "id" : "minecraft:chicken_spawn_egg" @@ -2631,42 +2631,42 @@ }, { "id" : "minecraft:obsidian", - "blockRuntimeId" : 5738 + "blockRuntimeId" : 436 }, { "id" : "minecraft:crying_obsidian", - "blockRuntimeId" : 3909 + "blockRuntimeId" : 6596 }, { "id" : "minecraft:bedrock", - "blockRuntimeId" : 234 + "blockRuntimeId" : 6971 }, { "id" : "minecraft:soul_sand", - "blockRuntimeId" : 6952 + "blockRuntimeId" : 5739 }, { "id" : "minecraft:netherrack", - "blockRuntimeId" : 5707 + "blockRuntimeId" : 6991 }, { "id" : "minecraft:magma", - "blockRuntimeId" : 5603 + "blockRuntimeId" : 7951 }, { "id" : "minecraft:nether_wart" }, { "id" : "minecraft:end_stone", - "blockRuntimeId" : 4745 + "blockRuntimeId" : 3841 }, { "id" : "minecraft:chorus_flower", - "blockRuntimeId" : 1132 + "blockRuntimeId" : 4462 }, { "id" : "minecraft:chorus_plant", - "blockRuntimeId" : 1138 + "blockRuntimeId" : 5455 }, { "id" : "minecraft:chorus_fruit" @@ -2676,51 +2676,51 @@ }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6960 + "blockRuntimeId" : 637 }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 6961 + "blockRuntimeId" : 638 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3689 + "blockRuntimeId" : 5193 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3690 + "blockRuntimeId" : 5194 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3691 + "blockRuntimeId" : 5195 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3692 + "blockRuntimeId" : 5196 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3693 + "blockRuntimeId" : 5197 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3694 + "blockRuntimeId" : 5198 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3695 + "blockRuntimeId" : 5199 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3696 + "blockRuntimeId" : 5200 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3697 + "blockRuntimeId" : 5201 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3698 + "blockRuntimeId" : 5202 }, { "id" : "minecraft:leather_helmet" @@ -3747,111 +3747,110 @@ }, { "id" : "minecraft:torch", - "blockRuntimeId" : 7354 + "blockRuntimeId" : 732 }, { "id" : "minecraft:soul_torch", - "blockRuntimeId" : 6954 + "blockRuntimeId" : 4600 }, { "id" : "minecraft:sea_pickle", - "blockRuntimeId" : 6820 + "blockRuntimeId" : 5779 }, { "id" : "minecraft:lantern", - "blockRuntimeId" : 5364 + "blockRuntimeId" : 7016 }, { "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 6950 + "blockRuntimeId" : 5699 }, { "id" : "minecraft:candle", - "blockRuntimeId" : 953 + "blockRuntimeId" : 7345 }, { "id" : "minecraft:white_candle", - "blockRuntimeId" : 7788 + "blockRuntimeId" : 5250 }, { "id" : "minecraft:orange_candle", - "blockRuntimeId" : 5740 + "blockRuntimeId" : 372 }, { "id" : "minecraft:magenta_candle", - "blockRuntimeId" : 5587 + "blockRuntimeId" : 428 }, { "id" : "minecraft:light_blue_candle", - "blockRuntimeId" : 5475 + "blockRuntimeId" : 4501 }, { "id" : "minecraft:yellow_candle", - "blockRuntimeId" : 7929 + "blockRuntimeId" : 6115 }, { "id" : "minecraft:lime_candle", - "blockRuntimeId" : 5523 + "blockRuntimeId" : 6333 }, { "id" : "minecraft:pink_candle", - "blockRuntimeId" : 5772 + "blockRuntimeId" : 7312 }, { "id" : "minecraft:gray_candle", - "blockRuntimeId" : 5001 + "blockRuntimeId" : 947 }, { "id" : "minecraft:light_gray_candle", - "blockRuntimeId" : 5491 + "blockRuntimeId" : 6147 }, { "id" : "minecraft:cyan_candle", - "blockRuntimeId" : 3921 + "blockRuntimeId" : 7668 }, { "id" : "minecraft:purple_candle", - "blockRuntimeId" : 6512 + "blockRuntimeId" : 6992 }, { - "id" : "minecraft:blue_candle", - "blockRuntimeId" : 675 + "id" : "minecraft:blue_candle" }, { "id" : "minecraft:brown_candle", - "blockRuntimeId" : 884 + "blockRuntimeId" : 5799 }, { "id" : "minecraft:green_candle", - "blockRuntimeId" : 5017 + "blockRuntimeId" : 694 }, { "id" : "minecraft:red_candle", - "blockRuntimeId" : 6583 + "blockRuntimeId" : 4637 }, { "id" : "minecraft:black_candle", - "blockRuntimeId" : 478 + "blockRuntimeId" : 171 }, { "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3771 + "blockRuntimeId" : 5778 }, { "id" : "minecraft:cartography_table", - "blockRuntimeId" : 987 + "blockRuntimeId" : 8227 }, { "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4812 + "blockRuntimeId" : 5757 }, { "id" : "minecraft:smithing_table", - "blockRuntimeId" : 6876 + "blockRuntimeId" : 3731 }, { "id" : "minecraft:beehive", - "blockRuntimeId" : 260 + "blockRuntimeId" : 6032 }, { "id" : "minecraft:campfire" @@ -3861,152 +3860,152 @@ }, { "id" : "minecraft:furnace", - "blockRuntimeId" : 4877 + "blockRuntimeId" : 7744 }, { "id" : "minecraft:blast_furnace", - "blockRuntimeId" : 669 + "blockRuntimeId" : 7509 }, { "id" : "minecraft:smoker", - "blockRuntimeId" : 6877 + "blockRuntimeId" : 655 }, { "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 6702 + "blockRuntimeId" : 689 }, { "id" : "minecraft:brewing_stand" }, { "id" : "minecraft:anvil", - "blockRuntimeId" : 152 + "blockRuntimeId" : 6508 }, { "id" : "minecraft:anvil", - "blockRuntimeId" : 156 + "blockRuntimeId" : 6512 }, { "id" : "minecraft:anvil", - "blockRuntimeId" : 160 + "blockRuntimeId" : 6516 }, { "id" : "minecraft:grindstone", - "blockRuntimeId" : 5033 + "blockRuntimeId" : 7981 }, { "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4719 + "blockRuntimeId" : 6597 }, { "id" : "minecraft:bookshelf", - "blockRuntimeId" : 704 + "blockRuntimeId" : 6545 }, { "id" : "minecraft:lectern", - "blockRuntimeId" : 5435 + "blockRuntimeId" : 6856 }, { "id" : "minecraft:cauldron" }, { "id" : "minecraft:composter", - "blockRuntimeId" : 3635 + "blockRuntimeId" : 5365 }, { "id" : "minecraft:chest", - "blockRuntimeId" : 1123 + "blockRuntimeId" : 7057 }, { "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 7376 + "blockRuntimeId" : 5533 }, { "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4746 + "blockRuntimeId" : 4317 }, { "id" : "minecraft:barrel", - "blockRuntimeId" : 201 + "blockRuntimeId" : 4450 }, { "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 7459 + "blockRuntimeId" : 3686 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 5266 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6841 + "blockRuntimeId" : 5274 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6840 + "blockRuntimeId" : 5273 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6848 + "blockRuntimeId" : 5281 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6845 + "blockRuntimeId" : 5278 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6847 + "blockRuntimeId" : 5280 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 5267 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 5270 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 5271 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6846 + "blockRuntimeId" : 5279 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6842 + "blockRuntimeId" : 5275 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 5269 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6844 + "blockRuntimeId" : 5277 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6843 + "blockRuntimeId" : 5276 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 5268 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 6839 + "blockRuntimeId" : 5272 }, { "id" : "minecraft:armor_stand" }, { "id" : "minecraft:noteblock", - "blockRuntimeId" : 5717 + "blockRuntimeId" : 359 }, { "id" : "minecraft:jukebox", - "blockRuntimeId" : 5209 + "blockRuntimeId" : 4830 }, { "id" : "minecraft:music_disc_13" @@ -4055,15 +4054,15 @@ }, { "id" : "minecraft:glowstone", - "blockRuntimeId" : 4975 + "blockRuntimeId" : 3874 }, { "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 6649 + "blockRuntimeId" : 265 }, { - "id" : "minecraft:sealantern", - "blockRuntimeId" : 6831 + "id" : "minecraft:sea_lantern", + "blockRuntimeId" : 7488 }, { "id" : "minecraft:oak_sign" @@ -4162,23 +4161,23 @@ }, { "id" : "minecraft:beacon", - "blockRuntimeId" : 217 + "blockRuntimeId" : 145 }, { "id" : "minecraft:bell", - "blockRuntimeId" : 292 + "blockRuntimeId" : 6824 }, { "id" : "minecraft:conduit", - "blockRuntimeId" : 3676 + "blockRuntimeId" : 4196 }, { "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 7292 + "blockRuntimeId" : 7516 }, { "id" : "minecraft:end_portal_frame", - "blockRuntimeId" : 4731 + "blockRuntimeId" : 6001 }, { "id" : "minecraft:coal" @@ -4314,11 +4313,11 @@ }, { "id" : "minecraft:end_rod", - "blockRuntimeId" : 4739 + "blockRuntimeId" : 5815 }, { "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 5517 + "blockRuntimeId" : 1181 }, { "id" : "minecraft:end_crystal" @@ -4780,19 +4779,19 @@ }, { "id" : "minecraft:rail", - "blockRuntimeId" : 6570 + "blockRuntimeId" : 3909 }, { "id" : "minecraft:golden_rail", - "blockRuntimeId" : 4978 + "blockRuntimeId" : 5282 }, { "id" : "minecraft:detector_rail", - "blockRuntimeId" : 4462 + "blockRuntimeId" : 4121 }, { "id" : "minecraft:activator_rail", - "blockRuntimeId" : 122 + "blockRuntimeId" : 323 }, { "id" : "minecraft:minecart" @@ -4811,114 +4810,115 @@ }, { "id" : "minecraft:redstone_block", - "blockRuntimeId" : 6648 + "blockRuntimeId" : 3781 }, { "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 6651 + "blockRuntimeId" : 3530 }, { "id" : "minecraft:lever", - "blockRuntimeId" : 5443 + "blockRuntimeId" : 6405 }, { "id" : "minecraft:wooden_button", - "blockRuntimeId" : 7841 + "blockRuntimeId" : 6356 }, { "id" : "minecraft:spruce_button", - "blockRuntimeId" : 6963 + "blockRuntimeId" : 4269 }, { "id" : "minecraft:birch_button", - "blockRuntimeId" : 356 + "blockRuntimeId" : 7708 }, { "id" : "minecraft:jungle_button", - "blockRuntimeId" : 5210 + "blockRuntimeId" : 116 }, { - "id" : "minecraft:acacia_button" + "id" : "minecraft:acacia_button", + "blockRuntimeId" : 7173 }, { "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3937 + "blockRuntimeId" : 93 }, { "id" : "minecraft:stone_button", - "blockRuntimeId" : 7192 + "blockRuntimeId" : 604 }, { "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3772 + "blockRuntimeId" : 4380 }, { "id" : "minecraft:warped_button", - "blockRuntimeId" : 7528 + "blockRuntimeId" : 7192 }, { "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 6004 + "blockRuntimeId" : 7732 }, { "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 7398 + "blockRuntimeId" : 5838 }, { "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 7885 + "blockRuntimeId" : 8005 }, { "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 7023 + "blockRuntimeId" : 3764 }, { "id" : "minecraft:birch_pressure_plate", - "blockRuntimeId" : 416 + "blockRuntimeId" : 3560 }, { "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 5270 + "blockRuntimeId" : 3640 }, { "id" : "minecraft:acacia_pressure_plate", - "blockRuntimeId" : 60 + "blockRuntimeId" : 5203 }, { "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3997 + "blockRuntimeId" : 5880 }, { "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3841 + "blockRuntimeId" : 8210 }, { "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 7597 + "blockRuntimeId" : 270 }, { "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 7204 + "blockRuntimeId" : 3875 }, { "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 5501 + "blockRuntimeId" : 3670 }, { "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 5097 + "blockRuntimeId" : 1165 }, { "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 6018 + "blockRuntimeId" : 6197 }, { "id" : "minecraft:observer", - "blockRuntimeId" : 5726 + "blockRuntimeId" : 3518 }, { "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 4067 + "blockRuntimeId" : 4180 }, { "id" : "minecraft:repeater" @@ -4931,30 +4931,30 @@ }, { "id" : "minecraft:dropper", - "blockRuntimeId" : 4589 + "blockRuntimeId" : 7327 }, { "id" : "minecraft:dispenser", - "blockRuntimeId" : 4490 + "blockRuntimeId" : 7955 }, { "id" : "minecraft:piston", - "blockRuntimeId" : 5789 + "blockRuntimeId" : 930 }, { "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 7166 + "blockRuntimeId" : 4312 }, { "id" : "minecraft:tnt", - "blockRuntimeId" : 7350 + "blockRuntimeId" : 6581 }, { "id" : "minecraft:name_tag" }, { "id" : "minecraft:loom", - "blockRuntimeId" : 5583 + "blockRuntimeId" : 3831 }, { "id" : "minecraft:banner" @@ -5200,7 +5200,7 @@ }, { "id" : "minecraft:target", - "blockRuntimeId" : 7348 + "blockRuntimeId" : 6355 }, { "id" : "minecraft:lodestone_compass" diff --git a/src/main/resources/legacy_item_ids.json b/src/main/resources/legacy_item_ids.json index 733f11f4f1c..cd116b4ff8e 100644 --- a/src/main/resources/legacy_item_ids.json +++ b/src/main/resources/legacy_item_ids.json @@ -467,7 +467,7 @@ "minecraft:glow_stick": 166, "minecraft:iron_trapdoor": 167, "minecraft:prismarine": 168, - "minecraft:sealantern": 169, + "minecraft:sea_lantern": 169, "minecraft:hay_block": 170, "minecraft:carpet": 171, "minecraft:hardened_clay": 172, diff --git a/src/main/resources/runtime_item_states.json b/src/main/resources/runtime_item_states.json index 5bebcaf997f..4e609c7c07a 100644 --- a/src/main/resources/runtime_item_states.json +++ b/src/main/resources/runtime_item_states.json @@ -7,6 +7,10 @@ "name" : "minecraft:acacia_button", "id" : -140 }, + { + "name" : "minecraft:acacia_chest_boat", + "id" : 637 + }, { "name" : "minecraft:acacia_door", "id" : 556 @@ -53,7 +57,7 @@ }, { "name" : "minecraft:allay_spawn_egg", - "id" : 631 + "id" : 630 }, { "name" : "minecraft:allow", @@ -69,7 +73,7 @@ }, { "name" : "minecraft:amethyst_shard", - "id" : 625 + "id" : 624 }, { "name" : "minecraft:ancient_debris", @@ -137,7 +141,7 @@ }, { "name" : "minecraft:banner_pattern", - "id" : 635 + "id" : 642 }, { "name" : "minecraft:barrel", @@ -211,6 +215,10 @@ "name" : "minecraft:birch_button", "id" : -141 }, + { + "name" : "minecraft:birch_chest_boat", + "id" : 634 + }, { "name" : "minecraft:birch_door", "id" : 554 @@ -321,7 +329,7 @@ }, { "name" : "minecraft:boat", - "id" : 633 + "id" : 640 }, { "name" : "minecraft:bone", @@ -367,10 +375,6 @@ "name" : "minecraft:brewing_stand", "id" : 431 }, - { - "name" : "minecraft:brewingstandblock", - "id" : 117 - }, { "name" : "minecraft:brick", "id" : 383 @@ -535,6 +539,10 @@ "name" : "minecraft:chest", "id" : 54 }, + { + "name" : "minecraft:chest_boat", + "id" : 639 + }, { "name" : "minecraft:chest_minecart", "id" : 389 @@ -911,6 +919,10 @@ "name" : "minecraft:dark_oak_button", "id" : -142 }, + { + "name" : "minecraft:dark_oak_chest_boat", + "id" : 638 + }, { "name" : "minecraft:dark_oak_door", "id" : 557 @@ -1177,7 +1189,7 @@ }, { "name" : "minecraft:dye", - "id" : 634 + "id" : 641 }, { "name" : "minecraft:egg", @@ -1705,7 +1717,7 @@ }, { "name" : "minecraft:end_crystal", - "id" : 637 + "id" : 644 }, { "name" : "minecraft:end_gateway", @@ -1868,12 +1880,12 @@ "id" : 513 }, { - "name" : "minecraft:frog_egg", + "name" : "minecraft:frog_spawn", "id" : -468 }, { "name" : "minecraft:frog_spawn_egg", - "id" : 628 + "id" : 627 }, { "name" : "minecraft:frosted_ice", @@ -1917,7 +1929,7 @@ }, { "name" : "minecraft:glow_berries", - "id" : 638 + "id" : 645 }, { "name" : "minecraft:glow_frame", @@ -1951,10 +1963,6 @@ "name" : "minecraft:glowstone_dust", "id" : 394 }, - { - "name" : "minecraft:goat_horn", - "id" : 624 - }, { "name" : "minecraft:goat_spawn_egg", "id" : 501 @@ -2184,7 +2192,7 @@ "id" : 413 }, { - "name" : "minecraft:invisiblebedrock", + "name" : "minecraft:invisible_bedrock", "id" : 95 }, { @@ -2271,6 +2279,10 @@ "name" : "minecraft:item.birch_door", "id" : 194 }, + { + "name" : "minecraft:item.brewing_stand", + "id" : 117 + }, { "name" : "minecraft:item.cake", "id" : 92 @@ -2379,6 +2391,10 @@ "name" : "minecraft:jungle_button", "id" : -143 }, + { + "name" : "minecraft:jungle_chest_boat", + "id" : 635 + }, { "name" : "minecraft:jungle_door", "id" : 555 @@ -2635,6 +2651,18 @@ "name" : "minecraft:magma_cube_spawn_egg", "id" : 455 }, + { + "name" : "minecraft:mangrove_leaves", + "id" : -472 + }, + { + "name" : "minecraft:mangrove_propagule", + "id" : -474 + }, + { + "name" : "minecraft:mangrove_propagule_hanging", + "id" : -476 + }, { "name" : "minecraft:medicine", "id" : 599 @@ -2704,9 +2732,33 @@ "id" : -175 }, { - "name" : "minecraft:movingblock", + "name" : "minecraft:moving_block", "id" : 250 }, + { + "name" : "minecraft:mud", + "id" : -473 + }, + { + "name" : "minecraft:mud_brick_double_slab", + "id" : -479 + }, + { + "name" : "minecraft:mud_brick_slab", + "id" : -478 + }, + { + "name" : "minecraft:mud_brick_stairs", + "id" : -480 + }, + { + "name" : "minecraft:mud_brick_wall", + "id" : -481 + }, + { + "name" : "minecraft:mud_bricks", + "id" : -475 + }, { "name" : "minecraft:mule_spawn_egg", "id" : 466 @@ -2749,7 +2801,7 @@ }, { "name" : "minecraft:music_disc_otherside", - "id" : 627 + "id" : 626 }, { "name" : "minecraft:music_disc_pigstep", @@ -2779,14 +2831,6 @@ "name" : "minecraft:mycelium", "id" : 110 }, - { - "name" : "minecraft:mysterious_frame", - "id" : -466 - }, - { - "name" : "minecraft:mysterious_frame_slot", - "id" : -467 - }, { "name" : "minecraft:name_tag", "id" : 548 @@ -2903,6 +2947,10 @@ "name" : "minecraft:oak_boat", "id" : 375 }, + { + "name" : "minecraft:oak_chest_boat", + "id" : 633 + }, { "name" : "minecraft:oak_sign", "id" : 358 @@ -2967,6 +3015,10 @@ "name" : "minecraft:packed_ice", "id" : 174 }, + { + "name" : "minecraft:packed_mud", + "id" : -477 + }, { "name" : "minecraft:painting", "id" : 357 @@ -3036,7 +3088,7 @@ "id" : 33 }, { - "name" : "minecraft:pistonarmcollision", + "name" : "minecraft:piston_arm_collision", "id" : 34 }, { @@ -3415,6 +3467,10 @@ "name" : "minecraft:redstone_wire", "id" : 55 }, + { + "name" : "minecraft:reinforced_deepslate", + "id" : -466 + }, { "name" : "minecraft:repeater", "id" : 419 @@ -3495,6 +3551,10 @@ "name" : "minecraft:scute", "id" : 572 }, + { + "name" : "minecraft:sea_lantern", + "id" : 169 + }, { "name" : "minecraft:sea_pickle", "id" : -156 @@ -3503,10 +3563,6 @@ "name" : "minecraft:seagrass", "id" : -130 }, - { - "name" : "minecraft:sealantern", - "id" : 169 - }, { "name" : "minecraft:shears", "id" : 421 @@ -3649,7 +3705,7 @@ }, { "name" : "minecraft:spawn_egg", - "id" : 636 + "id" : 643 }, { "name" : "minecraft:spider_eye", @@ -3679,6 +3735,10 @@ "name" : "minecraft:spruce_button", "id" : -144 }, + { + "name" : "minecraft:spruce_chest_boat", + "id" : 636 + }, { "name" : "minecraft:spruce_door", "id" : 553 @@ -3713,7 +3773,7 @@ }, { "name" : "minecraft:spyglass", - "id" : 626 + "id" : 625 }, { "name" : "minecraft:squid_spawn_egg", @@ -3748,7 +3808,7 @@ "id" : 29 }, { - "name" : "minecraft:stickypistonarmcollision", + "name" : "minecraft:sticky_piston_arm_collision", "id" : -217 }, { @@ -3885,11 +3945,11 @@ }, { "name" : "minecraft:tadpole_bucket", - "id" : 630 + "id" : 629 }, { "name" : "minecraft:tadpole_spawn_egg", - "id" : 629 + "id" : 628 }, { "name" : "minecraft:tallgrass", @@ -3932,7 +3992,7 @@ "id" : 546 }, { - "name" : "minecraft:tripwire", + "name" : "minecraft:trip_wire", "id" : 132 }, { @@ -4027,6 +4087,10 @@ "name" : "minecraft:wandering_trader_spawn_egg", "id" : 492 }, + { + "name" : "minecraft:warden_spawn_egg", + "id" : 631 + }, { "name" : "minecraft:warped_button", "id" : -261 From 819a0ff1d835178906b60772aa04e37deab011cb Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 11:44:19 -0300 Subject: [PATCH 377/394] Add Since annotations --- src/main/java/cn/nukkit/level/DimensionData.java | 9 ++++++++- src/main/java/cn/nukkit/level/DimensionEnum.java | 10 ++++++++++ src/main/java/cn/nukkit/level/Level.java | 1 + .../generic/serializer/NetworkChunkSerializer.java | 3 +++ src/main/java/cn/nukkit/level/generator/Generator.java | 2 ++ 5 files changed, 24 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/nukkit/level/DimensionData.java b/src/main/java/cn/nukkit/level/DimensionData.java index 25bbd9f78e4..1e424dd5395 100644 --- a/src/main/java/cn/nukkit/level/DimensionData.java +++ b/src/main/java/cn/nukkit/level/DimensionData.java @@ -1,15 +1,22 @@ package cn.nukkit.level; -import lombok.Builder; +import cn.nukkit.api.Since; import lombok.Data; +import lombok.Getter; +@Since("FUTURE") @Data public class DimensionData { + @Getter(onMethod = @__(@Since("FUTURE"))) private final int dimensionId; + @Getter(onMethod = @__(@Since("FUTURE"))) private final int minHeight; + @Getter(onMethod = @__(@Since("FUTURE"))) private final int maxHeight; + @Getter(onMethod = @__(@Since("FUTURE"))) private final int height; + @Since("FUTURE") public DimensionData(int dimensionId, int minHeight, int maxHeight) { this.dimensionId = dimensionId; this.minHeight = minHeight; diff --git a/src/main/java/cn/nukkit/level/DimensionEnum.java b/src/main/java/cn/nukkit/level/DimensionEnum.java index 52bcd8cabc8..6fa923fd4d8 100644 --- a/src/main/java/cn/nukkit/level/DimensionEnum.java +++ b/src/main/java/cn/nukkit/level/DimensionEnum.java @@ -1,8 +1,16 @@ package cn.nukkit.level; +import cn.nukkit.api.Since; + +@Since("FUTURE") public enum DimensionEnum { + @Since("FUTURE") OVERWORLD(new DimensionData(Level.DIMENSION_OVERWORLD, -64, 319)), + + @Since("FUTURE") NETHER(new DimensionData(Level.DIMENSION_NETHER, 0, 127)), + + @Since("FUTURE") END(new DimensionData(Level.DIMENSION_THE_END, 0, 255)); private final DimensionData dimensionData; @@ -11,10 +19,12 @@ public enum DimensionEnum { this.dimensionData = dimensionData; } + @Since("FUTURE") public DimensionData getDimensionData() { return this.dimensionData; } + @Since("FUTURE") public static DimensionData getDataFromId(int dimension) { for (DimensionEnum value : values()) { if (value.getDimensionData().getDimensionId() == dimension) { diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index d36ebed5cda..7c22c95029a 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -3900,6 +3900,7 @@ public void sendWeather(Collection players) { this.sendWeather(players.toArray(Player.EMPTY_ARRAY)); } + @Since("FUTURE") public DimensionData getDimensionData() { return this.dimensionData; } diff --git a/src/main/java/cn/nukkit/level/format/generic/serializer/NetworkChunkSerializer.java b/src/main/java/cn/nukkit/level/format/generic/serializer/NetworkChunkSerializer.java index 7a08cadc1d5..cd002470d90 100644 --- a/src/main/java/cn/nukkit/level/format/generic/serializer/NetworkChunkSerializer.java +++ b/src/main/java/cn/nukkit/level/format/generic/serializer/NetworkChunkSerializer.java @@ -1,5 +1,6 @@ package cn.nukkit.level.format.generic.serializer; +import cn.nukkit.api.Since; import cn.nukkit.blockentity.BlockEntity; import cn.nukkit.blockentity.BlockEntitySpawnable; import cn.nukkit.level.DimensionData; @@ -20,6 +21,7 @@ import java.util.List; import java.util.function.BiConsumer; +@Since("FUTURE") public class NetworkChunkSerializer { private static final int EXTENDED_NEGATIVE_SUB_CHUNKS = 4; @@ -36,6 +38,7 @@ public class NetworkChunkSerializer { negativeSubChunks = stream.getBuffer(); } + @Since("FUTURE") public static void serialize(BaseChunk chunk, BiConsumer callback, DimensionData dimensionData) { byte[] blockEntities; if (chunk.getBlockEntities().isEmpty()) { diff --git a/src/main/java/cn/nukkit/level/generator/Generator.java b/src/main/java/cn/nukkit/level/generator/Generator.java index cf06bf1e0fd..c398bc306dd 100644 --- a/src/main/java/cn/nukkit/level/generator/Generator.java +++ b/src/main/java/cn/nukkit/level/generator/Generator.java @@ -1,5 +1,6 @@ package cn.nukkit.level.generator; +import cn.nukkit.api.Since; import cn.nukkit.block.BlockID; import cn.nukkit.level.ChunkManager; import cn.nukkit.level.DimensionData; @@ -22,6 +23,7 @@ public abstract class Generator implements BlockID { public abstract int getId(); + @Since("FUTURE") public DimensionData getDimensionData() { DimensionData dimensionData = DimensionEnum.getDataFromId(this.getDimension()); if (dimensionData == null) { From 5350f733bf3e8252e9d1e65c3406f93096e3eeae Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 15:31:06 -0300 Subject: [PATCH 378/394] Add missing tags --- src/main/java/cn/nukkit/Player.java | 2 - .../cn/nukkit/level/format/anvil/Anvil.java | 2 + .../level/util/PalettedBlockStorage.java | 6 + .../network/protocol/AddPlayerPacket.java | 3 +- .../network/protocol/BossEventPacket.java | 9 +- .../network/protocol/CraftingDataPacket.java | 2 +- .../network/protocol/LevelChunkPacket.java | 5 +- .../protocol/LevelSoundEventPacket.java | 248 +++++++++--------- 8 files changed, 142 insertions(+), 135 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 8c360b5a627..db5ec3f7553 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -302,8 +302,6 @@ public class Player extends EntityHuman implements CommandSender, InventoryHolde private float soulSpeedMultiplier = 1; private boolean wasInSoulSandCompatible; - @PowerNukkitOnly - @Since("FUTURE") private boolean isIgnoringMobEquipmentPacket; @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java index 4906bbec8af..79e84294bfc 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java +++ b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java @@ -2,6 +2,7 @@ import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import cn.nukkit.level.Level; import cn.nukkit.level.format.FullChunk; import cn.nukkit.level.format.generic.BaseFullChunk; @@ -32,6 +33,7 @@ public class Anvil extends BaseLevelProvider { public static final int VERSION = 19133; private static final byte[] PAD_256 = new byte[256]; + @Since("FUTURE") public static final int EXTENDED_NEGATIVE_SUB_CHUNKS = 4; public Anvil(Level level, String path) throws IOException { diff --git a/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java b/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java index 2484d8db35a..9fbd017b33d 100644 --- a/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java +++ b/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java @@ -1,5 +1,6 @@ package cn.nukkit.level.util; +import cn.nukkit.api.Since; import cn.nukkit.level.GlobalBlockPalette; import cn.nukkit.utils.BinaryStream; import it.unimi.dsi.fastutil.ints.IntArrayList; @@ -14,19 +15,23 @@ public class PalettedBlockStorage { private final IntList palette; private BitArray bitArray; + @Since("FUTURE") public static PalettedBlockStorage createFromBlockPalette() { return createFromBlockPalette(BitArrayVersion.V2); } + @Since("FUTURE") public static PalettedBlockStorage createFromBlockPalette(BitArrayVersion version) { int runtimeId = GlobalBlockPalette.getOrCreateRuntimeId(0); // Air is first return new PalettedBlockStorage(version, runtimeId); } + @Since("FUTURE") public static PalettedBlockStorage createWithDefaultState(int defaultState) { return createWithDefaultState(BitArrayVersion.V2, defaultState); } + @Since("FUTURE") public static PalettedBlockStorage createWithDefaultState(BitArrayVersion version, int defaultState) { return new PalettedBlockStorage(version, defaultState); } @@ -50,6 +55,7 @@ private int getIndex(int x, int y, int z) { return (x << 8) | (z << 4) | y; } + @Since("FUTURE") public void setBlock(int x, int y, int z, int runtimeId) { this.setBlock(this.getIndex(x, y, z), runtimeId); } diff --git a/src/main/java/cn/nukkit/network/protocol/AddPlayerPacket.java b/src/main/java/cn/nukkit/network/protocol/AddPlayerPacket.java index 6dcf612b93d..915834a490b 100644 --- a/src/main/java/cn/nukkit/network/protocol/AddPlayerPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AddPlayerPacket.java @@ -1,6 +1,7 @@ package cn.nukkit.network.protocol; import cn.nukkit.Server; +import cn.nukkit.api.Since; import cn.nukkit.entity.data.EntityMetadata; import cn.nukkit.item.Item; import cn.nukkit.utils.Binary; @@ -34,7 +35,7 @@ public byte pid() { public float pitch; public float yaw; public Item item; - public int gameType = Server.getInstance().getGamemode(); + @Since("FUTURE") public int gameType = Server.getInstance().getGamemode(); public EntityMetadata metadata = new EntityMetadata(); //public EntityLink links = new EntityLink[0]; public String deviceId = ""; diff --git a/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java b/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java index 854d88005af..5da173d15ea 100644 --- a/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java @@ -1,5 +1,8 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.DeprecationDetails; +import cn.nukkit.api.PowerNukkitOnly; +import cn.nukkit.api.Since; import lombok.ToString; /** @@ -25,7 +28,11 @@ public class BossEventPacket extends DataPacket { /* S2C: Sets title of the bar. */ public static final int TYPE_TITLE = 5; /* S2C: Not sure on this. Includes color and overlay fields, plus an unknown short. TODO: check this */ - public static final int TYPE_UPDATE_PROPERTIES = 6; + @Since("FUTURE") public static final int TYPE_UPDATE_PROPERTIES = 6; + @PowerNukkitOnly("Renamed by cloudburst") + @Deprecated + @DeprecationDetails(by = "Cloudburst", reason = "Renamed", replaceWith = "TYPE_UPDATE_PROPERTIES", since = "FUTURE") + public static final int TYPE_UNKNOWN_6 = TYPE_UPDATE_PROPERTIES; /* S2C: Sets color and overlay of the bar. */ public static final int TYPE_TEXTURE = 7; public static final int TYPE_QUERY = 8; diff --git a/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java b/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java index 5cd5fa3c619..c1a7628823f 100644 --- a/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java @@ -26,7 +26,7 @@ public class CraftingDataPacket extends DataPacket { public static final String CRAFTING_TAG_CAMPFIRE = "campfire"; public static final String CRAFTING_TAG_BLAST_FURNACE = "blast_furnace"; public static final String CRAFTING_TAG_SMOKER = "smoker"; - public static final String CRAFTING_TAG_SMITHING_TABLE = "smithing_table"; + @PowerNukkitOnly @Since("FUTURE") public static final String CRAFTING_TAG_SMITHING_TABLE = "smithing_table"; private List entries = new ArrayList<>(); private final List brewingEntries = new ArrayList<>(); diff --git a/src/main/java/cn/nukkit/network/protocol/LevelChunkPacket.java b/src/main/java/cn/nukkit/network/protocol/LevelChunkPacket.java index 2b94bd067ec..360443b3879 100644 --- a/src/main/java/cn/nukkit/network/protocol/LevelChunkPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/LevelChunkPacket.java @@ -1,5 +1,6 @@ package cn.nukkit.network.protocol; +import cn.nukkit.api.Since; import lombok.ToString; /** @@ -18,8 +19,8 @@ public byte pid() { public int chunkZ; public int subChunkCount; public boolean cacheEnabled; - public boolean requestSubChunks; - public int subChunkLimit; + @Since("FUTURE") public boolean requestSubChunks; + @Since("FUTURE") public int subChunkLimit; public long[] blobIds; public byte[] data; diff --git a/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java b/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java index b9c757089c1..6a3991273ec 100644 --- a/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java @@ -1,13 +1,10 @@ package cn.nukkit.network.protocol; -import cn.nukkit.api.PowerNukkitDifference; import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; import cn.nukkit.math.Vector3f; import lombok.ToString; -import static cn.nukkit.utils.Utils.dynamic; - @ToString public class LevelSoundEventPacket extends DataPacket { public static final byte NETWORK_ID = ProtocolInfo.LEVEL_SOUND_EVENT_PACKET; @@ -264,132 +261,127 @@ public class LevelSoundEventPacket extends DataPacket { public static final int SOUND_AMBIENT_AGGRESSIVE = 252; public static final int SOUND_AMBIENT_WORRIED = 253; public static final int SOUND_CANT_BREED = 254; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SHIELD_BLOCK = 255; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_LECTERN_BOOK_PLACE = 256; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_GRINDSTONE_USE = 257; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BELL = 258; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CAMPFIRE_CRACKLE = 259; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_ROAR = 260; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_STUN = 261; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SWEET_BERRY_BUSH_HURT = 262; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SWEET_BERRY_BUSH_PICK = 263; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CARTOGRAPHY_TABLE_USE = 264; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_STONECUTTER_USE = 265; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_COMPOSTER_EMPTY = 266; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_COMPOSTER_FILL = 267; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_COMPOSTER_FILL_LAYER = 268; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_COMPOSTER_READY = 269; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BARREL_OPEN = 270; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BARREL_CLOSE = 271; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RAID_HORN = 272; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_LOOM_USE = 273; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_IN_RAID = 274; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_UI_CARTOGRAPHY_TABLE_USE = 275; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_UI_STONECUTTER_USE = 276; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_UI_LOOM_USE = 277; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SMOKER_USE = 278; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BLAST_FURNACE_USE = 279; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SMITHING_TABLE_USE = 280; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SCREECH = 281; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SLEEP = 282; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_FURNACE_USE = 283; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_MOOSHROOM_CONVERT = 284; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_MILK_SUSPICIOUSLY = 285; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CELEBRATE = 286; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_JUMP_PREVENT = 287; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_POLLINATE = 288; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BEEHIVE_DRIP = 289; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BEEHIVE_ENTER = 290; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BEEHIVE_EXIT = 291; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BEEHIVE_WORK = 292; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BEEHIVE_SHEAR = 293; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_HONEYBOTTLE_DRINK = 294; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_CAVE = 295; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RETREAT = 296; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CONVERT_TO_ZOMBIFIED = 297; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_ADMIRE = 298; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_STEP_LAVA = 299; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_TEMPT = 300; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_PANIC = 301; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_ANGRY = 302; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_WARPED_FOREST = 303; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_SOULSAND_VALLEY = 304; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_NETHER_WASTES = 305; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_BASALT_DELTAS = 306; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_CRIMSON_FOREST = 307; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_CHARGE = 308; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_DEPLETE = 309; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_SET_SPAWN = 310; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_AMBIENT = 311; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SOUL_ESCAPE_QUIET = 312; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SOUL_ESCAPE_LOUD = 313; + @Since("FUTURE") public static final int SOUND_ITEM_SHIELD_BLOCK = 255; + @Since("FUTURE") public static final int SOUND_ITEM_BOOK_PUT = 256; + @Since("FUTURE") public static final int SOUND_BLOCK_GRINDSTONE_USE = 257; + @Since("FUTURE") public static final int SOUND_BLOCK_BELL_HIT = 258; + @Since("FUTURE") public static final int SOUND_BLOCK_CAMPFIRE_CRACKLE = 259; + @Since("FUTURE") public static final int SOUND_ROAR = 260; + @Since("FUTURE") public static final int SOUND_STUN = 261; + @Since("FUTURE") public static final int SOUND_BLOCK_SWEET_BERRY_BUSH_HURT = 262; + @Since("FUTURE") public static final int SOUND_BLOCK_SWEET_BERRY_BUSH_PICK = 263; + @Since("FUTURE") public static final int SOUND_BLOCK_CARTOGRAPHY_TABLE_USE = 264; + @Since("FUTURE") public static final int SOUND_BLOCK_STONECUTTER_USE = 265; + @Since("FUTURE") public static final int SOUND_BLOCK_COMPOSTER_EMPTY = 266; + @Since("FUTURE") public static final int SOUND_BLOCK_COMPOSTER_FILL = 267; + @Since("FUTURE") public static final int SOUND_BLOCK_COMPOSTER_FILL_SUCCESS = 268; + @Since("FUTURE") public static final int SOUND_BLOCK_COMPOSTER_READY = 269; + @Since("FUTURE") public static final int SOUND_BLOCK_BARREL_OPEN = 270; + @Since("FUTURE") public static final int SOUND_BLOCK_BARREL_CLOSE = 271; + @Since("FUTURE") public static final int SOUND_RAID_HORN = 272; + @Since("FUTURE") public static final int SOUND_BLOCK_LOOM_USE = 273; + @Since("FUTURE") public static final int SOUND_AMBIENT_IN_RAID = 274; + @Since("FUTURE") public static final int SOUND_UI_CARTOGRAPHY_TABLE_TAKE_RESULT = 275; + @Since("FUTURE") public static final int SOUND_UI_STONECUTTER_TAKE_RESULT = 276; + @Since("FUTURE") public static final int SOUND_UI_LOOM_TAKE_RESULT = 277; + @Since("FUTURE") public static final int SOUND_BLOCK_SMOKER_SMOKE = 278; + @Since("FUTURE") public static final int SOUND_BLOCK_BLASTFURNACE_FIRE_CRACKLE = 279; + @Since("FUTURE") public static final int SOUND_BLOCK_SMITHING_TABLE_USE = 280; + @Since("FUTURE") public static final int SOUND_SCREECH = 281; + @Since("FUTURE") public static final int SOUND_SLEEP = 282; + @Since("FUTURE") public static final int SOUND_BLOCK_FURNACE_LIT = 283; + @Since("FUTURE") public static final int SOUND_CONVERT_MOOSHROOM = 284; + @Since("FUTURE") public static final int SOUND_MILK_SUSPICIOUSLY = 285; + @Since("FUTURE") public static final int SOUND_CELEBRATE = 286; + @Since("FUTURE") public static final int SOUND_JUMP_PREVENT = 287; + @Since("FUTURE") public static final int SOUND_AMBIENT_POLLINATE = 288; + @Since("FUTURE") public static final int SOUND_BLOCK_BEEHIVE_DRIP = 289; + @Since("FUTURE") public static final int SOUND_BLOCK_BEEHIVE_ENTER = 290; + @Since("FUTURE") public static final int SOUND_BLOCK_BEEHIVE_EXIT = 291; + @Since("FUTURE") public static final int SOUND_BLOCK_BEEHIVE_WORK = 292; + @Since("FUTURE") public static final int SOUND_BLOCK_BEEHIVE_SHEAR = 293; + @Since("FUTURE") public static final int SOUND_DRINK_HONEY = 294; + @Since("FUTURE") public static final int SOUND_AMBIENT_CAVE = 295; + @Since("FUTURE") public static final int SOUND_RETREAT = 296; + @Since("FUTURE") public static final int SOUND_CONVERTED_TO_ZOMBIFIED = 297; + @Since("FUTURE") public static final int SOUND_ADMIRE = 298; + @Since("FUTURE") public static final int SOUND_STEP_LAVA = 299; + @Since("FUTURE") public static final int SOUND_TEMPT = 300; + @Since("FUTURE") public static final int SOUND_PANIC = 301; + @Since("FUTURE") public static final int SOUND_ANGRY = 302; + @Since("FUTURE") public static final int SOUND_AMBIENT_WARPED_FOREST_MOOD = 303; + @Since("FUTURE") public static final int SOUND_AMBIENT_SOULSAND_VALLEY_MOOD = 304; + @Since("FUTURE") public static final int SOUND_AMBIENT_NETHER_WASTES_MOOD = 305; + @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_BASALT_DELTAS_MOOD = 306; + @Since("FUTURE") public static final int SOUND_AMBIENT_CRIMSON_FOREST_MOOD = 307; + @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_CHARGE = 308; + @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_DEPLETE = 309; + @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_SET_SPAWN = 310; + @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_AMBIENT = 311; + @Since("FUTURE") public static final int SOUND_PARTICLE_SOUL_ESCAPE_QUIET = 312; + @Since("FUTURE") public static final int SOUND_PARTICLE_SOUL_ESCAPE_LOUD = 313; @Since("1.4.0.0-PN") public static final int SOUND_RECORD_PIGSTEP = 314; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_LINK_COMPASS_TO_LODESTONE = 315; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_USE_SMITHING_TABLE = 316; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_EQUIP_NETHERITE = 317; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_LOOP_WARPED_FOREST = 318; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_LOOP_SOULSAND_VALLEY = 319; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_LOOP_NETHER_WASTES = 320; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_LOOP_BASALT_DELTAS = 321; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_LOOP_CRIMSON_FOREST = 322; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_ADDITION_WARPED_FOREST = 323; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_ADDITION_SOULSAND_VALLEY = 324; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_ADDITION_NETHER_WASTES = 325; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_ADDITION_BASALT_DELTAS = 326; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_ADDITION_CRIMSON_FOREST = 327; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SCULK_SENSOR_POWER_ON = 328; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SCULK_SENSOR_POWER_OFF = 329; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BUCKET_FILL_POWDER_SNOW = 330; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BUCKET_EMPTY_POWDER_SNOW = 331; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_CAULDRON_DRIP_LAVA = 332; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_CAULDRON_DRIP_WATER = 333; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_DRIP_LAVA = 334; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_DRIP_WATER = 335; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CAVE_VINES_PICK_BERRIES = 336; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BIG_DRIPLEAF_TILT_DOWN = 337; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BIG_DRIPLEAF_TILT_UP = 338; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_COPPER_WAX_ON = 339; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_COPPER_WAX_OFF = 340; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SCRAPE = 341; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_PLAYER_HURT_DROWN = 342; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_PLAYER_HURT_ON_FIRE = 343; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_PLAYER_HURT_FREEZE = 344; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_USE_SPYGLASS = 345; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_STOP_USING_SPYGLASS = 346; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMETHYST_BLOCK_CHIME = 347; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_SCREAMER = 348; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_HURT_SCREAMER = 349; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_DEATH_SCREAMER = 350; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_MILK_SCREAMER = 351; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_JUMP_TO_BLOCK = 352; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_PRE_RAM = 353; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_PRE_RAM_SCREAMER = 354; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RAM_IMPACT = 355; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RAM_IMPACT_SCREAMER = 356; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SQUID_INK_SQUIRT = 357; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_GLOW_SQUID_INK_SQUIRT = 358; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CONVERT_TO_STRAY = 359; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_CAKE_ADD_CANDLE = 360; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_EXTINGUISH_CANDLE = 361; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_AMBIENT_CANDLE = 362; - - - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BLOCK_CLICK = 363; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BLOCK_CLICK_FAIL = 364; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SCULK_CATALYST_BLOOM = 365; - - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_SCULK_SHRIEKER_SHRIEK = 366; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_WARDEN_NEARBY_CLOSE = 367; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_WARDEN_NEARBY_CLOSER = 368; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_WARDEN_NEARBY_CLOSEST = 369; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_WARDEN_SLIGHTLY_ANGRY = 370; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_RECORD_OTHERSIDE = 371; - - @PowerNukkitDifference(info = "Not constant", since = "FUTURE") - public static final int SOUND_TONGUE = dynamic(372); - public static final int SOUND_CRACK_IRON_GOLEM = 373; - public static final int SOUND_REPAIR_IRON_GOLEM = 374; - public static final int SOUND_UNDEFINED = 375; + @Since("FUTURE") public static final int SOUND_LODESTONE_COMPASS_LINK_COMPASS_TO_LODESTONE = 315; + @Since("FUTURE") public static final int SOUND_SMITHING_TABLE_USE = 316; + @Since("FUTURE") public static final int SOUND_ARMOR_EQUIP_NETHERITE = 317; + @Since("FUTURE") public static final int SOUND_AMBIENT_WARPED_FOREST_LOOP = 318; + @Since("FUTURE") public static final int SOUND_AMBIENT_SOULSAND_VALLEY_LOOP = 319; + @Since("FUTURE") public static final int SOUND_AMBIENT_NETHER_WASTES_LOOP = 320; + @Since("FUTURE") public static final int SOUND_AMBIENT_BASALT_DELTAS_LOOP = 321; + @Since("FUTURE") public static final int SOUND_AMBIENT_CRIMSON_FOREST_LOOP = 322; + @Since("FUTURE") public static final int SOUND_AMBIENT_WARPED_FOREST_ADDITIONS = 323; + @Since("FUTURE") public static final int SOUND_AMBIENT_SOULSAND_VALLEY_ADDITIONS = 324; + @Since("FUTURE") public static final int SOUND_AMBIENT_NETHER_WASTES_ADDITIONS = 325; + @Since("FUTURE") public static final int SOUND_AMBIENT_BASALT_DELTAS_ADDITIONS = 326; + @Since("FUTURE") public static final int SOUND_AMBIENT_CRIMSON_FOREST_ADDITIONS = 327; + @Since("FUTURE") public static final int SOUND_SCULK_SENSOR_POWER_ON = 328; + @Since("FUTURE") public static final int SOUND_SCULK_SENSOR_POWER_OFF = 329; + @Since("FUTURE") public static final int SOUND_BUCKET_FILL_POWDER_SNOW = 330; + @Since("FUTURE") public static final int SOUND_BUCKET_EMPTY_POWDER_SNOW = 331; + @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_CAULDRON_DRIP_WATER = 332; + @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_CAULDRON_DRIP_LAVA = 333; + @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_DRIP_WATER = 334; + @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_DRIP_LAVA = 335; + @Since("FUTURE") public static final int SOUND_CAVE_VINES_PICK_BERRIES = 336; + @Since("FUTURE") public static final int SOUND_BIG_DRIPLEAF_TILT_DOWN = 337; + @Since("FUTURE") public static final int SOUND_BIG_DRIPLEAF_TILT_UP = 338; + @Since("FUTURE") public static final int SOUND_COPPER_WAX_ON = 339; + @Since("FUTURE") public static final int SOUND_COPPER_WAX_OFF = 340; + @Since("FUTURE") public static final int SOUND_SCRAPE = 341; + @Since("FUTURE") public static final int SOUND_PLAYER_HURT_DROWN = 342; + @Since("FUTURE") public static final int SOUND_PLAYER_HURT_ON_FIRE = 343; + @Since("FUTURE") public static final int SOUND_PLAYER_HURT_FREEZE = 344; + @Since("FUTURE") public static final int SOUND_USE_SPYGLASS = 345; + @Since("FUTURE") public static final int SOUND_STOP_USING_SPYGLASS = 346; + @Since("FUTURE") public static final int SOUND_AMETHYST_BLOCK_CHIME = 347; + @Since("FUTURE") public static final int SOUND_AMBIENT_SCREAMER = 348; + @Since("FUTURE") public static final int SOUND_HURT_SCREAMER = 349; + @Since("FUTURE") public static final int SOUND_DEATH_SCREAMER = 350; + @Since("FUTURE") public static final int SOUND_MILK_SCREAMER = 351; + @Since("FUTURE") public static final int SOUND_JUMP_TO_BLOCK = 352; + @Since("FUTURE") public static final int SOUND_PRE_RAM = 353; + @Since("FUTURE") public static final int SOUND_PRE_RAM_SCREAMER = 354; + @Since("FUTURE") public static final int SOUND_RAM_IMPACT = 355; + @Since("FUTURE") public static final int SOUND_RAM_IMPACT_SCREAMER = 356; + @Since("FUTURE") public static final int SOUND_SQUID_INK_SQUIRT = 357; + @Since("FUTURE") public static final int SOUND_GLOW_SQUID_INK_SQUIRT = 358; + @Since("FUTURE") public static final int SOUND_CONVERT_TO_STRAY = 359; + @Since("FUTURE") public static final int SOUND_CAKE_ADD_CANDLE = 360; + @Since("FUTURE") public static final int SOUND_EXTINGUISH_CANDLE = 361; + @Since("FUTURE") public static final int SOUND_AMBIENT_CANDLE = 362; + @Since("FUTURE") public static final int SOUND_BLOCK_CLICK = 363; + @Since("FUTURE") public static final int SOUND_BLOCK_CLICK_FAIL = 364; + @Since("FUTURE") public static final int SOUND_SCULK_CATALYST_BLOOM = 365; + @Since("FUTURE") public static final int SOUND_SCULK_SHRIEKER_SHRIEK = 366; + @Since("FUTURE") public static final int SOUND_WARDEN_NEARBY_CLOSE = 367; + @Since("FUTURE") public static final int SOUND_WARDEN_NEARBY_CLOSER = 368; + @Since("FUTURE") public static final int SOUND_WARDEN_NEARBY_CLOSEST = 369; + @Since("FUTURE") public static final int SOUND_WARDEN_SLIGHTLY_ANGRY = 370; + @Since("FUTURE") public static final int SOUND_RECORD_OTHERSIDE = 371; + @Since("FUTURE") public static final int SOUND_TONGUE = 372; + @Since("FUTURE") public static final int SOUND_CRACK_IRON_GOLEM = 373; + @Since("FUTURE") public static final int SOUND_REPAIR_IRON_GOLEM = 374; + @Since("FUTURE") public static final int SOUND_UNDEFINED = 375; public int sound; public float x; From 183f10eab247e7fb7379ce900a2dc32734be6b5f Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 15:34:54 -0300 Subject: [PATCH 379/394] Replace all "FUTURE" with "1.6.0.0-PN" --- src/main/java/cn/nukkit/Player.java | 6 +- src/main/java/cn/nukkit/block/Block.java | 12 +- src/main/java/cn/nukkit/block/BlockID.java | 16 +- .../java/cn/nukkit/block/BlockPistonHead.java | 2 +- .../cn/nukkit/block/BlockRespawnAnchor.java | 2 +- src/main/java/cn/nukkit/block/BlockSkull.java | 2 +- .../blockentity/BlockEntityPistonArm.java | 4 +- src/main/java/cn/nukkit/entity/Entity.java | 20 +- .../nukkit/entity/item/EntityFishingHook.java | 4 +- .../entity/projectile/EntityProjectile.java | 12 +- .../projectile/EntityThrownTrident.java | 10 +- .../nukkit/event/block/AnvilDamageEvent.java | 20 +- .../entity/EntityDamageByEntityEvent.java | 4 +- .../transaction/CraftingTransaction.java | 12 +- .../action/NoOpIventoryAction.java | 4 +- src/main/java/cn/nukkit/item/Item.java | 2 +- src/main/java/cn/nukkit/item/ItemArrow.java | 2 +- src/main/java/cn/nukkit/item/ItemBanner.java | 2 +- .../cn/nukkit/item/ItemBannerPattern.java | 2 +- .../java/cn/nukkit/item/ItemFireworkStar.java | 8 +- .../cn/nukkit/item/ItemHeartOfTheSea.java | 8 +- src/main/java/cn/nukkit/item/ItemID.java | 2 +- .../cn/nukkit/item/ItemNautilusShell.java | 8 +- .../cn/nukkit/item/ItemPhantomMembrane.java | 8 +- src/main/java/cn/nukkit/item/ItemPotion.java | 2 +- .../java/cn/nukkit/item/ItemPotionSplash.java | 2 +- src/main/java/cn/nukkit/item/ItemScute.java | 8 +- .../java/cn/nukkit/item/ItemSpawnEgg.java | 4 +- .../java/cn/nukkit/item/ItemSpyglass.java | 8 +- src/main/java/cn/nukkit/item/ItemTool.java | 10 +- .../java/cn/nukkit/item/MinecraftItemID.java | 2 +- .../cn/nukkit/item/RuntimeItemMapping.java | 12 +- .../nukkit/item/enchantment/Enchantment.java | 2 +- .../enchantment/sideeffect/SideEffect.java | 2 +- .../sideeffect/SideEffectCombust.java | 4 +- .../cn/nukkit/item/randomitem/Fishing.java | 8 +- .../java/cn/nukkit/level/DimensionData.java | 12 +- .../java/cn/nukkit/level/DimensionEnum.java | 12 +- .../cn/nukkit/level/GlobalBlockPalette.java | 2 +- src/main/java/cn/nukkit/level/Level.java | 2 +- src/main/java/cn/nukkit/level/Location.java | 10 +- .../java/cn/nukkit/level/ParticleEffect.java | 20 +- src/main/java/cn/nukkit/level/Sound.java | 388 +++++++++--------- .../cn/nukkit/level/format/anvil/Anvil.java | 2 +- .../serializer/NetworkChunkSerializer.java | 4 +- .../cn/nukkit/level/generator/Generator.java | 2 +- .../level/util/PalettedBlockStorage.java | 10 +- .../java/cn/nukkit/math/BlockVector3.java | 6 +- src/main/java/cn/nukkit/math/Vector3.java | 6 +- src/main/java/cn/nukkit/math/Vector3f.java | 6 +- src/main/java/cn/nukkit/network/Network.java | 2 +- .../network/protocol/AddPlayerPacket.java | 2 +- .../network/protocol/BossEventPacket.java | 4 +- .../network/protocol/CraftingDataPacket.java | 2 +- .../network/protocol/LevelChunkPacket.java | 4 +- .../protocol/LevelSoundEventPacket.java | 244 +++++------ .../protocol/MoveEntityAbsolutePacket.java | 2 +- .../protocol/MoveEntityDeltaPacket.java | 16 +- .../network/protocol/NPCRequestPacket.java | 2 +- .../protocol/ResourcePacksInfoPacket.java | 2 +- .../network/protocol/SetTitlePacket.java | 4 +- src/main/java/cn/nukkit/potion/Potion.java | 10 +- .../java/cn/nukkit/utils/BossBarColor.java | 16 +- .../java/cn/nukkit/utils/DummyBossBar.java | 6 +- .../java/cn/nukkit/block/BlockBellTest.java | 2 +- .../cn/nukkit/block/BlockDispenserTest.java | 2 +- .../cn/nukkit/block/BlockDropperTest.java | 2 +- .../command/CapturingCommandSenderTest.java | 2 +- .../java/cn/nukkit/entity/AttributeTest.java | 2 +- .../entity/item/EntityFallingBlockTest.java | 2 +- .../entity/item/EntityFishingHookTest.java | 2 +- .../projectile/EntityProjectileTest.java | 2 +- .../projectile/EntityThrownTridentTest.java | 2 +- .../nukkit/event/block/BellRingEventTest.java | 2 +- .../event/inventory/EnchantItemEventTest.java | 2 +- .../transaction/CraftingTransactionTest.java | 2 +- .../transaction/EnchantTransactionTest.java | 2 +- .../action/NoOpIventoryActionTest.java | 2 +- .../nukkit/item/BasicAttributesXmlTest.java | 2 +- .../java/cn/nukkit/item/ItemArmorTest.java | 2 +- .../java/cn/nukkit/item/ItemArrowTest.java | 2 +- .../java/cn/nukkit/item/ItemBoatTest.java | 2 +- .../java/cn/nukkit/item/ItemPotionTest.java | 2 +- .../java/cn/nukkit/item/ItemTridentTest.java | 2 +- .../damage/EnchantmentDamageAllTest.java | 2 +- .../nukkit/item/randomitem/FishingTest.java | 2 +- .../java/cn/nukkit/level/LocationTest.java | 2 +- .../cn/nukkit/level/ParticleEffectTest.java | 2 +- .../java/cn/nukkit/math/BlockVector3Test.java | 2 +- src/test/java/cn/nukkit/math/Vector3Test.java | 2 +- .../java/cn/nukkit/math/Vector3fTest.java | 2 +- .../protocol/MoveEntityDeltaPacketTest.java | 2 +- .../java/cn/nukkit/potion/PotionTest.java | 2 +- .../cn/nukkit/utils/BannerPatternTest.java | 2 +- src/test/java/cn/nukkit/utils/BinaryTest.java | 2 +- .../cn/nukkit/utils/DummyBossBarTest.java | 2 +- .../tools/AnnotationProblemScanner.java | 2 +- 97 files changed, 550 insertions(+), 550 deletions(-) diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index db5ec3f7553..32952726098 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -150,7 +150,7 @@ public class Player extends EntityHuman implements CommandSender, InventoryHolde public static final @PowerNukkitOnly int GRINDSTONE_WINDOW_ID = dynamic(5); public static final @Since("1.4.0.0-PN") @PowerNukkitOnly int SMITHING_WINDOW_ID = dynamic(6); - @Since("FUTURE") + @Since("1.6.0.0-PN") protected static final int RESOURCE_PACK_CHUNK_SIZE = 8 * 1024; // 8KB protected final SourceInterface interfaz; @@ -6233,13 +6233,13 @@ public boolean dataResourcePacket(DataPacket packet) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") public boolean isIgnoringMobEquipmentPacket() { return this.isIgnoringMobEquipmentPacket; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") public void setIgnoringMobEquipmentPacket(boolean isIgnoringMobEquipmentPacket) { this.isIgnoringMobEquipmentPacket = isIgnoringMobEquipmentPacket; } diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index 5f5aa9886f7..7eac9ab8e54 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -798,7 +798,7 @@ public static Block get(int id, int meta, Level level, int x, int y, int z, int // @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @SuppressWarnings("java:S1874") public static boolean isSolid(int blockId) { if (blockId < 0 || blockId >= solid.length) { @@ -808,7 +808,7 @@ public static boolean isSolid(int blockId) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") public static boolean diffusesSkyLight(int blockId) { if (blockId < 0 || blockId >= diffusesSkyLight.length) { return false; @@ -817,7 +817,7 @@ public static boolean diffusesSkyLight(int blockId) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @SuppressWarnings("java:S1874") public static double getHardness(int blockId) { if (blockId < 0 || blockId >= hardness.length) { @@ -827,7 +827,7 @@ public static double getHardness(int blockId) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @SuppressWarnings("java:S1874") public static int getLightLevel(int blockId) { if (blockId < 0 || blockId >= light.length) { @@ -837,7 +837,7 @@ public static int getLightLevel(int blockId) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @SuppressWarnings("java:S1874") public static int getLightFilter(int blockId) { if (blockId < 0 || blockId >= lightFilter.length) { @@ -847,7 +847,7 @@ public static int getLightFilter(int blockId) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @SuppressWarnings("java:S1874") public static boolean isTransparent(int blockId) { if (blockId < 0 || blockId >= transparent.length) { diff --git a/src/main/java/cn/nukkit/block/BlockID.java b/src/main/java/cn/nukkit/block/BlockID.java index 7405291bea3..b560dbc3828 100644 --- a/src/main/java/cn/nukkit/block/BlockID.java +++ b/src/main/java/cn/nukkit/block/BlockID.java @@ -48,9 +48,9 @@ public interface BlockID { int BUSH = 32; int DEAD_BUSH = 32; int PISTON = 33; - @PowerNukkitOnly @Since("FUTURE") int PISTON_ARM_COLLISION = 34; + @PowerNukkitOnly @Since("1.6.0.0-PN") int PISTON_ARM_COLLISION = 34; @Deprecated - @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Incorrect name", replaceWith = "PISTON_ARM_COLLISION") + @DeprecationDetails(since = "1.6.0.0-PN", by = "PowerNukkit", reason = "Incorrect name", replaceWith = "PISTON_ARM_COLLISION") int PISTON_HEAD = 34; int WOOL = 35; int DANDELION = 37; @@ -184,9 +184,9 @@ public interface BlockID { int EMERALD_ORE = 129; int ENDER_CHEST = 130; int TRIPWIRE_HOOK = 131; - @PowerNukkitOnly @Since("FUTURE") int TRIP_WIRE = 132; + @PowerNukkitOnly @Since("1.6.0.0-PN") int TRIP_WIRE = 132; @Deprecated - @DeprecationDetails(since = "FUTURE", by = "Mojang", reason = "Renamed", replaceWith = "TRIP_WIRE") + @DeprecationDetails(since = "1.6.0.0-PN", by = "Mojang", reason = "Renamed", replaceWith = "TRIP_WIRE") int TRIPWIRE = 132; int EMERALD_BLOCK = 133; int SPRUCE_WOOD_STAIRS = 134; @@ -310,7 +310,7 @@ public interface BlockID { int CONCRETE_POWDER = 237; @Since("1.4.0.0-PN") @PowerNukkitOnly - @Deprecated @DeprecationDetails(since = "FUTURE", by = "Mojang", replaceWith = "CONCRETE_POWDER", reason = "Renamed") + @Deprecated @DeprecationDetails(since = "1.6.0.0-PN", by = "Mojang", replaceWith = "CONCRETE_POWDER", reason = "Renamed") int CONCRETEPOWDER = CONCRETE_POWDER; int CHORUS_PLANT = 240; @@ -439,14 +439,14 @@ public interface BlockID { @PowerNukkitOnly int LIT_BLAST_FURNACE = 469; @PowerNukkitOnly int LIGHT_BLOCK = 470; @PowerNukkitOnly int WITHER_ROSE = 471; - @PowerNukkitOnly @Since("FUTURE") int STICKY_PISTON_ARM_COLLISION = 472; + @PowerNukkitOnly @Since("1.6.0.0-PN") int STICKY_PISTON_ARM_COLLISION = 472; @PowerNukkitOnly @Deprecated - @DeprecationDetails(since = "FUTURE", by = "Mojang", replaceWith = "STICKY_PISTON_ARM_COLLISION", reason = "Renamed") + @DeprecationDetails(since = "1.6.0.0-PN", by = "Mojang", replaceWith = "STICKY_PISTON_ARM_COLLISION", reason = "Renamed") int STICKYPISTONARMCOLLISION = STICKY_PISTON_ARM_COLLISION; @PowerNukkitOnly @Deprecated - @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", replaceWith = "STICKY_PISTON_ARM_COLLISION", reason = "Renamed") + @DeprecationDetails(since = "1.6.0.0-PN", by = "PowerNukkit", replaceWith = "STICKY_PISTON_ARM_COLLISION", reason = "Renamed") int PISTON_HEAD_STICKY = STICKY_PISTON_ARM_COLLISION; @PowerNukkitOnly int BEE_NEST = 473; @PowerNukkitOnly int BEEHIVE = 474; diff --git a/src/main/java/cn/nukkit/block/BlockPistonHead.java b/src/main/java/cn/nukkit/block/BlockPistonHead.java index c2b0e0df745..de94cbf728a 100644 --- a/src/main/java/cn/nukkit/block/BlockPistonHead.java +++ b/src/main/java/cn/nukkit/block/BlockPistonHead.java @@ -76,7 +76,7 @@ public boolean onBreak(Item item) { return true; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public BlockFace getFacing() { return getBlockFace(); } diff --git a/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java b/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java index 735e82a984e..645005f59ee 100644 --- a/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java +++ b/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java @@ -65,7 +65,7 @@ public BlockRespawnAnchor() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") public BlockRespawnAnchor(int meta) throws InvalidBlockPropertyMetaException { super(meta); } diff --git a/src/main/java/cn/nukkit/block/BlockSkull.java b/src/main/java/cn/nukkit/block/BlockSkull.java index dc75bd55597..893fda47e69 100644 --- a/src/main/java/cn/nukkit/block/BlockSkull.java +++ b/src/main/java/cn/nukkit/block/BlockSkull.java @@ -33,7 +33,7 @@ @PowerNukkitDifference(info = "Implements RedstoneComponent.", since = "1.4.0.0-PN") public class BlockSkull extends BlockTransparentMeta implements RedstoneComponent, BlockEntityHolder { @Deprecated - @DeprecationDetails(since = "FUTURE", reason = "Mojang removed from Minecraft 1.18.10") + @DeprecationDetails(since = "1.6.0.0-PN", reason = "Mojang removed from Minecraft 1.18.10") @PowerNukkitOnly @Since("1.5.0.0-PN") public static final BooleanBlockProperty NO_DROP = new BooleanBlockProperty("no_drop_bit", false); diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java b/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java index 167af049783..cd346d27cf0 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityPistonArm.java @@ -44,10 +44,10 @@ public class BlockEntityPistonArm extends BlockEntitySpawnable { public boolean sticky; - @Since("FUTURE") + @Since("1.6.0.0-PN") public byte state; - @Since("FUTURE") + @Since("1.6.0.0-PN") public byte newState = 1; @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index d03895bb576..d6e1d202c66 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -195,7 +195,7 @@ public abstract class Entity extends Location implements Metadatable { @PowerNukkitOnly("Removed from Cloudburst Nukkit") @Deprecated - @DeprecationDetails(by = "Cloudburst Nukkit", reason = "Duplicated and removed", replaceWith = "DATA_INTERACTIVE_TAG", since = "FUTURE") + @DeprecationDetails(by = "Cloudburst Nukkit", reason = "Duplicated and removed", replaceWith = "DATA_INTERACTIVE_TAG", since = "1.6.0.0-PN") @Since("1.2.0.0-PN") public static final int DATA_INTERACT_TEXT = dynamic(DATA_INTERACTIVE_TAG); //string @@ -313,7 +313,7 @@ public abstract class Entity extends Location implements Metadatable { @Since("1.2.0.0-PN") public static final int DATA_FLAG_BLOCKED_USING_SHIELD = dynamic(73); @Since("1.2.0.0-PN") public static final int DATA_FLAG_BLOCKED_USING_DAMAGED_SHIELD = dynamic(74); @Since("1.2.0.0-PN") public static final int DATA_FLAG_SLEEPING = dynamic(75); - @Since("FUTURE") public static final int DATA_FLAG_ENTITY_GROW_UP = dynamic(76); + @Since("1.6.0.0-PN") public static final int DATA_FLAG_ENTITY_GROW_UP = dynamic(76); @Since("1.2.0.0-PN") public static final int DATA_FLAG_TRADE_INTEREST = dynamic(77); @Since("1.2.0.0-PN") public static final int DATA_FLAG_DOOR_BREAKER = dynamic(78); @Since("1.2.0.0-PN") public static final int DATA_FLAG_BREAKING_OBSTRUCTION = dynamic(79); @@ -334,8 +334,8 @@ public abstract class Entity extends Location implements Metadatable { @Since("1.3.0.0-PN") public static final int DATA_FLAG_CELEBRATING_SPECIAL = dynamic(94); @Since("1.4.0.0-PN") public static final int DATA_FLAG_RAM_ATTACK = dynamic(96); @Since("1.5.0.0-PN") public static final int DATA_FLAG_PLAYING_DEAD = dynamic(97); - @Since("FUTURE") public static final int DATA_FLAG_IN_ASCENDABLE_BLOCK = dynamic(98); - @Since("FUTURE") public static final int DATA_FLAG_OVER_DESCENDABLE_BLOCK = dynamic(99); + @Since("1.6.0.0-PN") public static final int DATA_FLAG_IN_ASCENDABLE_BLOCK = dynamic(98); + @Since("1.6.0.0-PN") public static final int DATA_FLAG_OVER_DESCENDABLE_BLOCK = dynamic(99); public static final int DATA_FLAG_CROAKING = 100; public static final int DATA_FLAG_EAT_MOB = 101; @@ -386,12 +386,12 @@ public abstract class Entity extends Location implements Metadatable { public double lastMotionZ; public double lastPitch; - @Since("FUTURE") public double lastYaw; - @Since("FUTURE") public double lastHeadYaw; + @Since("1.6.0.0-PN") public double lastYaw; + @Since("1.6.0.0-PN") public double lastHeadYaw; public double pitchDelta; - @Since("FUTURE") public double yawDelta; - @Since("FUTURE") public double headYawDelta; + @Since("1.6.0.0-PN") public double yawDelta; + @Since("1.6.0.0-PN") public double headYawDelta; public double entityCollisionReduction = 0; // Higher than 0.9 will result a fast collisions public AxisAlignedBB boundingBox; @@ -2484,7 +2484,7 @@ public boolean setPositionAndRotation(Vector3 pos, double yaw, double pitch) { return false; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public boolean setPositionAndRotation(Vector3 pos, double yaw, double pitch, double headYaw) { if (this.setPosition(pos)) { this.setRotation(yaw, pitch, headYaw); @@ -2500,7 +2500,7 @@ public void setRotation(double yaw, double pitch) { this.scheduleUpdate(); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public void setRotation(double yaw, double pitch, double headYaw) { this.yaw = yaw; this.pitch = pitch; diff --git a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java index 53e1c68f07a..dca7f1b9c65 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFishingHook.java @@ -311,7 +311,7 @@ public void onCollideWithEntity(Entity entity) { } } - @Since("FUTURE") + @Since("1.6.0.0-PN") public void checkLure() { if (rod != null) { Enchantment ench = rod.getEnchantment(Enchantment.ID_LURE); @@ -321,7 +321,7 @@ public void checkLure() { } } - @Since("FUTURE") + @Since("1.6.0.0-PN") public void setTarget(long eid) { this.setDataProperty(new LongEntityData(DATA_TARGET_EID, eid)); this.canCollide = eid == 0; diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index b170e406e6e..bbad2aa473a 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -29,9 +29,9 @@ public abstract class EntityProjectile extends Entity { public static final int DATA_SHOOTER_ID = 17; - @Since("FUTURE") public static final int PICKUP_NONE = 0; - @Since("FUTURE") public static final int PICKUP_ANY = 1; - @Since("FUTURE") public static final int PICKUP_CREATIVE = 2; + @Since("1.6.0.0-PN") public static final int PICKUP_NONE = 0; + @Since("1.6.0.0-PN") public static final int PICKUP_ANY = 1; + @Since("1.6.0.0-PN") public static final int PICKUP_CREATIVE = 2; public Entity shootingEntity; @@ -55,7 +55,7 @@ protected double getBaseDamage() { public boolean closeOnCollide; @Deprecated - @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Redundant and unused", replaceWith = "getDamage()") + @DeprecationDetails(since = "1.6.0.0-PN", by = "PowerNukkit", reason = "Redundant and unused", replaceWith = "getDamage()") protected double damage; public EntityProjectile(FullChunk chunk, CompoundTag nbt) { @@ -296,7 +296,7 @@ protected void addHitEffect() { @Since("1.4.0.0-PN") @Deprecated @DeprecationDetails( - by = "PowerNukkit", since = "FUTURE", reason = "Bad method name", replaceWith = "getHasAge", + by = "PowerNukkit", since = "1.6.0.0-PN", reason = "Bad method name", replaceWith = "getHasAge", toBeRemovedAt = "1.7.0.0-PN") public boolean hasAge() { return getHasAge(); @@ -306,7 +306,7 @@ public boolean hasAge() { @Since("1.4.0.0-PN") @Deprecated @DeprecationDetails( - by = "PowerNukkit", since = "FUTURE", reason = "Bad method name", replaceWith = "setHasAge", + by = "PowerNukkit", since = "1.6.0.0-PN", reason = "Bad method name", replaceWith = "setHasAge", toBeRemovedAt = "1.7.0.0-PN") public void setAge(boolean hasAge) { setHasAge(hasAge); diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java index c3d6a89cdb7..f53b09fea28 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityThrownTrident.java @@ -77,8 +77,8 @@ public class EntityThrownTrident extends EntityProjectile { private static final BlockVector3 defaultStuckToBlockPos = new BlockVector3(0, 0, 0); - @Since("FUTURE") protected int pickupMode; - @Since("FUTURE") public boolean alreadyCollided; + @Since("1.6.0.0-PN") protected int pickupMode; + @Since("1.6.0.0-PN") public boolean alreadyCollided; @Override public int getNetworkId() { @@ -361,12 +361,12 @@ public Entity create(Object type, Position source, Object... args) { return Entity.createEntity(type.toString(), chunk, nbt, args); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public int getPickupMode() { return this.pickupMode; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public void setPickupMode(int pickupMode) { this.pickupMode = pickupMode; } @@ -436,7 +436,7 @@ public boolean isCreative() { @PowerNukkitOnly @Since("1.4.0.0-PN") @Deprecated - @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", replaceWith = "setPickupMode(EntityProjectile.PICKUP_)", + @DeprecationDetails(since = "1.6.0.0-PN", by = "PowerNukkit", replaceWith = "setPickupMode(EntityProjectile.PICKUP_)", reason = "Nukkit added this API in 3-states, NONE, ANY, and CREATIVE") public void setCreative(boolean isCreative) { if (isCreative) { diff --git a/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java b/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java index 8f71ddde73a..6278dc5b29f 100644 --- a/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java +++ b/src/main/java/cn/nukkit/event/block/AnvilDamageEvent.java @@ -53,7 +53,7 @@ public AnvilDamageEvent(@Nonnull Block block, @Nonnull Block newState, @Nullable } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") public AnvilDamageEvent(@Nonnull Block block, @Nonnull BlockState newState, @Nullable Player player, @Nullable CraftingTransaction transaction, @Nonnull DamageCause cause) { super(Preconditions.checkNotNull(block, "block").clone()); this.oldState = block.getCurrentState(); @@ -78,7 +78,7 @@ public DamageCause getDamageCause() { } @Deprecated - @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Unstable use of raw block state data", replaceWith = "getOldAnvilDamage or getOldBlockState") + @DeprecationDetails(since = "1.6.0.0-PN", by = "PowerNukkit", reason = "Unstable use of raw block state data", replaceWith = "getOldAnvilDamage or getOldBlockState") @Since("1.4.0.0-PN") public int getOldDamage() { if (!block.getProperties().contains(BlockAnvil.DAMAGE)) { @@ -88,7 +88,7 @@ public int getOldDamage() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nullable public AnvilDamage getOldAnvilDamage() { if (oldState.getProperties().contains(BlockAnvil.DAMAGE)) { @@ -98,14 +98,14 @@ public AnvilDamage getOldAnvilDamage() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nonnull public BlockState getOldBlockState() { return oldState; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nonnull public BlockState getNewBlockState() { return newState; @@ -119,7 +119,7 @@ public Block getNewState() { } @Deprecated - @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Unstable use of raw block state data", replaceWith = "getNewAnvilDamage or getNewBlockState") + @DeprecationDetails(since = "1.6.0.0-PN", by = "PowerNukkit", reason = "Unstable use of raw block state data", replaceWith = "getNewAnvilDamage or getNewBlockState") @Since("1.4.0.0-PN") public int getNewDamage() { BlockState newBlockState = getNewBlockState(); @@ -127,13 +127,13 @@ public int getNewDamage() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") public void setNewBlockState(@Nonnull BlockState state) { this.newState = Preconditions.checkNotNull(state); } @Deprecated - @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = "Unstable use of raw block state data", + @DeprecationDetails(since = "1.6.0.0-PN", by = "PowerNukkit", reason = "Unstable use of raw block state data", replaceWith = "setNewBlockState example: setNewBlockState(BlockState.of(BlockID.ANVIL).withProperty(BlockAnvil.DAMAGE, AnvilDamage.VERY_DAMAGED))") @Since("1.4.0.0-PN") public void setNewDamage(int newDamage) { @@ -144,12 +144,12 @@ public void setNewDamage(int newDamage) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") public void setNewState(@Nonnull Block block) { this.newState = block.getCurrentState(); } - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nonnull public DamageCause getCause() { return this.cause; diff --git a/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java b/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java index 087fc048f29..0fd4f467b3d 100644 --- a/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java +++ b/src/main/java/cn/nukkit/event/entity/EntityDamageByEntityEvent.java @@ -41,7 +41,7 @@ public EntityDamageByEntityEvent(@Nonnull Entity damager, @Nonnull Entity entity this(damager, entity, cause, modifiers, knockBack, null); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public EntityDamageByEntityEvent(@Nonnull Entity damager, @Nonnull Entity entity, @Nonnull DamageCause cause, @Nonnull Map modifiers, float knockBack, @Nullable Enchantment[] enchantments) { super(entity, cause, modifiers); if (enchantments != null) { @@ -81,7 +81,7 @@ public void setKnockBack(float knockBack) { this.knockBack = knockBack; } - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nullable public Enchantment[] getWeaponEnchantments() { if (enchantments == null) { diff --git a/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java b/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java index 740b8381e29..1cf88ed25a4 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/CraftingTransaction.java @@ -32,10 +32,10 @@ public class CraftingTransaction extends InventoryTransaction { protected Item primaryOutput; @Deprecated - @DeprecationDetails(since = "FUTURE", reason = "When the recipe is not a CraftingRecipe, this is set to null instead of the recipe", + @DeprecationDetails(since = "1.6.0.0-PN", reason = "When the recipe is not a CraftingRecipe, this is set to null instead of the recipe", by = "PowerNukkit", replaceWith = "getTransactionRecipe()") @Nullable - @Since("FUTURE") + @Since("1.6.0.0-PN") protected CraftingRecipe recipe; private Recipe transactionRecipe; @@ -105,22 +105,22 @@ public void setPrimaryOutput(Item item) { } @Deprecated - @DeprecationDetails(since = "FUTURE", reason = "When the recipe is not a CraftingRecipe, returns null instead of the recipe", + @DeprecationDetails(since = "1.6.0.0-PN", reason = "When the recipe is not a CraftingRecipe, returns null instead of the recipe", by = "PowerNukkit", replaceWith = "getTransactionRecipe()") - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nullable public CraftingRecipe getRecipe() { return recipe; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") public Recipe getTransactionRecipe() { return transactionRecipe; } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") protected void setTransactionRecipe(Recipe recipe) { this.transactionRecipe = recipe; this.recipe = (recipe instanceof CraftingRecipe)? (CraftingRecipe) recipe: null; diff --git a/src/main/java/cn/nukkit/inventory/transaction/action/NoOpIventoryAction.java b/src/main/java/cn/nukkit/inventory/transaction/action/NoOpIventoryAction.java index 8cfbec6bf28..632734b66b0 100644 --- a/src/main/java/cn/nukkit/inventory/transaction/action/NoOpIventoryAction.java +++ b/src/main/java/cn/nukkit/inventory/transaction/action/NoOpIventoryAction.java @@ -10,10 +10,10 @@ * @since 2021-12-11 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") public abstract class NoOpIventoryAction extends InventoryAction { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") protected NoOpIventoryAction(Item sourceItem, Item targetItem) { super(sourceItem, targetItem); } diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index 6669b86df1a..b6af8542441 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -1629,7 +1629,7 @@ public Item clone() { } } - @Since("FUTURE") + @Since("1.6.0.0-PN") public final RuntimeEntry getRuntimeEntry() { //TODO Implement throw new UnsupportedOperationException(); diff --git a/src/main/java/cn/nukkit/item/ItemArrow.java b/src/main/java/cn/nukkit/item/ItemArrow.java index d754e7c9f18..8f6cdc5a32b 100644 --- a/src/main/java/cn/nukkit/item/ItemArrow.java +++ b/src/main/java/cn/nukkit/item/ItemArrow.java @@ -57,7 +57,7 @@ private void updateName() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nullable public Potion getTippedArrowPotion() { final int damage = getDamage(); diff --git a/src/main/java/cn/nukkit/item/ItemBanner.java b/src/main/java/cn/nukkit/item/ItemBanner.java index 57f3f45511d..fcef40eb8f8 100644 --- a/src/main/java/cn/nukkit/item/ItemBanner.java +++ b/src/main/java/cn/nukkit/item/ItemBanner.java @@ -55,7 +55,7 @@ public void setBaseColor(@Nonnull DyeColor color) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nonnull public DyeColor getBaseDyeColor() { return Objects.requireNonNull(DyeColor.getByDyeData(getBaseColor())); diff --git a/src/main/java/cn/nukkit/item/ItemBannerPattern.java b/src/main/java/cn/nukkit/item/ItemBannerPattern.java index fc16930aae3..2b85d1a6bb2 100644 --- a/src/main/java/cn/nukkit/item/ItemBannerPattern.java +++ b/src/main/java/cn/nukkit/item/ItemBannerPattern.java @@ -25,7 +25,7 @@ public class ItemBannerPattern extends Item { public static final int PATTERN_BORDURE_INDENTED = 5; @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") public static final int PATTERN_SNOUT = 6; public ItemBannerPattern() { diff --git a/src/main/java/cn/nukkit/item/ItemFireworkStar.java b/src/main/java/cn/nukkit/item/ItemFireworkStar.java index b7d45608b6f..dbcf0e27f6f 100644 --- a/src/main/java/cn/nukkit/item/ItemFireworkStar.java +++ b/src/main/java/cn/nukkit/item/ItemFireworkStar.java @@ -2,20 +2,20 @@ import cn.nukkit.api.Since; -@Since("FUTURE") +@Since("1.6.0.0-PN") public class ItemFireworkStar extends Item { - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemFireworkStar() { this(0, 1); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemFireworkStar(Integer meta) { this(meta, 1); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemFireworkStar(Integer meta, int count) { super(FIREWORKSCHARGE, meta, count, "Firework Star"); } diff --git a/src/main/java/cn/nukkit/item/ItemHeartOfTheSea.java b/src/main/java/cn/nukkit/item/ItemHeartOfTheSea.java index db2cce2f88f..cfe5eb2094b 100644 --- a/src/main/java/cn/nukkit/item/ItemHeartOfTheSea.java +++ b/src/main/java/cn/nukkit/item/ItemHeartOfTheSea.java @@ -2,20 +2,20 @@ import cn.nukkit.api.Since; -@Since("FUTURE") +@Since("1.6.0.0-PN") public class ItemHeartOfTheSea extends Item { - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemHeartOfTheSea() { this(0, 1); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemHeartOfTheSea(Integer meta) { this(meta, 1); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemHeartOfTheSea(Integer meta, int count) { super(HEART_OF_THE_SEA, meta, count, "Heart Of The Sea"); } diff --git a/src/main/java/cn/nukkit/item/ItemID.java b/src/main/java/cn/nukkit/item/ItemID.java index 3cb91ffebec..5e8ca65a1c6 100644 --- a/src/main/java/cn/nukkit/item/ItemID.java +++ b/src/main/java/cn/nukkit/item/ItemID.java @@ -287,7 +287,7 @@ public interface ItemID { @Since("1.4.0.0-PN") int RECORD_PIGSTEP = 759; @Since("1.4.0.0-PN") @PowerNukkitOnly int NETHER_SPROUTS = 760; - @Since("FUTURE") int SPYGLASS = 772; + @Since("1.6.0.0-PN") int SPYGLASS = 772; @Since("1.4.0.0-PN") @PowerNukkitOnly int SOUL_CAMPFIRE = 801; diff --git a/src/main/java/cn/nukkit/item/ItemNautilusShell.java b/src/main/java/cn/nukkit/item/ItemNautilusShell.java index 0af9e2dd198..98efdf35042 100644 --- a/src/main/java/cn/nukkit/item/ItemNautilusShell.java +++ b/src/main/java/cn/nukkit/item/ItemNautilusShell.java @@ -2,20 +2,20 @@ import cn.nukkit.api.Since; -@Since("FUTURE") +@Since("1.6.0.0-PN") public class ItemNautilusShell extends Item { - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemNautilusShell() { this(0, 1); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemNautilusShell(Integer meta) { this(meta, 1); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemNautilusShell(Integer meta, int count) { super(NAUTILUS_SHELL, meta, count, "Nautilus Shell"); } diff --git a/src/main/java/cn/nukkit/item/ItemPhantomMembrane.java b/src/main/java/cn/nukkit/item/ItemPhantomMembrane.java index acb89d99246..8b72b2137c5 100644 --- a/src/main/java/cn/nukkit/item/ItemPhantomMembrane.java +++ b/src/main/java/cn/nukkit/item/ItemPhantomMembrane.java @@ -2,20 +2,20 @@ import cn.nukkit.api.Since; -@Since("FUTURE") +@Since("1.6.0.0-PN") public class ItemPhantomMembrane extends Item { - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemPhantomMembrane() { this(0, 1); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemPhantomMembrane(Integer meta) { this(meta, 1); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemPhantomMembrane(Integer meta, int count) { super(PHANTOM_MEMBRANE, meta, count, "Phantom Membrane"); } diff --git a/src/main/java/cn/nukkit/item/ItemPotion.java b/src/main/java/cn/nukkit/item/ItemPotion.java index 30d87d790cc..95e431e143c 100644 --- a/src/main/java/cn/nukkit/item/ItemPotion.java +++ b/src/main/java/cn/nukkit/item/ItemPotion.java @@ -151,7 +151,7 @@ public boolean onUse(Player player, int ticksUsed) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nullable public Potion getPotion() { return getPotion(getDamage()); diff --git a/src/main/java/cn/nukkit/item/ItemPotionSplash.java b/src/main/java/cn/nukkit/item/ItemPotionSplash.java index 7bfe8ded2e0..454ab04eb7c 100644 --- a/src/main/java/cn/nukkit/item/ItemPotionSplash.java +++ b/src/main/java/cn/nukkit/item/ItemPotionSplash.java @@ -12,7 +12,7 @@ public class ItemPotionSplash extends ProjectileItem { @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemPotionSplash() { this(0, 1); } diff --git a/src/main/java/cn/nukkit/item/ItemScute.java b/src/main/java/cn/nukkit/item/ItemScute.java index 227f865bf1e..10c8ee4a964 100644 --- a/src/main/java/cn/nukkit/item/ItemScute.java +++ b/src/main/java/cn/nukkit/item/ItemScute.java @@ -2,20 +2,20 @@ import cn.nukkit.api.Since; -@Since("FUTURE") +@Since("1.6.0.0-PN") public class ItemScute extends Item { - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemScute() { this(0, 1); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemScute(Integer meta) { this(meta, 1); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemScute(Integer meta, int count) { super(SCUTE, meta, count, "Scute"); } diff --git a/src/main/java/cn/nukkit/item/ItemSpawnEgg.java b/src/main/java/cn/nukkit/item/ItemSpawnEgg.java index 5173f1fc95d..e0c6e4ceb32 100644 --- a/src/main/java/cn/nukkit/item/ItemSpawnEgg.java +++ b/src/main/java/cn/nukkit/item/ItemSpawnEgg.java @@ -49,7 +49,7 @@ public void setDamage(Integer meta) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") protected void updateName() { String entityName = getEntityName(); if (entityName == null) { @@ -121,7 +121,7 @@ public int getEntityNetworkId() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nullable public String getEntityName() { String saveId = Entity.getSaveId(getEntityNetworkId()); diff --git a/src/main/java/cn/nukkit/item/ItemSpyglass.java b/src/main/java/cn/nukkit/item/ItemSpyglass.java index 7b500867816..dcaf61fc08b 100644 --- a/src/main/java/cn/nukkit/item/ItemSpyglass.java +++ b/src/main/java/cn/nukkit/item/ItemSpyglass.java @@ -5,20 +5,20 @@ /** * @author LT_Name */ -@Since("FUTURE") +@Since("1.6.0.0-PN") public class ItemSpyglass extends Item { - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemSpyglass() { this(0, 1); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemSpyglass(Integer meta) { this(meta, 1); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public ItemSpyglass(Integer meta, int count) { super(SPYGLASS, meta, count, "Spyglass"); } diff --git a/src/main/java/cn/nukkit/item/ItemTool.java b/src/main/java/cn/nukkit/item/ItemTool.java index 5b8a0059833..84af777983e 100644 --- a/src/main/java/cn/nukkit/item/ItemTool.java +++ b/src/main/java/cn/nukkit/item/ItemTool.java @@ -51,9 +51,9 @@ public abstract class ItemTool extends Item implements ItemDurable { public static final int DURABILITY_TRIDENT = dynamic(251); public static final int DURABILITY_FISHING_ROD = dynamic(384); @Since("1.4.0.0-PN") public static final int DURABILITY_CROSSBOW = dynamic(464); - @Since("FUTURE") public static final int DURABILITY_CARROT_ON_A_STICK = dynamic(26); - @Since("FUTURE") public static final int DURABILITY_WARPED_FUNGUS_ON_A_STICK = dynamic(101); - @Since("FUTURE") @PowerNukkitOnly public static final int DURABILITY_SHIELD = dynamic(337); + @Since("1.6.0.0-PN") public static final int DURABILITY_CARROT_ON_A_STICK = dynamic(26); + @Since("1.6.0.0-PN") public static final int DURABILITY_WARPED_FUNGUS_ON_A_STICK = dynamic(101); + @Since("1.6.0.0-PN") @PowerNukkitOnly public static final int DURABILITY_SHIELD = dynamic(337); @PowerNukkitOnly @Since("1.4.0.0-PN") @@ -221,7 +221,7 @@ public int getEnchantAbility() { * No damage to item when it's used to attack entities * @return whether the item should take damage when used to attack entities */ - @Since("FUTURE") + @Since("1.6.0.0-PN") public boolean noDamageOnAttack() { return false; } @@ -230,7 +230,7 @@ public boolean noDamageOnAttack() { * No damage to item when it's used to break blocks * @return whether the item should take damage when used to break blocks */ - @Since("FUTURE") + @Since("1.6.0.0-PN") public boolean noDamageOnBreak() { return false; } diff --git a/src/main/java/cn/nukkit/item/MinecraftItemID.java b/src/main/java/cn/nukkit/item/MinecraftItemID.java index 15db78264dc..1d2e9a2b5a1 100644 --- a/src/main/java/cn/nukkit/item/MinecraftItemID.java +++ b/src/main/java/cn/nukkit/item/MinecraftItemID.java @@ -954,7 +954,7 @@ public enum MinecraftItemID { @PowerNukkitOnly @Since("1.4.0.0-PN") LIGHT_GRAY_DYE, @PowerNukkitOnly @Since("1.4.0.0-PN") CHARCOAL, @PowerNukkitOnly @Since("1.4.0.0-PN") AGENT_SPAWN_EGG(false, false, true), - @PowerNukkitOnly @Since("FUTURE") SPYGLASS + @PowerNukkitOnly @Since("1.6.0.0-PN") SPYGLASS ; private static final Map namespacedIdMap = Arrays.stream(values()) .flatMap(id-> diff --git a/src/main/java/cn/nukkit/item/RuntimeItemMapping.java b/src/main/java/cn/nukkit/item/RuntimeItemMapping.java index defe00e9421..bc0a30fc3a2 100644 --- a/src/main/java/cn/nukkit/item/RuntimeItemMapping.java +++ b/src/main/java/cn/nukkit/item/RuntimeItemMapping.java @@ -163,9 +163,9 @@ public Item getItemByNamespaceId(@Nonnull String namespaceId, int amount) { } @Data - @Getter(onMethod = @__(@Since("FUTURE"))) - @RequiredArgsConstructor(onConstructor = @__(@Since("FUTURE"))) - @Since("FUTURE") + @Getter(onMethod = @__(@Since("1.6.0.0-PN"))) + @RequiredArgsConstructor(onConstructor = @__(@Since("1.6.0.0-PN"))) + @Since("1.6.0.0-PN") public static class LegacyEntry { private final int legacyId; private final boolean hasDamage; @@ -177,9 +177,9 @@ public int getDamage() { } @Data - @Getter(onMethod = @__(@Since("FUTURE"))) - @RequiredArgsConstructor(onConstructor = @__(@Since("FUTURE"))) - @Since("FUTURE") + @Getter(onMethod = @__(@Since("1.6.0.0-PN"))) + @RequiredArgsConstructor(onConstructor = @__(@Since("1.6.0.0-PN"))) + @Since("1.6.0.0-PN") public static class RuntimeEntry { private final String identifier; private final int runtimeId; diff --git a/src/main/java/cn/nukkit/item/enchantment/Enchantment.java b/src/main/java/cn/nukkit/item/enchantment/Enchantment.java index 0337197a404..c7e1025da35 100644 --- a/src/main/java/cn/nukkit/item/enchantment/Enchantment.java +++ b/src/main/java/cn/nukkit/item/enchantment/Enchantment.java @@ -369,7 +369,7 @@ public void doPostAttack(Entity attacker, Entity entity) { } - @Since("FUTURE") + @Since("1.6.0.0-PN") public void doAttack(Entity attacker, Entity entity) { } diff --git a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java index eb6314ebd80..3174733ff60 100644 --- a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java +++ b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffect.java @@ -27,7 +27,7 @@ default void doPostAttack(@Nonnull Entity entity, @Nonnull EntityDamageEvent sou } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nonnull SideEffect cloneSideEffect(); } diff --git a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java index b88931604b5..5a32ecc6304 100644 --- a/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java +++ b/src/main/java/cn/nukkit/item/enchantment/sideeffect/SideEffectCombust.java @@ -48,7 +48,7 @@ public void setDuration(int duration) { } @Deprecated - @DeprecationDetails(since = "FUTURE", reason = "clone have problems when defined in an interface", by = "PowerNukkit", + @DeprecationDetails(since = "1.6.0.0-PN", reason = "clone have problems when defined in an interface", by = "PowerNukkit", replaceWith = "cloneSideEffect") @Since("1.5.1.0-PN") @SneakyThrows @@ -58,7 +58,7 @@ public SideEffect clone() { return (SideEffect) super.clone(); } - @Since("FUTURE") + @Since("1.6.0.0-PN") @PowerNukkitOnly @SneakyThrows @Override diff --git a/src/main/java/cn/nukkit/item/randomitem/Fishing.java b/src/main/java/cn/nukkit/item/randomitem/Fishing.java index e0c50d75eba..10f7b4e3d72 100644 --- a/src/main/java/cn/nukkit/item/randomitem/Fishing.java +++ b/src/main/java/cn/nukkit/item/randomitem/Fishing.java @@ -27,10 +27,10 @@ public final class Fishing { public static final Selector PUFFERFISH = putSelector(new ConstantItemSelector(ItemID.PUFFERFISH, FISHES), 0.13F); public static final Selector TREASURE_BOW = putSelector(new ConstantItemSelector(ItemID.BOW, TREASURES), 0.1667F); public static final Selector TREASURE_ENCHANTED_BOOK = putSelector(new ConstantItemSelector(ItemID.ENCHANTED_BOOK, TREASURES), 0.1667F); - @Since("FUTURE") public static final Selector TREASURE_FISHING_ROD = putSelector(new ConstantItemSelector(ItemID.FISHING_ROD, TREASURES), 0.1667F); - @Since("FUTURE") public static final Selector TREASURE_NAME_TAG = putSelector(new ConstantItemSelector(ItemID.NAME_TAG, TREASURES), 0.1667F); - @Since("FUTURE") public static final Selector TREASURE_SADDLE = putSelector(new ConstantItemSelector(ItemID.SADDLE, TREASURES), 0.1667F); - @Since("FUTURE") public static final Selector TREASURE_NAUTILUS_SHELL = putSelector(new ConstantItemSelector(ItemID.NAUTILUS_SHELL, TREASURES), 0.1667F); + @Since("1.6.0.0-PN") public static final Selector TREASURE_FISHING_ROD = putSelector(new ConstantItemSelector(ItemID.FISHING_ROD, TREASURES), 0.1667F); + @Since("1.6.0.0-PN") public static final Selector TREASURE_NAME_TAG = putSelector(new ConstantItemSelector(ItemID.NAME_TAG, TREASURES), 0.1667F); + @Since("1.6.0.0-PN") public static final Selector TREASURE_SADDLE = putSelector(new ConstantItemSelector(ItemID.SADDLE, TREASURES), 0.1667F); + @Since("1.6.0.0-PN") public static final Selector TREASURE_NAUTILUS_SHELL = putSelector(new ConstantItemSelector(ItemID.NAUTILUS_SHELL, TREASURES), 0.1667F); public static final Selector JUNK_BOWL = putSelector(new ConstantItemSelector(ItemID.BOWL, JUNKS), 0.12F); public static final Selector JUNK_FISHING_ROD = putSelector(new ConstantItemSelector(ItemID.FISHING_ROD, JUNKS), 0.024F); public static final Selector JUNK_LEATHER = putSelector(new ConstantItemSelector(ItemID.LEATHER, JUNKS), 0.12F); diff --git a/src/main/java/cn/nukkit/level/DimensionData.java b/src/main/java/cn/nukkit/level/DimensionData.java index 1e424dd5395..e000acf37d9 100644 --- a/src/main/java/cn/nukkit/level/DimensionData.java +++ b/src/main/java/cn/nukkit/level/DimensionData.java @@ -4,19 +4,19 @@ import lombok.Data; import lombok.Getter; -@Since("FUTURE") +@Since("1.6.0.0-PN") @Data public class DimensionData { - @Getter(onMethod = @__(@Since("FUTURE"))) + @Getter(onMethod = @__(@Since("1.6.0.0-PN"))) private final int dimensionId; - @Getter(onMethod = @__(@Since("FUTURE"))) + @Getter(onMethod = @__(@Since("1.6.0.0-PN"))) private final int minHeight; - @Getter(onMethod = @__(@Since("FUTURE"))) + @Getter(onMethod = @__(@Since("1.6.0.0-PN"))) private final int maxHeight; - @Getter(onMethod = @__(@Since("FUTURE"))) + @Getter(onMethod = @__(@Since("1.6.0.0-PN"))) private final int height; - @Since("FUTURE") + @Since("1.6.0.0-PN") public DimensionData(int dimensionId, int minHeight, int maxHeight) { this.dimensionId = dimensionId; this.minHeight = minHeight; diff --git a/src/main/java/cn/nukkit/level/DimensionEnum.java b/src/main/java/cn/nukkit/level/DimensionEnum.java index 6fa923fd4d8..f5f2ef8afb4 100644 --- a/src/main/java/cn/nukkit/level/DimensionEnum.java +++ b/src/main/java/cn/nukkit/level/DimensionEnum.java @@ -2,15 +2,15 @@ import cn.nukkit.api.Since; -@Since("FUTURE") +@Since("1.6.0.0-PN") public enum DimensionEnum { - @Since("FUTURE") + @Since("1.6.0.0-PN") OVERWORLD(new DimensionData(Level.DIMENSION_OVERWORLD, -64, 319)), - @Since("FUTURE") + @Since("1.6.0.0-PN") NETHER(new DimensionData(Level.DIMENSION_NETHER, 0, 127)), - @Since("FUTURE") + @Since("1.6.0.0-PN") END(new DimensionData(Level.DIMENSION_THE_END, 0, 255)); private final DimensionData dimensionData; @@ -19,12 +19,12 @@ public enum DimensionEnum { this.dimensionData = dimensionData; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public DimensionData getDimensionData() { return this.dimensionData; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public static DimensionData getDataFromId(int dimension) { for (DimensionEnum value : values()) { if (value.getDimensionData().getDimensionId() == dimension) { diff --git a/src/main/java/cn/nukkit/level/GlobalBlockPalette.java b/src/main/java/cn/nukkit/level/GlobalBlockPalette.java index 61bc3f4650d..4e675f89a2c 100644 --- a/src/main/java/cn/nukkit/level/GlobalBlockPalette.java +++ b/src/main/java/cn/nukkit/level/GlobalBlockPalette.java @@ -35,7 +35,7 @@ public static String getName(int blockId) { return BlockStateRegistry.getPersistenceName(blockId); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public static int getLegacyFullId(int runtimeId) { //TODO Implement throw new UnsupportedOperationException(); diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 7c22c95029a..754e4ee624e 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -3900,7 +3900,7 @@ public void sendWeather(Collection players) { this.sendWeather(players.toArray(Player.EMPTY_ARRAY)); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public DimensionData getDimensionData() { return this.dimensionData; } diff --git a/src/main/java/cn/nukkit/level/Location.java b/src/main/java/cn/nukkit/level/Location.java index b431fa178ec..6b7ef3a87cd 100644 --- a/src/main/java/cn/nukkit/level/Location.java +++ b/src/main/java/cn/nukkit/level/Location.java @@ -14,7 +14,7 @@ public class Location extends Position { public double yaw; public double pitch; - @Since("FUTURE") public double headYaw; + @Since("1.6.0.0-PN") public double headYaw; public Location() { this(0); @@ -48,12 +48,12 @@ public Location(double x, double y, double z, double yaw, double pitch, Level le this(x, y, z, yaw, pitch, 0, level); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public Location(double x, double y, double z, double yaw, double pitch, double headYaw) { this(x, y, z, yaw, pitch, headYaw, null); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public Location(double x, double y, double z, double yaw, double pitch, double headYaw, Level level) { this.x = x; this.y = y; @@ -80,7 +80,7 @@ public static Location fromObject(Vector3 pos, Level level, double yaw, double p return new Location(pos.x, pos.y, pos.z, yaw, pitch, (level == null) ? ((pos instanceof Position) ? ((Position) pos).level : null) : level); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public static Location fromObject(Vector3 pos, Level level, double yaw, double pitch, double headYaw) { if (level == null && pos instanceof Position) { level = ((Position) pos).level; @@ -96,7 +96,7 @@ public double getPitch() { return this.pitch; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public double getHeadYaw() { return this.headYaw; } diff --git a/src/main/java/cn/nukkit/level/ParticleEffect.java b/src/main/java/cn/nukkit/level/ParticleEffect.java index f72cb0bb375..dfdabca9cf7 100644 --- a/src/main/java/cn/nukkit/level/ParticleEffect.java +++ b/src/main/java/cn/nukkit/level/ParticleEffect.java @@ -23,7 +23,7 @@ public enum ParticleEffect { CAMERA_SHOOT_EXPLOSION("minecraft:camera_shoot_explosion"), CAMPFIRE_SMOKE("minecraft:campfire_smoke_particle"), CAMPFIRE_SMOKE_TALL("minecraft:campfire_tall_smoke_particle"), - @Since("FUTURE") CANDLE_FLAME("minecraft:candle_flame_particle"), + @Since("1.6.0.0-PN") CANDLE_FLAME("minecraft:candle_flame_particle"), CAULDRONSPELL("minecraft:cauldron_spell_emitter"), CAULDRON_BUBBLE("minecraft:cauldron_bubble_particle"), CAULDRON_SPLASH("minecraft:cauldron_splash_particle"), @@ -33,7 +33,7 @@ public enum ParticleEffect { CONDUIT_ATTACK("minecraft:conduit_attack_emitter"), CRITICAL_HIT("minecraft:critical_hit_emitter"), @Since("1.3.0.0-PN") CROP_GROWTH("minecraft:crop_growth_emitter"), - @Since("FUTURE") CROP_GROWTH_AREA("minecraft:crop_growth_area_emitter"), + @Since("1.6.0.0-PN") CROP_GROWTH_AREA("minecraft:crop_growth_area_emitter"), DOLPHIN_MOVE("minecraft:dolphin_move_particle"), DRAGON_BREATH_FIRE("minecraft:dragon_breath_fire"), DRAGON_BREATH_LINGERING("minecraft:dragon_breath_lingering"), @@ -41,9 +41,9 @@ public enum ParticleEffect { DRAGON_DEATH_EXPLOSION("minecraft:dragon_death_explosion_emitter"), DRAGON_DESTROY_BLOCK("minecraft:dragon_destroy_block"), DRAGON_DYING_EXPLOSION("minecraft:dragon_dying_explosion"), - @Since("FUTURE") DRIPSTONE_LAVA_DRIP("minecraft:stalactite_lava_drip_particle"), - @Since("FUTURE") DRIPSTONE_WATER_DRIP("minecraft:stalactite_water_drip_particle"), - @Since("FUTURE") ELECTRIC_SPARK("minecraft:electric_spark_particle"), + @Since("1.6.0.0-PN") DRIPSTONE_LAVA_DRIP("minecraft:stalactite_lava_drip_particle"), + @Since("1.6.0.0-PN") DRIPSTONE_WATER_DRIP("minecraft:stalactite_water_drip_particle"), + @Since("1.6.0.0-PN") ELECTRIC_SPARK("minecraft:electric_spark_particle"), ENCHANTING_TABLE_PARTICLE("minecraft:enchanting_table_particle"), ENDROD("minecraft:endrod"), END_CHEST("minecraft:end_chest"), @@ -69,7 +69,7 @@ public enum ParticleEffect { FALLING_DUST_TOP_SNOW("minecraft:falling_dust_top_snow_particle"), FISH_HOOK("minecraft:fish_hook_particle"), FISH_POS("minecraft:fish_pos_particle"), - @Since("FUTURE") GLOW("minecraft:glow_particle"), + @Since("1.6.0.0-PN") GLOW("minecraft:glow_particle"), GUARDIAN_ATTACK("minecraft:guardian_attack_particle"), GUARDIAN_WATER_MOVE("minecraft:guardian_water_move_particle"), HEART("minecraft:heart_particle"), @@ -109,13 +109,13 @@ public enum ParticleEffect { RISING_BORDER_DUST("minecraft:rising_border_dust_particle"), SHULKER_BULLET("minecraft:shulker_bullet"), SILVERFISH_GRIEF("minecraft:silverfish_grief_emitter"), - @Since("FUTURE") SNOWFLAKE("minecraft:snowflake_particle"), + @Since("1.6.0.0-PN") SNOWFLAKE("minecraft:snowflake_particle"), @Since("1.3.0.0-PN") SOUL("minecraft:soul_particle"), SPARKLER("minecraft:sparkler_emitter"), SPLASHPOTIONSPELL("minecraft:splash_spell_emitter"), SPONGE_ABSORB_BUBBLE("minecraft:sponge_absorb_water_particle"), - @Since("FUTURE") SPORE_BLOSSOM_AMBIENT_BLOCK_ACTOR("minecraft:spore_blossom_ambient_particle"), - @Since("FUTURE") SPORE_BLOSSOM_SHOWER("minecraft:spore_blossom_shower_particle"), + @Since("1.6.0.0-PN") SPORE_BLOSSOM_AMBIENT_BLOCK_ACTOR("minecraft:spore_blossom_ambient_particle"), + @Since("1.6.0.0-PN") SPORE_BLOSSOM_SHOWER("minecraft:spore_blossom_shower_particle"), SQUID_FLEE("minecraft:squid_flee_particle"), SQUID_INK_BUBBLE("minecraft:squid_ink_bubble"), SQUID_MOVE("minecraft:squid_move_particle"), @@ -132,7 +132,7 @@ public enum ParticleEffect { WATER_SPASH_MANUAL("minecraft:water_splash_particle_manual"), WATER_SPLASH("minecraft:water_splash_particle"), WATER_WAKE("minecraft:water_wake_particle"), - @Since("FUTURE") WAX("minecraft:wax_particle"), + @Since("1.6.0.0-PN") WAX("minecraft:wax_particle"), WITHER_BOSS_INVULNERABLE("minecraft:wither_boss_invulnerable"); private final String identifier; diff --git a/src/main/java/cn/nukkit/level/Sound.java b/src/main/java/cn/nukkit/level/Sound.java index 4b2247888c7..a5ba990e452 100644 --- a/src/main/java/cn/nukkit/level/Sound.java +++ b/src/main/java/cn/nukkit/level/Sound.java @@ -9,7 +9,7 @@ public enum Sound { @Since("1.4.0.0-PN") AMBIENT_BASALT_DELTAS_ADDITIONS("ambient.basalt_deltas.additions"), @Since("1.4.0.0-PN") AMBIENT_BASALT_DELTAS_LOOP("ambient.basalt_deltas.loop"), AMBIENT_BASALT_DELTAS_MOOD("ambient.basalt_deltas.mood"), - @Since("FUTURE") AMBIENT_CANDLE("ambient.candle"), + @Since("1.6.0.0-PN") AMBIENT_CANDLE("ambient.candle"), AMBIENT_CAVE("ambient.cave"), @Since("1.4.0.0-PN") AMBIENT_CRIMSON_FOREST_ADDITIONS("ambient.crimson_forest.additions"), @Since("1.4.0.0-PN") AMBIENT_CRIMSON_FOREST_LOOP("ambient.crimson_forest.loop"), @@ -53,12 +53,12 @@ public enum Sound { BLOCK_BEEHIVE_WORK("block.beehive.work"), BLOCK_BELL_HIT("block.bell.hit"), BLOCK_BLASTFURNACE_FIRE_CRACKLE("block.blastfurnace.fire_crackle"), - @Since("FUTURE") BLOCK_BOWHIT("block.bowhit"), + @Since("1.6.0.0-PN") BLOCK_BOWHIT("block.bowhit"), BLOCK_CAMPFIRE_CRACKLE("block.campfire.crackle"), BLOCK_CARTOGRAPHY_TABLE_USE("block.cartography_table.use"), BLOCK_CHORUSFLOWER_DEATH("block.chorusflower.death"), BLOCK_CHORUSFLOWER_GROW("block.chorusflower.grow"), - @Since("FUTURE") BLOCK_CLICK("block.click"), + @Since("1.6.0.0-PN") BLOCK_CLICK("block.click"), BLOCK_COMPOSTER_EMPTY("block.composter.empty"), BLOCK_COMPOSTER_FILL("block.composter.fill"), BLOCK_COMPOSTER_FILL_SUCCESS("block.composter.fill_success"), @@ -95,20 +95,20 @@ public enum Sound { BLOCK_TURTLE_EGG_CRACK("block.turtle_egg.crack"), BLOCK_TURTLE_EGG_DROP("block.turtle_egg.drop"), BOTTLE_DRAGONBREATH("bottle.dragonbreath"), - @Since("FUTURE") BREAK_AMETHYST_BLOCK("break.amethyst_block"), - @Since("FUTURE") BREAK_AMETHYST_CLUSTER("break.amethyst_cluster"), - @Since("FUTURE") BREAK_AZALEA("break.azalea"), - @Since("FUTURE") BREAK_BIG_DRIPLEAF("break.big_dripleaf"), - @Since("FUTURE") BREAK_CALCITE("break.calcite"), - @Since("FUTURE") BREAK_DIRT_WITH_ROOTS("break.dirt_with_roots"), - @Since("FUTURE") BREAK_DRIPSTONE_BLOCK("break.dripstone_block"), - @Since("FUTURE") BREAK_HANGING_ROOTS("break.hanging_roots"), - @Since("FUTURE") BREAK_LARGE_AMETHYST_BUD("break.large_amethyst_bud"), - @Since("FUTURE") BREAK_MEDIUM_AMETHYST_BUD("break.medium_amethyst_bud"), - @Since("FUTURE") BREAK_POINTED_DRIPSTONE("break.pointed_dripstone"), - @Since("FUTURE") BREAK_SMALL_AMETHYST_BUD("break.small_amethyst_bud"), - @Since("FUTURE") BREAK_SPORE_BLOSSOM("break.spore_blossom"), - @Since("FUTURE") BREAK_TUFF("break.tuff"), + @Since("1.6.0.0-PN") BREAK_AMETHYST_BLOCK("break.amethyst_block"), + @Since("1.6.0.0-PN") BREAK_AMETHYST_CLUSTER("break.amethyst_cluster"), + @Since("1.6.0.0-PN") BREAK_AZALEA("break.azalea"), + @Since("1.6.0.0-PN") BREAK_BIG_DRIPLEAF("break.big_dripleaf"), + @Since("1.6.0.0-PN") BREAK_CALCITE("break.calcite"), + @Since("1.6.0.0-PN") BREAK_DIRT_WITH_ROOTS("break.dirt_with_roots"), + @Since("1.6.0.0-PN") BREAK_DRIPSTONE_BLOCK("break.dripstone_block"), + @Since("1.6.0.0-PN") BREAK_HANGING_ROOTS("break.hanging_roots"), + @Since("1.6.0.0-PN") BREAK_LARGE_AMETHYST_BUD("break.large_amethyst_bud"), + @Since("1.6.0.0-PN") BREAK_MEDIUM_AMETHYST_BUD("break.medium_amethyst_bud"), + @Since("1.6.0.0-PN") BREAK_POINTED_DRIPSTONE("break.pointed_dripstone"), + @Since("1.6.0.0-PN") BREAK_SMALL_AMETHYST_BUD("break.small_amethyst_bud"), + @Since("1.6.0.0-PN") BREAK_SPORE_BLOSSOM("break.spore_blossom"), + @Since("1.6.0.0-PN") BREAK_TUFF("break.tuff"), BUBBLE_DOWN("bubble.down"), BUBBLE_DOWNINSIDE("bubble.downinside"), BUBBLE_POP("bubble.pop"), @@ -116,13 +116,13 @@ public enum Sound { BUBBLE_UPINSIDE("bubble.upinside"), BUCKET_EMPTY_FISH("bucket.empty_fish"), BUCKET_EMPTY_LAVA("bucket.empty_lava"), - @Since("FUTURE") BUCKET_EMPTY_POWDER_SNOW("bucket.empty_powder_snow"), + @Since("1.6.0.0-PN") BUCKET_EMPTY_POWDER_SNOW("bucket.empty_powder_snow"), BUCKET_EMPTY_WATER("bucket.empty_water"), BUCKET_FILL_FISH("bucket.fill_fish"), BUCKET_FILL_LAVA("bucket.fill_lava"), - @Since("FUTURE") BUCKET_FILL_POWDER_SNOW("bucket.fill_powder_snow"), + @Since("1.6.0.0-PN") BUCKET_FILL_POWDER_SNOW("bucket.fill_powder_snow"), BUCKET_FILL_WATER("bucket.fill_water"), - @Since("FUTURE") CAKE_ADD_CANDLE("cake.add_candle"), + @Since("1.6.0.0-PN") CAKE_ADD_CANDLE("cake.add_candle"), CAMERA_TAKE_PICTURE("camera.take_picture"), CAULDRON_ADDDYE("cauldron.adddye"), CAULDRON_CLEANARMOR("cauldron.cleanarmor"), @@ -133,17 +133,17 @@ public enum Sound { CAULDRON_FILLWATER("cauldron.fillwater"), CAULDRON_TAKEPOTION("cauldron.takepotion"), CAULDRON_TAKEWATER("cauldron.takewater"), - @Since("FUTURE") CAULDRON_DRIP_LAVA_POINTED_DRIPSTONE("cauldron_drip.lava.pointed_dripstone"), - @Since("FUTURE") CAULDRON_DRIP_WATER_POINTED_DRIPSTONE("cauldron_drip.water.pointed_dripstone"), - @Since("FUTURE") CHIME_AMETHYST_BLOCK("chime.amethyst_block"), - @Since("FUTURE") COMPONENT_JUMP_TO_BLOCK("component.jump_to_block"), + @Since("1.6.0.0-PN") CAULDRON_DRIP_LAVA_POINTED_DRIPSTONE("cauldron_drip.lava.pointed_dripstone"), + @Since("1.6.0.0-PN") CAULDRON_DRIP_WATER_POINTED_DRIPSTONE("cauldron_drip.water.pointed_dripstone"), + @Since("1.6.0.0-PN") CHIME_AMETHYST_BLOCK("chime.amethyst_block"), + @Since("1.6.0.0-PN") COMPONENT_JUMP_TO_BLOCK("component.jump_to_block"), CONDUIT_ACTIVATE("conduit.activate"), CONDUIT_AMBIENT("conduit.ambient"), CONDUIT_ATTACK("conduit.attack"), CONDUIT_DEACTIVATE("conduit.deactivate"), CONDUIT_SHORT("conduit.short"), - @Since("FUTURE") COPPER_WAX_OFF("copper.wax.off"), - @Since("FUTURE") COPPER_WAX_ON("copper.wax.on"), + @Since("1.6.0.0-PN") COPPER_WAX_OFF("copper.wax.off"), + @Since("1.6.0.0-PN") COPPER_WAX_ON("copper.wax.on"), CROSSBOW_LOADING_END("crossbow.loading.end"), CROSSBOW_LOADING_MIDDLE("crossbow.loading.middle"), CROSSBOW_LOADING_START("crossbow.loading.start"), @@ -154,23 +154,23 @@ public enum Sound { DAMAGE_FALLBIG("damage.fallbig"), DAMAGE_FALLSMALL("damage.fallsmall"), DIG_ANCIENT_DEBRIS("dig.ancient_debris"), - @Since("FUTURE") DIG_AZALEA_LEAVES("dig.azalea_leaves"), + @Since("1.6.0.0-PN") DIG_AZALEA_LEAVES("dig.azalea_leaves"), DIG_BASALT("dig.basalt"), DIG_BONE_BLOCK("dig.bone_block"), - @Since("FUTURE") DIG_CANDLE("dig.candle"), - @Since("FUTURE") DIG_CAVE_VINES("dig.cave_vines"), + @Since("1.6.0.0-PN") DIG_CANDLE("dig.candle"), + @Since("1.6.0.0-PN") DIG_CAVE_VINES("dig.cave_vines"), DIG_CHAIN("dig.chain"), DIG_CLOTH("dig.cloth"), - @Since("FUTURE") DIG_COPPER("dig.copper"), + @Since("1.6.0.0-PN") DIG_COPPER("dig.copper"), DIG_CORAL("dig.coral"), - @Since("FUTURE") DIG_DEEPSLATE("dig.deepslate"), - @Since("FUTURE") DIG_DEEPSLATE_BRICKS("dig.deepslate_bricks"), + @Since("1.6.0.0-PN") DIG_DEEPSLATE("dig.deepslate"), + @Since("1.6.0.0-PN") DIG_DEEPSLATE_BRICKS("dig.deepslate_bricks"), DIG_FUNGUS("dig.fungus"), DIG_GRASS("dig.grass"), DIG_GRAVEL("dig.gravel"), DIG_HONEY_BLOCK("dig.honey_block"), DIG_LODESTONE("dig.lodestone"), - @Since("FUTURE") DIG_MOSS("dig.moss"), + @Since("1.6.0.0-PN") DIG_MOSS("dig.moss"), DIG_NETHER_BRICK("dig.nether_brick"), DIG_NETHER_GOLD_ORE("dig.nether_gold_ore"), DIG_NETHER_SPROUTS("dig.nether_sprouts"), @@ -178,7 +178,7 @@ public enum Sound { DIG_NETHERITE("dig.netherite"), DIG_NETHERRACK("dig.netherrack"), DIG_NYLIUM("dig.nylium"), - @Since("FUTURE") DIG_POWDER_SNOW("dig.powder_snow"), + @Since("1.6.0.0-PN") DIG_POWDER_SNOW("dig.powder_snow"), DIG_ROOTS("dig.roots"), DIG_SAND("dig.sand"), DIG_SHROOMLIGHT("dig.shroomlight"), @@ -189,36 +189,36 @@ public enum Sound { DIG_STONE("dig.stone"), DIG_VINES("dig.vines"), DIG_WOOD("dig.wood"), - @Since("FUTURE") DRIP_LAVA_POINTED_DRIPSTONE("drip.lava.pointed_dripstone"), - @Since("FUTURE") DRIP_WATER_POINTED_DRIPSTONE("drip.water.pointed_dripstone"), + @Since("1.6.0.0-PN") DRIP_LAVA_POINTED_DRIPSTONE("drip.lava.pointed_dripstone"), + @Since("1.6.0.0-PN") DRIP_WATER_POINTED_DRIPSTONE("drip.water.pointed_dripstone"), ELYTRA_LOOP("elytra.loop"), ENTITY_ZOMBIE_CONVERTED_TO_DROWNED("entity.zombie.converted_to_drowned"), - @Since("FUTURE") EXTINGUISH_CANDLE("extinguish.candle"), - @Since("FUTURE") FALL_AMETHYST_BLOCK("fall.amethyst_block"), - @Since("FUTURE") FALL_AMETHYST_CLUSTER("fall.amethyst_cluster"), + @Since("1.6.0.0-PN") EXTINGUISH_CANDLE("extinguish.candle"), + @Since("1.6.0.0-PN") FALL_AMETHYST_BLOCK("fall.amethyst_block"), + @Since("1.6.0.0-PN") FALL_AMETHYST_CLUSTER("fall.amethyst_cluster"), FALL_ANCIENT_DEBRIS("fall.ancient_debris"), - @Since("FUTURE") FALL_AZALEA("fall.azalea"), - @Since("FUTURE") FALL_AZALEA_LEAVES("fall.azalea_leaves"), + @Since("1.6.0.0-PN") FALL_AZALEA("fall.azalea"), + @Since("1.6.0.0-PN") FALL_AZALEA_LEAVES("fall.azalea_leaves"), FALL_BASALT("fall.basalt"), - @Since("FUTURE") FALL_BIG_DRIPLEAF("fall.big_dripleaf"), + @Since("1.6.0.0-PN") FALL_BIG_DRIPLEAF("fall.big_dripleaf"), FALL_BONE_BLOCK("fall.bone_block"), - @Since("FUTURE") FALL_CALCITE("fall.calcite"), - @Since("FUTURE") FALL_CAVE_VINES("fall.cave_vines"), + @Since("1.6.0.0-PN") FALL_CALCITE("fall.calcite"), + @Since("1.6.0.0-PN") FALL_CAVE_VINES("fall.cave_vines"), FALL_CHAIN("fall.chain"), FALL_CLOTH("fall.cloth"), - @Since("FUTURE") FALL_COPPER("fall.copper"), + @Since("1.6.0.0-PN") FALL_COPPER("fall.copper"), FALL_CORAL("fall.coral"), - @Since("FUTURE") FALL_DEEPSLATE("fall.deepslate"), - @Since("FUTURE") FALL_DEEPSLATE_BRICKS("fall.deepslate_bricks"), - @Since("FUTURE") FALL_DIRT_WITH_ROOTS("fall.dirt_with_roots"), - @Since("FUTURE") FALL_DRIPSTONE_BLOCK("fall.dripstone_block"), + @Since("1.6.0.0-PN") FALL_DEEPSLATE("fall.deepslate"), + @Since("1.6.0.0-PN") FALL_DEEPSLATE_BRICKS("fall.deepslate_bricks"), + @Since("1.6.0.0-PN") FALL_DIRT_WITH_ROOTS("fall.dirt_with_roots"), + @Since("1.6.0.0-PN") FALL_DRIPSTONE_BLOCK("fall.dripstone_block"), FALL_EGG("fall.egg"), FALL_GRASS("fall.grass"), FALL_GRAVEL("fall.gravel"), - @Since("FUTURE") FALL_HANGING_ROOTS("fall.hanging_roots"), + @Since("1.6.0.0-PN") FALL_HANGING_ROOTS("fall.hanging_roots"), FALL_HONEY_BLOCK("fall.honey_block"), FALL_LADDER("fall.ladder"), - @Since("FUTURE") FALL_MOSS("fall.moss"), + @Since("1.6.0.0-PN") FALL_MOSS("fall.moss"), FALL_NETHER_BRICK("fall.nether_brick"), FALL_NETHER_GOLD_ORE("fall.nether_gold_ore"), FALL_NETHER_SPROUTS("fall.nether_sprouts"), @@ -226,8 +226,8 @@ public enum Sound { FALL_NETHERITE("fall.netherite"), FALL_NETHERRACK("fall.netherrack"), FALL_NYLIUM("fall.nylium"), - @Since("FUTURE") FALL_POINTED_DRIPSTONE("fall.pointed_dripstone"), - @Since("FUTURE") FALL_POWDER_SNOW("fall.powder_snow"), + @Since("1.6.0.0-PN") FALL_POINTED_DRIPSTONE("fall.pointed_dripstone"), + @Since("1.6.0.0-PN") FALL_POWDER_SNOW("fall.powder_snow"), FALL_ROOTS("fall.roots"), FALL_SAND("fall.sand"), FALL_SHROOMLIGHT("fall.shroomlight"), @@ -235,10 +235,10 @@ public enum Sound { FALL_SNOW("fall.snow"), FALL_SOUL_SAND("fall.soul_sand"), FALL_SOUL_SOIL("fall.soul_soil"), - @Since("FUTURE") FALL_SPORE_BLOSSOM("fall.spore_blossom"), + @Since("1.6.0.0-PN") FALL_SPORE_BLOSSOM("fall.spore_blossom"), FALL_STEM("fall.stem"), FALL_STONE("fall.stone"), - @Since("FUTURE") FALL_TUFF("fall.tuff"), + @Since("1.6.0.0-PN") FALL_TUFF("fall.tuff"), FALL_VINES("fall.vines"), FALL_WOOD("fall.wood"), FIRE_FIRE("fire.fire"), @@ -252,32 +252,32 @@ public enum Sound { GAME_PLAYER_ATTACK_STRONG("game.player.attack.strong"), GAME_PLAYER_DIE("game.player.die"), GAME_PLAYER_HURT("game.player.hurt"), - @Since("FUTURE") HIT_AMETHYST_BLOCK("hit.amethyst_block"), - @Since("FUTURE") HIT_AMETHYST_CLUSTER("hit.amethyst_cluster"), + @Since("1.6.0.0-PN") HIT_AMETHYST_BLOCK("hit.amethyst_block"), + @Since("1.6.0.0-PN") HIT_AMETHYST_CLUSTER("hit.amethyst_cluster"), HIT_ANCIENT_DEBRIS("hit.ancient_debris"), HIT_ANVIL("hit.anvil"), - @Since("FUTURE") HIT_AZALEA("hit.azalea"), - @Since("FUTURE") HIT_AZALEA_LEAVES("hit.azalea_leaves"), + @Since("1.6.0.0-PN") HIT_AZALEA("hit.azalea"), + @Since("1.6.0.0-PN") HIT_AZALEA_LEAVES("hit.azalea_leaves"), HIT_BASALT("hit.basalt"), - @Since("FUTURE") HIT_BIG_DRIPLEAF("hit.big_dripleaf"), + @Since("1.6.0.0-PN") HIT_BIG_DRIPLEAF("hit.big_dripleaf"), HIT_BONE_BLOCK("hit.bone_block"), - @Since("FUTURE") HIT_CALCITE("hit.calcite"), - @Since("FUTURE") HIT_CANDLE("hit.candle"), - @Since("FUTURE") HIT_CAVE_VINES("hit.cave_vines"), + @Since("1.6.0.0-PN") HIT_CALCITE("hit.calcite"), + @Since("1.6.0.0-PN") HIT_CANDLE("hit.candle"), + @Since("1.6.0.0-PN") HIT_CAVE_VINES("hit.cave_vines"), HIT_CHAIN("hit.chain"), HIT_CLOTH("hit.cloth"), - @Since("FUTURE") HIT_COPPER("hit.copper"), + @Since("1.6.0.0-PN") HIT_COPPER("hit.copper"), HIT_CORAL("hit.coral"), - @Since("FUTURE") HIT_DEEPSLATE("hit.deepslate"), - @Since("FUTURE") HIT_DEEPSLATE_BRICKS("hit.deepslate_bricks"), - @Since("FUTURE") HIT_DIRT_WITH_ROOTS("hit.dirt_with_roots"), - @Since("FUTURE") HIT_DRIPSTONE_BLOCK("hit.dripstone_block"), + @Since("1.6.0.0-PN") HIT_DEEPSLATE("hit.deepslate"), + @Since("1.6.0.0-PN") HIT_DEEPSLATE_BRICKS("hit.deepslate_bricks"), + @Since("1.6.0.0-PN") HIT_DIRT_WITH_ROOTS("hit.dirt_with_roots"), + @Since("1.6.0.0-PN") HIT_DRIPSTONE_BLOCK("hit.dripstone_block"), HIT_GRASS("hit.grass"), HIT_GRAVEL("hit.gravel"), - @Since("FUTURE") HIT_HANGING_ROOTS("hit.hanging_roots"), + @Since("1.6.0.0-PN") HIT_HANGING_ROOTS("hit.hanging_roots"), HIT_HONEY_BLOCK("hit.honey_block"), HIT_LADDER("hit.ladder"), - @Since("FUTURE") HIT_MOSS("hit.moss"), + @Since("1.6.0.0-PN") HIT_MOSS("hit.moss"), HIT_NETHER_BRICK("hit.nether_brick"), HIT_NETHER_GOLD_ORE("hit.nether_gold_ore"), HIT_NETHER_SPROUTS("hit.nether_sprouts"), @@ -285,8 +285,8 @@ public enum Sound { HIT_NETHERITE("hit.netherite"), HIT_NETHERRACK("hit.netherrack"), HIT_NYLIUM("hit.nylium"), - @Since("FUTURE") HIT_POINTED_DRIPSTONE("hit.pointed_dripstone"), - @Since("FUTURE") HIT_POWDER_SNOW("hit.powder_snow"), + @Since("1.6.0.0-PN") HIT_POINTED_DRIPSTONE("hit.pointed_dripstone"), + @Since("1.6.0.0-PN") HIT_POWDER_SNOW("hit.powder_snow"), HIT_ROOTS("hit.roots"), HIT_SAND("hit.sand"), HIT_SHROOMLIGHT("hit.shroomlight"), @@ -294,18 +294,18 @@ public enum Sound { HIT_SNOW("hit.snow"), HIT_SOUL_SAND("hit.soul_sand"), HIT_SOUL_SOIL("hit.soul_soil"), - @Since("FUTURE") HIT_SPORE_BLOSSOM("hit.spore_blossom"), + @Since("1.6.0.0-PN") HIT_SPORE_BLOSSOM("hit.spore_blossom"), HIT_STEM("hit.stem"), HIT_STONE("hit.stone"), - @Since("FUTURE") HIT_TUFF("hit.tuff"), + @Since("1.6.0.0-PN") HIT_TUFF("hit.tuff"), HIT_VINES("hit.vines"), HIT_WOOD("hit.wood"), - @Since("FUTURE") ITEM_BONE_MEAL_USE("item.bone_meal.use"), + @Since("1.6.0.0-PN") ITEM_BONE_MEAL_USE("item.bone_meal.use"), ITEM_BOOK_PAGE_TURN("item.book.page_turn"), ITEM_BOOK_PUT("item.book.put"), ITEM_SHIELD_BLOCK("item.shield.block"), - @Since("FUTURE") ITEM_SPYGLASS_STOP_USING("item.spyglass.stop_using"), - @Since("FUTURE") ITEM_SPYGLASS_USE("item.spyglass.use"), + @Since("1.6.0.0-PN") ITEM_SPYGLASS_STOP_USING("item.spyglass.stop_using"), + @Since("1.6.0.0-PN") ITEM_SPYGLASS_USE("item.spyglass.use"), ITEM_TRIDENT_HIT("item.trident.hit"), ITEM_TRIDENT_HIT_GROUND("item.trident.hit_ground"), ITEM_TRIDENT_RETURN("item.trident.return"), @@ -315,23 +315,23 @@ public enum Sound { ITEM_TRIDENT_THROW("item.trident.throw"), ITEM_TRIDENT_THUNDER("item.trident.thunder"), JUMP_ANCIENT_DEBRIS("jump.ancient_debris"), - @Since("FUTURE") JUMP_AZALEA("jump.azalea"), + @Since("1.6.0.0-PN") JUMP_AZALEA("jump.azalea"), JUMP_BASALT("jump.basalt"), - @Since("FUTURE") JUMP_BIG_DRIPLEAF("jump.big_dripleaf"), + @Since("1.6.0.0-PN") JUMP_BIG_DRIPLEAF("jump.big_dripleaf"), JUMP_BONE_BLOCK("jump.bone_block"), - @Since("FUTURE") JUMP_CAVE_VINES("jump.cave_vines"), + @Since("1.6.0.0-PN") JUMP_CAVE_VINES("jump.cave_vines"), JUMP_CHAIN("jump.chain"), JUMP_CLOTH("jump.cloth"), JUMP_CORAL("jump.coral"), - @Since("FUTURE") JUMP_DEEPSLATE("jump.deepslate"), - @Since("FUTURE") JUMP_DEEPSLATE_BRICKS("jump.deepslate_bricks"), - @Since("FUTURE") JUMP_DIRT_WITH_ROOTS("jump.dirt_with_roots"), - @Since("FUTURE") JUMP_DRIPSTONE_BLOCK("jump.dripstone_block"), + @Since("1.6.0.0-PN") JUMP_DEEPSLATE("jump.deepslate"), + @Since("1.6.0.0-PN") JUMP_DEEPSLATE_BRICKS("jump.deepslate_bricks"), + @Since("1.6.0.0-PN") JUMP_DIRT_WITH_ROOTS("jump.dirt_with_roots"), + @Since("1.6.0.0-PN") JUMP_DRIPSTONE_BLOCK("jump.dripstone_block"), JUMP_GRASS("jump.grass"), JUMP_GRAVEL("jump.gravel"), - @Since("FUTURE") JUMP_HANGING_ROOTS("jump.hanging_roots"), + @Since("1.6.0.0-PN") JUMP_HANGING_ROOTS("jump.hanging_roots"), JUMP_HONEY_BLOCK("jump.honey_block"), - @Since("FUTURE") JUMP_MOSS("jump.moss"), + @Since("1.6.0.0-PN") JUMP_MOSS("jump.moss"), JUMP_NETHER_BRICK("jump.nether_brick"), JUMP_NETHER_GOLD_ORE("jump.nether_gold_ore"), JUMP_NETHER_SPROUTS("jump.nether_sprouts"), @@ -339,7 +339,7 @@ public enum Sound { JUMP_NETHERITE("jump.netherite"), JUMP_NETHERRACK("jump.netherrack"), JUMP_NYLIUM("jump.nylium"), - @Since("FUTURE") JUMP_POINTED_DRIPSTONE("jump.pointed_dripstone"), + @Since("1.6.0.0-PN") JUMP_POINTED_DRIPSTONE("jump.pointed_dripstone"), JUMP_ROOTS("jump.roots"), JUMP_SAND("jump.sand"), JUMP_SHROOMLIGHT("jump.shroomlight"), @@ -347,29 +347,29 @@ public enum Sound { JUMP_SNOW("jump.snow"), JUMP_SOUL_SAND("jump.soul_sand"), JUMP_SOUL_SOIL("jump.soul_soil"), - @Since("FUTURE") JUMP_SPORE_BLOSSOM("jump.spore_blossom"), + @Since("1.6.0.0-PN") JUMP_SPORE_BLOSSOM("jump.spore_blossom"), JUMP_STEM("jump.stem"), JUMP_STONE("jump.stone"), JUMP_VINES("jump.vines"), JUMP_WOOD("jump.wood"), LAND_ANCIENT_DEBRIS("land.ancient_debris"), - @Since("FUTURE") LAND_AZALEA("land.azalea"), + @Since("1.6.0.0-PN") LAND_AZALEA("land.azalea"), LAND_BASALT("land.basalt"), - @Since("FUTURE") LAND_BIG_DRIPLEAF("land.big_dripleaf"), + @Since("1.6.0.0-PN") LAND_BIG_DRIPLEAF("land.big_dripleaf"), LAND_BONE_BLOCK("land.bone_block"), - @Since("FUTURE") LAND_CAVE_VINES("land.cave_vines"), + @Since("1.6.0.0-PN") LAND_CAVE_VINES("land.cave_vines"), LAND_CHAIN("land.chain"), LAND_CLOTH("land.cloth"), LAND_CORAL("land.coral"), - @Since("FUTURE") LAND_DEEPSLATE("land.deepslate"), - @Since("FUTURE") LAND_DEEPSLATE_BRICKS("land.deepslate_bricks"), - @Since("FUTURE") LAND_DIRT_WITH_ROOTS("land.dirt_with_roots"), - @Since("FUTURE") LAND_DRIPSTONE_BLOCK("land.dripstone_block"), + @Since("1.6.0.0-PN") LAND_DEEPSLATE("land.deepslate"), + @Since("1.6.0.0-PN") LAND_DEEPSLATE_BRICKS("land.deepslate_bricks"), + @Since("1.6.0.0-PN") LAND_DIRT_WITH_ROOTS("land.dirt_with_roots"), + @Since("1.6.0.0-PN") LAND_DRIPSTONE_BLOCK("land.dripstone_block"), LAND_GRASS("land.grass"), LAND_GRAVEL("land.gravel"), - @Since("FUTURE") LAND_HANGING_ROOTS("land.hanging_roots"), + @Since("1.6.0.0-PN") LAND_HANGING_ROOTS("land.hanging_roots"), LAND_HONEY_BLOCK("land.honey_block"), - @Since("FUTURE") LAND_MOSS("land.moss"), + @Since("1.6.0.0-PN") LAND_MOSS("land.moss"), LAND_NETHER_BRICK("land.nether_brick"), LAND_NETHER_GOLD_ORE("land.nether_gold_ore"), LAND_NETHER_SPROUTS("land.nether_sprouts"), @@ -377,7 +377,7 @@ public enum Sound { LAND_NETHERITE("land.netherite"), LAND_NETHERRACK("land.netherrack"), LAND_NYLIUM("land.nylium"), - @Since("FUTURE") LAND_POINTED_DRIPSTONE("land.pointed_dripstone"), + @Since("1.6.0.0-PN") LAND_POINTED_DRIPSTONE("land.pointed_dripstone"), LAND_ROOTS("land.roots"), LAND_SAND("land.sand"), LAND_SHROOMLIGHT("land.shroomlight"), @@ -385,7 +385,7 @@ public enum Sound { LAND_SNOW("land.snow"), LAND_SOUL_SAND("land.soul_sand"), LAND_SOUL_SOIL("land.soul_soil"), - @Since("FUTURE") LAND_SPORE_BLOSSOM("land.spore_blossom"), + @Since("1.6.0.0-PN") LAND_SPORE_BLOSSOM("land.spore_blossom"), LAND_STEM("land.stem"), LAND_STONE("land.stone"), LAND_VINES("land.vines"), @@ -403,13 +403,13 @@ public enum Sound { MOB_ARMOR_STAND_HIT("mob.armor_stand.hit"), MOB_ARMOR_STAND_LAND("mob.armor_stand.land"), MOB_ARMOR_STAND_PLACE("mob.armor_stand.place"), - @Since("FUTURE") MOB_AXOLOTL_ATTACK("mob.axolotl.attack"), - @Since("FUTURE") MOB_AXOLOTL_DEATH("mob.axolotl.death"), - @Since("FUTURE") MOB_AXOLOTL_HURT("mob.axolotl.hurt"), - @Since("FUTURE") MOB_AXOLOTL_IDLE("mob.axolotl.idle"), - @Since("FUTURE") MOB_AXOLOTL_IDLE_WATER("mob.axolotl.idle_water"), - @Since("FUTURE") MOB_AXOLOTL_SPLASH("mob.axolotl.splash"), - @Since("FUTURE") MOB_AXOLOTL_SWIM("mob.axolotl.swim"), + @Since("1.6.0.0-PN") MOB_AXOLOTL_ATTACK("mob.axolotl.attack"), + @Since("1.6.0.0-PN") MOB_AXOLOTL_DEATH("mob.axolotl.death"), + @Since("1.6.0.0-PN") MOB_AXOLOTL_HURT("mob.axolotl.hurt"), + @Since("1.6.0.0-PN") MOB_AXOLOTL_IDLE("mob.axolotl.idle"), + @Since("1.6.0.0-PN") MOB_AXOLOTL_IDLE_WATER("mob.axolotl.idle_water"), + @Since("1.6.0.0-PN") MOB_AXOLOTL_SPLASH("mob.axolotl.splash"), + @Since("1.6.0.0-PN") MOB_AXOLOTL_SWIM("mob.axolotl.swim"), MOB_BAT_DEATH("mob.bat.death"), MOB_BAT_HURT("mob.bat.hurt"), MOB_BAT_IDLE("mob.bat.idle"), @@ -508,23 +508,23 @@ public enum Sound { MOB_GHAST_FIREBALL("mob.ghast.fireball"), MOB_GHAST_MOAN("mob.ghast.moan"), MOB_GHAST_SCREAM("mob.ghast.scream"), - @Since("FUTURE") MOB_GLOW_SQUID_AMBIENT("mob.glow_squid.ambient"), - @Since("FUTURE") MOB_GLOW_SQUID_DEATH("mob.glow_squid.death"), - @Since("FUTURE") MOB_GLOW_SQUID_HURT("mob.glow_squid.hurt"), - @Since("FUTURE") MOB_GLOW_SQUID_INK_SQUIRT("mob.glow_squid.ink_squirt"), - @Since("FUTURE") MOB_GOAT_AMBIENT("mob.goat.ambient"), - @Since("FUTURE") MOB_GOAT_AMBIENT_SCREAMER("mob.goat.ambient.screamer"), - @Since("FUTURE") MOB_GOAT_DEATH("mob.goat.death"), - @Since("FUTURE") MOB_GOAT_DEATH_SCREAMER("mob.goat.death.screamer"), - @Since("FUTURE") MOB_GOAT_EAT("mob.goat.eat"), - @Since("FUTURE") MOB_GOAT_HURT("mob.goat.hurt"), - @Since("FUTURE") MOB_GOAT_HURT_SCREAMER("mob.goat.hurt.screamer"), - @Since("FUTURE") MOB_GOAT_MILK_SCREAMER("mob.goat.milk.screamer"), - @Since("FUTURE") MOB_GOAT_PREPARE_RAM("mob.goat.prepare_ram"), - @Since("FUTURE") MOB_GOAT_PREPARE_RAM_SCREAMER("mob.goat.prepare_ram.screamer"), - @Since("FUTURE") MOB_GOAT_RAM_IMPACT("mob.goat.ram_impact"), - @Since("FUTURE") MOB_GOAT_RAM_IMPACT_SCREAMER("mob.goat.ram_impact.screamer"), - @Since("FUTURE") MOB_GOAT_STEP("mob.goat.step"), + @Since("1.6.0.0-PN") MOB_GLOW_SQUID_AMBIENT("mob.glow_squid.ambient"), + @Since("1.6.0.0-PN") MOB_GLOW_SQUID_DEATH("mob.glow_squid.death"), + @Since("1.6.0.0-PN") MOB_GLOW_SQUID_HURT("mob.glow_squid.hurt"), + @Since("1.6.0.0-PN") MOB_GLOW_SQUID_INK_SQUIRT("mob.glow_squid.ink_squirt"), + @Since("1.6.0.0-PN") MOB_GOAT_AMBIENT("mob.goat.ambient"), + @Since("1.6.0.0-PN") MOB_GOAT_AMBIENT_SCREAMER("mob.goat.ambient.screamer"), + @Since("1.6.0.0-PN") MOB_GOAT_DEATH("mob.goat.death"), + @Since("1.6.0.0-PN") MOB_GOAT_DEATH_SCREAMER("mob.goat.death.screamer"), + @Since("1.6.0.0-PN") MOB_GOAT_EAT("mob.goat.eat"), + @Since("1.6.0.0-PN") MOB_GOAT_HURT("mob.goat.hurt"), + @Since("1.6.0.0-PN") MOB_GOAT_HURT_SCREAMER("mob.goat.hurt.screamer"), + @Since("1.6.0.0-PN") MOB_GOAT_MILK_SCREAMER("mob.goat.milk.screamer"), + @Since("1.6.0.0-PN") MOB_GOAT_PREPARE_RAM("mob.goat.prepare_ram"), + @Since("1.6.0.0-PN") MOB_GOAT_PREPARE_RAM_SCREAMER("mob.goat.prepare_ram.screamer"), + @Since("1.6.0.0-PN") MOB_GOAT_RAM_IMPACT("mob.goat.ram_impact"), + @Since("1.6.0.0-PN") MOB_GOAT_RAM_IMPACT_SCREAMER("mob.goat.ram_impact.screamer"), + @Since("1.6.0.0-PN") MOB_GOAT_STEP("mob.goat.step"), MOB_GUARDIAN_AMBIENT("mob.guardian.ambient"), MOB_GUARDIAN_ATTACK_LOOP("mob.guardian.attack_loop"), MOB_GUARDIAN_DEATH("mob.guardian.death"), @@ -636,9 +636,9 @@ public enum Sound { MOB_PILLAGER_DEATH("mob.pillager.death"), MOB_PILLAGER_HURT("mob.pillager.hurt"), MOB_PILLAGER_IDLE("mob.pillager.idle"), - @Since("FUTURE") MOB_PLAYER_HURT_DROWN("mob.player.hurt_drown"), - @Since("FUTURE") MOB_PLAYER_HURT_FREEZE("mob.player.hurt_freeze"), - @Since("FUTURE") MOB_PLAYER_HURT_ON_FIRE("mob.player.hurt_on_fire"), + @Since("1.6.0.0-PN") MOB_PLAYER_HURT_DROWN("mob.player.hurt_drown"), + @Since("1.6.0.0-PN") MOB_PLAYER_HURT_FREEZE("mob.player.hurt_freeze"), + @Since("1.6.0.0-PN") MOB_PLAYER_HURT_ON_FIRE("mob.player.hurt_on_fire"), MOB_POLARBEAR_DEATH("mob.polarbear.death"), MOB_POLARBEAR_HURT("mob.polarbear.hurt"), MOB_POLARBEAR_IDLE("mob.polarbear.idle"), @@ -673,7 +673,7 @@ public enum Sound { MOB_SILVERFISH_KILL("mob.silverfish.kill"), MOB_SILVERFISH_SAY("mob.silverfish.say"), MOB_SILVERFISH_STEP("mob.silverfish.step"), - @Since("FUTURE") MOB_SKELETON_CONVERT_TO_STRAY("mob.skeleton.convert_to_stray"), + @Since("1.6.0.0-PN") MOB_SKELETON_CONVERT_TO_STRAY("mob.skeleton.convert_to_stray"), MOB_SKELETON_DEATH("mob.skeleton.death"), MOB_SKELETON_HURT("mob.skeleton.hurt"), MOB_SKELETON_SAY("mob.skeleton.say"), @@ -694,7 +694,7 @@ public enum Sound { MOB_SQUID_AMBIENT("mob.squid.ambient"), MOB_SQUID_DEATH("mob.squid.death"), MOB_SQUID_HURT("mob.squid.hurt"), - @Since("FUTURE") MOB_SQUID_INK_SQUIRT("mob.squid.ink_squirt"), + @Since("1.6.0.0-PN") MOB_SQUID_INK_SQUIRT("mob.squid.ink_squirt"), MOB_STRAY_AMBIENT("mob.stray.ambient"), MOB_STRAY_DEATH("mob.stray.death"), MOB_STRAY_HURT("mob.stray.hurt"), @@ -782,25 +782,25 @@ public enum Sound { MOB_ZOMBIEPIG_ZPIGDEATH("mob.zombiepig.zpigdeath"), MOB_ZOMBIEPIG_ZPIGHURT("mob.zombiepig.zpighurt"), MUSIC_GAME("music.game"), - @Since("FUTURE") MUSIC_GAME_BASALT_DELTAS("music.game.basalt_deltas"), + @Since("1.6.0.0-PN") MUSIC_GAME_BASALT_DELTAS("music.game.basalt_deltas"), MUSIC_GAME_CREATIVE("music.game.creative"), MUSIC_GAME_CREDITS("music.game.credits"), MUSIC_GAME_CRIMSON_FOREST("music.game.crimson_forest"), - @Since("FUTURE") MUSIC_GAME_DRIPSTONE_CAVES("music.game.dripstone_caves"), + @Since("1.6.0.0-PN") MUSIC_GAME_DRIPSTONE_CAVES("music.game.dripstone_caves"), MUSIC_GAME_END("music.game.end"), MUSIC_GAME_ENDBOSS("music.game.endboss"), - @Since("FUTURE") MUSIC_GAME_FROZEN_PEAKS("music.game.frozen_peaks"), - @Since("FUTURE") MUSIC_GAME_GROVE("music.game.grove"), - @Since("FUTURE") MUSIC_GAME_JAGGED_PEAKS("music.game.jagged_peaks"), - @Since("FUTURE") MUSIC_GAME_LUSH_CAVES("music.game.lush_caves"), - @Since("FUTURE") MUSIC_GAME_MEADOW("music.game.meadow"), + @Since("1.6.0.0-PN") MUSIC_GAME_FROZEN_PEAKS("music.game.frozen_peaks"), + @Since("1.6.0.0-PN") MUSIC_GAME_GROVE("music.game.grove"), + @Since("1.6.0.0-PN") MUSIC_GAME_JAGGED_PEAKS("music.game.jagged_peaks"), + @Since("1.6.0.0-PN") MUSIC_GAME_LUSH_CAVES("music.game.lush_caves"), + @Since("1.6.0.0-PN") MUSIC_GAME_MEADOW("music.game.meadow"), MUSIC_GAME_NETHER("music.game.nether"), MUSIC_GAME_NETHER_WASTES("music.game.nether_wastes"), - @Since("FUTURE") MUSIC_GAME_SNOWY_SLOPES("music.game.snowy_slopes"), - @Since("FUTURE") MUSIC_GAME_SOUL_SAND_VALLEY("music.game.soul_sand_valley"), + @Since("1.6.0.0-PN") MUSIC_GAME_SNOWY_SLOPES("music.game.snowy_slopes"), + @Since("1.6.0.0-PN") MUSIC_GAME_SOUL_SAND_VALLEY("music.game.soul_sand_valley"), MUSIC_GAME_SOULSAND_VALLEY("music.game.soulsand_valley"), - @Since("FUTURE") MUSIC_GAME_STONY_PEAKS("music.game.stony_peaks"), - @Since("FUTURE") MUSIC_GAME_WARPED_FOREST("music.game.warped_forest"), + @Since("1.6.0.0-PN") MUSIC_GAME_STONY_PEAKS("music.game.stony_peaks"), + @Since("1.6.0.0-PN") MUSIC_GAME_WARPED_FOREST("music.game.warped_forest"), MUSIC_GAME_WATER("music.game.water"), MUSIC_MENU("music.menu"), NOTE_BANJO("note.banjo"), @@ -821,27 +821,27 @@ public enum Sound { NOTE_SNARE("note.snare"), NOTE_XYLOPHONE("note.xylophone"), PARTICLE_SOUL_ESCAPE("particle.soul_escape"), - @Since("FUTURE") PICK_BERRIES_CAVE_VINES("pick_berries.cave_vines"), - @Since("FUTURE") PLACE_AMETHYST_BLOCK("place.amethyst_block"), - @Since("FUTURE") PLACE_AMETHYST_CLUSTER("place.amethyst_cluster"), - @Since("FUTURE") PLACE_AZALEA("place.azalea"), - @Since("FUTURE") PLACE_AZALEA_LEAVES("place.azalea_leaves"), - @Since("FUTURE") PLACE_BIG_DRIPLEAF("place.big_dripleaf"), - @Since("FUTURE") PLACE_CALCITE("place.calcite"), - @Since("FUTURE") PLACE_COPPER("place.copper"), - @Since("FUTURE") PLACE_DEEPSLATE("place.deepslate"), - @Since("FUTURE") PLACE_DEEPSLATE_BRICKS("place.deepslate_bricks"), - @Since("FUTURE") PLACE_DIRT_WITH_ROOTS("place.dirt_with_roots"), - @Since("FUTURE") PLACE_DRIPSTONE_BLOCK("place.dripstone_block"), - @Since("FUTURE") PLACE_HANGING_ROOTS("place.hanging_roots"), - @Since("FUTURE") PLACE_LARGE_AMETHYST_BUD("place.large_amethyst_bud"), - @Since("FUTURE") PLACE_MEDIUM_AMETHYST_BUD("place.medium_amethyst_bud"), - @Since("FUTURE") PLACE_MOSS("place.moss"), - @Since("FUTURE") PLACE_POINTED_DRIPSTONE("place.pointed_dripstone"), - @Since("FUTURE") PLACE_POWDER_SNOW("place.powder_snow"), - @Since("FUTURE") PLACE_SMALL_AMETHYST_BUD("place.small_amethyst_bud"), - @Since("FUTURE") PLACE_SPORE_BLOSSOM("place.spore_blossom"), - @Since("FUTURE") PLACE_TUFF("place.tuff"), + @Since("1.6.0.0-PN") PICK_BERRIES_CAVE_VINES("pick_berries.cave_vines"), + @Since("1.6.0.0-PN") PLACE_AMETHYST_BLOCK("place.amethyst_block"), + @Since("1.6.0.0-PN") PLACE_AMETHYST_CLUSTER("place.amethyst_cluster"), + @Since("1.6.0.0-PN") PLACE_AZALEA("place.azalea"), + @Since("1.6.0.0-PN") PLACE_AZALEA_LEAVES("place.azalea_leaves"), + @Since("1.6.0.0-PN") PLACE_BIG_DRIPLEAF("place.big_dripleaf"), + @Since("1.6.0.0-PN") PLACE_CALCITE("place.calcite"), + @Since("1.6.0.0-PN") PLACE_COPPER("place.copper"), + @Since("1.6.0.0-PN") PLACE_DEEPSLATE("place.deepslate"), + @Since("1.6.0.0-PN") PLACE_DEEPSLATE_BRICKS("place.deepslate_bricks"), + @Since("1.6.0.0-PN") PLACE_DIRT_WITH_ROOTS("place.dirt_with_roots"), + @Since("1.6.0.0-PN") PLACE_DRIPSTONE_BLOCK("place.dripstone_block"), + @Since("1.6.0.0-PN") PLACE_HANGING_ROOTS("place.hanging_roots"), + @Since("1.6.0.0-PN") PLACE_LARGE_AMETHYST_BUD("place.large_amethyst_bud"), + @Since("1.6.0.0-PN") PLACE_MEDIUM_AMETHYST_BUD("place.medium_amethyst_bud"), + @Since("1.6.0.0-PN") PLACE_MOSS("place.moss"), + @Since("1.6.0.0-PN") PLACE_POINTED_DRIPSTONE("place.pointed_dripstone"), + @Since("1.6.0.0-PN") PLACE_POWDER_SNOW("place.powder_snow"), + @Since("1.6.0.0-PN") PLACE_SMALL_AMETHYST_BUD("place.small_amethyst_bud"), + @Since("1.6.0.0-PN") PLACE_SPORE_BLOSSOM("place.spore_blossom"), + @Since("1.6.0.0-PN") PLACE_TUFF("place.tuff"), PORTAL_PORTAL("portal.portal"), PORTAL_TRAVEL("portal.travel"), PORTAL_TRIGGER("portal.trigger"), @@ -888,7 +888,7 @@ public enum Sound { RECORD_FAR("record.far"), RECORD_MALL("record.mall"), RECORD_MELLOHI("record.mellohi"), - @Since("FUTURE") RECORD_OTHERSIDE("record.otherside"), + @Since("1.6.0.0-PN") RECORD_OTHERSIDE("record.otherside"), RECORD_PIGSTEP("record.pigstep"), RECORD_STAL("record.stal"), RECORD_STRAD("record.strad"), @@ -898,35 +898,35 @@ public enum Sound { RESPAWN_ANCHOR_CHARGE("respawn_anchor.charge"), RESPAWN_ANCHOR_DEPLETE("respawn_anchor.deplete"), RESPAWN_ANCHOR_SET_SPAWN("respawn_anchor.set_spawn"), - @Since("FUTURE") SCRAPE("scrape"), + @Since("1.6.0.0-PN") SCRAPE("scrape"), @Since("1.4.0.0-PN") SIGN_DYE_USE("sign.dye.use"), @Since("1.4.0.0-PN") SIGN_INK_SAC_USE("sign.ink_sac.use"), SMITHING_TABLE_USE("smithing_table.use"), - @Since("FUTURE") STEP_AMETHYST_BLOCK("step.amethyst_block"), - @Since("FUTURE") STEP_AMETHYST_CLUSTER("step.amethyst_cluster"), + @Since("1.6.0.0-PN") STEP_AMETHYST_BLOCK("step.amethyst_block"), + @Since("1.6.0.0-PN") STEP_AMETHYST_CLUSTER("step.amethyst_cluster"), STEP_ANCIENT_DEBRIS("step.ancient_debris"), - @Since("FUTURE") STEP_AZALEA("step.azalea"), - @Since("FUTURE") STEP_AZALEA_LEAVES("step.azalea_leaves"), + @Since("1.6.0.0-PN") STEP_AZALEA("step.azalea"), + @Since("1.6.0.0-PN") STEP_AZALEA_LEAVES("step.azalea_leaves"), STEP_BASALT("step.basalt"), - @Since("FUTURE") STEP_BIG_DRIPLEAF("step.big_dripleaf"), + @Since("1.6.0.0-PN") STEP_BIG_DRIPLEAF("step.big_dripleaf"), STEP_BONE_BLOCK("step.bone_block"), - @Since("FUTURE") STEP_CALCITE("step.calcite"), - @Since("FUTURE") STEP_CANDLE("step.candle"), - @Since("FUTURE") STEP_CAVE_VINES("step.cave_vines"), + @Since("1.6.0.0-PN") STEP_CALCITE("step.calcite"), + @Since("1.6.0.0-PN") STEP_CANDLE("step.candle"), + @Since("1.6.0.0-PN") STEP_CAVE_VINES("step.cave_vines"), STEP_CHAIN("step.chain"), STEP_CLOTH("step.cloth"), - @Since("FUTURE") STEP_COPPER("step.copper"), + @Since("1.6.0.0-PN") STEP_COPPER("step.copper"), STEP_CORAL("step.coral"), - @Since("FUTURE") STEP_DEEPSLATE("step.deepslate"), - @Since("FUTURE") STEP_DEEPSLATE_BRICKS("step.deepslate_bricks"), - @Since("FUTURE") STEP_DIRT_WITH_ROOTS("step.dirt_with_roots"), - @Since("FUTURE") STEP_DRIPSTONE_BLOCK("step.dripstone_block"), + @Since("1.6.0.0-PN") STEP_DEEPSLATE("step.deepslate"), + @Since("1.6.0.0-PN") STEP_DEEPSLATE_BRICKS("step.deepslate_bricks"), + @Since("1.6.0.0-PN") STEP_DIRT_WITH_ROOTS("step.dirt_with_roots"), + @Since("1.6.0.0-PN") STEP_DRIPSTONE_BLOCK("step.dripstone_block"), STEP_GRASS("step.grass"), STEP_GRAVEL("step.gravel"), - @Since("FUTURE") STEP_HANGING_ROOTS("step.hanging_roots"), + @Since("1.6.0.0-PN") STEP_HANGING_ROOTS("step.hanging_roots"), STEP_HONEY_BLOCK("step.honey_block"), STEP_LADDER("step.ladder"), - @Since("FUTURE") STEP_MOSS("step.moss"), + @Since("1.6.0.0-PN") STEP_MOSS("step.moss"), STEP_NETHER_BRICK("step.nether_brick"), STEP_NETHER_GOLD_ORE("step.nether_gold_ore"), STEP_NETHER_SPROUTS("step.nether_sprouts"), @@ -934,8 +934,8 @@ public enum Sound { STEP_NETHERITE("step.netherite"), STEP_NETHERRACK("step.netherrack"), STEP_NYLIUM("step.nylium"), - @Since("FUTURE") STEP_POINTED_DRIPSTONE("step.pointed_dripstone"), - @Since("FUTURE") STEP_POWDER_SNOW("step.powder_snow"), + @Since("1.6.0.0-PN") STEP_POINTED_DRIPSTONE("step.pointed_dripstone"), + @Since("1.6.0.0-PN") STEP_POWDER_SNOW("step.powder_snow"), STEP_ROOTS("step.roots"), STEP_SAND("step.sand"), STEP_SHROOMLIGHT("step.shroomlight"), @@ -943,16 +943,16 @@ public enum Sound { STEP_SNOW("step.snow"), STEP_SOUL_SAND("step.soul_sand"), STEP_SOUL_SOIL("step.soul_soil"), - @Since("FUTURE") STEP_SPORE_BLOSSOM("step.spore_blossom"), + @Since("1.6.0.0-PN") STEP_SPORE_BLOSSOM("step.spore_blossom"), STEP_STEM("step.stem"), STEP_STONE("step.stone"), - @Since("FUTURE") STEP_TUFF("step.tuff"), + @Since("1.6.0.0-PN") STEP_TUFF("step.tuff"), STEP_VINES("step.vines"), STEP_WOOD("step.wood"), TILE_PISTON_IN("tile.piston.in"), TILE_PISTON_OUT("tile.piston.out"), - @Since("FUTURE") TILT_DOWN_BIG_DRIPLEAF("tilt_down.big_dripleaf"), - @Since("FUTURE") TILT_UP_BIG_DRIPLEAF("tilt_up.big_dripleaf"), + @Since("1.6.0.0-PN") TILT_DOWN_BIG_DRIPLEAF("tilt_down.big_dripleaf"), + @Since("1.6.0.0-PN") TILT_UP_BIG_DRIPLEAF("tilt_up.big_dripleaf"), UI_CARTOGRAPHY_TABLE_TAKE_RESULT("ui.cartography_table.take_result"), UI_LOOM_SELECT_PATTERN("ui.loom.select_pattern"), UI_LOOM_TAKE_RESULT("ui.loom.take_result"), @@ -960,22 +960,22 @@ public enum Sound { USE_ANCIENT_DEBRIS("use.ancient_debris"), USE_BASALT("use.basalt"), USE_BONE_BLOCK("use.bone_block"), - @Since("FUTURE") USE_CANDLE("use.candle"), - @Since("FUTURE") USE_CAVE_VINES("use.cave_vines"), + @Since("1.6.0.0-PN") USE_CANDLE("use.candle"), + @Since("1.6.0.0-PN") USE_CAVE_VINES("use.cave_vines"), USE_CHAIN("use.chain"), USE_CLOTH("use.cloth"), - @Since("FUTURE") USE_COPPER("use.copper"), + @Since("1.6.0.0-PN") USE_COPPER("use.copper"), USE_CORAL("use.coral"), - @Since("FUTURE") USE_DEEPSLATE("use.deepslate"), - @Since("FUTURE") USE_DEEPSLATE_BRICKS("use.deepslate_bricks"), - @Since("FUTURE") USE_DIRT_WITH_ROOTS("use.dirt_with_roots"), - @Since("FUTURE") USE_DRIPSTONE_BLOCK("use.dripstone_block"), + @Since("1.6.0.0-PN") USE_DEEPSLATE("use.deepslate"), + @Since("1.6.0.0-PN") USE_DEEPSLATE_BRICKS("use.deepslate_bricks"), + @Since("1.6.0.0-PN") USE_DIRT_WITH_ROOTS("use.dirt_with_roots"), + @Since("1.6.0.0-PN") USE_DRIPSTONE_BLOCK("use.dripstone_block"), USE_GRASS("use.grass"), USE_GRAVEL("use.gravel"), - @Since("FUTURE") USE_HANGING_ROOTS("use.hanging_roots"), + @Since("1.6.0.0-PN") USE_HANGING_ROOTS("use.hanging_roots"), USE_HONEY_BLOCK("use.honey_block"), USE_LADDER("use.ladder"), - @Since("FUTURE") USE_MOSS("use.moss"), + @Since("1.6.0.0-PN") USE_MOSS("use.moss"), USE_NETHER_BRICK("use.nether_brick"), USE_NETHER_GOLD_ORE("use.nether_gold_ore"), USE_NETHER_SPROUTS("use.nether_sprouts"), @@ -983,7 +983,7 @@ public enum Sound { USE_NETHERITE("use.netherite"), USE_NETHERRACK("use.netherrack"), USE_NYLIUM("use.nylium"), - @Since("FUTURE") USE_POINTED_DRIPSTONE("use.pointed_dripstone"), + @Since("1.6.0.0-PN") USE_POINTED_DRIPSTONE("use.pointed_dripstone"), USE_ROOTS("use.roots"), USE_SAND("use.sand"), USE_SHROOMLIGHT("use.shroomlight"), @@ -991,7 +991,7 @@ public enum Sound { USE_SNOW("use.snow"), USE_SOUL_SAND("use.soul_sand"), USE_SOUL_SOIL("use.soul_soil"), - @Since("FUTURE") USE_SPORE_BLOSSOM("use.spore_blossom"), + @Since("1.6.0.0-PN") USE_SPORE_BLOSSOM("use.spore_blossom"), USE_STEM("use.stem"), USE_STONE("use.stone"), USE_VINES("use.vines"), diff --git a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java index 79e84294bfc..c3ae6e016f7 100644 --- a/src/main/java/cn/nukkit/level/format/anvil/Anvil.java +++ b/src/main/java/cn/nukkit/level/format/anvil/Anvil.java @@ -33,7 +33,7 @@ public class Anvil extends BaseLevelProvider { public static final int VERSION = 19133; private static final byte[] PAD_256 = new byte[256]; - @Since("FUTURE") + @Since("1.6.0.0-PN") public static final int EXTENDED_NEGATIVE_SUB_CHUNKS = 4; public Anvil(Level level, String path) throws IOException { diff --git a/src/main/java/cn/nukkit/level/format/generic/serializer/NetworkChunkSerializer.java b/src/main/java/cn/nukkit/level/format/generic/serializer/NetworkChunkSerializer.java index cd002470d90..0a8478d6334 100644 --- a/src/main/java/cn/nukkit/level/format/generic/serializer/NetworkChunkSerializer.java +++ b/src/main/java/cn/nukkit/level/format/generic/serializer/NetworkChunkSerializer.java @@ -21,7 +21,7 @@ import java.util.List; import java.util.function.BiConsumer; -@Since("FUTURE") +@Since("1.6.0.0-PN") public class NetworkChunkSerializer { private static final int EXTENDED_NEGATIVE_SUB_CHUNKS = 4; @@ -38,7 +38,7 @@ public class NetworkChunkSerializer { negativeSubChunks = stream.getBuffer(); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public static void serialize(BaseChunk chunk, BiConsumer callback, DimensionData dimensionData) { byte[] blockEntities; if (chunk.getBlockEntities().isEmpty()) { diff --git a/src/main/java/cn/nukkit/level/generator/Generator.java b/src/main/java/cn/nukkit/level/generator/Generator.java index c398bc306dd..4c9e9f55340 100644 --- a/src/main/java/cn/nukkit/level/generator/Generator.java +++ b/src/main/java/cn/nukkit/level/generator/Generator.java @@ -23,7 +23,7 @@ public abstract class Generator implements BlockID { public abstract int getId(); - @Since("FUTURE") + @Since("1.6.0.0-PN") public DimensionData getDimensionData() { DimensionData dimensionData = DimensionEnum.getDataFromId(this.getDimension()); if (dimensionData == null) { diff --git a/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java b/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java index 9fbd017b33d..d8a908ceadc 100644 --- a/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java +++ b/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java @@ -15,23 +15,23 @@ public class PalettedBlockStorage { private final IntList palette; private BitArray bitArray; - @Since("FUTURE") + @Since("1.6.0.0-PN") public static PalettedBlockStorage createFromBlockPalette() { return createFromBlockPalette(BitArrayVersion.V2); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public static PalettedBlockStorage createFromBlockPalette(BitArrayVersion version) { int runtimeId = GlobalBlockPalette.getOrCreateRuntimeId(0); // Air is first return new PalettedBlockStorage(version, runtimeId); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public static PalettedBlockStorage createWithDefaultState(int defaultState) { return createWithDefaultState(BitArrayVersion.V2, defaultState); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public static PalettedBlockStorage createWithDefaultState(BitArrayVersion version, int defaultState) { return new PalettedBlockStorage(version, defaultState); } @@ -55,7 +55,7 @@ private int getIndex(int x, int y, int z) { return (x << 8) | (z << 4) | y; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public void setBlock(int x, int y, int z, int runtimeId) { this.setBlock(this.getIndex(x, y, z), runtimeId); } diff --git a/src/main/java/cn/nukkit/math/BlockVector3.java b/src/main/java/cn/nukkit/math/BlockVector3.java index baeac624e02..3651c77a16c 100644 --- a/src/main/java/cn/nukkit/math/BlockVector3.java +++ b/src/main/java/cn/nukkit/math/BlockVector3.java @@ -46,19 +46,19 @@ public int getZ() { return this.z; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public BlockVector3 setX(int x) { this.x = x; return this; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public BlockVector3 setY(int y) { this.y = y; return this; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public BlockVector3 setZ(int z) { this.z = z; return this; diff --git a/src/main/java/cn/nukkit/math/Vector3.java b/src/main/java/cn/nukkit/math/Vector3.java index 1e32bc03c94..928d69019bc 100644 --- a/src/main/java/cn/nukkit/math/Vector3.java +++ b/src/main/java/cn/nukkit/math/Vector3.java @@ -47,19 +47,19 @@ public double getZ() { return this.z; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public Vector3 setX(double x) { this.x = x; return this; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public Vector3 setY(double y) { this.y = y; return this; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public Vector3 setZ(double z) { this.z = z; return this; diff --git a/src/main/java/cn/nukkit/math/Vector3f.java b/src/main/java/cn/nukkit/math/Vector3f.java index a2f4df1910c..490298cae62 100644 --- a/src/main/java/cn/nukkit/math/Vector3f.java +++ b/src/main/java/cn/nukkit/math/Vector3f.java @@ -46,19 +46,19 @@ public float getZ() { return this.z; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public Vector3f setX(float x) { this.x = x; return this; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public Vector3f setY(float y) { this.y = y; return this; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public Vector3f setZ(float z) { this.z = z; return this; diff --git a/src/main/java/cn/nukkit/network/Network.java b/src/main/java/cn/nukkit/network/Network.java index 0f3e4ad3228..378e92822f2 100644 --- a/src/main/java/cn/nukkit/network/Network.java +++ b/src/main/java/cn/nukkit/network/Network.java @@ -233,7 +233,7 @@ public void processBatch(BatchPacket packet, Player player) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") public List unpackBatchedPackets(BatchPacket packet) throws ProtocolException { List packets = new ObjectArrayList<>(); processBatch(packet.payload, packets); diff --git a/src/main/java/cn/nukkit/network/protocol/AddPlayerPacket.java b/src/main/java/cn/nukkit/network/protocol/AddPlayerPacket.java index 915834a490b..b129a8ca030 100644 --- a/src/main/java/cn/nukkit/network/protocol/AddPlayerPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/AddPlayerPacket.java @@ -35,7 +35,7 @@ public byte pid() { public float pitch; public float yaw; public Item item; - @Since("FUTURE") public int gameType = Server.getInstance().getGamemode(); + @Since("1.6.0.0-PN") public int gameType = Server.getInstance().getGamemode(); public EntityMetadata metadata = new EntityMetadata(); //public EntityLink links = new EntityLink[0]; public String deviceId = ""; diff --git a/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java b/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java index 5da173d15ea..48c0e9c749e 100644 --- a/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/BossEventPacket.java @@ -28,10 +28,10 @@ public class BossEventPacket extends DataPacket { /* S2C: Sets title of the bar. */ public static final int TYPE_TITLE = 5; /* S2C: Not sure on this. Includes color and overlay fields, plus an unknown short. TODO: check this */ - @Since("FUTURE") public static final int TYPE_UPDATE_PROPERTIES = 6; + @Since("1.6.0.0-PN") public static final int TYPE_UPDATE_PROPERTIES = 6; @PowerNukkitOnly("Renamed by cloudburst") @Deprecated - @DeprecationDetails(by = "Cloudburst", reason = "Renamed", replaceWith = "TYPE_UPDATE_PROPERTIES", since = "FUTURE") + @DeprecationDetails(by = "Cloudburst", reason = "Renamed", replaceWith = "TYPE_UPDATE_PROPERTIES", since = "1.6.0.0-PN") public static final int TYPE_UNKNOWN_6 = TYPE_UPDATE_PROPERTIES; /* S2C: Sets color and overlay of the bar. */ public static final int TYPE_TEXTURE = 7; diff --git a/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java b/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java index c1a7628823f..2db3a3efafb 100644 --- a/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/CraftingDataPacket.java @@ -26,7 +26,7 @@ public class CraftingDataPacket extends DataPacket { public static final String CRAFTING_TAG_CAMPFIRE = "campfire"; public static final String CRAFTING_TAG_BLAST_FURNACE = "blast_furnace"; public static final String CRAFTING_TAG_SMOKER = "smoker"; - @PowerNukkitOnly @Since("FUTURE") public static final String CRAFTING_TAG_SMITHING_TABLE = "smithing_table"; + @PowerNukkitOnly @Since("1.6.0.0-PN") public static final String CRAFTING_TAG_SMITHING_TABLE = "smithing_table"; private List entries = new ArrayList<>(); private final List brewingEntries = new ArrayList<>(); diff --git a/src/main/java/cn/nukkit/network/protocol/LevelChunkPacket.java b/src/main/java/cn/nukkit/network/protocol/LevelChunkPacket.java index 360443b3879..682331f3fae 100644 --- a/src/main/java/cn/nukkit/network/protocol/LevelChunkPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/LevelChunkPacket.java @@ -19,8 +19,8 @@ public byte pid() { public int chunkZ; public int subChunkCount; public boolean cacheEnabled; - @Since("FUTURE") public boolean requestSubChunks; - @Since("FUTURE") public int subChunkLimit; + @Since("1.6.0.0-PN") public boolean requestSubChunks; + @Since("1.6.0.0-PN") public int subChunkLimit; public long[] blobIds; public byte[] data; diff --git a/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java b/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java index 6a3991273ec..18b6994c6f1 100644 --- a/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java @@ -228,12 +228,12 @@ public class LevelSoundEventPacket extends DataPacket { public static final int SOUND_HURT_BABY = 219; public static final int SOUND_DEATH_BABY = 220; public static final int SOUND_STEP_BABY = 221; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_BABY_SPAWN = 222; + @PowerNukkitOnly @Since("1.6.0.0-PN") public static final int SOUND_BABY_SPAWN = 222; public static final int SOUND_BORN = 223; public static final int SOUND_BLOCK_TURTLE_EGG_BREAK = 224; public static final int SOUND_BLOCK_TURTLE_EGG_CRACK = 225; public static final int SOUND_BLOCK_TURTLE_EGG_HATCH = 226; - @PowerNukkitOnly @Since("FUTURE") public static final int SOUND_TURTLE_LAY_EGG = 227; + @PowerNukkitOnly @Since("1.6.0.0-PN") public static final int SOUND_TURTLE_LAY_EGG = 227; public static final int SOUND_BLOCK_TURTLE_EGG_ATTACK = 228; public static final int SOUND_BEACON_ACTIVATE = 229; public static final int SOUND_BEACON_AMBIENT = 230; @@ -261,127 +261,127 @@ public class LevelSoundEventPacket extends DataPacket { public static final int SOUND_AMBIENT_AGGRESSIVE = 252; public static final int SOUND_AMBIENT_WORRIED = 253; public static final int SOUND_CANT_BREED = 254; - @Since("FUTURE") public static final int SOUND_ITEM_SHIELD_BLOCK = 255; - @Since("FUTURE") public static final int SOUND_ITEM_BOOK_PUT = 256; - @Since("FUTURE") public static final int SOUND_BLOCK_GRINDSTONE_USE = 257; - @Since("FUTURE") public static final int SOUND_BLOCK_BELL_HIT = 258; - @Since("FUTURE") public static final int SOUND_BLOCK_CAMPFIRE_CRACKLE = 259; - @Since("FUTURE") public static final int SOUND_ROAR = 260; - @Since("FUTURE") public static final int SOUND_STUN = 261; - @Since("FUTURE") public static final int SOUND_BLOCK_SWEET_BERRY_BUSH_HURT = 262; - @Since("FUTURE") public static final int SOUND_BLOCK_SWEET_BERRY_BUSH_PICK = 263; - @Since("FUTURE") public static final int SOUND_BLOCK_CARTOGRAPHY_TABLE_USE = 264; - @Since("FUTURE") public static final int SOUND_BLOCK_STONECUTTER_USE = 265; - @Since("FUTURE") public static final int SOUND_BLOCK_COMPOSTER_EMPTY = 266; - @Since("FUTURE") public static final int SOUND_BLOCK_COMPOSTER_FILL = 267; - @Since("FUTURE") public static final int SOUND_BLOCK_COMPOSTER_FILL_SUCCESS = 268; - @Since("FUTURE") public static final int SOUND_BLOCK_COMPOSTER_READY = 269; - @Since("FUTURE") public static final int SOUND_BLOCK_BARREL_OPEN = 270; - @Since("FUTURE") public static final int SOUND_BLOCK_BARREL_CLOSE = 271; - @Since("FUTURE") public static final int SOUND_RAID_HORN = 272; - @Since("FUTURE") public static final int SOUND_BLOCK_LOOM_USE = 273; - @Since("FUTURE") public static final int SOUND_AMBIENT_IN_RAID = 274; - @Since("FUTURE") public static final int SOUND_UI_CARTOGRAPHY_TABLE_TAKE_RESULT = 275; - @Since("FUTURE") public static final int SOUND_UI_STONECUTTER_TAKE_RESULT = 276; - @Since("FUTURE") public static final int SOUND_UI_LOOM_TAKE_RESULT = 277; - @Since("FUTURE") public static final int SOUND_BLOCK_SMOKER_SMOKE = 278; - @Since("FUTURE") public static final int SOUND_BLOCK_BLASTFURNACE_FIRE_CRACKLE = 279; - @Since("FUTURE") public static final int SOUND_BLOCK_SMITHING_TABLE_USE = 280; - @Since("FUTURE") public static final int SOUND_SCREECH = 281; - @Since("FUTURE") public static final int SOUND_SLEEP = 282; - @Since("FUTURE") public static final int SOUND_BLOCK_FURNACE_LIT = 283; - @Since("FUTURE") public static final int SOUND_CONVERT_MOOSHROOM = 284; - @Since("FUTURE") public static final int SOUND_MILK_SUSPICIOUSLY = 285; - @Since("FUTURE") public static final int SOUND_CELEBRATE = 286; - @Since("FUTURE") public static final int SOUND_JUMP_PREVENT = 287; - @Since("FUTURE") public static final int SOUND_AMBIENT_POLLINATE = 288; - @Since("FUTURE") public static final int SOUND_BLOCK_BEEHIVE_DRIP = 289; - @Since("FUTURE") public static final int SOUND_BLOCK_BEEHIVE_ENTER = 290; - @Since("FUTURE") public static final int SOUND_BLOCK_BEEHIVE_EXIT = 291; - @Since("FUTURE") public static final int SOUND_BLOCK_BEEHIVE_WORK = 292; - @Since("FUTURE") public static final int SOUND_BLOCK_BEEHIVE_SHEAR = 293; - @Since("FUTURE") public static final int SOUND_DRINK_HONEY = 294; - @Since("FUTURE") public static final int SOUND_AMBIENT_CAVE = 295; - @Since("FUTURE") public static final int SOUND_RETREAT = 296; - @Since("FUTURE") public static final int SOUND_CONVERTED_TO_ZOMBIFIED = 297; - @Since("FUTURE") public static final int SOUND_ADMIRE = 298; - @Since("FUTURE") public static final int SOUND_STEP_LAVA = 299; - @Since("FUTURE") public static final int SOUND_TEMPT = 300; - @Since("FUTURE") public static final int SOUND_PANIC = 301; - @Since("FUTURE") public static final int SOUND_ANGRY = 302; - @Since("FUTURE") public static final int SOUND_AMBIENT_WARPED_FOREST_MOOD = 303; - @Since("FUTURE") public static final int SOUND_AMBIENT_SOULSAND_VALLEY_MOOD = 304; - @Since("FUTURE") public static final int SOUND_AMBIENT_NETHER_WASTES_MOOD = 305; - @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_BASALT_DELTAS_MOOD = 306; - @Since("FUTURE") public static final int SOUND_AMBIENT_CRIMSON_FOREST_MOOD = 307; - @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_CHARGE = 308; - @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_DEPLETE = 309; - @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_SET_SPAWN = 310; - @Since("FUTURE") public static final int SOUND_RESPAWN_ANCHOR_AMBIENT = 311; - @Since("FUTURE") public static final int SOUND_PARTICLE_SOUL_ESCAPE_QUIET = 312; - @Since("FUTURE") public static final int SOUND_PARTICLE_SOUL_ESCAPE_LOUD = 313; + @Since("1.6.0.0-PN") public static final int SOUND_ITEM_SHIELD_BLOCK = 255; + @Since("1.6.0.0-PN") public static final int SOUND_ITEM_BOOK_PUT = 256; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_GRINDSTONE_USE = 257; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_BELL_HIT = 258; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_CAMPFIRE_CRACKLE = 259; + @Since("1.6.0.0-PN") public static final int SOUND_ROAR = 260; + @Since("1.6.0.0-PN") public static final int SOUND_STUN = 261; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_SWEET_BERRY_BUSH_HURT = 262; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_SWEET_BERRY_BUSH_PICK = 263; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_CARTOGRAPHY_TABLE_USE = 264; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_STONECUTTER_USE = 265; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_COMPOSTER_EMPTY = 266; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_COMPOSTER_FILL = 267; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_COMPOSTER_FILL_SUCCESS = 268; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_COMPOSTER_READY = 269; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_BARREL_OPEN = 270; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_BARREL_CLOSE = 271; + @Since("1.6.0.0-PN") public static final int SOUND_RAID_HORN = 272; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_LOOM_USE = 273; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_IN_RAID = 274; + @Since("1.6.0.0-PN") public static final int SOUND_UI_CARTOGRAPHY_TABLE_TAKE_RESULT = 275; + @Since("1.6.0.0-PN") public static final int SOUND_UI_STONECUTTER_TAKE_RESULT = 276; + @Since("1.6.0.0-PN") public static final int SOUND_UI_LOOM_TAKE_RESULT = 277; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_SMOKER_SMOKE = 278; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_BLASTFURNACE_FIRE_CRACKLE = 279; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_SMITHING_TABLE_USE = 280; + @Since("1.6.0.0-PN") public static final int SOUND_SCREECH = 281; + @Since("1.6.0.0-PN") public static final int SOUND_SLEEP = 282; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_FURNACE_LIT = 283; + @Since("1.6.0.0-PN") public static final int SOUND_CONVERT_MOOSHROOM = 284; + @Since("1.6.0.0-PN") public static final int SOUND_MILK_SUSPICIOUSLY = 285; + @Since("1.6.0.0-PN") public static final int SOUND_CELEBRATE = 286; + @Since("1.6.0.0-PN") public static final int SOUND_JUMP_PREVENT = 287; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_POLLINATE = 288; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_BEEHIVE_DRIP = 289; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_BEEHIVE_ENTER = 290; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_BEEHIVE_EXIT = 291; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_BEEHIVE_WORK = 292; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_BEEHIVE_SHEAR = 293; + @Since("1.6.0.0-PN") public static final int SOUND_DRINK_HONEY = 294; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_CAVE = 295; + @Since("1.6.0.0-PN") public static final int SOUND_RETREAT = 296; + @Since("1.6.0.0-PN") public static final int SOUND_CONVERTED_TO_ZOMBIFIED = 297; + @Since("1.6.0.0-PN") public static final int SOUND_ADMIRE = 298; + @Since("1.6.0.0-PN") public static final int SOUND_STEP_LAVA = 299; + @Since("1.6.0.0-PN") public static final int SOUND_TEMPT = 300; + @Since("1.6.0.0-PN") public static final int SOUND_PANIC = 301; + @Since("1.6.0.0-PN") public static final int SOUND_ANGRY = 302; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_WARPED_FOREST_MOOD = 303; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_SOULSAND_VALLEY_MOOD = 304; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_NETHER_WASTES_MOOD = 305; + @Since("1.6.0.0-PN") public static final int SOUND_RESPAWN_ANCHOR_BASALT_DELTAS_MOOD = 306; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_CRIMSON_FOREST_MOOD = 307; + @Since("1.6.0.0-PN") public static final int SOUND_RESPAWN_ANCHOR_CHARGE = 308; + @Since("1.6.0.0-PN") public static final int SOUND_RESPAWN_ANCHOR_DEPLETE = 309; + @Since("1.6.0.0-PN") public static final int SOUND_RESPAWN_ANCHOR_SET_SPAWN = 310; + @Since("1.6.0.0-PN") public static final int SOUND_RESPAWN_ANCHOR_AMBIENT = 311; + @Since("1.6.0.0-PN") public static final int SOUND_PARTICLE_SOUL_ESCAPE_QUIET = 312; + @Since("1.6.0.0-PN") public static final int SOUND_PARTICLE_SOUL_ESCAPE_LOUD = 313; @Since("1.4.0.0-PN") public static final int SOUND_RECORD_PIGSTEP = 314; - @Since("FUTURE") public static final int SOUND_LODESTONE_COMPASS_LINK_COMPASS_TO_LODESTONE = 315; - @Since("FUTURE") public static final int SOUND_SMITHING_TABLE_USE = 316; - @Since("FUTURE") public static final int SOUND_ARMOR_EQUIP_NETHERITE = 317; - @Since("FUTURE") public static final int SOUND_AMBIENT_WARPED_FOREST_LOOP = 318; - @Since("FUTURE") public static final int SOUND_AMBIENT_SOULSAND_VALLEY_LOOP = 319; - @Since("FUTURE") public static final int SOUND_AMBIENT_NETHER_WASTES_LOOP = 320; - @Since("FUTURE") public static final int SOUND_AMBIENT_BASALT_DELTAS_LOOP = 321; - @Since("FUTURE") public static final int SOUND_AMBIENT_CRIMSON_FOREST_LOOP = 322; - @Since("FUTURE") public static final int SOUND_AMBIENT_WARPED_FOREST_ADDITIONS = 323; - @Since("FUTURE") public static final int SOUND_AMBIENT_SOULSAND_VALLEY_ADDITIONS = 324; - @Since("FUTURE") public static final int SOUND_AMBIENT_NETHER_WASTES_ADDITIONS = 325; - @Since("FUTURE") public static final int SOUND_AMBIENT_BASALT_DELTAS_ADDITIONS = 326; - @Since("FUTURE") public static final int SOUND_AMBIENT_CRIMSON_FOREST_ADDITIONS = 327; - @Since("FUTURE") public static final int SOUND_SCULK_SENSOR_POWER_ON = 328; - @Since("FUTURE") public static final int SOUND_SCULK_SENSOR_POWER_OFF = 329; - @Since("FUTURE") public static final int SOUND_BUCKET_FILL_POWDER_SNOW = 330; - @Since("FUTURE") public static final int SOUND_BUCKET_EMPTY_POWDER_SNOW = 331; - @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_CAULDRON_DRIP_WATER = 332; - @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_CAULDRON_DRIP_LAVA = 333; - @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_DRIP_WATER = 334; - @Since("FUTURE") public static final int SOUND_POINTED_DRIPSTONE_DRIP_LAVA = 335; - @Since("FUTURE") public static final int SOUND_CAVE_VINES_PICK_BERRIES = 336; - @Since("FUTURE") public static final int SOUND_BIG_DRIPLEAF_TILT_DOWN = 337; - @Since("FUTURE") public static final int SOUND_BIG_DRIPLEAF_TILT_UP = 338; - @Since("FUTURE") public static final int SOUND_COPPER_WAX_ON = 339; - @Since("FUTURE") public static final int SOUND_COPPER_WAX_OFF = 340; - @Since("FUTURE") public static final int SOUND_SCRAPE = 341; - @Since("FUTURE") public static final int SOUND_PLAYER_HURT_DROWN = 342; - @Since("FUTURE") public static final int SOUND_PLAYER_HURT_ON_FIRE = 343; - @Since("FUTURE") public static final int SOUND_PLAYER_HURT_FREEZE = 344; - @Since("FUTURE") public static final int SOUND_USE_SPYGLASS = 345; - @Since("FUTURE") public static final int SOUND_STOP_USING_SPYGLASS = 346; - @Since("FUTURE") public static final int SOUND_AMETHYST_BLOCK_CHIME = 347; - @Since("FUTURE") public static final int SOUND_AMBIENT_SCREAMER = 348; - @Since("FUTURE") public static final int SOUND_HURT_SCREAMER = 349; - @Since("FUTURE") public static final int SOUND_DEATH_SCREAMER = 350; - @Since("FUTURE") public static final int SOUND_MILK_SCREAMER = 351; - @Since("FUTURE") public static final int SOUND_JUMP_TO_BLOCK = 352; - @Since("FUTURE") public static final int SOUND_PRE_RAM = 353; - @Since("FUTURE") public static final int SOUND_PRE_RAM_SCREAMER = 354; - @Since("FUTURE") public static final int SOUND_RAM_IMPACT = 355; - @Since("FUTURE") public static final int SOUND_RAM_IMPACT_SCREAMER = 356; - @Since("FUTURE") public static final int SOUND_SQUID_INK_SQUIRT = 357; - @Since("FUTURE") public static final int SOUND_GLOW_SQUID_INK_SQUIRT = 358; - @Since("FUTURE") public static final int SOUND_CONVERT_TO_STRAY = 359; - @Since("FUTURE") public static final int SOUND_CAKE_ADD_CANDLE = 360; - @Since("FUTURE") public static final int SOUND_EXTINGUISH_CANDLE = 361; - @Since("FUTURE") public static final int SOUND_AMBIENT_CANDLE = 362; - @Since("FUTURE") public static final int SOUND_BLOCK_CLICK = 363; - @Since("FUTURE") public static final int SOUND_BLOCK_CLICK_FAIL = 364; - @Since("FUTURE") public static final int SOUND_SCULK_CATALYST_BLOOM = 365; - @Since("FUTURE") public static final int SOUND_SCULK_SHRIEKER_SHRIEK = 366; - @Since("FUTURE") public static final int SOUND_WARDEN_NEARBY_CLOSE = 367; - @Since("FUTURE") public static final int SOUND_WARDEN_NEARBY_CLOSER = 368; - @Since("FUTURE") public static final int SOUND_WARDEN_NEARBY_CLOSEST = 369; - @Since("FUTURE") public static final int SOUND_WARDEN_SLIGHTLY_ANGRY = 370; - @Since("FUTURE") public static final int SOUND_RECORD_OTHERSIDE = 371; - @Since("FUTURE") public static final int SOUND_TONGUE = 372; - @Since("FUTURE") public static final int SOUND_CRACK_IRON_GOLEM = 373; - @Since("FUTURE") public static final int SOUND_REPAIR_IRON_GOLEM = 374; - @Since("FUTURE") public static final int SOUND_UNDEFINED = 375; + @Since("1.6.0.0-PN") public static final int SOUND_LODESTONE_COMPASS_LINK_COMPASS_TO_LODESTONE = 315; + @Since("1.6.0.0-PN") public static final int SOUND_SMITHING_TABLE_USE = 316; + @Since("1.6.0.0-PN") public static final int SOUND_ARMOR_EQUIP_NETHERITE = 317; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_WARPED_FOREST_LOOP = 318; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_SOULSAND_VALLEY_LOOP = 319; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_NETHER_WASTES_LOOP = 320; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_BASALT_DELTAS_LOOP = 321; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_CRIMSON_FOREST_LOOP = 322; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_WARPED_FOREST_ADDITIONS = 323; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_SOULSAND_VALLEY_ADDITIONS = 324; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_NETHER_WASTES_ADDITIONS = 325; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_BASALT_DELTAS_ADDITIONS = 326; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_CRIMSON_FOREST_ADDITIONS = 327; + @Since("1.6.0.0-PN") public static final int SOUND_SCULK_SENSOR_POWER_ON = 328; + @Since("1.6.0.0-PN") public static final int SOUND_SCULK_SENSOR_POWER_OFF = 329; + @Since("1.6.0.0-PN") public static final int SOUND_BUCKET_FILL_POWDER_SNOW = 330; + @Since("1.6.0.0-PN") public static final int SOUND_BUCKET_EMPTY_POWDER_SNOW = 331; + @Since("1.6.0.0-PN") public static final int SOUND_POINTED_DRIPSTONE_CAULDRON_DRIP_WATER = 332; + @Since("1.6.0.0-PN") public static final int SOUND_POINTED_DRIPSTONE_CAULDRON_DRIP_LAVA = 333; + @Since("1.6.0.0-PN") public static final int SOUND_POINTED_DRIPSTONE_DRIP_WATER = 334; + @Since("1.6.0.0-PN") public static final int SOUND_POINTED_DRIPSTONE_DRIP_LAVA = 335; + @Since("1.6.0.0-PN") public static final int SOUND_CAVE_VINES_PICK_BERRIES = 336; + @Since("1.6.0.0-PN") public static final int SOUND_BIG_DRIPLEAF_TILT_DOWN = 337; + @Since("1.6.0.0-PN") public static final int SOUND_BIG_DRIPLEAF_TILT_UP = 338; + @Since("1.6.0.0-PN") public static final int SOUND_COPPER_WAX_ON = 339; + @Since("1.6.0.0-PN") public static final int SOUND_COPPER_WAX_OFF = 340; + @Since("1.6.0.0-PN") public static final int SOUND_SCRAPE = 341; + @Since("1.6.0.0-PN") public static final int SOUND_PLAYER_HURT_DROWN = 342; + @Since("1.6.0.0-PN") public static final int SOUND_PLAYER_HURT_ON_FIRE = 343; + @Since("1.6.0.0-PN") public static final int SOUND_PLAYER_HURT_FREEZE = 344; + @Since("1.6.0.0-PN") public static final int SOUND_USE_SPYGLASS = 345; + @Since("1.6.0.0-PN") public static final int SOUND_STOP_USING_SPYGLASS = 346; + @Since("1.6.0.0-PN") public static final int SOUND_AMETHYST_BLOCK_CHIME = 347; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_SCREAMER = 348; + @Since("1.6.0.0-PN") public static final int SOUND_HURT_SCREAMER = 349; + @Since("1.6.0.0-PN") public static final int SOUND_DEATH_SCREAMER = 350; + @Since("1.6.0.0-PN") public static final int SOUND_MILK_SCREAMER = 351; + @Since("1.6.0.0-PN") public static final int SOUND_JUMP_TO_BLOCK = 352; + @Since("1.6.0.0-PN") public static final int SOUND_PRE_RAM = 353; + @Since("1.6.0.0-PN") public static final int SOUND_PRE_RAM_SCREAMER = 354; + @Since("1.6.0.0-PN") public static final int SOUND_RAM_IMPACT = 355; + @Since("1.6.0.0-PN") public static final int SOUND_RAM_IMPACT_SCREAMER = 356; + @Since("1.6.0.0-PN") public static final int SOUND_SQUID_INK_SQUIRT = 357; + @Since("1.6.0.0-PN") public static final int SOUND_GLOW_SQUID_INK_SQUIRT = 358; + @Since("1.6.0.0-PN") public static final int SOUND_CONVERT_TO_STRAY = 359; + @Since("1.6.0.0-PN") public static final int SOUND_CAKE_ADD_CANDLE = 360; + @Since("1.6.0.0-PN") public static final int SOUND_EXTINGUISH_CANDLE = 361; + @Since("1.6.0.0-PN") public static final int SOUND_AMBIENT_CANDLE = 362; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_CLICK = 363; + @Since("1.6.0.0-PN") public static final int SOUND_BLOCK_CLICK_FAIL = 364; + @Since("1.6.0.0-PN") public static final int SOUND_SCULK_CATALYST_BLOOM = 365; + @Since("1.6.0.0-PN") public static final int SOUND_SCULK_SHRIEKER_SHRIEK = 366; + @Since("1.6.0.0-PN") public static final int SOUND_WARDEN_NEARBY_CLOSE = 367; + @Since("1.6.0.0-PN") public static final int SOUND_WARDEN_NEARBY_CLOSER = 368; + @Since("1.6.0.0-PN") public static final int SOUND_WARDEN_NEARBY_CLOSEST = 369; + @Since("1.6.0.0-PN") public static final int SOUND_WARDEN_SLIGHTLY_ANGRY = 370; + @Since("1.6.0.0-PN") public static final int SOUND_RECORD_OTHERSIDE = 371; + @Since("1.6.0.0-PN") public static final int SOUND_TONGUE = 372; + @Since("1.6.0.0-PN") public static final int SOUND_CRACK_IRON_GOLEM = 373; + @Since("1.6.0.0-PN") public static final int SOUND_REPAIR_IRON_GOLEM = 374; + @Since("1.6.0.0-PN") public static final int SOUND_UNDEFINED = 375; public int sound; public float x; diff --git a/src/main/java/cn/nukkit/network/protocol/MoveEntityAbsolutePacket.java b/src/main/java/cn/nukkit/network/protocol/MoveEntityAbsolutePacket.java index d55a63f2d3e..d0001918371 100644 --- a/src/main/java/cn/nukkit/network/protocol/MoveEntityAbsolutePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/MoveEntityAbsolutePacket.java @@ -20,7 +20,7 @@ public class MoveEntityAbsolutePacket extends DataPacket { public double pitch; public boolean onGround; public boolean teleport; - @Since("FUTURE") public boolean forceMoveLocalEntity; + @Since("1.6.0.0-PN") public boolean forceMoveLocalEntity; @Override public byte pid() { diff --git a/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java b/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java index b086ee2db15..691972aeae6 100644 --- a/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/MoveEntityDeltaPacket.java @@ -13,18 +13,18 @@ public class MoveEntityDeltaPacket extends DataPacket { public static final int FLAG_HAS_PITCH = 0B1000; public static final int FLAG_HAS_YAW = 0B10000; public static final int FLAG_HAS_HEAD_YAW = 0B100000; - @Since("FUTURE") public static final int FLAG_ON_GROUND = 0B1000000; - @Since("FUTURE") public static final int FLAG_TELEPORTING = 0B10000000; - @Since("FUTURE") public static final int FLAG_FORCE_MOVE_LOCAL_ENTITY = 0B100000000; + @Since("1.6.0.0-PN") public static final int FLAG_ON_GROUND = 0B1000000; + @Since("1.6.0.0-PN") public static final int FLAG_TELEPORTING = 0B10000000; + @Since("1.6.0.0-PN") public static final int FLAG_FORCE_MOVE_LOCAL_ENTITY = 0B100000000; - @Since("FUTURE") public long runtimeEntityId; + @Since("1.6.0.0-PN") public long runtimeEntityId; public int flags = 0; @Since("1.4.0.0-PN") public float x = 0; @Since("1.4.0.0-PN") public float y = 0; @Since("1.4.0.0-PN") public float z = 0; - @Since("FUTURE") public float pitch = 0; - @Since("FUTURE") public float yaw = 0; - @Since("FUTURE") public float headYaw = 0; + @Since("1.6.0.0-PN") public float pitch = 0; + @Since("1.6.0.0-PN") public float yaw = 0; + @Since("1.6.0.0-PN") public float headYaw = 0; @Override public byte pid() { @@ -96,7 +96,7 @@ private void putRotation(float value) { this.putByte((byte) (value / (360F / 256F))); } - @Since("FUTURE") + @Since("1.6.0.0-PN") public boolean hasFlag(int flag) { return (this.flags & flag) != 0; } diff --git a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java index 0f4cb6f455e..075da0c65a4 100644 --- a/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/NPCRequestPacket.java @@ -19,7 +19,7 @@ public class NPCRequestPacket extends DataPacket { @Since("1.4.0.0-PN") public int actionType; - @Since("FUTURE") + @Since("1.6.0.0-PN") public String sceneName; @PowerNukkitOnly diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java index 29b57716bb4..1fd5ae50d34 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java @@ -12,7 +12,7 @@ public class ResourcePacksInfoPacket extends DataPacket { public boolean mustAccept; public boolean scripting; - @Since("FUTURE") public boolean forceServerPacks; + @Since("1.6.0.0-PN") public boolean forceServerPacks; public ResourcePack[] behaviourPackEntries = ResourcePack.EMPTY_ARRAY; public ResourcePack[] resourcePackEntries = ResourcePack.EMPTY_ARRAY; diff --git a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java index 4679c3edd92..55f4bf0d919 100644 --- a/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SetTitlePacket.java @@ -27,8 +27,8 @@ public class SetTitlePacket extends DataPacket { public int fadeInTime = 0; public int stayTime = 0; public int fadeOutTime = 0; - @Since("FUTURE") public String xuid = ""; - @Since("FUTURE") public String platformOnlineId = ""; + @Since("1.6.0.0-PN") public String xuid = ""; + @Since("1.6.0.0-PN") public String platformOnlineId = ""; @Override public byte pid() { diff --git a/src/main/java/cn/nukkit/potion/Potion.java b/src/main/java/cn/nukkit/potion/Potion.java index 7404709c109..e6ace021d0c 100644 --- a/src/main/java/cn/nukkit/potion/Potion.java +++ b/src/main/java/cn/nukkit/potion/Potion.java @@ -19,7 +19,7 @@ /** * @author MagicDroidX (Nukkit Project) */ -@PowerNukkitDifference(since = "FUTURE", info = "Implements equals() and hashcode() only in PowerNukkit") +@PowerNukkitDifference(since = "1.6.0.0-PN", info = "Implements equals() and hashcode() only in PowerNukkit") @EqualsAndHashCode public class Potion implements Cloneable { @@ -70,7 +70,7 @@ public class Potion implements Cloneable { @Since("1.4.0.0-PN") @Deprecated - @DeprecationDetails(since = "FUTURE", by = "PowerNukkit", reason = + @DeprecationDetails(since = "1.6.0.0-PN", by = "PowerNukkit", reason = "Incorrect name, there is vanilla potion with slowness long 2, the result of potion with slowness 1 + glowstone is slowness 4", replaceWith = "SLOWNESS_IV") public static final int SLOWNESS_LONG_II = SLOWNESS_IV; @@ -444,7 +444,7 @@ public static int getApplySeconds(int potionType, boolean isSplash) { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nonnull public String getPotionTypeName() { switch (getId()) { @@ -517,7 +517,7 @@ public String getPotionTypeName() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nonnull public String getName() { String name = getPotionTypeName(); @@ -542,7 +542,7 @@ public String getName() { } @PowerNukkitOnly - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nonnull public String getRomanLevel() { int currentLevel = getLevel(); diff --git a/src/main/java/cn/nukkit/utils/BossBarColor.java b/src/main/java/cn/nukkit/utils/BossBarColor.java index 5c8cd4c3bad..1e2a2b1a636 100644 --- a/src/main/java/cn/nukkit/utils/BossBarColor.java +++ b/src/main/java/cn/nukkit/utils/BossBarColor.java @@ -5,15 +5,15 @@ /** * @author Kevims */ -@Since("FUTURE") +@Since("1.6.0.0-PN") public enum BossBarColor { - @Since("FUTURE") PINK, - @Since("FUTURE") BLUE, - @Since("FUTURE") RED, - @Since("FUTURE") GREEN, - @Since("FUTURE") YELLOW, - @Since("FUTURE") PURPLE, - @Since("FUTURE") WHITE + @Since("1.6.0.0-PN") PINK, + @Since("1.6.0.0-PN") BLUE, + @Since("1.6.0.0-PN") RED, + @Since("1.6.0.0-PN") GREEN, + @Since("1.6.0.0-PN") YELLOW, + @Since("1.6.0.0-PN") PURPLE, + @Since("1.6.0.0-PN") WHITE } diff --git a/src/main/java/cn/nukkit/utils/DummyBossBar.java b/src/main/java/cn/nukkit/utils/DummyBossBar.java index 5da1e7fcbde..10a4a5da1ce 100644 --- a/src/main/java/cn/nukkit/utils/DummyBossBar.java +++ b/src/main/java/cn/nukkit/utils/DummyBossBar.java @@ -54,7 +54,7 @@ public Builder length(float length) { return this; } - @Since("FUTURE") + @Since("1.6.0.0-PN") public Builder color(BossBarColor color) { this.color = color; return this; @@ -97,7 +97,7 @@ public void setLength(float length) { } } - @Since("FUTURE") + @Since("1.6.0.0-PN") public void setColor(@Nullable BossBarColor color) { final BossBarColor currentColor = this.color; if (currentColor == null || !currentColor.equals(color)) { @@ -106,7 +106,7 @@ public void setColor(@Nullable BossBarColor color) { } } - @Since("FUTURE") + @Since("1.6.0.0-PN") @Nullable public BossBarColor getColor() { return this.color; diff --git a/src/test/java/cn/nukkit/block/BlockBellTest.java b/src/test/java/cn/nukkit/block/BlockBellTest.java index 519998890f3..68b83137a13 100644 --- a/src/test/java/cn/nukkit/block/BlockBellTest.java +++ b/src/test/java/cn/nukkit/block/BlockBellTest.java @@ -21,7 +21,7 @@ * @since 2021-12-20 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class BlockBellTest { @MockLevel diff --git a/src/test/java/cn/nukkit/block/BlockDispenserTest.java b/src/test/java/cn/nukkit/block/BlockDispenserTest.java index 773c359e015..f1081fd550f 100644 --- a/src/test/java/cn/nukkit/block/BlockDispenserTest.java +++ b/src/test/java/cn/nukkit/block/BlockDispenserTest.java @@ -21,7 +21,7 @@ * @since 2021-12-20 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class BlockDispenserTest { @MockLevel diff --git a/src/test/java/cn/nukkit/block/BlockDropperTest.java b/src/test/java/cn/nukkit/block/BlockDropperTest.java index e8ac04acdbc..717f9423d20 100644 --- a/src/test/java/cn/nukkit/block/BlockDropperTest.java +++ b/src/test/java/cn/nukkit/block/BlockDropperTest.java @@ -21,7 +21,7 @@ * @since 2021-12-20 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class BlockDropperTest { @MockLevel diff --git a/src/test/java/cn/nukkit/command/CapturingCommandSenderTest.java b/src/test/java/cn/nukkit/command/CapturingCommandSenderTest.java index 5f0887ba5cc..926be626ffb 100644 --- a/src/test/java/cn/nukkit/command/CapturingCommandSenderTest.java +++ b/src/test/java/cn/nukkit/command/CapturingCommandSenderTest.java @@ -14,7 +14,7 @@ * @since 2021-12-20 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class CapturingCommandSenderTest { CapturingCommandSender commandSender; diff --git a/src/test/java/cn/nukkit/entity/AttributeTest.java b/src/test/java/cn/nukkit/entity/AttributeTest.java index b0c1b2e4164..5ccb64be3cf 100644 --- a/src/test/java/cn/nukkit/entity/AttributeTest.java +++ b/src/test/java/cn/nukkit/entity/AttributeTest.java @@ -13,7 +13,7 @@ * @since 2021-12-20 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class AttributeTest { @Test diff --git a/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java b/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java index ba9db8c2b07..ee21909e9da 100644 --- a/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java +++ b/src/test/java/cn/nukkit/entity/item/EntityFallingBlockTest.java @@ -29,7 +29,7 @@ * @since 2021-12-20 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class EntityFallingBlockTest { @MockLevel diff --git a/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java b/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java index 9a412b60468..93788f9a0c9 100644 --- a/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java +++ b/src/test/java/cn/nukkit/entity/item/EntityFishingHookTest.java @@ -36,7 +36,7 @@ * @since 2021-12-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class EntityFishingHookTest { @MockLevel diff --git a/src/test/java/cn/nukkit/entity/projectile/EntityProjectileTest.java b/src/test/java/cn/nukkit/entity/projectile/EntityProjectileTest.java index 36e43809b61..923d09926a3 100644 --- a/src/test/java/cn/nukkit/entity/projectile/EntityProjectileTest.java +++ b/src/test/java/cn/nukkit/entity/projectile/EntityProjectileTest.java @@ -29,7 +29,7 @@ * @since 2021-12-15 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class EntityProjectileTest { @MockPlayer(position = {0, 64, 0}) diff --git a/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java b/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java index 5f278c5dbfb..4df1aca2763 100644 --- a/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java +++ b/src/test/java/cn/nukkit/entity/projectile/EntityThrownTridentTest.java @@ -29,7 +29,7 @@ * @since 2021-12-15 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class EntityThrownTridentTest { @MockLevel diff --git a/src/test/java/cn/nukkit/event/block/BellRingEventTest.java b/src/test/java/cn/nukkit/event/block/BellRingEventTest.java index ffaf35df7eb..a41c78486fa 100644 --- a/src/test/java/cn/nukkit/event/block/BellRingEventTest.java +++ b/src/test/java/cn/nukkit/event/block/BellRingEventTest.java @@ -23,7 +23,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class BellRingEventTest { @MockLevel diff --git a/src/test/java/cn/nukkit/event/inventory/EnchantItemEventTest.java b/src/test/java/cn/nukkit/event/inventory/EnchantItemEventTest.java index ee6b404abc9..d2115a70f9c 100644 --- a/src/test/java/cn/nukkit/event/inventory/EnchantItemEventTest.java +++ b/src/test/java/cn/nukkit/event/inventory/EnchantItemEventTest.java @@ -21,7 +21,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class EnchantItemEventTest { @Mock diff --git a/src/test/java/cn/nukkit/inventory/transaction/CraftingTransactionTest.java b/src/test/java/cn/nukkit/inventory/transaction/CraftingTransactionTest.java index e5793f73a01..36331313d74 100644 --- a/src/test/java/cn/nukkit/inventory/transaction/CraftingTransactionTest.java +++ b/src/test/java/cn/nukkit/inventory/transaction/CraftingTransactionTest.java @@ -30,7 +30,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class CraftingTransactionTest { @MockPlayer diff --git a/src/test/java/cn/nukkit/inventory/transaction/EnchantTransactionTest.java b/src/test/java/cn/nukkit/inventory/transaction/EnchantTransactionTest.java index 1e537b4723b..c01c130ac75 100644 --- a/src/test/java/cn/nukkit/inventory/transaction/EnchantTransactionTest.java +++ b/src/test/java/cn/nukkit/inventory/transaction/EnchantTransactionTest.java @@ -21,7 +21,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class EnchantTransactionTest { @MockPlayer diff --git a/src/test/java/cn/nukkit/inventory/transaction/action/NoOpIventoryActionTest.java b/src/test/java/cn/nukkit/inventory/transaction/action/NoOpIventoryActionTest.java index a5e8039d537..a72cbebd2b0 100644 --- a/src/test/java/cn/nukkit/inventory/transaction/action/NoOpIventoryActionTest.java +++ b/src/test/java/cn/nukkit/inventory/transaction/action/NoOpIventoryActionTest.java @@ -18,7 +18,7 @@ * @since 2021-12-20 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class NoOpIventoryActionTest { @Mock diff --git a/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java b/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java index faf488d6ed4..f5ce6e86133 100644 --- a/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java +++ b/src/test/java/cn/nukkit/item/BasicAttributesXmlTest.java @@ -33,7 +33,7 @@ * @since 2021-12-15 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) public class BasicAttributesXmlTest { private static Document document; diff --git a/src/test/java/cn/nukkit/item/ItemArmorTest.java b/src/test/java/cn/nukkit/item/ItemArmorTest.java index 07c17326d62..806b74c0b01 100644 --- a/src/test/java/cn/nukkit/item/ItemArmorTest.java +++ b/src/test/java/cn/nukkit/item/ItemArmorTest.java @@ -19,7 +19,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class ItemArmorTest { @MockPlayer diff --git a/src/test/java/cn/nukkit/item/ItemArrowTest.java b/src/test/java/cn/nukkit/item/ItemArrowTest.java index 5e4f663ae77..f8b5d809dbd 100644 --- a/src/test/java/cn/nukkit/item/ItemArrowTest.java +++ b/src/test/java/cn/nukkit/item/ItemArrowTest.java @@ -16,7 +16,7 @@ * @since 2021-12-18 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class ItemArrowTest { ItemArrow arrow; diff --git a/src/test/java/cn/nukkit/item/ItemBoatTest.java b/src/test/java/cn/nukkit/item/ItemBoatTest.java index 0e41ee87fd4..a5134573fa4 100644 --- a/src/test/java/cn/nukkit/item/ItemBoatTest.java +++ b/src/test/java/cn/nukkit/item/ItemBoatTest.java @@ -25,7 +25,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class ItemBoatTest { ItemBoat item; diff --git a/src/test/java/cn/nukkit/item/ItemPotionTest.java b/src/test/java/cn/nukkit/item/ItemPotionTest.java index eae86a66ba9..6a44ffcbfee 100644 --- a/src/test/java/cn/nukkit/item/ItemPotionTest.java +++ b/src/test/java/cn/nukkit/item/ItemPotionTest.java @@ -14,7 +14,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class ItemPotionTest { ItemPotion item; diff --git a/src/test/java/cn/nukkit/item/ItemTridentTest.java b/src/test/java/cn/nukkit/item/ItemTridentTest.java index ad8f887d674..f0f7c4f0908 100644 --- a/src/test/java/cn/nukkit/item/ItemTridentTest.java +++ b/src/test/java/cn/nukkit/item/ItemTridentTest.java @@ -32,7 +32,7 @@ * @since 2021-12-20 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class ItemTridentTest { @MockLevel diff --git a/src/test/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAllTest.java b/src/test/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAllTest.java index 2b800a4dd1f..6948810e462 100644 --- a/src/test/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAllTest.java +++ b/src/test/java/cn/nukkit/item/enchantment/damage/EnchantmentDamageAllTest.java @@ -16,7 +16,7 @@ * @since 2021-12-20 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class EnchantmentDamageAllTest { @Mock diff --git a/src/test/java/cn/nukkit/item/randomitem/FishingTest.java b/src/test/java/cn/nukkit/item/randomitem/FishingTest.java index 8dcb04096b8..cbe32d8a1e9 100644 --- a/src/test/java/cn/nukkit/item/randomitem/FishingTest.java +++ b/src/test/java/cn/nukkit/item/randomitem/FishingTest.java @@ -16,7 +16,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class FishingTest { diff --git a/src/test/java/cn/nukkit/level/LocationTest.java b/src/test/java/cn/nukkit/level/LocationTest.java index 9b091100ad9..e4b3a15d96d 100644 --- a/src/test/java/cn/nukkit/level/LocationTest.java +++ b/src/test/java/cn/nukkit/level/LocationTest.java @@ -19,7 +19,7 @@ * @since 2021-12-15 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class LocationTest { public static final double X = 2; diff --git a/src/test/java/cn/nukkit/level/ParticleEffectTest.java b/src/test/java/cn/nukkit/level/ParticleEffectTest.java index adb3ea65bc9..a3a63ab19cb 100644 --- a/src/test/java/cn/nukkit/level/ParticleEffectTest.java +++ b/src/test/java/cn/nukkit/level/ParticleEffectTest.java @@ -11,7 +11,7 @@ * @since 2021-12-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") class ParticleEffectTest { @Test void getIdentifier() { diff --git a/src/test/java/cn/nukkit/math/BlockVector3Test.java b/src/test/java/cn/nukkit/math/BlockVector3Test.java index d17f95ece52..b893b56c37b 100644 --- a/src/test/java/cn/nukkit/math/BlockVector3Test.java +++ b/src/test/java/cn/nukkit/math/BlockVector3Test.java @@ -12,7 +12,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") class BlockVector3Test { BlockVector3 vector3; @Test diff --git a/src/test/java/cn/nukkit/math/Vector3Test.java b/src/test/java/cn/nukkit/math/Vector3Test.java index 9ed88fdf262..9a824695217 100644 --- a/src/test/java/cn/nukkit/math/Vector3Test.java +++ b/src/test/java/cn/nukkit/math/Vector3Test.java @@ -12,7 +12,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") class Vector3Test { Vector3 vector3; @Test diff --git a/src/test/java/cn/nukkit/math/Vector3fTest.java b/src/test/java/cn/nukkit/math/Vector3fTest.java index 5d4d1d2ec4b..cb410e8a000 100644 --- a/src/test/java/cn/nukkit/math/Vector3fTest.java +++ b/src/test/java/cn/nukkit/math/Vector3fTest.java @@ -12,7 +12,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") class Vector3fTest { Vector3f vector3; @Test diff --git a/src/test/java/cn/nukkit/network/protocol/MoveEntityDeltaPacketTest.java b/src/test/java/cn/nukkit/network/protocol/MoveEntityDeltaPacketTest.java index 559f711654e..fbd3b98f35d 100644 --- a/src/test/java/cn/nukkit/network/protocol/MoveEntityDeltaPacketTest.java +++ b/src/test/java/cn/nukkit/network/protocol/MoveEntityDeltaPacketTest.java @@ -12,7 +12,7 @@ * @since 2021-12-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") class MoveEntityDeltaPacketTest { MoveEntityDeltaPacket packet; diff --git a/src/test/java/cn/nukkit/potion/PotionTest.java b/src/test/java/cn/nukkit/potion/PotionTest.java index 5c26c747aad..42074f6f3a9 100644 --- a/src/test/java/cn/nukkit/potion/PotionTest.java +++ b/src/test/java/cn/nukkit/potion/PotionTest.java @@ -13,7 +13,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class PotionTest { @Test diff --git a/src/test/java/cn/nukkit/utils/BannerPatternTest.java b/src/test/java/cn/nukkit/utils/BannerPatternTest.java index 27e2b4c92a8..cd2cb70667e 100644 --- a/src/test/java/cn/nukkit/utils/BannerPatternTest.java +++ b/src/test/java/cn/nukkit/utils/BannerPatternTest.java @@ -14,7 +14,7 @@ * @since 2021-12-19 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class BannerPatternTest { ItemBannerPattern item; diff --git a/src/test/java/cn/nukkit/utils/BinaryTest.java b/src/test/java/cn/nukkit/utils/BinaryTest.java index eec6a3488f7..9dda1b8ff3b 100644 --- a/src/test/java/cn/nukkit/utils/BinaryTest.java +++ b/src/test/java/cn/nukkit/utils/BinaryTest.java @@ -11,7 +11,7 @@ * @since 2021-12-13 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") class BinaryTest { @Test void writeReadLInt() { diff --git a/src/test/java/cn/nukkit/utils/DummyBossBarTest.java b/src/test/java/cn/nukkit/utils/DummyBossBarTest.java index d4b74404368..85e3d3cedba 100644 --- a/src/test/java/cn/nukkit/utils/DummyBossBarTest.java +++ b/src/test/java/cn/nukkit/utils/DummyBossBarTest.java @@ -16,7 +16,7 @@ * @since 2021-12-20 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @ExtendWith(PowerNukkitExtension.class) class DummyBossBarTest { @MockPlayer diff --git a/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java b/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java index b0872044aaf..151ca288bee 100644 --- a/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java +++ b/src/test/java/org/powernukkit/tools/AnnotationProblemScanner.java @@ -31,7 +31,7 @@ * @since 2021-12-08 */ @PowerNukkitOnly -@Since("FUTURE") +@Since("1.6.0.0-PN") @Log4j2 public class AnnotationProblemScanner { private static final String NEED_TO_ADD_POWERNUKKIT_ONLY = "Need to add @PowerNukkitOnly to "; From 766a51e1fa1db78f6988d24119ef6cb3e0c63004 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 15:53:04 -0300 Subject: [PATCH 380/394] Update docker-compose and the md files --- CHANGELOG.md | 12 +++++++++++- README.md | 18 ++++++++++-------- docker-compose.yml | 2 +- 3 files changed, 22 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b81c9e7ed8..78fcec5ad5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ Nukkit 1.X and 2.X. ## [Unreleased 1.6.0.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/29?closed=1)) Click the link above to see the future. -This work in progress version supports Minecraft `1.18.0`. +This work in progress version supports Minecraft `1.18.30`. ### Breaking changes - [#1267] Changed Nimbus Jose JWT library from `7.9` to `9.13` @@ -20,10 +20,13 @@ This work in progress version supports Minecraft `1.18.0`. ### Depreciation - [#1266] Some APIs become deprecated, check the JDiff for details. - [#1266] `ItemTrident.setCreative` and `getCreative` are now deprecated. +- [#1341] Some items had their name changed and their ID on `ItemID` are now deprecated ### Added - [#1266] API to get the potion names, level in roman string and tipped arrow potion. - [#1266] API for the banner pattern snout (Piglin) +- [#1341] New sounds to the sound enum +- [#1341] New particles effects to the relevant enums ### Changed - [#1258] Changed supported version to Minecraft Bedrock Edition `1.18.0`. @@ -43,6 +46,12 @@ This work in progress version supports Minecraft `1.18.0`. - [#1267] Added all missing `@Override` annotations - [#1267] Removed all incorrect `@PowerNukkitOnly` annotations +### Others +There are many other fixes, additions and changes not documented in this file due to the size of this update. + +Check the [git logs](https://github.com/PowerNukkit/PowerNukkit/pull/1341/commits) +for details on what has changed since 1.5.2.1-PN + ## [1.5.2.1-PN] - 2021-12-21 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/30?closed=1)) ### CRITICAL SECURITY FIX @@ -1001,3 +1010,4 @@ Fixes several anvil issues. [#1266]: https://github.com/PowerNukkit/PowerNukkit/issues/1266 [#1267]: https://github.com/PowerNukkit/PowerNukkit/issues/1267 [#1270]: https://github.com/PowerNukkit/PowerNukkit/issues/1270 +[#1341]: https://github.com/PowerNukkit/PowerNukkit/issues/1341 diff --git a/README.md b/README.md index 9aec18ee812..d9db476ae52 100644 --- a/README.md +++ b/README.md @@ -32,11 +32,12 @@ Links - __[๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป PowerNukkit Website for Plugin Developers](https://devs.powernukkit.org/)__ - __[๐Ÿ’ฌ PowerNukkit Forum and Guides](https://discuss.powernukkit.org/)__ - __[๐Ÿ’ฌ PowerNukkit Discord](https://powernukkit.org/discord)__ -- __[๐Ÿ’พ Download PowerNukkit Recommended Build](https://powernukkit.org/recommended)__ -- __[๐Ÿ’พ Download PowerNukkit Releases](https://powernukkit.org/releases)__ -- __[๐Ÿ’พ Download PowerNukkit Snapshots](https://powernukkit.org/snapshots)__ -- __[๐Ÿ”Œ Cloudburst Nukkit Plugins](https://cloudburstmc.org/resources/categories/nukkit-plugins.1/)__ -- __[๐Ÿ”Œ PowerNukkit Plugins](https://discuss.powernukkit.org/c/plugins/powernukkit-plugins/14/)__ +- __[๐Ÿ’พ Download PowerNukkit Recommended Build](https://powernukkit.org/#download)__ +- __[๐Ÿ’พ Download PowerNukkit Releases](https://powernukkit.org/#stable)__ +- __[๐Ÿ’พ Download PowerNukkit Snapshots](https://powernukkit.org/#snapshot)__ +- __[๐Ÿฅš Download PowerNukkit Pterodactyl Eggs](https://powernukkit.org/#pterodactyl)__ +- __[๐Ÿ”Œ Download PowerNukkit Plugins](https://plugins.powernukkit.org)__ +- __[๐Ÿ”Œ Download Cloudburst Nukkit Plugins](https://cloudburstmc.org/resources/categories/nukkit-plugins.1/)__ - __[๐Ÿงฉ PowerNukkit Plugin Requests](https://discuss.powernukkit.org/c/plugins/plugin-requests/13)__ Creating Plugins @@ -50,7 +51,7 @@ repositories { } dependencies { - compile group: 'org.powernukkit', name: 'powernukkit', version: '1.5.2.1-PN' + compile group: 'org.powernukkit', name: 'powernukkit', version: '1.6.0.0-PN' } ``` @@ -60,7 +61,7 @@ dependencies { org.powernukkit powernukkit - 1.5.2.1-PN + 1.6.0.0-PN ``` @@ -133,7 +134,8 @@ Check the [docker-compose.yml](docker-compose.yml) file for more details. ### Supported tags * _bleeding_ (โš ๏ธ **use with care, may contain unstable code!** โš ๏ธ) -* 1.5.2.0, 1.5.2, 1.5, 1, latest +* 1.6.0.0, 1.6.0, 1.6, 1, latest +* 1.5.2.0, 1.5.2, 1.5 * 1.5.1.0, 1.5.1 * 1.5.0.0, 1.5.0 * 1.4.0.0, 1.4.0, 1.4 diff --git a/docker-compose.yml b/docker-compose.yml index 9e82266656f..db9bfa0591a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -54,7 +54,7 @@ services: # # You may change the version as you desire # The version list: https://hub.docker.com/r/powernukkit/powernukkit/tags - image: powernukkit/powernukkit:1.5 + image: powernukkit/powernukkit:1.6 # # If you want to use an other port, change only the number before ":", keep the :19132 and :19132/udp at the end From 0b0fe936d45ff96efce392170d4972a8a6f68d6d Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 16:27:46 -0300 Subject: [PATCH 381/394] Update the release script --- release-script/release.py | 82 ++++++++++++++++++++++----------------- 1 file changed, 47 insertions(+), 35 deletions(-) diff --git a/release-script/release.py b/release-script/release.py index 68374a87f40..945fc565107 100644 --- a/release-script/release.py +++ b/release-script/release.py @@ -120,14 +120,27 @@ finish_progress() docker_tags = [] +pterodactyl_tags = [] +pterodactyl_tags[8] = [] +pterodactyl_tags[11] = [] try: if run_docker_build or run_docker_build_pterodactyl: - def build_docker(tag, source): - global docker_tags - log('-> Executing a docker build for tag', tag) - stt = subprocess.call(('docker', 'build', '-t', tag, source)) + def prepare_docker(): + log('-> Preparing docker for multi-arch build') + stt = subprocess.call(('docker', 'buildx', 'create', + '--use', '--name', 'build', '--node', 'build', '--driver-opt', 'network=host')) + check(stt == 0, "Could prepare docker for multi-arch build! Status code: " + str(stt)) + + def build_docker(tag_list, source): + log('-> Executing a docker build for tags', tag_list) + cmd_parts = ['docker', 'buildx', 'build', '--platform', 'linux/arm64,linux/amd64', '--pull'] + if run_docker_push: + cmd_parts = ['--push'] + for tag in tag_list: + cmd_parts += ['-t', tag] + cmd_parts += [source] + stt = subprocess.call(cmd_parts) check(stt == 0, "Could not execute a docker build! Status code: " + str(stt)) - docker_tags += [tag] docker_version = project_version.replace('-PN', '') docker_tag = docker_tag_prefix + ':' + docker_version @@ -135,25 +148,12 @@ def build_docker(tag, source): is_snapshot = docker_version_parts[-1].lower() == "snapshot" if is_snapshot: docker_version_parts.pop() - elif run_docker_build: - start_progress("Executing Docker build") - build_docker(docker_tag, '.') - finish_progress() - - def pterodactyl_tag_name(base, java): - return base + '-pterodactyl-java-' + str(java) - def build_pterodactyl(java): - base = docker_tag + def pterodactyl_tag_name(java): + base = docker_tag_prefix + ':stable' if is_snapshot: - base = "bleeding" - build_docker(pterodactyl_tag_name(base, java), './docker_pterodactyl-image-java'+str(java)+'.Dockerfile') - - if run_docker_build_pterodactyl: - start_progress("Building pterodactyl images") - build_pterodactyl(8) - build_pterodactyl(11) - finish_progress() + base = docker_tag_prefix + ':bleeding' + return base + '-pterodactyl-java-' + str(java) if not is_snapshot: start_progress("Tagging Docker image") @@ -167,17 +167,29 @@ def build_pterodactyl(java): break if docker_sub_version is not None: - def add_tag(from_tag, to_tag): - global docker_tags + def add_tag(to_list, to_tag): log("-> Adding docker tag", to_tag) - cmd('docker', 'tag', from_tag, to_tag) - docker_tags += [to_tag] + to_list += [to_tag] subversion_tag = docker_tag_prefix + ':' + docker_sub_version - add_tag(docker_tag, subversion_tag) + add_tag(docker_tags, subversion_tag) if run_docker_build_pterodactyl: - add_tag(pterodactyl_tag_name(docker_tag, 8), pterodactyl_tag_name(subversion_tag, 8)) - add_tag(pterodactyl_tag_name(docker_tag, 11), pterodactyl_tag_name(subversion_tag, 11)) + add_tag(pterodactyl_tags[8], pterodactyl_tag_name(8)) + add_tag(pterodactyl_tags[11], pterodactyl_tag_name(11)) + finish_progress() + + if run_docker_build: + start_progress("Executing Docker build") + build_docker(docker_tags, '.') + finish_progress() + + def build_pterodactyl(java): + build_docker(pterodactyl_tags[java], './docker_pterodactyl-image-java'+str(java)+'.Dockerfile') + + if run_docker_build_pterodactyl: + start_progress("Building pterodactyl images") + build_pterodactyl(8) + build_pterodactyl(11) finish_progress() if run_maven_deploy: @@ -197,12 +209,12 @@ def add_tag(from_tag, to_tag): cmd('git', 'reset', '--soft', 'HEAD~1') raise e -if run_docker_push: - start_progress("Pushing Docker image and tags") - for docker_tag_to_push in docker_tags: - log('-> Pushing docker tag', docker_tag_to_push) - cmd('docker', 'push', docker_tag_to_push) - finish_progress() +# if run_docker_push: +# start_progress("Pushing Docker image and tags") +# for docker_tag_to_push in docker_tags: +# log('-> Pushing docker tag', docker_tag_to_push) +# cmd('docker', 'push', docker_tag_to_push) +# finish_progress() if update_pom_version: start_progress("Updating pom.xml") From a5e2e7e0095bbc9c71b80905367dc8b34342df18 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 16:35:09 -0300 Subject: [PATCH 382/394] Release v1.6.0.0-PN --- CHANGELOG.md | 11 ++++++----- pom.xml | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78fcec5ad5e..6f3561b1c33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 with an added upstream's major version number in front of the major version, so we have a better distinction from Nukkit 1.X and 2.X. -## [Unreleased 1.6.0.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/29?closed=1)) +## [Unreleased 1.6.0.1-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/27?closed=1)) Click the link above to see the future. -This work in progress version supports Minecraft `1.18.30`. +## [1.6.0.0-PN] - 2022-04-20 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/29?closed=1)) +Major version change adding support to Minecraft `1.18.30`. ### Breaking changes - [#1267] Changed Nimbus Jose JWT library from `7.9` to `9.13` @@ -49,8 +50,7 @@ This work in progress version supports Minecraft `1.18.30`. ### Others There are many other fixes, additions and changes not documented in this file due to the size of this update. -Check the [git logs](https://github.com/PowerNukkit/PowerNukkit/pull/1341/commits) -for details on what has changed since 1.5.2.1-PN +Check the [git logs][1.6.0.0-PN] for details on what has changed since 1.5.2.1-PN ## [1.5.2.1-PN] - 2021-12-21 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/30?closed=1)) @@ -811,7 +811,8 @@ Fixes several anvil issues. [updated changelog]:https://github.com/PowerNukkit/PowerNukkit/blob/bleeding/CHANGELOG.md [discord guild]: https://powernukkit.org/discord -[Unreleased 1.6.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.2.1-PN...bleeding +[Unreleased 1.6.0.1-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.6.0.0-PN...bleeding +[1.6.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.2.1-PN...v1.6.0.0-PN [1.5.2.1-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.2.0-PN...v1.5.2.1-PN [1.5.2.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.1.0-PN...v1.5.2.0-PN [1.5.1.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.0.0-PN...v1.5.1.0-PN diff --git a/pom.xml b/pom.xml index da4cc3d1ef4..3c2705e0e72 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.6.0.0-PN-SNAPSHOT + 1.6.0.0-PN 2020 From 6a4246ad13b04698901c613c48b6a1b415f82884 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 16:46:18 -0300 Subject: [PATCH 383/394] Corrige erro no release.py --- release-script/release.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/release-script/release.py b/release-script/release.py index 945fc565107..9a341fef726 100644 --- a/release-script/release.py +++ b/release-script/release.py @@ -120,9 +120,7 @@ finish_progress() docker_tags = [] -pterodactyl_tags = [] -pterodactyl_tags[8] = [] -pterodactyl_tags[11] = [] +pterodactyl_tags = {8: [], 11: []} try: if run_docker_build or run_docker_build_pterodactyl: def prepare_docker(): From a8a1cb88e62f10a405cf3ad05e288de7fdf38868 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 16:52:33 -0300 Subject: [PATCH 384/394] Fix an error in release.py --- release-script/release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-script/release.py b/release-script/release.py index 9a341fef726..b913c9741e6 100644 --- a/release-script/release.py +++ b/release-script/release.py @@ -133,7 +133,7 @@ def build_docker(tag_list, source): log('-> Executing a docker build for tags', tag_list) cmd_parts = ['docker', 'buildx', 'build', '--platform', 'linux/arm64,linux/amd64', '--pull'] if run_docker_push: - cmd_parts = ['--push'] + cmd_parts += ['--push'] for tag in tag_list: cmd_parts += ['-t', tag] cmd_parts += [source] From 35beeae6d706d9be1917681b2e92a9179ef8d3db Mon Sep 17 00:00:00 2001 From: PowerNukkitBot Date: Wed, 20 Apr 2022 16:56:40 -0300 Subject: [PATCH 385/394] Releasing PowerNukkit v1.6.0.0-PN From bf76773da55f44ee99efecf18e3a3b5bb3d0190c Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 17:12:46 -0300 Subject: [PATCH 386/394] Add custom suffix to the version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3c2705e0e72..4e963b2b613 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.6.0.0-PN + 1.6.0.0-PN-CUSTOM 2020 From 8161a805fc04f01ae82eda6c550ca96d5cd88672 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 17:15:18 -0300 Subject: [PATCH 387/394] Change the version to 1.6.1.0-PN-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4e963b2b613..db5d5b3fae1 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.6.0.0-PN-CUSTOM + 1.6.1.0-PN-SNAPSHOT 2020 From c150778b6e0a34c8d6ee29ccf71fee8858c0a55f Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 17:36:24 -0300 Subject: [PATCH 388/394] Update the changelog --- CHANGELOG.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f3561b1c33..707827fcd61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 with an added upstream's major version number in front of the major version, so we have a better distinction from Nukkit 1.X and 2.X. -## [Unreleased 1.6.0.1-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/27?closed=1)) +## [Unreleased 1.6.1.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/25?closed=1)) Click the link above to see the future. +### Fixes +- [#1343] Fix player data properties being sent twice +- [#1343] Client side issues caused by normal data flags not being sent with extended flags +- [#1343] Item Net ID should be 1 if the item is not air +- [#1343] Accuracy of player movements +- [#1343] Maximum chat message size was too low + +### Changed +- [#1343] Cornflower and Lily of the Valley will now be generated in flower forest biomes +- [#1343] Log4J version to `2.17.1` (seriously, stop hacking it people) + ## [1.6.0.0-PN] - 2022-04-20 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/29?closed=1)) Major version change adding support to Minecraft `1.18.30`. @@ -1012,3 +1023,4 @@ Fixes several anvil issues. [#1267]: https://github.com/PowerNukkit/PowerNukkit/issues/1267 [#1270]: https://github.com/PowerNukkit/PowerNukkit/issues/1270 [#1341]: https://github.com/PowerNukkit/PowerNukkit/issues/1341 +[#1343]: https://github.com/PowerNukkit/PowerNukkit/issues/1343 From b2a65c5c932f5f00f00f811a6a8ddf7786676f41 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 20:37:56 -0300 Subject: [PATCH 389/394] Backward compatibility fix with AntiXRay PowerNukkit port. --- .../level/util/PalettedBlockStorage.java | 35 ++++++++++++++++--- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java b/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java index d8a908ceadc..93bcfeb8ffc 100644 --- a/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java +++ b/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java @@ -1,7 +1,10 @@ package cn.nukkit.level.util; +import cn.nukkit.api.DeprecationDetails; +import cn.nukkit.api.PowerNukkitOnly; import cn.nukkit.api.Since; -import cn.nukkit.level.GlobalBlockPalette; +import cn.nukkit.block.BlockID; +import cn.nukkit.blockstate.BlockStateRegistry; import cn.nukkit.utils.BinaryStream; import it.unimi.dsi.fastutil.ints.IntArrayList; import it.unimi.dsi.fastutil.ints.IntList; @@ -22,8 +25,8 @@ public static PalettedBlockStorage createFromBlockPalette() { @Since("1.6.0.0-PN") public static PalettedBlockStorage createFromBlockPalette(BitArrayVersion version) { - int runtimeId = GlobalBlockPalette.getOrCreateRuntimeId(0); // Air is first - return new PalettedBlockStorage(version, runtimeId); + int runtimeId = BlockStateRegistry.getRuntimeId(BlockID.AIR); + return new PalettedBlockStorage(version, runtimeId, null); } @Since("1.6.0.0-PN") @@ -33,10 +36,32 @@ public static PalettedBlockStorage createWithDefaultState(int defaultState) { @Since("1.6.0.0-PN") public static PalettedBlockStorage createWithDefaultState(BitArrayVersion version, int defaultState) { - return new PalettedBlockStorage(version, defaultState); + return new PalettedBlockStorage(version, defaultState, null); } - private PalettedBlockStorage(BitArrayVersion version, int defaultState) { + @PowerNukkitOnly("This was removed on 1.6.0.0-PN by Cloudburst Nukkit and re-added to fix plugin compatibility issue on 1.6.0.1-PN") + @Deprecated + @DeprecationDetails( + since = "1.6.0.0-PN", + reason = "Refactored by Cloudburst Nukkit to use static method instead of constructor", + replaceWith = "createFromBlockPalette()" + ) + public PalettedBlockStorage() { + this(BitArrayVersion.V2, BlockStateRegistry.getRuntimeId(BlockID.AIR), null); + } + + @PowerNukkitOnly("This was removed on 1.6.0.0-PN by Cloudburst Nukkit and re-added to fix plugin compatibility issue on 1.6.0.1-PN") + @Deprecated + @DeprecationDetails( + since = "1.6.0.0-PN", + reason = "Refactored by Cloudburst Nukkit to use static method instead of constructor", + replaceWith = "createFromBlockPalette(BitArrayVersion)" + ) + public PalettedBlockStorage(BitArrayVersion version, int defaultState) { + this(version, defaultState, null); + } + + private PalettedBlockStorage(BitArrayVersion version, int defaultState, @SuppressWarnings("unused") Void differentiator) { this.bitArray = version.createPalette(SIZE); this.palette = new IntArrayList(16); this.palette.add(defaultState); From 1af357a4f751f2096ab256a0d07c96705bc605a2 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 20:39:53 -0300 Subject: [PATCH 390/394] Update Log4J and the changelog --- CHANGELOG.md | 7 +++++++ pom.xml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f3561b1c33..a08b1148ec8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ Nukkit 1.X and 2.X. ## [Unreleased 1.6.0.1-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/27?closed=1)) Click the link above to see the future. +### Fixes +- [#1344] Backward compatibility with PowerNukkit port of Wode's AntiXRay plugin + +### Changed +- [#1344] Log4J version to `2.17.1` (seriously, stop hacking it people) + ## [1.6.0.0-PN] - 2022-04-20 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/29?closed=1)) Major version change adding support to Minecraft `1.18.30`. @@ -1012,3 +1018,4 @@ Fixes several anvil issues. [#1267]: https://github.com/PowerNukkit/PowerNukkit/issues/1267 [#1270]: https://github.com/PowerNukkit/PowerNukkit/issues/1270 [#1341]: https://github.com/PowerNukkit/PowerNukkit/issues/1341 +[#1344]: https://github.com/PowerNukkit/PowerNukkit/issues/1344 diff --git a/pom.xml b/pom.xml index db5d5b3fae1..754c559fdc6 100644 --- a/pom.xml +++ b/pom.xml @@ -73,7 +73,7 @@ 1.8 5.7.2 3.11.2 - 2.17.0 + 2.17.1 UTF-8 UTF-8 3.9.0 From 2447d87d9271c2087e837f78577c6e468162e0d9 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 23:56:09 -0300 Subject: [PATCH 391/394] Fix: Compatibility with AntiXRay still not working --- .../cn/nukkit/level/util/PalettedBlockStorage.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java b/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java index 93bcfeb8ffc..ce52c7f82f6 100644 --- a/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java +++ b/src/main/java/cn/nukkit/level/util/PalettedBlockStorage.java @@ -26,7 +26,7 @@ public static PalettedBlockStorage createFromBlockPalette() { @Since("1.6.0.0-PN") public static PalettedBlockStorage createFromBlockPalette(BitArrayVersion version) { int runtimeId = BlockStateRegistry.getRuntimeId(BlockID.AIR); - return new PalettedBlockStorage(version, runtimeId, null); + return new PalettedBlockStorage(version, runtimeId); } @Since("1.6.0.0-PN") @@ -36,7 +36,7 @@ public static PalettedBlockStorage createWithDefaultState(int defaultState) { @Since("1.6.0.0-PN") public static PalettedBlockStorage createWithDefaultState(BitArrayVersion version, int defaultState) { - return new PalettedBlockStorage(version, defaultState, null); + return new PalettedBlockStorage(version, defaultState); } @PowerNukkitOnly("This was removed on 1.6.0.0-PN by Cloudburst Nukkit and re-added to fix plugin compatibility issue on 1.6.0.1-PN") @@ -47,7 +47,7 @@ public static PalettedBlockStorage createWithDefaultState(BitArrayVersion versio replaceWith = "createFromBlockPalette()" ) public PalettedBlockStorage() { - this(BitArrayVersion.V2, BlockStateRegistry.getRuntimeId(BlockID.AIR), null); + this(BitArrayVersion.V2); } @PowerNukkitOnly("This was removed on 1.6.0.0-PN by Cloudburst Nukkit and re-added to fix plugin compatibility issue on 1.6.0.1-PN") @@ -57,11 +57,11 @@ public PalettedBlockStorage() { reason = "Refactored by Cloudburst Nukkit to use static method instead of constructor", replaceWith = "createFromBlockPalette(BitArrayVersion)" ) - public PalettedBlockStorage(BitArrayVersion version, int defaultState) { - this(version, defaultState, null); + public PalettedBlockStorage(BitArrayVersion version) { + this(version, BlockStateRegistry.getRuntimeId(BlockID.AIR)); } - private PalettedBlockStorage(BitArrayVersion version, int defaultState, @SuppressWarnings("unused") Void differentiator) { + private PalettedBlockStorage(BitArrayVersion version, int defaultState) { this.bitArray = version.createPalette(SIZE); this.palette = new IntArrayList(16); this.palette.add(defaultState); From 8c0ce42eaaaf2559ecf380588cfa9c4ef6706f82 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Wed, 20 Apr 2022 23:56:28 -0300 Subject: [PATCH 392/394] Release 1.6.0.1-PN --- CHANGELOG.md | 5 +++-- README.md | 7 ++++--- pom.xml | 4 ++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ecd7cb8687..7f79270547f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ Nukkit 1.X and 2.X. ## [Unreleased 1.6.1.0-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/25?closed=1)) Click the link above to see the future. -## [1.6.0.1-PN] - Future ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/27?closed=1)) +## [1.6.0.1-PN] - 2022-04-21 ([Check the milestone](https://github.com/PowerNukkit/PowerNukkit/milestone/27?closed=1)) Fixes backward compatibility with some important plugins, also pull some changes from NukkitX ### Fixes @@ -826,7 +826,8 @@ Fixes several anvil issues. [updated changelog]:https://github.com/PowerNukkit/PowerNukkit/blob/bleeding/CHANGELOG.md [discord guild]: https://powernukkit.org/discord -[Unreleased 1.6.0.1-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.6.0.0-PN...bleeding +[Unreleased 1.6.1.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.6.0.1-PN...bleeding +[1.6.0.1-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.6.0.0-PN...v1.6.0.1-PN [1.6.0.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.2.1-PN...v1.6.0.0-PN [1.5.2.1-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.2.0-PN...v1.5.2.1-PN [1.5.2.0-PN]: https://github.com/PowerNukkit/PowerNukkit/compare/v1.5.1.0-PN...v1.5.2.0-PN diff --git a/README.md b/README.md index d9db476ae52..b1a37306cc2 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ repositories { } dependencies { - compile group: 'org.powernukkit', name: 'powernukkit', version: '1.6.0.0-PN' + compile group: 'org.powernukkit', name: 'powernukkit', version: '1.6.0.1-PN' } ``` @@ -61,7 +61,7 @@ dependencies { org.powernukkit powernukkit - 1.6.0.0-PN + 1.6.0.1-PN ``` @@ -134,7 +134,8 @@ Check the [docker-compose.yml](docker-compose.yml) file for more details. ### Supported tags * _bleeding_ (โš ๏ธ **use with care, may contain unstable code!** โš ๏ธ) -* 1.6.0.0, 1.6.0, 1.6, 1, latest +* 1.6.0.1, 1.6.0, 1.6, 1, latest +* 1.6.0.0 * 1.5.2.0, 1.5.2, 1.5 * 1.5.1.0, 1.5.1 * 1.5.0.0, 1.5.0 diff --git a/pom.xml b/pom.xml index 754c559fdc6..07b40385c04 100644 --- a/pom.xml +++ b/pom.xml @@ -12,9 +12,9 @@ Version Convention: upstream.major.minor.patch-PN Based on https://semver.org/ but with upstream on front Upstream is the NukkitX major version - PN is a indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions + PN is an indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.6.1.0-PN-SNAPSHOT + 1.6.0.1-PN 2020 From 0c7be1211c92aa8fa453ddcc1786a9723fff5883 Mon Sep 17 00:00:00 2001 From: PowerNukkitBot Date: Thu, 21 Apr 2022 00:01:40 -0300 Subject: [PATCH 393/394] Releasing PowerNukkit v1.6.0.1-PN From 30019b85b251e84d3ba5ec3a6a0b3e01cc7712c1 Mon Sep 17 00:00:00 2001 From: joserobjr Date: Thu, 21 Apr 2022 00:10:12 -0300 Subject: [PATCH 394/394] Add CUSTOM suffix to the version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 07b40385c04..e1b5816ddef 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ Upstream is the NukkitX major version PN is an indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> - 1.6.0.1-PN + 1.6.0.1-PN-CUSTOM 2020